Merge branch 'acpi-pfrut'
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 R:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 R:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
585 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
586 S:      Supported
587 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
588 F:      drivers/iio/accel/adxl313*
589
590 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
591 M:      Michael Hennerich <michael.hennerich@analog.com>
592 S:      Supported
593 W:      http://wiki.analog.com/ADXL345
594 W:      http://ez.analog.com/community/linux-device-drivers
595 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
596 F:      drivers/input/misc/adxl34x.c
597
598 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
599 M:      Puranjay Mohan <puranjay12@gmail.com>
600 L:      linux-iio@vger.kernel.org
601 S:      Supported
602 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
603 F:      drivers/iio/accel/adxl355.h
604 F:      drivers/iio/accel/adxl355_core.c
605 F:      drivers/iio/accel/adxl355_i2c.c
606 F:      drivers/iio/accel/adxl355_spi.c
607
608 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://ez.analog.com/community/linux-device-drivers
612 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
613 F:      drivers/iio/accel/adxl372.c
614 F:      drivers/iio/accel/adxl372_i2c.c
615 F:      drivers/iio/accel/adxl372_spi.c
616
617 AF9013 MEDIA DRIVER
618 M:      Antti Palosaari <crope@iki.fi>
619 L:      linux-media@vger.kernel.org
620 S:      Maintained
621 W:      https://linuxtv.org
622 W:      http://palosaari.fi/linux/
623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
624 T:      git git://linuxtv.org/anttip/media_tree.git
625 F:      drivers/media/dvb-frontends/af9013*
626
627 AF9033 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9033*
636
637 AFFS FILE SYSTEM
638 M:      David Sterba <dsterba@suse.com>
639 L:      linux-fsdevel@vger.kernel.org
640 S:      Odd Fixes
641 F:      Documentation/filesystems/affs.rst
642 F:      fs/affs/
643
644 AFS FILESYSTEM
645 M:      David Howells <dhowells@redhat.com>
646 M:      Marc Dionne <marc.dionne@auristor.com>
647 L:      linux-afs@lists.infradead.org
648 S:      Supported
649 W:      https://www.infradead.org/~dhowells/kafs/
650 F:      Documentation/filesystems/afs.rst
651 F:      fs/afs/
652 F:      include/trace/events/afs.h
653
654 AGPGART DRIVER
655 M:      David Airlie <airlied@linux.ie>
656 S:      Maintained
657 T:      git git://anongit.freedesktop.org/drm/drm
658 F:      drivers/char/agp/
659 F:      include/linux/agp*
660 F:      include/uapi/linux/agp*
661
662 AHA152X SCSI DRIVER
663 M:      "Juergen E. Fischer" <fischer@norbit.de>
664 L:      linux-scsi@vger.kernel.org
665 S:      Maintained
666 F:      drivers/scsi/aha152x*
667 F:      drivers/scsi/pcmcia/aha152x*
668
669 AIC7XXX / AIC79XX SCSI DRIVER
670 M:      Hannes Reinecke <hare@suse.com>
671 L:      linux-scsi@vger.kernel.org
672 S:      Maintained
673 F:      drivers/scsi/aic7xxx/
674
675 AIMSLAB FM RADIO RECEIVER DRIVER
676 M:      Hans Verkuil <hverkuil@xs4all.nl>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 W:      https://linuxtv.org
680 T:      git git://linuxtv.org/media_tree.git
681 F:      drivers/media/radio/radio-aimslab*
682
683 AIO
684 M:      Benjamin LaHaise <bcrl@kvack.org>
685 L:      linux-aio@kvack.org
686 S:      Supported
687 F:      fs/aio.c
688 F:      include/linux/*aio*.h
689
690 AIRSPY MEDIA DRIVER
691 M:      Antti Palosaari <crope@iki.fi>
692 L:      linux-media@vger.kernel.org
693 S:      Maintained
694 W:      https://linuxtv.org
695 W:      http://palosaari.fi/linux/
696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
697 T:      git git://linuxtv.org/anttip/media_tree.git
698 F:      drivers/media/usb/airspy/
699
700 ALACRITECH GIGABIT ETHERNET DRIVER
701 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
702 S:      Maintained
703 F:      drivers/net/ethernet/alacritech/*
704
705 ALCATEL SPEEDTOUCH USB DRIVER
706 M:      Duncan Sands <duncan.sands@free.fr>
707 L:      linux-usb@vger.kernel.org
708 S:      Maintained
709 W:      http://www.linux-usb.org/SpeedTouch/
710 F:      drivers/usb/atm/speedtch.c
711 F:      drivers/usb/atm/usbatm.c
712
713 ALCHEMY AU1XX0 MMC DRIVER
714 M:      Manuel Lauss <manuel.lauss@gmail.com>
715 S:      Maintained
716 F:      drivers/mmc/host/au1xmmc.c
717
718 ALI1563 I2C DRIVER
719 M:      Rudolf Marek <r.marek@assembler.cz>
720 L:      linux-i2c@vger.kernel.org
721 S:      Maintained
722 F:      Documentation/i2c/busses/i2c-ali1563.rst
723 F:      drivers/i2c/busses/i2c-ali1563.c
724
725 ALIENWARE WMI DRIVER
726 L:      Dell.Client.Kernel@dell.com
727 S:      Maintained
728 F:      drivers/platform/x86/dell/alienware-wmi.c
729
730 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
731 M:      Tomislav Denis <tomislav.denis@avl.com>
732 L:      linux-iio@vger.kernel.org
733 S:      Maintained
734 W:      http://www.allsensors.com/
735 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
736 F:      drivers/iio/pressure/dlhl60d.c
737
738 ALLEGRO DVT VIDEO IP CORE DRIVER
739 M:      Michael Tretter <m.tretter@pengutronix.de>
740 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
741 L:      linux-media@vger.kernel.org
742 S:      Maintained
743 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
744 F:      drivers/media/platform/allegro-dvt/
745
746 ALLWINNER A10 CSI DRIVER
747 M:      Maxime Ripard <mripard@kernel.org>
748 L:      linux-media@vger.kernel.org
749 S:      Maintained
750 T:      git git://linuxtv.org/media_tree.git
751 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
752 F:      drivers/media/platform/sunxi/sun4i-csi/
753
754 ALLWINNER CPUFREQ DRIVER
755 M:      Yangtao Li <tiny.windzz@gmail.com>
756 L:      linux-pm@vger.kernel.org
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
759 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
760
761 ALLWINNER CRYPTO DRIVERS
762 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
763 L:      linux-crypto@vger.kernel.org
764 S:      Maintained
765 F:      drivers/crypto/allwinner/
766
767 ALLWINNER HARDWARE SPINLOCK SUPPORT
768 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
769 S:      Maintained
770 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
771 F:      drivers/hwspinlock/sun6i_hwspinlock.c
772
773 ALLWINNER THERMAL DRIVER
774 M:      Vasily Khoruzhick <anarsoul@gmail.com>
775 M:      Yangtao Li <tiny.windzz@gmail.com>
776 L:      linux-pm@vger.kernel.org
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
779 F:      drivers/thermal/sun8i_thermal.c
780
781 ALLWINNER VPU DRIVER
782 M:      Maxime Ripard <mripard@kernel.org>
783 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
784 L:      linux-media@vger.kernel.org
785 S:      Maintained
786 F:      drivers/staging/media/sunxi/cedrus/
787
788 ALPHA PORT
789 M:      Richard Henderson <rth@twiddle.net>
790 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
791 M:      Matt Turner <mattst88@gmail.com>
792 L:      linux-alpha@vger.kernel.org
793 S:      Odd Fixes
794 F:      arch/alpha/
795
796 ALPS PS/2 TOUCHPAD DRIVER
797 R:      Pali Rohár <pali@kernel.org>
798 F:      drivers/input/mouse/alps.*
799
800 ALTERA I2C CONTROLLER DRIVER
801 M:      Thor Thayer <thor.thayer@linux.intel.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
804 F:      drivers/i2c/busses/i2c-altera.c
805
806 ALTERA MAILBOX DRIVER
807 M:      Mun Yew Tham <mun.yew.tham@intel.com>
808 S:      Maintained
809 F:      drivers/mailbox/mailbox-altera.c
810
811 ALTERA MSGDMA IP CORE DRIVER
812 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
813 R:      Stefan Roese <sr@denx.de>
814 L:      dmaengine@vger.kernel.org
815 S:      Odd Fixes
816 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
817 F:      drivers/dma/altera-msgdma.c
818
819 ALTERA PIO DRIVER
820 M:      Mun Yew Tham <mun.yew.tham@intel.com>
821 L:      linux-gpio@vger.kernel.org
822 S:      Maintained
823 F:      drivers/gpio/gpio-altera.c
824
825 ALTERA SYSTEM MANAGER DRIVER
826 M:      Thor Thayer <thor.thayer@linux.intel.com>
827 S:      Maintained
828 F:      drivers/mfd/altera-sysmgr.c
829 F:      include/linux/mfd/altera-sysmgr.h
830
831 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
832 M:      Thor Thayer <thor.thayer@linux.intel.com>
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera-a10sr.c
835 F:      drivers/mfd/altera-a10sr.c
836 F:      drivers/reset/reset-a10sr.c
837 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
838 F:      include/linux/mfd/altera-a10sr.h
839
840 ALTERA TRIPLE SPEED ETHERNET DRIVER
841 M:      Joyce Ooi <joyce.ooi@intel.com>
842 L:      netdev@vger.kernel.org
843 S:      Maintained
844 F:      drivers/net/ethernet/altera/
845
846 ALTERA UART/JTAG UART SERIAL DRIVERS
847 M:      Tobias Klauser <tklauser@distanz.ch>
848 L:      linux-serial@vger.kernel.org
849 S:      Maintained
850 F:      drivers/tty/serial/altera_jtaguart.c
851 F:      drivers/tty/serial/altera_uart.c
852 F:      include/linux/altera_jtaguart.h
853 F:      include/linux/altera_uart.h
854
855 AMAZON ANNAPURNA LABS FIC DRIVER
856 M:      Talel Shenhar <talel@amazon.com>
857 S:      Maintained
858 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
859 F:      drivers/irqchip/irq-al-fic.c
860
861 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
862 M:      Talel Shenhar <talel@amazon.com>
863 M:      Talel Shenhar <talelshenhar@gmail.com>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
866 F:      drivers/edac/al_mc_edac.c
867
868 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
869 M:      Talel Shenhar <talel@amazon.com>
870 S:      Maintained
871 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
872 F:      drivers/thermal/thermal_mmio.c
873
874 AMAZON ETHERNET DRIVERS
875 M:      Shay Agroskin <shayagr@amazon.com>
876 M:      Arthur Kiyanovski <akiyano@amazon.com>
877 R:      David Arinzon <darinzon@amazon.com>
878 R:      Noam Dagan <ndagan@amazon.com>
879 R:      Saeed Bishara <saeedb@amazon.com>
880 L:      netdev@vger.kernel.org
881 S:      Supported
882 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
883 F:      drivers/net/ethernet/amazon/
884
885 AMAZON RDMA EFA DRIVER
886 M:      Gal Pressman <galpress@amazon.com>
887 R:      Yossi Leybovich <sleybo@amazon.com>
888 L:      linux-rdma@vger.kernel.org
889 S:      Supported
890 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
891 F:      drivers/infiniband/hw/efa/
892 F:      include/uapi/rdma/efa-abi.h
893
894 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
895 M:      Tom Lendacky <thomas.lendacky@amd.com>
896 M:      John Allen <john.allen@amd.com>
897 L:      linux-crypto@vger.kernel.org
898 S:      Supported
899 F:      drivers/crypto/ccp/
900 F:      include/linux/ccp.h
901
902 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
903 M:      Brijesh Singh <brijesh.singh@amd.com>
904 M:      Tom Lendacky <thomas.lendacky@amd.com>
905 L:      linux-crypto@vger.kernel.org
906 S:      Supported
907 F:      drivers/crypto/ccp/sev*
908 F:      include/uapi/linux/psp-sev.h
909
910 AMD DISPLAY CORE
911 M:      Harry Wentland <harry.wentland@amd.com>
912 M:      Leo Li <sunpeng.li@amd.com>
913 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
914 L:      amd-gfx@lists.freedesktop.org
915 S:      Supported
916 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
917 F:      drivers/gpu/drm/amd/display/
918
919 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
920 M:      Huang Rui <ray.huang@amd.com>
921 L:      linux-hwmon@vger.kernel.org
922 S:      Supported
923 F:      Documentation/hwmon/fam15h_power.rst
924 F:      drivers/hwmon/fam15h_power.c
925
926 AMD FCH GPIO DRIVER
927 M:      Enrico Weigelt, metux IT consult <info@metux.net>
928 L:      linux-gpio@vger.kernel.org
929 S:      Maintained
930 F:      drivers/gpio/gpio-amd-fch.c
931 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
932
933 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
934 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
935 S:      Orphan
936 F:      drivers/usb/gadget/udc/amd5536udc.*
937
938 AMD GEODE PROCESSOR/CHIPSET SUPPORT
939 M:      Andres Salomon <dilinger@queued.net>
940 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
941 S:      Supported
942 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
943 F:      arch/x86/include/asm/geode.h
944 F:      drivers/char/hw_random/geode-rng.c
945 F:      drivers/crypto/geode*
946 F:      drivers/video/fbdev/geode/
947
948 AMD IOMMU (AMD-VI)
949 M:      Joerg Roedel <joro@8bytes.org>
950 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
951 L:      iommu@lists.linux-foundation.org
952 S:      Maintained
953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
954 F:      drivers/iommu/amd/
955 F:      include/linux/amd-iommu.h
956
957 AMD KFD
958 M:      Felix Kuehling <Felix.Kuehling@amd.com>
959 L:      amd-gfx@lists.freedesktop.org
960 S:      Supported
961 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
962 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
963 F:      drivers/gpu/drm/amd/amdkfd/
964 F:      drivers/gpu/drm/amd/include/cik_structs.h
965 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
966 F:      drivers/gpu/drm/amd/include/v9_structs.h
967 F:      drivers/gpu/drm/amd/include/vi_structs.h
968 F:      include/uapi/linux/kfd_ioctl.h
969 F:      include/uapi/linux/kfd_sysfs.h
970
971 AMD SPI DRIVER
972 M:      Sanjay R Mehta <sanju.mehta@amd.com>
973 S:      Maintained
974 F:      drivers/spi/spi-amd.c
975
976 AMD MP2 I2C DRIVER
977 M:      Elie Morisse <syniurge@gmail.com>
978 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
979 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
980 L:      linux-i2c@vger.kernel.org
981 S:      Maintained
982 F:      drivers/i2c/busses/i2c-amd-mp2*
983
984 AMD PMC DRIVER
985 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
986 L:      platform-driver-x86@vger.kernel.org
987 S:      Maintained
988 F:      drivers/platform/x86/amd-pmc.*
989
990 AMD POWERPLAY AND SWSMU
991 M:      Evan Quan <evan.quan@amd.com>
992 L:      amd-gfx@lists.freedesktop.org
993 S:      Supported
994 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
995 F:      drivers/gpu/drm/amd/pm/
996
997 AMD PTDMA DRIVER
998 M:      Sanjay R Mehta <sanju.mehta@amd.com>
999 L:      dmaengine@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/dma/ptdma/
1002
1003 AMD SEATTLE DEVICE TREE SUPPORT
1004 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1005 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1006 M:      Tom Lendacky <thomas.lendacky@amd.com>
1007 S:      Supported
1008 F:      arch/arm64/boot/dts/amd/
1009
1010 AMD XGBE DRIVER
1011 M:      Tom Lendacky <thomas.lendacky@amd.com>
1012 L:      netdev@vger.kernel.org
1013 S:      Supported
1014 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1015 F:      drivers/net/ethernet/amd/xgbe/
1016
1017 AMD SENSOR FUSION HUB DRIVER
1018 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1019 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1020 L:      linux-input@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/hid/amd-sfh*
1023 F:      drivers/hid/amd-sfh-hid/
1024
1025 AMS AS73211 DRIVER
1026 M:      Christian Eggers <ceggers@arri.de>
1027 L:      linux-iio@vger.kernel.org
1028 S:      Maintained
1029 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1030 F:      drivers/iio/light/as73211.c
1031
1032 AMT (Automatic Multicast Tunneling)
1033 M:      Taehee Yoo <ap420073@gmail.com>
1034 L:      netdev@vger.kernel.org
1035 S:      Maintained
1036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1038 F:      drivers/net/amt.c
1039
1040 ANALOG DEVICES INC AD7192 DRIVER
1041 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1042 L:      linux-iio@vger.kernel.org
1043 S:      Supported
1044 W:      http://ez.analog.com/community/linux-device-drivers
1045 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1046 F:      drivers/iio/adc/ad7192.c
1047
1048 ANALOG DEVICES INC AD7292 DRIVER
1049 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1050 L:      linux-iio@vger.kernel.org
1051 S:      Supported
1052 W:      http://ez.analog.com/community/linux-device-drivers
1053 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1054 F:      drivers/iio/adc/ad7292.c
1055
1056 ANALOG DEVICES INC AD7768-1 DRIVER
1057 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1058 L:      linux-iio@vger.kernel.org
1059 S:      Supported
1060 W:      http://ez.analog.com/community/linux-device-drivers
1061 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1062 F:      drivers/iio/adc/ad7768-1.c
1063
1064 ANALOG DEVICES INC AD7780 DRIVER
1065 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1066 M:      Renato Lui Geh <renatogeh@gmail.com>
1067 L:      linux-iio@vger.kernel.org
1068 S:      Supported
1069 W:      http://ez.analog.com/community/linux-device-drivers
1070 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1071 F:      drivers/iio/adc/ad7780.c
1072
1073 ANALOG DEVICES INC AD9389B DRIVER
1074 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1075 L:      linux-media@vger.kernel.org
1076 S:      Maintained
1077 F:      drivers/media/i2c/ad9389b*
1078
1079 ANALOG DEVICES INC ADGS1408 DRIVER
1080 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1081 S:      Supported
1082 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1083 F:      drivers/mux/adgs1408.c
1084
1085 ANALOG DEVICES INC ADIN DRIVER
1086 M:      Michael Hennerich <michael.hennerich@analog.com>
1087 L:      netdev@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1091 F:      drivers/net/phy/adin.c
1092
1093 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1094 M:      Nuno Sa <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 F:      drivers/iio/imu/adis.c
1098 F:      include/linux/iio/imu/adis.h
1099
1100 ANALOG DEVICES INC ADIS16460 DRIVER
1101 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1102 L:      linux-iio@vger.kernel.org
1103 S:      Supported
1104 W:      http://ez.analog.com/community/linux-device-drivers
1105 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1106 F:      drivers/iio/imu/adis16460.c
1107
1108 ANALOG DEVICES INC ADIS16475 DRIVER
1109 M:      Nuno Sa <nuno.sa@analog.com>
1110 L:      linux-iio@vger.kernel.org
1111 W:      http://ez.analog.com/community/linux-device-drivers
1112 S:      Supported
1113 F:      drivers/iio/imu/adis16475.c
1114 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1115
1116 ANALOG DEVICES INC ADM1177 DRIVER
1117 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1118 L:      linux-hwmon@vger.kernel.org
1119 S:      Supported
1120 W:      http://ez.analog.com/community/linux-device-drivers
1121 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1122 F:      drivers/hwmon/adm1177.c
1123
1124 ANALOG DEVICES INC ADP5061 DRIVER
1125 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1126 L:      linux-pm@vger.kernel.org
1127 S:      Supported
1128 W:      http://ez.analog.com/community/linux-device-drivers
1129 F:      drivers/power/supply/adp5061.c
1130
1131 ANALOG DEVICES INC ADV7180 DRIVER
1132 M:      Lars-Peter Clausen <lars@metafoo.de>
1133 L:      linux-media@vger.kernel.org
1134 S:      Supported
1135 W:      http://ez.analog.com/community/linux-device-drivers
1136 F:      drivers/media/i2c/adv7180.c
1137 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1138
1139 ANALOG DEVICES INC ADV748X DRIVER
1140 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1141 L:      linux-media@vger.kernel.org
1142 S:      Maintained
1143 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1144 F:      drivers/media/i2c/adv748x/*
1145
1146 ANALOG DEVICES INC ADV7511 DRIVER
1147 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1148 L:      linux-media@vger.kernel.org
1149 S:      Maintained
1150 F:      drivers/media/i2c/adv7511*
1151
1152 ANALOG DEVICES INC ADV7604 DRIVER
1153 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1154 L:      linux-media@vger.kernel.org
1155 S:      Maintained
1156 F:      drivers/media/i2c/adv7604*
1157 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1158
1159 ANALOG DEVICES INC ADV7842 DRIVER
1160 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1161 L:      linux-media@vger.kernel.org
1162 S:      Maintained
1163 F:      drivers/media/i2c/adv7842*
1164
1165 ANALOG DEVICES INC ADXRS290 DRIVER
1166 M:      Nishant Malpani <nish.malpani25@gmail.com>
1167 L:      linux-iio@vger.kernel.org
1168 S:      Supported
1169 F:      drivers/iio/gyro/adxrs290.c
1170 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1171
1172 ANALOG DEVICES INC ASOC CODEC DRIVERS
1173 M:      Lars-Peter Clausen <lars@metafoo.de>
1174 M:      Nuno Sá <nuno.sa@analog.com>
1175 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1176 S:      Supported
1177 W:      http://wiki.analog.com/
1178 W:      http://ez.analog.com/community/linux-device-drivers
1179 F:      sound/soc/codecs/ad1*
1180 F:      sound/soc/codecs/ad7*
1181 F:      sound/soc/codecs/adau*
1182 F:      sound/soc/codecs/adav*
1183 F:      sound/soc/codecs/sigmadsp.*
1184 F:      sound/soc/codecs/ssm*
1185
1186 ANALOG DEVICES INC DMA DRIVERS
1187 M:      Lars-Peter Clausen <lars@metafoo.de>
1188 S:      Supported
1189 W:      http://ez.analog.com/community/linux-device-drivers
1190 F:      drivers/dma/dma-axi-dmac.c
1191
1192 ANALOG DEVICES INC IIO DRIVERS
1193 M:      Lars-Peter Clausen <lars@metafoo.de>
1194 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1195 S:      Supported
1196 W:      http://wiki.analog.com/
1197 W:      http://ez.analog.com/community/linux-device-drivers
1198 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1199 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1200 F:      Documentation/devicetree/bindings/iio/*/adi,*
1201 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1202 F:      drivers/iio/*/ad*
1203 F:      drivers/iio/adc/ltc249*
1204 F:      drivers/iio/amplifiers/hmc425a.c
1205 F:      drivers/staging/iio/*/ad*
1206 X:      drivers/iio/*/adjd*
1207
1208 ANALOGBITS PLL LIBRARIES
1209 M:      Paul Walmsley <paul.walmsley@sifive.com>
1210 S:      Supported
1211 F:      drivers/clk/analogbits/*
1212 F:      include/linux/clk/analogbits*
1213
1214 ANDES ARCHITECTURE
1215 M:      Nick Hu <nickhu@andestech.com>
1216 M:      Greentime Hu <green.hu@gmail.com>
1217 M:      Vincent Chen <deanbo422@gmail.com>
1218 S:      Supported
1219 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1220 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1221 F:      Documentation/devicetree/bindings/nds32/
1222 F:      arch/nds32/
1223 N:      nds32
1224 K:      nds32
1225
1226 ANDROID CONFIG FRAGMENTS
1227 M:      Rob Herring <robh@kernel.org>
1228 S:      Supported
1229 F:      kernel/configs/android*
1230
1231 ANDROID DRIVERS
1232 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1233 M:      Arve Hjønnevåg <arve@android.com>
1234 M:      Todd Kjos <tkjos@android.com>
1235 M:      Martijn Coenen <maco@android.com>
1236 M:      Joel Fernandes <joel@joelfernandes.org>
1237 M:      Christian Brauner <christian@brauner.io>
1238 M:      Hridya Valsaraju <hridya@google.com>
1239 M:      Suren Baghdasaryan <surenb@google.com>
1240 L:      linux-kernel@vger.kernel.org
1241 S:      Supported
1242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1243 F:      drivers/android/
1244 F:      drivers/staging/android/
1245
1246 ANDROID GOLDFISH PIC DRIVER
1247 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1248 S:      Supported
1249 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1250 F:      drivers/irqchip/irq-goldfish-pic.c
1251
1252 ANDROID GOLDFISH RTC DRIVER
1253 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1254 S:      Supported
1255 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1256 F:      drivers/rtc/rtc-goldfish.c
1257
1258 AOA (Apple Onboard Audio) ALSA DRIVER
1259 M:      Johannes Berg <johannes@sipsolutions.net>
1260 L:      linuxppc-dev@lists.ozlabs.org
1261 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1262 S:      Maintained
1263 F:      sound/aoa/
1264
1265 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1266 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1267 L:      linux-iio@vger.kernel.org
1268 S:      Maintained
1269 F:      drivers/iio/adc/stx104.c
1270
1271 APM DRIVER
1272 M:      Jiri Kosina <jikos@kernel.org>
1273 S:      Odd fixes
1274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1275 F:      arch/x86/kernel/apm_32.c
1276 F:      drivers/char/apm-emulation.c
1277 F:      include/linux/apm_bios.h
1278 F:      include/uapi/linux/apm_bios.h
1279
1280 APPARMOR SECURITY MODULE
1281 M:      John Johansen <john.johansen@canonical.com>
1282 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1283 S:      Supported
1284 W:      wiki.apparmor.net
1285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1286 F:      Documentation/admin-guide/LSM/apparmor.rst
1287 F:      security/apparmor/
1288
1289 APPLE BCM5974 MULTITOUCH DRIVER
1290 M:      Henrik Rydberg <rydberg@bitmath.org>
1291 L:      linux-input@vger.kernel.org
1292 S:      Odd fixes
1293 F:      drivers/input/mouse/bcm5974.c
1294
1295 APPLE DART IOMMU DRIVER
1296 M:      Sven Peter <sven@svenpeter.dev>
1297 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1298 L:      iommu@lists.linux-foundation.org
1299 S:      Maintained
1300 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1301 F:      drivers/iommu/apple-dart.c
1302
1303 APPLE PCIE CONTROLLER DRIVER
1304 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1305 M:      Marc Zyngier <maz@kernel.org>
1306 L:      linux-pci@vger.kernel.org
1307 S:      Maintained
1308 F:      drivers/pci/controller/pcie-apple.c
1309
1310 APPLE SMC DRIVER
1311 M:      Henrik Rydberg <rydberg@bitmath.org>
1312 L:      linux-hwmon@vger.kernel.org
1313 S:      Odd fixes
1314 F:      drivers/hwmon/applesmc.c
1315
1316 APPLETALK NETWORK LAYER
1317 L:      netdev@vger.kernel.org
1318 S:      Odd fixes
1319 F:      drivers/net/appletalk/
1320 F:      include/linux/atalk.h
1321 F:      include/uapi/linux/atalk.h
1322 F:      net/appletalk/
1323
1324 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1325 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1326 S:      Supported
1327 F:      arch/arm64/boot/dts/apm/
1328
1329 APPLIED MICRO (APM) X-GENE SOC EDAC
1330 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1333 F:      drivers/edac/xgene_edac.c
1334
1335 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1336 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1337 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1338 S:      Supported
1339 F:      drivers/net/ethernet/apm/xgene-v2/
1340
1341 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1342 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1343 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1344 M:      Quan Nguyen <quan@os.amperecomputing.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1347 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1348 F:      drivers/net/ethernet/apm/xgene/
1349 F:      drivers/net/mdio/mdio-xgene.c
1350
1351 APPLIED MICRO (APM) X-GENE SOC PMU
1352 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1353 S:      Supported
1354 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1355 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1356 F:      drivers/perf/xgene_pmu.c
1357
1358 APTINA CAMERA SENSOR PLL
1359 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1360 L:      linux-media@vger.kernel.org
1361 S:      Maintained
1362 F:      drivers/media/i2c/aptina-pll.*
1363
1364 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1365 M:      Aleksa Savic <savicaleksa83@gmail.com>
1366 L:      linux-hwmon@vger.kernel.org
1367 S:      Maintained
1368 F:      Documentation/hwmon/aquacomputer_d5next.rst
1369 F:      drivers/hwmon/aquacomputer_d5next.c
1370
1371 AQUANTIA ETHERNET DRIVER (atlantic)
1372 M:      Igor Russkikh <irusskikh@marvell.com>
1373 L:      netdev@vger.kernel.org
1374 S:      Supported
1375 W:      https://www.marvell.com/
1376 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1377 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1378 F:      drivers/net/ethernet/aquantia/atlantic/
1379
1380 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1381 M:      Egor Pomozov <epomozov@marvell.com>
1382 L:      netdev@vger.kernel.org
1383 S:      Supported
1384 W:      http://www.aquantia.com
1385 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1386
1387 ARASAN NAND CONTROLLER DRIVER
1388 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1389 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1390 L:      linux-mtd@lists.infradead.org
1391 S:      Maintained
1392 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1393 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1394
1395 ARC FRAMEBUFFER DRIVER
1396 M:      Jaya Kumar <jayalk@intworks.biz>
1397 S:      Maintained
1398 F:      drivers/video/fbdev/arcfb.c
1399 F:      drivers/video/fbdev/core/fb_defio.c
1400
1401 ARC PGU DRM DRIVER
1402 M:      Alexey Brodkin <abrodkin@synopsys.com>
1403 S:      Supported
1404 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1405 F:      drivers/gpu/drm/tiny/arcpgu.c
1406
1407 ARCNET NETWORK LAYER
1408 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1409 L:      netdev@vger.kernel.org
1410 S:      Maintained
1411 F:      drivers/net/arcnet/
1412 F:      include/uapi/linux/if_arcnet.h
1413
1414 ARM ARCHITECTED TIMER DRIVER
1415 M:      Mark Rutland <mark.rutland@arm.com>
1416 M:      Marc Zyngier <maz@kernel.org>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      arch/arm/include/asm/arch_timer.h
1420 F:      arch/arm64/include/asm/arch_timer.h
1421 F:      drivers/clocksource/arm_arch_timer.c
1422
1423 ARM HDLCD DRM DRIVER
1424 M:      Liviu Dudau <liviu.dudau@arm.com>
1425 S:      Supported
1426 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1427 F:      drivers/gpu/drm/arm/hdlcd_*
1428
1429 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1430 M:      Linus Walleij <linus.walleij@linaro.org>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 S:      Maintained
1433 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1434 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1435 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1436 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1437 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1438 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1439 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1440 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1441 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1442 F:      arch/arm/boot/dts/arm-realview-*
1443 F:      arch/arm/boot/dts/integrator*
1444 F:      arch/arm/boot/dts/versatile*
1445 F:      arch/arm/mach-integrator/
1446 F:      arch/arm/mach-realview/
1447 F:      arch/arm/mach-versatile/
1448 F:      arch/arm/plat-versatile/
1449 F:      drivers/bus/arm-integrator-lm.c
1450 F:      drivers/clk/versatile/
1451 F:      drivers/i2c/busses/i2c-versatile.c
1452 F:      drivers/irqchip/irq-versatile-fpga.c
1453 F:      drivers/mtd/maps/physmap-versatile.*
1454 F:      drivers/power/reset/arm-versatile-reboot.c
1455 F:      drivers/soc/versatile/
1456
1457 ARM KOMEDA DRM-KMS DRIVER
1458 M:      James (Qian) Wang <james.qian.wang@arm.com>
1459 M:      Liviu Dudau <liviu.dudau@arm.com>
1460 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1461 L:      Mali DP Maintainers <malidp@foss.arm.com>
1462 S:      Supported
1463 T:      git git://anongit.freedesktop.org/drm/drm-misc
1464 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1465 F:      Documentation/gpu/komeda-kms.rst
1466 F:      drivers/gpu/drm/arm/display/include/
1467 F:      drivers/gpu/drm/arm/display/komeda/
1468
1469 ARM MALI PANFROST DRM DRIVER
1470 M:      Rob Herring <robh@kernel.org>
1471 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1472 R:      Steven Price <steven.price@arm.com>
1473 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1474 L:      dri-devel@lists.freedesktop.org
1475 S:      Supported
1476 T:      git git://anongit.freedesktop.org/drm/drm-misc
1477 F:      drivers/gpu/drm/panfrost/
1478 F:      include/uapi/drm/panfrost_drm.h
1479
1480 ARM MALI-DP DRM DRIVER
1481 M:      Liviu Dudau <liviu.dudau@arm.com>
1482 M:      Brian Starkey <brian.starkey@arm.com>
1483 L:      Mali DP Maintainers <malidp@foss.arm.com>
1484 S:      Supported
1485 T:      git git://anongit.freedesktop.org/drm/drm-misc
1486 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1487 F:      Documentation/gpu/afbc.rst
1488 F:      drivers/gpu/drm/arm/
1489
1490 ARM MFM AND FLOPPY DRIVERS
1491 M:      Ian Molton <spyro@f2s.com>
1492 S:      Maintained
1493 F:      arch/arm/include/asm/floppy.h
1494 F:      arch/arm/mach-rpc/floppydma.S
1495
1496 ARM PMU PROFILING AND DEBUGGING
1497 M:      Will Deacon <will@kernel.org>
1498 M:      Mark Rutland <mark.rutland@arm.com>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1502 F:      Documentation/devicetree/bindings/perf/
1503 F:      arch/arm*/include/asm/hw_breakpoint.h
1504 F:      arch/arm*/include/asm/perf_event.h
1505 F:      arch/arm*/kernel/hw_breakpoint.c
1506 F:      arch/arm*/kernel/perf_*
1507 F:      drivers/perf/
1508 F:      include/linux/perf/arm_pmu.h
1509
1510 ARM PORT
1511 M:      Russell King <linux@armlinux.org.uk>
1512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513 S:      Odd Fixes
1514 W:      http://www.armlinux.org.uk/
1515 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1516 F:      arch/arm/
1517 X:      arch/arm/boot/dts/
1518
1519 ARM PRIMECELL AACI PL041 DRIVER
1520 M:      Russell King <linux@armlinux.org.uk>
1521 S:      Odd Fixes
1522 F:      sound/arm/aaci.*
1523
1524 ARM PRIMECELL BUS SUPPORT
1525 M:      Russell King <linux@armlinux.org.uk>
1526 S:      Odd Fixes
1527 F:      drivers/amba/
1528 F:      include/linux/amba/bus.h
1529
1530 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1531 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1532 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1533 L:      linux-mtd@lists.infradead.org
1534 S:      Maintained
1535 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1536 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1537
1538 ARM PRIMECELL PL35X SMC DRIVER
1539 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1540 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1544 F:      drivers/memory/pl353-smc.c
1545
1546 ARM PRIMECELL CLCD PL110 DRIVER
1547 M:      Russell King <linux@armlinux.org.uk>
1548 S:      Odd Fixes
1549 F:      drivers/video/fbdev/amba-clcd.*
1550
1551 ARM PRIMECELL KMI PL050 DRIVER
1552 M:      Russell King <linux@armlinux.org.uk>
1553 S:      Odd Fixes
1554 F:      drivers/input/serio/ambakmi.*
1555 F:      include/linux/amba/kmi.h
1556
1557 ARM PRIMECELL MMCI PL180/1 DRIVER
1558 M:      Russell King <linux@armlinux.org.uk>
1559 S:      Odd Fixes
1560 F:      drivers/mmc/host/mmci.*
1561 F:      include/linux/amba/mmci.h
1562
1563 ARM PRIMECELL SSP PL022 SPI DRIVER
1564 M:      Linus Walleij <linus.walleij@linaro.org>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1568 F:      drivers/spi/spi-pl022.c
1569
1570 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1571 M:      Russell King <linux@armlinux.org.uk>
1572 S:      Odd Fixes
1573 F:      drivers/tty/serial/amba-pl01*.c
1574 F:      include/linux/amba/serial.h
1575
1576 ARM PRIMECELL VIC PL190/PL192 DRIVER
1577 M:      Linus Walleij <linus.walleij@linaro.org>
1578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1581 F:      drivers/irqchip/irq-vic.c
1582
1583 ARM SMC WATCHDOG DRIVER
1584 M:      Julius Werner <jwerner@chromium.org>
1585 R:      Evan Benn <evanbenn@chromium.org>
1586 S:      Maintained
1587 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1588 F:      drivers/watchdog/arm_smc_wdt.c
1589
1590 ARM SMMU DRIVERS
1591 M:      Will Deacon <will@kernel.org>
1592 R:      Robin Murphy <robin.murphy@arm.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1596 F:      drivers/iommu/arm/
1597 F:      drivers/iommu/io-pgtable-arm*
1598
1599 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1600 M:      Arnd Bergmann <arnd@arndb.de>
1601 M:      Olof Johansson <olof@lixom.net>
1602 M:      soc@kernel.org
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1606 F:      arch/arm/boot/dts/Makefile
1607 F:      arch/arm64/boot/dts/Makefile
1608
1609 ARM SUB-ARCHITECTURES
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1613 F:      arch/arm/mach-*/
1614 F:      arch/arm/plat-*/
1615
1616 ARM/ACTIONS SEMI ARCHITECTURE
1617 M:      Andreas Färber <afaerber@suse.de>
1618 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 F:      Documentation/devicetree/bindings/arm/actions.yaml
1623 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1624 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1625 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1626 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1627 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1628 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1629 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1630 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1631 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1632 F:      arch/arm/boot/dts/owl-*
1633 F:      arch/arm/mach-actions/
1634 F:      arch/arm64/boot/dts/actions/
1635 F:      drivers/clk/actions/
1636 F:      drivers/clocksource/timer-owl*
1637 F:      drivers/dma/owl-dma.c
1638 F:      drivers/i2c/busses/i2c-owl.c
1639 F:      drivers/irqchip/irq-owl-sirq.c
1640 F:      drivers/mmc/host/owl-mmc.c
1641 F:      drivers/net/ethernet/actions/
1642 F:      drivers/pinctrl/actions/*
1643 F:      drivers/soc/actions/
1644 F:      include/dt-bindings/power/owl-*
1645 F:      include/dt-bindings/reset/actions,*
1646 F:      include/linux/soc/actions/
1647 N:      owl
1648
1649 ARM/ADS SPHERE MACHINE SUPPORT
1650 M:      Lennert Buytenhek <kernel@wantstofly.org>
1651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1652 S:      Maintained
1653
1654 ARM/AFEB9260 MACHINE SUPPORT
1655 M:      Sergey Lapin <slapin@ossfans.org>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 S:      Maintained
1658
1659 ARM/AJECO 1ARM MACHINE SUPPORT
1660 M:      Lennert Buytenhek <kernel@wantstofly.org>
1661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662 S:      Maintained
1663
1664 ARM/Allwinner SoC Clock Support
1665 M:      Emilio López <emilio@elopez.com.ar>
1666 S:      Maintained
1667 F:      drivers/clk/sunxi/
1668
1669 ARM/Allwinner sunXi SoC support
1670 M:      Maxime Ripard <mripard@kernel.org>
1671 M:      Chen-Yu Tsai <wens@csie.org>
1672 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1676 L:      linux-sunxi@lists.linux.dev
1677 F:      arch/arm/mach-sunxi/
1678 F:      arch/arm64/boot/dts/allwinner/
1679 F:      drivers/clk/sunxi-ng/
1680 F:      drivers/pinctrl/sunxi/
1681 F:      drivers/soc/sunxi/
1682 N:      allwinner
1683 N:      sun[x456789]i
1684 N:      sun50i
1685
1686 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1687 M:      Neil Armstrong <narmstrong@baylibre.com>
1688 M:      Jerome Brunet <jbrunet@baylibre.com>
1689 L:      linux-amlogic@lists.infradead.org
1690 S:      Maintained
1691 F:      Documentation/devicetree/bindings/clock/amlogic*
1692 F:      drivers/clk/meson/
1693 F:      include/dt-bindings/clock/gxbb*
1694 F:      include/dt-bindings/clock/meson*
1695
1696 ARM/Amlogic Meson SoC Crypto Drivers
1697 M:      Corentin Labbe <clabbe@baylibre.com>
1698 L:      linux-crypto@vger.kernel.org
1699 L:      linux-amlogic@lists.infradead.org
1700 S:      Maintained
1701 F:      Documentation/devicetree/bindings/crypto/amlogic*
1702 F:      drivers/crypto/amlogic/
1703
1704 ARM/Amlogic Meson SoC Sound Drivers
1705 M:      Jerome Brunet <jbrunet@baylibre.com>
1706 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      Documentation/devicetree/bindings/sound/amlogic*
1709 F:      sound/soc/meson/
1710
1711 ARM/Amlogic Meson SoC support
1712 M:      Neil Armstrong <narmstrong@baylibre.com>
1713 M:      Kevin Hilman <khilman@baylibre.com>
1714 R:      Jerome Brunet <jbrunet@baylibre.com>
1715 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 L:      linux-amlogic@lists.infradead.org
1718 S:      Maintained
1719 W:      http://linux-meson.com/
1720 F:      arch/arm/boot/dts/meson*
1721 F:      arch/arm/mach-meson/
1722 F:      arch/arm64/boot/dts/amlogic/
1723 F:      drivers/mmc/host/meson*
1724 F:      drivers/pinctrl/meson/
1725 F:      drivers/rtc/rtc-meson*
1726 F:      drivers/soc/amlogic/
1727 N:      meson
1728
1729 ARM/Annapurna Labs ALPINE ARCHITECTURE
1730 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1731 M:      Antoine Tenart <atenart@kernel.org>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 S:      Maintained
1734 F:      arch/arm/boot/dts/alpine*
1735 F:      arch/arm/mach-alpine/
1736 F:      arch/arm64/boot/dts/amazon/
1737 F:      drivers/*/*alpine*
1738
1739 ARM/APPLE MACHINE SUPPORT
1740 M:      Hector Martin <marcan@marcan.st>
1741 M:      Sven Peter <sven@svenpeter.dev>
1742 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1744 S:      Maintained
1745 W:      https://asahilinux.org
1746 B:      https://github.com/AsahiLinux/linux/issues
1747 C:      irc://irc.oftc.net/asahi-dev
1748 T:      git https://github.com/AsahiLinux/linux.git
1749 F:      Documentation/devicetree/bindings/arm/apple.yaml
1750 F:      Documentation/devicetree/bindings/arm/apple/*
1751 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1752 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1753 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1754 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1755 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1756 F:      Documentation/devicetree/bindings/power/apple*
1757 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1758 F:      arch/arm64/boot/dts/apple/
1759 F:      drivers/i2c/busses/i2c-pasemi-core.c
1760 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1761 F:      drivers/irqchip/irq-apple-aic.c
1762 F:      drivers/mailbox/apple-mailbox.c
1763 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1764 F:      drivers/soc/apple/*
1765 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1766 F:      include/dt-bindings/pinctrl/apple.h
1767 F:      include/linux/apple-mailbox.h
1768
1769 ARM/ARTPEC MACHINE SUPPORT
1770 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1771 M:      Lars Persson <lars.persson@axis.com>
1772 L:      linux-arm-kernel@axis.com
1773 S:      Maintained
1774 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1775 F:      arch/arm/boot/dts/artpec6*
1776 F:      arch/arm/mach-artpec
1777 F:      drivers/clk/axis
1778 F:      drivers/crypto/axis
1779 F:      drivers/mmc/host/usdhi6rol0.c
1780 F:      drivers/pinctrl/pinctrl-artpec*
1781
1782 ARM/ASPEED I2C DRIVER
1783 M:      Brendan Higgins <brendanhiggins@google.com>
1784 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1785 R:      Joel Stanley <joel@jms.id.au>
1786 L:      linux-i2c@vger.kernel.org
1787 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1790 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1791 F:      drivers/i2c/busses/i2c-aspeed.c
1792 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1793
1794 ARM/ASPEED MACHINE SUPPORT
1795 M:      Joel Stanley <joel@jms.id.au>
1796 R:      Andrew Jeffery <andrew@aj.id.au>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1799 S:      Supported
1800 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1802 F:      arch/arm/boot/dts/aspeed-*
1803 F:      arch/arm/mach-aspeed/
1804 N:      aspeed
1805
1806 ARM/BITMAIN ARCHITECTURE
1807 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1811 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1812 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1813 F:      arch/arm64/boot/dts/bitmain/
1814 F:      drivers/clk/clk-bm1880.c
1815 F:      drivers/pinctrl/pinctrl-bm1880.c
1816
1817 ARM/CALXEDA HIGHBANK ARCHITECTURE
1818 M:      Andre Przywara <andre.przywara@arm.com>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/boot/dts/ecx-*.dts*
1822 F:      arch/arm/boot/dts/highbank.dts
1823 F:      arch/arm/mach-highbank/
1824
1825 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1826 M:      Krzysztof Halasa <khalasa@piap.pl>
1827 S:      Maintained
1828 F:      arch/arm/mach-cns3xxx/
1829
1830 ARM/CAVIUM THUNDER NETWORK DRIVER
1831 M:      Sunil Goutham <sgoutham@marvell.com>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Supported
1834 F:      drivers/net/ethernet/cavium/thunder/
1835
1836 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1837 M:      Lukasz Majewski <lukma@denx.de>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840 F:      arch/arm/mach-ep93xx/ts72xx.c
1841
1842 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1843 M:      Alexander Shiyan <shc_work@mail.ru>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Odd Fixes
1846 N:      clps711x
1847
1848 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1849 M:      Lennert Buytenhek <kernel@wantstofly.org>
1850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1851 S:      Maintained
1852
1853 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1854 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1855 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 F:      arch/arm/mach-ep93xx/
1859 F:      arch/arm/mach-ep93xx/include/mach/
1860
1861 ARM/CLKDEV SUPPORT
1862 M:      Russell King <linux@armlinux.org.uk>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1866 F:      drivers/clk/clkdev.c
1867
1868 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1869 M:      Baruch Siach <baruch@tkos.co.il>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 F:      arch/arm/boot/dts/cx92755*
1873 N:      digicolor
1874
1875 ARM/CONTEC MICRO9 MACHINE SUPPORT
1876 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1877 S:      Maintained
1878 F:      arch/arm/mach-ep93xx/micro9.c
1879
1880 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1881 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1882 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1883 R:      Mike Leach <mike.leach@linaro.org>
1884 R:      Leo Yan <leo.yan@linaro.org>
1885 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 S:      Maintained
1888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1889 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1890 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1891 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1892 F:      Documentation/devicetree/bindings/arm/coresight.txt
1893 F:      Documentation/devicetree/bindings/arm/ete.yaml
1894 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1895 F:      Documentation/trace/coresight/*
1896 F:      drivers/hwtracing/coresight/*
1897 F:      include/dt-bindings/arm/coresight-cti-dt.h
1898 F:      include/linux/coresight*
1899 F:      tools/perf/arch/arm/util/auxtrace.c
1900 F:      tools/perf/arch/arm/util/cs-etm.c
1901 F:      tools/perf/arch/arm/util/cs-etm.h
1902 F:      tools/perf/arch/arm/util/pmu.c
1903 F:      tools/perf/util/cs-etm-decoder/*
1904 F:      tools/perf/util/cs-etm.*
1905
1906 ARM/CORGI MACHINE SUPPORT
1907 M:      Richard Purdie <rpurdie@rpsys.net>
1908 S:      Maintained
1909
1910 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1911 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1912 M:      Linus Walleij <linus.walleij@linaro.org>
1913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1914 S:      Maintained
1915 T:      git git://github.com/ulli-kroll/linux.git
1916 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1917 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1918 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1919 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1920 F:      arch/arm/boot/dts/gemini*
1921 F:      arch/arm/mach-gemini/
1922 F:      drivers/crypto/gemini/
1923 F:      drivers/net/ethernet/cortina/
1924 F:      drivers/pinctrl/pinctrl-gemini.c
1925 F:      drivers/rtc/rtc-ftrtc010.c
1926
1927 ARM/CZ.NIC TURRIS SUPPORT
1928 M:      Marek Behún <kabel@kernel.org>
1929 S:      Maintained
1930 W:      https://www.turris.cz/
1931 F:      Documentation/ABI/testing/debugfs-moxtet
1932 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1933 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1934 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1935 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1936 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1937 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1938 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1939 F:      drivers/bus/moxtet.c
1940 F:      drivers/firmware/turris-mox-rwtm.c
1941 F:      drivers/leds/leds-turris-omnia.c
1942 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1943 F:      drivers/gpio/gpio-moxtet.c
1944 F:      drivers/watchdog/armada_37xx_wdt.c
1945 F:      include/dt-bindings/bus/moxtet.h
1946 F:      include/linux/armada-37xx-rwtm-mailbox.h
1947 F:      include/linux/moxtet.h
1948
1949 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1950 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S:      Maintained
1953 F:      arch/arm/mach-pxa/ezx.c
1954
1955 ARM/FARADAY FA526 PORT
1956 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 T:      git git://git.berlios.de/gemini-board
1960 F:      arch/arm/mm/*-fa*
1961
1962 ARM/FOOTBRIDGE ARCHITECTURE
1963 M:      Russell King <linux@armlinux.org.uk>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 W:      http://www.armlinux.org.uk/
1967 F:      arch/arm/include/asm/hardware/dec21285.h
1968 F:      arch/arm/mach-footbridge/
1969
1970 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1971 M:      Shawn Guo <shawnguo@kernel.org>
1972 M:      Sascha Hauer <s.hauer@pengutronix.de>
1973 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1974 R:      Fabio Estevam <festevam@gmail.com>
1975 R:      NXP Linux Team <linux-imx@nxp.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1979 X:      drivers/media/i2c/
1980 N:      imx
1981 N:      mxs
1982
1983 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1984 M:      Shawn Guo <shawnguo@kernel.org>
1985 M:      Li Yang <leoyang.li@nxp.com>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 S:      Maintained
1988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1989 F:      arch/arm/boot/dts/ls1021a*
1990 F:      arch/arm64/boot/dts/freescale/fsl-*
1991 F:      arch/arm64/boot/dts/freescale/qoriq-*
1992
1993 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1994 M:      Shawn Guo <shawnguo@kernel.org>
1995 M:      Sascha Hauer <s.hauer@pengutronix.de>
1996 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1997 R:      Stefan Agner <stefan@agner.ch>
1998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 S:      Maintained
2000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2001 F:      arch/arm/boot/dts/vf*
2002 F:      arch/arm/mach-imx/*vf610*
2003
2004 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2005 M:      Lennert Buytenhek <kernel@wantstofly.org>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008
2009 ARM/GUMSTIX MACHINE SUPPORT
2010 M:      Steve Sakoman <sakoman@gmail.com>
2011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 S:      Maintained
2013
2014 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2015 M:      Philipp Zabel <philipp.zabel@gmail.com>
2016 M:      Paul Parsons <lost.distance@yahoo.com>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      arch/arm/mach-pxa/hx4700.c
2020 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2021 F:      sound/soc/pxa/hx4700.c
2022
2023 ARM/HISILICON SOC SUPPORT
2024 M:      Wei Xu <xuwei5@hisilicon.com>
2025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2026 S:      Supported
2027 W:      http://www.hisilicon.com
2028 T:      git git://github.com/hisilicon/linux-hisi.git
2029 F:      arch/arm/boot/dts/hi3*
2030 F:      arch/arm/boot/dts/hip*
2031 F:      arch/arm/boot/dts/hisi*
2032 F:      arch/arm/mach-hisi/
2033 F:      arch/arm64/boot/dts/hisilicon/
2034
2035 ARM/HP JORNADA 7XX MACHINE SUPPORT
2036 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2037 S:      Maintained
2038 W:      www.jlime.com
2039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2040 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2041 F:      arch/arm/mach-sa1100/jornada720.c
2042
2043 ARM/IGEP MACHINE SUPPORT
2044 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2045 M:      Javier Martinez Canillas <javier@dowhile0.org>
2046 L:      linux-omap@vger.kernel.org
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 F:      arch/arm/boot/dts/omap3-igep*
2050
2051 ARM/INCOME PXA270 SUPPORT
2052 M:      Marek Vasut <marek.vasut@gmail.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2056
2057 ARM/INTEL IOP32X ARM ARCHITECTURE
2058 M:      Lennert Buytenhek <kernel@wantstofly.org>
2059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2060 S:      Maintained
2061
2062 ARM/INTEL IQ81342EX MACHINE SUPPORT
2063 M:      Lennert Buytenhek <kernel@wantstofly.org>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066
2067 ARM/INTEL IXDP2850 MACHINE SUPPORT
2068 M:      Lennert Buytenhek <kernel@wantstofly.org>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071
2072 ARM/INTEL IXP4XX ARM ARCHITECTURE
2073 M:      Linus Walleij <linusw@kernel.org>
2074 M:      Imre Kaloz <kaloz@openwrt.org>
2075 M:      Krzysztof Halasa <khalasa@piap.pl>
2076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2079 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2080 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2081 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2082 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2083 F:      arch/arm/mach-ixp4xx/
2084 F:      drivers/bus/intel-ixp4xx-eb.c
2085 F:      drivers/clocksource/timer-ixp4xx.c
2086 F:      drivers/crypto/ixp4xx_crypto.c
2087 F:      drivers/gpio/gpio-ixp4xx.c
2088 F:      drivers/irqchip/irq-ixp4xx.c
2089 F:      include/linux/irqchip/irq-ixp4xx.h
2090 F:      include/linux/platform_data/timer-ixp4xx.h
2091
2092 ARM/INTEL KEEMBAY ARCHITECTURE
2093 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2094 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2095 S:      Maintained
2096 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2097 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2098 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2099
2100 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2101 M:      Jonathan Cameron <jic23@cam.ac.uk>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 F:      arch/arm/mach-pxa/stargate2.c
2105 F:      drivers/pcmcia/pxa2xx_stargate2.c
2106
2107 ARM/INTEL XSC3 (MANZANO) ARM CORE
2108 M:      Lennert Buytenhek <kernel@wantstofly.org>
2109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2110 S:      Maintained
2111
2112 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2113 M:      Lennert Buytenhek <kernel@wantstofly.org>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S:      Maintained
2116
2117 ARM/LG1K ARCHITECTURE
2118 M:      Chanho Min <chanho.min@lge.com>
2119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 S:      Maintained
2121 F:      arch/arm64/boot/dts/lg/
2122
2123 ARM/LOGICPD PXA270 MACHINE SUPPORT
2124 M:      Lennert Buytenhek <kernel@wantstofly.org>
2125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2126 S:      Maintained
2127
2128 ARM/LPC18XX ARCHITECTURE
2129 M:      Vladimir Zapolskiy <vz@mleia.com>
2130 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2131 S:      Maintained
2132 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2133 F:      arch/arm/boot/dts/lpc43*
2134 F:      drivers/i2c/busses/i2c-lpc2k.c
2135 F:      drivers/memory/pl172.c
2136 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2137 F:      drivers/rtc/rtc-lpc24xx.c
2138 N:      lpc18xx
2139
2140 ARM/LPC32XX SOC SUPPORT
2141 M:      Vladimir Zapolskiy <vz@mleia.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2145 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2146 F:      arch/arm/boot/dts/lpc32*
2147 F:      arch/arm/mach-lpc32xx/
2148 F:      drivers/i2c/busses/i2c-pnx.c
2149 F:      drivers/net/ethernet/nxp/lpc_eth.c
2150 F:      drivers/usb/host/ohci-nxp.c
2151 F:      drivers/watchdog/pnx4008_wdt.c
2152 N:      lpc32xx
2153
2154 ARM/MAGICIAN MACHINE SUPPORT
2155 M:      Philipp Zabel <philipp.zabel@gmail.com>
2156 S:      Maintained
2157
2158 ARM/Marvell Dove/MV78xx0/Orion SOC support
2159 M:      Andrew Lunn <andrew@lunn.ch>
2160 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2161 M:      Gregory Clement <gregory.clement@bootlin.com>
2162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 S:      Maintained
2164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2165 F:      Documentation/devicetree/bindings/soc/dove/
2166 F:      arch/arm/boot/dts/dove*
2167 F:      arch/arm/boot/dts/orion5x*
2168 F:      arch/arm/mach-dove/
2169 F:      arch/arm/mach-mv78xx0/
2170 F:      arch/arm/mach-orion5x/
2171 F:      arch/arm/plat-orion/
2172 F:      drivers/soc/dove/
2173
2174 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2175 M:      Andrew Lunn <andrew@lunn.ch>
2176 M:      Gregory Clement <gregory.clement@bootlin.com>
2177 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2179 S:      Maintained
2180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2181 F:      arch/arm/boot/dts/armada*
2182 F:      arch/arm/boot/dts/kirkwood*
2183 F:      arch/arm/configs/mvebu_*_defconfig
2184 F:      arch/arm/mach-mvebu/
2185 F:      arch/arm64/boot/dts/marvell/armada*
2186 F:      arch/arm64/boot/dts/marvell/cn913*
2187 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2188 F:      drivers/cpufreq/armada-8k-cpufreq.c
2189 F:      drivers/cpufreq/mvebu-cpufreq.c
2190 F:      drivers/irqchip/irq-armada-370-xp.c
2191 F:      drivers/irqchip/irq-mvebu-*
2192 F:      drivers/pinctrl/mvebu/
2193 F:      drivers/rtc/rtc-armada38x.c
2194
2195 ARM/Mediatek RTC DRIVER
2196 M:      Eddie Huang <eddie.huang@mediatek.com>
2197 M:      Sean Wang <sean.wang@mediatek.com>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2200 S:      Maintained
2201 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2202 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2203 F:      drivers/rtc/rtc-mt2712.c
2204 F:      drivers/rtc/rtc-mt6397.c
2205 F:      drivers/rtc/rtc-mt7622.c
2206
2207 ARM/Mediatek SoC support
2208 M:      Matthias Brugger <matthias.bgg@gmail.com>
2209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2210 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2211 S:      Maintained
2212 W:      https://mtk.wiki.kernel.org/
2213 C:      irc://chat.freenode.net/linux-mediatek
2214 F:      arch/arm/boot/dts/mt6*
2215 F:      arch/arm/boot/dts/mt7*
2216 F:      arch/arm/boot/dts/mt8*
2217 F:      arch/arm/mach-mediatek/
2218 F:      arch/arm64/boot/dts/mediatek/
2219 F:      drivers/soc/mediatek/
2220 N:      mtk
2221 N:      mt[678]
2222 K:      mediatek
2223
2224 ARM/Mediatek USB3 PHY DRIVER
2225 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2227 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2228 S:      Maintained
2229 F:      Documentation/devicetree/bindings/phy/mediatek,*
2230 F:      drivers/phy/mediatek/
2231
2232 ARM/Microchip (AT91) SoC support
2233 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2234 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2235 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2236 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2237 S:      Supported
2238 W:      http://www.linux4sam.org
2239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2240 F:      arch/arm/boot/dts/at91*.dts
2241 F:      arch/arm/boot/dts/at91*.dtsi
2242 F:      arch/arm/boot/dts/sama*.dts
2243 F:      arch/arm/boot/dts/sama*.dtsi
2244 F:      arch/arm/include/debug/at91.S
2245 F:      arch/arm/mach-at91/
2246 F:      drivers/memory/atmel*
2247 F:      drivers/watchdog/sama5d4_wdt.c
2248 F:      include/soc/at91/
2249 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2250 X:      drivers/net/wireless/atmel/
2251 N:      at91
2252 N:      atmel
2253
2254 ARM/Microchip Sparx5 SoC support
2255 M:      Lars Povlsen <lars.povlsen@microchip.com>
2256 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2257 M:      UNGLinuxDriver@microchip.com
2258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 S:      Supported
2260 T:      git git://github.com/microchip-ung/linux-upstream.git
2261 F:      arch/arm64/boot/dts/microchip/
2262 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2263 N:      sparx5
2264
2265 Microchip Timer Counter Block (TCB) Capture Driver
2266 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 L:      linux-iio@vger.kernel.org
2269 S:      Maintained
2270 F:      drivers/counter/microchip-tcb-capture.c
2271
2272 ARM/MILBEAUT ARCHITECTURE
2273 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2274 M:      Takao Orito <orito.takao@socionext.com>
2275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2276 S:      Maintained
2277 F:      arch/arm/boot/dts/milbeaut*
2278 F:      arch/arm/mach-milbeaut/
2279 N:      milbeaut
2280
2281 ARM/MIOA701 MACHINE SUPPORT
2282 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 S:      Maintained
2285 F:      arch/arm/mach-pxa/mioa701.c
2286
2287 ARM/MStar/Sigmastar Armv7 SoC support
2288 M:      Daniel Palmer <daniel@thingy.jp>
2289 M:      Romain Perier <romain.perier@gmail.com>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 S:      Maintained
2292 W:      http://linux-chenxing.org/
2293 T:      git git://github.com/linux-chenxing/linux.git
2294 F:      Documentation/devicetree/bindings/arm/mstar/*
2295 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2296 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2297 F:      arch/arm/boot/dts/mstar-*
2298 F:      arch/arm/mach-mstar/
2299 F:      drivers/clk/mstar/
2300 F:      drivers/gpio/gpio-msc313.c
2301 F:      drivers/rtc/rtc-msc313.c
2302 F:      drivers/watchdog/msc313e_wdt.c
2303 F:      include/dt-bindings/clock/mstar-*
2304 F:      include/dt-bindings/gpio/msc313-gpio.h
2305
2306 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2307 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2308 S:      Maintained
2309
2310 ARM/NOMADIK/Ux500 ARCHITECTURES
2311 M:      Linus Walleij <linus.walleij@linaro.org>
2312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2313 S:      Maintained
2314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2315 F:      Documentation/devicetree/bindings/arm/ste-*
2316 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2317 F:      Documentation/devicetree/bindings/arm/ux500/
2318 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2319 F:      arch/arm/boot/dts/ste-*
2320 F:      arch/arm/mach-nomadik/
2321 F:      arch/arm/mach-ux500/
2322 F:      drivers/clk/clk-nomadik.c
2323 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2324 F:      drivers/dma/ste_dma40*
2325 F:      drivers/hwspinlock/u8500_hsem.c
2326 F:      drivers/i2c/busses/i2c-nomadik.c
2327 F:      drivers/iio/adc/ab8500-gpadc.c
2328 F:      drivers/mfd/ab8500*
2329 F:      drivers/mfd/abx500*
2330 F:      drivers/mfd/db8500*
2331 F:      drivers/pinctrl/nomadik/
2332 F:      drivers/rtc/rtc-ab8500.c
2333 F:      drivers/rtc/rtc-pl031.c
2334 F:      drivers/soc/ux500/
2335
2336 ARM/NUVOTON NPCM ARCHITECTURE
2337 M:      Avi Fishman <avifishman70@gmail.com>
2338 M:      Tomer Maimon <tmaimon77@gmail.com>
2339 M:      Tali Perry <tali.perry1@gmail.com>
2340 R:      Patrick Venture <venture@google.com>
2341 R:      Nancy Yuen <yuenn@google.com>
2342 R:      Benjamin Fair <benjaminfair@google.com>
2343 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2344 S:      Supported
2345 F:      Documentation/devicetree/bindings/*/*/*npcm*
2346 F:      Documentation/devicetree/bindings/*/*npcm*
2347 F:      arch/arm/boot/dts/nuvoton-npcm*
2348 F:      arch/arm/mach-npcm/
2349 F:      drivers/*/*npcm*
2350 F:      drivers/*/*/*npcm*
2351 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2352
2353 ARM/NUVOTON WPCM450 ARCHITECTURE
2354 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2355 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2356 S:      Maintained
2357 F:      Documentation/devicetree/bindings/*/*wpcm*
2358 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2359 F:      arch/arm/mach-npcm/wpcm450.c
2360 F:      drivers/*/*wpcm*
2361
2362 ARM/NXP S32G ARCHITECTURE
2363 M:      Chester Lin <clin@suse.com>
2364 R:      Andreas Färber <afaerber@suse.de>
2365 R:      Matthias Brugger <mbrugger@suse.com>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2369
2370 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2371 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2372 S:      Orphan
2373 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2374 F:      arch/arm/mach-s3c/gta02.h
2375 F:      arch/arm/mach-s3c/mach-gta02.c
2376
2377 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2378 M:      Alexander Clouter <alex@digriz.org.uk>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 W:      http://www.digriz.org.uk/ts78xx/kernel
2382 F:      arch/arm/mach-orion5x/ts78xx-*
2383
2384 ARM/OXNAS platform support
2385 M:      Neil Armstrong <narmstrong@baylibre.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2388 S:      Maintained
2389 F:      arch/arm/boot/dts/ox8*.dts*
2390 F:      arch/arm/mach-oxnas/
2391 F:      drivers/power/reset/oxnas-restart.c
2392 N:      oxnas
2393
2394 ARM/PALM TREO SUPPORT
2395 M:      Tomas Cech <sleep_walker@suse.com>
2396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2397 S:      Maintained
2398 W:      http://hackndev.com
2399 F:      arch/arm/mach-pxa/palmtreo.*
2400
2401 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2402 M:      Marek Vasut <marek.vasut@gmail.com>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 S:      Maintained
2405 W:      http://hackndev.com
2406 F:      arch/arm/mach-pxa/include/mach/palmld.h
2407 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2408 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2409 F:      arch/arm/mach-pxa/palmld.c
2410 F:      arch/arm/mach-pxa/palmt5.*
2411 F:      arch/arm/mach-pxa/palmtc.c
2412 F:      arch/arm/mach-pxa/palmte2.*
2413 F:      arch/arm/mach-pxa/palmtx.c
2414
2415 ARM/PALMZ72 SUPPORT
2416 M:      Sergey Lapin <slapin@ossfans.org>
2417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2418 S:      Maintained
2419 W:      http://hackndev.com
2420 F:      arch/arm/mach-pxa/palmz72.*
2421
2422 ARM/PLEB SUPPORT
2423 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2424 S:      Maintained
2425 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2426
2427 ARM/PT DIGITAL BOARD PORT
2428 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2430 S:      Maintained
2431 W:      http://www.armlinux.org.uk/
2432
2433 ARM/QUALCOMM SUPPORT
2434 M:      Andy Gross <agross@kernel.org>
2435 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2436 L:      linux-arm-msm@vger.kernel.org
2437 S:      Maintained
2438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2439 F:      Documentation/devicetree/bindings/*/qcom*
2440 F:      Documentation/devicetree/bindings/soc/qcom/
2441 F:      arch/arm/boot/dts/qcom-*.dts
2442 F:      arch/arm/boot/dts/qcom-*.dtsi
2443 F:      arch/arm/mach-qcom/
2444 F:      arch/arm64/boot/dts/qcom/
2445 F:      drivers/*/*/qcom*
2446 F:      drivers/*/*/qcom/
2447 F:      drivers/*/pm8???-*
2448 F:      drivers/*/qcom*
2449 F:      drivers/*/qcom/
2450 F:      drivers/bluetooth/btqcomsmd.c
2451 F:      drivers/clocksource/timer-qcom.c
2452 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2453 F:      drivers/extcon/extcon-qcom*
2454 F:      drivers/i2c/busses/i2c-qcom-geni.c
2455 F:      drivers/i2c/busses/i2c-qup.c
2456 F:      drivers/iommu/msm*
2457 F:      drivers/mfd/ssbi.c
2458 F:      drivers/mmc/host/mmci_qcom*
2459 F:      drivers/mmc/host/sdhci-msm.c
2460 F:      drivers/pci/controller/dwc/pcie-qcom.c
2461 F:      drivers/phy/qualcomm/
2462 F:      drivers/power/*/msm*
2463 F:      drivers/reset/reset-qcom-*
2464 F:      drivers/scsi/ufs/ufs-qcom*
2465 F:      drivers/spi/spi-geni-qcom.c
2466 F:      drivers/spi/spi-qcom-qspi.c
2467 F:      drivers/spi/spi-qup.c
2468 F:      drivers/tty/serial/msm_serial.c
2469 F:      drivers/usb/dwc3/dwc3-qcom.c
2470 F:      include/dt-bindings/*/qcom*
2471 F:      include/linux/*/qcom*
2472 F:      include/linux/soc/qcom/
2473
2474 ARM/RADISYS ENP2611 MACHINE SUPPORT
2475 M:      Lennert Buytenhek <kernel@wantstofly.org>
2476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2477 S:      Maintained
2478
2479 ARM/RDA MICRO ARCHITECTURE
2480 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2482 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 F:      Documentation/devicetree/bindings/arm/rda.yaml
2485 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2486 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2487 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2488 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2489 F:      arch/arm/boot/dts/rda8810pl-*
2490 F:      drivers/clocksource/timer-rda.c
2491 F:      drivers/gpio/gpio-rda.c
2492 F:      drivers/irqchip/irq-rda-intc.c
2493 F:      drivers/tty/serial/rda-uart.c
2494
2495 ARM/REALTEK ARCHITECTURE
2496 M:      Andreas Färber <afaerber@suse.de>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2499 S:      Maintained
2500 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2501 F:      arch/arm/boot/dts/rtd*
2502 F:      arch/arm/mach-realtek/
2503 F:      arch/arm64/boot/dts/realtek/
2504
2505 ARM/RENESAS ARM64 ARCHITECTURE
2506 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2507 M:      Magnus Damm <magnus.damm@gmail.com>
2508 L:      linux-renesas-soc@vger.kernel.org
2509 S:      Supported
2510 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2512 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2513 F:      arch/arm64/boot/dts/renesas/
2514 F:      drivers/soc/renesas/
2515 F:      include/linux/soc/renesas/
2516
2517 ARM/RISCPC ARCHITECTURE
2518 M:      Russell King <linux@armlinux.org.uk>
2519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 S:      Maintained
2521 W:      http://www.armlinux.org.uk/
2522 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2523 F:      arch/arm/include/asm/hardware/ioc.h
2524 F:      arch/arm/include/asm/hardware/iomd.h
2525 F:      arch/arm/include/asm/hardware/memc.h
2526 F:      arch/arm/mach-rpc/
2527 F:      drivers/net/ethernet/8390/etherh.c
2528 F:      drivers/net/ethernet/i825xx/ether1*
2529 F:      drivers/net/ethernet/seeq/ether3*
2530 F:      drivers/scsi/arm/
2531
2532 ARM/Rockchip SoC support
2533 M:      Heiko Stuebner <heiko@sntech.de>
2534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 L:      linux-rockchip@lists.infradead.org
2536 S:      Maintained
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2538 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2539 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2540 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2541 F:      arch/arm/boot/dts/rk3*
2542 F:      arch/arm/boot/dts/rv1108*
2543 F:      arch/arm/mach-rockchip/
2544 F:      drivers/*/*/*rockchip*
2545 F:      drivers/*/*rockchip*
2546 F:      drivers/clk/rockchip/
2547 F:      drivers/i2c/busses/i2c-rk3x.c
2548 F:      sound/soc/rockchip/
2549 N:      rockchip
2550
2551 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2552 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 L:      linux-samsung-soc@vger.kernel.org
2555 S:      Maintained
2556 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2557 F:      Documentation/arm/samsung/
2558 F:      Documentation/devicetree/bindings/arm/samsung/
2559 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2560 F:      Documentation/devicetree/bindings/soc/samsung/
2561 F:      arch/arm/boot/dts/exynos*
2562 F:      arch/arm/boot/dts/s3c*
2563 F:      arch/arm/boot/dts/s5p*
2564 F:      arch/arm/mach-exynos*/
2565 F:      arch/arm/mach-s3c/
2566 F:      arch/arm/mach-s5p*/
2567 F:      arch/arm64/boot/dts/exynos/
2568 F:      drivers/*/*/*s3c24*
2569 F:      drivers/*/*s3c24*
2570 F:      drivers/*/*s3c64xx*
2571 F:      drivers/*/*s5pv210*
2572 F:      drivers/clocksource/samsung_pwm_timer.c
2573 F:      drivers/memory/samsung/
2574 F:      drivers/pwm/pwm-samsung.c
2575 F:      drivers/soc/samsung/
2576 F:      drivers/tty/serial/samsung*
2577 F:      include/clocksource/samsung_pwm.h
2578 F:      include/linux/platform_data/*s3c*
2579 F:      include/linux/serial_s3c.h
2580 F:      include/linux/soc/samsung/
2581 N:      exynos
2582 N:      s3c2410
2583 N:      s3c64xx
2584 N:      s5pv210
2585
2586 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2587 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 L:      linux-media@vger.kernel.org
2590 S:      Maintained
2591 F:      drivers/media/platform/s5p-g2d/
2592
2593 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2594 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2595 L:      linux-samsung-soc@vger.kernel.org
2596 L:      linux-media@vger.kernel.org
2597 S:      Maintained
2598 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2599 F:      drivers/media/cec/platform/s5p/
2600
2601 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2602 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2603 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2604 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 L:      linux-media@vger.kernel.org
2607 S:      Maintained
2608 F:      drivers/media/platform/s5p-jpeg/
2609
2610 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2611 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2612 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2614 L:      linux-media@vger.kernel.org
2615 S:      Maintained
2616 F:      drivers/media/platform/s5p-mfc/
2617
2618 ARM/SHMOBILE ARM ARCHITECTURE
2619 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2620 M:      Magnus Damm <magnus.damm@gmail.com>
2621 L:      linux-renesas-soc@vger.kernel.org
2622 S:      Supported
2623 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2625 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2626 F:      arch/arm/boot/dts/emev2*
2627 F:      arch/arm/boot/dts/gr-peach*
2628 F:      arch/arm/boot/dts/iwg20d-q7*
2629 F:      arch/arm/boot/dts/r7s*
2630 F:      arch/arm/boot/dts/r8a*
2631 F:      arch/arm/boot/dts/r9a*
2632 F:      arch/arm/boot/dts/sh*
2633 F:      arch/arm/configs/shmobile_defconfig
2634 F:      arch/arm/include/debug/renesas-scif.S
2635 F:      arch/arm/mach-shmobile/
2636 F:      drivers/soc/renesas/
2637 F:      include/linux/soc/renesas/
2638
2639 ARM/SOCFPGA ARCHITECTURE
2640 M:      Dinh Nguyen <dinguyen@kernel.org>
2641 S:      Maintained
2642 W:      http://www.rocketboards.org
2643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2644 F:      arch/arm/boot/dts/socfpga*
2645 F:      arch/arm/configs/socfpga_defconfig
2646 F:      arch/arm/mach-socfpga/
2647 F:      arch/arm64/boot/dts/altera/
2648 F:      arch/arm64/boot/dts/intel/
2649
2650 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2651 M:      Dinh Nguyen <dinguyen@kernel.org>
2652 S:      Maintained
2653 F:      drivers/clk/socfpga/
2654
2655 ARM/SOCFPGA EDAC SUPPORT
2656 M:      Dinh Nguyen <dinguyen@kernel.org>
2657 S:      Maintained
2658 F:      drivers/edac/altera_edac.[ch]
2659
2660 ARM/SPREADTRUM SoC SUPPORT
2661 M:      Orson Zhai <orsonzhai@gmail.com>
2662 M:      Baolin Wang <baolin.wang7@gmail.com>
2663 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2664 S:      Maintained
2665 F:      arch/arm64/boot/dts/sprd
2666 N:      sprd
2667 N:      sc27xx
2668 N:      sc2731
2669
2670 ARM/STI ARCHITECTURE
2671 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2673 S:      Maintained
2674 W:      http://www.stlinux.com
2675 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2676 F:      arch/arm/boot/dts/sti*
2677 F:      arch/arm/mach-sti/
2678 F:      drivers/ata/ahci_st.c
2679 F:      drivers/char/hw_random/st-rng.c
2680 F:      drivers/clocksource/arm_global_timer.c
2681 F:      drivers/clocksource/clksrc_st_lpc.c
2682 F:      drivers/cpufreq/sti-cpufreq.c
2683 F:      drivers/dma/st_fdma*
2684 F:      drivers/i2c/busses/i2c-st.c
2685 F:      drivers/media/platform/sti/c8sectpfe/
2686 F:      drivers/media/rc/st_rc.c
2687 F:      drivers/mmc/host/sdhci-st.c
2688 F:      drivers/phy/st/phy-miphy28lp.c
2689 F:      drivers/phy/st/phy-stih407-usb.c
2690 F:      drivers/pinctrl/pinctrl-st.c
2691 F:      drivers/remoteproc/st_remoteproc.c
2692 F:      drivers/remoteproc/st_slim_rproc.c
2693 F:      drivers/reset/sti/
2694 F:      drivers/rtc/rtc-st-lpc.c
2695 F:      drivers/tty/serial/st-asc.c
2696 F:      drivers/usb/dwc3/dwc3-st.c
2697 F:      drivers/usb/host/ehci-st.c
2698 F:      drivers/usb/host/ohci-st.c
2699 F:      drivers/watchdog/st_lpc_wdt.c
2700 F:      include/linux/remoteproc/st_slim_rproc.h
2701
2702 ARM/STM32 ARCHITECTURE
2703 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2704 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2705 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2707 S:      Maintained
2708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2709 F:      arch/arm/boot/dts/stm32*
2710 F:      arch/arm/mach-stm32/
2711 F:      drivers/clocksource/armv7m_systick.c
2712 N:      stm32
2713 N:      stm
2714
2715 ARM/Synaptics SoC support
2716 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2717 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2719 S:      Maintained
2720 F:      arch/arm/boot/dts/berlin*
2721 F:      arch/arm/mach-berlin/
2722 F:      arch/arm64/boot/dts/synaptics/
2723
2724 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2725 M:      Lennert Buytenhek <kernel@wantstofly.org>
2726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2727 S:      Maintained
2728
2729 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2730 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2731 L:      linux-tegra@vger.kernel.org
2732 L:      linux-media@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2735 F:      drivers/media/cec/platform/tegra/
2736
2737 ARM/TETON BGA MACHINE SUPPORT
2738 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 S:      Maintained
2741
2742 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2743 M:      Santosh Shilimkar <ssantosh@kernel.org>
2744 L:      linux-kernel@vger.kernel.org
2745 S:      Maintained
2746 F:      drivers/memory/*emif*
2747
2748 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2749 M:      Nishanth Menon <nm@ti.com>
2750 M:      Santosh Shilimkar <ssantosh@kernel.org>
2751 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2752 S:      Maintained
2753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2754 F:      arch/arm/boot/dts/keystone-*
2755 F:      arch/arm/mach-keystone/
2756
2757 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2758 M:      Santosh Shilimkar <ssantosh@kernel.org>
2759 L:      linux-kernel@vger.kernel.org
2760 S:      Maintained
2761 F:      drivers/clk/keystone/
2762
2763 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2764 M:      Santosh Shilimkar <ssantosh@kernel.org>
2765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2766 L:      linux-kernel@vger.kernel.org
2767 S:      Maintained
2768 F:      drivers/clocksource/timer-keystone.c
2769
2770 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2771 M:      Santosh Shilimkar <ssantosh@kernel.org>
2772 L:      linux-kernel@vger.kernel.org
2773 S:      Maintained
2774 F:      drivers/power/reset/keystone-reset.c
2775
2776 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2777 M:      Nishanth Menon <nm@ti.com>
2778 M:      Vignesh Raghavendra <vigneshr@ti.com>
2779 M:      Tero Kristo <kristo@kernel.org>
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S:      Supported
2782 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2783 F:      arch/arm64/boot/dts/ti/Makefile
2784 F:      arch/arm64/boot/dts/ti/k3-*
2785 F:      include/dt-bindings/pinctrl/k3.h
2786
2787 ARM/THECUS N2100 MACHINE SUPPORT
2788 M:      Lennert Buytenhek <kernel@wantstofly.org>
2789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2790 S:      Maintained
2791
2792 ARM/TOSA MACHINE SUPPORT
2793 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2794 M:      Dirk Opfer <dirk@opfer-online.de>
2795 S:      Maintained
2796
2797 ARM/TOSHIBA VISCONTI ARCHITECTURE
2798 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Supported
2801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2802 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2803 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2804 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2805 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2806 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2807 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2808 F:      arch/arm64/boot/dts/toshiba/
2809 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2810 F:      drivers/gpio/gpio-visconti.c
2811 F:      drivers/pci/controller/dwc/pcie-visconti.c
2812 F:      drivers/pinctrl/visconti/
2813 F:      drivers/watchdog/visconti_wdt.c
2814 N:      visconti
2815
2816 ARM/UNIPHIER ARCHITECTURE
2817 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2818 M:      Masami Hiramatsu <mhiramat@kernel.org>
2819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S:      Maintained
2821 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2822 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2823 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2824 F:      arch/arm/boot/dts/uniphier*
2825 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2826 F:      arch/arm/mach-uniphier/
2827 F:      arch/arm/mm/cache-uniphier.c
2828 F:      arch/arm64/boot/dts/socionext/uniphier*
2829 F:      drivers/bus/uniphier-system-bus.c
2830 F:      drivers/clk/uniphier/
2831 F:      drivers/dma/uniphier-mdmac.c
2832 F:      drivers/gpio/gpio-uniphier.c
2833 F:      drivers/i2c/busses/i2c-uniphier*
2834 F:      drivers/irqchip/irq-uniphier-aidet.c
2835 F:      drivers/mmc/host/uniphier-sd.c
2836 F:      drivers/pinctrl/uniphier/
2837 F:      drivers/reset/reset-uniphier.c
2838 F:      drivers/tty/serial/8250/8250_uniphier.c
2839 N:      uniphier
2840
2841 ARM/VERSATILE EXPRESS PLATFORM
2842 M:      Liviu Dudau <liviu.dudau@arm.com>
2843 M:      Sudeep Holla <sudeep.holla@arm.com>
2844 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2846 S:      Maintained
2847 F:      */*/*/vexpress*
2848 F:      */*/vexpress*
2849 F:      arch/arm/boot/dts/vexpress*
2850 F:      arch/arm/mach-vexpress/
2851 F:      arch/arm64/boot/dts/arm/
2852 F:      drivers/clk/versatile/clk-vexpress-osc.c
2853 F:      drivers/clocksource/timer-versatile.c
2854 N:      mps2
2855
2856 ARM/VFP SUPPORT
2857 M:      Russell King <linux@armlinux.org.uk>
2858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2859 S:      Maintained
2860 W:      http://www.armlinux.org.uk/
2861 F:      arch/arm/vfp/
2862
2863 ARM/VOIPAC PXA270 SUPPORT
2864 M:      Marek Vasut <marek.vasut@gmail.com>
2865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2866 S:      Maintained
2867 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2868 F:      arch/arm/mach-pxa/vpac270.c
2869
2870 ARM/VT8500 ARM ARCHITECTURE
2871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2872 S:      Orphan
2873 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2874 F:      arch/arm/mach-vt8500/
2875 F:      drivers/clocksource/timer-vt8500.c
2876 F:      drivers/i2c/busses/i2c-wmt.c
2877 F:      drivers/mmc/host/wmt-sdmmc.c
2878 F:      drivers/pwm/pwm-vt8500.c
2879 F:      drivers/rtc/rtc-vt8500.c
2880 F:      drivers/tty/serial/vt8500_serial.c
2881 F:      drivers/usb/host/ehci-platform.c
2882 F:      drivers/usb/host/uhci-platform.c
2883 F:      drivers/video/fbdev/vt8500lcdfb.*
2884 F:      drivers/video/fbdev/wm8505fb*
2885 F:      drivers/video/fbdev/wmt_ge_rops.*
2886
2887 ARM/ZIPIT Z2 SUPPORT
2888 M:      Marek Vasut <marek.vasut@gmail.com>
2889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2890 S:      Maintained
2891 F:      arch/arm/mach-pxa/include/mach/z2.h
2892 F:      arch/arm/mach-pxa/z2.c
2893
2894 ARM/ZYNQ ARCHITECTURE
2895 M:      Michal Simek <michal.simek@xilinx.com>
2896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2897 S:      Supported
2898 W:      http://wiki.xilinx.com
2899 T:      git https://github.com/Xilinx/linux-xlnx.git
2900 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2901 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2902 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2903 F:      arch/arm/mach-zynq/
2904 F:      drivers/clocksource/timer-cadence-ttc.c
2905 F:      drivers/cpuidle/cpuidle-zynq.c
2906 F:      drivers/edac/synopsys_edac.c
2907 F:      drivers/i2c/busses/i2c-cadence.c
2908 F:      drivers/i2c/busses/i2c-xiic.c
2909 F:      drivers/mmc/host/sdhci-of-arasan.c
2910 N:      zynq
2911 N:      xilinx
2912
2913 ARM64 PORT (AARCH64 ARCHITECTURE)
2914 M:      Catalin Marinas <catalin.marinas@arm.com>
2915 M:      Will Deacon <will@kernel.org>
2916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2917 S:      Maintained
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2919 F:      Documentation/arm64/
2920 F:      arch/arm64/
2921 F:      tools/testing/selftests/arm64/
2922 X:      arch/arm64/boot/dts/
2923
2924 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2925 M:      George McCollister <george.mccollister@gmail.com>
2926 L:      netdev@vger.kernel.org
2927 S:      Maintained
2928 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2929 F:      drivers/net/dsa/xrs700x/*
2930 F:      net/dsa/tag_xrs700x.c
2931
2932 AS3645A LED FLASH CONTROLLER DRIVER
2933 M:      Sakari Ailus <sakari.ailus@iki.fi>
2934 L:      linux-leds@vger.kernel.org
2935 S:      Maintained
2936 F:      drivers/leds/flash/leds-as3645a.c
2937
2938 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2939 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2940 L:      linux-media@vger.kernel.org
2941 S:      Maintained
2942 T:      git git://linuxtv.org/media_tree.git
2943 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2944 F:      drivers/media/i2c/ak7375.c
2945
2946 ASAHI KASEI AK8974 DRIVER
2947 M:      Linus Walleij <linus.walleij@linaro.org>
2948 L:      linux-iio@vger.kernel.org
2949 S:      Supported
2950 W:      http://www.akm.com/
2951 F:      drivers/iio/magnetometer/ak8974.c
2952
2953 ASC7621 HARDWARE MONITOR DRIVER
2954 M:      George Joseph <george.joseph@fairview5.com>
2955 L:      linux-hwmon@vger.kernel.org
2956 S:      Maintained
2957 F:      Documentation/hwmon/asc7621.rst
2958 F:      drivers/hwmon/asc7621.c
2959
2960 ASIX AX88796C SPI ETHERNET ADAPTER
2961 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2962 S:      Maintained
2963 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2964 F:      drivers/net/ethernet/asix/ax88796c_*
2965
2966 ASPEED PINCTRL DRIVERS
2967 M:      Andrew Jeffery <andrew@aj.id.au>
2968 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2969 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2970 L:      linux-gpio@vger.kernel.org
2971 S:      Maintained
2972 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2973 F:      drivers/pinctrl/aspeed/
2974
2975 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2976 M:      Eddie James <eajames@linux.ibm.com>
2977 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2978 S:      Maintained
2979 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2980 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2981 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2982
2983 ASPEED SD/MMC DRIVER
2984 M:      Andrew Jeffery <andrew@aj.id.au>
2985 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2986 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2987 L:      linux-mmc@vger.kernel.org
2988 S:      Maintained
2989 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2990 F:      drivers/mmc/host/sdhci-of-aspeed*
2991
2992 ASPEED VIDEO ENGINE DRIVER
2993 M:      Eddie James <eajames@linux.ibm.com>
2994 L:      linux-media@vger.kernel.org
2995 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2996 S:      Maintained
2997 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2998 F:      drivers/media/platform/aspeed-video.c
2999
3000 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3001 M:      Corentin Chary <corentin.chary@gmail.com>
3002 L:      acpi4asus-user@lists.sourceforge.net
3003 L:      platform-driver-x86@vger.kernel.org
3004 S:      Maintained
3005 W:      http://acpi4asus.sf.net
3006 F:      drivers/platform/x86/asus*.c
3007 F:      drivers/platform/x86/eeepc*.c
3008
3009 ASUS WIRELESS RADIO CONTROL DRIVER
3010 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3011 L:      platform-driver-x86@vger.kernel.org
3012 S:      Maintained
3013 F:      drivers/platform/x86/asus-wireless.c
3014
3015 ASYMMETRIC KEYS
3016 M:      David Howells <dhowells@redhat.com>
3017 L:      keyrings@vger.kernel.org
3018 S:      Maintained
3019 F:      Documentation/crypto/asymmetric-keys.rst
3020 F:      crypto/asymmetric_keys/
3021 F:      include/crypto/pkcs7.h
3022 F:      include/crypto/public_key.h
3023 F:      include/linux/verification.h
3024
3025 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3026 R:      Dan Williams <dan.j.williams@intel.com>
3027 S:      Odd fixes
3028 W:      http://sourceforge.net/projects/xscaleiop
3029 F:      Documentation/crypto/async-tx-api.rst
3030 F:      crypto/async_tx/
3031 F:      include/linux/async_tx.h
3032
3033 AT24 EEPROM DRIVER
3034 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3035 L:      linux-i2c@vger.kernel.org
3036 S:      Maintained
3037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3038 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3039 F:      drivers/misc/eeprom/at24.c
3040
3041 ATA OVER ETHERNET (AOE) DRIVER
3042 M:      "Justin Sanders" <justin@coraid.com>
3043 S:      Supported
3044 W:      http://www.openaoe.org/
3045 F:      Documentation/admin-guide/aoe/
3046 F:      drivers/block/aoe/
3047
3048 ATC260X PMIC MFD DRIVER
3049 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3050 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3051 L:      linux-actions@lists.infradead.org
3052 S:      Maintained
3053 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3054 F:      drivers/input/misc/atc260x-onkey.c
3055 F:      drivers/mfd/atc260*
3056 F:      drivers/power/reset/atc260x-poweroff.c
3057 F:      drivers/regulator/atc260x-regulator.c
3058 F:      include/linux/mfd/atc260x/*
3059
3060 ATHEROS 71XX/9XXX GPIO DRIVER
3061 M:      Alban Bedel <albeu@free.fr>
3062 S:      Maintained
3063 W:      https://github.com/AlbanBedel/linux
3064 T:      git git://github.com/AlbanBedel/linux
3065 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3066 F:      drivers/gpio/gpio-ath79.c
3067
3068 ATHEROS 71XX/9XXX USB PHY DRIVER
3069 M:      Alban Bedel <albeu@free.fr>
3070 S:      Maintained
3071 W:      https://github.com/AlbanBedel/linux
3072 T:      git git://github.com/AlbanBedel/linux
3073 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3074 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3075
3076 ATHEROS ATH GENERIC UTILITIES
3077 M:      Kalle Valo <kvalo@kernel.org>
3078 L:      linux-wireless@vger.kernel.org
3079 S:      Supported
3080 F:      drivers/net/wireless/ath/*
3081
3082 ATHEROS ATH5K WIRELESS DRIVER
3083 M:      Jiri Slaby <jirislaby@kernel.org>
3084 M:      Nick Kossifidis <mickflemm@gmail.com>
3085 M:      Luis Chamberlain <mcgrof@kernel.org>
3086 L:      linux-wireless@vger.kernel.org
3087 S:      Maintained
3088 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3089 F:      drivers/net/wireless/ath/ath5k/
3090
3091 ATHEROS ATH6KL WIRELESS DRIVER
3092 M:      Kalle Valo <kvalo@kernel.org>
3093 L:      linux-wireless@vger.kernel.org
3094 S:      Supported
3095 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3097 F:      drivers/net/wireless/ath/ath6kl/
3098
3099 ATI_REMOTE2 DRIVER
3100 M:      Ville Syrjala <syrjala@sci.fi>
3101 S:      Maintained
3102 F:      drivers/input/misc/ati_remote2.c
3103
3104 ATK0110 HWMON DRIVER
3105 M:      Luca Tettamanti <kronos.it@gmail.com>
3106 L:      linux-hwmon@vger.kernel.org
3107 S:      Maintained
3108 F:      drivers/hwmon/asus_atk0110.c
3109
3110 ATLX ETHERNET DRIVERS
3111 M:      Chris Snook <chris.snook@gmail.com>
3112 L:      netdev@vger.kernel.org
3113 S:      Maintained
3114 W:      http://sourceforge.net/projects/atl1
3115 W:      http://atl1.sourceforge.net
3116 F:      drivers/net/ethernet/atheros/
3117
3118 ATM
3119 M:      Chas Williams <3chas3@gmail.com>
3120 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3121 L:      netdev@vger.kernel.org
3122 S:      Maintained
3123 W:      http://linux-atm.sourceforge.net
3124 F:      drivers/atm/
3125 F:      include/linux/atm*
3126 F:      include/uapi/linux/atm*
3127
3128 ATMEL MACB ETHERNET DRIVER
3129 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3130 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3131 S:      Supported
3132 F:      drivers/net/ethernet/cadence/
3133
3134 ATMEL MAXTOUCH DRIVER
3135 M:      Nick Dyer <nick@shmanahar.org>
3136 S:      Maintained
3137 T:      git git://github.com/ndyer/linux.git
3138 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3139 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3140
3141 ATMEL WIRELESS DRIVER
3142 M:      Simon Kelley <simon@thekelleys.org.uk>
3143 L:      linux-wireless@vger.kernel.org
3144 S:      Maintained
3145 W:      http://www.thekelleys.org.uk/atmel
3146 W:      http://atmelwlandriver.sourceforge.net/
3147 F:      drivers/net/wireless/atmel/atmel*
3148
3149 ATOMIC INFRASTRUCTURE
3150 M:      Will Deacon <will@kernel.org>
3151 M:      Peter Zijlstra <peterz@infradead.org>
3152 R:      Boqun Feng <boqun.feng@gmail.com>
3153 L:      linux-kernel@vger.kernel.org
3154 S:      Maintained
3155 F:      arch/*/include/asm/atomic*.h
3156 F:      include/*/atomic*.h
3157 F:      include/linux/refcount.h
3158 F:      Documentation/atomic_*.txt
3159 F:      scripts/atomic/
3160
3161 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3162 M:      Bradley Grove <linuxdrivers@attotech.com>
3163 L:      linux-scsi@vger.kernel.org
3164 S:      Supported
3165 W:      http://www.attotech.com
3166 F:      drivers/scsi/esas2r
3167
3168 ATUSB IEEE 802.15.4 RADIO DRIVER
3169 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3170 L:      linux-wpan@vger.kernel.org
3171 S:      Maintained
3172 F:      drivers/net/ieee802154/at86rf230.h
3173 F:      drivers/net/ieee802154/atusb.c
3174 F:      drivers/net/ieee802154/atusb.h
3175
3176 AUDIT SUBSYSTEM
3177 M:      Paul Moore <paul@paul-moore.com>
3178 M:      Eric Paris <eparis@redhat.com>
3179 L:      linux-audit@redhat.com (moderated for non-subscribers)
3180 S:      Supported
3181 W:      https://github.com/linux-audit
3182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3183 F:      include/asm-generic/audit_*.h
3184 F:      include/linux/audit.h
3185 F:      include/linux/audit_arch.h
3186 F:      include/uapi/linux/audit.h
3187 F:      kernel/audit*
3188 F:      lib/*audit.c
3189
3190 AUXILIARY DISPLAY DRIVERS
3191 M:      Miguel Ojeda <ojeda@kernel.org>
3192 S:      Maintained
3193 F:      Documentation/devicetree/bindings/auxdisplay/
3194 F:      drivers/auxdisplay/
3195 F:      include/linux/cfag12864b.h
3196
3197 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3198 M:      Andreas Klinger <ak@it-klinger.de>
3199 L:      linux-iio@vger.kernel.org
3200 S:      Maintained
3201 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3202 F:      drivers/iio/adc/hx711.c
3203
3204 AX.25 NETWORK LAYER
3205 M:      Ralf Baechle <ralf@linux-mips.org>
3206 L:      linux-hams@vger.kernel.org
3207 S:      Maintained
3208 W:      http://www.linux-ax25.org/
3209 F:      include/net/ax25.h
3210 F:      include/uapi/linux/ax25.h
3211 F:      net/ax25/
3212
3213 AXENTIA ARM DEVICES
3214 M:      Peter Rosin <peda@axentia.se>
3215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3216 S:      Maintained
3217 F:      arch/arm/boot/dts/at91-linea.dtsi
3218 F:      arch/arm/boot/dts/at91-natte.dtsi
3219 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3220 F:      arch/arm/boot/dts/at91-tse850-3.dts
3221
3222 AXENTIA ASOC DRIVERS
3223 M:      Peter Rosin <peda@axentia.se>
3224 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3225 S:      Maintained
3226 F:      Documentation/devicetree/bindings/sound/axentia,*
3227 F:      sound/soc/atmel/tse850-pcm5142.c
3228
3229 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3230 M:      Nuno Sá <nuno.sa@analog.com>
3231 L:      linux-hwmon@vger.kernel.org
3232 S:      Supported
3233 W:      http://ez.analog.com/community/linux-device-drivers
3234 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3235 F:      drivers/hwmon/axi-fan-control.c
3236
3237 AXXIA I2C CONTROLLER
3238 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3239 L:      linux-i2c@vger.kernel.org
3240 S:      Maintained
3241 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3242 F:      drivers/i2c/busses/i2c-axxia.c
3243
3244 AZ6007 DVB DRIVER
3245 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3246 L:      linux-media@vger.kernel.org
3247 S:      Maintained
3248 W:      https://linuxtv.org
3249 T:      git git://linuxtv.org/media_tree.git
3250 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3251
3252 AZTECH FM RADIO RECEIVER DRIVER
3253 M:      Hans Verkuil <hverkuil@xs4all.nl>
3254 L:      linux-media@vger.kernel.org
3255 S:      Maintained
3256 W:      https://linuxtv.org
3257 T:      git git://linuxtv.org/media_tree.git
3258 F:      drivers/media/radio/radio-aztech*
3259
3260 B43 WIRELESS DRIVER
3261 L:      linux-wireless@vger.kernel.org
3262 L:      b43-dev@lists.infradead.org
3263 S:      Odd Fixes
3264 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3265 F:      drivers/net/wireless/broadcom/b43/
3266
3267 B43LEGACY WIRELESS DRIVER
3268 M:      Larry Finger <Larry.Finger@lwfinger.net>
3269 L:      linux-wireless@vger.kernel.org
3270 L:      b43-dev@lists.infradead.org
3271 S:      Maintained
3272 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3273 F:      drivers/net/wireless/broadcom/b43legacy/
3274
3275 BACKLIGHT CLASS/SUBSYSTEM
3276 M:      Lee Jones <lee.jones@linaro.org>
3277 M:      Daniel Thompson <daniel.thompson@linaro.org>
3278 M:      Jingoo Han <jingoohan1@gmail.com>
3279 L:      dri-devel@lists.freedesktop.org
3280 S:      Maintained
3281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3282 F:      Documentation/ABI/stable/sysfs-class-backlight
3283 F:      Documentation/ABI/testing/sysfs-class-backlight
3284 F:      Documentation/devicetree/bindings/leds/backlight
3285 F:      drivers/video/backlight/
3286 F:      include/linux/backlight.h
3287 F:      include/linux/pwm_backlight.h
3288
3289 BARCO P50 GPIO DRIVER
3290 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3291 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3292 S:      Maintained
3293 F:      drivers/platform/x86/barco-p50-gpio.c
3294
3295 BATMAN ADVANCED
3296 M:      Marek Lindner <mareklindner@neomailbox.ch>
3297 M:      Simon Wunderlich <sw@simonwunderlich.de>
3298 M:      Antonio Quartulli <a@unstable.cc>
3299 M:      Sven Eckelmann <sven@narfation.org>
3300 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3301 S:      Maintained
3302 W:      https://www.open-mesh.org/
3303 Q:      https://patchwork.open-mesh.org/project/batman/list/
3304 B:      https://www.open-mesh.org/projects/batman-adv/issues
3305 C:      ircs://irc.hackint.org/batadv
3306 T:      git https://git.open-mesh.org/linux-merge.git
3307 F:      Documentation/networking/batman-adv.rst
3308 F:      include/uapi/linux/batadv_packet.h
3309 F:      include/uapi/linux/batman_adv.h
3310 F:      net/batman-adv/
3311
3312 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3313 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3314 L:      linux-hams@vger.kernel.org
3315 S:      Maintained
3316 W:      http://www.baycom.org/~tom/ham/ham.html
3317 F:      drivers/net/hamradio/baycom*
3318
3319 BCACHE (BLOCK LAYER CACHE)
3320 M:      Coly Li <colyli@suse.de>
3321 M:      Kent Overstreet <kent.overstreet@gmail.com>
3322 L:      linux-bcache@vger.kernel.org
3323 S:      Maintained
3324 W:      http://bcache.evilpiepirate.org
3325 C:      irc://irc.oftc.net/bcache
3326 F:      drivers/md/bcache/
3327
3328 BDISP ST MEDIA DRIVER
3329 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3330 L:      linux-media@vger.kernel.org
3331 S:      Supported
3332 W:      https://linuxtv.org
3333 T:      git git://linuxtv.org/media_tree.git
3334 F:      drivers/media/platform/sti/bdisp
3335
3336 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3337 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3338 L:      netdev@vger.kernel.org
3339 S:      Maintained
3340 F:      drivers/net/ethernet/ec_bhf.c
3341
3342 BEFS FILE SYSTEM
3343 M:      Luis de Bethencourt <luisbg@kernel.org>
3344 M:      Salah Triki <salah.triki@gmail.com>
3345 S:      Maintained
3346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3347 F:      Documentation/filesystems/befs.rst
3348 F:      fs/befs/
3349
3350 BFQ I/O SCHEDULER
3351 M:      Paolo Valente <paolo.valente@linaro.org>
3352 M:      Jens Axboe <axboe@kernel.dk>
3353 L:      linux-block@vger.kernel.org
3354 S:      Maintained
3355 F:      Documentation/block/bfq-iosched.rst
3356 F:      block/bfq-*
3357
3358 BFS FILE SYSTEM
3359 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3360 S:      Maintained
3361 F:      Documentation/filesystems/bfs.rst
3362 F:      fs/bfs/
3363 F:      include/uapi/linux/bfs_fs.h
3364
3365 BITMAP API
3366 M:      Yury Norov <yury.norov@gmail.com>
3367 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3368 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3369 S:      Maintained
3370 F:      include/asm-generic/bitops/find.h
3371 F:      include/linux/bitmap.h
3372 F:      lib/bitmap.c
3373 F:      lib/find_bit.c
3374 F:      lib/find_bit_benchmark.c
3375 F:      lib/test_bitmap.c
3376 F:      tools/include/asm-generic/bitops/find.h
3377 F:      tools/include/linux/bitmap.h
3378 F:      tools/lib/bitmap.c
3379 F:      tools/lib/find_bit.c
3380
3381 BLINKM RGB LED DRIVER
3382 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3383 S:      Maintained
3384 F:      drivers/leds/leds-blinkm.c
3385
3386 BLOCK LAYER
3387 M:      Jens Axboe <axboe@kernel.dk>
3388 L:      linux-block@vger.kernel.org
3389 S:      Maintained
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3391 F:      block/
3392 F:      drivers/block/
3393 F:      include/linux/blk*
3394 F:      kernel/trace/blktrace.c
3395 F:      lib/sbitmap.c
3396
3397 BLOCK2MTD DRIVER
3398 M:      Joern Engel <joern@lazybastard.org>
3399 L:      linux-mtd@lists.infradead.org
3400 S:      Maintained
3401 F:      drivers/mtd/devices/block2mtd.c
3402
3403 BLUETOOTH DRIVERS
3404 M:      Marcel Holtmann <marcel@holtmann.org>
3405 M:      Johan Hedberg <johan.hedberg@gmail.com>
3406 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3407 L:      linux-bluetooth@vger.kernel.org
3408 S:      Supported
3409 W:      http://www.bluez.org/
3410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3412 F:      drivers/bluetooth/
3413
3414 BLUETOOTH SUBSYSTEM
3415 M:      Marcel Holtmann <marcel@holtmann.org>
3416 M:      Johan Hedberg <johan.hedberg@gmail.com>
3417 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3418 L:      linux-bluetooth@vger.kernel.org
3419 S:      Supported
3420 W:      http://www.bluez.org/
3421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3423 F:      include/net/bluetooth/
3424 F:      net/bluetooth/
3425
3426 BONDING DRIVER
3427 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3428 M:      Veaceslav Falico <vfalico@gmail.com>
3429 M:      Andy Gospodarek <andy@greyhouse.net>
3430 L:      netdev@vger.kernel.org
3431 S:      Supported
3432 W:      http://sourceforge.net/projects/bonding/
3433 F:      drivers/net/bonding/
3434 F:      include/net/bonding.h
3435 F:      include/uapi/linux/if_bonding.h
3436
3437 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3438 M:      Dan Robertson <dan@dlrobertson.com>
3439 L:      linux-iio@vger.kernel.org
3440 S:      Maintained
3441 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3442 F:      drivers/iio/accel/bma400*
3443
3444 BPF (Safe dynamic programs and tools)
3445 M:      Alexei Starovoitov <ast@kernel.org>
3446 M:      Daniel Borkmann <daniel@iogearbox.net>
3447 M:      Andrii Nakryiko <andrii@kernel.org>
3448 R:      Martin KaFai Lau <kafai@fb.com>
3449 R:      Song Liu <songliubraving@fb.com>
3450 R:      Yonghong Song <yhs@fb.com>
3451 R:      John Fastabend <john.fastabend@gmail.com>
3452 R:      KP Singh <kpsingh@kernel.org>
3453 L:      netdev@vger.kernel.org
3454 L:      bpf@vger.kernel.org
3455 S:      Supported
3456 W:      https://bpf.io/
3457 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3460 F:      Documentation/bpf/
3461 F:      Documentation/networking/filter.rst
3462 F:      Documentation/userspace-api/ebpf/
3463 F:      arch/*/net/*
3464 F:      include/linux/bpf*
3465 F:      include/linux/btf*
3466 F:      include/linux/filter.h
3467 F:      include/trace/events/xdp.h
3468 F:      include/uapi/linux/bpf*
3469 F:      include/uapi/linux/btf*
3470 F:      include/uapi/linux/filter.h
3471 F:      kernel/bpf/
3472 F:      kernel/trace/bpf_trace.c
3473 F:      lib/test_bpf.c
3474 F:      net/bpf/
3475 F:      net/core/filter.c
3476 F:      net/sched/act_bpf.c
3477 F:      net/sched/cls_bpf.c
3478 F:      samples/bpf/
3479 F:      scripts/bpf_doc.py
3480 F:      tools/bpf/
3481 F:      tools/lib/bpf/
3482 F:      tools/testing/selftests/bpf/
3483 N:      bpf
3484 K:      bpf
3485
3486 BPF JIT for ARM
3487 M:      Shubham Bansal <illusionist.neo@gmail.com>
3488 L:      netdev@vger.kernel.org
3489 L:      bpf@vger.kernel.org
3490 S:      Maintained
3491 F:      arch/arm/net/
3492
3493 BPF JIT for ARM64
3494 M:      Daniel Borkmann <daniel@iogearbox.net>
3495 M:      Alexei Starovoitov <ast@kernel.org>
3496 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3497 L:      netdev@vger.kernel.org
3498 L:      bpf@vger.kernel.org
3499 S:      Supported
3500 F:      arch/arm64/net/
3501
3502 BPF JIT for MIPS (32-BIT AND 64-BIT)
3503 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3504 M:      Paul Burton <paulburton@kernel.org>
3505 L:      netdev@vger.kernel.org
3506 L:      bpf@vger.kernel.org
3507 S:      Maintained
3508 F:      arch/mips/net/
3509
3510 BPF JIT for NFP NICs
3511 M:      Jakub Kicinski <kuba@kernel.org>
3512 L:      netdev@vger.kernel.org
3513 L:      bpf@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/net/ethernet/netronome/nfp/bpf/
3516
3517 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3518 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3519 L:      netdev@vger.kernel.org
3520 L:      bpf@vger.kernel.org
3521 S:      Maintained
3522 F:      arch/powerpc/net/
3523
3524 BPF JIT for RISC-V (32-bit)
3525 M:      Luke Nelson <luke.r.nels@gmail.com>
3526 M:      Xi Wang <xi.wang@gmail.com>
3527 L:      netdev@vger.kernel.org
3528 L:      bpf@vger.kernel.org
3529 S:      Maintained
3530 F:      arch/riscv/net/
3531 X:      arch/riscv/net/bpf_jit_comp64.c
3532
3533 BPF JIT for RISC-V (64-bit)
3534 M:      Björn Töpel <bjorn@kernel.org>
3535 L:      netdev@vger.kernel.org
3536 L:      bpf@vger.kernel.org
3537 S:      Maintained
3538 F:      arch/riscv/net/
3539 X:      arch/riscv/net/bpf_jit_comp32.c
3540
3541 BPF JIT for S390
3542 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3543 M:      Heiko Carstens <hca@linux.ibm.com>
3544 M:      Vasily Gorbik <gor@linux.ibm.com>
3545 L:      netdev@vger.kernel.org
3546 L:      bpf@vger.kernel.org
3547 S:      Maintained
3548 F:      arch/s390/net/
3549 X:      arch/s390/net/pnet.c
3550
3551 BPF JIT for SPARC (32-BIT AND 64-BIT)
3552 M:      David S. Miller <davem@davemloft.net>
3553 L:      netdev@vger.kernel.org
3554 L:      bpf@vger.kernel.org
3555 S:      Maintained
3556 F:      arch/sparc/net/
3557
3558 BPF JIT for X86 32-BIT
3559 M:      Wang YanQing <udknight@gmail.com>
3560 L:      netdev@vger.kernel.org
3561 L:      bpf@vger.kernel.org
3562 S:      Maintained
3563 F:      arch/x86/net/bpf_jit_comp32.c
3564
3565 BPF JIT for X86 64-BIT
3566 M:      Alexei Starovoitov <ast@kernel.org>
3567 M:      Daniel Borkmann <daniel@iogearbox.net>
3568 L:      netdev@vger.kernel.org
3569 L:      bpf@vger.kernel.org
3570 S:      Supported
3571 F:      arch/x86/net/
3572 X:      arch/x86/net/bpf_jit_comp32.c
3573
3574 BPF LSM (Security Audit and Enforcement using BPF)
3575 M:      KP Singh <kpsingh@kernel.org>
3576 R:      Florent Revest <revest@chromium.org>
3577 R:      Brendan Jackman <jackmanb@chromium.org>
3578 L:      bpf@vger.kernel.org
3579 S:      Maintained
3580 F:      Documentation/bpf/prog_lsm.rst
3581 F:      include/linux/bpf_lsm.h
3582 F:      kernel/bpf/bpf_lsm.c
3583 F:      security/bpf/
3584
3585 BROADCOM B44 10/100 ETHERNET DRIVER
3586 M:      Michael Chan <michael.chan@broadcom.com>
3587 L:      netdev@vger.kernel.org
3588 S:      Supported
3589 F:      drivers/net/ethernet/broadcom/b44.*
3590
3591 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3592 M:      Florian Fainelli <f.fainelli@gmail.com>
3593 L:      netdev@vger.kernel.org
3594 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3595 S:      Supported
3596 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3597 F:      drivers/net/dsa/b53/*
3598 F:      drivers/net/dsa/bcm_sf2*
3599 F:      include/linux/dsa/brcm.h
3600 F:      include/linux/platform_data/b53.h
3601
3602 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3603 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3604 L:      bcm-kernel-feedback-list@broadcom.com
3605 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3607 S:      Maintained
3608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3609 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3610 F:      drivers/pci/controller/pcie-brcmstb.c
3611 F:      drivers/staging/vc04_services
3612 N:      bcm2711
3613 N:      bcm283*
3614
3615 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3616 M:      Florian Fainelli <f.fainelli@gmail.com>
3617 M:      Ray Jui <rjui@broadcom.com>
3618 M:      Scott Branden <sbranden@broadcom.com>
3619 M:      bcm-kernel-feedback-list@broadcom.com
3620 S:      Maintained
3621 T:      git git://github.com/broadcom/mach-bcm
3622 F:      arch/arm/mach-bcm/
3623 N:      bcm281*
3624 N:      bcm113*
3625 N:      bcm216*
3626 N:      kona
3627
3628 BROADCOM BCM47XX MIPS ARCHITECTURE
3629 M:      Hauke Mehrtens <hauke@hauke-m.de>
3630 M:      Rafał Miłecki <zajec5@gmail.com>
3631 L:      linux-mips@vger.kernel.org
3632 S:      Maintained
3633 F:      Documentation/devicetree/bindings/mips/brcm/
3634 F:      arch/mips/bcm47xx/*
3635 F:      arch/mips/include/asm/mach-bcm47xx/*
3636
3637 BROADCOM BCM4908 ETHERNET DRIVER
3638 M:      Rafał Miłecki <rafal@milecki.pl>
3639 M:      bcm-kernel-feedback-list@broadcom.com
3640 L:      netdev@vger.kernel.org
3641 S:      Maintained
3642 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3643 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3644 F:      drivers/net/ethernet/broadcom/unimac.h
3645
3646 BROADCOM BCM5301X ARM ARCHITECTURE
3647 M:      Florian Fainelli <f.fainelli@gmail.com>
3648 M:      Hauke Mehrtens <hauke@hauke-m.de>
3649 M:      Rafał Miłecki <zajec5@gmail.com>
3650 M:      bcm-kernel-feedback-list@broadcom.com
3651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3652 S:      Maintained
3653 F:      arch/arm/boot/dts/bcm470*
3654 F:      arch/arm/boot/dts/bcm5301*
3655 F:      arch/arm/boot/dts/bcm953012*
3656 F:      arch/arm/mach-bcm/bcm_5301x.c
3657
3658 BROADCOM BCM53573 ARM ARCHITECTURE
3659 M:      Florian Fainelli <f.fainelli@gmail.com>
3660 M:      Rafał Miłecki <rafal@milecki.pl>
3661 L:      bcm-kernel-feedback-list@broadcom.com
3662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3663 S:      Maintained
3664 F:      arch/arm/boot/dts/bcm47189*
3665 F:      arch/arm/boot/dts/bcm53573*
3666
3667 BROADCOM BCM63XX ARM ARCHITECTURE
3668 M:      Florian Fainelli <f.fainelli@gmail.com>
3669 M:      bcm-kernel-feedback-list@broadcom.com
3670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3671 S:      Maintained
3672 T:      git git://github.com/broadcom/stblinux.git
3673 N:      bcm63xx
3674
3675 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3676 M:      Kevin Cernekee <cernekee@gmail.com>
3677 L:      linux-usb@vger.kernel.org
3678 S:      Maintained
3679 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3680
3681 BROADCOM BCM7XXX ARM ARCHITECTURE
3682 M:      Florian Fainelli <f.fainelli@gmail.com>
3683 M:      bcm-kernel-feedback-list@broadcom.com
3684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3685 S:      Maintained
3686 T:      git git://github.com/broadcom/stblinux.git
3687 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3688 F:      arch/arm/boot/dts/bcm7*.dts*
3689 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3690 F:      arch/arm/mach-bcm/*brcmstb*
3691 F:      arch/arm/mm/cache-b15-rac.c
3692 F:      drivers/bus/brcmstb_gisb.c
3693 F:      drivers/pci/controller/pcie-brcmstb.c
3694 N:      brcmstb
3695 N:      bcm7038
3696 N:      bcm7120
3697
3698 BROADCOM BDC DRIVER
3699 M:      Al Cooper <alcooperx@gmail.com>
3700 L:      linux-usb@vger.kernel.org
3701 L:      bcm-kernel-feedback-list@broadcom.com
3702 S:      Maintained
3703 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3704 F:      drivers/usb/gadget/udc/bdc/
3705
3706 BROADCOM BMIPS CPUFREQ DRIVER
3707 M:      Markus Mayer <mmayer@broadcom.com>
3708 M:      bcm-kernel-feedback-list@broadcom.com
3709 L:      linux-pm@vger.kernel.org
3710 S:      Maintained
3711 F:      drivers/cpufreq/bmips-cpufreq.c
3712
3713 BROADCOM BMIPS MIPS ARCHITECTURE
3714 M:      Florian Fainelli <f.fainelli@gmail.com>
3715 L:      bcm-kernel-feedback-list@broadcom.com
3716 L:      linux-mips@vger.kernel.org
3717 S:      Maintained
3718 T:      git git://github.com/broadcom/stblinux.git
3719 F:      arch/mips/bmips/*
3720 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3721 F:      arch/mips/include/asm/mach-bmips/*
3722 F:      arch/mips/kernel/*bmips*
3723 F:      drivers/soc/bcm/bcm63xx
3724 F:      drivers/irqchip/irq-bcm63*
3725 F:      drivers/irqchip/irq-bcm7*
3726 F:      drivers/irqchip/irq-brcmstb*
3727 F:      include/linux/bcm963xx_nvram.h
3728 F:      include/linux/bcm963xx_tag.h
3729
3730 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3731 M:      Rasesh Mody <rmody@marvell.com>
3732 M:      GR-Linux-NIC-Dev@marvell.com
3733 L:      netdev@vger.kernel.org
3734 S:      Supported
3735 F:      drivers/net/ethernet/broadcom/bnx2.*
3736 F:      drivers/net/ethernet/broadcom/bnx2_*
3737
3738 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3739 M:      Saurav Kashyap <skashyap@marvell.com>
3740 M:      Javed Hasan <jhasan@marvell.com>
3741 M:      GR-QLogic-Storage-Upstream@marvell.com
3742 L:      linux-scsi@vger.kernel.org
3743 S:      Supported
3744 F:      drivers/scsi/bnx2fc/
3745
3746 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3747 M:      Nilesh Javali <njavali@marvell.com>
3748 M:      Manish Rangankar <mrangankar@marvell.com>
3749 M:      GR-QLogic-Storage-Upstream@marvell.com
3750 L:      linux-scsi@vger.kernel.org
3751 S:      Supported
3752 F:      drivers/scsi/bnx2i/
3753
3754 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3755 M:      Ariel Elior <aelior@marvell.com>
3756 M:      Sudarsana Kalluru <skalluru@marvell.com>
3757 M:      Manish Chopra <manishc@marvell.com>
3758 L:      netdev@vger.kernel.org
3759 S:      Supported
3760 F:      drivers/net/ethernet/broadcom/bnx2x/
3761
3762 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3763 M:      Michael Chan <michael.chan@broadcom.com>
3764 L:      netdev@vger.kernel.org
3765 S:      Supported
3766 F:      drivers/net/ethernet/broadcom/bnxt/
3767
3768 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3769 M:      Arend van Spriel <aspriel@gmail.com>
3770 M:      Franky Lin <franky.lin@broadcom.com>
3771 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3772 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3773 M:      Wright Feng <wright.feng@infineon.com>
3774 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3775 L:      linux-wireless@vger.kernel.org
3776 L:      brcm80211-dev-list.pdl@broadcom.com
3777 L:      SHA-cyfmac-dev-list@infineon.com
3778 S:      Supported
3779 F:      drivers/net/wireless/broadcom/brcm80211/
3780
3781 BROADCOM BRCMSTB GPIO DRIVER
3782 M:      Doug Berger <opendmb@gmail.com>
3783 M:      Florian Fainelli <f.fainelli@gmail.com>
3784 L:      bcm-kernel-feedback-list@broadcom.com
3785 S:      Supported
3786 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3787 F:      drivers/gpio/gpio-brcmstb.c
3788
3789 BROADCOM BRCMSTB I2C DRIVER
3790 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3791 L:      linux-i2c@vger.kernel.org
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 S:      Supported
3794 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3795 F:      drivers/i2c/busses/i2c-brcmstb.c
3796
3797 BROADCOM BRCMSTB UART DRIVER
3798 M:      Al Cooper <alcooperx@gmail.com>
3799 L:      linux-serial@vger.kernel.org
3800 L:      bcm-kernel-feedback-list@broadcom.com
3801 S:      Maintained
3802 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3803 F:      drivers/tty/serial/8250/8250_bcm7271.c
3804
3805 BROADCOM BRCMSTB USB EHCI DRIVER
3806 M:      Al Cooper <alcooperx@gmail.com>
3807 L:      linux-usb@vger.kernel.org
3808 L:      bcm-kernel-feedback-list@broadcom.com
3809 S:      Maintained
3810 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3811 F:      drivers/usb/host/ehci-brcm.*
3812
3813 BROADCOM BRCMSTB USB PIN MAP DRIVER
3814 M:      Al Cooper <alcooperx@gmail.com>
3815 L:      linux-usb@vger.kernel.org
3816 L:      bcm-kernel-feedback-list@broadcom.com
3817 S:      Maintained
3818 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3819 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3820
3821 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3822 M:      Al Cooper <alcooperx@gmail.com>
3823 L:      linux-kernel@vger.kernel.org
3824 L:      bcm-kernel-feedback-list@broadcom.com
3825 S:      Maintained
3826 F:      drivers/phy/broadcom/phy-brcm-usb*
3827
3828 BROADCOM ETHERNET PHY DRIVERS
3829 M:      Florian Fainelli <f.fainelli@gmail.com>
3830 L:      bcm-kernel-feedback-list@broadcom.com
3831 L:      netdev@vger.kernel.org
3832 S:      Supported
3833 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3834 F:      drivers/net/phy/bcm*.[ch]
3835 F:      drivers/net/phy/broadcom.c
3836 F:      include/linux/brcmphy.h
3837
3838 BROADCOM GENET ETHERNET DRIVER
3839 M:      Doug Berger <opendmb@gmail.com>
3840 M:      Florian Fainelli <f.fainelli@gmail.com>
3841 L:      bcm-kernel-feedback-list@broadcom.com
3842 L:      netdev@vger.kernel.org
3843 S:      Supported
3844 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3845 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3846 F:      drivers/net/ethernet/broadcom/genet/
3847 F:      drivers/net/ethernet/broadcom/unimac.h
3848 F:      drivers/net/mdio/mdio-bcm-unimac.c
3849 F:      include/linux/platform_data/bcmgenet.h
3850 F:      include/linux/platform_data/mdio-bcm-unimac.h
3851
3852 BROADCOM IPROC ARM ARCHITECTURE
3853 M:      Ray Jui <rjui@broadcom.com>
3854 M:      Scott Branden <sbranden@broadcom.com>
3855 M:      bcm-kernel-feedback-list@broadcom.com
3856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3857 S:      Maintained
3858 T:      git git://github.com/broadcom/cygnus-linux.git
3859 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3860 F:      arch/arm64/boot/dts/broadcom/stingray/*
3861 F:      drivers/clk/bcm/clk-ns*
3862 F:      drivers/clk/bcm/clk-sr*
3863 F:      drivers/pinctrl/bcm/pinctrl-ns*
3864 F:      include/dt-bindings/clock/bcm-sr*
3865 N:      iproc
3866 N:      cygnus
3867 N:      bcm[-_]nsp
3868 N:      bcm9113*
3869 N:      bcm9583*
3870 N:      bcm9585*
3871 N:      bcm9586*
3872 N:      bcm988312
3873 N:      bcm113*
3874 N:      bcm583*
3875 N:      bcm585*
3876 N:      bcm586*
3877 N:      bcm88312
3878 N:      hr2
3879 N:      stingray
3880
3881 BROADCOM IPROC GBIT ETHERNET DRIVER
3882 M:      Rafał Miłecki <rafal@milecki.pl>
3883 M:      bcm-kernel-feedback-list@broadcom.com
3884 L:      netdev@vger.kernel.org
3885 S:      Maintained
3886 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3887 F:      drivers/net/ethernet/broadcom/bgmac*
3888 F:      drivers/net/ethernet/broadcom/unimac.h
3889
3890 BROADCOM KONA GPIO DRIVER
3891 M:      Ray Jui <rjui@broadcom.com>
3892 L:      bcm-kernel-feedback-list@broadcom.com
3893 S:      Supported
3894 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3895 F:      drivers/gpio/gpio-bcm-kona.c
3896
3897 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3898 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3899 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3900 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3901 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3902 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3903 L:      linux-scsi@vger.kernel.org
3904 S:      Supported
3905 W:      https://www.broadcom.com/support/storage
3906 F:      drivers/scsi/mpi3mr/
3907
3908 BROADCOM NETXTREME-E ROCE DRIVER
3909 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3910 L:      linux-rdma@vger.kernel.org
3911 S:      Supported
3912 W:      http://www.broadcom.com
3913 F:      drivers/infiniband/hw/bnxt_re/
3914 F:      include/uapi/rdma/bnxt_re-abi.h
3915
3916 BROADCOM NVRAM DRIVER
3917 M:      Rafał Miłecki <zajec5@gmail.com>
3918 L:      linux-mips@vger.kernel.org
3919 S:      Maintained
3920 F:      drivers/firmware/broadcom/*
3921
3922 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3923 M:      Rafał Miłecki <rafal@milecki.pl>
3924 M:      Florian Fainelli <f.fainelli@gmail.com>
3925 M:      bcm-kernel-feedback-list@broadcom.com
3926 L:      linux-pm@vger.kernel.org
3927 S:      Maintained
3928 T:      git git://github.com/broadcom/stblinux.git
3929 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3930 F:      include/dt-bindings/soc/bcm-pmb.h
3931
3932 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3933 M:      Rafał Miłecki <zajec5@gmail.com>
3934 L:      linux-wireless@vger.kernel.org
3935 S:      Maintained
3936 F:      drivers/bcma/
3937 F:      include/linux/bcma/
3938
3939 BROADCOM SPI DRIVER
3940 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3941 M:      bcm-kernel-feedback-list@broadcom.com
3942 S:      Maintained
3943 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3944 F:      drivers/spi/spi-bcm-qspi.*
3945 F:      drivers/spi/spi-brcmstb-qspi.c
3946 F:      drivers/spi/spi-iproc-qspi.c
3947
3948 BROADCOM STB AVS CPUFREQ DRIVER
3949 M:      Markus Mayer <mmayer@broadcom.com>
3950 M:      bcm-kernel-feedback-list@broadcom.com
3951 L:      linux-pm@vger.kernel.org
3952 S:      Maintained
3953 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3954 F:      drivers/cpufreq/brcmstb*
3955
3956 BROADCOM STB AVS TMON DRIVER
3957 M:      Markus Mayer <mmayer@broadcom.com>
3958 M:      bcm-kernel-feedback-list@broadcom.com
3959 L:      linux-pm@vger.kernel.org
3960 S:      Maintained
3961 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3962 F:      drivers/thermal/broadcom/brcmstb*
3963
3964 BROADCOM STB DPFE DRIVER
3965 M:      Markus Mayer <mmayer@broadcom.com>
3966 M:      bcm-kernel-feedback-list@broadcom.com
3967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3968 S:      Maintained
3969 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3970 F:      drivers/memory/brcmstb_dpfe.c
3971
3972 BROADCOM STB NAND FLASH DRIVER
3973 M:      Brian Norris <computersforpeace@gmail.com>
3974 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3975 L:      linux-mtd@lists.infradead.org
3976 L:      bcm-kernel-feedback-list@broadcom.com
3977 S:      Maintained
3978 F:      drivers/mtd/nand/raw/brcmnand/
3979
3980 BROADCOM STB PCIE DRIVER
3981 M:      Jim Quinlan <jim2101024@gmail.com>
3982 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3983 M:      Florian Fainelli <f.fainelli@gmail.com>
3984 M:      bcm-kernel-feedback-list@broadcom.com
3985 L:      linux-pci@vger.kernel.org
3986 S:      Maintained
3987 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3988 F:      drivers/pci/controller/pcie-brcmstb.c
3989
3990 BROADCOM SYSTEMPORT ETHERNET DRIVER
3991 M:      Florian Fainelli <f.fainelli@gmail.com>
3992 L:      bcm-kernel-feedback-list@broadcom.com
3993 L:      netdev@vger.kernel.org
3994 S:      Supported
3995 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3996 F:      drivers/net/ethernet/broadcom/unimac.h
3997
3998 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3999 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4000 M:      Prashant Sreedharan <prashant@broadcom.com>
4001 M:      Michael Chan <mchan@broadcom.com>
4002 L:      netdev@vger.kernel.org
4003 S:      Supported
4004 F:      drivers/net/ethernet/broadcom/tg3.*
4005
4006 BROADCOM VK DRIVER
4007 M:      Scott Branden <scott.branden@broadcom.com>
4008 L:      bcm-kernel-feedback-list@broadcom.com
4009 S:      Supported
4010 F:      drivers/misc/bcm-vk/
4011 F:      include/uapi/linux/misc/bcm_vk.h
4012
4013 BROCADE BFA FC SCSI DRIVER
4014 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4015 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4016 L:      linux-scsi@vger.kernel.org
4017 S:      Supported
4018 F:      drivers/scsi/bfa/
4019
4020 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4021 M:      Rasesh Mody <rmody@marvell.com>
4022 M:      Sudarsana Kalluru <skalluru@marvell.com>
4023 M:      GR-Linux-NIC-Dev@marvell.com
4024 L:      netdev@vger.kernel.org
4025 S:      Supported
4026 F:      drivers/net/ethernet/brocade/bna/
4027
4028 BSG (block layer generic sg v4 driver)
4029 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4030 L:      linux-scsi@vger.kernel.org
4031 S:      Supported
4032 F:      block/bsg.c
4033 F:      include/linux/bsg.h
4034 F:      include/uapi/linux/bsg.h
4035
4036 BT87X AUDIO DRIVER
4037 M:      Clemens Ladisch <clemens@ladisch.de>
4038 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4039 S:      Maintained
4040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4041 F:      Documentation/sound/cards/bt87x.rst
4042 F:      sound/pci/bt87x.c
4043
4044 BT8XXGPIO DRIVER
4045 M:      Michael Buesch <m@bues.ch>
4046 S:      Maintained
4047 W:      http://bu3sch.de/btgpio.php
4048 F:      drivers/gpio/gpio-bt8xx.c
4049
4050 BTRFS FILE SYSTEM
4051 M:      Chris Mason <clm@fb.com>
4052 M:      Josef Bacik <josef@toxicpanda.com>
4053 M:      David Sterba <dsterba@suse.com>
4054 L:      linux-btrfs@vger.kernel.org
4055 S:      Maintained
4056 W:      http://btrfs.wiki.kernel.org/
4057 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4058 C:      irc://irc.libera.chat/btrfs
4059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4060 F:      Documentation/filesystems/btrfs.rst
4061 F:      fs/btrfs/
4062 F:      include/linux/btrfs*
4063 F:      include/uapi/linux/btrfs*
4064
4065 BTTV VIDEO4LINUX DRIVER
4066 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4067 L:      linux-media@vger.kernel.org
4068 S:      Odd fixes
4069 W:      https://linuxtv.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 F:      Documentation/driver-api/media/drivers/bttv*
4072 F:      drivers/media/pci/bt8xx/bttv*
4073
4074 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4075 M:      Chanwoo Choi <cw00.choi@samsung.com>
4076 L:      linux-pm@vger.kernel.org
4077 L:      linux-samsung-soc@vger.kernel.org
4078 S:      Maintained
4079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4080 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4081 F:      drivers/devfreq/exynos-bus.c
4082
4083 BUSLOGIC SCSI DRIVER
4084 M:      Khalid Aziz <khalid@gonehiking.org>
4085 L:      linux-scsi@vger.kernel.org
4086 S:      Maintained
4087 F:      drivers/scsi/BusLogic.*
4088 F:      drivers/scsi/FlashPoint.*
4089
4090 C-MEDIA CMI8788 DRIVER
4091 M:      Clemens Ladisch <clemens@ladisch.de>
4092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4093 S:      Maintained
4094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4095 F:      sound/pci/oxygen/
4096
4097 C-SKY ARCHITECTURE
4098 M:      Guo Ren <guoren@kernel.org>
4099 L:      linux-csky@vger.kernel.org
4100 S:      Supported
4101 T:      git https://github.com/c-sky/csky-linux.git
4102 F:      Documentation/devicetree/bindings/csky/
4103 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4104 F:      Documentation/devicetree/bindings/timer/csky,*
4105 F:      arch/csky/
4106 F:      drivers/clocksource/timer-gx6605s.c
4107 F:      drivers/clocksource/timer-mp-csky.c
4108 F:      drivers/irqchip/irq-csky-*
4109 N:      csky
4110 K:      csky
4111
4112 CA8210 IEEE-802.15.4 RADIO DRIVER
4113 M:      Harry Morris <h.morris@cascoda.com>
4114 L:      linux-wpan@vger.kernel.org
4115 S:      Maintained
4116 W:      https://github.com/Cascoda/ca8210-linux.git
4117 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4118 F:      drivers/net/ieee802154/ca8210.c
4119
4120 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4121 M:      Damien Le Moal <damien.lemoal@wdc.com>
4122 L:      linux-riscv@lists.infradead.org
4123 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4124 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4125 F:      drivers/pinctrl/pinctrl-k210.c
4126
4127 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4128 M:      Damien Le Moal <damien.lemoal@wdc.com>
4129 L:      linux-kernel@vger.kernel.org
4130 L:      linux-riscv@lists.infradead.org
4131 S:      Maintained
4132 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4133 F:      drivers/reset/reset-k210.c
4134
4135 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4136 M:      Damien Le Moal <damien.lemoal@wdc.com>
4137 L:      linux-riscv@lists.infradead.org
4138 S:      Maintained
4139 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4140 F:      drivers/soc/canaan/
4141 F:      include/soc/canaan/
4142
4143 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4144 M:      David Howells <dhowells@redhat.com>
4145 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4146 S:      Supported
4147 F:      Documentation/filesystems/caching/cachefiles.rst
4148 F:      fs/cachefiles/
4149
4150 CADENCE MIPI-CSI2 BRIDGES
4151 M:      Maxime Ripard <mripard@kernel.org>
4152 L:      linux-media@vger.kernel.org
4153 S:      Maintained
4154 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4155 F:      drivers/media/platform/cadence/cdns-csi2*
4156
4157 CADENCE NAND DRIVER
4158 L:      linux-mtd@lists.infradead.org
4159 S:      Orphan
4160 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4161 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4162
4163 CADENCE USB3 DRD IP DRIVER
4164 M:      Peter Chen <peter.chen@kernel.org>
4165 M:      Pawel Laszczak <pawell@cadence.com>
4166 R:      Roger Quadros <rogerq@kernel.org>
4167 R:      Aswath Govindraju <a-govindraju@ti.com>
4168 L:      linux-usb@vger.kernel.org
4169 S:      Maintained
4170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4171 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4172 F:      drivers/usb/cdns3/
4173 X:      drivers/usb/cdns3/cdnsp*
4174
4175 CADENCE USBSSP DRD IP DRIVER
4176 M:      Pawel Laszczak <pawell@cadence.com>
4177 L:      linux-usb@vger.kernel.org
4178 S:      Maintained
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4180 F:      drivers/usb/cdns3/
4181 X:      drivers/usb/cdns3/cdns3*
4182
4183 CADET FM/AM RADIO RECEIVER DRIVER
4184 M:      Hans Verkuil <hverkuil@xs4all.nl>
4185 L:      linux-media@vger.kernel.org
4186 S:      Maintained
4187 W:      https://linuxtv.org
4188 T:      git git://linuxtv.org/media_tree.git
4189 F:      drivers/media/radio/radio-cadet*
4190
4191 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4192 L:      linux-media@vger.kernel.org
4193 S:      Orphan
4194 T:      git git://linuxtv.org/media_tree.git
4195 F:      Documentation/admin-guide/media/cafe_ccic*
4196 F:      drivers/media/platform/marvell-ccic/
4197
4198 CAIF NETWORK LAYER
4199 L:      netdev@vger.kernel.org
4200 S:      Orphan
4201 F:      Documentation/networking/caif/
4202 F:      drivers/net/caif/
4203 F:      include/net/caif/
4204 F:      include/uapi/linux/caif/
4205 F:      net/caif/
4206
4207 CAKE QDISC
4208 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4209 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4210 S:      Maintained
4211 F:      net/sched/sch_cake.c
4212
4213 CAN NETWORK DRIVERS
4214 M:      Wolfgang Grandegger <wg@grandegger.com>
4215 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4216 L:      linux-can@vger.kernel.org
4217 S:      Maintained
4218 W:      https://github.com/linux-can
4219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4221 F:      Documentation/devicetree/bindings/net/can/
4222 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4223 F:      drivers/net/can/
4224 F:      drivers/phy/phy-can-transceiver.c
4225 F:      include/linux/can/bittiming.h
4226 F:      include/linux/can/dev.h
4227 F:      include/linux/can/led.h
4228 F:      include/linux/can/length.h
4229 F:      include/linux/can/platform/
4230 F:      include/linux/can/rx-offload.h
4231 F:      include/uapi/linux/can/error.h
4232 F:      include/uapi/linux/can/netlink.h
4233 F:      include/uapi/linux/can/vxcan.h
4234
4235 CAN NETWORK LAYER
4236 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4237 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4238 L:      linux-can@vger.kernel.org
4239 S:      Maintained
4240 W:      https://github.com/linux-can
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4243 F:      Documentation/networking/can.rst
4244 F:      include/linux/can/can-ml.h
4245 F:      include/linux/can/core.h
4246 F:      include/linux/can/skb.h
4247 F:      include/net/netns/can.h
4248 F:      include/uapi/linux/can.h
4249 F:      include/uapi/linux/can/bcm.h
4250 F:      include/uapi/linux/can/gw.h
4251 F:      include/uapi/linux/can/isotp.h
4252 F:      include/uapi/linux/can/raw.h
4253 F:      net/can/
4254
4255 CAN-J1939 NETWORK LAYER
4256 M:      Robin van der Gracht <robin@protonic.nl>
4257 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4258 R:      kernel@pengutronix.de
4259 L:      linux-can@vger.kernel.org
4260 S:      Maintained
4261 F:      Documentation/networking/j1939.rst
4262 F:      include/uapi/linux/can/j1939.h
4263 F:      net/can/j1939/
4264
4265 CAPABILITIES
4266 M:      Serge Hallyn <serge@hallyn.com>
4267 L:      linux-security-module@vger.kernel.org
4268 S:      Supported
4269 F:      include/linux/capability.h
4270 F:      include/uapi/linux/capability.h
4271 F:      kernel/capability.c
4272 F:      security/commoncap.c
4273
4274 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4275 M:      Kevin Tsai <ktsai@capellamicro.com>
4276 S:      Maintained
4277 F:      drivers/iio/light/cm*
4278
4279 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4280 M:      Christian Lamparter <chunkeey@googlemail.com>
4281 L:      linux-wireless@vger.kernel.org
4282 S:      Maintained
4283 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4284 F:      drivers/net/wireless/ath/carl9170/
4285
4286 CAVIUM I2C DRIVER
4287 M:      Robert Richter <rric@kernel.org>
4288 S:      Odd Fixes
4289 W:      http://www.marvell.com
4290 F:      drivers/i2c/busses/i2c-octeon*
4291 F:      drivers/i2c/busses/i2c-thunderx*
4292
4293 CAVIUM LIQUIDIO NETWORK DRIVER
4294 M:      Derek Chickles <dchickles@marvell.com>
4295 M:      Satanand Burla <sburla@marvell.com>
4296 M:      Felix Manlunas <fmanlunas@marvell.com>
4297 L:      netdev@vger.kernel.org
4298 S:      Supported
4299 W:      http://www.marvell.com
4300 F:      drivers/net/ethernet/cavium/liquidio/
4301
4302 CAVIUM MMC DRIVER
4303 M:      Robert Richter <rric@kernel.org>
4304 S:      Odd Fixes
4305 W:      http://www.marvell.com
4306 F:      drivers/mmc/host/cavium*
4307
4308 CAVIUM OCTEON-TX CRYPTO DRIVER
4309 M:      George Cherian <gcherian@marvell.com>
4310 L:      linux-crypto@vger.kernel.org
4311 S:      Supported
4312 W:      http://www.marvell.com
4313 F:      drivers/crypto/cavium/cpt/
4314
4315 CAVIUM THUNDERX2 ARM64 SOC
4316 M:      Robert Richter <rric@kernel.org>
4317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4318 S:      Odd Fixes
4319 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4320 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4321
4322 CBS/ETF/TAPRIO QDISCS
4323 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4324 S:      Maintained
4325 L:      netdev@vger.kernel.org
4326 F:      net/sched/sch_cbs.c
4327 F:      net/sched/sch_etf.c
4328 F:      net/sched/sch_taprio.c
4329
4330 CC2520 IEEE-802.15.4 RADIO DRIVER
4331 M:      Varka Bhadram <varkabhadram@gmail.com>
4332 L:      linux-wpan@vger.kernel.org
4333 S:      Maintained
4334 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4335 F:      drivers/net/ieee802154/cc2520.c
4336 F:      include/linux/spi/cc2520.h
4337
4338 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4339 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4340 L:      linux-crypto@vger.kernel.org
4341 S:      Supported
4342 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4343 F:      drivers/crypto/ccree/
4344
4345 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4346 M:      Hadar Gat <hadar.gat@arm.com>
4347 L:      linux-crypto@vger.kernel.org
4348 S:      Supported
4349 F:      drivers/char/hw_random/cctrng.c
4350 F:      drivers/char/hw_random/cctrng.h
4351 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4352 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4353
4354 CEC FRAMEWORK
4355 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4356 L:      linux-media@vger.kernel.org
4357 S:      Supported
4358 W:      http://linuxtv.org
4359 T:      git git://linuxtv.org/media_tree.git
4360 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4361 F:      Documentation/devicetree/bindings/media/cec.txt
4362 F:      Documentation/driver-api/media/cec-core.rst
4363 F:      Documentation/userspace-api/media/cec
4364 F:      drivers/media/cec/
4365 F:      drivers/media/rc/keymaps/rc-cec.c
4366 F:      include/media/cec-notifier.h
4367 F:      include/media/cec.h
4368 F:      include/uapi/linux/cec-funcs.h
4369 F:      include/uapi/linux/cec.h
4370
4371 CEC GPIO DRIVER
4372 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4373 L:      linux-media@vger.kernel.org
4374 S:      Supported
4375 W:      http://linuxtv.org
4376 T:      git git://linuxtv.org/media_tree.git
4377 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4378 F:      drivers/media/cec/platform/cec-gpio/
4379
4380 CELL BROADBAND ENGINE ARCHITECTURE
4381 M:      Arnd Bergmann <arnd@arndb.de>
4382 L:      linuxppc-dev@lists.ozlabs.org
4383 S:      Supported
4384 W:      http://www.ibm.com/developerworks/power/cell/
4385 F:      arch/powerpc/include/asm/cell*.h
4386 F:      arch/powerpc/include/asm/spu*.h
4387 F:      arch/powerpc/include/uapi/asm/spu*.h
4388 F:      arch/powerpc/platforms/cell/
4389
4390 CELLWISE CW2015 BATTERY DRIVER
4391 M:      Tobias Schrammm <t.schramm@manjaro.org>
4392 S:      Maintained
4393 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4394 F:      drivers/power/supply/cw2015_battery.c
4395
4396 CEPH COMMON CODE (LIBCEPH)
4397 M:      Ilya Dryomov <idryomov@gmail.com>
4398 M:      Jeff Layton <jlayton@kernel.org>
4399 L:      ceph-devel@vger.kernel.org
4400 S:      Supported
4401 W:      http://ceph.com/
4402 T:      git git://github.com/ceph/ceph-client.git
4403 F:      include/linux/ceph/
4404 F:      include/linux/crush/
4405 F:      net/ceph/
4406
4407 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4408 M:      Jeff Layton <jlayton@kernel.org>
4409 M:      Ilya Dryomov <idryomov@gmail.com>
4410 L:      ceph-devel@vger.kernel.org
4411 S:      Supported
4412 W:      http://ceph.com/
4413 T:      git git://github.com/ceph/ceph-client.git
4414 F:      Documentation/filesystems/ceph.rst
4415 F:      fs/ceph/
4416
4417 CERTIFICATE HANDLING
4418 M:      David Howells <dhowells@redhat.com>
4419 M:      David Woodhouse <dwmw2@infradead.org>
4420 L:      keyrings@vger.kernel.org
4421 S:      Maintained
4422 F:      Documentation/admin-guide/module-signing.rst
4423 F:      certs/
4424 F:      scripts/extract-cert.c
4425 F:      scripts/sign-file.c
4426
4427 CFAG12864B LCD DRIVER
4428 M:      Miguel Ojeda <ojeda@kernel.org>
4429 S:      Maintained
4430 F:      drivers/auxdisplay/cfag12864b.c
4431 F:      include/linux/cfag12864b.h
4432
4433 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4434 M:      Miguel Ojeda <ojeda@kernel.org>
4435 S:      Maintained
4436 F:      drivers/auxdisplay/cfag12864bfb.c
4437 F:      include/linux/cfag12864b.h
4438
4439 CHAR and MISC DRIVERS
4440 M:      Arnd Bergmann <arnd@arndb.de>
4441 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4442 S:      Supported
4443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4444 F:      drivers/char/
4445 F:      drivers/misc/
4446 F:      include/linux/miscdevice.h
4447 X:      drivers/char/agp/
4448 X:      drivers/char/hw_random/
4449 X:      drivers/char/ipmi/
4450 X:      drivers/char/random.c
4451 X:      drivers/char/tpm/
4452
4453 CHECKPATCH
4454 M:      Andy Whitcroft <apw@canonical.com>
4455 M:      Joe Perches <joe@perches.com>
4456 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4457 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4458 S:      Maintained
4459 F:      scripts/checkpatch.pl
4460
4461 CHECKPATCH DOCUMENTATION
4462 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4463 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4464 R:      Joe Perches <joe@perches.com>
4465 S:      Maintained
4466 F:      Documentation/dev-tools/checkpatch.rst
4467
4468 CHINESE DOCUMENTATION
4469 M:      Alex Shi <alexs@kernel.org>
4470 S:      Maintained
4471 F:      Documentation/translations/zh_CN/
4472
4473 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4474 M:      Peter Chen <peter.chen@kernel.org>
4475 L:      linux-usb@vger.kernel.org
4476 S:      Maintained
4477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4478 F:      drivers/usb/chipidea/
4479
4480 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4481 M:      Hans de Goede <hdegoede@redhat.com>
4482 L:      linux-input@vger.kernel.org
4483 S:      Maintained
4484 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4485 F:      drivers/input/touchscreen/chipone_icn8318.c
4486
4487 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4488 M:      Hans de Goede <hdegoede@redhat.com>
4489 L:      linux-input@vger.kernel.org
4490 S:      Maintained
4491 F:      drivers/input/touchscreen/chipone_icn8505.c
4492
4493 CHROME HARDWARE PLATFORM SUPPORT
4494 M:      Benson Leung <bleung@chromium.org>
4495 S:      Maintained
4496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4497 F:      drivers/platform/chrome/
4498
4499 CHROMEOS EC CODEC DRIVER
4500 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4501 R:      Guenter Roeck <groeck@chromium.org>
4502 S:      Maintained
4503 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4504 F:      sound/soc/codecs/cros_ec_codec.*
4505
4506 CHROMEOS EC SUBDRIVERS
4507 M:      Benson Leung <bleung@chromium.org>
4508 R:      Guenter Roeck <groeck@chromium.org>
4509 S:      Maintained
4510 F:      drivers/power/supply/cros_usbpd-charger.c
4511 N:      cros_ec
4512 N:      cros-ec
4513
4514 CHROMEOS EC USB TYPE-C DRIVER
4515 M:      Prashant Malani <pmalani@chromium.org>
4516 S:      Maintained
4517 F:      drivers/platform/chrome/cros_ec_typec.c
4518
4519 CHROMEOS EC USB PD NOTIFY DRIVER
4520 M:      Prashant Malani <pmalani@chromium.org>
4521 S:      Maintained
4522 F:      drivers/platform/chrome/cros_usbpd_notify.c
4523 F:      include/linux/platform_data/cros_usbpd_notify.h
4524
4525 CHRONTEL CH7322 CEC DRIVER
4526 M:      Joe Tessler <jrt@google.com>
4527 L:      linux-media@vger.kernel.org
4528 S:      Maintained
4529 T:      git git://linuxtv.org/media_tree.git
4530 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4531 F:      drivers/media/cec/i2c/ch7322.c
4532
4533 CIRRUS LOGIC AUDIO CODEC DRIVERS
4534 M:      James Schulman <james.schulman@cirrus.com>
4535 M:      David Rhodes <david.rhodes@cirrus.com>
4536 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4537 L:      patches@opensource.cirrus.com
4538 S:      Maintained
4539 F:      sound/soc/codecs/cs*
4540
4541 CIRRUS LOGIC DSP FIRMWARE DRIVER
4542 M:      Simon Trimmer <simont@opensource.cirrus.com>
4543 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4544 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4545 L:      patches@opensource.cirrus.com
4546 S:      Supported
4547 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4548 T:      git https://github.com/CirrusLogic/linux-drivers.git
4549 F:      drivers/firmware/cirrus/*
4550 F:      include/linux/firmware/cirrus/*
4551
4552 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4553 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4554 L:      netdev@vger.kernel.org
4555 S:      Maintained
4556 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4557
4558 CIRRUS LOGIC LOCHNAGAR DRIVER
4559 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4560 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4561 L:      patches@opensource.cirrus.com
4562 S:      Supported
4563 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4564 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4565 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4566 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4567 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4568 F:      Documentation/hwmon/lochnagar.rst
4569 F:      drivers/clk/clk-lochnagar.c
4570 F:      drivers/hwmon/lochnagar-hwmon.c
4571 F:      drivers/mfd/lochnagar-i2c.c
4572 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4573 F:      drivers/regulator/lochnagar-regulator.c
4574 F:      include/dt-bindings/clk/lochnagar.h
4575 F:      include/dt-bindings/pinctrl/lochnagar.h
4576 F:      include/linux/mfd/lochnagar*
4577 F:      sound/soc/codecs/lochnagar-sc.c
4578
4579 CIRRUS LOGIC MADERA CODEC DRIVERS
4580 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4581 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4582 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4583 L:      patches@opensource.cirrus.com
4584 S:      Supported
4585 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4586 T:      git https://github.com/CirrusLogic/linux-drivers.git
4587 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4588 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4589 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4590 F:      drivers/gpio/gpio-madera*
4591 F:      drivers/irqchip/irq-madera*
4592 F:      drivers/mfd/cs47l*
4593 F:      drivers/mfd/madera*
4594 F:      drivers/pinctrl/cirrus/*
4595 F:      include/dt-bindings/sound/madera*
4596 F:      include/linux/irqchip/irq-madera*
4597 F:      include/linux/mfd/madera/*
4598 F:      include/sound/madera*
4599 F:      sound/soc/codecs/cs47l*
4600 F:      sound/soc/codecs/madera*
4601
4602 CISCO FCOE HBA DRIVER
4603 M:      Satish Kharat <satishkh@cisco.com>
4604 M:      Sesidhar Baddela <sebaddel@cisco.com>
4605 M:      Karan Tilak Kumar <kartilak@cisco.com>
4606 L:      linux-scsi@vger.kernel.org
4607 S:      Supported
4608 F:      drivers/scsi/fnic/
4609
4610 CISCO SCSI HBA DRIVER
4611 M:      Karan Tilak Kumar <kartilak@cisco.com>
4612 M:      Sesidhar Baddela <sebaddel@cisco.com>
4613 L:      linux-scsi@vger.kernel.org
4614 S:      Supported
4615 F:      drivers/scsi/snic/
4616
4617 CISCO VIC ETHERNET NIC DRIVER
4618 M:      Christian Benvenuti <benve@cisco.com>
4619 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4620 S:      Supported
4621 F:      drivers/net/ethernet/cisco/enic/
4622
4623 CISCO VIC LOW LATENCY NIC DRIVER
4624 M:      Christian Benvenuti <benve@cisco.com>
4625 M:      Nelson Escobar <neescoba@cisco.com>
4626 S:      Supported
4627 F:      drivers/infiniband/hw/usnic/
4628
4629 CLANG-FORMAT FILE
4630 M:      Miguel Ojeda <ojeda@kernel.org>
4631 S:      Maintained
4632 F:      .clang-format
4633
4634 CLANG/LLVM BUILD SUPPORT
4635 M:      Nathan Chancellor <nathan@kernel.org>
4636 M:      Nick Desaulniers <ndesaulniers@google.com>
4637 L:      llvm@lists.linux.dev
4638 S:      Supported
4639 W:      https://clangbuiltlinux.github.io/
4640 B:      https://github.com/ClangBuiltLinux/linux/issues
4641 C:      irc://irc.libera.chat/clangbuiltlinux
4642 F:      Documentation/kbuild/llvm.rst
4643 F:      include/linux/compiler-clang.h
4644 F:      scripts/Makefile.clang
4645 F:      scripts/clang-tools/
4646 K:      \b(?i:clang|llvm)\b
4647
4648 CLANG CONTROL FLOW INTEGRITY SUPPORT
4649 M:      Sami Tolvanen <samitolvanen@google.com>
4650 M:      Kees Cook <keescook@chromium.org>
4651 R:      Nathan Chancellor <nathan@kernel.org>
4652 R:      Nick Desaulniers <ndesaulniers@google.com>
4653 L:      llvm@lists.linux.dev
4654 S:      Supported
4655 B:      https://github.com/ClangBuiltLinux/linux/issues
4656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4657 F:      include/linux/cfi.h
4658 F:      kernel/cfi.c
4659
4660 CLEANCACHE API
4661 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4662 L:      linux-kernel@vger.kernel.org
4663 S:      Maintained
4664 F:      include/linux/cleancache.h
4665 F:      mm/cleancache.c
4666
4667 CLK API
4668 M:      Russell King <linux@armlinux.org.uk>
4669 L:      linux-clk@vger.kernel.org
4670 S:      Maintained
4671 F:      include/linux/clk.h
4672
4673 CLOCKSOURCE, CLOCKEVENT DRIVERS
4674 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4675 M:      Thomas Gleixner <tglx@linutronix.de>
4676 L:      linux-kernel@vger.kernel.org
4677 S:      Supported
4678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4679 F:      Documentation/devicetree/bindings/timer/
4680 F:      drivers/clocksource/
4681
4682 CMPC ACPI DRIVER
4683 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4684 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4685 L:      platform-driver-x86@vger.kernel.org
4686 S:      Supported
4687 F:      drivers/platform/x86/classmate-laptop.c
4688
4689 COBALT MEDIA DRIVER
4690 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4691 L:      linux-media@vger.kernel.org
4692 S:      Supported
4693 W:      https://linuxtv.org
4694 T:      git git://linuxtv.org/media_tree.git
4695 F:      drivers/media/pci/cobalt/
4696
4697 COCCINELLE/Semantic Patches (SmPL)
4698 M:      Julia Lawall <Julia.Lawall@inria.fr>
4699 M:      Gilles Muller <Gilles.Muller@inria.fr>
4700 M:      Nicolas Palix <nicolas.palix@imag.fr>
4701 L:      cocci@inria.fr (moderated for non-subscribers)
4702 S:      Supported
4703 W:      https://coccinelle.gitlabpages.inria.fr/website/
4704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4705 F:      Documentation/dev-tools/coccinelle.rst
4706 F:      scripts/coccicheck
4707 F:      scripts/coccinelle/
4708
4709 CODA FILE SYSTEM
4710 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4711 M:      coda@cs.cmu.edu
4712 L:      codalist@coda.cs.cmu.edu
4713 S:      Maintained
4714 W:      http://www.coda.cs.cmu.edu/
4715 F:      Documentation/filesystems/coda.rst
4716 F:      fs/coda/
4717 F:      include/linux/coda*.h
4718 F:      include/uapi/linux/coda*.h
4719
4720 CODA V4L2 MEM2MEM DRIVER
4721 M:      Philipp Zabel <p.zabel@pengutronix.de>
4722 L:      linux-media@vger.kernel.org
4723 S:      Maintained
4724 F:      Documentation/devicetree/bindings/media/coda.yaml
4725 F:      drivers/media/platform/coda/
4726
4727 CODE OF CONDUCT
4728 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4729 S:      Supported
4730 F:      Documentation/process/code-of-conduct-interpretation.rst
4731 F:      Documentation/process/code-of-conduct.rst
4732
4733 COMEDI DRIVERS
4734 M:      Ian Abbott <abbotti@mev.co.uk>
4735 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4736 S:      Odd Fixes
4737 F:      drivers/comedi/
4738
4739 COMMON CLK FRAMEWORK
4740 M:      Michael Turquette <mturquette@baylibre.com>
4741 M:      Stephen Boyd <sboyd@kernel.org>
4742 L:      linux-clk@vger.kernel.org
4743 S:      Maintained
4744 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4746 F:      Documentation/devicetree/bindings/clock/
4747 F:      drivers/clk/
4748 F:      include/linux/clk-pr*
4749 F:      include/linux/clk/
4750 F:      include/linux/of_clk.h
4751 X:      drivers/clk/clkdev.c
4752
4753 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4754 M:      Steve French <sfrench@samba.org>
4755 L:      linux-cifs@vger.kernel.org
4756 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4757 S:      Supported
4758 W:      http://linux-cifs.samba.org/
4759 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4760 F:      Documentation/admin-guide/cifs/
4761 F:      fs/cifs/
4762 F:      fs/smbfs_common/
4763
4764 COMPACTPCI HOTPLUG CORE
4765 M:      Scott Murray <scott@spiteful.org>
4766 L:      linux-pci@vger.kernel.org
4767 S:      Maintained
4768 F:      drivers/pci/hotplug/cpci_hotplug*
4769
4770 COMPACTPCI HOTPLUG GENERIC DRIVER
4771 M:      Scott Murray <scott@spiteful.org>
4772 L:      linux-pci@vger.kernel.org
4773 S:      Maintained
4774 F:      drivers/pci/hotplug/cpcihp_generic.c
4775
4776 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4777 M:      Scott Murray <scott@spiteful.org>
4778 L:      linux-pci@vger.kernel.org
4779 S:      Maintained
4780 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4781
4782 COMPAL LAPTOP SUPPORT
4783 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4784 L:      platform-driver-x86@vger.kernel.org
4785 S:      Maintained
4786 F:      drivers/platform/x86/compal-laptop.c
4787
4788 COMPILER ATTRIBUTES
4789 M:      Miguel Ojeda <ojeda@kernel.org>
4790 R:      Nick Desaulniers <ndesaulniers@google.com>
4791 S:      Maintained
4792 F:      include/linux/compiler_attributes.h
4793
4794 COMPUTE EXPRESS LINK (CXL)
4795 M:      Alison Schofield <alison.schofield@intel.com>
4796 M:      Vishal Verma <vishal.l.verma@intel.com>
4797 M:      Ira Weiny <ira.weiny@intel.com>
4798 M:      Ben Widawsky <ben.widawsky@intel.com>
4799 M:      Dan Williams <dan.j.williams@intel.com>
4800 L:      linux-cxl@vger.kernel.org
4801 S:      Maintained
4802 F:      drivers/cxl/
4803 F:      include/uapi/linux/cxl_mem.h
4804
4805 CONEXANT ACCESSRUNNER USB DRIVER
4806 L:      accessrunner-general@lists.sourceforge.net
4807 S:      Orphan
4808 W:      http://accessrunner.sourceforge.net/
4809 F:      drivers/usb/atm/cxacru.c
4810
4811 CONFIGFS
4812 M:      Joel Becker <jlbec@evilplan.org>
4813 M:      Christoph Hellwig <hch@lst.de>
4814 S:      Supported
4815 T:      git git://git.infradead.org/users/hch/configfs.git
4816 F:      fs/configfs/
4817 F:      include/linux/configfs.h
4818 F:      samples/configfs/
4819
4820 CONSOLE SUBSYSTEM
4821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4822 S:      Supported
4823 F:      drivers/video/console/
4824 F:      include/linux/console*
4825
4826 CONTEXT TRACKING
4827 M:      Frederic Weisbecker <frederic@kernel.org>
4828 S:      Maintained
4829 F:      kernel/context_tracking.c
4830 F:      include/linux/context_tracking*
4831
4832 CONTROL GROUP (CGROUP)
4833 M:      Tejun Heo <tj@kernel.org>
4834 M:      Zefan Li <lizefan.x@bytedance.com>
4835 M:      Johannes Weiner <hannes@cmpxchg.org>
4836 L:      cgroups@vger.kernel.org
4837 S:      Maintained
4838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4839 F:      Documentation/admin-guide/cgroup-v1/
4840 F:      Documentation/admin-guide/cgroup-v2.rst
4841 F:      include/linux/cgroup*
4842 F:      kernel/cgroup/
4843
4844 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4845 M:      Tejun Heo <tj@kernel.org>
4846 M:      Jens Axboe <axboe@kernel.dk>
4847 L:      cgroups@vger.kernel.org
4848 L:      linux-block@vger.kernel.org
4849 T:      git git://git.kernel.dk/linux-block
4850 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4851 F:      block/bfq-cgroup.c
4852 F:      block/blk-cgroup.c
4853 F:      block/blk-iolatency.c
4854 F:      block/blk-throttle.c
4855 F:      include/linux/blk-cgroup.h
4856
4857 CONTROL GROUP - CPUSET
4858 M:      Zefan Li <lizefan.x@bytedance.com>
4859 L:      cgroups@vger.kernel.org
4860 S:      Maintained
4861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4862 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4863 F:      include/linux/cpuset.h
4864 F:      kernel/cgroup/cpuset.c
4865
4866 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4867 M:      Johannes Weiner <hannes@cmpxchg.org>
4868 M:      Michal Hocko <mhocko@kernel.org>
4869 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4870 L:      cgroups@vger.kernel.org
4871 L:      linux-mm@kvack.org
4872 S:      Maintained
4873 F:      mm/memcontrol.c
4874 F:      mm/swap_cgroup.c
4875
4876 CORETEMP HARDWARE MONITORING DRIVER
4877 M:      Fenghua Yu <fenghua.yu@intel.com>
4878 L:      linux-hwmon@vger.kernel.org
4879 S:      Maintained
4880 F:      Documentation/hwmon/coretemp.rst
4881 F:      drivers/hwmon/coretemp.c
4882
4883 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4884 M:      Marius Zachmann <mail@mariuszachmann.de>
4885 L:      linux-hwmon@vger.kernel.org
4886 S:      Maintained
4887 F:      drivers/hwmon/corsair-cpro.c
4888
4889 CORSAIR-PSU HARDWARE MONITOR DRIVER
4890 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4891 L:      linux-hwmon@vger.kernel.org
4892 S:      Maintained
4893 F:      Documentation/hwmon/corsair-psu.rst
4894 F:      drivers/hwmon/corsair-psu.c
4895
4896 COSA/SRP SYNC SERIAL DRIVER
4897 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4898 S:      Maintained
4899 W:      http://www.fi.muni.cz/~kas/cosa/
4900 F:      drivers/net/wan/cosa*
4901
4902 COUNTER SUBSYSTEM
4903 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4904 L:      linux-iio@vger.kernel.org
4905 S:      Maintained
4906 F:      Documentation/ABI/testing/sysfs-bus-counter
4907 F:      Documentation/driver-api/generic-counter.rst
4908 F:      drivers/counter/
4909 F:      include/linux/counter.h
4910 F:      include/uapi/linux/counter.h
4911 F:      tools/counter/
4912
4913 CP2615 I2C DRIVER
4914 M:      Bence Csókás <bence98@sch.bme.hu>
4915 S:      Maintained
4916 F:      drivers/i2c/busses/i2c-cp2615.c
4917
4918 CPMAC ETHERNET DRIVER
4919 M:      Florian Fainelli <f.fainelli@gmail.com>
4920 L:      netdev@vger.kernel.org
4921 S:      Maintained
4922 F:      drivers/net/ethernet/ti/cpmac.c
4923
4924 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4925 M:      Viresh Kumar <viresh.kumar@linaro.org>
4926 M:      Sudeep Holla <sudeep.holla@arm.com>
4927 L:      linux-pm@vger.kernel.org
4928 S:      Maintained
4929 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4930 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4931
4932 CPU FREQUENCY SCALING FRAMEWORK
4933 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4934 M:      Viresh Kumar <viresh.kumar@linaro.org>
4935 L:      linux-pm@vger.kernel.org
4936 S:      Maintained
4937 B:      https://bugzilla.kernel.org
4938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4940 F:      Documentation/admin-guide/pm/cpufreq.rst
4941 F:      Documentation/admin-guide/pm/intel_pstate.rst
4942 F:      Documentation/cpu-freq/
4943 F:      Documentation/devicetree/bindings/cpufreq/
4944 F:      drivers/cpufreq/
4945 F:      include/linux/cpufreq.h
4946 F:      include/linux/sched/cpufreq.h
4947 F:      kernel/sched/cpufreq*.c
4948 F:      tools/testing/selftests/cpufreq/
4949
4950 CPU IDLE TIME MANAGEMENT FRAMEWORK
4951 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4952 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4953 L:      linux-pm@vger.kernel.org
4954 S:      Maintained
4955 B:      https://bugzilla.kernel.org
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4957 F:      Documentation/admin-guide/pm/cpuidle.rst
4958 F:      Documentation/driver-api/pm/cpuidle.rst
4959 F:      drivers/cpuidle/
4960 F:      include/linux/cpuidle.h
4961
4962 CPU POWER MONITORING SUBSYSTEM
4963 M:      Thomas Renninger <trenn@suse.com>
4964 M:      Shuah Khan <shuah@kernel.org>
4965 M:      Shuah Khan <skhan@linuxfoundation.org>
4966 L:      linux-pm@vger.kernel.org
4967 S:      Maintained
4968 F:      tools/power/cpupower/
4969
4970 CPUID/MSR DRIVER
4971 M:      "H. Peter Anvin" <hpa@zytor.com>
4972 S:      Maintained
4973 F:      arch/x86/kernel/cpuid.c
4974 F:      arch/x86/kernel/msr.c
4975
4976 CPUIDLE DRIVER - ARM BIG LITTLE
4977 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4978 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4979 L:      linux-pm@vger.kernel.org
4980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4981 S:      Maintained
4982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4983 F:      drivers/cpuidle/cpuidle-big_little.c
4984
4985 CPUIDLE DRIVER - ARM EXYNOS
4986 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4987 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4988 M:      Kukjin Kim <kgene@kernel.org>
4989 L:      linux-pm@vger.kernel.org
4990 L:      linux-samsung-soc@vger.kernel.org
4991 S:      Supported
4992 F:      arch/arm/mach-exynos/pm.c
4993 F:      drivers/cpuidle/cpuidle-exynos.c
4994 F:      include/linux/platform_data/cpuidle-exynos.h
4995
4996 CPUIDLE DRIVER - ARM PSCI
4997 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4998 M:      Sudeep Holla <sudeep.holla@arm.com>
4999 L:      linux-pm@vger.kernel.org
5000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5001 S:      Supported
5002 F:      drivers/cpuidle/cpuidle-psci.c
5003
5004 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5005 M:      Ulf Hansson <ulf.hansson@linaro.org>
5006 L:      linux-pm@vger.kernel.org
5007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5008 S:      Supported
5009 F:      drivers/cpuidle/cpuidle-psci.h
5010 F:      drivers/cpuidle/cpuidle-psci-domain.c
5011
5012 CRAMFS FILESYSTEM
5013 M:      Nicolas Pitre <nico@fluxnic.net>
5014 S:      Maintained
5015 F:      Documentation/filesystems/cramfs.rst
5016 F:      fs/cramfs/
5017
5018 CREATIVE SB0540
5019 M:      Bastien Nocera <hadess@hadess.net>
5020 L:      linux-input@vger.kernel.org
5021 S:      Maintained
5022 F:      drivers/hid/hid-creative-sb0540.c
5023
5024 CRYPTO API
5025 M:      Herbert Xu <herbert@gondor.apana.org.au>
5026 M:      "David S. Miller" <davem@davemloft.net>
5027 L:      linux-crypto@vger.kernel.org
5028 S:      Maintained
5029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5031 F:      Documentation/crypto/
5032 F:      Documentation/devicetree/bindings/crypto/
5033 F:      arch/*/crypto/
5034 F:      crypto/
5035 F:      drivers/crypto/
5036 F:      include/crypto/
5037 F:      include/linux/crypto*
5038 F:      lib/crypto/
5039
5040 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5041 M:      Neil Horman <nhorman@tuxdriver.com>
5042 L:      linux-crypto@vger.kernel.org
5043 S:      Maintained
5044 F:      crypto/ansi_cprng.c
5045 F:      crypto/rng.c
5046
5047 CS3308 MEDIA DRIVER
5048 M:      Hans Verkuil <hverkuil@xs4all.nl>
5049 L:      linux-media@vger.kernel.org
5050 S:      Odd Fixes
5051 W:      http://linuxtv.org
5052 T:      git git://linuxtv.org/media_tree.git
5053 F:      drivers/media/i2c/cs3308.c
5054
5055 CS5535 Audio ALSA driver
5056 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5057 S:      Maintained
5058 F:      sound/pci/cs5535audio/
5059
5060 CSI DRIVERS FOR ALLWINNER V3s
5061 M:      Yong Deng <yong.deng@magewell.com>
5062 L:      linux-media@vger.kernel.org
5063 S:      Maintained
5064 T:      git git://linuxtv.org/media_tree.git
5065 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5066 F:      drivers/media/platform/sunxi/sun6i-csi/
5067
5068 CW1200 WLAN driver
5069 M:      Solomon Peachy <pizza@shaftnet.org>
5070 S:      Maintained
5071 F:      drivers/net/wireless/st/cw1200/
5072
5073 CX18 VIDEO4LINUX DRIVER
5074 M:      Andy Walls <awalls@md.metrocast.net>
5075 L:      linux-media@vger.kernel.org
5076 S:      Maintained
5077 W:      https://linuxtv.org
5078 T:      git git://linuxtv.org/media_tree.git
5079 F:      drivers/media/pci/cx18/
5080 F:      include/uapi/linux/ivtv*
5081
5082 CX2341X MPEG ENCODER HELPER MODULE
5083 M:      Hans Verkuil <hverkuil@xs4all.nl>
5084 L:      linux-media@vger.kernel.org
5085 S:      Maintained
5086 W:      https://linuxtv.org
5087 T:      git git://linuxtv.org/media_tree.git
5088 F:      drivers/media/common/cx2341x*
5089 F:      include/media/drv-intf/cx2341x.h
5090
5091 CX24120 MEDIA DRIVER
5092 M:      Jemma Denson <jdenson@gmail.com>
5093 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5094 L:      linux-media@vger.kernel.org
5095 S:      Maintained
5096 W:      https://linuxtv.org
5097 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5098 F:      drivers/media/dvb-frontends/cx24120*
5099
5100 CX88 VIDEO4LINUX DRIVER
5101 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5102 L:      linux-media@vger.kernel.org
5103 S:      Odd fixes
5104 W:      https://linuxtv.org
5105 T:      git git://linuxtv.org/media_tree.git
5106 F:      Documentation/driver-api/media/drivers/cx88*
5107 F:      drivers/media/pci/cx88/
5108
5109 CXD2820R MEDIA DRIVER
5110 M:      Antti Palosaari <crope@iki.fi>
5111 L:      linux-media@vger.kernel.org
5112 S:      Maintained
5113 W:      https://linuxtv.org
5114 W:      http://palosaari.fi/linux/
5115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5116 T:      git git://linuxtv.org/anttip/media_tree.git
5117 F:      drivers/media/dvb-frontends/cxd2820r*
5118
5119 CXGB3 ETHERNET DRIVER (CXGB3)
5120 M:      Raju Rangoju <rajur@chelsio.com>
5121 L:      netdev@vger.kernel.org
5122 S:      Supported
5123 W:      http://www.chelsio.com
5124 F:      drivers/net/ethernet/chelsio/cxgb3/
5125
5126 CXGB3 ISCSI DRIVER (CXGB3I)
5127 M:      Karen Xie <kxie@chelsio.com>
5128 L:      linux-scsi@vger.kernel.org
5129 S:      Supported
5130 W:      http://www.chelsio.com
5131 F:      drivers/scsi/cxgbi/cxgb3i
5132
5133 CXGB4 CRYPTO DRIVER (chcr)
5134 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5135 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5136 M:      Rohit Maheshwari <rohitm@chelsio.com>
5137 L:      linux-crypto@vger.kernel.org
5138 S:      Supported
5139 W:      http://www.chelsio.com
5140 F:      drivers/crypto/chelsio
5141
5142 CXGB4 INLINE CRYPTO DRIVER
5143 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5144 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5145 M:      Rohit Maheshwari <rohitm@chelsio.com>
5146 L:      netdev@vger.kernel.org
5147 S:      Supported
5148 W:      http://www.chelsio.com
5149 F:      drivers/net/ethernet/chelsio/inline_crypto/
5150
5151 CXGB4 ETHERNET DRIVER (CXGB4)
5152 M:      Raju Rangoju <rajur@chelsio.com>
5153 L:      netdev@vger.kernel.org
5154 S:      Supported
5155 W:      http://www.chelsio.com
5156 F:      drivers/net/ethernet/chelsio/cxgb4/
5157
5158 CXGB4 ISCSI DRIVER (CXGB4I)
5159 M:      Karen Xie <kxie@chelsio.com>
5160 L:      linux-scsi@vger.kernel.org
5161 S:      Supported
5162 W:      http://www.chelsio.com
5163 F:      drivers/scsi/cxgbi/cxgb4i
5164
5165 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5166 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5167 L:      linux-rdma@vger.kernel.org
5168 S:      Supported
5169 W:      http://www.openfabrics.org
5170 F:      drivers/infiniband/hw/cxgb4/
5171 F:      include/uapi/rdma/cxgb4-abi.h
5172
5173 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5174 M:      Raju Rangoju <rajur@chelsio.com>
5175 L:      netdev@vger.kernel.org
5176 S:      Supported
5177 W:      http://www.chelsio.com
5178 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5179
5180 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5181 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5182 M:      Andrew Donnellan <ajd@linux.ibm.com>
5183 L:      linuxppc-dev@lists.ozlabs.org
5184 S:      Supported
5185 F:      Documentation/ABI/testing/sysfs-class-cxl
5186 F:      Documentation/powerpc/cxl.rst
5187 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5188 F:      drivers/misc/cxl/
5189 F:      include/misc/cxl*
5190 F:      include/uapi/misc/cxl.h
5191
5192 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5193 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5194 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5195 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5196 L:      linux-scsi@vger.kernel.org
5197 S:      Supported
5198 F:      Documentation/powerpc/cxlflash.rst
5199 F:      drivers/scsi/cxlflash/
5200 F:      include/uapi/scsi/cxlflash_ioctl.h
5201
5202 CYBERPRO FB DRIVER
5203 M:      Russell King <linux@armlinux.org.uk>
5204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5205 S:      Maintained
5206 W:      http://www.armlinux.org.uk/
5207 F:      drivers/video/fbdev/cyber2000fb.*
5208
5209 CYCLADES PC300 DRIVER
5210 S:      Orphan
5211 F:      drivers/net/wan/pc300*
5212
5213 CYPRESS_FIRMWARE MEDIA DRIVER
5214 M:      Antti Palosaari <crope@iki.fi>
5215 L:      linux-media@vger.kernel.org
5216 S:      Maintained
5217 W:      https://linuxtv.org
5218 W:      http://palosaari.fi/linux/
5219 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5220 T:      git git://linuxtv.org/anttip/media_tree.git
5221 F:      drivers/media/common/cypress_firmware*
5222
5223 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5224 M:      Linus Walleij <linus.walleij@linaro.org>
5225 L:      linux-input@vger.kernel.org
5226 S:      Maintained
5227 F:      drivers/input/touchscreen/cy8ctma140.c
5228
5229 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5230 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5231 L:      linux-input@vger.kernel.org
5232 S:      Maintained
5233 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5234 F:      drivers/input/keyboard/cypress-sf.c
5235
5236 CYTTSP TOUCHSCREEN DRIVER
5237 M:      Linus Walleij <linus.walleij@linaro.org>
5238 L:      linux-input@vger.kernel.org
5239 S:      Maintained
5240 F:      drivers/input/touchscreen/cyttsp*
5241
5242 D-LINK DIR-685 TOUCHKEYS DRIVER
5243 M:      Linus Walleij <linus.walleij@linaro.org>
5244 L:      linux-input@vger.kernel.org
5245 S:      Supported
5246 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5247
5248 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5249 M:      Joshua Kinard <kumba@gentoo.org>
5250 S:      Maintained
5251 F:      drivers/rtc/rtc-ds1685.c
5252 F:      include/linux/rtc/ds1685.h
5253
5254 DAMA SLAVE for AX.25
5255 M:      Joerg Reuter <jreuter@yaina.de>
5256 L:      linux-hams@vger.kernel.org
5257 S:      Maintained
5258 W:      http://yaina.de/jreuter/
5259 W:      http://www.qsl.net/dl1bke/
5260 F:      net/ax25/af_ax25.c
5261 F:      net/ax25/ax25_dev.c
5262 F:      net/ax25/ax25_ds_*
5263 F:      net/ax25/ax25_in.c
5264 F:      net/ax25/ax25_out.c
5265 F:      net/ax25/ax25_timer.c
5266 F:      net/ax25/sysctl_net_ax25.c
5267
5268 DATA ACCESS MONITOR
5269 M:      SeongJae Park <sj@kernel.org>
5270 L:      linux-mm@kvack.org
5271 S:      Maintained
5272 F:      Documentation/admin-guide/mm/damon/
5273 F:      Documentation/vm/damon/
5274 F:      include/linux/damon.h
5275 F:      include/trace/events/damon.h
5276 F:      mm/damon/
5277 F:      tools/testing/selftests/damon/
5278
5279 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5280 L:      netdev@vger.kernel.org
5281 S:      Orphan
5282 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5283 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5284
5285 DC390/AM53C974 SCSI driver
5286 M:      Hannes Reinecke <hare@suse.com>
5287 L:      linux-scsi@vger.kernel.org
5288 S:      Maintained
5289 F:      drivers/scsi/am53c974.c
5290
5291 DC395x SCSI driver
5292 M:      Oliver Neukum <oliver@neukum.org>
5293 M:      Ali Akcaagac <aliakc@web.de>
5294 M:      Jamie Lenehan <lenehan@twibble.org>
5295 L:      dc395x@twibble.org
5296 S:      Maintained
5297 W:      http://twibble.org/dist/dc395x/
5298 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5299 F:      Documentation/scsi/dc395x.rst
5300 F:      drivers/scsi/dc395x.*
5301
5302 DCCP PROTOCOL
5303 L:      dccp@vger.kernel.org
5304 S:      Orphan
5305 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5306 F:      include/linux/dccp.h
5307 F:      include/linux/tfrc.h
5308 F:      include/uapi/linux/dccp.h
5309 F:      net/dccp/
5310
5311 DECnet NETWORK LAYER
5312 L:      linux-decnet-user@lists.sourceforge.net
5313 S:      Orphan
5314 W:      http://linux-decnet.sourceforge.net
5315 F:      Documentation/networking/decnet.rst
5316 F:      net/decnet/
5317
5318 DECSTATION PLATFORM SUPPORT
5319 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5320 L:      linux-mips@vger.kernel.org
5321 S:      Maintained
5322 W:      http://www.linux-mips.org/wiki/DECstation
5323 F:      arch/mips/dec/
5324 F:      arch/mips/include/asm/dec/
5325 F:      arch/mips/include/asm/mach-dec/
5326
5327 DEFXX FDDI NETWORK DRIVER
5328 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5329 S:      Maintained
5330 F:      drivers/net/fddi/defxx.*
5331
5332 DEFZA FDDI NETWORK DRIVER
5333 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5334 S:      Maintained
5335 F:      drivers/net/fddi/defza.*
5336
5337 DEINTERLACE DRIVERS FOR ALLWINNER H3
5338 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5339 L:      linux-media@vger.kernel.org
5340 S:      Maintained
5341 T:      git git://linuxtv.org/media_tree.git
5342 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5343 F:      drivers/media/platform/sunxi/sun8i-di/
5344
5345 DELL LAPTOP DRIVER
5346 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5347 M:      Pali Rohár <pali@kernel.org>
5348 L:      platform-driver-x86@vger.kernel.org
5349 S:      Maintained
5350 F:      drivers/platform/x86/dell/dell-laptop.c
5351
5352 DELL LAPTOP FREEFALL DRIVER
5353 M:      Pali Rohár <pali@kernel.org>
5354 S:      Maintained
5355 F:      drivers/platform/x86/dell/dell-smo8800.c
5356
5357 DELL LAPTOP RBTN DRIVER
5358 M:      Pali Rohár <pali@kernel.org>
5359 S:      Maintained
5360 F:      drivers/platform/x86/dell/dell-rbtn.*
5361
5362 DELL LAPTOP SMM DRIVER
5363 M:      Pali Rohár <pali@kernel.org>
5364 S:      Maintained
5365 F:      drivers/hwmon/dell-smm-hwmon.c
5366 F:      include/uapi/linux/i8k.h
5367
5368 DELL REMOTE BIOS UPDATE DRIVER
5369 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5370 L:      platform-driver-x86@vger.kernel.org
5371 S:      Maintained
5372 F:      drivers/platform/x86/dell/dell_rbu.c
5373
5374 DELL SMBIOS DRIVER
5375 M:      Pali Rohár <pali@kernel.org>
5376 L:      Dell.Client.Kernel@dell.com
5377 L:      platform-driver-x86@vger.kernel.org
5378 S:      Maintained
5379 F:      drivers/platform/x86/dell/dell-smbios.*
5380
5381 DELL SMBIOS SMM DRIVER
5382 L:      Dell.Client.Kernel@dell.com
5383 L:      platform-driver-x86@vger.kernel.org
5384 S:      Maintained
5385 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5386
5387 DELL SMBIOS WMI DRIVER
5388 L:      Dell.Client.Kernel@dell.com
5389 L:      platform-driver-x86@vger.kernel.org
5390 S:      Maintained
5391 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5392 F:      tools/wmi/dell-smbios-example.c
5393
5394 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5395 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5396 L:      platform-driver-x86@vger.kernel.org
5397 S:      Maintained
5398 F:      Documentation/driver-api/dcdbas.rst
5399 F:      drivers/platform/x86/dell/dcdbas.*
5400
5401 DELL WMI DESCRIPTOR DRIVER
5402 L:      Dell.Client.Kernel@dell.com
5403 S:      Maintained
5404 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5405
5406 DELL WMI SYSMAN DRIVER
5407 M:      Divya Bharathi <divya.bharathi@dell.com>
5408 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5409 L:      Dell.Client.Kernel@dell.com
5410 L:      platform-driver-x86@vger.kernel.org
5411 S:      Maintained
5412 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5413 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5414
5415 DELL WMI NOTIFICATIONS DRIVER
5416 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5417 M:      Pali Rohár <pali@kernel.org>
5418 S:      Maintained
5419 F:      drivers/platform/x86/dell/dell-wmi-base.c
5420
5421 DELL WMI HARDWARE PRIVACY SUPPORT
5422 M:      Perry Yuan <Perry.Yuan@dell.com>
5423 L:      Dell.Client.Kernel@dell.com
5424 L:      platform-driver-x86@vger.kernel.org
5425 S:      Maintained
5426 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5427
5428 DELTA ST MEDIA DRIVER
5429 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5430 L:      linux-media@vger.kernel.org
5431 S:      Supported
5432 W:      https://linuxtv.org
5433 T:      git git://linuxtv.org/media_tree.git
5434 F:      drivers/media/platform/sti/delta
5435
5436 DELTA DPS920AB PSU DRIVER
5437 M:      Robert Marko <robert.marko@sartura.hr>
5438 L:      linux-hwmon@vger.kernel.org
5439 S:      Maintained
5440 F:      Documentation/hwmon/dps920ab.rst
5441 F:      drivers/hwmon/pmbus/dps920ab.c
5442
5443 DENALI NAND DRIVER
5444 L:      linux-mtd@lists.infradead.org
5445 S:      Orphan
5446 F:      drivers/mtd/nand/raw/denali*
5447
5448 DESIGNWARE EDMA CORE IP DRIVER
5449 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5450 L:      dmaengine@vger.kernel.org
5451 S:      Maintained
5452 F:      drivers/dma/dw-edma/
5453 F:      include/linux/dma/edma.h
5454
5455 DESIGNWARE XDATA IP DRIVER
5456 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5457 L:      linux-pci@vger.kernel.org
5458 S:      Maintained
5459 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5460 F:      drivers/misc/dw-xdata-pcie.c
5461
5462 DESIGNWARE USB2 DRD IP DRIVER
5463 M:      Minas Harutyunyan <hminas@synopsys.com>
5464 L:      linux-usb@vger.kernel.org
5465 S:      Maintained
5466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5467 F:      drivers/usb/dwc2/
5468
5469 DESIGNWARE USB3 DRD IP DRIVER
5470 M:      Felipe Balbi <balbi@kernel.org>
5471 L:      linux-usb@vger.kernel.org
5472 S:      Maintained
5473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5474 F:      drivers/usb/dwc3/
5475
5476 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5477 M:      Andreas Klinger <ak@it-klinger.de>
5478 L:      linux-iio@vger.kernel.org
5479 S:      Maintained
5480 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5481 F:      drivers/iio/proximity/srf*.c
5482
5483 DEVICE COREDUMP (DEV_COREDUMP)
5484 M:      Johannes Berg <johannes@sipsolutions.net>
5485 L:      linux-kernel@vger.kernel.org
5486 S:      Maintained
5487 F:      drivers/base/devcoredump.c
5488 F:      include/linux/devcoredump.h
5489
5490 DEVICE DEPENDENCY HELPER SCRIPT
5491 M:      Saravana Kannan <saravanak@google.com>
5492 L:      linux-kernel@vger.kernel.org
5493 S:      Maintained
5494 F:      scripts/dev-needs.sh
5495
5496 DEVICE DIRECT ACCESS (DAX)
5497 M:      Dan Williams <dan.j.williams@intel.com>
5498 M:      Vishal Verma <vishal.l.verma@intel.com>
5499 M:      Dave Jiang <dave.jiang@intel.com>
5500 L:      nvdimm@lists.linux.dev
5501 S:      Supported
5502 F:      drivers/dax/
5503
5504 DEVICE FREQUENCY (DEVFREQ)
5505 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5506 M:      Kyungmin Park <kyungmin.park@samsung.com>
5507 M:      Chanwoo Choi <cw00.choi@samsung.com>
5508 L:      linux-pm@vger.kernel.org
5509 S:      Maintained
5510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5511 F:      Documentation/devicetree/bindings/devfreq/
5512 F:      drivers/devfreq/
5513 F:      include/linux/devfreq.h
5514 F:      include/trace/events/devfreq.h
5515
5516 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5517 M:      Chanwoo Choi <cw00.choi@samsung.com>
5518 L:      linux-pm@vger.kernel.org
5519 S:      Supported
5520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5521 F:      Documentation/devicetree/bindings/devfreq/event/
5522 F:      drivers/devfreq/devfreq-event.c
5523 F:      drivers/devfreq/event/
5524 F:      include/dt-bindings/pmu/exynos_ppmu.h
5525 F:      include/linux/devfreq-event.h
5526
5527 DEVICE NUMBER REGISTRY
5528 M:      Torben Mathiasen <device@lanana.org>
5529 S:      Maintained
5530 W:      http://lanana.org/docs/device-list/index.html
5531
5532 DEVICE RESOURCE MANAGEMENT HELPERS
5533 M:      Hans de Goede <hdegoede@redhat.com>
5534 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5535 S:      Maintained
5536 F:      include/linux/devm-helpers.h
5537
5538 DEVICE-MAPPER  (LVM)
5539 M:      Alasdair Kergon <agk@redhat.com>
5540 M:      Mike Snitzer <snitzer@redhat.com>
5541 M:      dm-devel@redhat.com
5542 L:      dm-devel@redhat.com
5543 S:      Maintained
5544 W:      http://sources.redhat.com/dm
5545 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5547 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5548 F:      Documentation/admin-guide/device-mapper/
5549 F:      drivers/md/Kconfig
5550 F:      drivers/md/Makefile
5551 F:      drivers/md/dm*
5552 F:      drivers/md/persistent-data/
5553 F:      include/linux/device-mapper.h
5554 F:      include/linux/dm-*.h
5555 F:      include/uapi/linux/dm-*.h
5556
5557 DEVLINK
5558 M:      Jiri Pirko <jiri@nvidia.com>
5559 L:      netdev@vger.kernel.org
5560 S:      Supported
5561 F:      Documentation/networking/devlink
5562 F:      include/net/devlink.h
5563 F:      include/uapi/linux/devlink.h
5564 F:      net/core/devlink.c
5565
5566 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5567 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5568 L:      kernel@dh-electronics.com
5569 S:      Maintained
5570 F:      arch/arm/boot/dts/imx6*-dhcom-*
5571
5572 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5573 M:      Marek Vasut <marex@denx.de>
5574 L:      kernel@dh-electronics.com
5575 S:      Maintained
5576 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5577 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5578
5579 DIALOG SEMICONDUCTOR DRIVERS
5580 M:      Support Opensource <support.opensource@diasemi.com>
5581 S:      Supported
5582 W:      http://www.dialog-semiconductor.com/products
5583 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5584 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5585 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5586 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5587 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5588 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5589 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5590 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5591 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5592 F:      Documentation/hwmon/da90??.rst
5593 F:      drivers/gpio/gpio-da90??.c
5594 F:      drivers/hwmon/da90??-hwmon.c
5595 F:      drivers/iio/adc/da91??-*.c
5596 F:      drivers/input/misc/da72??.[ch]
5597 F:      drivers/input/misc/da90??_onkey.c
5598 F:      drivers/input/touchscreen/da9052_tsi.c
5599 F:      drivers/leds/leds-da90??.c
5600 F:      drivers/mfd/da903x.c
5601 F:      drivers/mfd/da90??-*.c
5602 F:      drivers/mfd/da91??-*.c
5603 F:      drivers/pinctrl/pinctrl-da90??.c
5604 F:      drivers/power/supply/da9052-battery.c
5605 F:      drivers/power/supply/da91??-*.c
5606 F:      drivers/regulator/da9???-regulator.[ch]
5607 F:      drivers/regulator/slg51000-regulator.[ch]
5608 F:      drivers/rtc/rtc-da90??.c
5609 F:      drivers/thermal/da90??-thermal.c
5610 F:      drivers/video/backlight/da90??_bl.c
5611 F:      drivers/watchdog/da90??_wdt.c
5612 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5613 F:      include/linux/mfd/da903x.h
5614 F:      include/linux/mfd/da9052/
5615 F:      include/linux/mfd/da9055/
5616 F:      include/linux/mfd/da9062/
5617 F:      include/linux/mfd/da9063/
5618 F:      include/linux/mfd/da9150/
5619 F:      include/linux/regulator/da9211.h
5620 F:      include/sound/da[79]*.h
5621 F:      sound/soc/codecs/da[79]*.[ch]
5622
5623 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5624 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5625 L:      linux-gpio@vger.kernel.org
5626 S:      Maintained
5627 F:      drivers/gpio/gpio-gpio-mm.c
5628
5629 DIOLAN U2C-12 I2C DRIVER
5630 M:      Guenter Roeck <linux@roeck-us.net>
5631 L:      linux-i2c@vger.kernel.org
5632 S:      Maintained
5633 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5634
5635 DIRECTORY NOTIFICATION (DNOTIFY)
5636 M:      Jan Kara <jack@suse.cz>
5637 R:      Amir Goldstein <amir73il@gmail.com>
5638 L:      linux-fsdevel@vger.kernel.org
5639 S:      Maintained
5640 F:      Documentation/filesystems/dnotify.rst
5641 F:      fs/notify/dnotify/
5642 F:      include/linux/dnotify.h
5643
5644 DISK GEOMETRY AND PARTITION HANDLING
5645 M:      Andries Brouwer <aeb@cwi.nl>
5646 S:      Maintained
5647 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5648 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5649 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5650
5651 DISKQUOTA
5652 M:      Jan Kara <jack@suse.com>
5653 S:      Maintained
5654 F:      Documentation/filesystems/quota.rst
5655 F:      fs/quota/
5656 F:      include/linux/quota*.h
5657 F:      include/uapi/linux/quota*.h
5658
5659 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5660 M:      Bernie Thompson <bernie@plugable.com>
5661 L:      linux-fbdev@vger.kernel.org
5662 S:      Maintained
5663 W:      http://plugable.com/category/projects/udlfb/
5664 F:      Documentation/fb/udlfb.rst
5665 F:      drivers/video/fbdev/udlfb.c
5666 F:      include/video/udlfb.h
5667
5668 DISTRIBUTED LOCK MANAGER (DLM)
5669 M:      Christine Caulfield <ccaulfie@redhat.com>
5670 M:      David Teigland <teigland@redhat.com>
5671 L:      cluster-devel@redhat.com
5672 S:      Supported
5673 W:      http://sources.redhat.com/cluster/
5674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5675 F:      fs/dlm/
5676
5677 DMA BUFFER SHARING FRAMEWORK
5678 M:      Sumit Semwal <sumit.semwal@linaro.org>
5679 M:      Christian König <christian.koenig@amd.com>
5680 L:      linux-media@vger.kernel.org
5681 L:      dri-devel@lists.freedesktop.org
5682 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5683 S:      Maintained
5684 T:      git git://anongit.freedesktop.org/drm/drm-misc
5685 F:      Documentation/driver-api/dma-buf.rst
5686 F:      drivers/dma-buf/
5687 F:      include/linux/*fence.h
5688 F:      include/linux/dma-buf*
5689 F:      include/linux/dma-resv.h
5690 K:      \bdma_(?:buf|fence|resv)\b
5691
5692 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5693 M:      Vinod Koul <vkoul@kernel.org>
5694 L:      dmaengine@vger.kernel.org
5695 S:      Maintained
5696 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5698 F:      Documentation/devicetree/bindings/dma/
5699 F:      Documentation/driver-api/dmaengine/
5700 F:      drivers/dma/
5701 F:      include/linux/dma/
5702 F:      include/linux/dmaengine.h
5703 F:      include/linux/of_dma.h
5704
5705 DMA MAPPING HELPERS
5706 M:      Christoph Hellwig <hch@lst.de>
5707 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5708 R:      Robin Murphy <robin.murphy@arm.com>
5709 L:      iommu@lists.linux-foundation.org
5710 S:      Supported
5711 W:      http://git.infradead.org/users/hch/dma-mapping.git
5712 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5713 F:      include/asm-generic/dma-mapping.h
5714 F:      include/linux/dma-direct.h
5715 F:      include/linux/dma-mapping.h
5716 F:      include/linux/dma-map-ops.h
5717 F:      kernel/dma/
5718
5719 DMA MAPPING BENCHMARK
5720 M:      Barry Song <song.bao.hua@hisilicon.com>
5721 L:      iommu@lists.linux-foundation.org
5722 F:      kernel/dma/map_benchmark.c
5723 F:      tools/testing/selftests/dma/
5724
5725 DMA-BUF HEAPS FRAMEWORK
5726 M:      Sumit Semwal <sumit.semwal@linaro.org>
5727 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5728 R:      Liam Mark <lmark@codeaurora.org>
5729 R:      Laura Abbott <labbott@redhat.com>
5730 R:      Brian Starkey <Brian.Starkey@arm.com>
5731 R:      John Stultz <john.stultz@linaro.org>
5732 L:      linux-media@vger.kernel.org
5733 L:      dri-devel@lists.freedesktop.org
5734 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5735 S:      Maintained
5736 T:      git git://anongit.freedesktop.org/drm/drm-misc
5737 F:      drivers/dma-buf/dma-heap.c
5738 F:      drivers/dma-buf/heaps/*
5739 F:      include/linux/dma-heap.h
5740 F:      include/uapi/linux/dma-heap.h
5741
5742 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5743 M:      Lukasz Luba <lukasz.luba@arm.com>
5744 L:      linux-pm@vger.kernel.org
5745 L:      linux-samsung-soc@vger.kernel.org
5746 S:      Maintained
5747 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5748 F:      drivers/memory/samsung/exynos5422-dmc.c
5749
5750 DME1737 HARDWARE MONITOR DRIVER
5751 M:      Juerg Haefliger <juergh@gmail.com>
5752 L:      linux-hwmon@vger.kernel.org
5753 S:      Maintained
5754 F:      Documentation/hwmon/dme1737.rst
5755 F:      drivers/hwmon/dme1737.c
5756
5757 DMI/SMBIOS SUPPORT
5758 M:      Jean Delvare <jdelvare@suse.com>
5759 S:      Maintained
5760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5761 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5762 F:      drivers/firmware/dmi-id.c
5763 F:      drivers/firmware/dmi_scan.c
5764 F:      include/linux/dmi.h
5765
5766 DOCUMENTATION
5767 M:      Jonathan Corbet <corbet@lwn.net>
5768 L:      linux-doc@vger.kernel.org
5769 S:      Maintained
5770 P:      Documentation/doc-guide/maintainer-profile.rst
5771 T:      git git://git.lwn.net/linux.git docs-next
5772 F:      Documentation/
5773 F:      scripts/documentation-file-ref-check
5774 F:      scripts/kernel-doc
5775 F:      scripts/sphinx-pre-install
5776 X:      Documentation/ABI/
5777 X:      Documentation/admin-guide/media/
5778 X:      Documentation/devicetree/
5779 X:      Documentation/driver-api/media/
5780 X:      Documentation/firmware-guide/acpi/
5781 X:      Documentation/i2c/
5782 X:      Documentation/power/
5783 X:      Documentation/spi/
5784 X:      Documentation/userspace-api/media/
5785
5786 DOCUMENTATION REPORTING ISSUES
5787 M:      Thorsten Leemhuis <linux@leemhuis.info>
5788 L:      linux-doc@vger.kernel.org
5789 S:      Maintained
5790 F:      Documentation/admin-guide/reporting-issues.rst
5791
5792 DOCUMENTATION SCRIPTS
5793 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5794 L:      linux-doc@vger.kernel.org
5795 S:      Maintained
5796 F:      Documentation/sphinx/parse-headers.pl
5797 F:      scripts/documentation-file-ref-check
5798 F:      scripts/sphinx-pre-install
5799
5800 DOCUMENTATION/ITALIAN
5801 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5802 L:      linux-doc@vger.kernel.org
5803 S:      Maintained
5804 F:      Documentation/translations/it_IT
5805
5806 DONGWOON DW9714 LENS VOICE COIL DRIVER
5807 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5808 L:      linux-media@vger.kernel.org
5809 S:      Maintained
5810 T:      git git://linuxtv.org/media_tree.git
5811 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5812 F:      drivers/media/i2c/dw9714.c
5813
5814 DONGWOON DW9768 LENS VOICE COIL DRIVER
5815 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5816 L:      linux-media@vger.kernel.org
5817 S:      Maintained
5818 T:      git git://linuxtv.org/media_tree.git
5819 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5820 F:      drivers/media/i2c/dw9768.c
5821
5822 DONGWOON DW9807 LENS VOICE COIL DRIVER
5823 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5824 L:      linux-media@vger.kernel.org
5825 S:      Maintained
5826 T:      git git://linuxtv.org/media_tree.git
5827 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5828 F:      drivers/media/i2c/dw9807-vcm.c
5829
5830 DOUBLETALK DRIVER
5831 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5832 L:      blinux-list@redhat.com
5833 S:      Maintained
5834 F:      drivers/char/dtlk.c
5835 F:      include/linux/dtlk.h
5836
5837 DPAA2 DATAPATH I/O (DPIO) DRIVER
5838 M:      Roy Pledge <Roy.Pledge@nxp.com>
5839 L:      linux-kernel@vger.kernel.org
5840 S:      Maintained
5841 F:      drivers/soc/fsl/dpio
5842
5843 DPAA2 ETHERNET DRIVER
5844 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5845 L:      netdev@vger.kernel.org
5846 S:      Maintained
5847 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5848 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5849 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5850 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5851 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5852 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5853 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5854 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5855 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5856
5857 DPAA2 ETHERNET SWITCH DRIVER
5858 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5859 L:      netdev@vger.kernel.org
5860 S:      Maintained
5861 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5862 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5863 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5864
5865 DPT_I2O SCSI RAID DRIVER
5866 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5867 L:      linux-scsi@vger.kernel.org
5868 S:      Maintained
5869 W:      http://www.adaptec.com/
5870 F:      drivers/scsi/dpt*
5871 F:      drivers/scsi/dpt/
5872
5873 DRBD DRIVER
5874 M:      Philipp Reisner <philipp.reisner@linbit.com>
5875 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5876 L:      drbd-dev@lists.linbit.com
5877 S:      Supported
5878 W:      http://www.drbd.org
5879 T:      git git://git.linbit.com/linux-drbd.git
5880 T:      git git://git.linbit.com/drbd-8.4.git
5881 F:      Documentation/admin-guide/blockdev/
5882 F:      drivers/block/drbd/
5883 F:      lib/lru_cache.c
5884
5885 DRIVER COMPONENT FRAMEWORK
5886 L:      dri-devel@lists.freedesktop.org
5887 F:      drivers/base/component.c
5888 F:      include/linux/component.h
5889
5890 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5891 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5892 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5893 S:      Supported
5894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5895 F:      Documentation/core-api/kobject.rst
5896 F:      drivers/base/
5897 F:      fs/debugfs/
5898 F:      fs/sysfs/
5899 F:      include/linux/debugfs.h
5900 F:      include/linux/kobj*
5901 F:      lib/kobj*
5902
5903 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5904 M:      Nishanth Menon <nm@ti.com>
5905 L:      linux-pm@vger.kernel.org
5906 S:      Maintained
5907 F:      drivers/soc/ti/smartreflex.c
5908 F:      include/linux/power/smartreflex.h
5909
5910 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5911 M:      Maxime Ripard <mripard@kernel.org>
5912 M:      Chen-Yu Tsai <wens@csie.org>
5913 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5914 L:      dri-devel@lists.freedesktop.org
5915 S:      Supported
5916 T:      git git://anongit.freedesktop.org/drm/drm-misc
5917 F:      drivers/gpu/drm/sun4i/sun8i*
5918
5919 DRM DRIVER FOR ARM PL111 CLCD
5920 M:      Emma Anholt <emma@anholt.net>
5921 S:      Supported
5922 T:      git git://anongit.freedesktop.org/drm/drm-misc
5923 F:      drivers/gpu/drm/pl111/
5924
5925 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5926 M:      Linus Walleij <linus.walleij@linaro.org>
5927 S:      Maintained
5928 T:      git git://anongit.freedesktop.org/drm/drm-misc
5929 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5930 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5931
5932 DRM DRIVER FOR ASPEED BMC GFX
5933 M:      Joel Stanley <joel@jms.id.au>
5934 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5935 S:      Supported
5936 T:      git git://anongit.freedesktop.org/drm/drm-misc
5937 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5938 F:      drivers/gpu/drm/aspeed/
5939
5940 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5941 M:      Dave Airlie <airlied@redhat.com>
5942 R:      Thomas Zimmermann <tzimmermann@suse.de>
5943 L:      dri-devel@lists.freedesktop.org
5944 S:      Supported
5945 T:      git git://anongit.freedesktop.org/drm/drm-misc
5946 F:      drivers/gpu/drm/ast/
5947
5948 DRM DRIVER FOR BOCHS VIRTUAL GPU
5949 M:      Gerd Hoffmann <kraxel@redhat.com>
5950 L:      virtualization@lists.linux-foundation.org
5951 S:      Maintained
5952 T:      git git://anongit.freedesktop.org/drm/drm-misc
5953 F:      drivers/gpu/drm/tiny/bochs.c
5954
5955 DRM DRIVER FOR BOE HIMAX8279D PANELS
5956 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5957 S:      Maintained
5958 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5959 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5960
5961 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5962 M:      Jagan Teki <jagan@amarulasolutions.com>
5963 S:      Maintained
5964 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5965 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5966
5967 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5968 M:      Linus Walleij <linus.walleij@linaro.org>
5969 S:      Maintained
5970 T:      git git://anongit.freedesktop.org/drm/drm-misc
5971 F:      drivers/gpu/drm/tve200/
5972
5973 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5974 M:      Icenowy Zheng <icenowy@aosc.io>
5975 S:      Maintained
5976 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5977 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5978
5979 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5980 M:      Jagan Teki <jagan@amarulasolutions.com>
5981 S:      Maintained
5982 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5983 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5984
5985 DRM DRIVER FOR GENERIC USB DISPLAY
5986 M:      Noralf Trønnes <noralf@tronnes.org>
5987 S:      Maintained
5988 W:      https://github.com/notro/gud/wiki
5989 T:      git git://anongit.freedesktop.org/drm/drm-misc
5990 F:      drivers/gpu/drm/gud/
5991 F:      include/drm/gud.h
5992
5993 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5994 M:      Hans de Goede <hdegoede@redhat.com>
5995 S:      Maintained
5996 T:      git git://anongit.freedesktop.org/drm/drm-misc
5997 F:      drivers/gpu/drm/tiny/gm12u320.c
5998
5999 DRM DRIVER FOR HX8357D PANELS
6000 M:      Emma Anholt <emma@anholt.net>
6001 S:      Maintained
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6004 F:      drivers/gpu/drm/tiny/hx8357d.c
6005
6006 DRM DRIVER FOR ILITEK ILI9225 PANELS
6007 M:      David Lechner <david@lechnology.com>
6008 S:      Maintained
6009 T:      git git://anongit.freedesktop.org/drm/drm-misc
6010 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6011 F:      drivers/gpu/drm/tiny/ili9225.c
6012
6013 DRM DRIVER FOR ILITEK ILI9486 PANELS
6014 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6015 S:      Maintained
6016 T:      git git://anongit.freedesktop.org/drm/drm-misc
6017 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6018 F:      drivers/gpu/drm/tiny/ili9486.c
6019
6020 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6021 S:      Orphan / Obsolete
6022 F:      drivers/gpu/drm/i810/
6023 F:      include/uapi/drm/i810_drm.h
6024
6025 DRM DRIVER FOR LVDS PANELS
6026 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6027 L:      dri-devel@lists.freedesktop.org
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 S:      Maintained
6030 F:      drivers/gpu/drm/panel/panel-lvds.c
6031 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
6032
6033 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6034 M:      Guido Günther <agx@sigxcpu.org>
6035 R:      Purism Kernel Team <kernel@puri.sm>
6036 S:      Maintained
6037 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6038 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6039
6040 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6041 S:      Orphan / Obsolete
6042 F:      drivers/gpu/drm/mga/
6043 F:      include/uapi/drm/mga_drm.h
6044
6045 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6046 M:      Dave Airlie <airlied@redhat.com>
6047 R:      Thomas Zimmermann <tzimmermann@suse.de>
6048 L:      dri-devel@lists.freedesktop.org
6049 S:      Supported
6050 T:      git git://anongit.freedesktop.org/drm/drm-misc
6051 F:      drivers/gpu/drm/mgag200/
6052
6053 DRM DRIVER FOR MI0283QT
6054 M:      Noralf Trønnes <noralf@tronnes.org>
6055 S:      Maintained
6056 T:      git git://anongit.freedesktop.org/drm/drm-misc
6057 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6058 F:      drivers/gpu/drm/tiny/mi0283qt.c
6059
6060 DRM DRIVER FOR MSM ADRENO GPU
6061 M:      Rob Clark <robdclark@gmail.com>
6062 M:      Sean Paul <sean@poorly.run>
6063 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6064 L:      linux-arm-msm@vger.kernel.org
6065 L:      dri-devel@lists.freedesktop.org
6066 L:      freedreno@lists.freedesktop.org
6067 S:      Maintained
6068 T:      git https://gitlab.freedesktop.org/drm/msm.git
6069 F:      Documentation/devicetree/bindings/display/msm/
6070 F:      drivers/gpu/drm/msm/
6071 F:      include/uapi/drm/msm_drm.h
6072
6073 DRM DRIVER FOR NOVATEK NT35510 PANELS
6074 M:      Linus Walleij <linus.walleij@linaro.org>
6075 S:      Maintained
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6078 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6079
6080 DRM DRIVER FOR NOVATEK NT36672A PANELS
6081 M:      Sumit Semwal <sumit.semwal@linaro.org>
6082 S:      Maintained
6083 T:      git git://anongit.freedesktop.org/drm/drm-misc
6084 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6085 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6086
6087 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6088 M:      Ben Skeggs <bskeggs@redhat.com>
6089 M:      Karol Herbst <kherbst@redhat.com>
6090 M:      Lyude Paul <lyude@redhat.com>
6091 L:      dri-devel@lists.freedesktop.org
6092 L:      nouveau@lists.freedesktop.org
6093 S:      Supported
6094 W:      https://nouveau.freedesktop.org/
6095 Q:      https://patchwork.freedesktop.org/project/nouveau/
6096 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6097 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6098 C:      irc://irc.oftc.net/nouveau
6099 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6100 F:      drivers/gpu/drm/nouveau/
6101 F:      include/uapi/drm/nouveau_drm.h
6102
6103 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6104 M:      Stefan Mavrodiev <stefan@olimex.com>
6105 S:      Maintained
6106 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6107 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6108
6109 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6110 M:      Noralf Trønnes <noralf@tronnes.org>
6111 S:      Maintained
6112 T:      git git://anongit.freedesktop.org/drm/drm-misc
6113 F:      Documentation/devicetree/bindings/display/repaper.txt
6114 F:      drivers/gpu/drm/tiny/repaper.c
6115
6116 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6117 M:      Dave Airlie <airlied@redhat.com>
6118 M:      Gerd Hoffmann <kraxel@redhat.com>
6119 L:      virtualization@lists.linux-foundation.org
6120 S:      Obsolete
6121 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6122 T:      git git://anongit.freedesktop.org/drm/drm-misc
6123 F:      drivers/gpu/drm/tiny/cirrus.c
6124
6125 DRM DRIVER FOR QXL VIRTUAL GPU
6126 M:      Dave Airlie <airlied@redhat.com>
6127 M:      Gerd Hoffmann <kraxel@redhat.com>
6128 L:      virtualization@lists.linux-foundation.org
6129 L:      spice-devel@lists.freedesktop.org
6130 S:      Maintained
6131 T:      git git://anongit.freedesktop.org/drm/drm-misc
6132 F:      drivers/gpu/drm/qxl/
6133 F:      include/uapi/drm/qxl_drm.h
6134
6135 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6136 S:      Orphan / Obsolete
6137 F:      drivers/gpu/drm/r128/
6138 F:      include/uapi/drm/r128_drm.h
6139
6140 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6141 M:      Robert Chiras <robert.chiras@nxp.com>
6142 S:      Maintained
6143 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6144 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6145
6146 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6147 M:      Linus Walleij <linus.walleij@linaro.org>
6148 S:      Maintained
6149 T:      git git://anongit.freedesktop.org/drm/drm-misc
6150 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6151 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6152
6153 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6154 M:      Markuss Broks <markuss.broks@gmail.com>
6155 S:      Maintained
6156 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6157 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6158
6159 DRM DRIVER FOR SITRONIX ST7703 PANELS
6160 M:      Guido Günther <agx@sigxcpu.org>
6161 R:      Purism Kernel Team <kernel@puri.sm>
6162 R:      Ondrej Jirman <megous@megous.com>
6163 S:      Maintained
6164 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6165 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6166
6167 DRM DRIVER FOR SAVAGE VIDEO CARDS
6168 S:      Orphan / Obsolete
6169 F:      drivers/gpu/drm/savage/
6170 F:      include/uapi/drm/savage_drm.h
6171
6172 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6173 M:      Thomas Zimmermann <tzimmermann@suse.de>
6174 L:      dri-devel@lists.freedesktop.org
6175 S:      Maintained
6176 T:      git git://anongit.freedesktop.org/drm/drm-misc
6177 F:      drivers/gpu/drm/tiny/simpledrm.c
6178
6179 DRM DRIVER FOR SIS VIDEO CARDS
6180 S:      Orphan / Obsolete
6181 F:      drivers/gpu/drm/sis/
6182 F:      include/uapi/drm/sis_drm.h
6183
6184 DRM DRIVER FOR SITRONIX ST7586 PANELS
6185 M:      David Lechner <david@lechnology.com>
6186 S:      Maintained
6187 T:      git git://anongit.freedesktop.org/drm/drm-misc
6188 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6189 F:      drivers/gpu/drm/tiny/st7586.c
6190
6191 DRM DRIVER FOR SITRONIX ST7701 PANELS
6192 M:      Jagan Teki <jagan@amarulasolutions.com>
6193 S:      Maintained
6194 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6195 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6196
6197 DRM DRIVER FOR SITRONIX ST7735R PANELS
6198 M:      David Lechner <david@lechnology.com>
6199 S:      Maintained
6200 T:      git git://anongit.freedesktop.org/drm/drm-misc
6201 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6202 F:      drivers/gpu/drm/tiny/st7735r.c
6203
6204 DRM DRIVER FOR SONY ACX424AKP PANELS
6205 M:      Linus Walleij <linus.walleij@linaro.org>
6206 S:      Maintained
6207 T:      git git://anongit.freedesktop.org/drm/drm-misc
6208 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6209
6210 DRM DRIVER FOR ST-ERICSSON MCDE
6211 M:      Linus Walleij <linus.walleij@linaro.org>
6212 S:      Maintained
6213 T:      git git://anongit.freedesktop.org/drm/drm-misc
6214 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6215 F:      drivers/gpu/drm/mcde/
6216
6217 DRM DRIVER FOR TDFX VIDEO CARDS
6218 S:      Orphan / Obsolete
6219 F:      drivers/gpu/drm/tdfx/
6220
6221 DRM DRIVER FOR TPO TPG110 PANELS
6222 M:      Linus Walleij <linus.walleij@linaro.org>
6223 S:      Maintained
6224 T:      git git://anongit.freedesktop.org/drm/drm-misc
6225 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6226 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6227
6228 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6229 M:      Dave Airlie <airlied@redhat.com>
6230 R:      Sean Paul <sean@poorly.run>
6231 R:      Thomas Zimmermann <tzimmermann@suse.de>
6232 L:      dri-devel@lists.freedesktop.org
6233 S:      Supported
6234 T:      git git://anongit.freedesktop.org/drm/drm-misc
6235 F:      drivers/gpu/drm/udl/
6236
6237 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6238 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6239 M:      Melissa Wen <melissa.srw@gmail.com>
6240 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6241 R:      Daniel Vetter <daniel@ffwll.ch>
6242 L:      dri-devel@lists.freedesktop.org
6243 S:      Maintained
6244 T:      git git://anongit.freedesktop.org/drm/drm-misc
6245 F:      Documentation/gpu/vkms.rst
6246 F:      drivers/gpu/drm/vkms/
6247
6248 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6249 M:      Hans de Goede <hdegoede@redhat.com>
6250 L:      dri-devel@lists.freedesktop.org
6251 S:      Maintained
6252 T:      git git://anongit.freedesktop.org/drm/drm-misc
6253 F:      drivers/gpu/drm/vboxvideo/
6254
6255 DRM DRIVER FOR VMWARE VIRTUAL GPU
6256 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6257 M:      Zack Rusin <zackr@vmware.com>
6258 L:      dri-devel@lists.freedesktop.org
6259 S:      Supported
6260 T:      git git://anongit.freedesktop.org/drm/drm-misc
6261 F:      drivers/gpu/drm/vmwgfx/
6262 F:      include/uapi/drm/vmwgfx_drm.h
6263
6264 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6265 M:      Linus Walleij <linus.walleij@linaro.org>
6266 S:      Maintained
6267 T:      git git://anongit.freedesktop.org/drm/drm-misc
6268 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6269 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6270
6271 DRM DRIVERS
6272 M:      David Airlie <airlied@linux.ie>
6273 M:      Daniel Vetter <daniel@ffwll.ch>
6274 L:      dri-devel@lists.freedesktop.org
6275 S:      Maintained
6276 B:      https://gitlab.freedesktop.org/drm
6277 C:      irc://irc.oftc.net/dri-devel
6278 T:      git git://anongit.freedesktop.org/drm/drm
6279 F:      Documentation/devicetree/bindings/display/
6280 F:      Documentation/devicetree/bindings/gpu/
6281 F:      Documentation/gpu/
6282 F:      drivers/gpu/
6283 F:      include/drm/
6284 F:      include/linux/vga*
6285 F:      include/uapi/drm/
6286
6287 DRM DRIVERS AND MISC GPU PATCHES
6288 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6289 M:      Maxime Ripard <mripard@kernel.org>
6290 M:      Thomas Zimmermann <tzimmermann@suse.de>
6291 S:      Maintained
6292 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      Documentation/gpu/
6295 F:      drivers/gpu/drm/*
6296 F:      drivers/gpu/vga/
6297 F:      include/drm/drm*
6298 F:      include/linux/vga*
6299 F:      include/uapi/drm/drm*
6300
6301 DRM DRIVERS FOR ALLWINNER A10
6302 M:      Maxime Ripard <mripard@kernel.org>
6303 M:      Chen-Yu Tsai <wens@csie.org>
6304 L:      dri-devel@lists.freedesktop.org
6305 S:      Supported
6306 T:      git git://anongit.freedesktop.org/drm/drm-misc
6307 F:      Documentation/devicetree/bindings/display/allwinner*
6308 F:      drivers/gpu/drm/sun4i/
6309
6310 DRM DRIVERS FOR AMLOGIC SOCS
6311 M:      Neil Armstrong <narmstrong@baylibre.com>
6312 L:      dri-devel@lists.freedesktop.org
6313 L:      linux-amlogic@lists.infradead.org
6314 S:      Supported
6315 W:      http://linux-meson.com/
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6318 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6319 F:      Documentation/gpu/meson.rst
6320 F:      drivers/gpu/drm/meson/
6321
6322 DRM DRIVERS FOR ATMEL HLCDC
6323 M:      Sam Ravnborg <sam@ravnborg.org>
6324 M:      Boris Brezillon <bbrezillon@kernel.org>
6325 L:      dri-devel@lists.freedesktop.org
6326 S:      Supported
6327 T:      git git://anongit.freedesktop.org/drm/drm-misc
6328 F:      Documentation/devicetree/bindings/display/atmel/
6329 F:      drivers/gpu/drm/atmel-hlcdc/
6330
6331 DRM DRIVERS FOR BRIDGE CHIPS
6332 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6333 M:      Neil Armstrong <narmstrong@baylibre.com>
6334 M:      Robert Foss <robert.foss@linaro.org>
6335 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6336 R:      Jonas Karlman <jonas@kwiboo.se>
6337 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6338 S:      Maintained
6339 T:      git git://anongit.freedesktop.org/drm/drm-misc
6340 F:      drivers/gpu/drm/bridge/
6341
6342 DRM DRIVERS FOR EXYNOS
6343 M:      Inki Dae <inki.dae@samsung.com>
6344 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6345 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6346 M:      Kyungmin Park <kyungmin.park@samsung.com>
6347 L:      dri-devel@lists.freedesktop.org
6348 S:      Supported
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6350 F:      Documentation/devicetree/bindings/display/exynos/
6351 F:      drivers/gpu/drm/exynos/
6352 F:      include/uapi/drm/exynos_drm.h
6353
6354 DRM DRIVERS FOR FREESCALE DCU
6355 M:      Stefan Agner <stefan@agner.ch>
6356 M:      Alison Wang <alison.wang@nxp.com>
6357 L:      dri-devel@lists.freedesktop.org
6358 S:      Supported
6359 T:      git git://anongit.freedesktop.org/drm/drm-misc
6360 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6361 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6362 F:      drivers/gpu/drm/fsl-dcu/
6363
6364 DRM DRIVERS FOR FREESCALE IMX
6365 M:      Philipp Zabel <p.zabel@pengutronix.de>
6366 L:      dri-devel@lists.freedesktop.org
6367 S:      Maintained
6368 F:      Documentation/devicetree/bindings/display/imx/
6369 F:      drivers/gpu/drm/imx/
6370 F:      drivers/gpu/ipu-v3/
6371
6372 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6373 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6374 L:      dri-devel@lists.freedesktop.org
6375 S:      Maintained
6376 T:      git git://github.com/patjak/drm-gma500
6377 F:      drivers/gpu/drm/gma500/
6378
6379 DRM DRIVERS FOR HISILICON
6380 M:      Xinliang Liu <xinliang.liu@linaro.org>
6381 M:      Tian Tao  <tiantao6@hisilicon.com>
6382 R:      John Stultz <john.stultz@linaro.org>
6383 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6384 R:      Chen Feng <puck.chen@hisilicon.com>
6385 L:      dri-devel@lists.freedesktop.org
6386 S:      Maintained
6387 T:      git git://anongit.freedesktop.org/drm/drm-misc
6388 F:      Documentation/devicetree/bindings/display/hisilicon/
6389 F:      drivers/gpu/drm/hisilicon/
6390
6391 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6392 M:      Deepak Rawat <drawat.floss@gmail.com>
6393 L:      linux-hyperv@vger.kernel.org
6394 L:      dri-devel@lists.freedesktop.org
6395 S:      Maintained
6396 T:      git git://anongit.freedesktop.org/drm/drm-misc
6397 F:      drivers/gpu/drm/hyperv
6398
6399 DRM DRIVERS FOR LIMA
6400 M:      Qiang Yu <yuq825@gmail.com>
6401 L:      dri-devel@lists.freedesktop.org
6402 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      drivers/gpu/drm/lima/
6406 F:      include/uapi/drm/lima_drm.h
6407
6408 DRM DRIVERS FOR MEDIATEK
6409 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6410 M:      Philipp Zabel <p.zabel@pengutronix.de>
6411 L:      dri-devel@lists.freedesktop.org
6412 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6413 S:      Supported
6414 F:      Documentation/devicetree/bindings/display/mediatek/
6415 F:      drivers/gpu/drm/mediatek/
6416 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6417 F:      drivers/phy/mediatek/phy-mtk-mipi*
6418
6419 DRM DRIVERS FOR NVIDIA TEGRA
6420 M:      Thierry Reding <thierry.reding@gmail.com>
6421 L:      dri-devel@lists.freedesktop.org
6422 L:      linux-tegra@vger.kernel.org
6423 S:      Supported
6424 T:      git git://anongit.freedesktop.org/tegra/linux.git
6425 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6426 F:      Documentation/devicetree/bindings/gpu/host1x/
6427 F:      drivers/gpu/drm/tegra/
6428 F:      drivers/gpu/host1x/
6429 F:      include/linux/host1x.h
6430 F:      include/uapi/drm/tegra_drm.h
6431
6432 DRM DRIVERS FOR RENESAS
6433 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6434 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6435 L:      dri-devel@lists.freedesktop.org
6436 L:      linux-renesas-soc@vger.kernel.org
6437 S:      Supported
6438 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6439 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6440 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6441 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6442 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6443 F:      drivers/gpu/drm/rcar-du/
6444 F:      drivers/gpu/drm/shmobile/
6445 F:      include/linux/platform_data/shmob_drm.h
6446
6447 DRM DRIVERS FOR ROCKCHIP
6448 M:      Sandy Huang <hjc@rock-chips.com>
6449 M:      Heiko Stübner <heiko@sntech.de>
6450 L:      dri-devel@lists.freedesktop.org
6451 S:      Maintained
6452 T:      git git://anongit.freedesktop.org/drm/drm-misc
6453 F:      Documentation/devicetree/bindings/display/rockchip/
6454 F:      drivers/gpu/drm/rockchip/
6455
6456 DRM DRIVERS FOR STI
6457 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6458 L:      dri-devel@lists.freedesktop.org
6459 S:      Maintained
6460 T:      git git://anongit.freedesktop.org/drm/drm-misc
6461 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6462 F:      drivers/gpu/drm/sti
6463
6464 DRM DRIVERS FOR STM
6465 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6466 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6467 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6468 L:      dri-devel@lists.freedesktop.org
6469 S:      Maintained
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6472 F:      drivers/gpu/drm/stm
6473
6474 DRM DRIVERS FOR TI KEYSTONE
6475 M:      Jyri Sarha <jyri.sarha@iki.fi>
6476 M:      Tomi Valkeinen <tomba@kernel.org>
6477 L:      dri-devel@lists.freedesktop.org
6478 S:      Maintained
6479 T:      git git://anongit.freedesktop.org/drm/drm-misc
6480 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6481 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6482 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6483 F:      drivers/gpu/drm/tidss/
6484
6485 DRM DRIVERS FOR TI LCDC
6486 M:      Jyri Sarha <jyri.sarha@iki.fi>
6487 R:      Tomi Valkeinen <tomba@kernel.org>
6488 L:      dri-devel@lists.freedesktop.org
6489 S:      Maintained
6490 F:      Documentation/devicetree/bindings/display/tilcdc/
6491 F:      drivers/gpu/drm/tilcdc/
6492
6493 DRM DRIVERS FOR TI OMAP
6494 M:      Tomi Valkeinen <tomba@kernel.org>
6495 L:      dri-devel@lists.freedesktop.org
6496 S:      Maintained
6497 F:      Documentation/devicetree/bindings/display/ti/
6498 F:      drivers/gpu/drm/omapdrm/
6499
6500 DRM DRIVERS FOR V3D
6501 M:      Emma Anholt <emma@anholt.net>
6502 S:      Supported
6503 T:      git git://anongit.freedesktop.org/drm/drm-misc
6504 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6505 F:      drivers/gpu/drm/v3d/
6506 F:      include/uapi/drm/v3d_drm.h
6507
6508 DRM DRIVERS FOR VC4
6509 M:      Emma Anholt <emma@anholt.net>
6510 M:      Maxime Ripard <mripard@kernel.org>
6511 S:      Supported
6512 T:      git git://github.com/anholt/linux
6513 T:      git git://anongit.freedesktop.org/drm/drm-misc
6514 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6515 F:      drivers/gpu/drm/vc4/
6516 F:      include/uapi/drm/vc4_drm.h
6517
6518 DRM DRIVERS FOR VIVANTE GPU IP
6519 M:      Lucas Stach <l.stach@pengutronix.de>
6520 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6521 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6522 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6523 L:      dri-devel@lists.freedesktop.org
6524 S:      Maintained
6525 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6526 F:      drivers/gpu/drm/etnaviv/
6527 F:      include/uapi/drm/etnaviv_drm.h
6528
6529 DRM DRIVERS FOR XEN
6530 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6531 L:      dri-devel@lists.freedesktop.org
6532 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6533 S:      Supported
6534 T:      git git://anongit.freedesktop.org/drm/drm-misc
6535 F:      Documentation/gpu/xen-front.rst
6536 F:      drivers/gpu/drm/xen/
6537
6538 DRM DRIVERS FOR XILINX
6539 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6540 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6541 L:      dri-devel@lists.freedesktop.org
6542 S:      Maintained
6543 T:      git git://anongit.freedesktop.org/drm/drm-misc
6544 F:      Documentation/devicetree/bindings/display/xlnx/
6545 F:      drivers/gpu/drm/xlnx/
6546
6547 DRM PANEL DRIVERS
6548 M:      Thierry Reding <thierry.reding@gmail.com>
6549 R:      Sam Ravnborg <sam@ravnborg.org>
6550 L:      dri-devel@lists.freedesktop.org
6551 S:      Maintained
6552 T:      git git://anongit.freedesktop.org/drm/drm-misc
6553 F:      Documentation/devicetree/bindings/display/panel/
6554 F:      drivers/gpu/drm/drm_panel.c
6555 F:      drivers/gpu/drm/panel/
6556 F:      include/drm/drm_panel.h
6557
6558 DRM PRIVACY-SCREEN CLASS
6559 M:      Hans de Goede <hdegoede@redhat.com>
6560 L:      dri-devel@lists.freedesktop.org
6561 S:      Maintained
6562 T:      git git://anongit.freedesktop.org/drm/drm-misc
6563 F:      drivers/gpu/drm/drm_privacy_screen*
6564 F:      include/drm/drm_privacy_screen*
6565
6566 DRM TTM SUBSYSTEM
6567 M:      Christian Koenig <christian.koenig@amd.com>
6568 M:      Huang Rui <ray.huang@amd.com>
6569 L:      dri-devel@lists.freedesktop.org
6570 S:      Maintained
6571 T:      git git://anongit.freedesktop.org/drm/drm-misc
6572 F:      drivers/gpu/drm/ttm/
6573 F:      include/drm/ttm/
6574
6575 DRM GPU SCHEDULER
6576 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6577 L:      dri-devel@lists.freedesktop.org
6578 S:      Maintained
6579 T:      git git://anongit.freedesktop.org/drm/drm-misc
6580 F:      drivers/gpu/drm/scheduler/
6581 F:      include/drm/gpu_scheduler.h
6582
6583 DSBR100 USB FM RADIO DRIVER
6584 M:      Alexey Klimov <klimov.linux@gmail.com>
6585 L:      linux-media@vger.kernel.org
6586 S:      Maintained
6587 T:      git git://linuxtv.org/media_tree.git
6588 F:      drivers/media/radio/dsbr100.c
6589
6590 DT3155 MEDIA DRIVER
6591 M:      Hans Verkuil <hverkuil@xs4all.nl>
6592 L:      linux-media@vger.kernel.org
6593 S:      Odd Fixes
6594 W:      https://linuxtv.org
6595 T:      git git://linuxtv.org/media_tree.git
6596 F:      drivers/media/pci/dt3155/
6597
6598 DVB_USB_AF9015 MEDIA DRIVER
6599 M:      Antti Palosaari <crope@iki.fi>
6600 L:      linux-media@vger.kernel.org
6601 S:      Maintained
6602 W:      https://linuxtv.org
6603 W:      http://palosaari.fi/linux/
6604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6605 T:      git git://linuxtv.org/anttip/media_tree.git
6606 F:      drivers/media/usb/dvb-usb-v2/af9015*
6607
6608 DVB_USB_AF9035 MEDIA DRIVER
6609 M:      Antti Palosaari <crope@iki.fi>
6610 L:      linux-media@vger.kernel.org
6611 S:      Maintained
6612 W:      https://linuxtv.org
6613 W:      http://palosaari.fi/linux/
6614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6615 T:      git git://linuxtv.org/anttip/media_tree.git
6616 F:      drivers/media/usb/dvb-usb-v2/af9035*
6617
6618 DVB_USB_ANYSEE MEDIA DRIVER
6619 M:      Antti Palosaari <crope@iki.fi>
6620 L:      linux-media@vger.kernel.org
6621 S:      Maintained
6622 W:      https://linuxtv.org
6623 W:      http://palosaari.fi/linux/
6624 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6625 T:      git git://linuxtv.org/anttip/media_tree.git
6626 F:      drivers/media/usb/dvb-usb-v2/anysee*
6627
6628 DVB_USB_AU6610 MEDIA DRIVER
6629 M:      Antti Palosaari <crope@iki.fi>
6630 L:      linux-media@vger.kernel.org
6631 S:      Maintained
6632 W:      https://linuxtv.org
6633 W:      http://palosaari.fi/linux/
6634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6635 T:      git git://linuxtv.org/anttip/media_tree.git
6636 F:      drivers/media/usb/dvb-usb-v2/au6610*
6637
6638 DVB_USB_CE6230 MEDIA DRIVER
6639 M:      Antti Palosaari <crope@iki.fi>
6640 L:      linux-media@vger.kernel.org
6641 S:      Maintained
6642 W:      https://linuxtv.org
6643 W:      http://palosaari.fi/linux/
6644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6645 T:      git git://linuxtv.org/anttip/media_tree.git
6646 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6647
6648 DVB_USB_CXUSB MEDIA DRIVER
6649 M:      Michael Krufky <mkrufky@linuxtv.org>
6650 L:      linux-media@vger.kernel.org
6651 S:      Maintained
6652 W:      https://linuxtv.org
6653 W:      http://github.com/mkrufky
6654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6655 T:      git git://linuxtv.org/media_tree.git
6656 F:      drivers/media/usb/dvb-usb/cxusb*
6657
6658 DVB_USB_EC168 MEDIA DRIVER
6659 M:      Antti Palosaari <crope@iki.fi>
6660 L:      linux-media@vger.kernel.org
6661 S:      Maintained
6662 W:      https://linuxtv.org
6663 W:      http://palosaari.fi/linux/
6664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6665 T:      git git://linuxtv.org/anttip/media_tree.git
6666 F:      drivers/media/usb/dvb-usb-v2/ec168*
6667
6668 DVB_USB_GL861 MEDIA DRIVER
6669 M:      Antti Palosaari <crope@iki.fi>
6670 L:      linux-media@vger.kernel.org
6671 S:      Maintained
6672 W:      https://linuxtv.org
6673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6674 T:      git git://linuxtv.org/anttip/media_tree.git
6675 F:      drivers/media/usb/dvb-usb-v2/gl861*
6676
6677 DVB_USB_MXL111SF MEDIA DRIVER
6678 M:      Michael Krufky <mkrufky@linuxtv.org>
6679 L:      linux-media@vger.kernel.org
6680 S:      Maintained
6681 W:      https://linuxtv.org
6682 W:      http://github.com/mkrufky
6683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6684 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6685 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6686
6687 DVB_USB_RTL28XXU MEDIA DRIVER
6688 M:      Antti Palosaari <crope@iki.fi>
6689 L:      linux-media@vger.kernel.org
6690 S:      Maintained
6691 W:      https://linuxtv.org
6692 W:      http://palosaari.fi/linux/
6693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6694 T:      git git://linuxtv.org/anttip/media_tree.git
6695 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6696
6697 DVB_USB_V2 MEDIA DRIVER
6698 M:      Antti Palosaari <crope@iki.fi>
6699 L:      linux-media@vger.kernel.org
6700 S:      Maintained
6701 W:      https://linuxtv.org
6702 W:      http://palosaari.fi/linux/
6703 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6704 T:      git git://linuxtv.org/anttip/media_tree.git
6705 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6706 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6707
6708 DYNAMIC DEBUG
6709 M:      Jason Baron <jbaron@akamai.com>
6710 S:      Maintained
6711 F:      include/linux/dynamic_debug.h
6712 F:      lib/dynamic_debug.c
6713
6714 DYNAMIC INTERRUPT MODERATION
6715 M:      Tal Gilboa <talgi@nvidia.com>
6716 S:      Maintained
6717 F:      Documentation/networking/net_dim.rst
6718 F:      include/linux/dim.h
6719 F:      lib/dim/
6720
6721 DZ DECSTATION DZ11 SERIAL DRIVER
6722 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6723 S:      Maintained
6724 F:      drivers/tty/serial/dz.*
6725
6726 E3X0 POWER BUTTON DRIVER
6727 M:      Moritz Fischer <moritz.fischer@ettus.com>
6728 L:      usrp-users@lists.ettus.com
6729 S:      Supported
6730 W:      http://www.ettus.com
6731 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6732 F:      drivers/input/misc/e3x0-button.c
6733
6734 E4000 MEDIA DRIVER
6735 M:      Antti Palosaari <crope@iki.fi>
6736 L:      linux-media@vger.kernel.org
6737 S:      Maintained
6738 W:      https://linuxtv.org
6739 W:      http://palosaari.fi/linux/
6740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6741 T:      git git://linuxtv.org/anttip/media_tree.git
6742 F:      drivers/media/tuners/e4000*
6743
6744 EARTH_PT1 MEDIA DRIVER
6745 M:      Akihiro Tsukada <tskd08@gmail.com>
6746 L:      linux-media@vger.kernel.org
6747 S:      Odd Fixes
6748 F:      drivers/media/pci/pt1/
6749
6750 EARTH_PT3 MEDIA DRIVER
6751 M:      Akihiro Tsukada <tskd08@gmail.com>
6752 L:      linux-media@vger.kernel.org
6753 S:      Odd Fixes
6754 F:      drivers/media/pci/pt3/
6755
6756 EC100 MEDIA DRIVER
6757 M:      Antti Palosaari <crope@iki.fi>
6758 L:      linux-media@vger.kernel.org
6759 S:      Maintained
6760 W:      https://linuxtv.org
6761 W:      http://palosaari.fi/linux/
6762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6763 T:      git git://linuxtv.org/anttip/media_tree.git
6764 F:      drivers/media/dvb-frontends/ec100*
6765
6766 ECRYPT FILE SYSTEM
6767 M:      Tyler Hicks <code@tyhicks.com>
6768 L:      ecryptfs@vger.kernel.org
6769 S:      Odd Fixes
6770 W:      http://ecryptfs.org
6771 W:      https://launchpad.net/ecryptfs
6772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6773 F:      Documentation/filesystems/ecryptfs.rst
6774 F:      fs/ecryptfs/
6775
6776 EDAC-AMD64
6777 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6778 L:      linux-edac@vger.kernel.org
6779 S:      Supported
6780 F:      drivers/edac/amd64_edac*
6781 F:      drivers/edac/mce_amd*
6782
6783 EDAC-ARMADA
6784 M:      Jan Luebbe <jlu@pengutronix.de>
6785 L:      linux-edac@vger.kernel.org
6786 S:      Maintained
6787 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6788 F:      drivers/edac/armada_xp_*
6789
6790 EDAC-AST2500
6791 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6792 S:      Supported
6793 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6794 F:      drivers/edac/aspeed_edac.c
6795
6796 EDAC-BLUEFIELD
6797 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6798 S:      Supported
6799 F:      drivers/edac/bluefield_edac.c
6800
6801 EDAC-CALXEDA
6802 M:      Andre Przywara <andre.przywara@arm.com>
6803 L:      linux-edac@vger.kernel.org
6804 S:      Maintained
6805 F:      drivers/edac/highbank*
6806
6807 EDAC-CAVIUM OCTEON
6808 M:      Ralf Baechle <ralf@linux-mips.org>
6809 L:      linux-edac@vger.kernel.org
6810 L:      linux-mips@vger.kernel.org
6811 S:      Supported
6812 F:      drivers/edac/octeon_edac*
6813
6814 EDAC-CAVIUM THUNDERX
6815 M:      Robert Richter <rric@kernel.org>
6816 L:      linux-edac@vger.kernel.org
6817 S:      Odd Fixes
6818 F:      drivers/edac/thunderx_edac*
6819
6820 EDAC-CORE
6821 M:      Borislav Petkov <bp@alien8.de>
6822 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6823 M:      Tony Luck <tony.luck@intel.com>
6824 R:      James Morse <james.morse@arm.com>
6825 R:      Robert Richter <rric@kernel.org>
6826 L:      linux-edac@vger.kernel.org
6827 S:      Supported
6828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6829 F:      Documentation/admin-guide/ras.rst
6830 F:      Documentation/driver-api/edac.rst
6831 F:      drivers/edac/
6832 F:      include/linux/edac.h
6833
6834 EDAC-DMC520
6835 M:      Lei Wang <lewan@microsoft.com>
6836 L:      linux-edac@vger.kernel.org
6837 S:      Supported
6838 F:      drivers/edac/dmc520_edac.c
6839
6840 EDAC-E752X
6841 M:      Mark Gross <markgross@kernel.org>
6842 L:      linux-edac@vger.kernel.org
6843 S:      Maintained
6844 F:      drivers/edac/e752x_edac.c
6845
6846 EDAC-E7XXX
6847 L:      linux-edac@vger.kernel.org
6848 S:      Maintained
6849 F:      drivers/edac/e7xxx_edac.c
6850
6851 EDAC-FSL_DDR
6852 M:      York Sun <york.sun@nxp.com>
6853 L:      linux-edac@vger.kernel.org
6854 S:      Maintained
6855 F:      drivers/edac/fsl_ddr_edac.*
6856
6857 EDAC-GHES
6858 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6859 L:      linux-edac@vger.kernel.org
6860 S:      Maintained
6861 F:      drivers/edac/ghes_edac.c
6862
6863 EDAC-I10NM
6864 M:      Tony Luck <tony.luck@intel.com>
6865 L:      linux-edac@vger.kernel.org
6866 S:      Maintained
6867 F:      drivers/edac/i10nm_base.c
6868
6869 EDAC-I3000
6870 L:      linux-edac@vger.kernel.org
6871 S:      Orphan
6872 F:      drivers/edac/i3000_edac.c
6873
6874 EDAC-I5000
6875 L:      linux-edac@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/edac/i5000_edac.c
6878
6879 EDAC-I5400
6880 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6881 L:      linux-edac@vger.kernel.org
6882 S:      Maintained
6883 F:      drivers/edac/i5400_edac.c
6884
6885 EDAC-I7300
6886 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6887 L:      linux-edac@vger.kernel.org
6888 S:      Maintained
6889 F:      drivers/edac/i7300_edac.c
6890
6891 EDAC-I7CORE
6892 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6893 L:      linux-edac@vger.kernel.org
6894 S:      Maintained
6895 F:      drivers/edac/i7core_edac.c
6896
6897 EDAC-I82443BXGX
6898 M:      Tim Small <tim@buttersideup.com>
6899 L:      linux-edac@vger.kernel.org
6900 S:      Maintained
6901 F:      drivers/edac/i82443bxgx_edac.c
6902
6903 EDAC-I82975X
6904 M:      "Arvind R." <arvino55@gmail.com>
6905 L:      linux-edac@vger.kernel.org
6906 S:      Maintained
6907 F:      drivers/edac/i82975x_edac.c
6908
6909 EDAC-IE31200
6910 M:      Jason Baron <jbaron@akamai.com>
6911 L:      linux-edac@vger.kernel.org
6912 S:      Maintained
6913 F:      drivers/edac/ie31200_edac.c
6914
6915 EDAC-IGEN6
6916 M:      Tony Luck <tony.luck@intel.com>
6917 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6918 L:      linux-edac@vger.kernel.org
6919 S:      Maintained
6920 F:      drivers/edac/igen6_edac.c
6921
6922 EDAC-MPC85XX
6923 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6924 L:      linux-edac@vger.kernel.org
6925 S:      Maintained
6926 F:      drivers/edac/mpc85xx_edac.[ch]
6927
6928 EDAC-PASEMI
6929 M:      Egor Martovetsky <egor@pasemi.com>
6930 L:      linux-edac@vger.kernel.org
6931 S:      Maintained
6932 F:      drivers/edac/pasemi_edac.c
6933
6934 EDAC-PND2
6935 M:      Tony Luck <tony.luck@intel.com>
6936 L:      linux-edac@vger.kernel.org
6937 S:      Maintained
6938 F:      drivers/edac/pnd2_edac.[ch]
6939
6940 EDAC-QCOM
6941 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6942 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6943 L:      linux-arm-msm@vger.kernel.org
6944 L:      linux-edac@vger.kernel.org
6945 S:      Maintained
6946 F:      drivers/edac/qcom_edac.c
6947
6948 EDAC-R82600
6949 M:      Tim Small <tim@buttersideup.com>
6950 L:      linux-edac@vger.kernel.org
6951 S:      Maintained
6952 F:      drivers/edac/r82600_edac.c
6953
6954 EDAC-SBRIDGE
6955 M:      Tony Luck <tony.luck@intel.com>
6956 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6957 L:      linux-edac@vger.kernel.org
6958 S:      Maintained
6959 F:      drivers/edac/sb_edac.c
6960
6961 EDAC-SIFIVE
6962 M:      Yash Shah <yash.shah@sifive.com>
6963 L:      linux-edac@vger.kernel.org
6964 S:      Supported
6965 F:      drivers/edac/sifive_edac.c
6966
6967 EDAC-SKYLAKE
6968 M:      Tony Luck <tony.luck@intel.com>
6969 L:      linux-edac@vger.kernel.org
6970 S:      Maintained
6971 F:      drivers/edac/skx_*.[ch]
6972
6973 EDAC-TI
6974 M:      Tero Kristo <kristo@kernel.org>
6975 L:      linux-edac@vger.kernel.org
6976 S:      Odd Fixes
6977 F:      drivers/edac/ti_edac.c
6978
6979 EDIROL UA-101/UA-1000 DRIVER
6980 M:      Clemens Ladisch <clemens@ladisch.de>
6981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6982 S:      Maintained
6983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6984 F:      sound/usb/misc/ua101.c
6985
6986 EFI TEST DRIVER
6987 M:      Ivan Hu <ivan.hu@canonical.com>
6988 M:      Ard Biesheuvel <ardb@kernel.org>
6989 L:      linux-efi@vger.kernel.org
6990 S:      Maintained
6991 F:      drivers/firmware/efi/test/
6992
6993 EFI VARIABLE FILESYSTEM
6994 M:      Matthew Garrett <matthew.garrett@nebula.com>
6995 M:      Jeremy Kerr <jk@ozlabs.org>
6996 M:      Ard Biesheuvel <ardb@kernel.org>
6997 L:      linux-efi@vger.kernel.org
6998 S:      Maintained
6999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7000 F:      fs/efivarfs/
7001
7002 EFIFB FRAMEBUFFER DRIVER
7003 M:      Peter Jones <pjones@redhat.com>
7004 L:      linux-fbdev@vger.kernel.org
7005 S:      Maintained
7006 F:      drivers/video/fbdev/efifb.c
7007
7008 EFS FILESYSTEM
7009 S:      Orphan
7010 W:      http://aeschi.ch.eu.org/efs/
7011 F:      fs/efs/
7012
7013 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7014 M:      Douglas Miller <dougmill@linux.ibm.com>
7015 L:      netdev@vger.kernel.org
7016 S:      Maintained
7017 F:      drivers/net/ethernet/ibm/ehea/
7018
7019 EM28XX VIDEO4LINUX DRIVER
7020 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7021 L:      linux-media@vger.kernel.org
7022 S:      Maintained
7023 W:      https://linuxtv.org
7024 T:      git git://linuxtv.org/media_tree.git
7025 F:      Documentation/admin-guide/media/em28xx*
7026 F:      drivers/media/usb/em28xx/
7027
7028 EMBEDDED LINUX
7029 M:      Matt Mackall <mpm@selenic.com>
7030 M:      David Woodhouse <dwmw2@infradead.org>
7031 L:      linux-embedded@vger.kernel.org
7032 S:      Maintained
7033
7034 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7035 M:      Adrian Hunter <adrian.hunter@intel.com>
7036 M:      Ritesh Harjani <riteshh@codeaurora.org>
7037 M:      Asutosh Das <asutoshd@codeaurora.org>
7038 L:      linux-mmc@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/mmc/host/cqhci*
7041
7042 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7043 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
7044 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7045 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
7046 L:      linux-scsi@vger.kernel.org
7047 S:      Supported
7048 W:      http://www.broadcom.com
7049 F:      drivers/scsi/be2iscsi/
7050
7051 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7052 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7053 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7054 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7055 L:      netdev@vger.kernel.org
7056 S:      Supported
7057 W:      http://www.emulex.com
7058 F:      drivers/net/ethernet/emulex/benet/
7059
7060 EMULEX ONECONNECT ROCE DRIVER
7061 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7062 L:      linux-rdma@vger.kernel.org
7063 S:      Odd Fixes
7064 W:      http://www.broadcom.com
7065 F:      drivers/infiniband/hw/ocrdma/
7066 F:      include/uapi/rdma/ocrdma-abi.h
7067
7068 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7069 M:      James Smart <james.smart@broadcom.com>
7070 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7071 L:      linux-scsi@vger.kernel.org
7072 S:      Supported
7073 W:      http://www.broadcom.com
7074 F:      drivers/scsi/lpfc/
7075
7076 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7077 M:      James Smart <james.smart@broadcom.com>
7078 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7079 L:      linux-scsi@vger.kernel.org
7080 L:      target-devel@vger.kernel.org
7081 S:      Supported
7082 W:      http://www.broadcom.com
7083 F:      drivers/scsi/elx/
7084
7085 ENE CB710 FLASH CARD READER DRIVER
7086 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7087 S:      Maintained
7088 F:      drivers/misc/cb710/
7089 F:      drivers/mmc/host/cb710-mmc.*
7090 F:      include/linux/cb710.h
7091
7092 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7093 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7094 S:      Maintained
7095 F:      drivers/media/rc/ene_ir.*
7096
7097 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7098 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7099 L:      linuxppc-dev@lists.ozlabs.org
7100 S:      Maintained
7101 F:      drivers/tty/ehv_bytechan.c
7102
7103 EPSON S1D13XXX FRAMEBUFFER DRIVER
7104 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7105 S:      Maintained
7106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7107 F:      drivers/video/fbdev/s1d13xxxfb.c
7108 F:      include/video/s1d13xxxfb.h
7109
7110 EROFS FILE SYSTEM
7111 M:      Gao Xiang <xiang@kernel.org>
7112 M:      Chao Yu <chao@kernel.org>
7113 L:      linux-erofs@lists.ozlabs.org
7114 S:      Maintained
7115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7116 F:      Documentation/filesystems/erofs.rst
7117 F:      fs/erofs/
7118 F:      include/trace/events/erofs.h
7119
7120 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7121 M:      Jeff Layton <jlayton@kernel.org>
7122 S:      Maintained
7123 F:      include/linux/errseq.h
7124 F:      lib/errseq.c
7125
7126 ET131X NETWORK DRIVER
7127 M:      Mark Einon <mark.einon@gmail.com>
7128 S:      Odd Fixes
7129 F:      drivers/net/ethernet/agere/
7130
7131 ETAS ES58X CAN/USB DRIVER
7132 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7133 L:      linux-can@vger.kernel.org
7134 S:      Maintained
7135 F:      drivers/net/can/usb/etas_es58x/
7136
7137 ETHERNET BRIDGE
7138 M:      Roopa Prabhu <roopa@nvidia.com>
7139 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7140 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7141 L:      netdev@vger.kernel.org
7142 S:      Maintained
7143 W:      http://www.linuxfoundation.org/en/Net:Bridge
7144 F:      include/linux/netfilter_bridge/
7145 F:      net/bridge/
7146
7147 ETHERNET PHY LIBRARY
7148 M:      Andrew Lunn <andrew@lunn.ch>
7149 M:      Heiner Kallweit <hkallweit1@gmail.com>
7150 R:      Russell King <linux@armlinux.org.uk>
7151 L:      netdev@vger.kernel.org
7152 S:      Maintained
7153 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7154 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7155 F:      Documentation/devicetree/bindings/net/mdio*
7156 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7157 F:      Documentation/networking/phy.rst
7158 F:      drivers/net/mdio/
7159 F:      drivers/net/mdio/acpi_mdio.c
7160 F:      drivers/net/mdio/fwnode_mdio.c
7161 F:      drivers/net/mdio/of_mdio.c
7162 F:      drivers/net/pcs/
7163 F:      drivers/net/phy/
7164 F:      include/dt-bindings/net/qca-ar803x.h
7165 F:      include/linux/*mdio*.h
7166 F:      include/linux/mdio/*.h
7167 F:      include/linux/of_net.h
7168 F:      include/linux/phy.h
7169 F:      include/linux/phy_fixed.h
7170 F:      include/linux/platform_data/mdio-bcm-unimac.h
7171 F:      include/linux/platform_data/mdio-gpio.h
7172 F:      include/trace/events/mdio.h
7173 F:      include/uapi/linux/mdio.h
7174 F:      include/uapi/linux/mii.h
7175 F:      net/core/of_net.c
7176
7177 EXEC & BINFMT API
7178 R:      Eric Biederman <ebiederm@xmission.com>
7179 R:      Kees Cook <keescook@chromium.org>
7180 F:      arch/alpha/kernel/binfmt_loader.c
7181 F:      arch/x86/ia32/ia32_aout.c
7182 F:      fs/*binfmt_*.c
7183 F:      fs/exec.c
7184 F:      include/linux/binfmts.h
7185 F:      include/linux/elf.h
7186 F:      include/uapi/linux/binfmts.h
7187 F:      tools/testing/selftests/exec/
7188 N:      asm/elf.h
7189 N:      binfmt
7190
7191 EXFAT FILE SYSTEM
7192 M:      Namjae Jeon <linkinjeon@kernel.org>
7193 M:      Sungjong Seo <sj1557.seo@samsung.com>
7194 L:      linux-fsdevel@vger.kernel.org
7195 S:      Maintained
7196 F:      fs/exfat/
7197
7198 EXT2 FILE SYSTEM
7199 M:      Jan Kara <jack@suse.com>
7200 L:      linux-ext4@vger.kernel.org
7201 S:      Maintained
7202 F:      Documentation/filesystems/ext2.rst
7203 F:      fs/ext2/
7204 F:      include/linux/ext2*
7205
7206 EXT4 FILE SYSTEM
7207 M:      "Theodore Ts'o" <tytso@mit.edu>
7208 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7209 L:      linux-ext4@vger.kernel.org
7210 S:      Maintained
7211 W:      http://ext4.wiki.kernel.org
7212 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7214 F:      Documentation/filesystems/ext4/
7215 F:      fs/ext4/
7216 F:      include/trace/events/ext4.h
7217
7218 Extended Verification Module (EVM)
7219 M:      Mimi Zohar <zohar@linux.ibm.com>
7220 L:      linux-integrity@vger.kernel.org
7221 S:      Supported
7222 F:      security/integrity/evm/
7223
7224 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7225 M:      Ard Biesheuvel <ardb@kernel.org>
7226 L:      linux-efi@vger.kernel.org
7227 S:      Maintained
7228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7229 F:      Documentation/admin-guide/efi-stub.rst
7230 F:      arch/*/include/asm/efi.h
7231 F:      arch/*/kernel/efi.c
7232 F:      arch/arm/boot/compressed/efi-header.S
7233 F:      arch/arm64/kernel/efi-entry.S
7234 F:      arch/x86/platform/efi/
7235 F:      drivers/firmware/efi/
7236 F:      include/linux/efi*.h
7237
7238 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7239 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7240 M:      Chanwoo Choi <cw00.choi@samsung.com>
7241 L:      linux-kernel@vger.kernel.org
7242 S:      Maintained
7243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7244 F:      Documentation/devicetree/bindings/extcon/
7245 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7246 F:      drivers/extcon/
7247 F:      include/linux/extcon.h
7248 F:      include/linux/extcon/
7249
7250 EXTRA BOOT CONFIG
7251 M:      Masami Hiramatsu <mhiramat@kernel.org>
7252 S:      Maintained
7253 F:      Documentation/admin-guide/bootconfig.rst
7254 F:      fs/proc/bootconfig.c
7255 F:      include/linux/bootconfig.h
7256 F:      lib/bootconfig.c
7257 F:      tools/bootconfig/*
7258 F:      tools/bootconfig/scripts/*
7259
7260 EXYNOS DP DRIVER
7261 M:      Jingoo Han <jingoohan1@gmail.com>
7262 L:      dri-devel@lists.freedesktop.org
7263 S:      Maintained
7264 F:      drivers/gpu/drm/exynos/exynos_dp*
7265
7266 EXYNOS SYSMMU (IOMMU) driver
7267 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7268 L:      iommu@lists.linux-foundation.org
7269 S:      Maintained
7270 F:      drivers/iommu/exynos-iommu.c
7271
7272 F2FS FILE SYSTEM
7273 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7274 M:      Chao Yu <chao@kernel.org>
7275 L:      linux-f2fs-devel@lists.sourceforge.net
7276 S:      Maintained
7277 W:      https://f2fs.wiki.kernel.org/
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7279 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7280 F:      Documentation/filesystems/f2fs.rst
7281 F:      fs/f2fs/
7282 F:      include/linux/f2fs_fs.h
7283 F:      include/trace/events/f2fs.h
7284 F:      include/uapi/linux/f2fs.h
7285
7286 F71805F HARDWARE MONITORING DRIVER
7287 M:      Jean Delvare <jdelvare@suse.com>
7288 L:      linux-hwmon@vger.kernel.org
7289 S:      Maintained
7290 F:      Documentation/hwmon/f71805f.rst
7291 F:      drivers/hwmon/f71805f.c
7292
7293 FADDR2LINE
7294 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7295 S:      Maintained
7296 F:      scripts/faddr2line
7297
7298 FAILOVER MODULE
7299 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7300 L:      netdev@vger.kernel.org
7301 S:      Supported
7302 F:      Documentation/networking/failover.rst
7303 F:      include/net/failover.h
7304 F:      net/core/failover.c
7305
7306 FANOTIFY
7307 M:      Jan Kara <jack@suse.cz>
7308 R:      Amir Goldstein <amir73il@gmail.com>
7309 R:      Matthew Bobrowski <repnop@google.com>
7310 L:      linux-fsdevel@vger.kernel.org
7311 S:      Maintained
7312 F:      fs/notify/fanotify/
7313 F:      include/linux/fanotify.h
7314 F:      include/uapi/linux/fanotify.h
7315
7316 FARSYNC SYNCHRONOUS DRIVER
7317 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7318 S:      Supported
7319 W:      http://www.farsite.co.uk/
7320 F:      drivers/net/wan/farsync.*
7321
7322 FAULT INJECTION SUPPORT
7323 M:      Akinobu Mita <akinobu.mita@gmail.com>
7324 S:      Supported
7325 F:      Documentation/fault-injection/
7326 F:      lib/fault-inject.c
7327
7328 FBTFT Framebuffer drivers
7329 L:      dri-devel@lists.freedesktop.org
7330 L:      linux-fbdev@vger.kernel.org
7331 S:      Orphan
7332 F:      drivers/staging/fbtft/
7333
7334 FC0011 TUNER DRIVER
7335 M:      Michael Buesch <m@bues.ch>
7336 L:      linux-media@vger.kernel.org
7337 S:      Maintained
7338 F:      drivers/media/tuners/fc0011.c
7339 F:      drivers/media/tuners/fc0011.h
7340
7341 FC2580 MEDIA DRIVER
7342 M:      Antti Palosaari <crope@iki.fi>
7343 L:      linux-media@vger.kernel.org
7344 S:      Maintained
7345 W:      https://linuxtv.org
7346 W:      http://palosaari.fi/linux/
7347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7348 T:      git git://linuxtv.org/anttip/media_tree.git
7349 F:      drivers/media/tuners/fc2580*
7350
7351 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7352 M:      Hannes Reinecke <hare@suse.de>
7353 L:      linux-scsi@vger.kernel.org
7354 S:      Supported
7355 W:      www.Open-FCoE.org
7356 F:      drivers/scsi/fcoe/
7357 F:      drivers/scsi/libfc/
7358 F:      include/scsi/fc/
7359 F:      include/scsi/libfc.h
7360 F:      include/scsi/libfcoe.h
7361 F:      include/uapi/scsi/fc/
7362
7363 FILE LOCKING (flock() and fcntl()/lockf())
7364 M:      Jeff Layton <jlayton@kernel.org>
7365 M:      "J. Bruce Fields" <bfields@fieldses.org>
7366 L:      linux-fsdevel@vger.kernel.org
7367 S:      Maintained
7368 F:      fs/fcntl.c
7369 F:      fs/locks.c
7370 F:      include/linux/fcntl.h
7371 F:      include/uapi/linux/fcntl.h
7372
7373 FILESYSTEM DIRECT ACCESS (DAX)
7374 M:      Dan Williams <dan.j.williams@intel.com>
7375 R:      Matthew Wilcox <willy@infradead.org>
7376 R:      Jan Kara <jack@suse.cz>
7377 L:      linux-fsdevel@vger.kernel.org
7378 L:      nvdimm@lists.linux.dev
7379 S:      Supported
7380 F:      fs/dax.c
7381 F:      include/linux/dax.h
7382 F:      include/trace/events/fs_dax.h
7383
7384 FILESYSTEMS (VFS and infrastructure)
7385 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7386 L:      linux-fsdevel@vger.kernel.org
7387 S:      Maintained
7388 F:      fs/*
7389 F:      include/linux/fs.h
7390 F:      include/linux/fs_types.h
7391 F:      include/uapi/linux/fs.h
7392 F:      include/uapi/linux/openat2.h
7393 X:      fs/io-wq.c
7394 X:      fs/io-wq.h
7395 X:      fs/io_uring.c
7396
7397 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7398 M:      Riku Voipio <riku.voipio@iki.fi>
7399 L:      linux-hwmon@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/hwmon/f75375s.c
7402 F:      include/linux/f75375s.h
7403
7404 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7405 M:      Clemens Ladisch <clemens@ladisch.de>
7406 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7407 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7408 S:      Maintained
7409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7410 F:      include/uapi/sound/firewire.h
7411 F:      sound/firewire/
7412
7413 FIREWIRE MEDIA DRIVERS (firedtv)
7414 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7415 L:      linux-media@vger.kernel.org
7416 L:      linux1394-devel@lists.sourceforge.net
7417 S:      Maintained
7418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7419 F:      drivers/media/firewire/
7420
7421 FIREWIRE SBP-2 TARGET
7422 M:      Chris Boot <bootc@bootc.net>
7423 L:      linux-scsi@vger.kernel.org
7424 L:      target-devel@vger.kernel.org
7425 L:      linux1394-devel@lists.sourceforge.net
7426 S:      Maintained
7427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7428 F:      drivers/target/sbp/
7429
7430 FIREWIRE SUBSYSTEM
7431 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7432 L:      linux1394-devel@lists.sourceforge.net
7433 S:      Maintained
7434 W:      http://ieee1394.wiki.kernel.org/
7435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7436 F:      drivers/firewire/
7437 F:      include/linux/firewire.h
7438 F:      include/uapi/linux/firewire*.h
7439 F:      tools/firewire/
7440
7441 FIRMWARE FRAMEWORK FOR ARMV8-A
7442 M:      Sudeep Holla <sudeep.holla@arm.com>
7443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7444 S:      Maintained
7445 F:      drivers/firmware/arm_ffa/
7446 F:      include/linux/arm_ffa.h
7447
7448 FIRMWARE LOADER (request_firmware)
7449 M:      Luis Chamberlain <mcgrof@kernel.org>
7450 L:      linux-kernel@vger.kernel.org
7451 S:      Maintained
7452 F:      Documentation/firmware_class/
7453 F:      drivers/base/firmware_loader/
7454 F:      include/linux/firmware.h
7455
7456 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7457 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7458 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7459 S:      Maintained
7460 F:      drivers/block/rsxx/
7461
7462 FLEXTIMER FTM-QUADDEC DRIVER
7463 M:      Patrick Havelange <patrick.havelange@essensium.com>
7464 L:      linux-iio@vger.kernel.org
7465 S:      Maintained
7466 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7467 F:      drivers/counter/ftm-quaddec.c
7468
7469 FLOPPY DRIVER
7470 M:      Denis Efremov <efremov@linux.com>
7471 L:      linux-block@vger.kernel.org
7472 S:      Odd Fixes
7473 F:      drivers/block/floppy.c
7474
7475 FLYSKY FSIA6B RC RECEIVER
7476 M:      Markus Koch <markus@notsyncing.net>
7477 L:      linux-input@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/input/joystick/fsia6b.c
7480
7481 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7482 M:      Geoffrey D. Bennett <g@b4.vu>
7483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7484 S:      Maintained
7485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7486 F:      sound/usb/mixer_scarlett_gen2.c
7487
7488 FORCEDETH GIGABIT ETHERNET DRIVER
7489 M:      Rain River <rain.1986.08.12@gmail.com>
7490 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7491 L:      netdev@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/net/ethernet/nvidia/*
7494
7495 FORTIFY_SOURCE
7496 M:      Kees Cook <keescook@chromium.org>
7497 L:      linux-hardening@vger.kernel.org
7498 S:      Supported
7499 F:      include/linux/fortify-string.h
7500 F:      lib/test_fortify/*
7501 F:      scripts/test_fortify.sh
7502 K:      \b__NO_FORTIFY\b
7503
7504 FPGA DFL DRIVERS
7505 M:      Wu Hao <hao.wu@intel.com>
7506 R:      Tom Rix <trix@redhat.com>
7507 L:      linux-fpga@vger.kernel.org
7508 S:      Maintained
7509 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7510 F:      Documentation/fpga/dfl.rst
7511 F:      drivers/fpga/dfl*
7512 F:      drivers/uio/uio_dfl.c
7513 F:      include/linux/dfl.h
7514 F:      include/uapi/linux/fpga-dfl.h
7515
7516 FPGA MANAGER FRAMEWORK
7517 M:      Moritz Fischer <mdf@kernel.org>
7518 M:      Wu Hao <hao.wu@intel.com>
7519 M:      Xu Yilun <yilun.xu@intel.com>
7520 R:      Tom Rix <trix@redhat.com>
7521 L:      linux-fpga@vger.kernel.org
7522 S:      Maintained
7523 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7525 F:      Documentation/devicetree/bindings/fpga/
7526 F:      Documentation/driver-api/fpga/
7527 F:      Documentation/fpga/
7528 F:      drivers/fpga/
7529 F:      include/linux/fpga/
7530
7531 FPU EMULATOR
7532 M:      Bill Metzenthen <billm@melbpc.org.au>
7533 S:      Maintained
7534 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7535 F:      arch/x86/math-emu/
7536
7537 FRAMEBUFFER LAYER
7538 L:      dri-devel@lists.freedesktop.org
7539 L:      linux-fbdev@vger.kernel.org
7540 S:      Orphan
7541 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7542 T:      git git://anongit.freedesktop.org/drm/drm-misc
7543 F:      Documentation/fb/
7544 F:      drivers/video/
7545 F:      include/linux/fb.h
7546 F:      include/uapi/linux/fb.h
7547 F:      include/uapi/video/
7548 F:      include/video/
7549
7550 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7551 M:      Horia Geantă <horia.geanta@nxp.com>
7552 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7553 L:      linux-crypto@vger.kernel.org
7554 S:      Maintained
7555 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7556 F:      drivers/crypto/caam/
7557
7558 FREESCALE COLDFIRE M5441X MMC DRIVER
7559 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7560 L:      linux-mmc@vger.kernel.org
7561 S:      Maintained
7562 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7563 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7564
7565 FREESCALE DIU FRAMEBUFFER DRIVER
7566 M:      Timur Tabi <timur@kernel.org>
7567 L:      linux-fbdev@vger.kernel.org
7568 S:      Maintained
7569 F:      drivers/video/fbdev/fsl-diu-fb.*
7570
7571 FREESCALE DMA DRIVER
7572 M:      Li Yang <leoyang.li@nxp.com>
7573 M:      Zhang Wei <zw@zh-kernel.org>
7574 L:      linuxppc-dev@lists.ozlabs.org
7575 S:      Maintained
7576 F:      drivers/dma/fsldma.*
7577
7578 FREESCALE DSPI DRIVER
7579 M:      Vladimir Oltean <olteanv@gmail.com>
7580 L:      linux-spi@vger.kernel.org
7581 S:      Maintained
7582 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7583 F:      drivers/spi/spi-fsl-dspi.c
7584 F:      include/linux/spi/spi-fsl-dspi.h
7585
7586 FREESCALE ENETC ETHERNET DRIVERS
7587 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7588 L:      netdev@vger.kernel.org
7589 S:      Maintained
7590 F:      drivers/net/ethernet/freescale/enetc/
7591
7592 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7593 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7594 L:      netdev@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7597 F:      drivers/net/ethernet/freescale/gianfar*
7598
7599 FREESCALE GPMI NAND DRIVER
7600 M:      Han Xu <han.xu@nxp.com>
7601 L:      linux-mtd@lists.infradead.org
7602 S:      Maintained
7603 F:      drivers/mtd/nand/raw/gpmi-nand/*
7604
7605 FREESCALE I2C CPM DRIVER
7606 M:      Jochen Friedrich <jochen@scram.de>
7607 L:      linuxppc-dev@lists.ozlabs.org
7608 L:      linux-i2c@vger.kernel.org
7609 S:      Maintained
7610 F:      drivers/i2c/busses/i2c-cpm.c
7611
7612 FREESCALE IMX / MXC FEC DRIVER
7613 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7614 L:      netdev@vger.kernel.org
7615 S:      Maintained
7616 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7617 F:      drivers/net/ethernet/freescale/fec.h
7618 F:      drivers/net/ethernet/freescale/fec_main.c
7619 F:      drivers/net/ethernet/freescale/fec_ptp.c
7620
7621 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7622 M:      Sascha Hauer <s.hauer@pengutronix.de>
7623 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7624 L:      linux-fbdev@vger.kernel.org
7625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7626 S:      Maintained
7627 F:      drivers/video/fbdev/imxfb.c
7628 F:      include/linux/platform_data/video-imxfb.h
7629
7630 FREESCALE IMX DDR PMU DRIVER
7631 M:      Frank Li <Frank.li@nxp.com>
7632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7633 S:      Maintained
7634 F:      Documentation/admin-guide/perf/imx-ddr.rst
7635 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7636 F:      drivers/perf/fsl_imx8_ddr_perf.c
7637
7638 FREESCALE IMX I2C DRIVER
7639 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7640 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7641 L:      linux-i2c@vger.kernel.org
7642 S:      Maintained
7643 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7644 F:      drivers/i2c/busses/i2c-imx.c
7645
7646 FREESCALE IMX LPI2C DRIVER
7647 M:      Dong Aisheng <aisheng.dong@nxp.com>
7648 L:      linux-i2c@vger.kernel.org
7649 L:      linux-imx@nxp.com
7650 S:      Maintained
7651 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7652 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7653
7654 FREESCALE MPC I2C DRIVER
7655 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7656 L:      linux-i2c@vger.kernel.org
7657 S:      Maintained
7658 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7659 F:      drivers/i2c/busses/i2c-mpc.c
7660
7661 FREESCALE QORIQ DPAA ETHERNET DRIVER
7662 M:      Madalin Bucur <madalin.bucur@nxp.com>
7663 L:      netdev@vger.kernel.org
7664 S:      Maintained
7665 F:      drivers/net/ethernet/freescale/dpaa
7666
7667 FREESCALE QORIQ DPAA FMAN DRIVER
7668 M:      Madalin Bucur <madalin.bucur@nxp.com>
7669 L:      netdev@vger.kernel.org
7670 S:      Maintained
7671 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7672 F:      drivers/net/ethernet/freescale/fman
7673
7674 FREESCALE QORIQ PTP CLOCK DRIVER
7675 M:      Yangbo Lu <yangbo.lu@nxp.com>
7676 L:      netdev@vger.kernel.org
7677 S:      Maintained
7678 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7679 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7680 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7681 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7682 F:      drivers/ptp/ptp_qoriq.c
7683 F:      drivers/ptp/ptp_qoriq_debugfs.c
7684 F:      include/linux/fsl/ptp_qoriq.h
7685
7686 FREESCALE QUAD SPI DRIVER
7687 M:      Han Xu <han.xu@nxp.com>
7688 L:      linux-spi@vger.kernel.org
7689 S:      Maintained
7690 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7691 F:      drivers/spi/spi-fsl-qspi.c
7692
7693 FREESCALE QUICC ENGINE LIBRARY
7694 M:      Qiang Zhao <qiang.zhao@nxp.com>
7695 L:      linuxppc-dev@lists.ozlabs.org
7696 S:      Maintained
7697 F:      drivers/soc/fsl/qe/
7698 F:      include/soc/fsl/*qe*.h
7699 F:      include/soc/fsl/*ucc*.h
7700
7701 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7702 M:      Li Yang <leoyang.li@nxp.com>
7703 L:      netdev@vger.kernel.org
7704 L:      linuxppc-dev@lists.ozlabs.org
7705 S:      Maintained
7706 F:      drivers/net/ethernet/freescale/ucc_geth*
7707
7708 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7709 M:      Zhao Qiang <qiang.zhao@nxp.com>
7710 L:      netdev@vger.kernel.org
7711 L:      linuxppc-dev@lists.ozlabs.org
7712 S:      Maintained
7713 F:      drivers/net/wan/fsl_ucc_hdlc*
7714
7715 FREESCALE QUICC ENGINE UCC UART DRIVER
7716 M:      Timur Tabi <timur@kernel.org>
7717 L:      linuxppc-dev@lists.ozlabs.org
7718 S:      Maintained
7719 F:      drivers/tty/serial/ucc_uart.c
7720
7721 FREESCALE SOC DRIVERS
7722 M:      Li Yang <leoyang.li@nxp.com>
7723 L:      linuxppc-dev@lists.ozlabs.org
7724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7725 S:      Maintained
7726 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7727 F:      Documentation/devicetree/bindings/soc/fsl/
7728 F:      drivers/soc/fsl/
7729 F:      include/linux/fsl/
7730
7731 FREESCALE SOC FS_ENET DRIVER
7732 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7733 L:      linuxppc-dev@lists.ozlabs.org
7734 L:      netdev@vger.kernel.org
7735 S:      Maintained
7736 F:      drivers/net/ethernet/freescale/fs_enet/
7737 F:      include/linux/fs_enet_pd.h
7738
7739 FREESCALE SOC SOUND DRIVERS
7740 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7741 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7742 R:      Fabio Estevam <festevam@gmail.com>
7743 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7744 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7745 L:      linuxppc-dev@lists.ozlabs.org
7746 S:      Maintained
7747 F:      sound/soc/fsl/fsl*
7748 F:      sound/soc/fsl/imx*
7749 F:      sound/soc/fsl/mpc8610_hpcd.c
7750
7751 FREESCALE USB PERIPHERAL DRIVERS
7752 M:      Li Yang <leoyang.li@nxp.com>
7753 L:      linux-usb@vger.kernel.org
7754 L:      linuxppc-dev@lists.ozlabs.org
7755 S:      Maintained
7756 F:      drivers/usb/gadget/udc/fsl*
7757
7758 FREESCALE USB PHY DRIVER
7759 M:      Ran Wang <ran.wang_1@nxp.com>
7760 L:      linux-usb@vger.kernel.org
7761 L:      linuxppc-dev@lists.ozlabs.org
7762 S:      Maintained
7763 F:      drivers/usb/phy/phy-fsl-usb*
7764
7765 FREEVXFS FILESYSTEM
7766 M:      Christoph Hellwig <hch@infradead.org>
7767 S:      Maintained
7768 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7769 F:      fs/freevxfs/
7770
7771 FREEZER
7772 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7773 M:      Pavel Machek <pavel@ucw.cz>
7774 L:      linux-pm@vger.kernel.org
7775 S:      Supported
7776 F:      Documentation/power/freezing-of-tasks.rst
7777 F:      include/linux/freezer.h
7778 F:      kernel/freezer.c
7779
7780 FRONTSWAP API
7781 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7782 L:      linux-kernel@vger.kernel.org
7783 S:      Maintained
7784 F:      include/linux/frontswap.h
7785 F:      mm/frontswap.c
7786
7787 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7788 M:      David Howells <dhowells@redhat.com>
7789 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7790 S:      Supported
7791 F:      Documentation/filesystems/caching/
7792 F:      fs/fscache/
7793 F:      include/linux/fscache*.h
7794
7795 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7796 M:      Theodore Y. Ts'o <tytso@mit.edu>
7797 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7798 M:      Eric Biggers <ebiggers@kernel.org>
7799 L:      linux-fscrypt@vger.kernel.org
7800 S:      Supported
7801 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7802 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7803 F:      Documentation/filesystems/fscrypt.rst
7804 F:      fs/crypto/
7805 F:      include/linux/fscrypt*.h
7806 F:      include/uapi/linux/fscrypt.h
7807
7808 FSI SUBSYSTEM
7809 M:      Jeremy Kerr <jk@ozlabs.org>
7810 M:      Joel Stanley <joel@jms.id.au>
7811 R:      Alistar Popple <alistair@popple.id.au>
7812 R:      Eddie James <eajames@linux.ibm.com>
7813 L:      linux-fsi@lists.ozlabs.org
7814 S:      Supported
7815 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7817 F:      drivers/fsi/
7818 F:      include/linux/fsi*.h
7819 F:      include/trace/events/fsi*.h
7820
7821 FSI-ATTACHED I2C DRIVER
7822 M:      Eddie James <eajames@linux.ibm.com>
7823 L:      linux-i2c@vger.kernel.org
7824 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7825 S:      Maintained
7826 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7827 F:      drivers/i2c/busses/i2c-fsi.c
7828
7829 FSI-ATTACHED SPI DRIVER
7830 M:      Eddie James <eajames@linux.ibm.com>
7831 L:      linux-spi@vger.kernel.org
7832 S:      Maintained
7833 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7834 F:      drivers/spi/spi-fsi.c
7835
7836 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7837 M:      Jan Kara <jack@suse.cz>
7838 R:      Amir Goldstein <amir73il@gmail.com>
7839 L:      linux-fsdevel@vger.kernel.org
7840 S:      Maintained
7841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7842 F:      fs/notify/
7843 F:      include/linux/fsnotify*.h
7844
7845 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7846 M:      Eric Biggers <ebiggers@kernel.org>
7847 M:      Theodore Y. Ts'o <tytso@mit.edu>
7848 L:      linux-fscrypt@vger.kernel.org
7849 S:      Supported
7850 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7851 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7852 F:      Documentation/filesystems/fsverity.rst
7853 F:      fs/verity/
7854 F:      include/linux/fsverity.h
7855 F:      include/uapi/linux/fsverity.h
7856
7857 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7858 M:      Michael Zaidman <michael.zaidman@gmail.com>
7859 L:      linux-i2c@vger.kernel.org
7860 L:      linux-input@vger.kernel.org
7861 S:      Maintained
7862 F:      drivers/hid/hid-ft260.c
7863
7864 FUJITSU LAPTOP EXTRAS
7865 M:      Jonathan Woithe <jwoithe@just42.net>
7866 L:      platform-driver-x86@vger.kernel.org
7867 S:      Maintained
7868 F:      drivers/platform/x86/fujitsu-laptop.c
7869
7870 FUJITSU M-5MO LS CAMERA ISP DRIVER
7871 M:      Kyungmin Park <kyungmin.park@samsung.com>
7872 M:      Heungjun Kim <riverful.kim@samsung.com>
7873 L:      linux-media@vger.kernel.org
7874 S:      Maintained
7875 F:      drivers/media/i2c/m5mols/
7876 F:      include/media/i2c/m5mols.h
7877
7878 FUJITSU TABLET EXTRAS
7879 M:      Robert Gerlach <khnz@gmx.de>
7880 L:      platform-driver-x86@vger.kernel.org
7881 S:      Maintained
7882 F:      drivers/platform/x86/fujitsu-tablet.c
7883
7884 FUSE: FILESYSTEM IN USERSPACE
7885 M:      Miklos Szeredi <miklos@szeredi.hu>
7886 L:      linux-fsdevel@vger.kernel.org
7887 S:      Maintained
7888 W:      https://github.com/libfuse/
7889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7890 F:      Documentation/filesystems/fuse.rst
7891 F:      fs/fuse/
7892 F:      include/uapi/linux/fuse.h
7893
7894 FUTEX SUBSYSTEM
7895 M:      Thomas Gleixner <tglx@linutronix.de>
7896 M:      Ingo Molnar <mingo@redhat.com>
7897 R:      Peter Zijlstra <peterz@infradead.org>
7898 R:      Darren Hart <dvhart@infradead.org>
7899 R:      Davidlohr Bueso <dave@stgolabs.net>
7900 R:      André Almeida <andrealmeid@collabora.com>
7901 L:      linux-kernel@vger.kernel.org
7902 S:      Maintained
7903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7904 F:      Documentation/locking/*futex*
7905 F:      include/asm-generic/futex.h
7906 F:      include/linux/futex.h
7907 F:      include/uapi/linux/futex.h
7908 F:      kernel/futex/*
7909 F:      tools/perf/bench/futex*
7910 F:      tools/testing/selftests/futex/
7911
7912 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7913 M:      Tim Harvey <tharvey@gateworks.com>
7914 M:      Robert Jones <rjones@gateworks.com>
7915 S:      Maintained
7916 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7917 F:      drivers/mfd/gateworks-gsc.c
7918 F:      include/linux/mfd/gsc.h
7919 F:      Documentation/hwmon/gsc-hwmon.rst
7920 F:      drivers/hwmon/gsc-hwmon.c
7921 F:      include/linux/platform_data/gsc_hwmon.h
7922
7923 GCC PLUGINS
7924 M:      Kees Cook <keescook@chromium.org>
7925 L:      linux-hardening@vger.kernel.org
7926 S:      Maintained
7927 F:      Documentation/kbuild/gcc-plugins.rst
7928 F:      scripts/Makefile.gcc-plugins
7929 F:      scripts/gcc-plugins/
7930
7931 GCOV BASED KERNEL PROFILING
7932 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7933 S:      Maintained
7934 F:      Documentation/dev-tools/gcov.rst
7935 F:      kernel/gcov/
7936
7937 GDB KERNEL DEBUGGING HELPER SCRIPTS
7938 M:      Jan Kiszka <jan.kiszka@siemens.com>
7939 M:      Kieran Bingham <kbingham@kernel.org>
7940 S:      Supported
7941 F:      scripts/gdb/
7942
7943 GEMINI CRYPTO DRIVER
7944 M:      Corentin Labbe <clabbe@baylibre.com>
7945 L:      linux-crypto@vger.kernel.org
7946 S:      Maintained
7947 F:      drivers/crypto/gemini/
7948
7949 GEMTEK FM RADIO RECEIVER DRIVER
7950 M:      Hans Verkuil <hverkuil@xs4all.nl>
7951 L:      linux-media@vger.kernel.org
7952 S:      Maintained
7953 W:      https://linuxtv.org
7954 T:      git git://linuxtv.org/media_tree.git
7955 F:      drivers/media/radio/radio-gemtek*
7956
7957 GENERIC ARCHITECTURE TOPOLOGY
7958 M:      Sudeep Holla <sudeep.holla@arm.com>
7959 L:      linux-kernel@vger.kernel.org
7960 S:      Maintained
7961 F:      drivers/base/arch_topology.c
7962 F:      include/linux/arch_topology.h
7963
7964 GENERIC ENTRY CODE
7965 M:      Thomas Gleixner <tglx@linutronix.de>
7966 M:      Peter Zijlstra <peterz@infradead.org>
7967 M:      Andy Lutomirski <luto@kernel.org>
7968 L:      linux-kernel@vger.kernel.org
7969 S:      Maintained
7970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7971 F:      include/linux/entry-common.h
7972 F:      include/linux/entry-kvm.h
7973 F:      kernel/entry/
7974
7975 GENERIC GPIO I2C DRIVER
7976 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7977 S:      Supported
7978 F:      drivers/i2c/busses/i2c-gpio.c
7979 F:      include/linux/platform_data/i2c-gpio.h
7980
7981 GENERIC GPIO I2C MULTIPLEXER DRIVER
7982 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7983 L:      linux-i2c@vger.kernel.org
7984 S:      Supported
7985 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7986 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7987 F:      include/linux/platform_data/i2c-mux-gpio.h
7988
7989 GENERIC HDLC (WAN) DRIVERS
7990 M:      Krzysztof Halasa <khc@pm.waw.pl>
7991 S:      Maintained
7992 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7993 F:      drivers/net/wan/c101.c
7994 F:      drivers/net/wan/hd6457*
7995 F:      drivers/net/wan/hdlc*
7996 F:      drivers/net/wan/n2.c
7997 F:      drivers/net/wan/pc300too.c
7998 F:      drivers/net/wan/pci200syn.c
7999 F:      drivers/net/wan/wanxl*
8000
8001 GENERIC INCLUDE/ASM HEADER FILES
8002 M:      Arnd Bergmann <arnd@arndb.de>
8003 L:      linux-arch@vger.kernel.org
8004 S:      Maintained
8005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8006 F:      include/asm-generic/
8007 F:      include/uapi/asm-generic/
8008
8009 GENERIC PHY FRAMEWORK
8010 M:      Kishon Vijay Abraham I <kishon@ti.com>
8011 M:      Vinod Koul <vkoul@kernel.org>
8012 L:      linux-phy@lists.infradead.org
8013 S:      Supported
8014 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8016 F:      Documentation/devicetree/bindings/phy/
8017 F:      drivers/phy/
8018 F:      include/linux/phy/
8019
8020 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8021 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8022 S:      Supported
8023 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8024
8025 GENERIC PM DOMAINS
8026 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8027 M:      Kevin Hilman <khilman@kernel.org>
8028 M:      Ulf Hansson <ulf.hansson@linaro.org>
8029 L:      linux-pm@vger.kernel.org
8030 S:      Supported
8031 F:      Documentation/devicetree/bindings/power/power?domain*
8032 F:      drivers/base/power/domain*.c
8033 F:      include/linux/pm_domain.h
8034
8035 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8036 M:      Eugen Hristev <eugen.hristev@microchip.com>
8037 L:      linux-input@vger.kernel.org
8038 S:      Maintained
8039 F:      drivers/input/touchscreen/resistive-adc-touch.c
8040
8041 GENERIC STRING LIBRARY
8042 R:      Andy Shevchenko <andy@kernel.org>
8043 S:      Maintained
8044 F:      lib/string.c
8045 F:      lib/string_helpers.c
8046 F:      lib/test_string.c
8047 F:      lib/test-string_helpers.c
8048
8049 GENERIC UIO DRIVER FOR PCI DEVICES
8050 M:      "Michael S. Tsirkin" <mst@redhat.com>
8051 L:      kvm@vger.kernel.org
8052 S:      Supported
8053 F:      drivers/uio/uio_pci_generic.c
8054
8055 GENERIC VDSO LIBRARY
8056 M:      Andy Lutomirski <luto@kernel.org>
8057 M:      Thomas Gleixner <tglx@linutronix.de>
8058 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8059 L:      linux-kernel@vger.kernel.org
8060 S:      Maintained
8061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8062 F:      include/asm-generic/vdso/vsyscall.h
8063 F:      include/vdso/
8064 F:      kernel/time/vsyscall.c
8065 F:      lib/vdso/
8066
8067 GENWQE (IBM Generic Workqueue Card)
8068 M:      Frank Haverkamp <haver@linux.ibm.com>
8069 S:      Supported
8070 F:      drivers/misc/genwqe/
8071
8072 GET_MAINTAINER SCRIPT
8073 M:      Joe Perches <joe@perches.com>
8074 S:      Maintained
8075 F:      scripts/get_maintainer.pl
8076
8077 GFS2 FILE SYSTEM
8078 M:      Bob Peterson <rpeterso@redhat.com>
8079 M:      Andreas Gruenbacher <agruenba@redhat.com>
8080 L:      cluster-devel@redhat.com
8081 S:      Supported
8082 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8084 F:      Documentation/filesystems/gfs2*
8085 F:      fs/gfs2/
8086 F:      include/uapi/linux/gfs2_ondisk.h
8087
8088 GIGABYTE WMI DRIVER
8089 M:      Thomas Weißschuh <thomas@weissschuh.net>
8090 L:      platform-driver-x86@vger.kernel.org
8091 S:      Maintained
8092 F:      drivers/platform/x86/gigabyte-wmi.c
8093
8094 GNSS SUBSYSTEM
8095 M:      Johan Hovold <johan@kernel.org>
8096 S:      Maintained
8097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8098 F:      Documentation/ABI/testing/sysfs-class-gnss
8099 F:      Documentation/devicetree/bindings/gnss/
8100 F:      drivers/gnss/
8101 F:      include/linux/gnss.h
8102
8103 GO7007 MPEG CODEC
8104 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8105 L:      linux-media@vger.kernel.org
8106 S:      Maintained
8107 F:      drivers/media/usb/go7007/
8108
8109 GOODIX TOUCHSCREEN
8110 M:      Bastien Nocera <hadess@hadess.net>
8111 M:      Hans de Goede <hdegoede@redhat.com>
8112 L:      linux-input@vger.kernel.org
8113 S:      Maintained
8114 F:      drivers/input/touchscreen/goodix*
8115
8116 GOOGLE ETHERNET DRIVERS
8117 M:      Jeroen de Borst <jeroendb@google.com>
8118 R:      Catherine Sullivan <csully@google.com>
8119 R:      David Awogbemila <awogbemila@google.com>
8120 L:      netdev@vger.kernel.org
8121 S:      Supported
8122 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8123 F:      drivers/net/ethernet/google
8124
8125 GPD POCKET FAN DRIVER
8126 M:      Hans de Goede <hdegoede@redhat.com>
8127 L:      platform-driver-x86@vger.kernel.org
8128 S:      Maintained
8129 F:      drivers/platform/x86/gpd-pocket-fan.c
8130
8131 GPIO ACPI SUPPORT
8132 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8133 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8134 L:      linux-gpio@vger.kernel.org
8135 L:      linux-acpi@vger.kernel.org
8136 S:      Maintained
8137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8138 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8139 F:      drivers/gpio/gpiolib-acpi.c
8140 F:      drivers/gpio/gpiolib-acpi.h
8141
8142 GPIO AGGREGATOR
8143 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8144 L:      linux-gpio@vger.kernel.org
8145 S:      Supported
8146 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8147 F:      drivers/gpio/gpio-aggregator.c
8148
8149 GPIO IR Transmitter
8150 M:      Sean Young <sean@mess.org>
8151 L:      linux-media@vger.kernel.org
8152 S:      Maintained
8153 F:      drivers/media/rc/gpio-ir-tx.c
8154
8155 GPIO MOCKUP DRIVER
8156 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8157 L:      linux-gpio@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/gpio/gpio-mockup.c
8160 F:      tools/testing/selftests/gpio/
8161
8162 GPIO REGMAP
8163 R:      Michael Walle <michael@walle.cc>
8164 S:      Maintained
8165 F:      drivers/gpio/gpio-regmap.c
8166 F:      include/linux/gpio/regmap.h
8167
8168 GPIO SUBSYSTEM
8169 M:      Linus Walleij <linus.walleij@linaro.org>
8170 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8171 L:      linux-gpio@vger.kernel.org
8172 S:      Maintained
8173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8174 F:      Documentation/ABI/obsolete/sysfs-gpio
8175 F:      Documentation/ABI/testing/gpio-cdev
8176 F:      Documentation/admin-guide/gpio/
8177 F:      Documentation/devicetree/bindings/gpio/
8178 F:      Documentation/driver-api/gpio/
8179 F:      drivers/gpio/
8180 F:      include/asm-generic/gpio.h
8181 F:      include/linux/gpio.h
8182 F:      include/linux/gpio/
8183 F:      include/linux/of_gpio.h
8184 F:      include/uapi/linux/gpio.h
8185 F:      tools/gpio/
8186
8187 GRE DEMULTIPLEXER DRIVER
8188 M:      Dmitry Kozlov <xeb@mail.ru>
8189 L:      netdev@vger.kernel.org
8190 S:      Maintained
8191 F:      include/net/gre.h
8192 F:      net/ipv4/gre_demux.c
8193 F:      net/ipv4/gre_offload.c
8194
8195 GRETH 10/100/1G Ethernet MAC device driver
8196 M:      Andreas Larsson <andreas@gaisler.com>
8197 L:      netdev@vger.kernel.org
8198 S:      Maintained
8199 F:      drivers/net/ethernet/aeroflex/
8200
8201 GREYBUS AUDIO PROTOCOLS DRIVERS
8202 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8203 M:      Mark Greer <mgreer@animalcreek.com>
8204 S:      Maintained
8205 F:      drivers/staging/greybus/audio_apbridgea.c
8206 F:      drivers/staging/greybus/audio_apbridgea.h
8207 F:      drivers/staging/greybus/audio_codec.c
8208 F:      drivers/staging/greybus/audio_codec.h
8209 F:      drivers/staging/greybus/audio_gb.c
8210 F:      drivers/staging/greybus/audio_manager.c
8211 F:      drivers/staging/greybus/audio_manager.h
8212 F:      drivers/staging/greybus/audio_manager_module.c
8213 F:      drivers/staging/greybus/audio_manager_private.h
8214 F:      drivers/staging/greybus/audio_manager_sysfs.c
8215 F:      drivers/staging/greybus/audio_module.c
8216 F:      drivers/staging/greybus/audio_topology.c
8217
8218 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8219 M:      Viresh Kumar <vireshk@kernel.org>
8220 S:      Maintained
8221 F:      drivers/staging/greybus/authentication.c
8222 F:      drivers/staging/greybus/bootrom.c
8223 F:      drivers/staging/greybus/firmware.h
8224 F:      drivers/staging/greybus/fw-core.c
8225 F:      drivers/staging/greybus/fw-download.c
8226 F:      drivers/staging/greybus/fw-management.c
8227 F:      drivers/staging/greybus/greybus_authentication.h
8228 F:      drivers/staging/greybus/greybus_firmware.h
8229 F:      drivers/staging/greybus/hid.c
8230 F:      drivers/staging/greybus/i2c.c
8231 F:      drivers/staging/greybus/spi.c
8232 F:      drivers/staging/greybus/spilib.c
8233 F:      drivers/staging/greybus/spilib.h
8234
8235 GREYBUS LOOPBACK DRIVER
8236 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8237 S:      Maintained
8238 F:      drivers/staging/greybus/loopback.c
8239
8240 GREYBUS PLATFORM DRIVERS
8241 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8242 S:      Maintained
8243 F:      drivers/staging/greybus/arche-apb-ctrl.c
8244 F:      drivers/staging/greybus/arche-platform.c
8245 F:      drivers/staging/greybus/arche_platform.h
8246
8247 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8248 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8249 S:      Maintained
8250 F:      drivers/staging/greybus/gpio.c
8251 F:      drivers/staging/greybus/light.c
8252 F:      drivers/staging/greybus/power_supply.c
8253 F:      drivers/staging/greybus/sdio.c
8254 F:      drivers/staging/greybus/spi.c
8255 F:      drivers/staging/greybus/spilib.c
8256
8257 GREYBUS SUBSYSTEM
8258 M:      Johan Hovold <johan@kernel.org>
8259 M:      Alex Elder <elder@kernel.org>
8260 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8261 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8262 S:      Maintained
8263 F:      drivers/greybus/
8264 F:      drivers/staging/greybus/
8265 F:      include/linux/greybus.h
8266 F:      include/linux/greybus/
8267
8268 GREYBUS UART PROTOCOLS DRIVERS
8269 M:      David Lin <dtwlin@gmail.com>
8270 S:      Maintained
8271 F:      drivers/staging/greybus/log.c
8272 F:      drivers/staging/greybus/uart.c
8273
8274 GS1662 VIDEO SERIALIZER
8275 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8276 L:      linux-media@vger.kernel.org
8277 S:      Maintained
8278 T:      git git://linuxtv.org/media_tree.git
8279 F:      drivers/media/spi/gs1662.c
8280
8281 GSPCA FINEPIX SUBDRIVER
8282 M:      Frank Zago <frank@zago.net>
8283 L:      linux-media@vger.kernel.org
8284 S:      Maintained
8285 T:      git git://linuxtv.org/media_tree.git
8286 F:      drivers/media/usb/gspca/finepix.c
8287
8288 GSPCA GL860 SUBDRIVER
8289 M:      Olivier Lorin <o.lorin@laposte.net>
8290 L:      linux-media@vger.kernel.org
8291 S:      Maintained
8292 T:      git git://linuxtv.org/media_tree.git
8293 F:      drivers/media/usb/gspca/gl860/
8294
8295 GSPCA M5602 SUBDRIVER
8296 M:      Erik Andren <erik.andren@gmail.com>
8297 L:      linux-media@vger.kernel.org
8298 S:      Maintained
8299 T:      git git://linuxtv.org/media_tree.git
8300 F:      drivers/media/usb/gspca/m5602/
8301
8302 GSPCA PAC207 SONIXB SUBDRIVER
8303 M:      Hans Verkuil <hverkuil@xs4all.nl>
8304 L:      linux-media@vger.kernel.org
8305 S:      Odd Fixes
8306 T:      git git://linuxtv.org/media_tree.git
8307 F:      drivers/media/usb/gspca/pac207.c
8308
8309 GSPCA SN9C20X SUBDRIVER
8310 M:      Brian Johnson <brijohn@gmail.com>
8311 L:      linux-media@vger.kernel.org
8312 S:      Maintained
8313 T:      git git://linuxtv.org/media_tree.git
8314 F:      drivers/media/usb/gspca/sn9c20x.c
8315
8316 GSPCA T613 SUBDRIVER
8317 M:      Leandro Costantino <lcostantino@gmail.com>
8318 L:      linux-media@vger.kernel.org
8319 S:      Maintained
8320 T:      git git://linuxtv.org/media_tree.git
8321 F:      drivers/media/usb/gspca/t613.c
8322
8323 GSPCA USB WEBCAM DRIVER
8324 M:      Hans Verkuil <hverkuil@xs4all.nl>
8325 L:      linux-media@vger.kernel.org
8326 S:      Odd Fixes
8327 T:      git git://linuxtv.org/media_tree.git
8328 F:      drivers/media/usb/gspca/
8329
8330 GTP (GPRS Tunneling Protocol)
8331 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8332 M:      Harald Welte <laforge@gnumonks.org>
8333 L:      osmocom-net-gprs@lists.osmocom.org
8334 S:      Maintained
8335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8336 F:      drivers/net/gtp.c
8337
8338 GUID PARTITION TABLE (GPT)
8339 M:      Davidlohr Bueso <dave@stgolabs.net>
8340 L:      linux-efi@vger.kernel.org
8341 S:      Maintained
8342 F:      block/partitions/efi.*
8343
8344 H8/300 ARCHITECTURE
8345 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8346 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8347 S:      Maintained
8348 W:      http://uclinux-h8.sourceforge.jp
8349 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8350 F:      arch/h8300/
8351 F:      drivers/clk/h8300/
8352 F:      drivers/clocksource/h8300_*.c
8353 F:      drivers/irqchip/irq-renesas-h8*.c
8354
8355 HABANALABS PCI DRIVER
8356 M:      Oded Gabbay <ogabbay@kernel.org>
8357 S:      Supported
8358 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8359 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8360 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8361 F:      drivers/misc/habanalabs/
8362 F:      include/uapi/misc/habanalabs.h
8363
8364 HACKRF MEDIA DRIVER
8365 M:      Antti Palosaari <crope@iki.fi>
8366 L:      linux-media@vger.kernel.org
8367 S:      Maintained
8368 W:      https://linuxtv.org
8369 W:      http://palosaari.fi/linux/
8370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8371 T:      git git://linuxtv.org/anttip/media_tree.git
8372 F:      drivers/media/usb/hackrf/
8373
8374 HANTRO VPU CODEC DRIVER
8375 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8376 M:      Philipp Zabel <p.zabel@pengutronix.de>
8377 L:      linux-media@vger.kernel.org
8378 L:      linux-rockchip@lists.infradead.org
8379 S:      Maintained
8380 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8381 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8382 F:      drivers/staging/media/hantro/
8383
8384 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8385 M:      Frank Seidel <frank@f-seidel.de>
8386 L:      platform-driver-x86@vger.kernel.org
8387 S:      Maintained
8388 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8389 F:      drivers/platform/x86/hdaps.c
8390
8391 HARDWARE MONITORING
8392 M:      Jean Delvare <jdelvare@suse.com>
8393 M:      Guenter Roeck <linux@roeck-us.net>
8394 L:      linux-hwmon@vger.kernel.org
8395 S:      Maintained
8396 W:      http://hwmon.wiki.kernel.org/
8397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8398 F:      Documentation/ABI/testing/sysfs-class-hwmon
8399 F:      Documentation/devicetree/bindings/hwmon/
8400 F:      Documentation/hwmon/
8401 F:      drivers/hwmon/
8402 F:      include/linux/hwmon*.h
8403 F:      include/trace/events/hwmon*.h
8404 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8405
8406 HARDWARE RANDOM NUMBER GENERATOR CORE
8407 M:      Matt Mackall <mpm@selenic.com>
8408 M:      Herbert Xu <herbert@gondor.apana.org.au>
8409 L:      linux-crypto@vger.kernel.org
8410 S:      Odd fixes
8411 F:      Documentation/admin-guide/hw_random.rst
8412 F:      Documentation/devicetree/bindings/rng/
8413 F:      drivers/char/hw_random/
8414 F:      include/linux/hw_random.h
8415
8416 HARDWARE SPINLOCK CORE
8417 M:      Ohad Ben-Cohen <ohad@wizery.com>
8418 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8419 R:      Baolin Wang <baolin.wang7@gmail.com>
8420 L:      linux-remoteproc@vger.kernel.org
8421 S:      Maintained
8422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8423 F:      Documentation/devicetree/bindings/hwlock/
8424 F:      Documentation/locking/hwspinlock.rst
8425 F:      drivers/hwspinlock/
8426 F:      include/linux/hwspinlock.h
8427
8428 HARDWARE TRACING FACILITIES
8429 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8430 S:      Maintained
8431 F:      drivers/hwtracing/
8432
8433 HARMONY SOUND DRIVER
8434 L:      linux-parisc@vger.kernel.org
8435 S:      Maintained
8436 F:      sound/parisc/harmony.*
8437
8438 HDPVR USB VIDEO ENCODER DRIVER
8439 M:      Hans Verkuil <hverkuil@xs4all.nl>
8440 L:      linux-media@vger.kernel.org
8441 S:      Odd Fixes
8442 W:      https://linuxtv.org
8443 T:      git git://linuxtv.org/media_tree.git
8444 F:      drivers/media/usb/hdpvr/
8445
8446 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8447 M:      Matt Hsiao <matt.hsiao@hpe.com>
8448 S:      Supported
8449 F:      drivers/misc/hpilo.[ch]
8450
8451 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8452 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8453 S:      Supported
8454 F:      Documentation/watchdog/hpwdt.rst
8455 F:      drivers/watchdog/hpwdt.c
8456
8457 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8458 M:      Don Brace <don.brace@microchip.com>
8459 L:      storagedev@microchip.com
8460 L:      linux-scsi@vger.kernel.org
8461 S:      Supported
8462 F:      Documentation/scsi/hpsa.rst
8463 F:      drivers/scsi/hpsa*.[ch]
8464 F:      include/linux/cciss*.h
8465 F:      include/uapi/linux/cciss*.h
8466
8467 HFI1 DRIVER
8468 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8469 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8470 L:      linux-rdma@vger.kernel.org
8471 S:      Supported
8472 F:      drivers/infiniband/hw/hfi1
8473
8474 HFS FILESYSTEM
8475 L:      linux-fsdevel@vger.kernel.org
8476 S:      Orphan
8477 F:      Documentation/filesystems/hfs.rst
8478 F:      fs/hfs/
8479
8480 HFSPLUS FILESYSTEM
8481 L:      linux-fsdevel@vger.kernel.org
8482 S:      Orphan
8483 F:      Documentation/filesystems/hfsplus.rst
8484 F:      fs/hfsplus/
8485
8486 HGA FRAMEBUFFER DRIVER
8487 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8488 L:      linux-nvidia@lists.surfsouth.com
8489 S:      Maintained
8490 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8491 F:      drivers/video/fbdev/hgafb.c
8492
8493 HIBERNATION (aka Software Suspend, aka swsusp)
8494 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8495 M:      Pavel Machek <pavel@ucw.cz>
8496 L:      linux-pm@vger.kernel.org
8497 S:      Supported
8498 B:      https://bugzilla.kernel.org
8499 F:      arch/*/include/asm/suspend*.h
8500 F:      arch/x86/power/
8501 F:      drivers/base/power/
8502 F:      include/linux/freezer.h
8503 F:      include/linux/pm.h
8504 F:      include/linux/suspend.h
8505 F:      kernel/power/
8506
8507 HID CORE LAYER
8508 M:      Jiri Kosina <jikos@kernel.org>
8509 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8510 L:      linux-input@vger.kernel.org
8511 S:      Maintained
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8513 F:      drivers/hid/
8514 F:      include/linux/hid*
8515 F:      include/uapi/linux/hid*
8516
8517 HID PLAYSTATION DRIVER
8518 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8519 L:      linux-input@vger.kernel.org
8520 S:      Supported
8521 F:      drivers/hid/hid-playstation.c
8522
8523 HID SENSOR HUB DRIVERS
8524 M:      Jiri Kosina <jikos@kernel.org>
8525 M:      Jonathan Cameron <jic23@kernel.org>
8526 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8527 L:      linux-input@vger.kernel.org
8528 L:      linux-iio@vger.kernel.org
8529 S:      Maintained
8530 F:      Documentation/hid/hid-sensor*
8531 F:      drivers/hid/hid-sensor-*
8532 F:      drivers/iio/*/hid-*
8533 F:      include/linux/hid-sensor-*
8534
8535 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8536 M:      Thomas Gleixner <tglx@linutronix.de>
8537 L:      linux-kernel@vger.kernel.org
8538 S:      Maintained
8539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8540 F:      Documentation/timers/
8541 F:      include/linux/clockchips.h
8542 F:      include/linux/hrtimer.h
8543 F:      kernel/time/clockevents.c
8544 F:      kernel/time/hrtimer.c
8545 F:      kernel/time/timer_*.c
8546
8547 HIGH-SPEED SCC DRIVER FOR AX.25
8548 L:      linux-hams@vger.kernel.org
8549 S:      Orphan
8550 F:      drivers/net/hamradio/dmascc.c
8551 F:      drivers/net/hamradio/scc.c
8552
8553 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8554 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8555 S:      Supported
8556 W:      http://www.highpoint-tech.com
8557 F:      Documentation/scsi/hptiop.rst
8558 F:      drivers/scsi/hptiop.c
8559
8560 HIPPI
8561 M:      Jes Sorensen <jes@trained-monkey.org>
8562 L:      linux-hippi@sunsite.dk
8563 S:      Maintained
8564 F:      drivers/net/hippi/
8565 F:      include/linux/hippidevice.h
8566 F:      include/uapi/linux/if_hippi.h
8567 F:      net/802/hippi.c
8568
8569 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8570 M:      Kurt Kanzenbach <kurt@linutronix.de>
8571 L:      netdev@vger.kernel.org
8572 S:      Maintained
8573 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8574 F:      drivers/net/dsa/hirschmann/*
8575 F:      include/linux/platform_data/hirschmann-hellcreek.h
8576 F:      net/dsa/tag_hellcreek.c
8577
8578 HISILICON DMA DRIVER
8579 M:      Zhou Wang <wangzhou1@hisilicon.com>
8580 L:      dmaengine@vger.kernel.org
8581 S:      Maintained
8582 F:      drivers/dma/hisi_dma.c
8583
8584 HISILICON GPIO DRIVER
8585 M:      Luo Jiaxing <luojiaxing@huawei.com>
8586 L:      linux-gpio@vger.kernel.org
8587 S:      Maintained
8588 F:      drivers/gpio/gpio-hisi.c
8589
8590 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8591 M:      Zaibo Xu <xuzaibo@huawei.com>
8592 L:      linux-crypto@vger.kernel.org
8593 S:      Maintained
8594 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8595 F:      drivers/crypto/hisilicon/hpre/hpre.h
8596 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8597 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8598
8599 HISILICON I2C CONTROLLER DRIVER
8600 M:      Yicong Yang <yangyicong@hisilicon.com>
8601 L:      linux-i2c@vger.kernel.org
8602 S:      Maintained
8603 W:      https://www.hisilicon.com
8604 F:      drivers/i2c/busses/i2c-hisi.c
8605
8606 HISILICON LPC BUS DRIVER
8607 M:      john.garry@huawei.com
8608 S:      Maintained
8609 W:      http://www.hisilicon.com
8610 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8611 F:      drivers/bus/hisi_lpc.c
8612
8613 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8614 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8615 M:      Salil Mehta <salil.mehta@huawei.com>
8616 L:      netdev@vger.kernel.org
8617 S:      Maintained
8618 W:      http://www.hisilicon.com
8619 F:      drivers/net/ethernet/hisilicon/hns3/
8620
8621 HISILICON NETWORK SUBSYSTEM DRIVER
8622 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8623 M:      Salil Mehta <salil.mehta@huawei.com>
8624 L:      netdev@vger.kernel.org
8625 S:      Maintained
8626 W:      http://www.hisilicon.com
8627 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8628 F:      drivers/net/ethernet/hisilicon/
8629
8630 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8631 M:      John Stultz <john.stultz@linaro.org>
8632 L:      linux-kernel@vger.kernel.org
8633 S:      Maintained
8634 F:      drivers/misc/hisi_hikey_usb.c
8635
8636 HISILICON PMU DRIVER
8637 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8638 M:      Qi Liu <liuqi115@huawei.com>
8639 S:      Supported
8640 W:      http://www.hisilicon.com
8641 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8642 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8643 F:      drivers/perf/hisilicon
8644
8645 HISILICON QM AND ZIP Controller DRIVER
8646 M:      Zhou Wang <wangzhou1@hisilicon.com>
8647 L:      linux-crypto@vger.kernel.org
8648 S:      Maintained
8649 F:      Documentation/ABI/testing/debugfs-hisi-zip
8650 F:      drivers/crypto/hisilicon/qm.c
8651 F:      drivers/crypto/hisilicon/qm.h
8652 F:      drivers/crypto/hisilicon/sgl.c
8653 F:      drivers/crypto/hisilicon/zip/
8654
8655 HISILICON ROCE DRIVER
8656 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8657 M:      Weihang Li <liweihang@huawei.com>
8658 L:      linux-rdma@vger.kernel.org
8659 S:      Maintained
8660 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8661 F:      drivers/infiniband/hw/hns/
8662
8663 HISILICON SAS Controller
8664 M:      John Garry <john.garry@huawei.com>
8665 S:      Supported
8666 W:      http://www.hisilicon.com
8667 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8668 F:      drivers/scsi/hisi_sas/
8669
8670 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8671 M:      Zaibo Xu <xuzaibo@huawei.com>
8672 L:      linux-crypto@vger.kernel.org
8673 S:      Maintained
8674 F:      Documentation/ABI/testing/debugfs-hisi-sec
8675 F:      drivers/crypto/hisilicon/sec2/sec.h
8676 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8677 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8678 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8679
8680 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8681 M:      Jay Fang <f.fangjian@huawei.com>
8682 L:      linux-spi@vger.kernel.org
8683 S:      Maintained
8684 W:      http://www.hisilicon.com
8685 F:      drivers/spi/spi-hisi-kunpeng.c
8686
8687 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8688 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8689 L:      linux-kernel@vger.kernel.org
8690 S:      Maintained
8691 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8692 F:      drivers/spmi/hisi-spmi-controller.c
8693
8694 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8695 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8696 L:      linux-kernel@vger.kernel.org
8697 S:      Maintained
8698 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8699 F:      drivers/mfd/hi6421-spmi-pmic.c
8700
8701 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8702 M:      Zaibo Xu <xuzaibo@huawei.com>
8703 S:      Maintained
8704 F:      drivers/crypto/hisilicon/trng/trng.c
8705
8706 HISILICON V3XX SPI NOR FLASH Controller Driver
8707 M:      John Garry <john.garry@huawei.com>
8708 S:      Maintained
8709 W:      http://www.hisilicon.com
8710 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8711
8712 HMM - Heterogeneous Memory Management
8713 M:      Jérôme Glisse <jglisse@redhat.com>
8714 L:      linux-mm@kvack.org
8715 S:      Maintained
8716 F:      Documentation/vm/hmm.rst
8717 F:      include/linux/hmm*
8718 F:      lib/test_hmm*
8719 F:      mm/hmm*
8720 F:      tools/testing/selftests/vm/*hmm*
8721
8722 HOST AP DRIVER
8723 M:      Jouni Malinen <j@w1.fi>
8724 L:      linux-wireless@vger.kernel.org
8725 S:      Obsolete
8726 W:      http://w1.fi/hostap-driver.html
8727 F:      drivers/net/wireless/intersil/hostap/
8728
8729 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8730 L:      platform-driver-x86@vger.kernel.org
8731 S:      Orphan
8732 F:      drivers/platform/x86/tc1100-wmi.c
8733
8734 HPET:   High Precision Event Timers driver
8735 M:      Clemens Ladisch <clemens@ladisch.de>
8736 S:      Maintained
8737 F:      Documentation/timers/hpet.rst
8738 F:      drivers/char/hpet.c
8739 F:      include/linux/hpet.h
8740 F:      include/uapi/linux/hpet.h
8741
8742 HPET:   x86
8743 S:      Orphan
8744 F:      arch/x86/include/asm/hpet.h
8745 F:      arch/x86/kernel/hpet.c
8746
8747 HPFS FILESYSTEM
8748 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8749 S:      Maintained
8750 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8751 F:      fs/hpfs/
8752
8753 HSI SUBSYSTEM
8754 M:      Sebastian Reichel <sre@kernel.org>
8755 S:      Maintained
8756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8757 F:      Documentation/ABI/testing/sysfs-bus-hsi
8758 F:      Documentation/driver-api/hsi.rst
8759 F:      drivers/hsi/
8760 F:      include/linux/hsi/
8761 F:      include/uapi/linux/hsi/
8762
8763 HSO 3G MODEM DRIVER
8764 L:      linux-usb@vger.kernel.org
8765 S:      Orphan
8766 F:      drivers/net/usb/hso.c
8767
8768 HSR NETWORK PROTOCOL
8769 L:      netdev@vger.kernel.org
8770 S:      Orphan
8771 F:      net/hsr/
8772
8773 HT16K33 LED CONTROLLER DRIVER
8774 M:      Robin van der Gracht <robin@protonic.nl>
8775 S:      Maintained
8776 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8777 F:      drivers/auxdisplay/ht16k33.c
8778
8779 HTCPEN TOUCHSCREEN DRIVER
8780 M:      Pau Oliva Fora <pof@eslack.org>
8781 L:      linux-input@vger.kernel.org
8782 S:      Maintained
8783 F:      drivers/input/touchscreen/htcpen.c
8784
8785 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8786 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8787 L:      linux-iio@vger.kernel.org
8788 S:      Maintained
8789 W:      http://www.st.com/
8790 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8791 F:      drivers/iio/humidity/hts221*
8792
8793 HUAWEI ETHERNET DRIVER
8794 L:      netdev@vger.kernel.org
8795 S:      Orphan
8796 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8797 F:      drivers/net/ethernet/huawei/hinic/
8798
8799 HUGETLB FILESYSTEM
8800 M:      Mike Kravetz <mike.kravetz@oracle.com>
8801 L:      linux-mm@kvack.org
8802 S:      Maintained
8803 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8804 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8805 F:      Documentation/vm/hugetlbfs_reserv.rst
8806 F:      fs/hugetlbfs/
8807 F:      include/linux/hugetlb.h
8808 F:      mm/hugetlb.c
8809
8810 HVA ST MEDIA DRIVER
8811 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8812 L:      linux-media@vger.kernel.org
8813 S:      Supported
8814 W:      https://linuxtv.org
8815 T:      git git://linuxtv.org/media_tree.git
8816 F:      drivers/media/platform/sti/hva
8817
8818 HWPOISON MEMORY FAILURE HANDLING
8819 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8820 L:      linux-mm@kvack.org
8821 S:      Maintained
8822 F:      mm/hwpoison-inject.c
8823 F:      mm/memory-failure.c
8824
8825 HYCON HY46XX TOUCHSCREEN SUPPORT
8826 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8827 L:      linux-input@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8830 F:      drivers/input/touchscreen/hycon-hy46xx.c
8831
8832 HYGON PROCESSOR SUPPORT
8833 M:      Pu Wen <puwen@hygon.cn>
8834 L:      linux-kernel@vger.kernel.org
8835 S:      Maintained
8836 F:      arch/x86/kernel/cpu/hygon.c
8837
8838 HYNIX HI556 SENSOR DRIVER
8839 M:      Shawn Tu <shawnx.tu@intel.com>
8840 L:      linux-media@vger.kernel.org
8841 S:      Maintained
8842 T:      git git://linuxtv.org/media_tree.git
8843 F:      drivers/media/i2c/hi556.c
8844
8845 HYNIX HI846 SENSOR DRIVER
8846 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8847 L:      linux-media@vger.kernel.org
8848 S:      Maintained
8849 F:      drivers/media/i2c/hi846.c
8850
8851 Hyper-V/Azure CORE AND DRIVERS
8852 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8853 M:      Haiyang Zhang <haiyangz@microsoft.com>
8854 M:      Stephen Hemminger <sthemmin@microsoft.com>
8855 M:      Wei Liu <wei.liu@kernel.org>
8856 M:      Dexuan Cui <decui@microsoft.com>
8857 L:      linux-hyperv@vger.kernel.org
8858 S:      Supported
8859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8860 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8861 F:      Documentation/ABI/testing/debugfs-hyperv
8862 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8863 F:      arch/arm64/hyperv
8864 F:      arch/arm64/include/asm/hyperv-tlfs.h
8865 F:      arch/arm64/include/asm/mshyperv.h
8866 F:      arch/x86/hyperv
8867 F:      arch/x86/include/asm/hyperv-tlfs.h
8868 F:      arch/x86/include/asm/mshyperv.h
8869 F:      arch/x86/include/asm/trace/hyperv.h
8870 F:      arch/x86/kernel/cpu/mshyperv.c
8871 F:      drivers/clocksource/hyperv_timer.c
8872 F:      drivers/hid/hid-hyperv.c
8873 F:      drivers/hv/
8874 F:      drivers/input/serio/hyperv-keyboard.c
8875 F:      drivers/iommu/hyperv-iommu.c
8876 F:      drivers/net/ethernet/microsoft/
8877 F:      drivers/net/hyperv/
8878 F:      drivers/pci/controller/pci-hyperv-intf.c
8879 F:      drivers/pci/controller/pci-hyperv.c
8880 F:      drivers/scsi/storvsc_drv.c
8881 F:      drivers/uio/uio_hv_generic.c
8882 F:      drivers/video/fbdev/hyperv_fb.c
8883 F:      include/asm-generic/hyperv-tlfs.h
8884 F:      include/asm-generic/mshyperv.h
8885 F:      include/clocksource/hyperv_timer.h
8886 F:      include/linux/hyperv.h
8887 F:      include/uapi/linux/hyperv.h
8888 F:      net/vmw_vsock/hyperv_transport.c
8889 F:      tools/hv/
8890
8891 HYPERBUS SUPPORT
8892 M:      Vignesh Raghavendra <vigneshr@ti.com>
8893 L:      linux-mtd@lists.infradead.org
8894 S:      Supported
8895 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8896 C:      irc://irc.oftc.net/mtd
8897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8898 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
8899 F:      drivers/mtd/hyperbus/
8900 F:      include/linux/mtd/hyperbus.h
8901
8902 HYPERVISOR VIRTUAL CONSOLE DRIVER
8903 L:      linuxppc-dev@lists.ozlabs.org
8904 S:      Odd Fixes
8905 F:      drivers/tty/hvc/
8906
8907 I2C ACPI SUPPORT
8908 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8909 L:      linux-i2c@vger.kernel.org
8910 L:      linux-acpi@vger.kernel.org
8911 S:      Maintained
8912 F:      drivers/i2c/i2c-core-acpi.c
8913
8914 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8915 M:      Ajay Gupta <ajayg@nvidia.com>
8916 L:      linux-i2c@vger.kernel.org
8917 S:      Maintained
8918 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8919 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8920
8921 I2C MUXES
8922 M:      Peter Rosin <peda@axentia.se>
8923 L:      linux-i2c@vger.kernel.org
8924 S:      Maintained
8925 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8926 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8927 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8928 F:      Documentation/i2c/i2c-topology.rst
8929 F:      Documentation/i2c/muxes/
8930 F:      drivers/i2c/i2c-mux.c
8931 F:      drivers/i2c/muxes/
8932 F:      include/linux/i2c-mux.h
8933
8934 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8935 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8936 L:      linux-i2c@vger.kernel.org
8937 S:      Maintained
8938 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8939 F:      drivers/i2c/busses/i2c-mv64xxx.c
8940
8941 I2C OVER PARALLEL PORT
8942 M:      Jean Delvare <jdelvare@suse.com>
8943 L:      linux-i2c@vger.kernel.org
8944 S:      Maintained
8945 F:      Documentation/i2c/busses/i2c-parport.rst
8946 F:      drivers/i2c/busses/i2c-parport.c
8947
8948 I2C SUBSYSTEM
8949 M:      Wolfram Sang <wsa@kernel.org>
8950 L:      linux-i2c@vger.kernel.org
8951 S:      Maintained
8952 W:      https://i2c.wiki.kernel.org/
8953 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8955 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8956 F:      Documentation/i2c/
8957 F:      drivers/i2c/*
8958 F:      include/linux/i2c-dev.h
8959 F:      include/linux/i2c-smbus.h
8960 F:      include/linux/i2c.h
8961 F:      include/uapi/linux/i2c-*.h
8962 F:      include/uapi/linux/i2c.h
8963
8964 I2C SUBSYSTEM HOST DRIVERS
8965 L:      linux-i2c@vger.kernel.org
8966 S:      Odd Fixes
8967 W:      https://i2c.wiki.kernel.org/
8968 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8970 F:      Documentation/devicetree/bindings/i2c/
8971 F:      drivers/i2c/algos/
8972 F:      drivers/i2c/busses/
8973
8974 I2C-TAOS-EVM DRIVER
8975 M:      Jean Delvare <jdelvare@suse.com>
8976 L:      linux-i2c@vger.kernel.org
8977 S:      Maintained
8978 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8979 F:      drivers/i2c/busses/i2c-taos-evm.c
8980
8981 I2C-TINY-USB DRIVER
8982 M:      Till Harbaum <till@harbaum.org>
8983 L:      linux-i2c@vger.kernel.org
8984 S:      Maintained
8985 W:      http://www.harbaum.org/till/i2c_tiny_usb
8986 F:      drivers/i2c/busses/i2c-tiny-usb.c
8987
8988 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8989 M:      Jean Delvare <jdelvare@suse.com>
8990 L:      linux-i2c@vger.kernel.org
8991 S:      Maintained
8992 F:      Documentation/i2c/busses/i2c-ali1535.rst
8993 F:      Documentation/i2c/busses/i2c-ali1563.rst
8994 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8995 F:      Documentation/i2c/busses/i2c-amd756.rst
8996 F:      Documentation/i2c/busses/i2c-amd8111.rst
8997 F:      Documentation/i2c/busses/i2c-i801.rst
8998 F:      Documentation/i2c/busses/i2c-nforce2.rst
8999 F:      Documentation/i2c/busses/i2c-piix4.rst
9000 F:      Documentation/i2c/busses/i2c-sis5595.rst
9001 F:      Documentation/i2c/busses/i2c-sis630.rst
9002 F:      Documentation/i2c/busses/i2c-sis96x.rst
9003 F:      Documentation/i2c/busses/i2c-via.rst
9004 F:      Documentation/i2c/busses/i2c-viapro.rst
9005 F:      drivers/i2c/busses/i2c-ali1535.c
9006 F:      drivers/i2c/busses/i2c-ali1563.c
9007 F:      drivers/i2c/busses/i2c-ali15x3.c
9008 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9009 F:      drivers/i2c/busses/i2c-amd756.c
9010 F:      drivers/i2c/busses/i2c-amd8111.c
9011 F:      drivers/i2c/busses/i2c-i801.c
9012 F:      drivers/i2c/busses/i2c-isch.c
9013 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9014 F:      drivers/i2c/busses/i2c-nforce2.c
9015 F:      drivers/i2c/busses/i2c-piix4.c
9016 F:      drivers/i2c/busses/i2c-sis5595.c
9017 F:      drivers/i2c/busses/i2c-sis630.c
9018 F:      drivers/i2c/busses/i2c-sis96x.c
9019 F:      drivers/i2c/busses/i2c-via.c
9020 F:      drivers/i2c/busses/i2c-viapro.c
9021
9022 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9023 M:      Hans de Goede <hdegoede@redhat.com>
9024 L:      linux-i2c@vger.kernel.org
9025 S:      Maintained
9026 F:      drivers/i2c/busses/i2c-cht-wc.c
9027
9028 I2C/SMBUS ISMT DRIVER
9029 M:      Seth Heasley <seth.heasley@intel.com>
9030 M:      Neil Horman <nhorman@tuxdriver.com>
9031 L:      linux-i2c@vger.kernel.org
9032 F:      Documentation/i2c/busses/i2c-ismt.rst
9033 F:      drivers/i2c/busses/i2c-ismt.c
9034
9035 I2C/SMBUS STUB DRIVER
9036 M:      Jean Delvare <jdelvare@suse.com>
9037 L:      linux-i2c@vger.kernel.org
9038 S:      Maintained
9039 F:      drivers/i2c/i2c-stub.c
9040
9041 I3C DRIVER FOR CADENCE I3C MASTER IP
9042 M:      Przemysław Gaj <pgaj@cadence.com>
9043 S:      Maintained
9044 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9045 F:      drivers/i3c/master/i3c-master-cdns.c
9046
9047 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9048 M:      Vitor Soares <vitor.soares@synopsys.com>
9049 S:      Maintained
9050 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9051 F:      drivers/i3c/master/dw*
9052
9053 I3C SUBSYSTEM
9054 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9055 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9056 S:      Maintained
9057 C:      irc://chat.freenode.net/linux-i3c
9058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9059 F:      Documentation/ABI/testing/sysfs-bus-i3c
9060 F:      Documentation/devicetree/bindings/i3c/
9061 F:      Documentation/driver-api/i3c
9062 F:      drivers/i3c/
9063 F:      include/linux/i3c/
9064
9065 IA64 (Itanium) PLATFORM
9066 L:      linux-ia64@vger.kernel.org
9067 S:      Orphan
9068 F:      Documentation/ia64/
9069 F:      arch/ia64/
9070
9071 IBM Power 842 compression accelerator
9072 M:      Haren Myneni <haren@us.ibm.com>
9073 S:      Supported
9074 F:      crypto/842.c
9075 F:      drivers/crypto/nx/Kconfig
9076 F:      drivers/crypto/nx/Makefile
9077 F:      drivers/crypto/nx/nx-842*
9078 F:      include/linux/sw842.h
9079 F:      lib/842/
9080
9081 IBM Power in-Nest Crypto Acceleration
9082 M:      Breno Leitão <leitao@debian.org>
9083 M:      Nayna Jain <nayna@linux.ibm.com>
9084 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9085 L:      linux-crypto@vger.kernel.org
9086 S:      Supported
9087 F:      drivers/crypto/nx/Kconfig
9088 F:      drivers/crypto/nx/Makefile
9089 F:      drivers/crypto/nx/nx-aes*
9090 F:      drivers/crypto/nx/nx-sha*
9091 F:      drivers/crypto/nx/nx.*
9092 F:      drivers/crypto/nx/nx_csbcpb.h
9093 F:      drivers/crypto/nx/nx_debugfs.c
9094
9095 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9096 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9097 L:      linux-pci@vger.kernel.org
9098 L:      linuxppc-dev@lists.ozlabs.org
9099 S:      Supported
9100 F:      drivers/pci/hotplug/rpadlpar*
9101
9102 IBM Power Linux RAID adapter
9103 M:      Brian King <brking@us.ibm.com>
9104 S:      Supported
9105 F:      drivers/scsi/ipr.*
9106
9107 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9108 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9109 L:      linux-pci@vger.kernel.org
9110 L:      linuxppc-dev@lists.ozlabs.org
9111 S:      Supported
9112 F:      drivers/pci/hotplug/rpaphp*
9113
9114 IBM Power SRIOV Virtual NIC Device Driver
9115 M:      Dany Madden <drt@linux.ibm.com>
9116 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9117 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9118 L:      netdev@vger.kernel.org
9119 S:      Supported
9120 F:      drivers/net/ethernet/ibm/ibmvnic.*
9121
9122 IBM Power Virtual Accelerator Switchboard
9123 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9124 L:      linuxppc-dev@lists.ozlabs.org
9125 S:      Supported
9126 F:      arch/powerpc/include/asm/vas.h
9127 F:      arch/powerpc/platforms/powernv/copy-paste.h
9128 F:      arch/powerpc/platforms/powernv/vas*
9129
9130 IBM Power Virtual Ethernet Device Driver
9131 M:      Cristobal Forno <cforno12@linux.ibm.com>
9132 L:      netdev@vger.kernel.org
9133 S:      Supported
9134 F:      drivers/net/ethernet/ibm/ibmveth.*
9135
9136 IBM Power Virtual FC Device Drivers
9137 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9138 L:      linux-scsi@vger.kernel.org
9139 S:      Supported
9140 F:      drivers/scsi/ibmvscsi/ibmvfc*
9141
9142 IBM Power Virtual Management Channel Driver
9143 M:      Brad Warrum <bwarrum@linux.ibm.com>
9144 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9145 S:      Supported
9146 F:      drivers/misc/ibmvmc.*
9147
9148 IBM Power Virtual SCSI Device Drivers
9149 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9150 L:      linux-scsi@vger.kernel.org
9151 S:      Supported
9152 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9153 F:      include/scsi/viosrp.h
9154
9155 IBM Power Virtual SCSI Device Target Driver
9156 M:      Michael Cyr <mikecyr@linux.ibm.com>
9157 L:      linux-scsi@vger.kernel.org
9158 L:      target-devel@vger.kernel.org
9159 S:      Supported
9160 F:      drivers/scsi/ibmvscsi_tgt/
9161
9162 IBM Power VMX Cryptographic instructions
9163 M:      Breno Leitão <leitao@debian.org>
9164 M:      Nayna Jain <nayna@linux.ibm.com>
9165 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9166 L:      linux-crypto@vger.kernel.org
9167 S:      Supported
9168 F:      drivers/crypto/vmx/Kconfig
9169 F:      drivers/crypto/vmx/Makefile
9170 F:      drivers/crypto/vmx/aes*
9171 F:      drivers/crypto/vmx/ghash*
9172 F:      drivers/crypto/vmx/ppc-xlate.pl
9173 F:      drivers/crypto/vmx/vmx.c
9174
9175 IBM ServeRAID RAID DRIVER
9176 S:      Orphan
9177 F:      drivers/scsi/ips.*
9178
9179 ICH LPC AND GPIO DRIVER
9180 M:      Peter Tyser <ptyser@xes-inc.com>
9181 S:      Maintained
9182 F:      drivers/gpio/gpio-ich.c
9183 F:      drivers/mfd/lpc_ich.c
9184
9185 ICY I2C DRIVER
9186 M:      Max Staudt <max@enpas.org>
9187 L:      linux-i2c@vger.kernel.org
9188 S:      Maintained
9189 F:      drivers/i2c/busses/i2c-icy.c
9190
9191 IDEAPAD LAPTOP EXTRAS DRIVER
9192 M:      Ike Panhc <ike.pan@canonical.com>
9193 L:      platform-driver-x86@vger.kernel.org
9194 S:      Maintained
9195 W:      http://launchpad.net/ideapad-laptop
9196 F:      drivers/platform/x86/ideapad-laptop.c
9197
9198 IDEAPAD LAPTOP SLIDEBAR DRIVER
9199 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9200 L:      linux-input@vger.kernel.org
9201 S:      Maintained
9202 W:      https://github.com/o2genum/ideapad-slidebar
9203 F:      drivers/input/misc/ideapad_slidebar.c
9204
9205 IDT VersaClock 5 CLOCK DRIVER
9206 M:      Luca Ceresoli <luca@lucaceresoli.net>
9207 S:      Maintained
9208 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9209 F:      drivers/clk/clk-versaclock5.c
9210
9211 IEEE 802.15.4 SUBSYSTEM
9212 M:      Alexander Aring <alex.aring@gmail.com>
9213 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9214 L:      linux-wpan@vger.kernel.org
9215 S:      Maintained
9216 W:      https://linux-wpan.org/
9217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9219 F:      Documentation/networking/ieee802154.rst
9220 F:      drivers/net/ieee802154/
9221 F:      include/linux/ieee802154.h
9222 F:      include/linux/nl802154.h
9223 F:      include/net/af_ieee802154.h
9224 F:      include/net/cfg802154.h
9225 F:      include/net/ieee802154_netdev.h
9226 F:      include/net/mac802154.h
9227 F:      include/net/nl802154.h
9228 F:      net/ieee802154/
9229 F:      net/mac802154/
9230
9231 IFE PROTOCOL
9232 M:      Yotam Gigi <yotam.gi@gmail.com>
9233 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9234 F:      include/net/ife.h
9235 F:      include/uapi/linux/ife.h
9236 F:      net/ife
9237
9238 IGORPLUG-USB IR RECEIVER
9239 M:      Sean Young <sean@mess.org>
9240 L:      linux-media@vger.kernel.org
9241 S:      Maintained
9242 F:      drivers/media/rc/igorplugusb.c
9243
9244 IGUANAWORKS USB IR TRANSCEIVER
9245 M:      Sean Young <sean@mess.org>
9246 L:      linux-media@vger.kernel.org
9247 S:      Maintained
9248 F:      drivers/media/rc/iguanair.c
9249
9250 IIO DIGITAL POTENTIOMETER DAC
9251 M:      Peter Rosin <peda@axentia.se>
9252 L:      linux-iio@vger.kernel.org
9253 S:      Maintained
9254 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9255 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9256 F:      drivers/iio/dac/dpot-dac.c
9257
9258 IIO ENVELOPE DETECTOR
9259 M:      Peter Rosin <peda@axentia.se>
9260 L:      linux-iio@vger.kernel.org
9261 S:      Maintained
9262 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9263 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9264 F:      drivers/iio/adc/envelope-detector.c
9265
9266 IIO MULTIPLEXER
9267 M:      Peter Rosin <peda@axentia.se>
9268 L:      linux-iio@vger.kernel.org
9269 S:      Maintained
9270 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9271 F:      drivers/iio/multiplexer/iio-mux.c
9272
9273 IIO SCMI BASED DRIVER
9274 M:      Jyoti Bhayana <jbhayana@google.com>
9275 L:      linux-iio@vger.kernel.org
9276 S:      Maintained
9277 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9278
9279 IIO SUBSYSTEM AND DRIVERS
9280 M:      Jonathan Cameron <jic23@kernel.org>
9281 R:      Lars-Peter Clausen <lars@metafoo.de>
9282 L:      linux-iio@vger.kernel.org
9283 S:      Maintained
9284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9285 F:      Documentation/ABI/testing/configfs-iio*
9286 F:      Documentation/ABI/testing/sysfs-bus-iio*
9287 F:      Documentation/devicetree/bindings/iio/
9288 F:      drivers/iio/
9289 F:      drivers/staging/iio/
9290 F:      include/linux/iio/
9291 F:      tools/iio/
9292
9293 IIO UNIT CONVERTER
9294 M:      Peter Rosin <peda@axentia.se>
9295 L:      linux-iio@vger.kernel.org
9296 S:      Maintained
9297 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9298 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9299 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9300 F:      drivers/iio/afe/iio-rescale.c
9301
9302 IKANOS/ADI EAGLE ADSL USB DRIVER
9303 M:      Matthieu Castet <castet.matthieu@free.fr>
9304 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9305 S:      Maintained
9306 F:      drivers/usb/atm/ueagle-atm.c
9307
9308 IMGTEC ASCII LCD DRIVER
9309 M:      Paul Burton <paulburton@kernel.org>
9310 S:      Maintained
9311 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9312 F:      drivers/auxdisplay/img-ascii-lcd.c
9313
9314 IMGTEC IR DECODER DRIVER
9315 S:      Orphan
9316 F:      drivers/media/rc/img-ir/
9317
9318 IMON SOUNDGRAPH USB IR RECEIVER
9319 M:      Sean Young <sean@mess.org>
9320 L:      linux-media@vger.kernel.org
9321 S:      Maintained
9322 F:      drivers/media/rc/imon.c
9323 F:      drivers/media/rc/imon_raw.c
9324
9325 IMS TWINTURBO FRAMEBUFFER DRIVER
9326 L:      linux-fbdev@vger.kernel.org
9327 S:      Orphan
9328 F:      drivers/video/fbdev/imsttfb.c
9329
9330 INA209 HARDWARE MONITOR DRIVER
9331 M:      Guenter Roeck <linux@roeck-us.net>
9332 L:      linux-hwmon@vger.kernel.org
9333 S:      Maintained
9334 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9335 F:      Documentation/hwmon/ina209.rst
9336 F:      drivers/hwmon/ina209.c
9337
9338 INA2XX HARDWARE MONITOR DRIVER
9339 M:      Guenter Roeck <linux@roeck-us.net>
9340 L:      linux-hwmon@vger.kernel.org
9341 S:      Maintained
9342 F:      Documentation/hwmon/ina2xx.rst
9343 F:      drivers/hwmon/ina2xx.c
9344 F:      include/linux/platform_data/ina2xx.h
9345
9346 INDUSTRY PACK SUBSYSTEM (IPACK)
9347 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9348 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9349 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9350 L:      industrypack-devel@lists.sourceforge.net
9351 S:      Maintained
9352 W:      http://industrypack.sourceforge.net
9353 F:      drivers/ipack/
9354
9355 INFINEON DPS310 Driver
9356 M:      Eddie James <eajames@linux.ibm.com>
9357 L:      linux-iio@vger.kernel.org
9358 S:      Maintained
9359 F:      drivers/iio/pressure/dps310.c
9360
9361 INFINIBAND SUBSYSTEM
9362 M:      Jason Gunthorpe <jgg@nvidia.com>
9363 L:      linux-rdma@vger.kernel.org
9364 S:      Supported
9365 W:      https://github.com/linux-rdma/rdma-core
9366 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9368 F:      Documentation/devicetree/bindings/infiniband/
9369 F:      Documentation/infiniband/
9370 F:      drivers/infiniband/
9371 F:      include/rdma/
9372 F:      include/trace/events/ib_mad.h
9373 F:      include/trace/events/ib_umad.h
9374 F:      include/uapi/linux/if_infiniband.h
9375 F:      include/uapi/rdma/
9376 F:      samples/bpf/ibumad_kern.c
9377 F:      samples/bpf/ibumad_user.c
9378
9379 INGENIC JZ4780 NAND DRIVER
9380 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9381 L:      linux-mtd@lists.infradead.org
9382 L:      linux-mips@vger.kernel.org
9383 S:      Maintained
9384 F:      drivers/mtd/nand/raw/ingenic/
9385
9386 INGENIC JZ47xx SoCs
9387 M:      Paul Cercueil <paul@crapouillou.net>
9388 L:      linux-mips@vger.kernel.org
9389 S:      Maintained
9390 F:      arch/mips/boot/dts/ingenic/
9391 F:      arch/mips/generic/board-ingenic.c
9392 F:      arch/mips/include/asm/mach-ingenic/
9393 F:      arch/mips/ingenic/Kconfig
9394 F:      drivers/clk/ingenic/
9395 F:      drivers/dma/dma-jz4780.c
9396 F:      drivers/gpu/drm/ingenic/
9397 F:      drivers/i2c/busses/i2c-jz4780.c
9398 F:      drivers/iio/adc/ingenic-adc.c
9399 F:      drivers/irqchip/irq-ingenic.c
9400 F:      drivers/memory/jz4780-nemc.c
9401 F:      drivers/mmc/host/jz4740_mmc.c
9402 F:      drivers/mtd/nand/raw/ingenic/
9403 F:      drivers/pinctrl/pinctrl-ingenic.c
9404 F:      drivers/power/supply/ingenic-battery.c
9405 F:      drivers/pwm/pwm-jz4740.c
9406 F:      drivers/remoteproc/ingenic_rproc.c
9407 F:      drivers/rtc/rtc-jz4740.c
9408 F:      drivers/tty/serial/8250/8250_ingenic.c
9409 F:      drivers/usb/musb/jz4740.c
9410 F:      drivers/watchdog/jz4740_wdt.c
9411 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9412 F:      include/linux/mfd/ingenic-tcu.h
9413 F:      sound/soc/codecs/jz47*
9414 F:      sound/soc/jz4740/
9415
9416 INOTIFY
9417 M:      Jan Kara <jack@suse.cz>
9418 R:      Amir Goldstein <amir73il@gmail.com>
9419 L:      linux-fsdevel@vger.kernel.org
9420 S:      Maintained
9421 F:      Documentation/filesystems/inotify.rst
9422 F:      fs/notify/inotify/
9423 F:      include/linux/inotify.h
9424 F:      include/uapi/linux/inotify.h
9425
9426 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9427 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9428 L:      linux-input@vger.kernel.org
9429 S:      Maintained
9430 Q:      http://patchwork.kernel.org/project/linux-input/list/
9431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9432 F:      Documentation/devicetree/bindings/input/
9433 F:      Documentation/devicetree/bindings/serio/
9434 F:      Documentation/input/
9435 F:      drivers/input/
9436 F:      include/linux/input.h
9437 F:      include/linux/input/
9438 F:      include/uapi/linux/input-event-codes.h
9439 F:      include/uapi/linux/input.h
9440
9441 INPUT MULTITOUCH (MT) PROTOCOL
9442 M:      Henrik Rydberg <rydberg@bitmath.org>
9443 L:      linux-input@vger.kernel.org
9444 S:      Odd fixes
9445 F:      Documentation/input/multi-touch-protocol.rst
9446 F:      drivers/input/input-mt.c
9447 K:      \b(ABS|SYN)_MT_
9448
9449 INSIDE SECURE CRYPTO DRIVER
9450 M:      Antoine Tenart <atenart@kernel.org>
9451 L:      linux-crypto@vger.kernel.org
9452 S:      Maintained
9453 F:      drivers/crypto/inside-secure/
9454
9455 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9456 M:      Mimi Zohar <zohar@linux.ibm.com>
9457 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9458 L:      linux-integrity@vger.kernel.org
9459 S:      Supported
9460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9461 F:      security/integrity/ima/
9462
9463 INTEL 810/815 FRAMEBUFFER DRIVER
9464 M:      Antonino Daplas <adaplas@gmail.com>
9465 L:      linux-fbdev@vger.kernel.org
9466 S:      Maintained
9467 F:      drivers/video/fbdev/i810/
9468
9469 INTEL ASoC DRIVERS
9470 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9471 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9472 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9473 M:      Jie Yang <yang.jie@linux.intel.com>
9474 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9475 S:      Supported
9476 F:      sound/soc/intel/
9477
9478 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9479 M:      Hans de Goede <hdegoede@redhat.com>
9480 L:      platform-driver-x86@vger.kernel.org
9481 S:      Maintained
9482 F:      drivers/platform/x86/intel/atomisp2/pm.c
9483
9484 INTEL ATOMISP2 LED DRIVER
9485 M:      Hans de Goede <hdegoede@redhat.com>
9486 L:      platform-driver-x86@vger.kernel.org
9487 S:      Maintained
9488 F:      drivers/platform/x86/intel/atomisp2/led.c
9489
9490 INTEL BIOS SAR INT1092 DRIVER
9491 M:      Shravan Sudhakar <s.shravan@intel.com>
9492 M:      Intel Corporation <linuxwwan@intel.com>
9493 L:      platform-driver-x86@vger.kernel.org
9494 S:      Maintained
9495 F:      drivers/platform/x86/intel/int1092/
9496
9497 INTEL BROXTON PMC DRIVER
9498 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9499 M:      Zha Qipeng <qipeng.zha@intel.com>
9500 S:      Maintained
9501 F:      drivers/mfd/intel_pmc_bxt.c
9502 F:      include/linux/mfd/intel_pmc_bxt.h
9503
9504 INTEL C600 SERIES SAS CONTROLLER DRIVER
9505 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9506 L:      linux-scsi@vger.kernel.org
9507 S:      Supported
9508 T:      git git://git.code.sf.net/p/intel-sas/isci
9509 F:      drivers/scsi/isci/
9510
9511 INTEL CPU family model numbers
9512 M:      Tony Luck <tony.luck@intel.com>
9513 M:      x86@kernel.org
9514 L:      linux-kernel@vger.kernel.org
9515 S:      Supported
9516 F:      arch/x86/include/asm/intel-family.h
9517
9518 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9519 M:      Jani Nikula <jani.nikula@linux.intel.com>
9520 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9521 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9522 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9523 L:      intel-gfx@lists.freedesktop.org
9524 S:      Supported
9525 W:      https://01.org/linuxgraphics/
9526 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9527 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9528 C:      irc://irc.oftc.net/intel-gfx
9529 T:      git git://anongit.freedesktop.org/drm-intel
9530 F:      Documentation/gpu/i915.rst
9531 F:      drivers/gpu/drm/i915/
9532 F:      include/drm/i915*
9533 F:      include/uapi/drm/i915_drm.h
9534
9535 INTEL ETHERNET DRIVERS
9536 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9537 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9538 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9539 S:      Supported
9540 W:      http://www.intel.com/support/feedback.htm
9541 W:      http://e1000.sourceforge.net/
9542 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9545 F:      Documentation/networking/device_drivers/ethernet/intel/
9546 F:      drivers/net/ethernet/intel/
9547 F:      drivers/net/ethernet/intel/*/
9548 F:      include/linux/avf/virtchnl.h
9549 F:      include/linux/net/intel/iidc.h
9550
9551 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9552 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9553 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9554 L:      linux-rdma@vger.kernel.org
9555 S:      Supported
9556 F:      drivers/infiniband/hw/irdma/
9557 F:      include/uapi/rdma/irdma-abi.h
9558
9559 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9560 M:      Maik Broemme <mbroemme@libmpq.org>
9561 L:      linux-fbdev@vger.kernel.org
9562 S:      Maintained
9563 F:      Documentation/fb/intelfb.rst
9564 F:      drivers/video/fbdev/intelfb/
9565
9566 INTEL GPIO DRIVERS
9567 M:      Andy Shevchenko <andy@kernel.org>
9568 L:      linux-gpio@vger.kernel.org
9569 S:      Maintained
9570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9571 F:      drivers/gpio/gpio-ich.c
9572 F:      drivers/gpio/gpio-merrifield.c
9573 F:      drivers/gpio/gpio-ml-ioh.c
9574 F:      drivers/gpio/gpio-pch.c
9575 F:      drivers/gpio/gpio-sch.c
9576 F:      drivers/gpio/gpio-sodaville.c
9577
9578 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9579 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9580 M:      Zhi Wang <zhi.a.wang@intel.com>
9581 L:      intel-gvt-dev@lists.freedesktop.org
9582 L:      intel-gfx@lists.freedesktop.org
9583 S:      Supported
9584 W:      https://01.org/igvt-g
9585 T:      git https://github.com/intel/gvt-linux.git
9586 F:      drivers/gpu/drm/i915/gvt/
9587
9588 INTEL HID EVENT DRIVER
9589 M:      Alex Hung <alex.hung@canonical.com>
9590 L:      platform-driver-x86@vger.kernel.org
9591 S:      Maintained
9592 F:      drivers/platform/x86/intel/hid.c
9593
9594 INTEL I/OAT DMA DRIVER
9595 M:      Dave Jiang <dave.jiang@intel.com>
9596 R:      Dan Williams <dan.j.williams@intel.com>
9597 L:      dmaengine@vger.kernel.org
9598 S:      Supported
9599 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9600 F:      drivers/dma/ioat*
9601
9602 INTEL IADX DRIVER
9603 M:      Dave Jiang <dave.jiang@intel.com>
9604 L:      dmaengine@vger.kernel.org
9605 S:      Supported
9606 F:      drivers/dma/idxd/*
9607 F:      include/uapi/linux/idxd.h
9608
9609 INTEL IDLE DRIVER
9610 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9611 M:      Len Brown <lenb@kernel.org>
9612 L:      linux-pm@vger.kernel.org
9613 S:      Supported
9614 B:      https://bugzilla.kernel.org
9615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9616 F:      drivers/idle/intel_idle.c
9617
9618 INTEL INTEGRATED SENSOR HUB DRIVER
9619 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9620 M:      Jiri Kosina <jikos@kernel.org>
9621 L:      linux-input@vger.kernel.org
9622 S:      Maintained
9623 F:      drivers/hid/intel-ish-hid/
9624
9625 INTEL IOMMU (VT-d)
9626 M:      David Woodhouse <dwmw2@infradead.org>
9627 M:      Lu Baolu <baolu.lu@linux.intel.com>
9628 L:      iommu@lists.linux-foundation.org
9629 S:      Supported
9630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9631 F:      drivers/iommu/intel/
9632 F:      include/linux/intel-iommu.h
9633 F:      include/linux/intel-svm.h
9634
9635 INTEL IOP-ADMA DMA DRIVER
9636 R:      Dan Williams <dan.j.williams@intel.com>
9637 S:      Odd fixes
9638 F:      drivers/dma/iop-adma.c
9639
9640 INTEL IPU3 CSI-2 CIO2 DRIVER
9641 M:      Yong Zhi <yong.zhi@intel.com>
9642 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9643 M:      Bingbu Cao <bingbu.cao@intel.com>
9644 M:      Dan Scally <djrscally@gmail.com>
9645 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9646 L:      linux-media@vger.kernel.org
9647 S:      Maintained
9648 T:      git git://linuxtv.org/media_tree.git
9649 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9650 F:      drivers/media/pci/intel/ipu3/
9651
9652 INTEL IPU3 CSI-2 IMGU DRIVER
9653 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9654 R:      Bingbu Cao <bingbu.cao@intel.com>
9655 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9656 L:      linux-media@vger.kernel.org
9657 S:      Maintained
9658 F:      Documentation/admin-guide/media/ipu3.rst
9659 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9660 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9661 F:      drivers/staging/media/ipu3/
9662
9663 INTEL IXP4XX CRYPTO SUPPORT
9664 M:      Corentin Labbe <clabbe@baylibre.com>
9665 L:      linux-crypto@vger.kernel.org
9666 S:      Maintained
9667 F:      drivers/crypto/ixp4xx_crypto.c
9668
9669 INTEL ISHTP ECLITE DRIVER
9670 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9671 L:      platform-driver-x86@vger.kernel.org
9672 S:      Supported
9673 F:      drivers/platform/x86/intel/ishtp_eclite.c
9674
9675 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9676 M:      Krzysztof Halasa <khalasa@piap.pl>
9677 S:      Maintained
9678 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9679 F:      drivers/net/wan/ixp4xx_hss.c
9680 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9681 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9682 F:      include/linux/soc/ixp4xx/npe.h
9683 F:      include/linux/soc/ixp4xx/qmgr.h
9684
9685 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9686 M:      Deepak Saxena <dsaxena@plexity.net>
9687 S:      Maintained
9688 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9689 F:      drivers/char/hw_random/ixp4xx-rng.c
9690
9691 INTEL KEEM BAY DRM DRIVER
9692 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9693 M:      Edmund Dea <edmund.j.dea@intel.com>
9694 S:      Maintained
9695 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9696 F:      drivers/gpu/drm/kmb/
9697
9698 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9699 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9700 S:      Maintained
9701 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9702 F:      drivers/crypto/keembay/Kconfig
9703 F:      drivers/crypto/keembay/Makefile
9704 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9705 F:      drivers/crypto/keembay/ocs-aes.c
9706 F:      drivers/crypto/keembay/ocs-aes.h
9707
9708 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9709 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9710 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9711 M:      Mark Gross <mgross@linux.intel.com>
9712 S:      Maintained
9713 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9714 F:      drivers/crypto/keembay/Kconfig
9715 F:      drivers/crypto/keembay/Makefile
9716 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9717 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9718
9719 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9720 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9721 M:      Declan Murphy <declan.murphy@intel.com>
9722 S:      Maintained
9723 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9724 F:      drivers/crypto/keembay/Kconfig
9725 F:      drivers/crypto/keembay/Makefile
9726 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9727 F:      drivers/crypto/keembay/ocs-hcu.c
9728 F:      drivers/crypto/keembay/ocs-hcu.h
9729
9730 INTEL MANAGEMENT ENGINE (mei)
9731 M:      Tomas Winkler <tomas.winkler@intel.com>
9732 L:      linux-kernel@vger.kernel.org
9733 S:      Supported
9734 F:      Documentation/driver-api/mei/*
9735 F:      drivers/misc/mei/
9736 F:      drivers/watchdog/mei_wdt.c
9737 F:      include/linux/mei_cl_bus.h
9738 F:      include/uapi/linux/mei.h
9739 F:      samples/mei/*
9740
9741 INTEL MAX 10 BMC MFD DRIVER
9742 M:      Xu Yilun <yilun.xu@intel.com>
9743 R:      Tom Rix <trix@redhat.com>
9744 S:      Maintained
9745 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9746 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9747 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9748 F:      drivers/mfd/intel-m10-bmc.c
9749 F:      include/linux/mfd/intel-m10-bmc.h
9750
9751 INTEL MENLOW THERMAL DRIVER
9752 M:      Sujith Thomas <sujith.thomas@intel.com>
9753 L:      linux-pm@vger.kernel.org
9754 S:      Supported
9755 W:      https://01.org/linux-acpi
9756 F:      drivers/thermal/intel/intel_menlow.c
9757
9758 INTEL P-Unit IPC DRIVER
9759 M:      Zha Qipeng <qipeng.zha@intel.com>
9760 L:      platform-driver-x86@vger.kernel.org
9761 S:      Maintained
9762 F:      arch/x86/include/asm/intel_punit_ipc.h
9763 F:      drivers/platform/x86/intel/punit_ipc.c
9764
9765 INTEL PMC CORE DRIVER
9766 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9767 M:      David E Box <david.e.box@intel.com>
9768 L:      platform-driver-x86@vger.kernel.org
9769 S:      Maintained
9770 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9771 F:      drivers/platform/x86/intel/pmc/
9772
9773 INTEL PMIC GPIO DRIVERS
9774 M:      Andy Shevchenko <andy@kernel.org>
9775 S:      Maintained
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9777 F:      drivers/gpio/gpio-*cove.c
9778
9779 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9780 M:      Andy Shevchenko <andy@kernel.org>
9781 S:      Maintained
9782 F:      drivers/mfd/intel_soc_pmic*
9783 F:      include/linux/mfd/intel_soc_pmic*
9784
9785 INTEL PMT DRIVER
9786 M:      "David E. Box" <david.e.box@linux.intel.com>
9787 S:      Maintained
9788 F:      drivers/mfd/intel_pmt.c
9789 F:      drivers/platform/x86/intel/pmt/
9790
9791 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9792 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9793 L:      linux-wireless@vger.kernel.org
9794 S:      Maintained
9795 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9796 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9797 F:      drivers/net/wireless/intel/ipw2x00/
9798
9799 INTEL PSTATE DRIVER
9800 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9801 M:      Len Brown <lenb@kernel.org>
9802 L:      linux-pm@vger.kernel.org
9803 S:      Supported
9804 F:      drivers/cpufreq/intel_pstate.c
9805
9806 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9807 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9808 L:      linux-iio@vger.kernel.org
9809 F:      drivers/counter/intel-qep.c
9810
9811 INTEL SCU DRIVERS
9812 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9813 S:      Maintained
9814 F:      arch/x86/include/asm/intel_scu_ipc.h
9815 F:      drivers/platform/x86/intel_scu_*
9816
9817 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9818 M:      Daniel Scally <djrscally@gmail.com>
9819 S:      Maintained
9820 F:      drivers/platform/x86/intel/int3472/
9821
9822 INTEL SPEED SELECT TECHNOLOGY
9823 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9824 L:      platform-driver-x86@vger.kernel.org
9825 S:      Maintained
9826 F:      drivers/platform/x86/intel/speed_select_if/
9827 F:      include/uapi/linux/isst_if.h
9828 F:      tools/power/x86/intel-speed-select/
9829
9830 INTEL STRATIX10 FIRMWARE DRIVERS
9831 M:      Dinh Nguyen <dinguyen@kernel.org>
9832 L:      linux-kernel@vger.kernel.org
9833 S:      Maintained
9834 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9835 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9836 F:      drivers/firmware/stratix10-rsu.c
9837 F:      drivers/firmware/stratix10-svc.c
9838 F:      include/linux/firmware/intel/stratix10-smc.h
9839 F:      include/linux/firmware/intel/stratix10-svc-client.h
9840
9841 INTEL TELEMETRY DRIVER
9842 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9843 M:      "David E. Box" <david.e.box@linux.intel.com>
9844 L:      platform-driver-x86@vger.kernel.org
9845 S:      Maintained
9846 F:      arch/x86/include/asm/intel_telemetry.h
9847 F:      drivers/platform/x86/intel/telemetry/
9848
9849 INTEL UNCORE FREQUENCY CONTROL
9850 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9851 L:      platform-driver-x86@vger.kernel.org
9852 S:      Maintained
9853 F:      drivers/platform/x86/intel/uncore-frequency.c
9854
9855 INTEL VIRTUAL BUTTON DRIVER
9856 M:      AceLan Kao <acelan.kao@canonical.com>
9857 L:      platform-driver-x86@vger.kernel.org
9858 S:      Maintained
9859 F:      drivers/platform/x86/intel/vbtn.c
9860
9861 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9862 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9863 L:      linux-wireless@vger.kernel.org
9864 S:      Supported
9865 F:      drivers/net/wireless/intel/iwlegacy/
9866
9867 INTEL WIRELESS WIFI LINK (iwlwifi)
9868 M:      Luca Coelho <luciano.coelho@intel.com>
9869 L:      linux-wireless@vger.kernel.org
9870 S:      Supported
9871 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9873 F:      drivers/net/wireless/intel/iwlwifi/
9874
9875 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9876 M:      Jithu Joseph <jithu.joseph@intel.com>
9877 R:      Maurice Ma <maurice.ma@intel.com>
9878 S:      Maintained
9879 W:      https://slimbootloader.github.io/security/firmware-update.html
9880 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9881
9882 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9883 L:      Dell.Client.Kernel@dell.com
9884 S:      Maintained
9885 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9886
9887 INTEL WWAN IOSM DRIVER
9888 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9889 M:      Intel Corporation <linuxwwan@intel.com>
9890 L:      netdev@vger.kernel.org
9891 S:      Maintained
9892 F:      drivers/net/wwan/iosm/
9893
9894 INTEL(R) TRACE HUB
9895 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9896 S:      Supported
9897 F:      Documentation/trace/intel_th.rst
9898 F:      drivers/hwtracing/intel_th/
9899 F:      include/linux/intel_th.h
9900
9901 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9902 M:      Ning Sun <ning.sun@intel.com>
9903 L:      tboot-devel@lists.sourceforge.net
9904 S:      Supported
9905 W:      http://tboot.sourceforge.net
9906 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9907 F:      Documentation/x86/intel_txt.rst
9908 F:      arch/x86/kernel/tboot.c
9909 F:      include/linux/tboot.h
9910
9911 INTEL SGX
9912 M:      Jarkko Sakkinen <jarkko@kernel.org>
9913 R:      Dave Hansen <dave.hansen@linux.intel.com>
9914 L:      linux-sgx@vger.kernel.org
9915 S:      Supported
9916 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9918 F:      Documentation/x86/sgx.rst
9919 F:      arch/x86/entry/vdso/vsgx.S
9920 F:      arch/x86/include/asm/sgx.h
9921 F:      arch/x86/include/uapi/asm/sgx.h
9922 F:      arch/x86/kernel/cpu/sgx/*
9923 F:      tools/testing/selftests/sgx/*
9924 K:      \bSGX_
9925
9926 INTERCONNECT API
9927 M:      Georgi Djakov <djakov@kernel.org>
9928 L:      linux-pm@vger.kernel.org
9929 S:      Maintained
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9931 F:      Documentation/devicetree/bindings/interconnect/
9932 F:      Documentation/driver-api/interconnect.rst
9933 F:      drivers/interconnect/
9934 F:      include/dt-bindings/interconnect/
9935 F:      include/linux/interconnect-provider.h
9936 F:      include/linux/interconnect.h
9937
9938 INTERRUPT COUNTER DRIVER
9939 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9940 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9941 L:      linux-iio@vger.kernel.org
9942 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9943 F:      drivers/counter/interrupt-cnt.c
9944
9945 INVENSENSE ICM-426xx IMU DRIVER
9946 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9947 L:      linux-iio@vger.kernel.org
9948 S:      Maintained
9949 W:      https://invensense.tdk.com/
9950 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9951 F:      drivers/iio/imu/inv_icm42600/
9952
9953 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9954 M:      Linus Walleij <linus.walleij@linaro.org>
9955 L:      linux-iio@vger.kernel.org
9956 S:      Maintained
9957 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9958 F:      drivers/iio/gyro/mpu3050*
9959
9960 IOC3 ETHERNET DRIVER
9961 M:      Ralf Baechle <ralf@linux-mips.org>
9962 L:      linux-mips@vger.kernel.org
9963 S:      Maintained
9964 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9965
9966 IOMAP FILESYSTEM LIBRARY
9967 M:      Christoph Hellwig <hch@infradead.org>
9968 M:      Darrick J. Wong <djwong@kernel.org>
9969 M:      linux-xfs@vger.kernel.org
9970 M:      linux-fsdevel@vger.kernel.org
9971 L:      linux-xfs@vger.kernel.org
9972 L:      linux-fsdevel@vger.kernel.org
9973 S:      Supported
9974 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9975 F:      fs/iomap/
9976 F:      include/linux/iomap.h
9977
9978 IOMMU DRIVERS
9979 M:      Joerg Roedel <joro@8bytes.org>
9980 M:      Will Deacon <will@kernel.org>
9981 L:      iommu@lists.linux-foundation.org
9982 S:      Maintained
9983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9984 F:      Documentation/devicetree/bindings/iommu/
9985 F:      Documentation/userspace-api/iommu.rst
9986 F:      drivers/iommu/
9987 F:      include/linux/iommu.h
9988 F:      include/linux/iova.h
9989 F:      include/linux/of_iommu.h
9990 F:      include/uapi/linux/iommu.h
9991
9992 IO_URING
9993 M:      Jens Axboe <axboe@kernel.dk>
9994 R:      Pavel Begunkov <asml.silence@gmail.com>
9995 L:      io-uring@vger.kernel.org
9996 S:      Maintained
9997 T:      git git://git.kernel.dk/linux-block
9998 T:      git git://git.kernel.dk/liburing
9999 F:      fs/io-wq.c
10000 F:      fs/io-wq.h
10001 F:      fs/io_uring.c
10002 F:      include/linux/io_uring.h
10003 F:      include/uapi/linux/io_uring.h
10004 F:      tools/io_uring/
10005
10006 IPMI SUBSYSTEM
10007 M:      Corey Minyard <minyard@acm.org>
10008 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10009 S:      Supported
10010 W:      http://openipmi.sourceforge.net/
10011 F:      Documentation/driver-api/ipmi.rst
10012 F:      Documentation/devicetree/bindings/ipmi/
10013 F:      drivers/char/ipmi/
10014 F:      include/linux/ipmi*
10015 F:      include/uapi/linux/ipmi*
10016
10017 IPS SCSI RAID DRIVER
10018 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10019 L:      linux-scsi@vger.kernel.org
10020 S:      Maintained
10021 W:      http://www.adaptec.com/
10022 F:      drivers/scsi/ips*
10023
10024 IPVS
10025 M:      Simon Horman <horms@verge.net.au>
10026 M:      Julian Anastasov <ja@ssi.bg>
10027 L:      netdev@vger.kernel.org
10028 L:      lvs-devel@vger.kernel.org
10029 S:      Maintained
10030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10032 F:      Documentation/networking/ipvs-sysctl.rst
10033 F:      include/net/ip_vs.h
10034 F:      include/uapi/linux/ip_vs.h
10035 F:      net/netfilter/ipvs/
10036
10037 IPWIRELESS DRIVER
10038 M:      Jiri Kosina <jikos@kernel.org>
10039 M:      David Sterba <dsterba@suse.com>
10040 S:      Odd Fixes
10041 F:      drivers/tty/ipwireless/
10042
10043 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10044 M:      Marc Zyngier <maz@kernel.org>
10045 S:      Maintained
10046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10047 F:      Documentation/core-api/irq/irq-domain.rst
10048 F:      include/linux/irqdomain.h
10049 F:      kernel/irq/irqdomain.c
10050 F:      kernel/irq/msi.c
10051
10052 IRQ SUBSYSTEM
10053 M:      Thomas Gleixner <tglx@linutronix.de>
10054 L:      linux-kernel@vger.kernel.org
10055 S:      Maintained
10056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10057 F:      kernel/irq/
10058
10059 IRQCHIP DRIVERS
10060 M:      Thomas Gleixner <tglx@linutronix.de>
10061 M:      Marc Zyngier <maz@kernel.org>
10062 L:      linux-kernel@vger.kernel.org
10063 S:      Maintained
10064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10065 F:      Documentation/devicetree/bindings/interrupt-controller/
10066 F:      drivers/irqchip/
10067
10068 ISA
10069 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10070 S:      Maintained
10071 F:      Documentation/driver-api/isa.rst
10072 F:      drivers/base/isa.c
10073 F:      include/linux/isa.h
10074
10075 ISA RADIO MODULE
10076 M:      Hans Verkuil <hverkuil@xs4all.nl>
10077 L:      linux-media@vger.kernel.org
10078 S:      Maintained
10079 W:      https://linuxtv.org
10080 T:      git git://linuxtv.org/media_tree.git
10081 F:      drivers/media/radio/radio-isa*
10082
10083 ISAPNP
10084 M:      Jaroslav Kysela <perex@perex.cz>
10085 S:      Maintained
10086 F:      Documentation/driver-api/isapnp.rst
10087 F:      drivers/pnp/isapnp/
10088 F:      include/linux/isapnp.h
10089
10090 ISCSI
10091 M:      Lee Duncan <lduncan@suse.com>
10092 M:      Chris Leech <cleech@redhat.com>
10093 L:      open-iscsi@googlegroups.com
10094 L:      linux-scsi@vger.kernel.org
10095 S:      Maintained
10096 W:      www.open-iscsi.com
10097 F:      drivers/scsi/*iscsi*
10098 F:      include/scsi/*iscsi*
10099
10100 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10101 M:      Peter Jones <pjones@redhat.com>
10102 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10103 S:      Maintained
10104 F:      drivers/firmware/iscsi_ibft*
10105
10106 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10107 M:      Sagi Grimberg <sagi@grimberg.me>
10108 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10109 L:      linux-rdma@vger.kernel.org
10110 S:      Supported
10111 W:      http://www.openfabrics.org
10112 W:      www.open-iscsi.org
10113 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10114 F:      drivers/infiniband/ulp/iser/
10115
10116 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10117 M:      Sagi Grimberg <sagi@grimberg.me>
10118 L:      linux-rdma@vger.kernel.org
10119 L:      target-devel@vger.kernel.org
10120 S:      Supported
10121 W:      http://www.linux-iscsi.org
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10123 F:      drivers/infiniband/ulp/isert
10124
10125 ISDN/CMTP OVER BLUETOOTH
10126 M:      Karsten Keil <isdn@linux-pingi.de>
10127 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10128 L:      netdev@vger.kernel.org
10129 S:      Odd Fixes
10130 W:      http://www.isdn4linux.de
10131 F:      Documentation/isdn/
10132 F:      drivers/isdn/capi/
10133 F:      include/linux/isdn/
10134 F:      include/uapi/linux/isdn/
10135 F:      net/bluetooth/cmtp/
10136
10137 ISDN/mISDN SUBSYSTEM
10138 M:      Karsten Keil <isdn@linux-pingi.de>
10139 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10140 L:      netdev@vger.kernel.org
10141 S:      Maintained
10142 W:      http://www.isdn4linux.de
10143 F:      drivers/isdn/Kconfig
10144 F:      drivers/isdn/Makefile
10145 F:      drivers/isdn/hardware/
10146 F:      drivers/isdn/mISDN/
10147
10148 IT87 HARDWARE MONITORING DRIVER
10149 M:      Jean Delvare <jdelvare@suse.com>
10150 L:      linux-hwmon@vger.kernel.org
10151 S:      Maintained
10152 F:      Documentation/hwmon/it87.rst
10153 F:      drivers/hwmon/it87.c
10154
10155 IT913X MEDIA DRIVER
10156 M:      Antti Palosaari <crope@iki.fi>
10157 L:      linux-media@vger.kernel.org
10158 S:      Maintained
10159 W:      https://linuxtv.org
10160 W:      http://palosaari.fi/linux/
10161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10162 T:      git git://linuxtv.org/anttip/media_tree.git
10163 F:      drivers/media/tuners/it913x*
10164
10165 ITE IT66121 HDMI BRIDGE DRIVER
10166 M:      Phong LE <ple@baylibre.com>
10167 M:      Neil Armstrong <narmstrong@baylibre.com>
10168 S:      Maintained
10169 T:      git git://anongit.freedesktop.org/drm/drm-misc
10170 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10171 F:      drivers/gpu/drm/bridge/ite-it66121.c
10172
10173 IVTV VIDEO4LINUX DRIVER
10174 M:      Andy Walls <awalls@md.metrocast.net>
10175 L:      linux-media@vger.kernel.org
10176 S:      Maintained
10177 W:      https://linuxtv.org
10178 T:      git git://linuxtv.org/media_tree.git
10179 F:      Documentation/admin-guide/media/ivtv*
10180 F:      drivers/media/pci/ivtv/
10181 F:      include/uapi/linux/ivtv*
10182
10183 IX2505V MEDIA DRIVER
10184 M:      Malcolm Priestley <tvboxspy@gmail.com>
10185 L:      linux-media@vger.kernel.org
10186 S:      Maintained
10187 W:      https://linuxtv.org
10188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10189 F:      drivers/media/dvb-frontends/ix2505v*
10190
10191 JAILHOUSE HYPERVISOR INTERFACE
10192 M:      Jan Kiszka <jan.kiszka@siemens.com>
10193 L:      jailhouse-dev@googlegroups.com
10194 S:      Maintained
10195 F:      arch/x86/include/asm/jailhouse_para.h
10196 F:      arch/x86/kernel/jailhouse.c
10197
10198 JC42.4 TEMPERATURE SENSOR DRIVER
10199 M:      Guenter Roeck <linux@roeck-us.net>
10200 L:      linux-hwmon@vger.kernel.org
10201 S:      Maintained
10202 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10203 F:      Documentation/hwmon/jc42.rst
10204 F:      drivers/hwmon/jc42.c
10205
10206 JFS FILESYSTEM
10207 M:      Dave Kleikamp <shaggy@kernel.org>
10208 L:      jfs-discussion@lists.sourceforge.net
10209 S:      Maintained
10210 W:      http://jfs.sourceforge.net/
10211 T:      git git://github.com/kleikamp/linux-shaggy.git
10212 F:      Documentation/admin-guide/jfs.rst
10213 F:      fs/jfs/
10214
10215 JME NETWORK DRIVER
10216 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10217 L:      netdev@vger.kernel.org
10218 S:      Maintained
10219 F:      drivers/net/ethernet/jme.*
10220
10221 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10222 M:      David Woodhouse <dwmw2@infradead.org>
10223 M:      Richard Weinberger <richard@nod.at>
10224 L:      linux-mtd@lists.infradead.org
10225 S:      Odd Fixes
10226 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10227 T:      git git://git.infradead.org/ubifs-2.6.git
10228 F:      fs/jffs2/
10229 F:      include/uapi/linux/jffs2.h
10230
10231 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10232 M:      "Theodore Ts'o" <tytso@mit.edu>
10233 M:      Jan Kara <jack@suse.com>
10234 L:      linux-ext4@vger.kernel.org
10235 S:      Maintained
10236 F:      fs/jbd2/
10237 F:      include/linux/jbd2.h
10238
10239 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10240 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10241 L:      linux-media@vger.kernel.org
10242 L:      linux-renesas-soc@vger.kernel.org
10243 S:      Maintained
10244 F:      drivers/media/platform/rcar_jpu.c
10245
10246 JSM Neo PCI based serial card
10247 L:      linux-serial@vger.kernel.org
10248 S:      Orphan
10249 F:      drivers/tty/serial/jsm/
10250
10251 K10TEMP HARDWARE MONITORING DRIVER
10252 M:      Clemens Ladisch <clemens@ladisch.de>
10253 L:      linux-hwmon@vger.kernel.org
10254 S:      Maintained
10255 F:      Documentation/hwmon/k10temp.rst
10256 F:      drivers/hwmon/k10temp.c
10257
10258 K8TEMP HARDWARE MONITORING DRIVER
10259 M:      Rudolf Marek <r.marek@assembler.cz>
10260 L:      linux-hwmon@vger.kernel.org
10261 S:      Maintained
10262 F:      Documentation/hwmon/k8temp.rst
10263 F:      drivers/hwmon/k8temp.c
10264
10265 KASAN
10266 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10267 R:      Alexander Potapenko <glider@google.com>
10268 R:      Andrey Konovalov <andreyknvl@gmail.com>
10269 R:      Dmitry Vyukov <dvyukov@google.com>
10270 L:      kasan-dev@googlegroups.com
10271 S:      Maintained
10272 F:      Documentation/dev-tools/kasan.rst
10273 F:      arch/*/include/asm/*kasan.h
10274 F:      arch/*/mm/kasan_init*
10275 F:      include/linux/kasan*.h
10276 F:      lib/Kconfig.kasan
10277 F:      lib/test_kasan*.c
10278 F:      mm/kasan/
10279 F:      scripts/Makefile.kasan
10280
10281 KCONFIG
10282 M:      Masahiro Yamada <masahiroy@kernel.org>
10283 L:      linux-kbuild@vger.kernel.org
10284 S:      Maintained
10285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10286 F:      Documentation/kbuild/kconfig*
10287 F:      scripts/Kconfig.include
10288 F:      scripts/kconfig/
10289
10290 KCOV
10291 R:      Dmitry Vyukov <dvyukov@google.com>
10292 R:      Andrey Konovalov <andreyknvl@gmail.com>
10293 L:      kasan-dev@googlegroups.com
10294 S:      Maintained
10295 F:      Documentation/dev-tools/kcov.rst
10296 F:      include/linux/kcov.h
10297 F:      include/uapi/linux/kcov.h
10298 F:      kernel/kcov.c
10299 F:      scripts/Makefile.kcov
10300
10301 KCSAN
10302 M:      Marco Elver <elver@google.com>
10303 R:      Dmitry Vyukov <dvyukov@google.com>
10304 L:      kasan-dev@googlegroups.com
10305 S:      Maintained
10306 F:      Documentation/dev-tools/kcsan.rst
10307 F:      include/linux/kcsan*.h
10308 F:      kernel/kcsan/
10309 F:      lib/Kconfig.kcsan
10310 F:      scripts/Makefile.kcsan
10311
10312 KDUMP
10313 M:      Baoquan He <bhe@redhat.com>
10314 R:      Vivek Goyal <vgoyal@redhat.com>
10315 R:      Dave Young <dyoung@redhat.com>
10316 L:      kexec@lists.infradead.org
10317 S:      Maintained
10318 W:      http://lse.sourceforge.net/kdump/
10319 F:      Documentation/admin-guide/kdump/
10320 F:      fs/proc/vmcore.c
10321 F:      include/linux/crash_core.h
10322 F:      include/linux/crash_dump.h
10323 F:      include/uapi/linux/vmcore.h
10324 F:      kernel/crash_*.c
10325
10326 KEENE FM RADIO TRANSMITTER DRIVER
10327 M:      Hans Verkuil <hverkuil@xs4all.nl>
10328 L:      linux-media@vger.kernel.org
10329 S:      Maintained
10330 W:      https://linuxtv.org
10331 T:      git git://linuxtv.org/media_tree.git
10332 F:      drivers/media/radio/radio-keene*
10333
10334 KERNEL AUTOMOUNTER
10335 M:      Ian Kent <raven@themaw.net>
10336 L:      autofs@vger.kernel.org
10337 S:      Maintained
10338 F:      fs/autofs/
10339
10340 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10341 M:      Masahiro Yamada <masahiroy@kernel.org>
10342 M:      Michal Marek <michal.lkml@markovi.net>
10343 R:      Nick Desaulniers <ndesaulniers@google.com>
10344 L:      linux-kbuild@vger.kernel.org
10345 S:      Maintained
10346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10347 F:      Documentation/kbuild/
10348 F:      Makefile
10349 F:      scripts/*vmlinux*
10350 F:      scripts/Kbuild*
10351 F:      scripts/Makefile*
10352 F:      scripts/basic/
10353 F:      scripts/dummy-tools/
10354 F:      scripts/mk*
10355 F:      scripts/mod/
10356 F:      scripts/package/
10357
10358 KERNEL JANITORS
10359 L:      kernel-janitors@vger.kernel.org
10360 S:      Odd Fixes
10361 W:      http://kernelnewbies.org/KernelJanitors
10362
10363 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10364 M:      "J. Bruce Fields" <bfields@fieldses.org>
10365 M:      Chuck Lever <chuck.lever@oracle.com>
10366 L:      linux-nfs@vger.kernel.org
10367 S:      Supported
10368 W:      http://nfs.sourceforge.net/
10369 T:      git git://linux-nfs.org/~bfields/linux.git
10370 F:      fs/lockd/
10371 F:      fs/nfs_common/
10372 F:      fs/nfsd/
10373 F:      include/linux/lockd/
10374 F:      include/linux/sunrpc/
10375 F:      include/uapi/linux/nfsd/
10376 F:      include/uapi/linux/sunrpc/
10377 F:      net/sunrpc/
10378 F:      Documentation/filesystems/nfs/
10379
10380 KERNEL REGRESSIONS
10381 M:      Thorsten Leemhuis <linux@leemhuis.info>
10382 L:      regressions@lists.linux.dev
10383 S:      Supported
10384
10385 KERNEL SELFTEST FRAMEWORK
10386 M:      Shuah Khan <shuah@kernel.org>
10387 M:      Shuah Khan <skhan@linuxfoundation.org>
10388 L:      linux-kselftest@vger.kernel.org
10389 S:      Maintained
10390 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10392 F:      Documentation/dev-tools/kselftest*
10393 F:      tools/testing/selftests/
10394
10395 KERNEL SMB3 SERVER (KSMBD)
10396 M:      Namjae Jeon <linkinjeon@kernel.org>
10397 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10398 M:      Steve French <sfrench@samba.org>
10399 M:      Hyunchul Lee <hyc.lee@gmail.com>
10400 L:      linux-cifs@vger.kernel.org
10401 S:      Maintained
10402 T:      git git://git.samba.org/ksmbd.git
10403 F:      fs/ksmbd/
10404 F:      fs/smbfs_common/
10405
10406 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10407 M:      Brendan Higgins <brendanhiggins@google.com>
10408 L:      linux-kselftest@vger.kernel.org
10409 L:      kunit-dev@googlegroups.com
10410 S:      Maintained
10411 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10412 F:      Documentation/dev-tools/kunit/
10413 F:      include/kunit/
10414 F:      lib/kunit/
10415 F:      tools/testing/kunit/
10416
10417 KERNEL USERMODE HELPER
10418 M:      Luis Chamberlain <mcgrof@kernel.org>
10419 L:      linux-kernel@vger.kernel.org
10420 S:      Maintained
10421 F:      include/linux/umh.h
10422 F:      kernel/umh.c
10423
10424 KERNEL VIRTUAL MACHINE (KVM)
10425 M:      Paolo Bonzini <pbonzini@redhat.com>
10426 L:      kvm@vger.kernel.org
10427 S:      Supported
10428 W:      http://www.linux-kvm.org
10429 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10430 F:      Documentation/virt/kvm/
10431 F:      include/asm-generic/kvm*
10432 F:      include/kvm/iodev.h
10433 F:      include/linux/kvm*
10434 F:      include/trace/events/kvm.h
10435 F:      include/uapi/asm-generic/kvm*
10436 F:      include/uapi/linux/kvm*
10437 F:      tools/kvm/
10438 F:      tools/testing/selftests/kvm/
10439 F:      virt/kvm/*
10440
10441 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10442 M:      Marc Zyngier <maz@kernel.org>
10443 R:      James Morse <james.morse@arm.com>
10444 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10445 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10447 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10448 S:      Maintained
10449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10450 F:      arch/arm64/include/asm/kvm*
10451 F:      arch/arm64/include/uapi/asm/kvm*
10452 F:      arch/arm64/kvm/
10453 F:      include/kvm/arm_*
10454 F:      tools/testing/selftests/kvm/*/aarch64/
10455 F:      tools/testing/selftests/kvm/aarch64/
10456
10457 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10458 M:      Huacai Chen <chenhuacai@kernel.org>
10459 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10460 L:      linux-mips@vger.kernel.org
10461 L:      kvm@vger.kernel.org
10462 S:      Maintained
10463 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10464 F:      arch/mips/include/asm/kvm*
10465 F:      arch/mips/include/uapi/asm/kvm*
10466 F:      arch/mips/kvm/
10467
10468 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10469 L:      linuxppc-dev@lists.ozlabs.org
10470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10471 F:      arch/powerpc/include/asm/kvm*
10472 F:      arch/powerpc/include/uapi/asm/kvm*
10473 F:      arch/powerpc/kernel/kvm*
10474 F:      arch/powerpc/kvm/
10475
10476 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10477 M:      Anup Patel <anup.patel@wdc.com>
10478 R:      Atish Patra <atish.patra@wdc.com>
10479 L:      kvm@vger.kernel.org
10480 L:      kvm-riscv@lists.infradead.org
10481 L:      linux-riscv@lists.infradead.org
10482 S:      Maintained
10483 T:      git git://github.com/kvm-riscv/linux.git
10484 F:      arch/riscv/include/asm/kvm*
10485 F:      arch/riscv/include/uapi/asm/kvm*
10486 F:      arch/riscv/kvm/
10487
10488 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10489 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10490 M:      Janosch Frank <frankja@linux.ibm.com>
10491 R:      David Hildenbrand <david@redhat.com>
10492 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10493 L:      kvm@vger.kernel.org
10494 S:      Supported
10495 W:      http://www.ibm.com/developerworks/linux/linux390/
10496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10497 F:      Documentation/virt/kvm/s390*
10498 F:      arch/s390/include/asm/gmap.h
10499 F:      arch/s390/include/asm/kvm*
10500 F:      arch/s390/include/uapi/asm/kvm*
10501 F:      arch/s390/kernel/uv.c
10502 F:      arch/s390/kvm/
10503 F:      arch/s390/mm/gmap.c
10504 F:      tools/testing/selftests/kvm/*/s390x/
10505 F:      tools/testing/selftests/kvm/s390x/
10506
10507 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10508 M:      Paolo Bonzini <pbonzini@redhat.com>
10509 R:      Sean Christopherson <seanjc@google.com>
10510 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10511 R:      Wanpeng Li <wanpengli@tencent.com>
10512 R:      Jim Mattson <jmattson@google.com>
10513 R:      Joerg Roedel <joro@8bytes.org>
10514 L:      kvm@vger.kernel.org
10515 S:      Supported
10516 W:      http://www.linux-kvm.org
10517 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10518 F:      arch/x86/include/asm/kvm*
10519 F:      arch/x86/include/asm/pvclock-abi.h
10520 F:      arch/x86/include/asm/svm.h
10521 F:      arch/x86/include/asm/vmx*.h
10522 F:      arch/x86/include/uapi/asm/kvm*
10523 F:      arch/x86/include/uapi/asm/svm.h
10524 F:      arch/x86/include/uapi/asm/vmx.h
10525 F:      arch/x86/kernel/kvm.c
10526 F:      arch/x86/kernel/kvmclock.c
10527 F:      arch/x86/kvm/
10528 F:      arch/x86/kvm/*/
10529
10530 KERNFS
10531 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10532 M:      Tejun Heo <tj@kernel.org>
10533 S:      Supported
10534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10535 F:      fs/kernfs/
10536 F:      include/linux/kernfs.h
10537
10538 KEXEC
10539 M:      Eric Biederman <ebiederm@xmission.com>
10540 L:      kexec@lists.infradead.org
10541 S:      Maintained
10542 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10543 F:      include/linux/kexec.h
10544 F:      include/uapi/linux/kexec.h
10545 F:      kernel/kexec*
10546
10547 KEYS-ENCRYPTED
10548 M:      Mimi Zohar <zohar@linux.ibm.com>
10549 L:      linux-integrity@vger.kernel.org
10550 L:      keyrings@vger.kernel.org
10551 S:      Supported
10552 F:      Documentation/security/keys/trusted-encrypted.rst
10553 F:      include/keys/encrypted-type.h
10554 F:      security/keys/encrypted-keys/
10555
10556 KEYS-TRUSTED
10557 M:      James Bottomley <jejb@linux.ibm.com>
10558 M:      Jarkko Sakkinen <jarkko@kernel.org>
10559 M:      Mimi Zohar <zohar@linux.ibm.com>
10560 L:      linux-integrity@vger.kernel.org
10561 L:      keyrings@vger.kernel.org
10562 S:      Supported
10563 F:      Documentation/security/keys/trusted-encrypted.rst
10564 F:      include/keys/trusted-type.h
10565 F:      include/keys/trusted_tpm.h
10566 F:      security/keys/trusted-keys/
10567
10568 KEYS-TRUSTED-TEE
10569 M:      Sumit Garg <sumit.garg@linaro.org>
10570 L:      linux-integrity@vger.kernel.org
10571 L:      keyrings@vger.kernel.org
10572 S:      Supported
10573 F:      include/keys/trusted_tee.h
10574 F:      security/keys/trusted-keys/trusted_tee.c
10575
10576 KEYS/KEYRINGS
10577 M:      David Howells <dhowells@redhat.com>
10578 M:      Jarkko Sakkinen <jarkko@kernel.org>
10579 L:      keyrings@vger.kernel.org
10580 S:      Maintained
10581 F:      Documentation/security/keys/core.rst
10582 F:      include/keys/
10583 F:      include/linux/key-type.h
10584 F:      include/linux/key.h
10585 F:      include/linux/keyctl.h
10586 F:      include/uapi/linux/keyctl.h
10587 F:      security/keys/
10588
10589 KFENCE
10590 M:      Alexander Potapenko <glider@google.com>
10591 M:      Marco Elver <elver@google.com>
10592 R:      Dmitry Vyukov <dvyukov@google.com>
10593 L:      kasan-dev@googlegroups.com
10594 S:      Maintained
10595 F:      Documentation/dev-tools/kfence.rst
10596 F:      arch/*/include/asm/kfence.h
10597 F:      include/linux/kfence.h
10598 F:      lib/Kconfig.kfence
10599 F:      mm/kfence/
10600
10601 KFIFO
10602 M:      Stefani Seibold <stefani@seibold.net>
10603 S:      Maintained
10604 F:      include/linux/kfifo.h
10605 F:      lib/kfifo.c
10606 F:      samples/kfifo/
10607
10608 KGDB / KDB /debug_core
10609 M:      Jason Wessel <jason.wessel@windriver.com>
10610 M:      Daniel Thompson <daniel.thompson@linaro.org>
10611 R:      Douglas Anderson <dianders@chromium.org>
10612 L:      kgdb-bugreport@lists.sourceforge.net
10613 S:      Maintained
10614 W:      http://kgdb.wiki.kernel.org/
10615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10616 F:      Documentation/dev-tools/kgdb.rst
10617 F:      drivers/misc/kgdbts.c
10618 F:      drivers/tty/serial/kgdboc.c
10619 F:      include/linux/kdb.h
10620 F:      include/linux/kgdb.h
10621 F:      kernel/debug/
10622
10623 KHADAS MCU MFD DRIVER
10624 M:      Neil Armstrong <narmstrong@baylibre.com>
10625 L:      linux-amlogic@lists.infradead.org
10626 S:      Maintained
10627 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10628 F:      drivers/mfd/khadas-mcu.c
10629 F:      include/linux/mfd/khadas-mcu.h
10630 F:      drivers/thermal/khadas_mcu_fan.c
10631
10632 KMEMLEAK
10633 M:      Catalin Marinas <catalin.marinas@arm.com>
10634 S:      Maintained
10635 F:      Documentation/dev-tools/kmemleak.rst
10636 F:      include/linux/kmemleak.h
10637 F:      mm/kmemleak.c
10638 F:      samples/kmemleak/kmemleak-test.c
10639
10640 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10641 M:      Luis Chamberlain <mcgrof@kernel.org>
10642 L:      linux-kernel@vger.kernel.org
10643 S:      Maintained
10644 F:      include/linux/kmod.h
10645 F:      kernel/kmod.c
10646 F:      lib/test_kmod.c
10647 F:      tools/testing/selftests/kmod/
10648
10649 KPROBES
10650 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10651 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10652 M:      "David S. Miller" <davem@davemloft.net>
10653 M:      Masami Hiramatsu <mhiramat@kernel.org>
10654 S:      Maintained
10655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10656 F:      Documentation/trace/kprobes.rst
10657 F:      include/asm-generic/kprobes.h
10658 F:      include/linux/kprobes.h
10659 F:      kernel/kprobes.c
10660 F:      lib/test_kprobes.c
10661 F:      samples/kprobes
10662
10663 KS0108 LCD CONTROLLER DRIVER
10664 M:      Miguel Ojeda <ojeda@kernel.org>
10665 S:      Maintained
10666 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10667 F:      drivers/auxdisplay/ks0108.c
10668 F:      include/linux/ks0108.h
10669
10670 KTD253 BACKLIGHT DRIVER
10671 M:      Linus Walleij <linus.walleij@linaro.org>
10672 S:      Maintained
10673 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10674 F:      drivers/video/backlight/ktd253-backlight.c
10675
10676 KTEST
10677 M:      Steven Rostedt <rostedt@goodmis.org>
10678 M:      John Hawley <warthog9@eaglescrag.net>
10679 S:      Maintained
10680 F:      tools/testing/ktest
10681
10682 L3MDEV
10683 M:      David Ahern <dsahern@kernel.org>
10684 L:      netdev@vger.kernel.org
10685 S:      Maintained
10686 F:      include/net/l3mdev.h
10687 F:      net/l3mdev
10688
10689 L7 BPF FRAMEWORK
10690 M:      John Fastabend <john.fastabend@gmail.com>
10691 M:      Daniel Borkmann <daniel@iogearbox.net>
10692 M:      Jakub Sitnicki <jakub@cloudflare.com>
10693 M:      Lorenz Bauer <lmb@cloudflare.com>
10694 L:      netdev@vger.kernel.org
10695 L:      bpf@vger.kernel.org
10696 S:      Maintained
10697 F:      include/linux/skmsg.h
10698 F:      net/core/skmsg.c
10699 F:      net/core/sock_map.c
10700 F:      net/ipv4/tcp_bpf.c
10701 F:      net/ipv4/udp_bpf.c
10702 F:      net/unix/unix_bpf.c
10703
10704 LANDLOCK SECURITY MODULE
10705 M:      Mickaël Salaün <mic@digikod.net>
10706 L:      linux-security-module@vger.kernel.org
10707 S:      Supported
10708 W:      https://landlock.io
10709 T:      git https://github.com/landlock-lsm/linux.git
10710 F:      Documentation/security/landlock.rst
10711 F:      Documentation/userspace-api/landlock.rst
10712 F:      include/uapi/linux/landlock.h
10713 F:      samples/landlock/
10714 F:      security/landlock/
10715 F:      tools/testing/selftests/landlock/
10716 K:      landlock
10717 K:      LANDLOCK
10718
10719 LANTIQ / INTEL Ethernet drivers
10720 M:      Hauke Mehrtens <hauke@hauke-m.de>
10721 L:      netdev@vger.kernel.org
10722 S:      Maintained
10723 F:      drivers/net/dsa/lantiq_gswip.c
10724 F:      drivers/net/dsa/lantiq_pce.h
10725 F:      drivers/net/ethernet/lantiq_xrx200.c
10726 F:      net/dsa/tag_gswip.c
10727
10728 LANTIQ MIPS ARCHITECTURE
10729 M:      John Crispin <john@phrozen.org>
10730 L:      linux-mips@vger.kernel.org
10731 S:      Maintained
10732 F:      arch/mips/lantiq
10733 F:      drivers/soc/lantiq
10734
10735 LASI 53c700 driver for PARISC
10736 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10737 L:      linux-scsi@vger.kernel.org
10738 S:      Maintained
10739 F:      Documentation/scsi/53c700.rst
10740 F:      drivers/scsi/53c700*
10741
10742 LEAKING_ADDRESSES
10743 M:      Tobin C. Harding <me@tobin.cc>
10744 M:      Tycho Andersen <tycho@tycho.pizza>
10745 L:      linux-hardening@vger.kernel.org
10746 S:      Maintained
10747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10748 F:      scripts/leaking_addresses.pl
10749
10750 LED SUBSYSTEM
10751 M:      Pavel Machek <pavel@ucw.cz>
10752 L:      linux-leds@vger.kernel.org
10753 S:      Maintained
10754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10755 F:      Documentation/devicetree/bindings/leds/
10756 F:      drivers/leds/
10757 F:      include/linux/leds.h
10758
10759 LEGACY EEPROM DRIVER
10760 M:      Jean Delvare <jdelvare@suse.com>
10761 S:      Maintained
10762 F:      Documentation/misc-devices/eeprom.rst
10763 F:      drivers/misc/eeprom/eeprom.c
10764
10765 LEGO MINDSTORMS EV3
10766 R:      David Lechner <david@lechnology.com>
10767 S:      Maintained
10768 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10769 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10770 F:      drivers/power/supply/lego_ev3_battery.c
10771
10772 LEGO USB Tower driver
10773 M:      Juergen Stuber <starblue@users.sourceforge.net>
10774 L:      legousb-devel@lists.sourceforge.net
10775 S:      Maintained
10776 W:      http://legousb.sourceforge.net/
10777 F:      drivers/usb/misc/legousbtower.c
10778
10779 LG LAPTOP EXTRAS
10780 M:      Matan Ziv-Av <matan@svgalib.org>
10781 L:      platform-driver-x86@vger.kernel.org
10782 S:      Maintained
10783 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10784 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10785 F:      drivers/platform/x86/lg-laptop.c
10786
10787 LG2160 MEDIA DRIVER
10788 M:      Michael Krufky <mkrufky@linuxtv.org>
10789 L:      linux-media@vger.kernel.org
10790 S:      Maintained
10791 W:      https://linuxtv.org
10792 W:      http://github.com/mkrufky
10793 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10794 T:      git git://linuxtv.org/mkrufky/tuners.git
10795 F:      drivers/media/dvb-frontends/lg2160.*
10796
10797 LGDT3305 MEDIA DRIVER
10798 M:      Michael Krufky <mkrufky@linuxtv.org>
10799 L:      linux-media@vger.kernel.org
10800 S:      Maintained
10801 W:      https://linuxtv.org
10802 W:      http://github.com/mkrufky
10803 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10804 T:      git git://linuxtv.org/mkrufky/tuners.git
10805 F:      drivers/media/dvb-frontends/lgdt3305.*
10806
10807 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10808 M:      Viresh Kumar <vireshk@kernel.org>
10809 L:      linux-ide@vger.kernel.org
10810 S:      Maintained
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10812 F:      drivers/ata/pata_arasan_cf.c
10813 F:      include/linux/pata_arasan_cf_data.h
10814
10815 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10816 M:      Linus Walleij <linus.walleij@linaro.org>
10817 L:      linux-ide@vger.kernel.org
10818 S:      Maintained
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10820 F:      drivers/ata/pata_ftide010.c
10821 F:      drivers/ata/sata_gemini.c
10822 F:      drivers/ata/sata_gemini.h
10823
10824 LIBATA SATA AHCI PLATFORM devices support
10825 M:      Hans de Goede <hdegoede@redhat.com>
10826 M:      Jens Axboe <axboe@kernel.dk>
10827 L:      linux-ide@vger.kernel.org
10828 S:      Maintained
10829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10830 F:      drivers/ata/ahci_platform.c
10831 F:      drivers/ata/libahci_platform.c
10832 F:      include/linux/ahci_platform.h
10833
10834 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10835 M:      Mikael Pettersson <mikpelinux@gmail.com>
10836 L:      linux-ide@vger.kernel.org
10837 S:      Maintained
10838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10839 F:      drivers/ata/sata_promise.*
10840
10841 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10842 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10843 L:      linux-ide@vger.kernel.org
10844 S:      Maintained
10845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10846 F:      Documentation/devicetree/bindings/ata/
10847 F:      drivers/ata/
10848 F:      include/linux/ata.h
10849 F:      include/linux/libata.h
10850
10851 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10852 M:      Dan Williams <dan.j.williams@intel.com>
10853 M:      Vishal Verma <vishal.l.verma@intel.com>
10854 M:      Dave Jiang <dave.jiang@intel.com>
10855 L:      nvdimm@lists.linux.dev
10856 S:      Supported
10857 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10858 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10859 F:      drivers/nvdimm/blk.c
10860 F:      drivers/nvdimm/region_devs.c
10861
10862 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10863 M:      Vishal Verma <vishal.l.verma@intel.com>
10864 M:      Dan Williams <dan.j.williams@intel.com>
10865 M:      Dave Jiang <dave.jiang@intel.com>
10866 L:      nvdimm@lists.linux.dev
10867 S:      Supported
10868 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10869 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10870 F:      drivers/nvdimm/btt*
10871
10872 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10873 M:      Dan Williams <dan.j.williams@intel.com>
10874 M:      Vishal Verma <vishal.l.verma@intel.com>
10875 M:      Dave Jiang <dave.jiang@intel.com>
10876 L:      nvdimm@lists.linux.dev
10877 S:      Supported
10878 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10879 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10880 F:      drivers/nvdimm/pmem*
10881
10882 LIBNVDIMM: DEVICETREE BINDINGS
10883 M:      Oliver O'Halloran <oohall@gmail.com>
10884 L:      nvdimm@lists.linux.dev
10885 S:      Supported
10886 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10887 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10888 F:      drivers/nvdimm/of_pmem.c
10889
10890 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10891 M:      Dan Williams <dan.j.williams@intel.com>
10892 M:      Vishal Verma <vishal.l.verma@intel.com>
10893 M:      Dave Jiang <dave.jiang@intel.com>
10894 M:      Ira Weiny <ira.weiny@intel.com>
10895 L:      nvdimm@lists.linux.dev
10896 S:      Supported
10897 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10898 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10900 F:      drivers/acpi/nfit/*
10901 F:      drivers/nvdimm/*
10902 F:      include/linux/libnvdimm.h
10903 F:      include/linux/nd.h
10904 F:      include/uapi/linux/ndctl.h
10905 F:      tools/testing/nvdimm/
10906
10907 LICENSES and SPDX stuff
10908 M:      Thomas Gleixner <tglx@linutronix.de>
10909 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10910 L:      linux-spdx@vger.kernel.org
10911 S:      Maintained
10912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10913 F:      COPYING
10914 F:      Documentation/process/license-rules.rst
10915 F:      LICENSES/
10916 F:      scripts/spdxcheck-test.sh
10917 F:      scripts/spdxcheck.py
10918
10919 LINEAR RANGES HELPERS
10920 M:      Mark Brown <broonie@kernel.org>
10921 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10922 F:      lib/linear_ranges.c
10923 F:      lib/test_linear_ranges.c
10924 F:      include/linux/linear_range.h
10925
10926 LINUX FOR POWER MACINTOSH
10927 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10928 L:      linuxppc-dev@lists.ozlabs.org
10929 S:      Odd Fixes
10930 F:      arch/powerpc/platforms/powermac/
10931 F:      drivers/macintosh/
10932
10933 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10934 M:      Michael Ellerman <mpe@ellerman.id.au>
10935 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10936 R:      Paul Mackerras <paulus@samba.org>
10937 L:      linuxppc-dev@lists.ozlabs.org
10938 S:      Supported
10939 W:      https://github.com/linuxppc/wiki/wiki
10940 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10942 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10943 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10944 F:      Documentation/devicetree/bindings/powerpc/
10945 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10946 F:      Documentation/powerpc/
10947 F:      arch/powerpc/
10948 F:      drivers/*/*/*pasemi*
10949 F:      drivers/*/*pasemi*
10950 F:      drivers/char/tpm/tpm_ibmvtpm*
10951 F:      drivers/crypto/nx/
10952 F:      drivers/crypto/vmx/
10953 F:      drivers/i2c/busses/i2c-opal.c
10954 F:      drivers/net/ethernet/ibm/ibmveth.*
10955 F:      drivers/net/ethernet/ibm/ibmvnic.*
10956 F:      drivers/pci/hotplug/pnv_php.c
10957 F:      drivers/pci/hotplug/rpa*
10958 F:      drivers/rtc/rtc-opal.c
10959 F:      drivers/scsi/ibmvscsi/
10960 F:      drivers/tty/hvc/hvc_opal.c
10961 F:      drivers/watchdog/wdrtas.c
10962 F:      tools/testing/selftests/powerpc
10963 N:      /pmac
10964 N:      powermac
10965 N:      powernv
10966 N:      [^a-z0-9]ps3
10967 N:      pseries
10968
10969 LINUX FOR POWERPC EMBEDDED MPC5XXX
10970 M:      Anatolij Gustschin <agust@denx.de>
10971 L:      linuxppc-dev@lists.ozlabs.org
10972 S:      Odd Fixes
10973 F:      arch/powerpc/platforms/512x/
10974 F:      arch/powerpc/platforms/52xx/
10975
10976 LINUX FOR POWERPC EMBEDDED PPC4XX
10977 L:      linuxppc-dev@lists.ozlabs.org
10978 S:      Orphan
10979 F:      arch/powerpc/platforms/40x/
10980 F:      arch/powerpc/platforms/44x/
10981
10982 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10983 M:      Scott Wood <oss@buserror.net>
10984 L:      linuxppc-dev@lists.ozlabs.org
10985 S:      Odd fixes
10986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10987 F:      Documentation/devicetree/bindings/powerpc/fsl/
10988 F:      arch/powerpc/platforms/83xx/
10989 F:      arch/powerpc/platforms/85xx/
10990
10991 LINUX FOR POWERPC EMBEDDED PPC8XX
10992 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10993 L:      linuxppc-dev@lists.ozlabs.org
10994 S:      Maintained
10995 F:      arch/powerpc/platforms/8xx/
10996
10997 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10998 M:      Kees Cook <keescook@chromium.org>
10999 S:      Maintained
11000 F:      drivers/misc/lkdtm/*
11001 F:      tools/testing/selftests/lkdtm/*
11002
11003 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11004 M:      Alan Stern <stern@rowland.harvard.edu>
11005 M:      Andrea Parri <parri.andrea@gmail.com>
11006 M:      Will Deacon <will@kernel.org>
11007 M:      Peter Zijlstra <peterz@infradead.org>
11008 M:      Boqun Feng <boqun.feng@gmail.com>
11009 M:      Nicholas Piggin <npiggin@gmail.com>
11010 M:      David Howells <dhowells@redhat.com>
11011 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11012 M:      Luc Maranget <luc.maranget@inria.fr>
11013 M:      "Paul E. McKenney" <paulmck@kernel.org>
11014 R:      Akira Yokosawa <akiyks@gmail.com>
11015 R:      Daniel Lustig <dlustig@nvidia.com>
11016 R:      Joel Fernandes <joel@joelfernandes.org>
11017 L:      linux-kernel@vger.kernel.org
11018 L:      linux-arch@vger.kernel.org
11019 S:      Supported
11020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11021 F:      Documentation/atomic_bitops.txt
11022 F:      Documentation/atomic_t.txt
11023 F:      Documentation/core-api/refcount-vs-atomic.rst
11024 F:      Documentation/litmus-tests/
11025 F:      Documentation/memory-barriers.txt
11026 F:      tools/memory-model/
11027
11028 LIS3LV02D ACCELEROMETER DRIVER
11029 M:      Eric Piel <eric.piel@tremplin-utc.net>
11030 S:      Maintained
11031 F:      Documentation/misc-devices/lis3lv02d.rst
11032 F:      drivers/misc/lis3lv02d/
11033 F:      drivers/platform/x86/hp_accel.c
11034
11035 LIST KUNIT TEST
11036 M:      David Gow <davidgow@google.com>
11037 L:      linux-kselftest@vger.kernel.org
11038 L:      kunit-dev@googlegroups.com
11039 S:      Maintained
11040 F:      lib/list-test.c
11041
11042 LITEX PLATFORM
11043 M:      Karol Gugala <kgugala@antmicro.com>
11044 M:      Mateusz Holenko <mholenko@antmicro.com>
11045 S:      Maintained
11046 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11047 F:      arch/openrisc/boot/dts/or1klitex.dts
11048 F:      drivers/soc/litex/litex_soc_ctrl.c
11049 F:      drivers/tty/serial/liteuart.c
11050 F:      include/linux/litex.h
11051
11052 LIVE PATCHING
11053 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11054 M:      Jiri Kosina <jikos@kernel.org>
11055 M:      Miroslav Benes <mbenes@suse.cz>
11056 M:      Petr Mladek <pmladek@suse.com>
11057 R:      Joe Lawrence <joe.lawrence@redhat.com>
11058 L:      live-patching@vger.kernel.org
11059 S:      Maintained
11060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11061 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11062 F:      Documentation/livepatch/
11063 F:      arch/powerpc/include/asm/livepatch.h
11064 F:      arch/s390/include/asm/livepatch.h
11065 F:      arch/x86/include/asm/livepatch.h
11066 F:      include/linux/livepatch.h
11067 F:      kernel/livepatch/
11068 F:      lib/livepatch/
11069 F:      samples/livepatch/
11070 F:      tools/testing/selftests/livepatch/
11071
11072 LLC (802.2)
11073 L:      netdev@vger.kernel.org
11074 S:      Odd fixes
11075 F:      include/linux/llc.h
11076 F:      include/net/llc*
11077 F:      include/uapi/linux/llc.h
11078 F:      net/llc/
11079
11080 LM73 HARDWARE MONITOR DRIVER
11081 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11082 L:      linux-hwmon@vger.kernel.org
11083 S:      Maintained
11084 F:      drivers/hwmon/lm73.c
11085
11086 LM78 HARDWARE MONITOR DRIVER
11087 M:      Jean Delvare <jdelvare@suse.com>
11088 L:      linux-hwmon@vger.kernel.org
11089 S:      Maintained
11090 F:      Documentation/hwmon/lm78.rst
11091 F:      drivers/hwmon/lm78.c
11092
11093 LM83 HARDWARE MONITOR DRIVER
11094 M:      Jean Delvare <jdelvare@suse.com>
11095 L:      linux-hwmon@vger.kernel.org
11096 S:      Maintained
11097 F:      Documentation/hwmon/lm83.rst
11098 F:      drivers/hwmon/lm83.c
11099
11100 LM90 HARDWARE MONITOR DRIVER
11101 M:      Jean Delvare <jdelvare@suse.com>
11102 L:      linux-hwmon@vger.kernel.org
11103 S:      Maintained
11104 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11105 F:      Documentation/hwmon/lm90.rst
11106 F:      drivers/hwmon/lm90.c
11107 F:      include/dt-bindings/thermal/lm90.h
11108
11109 LM95234 HARDWARE MONITOR DRIVER
11110 M:      Guenter Roeck <linux@roeck-us.net>
11111 L:      linux-hwmon@vger.kernel.org
11112 S:      Maintained
11113 F:      Documentation/hwmon/lm95234.rst
11114 F:      drivers/hwmon/lm95234.c
11115
11116 LME2510 MEDIA DRIVER
11117 M:      Malcolm Priestley <tvboxspy@gmail.com>
11118 L:      linux-media@vger.kernel.org
11119 S:      Maintained
11120 W:      https://linuxtv.org
11121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11122 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11123
11124 LOADPIN SECURITY MODULE
11125 M:      Kees Cook <keescook@chromium.org>
11126 S:      Supported
11127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11128 F:      Documentation/admin-guide/LSM/LoadPin.rst
11129 F:      security/loadpin/
11130
11131 LOCKING PRIMITIVES
11132 M:      Peter Zijlstra <peterz@infradead.org>
11133 M:      Ingo Molnar <mingo@redhat.com>
11134 M:      Will Deacon <will@kernel.org>
11135 R:      Waiman Long <longman@redhat.com>
11136 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11137 L:      linux-kernel@vger.kernel.org
11138 S:      Maintained
11139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11140 F:      Documentation/locking/
11141 F:      arch/*/include/asm/spinlock*.h
11142 F:      include/linux/lockdep.h
11143 F:      include/linux/mutex*.h
11144 F:      include/linux/rwlock*.h
11145 F:      include/linux/rwsem*.h
11146 F:      include/linux/seqlock.h
11147 F:      include/linux/spinlock*.h
11148 F:      kernel/locking/
11149 F:      lib/locking*.[ch]
11150 X:      kernel/locking/locktorture.c
11151
11152 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11153 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11154 L:      linux-ntfs-dev@lists.sourceforge.net
11155 S:      Maintained
11156 W:      http://www.linux-ntfs.org/content/view/19/37/
11157 F:      Documentation/admin-guide/ldm.rst
11158 F:      block/partitions/ldm.*
11159
11160 LOGITECH HID GAMING KEYBOARDS
11161 M:      Hans de Goede <hdegoede@redhat.com>
11162 L:      linux-input@vger.kernel.org
11163 S:      Maintained
11164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11165 F:      drivers/hid/hid-lg-g15.c
11166
11167 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11168 M:      Adrien Grassein <adrien.grassein@gmail.com>
11169 S:      Maintained
11170 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11171 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11172
11173 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11174 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11175 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11176 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11177 L:      MPT-FusionLinux.pdl@broadcom.com
11178 L:      linux-scsi@vger.kernel.org
11179 S:      Supported
11180 W:      http://www.avagotech.com/support/
11181 F:      drivers/message/fusion/
11182 F:      drivers/scsi/mpt3sas/
11183
11184 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11185 M:      Matthew Wilcox <willy@infradead.org>
11186 L:      linux-scsi@vger.kernel.org
11187 S:      Maintained
11188 F:      drivers/scsi/sym53c8xx_2/
11189
11190 LTC1660 DAC DRIVER
11191 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11192 L:      linux-iio@vger.kernel.org
11193 S:      Maintained
11194 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11195 F:      drivers/iio/dac/ltc1660.c
11196
11197 LTC2947 HARDWARE MONITOR DRIVER
11198 M:      Nuno Sá <nuno.sa@analog.com>
11199 L:      linux-hwmon@vger.kernel.org
11200 S:      Supported
11201 W:      http://ez.analog.com/community/linux-device-drivers
11202 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11203 F:      drivers/hwmon/ltc2947-core.c
11204 F:      drivers/hwmon/ltc2947-i2c.c
11205 F:      drivers/hwmon/ltc2947-spi.c
11206 F:      drivers/hwmon/ltc2947.h
11207
11208 LTC2983 IIO TEMPERATURE DRIVER
11209 M:      Nuno Sá <nuno.sa@analog.com>
11210 L:      linux-iio@vger.kernel.org
11211 S:      Supported
11212 W:      http://ez.analog.com/community/linux-device-drivers
11213 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11214 F:      drivers/iio/temperature/ltc2983.c
11215
11216 LTC4261 HARDWARE MONITOR DRIVER
11217 M:      Guenter Roeck <linux@roeck-us.net>
11218 L:      linux-hwmon@vger.kernel.org
11219 S:      Maintained
11220 F:      Documentation/hwmon/ltc4261.rst
11221 F:      drivers/hwmon/ltc4261.c
11222
11223 LTC4306 I2C MULTIPLEXER DRIVER
11224 M:      Michael Hennerich <michael.hennerich@analog.com>
11225 L:      linux-i2c@vger.kernel.org
11226 S:      Supported
11227 W:      http://ez.analog.com/community/linux-device-drivers
11228 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11229 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11230
11231 LTP (Linux Test Project)
11232 M:      Mike Frysinger <vapier@gentoo.org>
11233 M:      Cyril Hrubis <chrubis@suse.cz>
11234 M:      Wanlong Gao <wanlong.gao@gmail.com>
11235 M:      Jan Stancek <jstancek@redhat.com>
11236 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11237 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11238 L:      ltp@lists.linux.it (subscribers-only)
11239 S:      Maintained
11240 W:      http://linux-test-project.github.io/
11241 T:      git git://github.com/linux-test-project/ltp.git
11242
11243 LYNX PCS MODULE
11244 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11245 L:      netdev@vger.kernel.org
11246 S:      Supported
11247 F:      drivers/net/pcs/pcs-lynx.c
11248 F:      include/linux/pcs-lynx.h
11249
11250 M68K ARCHITECTURE
11251 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11252 L:      linux-m68k@lists.linux-m68k.org
11253 S:      Maintained
11254 W:      http://www.linux-m68k.org/
11255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11256 F:      arch/m68k/
11257 F:      drivers/zorro/
11258
11259 M68K ON APPLE MACINTOSH
11260 M:      Joshua Thompson <funaho@jurai.org>
11261 L:      linux-m68k@lists.linux-m68k.org
11262 S:      Maintained
11263 W:      http://www.mac.linux-m68k.org/
11264 F:      arch/m68k/mac/
11265 F:      drivers/macintosh/adb-iop.c
11266 F:      drivers/macintosh/via-macii.c
11267
11268 M68K ON HP9000/300
11269 M:      Philip Blundell <philb@gnu.org>
11270 S:      Maintained
11271 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11272 F:      arch/m68k/hp300/
11273
11274 M88DS3103 MEDIA DRIVER
11275 M:      Antti Palosaari <crope@iki.fi>
11276 L:      linux-media@vger.kernel.org
11277 S:      Maintained
11278 W:      https://linuxtv.org
11279 W:      http://palosaari.fi/linux/
11280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11281 T:      git git://linuxtv.org/anttip/media_tree.git
11282 F:      drivers/media/dvb-frontends/m88ds3103*
11283
11284 M88RS2000 MEDIA DRIVER
11285 M:      Malcolm Priestley <tvboxspy@gmail.com>
11286 L:      linux-media@vger.kernel.org
11287 S:      Maintained
11288 W:      https://linuxtv.org
11289 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11290 F:      drivers/media/dvb-frontends/m88rs2000*
11291
11292 MA901 MASTERKIT USB FM RADIO DRIVER
11293 M:      Alexey Klimov <klimov.linux@gmail.com>
11294 L:      linux-media@vger.kernel.org
11295 S:      Maintained
11296 T:      git git://linuxtv.org/media_tree.git
11297 F:      drivers/media/radio/radio-ma901.c
11298
11299 MAC80211
11300 M:      Johannes Berg <johannes@sipsolutions.net>
11301 L:      linux-wireless@vger.kernel.org
11302 S:      Maintained
11303 W:      https://wireless.wiki.kernel.org/
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11306 F:      Documentation/networking/mac80211-injection.rst
11307 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11308 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11309 F:      include/net/mac80211.h
11310 F:      net/mac80211/
11311
11312 MAILBOX API
11313 M:      Jassi Brar <jassisinghbrar@gmail.com>
11314 L:      linux-kernel@vger.kernel.org
11315 S:      Maintained
11316 F:      drivers/mailbox/
11317 F:      include/linux/mailbox_client.h
11318 F:      include/linux/mailbox_controller.h
11319 F:      include/dt-bindings/mailbox/
11320 F:      Documentation/devicetree/bindings/mailbox/
11321
11322 MAILBOX ARM MHUv2
11323 M:      Viresh Kumar <viresh.kumar@linaro.org>
11324 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11325 L:      linux-kernel@vger.kernel.org
11326 S:      Maintained
11327 F:      drivers/mailbox/arm_mhuv2.c
11328 F:      include/linux/mailbox/arm_mhuv2_message.h
11329 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11330
11331 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11332 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11333 M:      Matt Johnston <matt@codeconstruct.com.au>
11334 L:      netdev@vger.kernel.org
11335 S:      Maintained
11336 F:      Documentation/networking/mctp.rst
11337 F:      drivers/net/mctp/
11338 F:      include/net/mctp.h
11339 F:      include/net/mctpdevice.h
11340 F:      include/net/netns/mctp.h
11341 F:      net/mctp/
11342
11343 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11344 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11345 L:      linux-man@vger.kernel.org
11346 S:      Maintained
11347 W:      http://www.kernel.org/doc/man-pages
11348
11349 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11350 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11351 L:      linux-mips@vger.kernel.org
11352 S:      Maintained
11353 F:      arch/mips/boot/dts/img/pistachio*
11354
11355 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11356 M:      Andrew Lunn <andrew@lunn.ch>
11357 M:      Vivien Didelot <vivien.didelot@gmail.com>
11358 L:      netdev@vger.kernel.org
11359 S:      Maintained
11360 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11361 F:      Documentation/networking/devlink/mv88e6xxx.rst
11362 F:      drivers/net/dsa/mv88e6xxx/
11363 F:      include/linux/dsa/mv88e6xxx.h
11364 F:      include/linux/platform_data/mv88e6xxx.h
11365
11366 MARVELL ARMADA 3700 PHY DRIVERS
11367 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11368 S:      Maintained
11369 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11370 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11371 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11372 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11373
11374 MARVELL ARMADA DRM SUPPORT
11375 M:      Russell King <linux@armlinux.org.uk>
11376 S:      Maintained
11377 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11378 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11379 F:      Documentation/devicetree/bindings/display/armada/
11380 F:      drivers/gpu/drm/armada/
11381 F:      include/uapi/drm/armada_drm.h
11382
11383 MARVELL CRYPTO DRIVER
11384 M:      Boris Brezillon <bbrezillon@kernel.org>
11385 M:      Arnaud Ebalard <arno@natisbad.org>
11386 M:      Srujana Challa <schalla@marvell.com>
11387 L:      linux-crypto@vger.kernel.org
11388 S:      Maintained
11389 F:      drivers/crypto/marvell/
11390 F:      include/linux/soc/marvell/octeontx2/
11391
11392 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11393 M:      Mirko Lindner <mlindner@marvell.com>
11394 M:      Stephen Hemminger <stephen@networkplumber.org>
11395 L:      netdev@vger.kernel.org
11396 S:      Maintained
11397 F:      drivers/net/ethernet/marvell/sk*
11398
11399 MARVELL LIBERTAS WIRELESS DRIVER
11400 L:      libertas-dev@lists.infradead.org
11401 S:      Orphan
11402 F:      drivers/net/wireless/marvell/libertas/
11403
11404 MARVELL MACCHIATOBIN SUPPORT
11405 M:      Russell King <linux@armlinux.org.uk>
11406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11407 S:      Maintained
11408 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11409
11410 MARVELL MV643XX ETHERNET DRIVER
11411 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11412 L:      netdev@vger.kernel.org
11413 S:      Maintained
11414 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11415 F:      include/linux/mv643xx.h
11416
11417 MARVELL MV88X3310 PHY DRIVER
11418 M:      Russell King <linux@armlinux.org.uk>
11419 M:      Marek Behún <kabel@kernel.org>
11420 L:      netdev@vger.kernel.org
11421 S:      Maintained
11422 F:      drivers/net/phy/marvell10g.c
11423
11424 MARVELL MVEBU THERMAL DRIVER
11425 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11426 S:      Maintained
11427 F:      drivers/thermal/armada_thermal.c
11428
11429 MARVELL MVNETA ETHERNET DRIVER
11430 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11431 L:      netdev@vger.kernel.org
11432 S:      Maintained
11433 F:      drivers/net/ethernet/marvell/mvneta.*
11434
11435 MARVELL MVPP2 ETHERNET DRIVER
11436 M:      Marcin Wojtas <mw@semihalf.com>
11437 M:      Russell King <linux@armlinux.org.uk>
11438 L:      netdev@vger.kernel.org
11439 S:      Maintained
11440 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11441 F:      drivers/net/ethernet/marvell/mvpp2/
11442
11443 MARVELL MWIFIEX WIRELESS DRIVER
11444 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11445 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11446 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11447 M:      Xinming Hu <huxinming820@gmail.com>
11448 L:      linux-wireless@vger.kernel.org
11449 S:      Maintained
11450 F:      drivers/net/wireless/marvell/mwifiex/
11451
11452 MARVELL MWL8K WIRELESS DRIVER
11453 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11454 L:      linux-wireless@vger.kernel.org
11455 S:      Odd Fixes
11456 F:      drivers/net/wireless/marvell/mwl8k.c
11457
11458 MARVELL NAND CONTROLLER DRIVER
11459 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11460 L:      linux-mtd@lists.infradead.org
11461 S:      Maintained
11462 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11463 F:      drivers/mtd/nand/raw/marvell_nand.c
11464
11465 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11466 M:      Sunil Goutham <sgoutham@marvell.com>
11467 M:      Geetha sowjanya <gakula@marvell.com>
11468 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11469 M:      hariprasad <hkelam@marvell.com>
11470 L:      netdev@vger.kernel.org
11471 S:      Supported
11472 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11473 F:      include/linux/soc/marvell/octeontx2/
11474
11475 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11476 M:      Sunil Goutham <sgoutham@marvell.com>
11477 M:      Linu Cherian <lcherian@marvell.com>
11478 M:      Geetha sowjanya <gakula@marvell.com>
11479 M:      Jerin Jacob <jerinj@marvell.com>
11480 M:      hariprasad <hkelam@marvell.com>
11481 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11482 L:      netdev@vger.kernel.org
11483 S:      Supported
11484 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11485 F:      drivers/net/ethernet/marvell/octeontx2/af/
11486
11487 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11488 M:      Taras Chornyi <tchornyi@marvell.com>
11489 S:      Supported
11490 W:      https://github.com/Marvell-switching/switchdev-prestera
11491 F:      drivers/net/ethernet/marvell/prestera/
11492
11493 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11494 M:      Nicolas Pitre <nico@fluxnic.net>
11495 S:      Odd Fixes
11496 F:      drivers/mmc/host/mvsdio.*
11497
11498 MARVELL USB MDIO CONTROLLER DRIVER
11499 M:      Tobias Waldekranz <tobias@waldekranz.com>
11500 L:      netdev@vger.kernel.org
11501 S:      Maintained
11502 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11503 F:      drivers/net/mdio/mdio-mvusb.c
11504
11505 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11506 M:      Hu Ziji <huziji@marvell.com>
11507 L:      linux-mmc@vger.kernel.org
11508 S:      Supported
11509 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11510 F:      drivers/mmc/host/sdhci-xenon*
11511
11512 MATROX FRAMEBUFFER DRIVER
11513 L:      linux-fbdev@vger.kernel.org
11514 S:      Orphan
11515 F:      drivers/video/fbdev/matrox/matroxfb_*
11516 F:      include/uapi/linux/matroxfb.h
11517
11518 MAX15301 DRIVER
11519 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11520 L:      linux-hwmon@vger.kernel.org
11521 S:      Maintained
11522 F:      Documentation/hwmon/max15301.rst
11523 F:      drivers/hwmon/pmbus/max15301.c
11524
11525 MAX16065 HARDWARE MONITOR DRIVER
11526 M:      Guenter Roeck <linux@roeck-us.net>
11527 L:      linux-hwmon@vger.kernel.org
11528 S:      Maintained
11529 F:      Documentation/hwmon/max16065.rst
11530 F:      drivers/hwmon/max16065.c
11531
11532 MAX2175 SDR TUNER DRIVER
11533 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11534 L:      linux-media@vger.kernel.org
11535 S:      Maintained
11536 T:      git git://linuxtv.org/media_tree.git
11537 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11538 F:      Documentation/userspace-api/media/drivers/max2175.rst
11539 F:      drivers/media/i2c/max2175*
11540 F:      include/uapi/linux/max2175.h
11541
11542 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11543 L:      linux-hwmon@vger.kernel.org
11544 S:      Orphan
11545 F:      Documentation/hwmon/max6650.rst
11546 F:      drivers/hwmon/max6650.c
11547
11548 MAX6697 HARDWARE MONITOR DRIVER
11549 M:      Guenter Roeck <linux@roeck-us.net>
11550 L:      linux-hwmon@vger.kernel.org
11551 S:      Maintained
11552 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11553 F:      Documentation/hwmon/max6697.rst
11554 F:      drivers/hwmon/max6697.c
11555 F:      include/linux/platform_data/max6697.h
11556
11557 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11558 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11559 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11560 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11561 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11562 L:      linux-media@vger.kernel.org
11563 S:      Maintained
11564 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11565 F:      drivers/media/i2c/max9286.c
11566
11567 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11568 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11569 L:      linux-media@vger.kernel.org
11570 S:      Maintained
11571 F:      drivers/staging/media/max96712/max96712.c
11572
11573 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11574 M:      Peter Rosin <peda@axentia.se>
11575 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11576 S:      Maintained
11577 F:      Documentation/devicetree/bindings/sound/max9860.txt
11578 F:      sound/soc/codecs/max9860.*
11579
11580 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11581 M:      Andreas Klinger <ak@it-klinger.de>
11582 L:      linux-iio@vger.kernel.org
11583 S:      Maintained
11584 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11585 F:      drivers/iio/proximity/mb1232.c
11586
11587 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11588 R:      Iskren Chernev <iskren.chernev@gmail.com>
11589 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11590 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11591 R:      Matheus Castello <matheus@castello.eng.br>
11592 L:      linux-pm@vger.kernel.org
11593 S:      Maintained
11594 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11595 F:      drivers/power/supply/max17040_battery.c
11596
11597 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11598 R:      Hans de Goede <hdegoede@redhat.com>
11599 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11600 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11601 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11602 R:      Purism Kernel Team <kernel@puri.sm>
11603 L:      linux-pm@vger.kernel.org
11604 S:      Maintained
11605 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11606 F:      drivers/power/supply/max17042_battery.c
11607
11608 MAXIM MAX77650 PMIC MFD DRIVER
11609 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11610 L:      linux-kernel@vger.kernel.org
11611 S:      Maintained
11612 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11613 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11614 F:      drivers/gpio/gpio-max77650.c
11615 F:      drivers/input/misc/max77650-onkey.c
11616 F:      drivers/leds/leds-max77650.c
11617 F:      drivers/mfd/max77650.c
11618 F:      drivers/power/supply/max77650-charger.c
11619 F:      drivers/regulator/max77650-regulator.c
11620 F:      include/linux/mfd/max77650.h
11621
11622 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11623 M:      Javier Martinez Canillas <javier@dowhile0.org>
11624 L:      linux-kernel@vger.kernel.org
11625 S:      Supported
11626 F:      Documentation/devicetree/bindings/*/*max77802.txt
11627 F:      drivers/regulator/max77802-regulator.c
11628 F:      include/dt-bindings/*/*max77802.h
11629
11630 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11631 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11632 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11633 L:      linux-pm@vger.kernel.org
11634 S:      Supported
11635 F:      drivers/power/supply/max14577_charger.c
11636 F:      drivers/power/supply/max77693_charger.c
11637
11638 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11639 M:      Chanwoo Choi <cw00.choi@samsung.com>
11640 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11641 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11642 L:      linux-kernel@vger.kernel.org
11643 S:      Supported
11644 F:      Documentation/devicetree/bindings/*/max77686.txt
11645 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11646 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11647 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11648 F:      drivers/*/max14577*.c
11649 F:      drivers/*/max77686*.c
11650 F:      drivers/*/max77693*.c
11651 F:      drivers/clk/clk-max77686.c
11652 F:      drivers/extcon/extcon-max14577.c
11653 F:      drivers/extcon/extcon-max77693.c
11654 F:      drivers/rtc/rtc-max77686.c
11655 F:      include/linux/mfd/max14577*.h
11656 F:      include/linux/mfd/max77686*.h
11657 F:      include/linux/mfd/max77693*.h
11658
11659 MAXIRADIO FM RADIO RECEIVER DRIVER
11660 M:      Hans Verkuil <hverkuil@xs4all.nl>
11661 L:      linux-media@vger.kernel.org
11662 S:      Maintained
11663 W:      https://linuxtv.org
11664 T:      git git://linuxtv.org/media_tree.git
11665 F:      drivers/media/radio/radio-maxiradio*
11666
11667 MAXLINEAR ETHERNET PHY DRIVER
11668 M:      Xu Liang <lxu@maxlinear.com>
11669 L:      netdev@vger.kernel.org
11670 S:      Supported
11671 F:      drivers/net/phy/mxl-gpy.c
11672
11673 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11674 R:      Yasushi SHOJI <yashi@spacecubics.com>
11675 L:      linux-can@vger.kernel.org
11676 S:      Maintained
11677 F:      drivers/net/can/usb/mcba_usb.c
11678
11679 MCAN MMIO DEVICE DRIVER
11680 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11681 L:      linux-can@vger.kernel.org
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11684 F:      drivers/net/can/m_can/m_can.c
11685 F:      drivers/net/can/m_can/m_can.h
11686 F:      drivers/net/can/m_can/m_can_platform.c
11687
11688 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11689 M:      Rishi Gupta <gupt21@gmail.com>
11690 L:      linux-i2c@vger.kernel.org
11691 L:      linux-input@vger.kernel.org
11692 S:      Maintained
11693 F:      drivers/hid/hid-mcp2221.c
11694
11695 MCP251XFD SPI-CAN NETWORK DRIVER
11696 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11697 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11698 R:      Thomas Kopp <thomas.kopp@microchip.com>
11699 L:      linux-can@vger.kernel.org
11700 S:      Maintained
11701 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11702 F:      drivers/net/can/spi/mcp251xfd/
11703
11704 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11705 M:      Peter Rosin <peda@axentia.se>
11706 L:      linux-iio@vger.kernel.org
11707 S:      Maintained
11708 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11709 F:      drivers/iio/potentiometer/mcp4018.c
11710 F:      drivers/iio/potentiometer/mcp4531.c
11711
11712 MCR20A IEEE-802.15.4 RADIO DRIVER
11713 M:      Xue Liu <liuxuenetmail@gmail.com>
11714 L:      linux-wpan@vger.kernel.org
11715 S:      Maintained
11716 W:      https://github.com/xueliu/mcr20a-linux
11717 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11718 F:      drivers/net/ieee802154/mcr20a.c
11719 F:      drivers/net/ieee802154/mcr20a.h
11720
11721 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11722 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11723 L:      linux-iio@vger.kernel.org
11724 S:      Maintained
11725 F:      drivers/iio/dac/cio-dac.c
11726
11727 MEDIA CONTROLLER FRAMEWORK
11728 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11729 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11730 L:      linux-media@vger.kernel.org
11731 S:      Supported
11732 W:      https://www.linuxtv.org
11733 T:      git git://linuxtv.org/media_tree.git
11734 F:      drivers/media/mc/
11735 F:      include/media/media-*.h
11736 F:      include/uapi/linux/media.h
11737
11738 MEDIA DRIVER FOR FREESCALE IMX PXP
11739 M:      Philipp Zabel <p.zabel@pengutronix.de>
11740 L:      linux-media@vger.kernel.org
11741 S:      Maintained
11742 T:      git git://linuxtv.org/media_tree.git
11743 F:      drivers/media/platform/imx-pxp.[ch]
11744
11745 MEDIA DRIVERS FOR ASCOT2E
11746 M:      Sergey Kozlov <serjk@netup.ru>
11747 M:      Abylay Ospan <aospan@netup.ru>
11748 L:      linux-media@vger.kernel.org
11749 S:      Supported
11750 W:      https://linuxtv.org
11751 W:      http://netup.tv/
11752 T:      git git://linuxtv.org/media_tree.git
11753 F:      drivers/media/dvb-frontends/ascot2e*
11754
11755 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11756 M:      Jasmin Jessich <jasmin@anw.at>
11757 L:      linux-media@vger.kernel.org
11758 S:      Maintained
11759 W:      https://linuxtv.org
11760 T:      git git://linuxtv.org/media_tree.git
11761 F:      drivers/media/dvb-frontends/cxd2099*
11762
11763 MEDIA DRIVERS FOR CXD2841ER
11764 M:      Sergey Kozlov <serjk@netup.ru>
11765 M:      Abylay Ospan <aospan@netup.ru>
11766 L:      linux-media@vger.kernel.org
11767 S:      Supported
11768 W:      https://linuxtv.org
11769 W:      http://netup.tv/
11770 T:      git git://linuxtv.org/media_tree.git
11771 F:      drivers/media/dvb-frontends/cxd2841er*
11772
11773 MEDIA DRIVERS FOR CXD2880
11774 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11775 L:      linux-media@vger.kernel.org
11776 S:      Supported
11777 W:      http://linuxtv.org/
11778 T:      git git://linuxtv.org/media_tree.git
11779 F:      drivers/media/dvb-frontends/cxd2880/*
11780 F:      drivers/media/spi/cxd2880*
11781
11782 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11783 L:      linux-media@vger.kernel.org
11784 S:      Orphan
11785 W:      https://linuxtv.org
11786 T:      git git://linuxtv.org/media_tree.git
11787 F:      drivers/media/pci/ddbridge/*
11788
11789 MEDIA DRIVERS FOR FREESCALE IMX
11790 M:      Steve Longerbeam <slongerbeam@gmail.com>
11791 M:      Philipp Zabel <p.zabel@pengutronix.de>
11792 L:      linux-media@vger.kernel.org
11793 S:      Maintained
11794 T:      git git://linuxtv.org/media_tree.git
11795 F:      Documentation/admin-guide/media/imx.rst
11796 F:      Documentation/devicetree/bindings/media/imx.txt
11797 F:      drivers/staging/media/imx/
11798 F:      include/linux/imx-media.h
11799 F:      include/media/imx.h
11800
11801 MEDIA DRIVERS FOR FREESCALE IMX7
11802 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11803 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11804 L:      linux-media@vger.kernel.org
11805 S:      Maintained
11806 T:      git git://linuxtv.org/media_tree.git
11807 F:      Documentation/admin-guide/media/imx7.rst
11808 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11809 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11810 F:      drivers/staging/media/imx/imx7-media-csi.c
11811 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11812
11813 MEDIA DRIVERS FOR HELENE
11814 M:      Abylay Ospan <aospan@netup.ru>
11815 L:      linux-media@vger.kernel.org
11816 S:      Supported
11817 W:      https://linuxtv.org
11818 W:      http://netup.tv/
11819 T:      git git://linuxtv.org/media_tree.git
11820 F:      drivers/media/dvb-frontends/helene*
11821
11822 MEDIA DRIVERS FOR HORUS3A
11823 M:      Sergey Kozlov <serjk@netup.ru>
11824 M:      Abylay Ospan <aospan@netup.ru>
11825 L:      linux-media@vger.kernel.org
11826 S:      Supported
11827 W:      https://linuxtv.org
11828 W:      http://netup.tv/
11829 T:      git git://linuxtv.org/media_tree.git
11830 F:      drivers/media/dvb-frontends/horus3a*
11831
11832 MEDIA DRIVERS FOR LNBH25
11833 M:      Sergey Kozlov <serjk@netup.ru>
11834 M:      Abylay Ospan <aospan@netup.ru>
11835 L:      linux-media@vger.kernel.org
11836 S:      Supported
11837 W:      https://linuxtv.org
11838 W:      http://netup.tv/
11839 T:      git git://linuxtv.org/media_tree.git
11840 F:      drivers/media/dvb-frontends/lnbh25*
11841
11842 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11843 L:      linux-media@vger.kernel.org
11844 S:      Orphan
11845 W:      https://linuxtv.org
11846 T:      git git://linuxtv.org/media_tree.git
11847 F:      drivers/media/dvb-frontends/mxl5xx*
11848
11849 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11850 M:      Sergey Kozlov <serjk@netup.ru>
11851 M:      Abylay Ospan <aospan@netup.ru>
11852 L:      linux-media@vger.kernel.org
11853 S:      Supported
11854 W:      https://linuxtv.org
11855 W:      http://netup.tv/
11856 T:      git git://linuxtv.org/media_tree.git
11857 F:      drivers/media/pci/netup_unidvb/*
11858
11859 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11860 M:      Dmitry Osipenko <digetx@gmail.com>
11861 L:      linux-media@vger.kernel.org
11862 L:      linux-tegra@vger.kernel.org
11863 S:      Maintained
11864 T:      git git://linuxtv.org/media_tree.git
11865 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11866 F:      drivers/staging/media/tegra-vde/
11867
11868 MEDIA DRIVERS FOR RENESAS - CEU
11869 M:      Jacopo Mondi <jacopo@jmondi.org>
11870 L:      linux-media@vger.kernel.org
11871 L:      linux-renesas-soc@vger.kernel.org
11872 S:      Supported
11873 T:      git git://linuxtv.org/media_tree.git
11874 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11875 F:      drivers/media/platform/renesas-ceu.c
11876 F:      include/media/drv-intf/renesas-ceu.h
11877
11878 MEDIA DRIVERS FOR RENESAS - DRIF
11879 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11880 L:      linux-media@vger.kernel.org
11881 L:      linux-renesas-soc@vger.kernel.org
11882 S:      Supported
11883 T:      git git://linuxtv.org/media_tree.git
11884 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11885 F:      drivers/media/platform/rcar_drif.c
11886
11887 MEDIA DRIVERS FOR RENESAS - FCP
11888 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11889 L:      linux-media@vger.kernel.org
11890 L:      linux-renesas-soc@vger.kernel.org
11891 S:      Supported
11892 T:      git git://linuxtv.org/media_tree.git
11893 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11894 F:      drivers/media/platform/rcar-fcp.c
11895 F:      include/media/rcar-fcp.h
11896
11897 MEDIA DRIVERS FOR RENESAS - FDP1
11898 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11899 L:      linux-media@vger.kernel.org
11900 L:      linux-renesas-soc@vger.kernel.org
11901 S:      Supported
11902 T:      git git://linuxtv.org/media_tree.git
11903 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11904 F:      drivers/media/platform/rcar_fdp1.c
11905
11906 MEDIA DRIVERS FOR RENESAS - VIN
11907 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11908 L:      linux-media@vger.kernel.org
11909 L:      linux-renesas-soc@vger.kernel.org
11910 S:      Supported
11911 T:      git git://linuxtv.org/media_tree.git
11912 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11913 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11914 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11915 F:      drivers/media/platform/rcar-isp.c
11916 F:      drivers/media/platform/rcar-vin/
11917
11918 MEDIA DRIVERS FOR RENESAS - VSP1
11919 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11920 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11921 L:      linux-media@vger.kernel.org
11922 L:      linux-renesas-soc@vger.kernel.org
11923 S:      Supported
11924 T:      git git://linuxtv.org/media_tree.git
11925 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11926 F:      drivers/media/platform/vsp1/
11927
11928 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11929 L:      linux-media@vger.kernel.org
11930 S:      Orphan
11931 W:      https://linuxtv.org
11932 T:      git git://linuxtv.org/media_tree.git
11933 F:      drivers/media/dvb-frontends/stv0910*
11934
11935 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11936 L:      linux-media@vger.kernel.org
11937 S:      Orphan
11938 W:      https://linuxtv.org
11939 T:      git git://linuxtv.org/media_tree.git
11940 F:      drivers/media/dvb-frontends/stv6111*
11941
11942 MEDIA DRIVERS FOR STM32 - DCMI
11943 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11944 L:      linux-media@vger.kernel.org
11945 S:      Supported
11946 T:      git git://linuxtv.org/media_tree.git
11947 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11948 F:      drivers/media/platform/stm32/stm32-dcmi.c
11949
11950 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11951 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11952 L:      linux-media@vger.kernel.org
11953 S:      Maintained
11954 W:      https://linuxtv.org
11955 Q:      http://patchwork.kernel.org/project/linux-media/list/
11956 T:      git git://linuxtv.org/media_tree.git
11957 F:      Documentation/admin-guide/media/
11958 F:      Documentation/devicetree/bindings/media/
11959 F:      Documentation/driver-api/media/
11960 F:      Documentation/userspace-api/media/
11961 F:      drivers/media/
11962 F:      drivers/staging/media/
11963 F:      include/linux/platform_data/media/
11964 F:      include/media/
11965 F:      include/uapi/linux/dvb/
11966 F:      include/uapi/linux/ivtv*
11967 F:      include/uapi/linux/media.h
11968 F:      include/uapi/linux/meye.h
11969 F:      include/uapi/linux/uvcvideo.h
11970 F:      include/uapi/linux/v4l2-*
11971 F:      include/uapi/linux/videodev2.h
11972
11973 MEDIATEK BLUETOOTH DRIVER
11974 M:      Sean Wang <sean.wang@mediatek.com>
11975 L:      linux-bluetooth@vger.kernel.org
11976 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11977 S:      Maintained
11978 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11979 F:      drivers/bluetooth/btmtkuart.c
11980
11981 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11982 M:      Sean Wang <sean.wang@mediatek.com>
11983 L:      linux-pm@vger.kernel.org
11984 S:      Maintained
11985 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11986 F:      drivers/power/reset/mt6323-poweroff.c
11987
11988 MEDIATEK CIR DRIVER
11989 M:      Sean Wang <sean.wang@mediatek.com>
11990 S:      Maintained
11991 F:      drivers/media/rc/mtk-cir.c
11992
11993 MEDIATEK DMA DRIVER
11994 M:      Sean Wang <sean.wang@mediatek.com>
11995 L:      dmaengine@vger.kernel.org
11996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11997 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11998 S:      Maintained
11999 F:      Documentation/devicetree/bindings/dma/mtk-*
12000 F:      drivers/dma/mediatek/
12001
12002 MEDIATEK ETHERNET DRIVER
12003 M:      Felix Fietkau <nbd@nbd.name>
12004 M:      John Crispin <john@phrozen.org>
12005 M:      Sean Wang <sean.wang@mediatek.com>
12006 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12007 L:      netdev@vger.kernel.org
12008 S:      Maintained
12009 F:      drivers/net/ethernet/mediatek/
12010
12011 MEDIATEK I2C CONTROLLER DRIVER
12012 M:      Qii Wang <qii.wang@mediatek.com>
12013 L:      linux-i2c@vger.kernel.org
12014 S:      Maintained
12015 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12016 F:      drivers/i2c/busses/i2c-mt65xx.c
12017
12018 MEDIATEK IOMMU DRIVER
12019 M:      Yong Wu <yong.wu@mediatek.com>
12020 L:      iommu@lists.linux-foundation.org
12021 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12022 S:      Supported
12023 F:      Documentation/devicetree/bindings/iommu/mediatek*
12024 F:      drivers/iommu/mtk_iommu*
12025 F:      include/dt-bindings/memory/mt*-port.h
12026
12027 MEDIATEK JPEG DRIVER
12028 M:      Rick Chang <rick.chang@mediatek.com>
12029 M:      Bin Liu <bin.liu@mediatek.com>
12030 S:      Supported
12031 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12032 F:      drivers/media/platform/mtk-jpeg/
12033
12034 MEDIATEK MDP DRIVER
12035 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12036 M:      Houlong Wei <houlong.wei@mediatek.com>
12037 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12038 S:      Supported
12039 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12040 F:      drivers/media/platform/mtk-mdp/
12041 F:      drivers/media/platform/mtk-vpu/
12042
12043 MEDIATEK MEDIA DRIVER
12044 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12045 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12046 S:      Supported
12047 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12048 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12049 F:      drivers/media/platform/mtk-vcodec/
12050 F:      drivers/media/platform/mtk-vpu/
12051
12052 MEDIATEK MMC/SD/SDIO DRIVER
12053 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12054 S:      Maintained
12055 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12056 F:      drivers/mmc/host/mtk-sd.c
12057
12058 MEDIATEK MT76 WIRELESS LAN DRIVER
12059 M:      Felix Fietkau <nbd@nbd.name>
12060 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12061 M:      Ryder Lee <ryder.lee@mediatek.com>
12062 R:      Shayne Chen <shayne.chen@mediatek.com>
12063 R:      Sean Wang <sean.wang@mediatek.com>
12064 L:      linux-wireless@vger.kernel.org
12065 S:      Maintained
12066 F:      drivers/net/wireless/mediatek/mt76/
12067
12068 MEDIATEK MT7601U WIRELESS LAN DRIVER
12069 M:      Jakub Kicinski <kubakici@wp.pl>
12070 L:      linux-wireless@vger.kernel.org
12071 S:      Maintained
12072 F:      drivers/net/wireless/mediatek/mt7601u/
12073
12074 MEDIATEK MT7621 CLOCK DRIVER
12075 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12076 S:      Maintained
12077 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12078 F:      drivers/clk/ralink/clk-mt7621.c
12079
12080 MEDIATEK MT7621/28/88 I2C DRIVER
12081 M:      Stefan Roese <sr@denx.de>
12082 L:      linux-i2c@vger.kernel.org
12083 S:      Maintained
12084 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12085 F:      drivers/i2c/busses/i2c-mt7621.c
12086
12087 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12088 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12089 S:      Maintained
12090 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12091 F:      drivers/pci/controller/pcie-mt7621.c
12092
12093 MEDIATEK MT7621 PHY PCI DRIVER
12094 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12095 S:      Maintained
12096 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12097 F:      drivers/phy/ralink/phy-mt7621-pci.c
12098
12099 MEDIATEK NAND CONTROLLER DRIVER
12100 L:      linux-mtd@lists.infradead.org
12101 S:      Orphan
12102 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12103 F:      drivers/mtd/nand/raw/mtk_*
12104
12105 MEDIATEK PMIC LED DRIVER
12106 M:      Sean Wang <sean.wang@mediatek.com>
12107 S:      Maintained
12108 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12109 F:      drivers/leds/leds-mt6323.c
12110
12111 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12112 M:      Sean Wang <sean.wang@mediatek.com>
12113 S:      Maintained
12114 F:      drivers/char/hw_random/mtk-rng.c
12115
12116 MEDIATEK SMI DRIVER
12117 M:      Yong Wu <yong.wu@mediatek.com>
12118 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12119 S:      Supported
12120 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12121 F:      drivers/memory/mtk-smi.c
12122 F:      include/soc/mediatek/smi.h
12123
12124 MEDIATEK SWITCH DRIVER
12125 M:      Sean Wang <sean.wang@mediatek.com>
12126 M:      Landen Chao <Landen.Chao@mediatek.com>
12127 M:      DENG Qingfang <dqfext@gmail.com>
12128 L:      netdev@vger.kernel.org
12129 S:      Maintained
12130 F:      drivers/net/dsa/mt7530.*
12131 F:      net/dsa/tag_mtk.c
12132
12133 MEDIATEK USB3 DRD IP DRIVER
12134 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12135 L:      linux-usb@vger.kernel.org
12136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12137 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12138 S:      Maintained
12139 F:      Documentation/devicetree/bindings/usb/mediatek,*
12140 F:      drivers/usb/host/xhci-mtk*
12141 F:      drivers/usb/mtu3/
12142
12143 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12144 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12145 M:      Martin Donnelly <martin.donnelly@ge.com>
12146 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12147 S:      Maintained
12148 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12149 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12150
12151 MEGARAID SCSI/SAS DRIVERS
12152 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12153 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12154 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12155 L:      megaraidlinux.pdl@broadcom.com
12156 L:      linux-scsi@vger.kernel.org
12157 S:      Maintained
12158 W:      http://www.avagotech.com/support/
12159 F:      Documentation/scsi/megaraid.rst
12160 F:      drivers/scsi/megaraid.*
12161 F:      drivers/scsi/megaraid/
12162
12163 MELEXIS MLX90614 DRIVER
12164 M:      Crt Mori <cmo@melexis.com>
12165 L:      linux-iio@vger.kernel.org
12166 S:      Supported
12167 W:      http://www.melexis.com
12168 F:      drivers/iio/temperature/mlx90614.c
12169
12170 MELEXIS MLX90632 DRIVER
12171 M:      Crt Mori <cmo@melexis.com>
12172 L:      linux-iio@vger.kernel.org
12173 S:      Supported
12174 W:      http://www.melexis.com
12175 F:      drivers/iio/temperature/mlx90632.c
12176
12177 MELFAS MIP4 TOUCHSCREEN DRIVER
12178 M:      Sangwon Jee <jeesw@melfas.com>
12179 S:      Supported
12180 W:      http://www.melfas.com
12181 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12182 F:      drivers/input/touchscreen/melfas_mip4.c
12183
12184 MELLANOX BLUEFIELD I2C DRIVER
12185 M:      Khalil Blaiech <kblaiech@nvidia.com>
12186 L:      linux-i2c@vger.kernel.org
12187 S:      Supported
12188 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12189 F:      drivers/i2c/busses/i2c-mlxbf.c
12190
12191 MELLANOX ETHERNET DRIVER (mlx4_en)
12192 M:      Tariq Toukan <tariqt@nvidia.com>
12193 L:      netdev@vger.kernel.org
12194 S:      Supported
12195 W:      http://www.mellanox.com
12196 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12197 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12198
12199 MELLANOX ETHERNET DRIVER (mlx5e)
12200 M:      Saeed Mahameed <saeedm@nvidia.com>
12201 L:      netdev@vger.kernel.org
12202 S:      Supported
12203 W:      http://www.mellanox.com
12204 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12205 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12206
12207 MELLANOX ETHERNET INNOVA DRIVERS
12208 R:      Boris Pismenny <borisp@nvidia.com>
12209 L:      netdev@vger.kernel.org
12210 S:      Supported
12211 W:      http://www.mellanox.com
12212 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12213 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12214 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12215 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12216 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12217
12218 MELLANOX ETHERNET SWITCH DRIVERS
12219 M:      Ido Schimmel <idosch@nvidia.com>
12220 M:      Petr Machata <petrm@nvidia.com>
12221 L:      netdev@vger.kernel.org
12222 S:      Supported
12223 W:      http://www.mellanox.com
12224 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12225 F:      drivers/net/ethernet/mellanox/mlxsw/
12226 F:      tools/testing/selftests/drivers/net/mlxsw/
12227
12228 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12229 M:      mlxsw@nvidia.com
12230 L:      netdev@vger.kernel.org
12231 S:      Supported
12232 W:      http://www.mellanox.com
12233 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12234 F:      drivers/net/ethernet/mellanox/mlxfw/
12235
12236 MELLANOX HARDWARE PLATFORM SUPPORT
12237 M:      Hans de Goede <hdegoede@redhat.com>
12238 M:      Mark Gross <markgross@kernel.org>
12239 M:      Vadim Pasternak <vadimp@nvidia.com>
12240 L:      platform-driver-x86@vger.kernel.org
12241 S:      Supported
12242 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12243 F:      drivers/platform/mellanox/
12244 F:      include/linux/platform_data/mlxreg.h
12245
12246 MELLANOX MLX4 core VPI driver
12247 M:      Tariq Toukan <tariqt@nvidia.com>
12248 L:      netdev@vger.kernel.org
12249 L:      linux-rdma@vger.kernel.org
12250 S:      Supported
12251 W:      http://www.mellanox.com
12252 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12253 F:      drivers/net/ethernet/mellanox/mlx4/
12254 F:      include/linux/mlx4/
12255
12256 MELLANOX MLX4 IB driver
12257 M:      Yishai Hadas <yishaih@nvidia.com>
12258 L:      linux-rdma@vger.kernel.org
12259 S:      Supported
12260 W:      http://www.mellanox.com
12261 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12262 F:      drivers/infiniband/hw/mlx4/
12263 F:      include/linux/mlx4/
12264 F:      include/uapi/rdma/mlx4-abi.h
12265
12266 MELLANOX MLX5 core VPI driver
12267 M:      Saeed Mahameed <saeedm@nvidia.com>
12268 M:      Leon Romanovsky <leonro@nvidia.com>
12269 L:      netdev@vger.kernel.org
12270 L:      linux-rdma@vger.kernel.org
12271 S:      Supported
12272 W:      http://www.mellanox.com
12273 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12274 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12275 F:      drivers/net/ethernet/mellanox/mlx5/core/
12276 F:      include/linux/mlx5/
12277
12278 MELLANOX MLX5 IB driver
12279 M:      Leon Romanovsky <leonro@nvidia.com>
12280 L:      linux-rdma@vger.kernel.org
12281 S:      Supported
12282 W:      http://www.mellanox.com
12283 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12284 F:      drivers/infiniband/hw/mlx5/
12285 F:      include/linux/mlx5/
12286 F:      include/uapi/rdma/mlx5-abi.h
12287
12288 MELLANOX MLXCPLD I2C AND MUX DRIVER
12289 M:      Vadim Pasternak <vadimp@nvidia.com>
12290 M:      Michael Shych <michaelsh@nvidia.com>
12291 L:      linux-i2c@vger.kernel.org
12292 S:      Supported
12293 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12294 F:      drivers/i2c/busses/i2c-mlxcpld.c
12295 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12296
12297 MELLANOX MLXCPLD LED DRIVER
12298 M:      Vadim Pasternak <vadimp@nvidia.com>
12299 L:      linux-leds@vger.kernel.org
12300 S:      Supported
12301 F:      Documentation/leds/leds-mlxcpld.rst
12302 F:      drivers/leds/leds-mlxcpld.c
12303 F:      drivers/leds/leds-mlxreg.c
12304
12305 MELLANOX PLATFORM DRIVER
12306 M:      Vadim Pasternak <vadimp@nvidia.com>
12307 L:      platform-driver-x86@vger.kernel.org
12308 S:      Supported
12309 F:      drivers/platform/x86/mlx-platform.c
12310
12311 MEMBARRIER SUPPORT
12312 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12313 M:      "Paul E. McKenney" <paulmck@kernel.org>
12314 L:      linux-kernel@vger.kernel.org
12315 S:      Supported
12316 F:      arch/powerpc/include/asm/membarrier.h
12317 F:      include/uapi/linux/membarrier.h
12318 F:      kernel/sched/membarrier.c
12319
12320 MEMBLOCK
12321 M:      Mike Rapoport <rppt@linux.ibm.com>
12322 L:      linux-mm@kvack.org
12323 S:      Maintained
12324 F:      Documentation/core-api/boot-time-mm.rst
12325 F:      include/linux/memblock.h
12326 F:      mm/memblock.c
12327
12328 MEMORY CONTROLLER DRIVERS
12329 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12330 L:      linux-kernel@vger.kernel.org
12331 S:      Maintained
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12333 F:      Documentation/devicetree/bindings/memory-controllers/
12334 F:      drivers/memory/
12335 F:      include/dt-bindings/memory/
12336 F:      include/memory/
12337
12338 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12339 M:      Dmitry Osipenko <digetx@gmail.com>
12340 L:      linux-pm@vger.kernel.org
12341 L:      linux-tegra@vger.kernel.org
12342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12343 S:      Maintained
12344 F:      drivers/devfreq/tegra30-devfreq.c
12345
12346 MEMORY MANAGEMENT
12347 M:      Andrew Morton <akpm@linux-foundation.org>
12348 L:      linux-mm@kvack.org
12349 S:      Maintained
12350 W:      http://www.linux-mm.org
12351 T:      quilt https://ozlabs.org/~akpm/mmotm/
12352 T:      quilt https://ozlabs.org/~akpm/mmots/
12353 T:      git git://github.com/hnaz/linux-mm.git
12354 F:      include/linux/gfp.h
12355 F:      include/linux/memory_hotplug.h
12356 F:      include/linux/mm.h
12357 F:      include/linux/mmzone.h
12358 F:      include/linux/pagewalk.h
12359 F:      include/linux/vmalloc.h
12360 F:      mm/
12361 F:      tools/testing/selftests/vm/
12362
12363 MEMORY TECHNOLOGY DEVICES (MTD)
12364 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12365 M:      Richard Weinberger <richard@nod.at>
12366 M:      Vignesh Raghavendra <vigneshr@ti.com>
12367 L:      linux-mtd@lists.infradead.org
12368 S:      Maintained
12369 W:      http://www.linux-mtd.infradead.org/
12370 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12371 C:      irc://irc.oftc.net/mtd
12372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12374 F:      Documentation/devicetree/bindings/mtd/
12375 F:      drivers/mtd/
12376 F:      include/linux/mtd/
12377 F:      include/uapi/mtd/
12378
12379 MEN A21 WATCHDOG DRIVER
12380 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12381 L:      linux-watchdog@vger.kernel.org
12382 S:      Maintained
12383 F:      drivers/watchdog/mena21_wdt.c
12384
12385 MEN CHAMELEON BUS (mcb)
12386 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12387 S:      Maintained
12388 F:      Documentation/driver-api/men-chameleon-bus.rst
12389 F:      drivers/mcb/
12390 F:      include/linux/mcb.h
12391
12392 MEN F21BMC (Board Management Controller)
12393 M:      Andreas Werner <andreas.werner@men.de>
12394 S:      Supported
12395 F:      Documentation/hwmon/menf21bmc.rst
12396 F:      drivers/hwmon/menf21bmc_hwmon.c
12397 F:      drivers/leds/leds-menf21bmc.c
12398 F:      drivers/mfd/menf21bmc.c
12399 F:      drivers/watchdog/menf21bmc_wdt.c
12400
12401 MEN Z069 WATCHDOG DRIVER
12402 M:      Johannes Thumshirn <jth@kernel.org>
12403 L:      linux-watchdog@vger.kernel.org
12404 S:      Maintained
12405 F:      drivers/watchdog/menz69_wdt.c
12406
12407 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12408 M:      Neil Armstrong <narmstrong@baylibre.com>
12409 L:      linux-media@vger.kernel.org
12410 L:      linux-amlogic@lists.infradead.org
12411 S:      Supported
12412 W:      http://linux-meson.com/
12413 T:      git git://linuxtv.org/media_tree.git
12414 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12415 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12416 F:      drivers/media/cec/platform/meson/ao-cec.c
12417
12418 MESON GE2D DRIVER FOR AMLOGIC SOCS
12419 M:      Neil Armstrong <narmstrong@baylibre.com>
12420 L:      linux-media@vger.kernel.org
12421 L:      linux-amlogic@lists.infradead.org
12422 S:      Supported
12423 T:      git git://linuxtv.org/media_tree.git
12424 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12425 F:      drivers/media/platform/meson/ge2d/
12426
12427 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12428 M:      Liang Yang <liang.yang@amlogic.com>
12429 L:      linux-mtd@lists.infradead.org
12430 S:      Maintained
12431 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12432 F:      drivers/mtd/nand/raw/meson_*
12433
12434 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12435 M:      Neil Armstrong <narmstrong@baylibre.com>
12436 L:      linux-media@vger.kernel.org
12437 L:      linux-amlogic@lists.infradead.org
12438 S:      Supported
12439 T:      git git://linuxtv.org/media_tree.git
12440 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12441 F:      drivers/staging/media/meson/vdec/
12442
12443 METHODE UDPU SUPPORT
12444 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12445 S:      Maintained
12446 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12447
12448 MHI BUS
12449 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12450 R:      Hemant Kumar <hemantk@codeaurora.org>
12451 L:      mhi@lists.linux.dev
12452 L:      linux-arm-msm@vger.kernel.org
12453 S:      Maintained
12454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12455 F:      Documentation/ABI/stable/sysfs-bus-mhi
12456 F:      Documentation/mhi/
12457 F:      drivers/bus/mhi/
12458 F:      include/linux/mhi.h
12459
12460 MICROBLAZE ARCHITECTURE
12461 M:      Michal Simek <monstr@monstr.eu>
12462 S:      Supported
12463 W:      http://www.monstr.eu/fdt/
12464 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12465 F:      arch/microblaze/
12466
12467 MICROCHIP AT91 DMA DRIVERS
12468 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12469 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12471 L:      dmaengine@vger.kernel.org
12472 S:      Supported
12473 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12474 F:      drivers/dma/at_hdmac.c
12475 F:      drivers/dma/at_hdmac_regs.h
12476 F:      drivers/dma/at_xdmac.c
12477 F:      include/dt-bindings/dma/at91.h
12478
12479 MICROCHIP AT91 SERIAL DRIVER
12480 M:      Richard Genoud <richard.genoud@gmail.com>
12481 S:      Maintained
12482 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12483 F:      drivers/tty/serial/atmel_serial.c
12484 F:      drivers/tty/serial/atmel_serial.h
12485
12486 MICROCHIP AT91 USART MFD DRIVER
12487 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12488 L:      linux-kernel@vger.kernel.org
12489 S:      Supported
12490 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12491 F:      drivers/mfd/at91-usart.c
12492 F:      include/dt-bindings/mfd/at91-usart.h
12493
12494 MICROCHIP AT91 USART SPI DRIVER
12495 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12496 L:      linux-spi@vger.kernel.org
12497 S:      Supported
12498 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12499 F:      drivers/spi/spi-at91-usart.c
12500
12501 MICROCHIP AUDIO ASOC DRIVERS
12502 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12504 S:      Supported
12505 F:      sound/soc/atmel
12506
12507 MICROCHIP ECC DRIVER
12508 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12509 L:      linux-crypto@vger.kernel.org
12510 S:      Maintained
12511 F:      drivers/crypto/atmel-ecc.*
12512
12513 MICROCHIP EIC DRIVER
12514 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12516 S:      Supported
12517 F:      drivers/irqchip/irq-mchp-eic.c
12518
12519 MICROCHIP I2C DRIVER
12520 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12521 L:      linux-i2c@vger.kernel.org
12522 S:      Supported
12523 F:      drivers/i2c/busses/i2c-at91-*.c
12524 F:      drivers/i2c/busses/i2c-at91.h
12525
12526 MICROCHIP ISC DRIVER
12527 M:      Eugen Hristev <eugen.hristev@microchip.com>
12528 L:      linux-media@vger.kernel.org
12529 S:      Supported
12530 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12531 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12532 F:      drivers/media/platform/atmel/atmel-isc-base.c
12533 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12534 F:      drivers/media/platform/atmel/atmel-isc.h
12535 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12536 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12537 F:      include/linux/atmel-isc-media.h
12538
12539 MICROCHIP ISI DRIVER
12540 M:      Eugen Hristev <eugen.hristev@microchip.com>
12541 L:      linux-media@vger.kernel.org
12542 S:      Supported
12543 F:      drivers/media/platform/atmel/atmel-isi.c
12544 F:      drivers/media/platform/atmel/atmel-isi.h
12545
12546 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12547 M:      Woojung Huh <woojung.huh@microchip.com>
12548 M:      UNGLinuxDriver@microchip.com
12549 L:      netdev@vger.kernel.org
12550 S:      Maintained
12551 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12552 F:      drivers/net/dsa/microchip/*
12553 F:      include/linux/platform_data/microchip-ksz.h
12554 F:      net/dsa/tag_ksz.c
12555
12556 MICROCHIP LAN743X ETHERNET DRIVER
12557 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12558 M:      UNGLinuxDriver@microchip.com
12559 L:      netdev@vger.kernel.org
12560 S:      Maintained
12561 F:      drivers/net/ethernet/microchip/lan743x_*
12562
12563 MICROCHIP LAN966X ETHERNET DRIVER
12564 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12565 M:      UNGLinuxDriver@microchip.com
12566 L:      netdev@vger.kernel.org
12567 S:      Maintained
12568 F:      drivers/net/ethernet/microchip/lan966x/*
12569
12570 MICROCHIP LCDFB DRIVER
12571 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12572 L:      linux-fbdev@vger.kernel.org
12573 S:      Maintained
12574 F:      drivers/video/fbdev/atmel_lcdfb.c
12575 F:      include/video/atmel_lcdc.h
12576
12577 MICROCHIP MCP16502 PMIC DRIVER
12578 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12580 S:      Supported
12581 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12582 F:      drivers/regulator/mcp16502.c
12583
12584 MICROCHIP MCP3911 ADC DRIVER
12585 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12586 M:      Kent Gustavsson <kent@minoris.se>
12587 L:      linux-iio@vger.kernel.org
12588 S:      Supported
12589 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12590 F:      drivers/iio/adc/mcp3911.c
12591
12592 MICROCHIP MMC/SD/SDIO MCI DRIVER
12593 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12594 S:      Maintained
12595 F:      drivers/mmc/host/atmel-mci.c
12596
12597 MICROCHIP NAND DRIVER
12598 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12599 L:      linux-mtd@lists.infradead.org
12600 S:      Supported
12601 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12602 F:      drivers/mtd/nand/raw/atmel/*
12603
12604 MICROCHIP PWM DRIVER
12605 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12607 L:      linux-pwm@vger.kernel.org
12608 S:      Supported
12609 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12610 F:      drivers/pwm/pwm-atmel.c
12611
12612 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12613 M:      Eugen Hristev <eugen.hristev@microchip.com>
12614 L:      linux-iio@vger.kernel.org
12615 S:      Supported
12616 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12617 F:      drivers/iio/adc/at91-sama5d2_adc.c
12618 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12619
12620 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12621 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12622 S:      Supported
12623 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12624
12625 MICROCHIP SPI DRIVER
12626 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12627 S:      Supported
12628 F:      drivers/spi/spi-atmel.*
12629
12630 MICROCHIP SSC DRIVER
12631 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12633 S:      Supported
12634 F:      drivers/misc/atmel-ssc.c
12635 F:      include/linux/atmel-ssc.h
12636
12637 MICROCHIP USB251XB DRIVER
12638 M:      Richard Leitner <richard.leitner@skidata.com>
12639 L:      linux-usb@vger.kernel.org
12640 S:      Maintained
12641 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12642 F:      drivers/usb/misc/usb251xb.c
12643
12644 MICROCHIP USBA UDC DRIVER
12645 M:      Cristian Birsan <cristian.birsan@microchip.com>
12646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12647 S:      Supported
12648 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12649
12650 MICROCHIP WILC1000 WIFI DRIVER
12651 M:      Ajay Singh <ajay.kathat@microchip.com>
12652 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12653 L:      linux-wireless@vger.kernel.org
12654 S:      Supported
12655 F:      drivers/net/wireless/microchip/wilc1000/
12656
12657 MICROSEMI MIPS SOCS
12658 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12659 M:      UNGLinuxDriver@microchip.com
12660 L:      linux-mips@vger.kernel.org
12661 S:      Supported
12662 F:      Documentation/devicetree/bindings/mips/mscc.txt
12663 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12664 F:      arch/mips/boot/dts/mscc/
12665 F:      arch/mips/configs/generic/board-ocelot.config
12666 F:      arch/mips/generic/board-ocelot.c
12667
12668 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12669 M:      Don Brace <don.brace@microchip.com>
12670 L:      storagedev@microchip.com
12671 L:      linux-scsi@vger.kernel.org
12672 S:      Supported
12673 F:      Documentation/scsi/smartpqi.rst
12674 F:      drivers/scsi/smartpqi/Kconfig
12675 F:      drivers/scsi/smartpqi/Makefile
12676 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12677 F:      include/linux/cciss*.h
12678 F:      include/uapi/linux/cciss*.h
12679
12680 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12681 M:      Maximilian Luz <luzmaximilian@gmail.com>
12682 L:      linux-pm@vger.kernel.org
12683 L:      platform-driver-x86@vger.kernel.org
12684 S:      Maintained
12685 F:      drivers/power/supply/surface_battery.c
12686 F:      drivers/power/supply/surface_charger.c
12687
12688 MICROSOFT SURFACE DTX DRIVER
12689 M:      Maximilian Luz <luzmaximilian@gmail.com>
12690 L:      platform-driver-x86@vger.kernel.org
12691 S:      Maintained
12692 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12693 F:      drivers/platform/surface/surface_dtx.c
12694 F:      include/uapi/linux/surface_aggregator/dtx.h
12695
12696 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12697 M:      Maximilian Luz <luzmaximilian@gmail.com>
12698 L:      platform-driver-x86@vger.kernel.org
12699 S:      Maintained
12700 F:      drivers/platform/surface/surface_gpe.c
12701
12702 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12703 M:      Hans de Goede <hdegoede@redhat.com>
12704 M:      Mark Gross <markgross@kernel.org>
12705 M:      Maximilian Luz <luzmaximilian@gmail.com>
12706 L:      platform-driver-x86@vger.kernel.org
12707 S:      Maintained
12708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12709 F:      drivers/platform/surface/
12710
12711 MICROSOFT SURFACE HID TRANSPORT DRIVER
12712 M:      Maximilian Luz <luzmaximilian@gmail.com>
12713 L:      linux-input@vger.kernel.org
12714 L:      platform-driver-x86@vger.kernel.org
12715 S:      Maintained
12716 F:      drivers/hid/surface-hid/
12717
12718 MICROSOFT SURFACE HOT-PLUG DRIVER
12719 M:      Maximilian Luz <luzmaximilian@gmail.com>
12720 L:      platform-driver-x86@vger.kernel.org
12721 S:      Maintained
12722 F:      drivers/platform/surface/surface_hotplug.c
12723
12724 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12725 M:      Maximilian Luz <luzmaximilian@gmail.com>
12726 L:      platform-driver-x86@vger.kernel.org
12727 S:      Maintained
12728 F:      drivers/platform/surface/surface_platform_profile.c
12729
12730 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12731 M:      Chen Yu <yu.c.chen@intel.com>
12732 L:      platform-driver-x86@vger.kernel.org
12733 S:      Supported
12734 F:      drivers/platform/surface/surfacepro3_button.c
12735
12736 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12737 M:      Maximilian Luz <luzmaximilian@gmail.com>
12738 L:      platform-driver-x86@vger.kernel.org
12739 S:      Maintained
12740 W:      https://github.com/linux-surface/surface-aggregator-module
12741 C:      irc://irc.libera.chat/linux-surface
12742 F:      Documentation/driver-api/surface_aggregator/
12743 F:      drivers/platform/surface/aggregator/
12744 F:      drivers/platform/surface/surface_acpi_notify.c
12745 F:      drivers/platform/surface/surface_aggregator_cdev.c
12746 F:      drivers/platform/surface/surface_aggregator_registry.c
12747 F:      include/linux/surface_acpi_notify.h
12748 F:      include/linux/surface_aggregator/
12749 F:      include/uapi/linux/surface_aggregator/
12750
12751 MICROTEK X6 SCANNER
12752 M:      Oliver Neukum <oliver@neukum.org>
12753 S:      Maintained
12754 F:      drivers/usb/image/microtek.*
12755
12756 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12757 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12758 M:      Luka Perkov <luka.perkov@sartura.hr>
12759 S:      Maintained
12760 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12761 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12762 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12763 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12764 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12765 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12766
12767 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12768 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12769 L:      linux-media@vger.kernel.org
12770 S:      Maintained
12771 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12772 F:      Documentation/driver-api/media/drivers/ccs/
12773 F:      Documentation/userspace-api/media/drivers/ccs.rst
12774 F:      drivers/media/i2c/ccs-pll.c
12775 F:      drivers/media/i2c/ccs-pll.h
12776 F:      drivers/media/i2c/ccs/
12777 F:      include/uapi/linux/ccs.h
12778 F:      include/uapi/linux/smiapp.h
12779
12780 MIPS
12781 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12782 L:      linux-mips@vger.kernel.org
12783 S:      Maintained
12784 W:      http://www.linux-mips.org/
12785 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12787 F:      Documentation/devicetree/bindings/mips/
12788 F:      Documentation/mips/
12789 F:      arch/mips/
12790 F:      drivers/platform/mips/
12791
12792 MIPS BOSTON DEVELOPMENT BOARD
12793 M:      Paul Burton <paulburton@kernel.org>
12794 L:      linux-mips@vger.kernel.org
12795 S:      Maintained
12796 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12797 F:      arch/mips/boot/dts/img/boston.dts
12798 F:      arch/mips/configs/generic/board-boston.config
12799 F:      drivers/clk/imgtec/clk-boston.c
12800 F:      include/dt-bindings/clock/boston-clock.h
12801
12802 MIPS CORE DRIVERS
12803 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12804 M:      Serge Semin <fancer.lancer@gmail.com>
12805 L:      linux-mips@vger.kernel.org
12806 S:      Supported
12807 F:      drivers/bus/mips_cdmm.c
12808 F:      drivers/clocksource/mips-gic-timer.c
12809 F:      drivers/cpuidle/cpuidle-cps.c
12810 F:      drivers/irqchip/irq-mips-cpu.c
12811 F:      drivers/irqchip/irq-mips-gic.c
12812
12813 MIPS GENERIC PLATFORM
12814 M:      Paul Burton <paulburton@kernel.org>
12815 L:      linux-mips@vger.kernel.org
12816 S:      Supported
12817 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12818 F:      arch/mips/generic/
12819 F:      arch/mips/tools/generic-board-config.sh
12820
12821 MIPS RINT INSTRUCTION EMULATION
12822 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12823 L:      linux-mips@vger.kernel.org
12824 S:      Supported
12825 F:      arch/mips/math-emu/dp_rint.c
12826 F:      arch/mips/math-emu/sp_rint.c
12827
12828 MIPS/LOONGSON1 ARCHITECTURE
12829 M:      Keguang Zhang <keguang.zhang@gmail.com>
12830 L:      linux-mips@vger.kernel.org
12831 S:      Maintained
12832 F:      arch/mips/include/asm/mach-loongson32/
12833 F:      arch/mips/loongson32/
12834 F:      drivers/*/*/*loongson1*
12835 F:      drivers/*/*loongson1*
12836
12837 MIPS/LOONGSON2EF ARCHITECTURE
12838 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12839 L:      linux-mips@vger.kernel.org
12840 S:      Maintained
12841 F:      arch/mips/include/asm/mach-loongson2ef/
12842 F:      arch/mips/loongson2ef/
12843 F:      drivers/cpufreq/loongson2_cpufreq.c
12844
12845 MIPS/LOONGSON64 ARCHITECTURE
12846 M:      Huacai Chen <chenhuacai@kernel.org>
12847 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12848 L:      linux-mips@vger.kernel.org
12849 S:      Maintained
12850 F:      arch/mips/include/asm/mach-loongson64/
12851 F:      arch/mips/loongson64/
12852 F:      drivers/irqchip/irq-loongson*
12853 F:      drivers/platform/mips/cpu_hwmon.c
12854
12855 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12856 M:      Hans Verkuil <hverkuil@xs4all.nl>
12857 L:      linux-media@vger.kernel.org
12858 S:      Odd Fixes
12859 W:      https://linuxtv.org
12860 T:      git git://linuxtv.org/media_tree.git
12861 F:      drivers/media/radio/radio-miropcm20*
12862
12863 MMP SUPPORT
12864 R:      Lubomir Rintel <lkundrak@v3.sk>
12865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12866 S:      Odd Fixes
12867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12868 F:      arch/arm/boot/dts/mmp*
12869 F:      arch/arm/mach-mmp/
12870 F:      include/linux/soc/mmp/
12871
12872 MMP USB PHY DRIVERS
12873 R:      Lubomir Rintel <lkundrak@v3.sk>
12874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12875 S:      Maintained
12876 F:      drivers/phy/marvell/phy-mmp3-usb.c
12877 F:      drivers/phy/marvell/phy-pxa-usb.c
12878
12879 MMU GATHER AND TLB INVALIDATION
12880 M:      Will Deacon <will@kernel.org>
12881 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12882 M:      Andrew Morton <akpm@linux-foundation.org>
12883 M:      Nick Piggin <npiggin@gmail.com>
12884 M:      Peter Zijlstra <peterz@infradead.org>
12885 L:      linux-arch@vger.kernel.org
12886 L:      linux-mm@kvack.org
12887 S:      Maintained
12888 F:      arch/*/include/asm/tlb.h
12889 F:      include/asm-generic/tlb.h
12890 F:      mm/mmu_gather.c
12891
12892 MN88472 MEDIA DRIVER
12893 M:      Antti Palosaari <crope@iki.fi>
12894 L:      linux-media@vger.kernel.org
12895 S:      Maintained
12896 W:      https://linuxtv.org
12897 W:      http://palosaari.fi/linux/
12898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12899 F:      drivers/media/dvb-frontends/mn88472*
12900
12901 MN88473 MEDIA DRIVER
12902 M:      Antti Palosaari <crope@iki.fi>
12903 L:      linux-media@vger.kernel.org
12904 S:      Maintained
12905 W:      https://linuxtv.org
12906 W:      http://palosaari.fi/linux/
12907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12908 F:      drivers/media/dvb-frontends/mn88473*
12909
12910 MODULE SUPPORT
12911 M:      Luis Chamberlain <mcgrof@kernel.org>
12912 M:      Jessica Yu <jeyu@kernel.org>
12913 S:      Maintained
12914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12915 F:      include/linux/module.h
12916 F:      kernel/module.c
12917
12918 MONOLITHIC POWER SYSTEM PMIC DRIVER
12919 M:      Saravanan Sekar <sravanhome@gmail.com>
12920 S:      Maintained
12921 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12922 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12923 F:      drivers/iio/adc/mp2629_adc.c
12924 F:      drivers/mfd/mp2629.c
12925 F:      drivers/power/supply/mp2629_charger.c
12926 F:      drivers/regulator/mp5416.c
12927 F:      drivers/regulator/mpq7920.c
12928 F:      drivers/regulator/mpq7920.h
12929 F:      include/linux/mfd/mp2629.h
12930
12931 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12932 S:      Orphan
12933 W:      http://popies.net/meye/
12934 F:      Documentation/userspace-api/media/drivers/meye*
12935 F:      drivers/media/pci/meye/
12936 F:      include/uapi/linux/meye.h
12937
12938 MOTORCOMM PHY DRIVER
12939 M:      Peter Geis <pgwipeout@gmail.com>
12940 L:      netdev@vger.kernel.org
12941 S:      Maintained
12942 F:      drivers/net/phy/motorcomm.c
12943
12944 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12945 M:      Jiri Slaby <jirislaby@kernel.org>
12946 S:      Maintained
12947 F:      Documentation/driver-api/serial/moxa-smartio.rst
12948 F:      drivers/tty/mxser.*
12949
12950 MR800 AVERMEDIA USB FM RADIO DRIVER
12951 M:      Alexey Klimov <klimov.linux@gmail.com>
12952 L:      linux-media@vger.kernel.org
12953 S:      Maintained
12954 T:      git git://linuxtv.org/media_tree.git
12955 F:      drivers/media/radio/radio-mr800.c
12956
12957 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12958 M:      Alan Ott <alan@signal11.us>
12959 L:      linux-wpan@vger.kernel.org
12960 S:      Maintained
12961 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12962 F:      drivers/net/ieee802154/mrf24j40.c
12963
12964 MSI LAPTOP SUPPORT
12965 M:      "Lee, Chun-Yi" <jlee@suse.com>
12966 L:      platform-driver-x86@vger.kernel.org
12967 S:      Maintained
12968 F:      drivers/platform/x86/msi-laptop.c
12969
12970 MSI WMI SUPPORT
12971 L:      platform-driver-x86@vger.kernel.org
12972 S:      Orphan
12973 F:      drivers/platform/x86/msi-wmi.c
12974
12975 MSI001 MEDIA DRIVER
12976 M:      Antti Palosaari <crope@iki.fi>
12977 L:      linux-media@vger.kernel.org
12978 S:      Maintained
12979 W:      https://linuxtv.org
12980 W:      http://palosaari.fi/linux/
12981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12982 T:      git git://linuxtv.org/anttip/media_tree.git
12983 F:      drivers/media/tuners/msi001*
12984
12985 MSI2500 MEDIA DRIVER
12986 M:      Antti Palosaari <crope@iki.fi>
12987 L:      linux-media@vger.kernel.org
12988 S:      Maintained
12989 W:      https://linuxtv.org
12990 W:      http://palosaari.fi/linux/
12991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12992 T:      git git://linuxtv.org/anttip/media_tree.git
12993 F:      drivers/media/usb/msi2500/
12994
12995 MSTAR INTERRUPT CONTROLLER DRIVER
12996 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12997 M:      Daniel Palmer <daniel@thingy.jp>
12998 S:      Maintained
12999 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13000 F:      drivers/irqchip/irq-mst-intc.c
13001
13002 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13003 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13004 L:      linux-mtd@lists.infradead.org
13005 S:      Maintained
13006 F:      drivers/mtd/devices/docg3*
13007
13008 MT9M032 APTINA SENSOR DRIVER
13009 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13010 L:      linux-media@vger.kernel.org
13011 S:      Maintained
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      drivers/media/i2c/mt9m032.c
13014 F:      include/media/i2c/mt9m032.h
13015
13016 MT9P031 APTINA CAMERA SENSOR
13017 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13018 L:      linux-media@vger.kernel.org
13019 S:      Maintained
13020 T:      git git://linuxtv.org/media_tree.git
13021 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13022 F:      drivers/media/i2c/mt9p031.c
13023 F:      include/media/i2c/mt9p031.h
13024
13025 MT9T001 APTINA CAMERA SENSOR
13026 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13027 L:      linux-media@vger.kernel.org
13028 S:      Maintained
13029 T:      git git://linuxtv.org/media_tree.git
13030 F:      drivers/media/i2c/mt9t001.c
13031 F:      include/media/i2c/mt9t001.h
13032
13033 MT9T112 APTINA CAMERA SENSOR
13034 M:      Jacopo Mondi <jacopo@jmondi.org>
13035 L:      linux-media@vger.kernel.org
13036 S:      Odd Fixes
13037 T:      git git://linuxtv.org/media_tree.git
13038 F:      drivers/media/i2c/mt9t112.c
13039 F:      include/media/i2c/mt9t112.h
13040
13041 MT9V032 APTINA CAMERA SENSOR
13042 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13043 L:      linux-media@vger.kernel.org
13044 S:      Maintained
13045 T:      git git://linuxtv.org/media_tree.git
13046 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13047 F:      drivers/media/i2c/mt9v032.c
13048 F:      include/media/i2c/mt9v032.h
13049
13050 MT9V111 APTINA CAMERA SENSOR
13051 M:      Jacopo Mondi <jacopo@jmondi.org>
13052 L:      linux-media@vger.kernel.org
13053 S:      Maintained
13054 T:      git git://linuxtv.org/media_tree.git
13055 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13056 F:      drivers/media/i2c/mt9v111.c
13057
13058 MULTIFUNCTION DEVICES (MFD)
13059 M:      Lee Jones <lee.jones@linaro.org>
13060 S:      Supported
13061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13062 F:      Documentation/devicetree/bindings/mfd/
13063 F:      drivers/mfd/
13064 F:      include/dt-bindings/mfd/
13065 F:      include/linux/mfd/
13066
13067 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13068 S:      Orphan
13069 F:      drivers/mmc/host/mmc_spi.c
13070 F:      include/linux/spi/mmc_spi.h
13071
13072 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13073 M:      Ulf Hansson <ulf.hansson@linaro.org>
13074 L:      linux-mmc@vger.kernel.org
13075 S:      Maintained
13076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13077 F:      Documentation/devicetree/bindings/mmc/
13078 F:      drivers/mmc/
13079 F:      include/linux/mmc/
13080 F:      include/uapi/linux/mmc/
13081
13082 MULTIPLEXER SUBSYSTEM
13083 M:      Peter Rosin <peda@axentia.se>
13084 S:      Maintained
13085 F:      Documentation/ABI/testing/sysfs-class-mux*
13086 F:      Documentation/devicetree/bindings/mux/
13087 F:      drivers/mux/
13088 F:      include/dt-bindings/mux/
13089 F:      include/linux/mux/
13090
13091 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13092 M:      Bin Liu <b-liu@ti.com>
13093 L:      linux-usb@vger.kernel.org
13094 S:      Maintained
13095 F:      drivers/usb/musb/
13096
13097 MXL301RF MEDIA DRIVER
13098 M:      Akihiro Tsukada <tskd08@gmail.com>
13099 L:      linux-media@vger.kernel.org
13100 S:      Odd Fixes
13101 F:      drivers/media/tuners/mxl301rf*
13102
13103 MXL5007T MEDIA DRIVER
13104 M:      Michael Krufky <mkrufky@linuxtv.org>
13105 L:      linux-media@vger.kernel.org
13106 S:      Maintained
13107 W:      https://linuxtv.org
13108 W:      http://github.com/mkrufky
13109 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13110 T:      git git://linuxtv.org/mkrufky/tuners.git
13111 F:      drivers/media/tuners/mxl5007t.*
13112
13113 MXSFB DRM DRIVER
13114 M:      Marek Vasut <marex@denx.de>
13115 M:      Stefan Agner <stefan@agner.ch>
13116 L:      dri-devel@lists.freedesktop.org
13117 S:      Supported
13118 T:      git git://anongit.freedesktop.org/drm/drm-misc
13119 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13120 F:      drivers/gpu/drm/mxsfb/
13121
13122 MYLEX DAC960 PCI RAID Controller
13123 M:      Hannes Reinecke <hare@kernel.org>
13124 L:      linux-scsi@vger.kernel.org
13125 S:      Supported
13126 F:      drivers/scsi/myrb.*
13127 F:      drivers/scsi/myrs.*
13128
13129 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13130 M:      Chris Lee <christopher.lee@cspi.com>
13131 L:      netdev@vger.kernel.org
13132 S:      Supported
13133 W:      https://www.cspi.com/ethernet-products/support/downloads/
13134 F:      drivers/net/ethernet/myricom/myri10ge/
13135
13136 NAND FLASH SUBSYSTEM
13137 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13138 R:      Richard Weinberger <richard@nod.at>
13139 L:      linux-mtd@lists.infradead.org
13140 S:      Maintained
13141 W:      http://www.linux-mtd.infradead.org/
13142 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13143 C:      irc://irc.oftc.net/mtd
13144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13145 F:      drivers/mtd/nand/
13146 F:      include/linux/mtd/*nand*.h
13147
13148 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13149 M:      Daniel Mack <zonque@gmail.com>
13150 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13151 S:      Maintained
13152 W:      http://www.native-instruments.com
13153 F:      sound/usb/caiaq/
13154
13155 NATSEMI ETHERNET DRIVER (DP8381x)
13156 S:      Orphan
13157 F:      drivers/net/ethernet/natsemi/natsemi.c
13158
13159 NCR 5380 SCSI DRIVERS
13160 M:      Finn Thain <fthain@linux-m68k.org>
13161 M:      Michael Schmitz <schmitzmic@gmail.com>
13162 L:      linux-scsi@vger.kernel.org
13163 S:      Maintained
13164 F:      Documentation/scsi/g_NCR5380.rst
13165 F:      drivers/scsi/NCR5380.*
13166 F:      drivers/scsi/arm/cumana_1.c
13167 F:      drivers/scsi/arm/oak.c
13168 F:      drivers/scsi/atari_scsi.*
13169 F:      drivers/scsi/dmx3191d.c
13170 F:      drivers/scsi/g_NCR5380.*
13171 F:      drivers/scsi/mac_scsi.*
13172 F:      drivers/scsi/sun3_scsi.*
13173 F:      drivers/scsi/sun3_scsi_vme.c
13174
13175 NCSI LIBRARY
13176 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13177 S:      Maintained
13178 F:      net/ncsi/
13179
13180 NCT6775 HARDWARE MONITOR DRIVER
13181 M:      Guenter Roeck <linux@roeck-us.net>
13182 L:      linux-hwmon@vger.kernel.org
13183 S:      Maintained
13184 F:      Documentation/hwmon/nct6775.rst
13185 F:      drivers/hwmon/nct6775.c
13186
13187 NETDEVSIM
13188 M:      Jakub Kicinski <kuba@kernel.org>
13189 S:      Maintained
13190 F:      drivers/net/netdevsim/*
13191
13192 NETEM NETWORK EMULATOR
13193 M:      Stephen Hemminger <stephen@networkplumber.org>
13194 L:      netdev@vger.kernel.org
13195 S:      Maintained
13196 F:      net/sched/sch_netem.c
13197
13198 NETERION 10GbE DRIVERS (s2io/vxge)
13199 M:      Jon Mason <jdmason@kudzu.us>
13200 L:      netdev@vger.kernel.org
13201 S:      Supported
13202 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13203 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13204 F:      drivers/net/ethernet/neterion/
13205
13206 NETFILTER
13207 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13208 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13209 M:      Florian Westphal <fw@strlen.de>
13210 L:      netfilter-devel@vger.kernel.org
13211 L:      coreteam@netfilter.org
13212 S:      Maintained
13213 W:      http://www.netfilter.org/
13214 W:      http://www.iptables.org/
13215 W:      http://www.nftables.org/
13216 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13217 C:      irc://irc.libera.chat/netfilter
13218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13220 F:      include/linux/netfilter*
13221 F:      include/linux/netfilter/
13222 F:      include/net/netfilter/
13223 F:      include/uapi/linux/netfilter*
13224 F:      include/uapi/linux/netfilter/
13225 F:      net/*/netfilter.c
13226 F:      net/*/netfilter/
13227 F:      net/bridge/br_netfilter*.c
13228 F:      net/netfilter/
13229
13230 NETROM NETWORK LAYER
13231 M:      Ralf Baechle <ralf@linux-mips.org>
13232 L:      linux-hams@vger.kernel.org
13233 S:      Maintained
13234 W:      http://www.linux-ax25.org/
13235 F:      include/net/netrom.h
13236 F:      include/uapi/linux/netrom.h
13237 F:      net/netrom/
13238
13239 NETRONIX EMBEDDED CONTROLLER
13240 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13241 S:      Maintained
13242 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13243 F:      drivers/mfd/ntxec.c
13244 F:      drivers/pwm/pwm-ntxec.c
13245 F:      drivers/rtc/rtc-ntxec.c
13246 F:      include/linux/mfd/ntxec.h
13247
13248 NETRONOME ETHERNET DRIVERS
13249 M:      Simon Horman <simon.horman@corigine.com>
13250 R:      Jakub Kicinski <kuba@kernel.org>
13251 L:      oss-drivers@corigine.com
13252 S:      Maintained
13253 F:      drivers/net/ethernet/netronome/
13254
13255 NETWORK BLOCK DEVICE (NBD)
13256 M:      Josef Bacik <josef@toxicpanda.com>
13257 L:      linux-block@vger.kernel.org
13258 L:      nbd@other.debian.org
13259 S:      Maintained
13260 F:      Documentation/admin-guide/blockdev/nbd.rst
13261 F:      drivers/block/nbd.c
13262 F:      include/trace/events/nbd.h
13263 F:      include/uapi/linux/nbd.h
13264
13265 NETWORK DROP MONITOR
13266 M:      Neil Horman <nhorman@tuxdriver.com>
13267 L:      netdev@vger.kernel.org
13268 S:      Maintained
13269 W:      https://fedorahosted.org/dropwatch/
13270 F:      include/uapi/linux/net_dropmon.h
13271 F:      net/core/drop_monitor.c
13272
13273 NETWORKING DRIVERS
13274 M:      "David S. Miller" <davem@davemloft.net>
13275 M:      Jakub Kicinski <kuba@kernel.org>
13276 L:      netdev@vger.kernel.org
13277 S:      Maintained
13278 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13281 F:      Documentation/devicetree/bindings/net/
13282 F:      drivers/connector/
13283 F:      drivers/net/
13284 F:      include/linux/etherdevice.h
13285 F:      include/linux/fcdevice.h
13286 F:      include/linux/fddidevice.h
13287 F:      include/linux/hippidevice.h
13288 F:      include/linux/if_*
13289 F:      include/linux/inetdevice.h
13290 F:      include/linux/netdevice.h
13291 F:      include/uapi/linux/if_*
13292 F:      include/uapi/linux/netdevice.h
13293
13294 NETWORKING DRIVERS (WIRELESS)
13295 M:      Kalle Valo <kvalo@kernel.org>
13296 L:      linux-wireless@vger.kernel.org
13297 S:      Maintained
13298 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13301 F:      Documentation/devicetree/bindings/net/wireless/
13302 F:      drivers/net/wireless/
13303
13304 NETWORKING [DSA]
13305 M:      Andrew Lunn <andrew@lunn.ch>
13306 M:      Vivien Didelot <vivien.didelot@gmail.com>
13307 M:      Florian Fainelli <f.fainelli@gmail.com>
13308 M:      Vladimir Oltean <olteanv@gmail.com>
13309 S:      Maintained
13310 F:      Documentation/devicetree/bindings/net/dsa/
13311 F:      drivers/net/dsa/
13312 F:      include/linux/dsa/
13313 F:      include/linux/platform_data/dsa.h
13314 F:      include/net/dsa.h
13315 F:      net/dsa/
13316 F:      tools/testing/selftests/drivers/net/dsa/
13317
13318 NETWORKING [GENERAL]
13319 M:      "David S. Miller" <davem@davemloft.net>
13320 M:      Jakub Kicinski <kuba@kernel.org>
13321 L:      netdev@vger.kernel.org
13322 S:      Maintained
13323 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13324 B:      mailto:netdev@vger.kernel.org
13325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13327 F:      Documentation/networking/
13328 F:      include/linux/in.h
13329 F:      include/linux/net.h
13330 F:      include/linux/netdevice.h
13331 F:      include/net/
13332 F:      include/uapi/linux/in.h
13333 F:      include/uapi/linux/net.h
13334 F:      include/uapi/linux/net_namespace.h
13335 F:      include/uapi/linux/netdevice.h
13336 F:      lib/net_utils.c
13337 F:      lib/random32.c
13338 F:      net/
13339 F:      tools/testing/selftests/net/
13340
13341 NETWORKING [IPSEC]
13342 M:      Steffen Klassert <steffen.klassert@secunet.com>
13343 M:      Herbert Xu <herbert@gondor.apana.org.au>
13344 M:      "David S. Miller" <davem@davemloft.net>
13345 L:      netdev@vger.kernel.org
13346 S:      Maintained
13347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13349 F:      include/net/xfrm.h
13350 F:      include/uapi/linux/xfrm.h
13351 F:      net/ipv4/ah4.c
13352 F:      net/ipv4/esp4*
13353 F:      net/ipv4/ip_vti.c
13354 F:      net/ipv4/ipcomp.c
13355 F:      net/ipv4/xfrm*
13356 F:      net/ipv6/ah6.c
13357 F:      net/ipv6/esp6*
13358 F:      net/ipv6/ip6_vti.c
13359 F:      net/ipv6/ipcomp6.c
13360 F:      net/ipv6/xfrm*
13361 F:      net/key/
13362 F:      net/xfrm/
13363 F:      tools/testing/selftests/net/ipsec.c
13364
13365 NETWORKING [IPv4/IPv6]
13366 M:      "David S. Miller" <davem@davemloft.net>
13367 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13368 M:      David Ahern <dsahern@kernel.org>
13369 L:      netdev@vger.kernel.org
13370 S:      Maintained
13371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13372 F:      arch/x86/net/*
13373 F:      include/net/ip*
13374 F:      net/ipv4/
13375 F:      net/ipv6/
13376
13377 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13378 M:      Paul Moore <paul@paul-moore.com>
13379 L:      netdev@vger.kernel.org
13380 L:      linux-security-module@vger.kernel.org
13381 S:      Maintained
13382 W:      https://github.com/netlabel
13383 F:      Documentation/netlabel/
13384 F:      include/net/calipso.h
13385 F:      include/net/cipso_ipv4.h
13386 F:      include/net/netlabel.h
13387 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13388 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13389 F:      net/ipv4/cipso_ipv4.c
13390 F:      net/ipv6/calipso.c
13391 F:      net/netfilter/xt_CONNSECMARK.c
13392 F:      net/netfilter/xt_SECMARK.c
13393 F:      net/netlabel/
13394
13395 NETWORKING [MPTCP]
13396 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13397 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13398 L:      netdev@vger.kernel.org
13399 L:      mptcp@lists.linux.dev
13400 S:      Maintained
13401 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13402 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13403 F:      Documentation/networking/mptcp-sysctl.rst
13404 F:      include/net/mptcp.h
13405 F:      include/trace/events/mptcp.h
13406 F:      include/uapi/linux/mptcp.h
13407 F:      net/mptcp/
13408 F:      tools/testing/selftests/net/mptcp/
13409
13410 NETWORKING [TCP]
13411 M:      Eric Dumazet <edumazet@google.com>
13412 L:      netdev@vger.kernel.org
13413 S:      Maintained
13414 F:      include/linux/tcp.h
13415 F:      include/net/tcp.h
13416 F:      include/trace/events/tcp.h
13417 F:      include/uapi/linux/tcp.h
13418 F:      net/ipv4/syncookies.c
13419 F:      net/ipv4/tcp*.c
13420 F:      net/ipv6/syncookies.c
13421 F:      net/ipv6/tcp*.c
13422
13423 NETWORKING [TLS]
13424 M:      Boris Pismenny <borisp@nvidia.com>
13425 M:      John Fastabend <john.fastabend@gmail.com>
13426 M:      Daniel Borkmann <daniel@iogearbox.net>
13427 M:      Jakub Kicinski <kuba@kernel.org>
13428 L:      netdev@vger.kernel.org
13429 S:      Maintained
13430 F:      include/net/tls.h
13431 F:      include/uapi/linux/tls.h
13432 F:      net/tls/*
13433
13434 NETWORKING [WIRELESS]
13435 L:      linux-wireless@vger.kernel.org
13436 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13437
13438 NETXEN (1/10) GbE SUPPORT
13439 M:      Manish Chopra <manishc@marvell.com>
13440 M:      Rahul Verma <rahulv@marvell.com>
13441 M:      GR-Linux-NIC-Dev@marvell.com
13442 L:      netdev@vger.kernel.org
13443 S:      Supported
13444 F:      drivers/net/ethernet/qlogic/netxen/
13445
13446 NET_FAILOVER MODULE
13447 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13448 L:      netdev@vger.kernel.org
13449 S:      Supported
13450 F:      Documentation/networking/net_failover.rst
13451 F:      drivers/net/net_failover.c
13452 F:      include/net/net_failover.h
13453
13454 NEXTHOP
13455 M:      David Ahern <dsahern@kernel.org>
13456 L:      netdev@vger.kernel.org
13457 S:      Maintained
13458 F:      include/net/netns/nexthop.h
13459 F:      include/net/nexthop.h
13460 F:      include/uapi/linux/nexthop.h
13461 F:      net/ipv4/nexthop.c
13462
13463 NFC SUBSYSTEM
13464 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13465 L:      linux-nfc@lists.01.org (subscribers-only)
13466 L:      netdev@vger.kernel.org
13467 S:      Maintained
13468 F:      Documentation/devicetree/bindings/net/nfc/
13469 F:      drivers/nfc/
13470 F:      include/linux/platform_data/nfcmrvl.h
13471 F:      include/net/nfc/
13472 F:      include/uapi/linux/nfc.h
13473 F:      net/nfc/
13474
13475 NFC VIRTUAL NCI DEVICE DRIVER
13476 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13477 L:      netdev@vger.kernel.org
13478 L:      linux-nfc@lists.01.org (subscribers-only)
13479 S:      Supported
13480 F:      drivers/nfc/virtual_ncidev.c
13481 F:      tools/testing/selftests/nci/
13482
13483 NFS, SUNRPC, AND LOCKD CLIENTS
13484 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13485 M:      Anna Schumaker <anna.schumaker@netapp.com>
13486 L:      linux-nfs@vger.kernel.org
13487 S:      Maintained
13488 W:      http://client.linux-nfs.org
13489 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13490 F:      fs/lockd/
13491 F:      fs/nfs/
13492 F:      fs/nfs_common/
13493 F:      include/linux/lockd/
13494 F:      include/linux/nfs*
13495 F:      include/linux/sunrpc/
13496 F:      include/uapi/linux/nfs*
13497 F:      include/uapi/linux/sunrpc/
13498 F:      net/sunrpc/
13499 F:      Documentation/filesystems/nfs/
13500
13501 NILFS2 FILESYSTEM
13502 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13503 L:      linux-nilfs@vger.kernel.org
13504 S:      Supported
13505 W:      https://nilfs.sourceforge.io/
13506 W:      https://nilfs.osdn.jp/
13507 T:      git git://github.com/konis/nilfs2.git
13508 F:      Documentation/filesystems/nilfs2.rst
13509 F:      fs/nilfs2/
13510 F:      include/trace/events/nilfs2.h
13511 F:      include/uapi/linux/nilfs2_api.h
13512 F:      include/uapi/linux/nilfs2_ondisk.h
13513
13514 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13515 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13516 S:      Maintained
13517 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13518 F:      Documentation/scsi/NinjaSCSI.rst
13519 F:      drivers/scsi/pcmcia/nsp_*
13520
13521 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13522 M:      GOTO Masanori <gotom@debian.or.jp>
13523 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13524 S:      Maintained
13525 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13526 F:      Documentation/scsi/NinjaSCSI.rst
13527 F:      drivers/scsi/nsp32*
13528
13529 NINTENDO HID DRIVER
13530 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13531 L:      linux-input@vger.kernel.org
13532 S:      Maintained
13533 F:      drivers/hid/hid-nintendo*
13534
13535 NIOS2 ARCHITECTURE
13536 M:      Dinh Nguyen <dinguyen@kernel.org>
13537 S:      Maintained
13538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13539 F:      arch/nios2/
13540
13541 NITRO ENCLAVES (NE)
13542 M:      Andra Paraschiv <andraprs@amazon.com>
13543 M:      Alexandru Vasile <lexnv@amazon.com>
13544 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13545 L:      linux-kernel@vger.kernel.org
13546 S:      Supported
13547 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13548 F:      Documentation/virt/ne_overview.rst
13549 F:      drivers/virt/nitro_enclaves/
13550 F:      include/linux/nitro_enclaves.h
13551 F:      include/uapi/linux/nitro_enclaves.h
13552 F:      samples/nitro_enclaves/
13553
13554 NOHZ, DYNTICKS SUPPORT
13555 M:      Frederic Weisbecker <fweisbec@gmail.com>
13556 M:      Thomas Gleixner <tglx@linutronix.de>
13557 M:      Ingo Molnar <mingo@kernel.org>
13558 L:      linux-kernel@vger.kernel.org
13559 S:      Maintained
13560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13561 F:      include/linux/sched/nohz.h
13562 F:      include/linux/tick.h
13563 F:      kernel/time/tick*.*
13564
13565 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13566 M:      Pavel Machek <pavel@ucw.cz>
13567 M:      Sakari Ailus <sakari.ailus@iki.fi>
13568 L:      linux-media@vger.kernel.org
13569 S:      Maintained
13570 F:      drivers/media/i2c/ad5820.c
13571 F:      drivers/media/i2c/et8ek8
13572
13573 NOKIA N900 POWER SUPPLY DRIVERS
13574 R:      Pali Rohár <pali@kernel.org>
13575 F:      drivers/power/supply/bq2415x_charger.c
13576 F:      drivers/power/supply/bq27xxx_battery.c
13577 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13578 F:      drivers/power/supply/isp1704_charger.c
13579 F:      drivers/power/supply/rx51_battery.c
13580 F:      include/linux/power/bq2415x_charger.h
13581 F:      include/linux/power/bq27xxx_battery.h
13582
13583 NOLIBC HEADER FILE
13584 M:      Willy Tarreau <w@1wt.eu>
13585 S:      Maintained
13586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13587 F:      tools/include/nolibc/
13588
13589 NSDEPS
13590 M:      Matthias Maennich <maennich@google.com>
13591 S:      Maintained
13592 F:      Documentation/core-api/symbol-namespaces.rst
13593 F:      scripts/nsdeps
13594
13595 NTB AMD DRIVER
13596 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13597 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13598 L:      linux-ntb@googlegroups.com
13599 S:      Supported
13600 F:      drivers/ntb/hw/amd/
13601
13602 NTB DRIVER CORE
13603 M:      Jon Mason <jdmason@kudzu.us>
13604 M:      Dave Jiang <dave.jiang@intel.com>
13605 M:      Allen Hubbe <allenbh@gmail.com>
13606 L:      linux-ntb@googlegroups.com
13607 S:      Supported
13608 W:      https://github.com/jonmason/ntb/wiki
13609 T:      git git://github.com/jonmason/ntb.git
13610 F:      drivers/net/ntb_netdev.c
13611 F:      drivers/ntb/
13612 F:      include/linux/ntb.h
13613 F:      include/linux/ntb_transport.h
13614 F:      tools/testing/selftests/ntb/
13615
13616 NTB IDT DRIVER
13617 M:      Serge Semin <fancer.lancer@gmail.com>
13618 L:      linux-ntb@googlegroups.com
13619 S:      Supported
13620 F:      drivers/ntb/hw/idt/
13621
13622 NTB INTEL DRIVER
13623 M:      Dave Jiang <dave.jiang@intel.com>
13624 L:      linux-ntb@googlegroups.com
13625 S:      Supported
13626 W:      https://github.com/davejiang/linux/wiki
13627 T:      git https://github.com/davejiang/linux.git
13628 F:      drivers/ntb/hw/intel/
13629
13630 NTFS FILESYSTEM
13631 M:      Anton Altaparmakov <anton@tuxera.com>
13632 L:      linux-ntfs-dev@lists.sourceforge.net
13633 S:      Supported
13634 W:      http://www.tuxera.com/
13635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13636 F:      Documentation/filesystems/ntfs.rst
13637 F:      fs/ntfs/
13638
13639 NTFS3 FILESYSTEM
13640 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13641 L:      ntfs3@lists.linux.dev
13642 S:      Supported
13643 W:      http://www.paragon-software.com/
13644 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13645 F:      Documentation/filesystems/ntfs3.rst
13646 F:      fs/ntfs3/
13647
13648 NUBUS SUBSYSTEM
13649 M:      Finn Thain <fthain@linux-m68k.org>
13650 L:      linux-m68k@lists.linux-m68k.org
13651 S:      Maintained
13652 F:      arch/*/include/asm/nubus.h
13653 F:      drivers/nubus/
13654 F:      include/linux/nubus.h
13655 F:      include/uapi/linux/nubus.h
13656
13657 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13658 M:      Antonino Daplas <adaplas@gmail.com>
13659 L:      linux-fbdev@vger.kernel.org
13660 S:      Maintained
13661 F:      drivers/video/fbdev/nvidia/
13662 F:      drivers/video/fbdev/riva/
13663
13664 NVIDIA WMI EC BACKLIGHT DRIVER
13665 M:      Daniel Dadap <ddadap@nvidia.com>
13666 L:      platform-driver-x86@vger.kernel.org
13667 S:      Supported
13668 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13669
13670 NVM EXPRESS DRIVER
13671 M:      Keith Busch <kbusch@kernel.org>
13672 M:      Jens Axboe <axboe@fb.com>
13673 M:      Christoph Hellwig <hch@lst.de>
13674 M:      Sagi Grimberg <sagi@grimberg.me>
13675 L:      linux-nvme@lists.infradead.org
13676 S:      Supported
13677 W:      http://git.infradead.org/nvme.git
13678 T:      git://git.infradead.org/nvme.git
13679 F:      drivers/nvme/host/
13680 F:      include/linux/nvme.h
13681 F:      include/uapi/linux/nvme_ioctl.h
13682
13683 NVM EXPRESS FC TRANSPORT DRIVERS
13684 M:      James Smart <james.smart@broadcom.com>
13685 L:      linux-nvme@lists.infradead.org
13686 S:      Supported
13687 F:      drivers/nvme/host/fc.c
13688 F:      drivers/nvme/target/fc.c
13689 F:      drivers/nvme/target/fcloop.c
13690 F:      include/linux/nvme-fc-driver.h
13691 F:      include/linux/nvme-fc.h
13692
13693 NVM EXPRESS TARGET DRIVER
13694 M:      Christoph Hellwig <hch@lst.de>
13695 M:      Sagi Grimberg <sagi@grimberg.me>
13696 M:      Chaitanya Kulkarni <kch@nvidia.com>
13697 L:      linux-nvme@lists.infradead.org
13698 S:      Supported
13699 W:      http://git.infradead.org/nvme.git
13700 T:      git://git.infradead.org/nvme.git
13701 F:      drivers/nvme/target/
13702
13703 NVMEM FRAMEWORK
13704 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13705 S:      Maintained
13706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13707 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13708 F:      Documentation/devicetree/bindings/nvmem/
13709 F:      drivers/nvmem/
13710 F:      include/linux/nvmem-consumer.h
13711 F:      include/linux/nvmem-provider.h
13712
13713 NXP C45 TJA11XX PHY DRIVER
13714 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13715 L:      netdev@vger.kernel.org
13716 S:      Maintained
13717 F:      drivers/net/phy/nxp-c45-tja11xx.c
13718
13719 NXP FSPI DRIVER
13720 M:      Ashish Kumar <ashish.kumar@nxp.com>
13721 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13722 L:      linux-spi@vger.kernel.org
13723 S:      Maintained
13724 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13725 F:      drivers/spi/spi-nxp-fspi.c
13726
13727 NXP FXAS21002C DRIVER
13728 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13729 L:      linux-iio@vger.kernel.org
13730 S:      Maintained
13731 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13732 F:      drivers/iio/gyro/fxas21002c.h
13733 F:      drivers/iio/gyro/fxas21002c_core.c
13734 F:      drivers/iio/gyro/fxas21002c_i2c.c
13735 F:      drivers/iio/gyro/fxas21002c_spi.c
13736
13737 NXP i.MX CLOCK DRIVERS
13738 M:      Abel Vesa <abel.vesa@nxp.com>
13739 L:      linux-clk@vger.kernel.org
13740 L:      linux-imx@nxp.com
13741 S:      Maintained
13742 F:      drivers/clk/imx/
13743
13744 NXP i.MX 8MQ DCSS DRIVER
13745 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13746 R:      Lucas Stach <l.stach@pengutronix.de>
13747 L:      dri-devel@lists.freedesktop.org
13748 S:      Maintained
13749 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13750 F:      drivers/gpu/drm/imx/dcss/
13751
13752 NXP i.MX 8QXP ADC DRIVER
13753 M:      Cai Huoqing <caihuoqing@baidu.com>
13754 L:      linux-iio@vger.kernel.org
13755 S:      Supported
13756 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13757 F:      drivers/iio/adc/imx8qxp-adc.c
13758
13759 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13760 M:      Jagan Teki <jagan@amarulasolutions.com>
13761 S:      Maintained
13762 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13763 F:      drivers/regulator/pf8x00-regulator.c
13764
13765 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13766 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13767 L:      linux-kernel@vger.kernel.org
13768 S:      Maintained
13769 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13770 F:      drivers/extcon/extcon-ptn5150.c
13771
13772 NXP SGTL5000 DRIVER
13773 M:      Fabio Estevam <festevam@gmail.com>
13774 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13775 S:      Maintained
13776 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13777 F:      sound/soc/codecs/sgtl5000*
13778
13779 NXP SJA1105 ETHERNET SWITCH DRIVER
13780 M:      Vladimir Oltean <olteanv@gmail.com>
13781 L:      linux-kernel@vger.kernel.org
13782 S:      Maintained
13783 F:      drivers/net/dsa/sja1105
13784 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13785
13786 NXP TDA998X DRM DRIVER
13787 M:      Russell King <linux@armlinux.org.uk>
13788 S:      Maintained
13789 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13790 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13791 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13792 F:      include/drm/i2c/tda998x.h
13793 F:      include/dt-bindings/display/tda998x.h
13794 K:      "nxp,tda998x"
13795
13796 NXP TFA9879 DRIVER
13797 M:      Peter Rosin <peda@axentia.se>
13798 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13799 S:      Maintained
13800 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13801 F:      sound/soc/codecs/tfa9879*
13802
13803 NXP/Goodix TFA989X (TFA1) DRIVER
13804 M:      Stephan Gerhold <stephan@gerhold.net>
13805 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13806 S:      Maintained
13807 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13808 F:      sound/soc/codecs/tfa989x.c
13809
13810 NXP-NCI NFC DRIVER
13811 R:      Charles Gorand <charles.gorand@effinnov.com>
13812 L:      linux-nfc@lists.01.org (subscribers-only)
13813 S:      Supported
13814 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13815 F:      drivers/nfc/nxp-nci
13816
13817 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13818 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13819 R:      NXP Linux Team <linux-imx@nxp.com>
13820 L:      linux-media@vger.kernel.org
13821 S:      Maintained
13822 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13823 F:      drivers/media/platform/imx-jpeg
13824
13825 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13826 M:      Jonas Malaco <jonas@protocubo.io>
13827 L:      linux-hwmon@vger.kernel.org
13828 S:      Maintained
13829 F:      Documentation/hwmon/nzxt-kraken2.rst
13830 F:      drivers/hwmon/nzxt-kraken2.c
13831
13832 OBJAGG
13833 M:      Jiri Pirko <jiri@nvidia.com>
13834 L:      netdev@vger.kernel.org
13835 S:      Supported
13836 F:      include/linux/objagg.h
13837 F:      lib/objagg.c
13838 F:      lib/test_objagg.c
13839
13840 OBJTOOL
13841 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13842 M:      Peter Zijlstra <peterz@infradead.org>
13843 S:      Supported
13844 F:      tools/objtool/
13845 F:      include/linux/objtool.h
13846
13847 OCELOT ETHERNET SWITCH DRIVER
13848 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13849 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13850 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13851 M:      UNGLinuxDriver@microchip.com
13852 L:      netdev@vger.kernel.org
13853 S:      Supported
13854 F:      drivers/net/dsa/ocelot/*
13855 F:      drivers/net/ethernet/mscc/
13856 F:      include/soc/mscc/ocelot*
13857 F:      net/dsa/tag_ocelot.c
13858 F:      net/dsa/tag_ocelot_8021q.c
13859 F:      tools/testing/selftests/drivers/net/ocelot/*
13860
13861 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13862 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13863 M:      Andrew Donnellan <ajd@linux.ibm.com>
13864 L:      linuxppc-dev@lists.ozlabs.org
13865 S:      Supported
13866 F:      Documentation/userspace-api/accelerators/ocxl.rst
13867 F:      arch/powerpc/include/asm/pnv-ocxl.h
13868 F:      arch/powerpc/platforms/powernv/ocxl.c
13869 F:      drivers/misc/ocxl/
13870 F:      include/misc/ocxl*
13871 F:      include/uapi/misc/ocxl.h
13872
13873 OMAP AUDIO SUPPORT
13874 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13875 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13877 L:      linux-omap@vger.kernel.org
13878 S:      Maintained
13879 F:      sound/soc/ti/n810.c
13880 F:      sound/soc/ti/omap*
13881 F:      sound/soc/ti/rx51.c
13882 F:      sound/soc/ti/sdma-pcm.*
13883
13884 OMAP CLOCK FRAMEWORK SUPPORT
13885 M:      Paul Walmsley <paul@pwsan.com>
13886 L:      linux-omap@vger.kernel.org
13887 S:      Maintained
13888 F:      arch/arm/*omap*/*clock*
13889
13890 OMAP DEVICE TREE SUPPORT
13891 M:      Benoît Cousson <bcousson@baylibre.com>
13892 M:      Tony Lindgren <tony@atomide.com>
13893 L:      linux-omap@vger.kernel.org
13894 L:      devicetree@vger.kernel.org
13895 S:      Maintained
13896 F:      arch/arm/boot/dts/*am3*
13897 F:      arch/arm/boot/dts/*am4*
13898 F:      arch/arm/boot/dts/*am5*
13899 F:      arch/arm/boot/dts/*dra7*
13900 F:      arch/arm/boot/dts/*omap*
13901 F:      arch/arm/boot/dts/logicpd-som-lv*
13902 F:      arch/arm/boot/dts/logicpd-torpedo*
13903
13904 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13905 L:      linux-omap@vger.kernel.org
13906 L:      linux-fbdev@vger.kernel.org
13907 S:      Orphan
13908 F:      Documentation/arm/omap/dss.rst
13909 F:      drivers/video/fbdev/omap2/
13910
13911 OMAP FRAMEBUFFER SUPPORT
13912 L:      linux-fbdev@vger.kernel.org
13913 L:      linux-omap@vger.kernel.org
13914 S:      Orphan
13915 F:      drivers/video/fbdev/omap/
13916
13917 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13918 M:      Roger Quadros <rogerq@kernel.org>
13919 M:      Tony Lindgren <tony@atomide.com>
13920 L:      linux-omap@vger.kernel.org
13921 S:      Maintained
13922 F:      arch/arm/mach-omap2/*gpmc*
13923 F:      drivers/memory/omap-gpmc.c
13924
13925 OMAP GPIO DRIVER
13926 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13927 M:      Santosh Shilimkar <ssantosh@kernel.org>
13928 M:      Kevin Hilman <khilman@kernel.org>
13929 L:      linux-omap@vger.kernel.org
13930 S:      Maintained
13931 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13932 F:      drivers/gpio/gpio-omap.c
13933
13934 OMAP HARDWARE SPINLOCK SUPPORT
13935 M:      Ohad Ben-Cohen <ohad@wizery.com>
13936 L:      linux-omap@vger.kernel.org
13937 S:      Maintained
13938 F:      drivers/hwspinlock/omap_hwspinlock.c
13939
13940 OMAP HS MMC SUPPORT
13941 L:      linux-mmc@vger.kernel.org
13942 L:      linux-omap@vger.kernel.org
13943 S:      Orphan
13944 F:      drivers/mmc/host/omap_hsmmc.c
13945
13946 OMAP HWMOD DATA
13947 M:      Paul Walmsley <paul@pwsan.com>
13948 L:      linux-omap@vger.kernel.org
13949 S:      Maintained
13950 F:      arch/arm/mach-omap2/omap_hwmod*data*
13951
13952 OMAP HWMOD SUPPORT
13953 M:      Benoît Cousson <bcousson@baylibre.com>
13954 M:      Paul Walmsley <paul@pwsan.com>
13955 L:      linux-omap@vger.kernel.org
13956 S:      Maintained
13957 F:      arch/arm/mach-omap2/omap_hwmod.*
13958
13959 OMAP I2C DRIVER
13960 M:      Vignesh R <vigneshr@ti.com>
13961 L:      linux-omap@vger.kernel.org
13962 L:      linux-i2c@vger.kernel.org
13963 S:      Maintained
13964 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13965 F:      drivers/i2c/busses/i2c-omap.c
13966
13967 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13968 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13969 L:      linux-media@vger.kernel.org
13970 S:      Maintained
13971 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13972 F:      drivers/media/platform/omap3isp/
13973 F:      drivers/staging/media/omap4iss/
13974
13975 OMAP MMC SUPPORT
13976 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13977 L:      linux-omap@vger.kernel.org
13978 S:      Odd Fixes
13979 F:      drivers/mmc/host/omap.c
13980
13981 OMAP POWER MANAGEMENT SUPPORT
13982 M:      Kevin Hilman <khilman@kernel.org>
13983 L:      linux-omap@vger.kernel.org
13984 S:      Maintained
13985 F:      arch/arm/*omap*/*pm*
13986 F:      drivers/cpufreq/omap-cpufreq.c
13987
13988 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13989 M:      Rajendra Nayak <rnayak@codeaurora.org>
13990 M:      Paul Walmsley <paul@pwsan.com>
13991 L:      linux-omap@vger.kernel.org
13992 S:      Maintained
13993 F:      arch/arm/mach-omap2/prm*
13994
13995 OMAP RANDOM NUMBER GENERATOR SUPPORT
13996 M:      Deepak Saxena <dsaxena@plexity.net>
13997 S:      Maintained
13998 F:      drivers/char/hw_random/omap-rng.c
13999
14000 OMAP USB SUPPORT
14001 L:      linux-usb@vger.kernel.org
14002 L:      linux-omap@vger.kernel.org
14003 S:      Orphan
14004 F:      arch/arm/*omap*/usb*
14005 F:      drivers/usb/*/*omap*
14006
14007 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14008 M:      Mark Jackson <mpfj@newflow.co.uk>
14009 L:      linux-omap@vger.kernel.org
14010 S:      Maintained
14011 F:      arch/arm/boot/dts/am335x-nano.dts
14012
14013 OMAP1 SUPPORT
14014 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14015 M:      Tony Lindgren <tony@atomide.com>
14016 L:      linux-omap@vger.kernel.org
14017 S:      Maintained
14018 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14020 F:      arch/arm/configs/omap1_defconfig
14021 F:      arch/arm/mach-omap1/
14022 F:      arch/arm/plat-omap/
14023 F:      drivers/i2c/busses/i2c-omap.c
14024 F:      include/linux/platform_data/ams-delta-fiq.h
14025 F:      include/linux/platform_data/i2c-omap.h
14026
14027 OMAP2+ SUPPORT
14028 M:      Tony Lindgren <tony@atomide.com>
14029 L:      linux-omap@vger.kernel.org
14030 S:      Maintained
14031 W:      http://www.muru.com/linux/omap/
14032 W:      http://linux.omap.com/
14033 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14035 F:      arch/arm/configs/omap2plus_defconfig
14036 F:      arch/arm/mach-omap2/
14037 F:      arch/arm/plat-omap/
14038 F:      drivers/bus/ti-sysc.c
14039 F:      drivers/i2c/busses/i2c-omap.c
14040 F:      drivers/irqchip/irq-omap-intc.c
14041 F:      drivers/mfd/*omap*.c
14042 F:      drivers/mfd/menelaus.c
14043 F:      drivers/mfd/palmas.c
14044 F:      drivers/mfd/tps65217.c
14045 F:      drivers/mfd/tps65218.c
14046 F:      drivers/mfd/tps65910.c
14047 F:      drivers/mfd/twl-core.[ch]
14048 F:      drivers/mfd/twl4030*.c
14049 F:      drivers/mfd/twl6030*.c
14050 F:      drivers/mfd/twl6040*.c
14051 F:      drivers/regulator/palmas-regulator*.c
14052 F:      drivers/regulator/pbias-regulator.c
14053 F:      drivers/regulator/tps65217-regulator.c
14054 F:      drivers/regulator/tps65218-regulator.c
14055 F:      drivers/regulator/tps65910-regulator.c
14056 F:      drivers/regulator/twl-regulator.c
14057 F:      drivers/regulator/twl6030-regulator.c
14058 F:      include/linux/platform_data/i2c-omap.h
14059 F:      include/linux/platform_data/ti-sysc.h
14060
14061 OMFS FILESYSTEM
14062 M:      Bob Copeland <me@bobcopeland.com>
14063 L:      linux-karma-devel@lists.sourceforge.net
14064 S:      Maintained
14065 F:      Documentation/filesystems/omfs.rst
14066 F:      fs/omfs/
14067
14068 OMNIKEY CARDMAN 4000 DRIVER
14069 M:      Harald Welte <laforge@gnumonks.org>
14070 S:      Maintained
14071 F:      drivers/char/pcmcia/cm4000_cs.c
14072 F:      include/linux/cm4000_cs.h
14073 F:      include/uapi/linux/cm4000_cs.h
14074
14075 OMNIKEY CARDMAN 4040 DRIVER
14076 M:      Harald Welte <laforge@gnumonks.org>
14077 S:      Maintained
14078 F:      drivers/char/pcmcia/cm4040_cs.*
14079
14080 OMNIVISION OV02A10 SENSOR DRIVER
14081 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14082 L:      linux-media@vger.kernel.org
14083 S:      Maintained
14084 T:      git git://linuxtv.org/media_tree.git
14085 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14086 F:      drivers/media/i2c/ov02a10.c
14087
14088 OMNIVISION OV13858 SENSOR DRIVER
14089 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14090 L:      linux-media@vger.kernel.org
14091 S:      Maintained
14092 T:      git git://linuxtv.org/media_tree.git
14093 F:      drivers/media/i2c/ov13858.c
14094
14095 OMNIVISION OV13B10 SENSOR DRIVER
14096 M:      Arec Kao <arec.kao@intel.com>
14097 L:      linux-media@vger.kernel.org
14098 S:      Maintained
14099 T:      git git://linuxtv.org/media_tree.git
14100 F:      drivers/media/i2c/ov13b10.c
14101
14102 OMNIVISION OV2680 SENSOR DRIVER
14103 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14104 L:      linux-media@vger.kernel.org
14105 S:      Maintained
14106 T:      git git://linuxtv.org/media_tree.git
14107 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14108 F:      drivers/media/i2c/ov2680.c
14109
14110 OMNIVISION OV2685 SENSOR DRIVER
14111 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14112 L:      linux-media@vger.kernel.org
14113 S:      Maintained
14114 T:      git git://linuxtv.org/media_tree.git
14115 F:      drivers/media/i2c/ov2685.c
14116
14117 OMNIVISION OV2740 SENSOR DRIVER
14118 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14119 R:      Shawn Tu <shawnx.tu@intel.com>
14120 R:      Bingbu Cao <bingbu.cao@intel.com>
14121 L:      linux-media@vger.kernel.org
14122 S:      Maintained
14123 T:      git git://linuxtv.org/media_tree.git
14124 F:      drivers/media/i2c/ov2740.c
14125
14126 OMNIVISION OV5640 SENSOR DRIVER
14127 M:      Steve Longerbeam <slongerbeam@gmail.com>
14128 L:      linux-media@vger.kernel.org
14129 S:      Maintained
14130 T:      git git://linuxtv.org/media_tree.git
14131 F:      drivers/media/i2c/ov5640.c
14132
14133 OMNIVISION OV5647 SENSOR DRIVER
14134 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14135 M:      Jacopo Mondi <jacopo@jmondi.org>
14136 L:      linux-media@vger.kernel.org
14137 S:      Maintained
14138 T:      git git://linuxtv.org/media_tree.git
14139 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14140 F:      drivers/media/i2c/ov5647.c
14141
14142 OMNIVISION OV5670 SENSOR DRIVER
14143 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14144 L:      linux-media@vger.kernel.org
14145 S:      Maintained
14146 T:      git git://linuxtv.org/media_tree.git
14147 F:      drivers/media/i2c/ov5670.c
14148
14149 OMNIVISION OV5675 SENSOR DRIVER
14150 M:      Shawn Tu <shawnx.tu@intel.com>
14151 L:      linux-media@vger.kernel.org
14152 S:      Maintained
14153 T:      git git://linuxtv.org/media_tree.git
14154 F:      drivers/media/i2c/ov5675.c
14155
14156 OMNIVISION OV5693 SENSOR DRIVER
14157 M:      Daniel Scally <djrscally@gmail.com>
14158 L:      linux-media@vger.kernel.org
14159 S:      Maintained
14160 T:      git git://linuxtv.org/media_tree.git
14161 F:      drivers/media/i2c/ov5693.c
14162
14163 OMNIVISION OV5695 SENSOR DRIVER
14164 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14165 L:      linux-media@vger.kernel.org
14166 S:      Maintained
14167 T:      git git://linuxtv.org/media_tree.git
14168 F:      drivers/media/i2c/ov5695.c
14169
14170 OMNIVISION OV7670 SENSOR DRIVER
14171 L:      linux-media@vger.kernel.org
14172 S:      Orphan
14173 T:      git git://linuxtv.org/media_tree.git
14174 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14175 F:      drivers/media/i2c/ov7670.c
14176
14177 OMNIVISION OV772x SENSOR DRIVER
14178 M:      Jacopo Mondi <jacopo@jmondi.org>
14179 L:      linux-media@vger.kernel.org
14180 S:      Odd fixes
14181 T:      git git://linuxtv.org/media_tree.git
14182 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14183 F:      drivers/media/i2c/ov772x.c
14184 F:      include/media/i2c/ov772x.h
14185
14186 OMNIVISION OV7740 SENSOR DRIVER
14187 M:      Wenyou Yang <wenyou.yang@microchip.com>
14188 L:      linux-media@vger.kernel.org
14189 S:      Maintained
14190 T:      git git://linuxtv.org/media_tree.git
14191 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14192 F:      drivers/media/i2c/ov7740.c
14193
14194 OMNIVISION OV8856 SENSOR DRIVER
14195 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14196 L:      linux-media@vger.kernel.org
14197 S:      Maintained
14198 T:      git git://linuxtv.org/media_tree.git
14199 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14200 F:      drivers/media/i2c/ov8856.c
14201
14202 OMNIVISION OV9282 SENSOR DRIVER
14203 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14204 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14205 L:      linux-media@vger.kernel.org
14206 S:      Maintained
14207 T:      git git://linuxtv.org/media_tree.git
14208 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14209 F:      drivers/media/i2c/ov9282.c
14210
14211 OMNIVISION OV9640 SENSOR DRIVER
14212 M:      Petr Cvek <petrcvekcz@gmail.com>
14213 L:      linux-media@vger.kernel.org
14214 S:      Maintained
14215 F:      drivers/media/i2c/ov9640.*
14216
14217 OMNIVISION OV9650 SENSOR DRIVER
14218 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14219 R:      Akinobu Mita <akinobu.mita@gmail.com>
14220 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14221 L:      linux-media@vger.kernel.org
14222 S:      Maintained
14223 T:      git git://linuxtv.org/media_tree.git
14224 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14225 F:      drivers/media/i2c/ov9650.c
14226
14227 OMNIVISION OV9734 SENSOR DRIVER
14228 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14229 R:      Bingbu Cao <bingbu.cao@intel.com>
14230 L:      linux-media@vger.kernel.org
14231 S:      Maintained
14232 T:      git git://linuxtv.org/media_tree.git
14233 F:      drivers/media/i2c/ov9734.c
14234
14235 ONENAND FLASH DRIVER
14236 M:      Kyungmin Park <kyungmin.park@samsung.com>
14237 L:      linux-mtd@lists.infradead.org
14238 S:      Maintained
14239 F:      drivers/mtd/nand/onenand/
14240 F:      include/linux/mtd/onenand*.h
14241
14242 ONION OMEGA2+ BOARD
14243 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14244 L:      linux-mips@vger.kernel.org
14245 S:      Maintained
14246 F:      arch/mips/boot/dts/ralink/omega2p.dts
14247
14248 OP-TEE DRIVER
14249 M:      Jens Wiklander <jens.wiklander@linaro.org>
14250 L:      op-tee@lists.trustedfirmware.org
14251 S:      Maintained
14252 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14253 F:      drivers/tee/optee/
14254
14255 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14256 M:      Sumit Garg <sumit.garg@linaro.org>
14257 L:      op-tee@lists.trustedfirmware.org
14258 S:      Maintained
14259 F:      drivers/char/hw_random/optee-rng.c
14260
14261 OPA-VNIC DRIVER
14262 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14263 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14264 L:      linux-rdma@vger.kernel.org
14265 S:      Supported
14266 F:      drivers/infiniband/ulp/opa_vnic
14267
14268 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14269 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14270 M:      Frank Rowand <frowand.list@gmail.com>
14271 L:      devicetree@vger.kernel.org
14272 S:      Maintained
14273 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14274 F:      Documentation/devicetree/overlay-notes.rst
14275 F:      drivers/of/overlay.c
14276 F:      drivers/of/resolver.c
14277 K:      of_overlay_notifier_
14278
14279 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14280 M:      Rob Herring <robh+dt@kernel.org>
14281 M:      Frank Rowand <frowand.list@gmail.com>
14282 L:      devicetree@vger.kernel.org
14283 S:      Maintained
14284 W:      http://www.devicetree.org/
14285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14286 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14287 F:      drivers/of/
14288 F:      include/linux/of*.h
14289 F:      scripts/dtc/
14290
14291 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14292 M:      Rob Herring <robh+dt@kernel.org>
14293 L:      devicetree@vger.kernel.org
14294 S:      Maintained
14295 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14297 F:      Documentation/devicetree/
14298 F:      arch/*/boot/dts/
14299 F:      include/dt-bindings/
14300
14301 OPENCOMPUTE PTP CLOCK DRIVER
14302 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14303 L:      netdev@vger.kernel.org
14304 S:      Maintained
14305 F:      drivers/ptp/ptp_ocp.c
14306
14307 OPENCORES I2C BUS DRIVER
14308 M:      Peter Korsgaard <peter@korsgaard.com>
14309 M:      Andrew Lunn <andrew@lunn.ch>
14310 L:      linux-i2c@vger.kernel.org
14311 S:      Maintained
14312 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14313 F:      Documentation/i2c/busses/i2c-ocores.rst
14314 F:      drivers/i2c/busses/i2c-ocores.c
14315 F:      include/linux/platform_data/i2c-ocores.h
14316
14317 OPENRISC ARCHITECTURE
14318 M:      Jonas Bonn <jonas@southpole.se>
14319 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14320 M:      Stafford Horne <shorne@gmail.com>
14321 L:      openrisc@lists.librecores.org
14322 S:      Maintained
14323 W:      http://openrisc.io
14324 T:      git git://github.com/openrisc/linux.git
14325 F:      Documentation/devicetree/bindings/openrisc/
14326 F:      Documentation/openrisc/
14327 F:      arch/openrisc/
14328 F:      drivers/irqchip/irq-ompic.c
14329 F:      drivers/irqchip/irq-or1k-*
14330
14331 OPENVSWITCH
14332 M:      Pravin B Shelar <pshelar@ovn.org>
14333 L:      netdev@vger.kernel.org
14334 L:      dev@openvswitch.org
14335 S:      Maintained
14336 W:      http://openvswitch.org
14337 F:      include/uapi/linux/openvswitch.h
14338 F:      net/openvswitch/
14339
14340 OPERATING PERFORMANCE POINTS (OPP)
14341 M:      Viresh Kumar <vireshk@kernel.org>
14342 M:      Nishanth Menon <nm@ti.com>
14343 M:      Stephen Boyd <sboyd@kernel.org>
14344 L:      linux-pm@vger.kernel.org
14345 S:      Maintained
14346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14347 F:      Documentation/devicetree/bindings/opp/
14348 F:      Documentation/power/opp.rst
14349 F:      drivers/opp/
14350 F:      include/linux/pm_opp.h
14351
14352 OPL4 DRIVER
14353 M:      Clemens Ladisch <clemens@ladisch.de>
14354 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14355 S:      Maintained
14356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14357 F:      sound/drivers/opl4/
14358
14359 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14360 M:      Mark Fasheh <mark@fasheh.com>
14361 M:      Joel Becker <jlbec@evilplan.org>
14362 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14363 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14364 S:      Supported
14365 W:      http://ocfs2.wiki.kernel.org
14366 F:      Documentation/filesystems/dlmfs.rst
14367 F:      Documentation/filesystems/ocfs2.rst
14368 F:      fs/ocfs2/
14369
14370 ORANGEFS FILESYSTEM
14371 M:      Mike Marshall <hubcap@omnibond.com>
14372 R:      Martin Brandenburg <martin@omnibond.com>
14373 L:      devel@lists.orangefs.org
14374 S:      Supported
14375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14376 F:      Documentation/filesystems/orangefs.rst
14377 F:      fs/orangefs/
14378
14379 ORINOCO DRIVER
14380 L:      linux-wireless@vger.kernel.org
14381 S:      Orphan
14382 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14383 W:      http://www.nongnu.org/orinoco/
14384 F:      drivers/net/wireless/intersil/orinoco/
14385
14386 OV2659 OMNIVISION SENSOR DRIVER
14387 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14388 L:      linux-media@vger.kernel.org
14389 S:      Maintained
14390 W:      https://linuxtv.org
14391 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14392 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14393 F:      drivers/media/i2c/ov2659.c
14394 F:      include/media/i2c/ov2659.h
14395
14396 OVERLAY FILESYSTEM
14397 M:      Miklos Szeredi <miklos@szeredi.hu>
14398 L:      linux-unionfs@vger.kernel.org
14399 S:      Supported
14400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14401 F:      Documentation/filesystems/overlayfs.rst
14402 F:      fs/overlayfs/
14403
14404 P54 WIRELESS DRIVER
14405 M:      Christian Lamparter <chunkeey@googlemail.com>
14406 L:      linux-wireless@vger.kernel.org
14407 S:      Maintained
14408 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14409 F:      drivers/net/wireless/intersil/p54/
14410
14411 PACKING
14412 M:      Vladimir Oltean <olteanv@gmail.com>
14413 L:      netdev@vger.kernel.org
14414 S:      Supported
14415 F:      Documentation/core-api/packing.rst
14416 F:      include/linux/packing.h
14417 F:      lib/packing.c
14418
14419 PADATA PARALLEL EXECUTION MECHANISM
14420 M:      Steffen Klassert <steffen.klassert@secunet.com>
14421 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14422 L:      linux-crypto@vger.kernel.org
14423 L:      linux-kernel@vger.kernel.org
14424 S:      Maintained
14425 F:      Documentation/core-api/padata.rst
14426 F:      include/linux/padata.h
14427 F:      kernel/padata.c
14428
14429 PAGE POOL
14430 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14431 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14432 L:      netdev@vger.kernel.org
14433 S:      Supported
14434 F:      Documentation/networking/page_pool.rst
14435 F:      include/net/page_pool.h
14436 F:      include/trace/events/page_pool.h
14437 F:      net/core/page_pool.c
14438
14439 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14440 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14441 L:      platform-driver-x86@vger.kernel.org
14442 S:      Maintained
14443 F:      drivers/platform/x86/panasonic-laptop.c
14444
14445 PARALLAX PING IIO SENSOR DRIVER
14446 M:      Andreas Klinger <ak@it-klinger.de>
14447 L:      linux-iio@vger.kernel.org
14448 S:      Maintained
14449 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14450 F:      drivers/iio/proximity/ping.c
14451
14452 PARALLEL LCD/KEYPAD PANEL DRIVER
14453 M:      Willy Tarreau <willy@haproxy.com>
14454 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14455 S:      Odd Fixes
14456 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14457 F:      drivers/auxdisplay/panel.c
14458
14459 PARALLEL PORT SUBSYSTEM
14460 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14461 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14462 L:      linux-parport@lists.infradead.org (subscribers-only)
14463 S:      Maintained
14464 F:      Documentation/driver-api/parport*.rst
14465 F:      drivers/char/ppdev.c
14466 F:      drivers/parport/
14467 F:      include/linux/parport*.h
14468 F:      include/uapi/linux/ppdev.h
14469
14470 PARAVIRT_OPS INTERFACE
14471 M:      Juergen Gross <jgross@suse.com>
14472 M:      Deep Shah <sdeep@vmware.com>
14473 M:      "VMware, Inc." <pv-drivers@vmware.com>
14474 L:      virtualization@lists.linux-foundation.org
14475 L:      x86@kernel.org
14476 S:      Supported
14477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14478 F:      Documentation/virt/paravirt_ops.rst
14479 F:      arch/*/include/asm/paravirt*.h
14480 F:      arch/*/kernel/paravirt*
14481 F:      include/linux/hypervisor.h
14482
14483 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14484 M:      Tim Waugh <tim@cyberelk.net>
14485 L:      linux-parport@lists.infradead.org (subscribers-only)
14486 S:      Maintained
14487 F:      Documentation/admin-guide/blockdev/paride.rst
14488 F:      drivers/block/paride/
14489
14490 PARISC ARCHITECTURE
14491 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14492 M:      Helge Deller <deller@gmx.de>
14493 L:      linux-parisc@vger.kernel.org
14494 S:      Maintained
14495 W:      https://parisc.wiki.kernel.org
14496 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14499 F:      Documentation/parisc/
14500 F:      arch/parisc/
14501 F:      drivers/char/agp/parisc-agp.c
14502 F:      drivers/input/misc/hp_sdc_rtc.c
14503 F:      drivers/input/serio/gscps2.c
14504 F:      drivers/input/serio/hp_sdc*
14505 F:      drivers/parisc/
14506 F:      drivers/parport/parport_gsc.*
14507 F:      drivers/tty/serial/8250/8250_gsc.c
14508 F:      drivers/video/console/sti*
14509 F:      drivers/video/fbdev/sti*
14510 F:      drivers/video/logo/logo_parisc*
14511 F:      include/linux/hp_sdc.h
14512
14513 PARMAN
14514 M:      Jiri Pirko <jiri@nvidia.com>
14515 L:      netdev@vger.kernel.org
14516 S:      Supported
14517 F:      include/linux/parman.h
14518 F:      lib/parman.c
14519 F:      lib/test_parman.c
14520
14521 PC ENGINES APU BOARD DRIVER
14522 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14523 S:      Maintained
14524 F:      drivers/platform/x86/pcengines-apuv2.c
14525
14526 PC87360 HARDWARE MONITORING DRIVER
14527 M:      Jim Cromie <jim.cromie@gmail.com>
14528 L:      linux-hwmon@vger.kernel.org
14529 S:      Maintained
14530 F:      Documentation/hwmon/pc87360.rst
14531 F:      drivers/hwmon/pc87360.c
14532
14533 PC8736x GPIO DRIVER
14534 M:      Jim Cromie <jim.cromie@gmail.com>
14535 S:      Maintained
14536 F:      drivers/char/pc8736x_gpio.c
14537
14538 PC87427 HARDWARE MONITORING DRIVER
14539 M:      Jean Delvare <jdelvare@suse.com>
14540 L:      linux-hwmon@vger.kernel.org
14541 S:      Maintained
14542 F:      Documentation/hwmon/pc87427.rst
14543 F:      drivers/hwmon/pc87427.c
14544
14545 PCA9532 LED DRIVER
14546 M:      Riku Voipio <riku.voipio@iki.fi>
14547 S:      Maintained
14548 F:      drivers/leds/leds-pca9532.c
14549 F:      include/linux/leds-pca9532.h
14550
14551 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14552 M:      Guenter Roeck <linux@roeck-us.net>
14553 L:      linux-i2c@vger.kernel.org
14554 S:      Maintained
14555 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14556
14557 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14558 M:      Khalid Aziz <khalid@gonehiking.org>
14559 S:      Maintained
14560 F:      drivers/firmware/pcdp.*
14561
14562 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14563 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14564 M:      Pali Rohár <pali@kernel.org>
14565 L:      linux-pci@vger.kernel.org
14566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14567 S:      Maintained
14568 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14569 F:      drivers/pci/controller/pci-aardvark.c
14570
14571 PCI DRIVER FOR ALTERA PCIE IP
14572 M:      Joyce Ooi <joyce.ooi@intel.com>
14573 L:      linux-pci@vger.kernel.org
14574 S:      Supported
14575 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14576 F:      drivers/pci/controller/pcie-altera.c
14577
14578 PCI DRIVER FOR APPLIEDMICRO XGENE
14579 M:      Toan Le <toan@os.amperecomputing.com>
14580 L:      linux-pci@vger.kernel.org
14581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14582 S:      Maintained
14583 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14584 F:      drivers/pci/controller/pci-xgene.c
14585
14586 PCI DRIVER FOR ARM VERSATILE PLATFORM
14587 M:      Rob Herring <robh@kernel.org>
14588 L:      linux-pci@vger.kernel.org
14589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14590 S:      Maintained
14591 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14592 F:      drivers/pci/controller/pci-versatile.c
14593
14594 PCI DRIVER FOR ARMADA 8K
14595 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14596 L:      linux-pci@vger.kernel.org
14597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14598 S:      Maintained
14599 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14600 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14601
14602 PCI DRIVER FOR CADENCE PCIE IP
14603 M:      Tom Joseph <tjoseph@cadence.com>
14604 L:      linux-pci@vger.kernel.org
14605 S:      Maintained
14606 F:      Documentation/devicetree/bindings/pci/cdns,*
14607 F:      drivers/pci/controller/cadence/
14608
14609 PCI DRIVER FOR FREESCALE LAYERSCAPE
14610 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14611 M:      Mingkai Hu <mingkai.hu@nxp.com>
14612 M:      Roy Zang <roy.zang@nxp.com>
14613 L:      linuxppc-dev@lists.ozlabs.org
14614 L:      linux-pci@vger.kernel.org
14615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14616 S:      Maintained
14617 F:      drivers/pci/controller/dwc/*layerscape*
14618
14619 PCI DRIVER FOR GENERIC OF HOSTS
14620 M:      Will Deacon <will@kernel.org>
14621 L:      linux-pci@vger.kernel.org
14622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14623 S:      Maintained
14624 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14625 F:      drivers/pci/controller/pci-host-common.c
14626 F:      drivers/pci/controller/pci-host-generic.c
14627
14628 PCI DRIVER FOR IMX6
14629 M:      Richard Zhu <hongxing.zhu@nxp.com>
14630 M:      Lucas Stach <l.stach@pengutronix.de>
14631 L:      linux-pci@vger.kernel.org
14632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14633 S:      Maintained
14634 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14635 F:      drivers/pci/controller/dwc/*imx6*
14636
14637 PCI DRIVER FOR FU740
14638 M:      Paul Walmsley <paul.walmsley@sifive.com>
14639 M:      Greentime Hu <greentime.hu@sifive.com>
14640 L:      linux-pci@vger.kernel.org
14641 S:      Maintained
14642 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14643 F:      drivers/pci/controller/dwc/pcie-fu740.c
14644
14645 PCI DRIVER FOR INTEL IXP4XX
14646 M:      Linus Walleij <linus.walleij@linaro.org>
14647 S:      Maintained
14648 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14649 F:      drivers/pci/controller/pci-ixp4xx.c
14650
14651 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14652 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14653 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14654 L:      linux-pci@vger.kernel.org
14655 S:      Supported
14656 F:      drivers/pci/controller/vmd.c
14657
14658 PCI DRIVER FOR MICROSEMI SWITCHTEC
14659 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14660 M:      Logan Gunthorpe <logang@deltatee.com>
14661 L:      linux-pci@vger.kernel.org
14662 S:      Maintained
14663 F:      Documentation/ABI/testing/sysfs-class-switchtec
14664 F:      Documentation/driver-api/switchtec.rst
14665 F:      drivers/ntb/hw/mscc/
14666 F:      drivers/pci/switch/switchtec*
14667 F:      include/linux/switchtec.h
14668 F:      include/uapi/linux/switchtec_ioctl.h
14669
14670 PCI DRIVER FOR MOBIVEIL PCIE IP
14671 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14672 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14673 L:      linux-pci@vger.kernel.org
14674 S:      Supported
14675 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14676 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14677
14678 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14679 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14680 L:      linux-pci@vger.kernel.org
14681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14682 S:      Maintained
14683 F:      drivers/pci/controller/*mvebu*
14684
14685 PCI DRIVER FOR NVIDIA TEGRA
14686 M:      Thierry Reding <thierry.reding@gmail.com>
14687 L:      linux-tegra@vger.kernel.org
14688 L:      linux-pci@vger.kernel.org
14689 S:      Supported
14690 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14691 F:      drivers/pci/controller/pci-tegra.c
14692
14693 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14694 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14695 L:      linux-pci@vger.kernel.org
14696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14697 S:      Maintained
14698 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14699 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14700
14701 PCI DRIVER FOR RENESAS R-CAR
14702 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14703 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14704 L:      linux-pci@vger.kernel.org
14705 L:      linux-renesas-soc@vger.kernel.org
14706 S:      Maintained
14707 F:      Documentation/devicetree/bindings/pci/*rcar*
14708 F:      drivers/pci/controller/*rcar*
14709
14710 PCI DRIVER FOR SAMSUNG EXYNOS
14711 M:      Jingoo Han <jingoohan1@gmail.com>
14712 L:      linux-pci@vger.kernel.org
14713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14714 L:      linux-samsung-soc@vger.kernel.org
14715 S:      Maintained
14716 F:      drivers/pci/controller/dwc/pci-exynos.c
14717
14718 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14719 M:      Jingoo Han <jingoohan1@gmail.com>
14720 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14721 L:      linux-pci@vger.kernel.org
14722 S:      Maintained
14723 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14724 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14725 F:      drivers/pci/controller/dwc/*designware*
14726
14727 PCI DRIVER FOR TI DRA7XX/J721E
14728 M:      Kishon Vijay Abraham I <kishon@ti.com>
14729 L:      linux-omap@vger.kernel.org
14730 L:      linux-pci@vger.kernel.org
14731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14732 S:      Supported
14733 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14734 F:      drivers/pci/controller/cadence/pci-j721e.c
14735 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14736
14737 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14738 M:      Linus Walleij <linus.walleij@linaro.org>
14739 L:      linux-pci@vger.kernel.org
14740 S:      Maintained
14741 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14742 F:      drivers/pci/controller/pci-v3-semi.c
14743
14744 PCI ENDPOINT SUBSYSTEM
14745 M:      Kishon Vijay Abraham I <kishon@ti.com>
14746 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14747 R:      Krzysztof Wilczyński <kw@linux.com>
14748 L:      linux-pci@vger.kernel.org
14749 S:      Supported
14750 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14751 B:      https://bugzilla.kernel.org
14752 C:      irc://irc.oftc.net/linux-pci
14753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14754 F:      Documentation/PCI/endpoint/*
14755 F:      Documentation/misc-devices/pci-endpoint-test.rst
14756 F:      drivers/misc/pci_endpoint_test.c
14757 F:      drivers/pci/endpoint/
14758 F:      tools/pci/
14759
14760 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14761 M:      Russell Currey <ruscur@russell.cc>
14762 M:      Oliver O'Halloran <oohall@gmail.com>
14763 L:      linuxppc-dev@lists.ozlabs.org
14764 S:      Supported
14765 F:      Documentation/PCI/pci-error-recovery.rst
14766 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14767 F:      arch/powerpc/include/*/eeh*.h
14768 F:      arch/powerpc/kernel/eeh*.c
14769 F:      arch/powerpc/platforms/*/eeh*.c
14770 F:      drivers/pci/pcie/aer.c
14771 F:      drivers/pci/pcie/dpc.c
14772 F:      drivers/pci/pcie/err.c
14773
14774 PCI ERROR RECOVERY
14775 M:      Linas Vepstas <linasvepstas@gmail.com>
14776 L:      linux-pci@vger.kernel.org
14777 S:      Supported
14778 F:      Documentation/PCI/pci-error-recovery.rst
14779
14780 PCI MSI DRIVER FOR ALTERA MSI IP
14781 M:      Joyce Ooi <joyce.ooi@intel.com>
14782 L:      linux-pci@vger.kernel.org
14783 S:      Supported
14784 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14785 F:      drivers/pci/controller/pcie-altera-msi.c
14786
14787 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14788 M:      Toan Le <toan@os.amperecomputing.com>
14789 L:      linux-pci@vger.kernel.org
14790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14791 S:      Maintained
14792 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14793 F:      drivers/pci/controller/pci-xgene-msi.c
14794
14795 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14796 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14797 R:      Rob Herring <robh@kernel.org>
14798 R:      Krzysztof Wilczyński <kw@linux.com>
14799 L:      linux-pci@vger.kernel.org
14800 S:      Supported
14801 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14802 B:      https://bugzilla.kernel.org
14803 C:      irc://irc.oftc.net/linux-pci
14804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14805 F:      drivers/pci/controller/
14806 F:      drivers/pci/pci-bridge-emul.c
14807 F:      drivers/pci/pci-bridge-emul.h
14808
14809 PCI SUBSYSTEM
14810 M:      Bjorn Helgaas <bhelgaas@google.com>
14811 L:      linux-pci@vger.kernel.org
14812 S:      Supported
14813 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14814 B:      https://bugzilla.kernel.org
14815 C:      irc://irc.oftc.net/linux-pci
14816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14817 F:      Documentation/PCI/
14818 F:      Documentation/devicetree/bindings/pci/
14819 F:      arch/x86/kernel/early-quirks.c
14820 F:      arch/x86/kernel/quirks.c
14821 F:      arch/x86/pci/
14822 F:      drivers/acpi/pci*
14823 F:      drivers/pci/
14824 F:      include/asm-generic/pci*
14825 F:      include/linux/of_pci.h
14826 F:      include/linux/pci*
14827 F:      include/uapi/linux/pci*
14828 F:      lib/pci*
14829
14830 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14831 M:      Jonathan Chocron <jonnyc@amazon.com>
14832 L:      linux-pci@vger.kernel.org
14833 S:      Maintained
14834 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14835 F:      drivers/pci/controller/dwc/pcie-al.c
14836
14837 PCIE DRIVER FOR AMLOGIC MESON
14838 M:      Yue Wang <yue.wang@Amlogic.com>
14839 L:      linux-pci@vger.kernel.org
14840 L:      linux-amlogic@lists.infradead.org
14841 S:      Maintained
14842 F:      drivers/pci/controller/dwc/pci-meson.c
14843
14844 PCIE DRIVER FOR AXIS ARTPEC
14845 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14846 L:      linux-arm-kernel@axis.com
14847 L:      linux-pci@vger.kernel.org
14848 S:      Maintained
14849 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14850 F:      drivers/pci/controller/dwc/*artpec*
14851
14852 PCIE DRIVER FOR CAVIUM THUNDERX
14853 M:      Robert Richter <rric@kernel.org>
14854 L:      linux-pci@vger.kernel.org
14855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14856 S:      Odd Fixes
14857 F:      drivers/pci/controller/pci-thunder-*
14858
14859 PCIE DRIVER FOR HISILICON
14860 M:      Zhou Wang <wangzhou1@hisilicon.com>
14861 L:      linux-pci@vger.kernel.org
14862 S:      Maintained
14863 F:      drivers/pci/controller/dwc/pcie-hisi.c
14864
14865 PCIE DRIVER FOR HISILICON KIRIN
14866 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14867 M:      Binghui Wang <wangbinghui@hisilicon.com>
14868 L:      linux-pci@vger.kernel.org
14869 S:      Maintained
14870 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14871 F:      drivers/pci/controller/dwc/pcie-kirin.c
14872
14873 PCIE DRIVER FOR HISILICON STB
14874 M:      Shawn Guo <shawn.guo@linaro.org>
14875 L:      linux-pci@vger.kernel.org
14876 S:      Maintained
14877 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14878 F:      drivers/pci/controller/dwc/pcie-histb.c
14879
14880 PCIE DRIVER FOR INTEL KEEM BAY
14881 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14882 L:      linux-pci@vger.kernel.org
14883 S:      Supported
14884 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14885 F:      drivers/pci/controller/dwc/pcie-keembay.c
14886
14887 PCIE DRIVER FOR INTEL LGM GW SOC
14888 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14889 L:      linux-pci@vger.kernel.org
14890 S:      Maintained
14891 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14892 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14893
14894 PCIE DRIVER FOR MEDIATEK
14895 M:      Ryder Lee <ryder.lee@mediatek.com>
14896 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14897 L:      linux-pci@vger.kernel.org
14898 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14899 S:      Supported
14900 F:      Documentation/devicetree/bindings/pci/mediatek*
14901 F:      drivers/pci/controller/*mediatek*
14902
14903 PCIE DRIVER FOR MICROCHIP
14904 M:      Daire McNamara <daire.mcnamara@microchip.com>
14905 L:      linux-pci@vger.kernel.org
14906 S:      Supported
14907 F:      Documentation/devicetree/bindings/pci/microchip*
14908 F:      drivers/pci/controller/*microchip*
14909
14910 PCIE DRIVER FOR QUALCOMM MSM
14911 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14912 L:      linux-pci@vger.kernel.org
14913 L:      linux-arm-msm@vger.kernel.org
14914 S:      Maintained
14915 F:      drivers/pci/controller/dwc/pcie-qcom.c
14916
14917 PCIE ENDPOINT DRIVER FOR QUALCOMM
14918 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14919 L:      linux-pci@vger.kernel.org
14920 L:      linux-arm-msm@vger.kernel.org
14921 S:      Maintained
14922 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
14923 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
14924
14925 PCIE DRIVER FOR ROCKCHIP
14926 M:      Shawn Lin <shawn.lin@rock-chips.com>
14927 L:      linux-pci@vger.kernel.org
14928 L:      linux-rockchip@lists.infradead.org
14929 S:      Maintained
14930 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14931 F:      drivers/pci/controller/pcie-rockchip*
14932
14933 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14934 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14935 L:      linux-pci@vger.kernel.org
14936 S:      Maintained
14937 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14938 F:      drivers/pci/controller/dwc/pcie-uniphier*
14939
14940 PCIE DRIVER FOR ST SPEAR13XX
14941 M:      Pratyush Anand <pratyush.anand@gmail.com>
14942 L:      linux-pci@vger.kernel.org
14943 S:      Maintained
14944 F:      drivers/pci/controller/dwc/*spear*
14945
14946 PCMCIA SUBSYSTEM
14947 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14948 S:      Odd Fixes
14949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14950 F:      Documentation/pcmcia/
14951 F:      drivers/pcmcia/
14952 F:      include/pcmcia/
14953 F:      tools/pcmcia/
14954
14955 PCNET32 NETWORK DRIVER
14956 M:      Don Fry <pcnet32@frontier.com>
14957 L:      netdev@vger.kernel.org
14958 S:      Maintained
14959 F:      drivers/net/ethernet/amd/pcnet32.c
14960
14961 PCRYPT PARALLEL CRYPTO ENGINE
14962 M:      Steffen Klassert <steffen.klassert@secunet.com>
14963 L:      linux-crypto@vger.kernel.org
14964 S:      Maintained
14965 F:      crypto/pcrypt.c
14966 F:      include/crypto/pcrypt.h
14967
14968 PEAQ WMI HOTKEYS DRIVER
14969 M:      Hans de Goede <hdegoede@redhat.com>
14970 L:      platform-driver-x86@vger.kernel.org
14971 S:      Maintained
14972 F:      drivers/platform/x86/peaq-wmi.c
14973
14974 PENSANDO ETHERNET DRIVERS
14975 M:      Shannon Nelson <snelson@pensando.io>
14976 M:      drivers@pensando.io
14977 L:      netdev@vger.kernel.org
14978 S:      Supported
14979 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14980 F:      drivers/net/ethernet/pensando/
14981
14982 PER-CPU MEMORY ALLOCATOR
14983 M:      Dennis Zhou <dennis@kernel.org>
14984 M:      Tejun Heo <tj@kernel.org>
14985 M:      Christoph Lameter <cl@linux.com>
14986 L:      linux-mm@kvack.org
14987 S:      Maintained
14988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14989 F:      arch/*/include/asm/percpu.h
14990 F:      include/linux/percpu*.h
14991 F:      lib/percpu*.c
14992 F:      mm/percpu*.c
14993
14994 PER-TASK DELAY ACCOUNTING
14995 M:      Balbir Singh <bsingharora@gmail.com>
14996 S:      Maintained
14997 F:      include/linux/delayacct.h
14998 F:      kernel/delayacct.c
14999
15000 PERFORMANCE EVENTS SUBSYSTEM
15001 M:      Peter Zijlstra <peterz@infradead.org>
15002 M:      Ingo Molnar <mingo@redhat.com>
15003 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15004 R:      Mark Rutland <mark.rutland@arm.com>
15005 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15006 R:      Jiri Olsa <jolsa@redhat.com>
15007 R:      Namhyung Kim <namhyung@kernel.org>
15008 L:      linux-perf-users@vger.kernel.org
15009 L:      linux-kernel@vger.kernel.org
15010 S:      Supported
15011 W:      https://perf.wiki.kernel.org/
15012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15013 F:      arch/*/events/*
15014 F:      arch/*/events/*/*
15015 F:      arch/*/include/asm/perf_event.h
15016 F:      arch/*/kernel/*/*/perf_event*.c
15017 F:      arch/*/kernel/*/perf_event*.c
15018 F:      arch/*/kernel/perf_callchain.c
15019 F:      arch/*/kernel/perf_event*.c
15020 F:      include/linux/perf_event.h
15021 F:      include/uapi/linux/perf_event.h
15022 F:      kernel/events/*
15023 F:      tools/lib/perf/
15024 F:      tools/perf/
15025
15026 PERFORMANCE EVENTS TOOLING ARM64
15027 R:      John Garry <john.garry@huawei.com>
15028 R:      Will Deacon <will@kernel.org>
15029 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15030 R:      Leo Yan <leo.yan@linaro.org>
15031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15032 S:      Supported
15033 F:      tools/build/feature/test-libopencsd.c
15034 F:      tools/perf/arch/arm*/
15035 F:      tools/perf/pmu-events/arch/arm64/
15036 F:      tools/perf/util/arm-spe*
15037 F:      tools/perf/util/cs-etm*
15038
15039 PERSONALITY HANDLING
15040 M:      Christoph Hellwig <hch@infradead.org>
15041 L:      linux-abi-devel@lists.sourceforge.net
15042 S:      Maintained
15043 F:      include/linux/personality.h
15044 F:      include/uapi/linux/personality.h
15045
15046 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15047 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15048 L:      linux-input@vger.kernel.org
15049 S:      Maintained
15050 F:      Documentation/input/devices/pxrc.rst
15051 F:      drivers/input/joystick/pxrc.c
15052
15053 PHONET PROTOCOL
15054 M:      Remi Denis-Courmont <courmisch@gmail.com>
15055 S:      Supported
15056 F:      Documentation/networking/phonet.rst
15057 F:      include/linux/phonet.h
15058 F:      include/net/phonet/
15059 F:      include/uapi/linux/phonet.h
15060 F:      net/phonet/
15061
15062 PHRAM MTD DRIVER
15063 M:      Joern Engel <joern@lazybastard.org>
15064 L:      linux-mtd@lists.infradead.org
15065 S:      Maintained
15066 F:      drivers/mtd/devices/phram.c
15067
15068 PICOLCD HID DRIVER
15069 M:      Bruno Prémont <bonbons@linux-vserver.org>
15070 L:      linux-input@vger.kernel.org
15071 S:      Maintained
15072 F:      drivers/hid/hid-picolcd*
15073
15074 PIDFD API
15075 M:      Christian Brauner <christian@brauner.io>
15076 L:      linux-kernel@vger.kernel.org
15077 S:      Maintained
15078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15079 F:      samples/pidfd/
15080 F:      tools/testing/selftests/clone3/
15081 F:      tools/testing/selftests/pid_namespace/
15082 F:      tools/testing/selftests/pidfd/
15083 K:      (?i)pidfd
15084 K:      (?i)clone3
15085 K:      \b(clone_args|kernel_clone_args)\b
15086
15087 PIN CONTROL SUBSYSTEM
15088 M:      Linus Walleij <linus.walleij@linaro.org>
15089 L:      linux-gpio@vger.kernel.org
15090 S:      Maintained
15091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15092 F:      Documentation/devicetree/bindings/pinctrl/
15093 F:      Documentation/driver-api/pin-control.rst
15094 F:      drivers/pinctrl/
15095 F:      include/linux/pinctrl/
15096
15097 PIN CONTROLLER - AMD
15098 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15099 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15100 S:      Maintained
15101 F:      drivers/pinctrl/pinctrl-amd.c
15102
15103 PIN CONTROLLER - FREESCALE
15104 M:      Dong Aisheng <aisheng.dong@nxp.com>
15105 M:      Fabio Estevam <festevam@gmail.com>
15106 M:      Shawn Guo <shawnguo@kernel.org>
15107 M:      Stefan Agner <stefan@agner.ch>
15108 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15109 L:      linux-gpio@vger.kernel.org
15110 S:      Maintained
15111 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15112 F:      drivers/pinctrl/freescale/
15113
15114 PIN CONTROLLER - INTEL
15115 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15116 M:      Andy Shevchenko <andy@kernel.org>
15117 S:      Maintained
15118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15119 F:      drivers/pinctrl/intel/
15120
15121 PIN CONTROLLER - KEEMBAY
15122 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15123 S:      Supported
15124 F:      drivers/pinctrl/pinctrl-keembay*
15125
15126 PIN CONTROLLER - MEDIATEK
15127 M:      Sean Wang <sean.wang@kernel.org>
15128 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15129 S:      Maintained
15130 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15131 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15132 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15133 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15134 F:      drivers/pinctrl/mediatek/
15135
15136 PIN CONTROLLER - MICROCHIP AT91
15137 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15139 L:      linux-gpio@vger.kernel.org
15140 S:      Supported
15141 F:      drivers/gpio/gpio-sama5d2-piobu.c
15142 F:      drivers/pinctrl/pinctrl-at91*
15143
15144 PIN CONTROLLER - QUALCOMM
15145 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15146 L:      linux-arm-msm@vger.kernel.org
15147 S:      Maintained
15148 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15149 F:      drivers/pinctrl/qcom/
15150
15151 PIN CONTROLLER - RENESAS
15152 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15153 L:      linux-renesas-soc@vger.kernel.org
15154 S:      Supported
15155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15156 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15157 F:      drivers/pinctrl/renesas/
15158
15159 PIN CONTROLLER - SAMSUNG
15160 M:      Tomasz Figa <tomasz.figa@gmail.com>
15161 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15162 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15164 L:      linux-samsung-soc@vger.kernel.org
15165 S:      Maintained
15166 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15168 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15169 F:      drivers/pinctrl/samsung/
15170 F:      include/dt-bindings/pinctrl/samsung.h
15171
15172 PIN CONTROLLER - SINGLE
15173 M:      Tony Lindgren <tony@atomide.com>
15174 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15176 L:      linux-omap@vger.kernel.org
15177 S:      Maintained
15178 F:      drivers/pinctrl/pinctrl-single.c
15179
15180 PKTCDVD DRIVER
15181 M:      linux-block@vger.kernel.org
15182 S:      Orphan
15183 F:      drivers/block/pktcdvd.c
15184 F:      include/linux/pktcdvd.h
15185 F:      include/uapi/linux/pktcdvd.h
15186
15187 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15188 M:      Tomasz Duszynski <tduszyns@gmail.com>
15189 S:      Maintained
15190 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15191 F:      drivers/iio/chemical/pms7003.c
15192
15193 PLDMFW LIBRARY
15194 M:      Jacob Keller <jacob.e.keller@intel.com>
15195 S:      Maintained
15196 F:      Documentation/driver-api/pldmfw/
15197 F:      include/linux/pldmfw.h
15198 F:      lib/pldmfw/
15199
15200 PLX DMA DRIVER
15201 M:      Logan Gunthorpe <logang@deltatee.com>
15202 S:      Maintained
15203 F:      drivers/dma/plx_dma.c
15204
15205 PM6764TR DRIVER
15206 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15207 L:      linux-hwmon@vger.kernel.org
15208 S:      Maintained
15209 F:      Documentation/hwmon/pm6764tr.rst
15210 F:      drivers/hwmon/pmbus/pm6764tr.c
15211
15212 PM-GRAPH UTILITY
15213 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15214 L:      linux-pm@vger.kernel.org
15215 S:      Supported
15216 W:      https://01.org/pm-graph
15217 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15218 T:      git git://github.com/intel/pm-graph
15219 F:      tools/power/pm-graph
15220
15221 PMBUS HARDWARE MONITORING DRIVERS
15222 M:      Guenter Roeck <linux@roeck-us.net>
15223 L:      linux-hwmon@vger.kernel.org
15224 S:      Maintained
15225 W:      http://hwmon.wiki.kernel.org/
15226 W:      http://www.roeck-us.net/linux/drivers/
15227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15228 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15229 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15230 F:      Documentation/hwmon/adm1275.rst
15231 F:      Documentation/hwmon/ibm-cffps.rst
15232 F:      Documentation/hwmon/ir35221.rst
15233 F:      Documentation/hwmon/lm25066.rst
15234 F:      Documentation/hwmon/ltc2978.rst
15235 F:      Documentation/hwmon/ltc3815.rst
15236 F:      Documentation/hwmon/max16064.rst
15237 F:      Documentation/hwmon/max20751.rst
15238 F:      Documentation/hwmon/max31785.rst
15239 F:      Documentation/hwmon/max34440.rst
15240 F:      Documentation/hwmon/max8688.rst
15241 F:      Documentation/hwmon/pmbus-core.rst
15242 F:      Documentation/hwmon/pmbus.rst
15243 F:      Documentation/hwmon/tps40422.rst
15244 F:      Documentation/hwmon/ucd9000.rst
15245 F:      Documentation/hwmon/ucd9200.rst
15246 F:      Documentation/hwmon/zl6100.rst
15247 F:      drivers/hwmon/pmbus/
15248 F:      include/linux/pmbus.h
15249
15250 PMC SIERRA MaxRAID DRIVER
15251 L:      linux-scsi@vger.kernel.org
15252 S:      Orphan
15253 W:      http://www.pmc-sierra.com/
15254 F:      drivers/scsi/pmcraid.*
15255
15256 PMC SIERRA PM8001 DRIVER
15257 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15258 L:      linux-scsi@vger.kernel.org
15259 S:      Supported
15260 F:      drivers/scsi/pm8001/
15261
15262 PNI RM3100 IIO DRIVER
15263 M:      Song Qiang <songqiang1304521@gmail.com>
15264 L:      linux-iio@vger.kernel.org
15265 S:      Maintained
15266 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15267 F:      drivers/iio/magnetometer/rm3100*
15268
15269 PNP SUPPORT
15270 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15271 L:      linux-acpi@vger.kernel.org
15272 S:      Maintained
15273 F:      drivers/pnp/
15274 F:      include/linux/pnp.h
15275
15276 POSIX CLOCKS and TIMERS
15277 M:      Thomas Gleixner <tglx@linutronix.de>
15278 L:      linux-kernel@vger.kernel.org
15279 S:      Maintained
15280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15281 F:      fs/timerfd.c
15282 F:      include/linux/time_namespace.h
15283 F:      include/linux/timer*
15284 F:      kernel/time/*timer*
15285 F:      kernel/time/namespace.c
15286
15287 POWER MANAGEMENT CORE
15288 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15289 L:      linux-pm@vger.kernel.org
15290 S:      Supported
15291 B:      https://bugzilla.kernel.org
15292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15293 F:      drivers/base/power/
15294 F:      drivers/powercap/
15295 F:      include/linux/intel_rapl.h
15296 F:      include/linux/pm.h
15297 F:      include/linux/pm_*
15298 F:      include/linux/powercap.h
15299 F:      kernel/configs/nopm.config
15300
15301 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15302 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15303 L:      linux-pm@vger.kernel.org
15304 S:      Supported
15305 B:      https://bugzilla.kernel.org
15306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15307 F:      drivers/powercap/dtpm*
15308 F:      include/linux/dtpm.h
15309
15310 POWER STATE COORDINATION INTERFACE (PSCI)
15311 M:      Mark Rutland <mark.rutland@arm.com>
15312 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15314 S:      Maintained
15315 F:      drivers/firmware/psci/
15316 F:      include/linux/psci.h
15317 F:      include/uapi/linux/psci.h
15318
15319 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15320 M:      Sebastian Reichel <sre@kernel.org>
15321 L:      linux-pm@vger.kernel.org
15322 S:      Maintained
15323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15324 F:      Documentation/ABI/testing/sysfs-class-power
15325 F:      Documentation/devicetree/bindings/power/supply/
15326 F:      drivers/power/supply/
15327 F:      include/linux/power/
15328 F:      include/linux/power_supply.h
15329
15330 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15331 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15332 L:      linuxppc-dev@lists.ozlabs.org
15333 S:      Maintained
15334 F:      drivers/char/powernv-op-panel.c
15335
15336 PPP OVER ATM (RFC 2364)
15337 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15338 S:      Maintained
15339 F:      include/uapi/linux/atmppp.h
15340 F:      net/atm/pppoatm.c
15341
15342 PPP OVER ETHERNET
15343 M:      Michal Ostrowski <mostrows@earthlink.net>
15344 S:      Maintained
15345 F:      drivers/net/ppp/pppoe.c
15346 F:      drivers/net/ppp/pppox.c
15347
15348 PPP OVER L2TP
15349 M:      James Chapman <jchapman@katalix.com>
15350 S:      Maintained
15351 F:      include/linux/if_pppol2tp.h
15352 F:      include/uapi/linux/if_pppol2tp.h
15353 F:      net/l2tp/l2tp_ppp.c
15354
15355 PPP PROTOCOL DRIVERS AND COMPRESSORS
15356 M:      Paul Mackerras <paulus@samba.org>
15357 L:      linux-ppp@vger.kernel.org
15358 S:      Maintained
15359 F:      drivers/net/ppp/ppp_*
15360
15361 PPS SUPPORT
15362 M:      Rodolfo Giometti <giometti@enneenne.com>
15363 L:      linuxpps@ml.enneenne.com (subscribers-only)
15364 S:      Maintained
15365 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15366 F:      Documentation/ABI/testing/sysfs-pps
15367 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15368 F:      Documentation/driver-api/pps.rst
15369 F:      drivers/pps/
15370 F:      include/linux/pps*.h
15371 F:      include/uapi/linux/pps.h
15372
15373 PPTP DRIVER
15374 M:      Dmitry Kozlov <xeb@mail.ru>
15375 L:      netdev@vger.kernel.org
15376 S:      Maintained
15377 W:      http://sourceforge.net/projects/accel-pptp
15378 F:      drivers/net/ppp/pptp.c
15379
15380 PRESSURE STALL INFORMATION (PSI)
15381 M:      Johannes Weiner <hannes@cmpxchg.org>
15382 S:      Maintained
15383 F:      include/linux/psi*
15384 F:      kernel/sched/psi.c
15385
15386 PRINTK
15387 M:      Petr Mladek <pmladek@suse.com>
15388 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15389 R:      Steven Rostedt <rostedt@goodmis.org>
15390 R:      John Ogness <john.ogness@linutronix.de>
15391 S:      Maintained
15392 F:      include/linux/printk.h
15393 F:      kernel/printk/
15394
15395 PRINTK INDEXING
15396 R:      Chris Down <chris@chrisdown.name>
15397 S:      Maintained
15398 F:      kernel/printk/index.c
15399
15400 PROC FILESYSTEM
15401 L:      linux-kernel@vger.kernel.org
15402 L:      linux-fsdevel@vger.kernel.org
15403 S:      Maintained
15404 F:      Documentation/filesystems/proc.rst
15405 F:      fs/proc/
15406 F:      include/linux/proc_fs.h
15407 F:      tools/testing/selftests/proc/
15408
15409 PROC SYSCTL
15410 M:      Luis Chamberlain <mcgrof@kernel.org>
15411 M:      Kees Cook <keescook@chromium.org>
15412 M:      Iurii Zaikin <yzaikin@google.com>
15413 L:      linux-kernel@vger.kernel.org
15414 L:      linux-fsdevel@vger.kernel.org
15415 S:      Maintained
15416 F:      fs/proc/proc_sysctl.c
15417 F:      include/linux/sysctl.h
15418 F:      kernel/sysctl-test.c
15419 F:      kernel/sysctl.c
15420 F:      tools/testing/selftests/sysctl/
15421
15422 PS3 NETWORK SUPPORT
15423 M:      Geoff Levand <geoff@infradead.org>
15424 L:      netdev@vger.kernel.org
15425 L:      linuxppc-dev@lists.ozlabs.org
15426 S:      Maintained
15427 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15428
15429 PS3 PLATFORM SUPPORT
15430 M:      Geoff Levand <geoff@infradead.org>
15431 L:      linuxppc-dev@lists.ozlabs.org
15432 S:      Maintained
15433 F:      arch/powerpc/boot/ps3*
15434 F:      arch/powerpc/include/asm/lv1call.h
15435 F:      arch/powerpc/include/asm/ps3*.h
15436 F:      arch/powerpc/platforms/ps3/
15437 F:      drivers/*/ps3*
15438 F:      drivers/ps3/
15439 F:      drivers/rtc/rtc-ps3.c
15440 F:      drivers/usb/host/*ps3.c
15441 F:      sound/ppc/snd_ps3*
15442
15443 PS3VRAM DRIVER
15444 M:      Jim Paris <jim@jtan.com>
15445 M:      Geoff Levand <geoff@infradead.org>
15446 L:      linuxppc-dev@lists.ozlabs.org
15447 S:      Maintained
15448 F:      drivers/block/ps3vram.c
15449
15450 PSAMPLE PACKET SAMPLING SUPPORT
15451 M:      Yotam Gigi <yotam.gi@gmail.com>
15452 S:      Maintained
15453 F:      include/net/psample.h
15454 F:      include/uapi/linux/psample.h
15455 F:      net/psample
15456
15457 PSTORE FILESYSTEM
15458 M:      Kees Cook <keescook@chromium.org>
15459 M:      Anton Vorontsov <anton@enomsg.org>
15460 M:      Colin Cross <ccross@android.com>
15461 M:      Tony Luck <tony.luck@intel.com>
15462 S:      Maintained
15463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15464 F:      Documentation/admin-guide/ramoops.rst
15465 F:      Documentation/admin-guide/pstore-blk.rst
15466 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15467 F:      drivers/acpi/apei/erst.c
15468 F:      drivers/firmware/efi/efi-pstore.c
15469 F:      fs/pstore/
15470 F:      include/linux/pstore*
15471 K:      \b(pstore|ramoops)
15472
15473 PTP HARDWARE CLOCK SUPPORT
15474 M:      Richard Cochran <richardcochran@gmail.com>
15475 L:      netdev@vger.kernel.org
15476 S:      Maintained
15477 W:      http://linuxptp.sourceforge.net/
15478 F:      Documentation/ABI/testing/sysfs-ptp
15479 F:      Documentation/driver-api/ptp.rst
15480 F:      drivers/net/phy/dp83640*
15481 F:      drivers/ptp/*
15482 F:      include/linux/ptp_cl*
15483
15484 PTP VIRTUAL CLOCK SUPPORT
15485 M:      Yangbo Lu <yangbo.lu@nxp.com>
15486 L:      netdev@vger.kernel.org
15487 S:      Maintained
15488 F:      drivers/ptp/ptp_vclock.c
15489 F:      net/ethtool/phc_vclocks.c
15490
15491 PTRACE SUPPORT
15492 M:      Oleg Nesterov <oleg@redhat.com>
15493 S:      Maintained
15494 F:      arch/*/*/ptrace*.c
15495 F:      arch/*/include/asm/ptrace*.h
15496 F:      arch/*/ptrace*.c
15497 F:      include/asm-generic/syscall.h
15498 F:      include/linux/ptrace.h
15499 F:      include/linux/regset.h
15500 F:      include/linux/tracehook.h
15501 F:      include/uapi/linux/ptrace.h
15502 F:      include/uapi/linux/ptrace.h
15503 F:      kernel/ptrace.c
15504
15505 PULSE8-CEC DRIVER
15506 M:      Hans Verkuil <hverkuil@xs4all.nl>
15507 L:      linux-media@vger.kernel.org
15508 S:      Maintained
15509 T:      git git://linuxtv.org/media_tree.git
15510 F:      Documentation/admin-guide/media/pulse8-cec.rst
15511 F:      drivers/media/cec/usb/pulse8/
15512
15513 PVRUSB2 VIDEO4LINUX DRIVER
15514 M:      Mike Isely <isely@pobox.com>
15515 L:      pvrusb2@isely.net       (subscribers-only)
15516 L:      linux-media@vger.kernel.org
15517 S:      Maintained
15518 W:      http://www.isely.net/pvrusb2/
15519 T:      git git://linuxtv.org/media_tree.git
15520 F:      Documentation/driver-api/media/drivers/pvrusb2*
15521 F:      drivers/media/usb/pvrusb2/
15522
15523 PWC WEBCAM DRIVER
15524 M:      Hans Verkuil <hverkuil@xs4all.nl>
15525 L:      linux-media@vger.kernel.org
15526 S:      Odd Fixes
15527 T:      git git://linuxtv.org/media_tree.git
15528 F:      drivers/media/usb/pwc/*
15529 F:      include/trace/events/pwc.h
15530
15531 PWM FAN DRIVER
15532 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15533 L:      linux-hwmon@vger.kernel.org
15534 S:      Supported
15535 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15536 F:      Documentation/hwmon/pwm-fan.rst
15537 F:      drivers/hwmon/pwm-fan.c
15538
15539 PWM IR Transmitter
15540 M:      Sean Young <sean@mess.org>
15541 L:      linux-media@vger.kernel.org
15542 S:      Maintained
15543 F:      drivers/media/rc/pwm-ir-tx.c
15544
15545 PWM SUBSYSTEM
15546 M:      Thierry Reding <thierry.reding@gmail.com>
15547 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15548 M:      Lee Jones <lee.jones@linaro.org>
15549 L:      linux-pwm@vger.kernel.org
15550 S:      Maintained
15551 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15553 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15554 F:      Documentation/devicetree/bindings/pwm/
15555 F:      Documentation/driver-api/pwm.rst
15556 F:      drivers/gpio/gpio-mvebu.c
15557 F:      drivers/pwm/
15558 F:      drivers/video/backlight/pwm_bl.c
15559 F:      include/linux/pwm.h
15560 F:      include/linux/pwm_backlight.h
15561 K:      pwm_(config|apply_state|ops)
15562
15563 PXA GPIO DRIVER
15564 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15565 L:      linux-gpio@vger.kernel.org
15566 S:      Maintained
15567 F:      drivers/gpio/gpio-pxa.c
15568
15569 PXA MMCI DRIVER
15570 S:      Orphan
15571
15572 PXA RTC DRIVER
15573 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15574 L:      linux-rtc@vger.kernel.org
15575 S:      Maintained
15576
15577 PXA2xx/PXA3xx SUPPORT
15578 M:      Daniel Mack <daniel@zonque.org>
15579 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15580 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15582 S:      Maintained
15583 T:      git git://github.com/hzhuang1/linux.git
15584 T:      git git://github.com/rjarzmik/linux.git
15585 F:      arch/arm/boot/dts/pxa*
15586 F:      arch/arm/mach-pxa/
15587 F:      drivers/dma/pxa*
15588 F:      drivers/pcmcia/pxa2xx*
15589 F:      drivers/pinctrl/pxa/
15590 F:      drivers/spi/spi-pxa2xx*
15591 F:      drivers/usb/gadget/udc/pxa2*
15592 F:      include/sound/pxa2xx-lib.h
15593 F:      sound/arm/pxa*
15594 F:      sound/soc/pxa/
15595
15596 QAT DRIVER
15597 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15598 L:      qat-linux@intel.com
15599 S:      Supported
15600 F:      drivers/crypto/qat/
15601
15602 QCOM AUDIO (ASoC) DRIVERS
15603 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15604 M:      Banajit Goswami <bgoswami@codeaurora.org>
15605 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15606 S:      Supported
15607 F:      sound/soc/codecs/lpass-va-macro.c
15608 F:      sound/soc/codecs/lpass-wsa-macro.*
15609 F:      sound/soc/codecs/msm8916-wcd-analog.c
15610 F:      sound/soc/codecs/msm8916-wcd-digital.c
15611 F:      sound/soc/codecs/wcd9335.*
15612 F:      sound/soc/codecs/wcd934x.c
15613 F:      sound/soc/codecs/wcd-clsh-v2.*
15614 F:      sound/soc/codecs/wsa881x.c
15615 F:      sound/soc/qcom/
15616
15617 QCOM IPA DRIVER
15618 M:      Alex Elder <elder@kernel.org>
15619 L:      netdev@vger.kernel.org
15620 S:      Supported
15621 F:      drivers/net/ipa/
15622
15623 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15624 M:      Gabriel Somlo <somlo@cmu.edu>
15625 M:      "Michael S. Tsirkin" <mst@redhat.com>
15626 L:      qemu-devel@nongnu.org
15627 S:      Maintained
15628 F:      drivers/firmware/qemu_fw_cfg.c
15629 F:      include/uapi/linux/qemu_fw_cfg.h
15630
15631 QIB DRIVER
15632 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15633 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15634 L:      linux-rdma@vger.kernel.org
15635 S:      Supported
15636 F:      drivers/infiniband/hw/qib/
15637
15638 QLOGIC QL41xxx FCOE DRIVER
15639 M:      Saurav Kashyap <skashyap@marvell.com>
15640 M:      Javed Hasan <jhasan@marvell.com>
15641 M:      GR-QLogic-Storage-Upstream@marvell.com
15642 L:      linux-scsi@vger.kernel.org
15643 S:      Supported
15644 F:      drivers/scsi/qedf/
15645
15646 QLOGIC QL41xxx ISCSI DRIVER
15647 M:      Nilesh Javali <njavali@marvell.com>
15648 M:      Manish Rangankar <mrangankar@marvell.com>
15649 M:      GR-QLogic-Storage-Upstream@marvell.com
15650 L:      linux-scsi@vger.kernel.org
15651 S:      Supported
15652 F:      drivers/scsi/qedi/
15653
15654 QLOGIC QL4xxx ETHERNET DRIVER
15655 M:      Ariel Elior <aelior@marvell.com>
15656 M:      Manish Chopra <manishc@marvell.com>
15657 L:      netdev@vger.kernel.org
15658 S:      Supported
15659 F:      drivers/net/ethernet/qlogic/qed/
15660 F:      drivers/net/ethernet/qlogic/qede/
15661 F:      include/linux/qed/
15662
15663 QLOGIC QL4xxx RDMA DRIVER
15664 M:      Michal Kalderon <mkalderon@marvell.com>
15665 M:      Ariel Elior <aelior@marvell.com>
15666 L:      linux-rdma@vger.kernel.org
15667 S:      Supported
15668 F:      drivers/infiniband/hw/qedr/
15669 F:      include/uapi/rdma/qedr-abi.h
15670
15671 QLOGIC QLA1280 SCSI DRIVER
15672 M:      Michael Reed <mdr@sgi.com>
15673 L:      linux-scsi@vger.kernel.org
15674 S:      Maintained
15675 F:      drivers/scsi/qla1280.[ch]
15676
15677 QLOGIC QLA2XXX FC-SCSI DRIVER
15678 M:      Nilesh Javali <njavali@marvell.com>
15679 M:      GR-QLogic-Storage-Upstream@marvell.com
15680 L:      linux-scsi@vger.kernel.org
15681 S:      Supported
15682 F:      drivers/scsi/qla2xxx/
15683
15684 QLOGIC QLA3XXX NETWORK DRIVER
15685 M:      GR-Linux-NIC-Dev@marvell.com
15686 L:      netdev@vger.kernel.org
15687 S:      Supported
15688 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15689
15690 QLOGIC QLA4XXX iSCSI DRIVER
15691 M:      Nilesh Javali <njavali@marvell.com>
15692 M:      Manish Rangankar <mrangankar@marvell.com>
15693 M:      GR-QLogic-Storage-Upstream@marvell.com
15694 L:      linux-scsi@vger.kernel.org
15695 S:      Supported
15696 F:      drivers/scsi/qla4xxx/
15697
15698 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15699 M:      Shahed Shaikh <shshaikh@marvell.com>
15700 M:      Manish Chopra <manishc@marvell.com>
15701 M:      GR-Linux-NIC-Dev@marvell.com
15702 L:      netdev@vger.kernel.org
15703 S:      Supported
15704 F:      drivers/net/ethernet/qlogic/qlcnic/
15705
15706 QLOGIC QLGE 10Gb ETHERNET DRIVER
15707 M:      Manish Chopra <manishc@marvell.com>
15708 M:      GR-Linux-NIC-Dev@marvell.com
15709 M:      Coiby Xu <coiby.xu@gmail.com>
15710 L:      netdev@vger.kernel.org
15711 S:      Supported
15712 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15713 F:      drivers/staging/qlge/
15714
15715 QM1D1B0004 MEDIA DRIVER
15716 M:      Akihiro Tsukada <tskd08@gmail.com>
15717 L:      linux-media@vger.kernel.org
15718 S:      Odd Fixes
15719 F:      drivers/media/tuners/qm1d1b0004*
15720
15721 QM1D1C0042 MEDIA DRIVER
15722 M:      Akihiro Tsukada <tskd08@gmail.com>
15723 L:      linux-media@vger.kernel.org
15724 S:      Odd Fixes
15725 F:      drivers/media/tuners/qm1d1c0042*
15726
15727 QNX4 FILESYSTEM
15728 M:      Anders Larsen <al@alarsen.net>
15729 S:      Maintained
15730 W:      http://www.alarsen.net/linux/qnx4fs/
15731 F:      fs/qnx4/
15732 F:      include/uapi/linux/qnx4_fs.h
15733 F:      include/uapi/linux/qnxtypes.h
15734
15735 QORIQ DPAA2 FSL-MC BUS DRIVER
15736 M:      Stuart Yoder <stuyoder@gmail.com>
15737 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15738 L:      linux-kernel@vger.kernel.org
15739 S:      Maintained
15740 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15741 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15742 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15743 F:      drivers/bus/fsl-mc/
15744 F:      include/uapi/linux/fsl_mc.h
15745
15746 QT1010 MEDIA DRIVER
15747 M:      Antti Palosaari <crope@iki.fi>
15748 L:      linux-media@vger.kernel.org
15749 S:      Maintained
15750 W:      https://linuxtv.org
15751 W:      http://palosaari.fi/linux/
15752 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15753 T:      git git://linuxtv.org/anttip/media_tree.git
15754 F:      drivers/media/tuners/qt1010*
15755
15756 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15757 M:      Kalle Valo <kvalo@kernel.org>
15758 L:      ath10k@lists.infradead.org
15759 S:      Supported
15760 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15762 F:      drivers/net/wireless/ath/ath10k/
15763
15764 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15765 M:      Kalle Valo <kvalo@kernel.org>
15766 L:      ath11k@lists.infradead.org
15767 S:      Supported
15768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15769 F:      drivers/net/wireless/ath/ath11k/
15770
15771 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15772 M:      ath9k-devel@qca.qualcomm.com
15773 L:      linux-wireless@vger.kernel.org
15774 S:      Supported
15775 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15776 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15777 F:      drivers/net/wireless/ath/ath9k/
15778
15779 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
15780 M:      Stephan Gerhold <stephan@gerhold.net>
15781 L:      netdev@vger.kernel.org
15782 L:      linux-arm-msm@vger.kernel.org
15783 S:      Maintained
15784 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
15785 F:      drivers/net/wwan/qcom_bam_dmux.c
15786
15787 QUALCOMM CAMERA SUBSYSTEM DRIVER
15788 M:      Robert Foss <robert.foss@linaro.org>
15789 M:      Todor Tomov <todor.too@gmail.com>
15790 L:      linux-media@vger.kernel.org
15791 S:      Maintained
15792 F:      Documentation/admin-guide/media/qcom_camss.rst
15793 F:      Documentation/devicetree/bindings/media/*camss*
15794 F:      drivers/media/platform/qcom/camss/
15795
15796 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15797 M:      Niklas Cassel <nks@flawful.org>
15798 L:      linux-pm@vger.kernel.org
15799 L:      linux-arm-msm@vger.kernel.org
15800 S:      Maintained
15801 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15802 F:      drivers/soc/qcom/cpr.c
15803
15804 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15805 M:      Ilia Lin <ilia.lin@kernel.org>
15806 L:      linux-pm@vger.kernel.org
15807 S:      Maintained
15808 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15809 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15810
15811 QUALCOMM CRYPTO DRIVERS
15812 M:      Thara Gopinath <thara.gopinath@linaro.org>
15813 L:      linux-crypto@vger.kernel.org
15814 L:      linux-arm-msm@vger.kernel.org
15815 S:      Maintained
15816 F:      drivers/crypto/qce/
15817
15818 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15819 M:      Timur Tabi <timur@kernel.org>
15820 L:      netdev@vger.kernel.org
15821 S:      Maintained
15822 F:      drivers/net/ethernet/qualcomm/emac/
15823
15824 QUALCOMM ETHQOS ETHERNET DRIVER
15825 M:      Vinod Koul <vkoul@kernel.org>
15826 L:      netdev@vger.kernel.org
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15829 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15830
15831 QUALCOMM FASTRPC DRIVER
15832 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15833 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
15834 L:      linux-arm-msm@vger.kernel.org
15835 S:      Maintained
15836 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
15837 F:      drivers/misc/fastrpc.c
15838 F:      include/uapi/misc/fastrpc.h
15839
15840 QUALCOMM GENERIC INTERFACE I2C DRIVER
15841 M:      Akash Asthana <akashast@codeaurora.org>
15842 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15843 L:      linux-i2c@vger.kernel.org
15844 L:      linux-arm-msm@vger.kernel.org
15845 S:      Supported
15846 F:      drivers/i2c/busses/i2c-qcom-geni.c
15847
15848 QUALCOMM HEXAGON ARCHITECTURE
15849 M:      Brian Cain <bcain@codeaurora.org>
15850 L:      linux-hexagon@vger.kernel.org
15851 S:      Supported
15852 F:      arch/hexagon/
15853
15854 QUALCOMM HIDMA DRIVER
15855 M:      Sinan Kaya <okaya@kernel.org>
15856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15857 L:      linux-arm-msm@vger.kernel.org
15858 L:      dmaengine@vger.kernel.org
15859 S:      Supported
15860 F:      drivers/dma/qcom/hidma*
15861
15862 QUALCOMM I2C CCI DRIVER
15863 M:      Loic Poulain <loic.poulain@linaro.org>
15864 M:      Robert Foss <robert.foss@linaro.org>
15865 L:      linux-i2c@vger.kernel.org
15866 L:      linux-arm-msm@vger.kernel.org
15867 S:      Maintained
15868 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15869 F:      drivers/i2c/busses/i2c-qcom-cci.c
15870
15871 QUALCOMM IOMMU
15872 M:      Rob Clark <robdclark@gmail.com>
15873 L:      iommu@lists.linux-foundation.org
15874 L:      linux-arm-msm@vger.kernel.org
15875 S:      Maintained
15876 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15877
15878 QUALCOMM IPC ROUTER (QRTR) DRIVER
15879 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15880 L:      linux-arm-msm@vger.kernel.org
15881 S:      Maintained
15882 F:      include/trace/events/qrtr.h
15883 F:      include/uapi/linux/qrtr.h
15884 F:      net/qrtr/
15885
15886 QUALCOMM IPCC MAILBOX DRIVER
15887 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15888 L:      linux-arm-msm@vger.kernel.org
15889 S:      Supported
15890 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15891 F:      drivers/mailbox/qcom-ipcc.c
15892 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15893
15894 QUALCOMM IPQ4019 USB PHY DRIVER
15895 M:      Robert Marko <robert.marko@sartura.hr>
15896 M:      Luka Perkov <luka.perkov@sartura.hr>
15897 L:      linux-arm-msm@vger.kernel.org
15898 S:      Maintained
15899 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15900 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15901
15902 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15903 M:      Robert Marko <robert.marko@sartura.hr>
15904 M:      Luka Perkov <luka.perkov@sartura.hr>
15905 L:      linux-arm-msm@vger.kernel.org
15906 S:      Maintained
15907 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15908 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15909
15910 QUALCOMM NAND CONTROLLER DRIVER
15911 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15912 L:      linux-mtd@lists.infradead.org
15913 L:      linux-arm-msm@vger.kernel.org
15914 S:      Maintained
15915 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
15916 F:      drivers/mtd/nand/raw/qcom_nandc.c
15917
15918 QUALCOMM RMNET DRIVER
15919 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15920 M:      Sean Tranchetti <stranche@codeaurora.org>
15921 L:      netdev@vger.kernel.org
15922 S:      Maintained
15923 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15924 F:      drivers/net/ethernet/qualcomm/rmnet/
15925 F:      include/linux/if_rmnet.h
15926
15927 QUALCOMM TSENS THERMAL DRIVER
15928 M:      Amit Kucheria <amitk@kernel.org>
15929 M:      Thara Gopinath <thara.gopinath@linaro.org>
15930 L:      linux-pm@vger.kernel.org
15931 L:      linux-arm-msm@vger.kernel.org
15932 S:      Maintained
15933 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15934 F:      drivers/thermal/qcom/
15935
15936 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15937 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15938 L:      linux-media@vger.kernel.org
15939 L:      linux-arm-msm@vger.kernel.org
15940 S:      Maintained
15941 T:      git git://linuxtv.org/media_tree.git
15942 F:      Documentation/devicetree/bindings/media/*venus*
15943 F:      drivers/media/platform/qcom/venus/
15944
15945 QUALCOMM WCN36XX WIRELESS DRIVER
15946 M:      Kalle Valo <kvalo@kernel.org>
15947 L:      wcn36xx@lists.infradead.org
15948 S:      Supported
15949 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15950 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15951 F:      drivers/net/wireless/ath/wcn36xx/
15952
15953 QUANTENNA QTNFMAC WIRELESS DRIVER
15954 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15955 R:      Sergey Matyukevich <geomatsi@gmail.com>
15956 L:      linux-wireless@vger.kernel.org
15957 S:      Maintained
15958 F:      drivers/net/wireless/quantenna
15959
15960 RADEON and AMDGPU DRM DRIVERS
15961 M:      Alex Deucher <alexander.deucher@amd.com>
15962 M:      Christian König <christian.koenig@amd.com>
15963 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15964 L:      amd-gfx@lists.freedesktop.org
15965 S:      Supported
15966 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15967 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15968 C:      irc://irc.oftc.net/radeon
15969 F:      drivers/gpu/drm/amd/
15970 F:      drivers/gpu/drm/radeon/
15971 F:      include/uapi/drm/amdgpu_drm.h
15972 F:      include/uapi/drm/radeon_drm.h
15973
15974 RADEON FRAMEBUFFER DISPLAY DRIVER
15975 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15976 L:      linux-fbdev@vger.kernel.org
15977 S:      Maintained
15978 F:      drivers/video/fbdev/aty/radeon*
15979 F:      include/uapi/linux/radeonfb.h
15980
15981 RADIOSHARK RADIO DRIVER
15982 M:      Hans Verkuil <hverkuil@xs4all.nl>
15983 L:      linux-media@vger.kernel.org
15984 S:      Maintained
15985 T:      git git://linuxtv.org/media_tree.git
15986 F:      drivers/media/radio/radio-shark.c
15987
15988 RADIOSHARK2 RADIO DRIVER
15989 M:      Hans Verkuil <hverkuil@xs4all.nl>
15990 L:      linux-media@vger.kernel.org
15991 S:      Maintained
15992 T:      git git://linuxtv.org/media_tree.git
15993 F:      drivers/media/radio/radio-shark2.c
15994 F:      drivers/media/radio/radio-tea5777.c
15995
15996 RADOS BLOCK DEVICE (RBD)
15997 M:      Ilya Dryomov <idryomov@gmail.com>
15998 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15999 L:      ceph-devel@vger.kernel.org
16000 S:      Supported
16001 W:      http://ceph.com/
16002 T:      git git://github.com/ceph/ceph-client.git
16003 F:      Documentation/ABI/testing/sysfs-bus-rbd
16004 F:      drivers/block/rbd.c
16005 F:      drivers/block/rbd_types.h
16006
16007 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16008 M:      Paul Mackerras <paulus@samba.org>
16009 L:      linux-fbdev@vger.kernel.org
16010 S:      Maintained
16011 F:      drivers/video/fbdev/aty/aty128fb.c
16012
16013 RAINSHADOW-CEC DRIVER
16014 M:      Hans Verkuil <hverkuil@xs4all.nl>
16015 L:      linux-media@vger.kernel.org
16016 S:      Maintained
16017 T:      git git://linuxtv.org/media_tree.git
16018 F:      drivers/media/cec/usb/rainshadow/
16019
16020 RALINK MIPS ARCHITECTURE
16021 M:      John Crispin <john@phrozen.org>
16022 L:      linux-mips@vger.kernel.org
16023 S:      Maintained
16024 F:      arch/mips/ralink
16025
16026 RALINK RT2X00 WIRELESS LAN DRIVER
16027 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16028 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16029 L:      linux-wireless@vger.kernel.org
16030 S:      Maintained
16031 F:      drivers/net/wireless/ralink/rt2x00/
16032
16033 RAMDISK RAM BLOCK DEVICE DRIVER
16034 M:      Jens Axboe <axboe@kernel.dk>
16035 S:      Maintained
16036 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16037 F:      drivers/block/brd.c
16038
16039 RANCHU VIRTUAL BOARD FOR MIPS
16040 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16041 L:      linux-mips@vger.kernel.org
16042 S:      Supported
16043 F:      arch/mips/configs/generic/board-ranchu.config
16044 F:      arch/mips/generic/board-ranchu.c
16045
16046 RANDOM NUMBER DRIVER
16047 M:      "Theodore Ts'o" <tytso@mit.edu>
16048 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16049 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16050 S:      Maintained
16051 F:      drivers/char/random.c
16052
16053 RAPIDIO SUBSYSTEM
16054 M:      Matt Porter <mporter@kernel.crashing.org>
16055 M:      Alexandre Bounine <alex.bou9@gmail.com>
16056 S:      Maintained
16057 F:      drivers/rapidio/
16058
16059 RAS INFRASTRUCTURE
16060 M:      Tony Luck <tony.luck@intel.com>
16061 M:      Borislav Petkov <bp@alien8.de>
16062 L:      linux-edac@vger.kernel.org
16063 S:      Maintained
16064 F:      Documentation/admin-guide/ras.rst
16065 F:      drivers/ras/
16066 F:      include/linux/ras.h
16067 F:      include/ras/ras_event.h
16068
16069 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16070 L:      linux-wireless@vger.kernel.org
16071 S:      Orphan
16072 F:      drivers/net/wireless/ray*
16073
16074 RC-CORE / LIRC FRAMEWORK
16075 M:      Sean Young <sean@mess.org>
16076 L:      linux-media@vger.kernel.org
16077 S:      Maintained
16078 W:      http://linuxtv.org
16079 T:      git git://linuxtv.org/media_tree.git
16080 F:      Documentation/driver-api/media/rc-core.rst
16081 F:      Documentation/userspace-api/media/rc/
16082 F:      drivers/media/rc/
16083 F:      include/media/rc-map.h
16084 F:      include/media/rc-core.h
16085 F:      include/uapi/linux/lirc.h
16086
16087 RCMM REMOTE CONTROLS DECODER
16088 M:      Patrick Lerda <patrick9876@free.fr>
16089 S:      Maintained
16090 F:      drivers/media/rc/ir-rcmm-decoder.c
16091
16092 RCUTORTURE TEST FRAMEWORK
16093 M:      "Paul E. McKenney" <paulmck@kernel.org>
16094 M:      Josh Triplett <josh@joshtriplett.org>
16095 R:      Steven Rostedt <rostedt@goodmis.org>
16096 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16097 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16098 L:      rcu@vger.kernel.org
16099 S:      Supported
16100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16101 F:      tools/testing/selftests/rcutorture
16102
16103 RDACM20 Camera Sensor
16104 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16105 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16106 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16107 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16108 L:      linux-media@vger.kernel.org
16109 S:      Maintained
16110 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16111 F:      drivers/media/i2c/max9271.c
16112 F:      drivers/media/i2c/max9271.h
16113 F:      drivers/media/i2c/rdacm20.c
16114
16115 RDACM21 Camera Sensor
16116 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16117 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16118 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16119 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16120 L:      linux-media@vger.kernel.org
16121 S:      Maintained
16122 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16123 F:      drivers/media/i2c/max9271.c
16124 F:      drivers/media/i2c/max9271.h
16125 F:      drivers/media/i2c/rdacm21.c
16126
16127 RDC R-321X SoC
16128 M:      Florian Fainelli <florian@openwrt.org>
16129 S:      Maintained
16130
16131 RDC R6040 FAST ETHERNET DRIVER
16132 M:      Florian Fainelli <f.fainelli@gmail.com>
16133 L:      netdev@vger.kernel.org
16134 S:      Maintained
16135 F:      drivers/net/ethernet/rdc/r6040.c
16136
16137 RDMAVT - RDMA verbs software
16138 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16139 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16140 L:      linux-rdma@vger.kernel.org
16141 S:      Supported
16142 F:      drivers/infiniband/sw/rdmavt
16143
16144 RDS - RELIABLE DATAGRAM SOCKETS
16145 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16146 L:      netdev@vger.kernel.org
16147 L:      linux-rdma@vger.kernel.org
16148 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16149 S:      Supported
16150 W:      https://oss.oracle.com/projects/rds/
16151 F:      Documentation/networking/rds.rst
16152 F:      net/rds/
16153
16154 RDT - RESOURCE ALLOCATION
16155 M:      Fenghua Yu <fenghua.yu@intel.com>
16156 M:      Reinette Chatre <reinette.chatre@intel.com>
16157 L:      linux-kernel@vger.kernel.org
16158 S:      Supported
16159 F:      Documentation/x86/resctrl*
16160 F:      arch/x86/include/asm/resctrl.h
16161 F:      arch/x86/kernel/cpu/resctrl/
16162 F:      tools/testing/selftests/resctrl/
16163
16164 READ-COPY UPDATE (RCU)
16165 M:      "Paul E. McKenney" <paulmck@kernel.org>
16166 M:      Josh Triplett <josh@joshtriplett.org>
16167 R:      Steven Rostedt <rostedt@goodmis.org>
16168 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16169 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16170 R:      Joel Fernandes <joel@joelfernandes.org>
16171 L:      rcu@vger.kernel.org
16172 S:      Supported
16173 W:      http://www.rdrop.com/users/paulmck/RCU/
16174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16175 F:      Documentation/RCU/
16176 F:      include/linux/rcu*
16177 F:      kernel/rcu/
16178 X:      Documentation/RCU/torture.rst
16179 X:      include/linux/srcu*.h
16180 X:      kernel/rcu/srcu*.c
16181
16182 REAL TIME CLOCK (RTC) SUBSYSTEM
16183 M:      Alessandro Zummo <a.zummo@towertech.it>
16184 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16185 L:      linux-rtc@vger.kernel.org
16186 S:      Maintained
16187 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16189 F:      Documentation/admin-guide/rtc.rst
16190 F:      Documentation/devicetree/bindings/rtc/
16191 F:      drivers/rtc/
16192 F:      include/linux/platform_data/rtc-*
16193 F:      include/linux/rtc.h
16194 F:      include/linux/rtc/
16195 F:      include/uapi/linux/rtc.h
16196 F:      tools/testing/selftests/rtc/
16197
16198 REALTEK AUDIO CODECS
16199 M:      Oder Chiou <oder_chiou@realtek.com>
16200 S:      Maintained
16201 F:      include/sound/rt*.h
16202 F:      sound/soc/codecs/rt*
16203
16204 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16205 M:      Linus Walleij <linus.walleij@linaro.org>
16206 S:      Maintained
16207 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16208 F:      drivers/net/dsa/realtek-smi*
16209 F:      drivers/net/dsa/rtl83*
16210
16211 REALTEK WIRELESS DRIVER (rtlwifi family)
16212 M:      Ping-Ke Shih <pkshih@realtek.com>
16213 L:      linux-wireless@vger.kernel.org
16214 S:      Maintained
16215 W:      https://wireless.wiki.kernel.org/
16216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16217 F:      drivers/net/wireless/realtek/rtlwifi/
16218
16219 REALTEK WIRELESS DRIVER (rtw88)
16220 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16221 L:      linux-wireless@vger.kernel.org
16222 S:      Maintained
16223 F:      drivers/net/wireless/realtek/rtw88/
16224
16225 REALTEK WIRELESS DRIVER (rtw89)
16226 M:      Ping-Ke Shih <pkshih@realtek.com>
16227 L:      linux-wireless@vger.kernel.org
16228 S:      Maintained
16229 F:      drivers/net/wireless/realtek/rtw89/
16230
16231 REDPINE WIRELESS DRIVER
16232 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16233 M:      Siva Rebbagondla <siva8118@gmail.com>
16234 L:      linux-wireless@vger.kernel.org
16235 S:      Maintained
16236 F:      drivers/net/wireless/rsi/
16237
16238 REGISTER MAP ABSTRACTION
16239 M:      Mark Brown <broonie@kernel.org>
16240 L:      linux-kernel@vger.kernel.org
16241 S:      Supported
16242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16243 F:      Documentation/devicetree/bindings/regmap/
16244 F:      drivers/base/regmap/
16245 F:      include/linux/regmap.h
16246
16247 REISERFS FILE SYSTEM
16248 L:      reiserfs-devel@vger.kernel.org
16249 S:      Supported
16250 F:      fs/reiserfs/
16251
16252 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16253 M:      Ohad Ben-Cohen <ohad@wizery.com>
16254 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16255 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16256 L:      linux-remoteproc@vger.kernel.org
16257 S:      Maintained
16258 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16259 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16260 F:      Documentation/devicetree/bindings/remoteproc/
16261 F:      Documentation/staging/remoteproc.rst
16262 F:      drivers/remoteproc/
16263 F:      include/linux/remoteproc.h
16264 F:      include/linux/remoteproc/
16265
16266 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16267 M:      Ohad Ben-Cohen <ohad@wizery.com>
16268 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16269 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16270 L:      linux-remoteproc@vger.kernel.org
16271 S:      Maintained
16272 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16273 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16274 F:      Documentation/staging/rpmsg.rst
16275 F:      drivers/rpmsg/
16276 F:      include/linux/rpmsg.h
16277 F:      include/linux/rpmsg/
16278 F:      include/uapi/linux/rpmsg.h
16279 F:      samples/rpmsg/
16280
16281 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16282 M:      Stephan Gerhold <stephan@gerhold.net>
16283 L:      netdev@vger.kernel.org
16284 L:      linux-remoteproc@vger.kernel.org
16285 S:      Maintained
16286 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16287
16288 RENESAS CLOCK DRIVERS
16289 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16290 L:      linux-renesas-soc@vger.kernel.org
16291 S:      Supported
16292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16293 F:      Documentation/devicetree/bindings/clock/renesas,*
16294 F:      drivers/clk/renesas/
16295
16296 RENESAS EMEV2 I2C DRIVER
16297 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16298 L:      linux-renesas-soc@vger.kernel.org
16299 S:      Supported
16300 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16301 F:      drivers/i2c/busses/i2c-emev2.c
16302
16303 RENESAS ETHERNET DRIVERS
16304 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16305 L:      netdev@vger.kernel.org
16306 L:      linux-renesas-soc@vger.kernel.org
16307 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16308 F:      drivers/net/ethernet/renesas/
16309 F:      include/linux/sh_eth.h
16310
16311 RENESAS R-CAR GYROADC DRIVER
16312 M:      Marek Vasut <marek.vasut@gmail.com>
16313 L:      linux-iio@vger.kernel.org
16314 S:      Supported
16315 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16316 F:      drivers/iio/adc/rcar-gyroadc.c
16317
16318 RENESAS R-CAR I2C DRIVERS
16319 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16320 L:      linux-renesas-soc@vger.kernel.org
16321 S:      Supported
16322 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16323 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16324 F:      drivers/i2c/busses/i2c-rcar.c
16325 F:      drivers/i2c/busses/i2c-sh_mobile.c
16326
16327 RENESAS R-CAR THERMAL DRIVERS
16328 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16329 L:      linux-renesas-soc@vger.kernel.org
16330 S:      Supported
16331 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16332 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16333 F:      drivers/thermal/rcar_gen3_thermal.c
16334 F:      drivers/thermal/rcar_thermal.c
16335
16336 RENESAS RIIC DRIVER
16337 M:      Chris Brandt <chris.brandt@renesas.com>
16338 L:      linux-renesas-soc@vger.kernel.org
16339 S:      Supported
16340 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16341 F:      drivers/i2c/busses/i2c-riic.c
16342
16343 RENESAS USB PHY DRIVER
16344 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16345 L:      linux-renesas-soc@vger.kernel.org
16346 S:      Maintained
16347 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16348
16349 RENESAS RZ/G2L A/D DRIVER
16350 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16351 L:      linux-iio@vger.kernel.org
16352 L:      linux-renesas-soc@vger.kernel.org
16353 S:      Supported
16354 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16355 F:      drivers/iio/adc/rzg2l_adc.c
16356
16357 RESET CONTROLLER FRAMEWORK
16358 M:      Philipp Zabel <p.zabel@pengutronix.de>
16359 S:      Maintained
16360 T:      git git://git.pengutronix.de/git/pza/linux
16361 F:      Documentation/devicetree/bindings/reset/
16362 F:      Documentation/driver-api/reset.rst
16363 F:      drivers/reset/
16364 F:      include/dt-bindings/reset/
16365 F:      include/linux/reset-controller.h
16366 F:      include/linux/reset.h
16367 F:      include/linux/reset/
16368 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16369
16370 RESTARTABLE SEQUENCES SUPPORT
16371 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16372 M:      Peter Zijlstra <peterz@infradead.org>
16373 M:      "Paul E. McKenney" <paulmck@kernel.org>
16374 M:      Boqun Feng <boqun.feng@gmail.com>
16375 L:      linux-kernel@vger.kernel.org
16376 S:      Supported
16377 F:      include/trace/events/rseq.h
16378 F:      include/uapi/linux/rseq.h
16379 F:      kernel/rseq.c
16380 F:      tools/testing/selftests/rseq/
16381
16382 RFKILL
16383 M:      Johannes Berg <johannes@sipsolutions.net>
16384 L:      linux-wireless@vger.kernel.org
16385 S:      Maintained
16386 W:      https://wireless.wiki.kernel.org/
16387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16389 F:      Documentation/ABI/stable/sysfs-class-rfkill
16390 F:      Documentation/driver-api/rfkill.rst
16391 F:      include/linux/rfkill.h
16392 F:      include/uapi/linux/rfkill.h
16393 F:      net/rfkill/
16394
16395 RHASHTABLE
16396 M:      Thomas Graf <tgraf@suug.ch>
16397 M:      Herbert Xu <herbert@gondor.apana.org.au>
16398 L:      netdev@vger.kernel.org
16399 S:      Maintained
16400 F:      include/linux/rhashtable-types.h
16401 F:      include/linux/rhashtable.h
16402 F:      lib/rhashtable.c
16403 F:      lib/test_rhashtable.c
16404
16405 RICOH R5C592 MEMORYSTICK DRIVER
16406 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16407 S:      Maintained
16408 F:      drivers/memstick/host/r592.*
16409
16410 RICOH SMARTMEDIA/XD DRIVER
16411 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16412 S:      Maintained
16413 F:      drivers/mtd/nand/raw/r852.c
16414 F:      drivers/mtd/nand/raw/r852.h
16415
16416 RISC-V ARCHITECTURE
16417 M:      Paul Walmsley <paul.walmsley@sifive.com>
16418 M:      Palmer Dabbelt <palmer@dabbelt.com>
16419 M:      Albert Ou <aou@eecs.berkeley.edu>
16420 L:      linux-riscv@lists.infradead.org
16421 S:      Supported
16422 P:      Documentation/riscv/patch-acceptance.rst
16423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16424 F:      arch/riscv/
16425 N:      riscv
16426 K:      riscv
16427
16428 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16429 M:      Lewis Hanly <lewis.hanly@microchip.com>
16430 L:      linux-riscv@lists.infradead.org
16431 S:      Supported
16432 F:      drivers/mailbox/mailbox-mpfs.c
16433 F:      drivers/soc/microchip/
16434 F:      include/soc/microchip/mpfs.h
16435
16436 RNBD BLOCK DRIVERS
16437 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16438 M:      Jack Wang <jinpu.wang@ionos.com>
16439 L:      linux-block@vger.kernel.org
16440 S:      Maintained
16441 F:      drivers/block/rnbd/
16442
16443 ROCCAT DRIVERS
16444 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16445 S:      Maintained
16446 W:      http://sourceforge.net/projects/roccat/
16447 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16448 F:      drivers/hid/hid-roccat*
16449 F:      include/linux/hid-roccat*
16450
16451 ROCKCHIP I2S TDM DRIVER
16452 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16453 L:      linux-rockchip@lists.infradead.org
16454 S:      Maintained
16455 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16456 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16457
16458 ROCKCHIP ISP V1 DRIVER
16459 M:      Helen Koike <helen.koike@collabora.com>
16460 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16461 L:      linux-media@vger.kernel.org
16462 L:      linux-rockchip@lists.infradead.org
16463 S:      Maintained
16464 F:      Documentation/admin-guide/media/rkisp1.rst
16465 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16466 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16467 F:      drivers/media/platform/rockchip/rkisp1
16468 F:      include/uapi/linux/rkisp1-config.h
16469
16470 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16471 M:      Jacob Chen <jacob-chen@iotwrt.com>
16472 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16473 L:      linux-media@vger.kernel.org
16474 L:      linux-rockchip@lists.infradead.org
16475 S:      Maintained
16476 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16477 F:      drivers/media/platform/rockchip/rga/
16478
16479 ROCKCHIP VIDEO DECODER DRIVER
16480 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16481 L:      linux-media@vger.kernel.org
16482 L:      linux-rockchip@lists.infradead.org
16483 S:      Maintained
16484 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16485 F:      drivers/staging/media/rkvdec/
16486
16487 ROCKER DRIVER
16488 M:      Jiri Pirko <jiri@resnulli.us>
16489 L:      netdev@vger.kernel.org
16490 S:      Supported
16491 F:      drivers/net/ethernet/rocker/
16492
16493 ROCKETPORT EXPRESS/INFINITY DRIVER
16494 M:      Kevin Cernekee <cernekee@gmail.com>
16495 L:      linux-serial@vger.kernel.org
16496 S:      Odd Fixes
16497 F:      drivers/tty/serial/rp2.*
16498
16499 ROHM BD99954 CHARGER IC
16500 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16501 L:      linux-power@fi.rohmeurope.com
16502 S:      Supported
16503 F:      drivers/power/supply/bd99954-charger.c
16504 F:      drivers/power/supply/bd99954-charger.h
16505
16506 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16507 M:      Tomasz Duszynski <tduszyns@gmail.com>
16508 S:      Maintained
16509 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16510 F:      drivers/iio/light/bh1750.c
16511
16512 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16513 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16514 L:      linux-kernel@vger.kernel.org
16515 L:      linux-renesas-soc@vger.kernel.org
16516 S:      Supported
16517 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16518 F:      drivers/gpio/gpio-bd9571mwv.c
16519 F:      drivers/mfd/bd9571mwv.c
16520 F:      drivers/regulator/bd9571mwv-regulator.c
16521 F:      include/linux/mfd/bd9571mwv.h
16522
16523 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16524 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16525 L:      linux-power@fi.rohmeurope.com
16526 S:      Supported
16527 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16528 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16529 F:      drivers/clk/clk-bd718x7.c
16530 F:      drivers/gpio/gpio-bd70528.c
16531 F:      drivers/gpio/gpio-bd71815.c
16532 F:      drivers/gpio/gpio-bd71828.c
16533 F:      drivers/mfd/rohm-bd70528.c
16534 F:      drivers/mfd/rohm-bd71828.c
16535 F:      drivers/mfd/rohm-bd718x7.c
16536 F:      drivers/mfd/rohm-bd9576.c
16537 F:      drivers/power/supply/bd70528-charger.c
16538 F:      drivers/regulator/bd70528-regulator.c
16539 F:      drivers/regulator/bd71815-regulator.c
16540 F:      drivers/regulator/bd71828-regulator.c
16541 F:      drivers/regulator/bd718x7-regulator.c
16542 F:      drivers/regulator/bd9576-regulator.c
16543 F:      drivers/regulator/rohm-regulator.c
16544 F:      drivers/rtc/rtc-bd70528.c
16545 F:      drivers/watchdog/bd70528_wdt.c
16546 F:      drivers/watchdog/bd9576_wdt.c
16547 F:      include/linux/mfd/rohm-bd70528.h
16548 F:      include/linux/mfd/rohm-bd71815.h
16549 F:      include/linux/mfd/rohm-bd71828.h
16550 F:      include/linux/mfd/rohm-bd718x7.h
16551 F:      include/linux/mfd/rohm-bd957x.h
16552 F:      include/linux/mfd/rohm-generic.h
16553 F:      include/linux/mfd/rohm-shared.h
16554
16555 ROSE NETWORK LAYER
16556 M:      Ralf Baechle <ralf@linux-mips.org>
16557 L:      linux-hams@vger.kernel.org
16558 S:      Maintained
16559 W:      http://www.linux-ax25.org/
16560 F:      include/net/rose.h
16561 F:      include/uapi/linux/rose.h
16562 F:      net/rose/
16563
16564 ROTATION DRIVER FOR ALLWINNER A83T
16565 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16566 L:      linux-media@vger.kernel.org
16567 S:      Maintained
16568 T:      git git://linuxtv.org/media_tree.git
16569 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16570 F:      drivers/media/platform/sunxi/sun8i-rotate/
16571
16572 RPMSG TTY DRIVER
16573 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
16574 L:      linux-remoteproc@vger.kernel.org
16575 S:      Maintained
16576 F:      drivers/tty/rpmsg_tty.c
16577
16578 RTL2830 MEDIA DRIVER
16579 M:      Antti Palosaari <crope@iki.fi>
16580 L:      linux-media@vger.kernel.org
16581 S:      Maintained
16582 W:      https://linuxtv.org
16583 W:      http://palosaari.fi/linux/
16584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16585 T:      git git://linuxtv.org/anttip/media_tree.git
16586 F:      drivers/media/dvb-frontends/rtl2830*
16587
16588 RTL2832 MEDIA DRIVER
16589 M:      Antti Palosaari <crope@iki.fi>
16590 L:      linux-media@vger.kernel.org
16591 S:      Maintained
16592 W:      https://linuxtv.org
16593 W:      http://palosaari.fi/linux/
16594 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16595 T:      git git://linuxtv.org/anttip/media_tree.git
16596 F:      drivers/media/dvb-frontends/rtl2832*
16597
16598 RTL2832_SDR MEDIA DRIVER
16599 M:      Antti Palosaari <crope@iki.fi>
16600 L:      linux-media@vger.kernel.org
16601 S:      Maintained
16602 W:      https://linuxtv.org
16603 W:      http://palosaari.fi/linux/
16604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16605 T:      git git://linuxtv.org/anttip/media_tree.git
16606 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16607
16608 RTL8180 WIRELESS DRIVER
16609 L:      linux-wireless@vger.kernel.org
16610 S:      Orphan
16611 W:      https://wireless.wiki.kernel.org/
16612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16613 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16614
16615 RTL8187 WIRELESS DRIVER
16616 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16617 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16618 M:      Larry Finger <Larry.Finger@lwfinger.net>
16619 L:      linux-wireless@vger.kernel.org
16620 S:      Maintained
16621 W:      https://wireless.wiki.kernel.org/
16622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16623 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16624
16625 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16626 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16627 L:      linux-wireless@vger.kernel.org
16628 S:      Maintained
16629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16630 F:      drivers/net/wireless/realtek/rtl8xxxu/
16631
16632 RTRS TRANSPORT DRIVERS
16633 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16634 M:      Jack Wang <jinpu.wang@ionos.com>
16635 L:      linux-rdma@vger.kernel.org
16636 S:      Maintained
16637 F:      drivers/infiniband/ulp/rtrs/
16638
16639 RXRPC SOCKETS (AF_RXRPC)
16640 M:      David Howells <dhowells@redhat.com>
16641 M:      Marc Dionne <marc.dionne@auristor.com>
16642 L:      linux-afs@lists.infradead.org
16643 S:      Supported
16644 W:      https://www.infradead.org/~dhowells/kafs/
16645 F:      Documentation/networking/rxrpc.rst
16646 F:      include/keys/rxrpc-type.h
16647 F:      include/net/af_rxrpc.h
16648 F:      include/trace/events/rxrpc.h
16649 F:      include/uapi/linux/rxrpc.h
16650 F:      net/rxrpc/
16651
16652 S3 SAVAGE FRAMEBUFFER DRIVER
16653 M:      Antonino Daplas <adaplas@gmail.com>
16654 L:      linux-fbdev@vger.kernel.org
16655 S:      Maintained
16656 F:      drivers/video/fbdev/savage/
16657
16658 S390
16659 M:      Heiko Carstens <hca@linux.ibm.com>
16660 M:      Vasily Gorbik <gor@linux.ibm.com>
16661 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
16662 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16663 L:      linux-s390@vger.kernel.org
16664 S:      Supported
16665 W:      http://www.ibm.com/developerworks/linux/linux390/
16666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16667 F:      Documentation/driver-api/s390-drivers.rst
16668 F:      Documentation/s390/
16669 F:      arch/s390/
16670 F:      drivers/s390/
16671
16672 S390 COMMON I/O LAYER
16673 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16674 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16675 L:      linux-s390@vger.kernel.org
16676 S:      Supported
16677 W:      http://www.ibm.com/developerworks/linux/linux390/
16678 F:      drivers/s390/cio/
16679
16680 S390 DASD DRIVER
16681 M:      Stefan Haberland <sth@linux.ibm.com>
16682 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16683 L:      linux-s390@vger.kernel.org
16684 S:      Supported
16685 W:      http://www.ibm.com/developerworks/linux/linux390/
16686 F:      block/partitions/ibm.c
16687 F:      drivers/s390/block/dasd*
16688 F:      include/linux/dasd_mod.h
16689
16690 S390 IOMMU (PCI)
16691 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16692 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16693 L:      linux-s390@vger.kernel.org
16694 S:      Supported
16695 W:      http://www.ibm.com/developerworks/linux/linux390/
16696 F:      drivers/iommu/s390-iommu.c
16697
16698 S390 IUCV NETWORK LAYER
16699 M:      Alexandra Winter <wintera@linux.ibm.com>
16700 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16701 L:      linux-s390@vger.kernel.org
16702 L:      netdev@vger.kernel.org
16703 S:      Supported
16704 W:      http://www.ibm.com/developerworks/linux/linux390/
16705 F:      drivers/s390/net/*iucv*
16706 F:      include/net/iucv/
16707 F:      net/iucv/
16708
16709 S390 NETWORK DRIVERS
16710 M:      Alexandra Winter <wintera@linux.ibm.com>
16711 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16712 L:      linux-s390@vger.kernel.org
16713 L:      netdev@vger.kernel.org
16714 S:      Supported
16715 W:      http://www.ibm.com/developerworks/linux/linux390/
16716 F:      drivers/s390/net/
16717
16718 S390 PCI SUBSYSTEM
16719 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16720 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16721 L:      linux-s390@vger.kernel.org
16722 S:      Supported
16723 W:      http://www.ibm.com/developerworks/linux/linux390/
16724 F:      arch/s390/pci/
16725 F:      drivers/pci/hotplug/s390_pci_hpc.c
16726 F:      Documentation/s390/pci.rst
16727
16728 S390 VFIO AP DRIVER
16729 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16730 M:      Halil Pasic <pasic@linux.ibm.com>
16731 M:      Jason Herne <jjherne@linux.ibm.com>
16732 L:      linux-s390@vger.kernel.org
16733 S:      Supported
16734 W:      http://www.ibm.com/developerworks/linux/linux390/
16735 F:      Documentation/s390/vfio-ap.rst
16736 F:      drivers/s390/crypto/vfio_ap_drv.c
16737 F:      drivers/s390/crypto/vfio_ap_ops.c
16738 F:      drivers/s390/crypto/vfio_ap_private.h
16739
16740 S390 VFIO-CCW DRIVER
16741 M:      Eric Farman <farman@linux.ibm.com>
16742 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16743 R:      Halil Pasic <pasic@linux.ibm.com>
16744 L:      linux-s390@vger.kernel.org
16745 L:      kvm@vger.kernel.org
16746 S:      Supported
16747 F:      Documentation/s390/vfio-ccw.rst
16748 F:      drivers/s390/cio/vfio_ccw*
16749 F:      include/uapi/linux/vfio_ccw.h
16750
16751 S390 VFIO-PCI DRIVER
16752 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16753 M:      Eric Farman <farman@linux.ibm.com>
16754 L:      linux-s390@vger.kernel.org
16755 L:      kvm@vger.kernel.org
16756 S:      Supported
16757 F:      drivers/vfio/pci/vfio_pci_zdev.c
16758 F:      include/uapi/linux/vfio_zdev.h
16759
16760 S390 ZCRYPT DRIVER
16761 M:      Harald Freudenberger <freude@linux.ibm.com>
16762 L:      linux-s390@vger.kernel.org
16763 S:      Supported
16764 W:      http://www.ibm.com/developerworks/linux/linux390/
16765 F:      drivers/s390/crypto/
16766
16767 S390 ZFCP DRIVER
16768 M:      Steffen Maier <maier@linux.ibm.com>
16769 M:      Benjamin Block <bblock@linux.ibm.com>
16770 L:      linux-s390@vger.kernel.org
16771 S:      Supported
16772 W:      http://www.ibm.com/developerworks/linux/linux390/
16773 F:      drivers/s390/scsi/zfcp_*
16774
16775 S3C ADC BATTERY DRIVER
16776 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16777 L:      linux-samsung-soc@vger.kernel.org
16778 S:      Odd Fixes
16779 F:      drivers/power/supply/s3c_adc_battery.c
16780 F:      include/linux/s3c_adc_battery.h
16781
16782 S3C24XX SD/MMC Driver
16783 M:      Ben Dooks <ben-linux@fluff.org>
16784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16785 S:      Supported
16786 F:      drivers/mmc/host/s3cmci.*
16787
16788 SAA6588 RDS RECEIVER DRIVER
16789 M:      Hans Verkuil <hverkuil@xs4all.nl>
16790 L:      linux-media@vger.kernel.org
16791 S:      Odd Fixes
16792 W:      https://linuxtv.org
16793 T:      git git://linuxtv.org/media_tree.git
16794 F:      drivers/media/i2c/saa6588*
16795
16796 SAA7134 VIDEO4LINUX DRIVER
16797 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16798 L:      linux-media@vger.kernel.org
16799 S:      Odd fixes
16800 W:      https://linuxtv.org
16801 T:      git git://linuxtv.org/media_tree.git
16802 F:      Documentation/driver-api/media/drivers/saa7134*
16803 F:      drivers/media/pci/saa7134/
16804
16805 SAA7146 VIDEO4LINUX-2 DRIVER
16806 M:      Hans Verkuil <hverkuil@xs4all.nl>
16807 L:      linux-media@vger.kernel.org
16808 S:      Maintained
16809 T:      git git://linuxtv.org/media_tree.git
16810 F:      drivers/media/common/saa7146/
16811 F:      drivers/media/pci/saa7146/
16812 F:      include/media/drv-intf/saa7146*
16813
16814 SAFESETID SECURITY MODULE
16815 M:      Micah Morton <mortonm@chromium.org>
16816 S:      Supported
16817 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16818 F:      security/safesetid/
16819
16820 SAMSUNG AUDIO (ASoC) DRIVERS
16821 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16822 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16824 S:      Supported
16825 F:      Documentation/devicetree/bindings/sound/samsung*
16826 F:      sound/soc/samsung/
16827
16828 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16829 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16830 L:      linux-crypto@vger.kernel.org
16831 L:      linux-samsung-soc@vger.kernel.org
16832 S:      Maintained
16833 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16834 F:      drivers/crypto/exynos-rng.c
16835
16836 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16837 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16838 L:      linux-samsung-soc@vger.kernel.org
16839 S:      Maintained
16840 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16841 F:      drivers/char/hw_random/exynos-trng.c
16842
16843 SAMSUNG FRAMEBUFFER DRIVER
16844 M:      Jingoo Han <jingoohan1@gmail.com>
16845 L:      linux-fbdev@vger.kernel.org
16846 S:      Maintained
16847 F:      drivers/video/fbdev/s3c-fb.c
16848
16849 SAMSUNG INTERCONNECT DRIVERS
16850 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16851 M:      Artur Świgoń <a.swigon@samsung.com>
16852 L:      linux-pm@vger.kernel.org
16853 L:      linux-samsung-soc@vger.kernel.org
16854 S:      Supported
16855 F:      drivers/interconnect/samsung/
16856
16857 SAMSUNG LAPTOP DRIVER
16858 M:      Corentin Chary <corentin.chary@gmail.com>
16859 L:      platform-driver-x86@vger.kernel.org
16860 S:      Maintained
16861 F:      drivers/platform/x86/samsung-laptop.c
16862
16863 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16864 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16865 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16866 L:      linux-kernel@vger.kernel.org
16867 L:      linux-samsung-soc@vger.kernel.org
16868 S:      Supported
16869 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16870 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
16871 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
16872 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16873 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16874 F:      drivers/clk/clk-s2mps11.c
16875 F:      drivers/mfd/sec*.c
16876 F:      drivers/regulator/s2m*.c
16877 F:      drivers/regulator/s5m*.c
16878 F:      drivers/rtc/rtc-s5m.c
16879 F:      include/linux/mfd/samsung/
16880
16881 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16882 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16883 L:      linux-media@vger.kernel.org
16884 L:      linux-samsung-soc@vger.kernel.org
16885 S:      Maintained
16886 F:      drivers/media/platform/s3c-camif/
16887 F:      include/media/drv-intf/s3c_camif.h
16888
16889 SAMSUNG S3FWRN5 NFC DRIVER
16890 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16891 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16892 L:      linux-nfc@lists.01.org (subscribers-only)
16893 S:      Maintained
16894 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16895 F:      drivers/nfc/s3fwrn5
16896
16897 SAMSUNG S5C73M3 CAMERA DRIVER
16898 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16899 M:      Andrzej Hajda <andrzej.hajda@intel.com>
16900 L:      linux-media@vger.kernel.org
16901 S:      Supported
16902 F:      drivers/media/i2c/s5c73m3/*
16903
16904 SAMSUNG S5K5BAF CAMERA DRIVER
16905 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16906 M:      Andrzej Hajda <andrzej.hajda@intel.com>
16907 L:      linux-media@vger.kernel.org
16908 S:      Supported
16909 F:      drivers/media/i2c/s5k5baf.c
16910
16911 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16912 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16913 M:      Vladimir Zapolskiy <vz@mleia.com>
16914 L:      linux-crypto@vger.kernel.org
16915 L:      linux-samsung-soc@vger.kernel.org
16916 S:      Maintained
16917 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16918 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16919 F:      drivers/crypto/s5p-sss.c
16920
16921 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16922 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16923 L:      linux-media@vger.kernel.org
16924 S:      Supported
16925 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16926 F:      drivers/media/platform/exynos4-is/
16927
16928 SAMSUNG SOC CLOCK DRIVERS
16929 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16930 M:      Tomasz Figa <tomasz.figa@gmail.com>
16931 M:      Chanwoo Choi <cw00.choi@samsung.com>
16932 L:      linux-samsung-soc@vger.kernel.org
16933 S:      Supported
16934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16935 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16936 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16937 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16938 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16939 F:      drivers/clk/samsung/
16940 F:      include/dt-bindings/clock/exynos*.h
16941 F:      include/dt-bindings/clock/s3c*.h
16942 F:      include/dt-bindings/clock/s5p*.h
16943 F:      include/dt-bindings/clock/samsung,*.h
16944 F:      include/linux/clk/samsung.h
16945 F:      include/linux/platform_data/clk-s3c2410.h
16946
16947 SAMSUNG SPI DRIVERS
16948 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16949 M:      Andi Shyti <andi@etezian.org>
16950 L:      linux-spi@vger.kernel.org
16951 L:      linux-samsung-soc@vger.kernel.org
16952 S:      Maintained
16953 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16954 F:      drivers/spi/spi-s3c*
16955 F:      include/linux/platform_data/spi-s3c64xx.h
16956 F:      include/linux/spi/s3c24xx-fiq.h
16957
16958 SAMSUNG SXGBE DRIVERS
16959 M:      Byungho An <bh74.an@samsung.com>
16960 L:      netdev@vger.kernel.org
16961 S:      Supported
16962 F:      drivers/net/ethernet/samsung/sxgbe/
16963
16964 SAMSUNG THERMAL DRIVER
16965 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16966 L:      linux-pm@vger.kernel.org
16967 L:      linux-samsung-soc@vger.kernel.org
16968 S:      Supported
16969 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16970 F:      drivers/thermal/samsung/
16971
16972 SAMSUNG USB2 PHY DRIVER
16973 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16974 L:      linux-kernel@vger.kernel.org
16975 S:      Supported
16976 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16977 F:      Documentation/driver-api/phy/samsung-usb2.rst
16978 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16979 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16980 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16981 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16982 F:      drivers/phy/samsung/phy-samsung-usb2.c
16983 F:      drivers/phy/samsung/phy-samsung-usb2.h
16984
16985 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16986 M:      Paul Barker <paul.barker@sancloud.com>
16987 R:      Marc Murphy <marc.murphy@sancloud.com>
16988 S:      Supported
16989 F:      arch/arm/boot/dts/am335x-sancloud*
16990
16991 SC1200 WDT DRIVER
16992 M:      Zwane Mwaikambo <zwanem@gmail.com>
16993 S:      Maintained
16994 F:      drivers/watchdog/sc1200wdt.c
16995
16996 SCHEDULER
16997 M:      Ingo Molnar <mingo@redhat.com>
16998 M:      Peter Zijlstra <peterz@infradead.org>
16999 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17000 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17001 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17002 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17003 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17004 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17005 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17006 L:      linux-kernel@vger.kernel.org
17007 S:      Maintained
17008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17009 F:      include/linux/preempt.h
17010 F:      include/linux/sched.h
17011 F:      include/linux/wait.h
17012 F:      include/uapi/linux/sched.h
17013 F:      kernel/sched/
17014
17015 SCR24X CHIP CARD INTERFACE DRIVER
17016 M:      Lubomir Rintel <lkundrak@v3.sk>
17017 S:      Supported
17018 F:      drivers/char/pcmcia/scr24x_cs.c
17019
17020 SCSI RDMA PROTOCOL (SRP) INITIATOR
17021 M:      Bart Van Assche <bvanassche@acm.org>
17022 L:      linux-rdma@vger.kernel.org
17023 S:      Supported
17024 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17025 F:      drivers/infiniband/ulp/srp/
17026 F:      include/scsi/srp.h
17027
17028 SCSI RDMA PROTOCOL (SRP) TARGET
17029 M:      Bart Van Assche <bvanassche@acm.org>
17030 L:      linux-rdma@vger.kernel.org
17031 L:      target-devel@vger.kernel.org
17032 S:      Supported
17033 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17034 F:      drivers/infiniband/ulp/srpt/
17035
17036 SCSI SG DRIVER
17037 M:      Doug Gilbert <dgilbert@interlog.com>
17038 L:      linux-scsi@vger.kernel.org
17039 S:      Maintained
17040 W:      http://sg.danny.cz/sg
17041 F:      Documentation/scsi/scsi-generic.rst
17042 F:      drivers/scsi/sg.c
17043 F:      include/scsi/sg.h
17044
17045 SCSI SUBSYSTEM
17046 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17047 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17048 L:      linux-scsi@vger.kernel.org
17049 S:      Maintained
17050 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17053 F:      Documentation/devicetree/bindings/scsi/
17054 F:      drivers/scsi/
17055 F:      include/scsi/
17056
17057 SCSI TAPE DRIVER
17058 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17059 L:      linux-scsi@vger.kernel.org
17060 S:      Maintained
17061 F:      Documentation/scsi/st.rst
17062 F:      drivers/scsi/st.*
17063 F:      drivers/scsi/st_*.h
17064
17065 SCSI TARGET CORE USER DRIVER
17066 M:      Bodo Stroesser <bostroesser@gmail.com>
17067 L:      linux-scsi@vger.kernel.org
17068 L:      target-devel@vger.kernel.org
17069 S:      Supported
17070 F:      Documentation/target/tcmu-design.rst
17071 F:      drivers/target/target_core_user.c
17072 F:      include/uapi/linux/target_core_user.h
17073
17074 SCSI TARGET SUBSYSTEM
17075 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17076 L:      linux-scsi@vger.kernel.org
17077 L:      target-devel@vger.kernel.org
17078 S:      Supported
17079 W:      http://www.linux-iscsi.org
17080 Q:      https://patchwork.kernel.org/project/target-devel/list/
17081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17082 F:      Documentation/target/
17083 F:      drivers/target/
17084 F:      include/target/
17085
17086 SCTP PROTOCOL
17087 M:      Vlad Yasevich <vyasevich@gmail.com>
17088 M:      Neil Horman <nhorman@tuxdriver.com>
17089 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17090 L:      linux-sctp@vger.kernel.org
17091 S:      Maintained
17092 W:      http://lksctp.sourceforge.net
17093 F:      Documentation/networking/sctp.rst
17094 F:      include/linux/sctp.h
17095 F:      include/net/sctp/
17096 F:      include/uapi/linux/sctp.h
17097 F:      net/sctp/
17098
17099 SCx200 CPU SUPPORT
17100 M:      Jim Cromie <jim.cromie@gmail.com>
17101 S:      Odd Fixes
17102 F:      Documentation/i2c/busses/scx200_acb.rst
17103 F:      arch/x86/platform/scx200/
17104 F:      drivers/i2c/busses/scx200*
17105 F:      drivers/mtd/maps/scx200_docflash.c
17106 F:      drivers/watchdog/scx200_wdt.c
17107 F:      include/linux/scx200.h
17108
17109 SCx200 GPIO DRIVER
17110 M:      Jim Cromie <jim.cromie@gmail.com>
17111 S:      Maintained
17112 F:      drivers/char/scx200_gpio.c
17113 F:      include/linux/scx200_gpio.h
17114
17115 SCx200 HRT CLOCKSOURCE DRIVER
17116 M:      Jim Cromie <jim.cromie@gmail.com>
17117 S:      Maintained
17118 F:      drivers/clocksource/scx200_hrt.c
17119
17120 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17121 M:      Sascha Sommer <saschasommer@freenet.de>
17122 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17123 S:      Maintained
17124 F:      drivers/mmc/host/sdricoh_cs.c
17125
17126 SECO BOARDS CEC DRIVER
17127 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17128 S:      Maintained
17129 F:      drivers/media/cec/platform/seco/seco-cec.c
17130 F:      drivers/media/cec/platform/seco/seco-cec.h
17131
17132 SECURE COMPUTING
17133 M:      Kees Cook <keescook@chromium.org>
17134 R:      Andy Lutomirski <luto@amacapital.net>
17135 R:      Will Drewry <wad@chromium.org>
17136 S:      Supported
17137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17138 F:      Documentation/userspace-api/seccomp_filter.rst
17139 F:      include/linux/seccomp.h
17140 F:      include/uapi/linux/seccomp.h
17141 F:      kernel/seccomp.c
17142 F:      tools/testing/selftests/kselftest_harness.h
17143 F:      tools/testing/selftests/seccomp/*
17144 K:      \bsecure_computing
17145 K:      \bTIF_SECCOMP\b
17146
17147 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17148 M:      Al Cooper <alcooperx@gmail.com>
17149 L:      linux-mmc@vger.kernel.org
17150 L:      bcm-kernel-feedback-list@broadcom.com
17151 S:      Maintained
17152 F:      drivers/mmc/host/sdhci-brcmstb*
17153
17154 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17155 M:      Adrian Hunter <adrian.hunter@intel.com>
17156 L:      linux-mmc@vger.kernel.org
17157 S:      Maintained
17158 F:      drivers/mmc/host/sdhci*
17159
17160 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17161 M:      Eugen Hristev <eugen.hristev@microchip.com>
17162 L:      linux-mmc@vger.kernel.org
17163 S:      Supported
17164 F:      drivers/mmc/host/sdhci-of-at91.c
17165
17166 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17167 M:      Ben Dooks <ben-linux@fluff.org>
17168 M:      Jaehoon Chung <jh80.chung@samsung.com>
17169 L:      linux-mmc@vger.kernel.org
17170 S:      Maintained
17171 F:      drivers/mmc/host/sdhci-s3c*
17172
17173 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17174 M:      Viresh Kumar <vireshk@kernel.org>
17175 L:      linux-mmc@vger.kernel.org
17176 S:      Maintained
17177 F:      drivers/mmc/host/sdhci-spear.c
17178
17179 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17180 M:      Kishon Vijay Abraham I <kishon@ti.com>
17181 L:      linux-mmc@vger.kernel.org
17182 S:      Maintained
17183 F:      drivers/mmc/host/sdhci-omap.c
17184
17185 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17186 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17187 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17188 L:      linux-block@vger.kernel.org
17189 S:      Supported
17190 F:      block/opal_proto.h
17191 F:      block/sed*
17192 F:      include/linux/sed*
17193 F:      include/uapi/linux/sed*
17194
17195 SECURITY CONTACT
17196 M:      Security Officers <security@kernel.org>
17197 S:      Supported
17198 F:      Documentation/admin-guide/security-bugs.rst
17199
17200 SECURITY SUBSYSTEM
17201 M:      James Morris <jmorris@namei.org>
17202 M:      "Serge E. Hallyn" <serge@hallyn.com>
17203 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17204 S:      Supported
17205 W:      http://kernsec.org/
17206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17207 F:      security/
17208 X:      security/selinux/
17209
17210 SELINUX SECURITY MODULE
17211 M:      Paul Moore <paul@paul-moore.com>
17212 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17213 M:      Eric Paris <eparis@parisplace.org>
17214 L:      selinux@vger.kernel.org
17215 S:      Supported
17216 W:      https://selinuxproject.org
17217 W:      https://github.com/SELinuxProject
17218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17219 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17220 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17221 F:      Documentation/admin-guide/LSM/SELinux.rst
17222 F:      include/trace/events/avc.h
17223 F:      include/uapi/linux/selinux_netlink.h
17224 F:      scripts/selinux/
17225 F:      security/selinux/
17226
17227 SENSABLE PHANTOM
17228 M:      Jiri Slaby <jirislaby@kernel.org>
17229 S:      Maintained
17230 F:      drivers/misc/phantom.c
17231 F:      include/uapi/linux/phantom.h
17232
17233 SENSEAIR SUNRISE 006-0-0007
17234 M:      Jacopo Mondi <jacopo@jmondi.org>
17235 S:      Maintained
17236 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17237 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17238 F:      drivers/iio/chemical/sunrise_co2.c
17239
17240 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17241 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17242 S:      Maintained
17243 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17244 F:      drivers/iio/chemical/scd30.h
17245 F:      drivers/iio/chemical/scd30_core.c
17246 F:      drivers/iio/chemical/scd30_i2c.c
17247 F:      drivers/iio/chemical/scd30_serial.c
17248
17249 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17250 M:      Roan van Dijk <roan@protonic.nl>
17251 S:      Maintained
17252 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17253 F:      drivers/iio/chemical/scd4x.c
17254
17255 SENSIRION SGP40 GAS SENSOR DRIVER
17256 M:      Andreas Klinger <ak@it-klinger.de>
17257 S:      Maintained
17258 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17259 F:      drivers/iio/chemical/sgp40.c
17260
17261 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17262 M:      Tomasz Duszynski <tduszyns@gmail.com>
17263 S:      Maintained
17264 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17265 F:      drivers/iio/chemical/sps30.c
17266 F:      drivers/iio/chemical/sps30_i2c.c
17267 F:      drivers/iio/chemical/sps30_serial.c
17268
17269 SERIAL DEVICE BUS
17270 M:      Rob Herring <robh@kernel.org>
17271 L:      linux-serial@vger.kernel.org
17272 S:      Maintained
17273 F:      Documentation/devicetree/bindings/serial/serial.yaml
17274 F:      drivers/tty/serdev/
17275 F:      include/linux/serdev.h
17276
17277 SERIAL DRIVERS
17278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17279 L:      linux-serial@vger.kernel.org
17280 S:      Maintained
17281 F:      Documentation/devicetree/bindings/serial/
17282 F:      drivers/tty/serial/
17283
17284 SERIAL IR RECEIVER
17285 M:      Sean Young <sean@mess.org>
17286 L:      linux-media@vger.kernel.org
17287 S:      Maintained
17288 F:      drivers/media/rc/serial_ir.c
17289
17290 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17291 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17292 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17293 S:      Maintained
17294 F:      Documentation/devicetree/bindings/slimbus/
17295 F:      drivers/slimbus/
17296 F:      include/linux/slimbus.h
17297
17298 SFC NETWORK DRIVER
17299 M:      Edward Cree <ecree.xilinx@gmail.com>
17300 M:      Martin Habets <habetsm.xilinx@gmail.com>
17301 L:      netdev@vger.kernel.org
17302 S:      Supported
17303 F:      drivers/net/ethernet/sfc/
17304
17305 SFF/SFP/SFP+ MODULE SUPPORT
17306 M:      Russell King <linux@armlinux.org.uk>
17307 L:      netdev@vger.kernel.org
17308 S:      Maintained
17309 F:      drivers/net/phy/phylink.c
17310 F:      drivers/net/phy/sfp*
17311 F:      include/linux/mdio/mdio-i2c.h
17312 F:      include/linux/phylink.h
17313 F:      include/linux/sfp.h
17314 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)
17315
17316 SGI GRU DRIVER
17317 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17318 S:      Maintained
17319 F:      drivers/misc/sgi-gru/
17320
17321 SGI XP/XPC/XPNET DRIVER
17322 M:      Robin Holt <robinmholt@gmail.com>
17323 M:      Steve Wahl <steve.wahl@hpe.com>
17324 R:      Mike Travis <mike.travis@hpe.com>
17325 S:      Maintained
17326 F:      drivers/misc/sgi-xp/
17327
17328 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17329 M:      Karsten Graul <kgraul@linux.ibm.com>
17330 L:      linux-s390@vger.kernel.org
17331 S:      Supported
17332 W:      http://www.ibm.com/developerworks/linux/linux390/
17333 F:      net/smc/
17334
17335 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17336 M:      Linus Walleij <linus.walleij@linaro.org>
17337 L:      linux-iio@vger.kernel.org
17338 S:      Maintained
17339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17340 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17341 F:      drivers/iio/light/gp2ap002.c
17342
17343 SHARP RJ54N1CB0C SENSOR DRIVER
17344 M:      Jacopo Mondi <jacopo@jmondi.org>
17345 L:      linux-media@vger.kernel.org
17346 S:      Odd fixes
17347 T:      git git://linuxtv.org/media_tree.git
17348 F:      drivers/media/i2c/rj54n1cb0c.c
17349 F:      include/media/i2c/rj54n1cb0c.h
17350
17351 SH_VOU V4L2 OUTPUT DRIVER
17352 L:      linux-media@vger.kernel.org
17353 S:      Orphan
17354 F:      drivers/media/platform/sh_vou.c
17355 F:      include/media/drv-intf/sh_vou.h
17356
17357 SI2157 MEDIA DRIVER
17358 M:      Antti Palosaari <crope@iki.fi>
17359 L:      linux-media@vger.kernel.org
17360 S:      Maintained
17361 W:      https://linuxtv.org
17362 W:      http://palosaari.fi/linux/
17363 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17364 T:      git git://linuxtv.org/anttip/media_tree.git
17365 F:      drivers/media/tuners/si2157*
17366
17367 SI2165 MEDIA DRIVER
17368 M:      Matthias Schwarzott <zzam@gentoo.org>
17369 L:      linux-media@vger.kernel.org
17370 S:      Maintained
17371 W:      https://linuxtv.org
17372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17373 F:      drivers/media/dvb-frontends/si2165*
17374
17375 SI2168 MEDIA DRIVER
17376 M:      Antti Palosaari <crope@iki.fi>
17377 L:      linux-media@vger.kernel.org
17378 S:      Maintained
17379 W:      https://linuxtv.org
17380 W:      http://palosaari.fi/linux/
17381 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17382 T:      git git://linuxtv.org/anttip/media_tree.git
17383 F:      drivers/media/dvb-frontends/si2168*
17384
17385 SI470X FM RADIO RECEIVER I2C DRIVER
17386 M:      Hans Verkuil <hverkuil@xs4all.nl>
17387 L:      linux-media@vger.kernel.org
17388 S:      Odd Fixes
17389 W:      https://linuxtv.org
17390 T:      git git://linuxtv.org/media_tree.git
17391 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17392
17393 SI470X FM RADIO RECEIVER USB DRIVER
17394 M:      Hans Verkuil <hverkuil@xs4all.nl>
17395 L:      linux-media@vger.kernel.org
17396 S:      Maintained
17397 W:      https://linuxtv.org
17398 T:      git git://linuxtv.org/media_tree.git
17399 F:      drivers/media/radio/si470x/radio-si470x-common.c
17400 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17401 F:      drivers/media/radio/si470x/radio-si470x.h
17402
17403 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17404 M:      Eduardo Valentin <edubezval@gmail.com>
17405 L:      linux-media@vger.kernel.org
17406 S:      Odd Fixes
17407 W:      https://linuxtv.org
17408 T:      git git://linuxtv.org/media_tree.git
17409 F:      drivers/media/radio/si4713/si4713.?
17410
17411 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17412 M:      Eduardo Valentin <edubezval@gmail.com>
17413 L:      linux-media@vger.kernel.org
17414 S:      Odd Fixes
17415 W:      https://linuxtv.org
17416 T:      git git://linuxtv.org/media_tree.git
17417 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17418
17419 SI4713 FM RADIO TRANSMITTER USB DRIVER
17420 M:      Hans Verkuil <hverkuil@xs4all.nl>
17421 L:      linux-media@vger.kernel.org
17422 S:      Maintained
17423 W:      https://linuxtv.org
17424 T:      git git://linuxtv.org/media_tree.git
17425 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17426
17427 SIANO DVB DRIVER
17428 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17429 L:      linux-media@vger.kernel.org
17430 S:      Odd fixes
17431 W:      https://linuxtv.org
17432 T:      git git://linuxtv.org/media_tree.git
17433 F:      drivers/media/common/siano/
17434 F:      drivers/media/mmc/siano/
17435 F:      drivers/media/usb/siano/
17436 F:      drivers/media/usb/siano/
17437
17438 SIFIVE DRIVERS
17439 M:      Palmer Dabbelt <palmer@dabbelt.com>
17440 M:      Paul Walmsley <paul.walmsley@sifive.com>
17441 L:      linux-riscv@lists.infradead.org
17442 S:      Supported
17443 T:      git git://github.com/sifive/riscv-linux.git
17444 N:      sifive
17445 K:      [^@]sifive
17446
17447 SIFIVE FU540 SYSTEM-ON-CHIP
17448 M:      Paul Walmsley <paul.walmsley@sifive.com>
17449 M:      Palmer Dabbelt <palmer@dabbelt.com>
17450 L:      linux-riscv@lists.infradead.org
17451 S:      Supported
17452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17453 N:      fu540
17454 K:      fu540
17455
17456 SIFIVE PDMA DRIVER
17457 M:      Green Wan <green.wan@sifive.com>
17458 S:      Maintained
17459 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17460 F:      drivers/dma/sf-pdma/
17461
17462 SILEAD TOUCHSCREEN DRIVER
17463 M:      Hans de Goede <hdegoede@redhat.com>
17464 L:      linux-input@vger.kernel.org
17465 L:      platform-driver-x86@vger.kernel.org
17466 S:      Maintained
17467 F:      drivers/input/touchscreen/silead.c
17468 F:      drivers/platform/x86/touchscreen_dmi.c
17469
17470 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17471 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17472 S:      Supported
17473 F:      drivers/staging/wfx/
17474
17475 SILICON MOTION SM712 FRAME BUFFER DRIVER
17476 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17477 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17478 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17479 L:      linux-fbdev@vger.kernel.org
17480 S:      Maintained
17481 F:      Documentation/fb/sm712fb.rst
17482 F:      drivers/video/fbdev/sm712*
17483
17484 SILVACO I3C DUAL-ROLE MASTER
17485 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17486 M:      Conor Culhane <conor.culhane@silvaco.com>
17487 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
17488 S:      Maintained
17489 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17490 F:      drivers/i3c/master/svc-i3c-master.c
17491
17492 SIMPLEFB FB DRIVER
17493 M:      Hans de Goede <hdegoede@redhat.com>
17494 L:      linux-fbdev@vger.kernel.org
17495 S:      Maintained
17496 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17497 F:      drivers/video/fbdev/simplefb.c
17498 F:      include/linux/platform_data/simplefb.h
17499
17500 SIMTEC EB110ATX (Chalice CATS)
17501 M:      Simtec Linux Team <linux@simtec.co.uk>
17502 S:      Supported
17503 W:      http://www.simtec.co.uk/products/EB110ATX/
17504
17505 SIMTEC EB2410ITX (BAST)
17506 M:      Simtec Linux Team <linux@simtec.co.uk>
17507 S:      Supported
17508 W:      http://www.simtec.co.uk/products/EB2410ITX/
17509 F:      arch/arm/mach-s3c/bast-ide.c
17510 F:      arch/arm/mach-s3c/bast-irq.c
17511 F:      arch/arm/mach-s3c/mach-bast.c
17512
17513 SIOX
17514 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17515 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17516 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17517 S:      Supported
17518 F:      drivers/gpio/gpio-siox.c
17519 F:      drivers/siox/*
17520 F:      include/trace/events/siox.h
17521
17522 SIPHASH PRF ROUTINES
17523 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17524 S:      Maintained
17525 F:      include/linux/siphash.h
17526 F:      lib/siphash.c
17527 F:      lib/test_siphash.c
17528
17529 SIS 190 ETHERNET DRIVER
17530 M:      Francois Romieu <romieu@fr.zoreil.com>
17531 L:      netdev@vger.kernel.org
17532 S:      Maintained
17533 F:      drivers/net/ethernet/sis/sis190.c
17534
17535 SIS 900/7016 FAST ETHERNET DRIVER
17536 M:      Daniele Venzano <venza@brownhat.org>
17537 L:      netdev@vger.kernel.org
17538 S:      Maintained
17539 W:      http://www.brownhat.org/sis900.html
17540 F:      drivers/net/ethernet/sis/sis900.*
17541
17542 SIS FRAMEBUFFER DRIVER
17543 M:      Thomas Winischhofer <thomas@winischhofer.net>
17544 S:      Maintained
17545 W:      http://www.winischhofer.net/linuxsisvga.shtml
17546 F:      Documentation/fb/sisfb.rst
17547 F:      drivers/video/fbdev/sis/
17548 F:      include/video/sisfb.h
17549
17550 SIS I2C TOUCHSCREEN DRIVER
17551 M:      Mika Penttilä <mika.penttila@nextfour.com>
17552 L:      linux-input@vger.kernel.org
17553 S:      Maintained
17554 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17555 F:      drivers/input/touchscreen/sis_i2c.c
17556
17557 SIS USB2VGA DRIVER
17558 M:      Thomas Winischhofer <thomas@winischhofer.net>
17559 S:      Maintained
17560 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17561 F:      drivers/usb/misc/sisusbvga/
17562
17563 SLAB ALLOCATOR
17564 M:      Christoph Lameter <cl@linux.com>
17565 M:      Pekka Enberg <penberg@kernel.org>
17566 M:      David Rientjes <rientjes@google.com>
17567 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17568 M:      Andrew Morton <akpm@linux-foundation.org>
17569 M:      Vlastimil Babka <vbabka@suse.cz>
17570 L:      linux-mm@kvack.org
17571 S:      Maintained
17572 F:      include/linux/sl?b*.h
17573 F:      mm/sl?b*
17574
17575 SLEEPABLE READ-COPY UPDATE (SRCU)
17576 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17577 M:      "Paul E. McKenney" <paulmck@kernel.org>
17578 M:      Josh Triplett <josh@joshtriplett.org>
17579 R:      Steven Rostedt <rostedt@goodmis.org>
17580 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17581 L:      rcu@vger.kernel.org
17582 S:      Supported
17583 W:      http://www.rdrop.com/users/paulmck/RCU/
17584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17585 F:      include/linux/srcu*.h
17586 F:      kernel/rcu/srcu*.c
17587
17588 SMACK SECURITY MODULE
17589 M:      Casey Schaufler <casey@schaufler-ca.com>
17590 L:      linux-security-module@vger.kernel.org
17591 S:      Maintained
17592 W:      http://schaufler-ca.com
17593 T:      git git://github.com/cschaufler/smack-next
17594 F:      Documentation/admin-guide/LSM/Smack.rst
17595 F:      security/smack/
17596
17597 SMC91x ETHERNET DRIVER
17598 M:      Nicolas Pitre <nico@fluxnic.net>
17599 S:      Odd Fixes
17600 F:      drivers/net/ethernet/smsc/smc91x.*
17601
17602 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17603 M:      Mark Rutland <mark.rutland@arm.com>
17604 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17605 M:      Sudeep Holla <sudeep.holla@arm.com>
17606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17607 S:      Maintained
17608 F:      drivers/firmware/smccc/
17609 F:      include/linux/arm-smccc.h
17610
17611 SMM665 HARDWARE MONITOR DRIVER
17612 M:      Guenter Roeck <linux@roeck-us.net>
17613 L:      linux-hwmon@vger.kernel.org
17614 S:      Maintained
17615 F:      Documentation/hwmon/smm665.rst
17616 F:      drivers/hwmon/smm665.c
17617
17618 SMSC EMC2103 HARDWARE MONITOR DRIVER
17619 M:      Steve Glendinning <steve.glendinning@shawell.net>
17620 L:      linux-hwmon@vger.kernel.org
17621 S:      Maintained
17622 F:      Documentation/hwmon/emc2103.rst
17623 F:      drivers/hwmon/emc2103.c
17624
17625 SMSC SCH5627 HARDWARE MONITOR DRIVER
17626 M:      Hans de Goede <hdegoede@redhat.com>
17627 L:      linux-hwmon@vger.kernel.org
17628 S:      Supported
17629 F:      Documentation/hwmon/sch5627.rst
17630 F:      drivers/hwmon/sch5627.c
17631
17632 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17633 M:      Steve Glendinning <steve.glendinning@shawell.net>
17634 L:      linux-fbdev@vger.kernel.org
17635 S:      Maintained
17636 F:      drivers/video/fbdev/smscufx.c
17637
17638 SMSC47B397 HARDWARE MONITOR DRIVER
17639 M:      Jean Delvare <jdelvare@suse.com>
17640 L:      linux-hwmon@vger.kernel.org
17641 S:      Maintained
17642 F:      Documentation/hwmon/smsc47b397.rst
17643 F:      drivers/hwmon/smsc47b397.c
17644
17645 SMSC911x ETHERNET DRIVER
17646 M:      Steve Glendinning <steve.glendinning@shawell.net>
17647 L:      netdev@vger.kernel.org
17648 S:      Maintained
17649 F:      drivers/net/ethernet/smsc/smsc911x.*
17650 F:      include/linux/smsc911x.h
17651
17652 SMSC9420 PCI ETHERNET DRIVER
17653 M:      Steve Glendinning <steve.glendinning@shawell.net>
17654 L:      netdev@vger.kernel.org
17655 S:      Maintained
17656 F:      drivers/net/ethernet/smsc/smsc9420.*
17657
17658 SOCIONEXT (SNI) AVE NETWORK DRIVER
17659 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17660 L:      netdev@vger.kernel.org
17661 S:      Maintained
17662 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17663 F:      drivers/net/ethernet/socionext/sni_ave.c
17664
17665 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17666 M:      Jassi Brar <jaswinder.singh@linaro.org>
17667 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17668 L:      netdev@vger.kernel.org
17669 S:      Maintained
17670 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17671 F:      drivers/net/ethernet/socionext/netsec.c
17672
17673 SOCIONEXT (SNI) Synquacer SPI DRIVER
17674 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17675 M:      Jassi Brar <jaswinder.singh@linaro.org>
17676 L:      linux-spi@vger.kernel.org
17677 S:      Maintained
17678 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17679 F:      drivers/spi/spi-synquacer.c
17680
17681 SOCIONEXT SYNQUACER I2C DRIVER
17682 M:      Ard Biesheuvel <ardb@kernel.org>
17683 L:      linux-i2c@vger.kernel.org
17684 S:      Maintained
17685 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17686 F:      drivers/i2c/busses/i2c-synquacer.c
17687
17688 SOCIONEXT UNIPHIER SOUND DRIVER
17689 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17690 S:      Orphan
17691 F:      sound/soc/uniphier/
17692
17693 SOEKRIS NET48XX LED SUPPORT
17694 M:      Chris Boot <bootc@bootc.net>
17695 S:      Maintained
17696 F:      drivers/leds/leds-net48xx.c
17697
17698 SOFT-IWARP DRIVER (siw)
17699 M:      Bernard Metzler <bmt@zurich.ibm.com>
17700 L:      linux-rdma@vger.kernel.org
17701 S:      Supported
17702 F:      drivers/infiniband/sw/siw/
17703 F:      include/uapi/rdma/siw-abi.h
17704
17705 SOFT-ROCE DRIVER (rxe)
17706 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17707 L:      linux-rdma@vger.kernel.org
17708 S:      Supported
17709 F:      drivers/infiniband/sw/rxe/
17710 F:      include/uapi/rdma/rdma_user_rxe.h
17711
17712 SOFTLOGIC 6x10 MPEG CODEC
17713 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17714 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17715 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17716 M:      Ismael Luceno <ismael@iodev.co.uk>
17717 L:      linux-media@vger.kernel.org
17718 S:      Supported
17719 F:      drivers/media/pci/solo6x10/
17720
17721 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17722 M:      James Morse <james.morse@arm.com>
17723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17724 S:      Maintained
17725 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17726 F:      drivers/firmware/arm_sdei.c
17727 F:      include/linux/arm_sdei.h
17728 F:      include/uapi/linux/arm_sdei.h
17729
17730 SOFTWARE NODES
17731 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17732 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17733 L:      linux-acpi@vger.kernel.org
17734 S:      Maintained
17735 F:      drivers/base/swnode.c
17736
17737 SOFTWARE RAID (Multiple Disks) SUPPORT
17738 M:      Song Liu <song@kernel.org>
17739 L:      linux-raid@vger.kernel.org
17740 S:      Supported
17741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17742 F:      drivers/md/Kconfig
17743 F:      drivers/md/Makefile
17744 F:      drivers/md/md*
17745 F:      drivers/md/raid*
17746 F:      include/linux/raid/
17747 F:      include/uapi/linux/raid/
17748
17749 SOLIDRUN CLEARFOG SUPPORT
17750 M:      Russell King <linux@armlinux.org.uk>
17751 S:      Maintained
17752 F:      arch/arm/boot/dts/armada-388-clearfog*
17753 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17754
17755 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17756 M:      Russell King <linux@armlinux.org.uk>
17757 S:      Maintained
17758 F:      arch/arm/boot/dts/imx6*-cubox-i*
17759 F:      arch/arm/boot/dts/imx6*-hummingboard*
17760 F:      arch/arm/boot/dts/imx6*-sr-*
17761
17762 SONIC NETWORK DRIVER
17763 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17764 L:      netdev@vger.kernel.org
17765 S:      Maintained
17766 F:      drivers/net/ethernet/natsemi/sonic.*
17767
17768 SONICS SILICON BACKPLANE DRIVER (SSB)
17769 M:      Michael Buesch <m@bues.ch>
17770 L:      linux-wireless@vger.kernel.org
17771 S:      Maintained
17772 F:      drivers/ssb/
17773 F:      include/linux/ssb/
17774
17775 SONY IMX208 SENSOR DRIVER
17776 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17777 L:      linux-media@vger.kernel.org
17778 S:      Maintained
17779 T:      git git://linuxtv.org/media_tree.git
17780 F:      drivers/media/i2c/imx208.c
17781
17782 SONY IMX214 SENSOR DRIVER
17783 M:      Ricardo Ribalda <ribalda@kernel.org>
17784 L:      linux-media@vger.kernel.org
17785 S:      Maintained
17786 T:      git git://linuxtv.org/media_tree.git
17787 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17788 F:      drivers/media/i2c/imx214.c
17789
17790 SONY IMX219 SENSOR DRIVER
17791 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17792 L:      linux-media@vger.kernel.org
17793 S:      Maintained
17794 T:      git git://linuxtv.org/media_tree.git
17795 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17796 F:      drivers/media/i2c/imx219.c
17797
17798 SONY IMX258 SENSOR DRIVER
17799 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17800 L:      linux-media@vger.kernel.org
17801 S:      Maintained
17802 T:      git git://linuxtv.org/media_tree.git
17803 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17804 F:      drivers/media/i2c/imx258.c
17805
17806 SONY IMX274 SENSOR DRIVER
17807 M:      Leon Luo <leonl@leopardimaging.com>
17808 L:      linux-media@vger.kernel.org
17809 S:      Maintained
17810 T:      git git://linuxtv.org/media_tree.git
17811 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17812 F:      drivers/media/i2c/imx274.c
17813
17814 SONY IMX290 SENSOR DRIVER
17815 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17816 L:      linux-media@vger.kernel.org
17817 S:      Maintained
17818 T:      git git://linuxtv.org/media_tree.git
17819 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17820 F:      drivers/media/i2c/imx290.c
17821
17822 SONY IMX319 SENSOR DRIVER
17823 M:      Bingbu Cao <bingbu.cao@intel.com>
17824 L:      linux-media@vger.kernel.org
17825 S:      Maintained
17826 T:      git git://linuxtv.org/media_tree.git
17827 F:      drivers/media/i2c/imx319.c
17828
17829 SONY IMX334 SENSOR DRIVER
17830 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17831 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17832 L:      linux-media@vger.kernel.org
17833 S:      Maintained
17834 T:      git git://linuxtv.org/media_tree.git
17835 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17836 F:      drivers/media/i2c/imx334.c
17837
17838 SONY IMX335 SENSOR DRIVER
17839 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17840 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17841 L:      linux-media@vger.kernel.org
17842 S:      Maintained
17843 T:      git git://linuxtv.org/media_tree.git
17844 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17845 F:      drivers/media/i2c/imx335.c
17846
17847 SONY IMX355 SENSOR DRIVER
17848 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17849 L:      linux-media@vger.kernel.org
17850 S:      Maintained
17851 T:      git git://linuxtv.org/media_tree.git
17852 F:      drivers/media/i2c/imx355.c
17853
17854 SONY IMX412 SENSOR DRIVER
17855 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17856 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17857 L:      linux-media@vger.kernel.org
17858 S:      Maintained
17859 T:      git git://linuxtv.org/media_tree.git
17860 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17861 F:      drivers/media/i2c/imx412.c
17862
17863 SONY MEMORYSTICK SUBSYSTEM
17864 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17865 M:      Alex Dubov <oakad@yahoo.com>
17866 M:      Ulf Hansson <ulf.hansson@linaro.org>
17867 L:      linux-mmc@vger.kernel.org
17868 S:      Maintained
17869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17870 F:      drivers/memstick/
17871 F:      include/linux/memstick.h
17872
17873 SONY VAIO CONTROL DEVICE DRIVER
17874 M:      Mattia Dongili <malattia@linux.it>
17875 L:      platform-driver-x86@vger.kernel.org
17876 S:      Maintained
17877 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17878 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17879 F:      drivers/char/sonypi.c
17880 F:      drivers/platform/x86/sony-laptop.c
17881 F:      include/linux/sony-laptop.h
17882
17883 SOUND
17884 M:      Jaroslav Kysela <perex@perex.cz>
17885 M:      Takashi Iwai <tiwai@suse.com>
17886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17887 S:      Maintained
17888 W:      http://www.alsa-project.org/
17889 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17891 F:      Documentation/sound/
17892 F:      include/sound/
17893 F:      include/uapi/sound/
17894 F:      sound/
17895
17896 SOUND - COMPRESSED AUDIO
17897 M:      Vinod Koul <vkoul@kernel.org>
17898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17899 S:      Supported
17900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17901 F:      Documentation/sound/designs/compress-offload.rst
17902 F:      include/sound/compress_driver.h
17903 F:      include/uapi/sound/compress_*
17904 F:      sound/core/compress_offload.c
17905 F:      sound/soc/soc-compress.c
17906
17907 SOUND - DMAENGINE HELPERS
17908 M:      Lars-Peter Clausen <lars@metafoo.de>
17909 S:      Supported
17910 F:      include/sound/dmaengine_pcm.h
17911 F:      sound/core/pcm_dmaengine.c
17912 F:      sound/soc/soc-generic-dmaengine-pcm.c
17913
17914 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17915 M:      Liam Girdwood <lgirdwood@gmail.com>
17916 M:      Mark Brown <broonie@kernel.org>
17917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17918 S:      Supported
17919 W:      http://alsa-project.org/main/index.php/ASoC
17920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17921 F:      Documentation/devicetree/bindings/sound/
17922 F:      Documentation/sound/soc/
17923 F:      include/dt-bindings/sound/
17924 F:      include/sound/soc*
17925 F:      sound/soc/
17926
17927 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17928 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17929 M:      Liam Girdwood <lgirdwood@gmail.com>
17930 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17931 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17932 M:      Daniel Baluta <daniel.baluta@nxp.com>
17933 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17934 S:      Supported
17935 W:      https://github.com/thesofproject/linux/
17936 F:      sound/soc/sof/
17937
17938 SOUNDWIRE SUBSYSTEM
17939 M:      Vinod Koul <vkoul@kernel.org>
17940 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17941 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17942 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17943 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17944 S:      Supported
17945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17946 F:      Documentation/driver-api/soundwire/
17947 F:      drivers/soundwire/
17948 F:      include/linux/soundwire/
17949
17950 SP2 MEDIA DRIVER
17951 M:      Olli Salonen <olli.salonen@iki.fi>
17952 L:      linux-media@vger.kernel.org
17953 S:      Maintained
17954 W:      https://linuxtv.org
17955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17956 F:      drivers/media/dvb-frontends/sp2*
17957
17958 SPARC + UltraSPARC (sparc/sparc64)
17959 M:      "David S. Miller" <davem@davemloft.net>
17960 L:      sparclinux@vger.kernel.org
17961 S:      Maintained
17962 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17965 F:      arch/sparc/
17966 F:      drivers/sbus/
17967
17968 SPARC SERIAL DRIVERS
17969 M:      "David S. Miller" <davem@davemloft.net>
17970 L:      sparclinux@vger.kernel.org
17971 S:      Maintained
17972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17974 F:      drivers/tty/serial/suncore.c
17975 F:      drivers/tty/serial/sunhv.c
17976 F:      drivers/tty/serial/sunsab.c
17977 F:      drivers/tty/serial/sunsab.h
17978 F:      drivers/tty/serial/sunsu.c
17979 F:      drivers/tty/serial/sunzilog.c
17980 F:      drivers/tty/serial/sunzilog.h
17981 F:      drivers/tty/vcc.c
17982 F:      include/linux/sunserialcore.h
17983
17984 SPARSE CHECKER
17985 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17986 L:      linux-sparse@vger.kernel.org
17987 S:      Maintained
17988 W:      https://sparse.docs.kernel.org/
17989 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17990 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17991 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17992 F:      include/linux/compiler.h
17993
17994 SPEAKUP CONSOLE SPEECH DRIVER
17995 M:      William Hubbs <w.d.hubbs@gmail.com>
17996 M:      Chris Brannon <chris@the-brannons.com>
17997 M:      Kirk Reiser <kirk@reisers.ca>
17998 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17999 L:      speakup@linux-speakup.org
18000 S:      Odd Fixes
18001 W:      http://www.linux-speakup.org/
18002 W:      https://github.com/linux-speakup/speakup
18003 B:      https://github.com/linux-speakup/speakup/issues
18004 F:      drivers/accessibility/speakup/
18005
18006 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18007 M:      Viresh Kumar <vireshk@kernel.org>
18008 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18009 M:      soc@kernel.org
18010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18011 S:      Maintained
18012 W:      http://www.st.com/spear
18013 F:      arch/arm/boot/dts/spear*
18014 F:      arch/arm/mach-spear/
18015 F:      drivers/clk/spear/
18016 F:      drivers/pinctrl/spear/
18017
18018 SPI NOR SUBSYSTEM
18019 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18020 R:      Michael Walle <michael@walle.cc>
18021 R:      Pratyush Yadav <p.yadav@ti.com>
18022 L:      linux-mtd@lists.infradead.org
18023 S:      Maintained
18024 W:      http://www.linux-mtd.infradead.org/
18025 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18026 C:      irc://irc.oftc.net/mtd
18027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18028 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18029 F:      drivers/mtd/spi-nor/
18030 F:      include/linux/mtd/spi-nor.h
18031
18032 SPI SUBSYSTEM
18033 M:      Mark Brown <broonie@kernel.org>
18034 L:      linux-spi@vger.kernel.org
18035 S:      Maintained
18036 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18038 F:      Documentation/devicetree/bindings/spi/
18039 F:      Documentation/spi/
18040 F:      drivers/spi/
18041 F:      include/linux/spi/
18042 F:      include/uapi/linux/spi/
18043 F:      tools/spi/
18044
18045 SPIDERNET NETWORK DRIVER for CELL
18046 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18047 M:      Geoff Levand <geoff@infradead.org>
18048 L:      netdev@vger.kernel.org
18049 L:      linuxppc-dev@lists.ozlabs.org
18050 S:      Maintained
18051 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18052 F:      drivers/net/ethernet/toshiba/spider_net*
18053
18054 SPMI SUBSYSTEM
18055 M:      Stephen Boyd <sboyd@kernel.org>
18056 L:      linux-kernel@vger.kernel.org
18057 S:      Maintained
18058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18059 F:      Documentation/devicetree/bindings/spmi/
18060 F:      drivers/spmi/
18061 F:      include/dt-bindings/spmi/spmi.h
18062 F:      include/linux/spmi.h
18063 F:      include/trace/events/spmi.h
18064
18065 SPU FILE SYSTEM
18066 M:      Jeremy Kerr <jk@ozlabs.org>
18067 L:      linuxppc-dev@lists.ozlabs.org
18068 S:      Supported
18069 W:      http://www.ibm.com/developerworks/power/cell/
18070 F:      Documentation/filesystems/spufs/spufs.rst
18071 F:      arch/powerpc/platforms/cell/spufs/
18072
18073 SQUASHFS FILE SYSTEM
18074 M:      Phillip Lougher <phillip@squashfs.org.uk>
18075 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18076 S:      Maintained
18077 W:      http://squashfs.org.uk
18078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18079 F:      Documentation/filesystems/squashfs.rst
18080 F:      fs/squashfs/
18081
18082 SRM (Alpha) environment access
18083 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18084 S:      Maintained
18085 F:      arch/alpha/kernel/srm_env.c
18086
18087 ST LSM6DSx IMU IIO DRIVER
18088 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18089 L:      linux-iio@vger.kernel.org
18090 S:      Maintained
18091 W:      http://www.st.com/
18092 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18093 F:      drivers/iio/imu/st_lsm6dsx/
18094
18095 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18096 M:      Mickael Guene <mickael.guene@st.com>
18097 L:      linux-media@vger.kernel.org
18098 S:      Maintained
18099 T:      git git://linuxtv.org/media_tree.git
18100 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18101 F:      drivers/media/i2c/st-mipid02.c
18102
18103 ST STM32 I2C/SMBUS DRIVER
18104 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18105 M:      Alain Volmat <alain.volmat@foss.st.com>
18106 L:      linux-i2c@vger.kernel.org
18107 S:      Maintained
18108 F:      drivers/i2c/busses/i2c-stm32*
18109
18110 ST STM32 SPI DRIVER
18111 M:      Alain Volmat <alain.volmat@foss.st.com>
18112 L:      linux-spi@vger.kernel.org
18113 S:      Maintained
18114 F:      drivers/spi/spi-stm32.c
18115
18116 ST STPDDC60 DRIVER
18117 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18118 L:      linux-hwmon@vger.kernel.org
18119 S:      Maintained
18120 F:      Documentation/hwmon/stpddc60.rst
18121 F:      drivers/hwmon/pmbus/stpddc60.c
18122
18123 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18124 M:      Song Qiang <songqiang1304521@gmail.com>
18125 L:      linux-iio@vger.kernel.org
18126 S:      Maintained
18127 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18128 F:      drivers/iio/proximity/vl53l0x-i2c.c
18129
18130 STABLE BRANCH
18131 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18132 M:      Sasha Levin <sashal@kernel.org>
18133 L:      stable@vger.kernel.org
18134 S:      Supported
18135 F:      Documentation/process/stable-kernel-rules.rst
18136
18137 STAGING - ATOMISP DRIVER
18138 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18139 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18140 L:      linux-media@vger.kernel.org
18141 S:      Maintained
18142 F:      drivers/staging/media/atomisp/
18143
18144 STAGING - FIELDBUS SUBSYSTEM
18145 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18146 S:      Maintained
18147 F:      drivers/staging/fieldbus/*
18148 F:      drivers/staging/fieldbus/Documentation/
18149
18150 STAGING - HMS ANYBUS-S BUS
18151 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18152 S:      Maintained
18153 F:      drivers/staging/fieldbus/anybuss/
18154
18155 STAGING - INDUSTRIAL IO
18156 M:      Jonathan Cameron <jic23@kernel.org>
18157 L:      linux-iio@vger.kernel.org
18158 S:      Odd Fixes
18159 F:      Documentation/devicetree/bindings/staging/iio/
18160 F:      drivers/staging/iio/
18161
18162 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18163 M:      Marc Dietrich <marvin24@gmx.de>
18164 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18165 L:      linux-tegra@vger.kernel.org
18166 S:      Maintained
18167 F:      drivers/staging/nvec/
18168
18169 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18170 M:      Jens Frederich <jfrederich@gmail.com>
18171 M:      Jon Nettleton <jon.nettleton@gmail.com>
18172 S:      Maintained
18173 W:      http://wiki.laptop.org/go/DCON
18174 F:      drivers/staging/olpc_dcon/
18175
18176 STAGING - REALTEK RTL8188EU DRIVERS
18177 M:      Larry Finger <Larry.Finger@lwfinger.net>
18178 M:      Phillip Potter <phil@philpotter.co.uk>
18179 S:      Supported
18180 F:      drivers/staging/r8188eu/
18181
18182 STAGING - REALTEK RTL8712U DRIVERS
18183 M:      Larry Finger <Larry.Finger@lwfinger.net>
18184 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18185 S:      Odd Fixes
18186 F:      drivers/staging/rtl8712/
18187
18188 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18189 M:      Michael Hennerich <michael.hennerich@analog.com>
18190 L:      linux-fbdev@vger.kernel.org
18191 S:      Supported
18192 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18193 F:      drivers/staging/fbtft/fb_seps525.c
18194
18195 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18196 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18197 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18198 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18199 L:      linux-fbdev@vger.kernel.org
18200 S:      Maintained
18201 F:      drivers/staging/sm750fb/
18202
18203 STAGING - VIA VT665X DRIVERS
18204 M:      Forest Bond <forest@alittletooquiet.net>
18205 S:      Odd Fixes
18206 F:      drivers/staging/vt665?/
18207
18208 STAGING SUBSYSTEM
18209 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18210 L:      linux-staging@lists.linux.dev
18211 S:      Supported
18212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18213 F:      drivers/staging/
18214
18215 STARFIRE/DURALAN NETWORK DRIVER
18216 M:      Ion Badulescu <ionut@badula.org>
18217 S:      Odd Fixes
18218 F:      drivers/net/ethernet/adaptec/starfire*
18219
18220 STARFIVE JH7100 CLOCK DRIVER
18221 M:      Emil Renner Berthing <kernel@esmil.dk>
18222 S:      Maintained
18223 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml
18224 F:      drivers/clk/starfive/clk-starfive-jh7100.c
18225 F:      include/dt-bindings/clock/starfive-jh7100.h
18226
18227 STARFIVE JH7100 PINCTRL DRIVER
18228 M:      Emil Renner Berthing <kernel@esmil.dk>
18229 L:      linux-gpio@vger.kernel.org
18230 S:      Maintained
18231 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18232 F:      drivers/pinctrl/pinctrl-starfive.c
18233 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18234
18235 STARFIVE JH7100 RESET CONTROLLER DRIVER
18236 M:      Emil Renner Berthing <kernel@esmil.dk>
18237 S:      Maintained
18238 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18239 F:      drivers/reset/reset-starfive-jh7100.c
18240 F:      include/dt-bindings/reset/starfive-jh7100.h
18241
18242 STATIC BRANCH/CALL
18243 M:      Peter Zijlstra <peterz@infradead.org>
18244 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18245 M:      Jason Baron <jbaron@akamai.com>
18246 R:      Steven Rostedt <rostedt@goodmis.org>
18247 R:      Ard Biesheuvel <ardb@kernel.org>
18248 S:      Supported
18249 F:      arch/*/include/asm/jump_label*.h
18250 F:      arch/*/include/asm/static_call*.h
18251 F:      arch/*/kernel/jump_label.c
18252 F:      arch/*/kernel/static_call.c
18253 F:      include/linux/jump_label*.h
18254 F:      include/linux/static_call*.h
18255 F:      kernel/jump_label.c
18256 F:      kernel/static_call.c
18257
18258 STI AUDIO (ASoC) DRIVERS
18259 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18260 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18261 S:      Maintained
18262 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18263 F:      sound/soc/sti/
18264
18265 STI CEC DRIVER
18266 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18267 S:      Maintained
18268 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18269 F:      drivers/media/cec/platform/sti/
18270
18271 STK1160 USB VIDEO CAPTURE DRIVER
18272 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18273 L:      linux-media@vger.kernel.org
18274 S:      Maintained
18275 T:      git git://linuxtv.org/media_tree.git
18276 F:      drivers/media/usb/stk1160/
18277
18278 STM32 AUDIO (ASoC) DRIVERS
18279 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18280 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18282 S:      Maintained
18283 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18284 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18285 F:      sound/soc/stm/
18286
18287 STM32 TIMER/LPTIMER DRIVERS
18288 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18289 S:      Maintained
18290 F:      Documentation/ABI/testing/*timer-stm32
18291 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18292 F:      drivers/*/stm32-*timer*
18293 F:      drivers/pwm/pwm-stm32*
18294 F:      include/linux/*/stm32-*tim*
18295
18296 STMMAC ETHERNET DRIVER
18297 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18298 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18299 M:      Jose Abreu <joabreu@synopsys.com>
18300 L:      netdev@vger.kernel.org
18301 S:      Supported
18302 W:      http://www.stlinux.com
18303 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18304 F:      drivers/net/ethernet/stmicro/stmmac/
18305
18306 SUN3/3X
18307 M:      Sam Creasey <sammy@sammy.net>
18308 S:      Maintained
18309 W:      http://sammy.net/sun3/
18310 F:      arch/m68k/include/asm/sun3*
18311 F:      arch/m68k/kernel/*sun3*
18312 F:      arch/m68k/sun3*/
18313 F:      drivers/net/ethernet/i825xx/sun3*
18314
18315 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18316 M:      Hans de Goede <hdegoede@redhat.com>
18317 L:      linux-input@vger.kernel.org
18318 S:      Maintained
18319 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18320 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18321
18322 SUNDANCE NETWORK DRIVER
18323 M:      Denis Kirjanov <kda@linux-powerpc.org>
18324 L:      netdev@vger.kernel.org
18325 S:      Maintained
18326 F:      drivers/net/ethernet/dlink/sundance.c
18327
18328 SUPERH
18329 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18330 M:      Rich Felker <dalias@libc.org>
18331 L:      linux-sh@vger.kernel.org
18332 S:      Maintained
18333 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18334 F:      Documentation/sh/
18335 F:      arch/sh/
18336 F:      drivers/sh/
18337
18338 SUSPEND TO RAM
18339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18340 M:      Len Brown <len.brown@intel.com>
18341 M:      Pavel Machek <pavel@ucw.cz>
18342 L:      linux-pm@vger.kernel.org
18343 S:      Supported
18344 B:      https://bugzilla.kernel.org
18345 F:      Documentation/power/
18346 F:      arch/x86/kernel/acpi/
18347 F:      drivers/base/power/
18348 F:      include/linux/freezer.h
18349 F:      include/linux/pm.h
18350 F:      include/linux/suspend.h
18351 F:      kernel/power/
18352
18353 SVGA HANDLING
18354 M:      Martin Mares <mj@ucw.cz>
18355 L:      linux-video@atrey.karlin.mff.cuni.cz
18356 S:      Maintained
18357 F:      Documentation/admin-guide/svga.rst
18358 F:      arch/x86/boot/video*
18359
18360 SWIOTLB SUBSYSTEM
18361 M:      Christoph Hellwig <hch@infradead.org>
18362 L:      iommu@lists.linux-foundation.org
18363 S:      Supported
18364 W:      http://git.infradead.org/users/hch/dma-mapping.git
18365 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18366 F:      arch/*/kernel/pci-swiotlb.c
18367 F:      include/linux/swiotlb.h
18368 F:      kernel/dma/swiotlb.c
18369
18370 SWITCHDEV
18371 M:      Jiri Pirko <jiri@resnulli.us>
18372 M:      Ivan Vecera <ivecera@redhat.com>
18373 L:      netdev@vger.kernel.org
18374 S:      Supported
18375 F:      include/net/switchdev.h
18376 F:      net/switchdev/
18377
18378 SY8106A REGULATOR DRIVER
18379 M:      Icenowy Zheng <icenowy@aosc.io>
18380 S:      Maintained
18381 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18382 F:      drivers/regulator/sy8106a-regulator.c
18383
18384 SYNC FILE FRAMEWORK
18385 M:      Sumit Semwal <sumit.semwal@linaro.org>
18386 R:      Gustavo Padovan <gustavo@padovan.org>
18387 L:      linux-media@vger.kernel.org
18388 L:      dri-devel@lists.freedesktop.org
18389 S:      Maintained
18390 T:      git git://anongit.freedesktop.org/drm/drm-misc
18391 F:      Documentation/driver-api/sync_file.rst
18392 F:      drivers/dma-buf/dma-fence*
18393 F:      drivers/dma-buf/sw_sync.c
18394 F:      drivers/dma-buf/sync_*
18395 F:      include/linux/sync_file.h
18396 F:      include/uapi/linux/sync_file.h
18397
18398 SYNOPSYS ARC ARCHITECTURE
18399 M:      Vineet Gupta <vgupta@kernel.org>
18400 L:      linux-snps-arc@lists.infradead.org
18401 S:      Supported
18402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18403 F:      Documentation/devicetree/bindings/arc/*
18404 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18405 F:      arch/arc/
18406 F:      drivers/clocksource/arc_timer.c
18407 F:      drivers/tty/serial/arc_uart.c
18408
18409 SYNOPSYS ARC HSDK SDP pll clock driver
18410 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18411 S:      Supported
18412 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18413 F:      drivers/clk/clk-hsdk-pll.c
18414
18415 SYNOPSYS ARC SDP clock driver
18416 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18417 S:      Supported
18418 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18419 F:      drivers/clk/axs10x/*
18420
18421 SYNOPSYS ARC SDP platform support
18422 M:      Alexey Brodkin <abrodkin@synopsys.com>
18423 S:      Supported
18424 F:      Documentation/devicetree/bindings/arc/axs10*
18425 F:      arch/arc/boot/dts/ax*
18426 F:      arch/arc/plat-axs10x
18427
18428 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18429 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18430 S:      Supported
18431 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18432 F:      drivers/reset/reset-axs10x.c
18433
18434 SYNOPSYS CREG GPIO DRIVER
18435 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18436 S:      Maintained
18437 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18438 F:      drivers/gpio/gpio-creg-snps.c
18439
18440 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18441 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18442 S:      Maintained
18443 F:      drivers/tty/serial/8250/8250_dw.c
18444 F:      drivers/tty/serial/8250/8250_dwlib.*
18445 F:      drivers/tty/serial/8250/8250_lpss.c
18446
18447 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18448 M:      Hoan Tran <hoan@os.amperecomputing.com>
18449 M:      Serge Semin <fancer.lancer@gmail.com>
18450 L:      linux-gpio@vger.kernel.org
18451 S:      Maintained
18452 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18453 F:      drivers/gpio/gpio-dwapb.c
18454
18455 SYNOPSYS DESIGNWARE APB SSI DRIVER
18456 M:      Serge Semin <fancer.lancer@gmail.com>
18457 L:      linux-spi@vger.kernel.org
18458 S:      Supported
18459 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18460 F:      drivers/spi/spi-dw*
18461
18462 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18463 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18464 S:      Maintained
18465 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18466 F:      drivers/dma/dw-axi-dmac/
18467
18468 SYNOPSYS DESIGNWARE DMAC DRIVER
18469 M:      Viresh Kumar <vireshk@kernel.org>
18470 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18471 S:      Maintained
18472 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18473 F:      drivers/dma/dw/
18474 F:      include/dt-bindings/dma/dw-dmac.h
18475 F:      include/linux/dma/dw.h
18476 F:      include/linux/platform_data/dma-dw.h
18477
18478 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18479 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18480 L:      netdev@vger.kernel.org
18481 S:      Supported
18482 F:      drivers/net/ethernet/synopsys/
18483
18484 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18485 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18486 L:      netdev@vger.kernel.org
18487 S:      Supported
18488 F:      drivers/net/pcs/pcs-xpcs.c
18489 F:      drivers/net/pcs/pcs-xpcs.h
18490 F:      include/linux/pcs/pcs-xpcs.h
18491
18492 SYNOPSYS DESIGNWARE I2C DRIVER
18493 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18494 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18495 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18496 L:      linux-i2c@vger.kernel.org
18497 S:      Maintained
18498 F:      drivers/i2c/busses/i2c-designware-*
18499
18500 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18501 M:      Jaehoon Chung <jh80.chung@samsung.com>
18502 L:      linux-mmc@vger.kernel.org
18503 S:      Maintained
18504 F:      drivers/mmc/host/dw_mmc*
18505
18506 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18507 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18508 S:      Supported
18509 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18510 F:      drivers/reset/reset-hsdk.c
18511 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18512
18513 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18514 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18515 M:      Manjunath M B <manjumb@synopsys.com>
18516 L:      linux-mmc@vger.kernel.org
18517 S:      Maintained
18518 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18519
18520 SYSTEM CONFIGURATION (SYSCON)
18521 M:      Lee Jones <lee.jones@linaro.org>
18522 M:      Arnd Bergmann <arnd@arndb.de>
18523 S:      Supported
18524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18525 F:      drivers/mfd/syscon.c
18526
18527 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18528 M:      Sudeep Holla <sudeep.holla@arm.com>
18529 R:      Cristian Marussi <cristian.marussi@arm.com>
18530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18531 S:      Maintained
18532 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18533 F:      drivers/clk/clk-sc[mp]i.c
18534 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18535 F:      drivers/firmware/arm_scmi/
18536 F:      drivers/firmware/arm_scpi.c
18537 F:      drivers/regulator/scmi-regulator.c
18538 F:      drivers/reset/reset-scmi.c
18539 F:      include/linux/sc[mp]i_protocol.h
18540 F:      include/trace/events/scmi.h
18541 F:      include/uapi/linux/virtio_scmi.h
18542
18543 SYSTEM RESET/SHUTDOWN DRIVERS
18544 M:      Sebastian Reichel <sre@kernel.org>
18545 L:      linux-pm@vger.kernel.org
18546 S:      Maintained
18547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18548 F:      Documentation/devicetree/bindings/power/reset/
18549 F:      drivers/power/reset/
18550
18551 SYSTEM TRACE MODULE CLASS
18552 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18553 S:      Maintained
18554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18555 F:      Documentation/trace/stm.rst
18556 F:      drivers/hwtracing/stm/
18557 F:      include/linux/stm.h
18558 F:      include/uapi/linux/stm.h
18559
18560 SYSTEM76 ACPI DRIVER
18561 M:      Jeremy Soller <jeremy@system76.com>
18562 M:      System76 Product Development <productdev@system76.com>
18563 L:      platform-driver-x86@vger.kernel.org
18564 S:      Maintained
18565 F:      drivers/platform/x86/system76_acpi.c
18566
18567 SYSV FILESYSTEM
18568 M:      Christoph Hellwig <hch@infradead.org>
18569 S:      Maintained
18570 F:      Documentation/filesystems/sysv-fs.rst
18571 F:      fs/sysv/
18572 F:      include/linux/sysv_fs.h
18573
18574 TASKSTATS STATISTICS INTERFACE
18575 M:      Balbir Singh <bsingharora@gmail.com>
18576 S:      Maintained
18577 F:      Documentation/accounting/taskstats*
18578 F:      include/linux/taskstats*
18579 F:      kernel/taskstats.c
18580
18581 TC subsystem
18582 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18583 M:      Cong Wang <xiyou.wangcong@gmail.com>
18584 M:      Jiri Pirko <jiri@resnulli.us>
18585 L:      netdev@vger.kernel.org
18586 S:      Maintained
18587 F:      include/net/pkt_cls.h
18588 F:      include/net/pkt_sched.h
18589 F:      include/net/tc_act/
18590 F:      include/uapi/linux/pkt_cls.h
18591 F:      include/uapi/linux/pkt_sched.h
18592 F:      include/uapi/linux/tc_act/
18593 F:      include/uapi/linux/tc_ematch/
18594 F:      net/sched/
18595 F:      tools/testing/selftests/tc-testing
18596
18597 TC90522 MEDIA DRIVER
18598 M:      Akihiro Tsukada <tskd08@gmail.com>
18599 L:      linux-media@vger.kernel.org
18600 S:      Odd Fixes
18601 F:      drivers/media/dvb-frontends/tc90522*
18602
18603 TCP LOW PRIORITY MODULE
18604 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18605 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18606 S:      Maintained
18607 W:      http://tcp-lp-mod.sourceforge.net/
18608 F:      net/ipv4/tcp_lp.c
18609
18610 TDA10071 MEDIA DRIVER
18611 M:      Antti Palosaari <crope@iki.fi>
18612 L:      linux-media@vger.kernel.org
18613 S:      Maintained
18614 W:      https://linuxtv.org
18615 W:      http://palosaari.fi/linux/
18616 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18617 T:      git git://linuxtv.org/anttip/media_tree.git
18618 F:      drivers/media/dvb-frontends/tda10071*
18619
18620 TDA18212 MEDIA DRIVER
18621 M:      Antti Palosaari <crope@iki.fi>
18622 L:      linux-media@vger.kernel.org
18623 S:      Maintained
18624 W:      https://linuxtv.org
18625 W:      http://palosaari.fi/linux/
18626 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18627 T:      git git://linuxtv.org/anttip/media_tree.git
18628 F:      drivers/media/tuners/tda18212*
18629
18630 TDA18218 MEDIA DRIVER
18631 M:      Antti Palosaari <crope@iki.fi>
18632 L:      linux-media@vger.kernel.org
18633 S:      Maintained
18634 W:      https://linuxtv.org
18635 W:      http://palosaari.fi/linux/
18636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18637 T:      git git://linuxtv.org/anttip/media_tree.git
18638 F:      drivers/media/tuners/tda18218*
18639
18640 TDA18250 MEDIA DRIVER
18641 M:      Olli Salonen <olli.salonen@iki.fi>
18642 L:      linux-media@vger.kernel.org
18643 S:      Maintained
18644 W:      https://linuxtv.org
18645 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18646 T:      git git://linuxtv.org/media_tree.git
18647 F:      drivers/media/tuners/tda18250*
18648
18649 TDA18271 MEDIA DRIVER
18650 M:      Michael Krufky <mkrufky@linuxtv.org>
18651 L:      linux-media@vger.kernel.org
18652 S:      Maintained
18653 W:      https://linuxtv.org
18654 W:      http://github.com/mkrufky
18655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18656 T:      git git://linuxtv.org/mkrufky/tuners.git
18657 F:      drivers/media/tuners/tda18271*
18658
18659 TDA1997x MEDIA DRIVER
18660 M:      Tim Harvey <tharvey@gateworks.com>
18661 L:      linux-media@vger.kernel.org
18662 S:      Maintained
18663 W:      https://linuxtv.org
18664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18665 F:      drivers/media/i2c/tda1997x.*
18666
18667 TDA827x MEDIA DRIVER
18668 M:      Michael Krufky <mkrufky@linuxtv.org>
18669 L:      linux-media@vger.kernel.org
18670 S:      Maintained
18671 W:      https://linuxtv.org
18672 W:      http://github.com/mkrufky
18673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18674 T:      git git://linuxtv.org/mkrufky/tuners.git
18675 F:      drivers/media/tuners/tda8290.*
18676
18677 TDA8290 MEDIA DRIVER
18678 M:      Michael Krufky <mkrufky@linuxtv.org>
18679 L:      linux-media@vger.kernel.org
18680 S:      Maintained
18681 W:      https://linuxtv.org
18682 W:      http://github.com/mkrufky
18683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18684 T:      git git://linuxtv.org/mkrufky/tuners.git
18685 F:      drivers/media/tuners/tda8290.*
18686
18687 TDA9840 MEDIA DRIVER
18688 M:      Hans Verkuil <hverkuil@xs4all.nl>
18689 L:      linux-media@vger.kernel.org
18690 S:      Maintained
18691 W:      https://linuxtv.org
18692 T:      git git://linuxtv.org/media_tree.git
18693 F:      drivers/media/i2c/tda9840*
18694
18695 TEA5761 TUNER DRIVER
18696 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18697 L:      linux-media@vger.kernel.org
18698 S:      Odd fixes
18699 W:      https://linuxtv.org
18700 T:      git git://linuxtv.org/media_tree.git
18701 F:      drivers/media/tuners/tea5761.*
18702
18703 TEA5767 TUNER DRIVER
18704 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18705 L:      linux-media@vger.kernel.org
18706 S:      Maintained
18707 W:      https://linuxtv.org
18708 T:      git git://linuxtv.org/media_tree.git
18709 F:      drivers/media/tuners/tea5767.*
18710
18711 TEA6415C MEDIA DRIVER
18712 M:      Hans Verkuil <hverkuil@xs4all.nl>
18713 L:      linux-media@vger.kernel.org
18714 S:      Maintained
18715 W:      https://linuxtv.org
18716 T:      git git://linuxtv.org/media_tree.git
18717 F:      drivers/media/i2c/tea6415c*
18718
18719 TEA6420 MEDIA DRIVER
18720 M:      Hans Verkuil <hverkuil@xs4all.nl>
18721 L:      linux-media@vger.kernel.org
18722 S:      Maintained
18723 W:      https://linuxtv.org
18724 T:      git git://linuxtv.org/media_tree.git
18725 F:      drivers/media/i2c/tea6420*
18726
18727 TEAM DRIVER
18728 M:      Jiri Pirko <jiri@resnulli.us>
18729 L:      netdev@vger.kernel.org
18730 S:      Supported
18731 F:      drivers/net/team/
18732 F:      include/linux/if_team.h
18733 F:      include/uapi/linux/if_team.h
18734
18735 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18736 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18737 S:      Maintained
18738 F:      arch/x86/platform/ts5500/
18739
18740 TECHNOTREND USB IR RECEIVER
18741 M:      Sean Young <sean@mess.org>
18742 L:      linux-media@vger.kernel.org
18743 S:      Maintained
18744 F:      drivers/media/rc/ttusbir.c
18745
18746 TECHWELL TW9910 VIDEO DECODER
18747 L:      linux-media@vger.kernel.org
18748 S:      Orphan
18749 F:      drivers/media/i2c/tw9910.c
18750 F:      include/media/i2c/tw9910.h
18751
18752 TEE SUBSYSTEM
18753 M:      Jens Wiklander <jens.wiklander@linaro.org>
18754 R:      Sumit Garg <sumit.garg@linaro.org>
18755 L:      op-tee@lists.trustedfirmware.org
18756 S:      Maintained
18757 F:      Documentation/staging/tee.rst
18758 F:      drivers/tee/
18759 F:      include/linux/tee_drv.h
18760 F:      include/uapi/linux/tee.h
18761
18762 TEGRA ARCHITECTURE SUPPORT
18763 M:      Thierry Reding <thierry.reding@gmail.com>
18764 M:      Jonathan Hunter <jonathanh@nvidia.com>
18765 L:      linux-tegra@vger.kernel.org
18766 S:      Supported
18767 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18769 N:      [^a-z]tegra
18770
18771 TEGRA CLOCK DRIVER
18772 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18773 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18774 S:      Supported
18775 F:      drivers/clk/tegra/
18776
18777 TEGRA DMA DRIVERS
18778 M:      Laxman Dewangan <ldewangan@nvidia.com>
18779 M:      Jon Hunter <jonathanh@nvidia.com>
18780 S:      Supported
18781 F:      drivers/dma/tegra*
18782
18783 TEGRA I2C DRIVER
18784 M:      Laxman Dewangan <ldewangan@nvidia.com>
18785 R:      Dmitry Osipenko <digetx@gmail.com>
18786 S:      Supported
18787 F:      drivers/i2c/busses/i2c-tegra.c
18788
18789 TEGRA IOMMU DRIVERS
18790 M:      Thierry Reding <thierry.reding@gmail.com>
18791 R:      Krishna Reddy <vdumpa@nvidia.com>
18792 L:      linux-tegra@vger.kernel.org
18793 S:      Supported
18794 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18795 F:      drivers/iommu/tegra*
18796
18797 TEGRA KBC DRIVER
18798 M:      Laxman Dewangan <ldewangan@nvidia.com>
18799 S:      Supported
18800 F:      drivers/input/keyboard/tegra-kbc.c
18801
18802 TEGRA NAND DRIVER
18803 M:      Stefan Agner <stefan@agner.ch>
18804 M:      Lucas Stach <dev@lynxeye.de>
18805 S:      Maintained
18806 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18807 F:      drivers/mtd/nand/raw/tegra_nand.c
18808
18809 TEGRA PWM DRIVER
18810 M:      Thierry Reding <thierry.reding@gmail.com>
18811 S:      Supported
18812 F:      drivers/pwm/pwm-tegra.c
18813
18814 TEGRA SERIAL DRIVER
18815 M:      Laxman Dewangan <ldewangan@nvidia.com>
18816 S:      Supported
18817 F:      drivers/tty/serial/serial-tegra.c
18818
18819 TEGRA SPI DRIVER
18820 M:      Laxman Dewangan <ldewangan@nvidia.com>
18821 S:      Supported
18822 F:      drivers/spi/spi-tegra*
18823
18824 TEGRA QUAD SPI DRIVER
18825 M:      Thierry Reding <thierry.reding@gmail.com>
18826 M:      Jonathan Hunter <jonathanh@nvidia.com>
18827 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18828 L:      linux-tegra@vger.kernel.org
18829 S:      Maintained
18830 F:      drivers/spi/spi-tegra210-quad.c
18831
18832 TEGRA VIDEO DRIVER
18833 M:      Thierry Reding <thierry.reding@gmail.com>
18834 M:      Jonathan Hunter <jonathanh@nvidia.com>
18835 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18836 L:      linux-media@vger.kernel.org
18837 L:      linux-tegra@vger.kernel.org
18838 S:      Maintained
18839 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18840 F:      drivers/staging/media/tegra-video/
18841
18842 TEGRA XUSB PADCTL DRIVER
18843 M:      JC Kuo <jckuo@nvidia.com>
18844 S:      Supported
18845 F:      drivers/phy/tegra/xusb*
18846
18847 TEHUTI ETHERNET DRIVER
18848 M:      Andy Gospodarek <andy@greyhouse.net>
18849 L:      netdev@vger.kernel.org
18850 S:      Supported
18851 F:      drivers/net/ethernet/tehuti/*
18852
18853 TELECOM CLOCK DRIVER FOR MCPL0010
18854 M:      Mark Gross <markgross@kernel.org>
18855 S:      Supported
18856 F:      drivers/char/tlclk.c
18857
18858 TEMPO SEMICONDUCTOR DRIVERS
18859 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18860 S:      Maintained
18861 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18862 F:      sound/soc/codecs/tscs*.c
18863 F:      sound/soc/codecs/tscs*.h
18864
18865 TENSILICA XTENSA PORT (xtensa)
18866 M:      Chris Zankel <chris@zankel.net>
18867 M:      Max Filippov <jcmvbkbc@gmail.com>
18868 L:      linux-xtensa@linux-xtensa.org
18869 S:      Maintained
18870 T:      git git://github.com/czankel/xtensa-linux.git
18871 F:      arch/xtensa/
18872 F:      drivers/irqchip/irq-xtensa-*
18873
18874 TEXAS INSTRUMENTS ASoC DRIVERS
18875 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18877 S:      Maintained
18878 F:      sound/soc/ti/
18879
18880 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18881 M:      Ricardo Ribalda <ribalda@kernel.org>
18882 L:      linux-iio@vger.kernel.org
18883 S:      Supported
18884 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18885 F:      drivers/iio/dac/ti-dac7612.c
18886
18887 TEXAS INSTRUMENTS DMA DRIVERS
18888 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18889 L:      dmaengine@vger.kernel.org
18890 S:      Maintained
18891 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18892 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18893 F:      Documentation/devicetree/bindings/dma/ti/
18894 F:      drivers/dma/ti/
18895 X:      drivers/dma/ti/cppi41.c
18896 F:      include/linux/dma/k3-udma-glue.h
18897 F:      include/linux/dma/ti-cppi5.h
18898 F:      include/linux/dma/k3-psil.h
18899
18900 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18901 M:      Nishanth Menon <nm@ti.com>
18902 M:      Tero Kristo <kristo@kernel.org>
18903 M:      Santosh Shilimkar <ssantosh@kernel.org>
18904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18905 S:      Maintained
18906 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18907 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18908 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18909 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18910 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18911 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18912 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18913 F:      drivers/clk/keystone/sci-clk.c
18914 F:      drivers/firmware/ti_sci*
18915 F:      drivers/irqchip/irq-ti-sci-inta.c
18916 F:      drivers/irqchip/irq-ti-sci-intr.c
18917 F:      drivers/reset/reset-ti-sci.c
18918 F:      drivers/soc/ti/ti_sci_inta_msi.c
18919 F:      drivers/soc/ti/ti_sci_pm_domains.c
18920 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18921 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18922 F:      include/linux/soc/ti/ti_sci_protocol.h
18923
18924 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18925 M:      Robert Marko <robert.marko@sartura.hr>
18926 M:      Luka Perkov <luka.perkov@sartura.hr>
18927 L:      linux-hwmon@vger.kernel.org
18928 S:      Maintained
18929 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18930 F:      Documentation/hwmon/tps23861.rst
18931 F:      drivers/hwmon/tps23861.c
18932
18933 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18934 M:      Puranjay Mohan <puranjay12@gmail.com>
18935 L:      linux-iio@vger.kernel.org
18936 S:      Supported
18937 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18938 F:      drivers/iio/temperature/tmp117.c
18939
18940 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18941 M:      Hans Verkuil <hverkuil@xs4all.nl>
18942 L:      linux-media@vger.kernel.org
18943 S:      Maintained
18944 W:      https://linuxtv.org
18945 T:      git git://linuxtv.org/media_tree.git
18946 F:      drivers/media/radio/radio-raremono.c
18947
18948 THERMAL
18949 M:      Rafael J. Wysocki <rafael@kernel.org>
18950 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18951 R:      Amit Kucheria <amitk@kernel.org>
18952 R:      Zhang Rui <rui.zhang@intel.com>
18953 L:      linux-pm@vger.kernel.org
18954 S:      Supported
18955 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18957 F:      Documentation/ABI/testing/sysfs-class-thermal
18958 F:      Documentation/devicetree/bindings/thermal/
18959 F:      Documentation/driver-api/thermal/
18960 F:      drivers/thermal/
18961 F:      include/linux/cpu_cooling.h
18962 F:      include/linux/thermal.h
18963 F:      include/uapi/linux/thermal.h
18964 F:      tools/thermal/
18965
18966 THERMAL DRIVER FOR AMLOGIC SOCS
18967 M:      Guillaume La Roque <glaroque@baylibre.com>
18968 L:      linux-pm@vger.kernel.org
18969 L:      linux-amlogic@lists.infradead.org
18970 S:      Supported
18971 W:      http://linux-meson.com/
18972 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18973 F:      drivers/thermal/amlogic_thermal.c
18974
18975 THERMAL/CPU_COOLING
18976 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18977 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18978 M:      Viresh Kumar <viresh.kumar@linaro.org>
18979 R:      Lukasz Luba <lukasz.luba@arm.com>
18980 L:      linux-pm@vger.kernel.org
18981 S:      Supported
18982 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18983 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18984 F:      drivers/thermal/cpufreq_cooling.c
18985 F:      drivers/thermal/cpuidle_cooling.c
18986 F:      include/linux/cpu_cooling.h
18987
18988 THERMAL/POWER_ALLOCATOR
18989 M:      Lukasz Luba <lukasz.luba@arm.com>
18990 L:      linux-pm@vger.kernel.org
18991 S:      Maintained
18992 F:      Documentation/driver-api/thermal/power_allocator.rst
18993 F:      drivers/thermal/gov_power_allocator.c
18994 F:      include/trace/events/thermal_power_allocator.h
18995
18996 THINKPAD ACPI EXTRAS DRIVER
18997 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18998 L:      ibm-acpi-devel@lists.sourceforge.net
18999 L:      platform-driver-x86@vger.kernel.org
19000 S:      Maintained
19001 W:      http://ibm-acpi.sourceforge.net
19002 W:      http://thinkwiki.org/wiki/Ibm-acpi
19003 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19004 F:      drivers/platform/x86/thinkpad_acpi.c
19005
19006 THINKPAD LMI DRIVER
19007 M:      Mark Pearson <markpearson@lenovo.com>
19008 L:      platform-driver-x86@vger.kernel.org
19009 S:      Maintained
19010 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19011 F:      drivers/platform/x86/think-lmi.?
19012
19013 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19014 M:      Isaac Hazan <isaac.hazan@intel.com>
19015 L:      linux-usb@vger.kernel.org
19016 S:      Maintained
19017 F:      drivers/thunderbolt/dma_test.c
19018
19019 THUNDERBOLT DRIVER
19020 M:      Andreas Noever <andreas.noever@gmail.com>
19021 M:      Michael Jamet <michael.jamet@intel.com>
19022 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19023 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19024 L:      linux-usb@vger.kernel.org
19025 S:      Maintained
19026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19027 F:      Documentation/admin-guide/thunderbolt.rst
19028 F:      drivers/thunderbolt/
19029 F:      include/linux/thunderbolt.h
19030
19031 THUNDERBOLT NETWORK DRIVER
19032 M:      Michael Jamet <michael.jamet@intel.com>
19033 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19034 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19035 L:      netdev@vger.kernel.org
19036 S:      Maintained
19037 F:      drivers/net/thunderbolt.c
19038
19039 THUNDERX GPIO DRIVER
19040 M:      Robert Richter <rric@kernel.org>
19041 S:      Odd Fixes
19042 F:      drivers/gpio/gpio-thunderx.c
19043
19044 TI ADS131E0X ADC SERIES DRIVER
19045 M:      Tomislav Denis <tomislav.denis@avl.com>
19046 L:      linux-iio@vger.kernel.org
19047 S:      Maintained
19048 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19049 F:      drivers/iio/adc/ti-ads131e08.c
19050
19051 TI AM437X VPFE DRIVER
19052 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19053 L:      linux-media@vger.kernel.org
19054 S:      Maintained
19055 W:      https://linuxtv.org
19056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19057 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19058 F:      drivers/media/platform/am437x/
19059
19060 TI BANDGAP AND THERMAL DRIVER
19061 M:      Eduardo Valentin <edubezval@gmail.com>
19062 M:      Keerthy <j-keerthy@ti.com>
19063 L:      linux-pm@vger.kernel.org
19064 L:      linux-omap@vger.kernel.org
19065 S:      Maintained
19066 F:      drivers/thermal/ti-soc-thermal/
19067
19068 TI BQ27XXX POWER SUPPLY DRIVER
19069 F:      drivers/power/supply/bq27xxx_battery.c
19070 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19071 F:      include/linux/power/bq27xxx_battery.h
19072
19073 TI CDCE706 CLOCK DRIVER
19074 M:      Max Filippov <jcmvbkbc@gmail.com>
19075 S:      Maintained
19076 F:      drivers/clk/clk-cdce706.c
19077
19078 TI CLOCK DRIVER
19079 M:      Tero Kristo <kristo@kernel.org>
19080 L:      linux-omap@vger.kernel.org
19081 S:      Odd Fixes
19082 F:      drivers/clk/ti/
19083 F:      include/linux/clk/ti.h
19084
19085 TI DAVINCI MACHINE SUPPORT
19086 M:      Sekhar Nori <nsekhar@ti.com>
19087 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19089 S:      Supported
19090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19091 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19092 F:      arch/arm/boot/dts/da850*
19093 F:      arch/arm/mach-davinci/
19094 F:      drivers/i2c/busses/i2c-davinci.c
19095
19096 TI DAVINCI SERIES CLOCK DRIVER
19097 M:      David Lechner <david@lechnology.com>
19098 R:      Sekhar Nori <nsekhar@ti.com>
19099 S:      Maintained
19100 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19101 F:      drivers/clk/davinci/
19102
19103 TI DAVINCI SERIES GPIO DRIVER
19104 M:      Keerthy <j-keerthy@ti.com>
19105 L:      linux-gpio@vger.kernel.org
19106 S:      Maintained
19107 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19108 F:      drivers/gpio/gpio-davinci.c
19109
19110 TI DAVINCI SERIES MEDIA DRIVER
19111 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19112 L:      linux-media@vger.kernel.org
19113 S:      Maintained
19114 W:      https://linuxtv.org
19115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19116 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19117 F:      drivers/media/platform/davinci/
19118 F:      include/media/davinci/
19119
19120 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19121 R:      David Lechner <david@lechnology.com>
19122 L:      linux-iio@vger.kernel.org
19123 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19124 F:      drivers/counter/ti-eqep.c
19125
19126 TI ETHERNET SWITCH DRIVER (CPSW)
19127 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19128 L:      linux-omap@vger.kernel.org
19129 L:      netdev@vger.kernel.org
19130 S:      Maintained
19131 F:      drivers/net/ethernet/ti/cpsw*
19132 F:      drivers/net/ethernet/ti/davinci*
19133
19134 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19135 M:      Alex Dubov <oakad@yahoo.com>
19136 S:      Maintained
19137 W:      http://tifmxx.berlios.de/
19138 F:      drivers/memstick/host/tifm_ms.c
19139 F:      drivers/misc/tifm*
19140 F:      drivers/mmc/host/tifm_sd.c
19141 F:      include/linux/tifm.h
19142
19143 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19144 M:      Nishanth Menon <nm@ti.com>
19145 M:      Santosh Shilimkar <ssantosh@kernel.org>
19146 L:      linux-kernel@vger.kernel.org
19147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19148 S:      Maintained
19149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19150 F:      drivers/soc/ti/*
19151
19152 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19153 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19154 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19155 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19156 S:      Maintained
19157 F:      sound/soc/codecs/isabelle*
19158 F:      sound/soc/codecs/lm49453*
19159
19160 TI PCM3060 ASoC CODEC DRIVER
19161 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19162 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19163 S:      Maintained
19164 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19165 F:      sound/soc/codecs/pcm3060*
19166
19167 TI TAS571X FAMILY ASoC CODEC DRIVER
19168 M:      Kevin Cernekee <cernekee@chromium.org>
19169 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19170 S:      Odd Fixes
19171 F:      sound/soc/codecs/tas571x*
19172
19173 TI TRF7970A NFC DRIVER
19174 M:      Mark Greer <mgreer@animalcreek.com>
19175 L:      linux-wireless@vger.kernel.org
19176 L:      linux-nfc@lists.01.org (subscribers-only)
19177 S:      Supported
19178 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19179 F:      drivers/nfc/trf7970a.c
19180
19181 TI TSC2046 ADC DRIVER
19182 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19183 R:      kernel@pengutronix.de
19184 L:      linux-iio@vger.kernel.org
19185 S:      Maintained
19186 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19187 F:      drivers/iio/adc/ti-tsc2046.c
19188
19189 TI TWL4030 SERIES SOC CODEC DRIVER
19190 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19192 S:      Maintained
19193 F:      sound/soc/codecs/twl4030*
19194
19195 TI VPE/CAL DRIVERS
19196 M:      Benoit Parrot <bparrot@ti.com>
19197 L:      linux-media@vger.kernel.org
19198 S:      Maintained
19199 W:      http://linuxtv.org/
19200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19201 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19202 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19203 F:      drivers/media/platform/ti-vpe/
19204
19205 TI WILINK WIRELESS DRIVERS
19206 L:      linux-wireless@vger.kernel.org
19207 S:      Orphan
19208 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19209 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19211 F:      drivers/net/wireless/ti/
19212 F:      include/linux/wl12xx.h
19213
19214 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19215 M:      John Stultz <john.stultz@linaro.org>
19216 M:      Thomas Gleixner <tglx@linutronix.de>
19217 R:      Stephen Boyd <sboyd@kernel.org>
19218 L:      linux-kernel@vger.kernel.org
19219 S:      Supported
19220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19221 F:      include/linux/clocksource.h
19222 F:      include/linux/time.h
19223 F:      include/linux/timex.h
19224 F:      include/uapi/linux/time.h
19225 F:      include/uapi/linux/timex.h
19226 F:      kernel/time/alarmtimer.c
19227 F:      kernel/time/clocksource.c
19228 F:      kernel/time/ntp.c
19229 F:      kernel/time/time*.c
19230 F:      tools/testing/selftests/timers/
19231
19232 TIPC NETWORK LAYER
19233 M:      Jon Maloy <jmaloy@redhat.com>
19234 M:      Ying Xue <ying.xue@windriver.com>
19235 L:      netdev@vger.kernel.org (core kernel code)
19236 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19237 S:      Maintained
19238 W:      http://tipc.sourceforge.net/
19239 F:      include/uapi/linux/tipc*.h
19240 F:      net/tipc/
19241
19242 TLAN NETWORK DRIVER
19243 M:      Samuel Chessman <chessman@tux.org>
19244 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19245 S:      Maintained
19246 W:      http://sourceforge.net/projects/tlan/
19247 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19248 F:      drivers/net/ethernet/ti/tlan.*
19249
19250 TM6000 VIDEO4LINUX DRIVER
19251 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19252 L:      linux-media@vger.kernel.org
19253 S:      Odd fixes
19254 W:      https://linuxtv.org
19255 T:      git git://linuxtv.org/media_tree.git
19256 F:      Documentation/admin-guide/media/tm6000*
19257 F:      drivers/media/usb/tm6000/
19258
19259 TMIO/SDHI MMC DRIVER
19260 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19261 L:      linux-mmc@vger.kernel.org
19262 S:      Supported
19263 F:      drivers/mmc/host/renesas_sdhi*
19264 F:      drivers/mmc/host/tmio_mmc*
19265 F:      include/linux/mfd/tmio.h
19266
19267 TMP401 HARDWARE MONITOR DRIVER
19268 M:      Guenter Roeck <linux@roeck-us.net>
19269 L:      linux-hwmon@vger.kernel.org
19270 S:      Maintained
19271 F:      Documentation/hwmon/tmp401.rst
19272 F:      drivers/hwmon/tmp401.c
19273
19274 TMP513 HARDWARE MONITOR DRIVER
19275 M:      Eric Tremblay <etremblay@distech-controls.com>
19276 L:      linux-hwmon@vger.kernel.org
19277 S:      Maintained
19278 F:      Documentation/hwmon/tmp513.rst
19279 F:      drivers/hwmon/tmp513.c
19280
19281 TMPFS (SHMEM FILESYSTEM)
19282 M:      Hugh Dickins <hughd@google.com>
19283 L:      linux-mm@kvack.org
19284 S:      Maintained
19285 F:      include/linux/shmem_fs.h
19286 F:      mm/shmem.c
19287
19288 TOMOYO SECURITY MODULE
19289 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19290 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19291 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19292 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19293 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19294 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19295 S:      Maintained
19296 W:      https://tomoyo.osdn.jp/
19297 F:      security/tomoyo/
19298
19299 TOPSTAR LAPTOP EXTRAS DRIVER
19300 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19301 L:      platform-driver-x86@vger.kernel.org
19302 S:      Maintained
19303 F:      drivers/platform/x86/topstar-laptop.c
19304
19305 TORTURE-TEST MODULES
19306 M:      Davidlohr Bueso <dave@stgolabs.net>
19307 M:      "Paul E. McKenney" <paulmck@kernel.org>
19308 M:      Josh Triplett <josh@joshtriplett.org>
19309 L:      linux-kernel@vger.kernel.org
19310 S:      Supported
19311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19312 F:      Documentation/RCU/torture.rst
19313 F:      kernel/locking/locktorture.c
19314 F:      kernel/rcu/rcuscale.c
19315 F:      kernel/rcu/rcutorture.c
19316 F:      kernel/rcu/refscale.c
19317 F:      kernel/torture.c
19318
19319 TOSHIBA ACPI EXTRAS DRIVER
19320 M:      Azael Avalos <coproscefalo@gmail.com>
19321 L:      platform-driver-x86@vger.kernel.org
19322 S:      Maintained
19323 F:      drivers/platform/x86/toshiba_acpi.c
19324
19325 TOSHIBA BLUETOOTH DRIVER
19326 M:      Azael Avalos <coproscefalo@gmail.com>
19327 L:      platform-driver-x86@vger.kernel.org
19328 S:      Maintained
19329 F:      drivers/platform/x86/toshiba_bluetooth.c
19330
19331 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19332 M:      Azael Avalos <coproscefalo@gmail.com>
19333 L:      platform-driver-x86@vger.kernel.org
19334 S:      Maintained
19335 F:      drivers/platform/x86/toshiba_haps.c
19336
19337 TOSHIBA SMM DRIVER
19338 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19339 S:      Maintained
19340 W:      http://www.buzzard.org.uk/toshiba/
19341 F:      drivers/char/toshiba.c
19342 F:      include/linux/toshiba.h
19343 F:      include/uapi/linux/toshiba.h
19344
19345 TOSHIBA TC358743 DRIVER
19346 M:      Mats Randgaard <matrandg@cisco.com>
19347 L:      linux-media@vger.kernel.org
19348 S:      Maintained
19349 F:      drivers/media/i2c/tc358743*
19350 F:      include/media/i2c/tc358743.h
19351
19352 TOSHIBA WMI HOTKEYS DRIVER
19353 M:      Azael Avalos <coproscefalo@gmail.com>
19354 L:      platform-driver-x86@vger.kernel.org
19355 S:      Maintained
19356 F:      drivers/platform/x86/toshiba-wmi.c
19357
19358 TPM DEVICE DRIVER
19359 M:      Peter Huewe <peterhuewe@gmx.de>
19360 M:      Jarkko Sakkinen <jarkko@kernel.org>
19361 R:      Jason Gunthorpe <jgg@ziepe.ca>
19362 L:      linux-integrity@vger.kernel.org
19363 S:      Maintained
19364 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19365 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19367 F:      drivers/char/tpm/
19368
19369 TRACING
19370 M:      Steven Rostedt <rostedt@goodmis.org>
19371 M:      Ingo Molnar <mingo@redhat.com>
19372 S:      Maintained
19373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19374 F:      Documentation/trace/ftrace.rst
19375 F:      arch/*/*/*/ftrace.h
19376 F:      arch/*/kernel/ftrace.c
19377 F:      fs/tracefs/
19378 F:      include/*/ftrace.h
19379 F:      include/linux/trace*.h
19380 F:      include/trace/
19381 F:      kernel/trace/
19382 F:      tools/testing/selftests/ftrace/
19383
19384 TRACING MMIO ACCESSES (MMIOTRACE)
19385 M:      Steven Rostedt <rostedt@goodmis.org>
19386 M:      Ingo Molnar <mingo@kernel.org>
19387 R:      Karol Herbst <karolherbst@gmail.com>
19388 R:      Pekka Paalanen <ppaalanen@gmail.com>
19389 L:      linux-kernel@vger.kernel.org
19390 L:      nouveau@lists.freedesktop.org
19391 S:      Maintained
19392 F:      arch/x86/mm/kmmio.c
19393 F:      arch/x86/mm/mmio-mod.c
19394 F:      arch/x86/mm/testmmiotrace.c
19395 F:      include/linux/mmiotrace.h
19396 F:      kernel/trace/trace_mmiotrace.c
19397
19398 TRACING OS NOISE / LATENCY TRACERS
19399 M:      Steven Rostedt <rostedt@goodmis.org>
19400 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19401 S:      Maintained
19402 F:      kernel/trace/trace_osnoise.c
19403 F:      include/trace/events/osnoise.h
19404 F:      kernel/trace/trace_hwlat.c
19405 F:      kernel/trace/trace_irqsoff.c
19406 F:      kernel/trace/trace_sched_wakeup.c
19407 F:      Documentation/trace/osnoise-tracer.rst
19408 F:      Documentation/trace/timerlat-tracer.rst
19409 F:      Documentation/trace/hwlat_detector.rst
19410 F:      arch/*/kernel/trace.c
19411
19412 TRADITIONAL CHINESE DOCUMENTATION
19413 M:      Hu Haowen <src.res@email.cn>
19414 L:      linux-doc-tw-discuss@lists.sourceforge.net
19415 S:      Maintained
19416 W:      https://github.com/srcres258/linux-doc
19417 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19418 F:      Documentation/translations/zh_TW/
19419
19420 TRIVIAL PATCHES
19421 M:      Jiri Kosina <trivial@kernel.org>
19422 S:      Maintained
19423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19424 K:      ^Subject:.*(?i)trivial
19425
19426 TTY LAYER
19427 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19428 M:      Jiri Slaby <jirislaby@kernel.org>
19429 S:      Supported
19430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19431 F:      Documentation/driver-api/serial/
19432 F:      drivers/tty/
19433 F:      drivers/tty/serial/serial_core.c
19434 F:      include/linux/selection.h
19435 F:      include/linux/serial.h
19436 F:      include/linux/serial_core.h
19437 F:      include/linux/sysrq.h
19438 F:      include/linux/tty*.h
19439 F:      include/linux/vt.h
19440 F:      include/linux/vt_*.h
19441 F:      include/uapi/linux/serial.h
19442 F:      include/uapi/linux/serial_core.h
19443 F:      include/uapi/linux/tty.h
19444
19445 TUA9001 MEDIA DRIVER
19446 M:      Antti Palosaari <crope@iki.fi>
19447 L:      linux-media@vger.kernel.org
19448 S:      Maintained
19449 W:      https://linuxtv.org
19450 W:      http://palosaari.fi/linux/
19451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19452 T:      git git://linuxtv.org/anttip/media_tree.git
19453 F:      drivers/media/tuners/tua9001*
19454
19455 TULIP NETWORK DRIVERS
19456 L:      netdev@vger.kernel.org
19457 L:      linux-parisc@vger.kernel.org
19458 S:      Orphan
19459 F:      drivers/net/ethernet/dec/tulip/
19460
19461 TUN/TAP driver
19462 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19463 S:      Maintained
19464 W:      http://vtun.sourceforge.net/tun
19465 F:      Documentation/networking/tuntap.rst
19466 F:      arch/um/os-Linux/drivers/
19467
19468 TURBOCHANNEL SUBSYSTEM
19469 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19470 M:      Ralf Baechle <ralf@linux-mips.org>
19471 L:      linux-mips@vger.kernel.org
19472 S:      Maintained
19473 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19474 F:      drivers/tc/
19475 F:      include/linux/tc.h
19476
19477 TURBOSTAT UTILITY
19478 M:      "Len Brown" <lenb@kernel.org>
19479 L:      linux-pm@vger.kernel.org
19480 S:      Supported
19481 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19482 B:      https://bugzilla.kernel.org
19483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19484 F:      tools/power/x86/turbostat/
19485
19486 TW5864 VIDEO4LINUX DRIVER
19487 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19488 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19489 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19490 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19491 L:      linux-media@vger.kernel.org
19492 S:      Supported
19493 F:      drivers/media/pci/tw5864/
19494
19495 TW68 VIDEO4LINUX DRIVER
19496 M:      Hans Verkuil <hverkuil@xs4all.nl>
19497 L:      linux-media@vger.kernel.org
19498 S:      Odd Fixes
19499 W:      https://linuxtv.org
19500 T:      git git://linuxtv.org/media_tree.git
19501 F:      drivers/media/pci/tw68/
19502
19503 TW686X VIDEO4LINUX DRIVER
19504 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19505 L:      linux-media@vger.kernel.org
19506 S:      Maintained
19507 W:      http://linuxtv.org
19508 T:      git git://linuxtv.org/media_tree.git
19509 F:      drivers/media/pci/tw686x/
19510
19511 UACCE ACCELERATOR FRAMEWORK
19512 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19513 M:      Zhou Wang <wangzhou1@hisilicon.com>
19514 L:      linux-accelerators@lists.ozlabs.org
19515 L:      linux-kernel@vger.kernel.org
19516 S:      Maintained
19517 F:      Documentation/ABI/testing/sysfs-driver-uacce
19518 F:      Documentation/misc-devices/uacce.rst
19519 F:      drivers/misc/uacce/
19520 F:      include/linux/uacce.h
19521 F:      include/uapi/misc/uacce/
19522
19523 UBI FILE SYSTEM (UBIFS)
19524 M:      Richard Weinberger <richard@nod.at>
19525 L:      linux-mtd@lists.infradead.org
19526 S:      Supported
19527 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19530 F:      Documentation/filesystems/ubifs-authentication.rst
19531 F:      Documentation/filesystems/ubifs.rst
19532 F:      fs/ubifs/
19533
19534 UCLINUX (M68KNOMMU AND COLDFIRE)
19535 M:      Greg Ungerer <gerg@linux-m68k.org>
19536 L:      linux-m68k@lists.linux-m68k.org
19537 L:      uclinux-dev@uclinux.org  (subscribers-only)
19538 S:      Maintained
19539 W:      http://www.linux-m68k.org/
19540 W:      http://www.uclinux.org/
19541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19542 F:      arch/m68k/*/*_no.*
19543 F:      arch/m68k/68*/
19544 F:      arch/m68k/coldfire/
19545 F:      arch/m68k/include/asm/*_no.*
19546
19547 UDF FILESYSTEM
19548 M:      Jan Kara <jack@suse.com>
19549 S:      Maintained
19550 F:      Documentation/filesystems/udf.rst
19551 F:      fs/udf/
19552
19553 UDRAW TABLET
19554 M:      Bastien Nocera <hadess@hadess.net>
19555 L:      linux-input@vger.kernel.org
19556 S:      Maintained
19557 F:      drivers/hid/hid-udraw-ps3.c
19558
19559 UFS FILESYSTEM
19560 M:      Evgeniy Dushistov <dushistov@mail.ru>
19561 S:      Maintained
19562 F:      Documentation/admin-guide/ufs.rst
19563 F:      fs/ufs/
19564
19565 UHID USERSPACE HID IO DRIVER
19566 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19567 L:      linux-input@vger.kernel.org
19568 S:      Maintained
19569 F:      drivers/hid/uhid.c
19570 F:      include/uapi/linux/uhid.h
19571
19572 ULPI BUS
19573 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19574 L:      linux-usb@vger.kernel.org
19575 S:      Maintained
19576 F:      drivers/usb/common/ulpi.c
19577 F:      include/linux/ulpi/
19578
19579 UNICODE SUBSYSTEM
19580 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19581 L:      linux-fsdevel@vger.kernel.org
19582 S:      Supported
19583 F:      fs/unicode/
19584
19585 UNIFDEF
19586 M:      Tony Finch <dot@dotat.at>
19587 S:      Maintained
19588 W:      http://dotat.at/prog/unifdef
19589 F:      scripts/unifdef.c
19590
19591 UNIFORM CDROM DRIVER
19592 M:      Phillip Potter <phil@philpotter.co.uk>
19593 S:      Maintained
19594 F:      Documentation/cdrom/
19595 F:      drivers/cdrom/cdrom.c
19596 F:      include/linux/cdrom.h
19597 F:      include/uapi/linux/cdrom.h
19598
19599 UNISYS S-PAR DRIVERS
19600 M:      David Kershner <david.kershner@unisys.com>
19601 L:      sparmaintainer@unisys.com (Unisys internal)
19602 S:      Supported
19603 F:      drivers/staging/unisys/
19604 F:      drivers/visorbus/
19605 F:      include/linux/visorbus.h
19606
19607 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19608 R:      Alim Akhtar <alim.akhtar@samsung.com>
19609 R:      Avri Altman <avri.altman@wdc.com>
19610 L:      linux-scsi@vger.kernel.org
19611 S:      Supported
19612 F:      Documentation/scsi/ufs.rst
19613 F:      drivers/scsi/ufs/
19614
19615 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19616 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19617 L:      linux-scsi@vger.kernel.org
19618 S:      Supported
19619 F:      drivers/scsi/ufs/*dwc*
19620
19621 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19622 M:      Stanley Chu <stanley.chu@mediatek.com>
19623 L:      linux-scsi@vger.kernel.org
19624 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19625 S:      Maintained
19626 F:      drivers/scsi/ufs/ufs-mediatek*
19627
19628 UNSORTED BLOCK IMAGES (UBI)
19629 M:      Richard Weinberger <richard@nod.at>
19630 L:      linux-mtd@lists.infradead.org
19631 S:      Supported
19632 W:      http://www.linux-mtd.infradead.org/
19633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19635 F:      drivers/mtd/ubi/
19636 F:      include/linux/mtd/ubi.h
19637 F:      include/uapi/mtd/ubi-user.h
19638
19639 USB "USBNET" DRIVER FRAMEWORK
19640 M:      Oliver Neukum <oneukum@suse.com>
19641 L:      netdev@vger.kernel.org
19642 S:      Maintained
19643 W:      http://www.linux-usb.org/usbnet
19644 F:      drivers/net/usb/usbnet.c
19645 F:      include/linux/usb/usbnet.h
19646
19647 USB ACM DRIVER
19648 M:      Oliver Neukum <oneukum@suse.com>
19649 L:      linux-usb@vger.kernel.org
19650 S:      Maintained
19651 F:      Documentation/usb/acm.rst
19652 F:      drivers/usb/class/cdc-acm.*
19653
19654 USB APPLE MFI FASTCHARGE DRIVER
19655 M:      Bastien Nocera <hadess@hadess.net>
19656 L:      linux-usb@vger.kernel.org
19657 S:      Maintained
19658 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19659
19660 USB AR5523 WIRELESS DRIVER
19661 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19662 L:      linux-wireless@vger.kernel.org
19663 S:      Maintained
19664 F:      drivers/net/wireless/ath/ar5523/
19665
19666 USB ATTACHED SCSI
19667 M:      Oliver Neukum <oneukum@suse.com>
19668 L:      linux-usb@vger.kernel.org
19669 L:      linux-scsi@vger.kernel.org
19670 S:      Maintained
19671 F:      drivers/usb/storage/uas.c
19672
19673 USB CDC ETHERNET DRIVER
19674 M:      Oliver Neukum <oliver@neukum.org>
19675 L:      linux-usb@vger.kernel.org
19676 S:      Maintained
19677 F:      drivers/net/usb/cdc_*.c
19678 F:      include/uapi/linux/usb/cdc.h
19679
19680 USB CHAOSKEY DRIVER
19681 M:      Keith Packard <keithp@keithp.com>
19682 L:      linux-usb@vger.kernel.org
19683 S:      Maintained
19684 F:      drivers/usb/misc/chaoskey.c
19685
19686 USB CYPRESS C67X00 DRIVER
19687 L:      linux-usb@vger.kernel.org
19688 S:      Orphan
19689 F:      drivers/usb/c67x00/
19690
19691 USB DAVICOM DM9601 DRIVER
19692 M:      Peter Korsgaard <peter@korsgaard.com>
19693 L:      netdev@vger.kernel.org
19694 S:      Maintained
19695 W:      http://www.linux-usb.org/usbnet
19696 F:      drivers/net/usb/dm9601.c
19697
19698 USB EHCI DRIVER
19699 M:      Alan Stern <stern@rowland.harvard.edu>
19700 L:      linux-usb@vger.kernel.org
19701 S:      Maintained
19702 F:      Documentation/usb/ehci.rst
19703 F:      drivers/usb/host/ehci*
19704
19705 USB GADGET/PERIPHERAL SUBSYSTEM
19706 M:      Felipe Balbi <balbi@kernel.org>
19707 L:      linux-usb@vger.kernel.org
19708 S:      Maintained
19709 W:      http://www.linux-usb.org/gadget
19710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19711 F:      drivers/usb/gadget/
19712 F:      include/linux/usb/gadget*
19713
19714 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19715 M:      Jiri Kosina <jikos@kernel.org>
19716 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19717 L:      linux-usb@vger.kernel.org
19718 S:      Maintained
19719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19720 F:      Documentation/hid/hiddev.rst
19721 F:      drivers/hid/usbhid/
19722
19723 USB INTEL XHCI ROLE MUX DRIVER
19724 M:      Hans de Goede <hdegoede@redhat.com>
19725 L:      linux-usb@vger.kernel.org
19726 S:      Maintained
19727 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19728
19729 USB IP DRIVER FOR HISILICON KIRIN 960
19730 M:      Yu Chen <chenyu56@huawei.com>
19731 M:      Binghui Wang <wangbinghui@hisilicon.com>
19732 L:      linux-usb@vger.kernel.org
19733 S:      Maintained
19734 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19735 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19736
19737 USB IP DRIVER FOR HISILICON KIRIN 970
19738 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19739 L:      linux-usb@vger.kernel.org
19740 S:      Maintained
19741 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19742 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19743
19744 USB ISP116X DRIVER
19745 M:      Olav Kongas <ok@artecdesign.ee>
19746 L:      linux-usb@vger.kernel.org
19747 S:      Maintained
19748 F:      drivers/usb/host/isp116x*
19749 F:      include/linux/usb/isp116x.h
19750
19751 USB ISP1760 DRIVER
19752 M:      Rui Miguel Silva <rui.silva@linaro.org>
19753 L:      linux-usb@vger.kernel.org
19754 S:      Maintained
19755 F:      drivers/usb/isp1760/*
19756 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19757
19758 USB LAN78XX ETHERNET DRIVER
19759 M:      Woojung Huh <woojung.huh@microchip.com>
19760 M:      UNGLinuxDriver@microchip.com
19761 L:      netdev@vger.kernel.org
19762 S:      Maintained
19763 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19764 F:      drivers/net/usb/lan78xx.*
19765 F:      include/dt-bindings/net/microchip-lan78xx.h
19766
19767 USB MASS STORAGE DRIVER
19768 M:      Alan Stern <stern@rowland.harvard.edu>
19769 L:      linux-usb@vger.kernel.org
19770 L:      usb-storage@lists.one-eyed-alien.net
19771 S:      Maintained
19772 F:      drivers/usb/storage/
19773
19774 USB MIDI DRIVER
19775 M:      Clemens Ladisch <clemens@ladisch.de>
19776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19777 S:      Maintained
19778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19779 F:      sound/usb/midi.*
19780
19781 USB NETWORKING DRIVERS
19782 L:      linux-usb@vger.kernel.org
19783 S:      Odd Fixes
19784 F:      drivers/net/usb/
19785
19786 USB OHCI DRIVER
19787 M:      Alan Stern <stern@rowland.harvard.edu>
19788 L:      linux-usb@vger.kernel.org
19789 S:      Maintained
19790 F:      Documentation/usb/ohci.rst
19791 F:      drivers/usb/host/ohci*
19792
19793 USB OTG FSM (Finite State Machine)
19794 M:      Peter Chen <peter.chen@kernel.org>
19795 L:      linux-usb@vger.kernel.org
19796 S:      Maintained
19797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19798 F:      drivers/usb/common/usb-otg-fsm.c
19799
19800 USB OVER IP DRIVER
19801 M:      Valentina Manea <valentina.manea.m@gmail.com>
19802 M:      Shuah Khan <shuah@kernel.org>
19803 M:      Shuah Khan <skhan@linuxfoundation.org>
19804 L:      linux-usb@vger.kernel.org
19805 S:      Maintained
19806 F:      Documentation/usb/usbip_protocol.rst
19807 F:      drivers/usb/usbip/
19808 F:      tools/testing/selftests/drivers/usb/usbip/
19809 F:      tools/usb/usbip/
19810
19811 USB PEGASUS DRIVER
19812 M:      Petko Manolov <petkan@nucleusys.com>
19813 L:      linux-usb@vger.kernel.org
19814 L:      netdev@vger.kernel.org
19815 S:      Maintained
19816 W:      https://github.com/petkan/pegasus
19817 T:      git git://github.com/petkan/pegasus.git
19818 F:      drivers/net/usb/pegasus.*
19819
19820 USB PHY LAYER
19821 M:      Felipe Balbi <balbi@kernel.org>
19822 L:      linux-usb@vger.kernel.org
19823 S:      Maintained
19824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19825 F:      drivers/usb/phy/
19826
19827 USB PRINTER DRIVER (usblp)
19828 M:      Pete Zaitcev <zaitcev@redhat.com>
19829 L:      linux-usb@vger.kernel.org
19830 S:      Supported
19831 F:      drivers/usb/class/usblp.c
19832
19833 USB RAW GADGET DRIVER
19834 R:      Andrey Konovalov <andreyknvl@gmail.com>
19835 L:      linux-usb@vger.kernel.org
19836 S:      Maintained
19837 F:      Documentation/usb/raw-gadget.rst
19838 F:      drivers/usb/gadget/legacy/raw_gadget.c
19839 F:      include/uapi/linux/usb/raw_gadget.h
19840
19841 USB QMI WWAN NETWORK DRIVER
19842 M:      Bjørn Mork <bjorn@mork.no>
19843 L:      netdev@vger.kernel.org
19844 S:      Maintained
19845 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19846 F:      drivers/net/usb/qmi_wwan.c
19847
19848 USB RTL8150 DRIVER
19849 M:      Petko Manolov <petkan@nucleusys.com>
19850 L:      linux-usb@vger.kernel.org
19851 L:      netdev@vger.kernel.org
19852 S:      Maintained
19853 W:      https://github.com/petkan/rtl8150
19854 T:      git git://github.com/petkan/rtl8150.git
19855 F:      drivers/net/usb/rtl8150.c
19856
19857 USB SERIAL SUBSYSTEM
19858 M:      Johan Hovold <johan@kernel.org>
19859 L:      linux-usb@vger.kernel.org
19860 S:      Maintained
19861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19862 F:      Documentation/usb/usb-serial.rst
19863 F:      drivers/usb/serial/
19864 F:      include/linux/usb/serial.h
19865
19866 USB SMSC75XX ETHERNET DRIVER
19867 M:      Steve Glendinning <steve.glendinning@shawell.net>
19868 L:      netdev@vger.kernel.org
19869 S:      Maintained
19870 F:      drivers/net/usb/smsc75xx.*
19871
19872 USB SMSC95XX ETHERNET DRIVER
19873 M:      Steve Glendinning <steve.glendinning@shawell.net>
19874 M:      UNGLinuxDriver@microchip.com
19875 L:      netdev@vger.kernel.org
19876 S:      Maintained
19877 F:      drivers/net/usb/smsc95xx.*
19878
19879 USB SUBSYSTEM
19880 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19881 L:      linux-usb@vger.kernel.org
19882 S:      Supported
19883 W:      http://www.linux-usb.org
19884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19885 F:      Documentation/devicetree/bindings/usb/
19886 F:      Documentation/usb/
19887 F:      drivers/usb/
19888 F:      include/linux/usb.h
19889 F:      include/linux/usb/
19890
19891 USB TYPEC BUS FOR ALTERNATE MODES
19892 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19893 L:      linux-usb@vger.kernel.org
19894 S:      Maintained
19895 F:      Documentation/ABI/testing/sysfs-bus-typec
19896 F:      Documentation/driver-api/usb/typec_bus.rst
19897 F:      drivers/usb/typec/altmodes/
19898 F:      include/linux/usb/typec_altmode.h
19899
19900 USB TYPEC CLASS
19901 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19902 L:      linux-usb@vger.kernel.org
19903 S:      Maintained
19904 F:      Documentation/ABI/testing/sysfs-class-typec
19905 F:      Documentation/driver-api/usb/typec.rst
19906 F:      drivers/usb/typec/
19907 F:      include/linux/usb/typec.h
19908
19909 USB TYPEC INTEL PMC MUX DRIVER
19910 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19911 L:      linux-usb@vger.kernel.org
19912 S:      Maintained
19913 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19914 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19915
19916 USB TYPEC PI3USB30532 MUX DRIVER
19917 M:      Hans de Goede <hdegoede@redhat.com>
19918 L:      linux-usb@vger.kernel.org
19919 S:      Maintained
19920 F:      drivers/usb/typec/mux/pi3usb30532.c
19921
19922 USB TYPEC PORT CONTROLLER DRIVERS
19923 M:      Guenter Roeck <linux@roeck-us.net>
19924 L:      linux-usb@vger.kernel.org
19925 S:      Maintained
19926 F:      drivers/usb/typec/tcpm/
19927
19928 USB UHCI DRIVER
19929 M:      Alan Stern <stern@rowland.harvard.edu>
19930 L:      linux-usb@vger.kernel.org
19931 S:      Maintained
19932 F:      drivers/usb/host/uhci*
19933
19934 USB VIDEO CLASS
19935 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19936 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19937 L:      linux-media@vger.kernel.org
19938 S:      Maintained
19939 W:      http://www.ideasonboard.org/uvc/
19940 T:      git git://linuxtv.org/media_tree.git
19941 F:      drivers/media/usb/uvc/
19942 F:      include/uapi/linux/uvcvideo.h
19943
19944 USB WEBCAM GADGET
19945 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19946 L:      linux-usb@vger.kernel.org
19947 S:      Maintained
19948 F:      drivers/usb/gadget/function/*uvc*
19949 F:      drivers/usb/gadget/legacy/webcam.c
19950 F:      include/uapi/linux/usb/g_uvc.h
19951
19952 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19953 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19954 L:      linux-wireless@vger.kernel.org
19955 S:      Maintained
19956 F:      drivers/net/wireless/rndis_wlan.c
19957
19958 USB XHCI DRIVER
19959 M:      Mathias Nyman <mathias.nyman@intel.com>
19960 L:      linux-usb@vger.kernel.org
19961 S:      Supported
19962 F:      drivers/usb/host/pci-quirks*
19963 F:      drivers/usb/host/xhci*
19964
19965 USB ZD1201 DRIVER
19966 L:      linux-wireless@vger.kernel.org
19967 S:      Orphan
19968 W:      http://linux-lc100020.sourceforge.net
19969 F:      drivers/net/wireless/zydas/zd1201.*
19970
19971 USB ZR364XX DRIVER
19972 M:      Antoine Jacquet <royale@zerezo.com>
19973 L:      linux-usb@vger.kernel.org
19974 L:      linux-media@vger.kernel.org
19975 S:      Maintained
19976 W:      http://royale.zerezo.com/zr364xx/
19977 T:      git git://linuxtv.org/media_tree.git
19978 F:      Documentation/admin-guide/media/zr364xx*
19979 F:      drivers/media/usb/zr364xx/
19980
19981 USER-MODE LINUX (UML)
19982 M:      Jeff Dike <jdike@addtoit.com>
19983 M:      Richard Weinberger <richard@nod.at>
19984 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19985 L:      linux-um@lists.infradead.org
19986 S:      Maintained
19987 W:      http://user-mode-linux.sourceforge.net
19988 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19990 F:      Documentation/virt/uml/
19991 F:      arch/um/
19992 F:      arch/x86/um/
19993 F:      fs/hostfs/
19994
19995 USERSPACE COPYIN/COPYOUT (UIOVEC)
19996 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19997 S:      Maintained
19998 F:      include/linux/uio.h
19999 F:      lib/iov_iter.c
20000
20001 USERSPACE DMA BUFFER DRIVER
20002 M:      Gerd Hoffmann <kraxel@redhat.com>
20003 L:      dri-devel@lists.freedesktop.org
20004 S:      Maintained
20005 T:      git git://anongit.freedesktop.org/drm/drm-misc
20006 F:      drivers/dma-buf/udmabuf.c
20007 F:      include/uapi/linux/udmabuf.h
20008
20009 USERSPACE I/O (UIO)
20010 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20011 S:      Maintained
20012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20013 F:      Documentation/driver-api/uio-howto.rst
20014 F:      drivers/uio/
20015 F:      include/linux/uio_driver.h
20016
20017 UTIL-LINUX PACKAGE
20018 M:      Karel Zak <kzak@redhat.com>
20019 L:      util-linux@vger.kernel.org
20020 S:      Maintained
20021 W:      http://en.wikipedia.org/wiki/Util-linux
20022 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20023
20024 UUID HELPERS
20025 M:      Christoph Hellwig <hch@lst.de>
20026 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20027 L:      linux-kernel@vger.kernel.org
20028 S:      Maintained
20029 T:      git git://git.infradead.org/users/hch/uuid.git
20030 F:      include/linux/uuid.h
20031 F:      include/uapi/linux/uuid.h
20032 F:      lib/test_uuid.c
20033 F:      lib/uuid.c
20034
20035 UV SYSFS DRIVER
20036 M:      Justin Ernst <justin.ernst@hpe.com>
20037 L:      platform-driver-x86@vger.kernel.org
20038 S:      Maintained
20039 F:      drivers/platform/x86/uv_sysfs.c
20040
20041 UVESAFB DRIVER
20042 M:      Michal Januszewski <spock@gentoo.org>
20043 L:      linux-fbdev@vger.kernel.org
20044 S:      Maintained
20045 W:      https://github.com/mjanusz/v86d
20046 F:      Documentation/fb/uvesafb.rst
20047 F:      drivers/video/fbdev/uvesafb.*
20048
20049 Ux500 CLOCK DRIVERS
20050 M:      Ulf Hansson <ulf.hansson@linaro.org>
20051 L:      linux-clk@vger.kernel.org
20052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20053 S:      Maintained
20054 F:      drivers/clk/ux500/
20055
20056 VF610 NAND DRIVER
20057 M:      Stefan Agner <stefan@agner.ch>
20058 L:      linux-mtd@lists.infradead.org
20059 S:      Supported
20060 F:      drivers/mtd/nand/raw/vf610_nfc.c
20061
20062 VFAT/FAT/MSDOS FILESYSTEM
20063 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20064 S:      Maintained
20065 F:      Documentation/filesystems/vfat.rst
20066 F:      fs/fat/
20067
20068 VFIO DRIVER
20069 M:      Alex Williamson <alex.williamson@redhat.com>
20070 R:      Cornelia Huck <cohuck@redhat.com>
20071 L:      kvm@vger.kernel.org
20072 S:      Maintained
20073 T:      git git://github.com/awilliam/linux-vfio.git
20074 F:      Documentation/driver-api/vfio.rst
20075 F:      drivers/vfio/
20076 F:      include/linux/vfio.h
20077 F:      include/linux/vfio_pci_core.h
20078 F:      include/uapi/linux/vfio.h
20079
20080 VFIO FSL-MC DRIVER
20081 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20082 L:      kvm@vger.kernel.org
20083 S:      Maintained
20084 F:      drivers/vfio/fsl-mc/
20085
20086 VFIO MEDIATED DEVICE DRIVERS
20087 M:      Kirti Wankhede <kwankhede@nvidia.com>
20088 L:      kvm@vger.kernel.org
20089 S:      Maintained
20090 F:      Documentation/driver-api/vfio-mediated-device.rst
20091 F:      drivers/vfio/mdev/
20092 F:      include/linux/mdev.h
20093 F:      samples/vfio-mdev/
20094
20095 VFIO PLATFORM DRIVER
20096 M:      Eric Auger <eric.auger@redhat.com>
20097 L:      kvm@vger.kernel.org
20098 S:      Maintained
20099 F:      drivers/vfio/platform/
20100
20101 VGA_SWITCHEROO
20102 R:      Lukas Wunner <lukas@wunner.de>
20103 S:      Maintained
20104 T:      git git://anongit.freedesktop.org/drm/drm-misc
20105 F:      Documentation/gpu/vga-switcheroo.rst
20106 F:      drivers/gpu/vga/vga_switcheroo.c
20107 F:      include/linux/vga_switcheroo.h
20108
20109 VIA RHINE NETWORK DRIVER
20110 S:      Maintained
20111 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20112 F:      drivers/net/ethernet/via/via-rhine.c
20113
20114 VIA SD/MMC CARD CONTROLLER DRIVER
20115 M:      Bruce Chang <brucechang@via.com.tw>
20116 M:      Harald Welte <HaraldWelte@viatech.com>
20117 S:      Maintained
20118 F:      drivers/mmc/host/via-sdmmc.c
20119
20120 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20121 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20122 L:      linux-fbdev@vger.kernel.org
20123 S:      Maintained
20124 F:      drivers/video/fbdev/via/
20125 F:      include/linux/via-core.h
20126 F:      include/linux/via-gpio.h
20127 F:      include/linux/via_i2c.h
20128
20129 VIA VELOCITY NETWORK DRIVER
20130 M:      Francois Romieu <romieu@fr.zoreil.com>
20131 L:      netdev@vger.kernel.org
20132 S:      Maintained
20133 F:      drivers/net/ethernet/via/via-velocity.*
20134
20135 VICODEC VIRTUAL CODEC DRIVER
20136 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20137 L:      linux-media@vger.kernel.org
20138 S:      Maintained
20139 W:      https://linuxtv.org
20140 T:      git git://linuxtv.org/media_tree.git
20141 F:      drivers/media/test-drivers/vicodec/*
20142
20143 VIDEO I2C POLLING DRIVER
20144 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20145 L:      linux-media@vger.kernel.org
20146 S:      Maintained
20147 F:      drivers/media/i2c/video-i2c.c
20148
20149 VIDEO MULTIPLEXER DRIVER
20150 M:      Philipp Zabel <p.zabel@pengutronix.de>
20151 L:      linux-media@vger.kernel.org
20152 S:      Maintained
20153 F:      drivers/media/platform/video-mux.c
20154
20155 VIDEOBUF2 FRAMEWORK
20156 M:      Tomasz Figa <tfiga@chromium.org>
20157 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20158 L:      linux-media@vger.kernel.org
20159 S:      Maintained
20160 F:      drivers/media/common/videobuf2/*
20161 F:      include/media/videobuf2-*
20162
20163 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20164 M:      Helen Koike <helen.koike@collabora.com>
20165 R:      Shuah Khan <skhan@linuxfoundation.org>
20166 L:      linux-media@vger.kernel.org
20167 S:      Maintained
20168 W:      https://linuxtv.org
20169 T:      git git://linuxtv.org/media_tree.git
20170 F:      drivers/media/test-drivers/vimc/*
20171
20172 VIRT LIB
20173 M:      Alex Williamson <alex.williamson@redhat.com>
20174 M:      Paolo Bonzini <pbonzini@redhat.com>
20175 L:      kvm@vger.kernel.org
20176 S:      Supported
20177 F:      virt/lib/
20178
20179 VIRTIO AND VHOST VSOCK DRIVER
20180 M:      Stefan Hajnoczi <stefanha@redhat.com>
20181 M:      Stefano Garzarella <sgarzare@redhat.com>
20182 L:      kvm@vger.kernel.org
20183 L:      virtualization@lists.linux-foundation.org
20184 L:      netdev@vger.kernel.org
20185 S:      Maintained
20186 F:      drivers/vhost/vsock.c
20187 F:      include/linux/virtio_vsock.h
20188 F:      include/uapi/linux/virtio_vsock.h
20189 F:      net/vmw_vsock/virtio_transport.c
20190 F:      net/vmw_vsock/virtio_transport_common.c
20191
20192 VIRTIO BLOCK AND SCSI DRIVERS
20193 M:      "Michael S. Tsirkin" <mst@redhat.com>
20194 M:      Jason Wang <jasowang@redhat.com>
20195 R:      Paolo Bonzini <pbonzini@redhat.com>
20196 R:      Stefan Hajnoczi <stefanha@redhat.com>
20197 L:      virtualization@lists.linux-foundation.org
20198 S:      Maintained
20199 F:      drivers/block/virtio_blk.c
20200 F:      drivers/scsi/virtio_scsi.c
20201 F:      drivers/vhost/scsi.c
20202 F:      include/uapi/linux/virtio_blk.h
20203 F:      include/uapi/linux/virtio_scsi.h
20204
20205 VIRTIO CONSOLE DRIVER
20206 M:      Amit Shah <amit@kernel.org>
20207 L:      virtualization@lists.linux-foundation.org
20208 S:      Maintained
20209 F:      drivers/char/virtio_console.c
20210 F:      include/linux/virtio_console.h
20211 F:      include/uapi/linux/virtio_console.h
20212
20213 VIRTIO CORE AND NET DRIVERS
20214 M:      "Michael S. Tsirkin" <mst@redhat.com>
20215 M:      Jason Wang <jasowang@redhat.com>
20216 L:      virtualization@lists.linux-foundation.org
20217 S:      Maintained
20218 F:      Documentation/devicetree/bindings/virtio/
20219 F:      drivers/block/virtio_blk.c
20220 F:      drivers/crypto/virtio/
20221 F:      drivers/net/virtio_net.c
20222 F:      drivers/vdpa/
20223 F:      drivers/virtio/
20224 F:      include/linux/vdpa.h
20225 F:      include/linux/virtio*.h
20226 F:      include/uapi/linux/virtio_*.h
20227 F:      tools/virtio/
20228
20229 VIRTIO BALLOON
20230 M:      "Michael S. Tsirkin" <mst@redhat.com>
20231 M:      David Hildenbrand <david@redhat.com>
20232 L:      virtualization@lists.linux-foundation.org
20233 S:      Maintained
20234 F:      drivers/virtio/virtio_balloon.c
20235 F:      include/uapi/linux/virtio_balloon.h
20236 F:      include/linux/balloon_compaction.h
20237 F:      mm/balloon_compaction.c
20238
20239 VIRTIO CRYPTO DRIVER
20240 M:      Gonglei <arei.gonglei@huawei.com>
20241 L:      virtualization@lists.linux-foundation.org
20242 L:      linux-crypto@vger.kernel.org
20243 S:      Maintained
20244 F:      drivers/crypto/virtio/
20245 F:      include/uapi/linux/virtio_crypto.h
20246
20247 VIRTIO DRIVERS FOR S390
20248 M:      Cornelia Huck <cohuck@redhat.com>
20249 M:      Halil Pasic <pasic@linux.ibm.com>
20250 L:      linux-s390@vger.kernel.org
20251 L:      virtualization@lists.linux-foundation.org
20252 L:      kvm@vger.kernel.org
20253 S:      Supported
20254 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20255 F:      drivers/s390/virtio/
20256
20257 VIRTIO FILE SYSTEM
20258 M:      Vivek Goyal <vgoyal@redhat.com>
20259 M:      Stefan Hajnoczi <stefanha@redhat.com>
20260 M:      Miklos Szeredi <miklos@szeredi.hu>
20261 L:      virtualization@lists.linux-foundation.org
20262 L:      linux-fsdevel@vger.kernel.org
20263 S:      Supported
20264 W:      https://virtio-fs.gitlab.io/
20265 F:      Documentation/filesystems/virtiofs.rst
20266 F:      fs/fuse/virtio_fs.c
20267 F:      include/uapi/linux/virtio_fs.h
20268
20269 VIRTIO GPIO DRIVER
20270 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20271 M:      Viresh Kumar <vireshk@kernel.org>
20272 L:      linux-gpio@vger.kernel.org
20273 L:      virtualization@lists.linux-foundation.org
20274 S:      Maintained
20275 F:      drivers/gpio/gpio-virtio.c
20276 F:      include/uapi/linux/virtio_gpio.h
20277
20278 VIRTIO GPU DRIVER
20279 M:      David Airlie <airlied@linux.ie>
20280 M:      Gerd Hoffmann <kraxel@redhat.com>
20281 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20282 R:      Chia-I Wu <olvaffe@gmail.com>
20283 L:      dri-devel@lists.freedesktop.org
20284 L:      virtualization@lists.linux-foundation.org
20285 S:      Maintained
20286 T:      git git://anongit.freedesktop.org/drm/drm-misc
20287 F:      drivers/gpu/drm/virtio/
20288 F:      include/uapi/linux/virtio_gpu.h
20289
20290 VIRTIO HOST (VHOST)
20291 M:      "Michael S. Tsirkin" <mst@redhat.com>
20292 M:      Jason Wang <jasowang@redhat.com>
20293 L:      kvm@vger.kernel.org
20294 L:      virtualization@lists.linux-foundation.org
20295 L:      netdev@vger.kernel.org
20296 S:      Maintained
20297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20298 F:      drivers/vhost/
20299 F:      include/linux/vhost_iotlb.h
20300 F:      include/uapi/linux/vhost.h
20301
20302 VIRTIO INPUT DRIVER
20303 M:      Gerd Hoffmann <kraxel@redhat.com>
20304 S:      Maintained
20305 F:      drivers/virtio/virtio_input.c
20306 F:      include/uapi/linux/virtio_input.h
20307
20308 VIRTIO IOMMU DRIVER
20309 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20310 L:      virtualization@lists.linux-foundation.org
20311 S:      Maintained
20312 F:      drivers/iommu/virtio-iommu.c
20313 F:      include/uapi/linux/virtio_iommu.h
20314
20315 VIRTIO MEM DRIVER
20316 M:      David Hildenbrand <david@redhat.com>
20317 L:      virtualization@lists.linux-foundation.org
20318 S:      Maintained
20319 W:      https://virtio-mem.gitlab.io/
20320 F:      drivers/virtio/virtio_mem.c
20321 F:      include/uapi/linux/virtio_mem.h
20322
20323 VIRTIO SOUND DRIVER
20324 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20325 M:      "Michael S. Tsirkin" <mst@redhat.com>
20326 L:      virtualization@lists.linux-foundation.org
20327 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20328 S:      Maintained
20329 F:      include/uapi/linux/virtio_snd.h
20330 F:      sound/virtio/*
20331
20332 VIRTIO I2C DRIVER
20333 M:      Conghui Chen <conghui.chen@intel.com>
20334 M:      Viresh Kumar <viresh.kumar@linaro.org>
20335 L:      linux-i2c@vger.kernel.org
20336 L:      virtualization@lists.linux-foundation.org
20337 S:      Maintained
20338 F:      drivers/i2c/busses/i2c-virtio.c
20339 F:      include/uapi/linux/virtio_i2c.h
20340
20341 VIRTIO PMEM DRIVER
20342 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20343 L:      virtualization@lists.linux-foundation.org
20344 S:      Maintained
20345 F:      drivers/nvdimm/virtio_pmem.c
20346 F:      drivers/nvdimm/nd_virtio.c
20347
20348 VIRTUAL BOX GUEST DEVICE DRIVER
20349 M:      Hans de Goede <hdegoede@redhat.com>
20350 M:      Arnd Bergmann <arnd@arndb.de>
20351 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20352 S:      Maintained
20353 F:      drivers/virt/vboxguest/
20354 F:      include/linux/vbox_utils.h
20355 F:      include/uapi/linux/vbox*.h
20356
20357 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20358 M:      Hans de Goede <hdegoede@redhat.com>
20359 L:      linux-fsdevel@vger.kernel.org
20360 S:      Maintained
20361 F:      fs/vboxsf/*
20362
20363 VIRTUAL SERIO DEVICE DRIVER
20364 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20365 S:      Maintained
20366 F:      drivers/input/serio/userio.c
20367 F:      include/uapi/linux/userio.h
20368
20369 VIVID VIRTUAL VIDEO DRIVER
20370 M:      Hans Verkuil <hverkuil@xs4all.nl>
20371 L:      linux-media@vger.kernel.org
20372 S:      Maintained
20373 W:      https://linuxtv.org
20374 T:      git git://linuxtv.org/media_tree.git
20375 F:      drivers/media/test-drivers/vivid/*
20376
20377 VIDTV VIRTUAL DIGITAL TV DRIVER
20378 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20379 L:      linux-media@vger.kernel.org
20380 S:      Maintained
20381 W:      https://linuxtv.org
20382 T:      git git://linuxtv.org/media_tree.git
20383 F:      drivers/media/test-drivers/vidtv/*
20384
20385 VLYNQ BUS
20386 M:      Florian Fainelli <f.fainelli@gmail.com>
20387 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20388 S:      Maintained
20389 F:      drivers/vlynq/vlynq.c
20390 F:      include/linux/vlynq.h
20391
20392 VME SUBSYSTEM
20393 M:      Martyn Welch <martyn@welchs.me.uk>
20394 M:      Manohar Vanga <manohar.vanga@gmail.com>
20395 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20396 L:      linux-kernel@vger.kernel.org
20397 S:      Maintained
20398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20399 F:      Documentation/driver-api/vme.rst
20400 F:      drivers/staging/vme/
20401 F:      drivers/vme/
20402 F:      include/linux/vme*
20403
20404 VM SOCKETS (AF_VSOCK)
20405 M:      Stefano Garzarella <sgarzare@redhat.com>
20406 L:      virtualization@lists.linux-foundation.org
20407 L:      netdev@vger.kernel.org
20408 S:      Maintained
20409 F:      drivers/net/vsockmon.c
20410 F:      include/net/af_vsock.h
20411 F:      include/uapi/linux/vm_sockets.h
20412 F:      include/uapi/linux/vm_sockets_diag.h
20413 F:      include/uapi/linux/vsockmon.h
20414 F:      net/vmw_vsock/
20415 F:      tools/testing/vsock/
20416
20417 VMWARE BALLOON DRIVER
20418 M:      Nadav Amit <namit@vmware.com>
20419 M:      "VMware, Inc." <pv-drivers@vmware.com>
20420 L:      linux-kernel@vger.kernel.org
20421 S:      Maintained
20422 F:      drivers/misc/vmw_balloon.c
20423
20424 VMWARE HYPERVISOR INTERFACE
20425 M:      Deep Shah <sdeep@vmware.com>
20426 M:      "VMware, Inc." <pv-drivers@vmware.com>
20427 L:      virtualization@lists.linux-foundation.org
20428 S:      Supported
20429 F:      arch/x86/include/asm/vmware.h
20430 F:      arch/x86/kernel/cpu/vmware.c
20431
20432 VMWARE PVRDMA DRIVER
20433 M:      Bryan Tan <bryantan@vmware.com>
20434 M:      Vishnu Dasa <vdasa@vmware.com>
20435 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20436 L:      linux-rdma@vger.kernel.org
20437 S:      Maintained
20438 F:      drivers/infiniband/hw/vmw_pvrdma/
20439
20440 VMware PVSCSI driver
20441 M:      Vishal Bhakta <vbhakta@vmware.com>
20442 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20443 L:      linux-scsi@vger.kernel.org
20444 S:      Maintained
20445 F:      drivers/scsi/vmw_pvscsi.c
20446 F:      drivers/scsi/vmw_pvscsi.h
20447
20448 VMWARE VIRTUAL PTP CLOCK DRIVER
20449 M:      Vivek Thampi <vithampi@vmware.com>
20450 M:      "VMware, Inc." <pv-drivers@vmware.com>
20451 L:      netdev@vger.kernel.org
20452 S:      Supported
20453 F:      drivers/ptp/ptp_vmw.c
20454
20455 VMWARE VMCI DRIVER
20456 M:      Jorgen Hansen <jhansen@vmware.com>
20457 M:      Vishnu Dasa <vdasa@vmware.com>
20458 L:      linux-kernel@vger.kernel.org
20459 L:      pv-drivers@vmware.com (private)
20460 S:      Maintained
20461 F:      drivers/misc/vmw_vmci/
20462
20463 VMWARE VMMOUSE SUBDRIVER
20464 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20465 M:      "VMware, Inc." <pv-drivers@vmware.com>
20466 L:      linux-input@vger.kernel.org
20467 S:      Maintained
20468 F:      drivers/input/mouse/vmmouse.c
20469 F:      drivers/input/mouse/vmmouse.h
20470
20471 VMWARE VMXNET3 ETHERNET DRIVER
20472 M:      Ronak Doshi <doshir@vmware.com>
20473 M:      pv-drivers@vmware.com
20474 L:      netdev@vger.kernel.org
20475 S:      Maintained
20476 F:      drivers/net/vmxnet3/
20477
20478 VOCORE VOCORE2 BOARD
20479 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20480 L:      linux-mips@vger.kernel.org
20481 S:      Maintained
20482 F:      arch/mips/boot/dts/ralink/vocore2.dts
20483
20484 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20485 M:      Liam Girdwood <lgirdwood@gmail.com>
20486 M:      Mark Brown <broonie@kernel.org>
20487 L:      linux-kernel@vger.kernel.org
20488 S:      Supported
20489 W:      http://www.slimlogic.co.uk/?p=48
20490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20491 F:      Documentation/devicetree/bindings/regulator/
20492 F:      Documentation/power/regulator/
20493 F:      drivers/regulator/
20494 F:      include/dt-bindings/regulator/
20495 F:      include/linux/regulator/
20496 K:      regulator_get_optional
20497
20498 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20499 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20500 F:      drivers/regulator/irq_helpers.c
20501
20502 VRF
20503 M:      David Ahern <dsahern@kernel.org>
20504 L:      netdev@vger.kernel.org
20505 S:      Maintained
20506 F:      Documentation/networking/vrf.rst
20507 F:      drivers/net/vrf.c
20508
20509 VSPRINTF
20510 M:      Petr Mladek <pmladek@suse.com>
20511 M:      Steven Rostedt <rostedt@goodmis.org>
20512 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20513 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20514 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20515 S:      Maintained
20516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20517 F:      Documentation/core-api/printk-formats.rst
20518 F:      lib/test_printf.c
20519 F:      lib/test_scanf.c
20520 F:      lib/vsprintf.c
20521
20522 VT1211 HARDWARE MONITOR DRIVER
20523 M:      Juerg Haefliger <juergh@gmail.com>
20524 L:      linux-hwmon@vger.kernel.org
20525 S:      Maintained
20526 F:      Documentation/hwmon/vt1211.rst
20527 F:      drivers/hwmon/vt1211.c
20528
20529 VT8231 HARDWARE MONITOR DRIVER
20530 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20531 L:      linux-hwmon@vger.kernel.org
20532 S:      Maintained
20533 F:      drivers/hwmon/vt8231.c
20534
20535 VUB300 USB to SDIO/SD/MMC bridge chip
20536 L:      linux-mmc@vger.kernel.org
20537 S:      Orphan
20538 F:      drivers/mmc/host/vub300.c
20539
20540 W1 DALLAS'S 1-WIRE BUS
20541 M:      Evgeniy Polyakov <zbr@ioremap.net>
20542 S:      Maintained
20543 F:      Documentation/devicetree/bindings/w1/
20544 F:      Documentation/w1/
20545 F:      drivers/w1/
20546 F:      include/linux/w1.h
20547
20548 W83791D HARDWARE MONITORING DRIVER
20549 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20550 L:      linux-hwmon@vger.kernel.org
20551 S:      Maintained
20552 F:      Documentation/hwmon/w83791d.rst
20553 F:      drivers/hwmon/w83791d.c
20554
20555 W83793 HARDWARE MONITORING DRIVER
20556 M:      Rudolf Marek <r.marek@assembler.cz>
20557 L:      linux-hwmon@vger.kernel.org
20558 S:      Maintained
20559 F:      Documentation/hwmon/w83793.rst
20560 F:      drivers/hwmon/w83793.c
20561
20562 W83795 HARDWARE MONITORING DRIVER
20563 M:      Jean Delvare <jdelvare@suse.com>
20564 L:      linux-hwmon@vger.kernel.org
20565 S:      Maintained
20566 F:      drivers/hwmon/w83795.c
20567
20568 W83L51xD SD/MMC CARD INTERFACE DRIVER
20569 M:      Pierre Ossman <pierre@ossman.eu>
20570 S:      Maintained
20571 F:      drivers/mmc/host/wbsd.*
20572
20573 WACOM PROTOCOL 4 SERIAL TABLETS
20574 M:      Julian Squires <julian@cipht.net>
20575 M:      Hans de Goede <hdegoede@redhat.com>
20576 L:      linux-input@vger.kernel.org
20577 S:      Maintained
20578 F:      drivers/input/tablet/wacom_serial4.c
20579
20580 WATCHDOG DEVICE DRIVERS
20581 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20582 M:      Guenter Roeck <linux@roeck-us.net>
20583 L:      linux-watchdog@vger.kernel.org
20584 S:      Maintained
20585 W:      http://www.linux-watchdog.org/
20586 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20587 F:      Documentation/devicetree/bindings/watchdog/
20588 F:      Documentation/watchdog/
20589 F:      drivers/watchdog/
20590 F:      include/linux/watchdog.h
20591 F:      include/uapi/linux/watchdog.h
20592
20593 WHISKEYCOVE PMIC GPIO DRIVER
20594 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20595 L:      linux-gpio@vger.kernel.org
20596 S:      Maintained
20597 F:      drivers/gpio/gpio-wcove.c
20598
20599 WHWAVE RTC DRIVER
20600 M:      Dianlong Li <long17.cool@163.com>
20601 L:      linux-rtc@vger.kernel.org
20602 S:      Maintained
20603 F:      drivers/rtc/rtc-sd3078.c
20604
20605 WIIMOTE HID DRIVER
20606 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20607 L:      linux-input@vger.kernel.org
20608 S:      Maintained
20609 F:      drivers/hid/hid-wiimote*
20610
20611 WILOCITY WIL6210 WIRELESS DRIVER
20612 M:      Maya Erez <merez@codeaurora.org>
20613 L:      linux-wireless@vger.kernel.org
20614 L:      wil6210@qti.qualcomm.com
20615 S:      Supported
20616 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20617 F:      drivers/net/wireless/ath/wil6210/
20618
20619 WINBOND CIR DRIVER
20620 M:      David Härdeman <david@hardeman.nu>
20621 S:      Maintained
20622 F:      drivers/media/rc/winbond-cir.c
20623
20624 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20625 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20626 L:      linux-watchdog@vger.kernel.org
20627 S:      Maintained
20628 F:      drivers/watchdog/ebc-c384_wdt.c
20629
20630 WINSYSTEMS WS16C48 GPIO DRIVER
20631 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20632 L:      linux-gpio@vger.kernel.org
20633 S:      Maintained
20634 F:      drivers/gpio/gpio-ws16c48.c
20635
20636 WIREGUARD SECURE NETWORK TUNNEL
20637 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20638 L:      wireguard@lists.zx2c4.com
20639 L:      netdev@vger.kernel.org
20640 S:      Maintained
20641 F:      drivers/net/wireguard/
20642 F:      tools/testing/selftests/wireguard/
20643
20644 WISTRON LAPTOP BUTTON DRIVER
20645 M:      Miloslav Trmac <mitr@volny.cz>
20646 S:      Maintained
20647 F:      drivers/input/misc/wistron_btns.c
20648
20649 WL3501 WIRELESS PCMCIA CARD DRIVER
20650 L:      linux-wireless@vger.kernel.org
20651 S:      Odd fixes
20652 F:      drivers/net/wireless/wl3501*
20653
20654 WOLFSON MICROELECTRONICS DRIVERS
20655 L:      patches@opensource.cirrus.com
20656 S:      Supported
20657 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20658 T:      git https://github.com/CirrusLogic/linux-drivers.git
20659 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20660 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20661 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20662 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20663 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20664 F:      Documentation/devicetree/bindings/sound/wm*
20665 F:      Documentation/hwmon/wm83??.rst
20666 F:      arch/arm/mach-s3c/mach-crag6410*
20667 F:      drivers/clk/clk-wm83*.c
20668 F:      drivers/gpio/gpio-*wm*.c
20669 F:      drivers/gpio/gpio-arizona.c
20670 F:      drivers/hwmon/wm83??-hwmon.c
20671 F:      drivers/input/misc/wm831x-on.c
20672 F:      drivers/input/touchscreen/wm831x-ts.c
20673 F:      drivers/input/touchscreen/wm97*.c
20674 F:      drivers/leds/leds-wm83*.c
20675 F:      drivers/mfd/arizona*
20676 F:      drivers/mfd/cs47l24*
20677 F:      drivers/mfd/wm*.c
20678 F:      drivers/power/supply/wm83*.c
20679 F:      drivers/regulator/arizona*
20680 F:      drivers/regulator/wm8*.c
20681 F:      drivers/rtc/rtc-wm83*.c
20682 F:      drivers/video/backlight/wm83*_bl.c
20683 F:      drivers/watchdog/wm83*_wdt.c
20684 F:      include/linux/mfd/arizona/
20685 F:      include/linux/mfd/wm831x/
20686 F:      include/linux/mfd/wm8350/
20687 F:      include/linux/mfd/wm8400*
20688 F:      include/linux/regulator/arizona*
20689 F:      include/linux/wm97xx.h
20690 F:      include/sound/wm????.h
20691 F:      sound/soc/codecs/arizona*
20692 F:      sound/soc/codecs/cs47l24*
20693 F:      sound/soc/codecs/wm*
20694
20695 WORKQUEUE
20696 M:      Tejun Heo <tj@kernel.org>
20697 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20698 S:      Maintained
20699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20700 F:      Documentation/core-api/workqueue.rst
20701 F:      include/linux/workqueue.h
20702 F:      kernel/workqueue.c
20703
20704 WWAN DRIVERS
20705 M:      Loic Poulain <loic.poulain@linaro.org>
20706 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20707 R:      Johannes Berg <johannes@sipsolutions.net>
20708 L:      netdev@vger.kernel.org
20709 S:      Maintained
20710 F:      drivers/net/wwan/
20711 F:      include/linux/wwan.h
20712 F:      include/uapi/linux/wwan.h
20713
20714 X-POWERS AXP288 PMIC DRIVERS
20715 M:      Hans de Goede <hdegoede@redhat.com>
20716 S:      Maintained
20717 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20718 N:      axp288
20719
20720 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20721 M:      Chen-Yu Tsai <wens@csie.org>
20722 L:      linux-kernel@vger.kernel.org
20723 S:      Maintained
20724 N:      axp[128]
20725
20726 X.25 STACK
20727 M:      Martin Schiller <ms@dev.tdt.de>
20728 L:      linux-x25@vger.kernel.org
20729 S:      Maintained
20730 F:      Documentation/networking/lapb-module.rst
20731 F:      Documentation/networking/x25*
20732 F:      drivers/net/wan/hdlc_x25.c
20733 F:      drivers/net/wan/lapbether.c
20734 F:      include/*/lapb.h
20735 F:      include/net/x25*
20736 F:      include/uapi/linux/x25.h
20737 F:      net/lapb/
20738 F:      net/x25/
20739
20740 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20741 M:      Thomas Gleixner <tglx@linutronix.de>
20742 M:      Ingo Molnar <mingo@redhat.com>
20743 M:      Borislav Petkov <bp@alien8.de>
20744 M:      Dave Hansen <dave.hansen@linux.intel.com>
20745 M:      x86@kernel.org
20746 R:      "H. Peter Anvin" <hpa@zytor.com>
20747 L:      linux-kernel@vger.kernel.org
20748 S:      Maintained
20749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20750 F:      Documentation/devicetree/bindings/x86/
20751 F:      Documentation/x86/
20752 F:      arch/x86/
20753
20754 X86 ENTRY CODE
20755 M:      Andy Lutomirski <luto@kernel.org>
20756 L:      linux-kernel@vger.kernel.org
20757 S:      Maintained
20758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20759 F:      arch/x86/entry/
20760
20761 X86 MCE INFRASTRUCTURE
20762 M:      Tony Luck <tony.luck@intel.com>
20763 M:      Borislav Petkov <bp@alien8.de>
20764 L:      linux-edac@vger.kernel.org
20765 S:      Maintained
20766 F:      Documentation/ABI/testing/sysfs-mce
20767 F:      Documentation/x86/x86_64/machinecheck.rst
20768 F:      arch/x86/kernel/cpu/mce/*
20769
20770 X86 MICROCODE UPDATE SUPPORT
20771 M:      Borislav Petkov <bp@alien8.de>
20772 S:      Maintained
20773 F:      arch/x86/kernel/cpu/microcode/*
20774
20775 X86 MM
20776 M:      Dave Hansen <dave.hansen@linux.intel.com>
20777 M:      Andy Lutomirski <luto@kernel.org>
20778 M:      Peter Zijlstra <peterz@infradead.org>
20779 L:      linux-kernel@vger.kernel.org
20780 S:      Maintained
20781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20782 F:      arch/x86/mm/
20783
20784 X86 PLATFORM DRIVERS
20785 M:      Hans de Goede <hdegoede@redhat.com>
20786 M:      Mark Gross <markgross@kernel.org>
20787 L:      platform-driver-x86@vger.kernel.org
20788 S:      Maintained
20789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20790 F:      drivers/platform/olpc/
20791 F:      drivers/platform/x86/
20792
20793 X86 PLATFORM DRIVERS - ARCH
20794 R:      Darren Hart <dvhart@infradead.org>
20795 R:      Andy Shevchenko <andy@infradead.org>
20796 L:      platform-driver-x86@vger.kernel.org
20797 L:      x86@kernel.org
20798 S:      Maintained
20799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20800 F:      arch/x86/platform
20801
20802 X86 PLATFORM UV HPE SUPERDOME FLEX
20803 M:      Steve Wahl <steve.wahl@hpe.com>
20804 R:      Mike Travis <mike.travis@hpe.com>
20805 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20806 R:      Russ Anderson <russ.anderson@hpe.com>
20807 S:      Supported
20808 F:      arch/x86/include/asm/uv/
20809 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20810 F:      arch/x86/platform/uv/
20811
20812 X86 VDSO
20813 M:      Andy Lutomirski <luto@kernel.org>
20814 L:      linux-kernel@vger.kernel.org
20815 S:      Maintained
20816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20817 F:      arch/x86/entry/vdso/
20818
20819 XARRAY
20820 M:      Matthew Wilcox <willy@infradead.org>
20821 L:      linux-fsdevel@vger.kernel.org
20822 S:      Supported
20823 F:      Documentation/core-api/xarray.rst
20824 F:      include/linux/idr.h
20825 F:      include/linux/xarray.h
20826 F:      lib/idr.c
20827 F:      lib/xarray.c
20828 F:      tools/testing/radix-tree
20829
20830 XBOX DVD IR REMOTE
20831 M:      Benjamin Valentin <benpicco@googlemail.com>
20832 S:      Maintained
20833 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20834 F:      drivers/media/rc/xbox_remote.c
20835
20836 XC2028/3028 TUNER DRIVER
20837 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20838 L:      linux-media@vger.kernel.org
20839 S:      Maintained
20840 W:      https://linuxtv.org
20841 T:      git git://linuxtv.org/media_tree.git
20842 F:      drivers/media/tuners/tuner-xc2028.*
20843
20844 XDP (eXpress Data Path)
20845 M:      Alexei Starovoitov <ast@kernel.org>
20846 M:      Daniel Borkmann <daniel@iogearbox.net>
20847 M:      David S. Miller <davem@davemloft.net>
20848 M:      Jakub Kicinski <kuba@kernel.org>
20849 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20850 M:      John Fastabend <john.fastabend@gmail.com>
20851 L:      netdev@vger.kernel.org
20852 L:      bpf@vger.kernel.org
20853 S:      Supported
20854 F:      include/net/xdp.h
20855 F:      include/net/xdp_priv.h
20856 F:      include/trace/events/xdp.h
20857 F:      kernel/bpf/cpumap.c
20858 F:      kernel/bpf/devmap.c
20859 F:      net/core/xdp.c
20860 F:      samples/bpf/xdp*
20861 F:      tools/testing/selftests/bpf/*xdp*
20862 F:      tools/testing/selftests/bpf/*/*xdp*
20863 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20864 F:      drivers/net/ethernet/*/*/*xdp*
20865 K:      (?:\b|_)xdp(?:\b|_)
20866
20867 XDP SOCKETS (AF_XDP)
20868 M:      Björn Töpel <bjorn@kernel.org>
20869 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20870 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20871 L:      netdev@vger.kernel.org
20872 L:      bpf@vger.kernel.org
20873 S:      Maintained
20874 F:      Documentation/networking/af_xdp.rst
20875 F:      include/net/xdp_sock*
20876 F:      include/net/xsk_buff_pool.h
20877 F:      include/uapi/linux/if_xdp.h
20878 F:      include/uapi/linux/xdp_diag.h
20879 F:      include/net/netns/xdp.h
20880 F:      net/xdp/
20881 F:      samples/bpf/xdpsock*
20882 F:      tools/lib/bpf/xsk*
20883
20884 XEN BLOCK SUBSYSTEM
20885 M:      Roger Pau Monné <roger.pau@citrix.com>
20886 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20887 S:      Supported
20888 F:      drivers/block/xen*
20889 F:      drivers/block/xen-blkback/*
20890
20891 XEN HYPERVISOR ARM
20892 M:      Stefano Stabellini <sstabellini@kernel.org>
20893 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20894 S:      Maintained
20895 F:      arch/arm/include/asm/xen/
20896 F:      arch/arm/xen/
20897
20898 XEN HYPERVISOR ARM64
20899 M:      Stefano Stabellini <sstabellini@kernel.org>
20900 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20901 S:      Maintained
20902 F:      arch/arm64/include/asm/xen/
20903 F:      arch/arm64/xen/
20904
20905 XEN HYPERVISOR INTERFACE
20906 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20907 M:      Juergen Gross <jgross@suse.com>
20908 R:      Stefano Stabellini <sstabellini@kernel.org>
20909 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20910 S:      Supported
20911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20912 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20913 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20914 F:      arch/x86/include/asm/pvclock-abi.h
20915 F:      arch/x86/include/asm/xen/
20916 F:      arch/x86/platform/pvh/
20917 F:      arch/x86/xen/
20918 F:      drivers/*/xen-*front.c
20919 F:      drivers/xen/
20920 F:      include/uapi/xen/
20921 F:      include/xen/
20922
20923 XEN NETWORK BACKEND DRIVER
20924 M:      Wei Liu <wei.liu@kernel.org>
20925 M:      Paul Durrant <paul@xen.org>
20926 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20927 L:      netdev@vger.kernel.org
20928 S:      Supported
20929 F:      drivers/net/xen-netback/*
20930
20931 XEN PCI SUBSYSTEM
20932 M:      Juergen Gross <jgross@suse.com>
20933 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20934 S:      Supported
20935 F:      arch/x86/pci/*xen*
20936 F:      drivers/pci/*xen*
20937
20938 XEN PVSCSI DRIVERS
20939 M:      Juergen Gross <jgross@suse.com>
20940 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20941 L:      linux-scsi@vger.kernel.org
20942 S:      Supported
20943 F:      drivers/scsi/xen-scsifront.c
20944 F:      drivers/xen/xen-scsiback.c
20945 F:      include/xen/interface/io/vscsiif.h
20946
20947 XEN SOUND FRONTEND DRIVER
20948 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20949 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20951 S:      Supported
20952 F:      sound/xen/*
20953
20954 XEN SWIOTLB SUBSYSTEM
20955 M:      Juergen Gross <jgross@suse.com>
20956 M:      Stefano Stabellini <sstabellini@kernel.org>
20957 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20958 L:      iommu@lists.linux-foundation.org
20959 S:      Supported
20960 F:      arch/x86/xen/*swiotlb*
20961 F:      drivers/xen/*swiotlb*
20962
20963 XFS FILESYSTEM
20964 C:      irc://irc.oftc.net/xfs
20965 M:      Darrick J. Wong <djwong@kernel.org>
20966 M:      linux-xfs@vger.kernel.org
20967 L:      linux-xfs@vger.kernel.org
20968 S:      Supported
20969 W:      http://xfs.org/
20970 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20971 F:      Documentation/ABI/testing/sysfs-fs-xfs
20972 F:      Documentation/admin-guide/xfs.rst
20973 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20974 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20975 F:      fs/xfs/
20976 F:      include/uapi/linux/dqblk_xfs.h
20977 F:      include/uapi/linux/fsmap.h
20978
20979 XILINX AXI ETHERNET DRIVER
20980 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20981 S:      Maintained
20982 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20983
20984 XILINX CAN DRIVER
20985 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20986 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20987 L:      linux-can@vger.kernel.org
20988 S:      Maintained
20989 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20990 F:      drivers/net/can/xilinx_can.c
20991
20992 XILINX GPIO DRIVER
20993 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20994 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20995 R:      Michal Simek <michal.simek@xilinx.com>
20996 S:      Maintained
20997 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20998 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20999 F:      drivers/gpio/gpio-xilinx.c
21000 F:      drivers/gpio/gpio-zynq.c
21001
21002 XILINX SD-FEC IP CORES
21003 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21004 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21005 S:      Maintained
21006 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21007 F:      Documentation/misc-devices/xilinx_sdfec.rst
21008 F:      drivers/misc/Kconfig
21009 F:      drivers/misc/Makefile
21010 F:      drivers/misc/xilinx_sdfec.c
21011 F:      include/uapi/misc/xilinx_sdfec.h
21012
21013 XILINX UARTLITE SERIAL DRIVER
21014 M:      Peter Korsgaard <jacmet@sunsite.dk>
21015 L:      linux-serial@vger.kernel.org
21016 S:      Maintained
21017 F:      drivers/tty/serial/uartlite.c
21018
21019 XILINX VIDEO IP CORES
21020 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21021 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21022 L:      linux-media@vger.kernel.org
21023 S:      Supported
21024 T:      git git://linuxtv.org/media_tree.git
21025 F:      Documentation/devicetree/bindings/media/xilinx/
21026 F:      drivers/media/platform/xilinx/
21027 F:      include/uapi/linux/xilinx-v4l2-controls.h
21028
21029 XILINX ZYNQMP DPDMA DRIVER
21030 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21031 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21032 L:      dmaengine@vger.kernel.org
21033 S:      Supported
21034 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21035 F:      drivers/dma/xilinx/xilinx_dpdma.c
21036 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21037
21038 XILINX ZYNQMP PSGTR PHY DRIVER
21039 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21040 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21041 L:      linux-kernel@vger.kernel.org
21042 S:      Supported
21043 T:      git https://github.com/Xilinx/linux-xlnx.git
21044 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21045 F:      drivers/phy/xilinx/phy-zynqmp.c
21046
21047 XILLYBUS DRIVER
21048 M:      Eli Billauer <eli.billauer@gmail.com>
21049 L:      linux-kernel@vger.kernel.org
21050 S:      Supported
21051 F:      drivers/char/xillybus/
21052
21053 XLP9XX I2C DRIVER
21054 M:      George Cherian <gcherian@marvell.com>
21055 L:      linux-i2c@vger.kernel.org
21056 S:      Supported
21057 W:      http://www.marvell.com
21058 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
21059 F:      drivers/i2c/busses/i2c-xlp9xx.c
21060
21061 XRA1403 GPIO EXPANDER
21062 M:      Nandor Han <nandor.han@ge.com>
21063 M:      Semi Malinen <semi.malinen@ge.com>
21064 L:      linux-gpio@vger.kernel.org
21065 S:      Maintained
21066 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21067 F:      drivers/gpio/gpio-xra1403.c
21068
21069 XTENSA XTFPGA PLATFORM SUPPORT
21070 M:      Max Filippov <jcmvbkbc@gmail.com>
21071 L:      linux-xtensa@linux-xtensa.org
21072 S:      Maintained
21073 F:      drivers/spi/spi-xtensa-xtfpga.c
21074 F:      sound/soc/xtensa/xtfpga-i2s.c
21075
21076 YAM DRIVER FOR AX.25
21077 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21078 L:      linux-hams@vger.kernel.org
21079 S:      Maintained
21080 F:      drivers/net/hamradio/yam*
21081 F:      include/linux/yam.h
21082
21083 YAMA SECURITY MODULE
21084 M:      Kees Cook <keescook@chromium.org>
21085 S:      Supported
21086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21087 F:      Documentation/admin-guide/LSM/Yama.rst
21088 F:      security/yama/
21089
21090 YEALINK PHONE DRIVER
21091 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21092 L:      usbb2k-api-dev@nongnu.org
21093 S:      Maintained
21094 F:      Documentation/input/devices/yealink.rst
21095 F:      drivers/input/misc/yealink.*
21096
21097 Z8530 DRIVER FOR AX.25
21098 M:      Joerg Reuter <jreuter@yaina.de>
21099 L:      linux-hams@vger.kernel.org
21100 S:      Maintained
21101 W:      http://yaina.de/jreuter/
21102 W:      http://www.qsl.net/dl1bke/
21103 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21104 F:      drivers/net/hamradio/*scc.c
21105 F:      drivers/net/hamradio/z8530.h
21106
21107 ZBUD COMPRESSED PAGE ALLOCATOR
21108 M:      Seth Jennings <sjenning@redhat.com>
21109 M:      Dan Streetman <ddstreet@ieee.org>
21110 L:      linux-mm@kvack.org
21111 S:      Maintained
21112 F:      mm/zbud.c
21113
21114 ZD1211RW WIRELESS DRIVER
21115 M:      Ulrich Kunitz <kune@deine-taler.de>
21116 L:      linux-wireless@vger.kernel.org
21117 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21118 S:      Maintained
21119 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21120 F:      drivers/net/wireless/zydas/zd1211rw/
21121
21122 ZD1301 MEDIA DRIVER
21123 M:      Antti Palosaari <crope@iki.fi>
21124 L:      linux-media@vger.kernel.org
21125 S:      Maintained
21126 W:      https://linuxtv.org/
21127 W:      http://palosaari.fi/linux/
21128 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21129 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21130
21131 ZD1301_DEMOD MEDIA DRIVER
21132 M:      Antti Palosaari <crope@iki.fi>
21133 L:      linux-media@vger.kernel.org
21134 S:      Maintained
21135 W:      https://linuxtv.org/
21136 W:      http://palosaari.fi/linux/
21137 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21138 F:      drivers/media/dvb-frontends/zd1301_demod*
21139
21140 ZHAOXIN PROCESSOR SUPPORT
21141 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21142 L:      linux-kernel@vger.kernel.org
21143 S:      Maintained
21144 F:      arch/x86/kernel/cpu/zhaoxin.c
21145
21146 ZONEFS FILESYSTEM
21147 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21148 M:      Naohiro Aota <naohiro.aota@wdc.com>
21149 R:      Johannes Thumshirn <jth@kernel.org>
21150 L:      linux-fsdevel@vger.kernel.org
21151 S:      Maintained
21152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21153 F:      Documentation/filesystems/zonefs.rst
21154 F:      fs/zonefs/
21155
21156 ZPOOL COMPRESSED PAGE STORAGE API
21157 M:      Dan Streetman <ddstreet@ieee.org>
21158 L:      linux-mm@kvack.org
21159 S:      Maintained
21160 F:      include/linux/zpool.h
21161 F:      mm/zpool.c
21162
21163 ZR36067 VIDEO FOR LINUX DRIVER
21164 M:      Corentin Labbe <clabbe@baylibre.com>
21165 L:      mjpeg-users@lists.sourceforge.net
21166 L:      linux-media@vger.kernel.org
21167 S:      Maintained
21168 W:      http://mjpeg.sourceforge.net/driver-zoran/
21169 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21170 F:      Documentation/driver-api/media/drivers/zoran.rst
21171 F:      drivers/staging/media/zoran/
21172
21173 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21174 M:      Minchan Kim <minchan@kernel.org>
21175 M:      Nitin Gupta <ngupta@vflare.org>
21176 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21177 L:      linux-kernel@vger.kernel.org
21178 S:      Maintained
21179 F:      Documentation/admin-guide/blockdev/zram.rst
21180 F:      drivers/block/zram/
21181
21182 ZS DECSTATION Z85C30 SERIAL DRIVER
21183 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21184 S:      Maintained
21185 F:      drivers/tty/serial/zs.*
21186
21187 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21188 M:      Minchan Kim <minchan@kernel.org>
21189 M:      Nitin Gupta <ngupta@vflare.org>
21190 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21191 L:      linux-mm@kvack.org
21192 S:      Maintained
21193 F:      Documentation/vm/zsmalloc.rst
21194 F:      include/linux/zsmalloc.h
21195 F:      mm/zsmalloc.c
21196
21197 ZSTD
21198 M:      Nick Terrell <terrelln@fb.com>
21199 S:      Maintained
21200 B:      https://github.com/facebook/zstd/issues
21201 T:      git git://github.com/terrelln/linux.git
21202 F:      include/linux/zstd*
21203 F:      lib/zstd/
21204 F:      lib/decompress_unzstd.c
21205 F:      crypto/zstd.c
21206 N:      zstd
21207 K:      zstd
21208
21209 ZSWAP COMPRESSED SWAP CACHING
21210 M:      Seth Jennings <sjenning@redhat.com>
21211 M:      Dan Streetman <ddstreet@ieee.org>
21212 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21213 L:      linux-mm@kvack.org
21214 S:      Maintained
21215 F:      mm/zswap.c
21216
21217 THE REST
21218 M:      Linus Torvalds <torvalds@linux-foundation.org>
21219 L:      linux-kernel@vger.kernel.org
21220 S:      Buried alive in reporters
21221 Q:      http://patchwork.kernel.org/project/LKML/list/
21222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21223 F:      *
21224 F:      */