Merge branch 'for-5.12/uclogic' into for-linus
[platform/kernel/linux-rpi.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
265 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
266 M:      Hans de Goede <hdegoede@redhat.com>
267 L:      linux-hwmon@vger.kernel.org
268 S:      Maintained
269 F:      drivers/hwmon/abituguru.c
270
271 ABIT UGURU 3 HARDWARE MONITOR DRIVER
272 M:      Alistair John Strachan <alistair@devzero.co.uk>
273 L:      linux-hwmon@vger.kernel.org
274 S:      Maintained
275 F:      drivers/hwmon/abituguru3.c
276
277 ACCES 104-DIO-48E GPIO DRIVER
278 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
279 L:      linux-gpio@vger.kernel.org
280 S:      Maintained
281 F:      drivers/gpio/gpio-104-dio-48e.c
282
283 ACCES 104-IDI-48 GPIO DRIVER
284 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
285 L:      linux-gpio@vger.kernel.org
286 S:      Maintained
287 F:      drivers/gpio/gpio-104-idi-48.c
288
289 ACCES 104-IDIO-16 GPIO DRIVER
290 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
291 L:      linux-gpio@vger.kernel.org
292 S:      Maintained
293 F:      drivers/gpio/gpio-104-idio-16.c
294
295 ACCES 104-QUAD-8 DRIVER
296 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
297 M:      Syed Nayyar Waris <syednwaris@gmail.com>
298 L:      linux-iio@vger.kernel.org
299 S:      Maintained
300 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
301 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
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" <rjw@rjwysocki.net>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      Erik Kaneda <erik.kaneda@intel.com>
368 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      devel@acpica.org
371 S:      Supported
372 W:      https://acpica.org/
373 W:      https://github.com/acpica/acpica/
374 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
375 B:      https://bugzilla.kernel.org
376 B:      https://bugs.acpica.org
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 F:      drivers/acpi/acpica/
379 F:      include/acpi/
380 F:      tools/power/acpi/
381
382 ACPI FAN DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 S:      Supported
386 W:      https://01.org/linux-acpi
387 B:      https://bugzilla.kernel.org
388 F:      drivers/acpi/fan.c
389
390 ACPI FOR ARM64 (ACPI/arm64)
391 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
392 M:      Hanjun Guo <guohanjun@huawei.com>
393 M:      Sudeep Holla <sudeep.holla@arm.com>
394 L:      linux-acpi@vger.kernel.org
395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
396 S:      Maintained
397 F:      drivers/acpi/arm64
398
399 ACPI I2C MULTI INSTANTIATE DRIVER
400 M:      Hans de Goede <hdegoede@redhat.com>
401 L:      platform-driver-x86@vger.kernel.org
402 S:      Maintained
403 F:      drivers/platform/x86/i2c-multi-instantiate.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 AD1889 ALSA SOUND DRIVER
440 L:      linux-parisc@vger.kernel.org
441 S:      Maintained
442 W:      https://parisc.wiki.kernel.org/index.php/AD1889
443 F:      sound/pci/ad1889.*
444
445 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
446 M:      Michael Hennerich <michael.hennerich@analog.com>
447 S:      Supported
448 W:      http://wiki.analog.com/AD5254
449 W:      http://ez.analog.com/community/linux-device-drivers
450 F:      drivers/misc/ad525x_dpot.c
451
452 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
453 M:      Michael Hennerich <michael.hennerich@analog.com>
454 S:      Supported
455 W:      http://wiki.analog.com/AD5398
456 W:      http://ez.analog.com/community/linux-device-drivers
457 F:      drivers/regulator/ad5398.c
458
459 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 S:      Supported
462 W:      http://wiki.analog.com/AD7142
463 W:      http://ez.analog.com/community/linux-device-drivers
464 F:      drivers/input/misc/ad714x.c
465
466 AD7877 TOUCHSCREEN DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD7877
470 W:      http://ez.analog.com/community/linux-device-drivers
471 F:      drivers/input/touchscreen/ad7877.c
472
473 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD7879
477 W:      http://ez.analog.com/community/linux-device-drivers
478 F:      drivers/input/touchscreen/ad7879.c
479
480 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
481 M:      Jiri Kosina <jikos@kernel.org>
482 S:      Maintained
483
484 ADF7242 IEEE 802.15.4 RADIO DRIVER
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 L:      linux-wpan@vger.kernel.org
487 S:      Supported
488 W:      https://wiki.analog.com/ADF7242
489 W:      http://ez.analog.com/community/linux-device-drivers
490 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
491 F:      drivers/net/ieee802154/adf7242.c
492
493 ADM1025 HARDWARE MONITOR DRIVER
494 M:      Jean Delvare <jdelvare@suse.com>
495 L:      linux-hwmon@vger.kernel.org
496 S:      Maintained
497 F:      Documentation/hwmon/adm1025.rst
498 F:      drivers/hwmon/adm1025.c
499
500 ADM1029 HARDWARE MONITOR DRIVER
501 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
502 L:      linux-hwmon@vger.kernel.org
503 S:      Maintained
504 F:      drivers/hwmon/adm1029.c
505
506 ADM8211 WIRELESS DRIVER
507 L:      linux-wireless@vger.kernel.org
508 S:      Orphan
509 W:      https://wireless.wiki.kernel.org/
510 F:      drivers/net/wireless/admtek/adm8211.*
511
512 ADP1653 FLASH CONTROLLER DRIVER
513 M:      Sakari Ailus <sakari.ailus@iki.fi>
514 L:      linux-media@vger.kernel.org
515 S:      Maintained
516 F:      drivers/media/i2c/adp1653.c
517 F:      include/media/i2c/adp1653.h
518
519 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
520 M:      Michael Hennerich <michael.hennerich@analog.com>
521 S:      Supported
522 W:      http://wiki.analog.com/ADP5520
523 W:      http://ez.analog.com/community/linux-device-drivers
524 F:      drivers/gpio/gpio-adp5520.c
525 F:      drivers/input/keyboard/adp5520-keys.c
526 F:      drivers/leds/leds-adp5520.c
527 F:      drivers/mfd/adp5520.c
528 F:      drivers/video/backlight/adp5520_bl.c
529
530 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
531 M:      Michael Hennerich <michael.hennerich@analog.com>
532 S:      Supported
533 W:      http://wiki.analog.com/ADP5588
534 W:      http://ez.analog.com/community/linux-device-drivers
535 F:      drivers/gpio/gpio-adp5588.c
536 F:      drivers/input/keyboard/adp5588-keys.c
537
538 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
539 M:      Michael Hennerich <michael.hennerich@analog.com>
540 S:      Supported
541 W:      http://wiki.analog.com/ADP8860
542 W:      http://ez.analog.com/community/linux-device-drivers
543 F:      drivers/video/backlight/adp8860_bl.c
544
545 ADT746X FAN DRIVER
546 M:      Colin Leroy <colin@colino.net>
547 S:      Maintained
548 F:      drivers/macintosh/therm_adt746x.c
549
550 ADT7475 HARDWARE MONITOR DRIVER
551 M:      Jean Delvare <jdelvare@suse.com>
552 L:      linux-hwmon@vger.kernel.org
553 S:      Maintained
554 F:      Documentation/hwmon/adt7475.rst
555 F:      drivers/hwmon/adt7475.c
556
557 ADVANSYS SCSI DRIVER
558 M:      Matthew Wilcox <willy@infradead.org>
559 M:      Hannes Reinecke <hare@suse.com>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      Documentation/scsi/advansys.rst
563 F:      drivers/scsi/advansys.c
564
565 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
566 M:      Michael Hennerich <michael.hennerich@analog.com>
567 S:      Supported
568 W:      http://wiki.analog.com/ADXL345
569 W:      http://ez.analog.com/community/linux-device-drivers
570 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
571 F:      drivers/input/misc/adxl34x.c
572
573 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
574 M:      Michael Hennerich <michael.hennerich@analog.com>
575 S:      Supported
576 W:      http://ez.analog.com/community/linux-device-drivers
577 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
578 F:      drivers/iio/accel/adxl372.c
579 F:      drivers/iio/accel/adxl372_i2c.c
580 F:      drivers/iio/accel/adxl372_spi.c
581
582 AF9013 MEDIA DRIVER
583 M:      Antti Palosaari <crope@iki.fi>
584 L:      linux-media@vger.kernel.org
585 S:      Maintained
586 W:      https://linuxtv.org
587 W:      http://palosaari.fi/linux/
588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
589 T:      git git://linuxtv.org/anttip/media_tree.git
590 F:      drivers/media/dvb-frontends/af9013*
591
592 AF9033 MEDIA DRIVER
593 M:      Antti Palosaari <crope@iki.fi>
594 L:      linux-media@vger.kernel.org
595 S:      Maintained
596 W:      https://linuxtv.org
597 W:      http://palosaari.fi/linux/
598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
599 T:      git git://linuxtv.org/anttip/media_tree.git
600 F:      drivers/media/dvb-frontends/af9033*
601
602 AFFS FILE SYSTEM
603 M:      David Sterba <dsterba@suse.com>
604 L:      linux-fsdevel@vger.kernel.org
605 S:      Odd Fixes
606 F:      Documentation/filesystems/affs.rst
607 F:      fs/affs/
608
609 AFS FILESYSTEM
610 M:      David Howells <dhowells@redhat.com>
611 L:      linux-afs@lists.infradead.org
612 S:      Supported
613 W:      https://www.infradead.org/~dhowells/kafs/
614 F:      Documentation/filesystems/afs.rst
615 F:      fs/afs/
616 F:      include/trace/events/afs.h
617
618 AGPGART DRIVER
619 M:      David Airlie <airlied@linux.ie>
620 S:      Maintained
621 T:      git git://anongit.freedesktop.org/drm/drm
622 F:      drivers/char/agp/
623 F:      include/linux/agp*
624 F:      include/uapi/linux/agp*
625
626 AHA152X SCSI DRIVER
627 M:      "Juergen E. Fischer" <fischer@norbit.de>
628 L:      linux-scsi@vger.kernel.org
629 S:      Maintained
630 F:      drivers/scsi/aha152x*
631 F:      drivers/scsi/pcmcia/aha152x*
632
633 AIC7XXX / AIC79XX SCSI DRIVER
634 M:      Hannes Reinecke <hare@suse.com>
635 L:      linux-scsi@vger.kernel.org
636 S:      Maintained
637 F:      drivers/scsi/aic7xxx/
638
639 AIMSLAB FM RADIO RECEIVER DRIVER
640 M:      Hans Verkuil <hverkuil@xs4all.nl>
641 L:      linux-media@vger.kernel.org
642 S:      Maintained
643 W:      https://linuxtv.org
644 T:      git git://linuxtv.org/media_tree.git
645 F:      drivers/media/radio/radio-aimslab*
646
647 AIO
648 M:      Benjamin LaHaise <bcrl@kvack.org>
649 L:      linux-aio@kvack.org
650 S:      Supported
651 F:      fs/aio.c
652 F:      include/linux/*aio*.h
653
654 AIRSPY MEDIA DRIVER
655 M:      Antti Palosaari <crope@iki.fi>
656 L:      linux-media@vger.kernel.org
657 S:      Maintained
658 W:      https://linuxtv.org
659 W:      http://palosaari.fi/linux/
660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
661 T:      git git://linuxtv.org/anttip/media_tree.git
662 F:      drivers/media/usb/airspy/
663
664 ALACRITECH GIGABIT ETHERNET DRIVER
665 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
666 S:      Maintained
667 F:      drivers/net/ethernet/alacritech/*
668
669 ALCATEL SPEEDTOUCH USB DRIVER
670 M:      Duncan Sands <duncan.sands@free.fr>
671 L:      linux-usb@vger.kernel.org
672 S:      Maintained
673 W:      http://www.linux-usb.org/SpeedTouch/
674 F:      drivers/usb/atm/speedtch.c
675 F:      drivers/usb/atm/usbatm.c
676
677 ALCHEMY AU1XX0 MMC DRIVER
678 M:      Manuel Lauss <manuel.lauss@gmail.com>
679 S:      Maintained
680 F:      drivers/mmc/host/au1xmmc.c
681
682 ALI1563 I2C DRIVER
683 M:      Rudolf Marek <r.marek@assembler.cz>
684 L:      linux-i2c@vger.kernel.org
685 S:      Maintained
686 F:      Documentation/i2c/busses/i2c-ali1563.rst
687 F:      drivers/i2c/busses/i2c-ali1563.c
688
689 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
690 M:      Tomislav Denis <tomislav.denis@avl.com>
691 L:      linux-iio@vger.kernel.org
692 S:      Maintained
693 W:      http://www.allsensors.com/
694 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
695 F:      drivers/iio/pressure/dlhl60d.c
696
697 ALLEGRO DVT VIDEO IP CORE DRIVER
698 M:      Michael Tretter <m.tretter@pengutronix.de>
699 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
700 L:      linux-media@vger.kernel.org
701 S:      Maintained
702 F:      drivers/staging/media/allegro-dvt/
703
704 ALLWINNER A10 CSI DRIVER
705 M:      Maxime Ripard <mripard@kernel.org>
706 L:      linux-media@vger.kernel.org
707 S:      Maintained
708 T:      git git://linuxtv.org/media_tree.git
709 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
710 F:      drivers/media/platform/sunxi/sun4i-csi/
711
712 ALLWINNER CPUFREQ DRIVER
713 M:      Yangtao Li <tiny.windzz@gmail.com>
714 L:      linux-pm@vger.kernel.org
715 S:      Maintained
716 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
717 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
718
719 ALLWINNER CRYPTO DRIVERS
720 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
721 L:      linux-crypto@vger.kernel.org
722 S:      Maintained
723 F:      drivers/crypto/allwinner/
724
725 ALLWINNER THERMAL DRIVER
726 M:      Vasily Khoruzhick <anarsoul@gmail.com>
727 M:      Yangtao Li <tiny.windzz@gmail.com>
728 L:      linux-pm@vger.kernel.org
729 S:      Maintained
730 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
731 F:      drivers/thermal/sun8i_thermal.c
732
733 ALLWINNER VPU DRIVER
734 M:      Maxime Ripard <mripard@kernel.org>
735 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      drivers/staging/media/sunxi/cedrus/
739
740 ALPHA PORT
741 M:      Richard Henderson <rth@twiddle.net>
742 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
743 M:      Matt Turner <mattst88@gmail.com>
744 L:      linux-alpha@vger.kernel.org
745 S:      Odd Fixes
746 F:      arch/alpha/
747
748 ALPS PS/2 TOUCHPAD DRIVER
749 R:      Pali Rohár <pali@kernel.org>
750 F:      drivers/input/mouse/alps.*
751
752 ALTERA I2C CONTROLLER DRIVER
753 M:      Thor Thayer <thor.thayer@linux.intel.com>
754 S:      Maintained
755 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
756 F:      drivers/i2c/busses/i2c-altera.c
757
758 ALTERA MAILBOX DRIVER
759 M:      Ley Foon Tan <ley.foon.tan@intel.com>
760 S:      Maintained
761 F:      drivers/mailbox/mailbox-altera.c
762
763 ALTERA PIO DRIVER
764 M:      Joyce Ooi <joyce.ooi@intel.com>
765 L:      linux-gpio@vger.kernel.org
766 S:      Maintained
767 F:      drivers/gpio/gpio-altera.c
768
769 ALTERA SYSTEM MANAGER DRIVER
770 M:      Thor Thayer <thor.thayer@linux.intel.com>
771 S:      Maintained
772 F:      drivers/mfd/altera-sysmgr.c
773 F:      include/linux/mfd/altera-sysmgr.h
774
775 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
776 M:      Thor Thayer <thor.thayer@linux.intel.com>
777 S:      Maintained
778 F:      drivers/gpio/gpio-altera-a10sr.c
779 F:      drivers/mfd/altera-a10sr.c
780 F:      drivers/reset/reset-a10sr.c
781 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
782 F:      include/linux/mfd/altera-a10sr.h
783
784 ALTERA TRIPLE SPEED ETHERNET DRIVER
785 M:      Joyce Ooi <joyce.ooi@intel.com>
786 L:      netdev@vger.kernel.org
787 S:      Maintained
788 F:      drivers/net/ethernet/altera/
789
790 ALTERA UART/JTAG UART SERIAL DRIVERS
791 M:      Tobias Klauser <tklauser@distanz.ch>
792 L:      linux-serial@vger.kernel.org
793 S:      Maintained
794 F:      drivers/tty/serial/altera_jtaguart.c
795 F:      drivers/tty/serial/altera_uart.c
796 F:      include/linux/altera_jtaguart.h
797 F:      include/linux/altera_uart.h
798
799 AMAZON ANNAPURNA LABS FIC DRIVER
800 M:      Talel Shenhar <talel@amazon.com>
801 S:      Maintained
802 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
803 F:      drivers/irqchip/irq-al-fic.c
804
805 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
806 M:      Talel Shenhar <talel@amazon.com>
807 M:      Talel Shenhar <talelshenhar@gmail.com>
808 S:      Maintained
809 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
810 F:      drivers/edac/al_mc_edac.c
811
812 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
813 M:      Talel Shenhar <talel@amazon.com>
814 S:      Maintained
815 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
816 F:      drivers/thermal/thermal_mmio.c
817
818 AMAZON ETHERNET DRIVERS
819 M:      Netanel Belgazal <netanel@amazon.com>
820 M:      Arthur Kiyanovski <akiyano@amazon.com>
821 R:      Guy Tzalik <gtzalik@amazon.com>
822 R:      Saeed Bishara <saeedb@amazon.com>
823 L:      netdev@vger.kernel.org
824 S:      Supported
825 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
826 F:      drivers/net/ethernet/amazon/
827
828 AMAZON RDMA EFA DRIVER
829 M:      Gal Pressman <galpress@amazon.com>
830 R:      Yossi Leybovich <sleybo@amazon.com>
831 L:      linux-rdma@vger.kernel.org
832 S:      Supported
833 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
834 F:      drivers/infiniband/hw/efa/
835 F:      include/uapi/rdma/efa-abi.h
836
837 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
838 M:      Tom Lendacky <thomas.lendacky@amd.com>
839 M:      John Allen <john.allen@amd.com>
840 L:      linux-crypto@vger.kernel.org
841 S:      Supported
842 F:      drivers/crypto/ccp/
843 F:      include/linux/ccp.h
844
845 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
846 M:      Brijesh Singh <brijesh.singh@amd.com>
847 M:      Tom Lendacky <thomas.lendacky@amd.com>
848 L:      linux-crypto@vger.kernel.org
849 S:      Supported
850 F:      drivers/crypto/ccp/sev*
851 F:      include/uapi/linux/psp-sev.h
852
853 AMD DISPLAY CORE
854 M:      Harry Wentland <harry.wentland@amd.com>
855 M:      Leo Li <sunpeng.li@amd.com>
856 L:      amd-gfx@lists.freedesktop.org
857 S:      Supported
858 T:      git git://people.freedesktop.org/~agd5f/linux
859 F:      drivers/gpu/drm/amd/display/
860
861 AMD ENERGY DRIVER
862 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
863 L:      linux-hwmon@vger.kernel.org
864 S:      Maintained
865 F:      Documentation/hwmon/amd_energy.rst
866 F:      drivers/hwmon/amd_energy.c
867
868 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
869 M:      Huang Rui <ray.huang@amd.com>
870 L:      linux-hwmon@vger.kernel.org
871 S:      Supported
872 F:      Documentation/hwmon/fam15h_power.rst
873 F:      drivers/hwmon/fam15h_power.c
874
875 AMD FCH GPIO DRIVER
876 M:      Enrico Weigelt, metux IT consult <info@metux.net>
877 L:      linux-gpio@vger.kernel.org
878 S:      Maintained
879 F:      drivers/gpio/gpio-amd-fch.c
880 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
881
882 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
883 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
884 S:      Orphan
885 F:      drivers/usb/gadget/udc/amd5536udc.*
886
887 AMD GEODE PROCESSOR/CHIPSET SUPPORT
888 M:      Andres Salomon <dilinger@queued.net>
889 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
890 S:      Supported
891 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
892 F:      arch/x86/include/asm/geode.h
893 F:      drivers/char/hw_random/geode-rng.c
894 F:      drivers/crypto/geode*
895 F:      drivers/video/fbdev/geode/
896
897 AMD IOMMU (AMD-VI)
898 M:      Joerg Roedel <joro@8bytes.org>
899 L:      iommu@lists.linux-foundation.org
900 S:      Maintained
901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
902 F:      drivers/iommu/amd/
903 F:      include/linux/amd-iommu.h
904
905 AMD KFD
906 M:      Felix Kuehling <Felix.Kuehling@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
911 F:      drivers/gpu/drm/amd/amdkfd/
912 F:      drivers/gpu/drm/amd/include/cik_structs.h
913 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
914 F:      drivers/gpu/drm/amd/include/v9_structs.h
915 F:      drivers/gpu/drm/amd/include/vi_structs.h
916 F:      include/uapi/linux/kfd_ioctl.h
917
918 AMD SPI DRIVER
919 M:      Sanjay R Mehta <sanju.mehta@amd.com>
920 S:      Maintained
921 F:      drivers/spi/spi-amd.c
922
923 AMD MP2 I2C DRIVER
924 M:      Elie Morisse <syniurge@gmail.com>
925 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
926 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
927 L:      linux-i2c@vger.kernel.org
928 S:      Maintained
929 F:      drivers/i2c/busses/i2c-amd-mp2*
930
931 AMD PMC DRIVER
932 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
933 L:      platform-driver-x86@vger.kernel.org
934 S:      Maintained
935 F:      drivers/platform/x86/amd-pmc.*
936
937 AMD POWERPLAY
938 M:      Evan Quan <evan.quan@amd.com>
939 L:      amd-gfx@lists.freedesktop.org
940 S:      Supported
941 T:      git git://people.freedesktop.org/~agd5f/linux
942 F:      drivers/gpu/drm/amd/pm/powerplay/
943
944 AMD SEATTLE DEVICE TREE SUPPORT
945 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
946 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
947 M:      Tom Lendacky <thomas.lendacky@amd.com>
948 S:      Supported
949 F:      arch/arm64/boot/dts/amd/
950
951 AMD XGBE DRIVER
952 M:      Tom Lendacky <thomas.lendacky@amd.com>
953 L:      netdev@vger.kernel.org
954 S:      Supported
955 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
956 F:      drivers/net/ethernet/amd/xgbe/
957
958 AMD SENSOR FUSION HUB DRIVER
959 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
960 M:      Sandeep Singh <sandeep.singh@amd.com>
961 L:      linux-input@vger.kernel.org
962 S:      Maintained
963 F:      Documentation/hid/amd-sfh*
964 F:      drivers/hid/amd-sfh-hid/
965
966 AMS AS73211 DRIVER
967 M:      Christian Eggers <ceggers@arri.de>
968 L:      linux-iio@vger.kernel.org
969 S:      Maintained
970 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
971 F:      drivers/iio/light/as73211.c
972
973 ANALOG DEVICES INC AD7192 DRIVER
974 M:      Alexandru Tachici <alexandru.tachici@analog.com>
975 L:      linux-iio@vger.kernel.org
976 S:      Supported
977 W:      http://ez.analog.com/community/linux-device-drivers
978 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
979 F:      drivers/iio/adc/ad7192.c
980
981 ANALOG DEVICES INC AD7292 DRIVER
982 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
983 L:      linux-iio@vger.kernel.org
984 S:      Supported
985 W:      http://ez.analog.com/community/linux-device-drivers
986 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
987 F:      drivers/iio/adc/ad7292.c
988
989 ANALOG DEVICES INC AD7768-1 DRIVER
990 M:      Michael Hennerich <Michael.Hennerich@analog.com>
991 L:      linux-iio@vger.kernel.org
992 S:      Supported
993 W:      http://ez.analog.com/community/linux-device-drivers
994 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
995 F:      drivers/iio/adc/ad7768-1.c
996
997 ANALOG DEVICES INC AD7780 DRIVER
998 M:      Michael Hennerich <Michael.Hennerich@analog.com>
999 M:      Renato Lui Geh <renatogeh@gmail.com>
1000 L:      linux-iio@vger.kernel.org
1001 S:      Supported
1002 W:      http://ez.analog.com/community/linux-device-drivers
1003 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1004 F:      drivers/iio/adc/ad7780.c
1005
1006 ANALOG DEVICES INC AD9389B DRIVER
1007 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1008 L:      linux-media@vger.kernel.org
1009 S:      Maintained
1010 F:      drivers/media/i2c/ad9389b*
1011
1012 ANALOG DEVICES INC ADGS1408 DRIVER
1013 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1014 S:      Supported
1015 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1016 F:      drivers/mux/adgs1408.c
1017
1018 ANALOG DEVICES INC ADIN DRIVER
1019 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1020 L:      netdev@vger.kernel.org
1021 S:      Supported
1022 W:      http://ez.analog.com/community/linux-device-drivers
1023 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1024 F:      drivers/net/phy/adin.c
1025
1026 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1027 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1028 L:      linux-iio@vger.kernel.org
1029 S:      Supported
1030 F:      drivers/iio/imu/adis.c
1031 F:      include/linux/iio/imu/adis.h
1032
1033 ANALOG DEVICES INC ADIS16460 DRIVER
1034 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1039 F:      drivers/iio/imu/adis16460.c
1040
1041 ANALOG DEVICES INC ADIS16475 DRIVER
1042 M:      Nuno Sa <nuno.sa@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 W:      http://ez.analog.com/community/linux-device-drivers
1045 S:      Supported
1046 F:      drivers/iio/imu/adis16475.c
1047 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1048
1049 ANALOG DEVICES INC ADM1177 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 L:      linux-hwmon@vger.kernel.org
1052 S:      Supported
1053 W:      http://ez.analog.com/community/linux-device-drivers
1054 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1055 F:      drivers/hwmon/adm1177.c
1056
1057 ANALOG DEVICES INC ADP5061 DRIVER
1058 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1059 L:      linux-pm@vger.kernel.org
1060 S:      Supported
1061 W:      http://ez.analog.com/community/linux-device-drivers
1062 F:      drivers/power/supply/adp5061.c
1063
1064 ANALOG DEVICES INC ADV7180 DRIVER
1065 M:      Lars-Peter Clausen <lars@metafoo.de>
1066 L:      linux-media@vger.kernel.org
1067 S:      Supported
1068 W:      http://ez.analog.com/community/linux-device-drivers
1069 F:      drivers/media/i2c/adv7180.c
1070 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1071
1072 ANALOG DEVICES INC ADV748X DRIVER
1073 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1074 L:      linux-media@vger.kernel.org
1075 S:      Maintained
1076 F:      drivers/media/i2c/adv748x/*
1077
1078 ANALOG DEVICES INC ADV7511 DRIVER
1079 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1080 L:      linux-media@vger.kernel.org
1081 S:      Maintained
1082 F:      drivers/media/i2c/adv7511*
1083
1084 ANALOG DEVICES INC ADV7604 DRIVER
1085 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1086 L:      linux-media@vger.kernel.org
1087 S:      Maintained
1088 F:      drivers/media/i2c/adv7604*
1089 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1090
1091 ANALOG DEVICES INC ADV7842 DRIVER
1092 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1093 L:      linux-media@vger.kernel.org
1094 S:      Maintained
1095 F:      drivers/media/i2c/adv7842*
1096
1097 ANALOG DEVICES INC ADXRS290 DRIVER
1098 M:      Nishant Malpani <nish.malpani25@gmail.com>
1099 L:      linux-iio@vger.kernel.org
1100 S:      Supported
1101 F:      drivers/iio/gyro/adxrs290.c
1102 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1103
1104 ANALOG DEVICES INC ASOC CODEC DRIVERS
1105 M:      Lars-Peter Clausen <lars@metafoo.de>
1106 M:      Nuno Sá <nuno.sa@analog.com>
1107 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1108 S:      Supported
1109 W:      http://wiki.analog.com/
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      sound/soc/codecs/ad1*
1112 F:      sound/soc/codecs/ad7*
1113 F:      sound/soc/codecs/adau*
1114 F:      sound/soc/codecs/adav*
1115 F:      sound/soc/codecs/sigmadsp.*
1116 F:      sound/soc/codecs/ssm*
1117
1118 ANALOG DEVICES INC DMA DRIVERS
1119 M:      Lars-Peter Clausen <lars@metafoo.de>
1120 S:      Supported
1121 W:      http://ez.analog.com/community/linux-device-drivers
1122 F:      drivers/dma/dma-axi-dmac.c
1123
1124 ANALOG DEVICES INC IIO DRIVERS
1125 M:      Lars-Peter Clausen <lars@metafoo.de>
1126 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1127 S:      Supported
1128 W:      http://wiki.analog.com/
1129 W:      http://ez.analog.com/community/linux-device-drivers
1130 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1131 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1132 F:      Documentation/devicetree/bindings/iio/*/adi,*
1133 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
1134 F:      drivers/iio/*/ad*
1135 F:      drivers/iio/adc/ltc249*
1136 F:      drivers/iio/amplifiers/hmc425a.c
1137 F:      drivers/staging/iio/*/ad*
1138 X:      drivers/iio/*/adjd*
1139
1140 ANALOGBITS PLL LIBRARIES
1141 M:      Paul Walmsley <paul.walmsley@sifive.com>
1142 S:      Supported
1143 F:      drivers/clk/analogbits/*
1144 F:      include/linux/clk/analogbits*
1145
1146 ANDES ARCHITECTURE
1147 M:      Nick Hu <nickhu@andestech.com>
1148 M:      Greentime Hu <green.hu@gmail.com>
1149 M:      Vincent Chen <deanbo422@gmail.com>
1150 S:      Supported
1151 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1152 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1153 F:      Documentation/devicetree/bindings/nds32/
1154 F:      arch/nds32/
1155 N:      nds32
1156 K:      nds32
1157
1158 ANDROID CONFIG FRAGMENTS
1159 M:      Rob Herring <robh@kernel.org>
1160 S:      Supported
1161 F:      kernel/configs/android*
1162
1163 ANDROID DRIVERS
1164 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1165 M:      Arve Hjønnevåg <arve@android.com>
1166 M:      Todd Kjos <tkjos@android.com>
1167 M:      Martijn Coenen <maco@android.com>
1168 M:      Joel Fernandes <joel@joelfernandes.org>
1169 M:      Christian Brauner <christian@brauner.io>
1170 M:      Hridya Valsaraju <hridya@google.com>
1171 M:      Suren Baghdasaryan <surenb@google.com>
1172 L:      devel@driverdev.osuosl.org
1173 S:      Supported
1174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1175 F:      drivers/android/
1176 F:      drivers/staging/android/
1177
1178 ANDROID GOLDFISH PIC DRIVER
1179 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1180 S:      Supported
1181 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1182 F:      drivers/irqchip/irq-goldfish-pic.c
1183
1184 ANDROID GOLDFISH RTC DRIVER
1185 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1186 S:      Supported
1187 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1188 F:      drivers/rtc/rtc-goldfish.c
1189
1190 AOA (Apple Onboard Audio) ALSA DRIVER
1191 M:      Johannes Berg <johannes@sipsolutions.net>
1192 L:      linuxppc-dev@lists.ozlabs.org
1193 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1194 S:      Maintained
1195 F:      sound/aoa/
1196
1197 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1198 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1199 L:      linux-iio@vger.kernel.org
1200 S:      Maintained
1201 F:      drivers/iio/adc/stx104.c
1202
1203 APM DRIVER
1204 M:      Jiri Kosina <jikos@kernel.org>
1205 S:      Odd fixes
1206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1207 F:      arch/x86/kernel/apm_32.c
1208 F:      drivers/char/apm-emulation.c
1209 F:      include/linux/apm_bios.h
1210 F:      include/uapi/linux/apm_bios.h
1211
1212 APPARMOR SECURITY MODULE
1213 M:      John Johansen <john.johansen@canonical.com>
1214 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1215 S:      Supported
1216 W:      wiki.apparmor.net
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1218 F:      Documentation/admin-guide/LSM/apparmor.rst
1219 F:      security/apparmor/
1220
1221 APPLE BCM5974 MULTITOUCH DRIVER
1222 M:      Henrik Rydberg <rydberg@bitmath.org>
1223 L:      linux-input@vger.kernel.org
1224 S:      Odd fixes
1225 F:      drivers/input/mouse/bcm5974.c
1226
1227 APPLE SMC DRIVER
1228 M:      Henrik Rydberg <rydberg@bitmath.org>
1229 L:      linux-hwmon@vger.kernel.org
1230 S:      Odd fixes
1231 F:      drivers/hwmon/applesmc.c
1232
1233 APPLETALK NETWORK LAYER
1234 L:      netdev@vger.kernel.org
1235 S:      Odd fixes
1236 F:      drivers/net/appletalk/
1237 F:      include/linux/atalk.h
1238 F:      include/uapi/linux/atalk.h
1239 F:      net/appletalk/
1240
1241 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1242 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1243 S:      Supported
1244 F:      arch/arm64/boot/dts/apm/
1245
1246 APPLIED MICRO (APM) X-GENE SOC EDAC
1247 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1248 S:      Supported
1249 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1250 F:      drivers/edac/xgene_edac.c
1251
1252 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1253 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1254 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1255 S:      Supported
1256 F:      drivers/net/ethernet/apm/xgene-v2/
1257
1258 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1259 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1260 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1261 M:      Quan Nguyen <quan@os.amperecomputing.com>
1262 S:      Supported
1263 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1264 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1265 F:      drivers/net/ethernet/apm/xgene/
1266 F:      drivers/net/mdio/mdio-xgene.c
1267
1268 APPLIED MICRO (APM) X-GENE SOC PMU
1269 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1270 S:      Supported
1271 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1272 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1273 F:      drivers/perf/xgene_pmu.c
1274
1275 APTINA CAMERA SENSOR PLL
1276 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1277 L:      linux-media@vger.kernel.org
1278 S:      Maintained
1279 F:      drivers/media/i2c/aptina-pll.*
1280
1281 AQUANTIA ETHERNET DRIVER (atlantic)
1282 M:      Igor Russkikh <irusskikh@marvell.com>
1283 L:      netdev@vger.kernel.org
1284 S:      Supported
1285 W:      https://www.marvell.com/
1286 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1287 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1288 F:      drivers/net/ethernet/aquantia/atlantic/
1289
1290 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1291 M:      Egor Pomozov <epomozov@marvell.com>
1292 L:      netdev@vger.kernel.org
1293 S:      Supported
1294 W:      http://www.aquantia.com
1295 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1296
1297 ARASAN NAND CONTROLLER DRIVER
1298 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1299 L:      linux-mtd@lists.infradead.org
1300 S:      Maintained
1301 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1302 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1303
1304 ARC FRAMEBUFFER DRIVER
1305 M:      Jaya Kumar <jayalk@intworks.biz>
1306 S:      Maintained
1307 F:      drivers/video/fbdev/arcfb.c
1308 F:      drivers/video/fbdev/core/fb_defio.c
1309
1310 ARC PGU DRM DRIVER
1311 M:      Alexey Brodkin <abrodkin@synopsys.com>
1312 S:      Supported
1313 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1314 F:      drivers/gpu/drm/arc/
1315
1316 ARCNET NETWORK LAYER
1317 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1318 L:      netdev@vger.kernel.org
1319 S:      Maintained
1320 F:      drivers/net/arcnet/
1321 F:      include/uapi/linux/if_arcnet.h
1322
1323 ARM ARCHITECTED TIMER DRIVER
1324 M:      Mark Rutland <mark.rutland@arm.com>
1325 M:      Marc Zyngier <maz@kernel.org>
1326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327 S:      Maintained
1328 F:      arch/arm/include/asm/arch_timer.h
1329 F:      arch/arm64/include/asm/arch_timer.h
1330 F:      drivers/clocksource/arm_arch_timer.c
1331
1332 ARM HDLCD DRM DRIVER
1333 M:      Liviu Dudau <liviu.dudau@arm.com>
1334 S:      Supported
1335 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1336 F:      drivers/gpu/drm/arm/hdlcd_*
1337
1338 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1339 M:      Linus Walleij <linus.walleij@linaro.org>
1340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341 S:      Maintained
1342 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1343 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1344 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1345 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1346 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1347 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1348 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1349 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1350 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1351 F:      arch/arm/boot/dts/arm-realview-*
1352 F:      arch/arm/boot/dts/integrator*
1353 F:      arch/arm/boot/dts/versatile*
1354 F:      arch/arm/mach-integrator/
1355 F:      arch/arm/mach-realview/
1356 F:      arch/arm/mach-versatile/
1357 F:      arch/arm/plat-versatile/
1358 F:      drivers/bus/arm-integrator-lm.c
1359 F:      drivers/clk/versatile/
1360 F:      drivers/i2c/busses/i2c-versatile.c
1361 F:      drivers/irqchip/irq-versatile-fpga.c
1362 F:      drivers/mtd/maps/physmap-versatile.*
1363 F:      drivers/power/reset/arm-versatile-reboot.c
1364 F:      drivers/soc/versatile/
1365
1366 ARM KOMEDA DRM-KMS DRIVER
1367 M:      James (Qian) Wang <james.qian.wang@arm.com>
1368 M:      Liviu Dudau <liviu.dudau@arm.com>
1369 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1370 L:      Mali DP Maintainers <malidp@foss.arm.com>
1371 S:      Supported
1372 T:      git git://anongit.freedesktop.org/drm/drm-misc
1373 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1374 F:      Documentation/gpu/komeda-kms.rst
1375 F:      drivers/gpu/drm/arm/display/include/
1376 F:      drivers/gpu/drm/arm/display/komeda/
1377
1378 ARM MALI PANFROST DRM DRIVER
1379 M:      Rob Herring <robh@kernel.org>
1380 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1381 R:      Steven Price <steven.price@arm.com>
1382 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1383 L:      dri-devel@lists.freedesktop.org
1384 S:      Supported
1385 T:      git git://anongit.freedesktop.org/drm/drm-misc
1386 F:      drivers/gpu/drm/panfrost/
1387 F:      include/uapi/drm/panfrost_drm.h
1388
1389 ARM MALI-DP DRM DRIVER
1390 M:      Liviu Dudau <liviu.dudau@arm.com>
1391 M:      Brian Starkey <brian.starkey@arm.com>
1392 L:      Mali DP Maintainers <malidp@foss.arm.com>
1393 S:      Supported
1394 T:      git git://anongit.freedesktop.org/drm/drm-misc
1395 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1396 F:      Documentation/gpu/afbc.rst
1397 F:      drivers/gpu/drm/arm/
1398
1399 ARM MFM AND FLOPPY DRIVERS
1400 M:      Ian Molton <spyro@f2s.com>
1401 S:      Maintained
1402 F:      arch/arm/include/asm/floppy.h
1403 F:      arch/arm/mach-rpc/floppydma.S
1404
1405 ARM PMU PROFILING AND DEBUGGING
1406 M:      Will Deacon <will@kernel.org>
1407 M:      Mark Rutland <mark.rutland@arm.com>
1408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1411 F:      Documentation/devicetree/bindings/perf/
1412 F:      arch/arm*/include/asm/hw_breakpoint.h
1413 F:      arch/arm*/include/asm/perf_event.h
1414 F:      arch/arm*/kernel/hw_breakpoint.c
1415 F:      arch/arm*/kernel/perf_*
1416 F:      arch/arm/oprofile/common.c
1417 F:      drivers/perf/
1418 F:      include/linux/perf/arm_pmu.h
1419
1420 ARM PORT
1421 M:      Russell King <linux@armlinux.org.uk>
1422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 S:      Odd Fixes
1424 W:      http://www.armlinux.org.uk/
1425 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1426 F:      arch/arm/
1427 X:      arch/arm/boot/dts/
1428
1429 ARM PRIMECELL AACI PL041 DRIVER
1430 M:      Russell King <linux@armlinux.org.uk>
1431 S:      Odd Fixes
1432 F:      sound/arm/aaci.*
1433
1434 ARM PRIMECELL BUS SUPPORT
1435 M:      Russell King <linux@armlinux.org.uk>
1436 S:      Odd Fixes
1437 F:      drivers/amba/
1438 F:      include/linux/amba/bus.h
1439
1440 ARM PRIMECELL CLCD PL110 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      drivers/video/fbdev/amba-clcd.*
1444
1445 ARM PRIMECELL KMI PL050 DRIVER
1446 M:      Russell King <linux@armlinux.org.uk>
1447 S:      Odd Fixes
1448 F:      drivers/input/serio/ambakmi.*
1449 F:      include/linux/amba/kmi.h
1450
1451 ARM PRIMECELL MMCI PL180/1 DRIVER
1452 M:      Russell King <linux@armlinux.org.uk>
1453 S:      Odd Fixes
1454 F:      drivers/mmc/host/mmci.*
1455 F:      include/linux/amba/mmci.h
1456
1457 ARM PRIMECELL SSP PL022 SPI DRIVER
1458 M:      Linus Walleij <linus.walleij@linaro.org>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1462 F:      drivers/spi/spi-pl022.c
1463
1464 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1465 M:      Russell King <linux@armlinux.org.uk>
1466 S:      Odd Fixes
1467 F:      drivers/tty/serial/amba-pl01*.c
1468 F:      include/linux/amba/serial.h
1469
1470 ARM PRIMECELL VIC PL190/PL192 DRIVER
1471 M:      Linus Walleij <linus.walleij@linaro.org>
1472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1473 S:      Maintained
1474 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1475 F:      drivers/irqchip/irq-vic.c
1476
1477 ARM SMC WATCHDOG DRIVER
1478 M:      Julius Werner <jwerner@chromium.org>
1479 R:      Evan Benn <evanbenn@chromium.org>
1480 S:      Maintained
1481 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1482 F:      drivers/watchdog/arm_smc_wdt.c
1483
1484 ARM SMMU DRIVERS
1485 M:      Will Deacon <will@kernel.org>
1486 R:      Robin Murphy <robin.murphy@arm.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1490 F:      drivers/iommu/arm/
1491 F:      drivers/iommu/io-pgtable-arm*
1492
1493 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1494 M:      Arnd Bergmann <arnd@arndb.de>
1495 M:      Olof Johansson <olof@lixom.net>
1496 M:      soc@kernel.org
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1500 F:      arch/arm/boot/dts/Makefile
1501 F:      arch/arm64/boot/dts/Makefile
1502
1503 ARM SUB-ARCHITECTURES
1504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1505 S:      Maintained
1506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1507 F:      arch/arm/mach-*/
1508 F:      arch/arm/plat-*/
1509
1510 ARM/ACTIONS SEMI ARCHITECTURE
1511 M:      Andreas Färber <afaerber@suse.de>
1512 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1514 S:      Maintained
1515 F:      Documentation/devicetree/bindings/arm/actions.yaml
1516 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1517 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1518 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1519 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1520 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1521 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1522 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1523 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1524 F:      arch/arm/boot/dts/owl-*
1525 F:      arch/arm/mach-actions/
1526 F:      arch/arm64/boot/dts/actions/
1527 F:      drivers/clk/actions/
1528 F:      drivers/clocksource/timer-owl*
1529 F:      drivers/dma/owl-dma.c
1530 F:      drivers/i2c/busses/i2c-owl.c
1531 F:      drivers/irqchip/irq-owl-sirq.c
1532 F:      drivers/mmc/host/owl-mmc.c
1533 F:      drivers/pinctrl/actions/*
1534 F:      drivers/soc/actions/
1535 F:      include/dt-bindings/power/owl-*
1536 F:      include/dt-bindings/reset/actions,*
1537 F:      include/linux/soc/actions/
1538 N:      owl
1539
1540 ARM/ADS SPHERE MACHINE SUPPORT
1541 M:      Lennert Buytenhek <kernel@wantstofly.org>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544
1545 ARM/AFEB9260 MACHINE SUPPORT
1546 M:      Sergey Lapin <slapin@ossfans.org>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 S:      Maintained
1549
1550 ARM/AJECO 1ARM MACHINE SUPPORT
1551 M:      Lennert Buytenhek <kernel@wantstofly.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554
1555 ARM/Allwinner SoC Clock Support
1556 M:      Emilio López <emilio@elopez.com.ar>
1557 S:      Maintained
1558 F:      drivers/clk/sunxi/
1559
1560 ARM/Allwinner sunXi SoC support
1561 M:      Maxime Ripard <mripard@kernel.org>
1562 M:      Chen-Yu Tsai <wens@csie.org>
1563 R:      Jernej Skrabec <jernej.skrabec@siol.net>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1567 F:      arch/arm/mach-sunxi/
1568 F:      arch/arm64/boot/dts/allwinner/
1569 F:      drivers/clk/sunxi-ng/
1570 F:      drivers/pinctrl/sunxi/
1571 F:      drivers/soc/sunxi/
1572 N:      sun[x456789]i
1573 N:      sun50i
1574
1575 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1576 M:      Neil Armstrong <narmstrong@baylibre.com>
1577 M:      Jerome Brunet <jbrunet@baylibre.com>
1578 L:      linux-amlogic@lists.infradead.org
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/clock/amlogic*
1581 F:      drivers/clk/meson/
1582 F:      include/dt-bindings/clock/gxbb*
1583 F:      include/dt-bindings/clock/meson*
1584
1585 ARM/Amlogic Meson SoC Crypto Drivers
1586 M:      Corentin Labbe <clabbe@baylibre.com>
1587 L:      linux-crypto@vger.kernel.org
1588 L:      linux-amlogic@lists.infradead.org
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/crypto/amlogic*
1591 F:      drivers/crypto/amlogic/
1592
1593 ARM/Amlogic Meson SoC Sound Drivers
1594 M:      Jerome Brunet <jbrunet@baylibre.com>
1595 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      Documentation/devicetree/bindings/sound/amlogic*
1598 F:      sound/soc/meson/
1599
1600 ARM/Amlogic Meson SoC support
1601 M:      Kevin Hilman <khilman@baylibre.com>
1602 R:      Neil Armstrong <narmstrong@baylibre.com>
1603 R:      Jerome Brunet <jbrunet@baylibre.com>
1604 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 L:      linux-amlogic@lists.infradead.org
1607 S:      Maintained
1608 W:      http://linux-meson.com/
1609 F:      arch/arm/boot/dts/meson*
1610 F:      arch/arm/mach-meson/
1611 F:      arch/arm64/boot/dts/amlogic/
1612 F:      drivers/mmc/host/meson*
1613 F:      drivers/pinctrl/meson/
1614 F:      drivers/rtc/rtc-meson*
1615 F:      drivers/soc/amlogic/
1616 N:      meson
1617
1618 ARM/Annapurna Labs ALPINE ARCHITECTURE
1619 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1620 M:      Antoine Tenart <atenart@kernel.org>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Maintained
1623 F:      arch/arm/boot/dts/alpine*
1624 F:      arch/arm/mach-alpine/
1625 F:      arch/arm64/boot/dts/amazon/
1626 F:      drivers/*/*alpine*
1627
1628 ARM/ARTPEC MACHINE SUPPORT
1629 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1630 M:      Lars Persson <lars.persson@axis.com>
1631 L:      linux-arm-kernel@axis.com
1632 S:      Maintained
1633 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1634 F:      arch/arm/boot/dts/artpec6*
1635 F:      arch/arm/mach-artpec
1636 F:      drivers/clk/axis
1637 F:      drivers/crypto/axis
1638 F:      drivers/mmc/host/usdhi6rol0.c
1639 F:      drivers/pinctrl/pinctrl-artpec*
1640
1641 ARM/ASPEED I2C DRIVER
1642 M:      Brendan Higgins <brendanhiggins@google.com>
1643 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1644 R:      Joel Stanley <joel@jms.id.au>
1645 L:      linux-i2c@vger.kernel.org
1646 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1649 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1650 F:      drivers/i2c/busses/i2c-aspeed.c
1651 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1652
1653 ARM/ASPEED MACHINE SUPPORT
1654 M:      Joel Stanley <joel@jms.id.au>
1655 R:      Andrew Jeffery <andrew@aj.id.au>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1658 S:      Supported
1659 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1661 F:      arch/arm/boot/dts/aspeed-*
1662 F:      arch/arm/mach-aspeed/
1663 N:      aspeed
1664
1665 ARM/BITMAIN ARCHITECTURE
1666 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1670 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1671 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1672 F:      arch/arm64/boot/dts/bitmain/
1673 F:      drivers/clk/clk-bm1880.c
1674 F:      drivers/pinctrl/pinctrl-bm1880.c
1675
1676 ARM/CALXEDA HIGHBANK ARCHITECTURE
1677 M:      Andre Przywara <andre.przywara@arm.com>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680 F:      arch/arm/boot/dts/ecx-*.dts*
1681 F:      arch/arm/boot/dts/highbank.dts
1682 F:      arch/arm/mach-highbank/
1683
1684 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1685 M:      Krzysztof Halasa <khalasa@piap.pl>
1686 S:      Maintained
1687 F:      arch/arm/mach-cns3xxx/
1688
1689 ARM/CAVIUM THUNDER NETWORK DRIVER
1690 M:      Sunil Goutham <sgoutham@marvell.com>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Supported
1693 F:      drivers/net/ethernet/cavium/thunder/
1694
1695 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1696 M:      Lukasz Majewski <lukma@denx.de>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 F:      arch/arm/mach-ep93xx/ts72xx.c
1700
1701 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1702 M:      Alexander Shiyan <shc_work@mail.ru>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Odd Fixes
1705 N:      clps711x
1706
1707 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1708 M:      Lennert Buytenhek <kernel@wantstofly.org>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711
1712 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1713 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1714 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1715 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1716 S:      Maintained
1717 F:      arch/arm/mach-ep93xx/
1718 F:      arch/arm/mach-ep93xx/include/mach/
1719
1720 ARM/CLKDEV SUPPORT
1721 M:      Russell King <linux@armlinux.org.uk>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 S:      Maintained
1724 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1725 F:      drivers/clk/clkdev.c
1726
1727 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1728 M:      Baruch Siach <baruch@tkos.co.il>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm/boot/dts/cx92755*
1732 N:      digicolor
1733
1734 ARM/CONTEC MICRO9 MACHINE SUPPORT
1735 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1736 S:      Maintained
1737 F:      arch/arm/mach-ep93xx/micro9.c
1738
1739 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1740 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1741 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1742 R:      Mike Leach <mike.leach@linaro.org>
1743 R:      Leo Yan <leo.yan@linaro.org>
1744 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1748 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1749 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1750 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1751 F:      Documentation/devicetree/bindings/arm/coresight.txt
1752 F:      Documentation/trace/coresight/*
1753 F:      drivers/hwtracing/coresight/*
1754 F:      include/dt-bindings/arm/coresight-cti-dt.h
1755 F:      tools/perf/arch/arm/util/auxtrace.c
1756 F:      tools/perf/arch/arm/util/cs-etm.c
1757 F:      tools/perf/arch/arm/util/cs-etm.h
1758 F:      tools/perf/arch/arm/util/pmu.c
1759 F:      tools/perf/util/cs-etm-decoder/*
1760 F:      tools/perf/util/cs-etm.*
1761
1762 ARM/CORGI MACHINE SUPPORT
1763 M:      Richard Purdie <rpurdie@rpsys.net>
1764 S:      Maintained
1765
1766 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1767 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1768 M:      Linus Walleij <linus.walleij@linaro.org>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 S:      Maintained
1771 T:      git git://github.com/ulli-kroll/linux.git
1772 F:      Documentation/devicetree/bindings/arm/gemini.txt
1773 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1774 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1775 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1776 F:      arch/arm/mach-gemini/
1777 F:      drivers/net/ethernet/cortina/
1778 F:      drivers/pinctrl/pinctrl-gemini.c
1779 F:      drivers/rtc/rtc-ftrtc010.c
1780
1781 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1782 M:      Barry Song <baohua@kernel.org>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1786 F:      arch/arm/boot/dts/prima2*
1787 F:      arch/arm/mach-prima2/
1788 F:      drivers/clk/sirf/
1789 F:      drivers/clocksource/timer-atlas7.c
1790 F:      drivers/clocksource/timer-prima2.c
1791 X:      drivers/gnss
1792 N:      [^a-z]sirf
1793
1794 ARM/CZ.NIC TURRIS MOX SUPPORT
1795 M:      Marek Behun <marek.behun@nic.cz>
1796 S:      Maintained
1797 W:      http://mox.turris.cz
1798 F:      Documentation/ABI/testing/debugfs-moxtet
1799 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1800 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1801 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1802 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1803 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1804 F:      drivers/bus/moxtet.c
1805 F:      drivers/firmware/turris-mox-rwtm.c
1806 F:      drivers/gpio/gpio-moxtet.c
1807 F:      include/linux/moxtet.h
1808
1809 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1810 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1811 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 N:      efm32
1815
1816 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1817 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1819 S:      Maintained
1820 F:      arch/arm/mach-pxa/ezx.c
1821
1822 ARM/FARADAY FA526 PORT
1823 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.berlios.de/gemini-board
1827 F:      arch/arm/mm/*-fa*
1828
1829 ARM/FOOTBRIDGE ARCHITECTURE
1830 M:      Russell King <linux@armlinux.org.uk>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 W:      http://www.armlinux.org.uk/
1834 F:      arch/arm/include/asm/hardware/dec21285.h
1835 F:      arch/arm/mach-footbridge/
1836
1837 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1838 M:      Shawn Guo <shawnguo@kernel.org>
1839 M:      Sascha Hauer <s.hauer@pengutronix.de>
1840 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1841 R:      Fabio Estevam <festevam@gmail.com>
1842 R:      NXP Linux Team <linux-imx@nxp.com>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1846 X:      drivers/media/i2c/
1847 N:      imx
1848 N:      mxs
1849
1850 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1851 M:      Shawn Guo <shawnguo@kernel.org>
1852 M:      Li Yang <leoyang.li@nxp.com>
1853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1854 S:      Maintained
1855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1856 F:      arch/arm/boot/dts/ls1021a*
1857 F:      arch/arm64/boot/dts/freescale/fsl-*
1858 F:      arch/arm64/boot/dts/freescale/qoriq-*
1859
1860 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1861 M:      Shawn Guo <shawnguo@kernel.org>
1862 M:      Sascha Hauer <s.hauer@pengutronix.de>
1863 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1864 R:      Stefan Agner <stefan@agner.ch>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1868 F:      arch/arm/boot/dts/vf*
1869 F:      arch/arm/mach-imx/*vf610*
1870
1871 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1872 M:      Lennert Buytenhek <kernel@wantstofly.org>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 S:      Maintained
1875
1876 ARM/GUMSTIX MACHINE SUPPORT
1877 M:      Steve Sakoman <sakoman@gmail.com>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880
1881 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1882 M:      Philipp Zabel <philipp.zabel@gmail.com>
1883 M:      Paul Parsons <lost.distance@yahoo.com>
1884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885 S:      Maintained
1886 F:      arch/arm/mach-pxa/hx4700.c
1887 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1888 F:      sound/soc/pxa/hx4700.c
1889
1890 ARM/HISILICON SOC SUPPORT
1891 M:      Wei Xu <xuwei5@hisilicon.com>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Supported
1894 W:      http://www.hisilicon.com
1895 T:      git git://github.com/hisilicon/linux-hisi.git
1896 F:      arch/arm/boot/dts/hi3*
1897 F:      arch/arm/boot/dts/hip*
1898 F:      arch/arm/boot/dts/hisi*
1899 F:      arch/arm/mach-hisi/
1900 F:      arch/arm64/boot/dts/hisilicon/
1901
1902 ARM/HP JORNADA 7XX MACHINE SUPPORT
1903 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1904 S:      Maintained
1905 W:      www.jlime.com
1906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1907 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1908 F:      arch/arm/mach-sa1100/jornada720.c
1909
1910 ARM/IGEP MACHINE SUPPORT
1911 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1912 M:      Javier Martinez Canillas <javier@dowhile0.org>
1913 L:      linux-omap@vger.kernel.org
1914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1915 S:      Maintained
1916 F:      arch/arm/boot/dts/omap3-igep*
1917
1918 ARM/INCOME PXA270 SUPPORT
1919 M:      Marek Vasut <marek.vasut@gmail.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1923
1924 ARM/INTEL IOP32X ARM ARCHITECTURE
1925 M:      Lennert Buytenhek <kernel@wantstofly.org>
1926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S:      Maintained
1928
1929 ARM/INTEL IQ81342EX MACHINE SUPPORT
1930 M:      Lennert Buytenhek <kernel@wantstofly.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933
1934 ARM/INTEL IXDP2850 MACHINE SUPPORT
1935 M:      Lennert Buytenhek <kernel@wantstofly.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938
1939 ARM/INTEL IXP4XX ARM ARCHITECTURE
1940 M:      Linus Walleij <linusw@kernel.org>
1941 M:      Imre Kaloz <kaloz@openwrt.org>
1942 M:      Krzysztof Halasa <khalasa@piap.pl>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1946 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1947 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1948 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1949 F:      arch/arm/mach-ixp4xx/
1950 F:      drivers/clocksource/timer-ixp4xx.c
1951 F:      drivers/gpio/gpio-ixp4xx.c
1952 F:      drivers/irqchip/irq-ixp4xx.c
1953 F:      include/linux/irqchip/irq-ixp4xx.h
1954 F:      include/linux/platform_data/timer-ixp4xx.h
1955
1956 ARM/INTEL KEEMBAY ARCHITECTURE
1957 M:      Paul J. Murphy <paul.j.murphy@intel.com>
1958 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
1959 S:      Maintained
1960 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
1961 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
1962 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
1963
1964 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1965 M:      Jonathan Cameron <jic23@cam.ac.uk>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968 F:      arch/arm/mach-pxa/stargate2.c
1969 F:      drivers/pcmcia/pxa2xx_stargate2.c
1970
1971 ARM/INTEL XSC3 (MANZANO) ARM CORE
1972 M:      Lennert Buytenhek <kernel@wantstofly.org>
1973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 S:      Maintained
1975
1976 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1977 M:      Lennert Buytenhek <kernel@wantstofly.org>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980
1981 ARM/LG1K ARCHITECTURE
1982 M:      Chanho Min <chanho.min@lge.com>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985 F:      arch/arm64/boot/dts/lg/
1986
1987 ARM/LOGICPD PXA270 MACHINE SUPPORT
1988 M:      Lennert Buytenhek <kernel@wantstofly.org>
1989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 S:      Maintained
1991
1992 ARM/LPC18XX ARCHITECTURE
1993 M:      Vladimir Zapolskiy <vz@mleia.com>
1994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1995 S:      Maintained
1996 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1997 F:      arch/arm/boot/dts/lpc43*
1998 F:      drivers/i2c/busses/i2c-lpc2k.c
1999 F:      drivers/memory/pl172.c
2000 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2001 F:      drivers/rtc/rtc-lpc24xx.c
2002 N:      lpc18xx
2003
2004 ARM/LPC32XX SOC SUPPORT
2005 M:      Vladimir Zapolskiy <vz@mleia.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2009 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2010 F:      arch/arm/boot/dts/lpc32*
2011 F:      arch/arm/mach-lpc32xx/
2012 F:      drivers/i2c/busses/i2c-pnx.c
2013 F:      drivers/net/ethernet/nxp/lpc_eth.c
2014 F:      drivers/usb/host/ohci-nxp.c
2015 F:      drivers/watchdog/pnx4008_wdt.c
2016 N:      lpc32xx
2017
2018 ARM/MAGICIAN MACHINE SUPPORT
2019 M:      Philipp Zabel <philipp.zabel@gmail.com>
2020 S:      Maintained
2021
2022 ARM/Marvell Dove/MV78xx0/Orion SOC support
2023 M:      Andrew Lunn <andrew@lunn.ch>
2024 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2025 M:      Gregory Clement <gregory.clement@bootlin.com>
2026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2027 S:      Maintained
2028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2029 F:      Documentation/devicetree/bindings/soc/dove/
2030 F:      arch/arm/boot/dts/dove*
2031 F:      arch/arm/boot/dts/orion5x*
2032 F:      arch/arm/mach-dove/
2033 F:      arch/arm/mach-mv78xx0/
2034 F:      arch/arm/mach-orion5x/
2035 F:      arch/arm/plat-orion/
2036 F:      drivers/soc/dove/
2037
2038 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2039 M:      Andrew Lunn <andrew@lunn.ch>
2040 M:      Gregory Clement <gregory.clement@bootlin.com>
2041 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Maintained
2044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2045 F:      arch/arm/boot/dts/armada*
2046 F:      arch/arm/boot/dts/kirkwood*
2047 F:      arch/arm/configs/mvebu_*_defconfig
2048 F:      arch/arm/mach-mvebu/
2049 F:      arch/arm64/boot/dts/marvell/armada*
2050 F:      arch/arm64/boot/dts/marvell/cn913*
2051 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2052 F:      drivers/cpufreq/armada-8k-cpufreq.c
2053 F:      drivers/cpufreq/mvebu-cpufreq.c
2054 F:      drivers/irqchip/irq-armada-370-xp.c
2055 F:      drivers/irqchip/irq-mvebu-*
2056 F:      drivers/pinctrl/mvebu/
2057 F:      drivers/rtc/rtc-armada38x.c
2058
2059 ARM/Mediatek RTC DRIVER
2060 M:      Eddie Huang <eddie.huang@mediatek.com>
2061 M:      Sean Wang <sean.wang@mediatek.com>
2062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2064 S:      Maintained
2065 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2066 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2067 F:      drivers/rtc/rtc-mt2712.c
2068 F:      drivers/rtc/rtc-mt6397.c
2069 F:      drivers/rtc/rtc-mt7622.c
2070
2071 ARM/Mediatek SoC support
2072 M:      Matthias Brugger <matthias.bgg@gmail.com>
2073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2075 S:      Maintained
2076 W:      https://mtk.wiki.kernel.org/
2077 C:      irc://chat.freenode.net/linux-mediatek
2078 F:      arch/arm/boot/dts/mt6*
2079 F:      arch/arm/boot/dts/mt7*
2080 F:      arch/arm/boot/dts/mt8*
2081 F:      arch/arm/mach-mediatek/
2082 F:      arch/arm64/boot/dts/mediatek/
2083 F:      drivers/soc/mediatek/
2084 N:      mtk
2085 N:      mt[678]
2086 K:      mediatek
2087
2088 ARM/Mediatek USB3 PHY DRIVER
2089 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2092 S:      Maintained
2093 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2094 F:      drivers/phy/mediatek/
2095
2096 ARM/Microchip (AT91) SoC support
2097 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2098 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2099 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Supported
2102 W:      http://www.linux4sam.org
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2104 F:      arch/arm/boot/dts/at91*.dts
2105 F:      arch/arm/boot/dts/at91*.dtsi
2106 F:      arch/arm/boot/dts/sama*.dts
2107 F:      arch/arm/boot/dts/sama*.dtsi
2108 F:      arch/arm/include/debug/at91.S
2109 F:      arch/arm/mach-at91/
2110 F:      drivers/memory/atmel*
2111 F:      drivers/watchdog/sama5d4_wdt.c
2112 F:      include/soc/at91/
2113 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2114 X:      drivers/net/wireless/atmel/
2115 N:      at91
2116 N:      atmel
2117
2118 ARM/Microchip Sparx5 SoC support
2119 M:      Lars Povlsen <lars.povlsen@microchip.com>
2120 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2121 M:      UNGLinuxDriver@microchip.com
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Supported
2124 T:      git git://github.com/microchip-ung/linux-upstream.git
2125 F:      arch/arm64/boot/dts/microchip/
2126 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2127 N:      sparx5
2128
2129 Microchip Timer Counter Block (TCB) Capture Driver
2130 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 L:      linux-iio@vger.kernel.org
2133 S:      Maintained
2134 F:      drivers/counter/microchip-tcb-capture.c
2135
2136 ARM/MIOA701 MACHINE SUPPORT
2137 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2139 S:      Maintained
2140 F:      arch/arm/mach-pxa/mioa701.c
2141
2142 ARM/MStar/Sigmastar Armv7 SoC support
2143 M:      Daniel Palmer <daniel@thingy.jp>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 W:      http://linux-chenxing.org/
2147 F:      Documentation/devicetree/bindings/arm/mstar/*
2148 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2149 F:      arch/arm/boot/dts/mstar-*
2150 F:      arch/arm/mach-mstar/
2151 F:      drivers/gpio/gpio-msc313.c
2152 F:      include/dt-bindings/gpio/msc313-gpio.h
2153
2154 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2155 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2156 S:      Maintained
2157
2158 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2159 M:      Linus Walleij <linus.walleij@linaro.org>
2160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 S:      Maintained
2162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2163 F:      Documentation/devicetree/bindings/arm/ste-*
2164 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2165 F:      Documentation/devicetree/bindings/arm/ux500/
2166 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2167 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2168 F:      arch/arm/boot/dts/ste-*
2169 F:      arch/arm/mach-nomadik/
2170 F:      arch/arm/mach-u300/
2171 F:      arch/arm/mach-ux500/
2172 F:      drivers/clk/clk-nomadik.c
2173 F:      drivers/clk/clk-u300.c
2174 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2175 F:      drivers/clocksource/timer-u300.c
2176 F:      drivers/dma/coh901318*
2177 F:      drivers/dma/ste_dma40*
2178 F:      drivers/hwspinlock/u8500_hsem.c
2179 F:      drivers/i2c/busses/i2c-nomadik.c
2180 F:      drivers/i2c/busses/i2c-stu300.c
2181 F:      drivers/iio/adc/ab8500-gpadc.c
2182 F:      drivers/mfd/ab3100*
2183 F:      drivers/mfd/ab8500*
2184 F:      drivers/mfd/abx500*
2185 F:      drivers/mfd/db8500*
2186 F:      drivers/mfd/dbx500*
2187 F:      drivers/pinctrl/nomadik/
2188 F:      drivers/pinctrl/pinctrl-coh901*
2189 F:      drivers/pinctrl/pinctrl-u300.c
2190 F:      drivers/rtc/rtc-ab3100.c
2191 F:      drivers/rtc/rtc-ab8500.c
2192 F:      drivers/rtc/rtc-coh901331.c
2193 F:      drivers/rtc/rtc-pl031.c
2194 F:      drivers/soc/ux500/
2195 F:      drivers/watchdog/coh901327_wdt.c
2196
2197 ARM/NUVOTON NPCM ARCHITECTURE
2198 M:      Avi Fishman <avifishman70@gmail.com>
2199 M:      Tomer Maimon <tmaimon77@gmail.com>
2200 M:      Tali Perry <tali.perry1@gmail.com>
2201 R:      Patrick Venture <venture@google.com>
2202 R:      Nancy Yuen <yuenn@google.com>
2203 R:      Benjamin Fair <benjaminfair@google.com>
2204 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2205 S:      Supported
2206 F:      Documentation/devicetree/bindings/*/*/*npcm*
2207 F:      Documentation/devicetree/bindings/*/*npcm*
2208 F:      arch/arm/boot/dts/nuvoton-npcm*
2209 F:      arch/arm/mach-npcm/
2210 F:      drivers/*/*npcm*
2211 F:      drivers/*/*/*npcm*
2212 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2213
2214 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2215 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2216 S:      Orphan
2217 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2218 F:      arch/arm/mach-s3c/gta02.h
2219 F:      arch/arm/mach-s3c/mach-gta02.c
2220
2221 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2222 M:      Alexander Clouter <alex@digriz.org.uk>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 W:      http://www.digriz.org.uk/ts78xx/kernel
2226 F:      arch/arm/mach-orion5x/ts78xx-*
2227
2228 ARM/OXNAS platform support
2229 M:      Neil Armstrong <narmstrong@baylibre.com>
2230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2231 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2232 S:      Maintained
2233 F:      arch/arm/boot/dts/ox8*.dts*
2234 F:      arch/arm/mach-oxnas/
2235 F:      drivers/power/reset/oxnas-restart.c
2236 N:      oxnas
2237
2238 ARM/PALM TREO SUPPORT
2239 M:      Tomas Cech <sleep_walker@suse.com>
2240 L:      linux-arm-kernel@lists.infradead.org
2241 S:      Maintained
2242 W:      http://hackndev.com
2243 F:      arch/arm/mach-pxa/palmtreo.*
2244
2245 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2246 M:      Marek Vasut <marek.vasut@gmail.com>
2247 L:      linux-arm-kernel@lists.infradead.org
2248 S:      Maintained
2249 W:      http://hackndev.com
2250 F:      arch/arm/mach-pxa/include/mach/palmld.h
2251 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2252 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2253 F:      arch/arm/mach-pxa/palmld.c
2254 F:      arch/arm/mach-pxa/palmt5.*
2255 F:      arch/arm/mach-pxa/palmtc.c
2256 F:      arch/arm/mach-pxa/palmte2.*
2257 F:      arch/arm/mach-pxa/palmtx.c
2258
2259 ARM/PALMZ72 SUPPORT
2260 M:      Sergey Lapin <slapin@ossfans.org>
2261 L:      linux-arm-kernel@lists.infradead.org
2262 S:      Maintained
2263 W:      http://hackndev.com
2264 F:      arch/arm/mach-pxa/palmz72.*
2265
2266 ARM/PLEB SUPPORT
2267 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2268 S:      Maintained
2269 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2270
2271 ARM/PT DIGITAL BOARD PORT
2272 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2274 S:      Maintained
2275 W:      http://www.armlinux.org.uk/
2276
2277 ARM/QUALCOMM SUPPORT
2278 M:      Andy Gross <agross@kernel.org>
2279 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2280 L:      linux-arm-msm@vger.kernel.org
2281 S:      Maintained
2282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2283 F:      Documentation/devicetree/bindings/*/qcom*
2284 F:      Documentation/devicetree/bindings/soc/qcom/
2285 F:      arch/arm/boot/dts/qcom-*.dts
2286 F:      arch/arm/boot/dts/qcom-*.dtsi
2287 F:      arch/arm/mach-qcom/
2288 F:      arch/arm64/boot/dts/qcom/
2289 F:      drivers/*/*/qcom*
2290 F:      drivers/*/*/qcom/
2291 F:      drivers/*/pm8???-*
2292 F:      drivers/*/qcom*
2293 F:      drivers/*/qcom/
2294 F:      drivers/bluetooth/btqcomsmd.c
2295 F:      drivers/clocksource/timer-qcom.c
2296 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2297 F:      drivers/extcon/extcon-qcom*
2298 F:      drivers/i2c/busses/i2c-qcom-geni.c
2299 F:      drivers/i2c/busses/i2c-qup.c
2300 F:      drivers/iommu/msm*
2301 F:      drivers/mfd/ssbi.c
2302 F:      drivers/mmc/host/mmci_qcom*
2303 F:      drivers/mmc/host/sdhci-msm.c
2304 F:      drivers/pci/controller/dwc/pcie-qcom.c
2305 F:      drivers/phy/qualcomm/
2306 F:      drivers/power/*/msm*
2307 F:      drivers/reset/reset-qcom-*
2308 F:      drivers/scsi/ufs/ufs-qcom*
2309 F:      drivers/spi/spi-geni-qcom.c
2310 F:      drivers/spi/spi-qcom-qspi.c
2311 F:      drivers/spi/spi-qup.c
2312 F:      drivers/tty/serial/msm_serial.c
2313 F:      drivers/usb/dwc3/dwc3-qcom.c
2314 F:      include/dt-bindings/*/qcom*
2315 F:      include/linux/*/qcom*
2316
2317 ARM/RADISYS ENP2611 MACHINE SUPPORT
2318 M:      Lennert Buytenhek <kernel@wantstofly.org>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321
2322 ARM/RDA MICRO ARCHITECTURE
2323 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2325 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2326 S:      Maintained
2327 F:      Documentation/devicetree/bindings/arm/rda.yaml
2328 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2329 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2330 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2331 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2332 F:      arch/arm/boot/dts/rda8810pl-*
2333 F:      drivers/clocksource/timer-rda.c
2334 F:      drivers/gpio/gpio-rda.c
2335 F:      drivers/irqchip/irq-rda-intc.c
2336 F:      drivers/tty/serial/rda-uart.c
2337
2338 ARM/REALTEK ARCHITECTURE
2339 M:      Andreas Färber <afaerber@suse.de>
2340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2341 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2342 S:      Maintained
2343 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2344 F:      arch/arm/boot/dts/rtd*
2345 F:      arch/arm/mach-realtek/
2346 F:      arch/arm64/boot/dts/realtek/
2347
2348 ARM/RENESAS ARM64 ARCHITECTURE
2349 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2350 M:      Magnus Damm <magnus.damm@gmail.com>
2351 L:      linux-renesas-soc@vger.kernel.org
2352 S:      Supported
2353 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2355 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2356 F:      arch/arm64/boot/dts/renesas/
2357 F:      drivers/soc/renesas/
2358 F:      include/linux/soc/renesas/
2359
2360 ARM/RISCPC ARCHITECTURE
2361 M:      Russell King <linux@armlinux.org.uk>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Maintained
2364 W:      http://www.armlinux.org.uk/
2365 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2366 F:      arch/arm/include/asm/hardware/ioc.h
2367 F:      arch/arm/include/asm/hardware/iomd.h
2368 F:      arch/arm/include/asm/hardware/memc.h
2369 F:      arch/arm/mach-rpc/
2370 F:      drivers/net/ethernet/8390/etherh.c
2371 F:      drivers/net/ethernet/i825xx/ether1*
2372 F:      drivers/net/ethernet/seeq/ether3*
2373 F:      drivers/scsi/arm/
2374
2375 ARM/Rockchip SoC support
2376 M:      Heiko Stuebner <heiko@sntech.de>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 L:      linux-rockchip@lists.infradead.org
2379 S:      Maintained
2380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2381 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2382 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2383 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2384 F:      arch/arm/boot/dts/rk3*
2385 F:      arch/arm/boot/dts/rv1108*
2386 F:      arch/arm/mach-rockchip/
2387 F:      drivers/*/*/*rockchip*
2388 F:      drivers/*/*rockchip*
2389 F:      drivers/clk/rockchip/
2390 F:      drivers/i2c/busses/i2c-rk3x.c
2391 F:      sound/soc/rockchip/
2392 N:      rockchip
2393
2394 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2395 M:      Krzysztof Kozlowski <krzk@kernel.org>
2396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2397 L:      linux-samsung-soc@vger.kernel.org
2398 S:      Maintained
2399 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2400 F:      Documentation/arm/samsung/
2401 F:      Documentation/devicetree/bindings/arm/samsung/
2402 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2403 F:      arch/arm/boot/dts/exynos*
2404 F:      arch/arm/boot/dts/s3c*
2405 F:      arch/arm/boot/dts/s5p*
2406 F:      arch/arm/mach-exynos*/
2407 F:      arch/arm/mach-s3c/
2408 F:      arch/arm/mach-s5p*/
2409 F:      arch/arm64/boot/dts/exynos/
2410 F:      drivers/*/*/*s3c24*
2411 F:      drivers/*/*s3c24*
2412 F:      drivers/*/*s3c64xx*
2413 F:      drivers/*/*s5pv210*
2414 F:      drivers/memory/samsung/
2415 F:      drivers/soc/samsung/
2416 F:      drivers/tty/serial/samsung*
2417 F:      include/linux/soc/samsung/
2418 N:      exynos
2419 N:      s3c2410
2420 N:      s3c64xx
2421 N:      s5pv210
2422
2423 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2424 M:      Andrzej Hajda <a.hajda@samsung.com>
2425 L:      linux-arm-kernel@lists.infradead.org
2426 L:      linux-media@vger.kernel.org
2427 S:      Maintained
2428 F:      drivers/media/platform/s5p-g2d/
2429
2430 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2431 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2432 L:      linux-samsung-soc@vger.kernel.org
2433 L:      linux-media@vger.kernel.org
2434 S:      Maintained
2435 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2436 F:      drivers/media/cec/platform/s5p/
2437
2438 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2439 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2440 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2441 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2442 L:      linux-arm-kernel@lists.infradead.org
2443 L:      linux-media@vger.kernel.org
2444 S:      Maintained
2445 F:      drivers/media/platform/s5p-jpeg/
2446
2447 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2448 M:      Andrzej Hajda <a.hajda@samsung.com>
2449 L:      linux-arm-kernel@lists.infradead.org
2450 L:      linux-media@vger.kernel.org
2451 S:      Maintained
2452 F:      drivers/media/platform/s5p-mfc/
2453
2454 ARM/SHMOBILE ARM ARCHITECTURE
2455 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2456 M:      Magnus Damm <magnus.damm@gmail.com>
2457 L:      linux-renesas-soc@vger.kernel.org
2458 S:      Supported
2459 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2461 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2462 F:      arch/arm/boot/dts/emev2*
2463 F:      arch/arm/boot/dts/gr-peach*
2464 F:      arch/arm/boot/dts/iwg20d-q7*
2465 F:      arch/arm/boot/dts/r7s*
2466 F:      arch/arm/boot/dts/r8a*
2467 F:      arch/arm/boot/dts/r9a*
2468 F:      arch/arm/boot/dts/sh*
2469 F:      arch/arm/configs/shmobile_defconfig
2470 F:      arch/arm/include/debug/renesas-scif.S
2471 F:      arch/arm/mach-shmobile/
2472 F:      drivers/soc/renesas/
2473 F:      include/linux/soc/renesas/
2474
2475 ARM/SOCFPGA ARCHITECTURE
2476 M:      Dinh Nguyen <dinguyen@kernel.org>
2477 S:      Maintained
2478 W:      http://www.rocketboards.org
2479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2480 F:      arch/arm/boot/dts/socfpga*
2481 F:      arch/arm/configs/socfpga_defconfig
2482 F:      arch/arm/mach-socfpga/
2483 F:      arch/arm64/boot/dts/altera/
2484 F:      arch/arm64/boot/dts/intel/
2485
2486 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2487 M:      Dinh Nguyen <dinguyen@kernel.org>
2488 S:      Maintained
2489 F:      drivers/clk/socfpga/
2490
2491 ARM/SOCFPGA EDAC SUPPORT
2492 M:      Dinh Nguyen <dinguyen@kernel.org>
2493 S:      Maintained
2494 F:      drivers/edac/altera_edac.[ch]
2495
2496 ARM/SPREADTRUM SoC SUPPORT
2497 M:      Orson Zhai <orsonzhai@gmail.com>
2498 M:      Baolin Wang <baolin.wang7@gmail.com>
2499 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2500 S:      Maintained
2501 F:      arch/arm64/boot/dts/sprd
2502 N:      sprd
2503 N:      sc27xx
2504 N:      sc2731
2505
2506 ARM/STI ARCHITECTURE
2507 M:      Patrice Chotard <patrice.chotard@st.com>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 W:      http://www.stlinux.com
2511 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2512 F:      arch/arm/boot/dts/sti*
2513 F:      arch/arm/mach-sti/
2514 F:      drivers/ata/ahci_st.c
2515 F:      drivers/char/hw_random/st-rng.c
2516 F:      drivers/clocksource/arm_global_timer.c
2517 F:      drivers/clocksource/clksrc_st_lpc.c
2518 F:      drivers/cpufreq/sti-cpufreq.c
2519 F:      drivers/dma/st_fdma*
2520 F:      drivers/i2c/busses/i2c-st.c
2521 F:      drivers/media/platform/sti/c8sectpfe/
2522 F:      drivers/media/rc/st_rc.c
2523 F:      drivers/mmc/host/sdhci-st.c
2524 F:      drivers/phy/st/phy-miphy28lp.c
2525 F:      drivers/phy/st/phy-stih407-usb.c
2526 F:      drivers/pinctrl/pinctrl-st.c
2527 F:      drivers/remoteproc/st_remoteproc.c
2528 F:      drivers/remoteproc/st_slim_rproc.c
2529 F:      drivers/reset/sti/
2530 F:      drivers/rtc/rtc-st-lpc.c
2531 F:      drivers/tty/serial/st-asc.c
2532 F:      drivers/usb/dwc3/dwc3-st.c
2533 F:      drivers/usb/host/ehci-st.c
2534 F:      drivers/usb/host/ohci-st.c
2535 F:      drivers/watchdog/st_lpc_wdt.c
2536 F:      include/linux/remoteproc/st_slim_rproc.h
2537
2538 ARM/STM32 ARCHITECTURE
2539 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2540 M:      Alexandre Torgue <alexandre.torgue@st.com>
2541 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2543 S:      Maintained
2544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2545 F:      arch/arm/boot/dts/stm32*
2546 F:      arch/arm/mach-stm32/
2547 F:      drivers/clocksource/armv7m_systick.c
2548 N:      stm32
2549 N:      stm
2550
2551 ARM/Synaptics SoC support
2552 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2553 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2555 S:      Maintained
2556 F:      arch/arm/boot/dts/berlin*
2557 F:      arch/arm/mach-berlin/
2558 F:      arch/arm64/boot/dts/synaptics/
2559
2560 ARM/TANGO ARCHITECTURE
2561 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2562 M:      Mans Rullgard <mans@mansr.com>
2563 L:      linux-arm-kernel@lists.infradead.org
2564 S:      Odd Fixes
2565 N:      tango
2566
2567 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2568 M:      Lennert Buytenhek <kernel@wantstofly.org>
2569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2570 S:      Maintained
2571
2572 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2573 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2574 L:      linux-tegra@vger.kernel.org
2575 L:      linux-media@vger.kernel.org
2576 S:      Maintained
2577 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2578 F:      drivers/media/cec/platform/tegra/
2579
2580 ARM/TETON BGA MACHINE SUPPORT
2581 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S:      Maintained
2584
2585 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2586 M:      Santosh Shilimkar <ssantosh@kernel.org>
2587 L:      linux-kernel@vger.kernel.org
2588 S:      Maintained
2589 F:      drivers/memory/*emif*
2590
2591 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2592 M:      Santosh Shilimkar <ssantosh@kernel.org>
2593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2594 S:      Maintained
2595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2596 F:      arch/arm/boot/dts/keystone-*
2597 F:      arch/arm/mach-keystone/
2598
2599 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2600 M:      Santosh Shilimkar <ssantosh@kernel.org>
2601 L:      linux-kernel@vger.kernel.org
2602 S:      Maintained
2603 F:      drivers/clk/keystone/
2604
2605 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2606 M:      Santosh Shilimkar <ssantosh@kernel.org>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 L:      linux-kernel@vger.kernel.org
2609 S:      Maintained
2610 F:      drivers/clocksource/timer-keystone.c
2611
2612 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2613 M:      Santosh Shilimkar <ssantosh@kernel.org>
2614 L:      linux-kernel@vger.kernel.org
2615 S:      Maintained
2616 F:      drivers/power/reset/keystone-reset.c
2617
2618 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2619 M:      Tero Kristo <t-kristo@ti.com>
2620 M:      Nishanth Menon <nm@ti.com>
2621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2622 S:      Supported
2623 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2624 F:      arch/arm64/boot/dts/ti/Makefile
2625 F:      arch/arm64/boot/dts/ti/k3-*
2626 F:      include/dt-bindings/pinctrl/k3.h
2627
2628 ARM/THECUS N2100 MACHINE SUPPORT
2629 M:      Lennert Buytenhek <kernel@wantstofly.org>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Maintained
2632
2633 ARM/TOSA MACHINE SUPPORT
2634 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2635 M:      Dirk Opfer <dirk@opfer-online.de>
2636 S:      Maintained
2637
2638 ARM/TOSHIBA VISCONTI ARCHITECTURE
2639 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2641 S:      Supported
2642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2643 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2644 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2645 F:      arch/arm64/boot/dts/toshiba/
2646 F:      drivers/pinctrl/visconti/
2647 N:      visconti
2648
2649 ARM/UNIPHIER ARCHITECTURE
2650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2651 S:      Orphan
2652 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2653 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2654 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2655 F:      arch/arm/boot/dts/uniphier*
2656 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2657 F:      arch/arm/mach-uniphier/
2658 F:      arch/arm/mm/cache-uniphier.c
2659 F:      arch/arm64/boot/dts/socionext/uniphier*
2660 F:      drivers/bus/uniphier-system-bus.c
2661 F:      drivers/clk/uniphier/
2662 F:      drivers/dma/uniphier-mdmac.c
2663 F:      drivers/gpio/gpio-uniphier.c
2664 F:      drivers/i2c/busses/i2c-uniphier*
2665 F:      drivers/irqchip/irq-uniphier-aidet.c
2666 F:      drivers/mmc/host/uniphier-sd.c
2667 F:      drivers/pinctrl/uniphier/
2668 F:      drivers/reset/reset-uniphier.c
2669 F:      drivers/tty/serial/8250/8250_uniphier.c
2670 N:      uniphier
2671
2672 ARM/VERSATILE EXPRESS PLATFORM
2673 M:      Liviu Dudau <liviu.dudau@arm.com>
2674 M:      Sudeep Holla <sudeep.holla@arm.com>
2675 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      */*/*/vexpress*
2679 F:      */*/vexpress*
2680 F:      arch/arm/boot/dts/vexpress*
2681 F:      arch/arm/mach-vexpress/
2682 F:      arch/arm64/boot/dts/arm/
2683 F:      drivers/clk/versatile/clk-vexpress-osc.c
2684 F:      drivers/clocksource/timer-versatile.c
2685 N:      mps2
2686
2687 ARM/VFP SUPPORT
2688 M:      Russell King <linux@armlinux.org.uk>
2689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2690 S:      Maintained
2691 W:      http://www.armlinux.org.uk/
2692 F:      arch/arm/vfp/
2693
2694 ARM/VOIPAC PXA270 SUPPORT
2695 M:      Marek Vasut <marek.vasut@gmail.com>
2696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2697 S:      Maintained
2698 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2699 F:      arch/arm/mach-pxa/vpac270.c
2700
2701 ARM/VT8500 ARM ARCHITECTURE
2702 M:      Tony Prisk <linux@prisktech.co.nz>
2703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2704 S:      Maintained
2705 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2706 F:      arch/arm/mach-vt8500/
2707 F:      drivers/clocksource/timer-vt8500.c
2708 F:      drivers/i2c/busses/i2c-wmt.c
2709 F:      drivers/mmc/host/wmt-sdmmc.c
2710 F:      drivers/pwm/pwm-vt8500.c
2711 F:      drivers/rtc/rtc-vt8500.c
2712 F:      drivers/tty/serial/vt8500_serial.c
2713 F:      drivers/usb/host/ehci-platform.c
2714 F:      drivers/usb/host/uhci-platform.c
2715 F:      drivers/video/fbdev/vt8500lcdfb.*
2716 F:      drivers/video/fbdev/wm8505fb*
2717 F:      drivers/video/fbdev/wmt_ge_rops.*
2718
2719 ARM/ZIPIT Z2 SUPPORT
2720 M:      Marek Vasut <marek.vasut@gmail.com>
2721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2722 S:      Maintained
2723 F:      arch/arm/mach-pxa/include/mach/z2.h
2724 F:      arch/arm/mach-pxa/z2.c
2725
2726 ARM/ZTE ARCHITECTURE
2727 M:      Jun Nie <jun.nie@linaro.org>
2728 M:      Shawn Guo <shawnguo@kernel.org>
2729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2730 S:      Maintained
2731 F:      Documentation/devicetree/bindings/arm/zte.yaml
2732 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2733 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2734 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2735 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2736 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2737 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2738 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2739 F:      Documentation/devicetree/bindings/soc/zte/
2740 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2741 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2742 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2743 F:      arch/arm/boot/dts/zx2967*
2744 F:      arch/arm/mach-zx/
2745 F:      arch/arm64/boot/dts/zte/
2746 F:      drivers/clk/zte/
2747 F:      drivers/dma/zx_dma.c
2748 F:      drivers/gpio/gpio-zx.c
2749 F:      drivers/i2c/busses/i2c-zx2967.c
2750 F:      drivers/mmc/host/dw_mmc-zx.*
2751 F:      drivers/pinctrl/zte/
2752 F:      drivers/soc/zte/
2753 F:      drivers/thermal/zx2967_thermal.c
2754 F:      drivers/watchdog/zx2967_wdt.c
2755 F:      include/dt-bindings/clock/zx2967*.h
2756 F:      include/dt-bindings/soc/zte,*.h
2757 F:      sound/soc/codecs/zx_aud96p22.c
2758 F:      sound/soc/zte/
2759
2760 ARM/ZYNQ ARCHITECTURE
2761 M:      Michal Simek <michal.simek@xilinx.com>
2762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 S:      Supported
2764 W:      http://wiki.xilinx.com
2765 T:      git https://github.com/Xilinx/linux-xlnx.git
2766 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2767 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2768 F:      arch/arm/mach-zynq/
2769 F:      drivers/block/xsysace.c
2770 F:      drivers/clocksource/timer-cadence-ttc.c
2771 F:      drivers/cpuidle/cpuidle-zynq.c
2772 F:      drivers/edac/synopsys_edac.c
2773 F:      drivers/i2c/busses/i2c-cadence.c
2774 F:      drivers/i2c/busses/i2c-xiic.c
2775 F:      drivers/mmc/host/sdhci-of-arasan.c
2776 N:      zynq
2777 N:      xilinx
2778
2779 ARM64 PORT (AARCH64 ARCHITECTURE)
2780 M:      Catalin Marinas <catalin.marinas@arm.com>
2781 M:      Will Deacon <will@kernel.org>
2782 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2783 S:      Maintained
2784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2785 F:      Documentation/arm64/
2786 F:      arch/arm64/
2787 F:      tools/testing/selftests/arm64/
2788 X:      arch/arm64/boot/dts/
2789
2790 AS3645A LED FLASH CONTROLLER DRIVER
2791 M:      Sakari Ailus <sakari.ailus@iki.fi>
2792 L:      linux-leds@vger.kernel.org
2793 S:      Maintained
2794 F:      drivers/leds/leds-as3645a.c
2795
2796 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2797 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2798 L:      linux-media@vger.kernel.org
2799 S:      Maintained
2800 T:      git git://linuxtv.org/media_tree.git
2801 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2802 F:      drivers/media/i2c/ak7375.c
2803
2804 ASAHI KASEI AK8974 DRIVER
2805 M:      Linus Walleij <linus.walleij@linaro.org>
2806 L:      linux-iio@vger.kernel.org
2807 S:      Supported
2808 W:      http://www.akm.com/
2809 F:      drivers/iio/magnetometer/ak8974.c
2810
2811 ASC7621 HARDWARE MONITOR DRIVER
2812 M:      George Joseph <george.joseph@fairview5.com>
2813 L:      linux-hwmon@vger.kernel.org
2814 S:      Maintained
2815 F:      Documentation/hwmon/asc7621.rst
2816 F:      drivers/hwmon/asc7621.c
2817
2818 ASPEED PINCTRL DRIVERS
2819 M:      Andrew Jeffery <andrew@aj.id.au>
2820 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2821 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2822 L:      linux-gpio@vger.kernel.org
2823 S:      Maintained
2824 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2825 F:      drivers/pinctrl/aspeed/
2826
2827 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2828 M:      Eddie James <eajames@linux.ibm.com>
2829 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2830 S:      Maintained
2831 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2832 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2833 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2834
2835 ASPEED VIDEO ENGINE DRIVER
2836 M:      Eddie James <eajames@linux.ibm.com>
2837 L:      linux-media@vger.kernel.org
2838 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2839 S:      Maintained
2840 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2841 F:      drivers/media/platform/aspeed-video.c
2842
2843 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2844 M:      Corentin Chary <corentin.chary@gmail.com>
2845 L:      acpi4asus-user@lists.sourceforge.net
2846 L:      platform-driver-x86@vger.kernel.org
2847 S:      Maintained
2848 W:      http://acpi4asus.sf.net
2849 F:      drivers/platform/x86/asus*.c
2850 F:      drivers/platform/x86/eeepc*.c
2851
2852 ASUS WIRELESS RADIO CONTROL DRIVER
2853 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2854 L:      platform-driver-x86@vger.kernel.org
2855 S:      Maintained
2856 F:      drivers/platform/x86/asus-wireless.c
2857
2858 ASYMMETRIC KEYS
2859 M:      David Howells <dhowells@redhat.com>
2860 L:      keyrings@vger.kernel.org
2861 S:      Maintained
2862 F:      Documentation/crypto/asymmetric-keys.rst
2863 F:      crypto/asymmetric_keys/
2864 F:      include/crypto/pkcs7.h
2865 F:      include/crypto/public_key.h
2866 F:      include/linux/verification.h
2867
2868 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2869 R:      Dan Williams <dan.j.williams@intel.com>
2870 S:      Odd fixes
2871 W:      http://sourceforge.net/projects/xscaleiop
2872 F:      Documentation/crypto/async-tx-api.rst
2873 F:      crypto/async_tx/
2874 F:      drivers/dma/
2875 F:      include/linux/async_tx.h
2876 F:      include/linux/dmaengine.h
2877
2878 AT24 EEPROM DRIVER
2879 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2880 L:      linux-i2c@vger.kernel.org
2881 S:      Maintained
2882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2883 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2884 F:      drivers/misc/eeprom/at24.c
2885
2886 ATA OVER ETHERNET (AOE) DRIVER
2887 M:      "Justin Sanders" <justin@coraid.com>
2888 S:      Supported
2889 W:      http://www.openaoe.org/
2890 F:      Documentation/admin-guide/aoe/
2891 F:      drivers/block/aoe/
2892
2893 ATHEROS 71XX/9XXX GPIO DRIVER
2894 M:      Alban Bedel <albeu@free.fr>
2895 S:      Maintained
2896 W:      https://github.com/AlbanBedel/linux
2897 T:      git git://github.com/AlbanBedel/linux
2898 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2899 F:      drivers/gpio/gpio-ath79.c
2900
2901 ATHEROS 71XX/9XXX USB PHY DRIVER
2902 M:      Alban Bedel <albeu@free.fr>
2903 S:      Maintained
2904 W:      https://github.com/AlbanBedel/linux
2905 T:      git git://github.com/AlbanBedel/linux
2906 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2907 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2908
2909 ATHEROS ATH GENERIC UTILITIES
2910 M:      Kalle Valo <kvalo@codeaurora.org>
2911 L:      linux-wireless@vger.kernel.org
2912 S:      Supported
2913 F:      drivers/net/wireless/ath/*
2914
2915 ATHEROS ATH5K WIRELESS DRIVER
2916 M:      Jiri Slaby <jirislaby@kernel.org>
2917 M:      Nick Kossifidis <mickflemm@gmail.com>
2918 M:      Luis Chamberlain <mcgrof@kernel.org>
2919 L:      linux-wireless@vger.kernel.org
2920 S:      Maintained
2921 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2922 F:      drivers/net/wireless/ath/ath5k/
2923
2924 ATHEROS ATH6KL WIRELESS DRIVER
2925 M:      Kalle Valo <kvalo@codeaurora.org>
2926 L:      linux-wireless@vger.kernel.org
2927 S:      Supported
2928 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2930 F:      drivers/net/wireless/ath/ath6kl/
2931
2932 ATI_REMOTE2 DRIVER
2933 M:      Ville Syrjala <syrjala@sci.fi>
2934 S:      Maintained
2935 F:      drivers/input/misc/ati_remote2.c
2936
2937 ATK0110 HWMON DRIVER
2938 M:      Luca Tettamanti <kronos.it@gmail.com>
2939 L:      linux-hwmon@vger.kernel.org
2940 S:      Maintained
2941 F:      drivers/hwmon/asus_atk0110.c
2942
2943 ATLX ETHERNET DRIVERS
2944 M:      Chris Snook <chris.snook@gmail.com>
2945 L:      netdev@vger.kernel.org
2946 S:      Maintained
2947 W:      http://sourceforge.net/projects/atl1
2948 W:      http://atl1.sourceforge.net
2949 F:      drivers/net/ethernet/atheros/
2950
2951 ATM
2952 M:      Chas Williams <3chas3@gmail.com>
2953 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2954 L:      netdev@vger.kernel.org
2955 S:      Maintained
2956 W:      http://linux-atm.sourceforge.net
2957 F:      drivers/atm/
2958 F:      include/linux/atm*
2959 F:      include/uapi/linux/atm*
2960
2961 ATMEL MACB ETHERNET DRIVER
2962 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2963 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2964 S:      Supported
2965 F:      drivers/net/ethernet/cadence/
2966
2967 ATMEL MAXTOUCH DRIVER
2968 M:      Nick Dyer <nick@shmanahar.org>
2969 S:      Maintained
2970 T:      git git://github.com/ndyer/linux.git
2971 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
2972 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2973
2974 ATMEL WIRELESS DRIVER
2975 M:      Simon Kelley <simon@thekelleys.org.uk>
2976 L:      linux-wireless@vger.kernel.org
2977 S:      Maintained
2978 W:      http://www.thekelleys.org.uk/atmel
2979 W:      http://atmelwlandriver.sourceforge.net/
2980 F:      drivers/net/wireless/atmel/atmel*
2981
2982 ATOMIC INFRASTRUCTURE
2983 M:      Will Deacon <will@kernel.org>
2984 M:      Peter Zijlstra <peterz@infradead.org>
2985 R:      Boqun Feng <boqun.feng@gmail.com>
2986 L:      linux-kernel@vger.kernel.org
2987 S:      Maintained
2988 F:      arch/*/include/asm/atomic*.h
2989 F:      include/*/atomic*.h
2990 F:      include/linux/refcount.h
2991 F:      Documentation/atomic_*.txt
2992 F:      scripts/atomic/
2993
2994 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2995 M:      Bradley Grove <linuxdrivers@attotech.com>
2996 L:      linux-scsi@vger.kernel.org
2997 S:      Supported
2998 W:      http://www.attotech.com
2999 F:      drivers/scsi/esas2r
3000
3001 ATUSB IEEE 802.15.4 RADIO DRIVER
3002 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3003 L:      linux-wpan@vger.kernel.org
3004 S:      Maintained
3005 F:      drivers/net/ieee802154/at86rf230.h
3006 F:      drivers/net/ieee802154/atusb.c
3007 F:      drivers/net/ieee802154/atusb.h
3008
3009 AUDIT SUBSYSTEM
3010 M:      Paul Moore <paul@paul-moore.com>
3011 M:      Eric Paris <eparis@redhat.com>
3012 L:      linux-audit@redhat.com (moderated for non-subscribers)
3013 S:      Supported
3014 W:      https://github.com/linux-audit
3015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3016 F:      include/linux/audit.h
3017 F:      include/uapi/linux/audit.h
3018 F:      kernel/audit*
3019
3020 AUXILIARY DISPLAY DRIVERS
3021 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3022 S:      Maintained
3023 F:      drivers/auxdisplay/
3024 F:      include/linux/cfag12864b.h
3025
3026 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3027 M:      Andreas Klinger <ak@it-klinger.de>
3028 L:      linux-iio@vger.kernel.org
3029 S:      Maintained
3030 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3031 F:      drivers/iio/adc/hx711.c
3032
3033 AX.25 NETWORK LAYER
3034 M:      Ralf Baechle <ralf@linux-mips.org>
3035 L:      linux-hams@vger.kernel.org
3036 S:      Maintained
3037 W:      http://www.linux-ax25.org/
3038 F:      include/net/ax25.h
3039 F:      include/uapi/linux/ax25.h
3040 F:      net/ax25/
3041
3042 AXENTIA ARM DEVICES
3043 M:      Peter Rosin <peda@axentia.se>
3044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3045 S:      Maintained
3046 F:      arch/arm/boot/dts/at91-linea.dtsi
3047 F:      arch/arm/boot/dts/at91-natte.dtsi
3048 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3049 F:      arch/arm/boot/dts/at91-tse850-3.dts
3050
3051 AXENTIA ASOC DRIVERS
3052 M:      Peter Rosin <peda@axentia.se>
3053 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3054 S:      Maintained
3055 F:      Documentation/devicetree/bindings/sound/axentia,*
3056 F:      sound/soc/atmel/tse850-pcm5142.c
3057
3058 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3059 M:      Nuno Sá <nuno.sa@analog.com>
3060 L:      linux-hwmon@vger.kernel.org
3061 S:      Supported
3062 W:      http://ez.analog.com/community/linux-device-drivers
3063 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3064 F:      drivers/hwmon/axi-fan-control.c
3065
3066 AXXIA I2C CONTROLLER
3067 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3068 L:      linux-i2c@vger.kernel.org
3069 S:      Maintained
3070 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3071 F:      drivers/i2c/busses/i2c-axxia.c
3072
3073 AZ6007 DVB DRIVER
3074 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3075 L:      linux-media@vger.kernel.org
3076 S:      Maintained
3077 W:      https://linuxtv.org
3078 T:      git git://linuxtv.org/media_tree.git
3079 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3080
3081 AZTECH FM RADIO RECEIVER DRIVER
3082 M:      Hans Verkuil <hverkuil@xs4all.nl>
3083 L:      linux-media@vger.kernel.org
3084 S:      Maintained
3085 W:      https://linuxtv.org
3086 T:      git git://linuxtv.org/media_tree.git
3087 F:      drivers/media/radio/radio-aztech*
3088
3089 B43 WIRELESS DRIVER
3090 L:      linux-wireless@vger.kernel.org
3091 L:      b43-dev@lists.infradead.org
3092 S:      Odd Fixes
3093 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3094 F:      drivers/net/wireless/broadcom/b43/
3095
3096 B43LEGACY WIRELESS DRIVER
3097 M:      Larry Finger <Larry.Finger@lwfinger.net>
3098 L:      linux-wireless@vger.kernel.org
3099 L:      b43-dev@lists.infradead.org
3100 S:      Maintained
3101 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3102 F:      drivers/net/wireless/broadcom/b43legacy/
3103
3104 BACKLIGHT CLASS/SUBSYSTEM
3105 M:      Lee Jones <lee.jones@linaro.org>
3106 M:      Daniel Thompson <daniel.thompson@linaro.org>
3107 M:      Jingoo Han <jingoohan1@gmail.com>
3108 L:      dri-devel@lists.freedesktop.org
3109 S:      Maintained
3110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3111 F:      Documentation/ABI/stable/sysfs-class-backlight
3112 F:      Documentation/ABI/testing/sysfs-class-backlight
3113 F:      Documentation/devicetree/bindings/leds/backlight
3114 F:      drivers/video/backlight/
3115 F:      include/linux/backlight.h
3116 F:      include/linux/pwm_backlight.h
3117
3118 BATMAN ADVANCED
3119 M:      Marek Lindner <mareklindner@neomailbox.ch>
3120 M:      Simon Wunderlich <sw@simonwunderlich.de>
3121 M:      Antonio Quartulli <a@unstable.cc>
3122 M:      Sven Eckelmann <sven@narfation.org>
3123 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3124 S:      Maintained
3125 W:      https://www.open-mesh.org/
3126 Q:      https://patchwork.open-mesh.org/project/batman/list/
3127 B:      https://www.open-mesh.org/projects/batman-adv/issues
3128 C:      irc://chat.freenode.net/batman
3129 T:      git https://git.open-mesh.org/linux-merge.git
3130 F:      Documentation/networking/batman-adv.rst
3131 F:      include/uapi/linux/batadv_packet.h
3132 F:      include/uapi/linux/batman_adv.h
3133 F:      net/batman-adv/
3134
3135 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3136 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3137 L:      linux-hams@vger.kernel.org
3138 S:      Maintained
3139 W:      http://www.baycom.org/~tom/ham/ham.html
3140 F:      drivers/net/hamradio/baycom*
3141
3142 BCACHE (BLOCK LAYER CACHE)
3143 M:      Coly Li <colyli@suse.de>
3144 M:      Kent Overstreet <kent.overstreet@gmail.com>
3145 L:      linux-bcache@vger.kernel.org
3146 S:      Maintained
3147 W:      http://bcache.evilpiepirate.org
3148 C:      irc://irc.oftc.net/bcache
3149 F:      drivers/md/bcache/
3150
3151 BDISP ST MEDIA DRIVER
3152 M:      Fabien Dessenne <fabien.dessenne@st.com>
3153 L:      linux-media@vger.kernel.org
3154 S:      Supported
3155 W:      https://linuxtv.org
3156 T:      git git://linuxtv.org/media_tree.git
3157 F:      drivers/media/platform/sti/bdisp
3158
3159 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3160 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3161 L:      netdev@vger.kernel.org
3162 S:      Maintained
3163 F:      drivers/net/ethernet/ec_bhf.c
3164
3165 BEFS FILE SYSTEM
3166 M:      Luis de Bethencourt <luisbg@kernel.org>
3167 M:      Salah Triki <salah.triki@gmail.com>
3168 S:      Maintained
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3170 F:      Documentation/filesystems/befs.rst
3171 F:      fs/befs/
3172
3173 BFQ I/O SCHEDULER
3174 M:      Paolo Valente <paolo.valente@linaro.org>
3175 M:      Jens Axboe <axboe@kernel.dk>
3176 L:      linux-block@vger.kernel.org
3177 S:      Maintained
3178 F:      Documentation/block/bfq-iosched.rst
3179 F:      block/bfq-*
3180
3181 BFS FILE SYSTEM
3182 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3183 S:      Maintained
3184 F:      Documentation/filesystems/bfs.rst
3185 F:      fs/bfs/
3186 F:      include/uapi/linux/bfs_fs.h
3187
3188 BLINKM RGB LED DRIVER
3189 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3190 S:      Maintained
3191 F:      drivers/leds/leds-blinkm.c
3192
3193 BLOCK LAYER
3194 M:      Jens Axboe <axboe@kernel.dk>
3195 L:      linux-block@vger.kernel.org
3196 S:      Maintained
3197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3198 F:      block/
3199 F:      drivers/block/
3200 F:      fs/block_dev.c
3201 F:      include/linux/blk*
3202 F:      kernel/trace/blktrace.c
3203 F:      lib/sbitmap.c
3204
3205 BLOCK2MTD DRIVER
3206 M:      Joern Engel <joern@lazybastard.org>
3207 L:      linux-mtd@lists.infradead.org
3208 S:      Maintained
3209 F:      drivers/mtd/devices/block2mtd.c
3210
3211 BLUETOOTH DRIVERS
3212 M:      Marcel Holtmann <marcel@holtmann.org>
3213 M:      Johan Hedberg <johan.hedberg@gmail.com>
3214 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3215 L:      linux-bluetooth@vger.kernel.org
3216 S:      Supported
3217 W:      http://www.bluez.org/
3218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3220 F:      drivers/bluetooth/
3221
3222 BLUETOOTH SUBSYSTEM
3223 M:      Marcel Holtmann <marcel@holtmann.org>
3224 M:      Johan Hedberg <johan.hedberg@gmail.com>
3225 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3226 L:      linux-bluetooth@vger.kernel.org
3227 S:      Supported
3228 W:      http://www.bluez.org/
3229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3231 F:      include/net/bluetooth/
3232 F:      net/bluetooth/
3233
3234 BONDING DRIVER
3235 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3236 M:      Veaceslav Falico <vfalico@gmail.com>
3237 M:      Andy Gospodarek <andy@greyhouse.net>
3238 L:      netdev@vger.kernel.org
3239 S:      Supported
3240 W:      http://sourceforge.net/projects/bonding/
3241 F:      drivers/net/bonding/
3242 F:      include/uapi/linux/if_bonding.h
3243
3244 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3245 M:      Dan Robertson <dan@dlrobertson.com>
3246 L:      linux-iio@vger.kernel.org
3247 S:      Maintained
3248 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3249 F:      drivers/iio/accel/bma400*
3250
3251 BPF (Safe dynamic programs and tools)
3252 M:      Alexei Starovoitov <ast@kernel.org>
3253 M:      Daniel Borkmann <daniel@iogearbox.net>
3254 M:      Andrii Nakryiko <andrii@kernel.org>
3255 R:      Martin KaFai Lau <kafai@fb.com>
3256 R:      Song Liu <songliubraving@fb.com>
3257 R:      Yonghong Song <yhs@fb.com>
3258 R:      John Fastabend <john.fastabend@gmail.com>
3259 R:      KP Singh <kpsingh@kernel.org>
3260 L:      netdev@vger.kernel.org
3261 L:      bpf@vger.kernel.org
3262 S:      Supported
3263 W:      https://bpf.io/
3264 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3267 F:      Documentation/bpf/
3268 F:      Documentation/networking/filter.rst
3269 F:      arch/*/net/*
3270 F:      include/linux/bpf*
3271 F:      include/linux/filter.h
3272 F:      include/trace/events/xdp.h
3273 F:      include/uapi/linux/bpf*
3274 F:      include/uapi/linux/filter.h
3275 F:      kernel/bpf/
3276 F:      kernel/trace/bpf_trace.c
3277 F:      lib/test_bpf.c
3278 F:      net/bpf/
3279 F:      net/core/filter.c
3280 F:      net/sched/act_bpf.c
3281 F:      net/sched/cls_bpf.c
3282 F:      samples/bpf/
3283 F:      tools/bpf/
3284 F:      tools/lib/bpf/
3285 F:      tools/testing/selftests/bpf/
3286 N:      bpf
3287 K:      bpf
3288
3289 BPF JIT for ARM
3290 M:      Shubham Bansal <illusionist.neo@gmail.com>
3291 L:      netdev@vger.kernel.org
3292 L:      bpf@vger.kernel.org
3293 S:      Maintained
3294 F:      arch/arm/net/
3295
3296 BPF JIT for ARM64
3297 M:      Daniel Borkmann <daniel@iogearbox.net>
3298 M:      Alexei Starovoitov <ast@kernel.org>
3299 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3300 L:      netdev@vger.kernel.org
3301 L:      bpf@vger.kernel.org
3302 S:      Supported
3303 F:      arch/arm64/net/
3304
3305 BPF JIT for MIPS (32-BIT AND 64-BIT)
3306 M:      Paul Burton <paulburton@kernel.org>
3307 L:      netdev@vger.kernel.org
3308 L:      bpf@vger.kernel.org
3309 S:      Maintained
3310 F:      arch/mips/net/
3311
3312 BPF JIT for NFP NICs
3313 M:      Jakub Kicinski <kuba@kernel.org>
3314 L:      netdev@vger.kernel.org
3315 L:      bpf@vger.kernel.org
3316 S:      Supported
3317 F:      drivers/net/ethernet/netronome/nfp/bpf/
3318
3319 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3320 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3321 M:      Sandipan Das <sandipan@linux.ibm.com>
3322 L:      netdev@vger.kernel.org
3323 L:      bpf@vger.kernel.org
3324 S:      Maintained
3325 F:      arch/powerpc/net/
3326
3327 BPF JIT for RISC-V (32-bit)
3328 M:      Luke Nelson <luke.r.nels@gmail.com>
3329 M:      Xi Wang <xi.wang@gmail.com>
3330 L:      netdev@vger.kernel.org
3331 L:      bpf@vger.kernel.org
3332 S:      Maintained
3333 F:      arch/riscv/net/
3334 X:      arch/riscv/net/bpf_jit_comp64.c
3335
3336 BPF JIT for RISC-V (64-bit)
3337 M:      Björn Töpel <bjorn@kernel.org>
3338 L:      netdev@vger.kernel.org
3339 L:      bpf@vger.kernel.org
3340 S:      Maintained
3341 F:      arch/riscv/net/
3342 X:      arch/riscv/net/bpf_jit_comp32.c
3343
3344 BPF JIT for S390
3345 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3346 M:      Heiko Carstens <hca@linux.ibm.com>
3347 M:      Vasily Gorbik <gor@linux.ibm.com>
3348 L:      netdev@vger.kernel.org
3349 L:      bpf@vger.kernel.org
3350 S:      Maintained
3351 F:      arch/s390/net/
3352 X:      arch/s390/net/pnet.c
3353
3354 BPF JIT for SPARC (32-BIT AND 64-BIT)
3355 M:      David S. Miller <davem@davemloft.net>
3356 L:      netdev@vger.kernel.org
3357 L:      bpf@vger.kernel.org
3358 S:      Maintained
3359 F:      arch/sparc/net/
3360
3361 BPF JIT for X86 32-BIT
3362 M:      Wang YanQing <udknight@gmail.com>
3363 L:      netdev@vger.kernel.org
3364 L:      bpf@vger.kernel.org
3365 S:      Maintained
3366 F:      arch/x86/net/bpf_jit_comp32.c
3367
3368 BPF JIT for X86 64-BIT
3369 M:      Alexei Starovoitov <ast@kernel.org>
3370 M:      Daniel Borkmann <daniel@iogearbox.net>
3371 L:      netdev@vger.kernel.org
3372 L:      bpf@vger.kernel.org
3373 S:      Supported
3374 F:      arch/x86/net/
3375 X:      arch/x86/net/bpf_jit_comp32.c
3376
3377 BPF LSM (Security Audit and Enforcement using BPF)
3378 M:      KP Singh <kpsingh@kernel.org>
3379 R:      Florent Revest <revest@chromium.org>
3380 R:      Brendan Jackman <jackmanb@chromium.org>
3381 L:      bpf@vger.kernel.org
3382 S:      Maintained
3383 F:      Documentation/bpf/bpf_lsm.rst
3384 F:      include/linux/bpf_lsm.h
3385 F:      kernel/bpf/bpf_lsm.c
3386 F:      security/bpf/
3387
3388 BROADCOM B44 10/100 ETHERNET DRIVER
3389 M:      Michael Chan <michael.chan@broadcom.com>
3390 L:      netdev@vger.kernel.org
3391 S:      Supported
3392 F:      drivers/net/ethernet/broadcom/b44.*
3393
3394 BROADCOM B53 ETHERNET SWITCH DRIVER
3395 M:      Florian Fainelli <f.fainelli@gmail.com>
3396 L:      netdev@vger.kernel.org
3397 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3398 S:      Supported
3399 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3400 F:      drivers/net/dsa/b53/*
3401 F:      include/linux/platform_data/b53.h
3402
3403 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3404 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3405 L:      bcm-kernel-feedback-list@broadcom.com
3406 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3408 S:      Maintained
3409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3410 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3411 F:      drivers/pci/controller/pcie-brcmstb.c
3412 F:      drivers/staging/vc04_services
3413 N:      bcm2711
3414 N:      bcm2835
3415
3416 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3417 M:      Florian Fainelli <f.fainelli@gmail.com>
3418 M:      Ray Jui <rjui@broadcom.com>
3419 M:      Scott Branden <sbranden@broadcom.com>
3420 M:      bcm-kernel-feedback-list@broadcom.com
3421 S:      Maintained
3422 T:      git git://github.com/broadcom/mach-bcm
3423 F:      arch/arm/mach-bcm/
3424 N:      bcm281*
3425 N:      bcm113*
3426 N:      bcm216*
3427 N:      kona
3428
3429 BROADCOM BCM47XX MIPS ARCHITECTURE
3430 M:      Hauke Mehrtens <hauke@hauke-m.de>
3431 M:      Rafał Miłecki <zajec5@gmail.com>
3432 L:      linux-mips@vger.kernel.org
3433 S:      Maintained
3434 F:      Documentation/devicetree/bindings/mips/brcm/
3435 F:      arch/mips/bcm47xx/*
3436 F:      arch/mips/include/asm/mach-bcm47xx/*
3437
3438 BROADCOM BCM5301X ARM ARCHITECTURE
3439 M:      Hauke Mehrtens <hauke@hauke-m.de>
3440 M:      Rafał Miłecki <zajec5@gmail.com>
3441 M:      bcm-kernel-feedback-list@broadcom.com
3442 L:      linux-arm-kernel@lists.infradead.org
3443 S:      Maintained
3444 F:      arch/arm/boot/dts/bcm470*
3445 F:      arch/arm/boot/dts/bcm5301*
3446 F:      arch/arm/boot/dts/bcm953012*
3447 F:      arch/arm/mach-bcm/bcm_5301x.c
3448
3449 BROADCOM BCM53573 ARM ARCHITECTURE
3450 M:      Rafał Miłecki <rafal@milecki.pl>
3451 L:      bcm-kernel-feedback-list@broadcom.com
3452 L:      linux-arm-kernel@lists.infradead.org
3453 S:      Maintained
3454 F:      arch/arm/boot/dts/bcm47189*
3455 F:      arch/arm/boot/dts/bcm53573*
3456
3457 BROADCOM BCM63XX ARM ARCHITECTURE
3458 M:      Florian Fainelli <f.fainelli@gmail.com>
3459 M:      bcm-kernel-feedback-list@broadcom.com
3460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3461 S:      Maintained
3462 T:      git git://github.com/broadcom/stblinux.git
3463 N:      bcm63xx
3464
3465 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3466 M:      Kevin Cernekee <cernekee@gmail.com>
3467 L:      linux-usb@vger.kernel.org
3468 S:      Maintained
3469 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3470
3471 BROADCOM BCM7XXX ARM ARCHITECTURE
3472 M:      Florian Fainelli <f.fainelli@gmail.com>
3473 M:      bcm-kernel-feedback-list@broadcom.com
3474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3475 S:      Maintained
3476 T:      git git://github.com/broadcom/stblinux.git
3477 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3478 F:      arch/arm/boot/dts/bcm7*.dts*
3479 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3480 F:      arch/arm/mach-bcm/*brcmstb*
3481 F:      arch/arm/mm/cache-b15-rac.c
3482 F:      drivers/bus/brcmstb_gisb.c
3483 F:      drivers/pci/controller/pcie-brcmstb.c
3484 N:      brcmstb
3485
3486 BROADCOM BDC DRIVER
3487 M:      Al Cooper <alcooperx@gmail.com>
3488 L:      linux-usb@vger.kernel.org
3489 L:      bcm-kernel-feedback-list@broadcom.com
3490 S:      Maintained
3491 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3492 F:      drivers/usb/gadget/udc/bdc/
3493
3494 BROADCOM BMIPS CPUFREQ DRIVER
3495 M:      Markus Mayer <mmayer@broadcom.com>
3496 M:      bcm-kernel-feedback-list@broadcom.com
3497 L:      linux-pm@vger.kernel.org
3498 S:      Maintained
3499 F:      drivers/cpufreq/bmips-cpufreq.c
3500
3501 BROADCOM BMIPS MIPS ARCHITECTURE
3502 M:      Florian Fainelli <f.fainelli@gmail.com>
3503 L:      bcm-kernel-feedback-list@broadcom.com
3504 L:      linux-mips@vger.kernel.org
3505 S:      Maintained
3506 T:      git git://github.com/broadcom/stblinux.git
3507 F:      arch/mips/bmips/*
3508 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3509 F:      arch/mips/include/asm/mach-bmips/*
3510 F:      arch/mips/kernel/*bmips*
3511 F:      drivers/soc/bcm/bcm63xx
3512 F:      drivers/irqchip/irq-bcm63*
3513 F:      drivers/irqchip/irq-bcm7*
3514 F:      drivers/irqchip/irq-brcmstb*
3515 F:      include/linux/bcm963xx_nvram.h
3516 F:      include/linux/bcm963xx_tag.h
3517
3518 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3519 M:      Rasesh Mody <rmody@marvell.com>
3520 M:      GR-Linux-NIC-Dev@marvell.com
3521 L:      netdev@vger.kernel.org
3522 S:      Supported
3523 F:      drivers/net/ethernet/broadcom/bnx2.*
3524 F:      drivers/net/ethernet/broadcom/bnx2_*
3525
3526 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3527 M:      Saurav Kashyap <skashyap@marvell.com>
3528 M:      Javed Hasan <jhasan@marvell.com>
3529 M:      GR-QLogic-Storage-Upstream@marvell.com
3530 L:      linux-scsi@vger.kernel.org
3531 S:      Supported
3532 F:      drivers/scsi/bnx2fc/
3533
3534 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3535 M:      Nilesh Javali <njavali@marvell.com>
3536 M:      Manish Rangankar <mrangankar@marvell.com>
3537 M:      GR-QLogic-Storage-Upstream@marvell.com
3538 L:      linux-scsi@vger.kernel.org
3539 S:      Supported
3540 F:      drivers/scsi/bnx2i/
3541
3542 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3543 M:      Ariel Elior <aelior@marvell.com>
3544 M:      Sudarsana Kalluru <skalluru@marvell.com>
3545 M:      GR-everest-linux-l2@marvell.com
3546 L:      netdev@vger.kernel.org
3547 S:      Supported
3548 F:      drivers/net/ethernet/broadcom/bnx2x/
3549
3550 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3551 M:      Michael Chan <michael.chan@broadcom.com>
3552 L:      netdev@vger.kernel.org
3553 S:      Supported
3554 F:      drivers/net/ethernet/broadcom/bnxt/
3555
3556 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3557 M:      Arend van Spriel <aspriel@gmail.com>
3558 M:      Franky Lin <franky.lin@broadcom.com>
3559 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3560 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3561 M:      Wright Feng <wright.feng@infineon.com>
3562 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3563 L:      linux-wireless@vger.kernel.org
3564 L:      brcm80211-dev-list.pdl@broadcom.com
3565 L:      SHA-cyfmac-dev-list@infineon.com
3566 S:      Supported
3567 F:      drivers/net/wireless/broadcom/brcm80211/
3568
3569 BROADCOM BRCMSTB GPIO DRIVER
3570 M:      Gregory Fong <gregory.0xf0@gmail.com>
3571 L:      bcm-kernel-feedback-list@broadcom.com
3572 S:      Supported
3573 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3574 F:      drivers/gpio/gpio-brcmstb.c
3575
3576 BROADCOM BRCMSTB I2C DRIVER
3577 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3578 L:      linux-i2c@vger.kernel.org
3579 L:      bcm-kernel-feedback-list@broadcom.com
3580 S:      Supported
3581 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3582 F:      drivers/i2c/busses/i2c-brcmstb.c
3583
3584 BROADCOM BRCMSTB USB EHCI DRIVER
3585 M:      Al Cooper <alcooperx@gmail.com>
3586 L:      linux-usb@vger.kernel.org
3587 L:      bcm-kernel-feedback-list@broadcom.com
3588 S:      Maintained
3589 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3590 F:      drivers/usb/host/ehci-brcm.*
3591
3592 BROADCOM BRCMSTB USB PIN MAP DRIVER
3593 M:      Al Cooper <alcooperx@gmail.com>
3594 L:      linux-usb@vger.kernel.org
3595 L:      bcm-kernel-feedback-list@broadcom.com
3596 S:      Maintained
3597 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3598 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3599
3600 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3601 M:      Al Cooper <alcooperx@gmail.com>
3602 L:      linux-kernel@vger.kernel.org
3603 L:      bcm-kernel-feedback-list@broadcom.com
3604 S:      Maintained
3605 F:      drivers/phy/broadcom/phy-brcm-usb*
3606
3607 BROADCOM ETHERNET PHY DRIVERS
3608 M:      Florian Fainelli <f.fainelli@gmail.com>
3609 L:      bcm-kernel-feedback-list@broadcom.com
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3613 F:      drivers/net/phy/bcm*.[ch]
3614 F:      drivers/net/phy/broadcom.c
3615 F:      include/linux/brcmphy.h
3616
3617 BROADCOM GENET ETHERNET DRIVER
3618 M:      Doug Berger <opendmb@gmail.com>
3619 M:      Florian Fainelli <f.fainelli@gmail.com>
3620 L:      bcm-kernel-feedback-list@broadcom.com
3621 L:      netdev@vger.kernel.org
3622 S:      Supported
3623 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3624 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3625 F:      drivers/net/ethernet/broadcom/genet/
3626 F:      drivers/net/mdio/mdio-bcm-unimac.c
3627 F:      include/linux/platform_data/bcmgenet.h
3628 F:      include/linux/platform_data/mdio-bcm-unimac.h
3629
3630 BROADCOM IPROC ARM ARCHITECTURE
3631 M:      Ray Jui <rjui@broadcom.com>
3632 M:      Scott Branden <sbranden@broadcom.com>
3633 M:      bcm-kernel-feedback-list@broadcom.com
3634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3635 S:      Maintained
3636 T:      git git://github.com/broadcom/cygnus-linux.git
3637 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3638 F:      arch/arm64/boot/dts/broadcom/stingray/*
3639 F:      drivers/clk/bcm/clk-ns*
3640 F:      drivers/clk/bcm/clk-sr*
3641 F:      drivers/pinctrl/bcm/pinctrl-ns*
3642 F:      include/dt-bindings/clock/bcm-sr*
3643 N:      iproc
3644 N:      cygnus
3645 N:      bcm[-_]nsp
3646 N:      bcm9113*
3647 N:      bcm9583*
3648 N:      bcm9585*
3649 N:      bcm9586*
3650 N:      bcm988312
3651 N:      bcm113*
3652 N:      bcm583*
3653 N:      bcm585*
3654 N:      bcm586*
3655 N:      bcm88312
3656 N:      hr2
3657 N:      stingray
3658
3659 BROADCOM KONA GPIO DRIVER
3660 M:      Ray Jui <rjui@broadcom.com>
3661 L:      bcm-kernel-feedback-list@broadcom.com
3662 S:      Supported
3663 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3664 F:      drivers/gpio/gpio-bcm-kona.c
3665
3666 BROADCOM NETXTREME-E ROCE DRIVER
3667 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3668 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3669 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3670 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3671 M:      Naresh Kumar PBS <nareshkumar.pbs@broadcom.com>
3672 L:      linux-rdma@vger.kernel.org
3673 S:      Supported
3674 W:      http://www.broadcom.com
3675 F:      drivers/infiniband/hw/bnxt_re/
3676 F:      include/uapi/rdma/bnxt_re-abi.h
3677
3678 BROADCOM NVRAM DRIVER
3679 M:      Rafał Miłecki <zajec5@gmail.com>
3680 L:      linux-mips@vger.kernel.org
3681 S:      Maintained
3682 F:      drivers/firmware/broadcom/*
3683
3684 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3685 M:      Rafał Miłecki <zajec5@gmail.com>
3686 L:      linux-wireless@vger.kernel.org
3687 S:      Maintained
3688 F:      drivers/bcma/
3689 F:      include/linux/bcma/
3690
3691 BROADCOM SPI DRIVER
3692 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3693 M:      bcm-kernel-feedback-list@broadcom.com
3694 S:      Maintained
3695 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3696 F:      drivers/spi/spi-bcm-qspi.*
3697 F:      drivers/spi/spi-brcmstb-qspi.c
3698 F:      drivers/spi/spi-iproc-qspi.c
3699
3700 BROADCOM STB AVS CPUFREQ DRIVER
3701 M:      Markus Mayer <mmayer@broadcom.com>
3702 M:      bcm-kernel-feedback-list@broadcom.com
3703 L:      linux-pm@vger.kernel.org
3704 S:      Maintained
3705 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3706 F:      drivers/cpufreq/brcmstb*
3707
3708 BROADCOM STB AVS TMON DRIVER
3709 M:      Markus Mayer <mmayer@broadcom.com>
3710 M:      bcm-kernel-feedback-list@broadcom.com
3711 L:      linux-pm@vger.kernel.org
3712 S:      Maintained
3713 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3714 F:      drivers/thermal/broadcom/brcmstb*
3715
3716 BROADCOM STB DPFE DRIVER
3717 M:      Markus Mayer <mmayer@broadcom.com>
3718 M:      bcm-kernel-feedback-list@broadcom.com
3719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3720 S:      Maintained
3721 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3722 F:      drivers/memory/brcmstb_dpfe.c
3723
3724 BROADCOM STB NAND FLASH DRIVER
3725 M:      Brian Norris <computersforpeace@gmail.com>
3726 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3727 L:      linux-mtd@lists.infradead.org
3728 L:      bcm-kernel-feedback-list@broadcom.com
3729 S:      Maintained
3730 F:      drivers/mtd/nand/raw/brcmnand/
3731
3732 BROADCOM SYSTEMPORT ETHERNET DRIVER
3733 M:      Florian Fainelli <f.fainelli@gmail.com>
3734 L:      bcm-kernel-feedback-list@broadcom.com
3735 L:      netdev@vger.kernel.org
3736 S:      Supported
3737 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3738
3739 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3740 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3741 M:      Prashant Sreedharan <prashant@broadcom.com>
3742 M:      Michael Chan <mchan@broadcom.com>
3743 L:      netdev@vger.kernel.org
3744 S:      Supported
3745 F:      drivers/net/ethernet/broadcom/tg3.*
3746
3747 BROCADE BFA FC SCSI DRIVER
3748 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3749 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3750 L:      linux-scsi@vger.kernel.org
3751 S:      Supported
3752 F:      drivers/scsi/bfa/
3753
3754 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3755 M:      Rasesh Mody <rmody@marvell.com>
3756 M:      Sudarsana Kalluru <skalluru@marvell.com>
3757 M:      GR-Linux-NIC-Dev@marvell.com
3758 L:      netdev@vger.kernel.org
3759 S:      Supported
3760 F:      drivers/net/ethernet/brocade/bna/
3761
3762 BSG (block layer generic sg v4 driver)
3763 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3764 L:      linux-scsi@vger.kernel.org
3765 S:      Supported
3766 F:      block/bsg.c
3767 F:      include/linux/bsg.h
3768 F:      include/uapi/linux/bsg.h
3769
3770 BT87X AUDIO DRIVER
3771 M:      Clemens Ladisch <clemens@ladisch.de>
3772 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3773 S:      Maintained
3774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3775 F:      Documentation/sound/cards/bt87x.rst
3776 F:      sound/pci/bt87x.c
3777
3778 BT8XXGPIO DRIVER
3779 M:      Michael Buesch <m@bues.ch>
3780 S:      Maintained
3781 W:      http://bu3sch.de/btgpio.php
3782 F:      drivers/gpio/gpio-bt8xx.c
3783
3784 BTRFS FILE SYSTEM
3785 M:      Chris Mason <clm@fb.com>
3786 M:      Josef Bacik <josef@toxicpanda.com>
3787 M:      David Sterba <dsterba@suse.com>
3788 L:      linux-btrfs@vger.kernel.org
3789 S:      Maintained
3790 W:      http://btrfs.wiki.kernel.org/
3791 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3793 F:      Documentation/filesystems/btrfs.rst
3794 F:      fs/btrfs/
3795 F:      include/linux/btrfs*
3796 F:      include/uapi/linux/btrfs*
3797
3798 BTTV VIDEO4LINUX DRIVER
3799 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3800 L:      linux-media@vger.kernel.org
3801 S:      Odd fixes
3802 W:      https://linuxtv.org
3803 T:      git git://linuxtv.org/media_tree.git
3804 F:      Documentation/driver-api/media/drivers/bttv*
3805 F:      drivers/media/pci/bt8xx/bttv*
3806
3807 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3808 M:      Chanwoo Choi <cw00.choi@samsung.com>
3809 L:      linux-pm@vger.kernel.org
3810 L:      linux-samsung-soc@vger.kernel.org
3811 S:      Maintained
3812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3813 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3814 F:      drivers/devfreq/exynos-bus.c
3815
3816 BUSLOGIC SCSI DRIVER
3817 M:      Khalid Aziz <khalid@gonehiking.org>
3818 L:      linux-scsi@vger.kernel.org
3819 S:      Maintained
3820 F:      drivers/scsi/BusLogic.*
3821 F:      drivers/scsi/FlashPoint.*
3822
3823 C-MEDIA CMI8788 DRIVER
3824 M:      Clemens Ladisch <clemens@ladisch.de>
3825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3826 S:      Maintained
3827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3828 F:      sound/pci/oxygen/
3829
3830 C-SKY ARCHITECTURE
3831 M:      Guo Ren <guoren@kernel.org>
3832 L:      linux-csky@vger.kernel.org
3833 S:      Supported
3834 T:      git https://github.com/c-sky/csky-linux.git
3835 F:      Documentation/devicetree/bindings/csky/
3836 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3837 F:      Documentation/devicetree/bindings/timer/csky,*
3838 F:      arch/csky/
3839 F:      drivers/clocksource/timer-gx6605s.c
3840 F:      drivers/clocksource/timer-mp-csky.c
3841 F:      drivers/irqchip/irq-csky-*
3842 N:      csky
3843 K:      csky
3844
3845 C6X ARCHITECTURE
3846 M:      Mark Salter <msalter@redhat.com>
3847 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3848 L:      linux-c6x-dev@linux-c6x.org
3849 S:      Maintained
3850 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3851 F:      arch/c6x/
3852
3853 CA8210 IEEE-802.15.4 RADIO DRIVER
3854 M:      Harry Morris <h.morris@cascoda.com>
3855 L:      linux-wpan@vger.kernel.org
3856 S:      Maintained
3857 W:      https://github.com/Cascoda/ca8210-linux.git
3858 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3859 F:      drivers/net/ieee802154/ca8210.c
3860
3861 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3862 M:      David Howells <dhowells@redhat.com>
3863 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3864 S:      Supported
3865 F:      Documentation/filesystems/caching/cachefiles.rst
3866 F:      fs/cachefiles/
3867
3868 CADENCE MIPI-CSI2 BRIDGES
3869 M:      Maxime Ripard <mripard@kernel.org>
3870 L:      linux-media@vger.kernel.org
3871 S:      Maintained
3872 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3873 F:      drivers/media/platform/cadence/cdns-csi2*
3874
3875 CADENCE NAND DRIVER
3876 L:      linux-mtd@lists.infradead.org
3877 S:      Orphan
3878 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3879 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3880
3881 CADENCE USB3 DRD IP DRIVER
3882 M:      Peter Chen <peter.chen@kernel.org>
3883 M:      Pawel Laszczak <pawell@cadence.com>
3884 R:      Roger Quadros <rogerq@kernel.org>
3885 R:      Aswath Govindraju <a-govindraju@ti.com>
3886 L:      linux-usb@vger.kernel.org
3887 S:      Maintained
3888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3889 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
3890 F:      drivers/usb/cdns3/
3891
3892 CADET FM/AM RADIO RECEIVER DRIVER
3893 M:      Hans Verkuil <hverkuil@xs4all.nl>
3894 L:      linux-media@vger.kernel.org
3895 S:      Maintained
3896 W:      https://linuxtv.org
3897 T:      git git://linuxtv.org/media_tree.git
3898 F:      drivers/media/radio/radio-cadet*
3899
3900 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3901 L:      linux-media@vger.kernel.org
3902 S:      Orphan
3903 T:      git git://linuxtv.org/media_tree.git
3904 F:      Documentation/admin-guide/media/cafe_ccic*
3905 F:      drivers/media/platform/marvell-ccic/
3906
3907 CAIF NETWORK LAYER
3908 L:      netdev@vger.kernel.org
3909 S:      Orphan
3910 F:      Documentation/networking/caif/
3911 F:      drivers/net/caif/
3912 F:      include/net/caif/
3913 F:      include/uapi/linux/caif/
3914 F:      net/caif/
3915
3916 CAKE QDISC
3917 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3918 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3919 S:      Maintained
3920 F:      net/sched/sch_cake.c
3921
3922 CAN NETWORK DRIVERS
3923 M:      Wolfgang Grandegger <wg@grandegger.com>
3924 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3925 L:      linux-can@vger.kernel.org
3926 S:      Maintained
3927 W:      https://github.com/linux-can
3928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3930 F:      Documentation/devicetree/bindings/net/can/
3931 F:      drivers/net/can/
3932 F:      include/linux/can/dev.h
3933 F:      include/linux/can/led.h
3934 F:      include/linux/can/platform/
3935 F:      include/linux/can/rx-offload.h
3936 F:      include/uapi/linux/can/error.h
3937 F:      include/uapi/linux/can/netlink.h
3938 F:      include/uapi/linux/can/vxcan.h
3939
3940 CAN NETWORK LAYER
3941 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3942 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3943 L:      linux-can@vger.kernel.org
3944 S:      Maintained
3945 W:      https://github.com/linux-can
3946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3948 F:      Documentation/networking/can.rst
3949 F:      include/linux/can/core.h
3950 F:      include/linux/can/skb.h
3951 F:      include/net/netns/can.h
3952 F:      include/uapi/linux/can.h
3953 F:      include/uapi/linux/can/bcm.h
3954 F:      include/uapi/linux/can/gw.h
3955 F:      include/uapi/linux/can/isotp.h
3956 F:      include/uapi/linux/can/raw.h
3957 F:      net/can/
3958
3959 CAN-J1939 NETWORK LAYER
3960 M:      Robin van der Gracht <robin@protonic.nl>
3961 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3962 R:      kernel@pengutronix.de
3963 L:      linux-can@vger.kernel.org
3964 S:      Maintained
3965 F:      Documentation/networking/j1939.rst
3966 F:      include/uapi/linux/can/j1939.h
3967 F:      net/can/j1939/
3968
3969 CAPABILITIES
3970 M:      Serge Hallyn <serge@hallyn.com>
3971 L:      linux-security-module@vger.kernel.org
3972 S:      Supported
3973 F:      include/linux/capability.h
3974 F:      include/uapi/linux/capability.h
3975 F:      kernel/capability.c
3976 F:      security/commoncap.c
3977
3978 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3979 M:      Kevin Tsai <ktsai@capellamicro.com>
3980 S:      Maintained
3981 F:      drivers/iio/light/cm*
3982
3983 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3984 M:      Christian Lamparter <chunkeey@googlemail.com>
3985 L:      linux-wireless@vger.kernel.org
3986 S:      Maintained
3987 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3988 F:      drivers/net/wireless/ath/carl9170/
3989
3990 CAVIUM I2C DRIVER
3991 M:      Robert Richter <rric@kernel.org>
3992 S:      Odd Fixes
3993 W:      http://www.marvell.com
3994 F:      drivers/i2c/busses/i2c-octeon*
3995 F:      drivers/i2c/busses/i2c-thunderx*
3996
3997 CAVIUM LIQUIDIO NETWORK DRIVER
3998 M:      Derek Chickles <dchickles@marvell.com>
3999 M:      Satanand Burla <sburla@marvell.com>
4000 M:      Felix Manlunas <fmanlunas@marvell.com>
4001 L:      netdev@vger.kernel.org
4002 S:      Supported
4003 W:      http://www.marvell.com
4004 F:      drivers/net/ethernet/cavium/liquidio/
4005
4006 CAVIUM MMC DRIVER
4007 M:      Robert Richter <rric@kernel.org>
4008 S:      Odd Fixes
4009 W:      http://www.marvell.com
4010 F:      drivers/mmc/host/cavium*
4011
4012 CAVIUM OCTEON-TX CRYPTO DRIVER
4013 M:      George Cherian <gcherian@marvell.com>
4014 L:      linux-crypto@vger.kernel.org
4015 S:      Supported
4016 W:      http://www.marvell.com
4017 F:      drivers/crypto/cavium/cpt/
4018
4019 CAVIUM THUNDERX2 ARM64 SOC
4020 M:      Robert Richter <rric@kernel.org>
4021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4022 S:      Odd Fixes
4023 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4024 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4025
4026 CC2520 IEEE-802.15.4 RADIO DRIVER
4027 M:      Varka Bhadram <varkabhadram@gmail.com>
4028 L:      linux-wpan@vger.kernel.org
4029 S:      Maintained
4030 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4031 F:      drivers/net/ieee802154/cc2520.c
4032 F:      include/linux/spi/cc2520.h
4033
4034 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4035 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4036 L:      linux-crypto@vger.kernel.org
4037 S:      Supported
4038 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4039 F:      drivers/crypto/ccree/
4040
4041 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4042 M:      Hadar Gat <hadar.gat@arm.com>
4043 L:      linux-crypto@vger.kernel.org
4044 S:      Supported
4045 F:      drivers/char/hw_random/cctrng.c
4046 F:      drivers/char/hw_random/cctrng.h
4047 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4048 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4049
4050 CEC FRAMEWORK
4051 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4052 L:      linux-media@vger.kernel.org
4053 S:      Supported
4054 W:      http://linuxtv.org
4055 T:      git git://linuxtv.org/media_tree.git
4056 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4057 F:      Documentation/devicetree/bindings/media/cec.txt
4058 F:      Documentation/driver-api/media/cec-core.rst
4059 F:      Documentation/userspace-api/media/cec
4060 F:      drivers/media/cec/
4061 F:      drivers/media/rc/keymaps/rc-cec.c
4062 F:      include/media/cec-notifier.h
4063 F:      include/media/cec.h
4064 F:      include/uapi/linux/cec-funcs.h
4065 F:      include/uapi/linux/cec.h
4066
4067 CEC GPIO DRIVER
4068 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4069 L:      linux-media@vger.kernel.org
4070 S:      Supported
4071 W:      http://linuxtv.org
4072 T:      git git://linuxtv.org/media_tree.git
4073 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4074 F:      drivers/media/cec/platform/cec-gpio/
4075
4076 CELL BROADBAND ENGINE ARCHITECTURE
4077 M:      Arnd Bergmann <arnd@arndb.de>
4078 L:      linuxppc-dev@lists.ozlabs.org
4079 S:      Supported
4080 W:      http://www.ibm.com/developerworks/power/cell/
4081 F:      arch/powerpc/include/asm/cell*.h
4082 F:      arch/powerpc/include/asm/spu*.h
4083 F:      arch/powerpc/include/uapi/asm/spu*.h
4084 F:      arch/powerpc/oprofile/*cell*
4085 F:      arch/powerpc/platforms/cell/
4086
4087 CELLWISE CW2015 BATTERY DRIVER
4088 M:      Tobias Schrammm <t.schramm@manjaro.org>
4089 S:      Maintained
4090 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4091 F:      drivers/power/supply/cw2015_battery.c
4092
4093 CEPH COMMON CODE (LIBCEPH)
4094 M:      Ilya Dryomov <idryomov@gmail.com>
4095 M:      Jeff Layton <jlayton@kernel.org>
4096 L:      ceph-devel@vger.kernel.org
4097 S:      Supported
4098 W:      http://ceph.com/
4099 T:      git git://github.com/ceph/ceph-client.git
4100 F:      include/linux/ceph/
4101 F:      include/linux/crush/
4102 F:      net/ceph/
4103
4104 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4105 M:      Jeff Layton <jlayton@kernel.org>
4106 M:      Ilya Dryomov <idryomov@gmail.com>
4107 L:      ceph-devel@vger.kernel.org
4108 S:      Supported
4109 W:      http://ceph.com/
4110 T:      git git://github.com/ceph/ceph-client.git
4111 F:      Documentation/filesystems/ceph.rst
4112 F:      fs/ceph/
4113
4114 CERTIFICATE HANDLING
4115 M:      David Howells <dhowells@redhat.com>
4116 M:      David Woodhouse <dwmw2@infradead.org>
4117 L:      keyrings@vger.kernel.org
4118 S:      Maintained
4119 F:      Documentation/admin-guide/module-signing.rst
4120 F:      certs/
4121 F:      scripts/extract-cert.c
4122 F:      scripts/sign-file.c
4123
4124 CFAG12864B LCD DRIVER
4125 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4126 S:      Maintained
4127 F:      drivers/auxdisplay/cfag12864b.c
4128 F:      include/linux/cfag12864b.h
4129
4130 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4131 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4132 S:      Maintained
4133 F:      drivers/auxdisplay/cfag12864bfb.c
4134 F:      include/linux/cfag12864b.h
4135
4136 CHAR and MISC DRIVERS
4137 M:      Arnd Bergmann <arnd@arndb.de>
4138 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4139 S:      Supported
4140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4141 F:      drivers/char/
4142 F:      drivers/misc/
4143 F:      include/linux/miscdevice.h
4144 X:      drivers/char/agp/
4145 X:      drivers/char/hw_random/
4146 X:      drivers/char/ipmi/
4147 X:      drivers/char/random.c
4148 X:      drivers/char/tpm/
4149
4150 CHECKPATCH
4151 M:      Andy Whitcroft <apw@canonical.com>
4152 M:      Joe Perches <joe@perches.com>
4153 S:      Maintained
4154 F:      scripts/checkpatch.pl
4155
4156 CHINESE DOCUMENTATION
4157 M:      Harry Wei <harryxiyou@gmail.com>
4158 M:      Alex Shi <alex.shi@linux.alibaba.com>
4159 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4160 S:      Maintained
4161 F:      Documentation/translations/zh_CN/
4162
4163 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4164 M:      Peter Chen <peter.chen@kernel.org>
4165 L:      linux-usb@vger.kernel.org
4166 S:      Maintained
4167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4168 F:      drivers/usb/chipidea/
4169
4170 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4171 M:      Hans de Goede <hdegoede@redhat.com>
4172 L:      linux-input@vger.kernel.org
4173 S:      Maintained
4174 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4175 F:      drivers/input/touchscreen/chipone_icn8318.c
4176
4177 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4178 M:      Hans de Goede <hdegoede@redhat.com>
4179 L:      linux-input@vger.kernel.org
4180 S:      Maintained
4181 F:      drivers/input/touchscreen/chipone_icn8505.c
4182
4183 CHROME HARDWARE PLATFORM SUPPORT
4184 M:      Benson Leung <bleung@chromium.org>
4185 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4186 S:      Maintained
4187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4188 F:      drivers/platform/chrome/
4189
4190 CHROMEOS EC CODEC DRIVER
4191 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4192 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4193 R:      Guenter Roeck <groeck@chromium.org>
4194 S:      Maintained
4195 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4196 F:      sound/soc/codecs/cros_ec_codec.*
4197
4198 CHROMEOS EC SUBDRIVERS
4199 M:      Benson Leung <bleung@chromium.org>
4200 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4201 R:      Guenter Roeck <groeck@chromium.org>
4202 S:      Maintained
4203 F:      drivers/power/supply/cros_usbpd-charger.c
4204 N:      cros_ec
4205 N:      cros-ec
4206
4207 CHRONTEL CH7322 CEC DRIVER
4208 M:      Jeff Chase <jnchase@google.com>
4209 L:      linux-media@vger.kernel.org
4210 S:      Maintained
4211 T:      git git://linuxtv.org/media_tree.git
4212 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4213 F:      drivers/media/cec/i2c/ch7322.c
4214
4215 CIRRUS LOGIC AUDIO CODEC DRIVERS
4216 M:      James Schulman <james.schulman@cirrus.com>
4217 M:      David Rhodes <david.rhodes@cirrus.com>
4218 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4219 L:      patches@opensource.cirrus.com
4220 S:      Maintained
4221 F:      sound/soc/codecs/cs*
4222
4223 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4224 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4225 L:      netdev@vger.kernel.org
4226 S:      Maintained
4227 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4228
4229 CIRRUS LOGIC LOCHNAGAR DRIVER
4230 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4231 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4232 L:      patches@opensource.cirrus.com
4233 S:      Supported
4234 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4235 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4236 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4237 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4238 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4239 F:      Documentation/hwmon/lochnagar.rst
4240 F:      drivers/clk/clk-lochnagar.c
4241 F:      drivers/hwmon/lochnagar-hwmon.c
4242 F:      drivers/mfd/lochnagar-i2c.c
4243 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4244 F:      drivers/regulator/lochnagar-regulator.c
4245 F:      include/dt-bindings/clk/lochnagar.h
4246 F:      include/dt-bindings/pinctrl/lochnagar.h
4247 F:      include/linux/mfd/lochnagar*
4248 F:      sound/soc/codecs/lochnagar-sc.c
4249
4250 CIRRUS LOGIC MADERA CODEC DRIVERS
4251 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4252 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4253 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4254 L:      patches@opensource.cirrus.com
4255 S:      Supported
4256 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4257 T:      git https://github.com/CirrusLogic/linux-drivers.git
4258 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4259 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4260 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4261 F:      drivers/gpio/gpio-madera*
4262 F:      drivers/irqchip/irq-madera*
4263 F:      drivers/mfd/cs47l*
4264 F:      drivers/mfd/madera*
4265 F:      drivers/pinctrl/cirrus/*
4266 F:      include/dt-bindings/sound/madera*
4267 F:      include/linux/irqchip/irq-madera*
4268 F:      include/linux/mfd/madera/*
4269 F:      include/sound/madera*
4270 F:      sound/soc/codecs/cs47l*
4271 F:      sound/soc/codecs/madera*
4272
4273 CISCO FCOE HBA DRIVER
4274 M:      Satish Kharat <satishkh@cisco.com>
4275 M:      Sesidhar Baddela <sebaddel@cisco.com>
4276 M:      Karan Tilak Kumar <kartilak@cisco.com>
4277 L:      linux-scsi@vger.kernel.org
4278 S:      Supported
4279 F:      drivers/scsi/fnic/
4280
4281 CISCO SCSI HBA DRIVER
4282 M:      Karan Tilak Kumar <kartilak@cisco.com>
4283 M:      Sesidhar Baddela <sebaddel@cisco.com>
4284 L:      linux-scsi@vger.kernel.org
4285 S:      Supported
4286 F:      drivers/scsi/snic/
4287
4288 CISCO VIC ETHERNET NIC DRIVER
4289 M:      Christian Benvenuti <benve@cisco.com>
4290 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4291 S:      Supported
4292 F:      drivers/net/ethernet/cisco/enic/
4293
4294 CISCO VIC LOW LATENCY NIC DRIVER
4295 M:      Christian Benvenuti <benve@cisco.com>
4296 M:      Nelson Escobar <neescoba@cisco.com>
4297 S:      Supported
4298 F:      drivers/infiniband/hw/usnic/
4299
4300 CLANG-FORMAT FILE
4301 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4302 S:      Maintained
4303 F:      .clang-format
4304
4305 CLANG/LLVM BUILD SUPPORT
4306 M:      Nathan Chancellor <natechancellor@gmail.com>
4307 M:      Nick Desaulniers <ndesaulniers@google.com>
4308 L:      clang-built-linux@googlegroups.com
4309 S:      Supported
4310 W:      https://clangbuiltlinux.github.io/
4311 B:      https://github.com/ClangBuiltLinux/linux/issues
4312 C:      irc://chat.freenode.net/clangbuiltlinux
4313 F:      Documentation/kbuild/llvm.rst
4314 F:      include/linux/compiler-clang.h
4315 F:      scripts/clang-tools/
4316 F:      scripts/clang-version.sh
4317 F:      scripts/lld-version.sh
4318 K:      \b(?i:clang|llvm)\b
4319
4320 CLEANCACHE API
4321 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4322 L:      linux-kernel@vger.kernel.org
4323 S:      Maintained
4324 F:      include/linux/cleancache.h
4325 F:      mm/cleancache.c
4326
4327 CLK API
4328 M:      Russell King <linux@armlinux.org.uk>
4329 L:      linux-clk@vger.kernel.org
4330 S:      Maintained
4331 F:      include/linux/clk.h
4332
4333 CLOCKSOURCE, CLOCKEVENT DRIVERS
4334 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4335 M:      Thomas Gleixner <tglx@linutronix.de>
4336 L:      linux-kernel@vger.kernel.org
4337 S:      Supported
4338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4339 F:      Documentation/devicetree/bindings/timer/
4340 F:      drivers/clocksource/
4341
4342 CMPC ACPI DRIVER
4343 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4344 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4345 L:      platform-driver-x86@vger.kernel.org
4346 S:      Supported
4347 F:      drivers/platform/x86/classmate-laptop.c
4348
4349 COBALT MEDIA DRIVER
4350 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4351 L:      linux-media@vger.kernel.org
4352 S:      Supported
4353 W:      https://linuxtv.org
4354 T:      git git://linuxtv.org/media_tree.git
4355 F:      drivers/media/pci/cobalt/
4356
4357 COCCINELLE/Semantic Patches (SmPL)
4358 M:      Julia Lawall <Julia.Lawall@inria.fr>
4359 M:      Gilles Muller <Gilles.Muller@inria.fr>
4360 M:      Nicolas Palix <nicolas.palix@imag.fr>
4361 M:      Michal Marek <michal.lkml@markovi.net>
4362 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4363 S:      Supported
4364 W:      http://coccinelle.lip6.fr/
4365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4366 F:      Documentation/dev-tools/coccinelle.rst
4367 F:      scripts/coccicheck
4368 F:      scripts/coccinelle/
4369
4370 CODA FILE SYSTEM
4371 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4372 M:      coda@cs.cmu.edu
4373 L:      codalist@coda.cs.cmu.edu
4374 S:      Maintained
4375 W:      http://www.coda.cs.cmu.edu/
4376 F:      Documentation/filesystems/coda.rst
4377 F:      fs/coda/
4378 F:      include/linux/coda*.h
4379 F:      include/uapi/linux/coda*.h
4380
4381 CODA V4L2 MEM2MEM DRIVER
4382 M:      Philipp Zabel <p.zabel@pengutronix.de>
4383 L:      linux-media@vger.kernel.org
4384 S:      Maintained
4385 F:      Documentation/devicetree/bindings/media/coda.yaml
4386 F:      drivers/media/platform/coda/
4387
4388 CODE OF CONDUCT
4389 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4390 S:      Supported
4391 F:      Documentation/process/code-of-conduct-interpretation.rst
4392 F:      Documentation/process/code-of-conduct.rst
4393
4394 COMMON CLK FRAMEWORK
4395 M:      Michael Turquette <mturquette@baylibre.com>
4396 M:      Stephen Boyd <sboyd@kernel.org>
4397 L:      linux-clk@vger.kernel.org
4398 S:      Maintained
4399 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4401 F:      Documentation/devicetree/bindings/clock/
4402 F:      drivers/clk/
4403 F:      include/linux/clk-pr*
4404 F:      include/linux/clk/
4405 F:      include/linux/of_clk.h
4406 X:      drivers/clk/clkdev.c
4407
4408 COMMON INTERNET FILE SYSTEM (CIFS)
4409 M:      Steve French <sfrench@samba.org>
4410 L:      linux-cifs@vger.kernel.org
4411 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4412 S:      Supported
4413 W:      http://linux-cifs.samba.org/
4414 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4415 F:      Documentation/admin-guide/cifs/
4416 F:      fs/cifs/
4417
4418 COMPACTPCI HOTPLUG CORE
4419 M:      Scott Murray <scott@spiteful.org>
4420 L:      linux-pci@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/pci/hotplug/cpci_hotplug*
4423
4424 COMPACTPCI HOTPLUG GENERIC DRIVER
4425 M:      Scott Murray <scott@spiteful.org>
4426 L:      linux-pci@vger.kernel.org
4427 S:      Maintained
4428 F:      drivers/pci/hotplug/cpcihp_generic.c
4429
4430 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4431 M:      Scott Murray <scott@spiteful.org>
4432 L:      linux-pci@vger.kernel.org
4433 S:      Maintained
4434 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4435
4436 COMPAL LAPTOP SUPPORT
4437 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4438 L:      platform-driver-x86@vger.kernel.org
4439 S:      Maintained
4440 F:      drivers/platform/x86/compal-laptop.c
4441
4442 COMPILER ATTRIBUTES
4443 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4444 S:      Maintained
4445 F:      include/linux/compiler_attributes.h
4446
4447 CONEXANT ACCESSRUNNER USB DRIVER
4448 L:      accessrunner-general@lists.sourceforge.net
4449 S:      Orphan
4450 W:      http://accessrunner.sourceforge.net/
4451 F:      drivers/usb/atm/cxacru.c
4452
4453 CONFIGFS
4454 M:      Joel Becker <jlbec@evilplan.org>
4455 M:      Christoph Hellwig <hch@lst.de>
4456 S:      Supported
4457 T:      git git://git.infradead.org/users/hch/configfs.git
4458 F:      fs/configfs/
4459 F:      include/linux/configfs.h
4460 F:      samples/configfs/
4461
4462 CONSOLE SUBSYSTEM
4463 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4464 S:      Supported
4465 F:      drivers/video/console/
4466 F:      include/linux/console*
4467
4468 CONTROL GROUP (CGROUP)
4469 M:      Tejun Heo <tj@kernel.org>
4470 M:      Li Zefan <lizefan@huawei.com>
4471 M:      Johannes Weiner <hannes@cmpxchg.org>
4472 L:      cgroups@vger.kernel.org
4473 S:      Maintained
4474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4475 F:      Documentation/admin-guide/cgroup-v1/
4476 F:      Documentation/admin-guide/cgroup-v2.rst
4477 F:      include/linux/cgroup*
4478 F:      kernel/cgroup/
4479
4480 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4481 M:      Tejun Heo <tj@kernel.org>
4482 M:      Jens Axboe <axboe@kernel.dk>
4483 L:      cgroups@vger.kernel.org
4484 L:      linux-block@vger.kernel.org
4485 T:      git git://git.kernel.dk/linux-block
4486 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4487 F:      block/bfq-cgroup.c
4488 F:      block/blk-cgroup.c
4489 F:      block/blk-iolatency.c
4490 F:      block/blk-throttle.c
4491 F:      include/linux/blk-cgroup.h
4492
4493 CONTROL GROUP - CPUSET
4494 M:      Li Zefan <lizefan@huawei.com>
4495 L:      cgroups@vger.kernel.org
4496 S:      Maintained
4497 W:      http://www.bullopensource.org/cpuset/
4498 W:      http://oss.sgi.com/projects/cpusets/
4499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4500 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4501 F:      include/linux/cpuset.h
4502 F:      kernel/cgroup/cpuset.c
4503
4504 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4505 M:      Johannes Weiner <hannes@cmpxchg.org>
4506 M:      Michal Hocko <mhocko@kernel.org>
4507 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4508 L:      cgroups@vger.kernel.org
4509 L:      linux-mm@kvack.org
4510 S:      Maintained
4511 F:      mm/memcontrol.c
4512 F:      mm/swap_cgroup.c
4513
4514 CORETEMP HARDWARE MONITORING DRIVER
4515 M:      Fenghua Yu <fenghua.yu@intel.com>
4516 L:      linux-hwmon@vger.kernel.org
4517 S:      Maintained
4518 F:      Documentation/hwmon/coretemp.rst
4519 F:      drivers/hwmon/coretemp.c
4520
4521 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4522 M:      Marius Zachmann <mail@mariuszachmann.de>
4523 L:      linux-hwmon@vger.kernel.org
4524 S:      Maintained
4525 F:      drivers/hwmon/corsair-cpro.c
4526
4527 CORSAIR-PSU HARDWARE MONITOR DRIVER
4528 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4529 L:      linux-hwmon@vger.kernel.org
4530 S:      Maintained
4531 F:      Documentation/hwmon/corsair-psu.rst
4532 F:      drivers/hwmon/corsair-psu.c
4533
4534 COSA/SRP SYNC SERIAL DRIVER
4535 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4536 S:      Maintained
4537 W:      http://www.fi.muni.cz/~kas/cosa/
4538 F:      drivers/net/wan/cosa*
4539
4540 COUNTER SUBSYSTEM
4541 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4542 L:      linux-iio@vger.kernel.org
4543 S:      Maintained
4544 F:      Documentation/ABI/testing/sysfs-bus-counter*
4545 F:      Documentation/driver-api/generic-counter.rst
4546 F:      drivers/counter/
4547 F:      include/linux/counter.h
4548 F:      include/linux/counter_enum.h
4549
4550 CPMAC ETHERNET DRIVER
4551 M:      Florian Fainelli <f.fainelli@gmail.com>
4552 L:      netdev@vger.kernel.org
4553 S:      Maintained
4554 F:      drivers/net/ethernet/ti/cpmac.c
4555
4556 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4557 M:      Viresh Kumar <viresh.kumar@linaro.org>
4558 M:      Sudeep Holla <sudeep.holla@arm.com>
4559 L:      linux-pm@vger.kernel.org
4560 S:      Maintained
4561 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4562 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4563
4564 CPU FREQUENCY SCALING FRAMEWORK
4565 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4566 M:      Viresh Kumar <viresh.kumar@linaro.org>
4567 L:      linux-pm@vger.kernel.org
4568 S:      Maintained
4569 B:      https://bugzilla.kernel.org
4570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4572 F:      Documentation/admin-guide/pm/cpufreq.rst
4573 F:      Documentation/admin-guide/pm/intel_pstate.rst
4574 F:      Documentation/cpu-freq/
4575 F:      Documentation/devicetree/bindings/cpufreq/
4576 F:      drivers/cpufreq/
4577 F:      include/linux/cpufreq.h
4578 F:      include/linux/sched/cpufreq.h
4579 F:      kernel/sched/cpufreq*.c
4580 F:      tools/testing/selftests/cpufreq/
4581
4582 CPU IDLE TIME MANAGEMENT FRAMEWORK
4583 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4584 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4585 L:      linux-pm@vger.kernel.org
4586 S:      Maintained
4587 B:      https://bugzilla.kernel.org
4588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4589 F:      Documentation/admin-guide/pm/cpuidle.rst
4590 F:      Documentation/driver-api/pm/cpuidle.rst
4591 F:      drivers/cpuidle/
4592 F:      include/linux/cpuidle.h
4593
4594 CPU POWER MONITORING SUBSYSTEM
4595 M:      Thomas Renninger <trenn@suse.com>
4596 M:      Shuah Khan <shuah@kernel.org>
4597 M:      Shuah Khan <skhan@linuxfoundation.org>
4598 L:      linux-pm@vger.kernel.org
4599 S:      Maintained
4600 F:      tools/power/cpupower/
4601
4602 CPUID/MSR DRIVER
4603 M:      "H. Peter Anvin" <hpa@zytor.com>
4604 S:      Maintained
4605 F:      arch/x86/kernel/cpuid.c
4606 F:      arch/x86/kernel/msr.c
4607
4608 CPUIDLE DRIVER - ARM BIG LITTLE
4609 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4610 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4611 L:      linux-pm@vger.kernel.org
4612 L:      linux-arm-kernel@lists.infradead.org
4613 S:      Maintained
4614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4615 F:      drivers/cpuidle/cpuidle-big_little.c
4616
4617 CPUIDLE DRIVER - ARM EXYNOS
4618 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4619 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4620 M:      Kukjin Kim <kgene@kernel.org>
4621 L:      linux-pm@vger.kernel.org
4622 L:      linux-samsung-soc@vger.kernel.org
4623 S:      Supported
4624 F:      arch/arm/mach-exynos/pm.c
4625 F:      drivers/cpuidle/cpuidle-exynos.c
4626
4627 CPUIDLE DRIVER - ARM PSCI
4628 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4629 M:      Sudeep Holla <sudeep.holla@arm.com>
4630 L:      linux-pm@vger.kernel.org
4631 L:      linux-arm-kernel@lists.infradead.org
4632 S:      Supported
4633 F:      drivers/cpuidle/cpuidle-psci.c
4634
4635 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4636 M:      Ulf Hansson <ulf.hansson@linaro.org>
4637 L:      linux-pm@vger.kernel.org
4638 L:      linux-arm-kernel@lists.infradead.org
4639 S:      Supported
4640 F:      drivers/cpuidle/cpuidle-psci.h
4641 F:      drivers/cpuidle/cpuidle-psci-domain.c
4642
4643 CRAMFS FILESYSTEM
4644 M:      Nicolas Pitre <nico@fluxnic.net>
4645 S:      Maintained
4646 F:      Documentation/filesystems/cramfs.rst
4647 F:      fs/cramfs/
4648
4649 CREATIVE SB0540
4650 M:      Bastien Nocera <hadess@hadess.net>
4651 L:      linux-input@vger.kernel.org
4652 S:      Maintained
4653 F:      drivers/hid/hid-creative-sb0540.c
4654
4655 CRYPTO API
4656 M:      Herbert Xu <herbert@gondor.apana.org.au>
4657 M:      "David S. Miller" <davem@davemloft.net>
4658 L:      linux-crypto@vger.kernel.org
4659 S:      Maintained
4660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4662 F:      Documentation/crypto/
4663 F:      Documentation/devicetree/bindings/crypto/
4664 F:      arch/*/crypto/
4665 F:      crypto/
4666 F:      drivers/crypto/
4667 F:      include/crypto/
4668 F:      include/linux/crypto*
4669 F:      lib/crypto/
4670
4671 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4672 M:      Neil Horman <nhorman@tuxdriver.com>
4673 L:      linux-crypto@vger.kernel.org
4674 S:      Maintained
4675 F:      crypto/ansi_cprng.c
4676 F:      crypto/rng.c
4677
4678 CS3308 MEDIA DRIVER
4679 M:      Hans Verkuil <hverkuil@xs4all.nl>
4680 L:      linux-media@vger.kernel.org
4681 S:      Odd Fixes
4682 W:      http://linuxtv.org
4683 T:      git git://linuxtv.org/media_tree.git
4684 F:      drivers/media/i2c/cs3308.c
4685
4686 CS5535 Audio ALSA driver
4687 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4688 S:      Maintained
4689 F:      sound/pci/cs5535audio/
4690
4691 CSI DRIVERS FOR ALLWINNER V3s
4692 M:      Yong Deng <yong.deng@magewell.com>
4693 L:      linux-media@vger.kernel.org
4694 S:      Maintained
4695 T:      git git://linuxtv.org/media_tree.git
4696 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4697 F:      drivers/media/platform/sunxi/sun6i-csi/
4698
4699 CW1200 WLAN driver
4700 M:      Solomon Peachy <pizza@shaftnet.org>
4701 S:      Maintained
4702 F:      drivers/net/wireless/st/cw1200/
4703
4704 CX18 VIDEO4LINUX DRIVER
4705 M:      Andy Walls <awalls@md.metrocast.net>
4706 L:      linux-media@vger.kernel.org
4707 S:      Maintained
4708 W:      https://linuxtv.org
4709 T:      git git://linuxtv.org/media_tree.git
4710 F:      drivers/media/pci/cx18/
4711 F:      include/uapi/linux/ivtv*
4712
4713 CX2341X MPEG ENCODER HELPER MODULE
4714 M:      Hans Verkuil <hverkuil@xs4all.nl>
4715 L:      linux-media@vger.kernel.org
4716 S:      Maintained
4717 W:      https://linuxtv.org
4718 T:      git git://linuxtv.org/media_tree.git
4719 F:      drivers/media/common/cx2341x*
4720 F:      include/media/drv-intf/cx2341x.h
4721
4722 CX24120 MEDIA DRIVER
4723 M:      Jemma Denson <jdenson@gmail.com>
4724 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4725 L:      linux-media@vger.kernel.org
4726 S:      Maintained
4727 W:      https://linuxtv.org
4728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4729 F:      drivers/media/dvb-frontends/cx24120*
4730
4731 CX88 VIDEO4LINUX DRIVER
4732 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4733 L:      linux-media@vger.kernel.org
4734 S:      Odd fixes
4735 W:      https://linuxtv.org
4736 T:      git git://linuxtv.org/media_tree.git
4737 F:      Documentation/driver-api/media/drivers/cx88*
4738 F:      drivers/media/pci/cx88/
4739
4740 CXD2820R MEDIA DRIVER
4741 M:      Antti Palosaari <crope@iki.fi>
4742 L:      linux-media@vger.kernel.org
4743 S:      Maintained
4744 W:      https://linuxtv.org
4745 W:      http://palosaari.fi/linux/
4746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4747 T:      git git://linuxtv.org/anttip/media_tree.git
4748 F:      drivers/media/dvb-frontends/cxd2820r*
4749
4750 CXGB3 ETHERNET DRIVER (CXGB3)
4751 M:      Raju Rangoju <rajur@chelsio.com>
4752 L:      netdev@vger.kernel.org
4753 S:      Supported
4754 W:      http://www.chelsio.com
4755 F:      drivers/net/ethernet/chelsio/cxgb3/
4756
4757 CXGB3 ISCSI DRIVER (CXGB3I)
4758 M:      Karen Xie <kxie@chelsio.com>
4759 L:      linux-scsi@vger.kernel.org
4760 S:      Supported
4761 W:      http://www.chelsio.com
4762 F:      drivers/scsi/cxgbi/cxgb3i
4763
4764 CXGB4 CRYPTO DRIVER (chcr)
4765 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4766 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4767 M:      Rohit Maheshwari <rohitm@chelsio.com>
4768 L:      linux-crypto@vger.kernel.org
4769 S:      Supported
4770 W:      http://www.chelsio.com
4771 F:      drivers/crypto/chelsio
4772
4773 CXGB4 INLINE CRYPTO DRIVER
4774 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4775 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4776 M:      Rohit Maheshwari <rohitm@chelsio.com>
4777 L:      netdev@vger.kernel.org
4778 S:      Supported
4779 W:      http://www.chelsio.com
4780 F:      drivers/net/ethernet/chelsio/inline_crypto/
4781
4782 CXGB4 ETHERNET DRIVER (CXGB4)
4783 M:      Raju Rangoju <rajur@chelsio.com>
4784 L:      netdev@vger.kernel.org
4785 S:      Supported
4786 W:      http://www.chelsio.com
4787 F:      drivers/net/ethernet/chelsio/cxgb4/
4788
4789 CXGB4 ISCSI DRIVER (CXGB4I)
4790 M:      Karen Xie <kxie@chelsio.com>
4791 L:      linux-scsi@vger.kernel.org
4792 S:      Supported
4793 W:      http://www.chelsio.com
4794 F:      drivers/scsi/cxgbi/cxgb4i
4795
4796 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4797 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4798 L:      linux-rdma@vger.kernel.org
4799 S:      Supported
4800 W:      http://www.openfabrics.org
4801 F:      drivers/infiniband/hw/cxgb4/
4802 F:      include/uapi/rdma/cxgb4-abi.h
4803
4804 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4805 M:      Raju Rangoju <rajur@chelsio.com>
4806 L:      netdev@vger.kernel.org
4807 S:      Supported
4808 W:      http://www.chelsio.com
4809 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4810
4811 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4812 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4813 M:      Andrew Donnellan <ajd@linux.ibm.com>
4814 L:      linuxppc-dev@lists.ozlabs.org
4815 S:      Supported
4816 F:      Documentation/ABI/testing/sysfs-class-cxl
4817 F:      Documentation/powerpc/cxl.rst
4818 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4819 F:      drivers/misc/cxl/
4820 F:      include/misc/cxl*
4821 F:      include/uapi/misc/cxl.h
4822
4823 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4824 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4825 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4826 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4827 L:      linux-scsi@vger.kernel.org
4828 S:      Supported
4829 F:      Documentation/powerpc/cxlflash.rst
4830 F:      drivers/scsi/cxlflash/
4831 F:      include/uapi/scsi/cxlflash_ioctl.h
4832
4833 CYBERPRO FB DRIVER
4834 M:      Russell King <linux@armlinux.org.uk>
4835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4836 S:      Maintained
4837 W:      http://www.armlinux.org.uk/
4838 F:      drivers/video/fbdev/cyber2000fb.*
4839
4840 CYCLADES ASYNC MUX DRIVER
4841 S:      Orphan
4842 W:      http://www.cyclades.com/
4843 F:      drivers/tty/cyclades.c
4844 F:      include/linux/cyclades.h
4845 F:      include/uapi/linux/cyclades.h
4846
4847 CYCLADES PC300 DRIVER
4848 S:      Orphan
4849 W:      http://www.cyclades.com/
4850 F:      drivers/net/wan/pc300*
4851
4852 CYPRESS_FIRMWARE MEDIA DRIVER
4853 M:      Antti Palosaari <crope@iki.fi>
4854 L:      linux-media@vger.kernel.org
4855 S:      Maintained
4856 W:      https://linuxtv.org
4857 W:      http://palosaari.fi/linux/
4858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4859 T:      git git://linuxtv.org/anttip/media_tree.git
4860 F:      drivers/media/common/cypress_firmware*
4861
4862 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
4863 M:      Linus Walleij <linus.walleij@linaro.org>
4864 L:      linux-input@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/input/touchscreen/cy8ctma140.c
4867
4868 CYTTSP TOUCHSCREEN DRIVER
4869 M:      Ferruh Yigit <fery@cypress.com>
4870 L:      linux-input@vger.kernel.org
4871 S:      Supported
4872 F:      drivers/input/touchscreen/cyttsp*
4873 F:      include/linux/input/cyttsp.h
4874
4875 D-LINK DIR-685 TOUCHKEYS DRIVER
4876 M:      Linus Walleij <linus.walleij@linaro.org>
4877 L:      linux-input@vger.kernel.org
4878 S:      Supported
4879 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4880
4881 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4882 M:      Joshua Kinard <kumba@gentoo.org>
4883 S:      Maintained
4884 F:      drivers/rtc/rtc-ds1685.c
4885 F:      include/linux/rtc/ds1685.h
4886
4887 DAMA SLAVE for AX.25
4888 M:      Joerg Reuter <jreuter@yaina.de>
4889 L:      linux-hams@vger.kernel.org
4890 S:      Maintained
4891 W:      http://yaina.de/jreuter/
4892 W:      http://www.qsl.net/dl1bke/
4893 F:      net/ax25/af_ax25.c
4894 F:      net/ax25/ax25_dev.c
4895 F:      net/ax25/ax25_ds_*
4896 F:      net/ax25/ax25_in.c
4897 F:      net/ax25/ax25_out.c
4898 F:      net/ax25/ax25_timer.c
4899 F:      net/ax25/sysctl_net_ax25.c
4900
4901 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4902 L:      netdev@vger.kernel.org
4903 S:      Orphan
4904 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
4905 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4906
4907 DC390/AM53C974 SCSI driver
4908 M:      Hannes Reinecke <hare@suse.com>
4909 L:      linux-scsi@vger.kernel.org
4910 S:      Maintained
4911 F:      drivers/scsi/am53c974.c
4912
4913 DC395x SCSI driver
4914 M:      Oliver Neukum <oliver@neukum.org>
4915 M:      Ali Akcaagac <aliakc@web.de>
4916 M:      Jamie Lenehan <lenehan@twibble.org>
4917 L:      dc395x@twibble.org
4918 S:      Maintained
4919 W:      http://twibble.org/dist/dc395x/
4920 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4921 F:      Documentation/scsi/dc395x.rst
4922 F:      drivers/scsi/dc395x.*
4923
4924 DCCP PROTOCOL
4925 L:      dccp@vger.kernel.org
4926 S:      Orphan
4927 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4928 F:      include/linux/dccp.h
4929 F:      include/linux/tfrc.h
4930 F:      include/uapi/linux/dccp.h
4931 F:      net/dccp/
4932
4933 DECnet NETWORK LAYER
4934 L:      linux-decnet-user@lists.sourceforge.net
4935 S:      Orphan
4936 W:      http://linux-decnet.sourceforge.net
4937 F:      Documentation/networking/decnet.rst
4938 F:      net/decnet/
4939
4940 DECSTATION PLATFORM SUPPORT
4941 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4942 L:      linux-mips@vger.kernel.org
4943 S:      Maintained
4944 W:      http://www.linux-mips.org/wiki/DECstation
4945 F:      arch/mips/dec/
4946 F:      arch/mips/include/asm/dec/
4947 F:      arch/mips/include/asm/mach-dec/
4948
4949 DEFXX FDDI NETWORK DRIVER
4950 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4951 S:      Maintained
4952 F:      drivers/net/fddi/defxx.*
4953
4954 DEFZA FDDI NETWORK DRIVER
4955 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4956 S:      Maintained
4957 F:      drivers/net/fddi/defza.*
4958
4959 DEINTERLACE DRIVERS FOR ALLWINNER H3
4960 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4961 L:      linux-media@vger.kernel.org
4962 S:      Maintained
4963 T:      git git://linuxtv.org/media_tree.git
4964 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4965 F:      drivers/media/platform/sunxi/sun8i-di/
4966
4967 DELL LAPTOP DRIVER
4968 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4969 M:      Pali Rohár <pali@kernel.org>
4970 L:      platform-driver-x86@vger.kernel.org
4971 S:      Maintained
4972 F:      drivers/platform/x86/dell-laptop.c
4973
4974 DELL LAPTOP FREEFALL DRIVER
4975 M:      Pali Rohár <pali@kernel.org>
4976 S:      Maintained
4977 F:      drivers/platform/x86/dell-smo8800.c
4978
4979 DELL LAPTOP RBTN DRIVER
4980 M:      Pali Rohár <pali@kernel.org>
4981 S:      Maintained
4982 F:      drivers/platform/x86/dell-rbtn.*
4983
4984 DELL LAPTOP SMM DRIVER
4985 M:      Pali Rohár <pali@kernel.org>
4986 S:      Maintained
4987 F:      drivers/hwmon/dell-smm-hwmon.c
4988 F:      include/uapi/linux/i8k.h
4989
4990 DELL REMOTE BIOS UPDATE DRIVER
4991 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4992 L:      platform-driver-x86@vger.kernel.org
4993 S:      Maintained
4994 F:      drivers/platform/x86/dell_rbu.c
4995
4996 DELL SMBIOS DRIVER
4997 M:      Pali Rohár <pali@kernel.org>
4998 M:      Mario Limonciello <mario.limonciello@dell.com>
4999 L:      platform-driver-x86@vger.kernel.org
5000 S:      Maintained
5001 F:      drivers/platform/x86/dell-smbios.*
5002
5003 DELL SMBIOS SMM DRIVER
5004 M:      Mario Limonciello <mario.limonciello@dell.com>
5005 L:      platform-driver-x86@vger.kernel.org
5006 S:      Maintained
5007 F:      drivers/platform/x86/dell-smbios-smm.c
5008
5009 DELL SMBIOS WMI DRIVER
5010 M:      Mario Limonciello <mario.limonciello@dell.com>
5011 L:      platform-driver-x86@vger.kernel.org
5012 S:      Maintained
5013 F:      drivers/platform/x86/dell-smbios-wmi.c
5014 F:      tools/wmi/dell-smbios-example.c
5015
5016 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5017 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5018 L:      platform-driver-x86@vger.kernel.org
5019 S:      Maintained
5020 F:      Documentation/driver-api/dcdbas.rst
5021 F:      drivers/platform/x86/dcdbas.*
5022
5023 DELL WMI DESCRIPTOR DRIVER
5024 M:      Mario Limonciello <mario.limonciello@dell.com>
5025 S:      Maintained
5026 F:      drivers/platform/x86/dell-wmi-descriptor.c
5027
5028 DELL WMI SYSMAN DRIVER
5029 M:      Divya Bharathi <divya.bharathi@dell.com>
5030 M:      Mario Limonciello <mario.limonciello@dell.com>
5031 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5032 L:      platform-driver-x86@vger.kernel.org
5033 S:      Maintained
5034 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5035 F:      drivers/platform/x86/dell-wmi-sysman/
5036
5037 DELL WMI NOTIFICATIONS DRIVER
5038 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5039 M:      Pali Rohár <pali@kernel.org>
5040 S:      Maintained
5041 F:      drivers/platform/x86/dell-wmi.c
5042
5043 DELTA ST MEDIA DRIVER
5044 M:      Hugues Fruchet <hugues.fruchet@st.com>
5045 L:      linux-media@vger.kernel.org
5046 S:      Supported
5047 W:      https://linuxtv.org
5048 T:      git git://linuxtv.org/media_tree.git
5049 F:      drivers/media/platform/sti/delta
5050
5051 DENALI NAND DRIVER
5052 L:      linux-mtd@lists.infradead.org
5053 S:      Orphan
5054 F:      drivers/mtd/nand/raw/denali*
5055
5056 DESIGNWARE EDMA CORE IP DRIVER
5057 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5058 L:      dmaengine@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/dma/dw-edma/
5061 F:      include/linux/dma/edma.h
5062
5063 DESIGNWARE USB2 DRD IP DRIVER
5064 M:      Minas Harutyunyan <hminas@synopsys.com>
5065 L:      linux-usb@vger.kernel.org
5066 S:      Maintained
5067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5068 F:      drivers/usb/dwc2/
5069
5070 DESIGNWARE USB3 DRD IP DRIVER
5071 M:      Felipe Balbi <balbi@kernel.org>
5072 L:      linux-usb@vger.kernel.org
5073 S:      Maintained
5074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5075 F:      drivers/usb/dwc3/
5076
5077 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5078 M:      Andreas Klinger <ak@it-klinger.de>
5079 L:      linux-iio@vger.kernel.org
5080 S:      Maintained
5081 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5082 F:      drivers/iio/proximity/srf*.c
5083
5084 DEVICE COREDUMP (DEV_COREDUMP)
5085 M:      Johannes Berg <johannes@sipsolutions.net>
5086 L:      linux-kernel@vger.kernel.org
5087 S:      Maintained
5088 F:      drivers/base/devcoredump.c
5089 F:      include/linux/devcoredump.h
5090
5091 DEVICE DEPENDENCY HELPER SCRIPT
5092 M:      Saravana Kannan <saravanak@google.com>
5093 L:      linux-kernel@vger.kernel.org
5094 S:      Maintained
5095 F:      scripts/dev-needs.sh
5096
5097 DEVICE DIRECT ACCESS (DAX)
5098 M:      Dan Williams <dan.j.williams@intel.com>
5099 M:      Vishal Verma <vishal.l.verma@intel.com>
5100 M:      Dave Jiang <dave.jiang@intel.com>
5101 L:      linux-nvdimm@lists.01.org
5102 S:      Supported
5103 F:      drivers/dax/
5104
5105 DEVICE FREQUENCY (DEVFREQ)
5106 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5107 M:      Kyungmin Park <kyungmin.park@samsung.com>
5108 M:      Chanwoo Choi <cw00.choi@samsung.com>
5109 L:      linux-pm@vger.kernel.org
5110 S:      Maintained
5111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5112 F:      Documentation/devicetree/bindings/devfreq/
5113 F:      drivers/devfreq/
5114 F:      include/linux/devfreq.h
5115 F:      include/trace/events/devfreq.h
5116
5117 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5118 M:      Chanwoo Choi <cw00.choi@samsung.com>
5119 L:      linux-pm@vger.kernel.org
5120 S:      Supported
5121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5122 F:      Documentation/devicetree/bindings/devfreq/event/
5123 F:      drivers/devfreq/devfreq-event.c
5124 F:      drivers/devfreq/event/
5125 F:      include/dt-bindings/pmu/exynos_ppmu.h
5126 F:      include/linux/devfreq-event.h
5127
5128 DEVICE NUMBER REGISTRY
5129 M:      Torben Mathiasen <device@lanana.org>
5130 S:      Maintained
5131 W:      http://lanana.org/docs/device-list/index.html
5132
5133 DEVICE-MAPPER  (LVM)
5134 M:      Alasdair Kergon <agk@redhat.com>
5135 M:      Mike Snitzer <snitzer@redhat.com>
5136 M:      dm-devel@redhat.com
5137 L:      dm-devel@redhat.com
5138 S:      Maintained
5139 W:      http://sources.redhat.com/dm
5140 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5142 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5143 F:      Documentation/admin-guide/device-mapper/
5144 F:      drivers/md/Kconfig
5145 F:      drivers/md/Makefile
5146 F:      drivers/md/dm*
5147 F:      drivers/md/persistent-data/
5148 F:      include/linux/device-mapper.h
5149 F:      include/linux/dm-*.h
5150 F:      include/uapi/linux/dm-*.h
5151
5152 DEVLINK
5153 M:      Jiri Pirko <jiri@nvidia.com>
5154 L:      netdev@vger.kernel.org
5155 S:      Supported
5156 F:      Documentation/networking/devlink
5157 F:      include/net/devlink.h
5158 F:      include/uapi/linux/devlink.h
5159 F:      net/core/devlink.c
5160
5161 DIALOG SEMICONDUCTOR DRIVERS
5162 M:      Support Opensource <support.opensource@diasemi.com>
5163 S:      Supported
5164 W:      http://www.dialog-semiconductor.com/products
5165 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5166 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5167 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5168 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5169 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5170 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5171 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5172 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5173 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5174 F:      Documentation/hwmon/da90??.rst
5175 F:      drivers/gpio/gpio-da90??.c
5176 F:      drivers/hwmon/da90??-hwmon.c
5177 F:      drivers/iio/adc/da91??-*.c
5178 F:      drivers/input/misc/da72??.[ch]
5179 F:      drivers/input/misc/da90??_onkey.c
5180 F:      drivers/input/touchscreen/da9052_tsi.c
5181 F:      drivers/leds/leds-da90??.c
5182 F:      drivers/mfd/da903x.c
5183 F:      drivers/mfd/da90??-*.c
5184 F:      drivers/mfd/da91??-*.c
5185 F:      drivers/pinctrl/pinctrl-da90??.c
5186 F:      drivers/power/supply/da9052-battery.c
5187 F:      drivers/power/supply/da91??-*.c
5188 F:      drivers/regulator/da9???-regulator.[ch]
5189 F:      drivers/regulator/slg51000-regulator.[ch]
5190 F:      drivers/rtc/rtc-da90??.c
5191 F:      drivers/thermal/da90??-thermal.c
5192 F:      drivers/video/backlight/da90??_bl.c
5193 F:      drivers/watchdog/da90??_wdt.c
5194 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5195 F:      include/linux/mfd/da903x.h
5196 F:      include/linux/mfd/da9052/
5197 F:      include/linux/mfd/da9055/
5198 F:      include/linux/mfd/da9062/
5199 F:      include/linux/mfd/da9063/
5200 F:      include/linux/mfd/da9150/
5201 F:      include/linux/regulator/da9211.h
5202 F:      include/sound/da[79]*.h
5203 F:      sound/soc/codecs/da[79]*.[ch]
5204
5205 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5206 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5207 L:      linux-gpio@vger.kernel.org
5208 S:      Maintained
5209 F:      drivers/gpio/gpio-gpio-mm.c
5210
5211 DIOLAN U2C-12 I2C DRIVER
5212 M:      Guenter Roeck <linux@roeck-us.net>
5213 L:      linux-i2c@vger.kernel.org
5214 S:      Maintained
5215 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5216
5217 DIRECTORY NOTIFICATION (DNOTIFY)
5218 M:      Jan Kara <jack@suse.cz>
5219 R:      Amir Goldstein <amir73il@gmail.com>
5220 L:      linux-fsdevel@vger.kernel.org
5221 S:      Maintained
5222 F:      Documentation/filesystems/dnotify.rst
5223 F:      fs/notify/dnotify/
5224 F:      include/linux/dnotify.h
5225
5226 DISK GEOMETRY AND PARTITION HANDLING
5227 M:      Andries Brouwer <aeb@cwi.nl>
5228 S:      Maintained
5229 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5230 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5231 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5232
5233 DISKQUOTA
5234 M:      Jan Kara <jack@suse.com>
5235 S:      Maintained
5236 F:      Documentation/filesystems/quota.rst
5237 F:      fs/quota/
5238 F:      include/linux/quota*.h
5239 F:      include/uapi/linux/quota*.h
5240
5241 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5242 M:      Bernie Thompson <bernie@plugable.com>
5243 L:      linux-fbdev@vger.kernel.org
5244 S:      Maintained
5245 W:      http://plugable.com/category/projects/udlfb/
5246 F:      Documentation/fb/udlfb.rst
5247 F:      drivers/video/fbdev/udlfb.c
5248 F:      include/video/udlfb.h
5249
5250 DISTRIBUTED LOCK MANAGER (DLM)
5251 M:      Christine Caulfield <ccaulfie@redhat.com>
5252 M:      David Teigland <teigland@redhat.com>
5253 L:      cluster-devel@redhat.com
5254 S:      Supported
5255 W:      http://sources.redhat.com/cluster/
5256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5257 F:      fs/dlm/
5258
5259 DMA BUFFER SHARING FRAMEWORK
5260 M:      Sumit Semwal <sumit.semwal@linaro.org>
5261 M:      Christian König <christian.koenig@amd.com>
5262 L:      linux-media@vger.kernel.org
5263 L:      dri-devel@lists.freedesktop.org
5264 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5265 S:      Maintained
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 F:      Documentation/driver-api/dma-buf.rst
5268 F:      drivers/dma-buf/
5269 F:      include/linux/*fence.h
5270 F:      include/linux/dma-buf*
5271 F:      include/linux/dma-resv.h
5272 K:      \bdma_(?:buf|fence|resv)\b
5273
5274 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5275 M:      Vinod Koul <vkoul@kernel.org>
5276 L:      dmaengine@vger.kernel.org
5277 S:      Maintained
5278 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5280 F:      Documentation/devicetree/bindings/dma/
5281 F:      Documentation/driver-api/dmaengine/
5282 F:      drivers/dma/
5283 F:      include/linux/dmaengine.h
5284 F:      include/linux/of_dma.h
5285
5286 DMA MAPPING HELPERS
5287 M:      Christoph Hellwig <hch@lst.de>
5288 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5289 R:      Robin Murphy <robin.murphy@arm.com>
5290 L:      iommu@lists.linux-foundation.org
5291 S:      Supported
5292 W:      http://git.infradead.org/users/hch/dma-mapping.git
5293 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5294 F:      include/asm-generic/dma-mapping.h
5295 F:      include/linux/dma-direct.h
5296 F:      include/linux/dma-mapping.h
5297 F:      include/linux/dma-map-ops.h
5298 F:      kernel/dma/
5299
5300 DMA MAPPING BENCHMARK
5301 M:      Barry Song <song.bao.hua@hisilicon.com>
5302 L:      iommu@lists.linux-foundation.org
5303 F:      kernel/dma/map_benchmark.c
5304 F:      tools/testing/selftests/dma/
5305
5306 DMA-BUF HEAPS FRAMEWORK
5307 M:      Sumit Semwal <sumit.semwal@linaro.org>
5308 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5309 R:      Liam Mark <lmark@codeaurora.org>
5310 R:      Laura Abbott <labbott@redhat.com>
5311 R:      Brian Starkey <Brian.Starkey@arm.com>
5312 R:      John Stultz <john.stultz@linaro.org>
5313 L:      linux-media@vger.kernel.org
5314 L:      dri-devel@lists.freedesktop.org
5315 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5316 S:      Maintained
5317 T:      git git://anongit.freedesktop.org/drm/drm-misc
5318 F:      drivers/dma-buf/dma-heap.c
5319 F:      drivers/dma-buf/heaps/*
5320 F:      include/linux/dma-heap.h
5321 F:      include/uapi/linux/dma-heap.h
5322
5323 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5324 M:      Lukasz Luba <lukasz.luba@arm.com>
5325 L:      linux-pm@vger.kernel.org
5326 L:      linux-samsung-soc@vger.kernel.org
5327 S:      Maintained
5328 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5329 F:      drivers/memory/samsung/exynos5422-dmc.c
5330
5331 DME1737 HARDWARE MONITOR DRIVER
5332 M:      Juerg Haefliger <juergh@gmail.com>
5333 L:      linux-hwmon@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/hwmon/dme1737.rst
5336 F:      drivers/hwmon/dme1737.c
5337
5338 DMI/SMBIOS SUPPORT
5339 M:      Jean Delvare <jdelvare@suse.com>
5340 S:      Maintained
5341 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5342 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5343 F:      drivers/firmware/dmi-id.c
5344 F:      drivers/firmware/dmi_scan.c
5345 F:      include/linux/dmi.h
5346
5347 DOCUMENTATION
5348 M:      Jonathan Corbet <corbet@lwn.net>
5349 L:      linux-doc@vger.kernel.org
5350 S:      Maintained
5351 P:      Documentation/doc-guide/maintainer-profile.rst
5352 T:      git git://git.lwn.net/linux.git docs-next
5353 F:      Documentation/
5354 F:      scripts/documentation-file-ref-check
5355 F:      scripts/kernel-doc
5356 F:      scripts/sphinx-pre-install
5357 X:      Documentation/ABI/
5358 X:      Documentation/admin-guide/media/
5359 X:      Documentation/devicetree/
5360 X:      Documentation/driver-api/media/
5361 X:      Documentation/firmware-guide/acpi/
5362 X:      Documentation/i2c/
5363 X:      Documentation/power/
5364 X:      Documentation/spi/
5365 X:      Documentation/userspace-api/media/
5366
5367 DOCUMENTATION SCRIPTS
5368 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5369 L:      linux-doc@vger.kernel.org
5370 S:      Maintained
5371 F:      Documentation/sphinx/parse-headers.pl
5372 F:      scripts/documentation-file-ref-check
5373 F:      scripts/sphinx-pre-install
5374
5375 DOCUMENTATION/ITALIAN
5376 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5377 L:      linux-doc@vger.kernel.org
5378 S:      Maintained
5379 F:      Documentation/translations/it_IT
5380
5381 DONGWOON DW9714 LENS VOICE COIL DRIVER
5382 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5383 L:      linux-media@vger.kernel.org
5384 S:      Maintained
5385 T:      git git://linuxtv.org/media_tree.git
5386 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5387 F:      drivers/media/i2c/dw9714.c
5388
5389 DONGWOON DW9768 LENS VOICE COIL DRIVER
5390 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5391 L:      linux-media@vger.kernel.org
5392 S:      Maintained
5393 T:      git git://linuxtv.org/media_tree.git
5394 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5395 F:      drivers/media/i2c/dw9768.c
5396
5397 DONGWOON DW9807 LENS VOICE COIL DRIVER
5398 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5399 L:      linux-media@vger.kernel.org
5400 S:      Maintained
5401 T:      git git://linuxtv.org/media_tree.git
5402 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5403 F:      drivers/media/i2c/dw9807-vcm.c
5404
5405 DOUBLETALK DRIVER
5406 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5407 L:      blinux-list@redhat.com
5408 S:      Maintained
5409 F:      drivers/char/dtlk.c
5410 F:      include/linux/dtlk.h
5411
5412 DPAA2 DATAPATH I/O (DPIO) DRIVER
5413 M:      Roy Pledge <Roy.Pledge@nxp.com>
5414 L:      linux-kernel@vger.kernel.org
5415 S:      Maintained
5416 F:      drivers/soc/fsl/dpio
5417
5418 DPAA2 ETHERNET DRIVER
5419 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5420 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5421 L:      netdev@vger.kernel.org
5422 S:      Maintained
5423 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5424 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5425 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5426 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5427 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5428 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5429 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5430 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5431 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5432
5433 DPAA2 ETHERNET SWITCH DRIVER
5434 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5435 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5436 L:      linux-kernel@vger.kernel.org
5437 S:      Maintained
5438 F:      drivers/staging/fsl-dpaa2/ethsw
5439
5440 DPT_I2O SCSI RAID DRIVER
5441 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5442 L:      linux-scsi@vger.kernel.org
5443 S:      Maintained
5444 W:      http://www.adaptec.com/
5445 F:      drivers/scsi/dpt*
5446 F:      drivers/scsi/dpt/
5447
5448 DRBD DRIVER
5449 M:      Philipp Reisner <philipp.reisner@linbit.com>
5450 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5451 L:      drbd-dev@lists.linbit.com
5452 S:      Supported
5453 W:      http://www.drbd.org
5454 T:      git git://git.linbit.com/linux-drbd.git
5455 T:      git git://git.linbit.com/drbd-8.4.git
5456 F:      Documentation/admin-guide/blockdev/
5457 F:      drivers/block/drbd/
5458 F:      lib/lru_cache.c
5459
5460 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5461 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5462 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5463 S:      Supported
5464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5465 F:      Documentation/core-api/kobject.rst
5466 F:      drivers/base/
5467 F:      fs/debugfs/
5468 F:      fs/sysfs/
5469 F:      include/linux/debugfs.h
5470 F:      include/linux/kobj*
5471 F:      lib/kobj*
5472
5473 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5474 M:      Nishanth Menon <nm@ti.com>
5475 L:      linux-pm@vger.kernel.org
5476 S:      Maintained
5477 F:      drivers/soc/ti/smartreflex.c
5478 F:      include/linux/power/smartreflex.h
5479
5480 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5481 M:      Maxime Ripard <mripard@kernel.org>
5482 M:      Chen-Yu Tsai <wens@csie.org>
5483 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5484 L:      dri-devel@lists.freedesktop.org
5485 S:      Supported
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 F:      drivers/gpu/drm/sun4i/sun8i*
5488
5489 DRM DRIVER FOR ARM PL111 CLCD
5490 M:      Eric Anholt <eric@anholt.net>
5491 S:      Supported
5492 T:      git git://anongit.freedesktop.org/drm/drm-misc
5493 F:      drivers/gpu/drm/pl111/
5494
5495 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5496 M:      Linus Walleij <linus.walleij@linaro.org>
5497 S:      Maintained
5498 T:      git git://anongit.freedesktop.org/drm/drm-misc
5499 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5500 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5501
5502 DRM DRIVER FOR ASPEED BMC GFX
5503 M:      Joel Stanley <joel@jms.id.au>
5504 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5505 S:      Supported
5506 T:      git git://anongit.freedesktop.org/drm/drm-misc
5507 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5508 F:      drivers/gpu/drm/aspeed/
5509
5510 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5511 M:      Dave Airlie <airlied@redhat.com>
5512 R:      Thomas Zimmermann <tzimmermann@suse.de>
5513 L:      dri-devel@lists.freedesktop.org
5514 S:      Supported
5515 T:      git git://anongit.freedesktop.org/drm/drm-misc
5516 F:      drivers/gpu/drm/ast/
5517
5518 DRM DRIVER FOR BOCHS VIRTUAL GPU
5519 M:      Gerd Hoffmann <kraxel@redhat.com>
5520 L:      virtualization@lists.linux-foundation.org
5521 S:      Maintained
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523 F:      drivers/gpu/drm/bochs/
5524
5525 DRM DRIVER FOR BOE HIMAX8279D PANELS
5526 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5527 S:      Maintained
5528 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5529 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5530
5531 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5532 M:      Linus Walleij <linus.walleij@linaro.org>
5533 S:      Maintained
5534 T:      git git://anongit.freedesktop.org/drm/drm-misc
5535 F:      drivers/gpu/drm/tve200/
5536
5537 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5538 M:      Icenowy Zheng <icenowy@aosc.io>
5539 S:      Maintained
5540 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5541 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5542
5543 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5544 M:      Jagan Teki <jagan@amarulasolutions.com>
5545 S:      Maintained
5546 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5547 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5548
5549 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5550 M:      Hans de Goede <hdegoede@redhat.com>
5551 S:      Maintained
5552 T:      git git://anongit.freedesktop.org/drm/drm-misc
5553 F:      drivers/gpu/drm/tiny/gm12u320.c
5554
5555 DRM DRIVER FOR HX8357D PANELS
5556 M:      Eric Anholt <eric@anholt.net>
5557 S:      Maintained
5558 T:      git git://anongit.freedesktop.org/drm/drm-misc
5559 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5560 F:      drivers/gpu/drm/tiny/hx8357d.c
5561
5562 DRM DRIVER FOR ILITEK ILI9225 PANELS
5563 M:      David Lechner <david@lechnology.com>
5564 S:      Maintained
5565 T:      git git://anongit.freedesktop.org/drm/drm-misc
5566 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5567 F:      drivers/gpu/drm/tiny/ili9225.c
5568
5569 DRM DRIVER FOR ILITEK ILI9486 PANELS
5570 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5571 S:      Maintained
5572 T:      git git://anongit.freedesktop.org/drm/drm-misc
5573 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5574 F:      drivers/gpu/drm/tiny/ili9486.c
5575
5576 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5577 S:      Orphan / Obsolete
5578 F:      drivers/gpu/drm/i810/
5579 F:      include/uapi/drm/i810_drm.h
5580
5581 DRM DRIVER FOR LVDS PANELS
5582 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5583 L:      dri-devel@lists.freedesktop.org
5584 T:      git git://anongit.freedesktop.org/drm/drm-misc
5585 S:      Maintained
5586 F:      drivers/gpu/drm/panel/panel-lvds.c
5587 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5588
5589 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5590 M:      Guido Günther <agx@sigxcpu.org>
5591 R:      Purism Kernel Team <kernel@puri.sm>
5592 S:      Maintained
5593 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5594 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5595
5596 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5597 S:      Orphan / Obsolete
5598 F:      drivers/gpu/drm/mga/
5599 F:      include/uapi/drm/mga_drm.h
5600
5601 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5602 M:      Dave Airlie <airlied@redhat.com>
5603 R:      Thomas Zimmermann <tzimmermann@suse.de>
5604 L:      dri-devel@lists.freedesktop.org
5605 S:      Supported
5606 T:      git git://anongit.freedesktop.org/drm/drm-misc
5607 F:      drivers/gpu/drm/mgag200/
5608
5609 DRM DRIVER FOR MI0283QT
5610 M:      Noralf Trønnes <noralf@tronnes.org>
5611 S:      Maintained
5612 T:      git git://anongit.freedesktop.org/drm/drm-misc
5613 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5614 F:      drivers/gpu/drm/tiny/mi0283qt.c
5615
5616 DRM DRIVER FOR MSM ADRENO GPU
5617 M:      Rob Clark <robdclark@gmail.com>
5618 M:      Sean Paul <sean@poorly.run>
5619 L:      linux-arm-msm@vger.kernel.org
5620 L:      dri-devel@lists.freedesktop.org
5621 L:      freedreno@lists.freedesktop.org
5622 S:      Maintained
5623 T:      git https://gitlab.freedesktop.org/drm/msm.git
5624 F:      Documentation/devicetree/bindings/display/msm/
5625 F:      drivers/gpu/drm/msm/
5626 F:      include/uapi/drm/msm_drm.h
5627
5628 DRM DRIVER FOR NOVATEK NT35510 PANELS
5629 M:      Linus Walleij <linus.walleij@linaro.org>
5630 S:      Maintained
5631 T:      git git://anongit.freedesktop.org/drm/drm-misc
5632 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5633 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5634
5635 DRM DRIVER FOR NOVATEK NT36672A PANELS
5636 M:      Sumit Semwal <sumit.semwal@linaro.org>
5637 S:      Maintained
5638 T:      git git://anongit.freedesktop.org/drm/drm-misc
5639 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5640 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5641
5642 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5643 M:      Ben Skeggs <bskeggs@redhat.com>
5644 L:      dri-devel@lists.freedesktop.org
5645 L:      nouveau@lists.freedesktop.org
5646 S:      Supported
5647 T:      git git://github.com/skeggsb/linux
5648 F:      drivers/gpu/drm/nouveau/
5649 F:      include/uapi/drm/nouveau_drm.h
5650
5651 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5652 M:      Stefan Mavrodiev <stefan@olimex.com>
5653 S:      Maintained
5654 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5655 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5656
5657 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5658 M:      Noralf Trønnes <noralf@tronnes.org>
5659 S:      Maintained
5660 T:      git git://anongit.freedesktop.org/drm/drm-misc
5661 F:      Documentation/devicetree/bindings/display/repaper.txt
5662 F:      drivers/gpu/drm/tiny/repaper.c
5663
5664 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5665 M:      Dave Airlie <airlied@redhat.com>
5666 M:      Gerd Hoffmann <kraxel@redhat.com>
5667 L:      virtualization@lists.linux-foundation.org
5668 S:      Obsolete
5669 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5670 T:      git git://anongit.freedesktop.org/drm/drm-misc
5671 F:      drivers/gpu/drm/tiny/cirrus.c
5672
5673 DRM DRIVER FOR QXL VIRTUAL GPU
5674 M:      Dave Airlie <airlied@redhat.com>
5675 M:      Gerd Hoffmann <kraxel@redhat.com>
5676 L:      virtualization@lists.linux-foundation.org
5677 L:      spice-devel@lists.freedesktop.org
5678 S:      Maintained
5679 T:      git git://anongit.freedesktop.org/drm/drm-misc
5680 F:      drivers/gpu/drm/qxl/
5681 F:      include/uapi/drm/qxl_drm.h
5682
5683 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5684 S:      Orphan / Obsolete
5685 F:      drivers/gpu/drm/r128/
5686 F:      include/uapi/drm/r128_drm.h
5687
5688 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5689 M:      Robert Chiras <robert.chiras@nxp.com>
5690 S:      Maintained
5691 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
5692 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5693
5694 DRM DRIVER FOR SITRONIX ST7703 PANELS
5695 M:      Guido Günther <agx@sigxcpu.org>
5696 R:      Purism Kernel Team <kernel@puri.sm>
5697 R:      Ondrej Jirman <megous@megous.com>
5698 S:      Maintained
5699 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
5700 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
5701
5702 DRM DRIVER FOR SAVAGE VIDEO CARDS
5703 S:      Orphan / Obsolete
5704 F:      drivers/gpu/drm/savage/
5705 F:      include/uapi/drm/savage_drm.h
5706
5707 DRM DRIVER FOR SIS VIDEO CARDS
5708 S:      Orphan / Obsolete
5709 F:      drivers/gpu/drm/sis/
5710 F:      include/uapi/drm/sis_drm.h
5711
5712 DRM DRIVER FOR SITRONIX ST7586 PANELS
5713 M:      David Lechner <david@lechnology.com>
5714 S:      Maintained
5715 T:      git git://anongit.freedesktop.org/drm/drm-misc
5716 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5717 F:      drivers/gpu/drm/tiny/st7586.c
5718
5719 DRM DRIVER FOR SITRONIX ST7701 PANELS
5720 M:      Jagan Teki <jagan@amarulasolutions.com>
5721 S:      Maintained
5722 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5723 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5724
5725 DRM DRIVER FOR SITRONIX ST7735R PANELS
5726 M:      David Lechner <david@lechnology.com>
5727 S:      Maintained
5728 T:      git git://anongit.freedesktop.org/drm/drm-misc
5729 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5730 F:      drivers/gpu/drm/tiny/st7735r.c
5731
5732 DRM DRIVER FOR SONY ACX424AKP PANELS
5733 M:      Linus Walleij <linus.walleij@linaro.org>
5734 S:      Maintained
5735 T:      git git://anongit.freedesktop.org/drm/drm-misc
5736 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5737
5738 DRM DRIVER FOR ST-ERICSSON MCDE
5739 M:      Linus Walleij <linus.walleij@linaro.org>
5740 S:      Maintained
5741 T:      git git://anongit.freedesktop.org/drm/drm-misc
5742 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5743 F:      drivers/gpu/drm/mcde/
5744
5745 DRM DRIVER FOR TDFX VIDEO CARDS
5746 S:      Orphan / Obsolete
5747 F:      drivers/gpu/drm/tdfx/
5748
5749 DRM DRIVER FOR TPO TPG110 PANELS
5750 M:      Linus Walleij <linus.walleij@linaro.org>
5751 S:      Maintained
5752 T:      git git://anongit.freedesktop.org/drm/drm-misc
5753 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5754 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5755
5756 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5757 M:      Dave Airlie <airlied@redhat.com>
5758 R:      Sean Paul <sean@poorly.run>
5759 R:      Thomas Zimmermann <tzimmermann@suse.de>
5760 L:      dri-devel@lists.freedesktop.org
5761 S:      Supported
5762 T:      git git://anongit.freedesktop.org/drm/drm-misc
5763 F:      drivers/gpu/drm/udl/
5764
5765 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5766 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5767 M:      Melissa Wen <melissa.srw@gmail.com>
5768 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5769 R:      Daniel Vetter <daniel@ffwll.ch>
5770 L:      dri-devel@lists.freedesktop.org
5771 S:      Maintained
5772 T:      git git://anongit.freedesktop.org/drm/drm-misc
5773 F:      Documentation/gpu/vkms.rst
5774 F:      drivers/gpu/drm/vkms/
5775
5776 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5777 M:      Hans de Goede <hdegoede@redhat.com>
5778 L:      dri-devel@lists.freedesktop.org
5779 S:      Maintained
5780 T:      git git://anongit.freedesktop.org/drm/drm-misc
5781 F:      drivers/gpu/drm/vboxvideo/
5782
5783 DRM DRIVER FOR VMWARE VIRTUAL GPU
5784 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5785 M:      Roland Scheidegger <sroland@vmware.com>
5786 L:      dri-devel@lists.freedesktop.org
5787 S:      Supported
5788 T:      git git://people.freedesktop.org/~sroland/linux
5789 F:      drivers/gpu/drm/vmwgfx/
5790 F:      include/uapi/drm/vmwgfx_drm.h
5791
5792 DRM DRIVERS
5793 M:      David Airlie <airlied@linux.ie>
5794 M:      Daniel Vetter <daniel@ffwll.ch>
5795 L:      dri-devel@lists.freedesktop.org
5796 S:      Maintained
5797 B:      https://bugs.freedesktop.org/
5798 C:      irc://chat.freenode.net/dri-devel
5799 T:      git git://anongit.freedesktop.org/drm/drm
5800 F:      Documentation/devicetree/bindings/display/
5801 F:      Documentation/devicetree/bindings/gpu/
5802 F:      Documentation/gpu/
5803 F:      drivers/gpu/drm/
5804 F:      drivers/gpu/vga/
5805 F:      include/drm/
5806 F:      include/linux/vga*
5807 F:      include/uapi/drm/
5808
5809 DRM DRIVERS AND MISC GPU PATCHES
5810 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5811 M:      Maxime Ripard <mripard@kernel.org>
5812 M:      Thomas Zimmermann <tzimmermann@suse.de>
5813 S:      Maintained
5814 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5815 T:      git git://anongit.freedesktop.org/drm/drm-misc
5816 F:      Documentation/gpu/
5817 F:      drivers/gpu/drm/*
5818 F:      drivers/gpu/vga/
5819 F:      include/drm/drm*
5820 F:      include/linux/vga*
5821 F:      include/uapi/drm/drm*
5822
5823 DRM DRIVERS FOR ALLWINNER A10
5824 M:      Maxime Ripard <mripard@kernel.org>
5825 M:      Chen-Yu Tsai <wens@csie.org>
5826 L:      dri-devel@lists.freedesktop.org
5827 S:      Supported
5828 T:      git git://anongit.freedesktop.org/drm/drm-misc
5829 F:      Documentation/devicetree/bindings/display/allwinner*
5830 F:      drivers/gpu/drm/sun4i/
5831
5832 DRM DRIVERS FOR AMLOGIC SOCS
5833 M:      Neil Armstrong <narmstrong@baylibre.com>
5834 L:      dri-devel@lists.freedesktop.org
5835 L:      linux-amlogic@lists.infradead.org
5836 S:      Supported
5837 W:      http://linux-meson.com/
5838 T:      git git://anongit.freedesktop.org/drm/drm-misc
5839 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5840 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5841 F:      Documentation/gpu/meson.rst
5842 F:      drivers/gpu/drm/meson/
5843
5844 DRM DRIVERS FOR ATMEL HLCDC
5845 M:      Sam Ravnborg <sam@ravnborg.org>
5846 M:      Boris Brezillon <bbrezillon@kernel.org>
5847 L:      dri-devel@lists.freedesktop.org
5848 S:      Supported
5849 T:      git git://anongit.freedesktop.org/drm/drm-misc
5850 F:      Documentation/devicetree/bindings/display/atmel/
5851 F:      drivers/gpu/drm/atmel-hlcdc/
5852
5853 DRM DRIVERS FOR BRIDGE CHIPS
5854 M:      Andrzej Hajda <a.hajda@samsung.com>
5855 M:      Neil Armstrong <narmstrong@baylibre.com>
5856 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5857 R:      Jonas Karlman <jonas@kwiboo.se>
5858 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5859 S:      Maintained
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      drivers/gpu/drm/bridge/
5862
5863 DRM DRIVERS FOR EXYNOS
5864 M:      Inki Dae <inki.dae@samsung.com>
5865 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5866 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5867 M:      Kyungmin Park <kyungmin.park@samsung.com>
5868 L:      dri-devel@lists.freedesktop.org
5869 S:      Supported
5870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5871 F:      Documentation/devicetree/bindings/display/exynos/
5872 F:      drivers/gpu/drm/exynos/
5873 F:      include/uapi/drm/exynos_drm.h
5874
5875 DRM DRIVERS FOR FREESCALE DCU
5876 M:      Stefan Agner <stefan@agner.ch>
5877 M:      Alison Wang <alison.wang@nxp.com>
5878 L:      dri-devel@lists.freedesktop.org
5879 S:      Supported
5880 T:      git git://anongit.freedesktop.org/drm/drm-misc
5881 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5882 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5883 F:      drivers/gpu/drm/fsl-dcu/
5884
5885 DRM DRIVERS FOR FREESCALE IMX
5886 M:      Philipp Zabel <p.zabel@pengutronix.de>
5887 L:      dri-devel@lists.freedesktop.org
5888 S:      Maintained
5889 F:      Documentation/devicetree/bindings/display/imx/
5890 F:      drivers/gpu/drm/imx/
5891 F:      drivers/gpu/ipu-v3/
5892
5893 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5894 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5895 L:      dri-devel@lists.freedesktop.org
5896 S:      Maintained
5897 T:      git git://github.com/patjak/drm-gma500
5898 F:      drivers/gpu/drm/gma500/
5899
5900 DRM DRIVERS FOR HISILICON
5901 M:      Xinliang Liu <xinliang.liu@linaro.org>
5902 M:      Tian Tao  <tiantao6@hisilicon.com>
5903 R:      John Stultz <john.stultz@linaro.org>
5904 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5905 R:      Chen Feng <puck.chen@hisilicon.com>
5906 L:      dri-devel@lists.freedesktop.org
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      Documentation/devicetree/bindings/display/hisilicon/
5910 F:      drivers/gpu/drm/hisilicon/
5911
5912 DRM DRIVERS FOR LIMA
5913 M:      Qiang Yu <yuq825@gmail.com>
5914 L:      dri-devel@lists.freedesktop.org
5915 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5916 S:      Maintained
5917 T:      git git://anongit.freedesktop.org/drm/drm-misc
5918 F:      drivers/gpu/drm/lima/
5919 F:      include/uapi/drm/lima_drm.h
5920
5921 DRM DRIVERS FOR MEDIATEK
5922 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5923 M:      Philipp Zabel <p.zabel@pengutronix.de>
5924 L:      dri-devel@lists.freedesktop.org
5925 S:      Supported
5926 F:      Documentation/devicetree/bindings/display/mediatek/
5927 F:      drivers/gpu/drm/mediatek/
5928 F:      drivers/phy/mediatek/phy-mtk-hdmi*
5929 F:      drivers/phy/mediatek/phy-mtk-mipi*
5930
5931 DRM DRIVERS FOR NVIDIA TEGRA
5932 M:      Thierry Reding <thierry.reding@gmail.com>
5933 L:      dri-devel@lists.freedesktop.org
5934 L:      linux-tegra@vger.kernel.org
5935 S:      Supported
5936 T:      git git://anongit.freedesktop.org/tegra/linux.git
5937 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5938 F:      drivers/gpu/drm/tegra/
5939 F:      drivers/gpu/host1x/
5940 F:      include/linux/host1x.h
5941 F:      include/uapi/drm/tegra_drm.h
5942
5943 DRM DRIVERS FOR RENESAS
5944 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5945 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5946 L:      dri-devel@lists.freedesktop.org
5947 L:      linux-renesas-soc@vger.kernel.org
5948 S:      Supported
5949 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5950 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5951 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
5952 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5953 F:      drivers/gpu/drm/rcar-du/
5954 F:      drivers/gpu/drm/shmobile/
5955 F:      include/linux/platform_data/shmob_drm.h
5956
5957 DRM DRIVERS FOR ROCKCHIP
5958 M:      Sandy Huang <hjc@rock-chips.com>
5959 M:      Heiko Stübner <heiko@sntech.de>
5960 L:      dri-devel@lists.freedesktop.org
5961 S:      Maintained
5962 T:      git git://anongit.freedesktop.org/drm/drm-misc
5963 F:      Documentation/devicetree/bindings/display/rockchip/
5964 F:      drivers/gpu/drm/rockchip/
5965
5966 DRM DRIVERS FOR STI
5967 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5968 M:      Vincent Abriou <vincent.abriou@st.com>
5969 L:      dri-devel@lists.freedesktop.org
5970 S:      Maintained
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5973 F:      drivers/gpu/drm/sti
5974
5975 DRM DRIVERS FOR STM
5976 M:      Yannick Fertre <yannick.fertre@st.com>
5977 M:      Philippe Cornu <philippe.cornu@st.com>
5978 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5979 M:      Vincent Abriou <vincent.abriou@st.com>
5980 L:      dri-devel@lists.freedesktop.org
5981 S:      Maintained
5982 T:      git git://anongit.freedesktop.org/drm/drm-misc
5983 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5984 F:      drivers/gpu/drm/stm
5985
5986 DRM DRIVERS FOR TI KEYSTONE
5987 M:      Jyri Sarha <jsarha@ti.com>
5988 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5989 L:      dri-devel@lists.freedesktop.org
5990 S:      Maintained
5991 T:      git git://anongit.freedesktop.org/drm/drm-misc
5992 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5993 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5994 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5995 F:      drivers/gpu/drm/tidss/
5996
5997 DRM DRIVERS FOR TI LCDC
5998 M:      Jyri Sarha <jsarha@ti.com>
5999 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6000 L:      dri-devel@lists.freedesktop.org
6001 S:      Maintained
6002 F:      Documentation/devicetree/bindings/display/tilcdc/
6003 F:      drivers/gpu/drm/tilcdc/
6004
6005 DRM DRIVERS FOR TI OMAP
6006 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
6007 L:      dri-devel@lists.freedesktop.org
6008 S:      Maintained
6009 F:      Documentation/devicetree/bindings/display/ti/
6010 F:      drivers/gpu/drm/omapdrm/
6011
6012 DRM DRIVERS FOR V3D
6013 M:      Eric Anholt <eric@anholt.net>
6014 S:      Supported
6015 T:      git git://anongit.freedesktop.org/drm/drm-misc
6016 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
6017 F:      drivers/gpu/drm/v3d/
6018 F:      include/uapi/drm/v3d_drm.h
6019
6020 DRM DRIVERS FOR VC4
6021 M:      Eric Anholt <eric@anholt.net>
6022 M:      Maxime Ripard <mripard@kernel.org>
6023 S:      Supported
6024 T:      git git://github.com/anholt/linux
6025 T:      git git://anongit.freedesktop.org/drm/drm-misc
6026 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6027 F:      drivers/gpu/drm/vc4/
6028 F:      include/uapi/drm/vc4_drm.h
6029
6030 DRM DRIVERS FOR VIVANTE GPU IP
6031 M:      Lucas Stach <l.stach@pengutronix.de>
6032 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6033 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6034 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6035 L:      dri-devel@lists.freedesktop.org
6036 S:      Maintained
6037 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6038 F:      drivers/gpu/drm/etnaviv/
6039 F:      include/uapi/drm/etnaviv_drm.h
6040
6041 DRM DRIVERS FOR XEN
6042 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6043 L:      dri-devel@lists.freedesktop.org
6044 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6045 S:      Supported
6046 T:      git git://anongit.freedesktop.org/drm/drm-misc
6047 F:      Documentation/gpu/xen-front.rst
6048 F:      drivers/gpu/drm/xen/
6049
6050 DRM DRIVERS FOR XILINX
6051 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6052 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6053 L:      dri-devel@lists.freedesktop.org
6054 S:      Maintained
6055 T:      git git://anongit.freedesktop.org/drm/drm-misc
6056 F:      Documentation/devicetree/bindings/display/xlnx/
6057 F:      drivers/gpu/drm/xlnx/
6058
6059 DRM DRIVERS FOR ZTE ZX
6060 M:      Shawn Guo <shawnguo@kernel.org>
6061 L:      dri-devel@lists.freedesktop.org
6062 S:      Maintained
6063 T:      git git://anongit.freedesktop.org/drm/drm-misc
6064 F:      Documentation/devicetree/bindings/display/zte,vou.txt
6065 F:      drivers/gpu/drm/zte/
6066
6067 DRM PANEL DRIVERS
6068 M:      Thierry Reding <thierry.reding@gmail.com>
6069 R:      Sam Ravnborg <sam@ravnborg.org>
6070 L:      dri-devel@lists.freedesktop.org
6071 S:      Maintained
6072 T:      git git://anongit.freedesktop.org/drm/drm-misc
6073 F:      Documentation/devicetree/bindings/display/panel/
6074 F:      drivers/gpu/drm/drm_panel.c
6075 F:      drivers/gpu/drm/panel/
6076 F:      include/drm/drm_panel.h
6077
6078 DRM TTM SUBSYSTEM
6079 M:      Christian Koenig <christian.koenig@amd.com>
6080 M:      Huang Rui <ray.huang@amd.com>
6081 L:      dri-devel@lists.freedesktop.org
6082 S:      Maintained
6083 T:      git git://people.freedesktop.org/~agd5f/linux
6084 F:      drivers/gpu/drm/ttm/
6085 F:      include/drm/ttm/
6086
6087 DSBR100 USB FM RADIO DRIVER
6088 M:      Alexey Klimov <klimov.linux@gmail.com>
6089 L:      linux-media@vger.kernel.org
6090 S:      Maintained
6091 T:      git git://linuxtv.org/media_tree.git
6092 F:      drivers/media/radio/dsbr100.c
6093
6094 DT3155 MEDIA DRIVER
6095 M:      Hans Verkuil <hverkuil@xs4all.nl>
6096 L:      linux-media@vger.kernel.org
6097 S:      Odd Fixes
6098 W:      https://linuxtv.org
6099 T:      git git://linuxtv.org/media_tree.git
6100 F:      drivers/media/pci/dt3155/
6101
6102 DVB_USB_AF9015 MEDIA DRIVER
6103 M:      Antti Palosaari <crope@iki.fi>
6104 L:      linux-media@vger.kernel.org
6105 S:      Maintained
6106 W:      https://linuxtv.org
6107 W:      http://palosaari.fi/linux/
6108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6109 T:      git git://linuxtv.org/anttip/media_tree.git
6110 F:      drivers/media/usb/dvb-usb-v2/af9015*
6111
6112 DVB_USB_AF9035 MEDIA DRIVER
6113 M:      Antti Palosaari <crope@iki.fi>
6114 L:      linux-media@vger.kernel.org
6115 S:      Maintained
6116 W:      https://linuxtv.org
6117 W:      http://palosaari.fi/linux/
6118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6119 T:      git git://linuxtv.org/anttip/media_tree.git
6120 F:      drivers/media/usb/dvb-usb-v2/af9035*
6121
6122 DVB_USB_ANYSEE MEDIA DRIVER
6123 M:      Antti Palosaari <crope@iki.fi>
6124 L:      linux-media@vger.kernel.org
6125 S:      Maintained
6126 W:      https://linuxtv.org
6127 W:      http://palosaari.fi/linux/
6128 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6129 T:      git git://linuxtv.org/anttip/media_tree.git
6130 F:      drivers/media/usb/dvb-usb-v2/anysee*
6131
6132 DVB_USB_AU6610 MEDIA DRIVER
6133 M:      Antti Palosaari <crope@iki.fi>
6134 L:      linux-media@vger.kernel.org
6135 S:      Maintained
6136 W:      https://linuxtv.org
6137 W:      http://palosaari.fi/linux/
6138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6139 T:      git git://linuxtv.org/anttip/media_tree.git
6140 F:      drivers/media/usb/dvb-usb-v2/au6610*
6141
6142 DVB_USB_CE6230 MEDIA DRIVER
6143 M:      Antti Palosaari <crope@iki.fi>
6144 L:      linux-media@vger.kernel.org
6145 S:      Maintained
6146 W:      https://linuxtv.org
6147 W:      http://palosaari.fi/linux/
6148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6149 T:      git git://linuxtv.org/anttip/media_tree.git
6150 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6151
6152 DVB_USB_CXUSB MEDIA DRIVER
6153 M:      Michael Krufky <mkrufky@linuxtv.org>
6154 L:      linux-media@vger.kernel.org
6155 S:      Maintained
6156 W:      https://linuxtv.org
6157 W:      http://github.com/mkrufky
6158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6159 T:      git git://linuxtv.org/media_tree.git
6160 F:      drivers/media/usb/dvb-usb/cxusb*
6161
6162 DVB_USB_EC168 MEDIA DRIVER
6163 M:      Antti Palosaari <crope@iki.fi>
6164 L:      linux-media@vger.kernel.org
6165 S:      Maintained
6166 W:      https://linuxtv.org
6167 W:      http://palosaari.fi/linux/
6168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6169 T:      git git://linuxtv.org/anttip/media_tree.git
6170 F:      drivers/media/usb/dvb-usb-v2/ec168*
6171
6172 DVB_USB_GL861 MEDIA DRIVER
6173 M:      Antti Palosaari <crope@iki.fi>
6174 L:      linux-media@vger.kernel.org
6175 S:      Maintained
6176 W:      https://linuxtv.org
6177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6178 T:      git git://linuxtv.org/anttip/media_tree.git
6179 F:      drivers/media/usb/dvb-usb-v2/gl861*
6180
6181 DVB_USB_MXL111SF MEDIA DRIVER
6182 M:      Michael Krufky <mkrufky@linuxtv.org>
6183 L:      linux-media@vger.kernel.org
6184 S:      Maintained
6185 W:      https://linuxtv.org
6186 W:      http://github.com/mkrufky
6187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6188 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6189 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6190
6191 DVB_USB_RTL28XXU MEDIA DRIVER
6192 M:      Antti Palosaari <crope@iki.fi>
6193 L:      linux-media@vger.kernel.org
6194 S:      Maintained
6195 W:      https://linuxtv.org
6196 W:      http://palosaari.fi/linux/
6197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6198 T:      git git://linuxtv.org/anttip/media_tree.git
6199 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6200
6201 DVB_USB_V2 MEDIA DRIVER
6202 M:      Antti Palosaari <crope@iki.fi>
6203 L:      linux-media@vger.kernel.org
6204 S:      Maintained
6205 W:      https://linuxtv.org
6206 W:      http://palosaari.fi/linux/
6207 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6208 T:      git git://linuxtv.org/anttip/media_tree.git
6209 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6210 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6211
6212 DYNAMIC DEBUG
6213 M:      Jason Baron <jbaron@akamai.com>
6214 S:      Maintained
6215 F:      include/linux/dynamic_debug.h
6216 F:      lib/dynamic_debug.c
6217
6218 DYNAMIC INTERRUPT MODERATION
6219 M:      Tal Gilboa <talgi@nvidia.com>
6220 S:      Maintained
6221 F:      Documentation/networking/net_dim.rst
6222 F:      include/linux/dim.h
6223 F:      lib/dim/
6224
6225 DZ DECSTATION DZ11 SERIAL DRIVER
6226 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
6227 S:      Maintained
6228 F:      drivers/tty/serial/dz.*
6229
6230 E3X0 POWER BUTTON DRIVER
6231 M:      Moritz Fischer <moritz.fischer@ettus.com>
6232 L:      usrp-users@lists.ettus.com
6233 S:      Supported
6234 W:      http://www.ettus.com
6235 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6236 F:      drivers/input/misc/e3x0-button.c
6237
6238 E4000 MEDIA DRIVER
6239 M:      Antti Palosaari <crope@iki.fi>
6240 L:      linux-media@vger.kernel.org
6241 S:      Maintained
6242 W:      https://linuxtv.org
6243 W:      http://palosaari.fi/linux/
6244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6245 T:      git git://linuxtv.org/anttip/media_tree.git
6246 F:      drivers/media/tuners/e4000*
6247
6248 EARTH_PT1 MEDIA DRIVER
6249 M:      Akihiro Tsukada <tskd08@gmail.com>
6250 L:      linux-media@vger.kernel.org
6251 S:      Odd Fixes
6252 F:      drivers/media/pci/pt1/
6253
6254 EARTH_PT3 MEDIA DRIVER
6255 M:      Akihiro Tsukada <tskd08@gmail.com>
6256 L:      linux-media@vger.kernel.org
6257 S:      Odd Fixes
6258 F:      drivers/media/pci/pt3/
6259
6260 EC100 MEDIA DRIVER
6261 M:      Antti Palosaari <crope@iki.fi>
6262 L:      linux-media@vger.kernel.org
6263 S:      Maintained
6264 W:      https://linuxtv.org
6265 W:      http://palosaari.fi/linux/
6266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6267 T:      git git://linuxtv.org/anttip/media_tree.git
6268 F:      drivers/media/dvb-frontends/ec100*
6269
6270 ECRYPT FILE SYSTEM
6271 M:      Tyler Hicks <code@tyhicks.com>
6272 L:      ecryptfs@vger.kernel.org
6273 S:      Odd Fixes
6274 W:      http://ecryptfs.org
6275 W:      https://launchpad.net/ecryptfs
6276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6277 F:      Documentation/filesystems/ecryptfs.rst
6278 F:      fs/ecryptfs/
6279
6280 EDAC-AMD64
6281 M:      Borislav Petkov <bp@alien8.de>
6282 L:      linux-edac@vger.kernel.org
6283 S:      Maintained
6284 F:      drivers/edac/amd64_edac*
6285
6286 EDAC-ARMADA
6287 M:      Jan Luebbe <jlu@pengutronix.de>
6288 L:      linux-edac@vger.kernel.org
6289 S:      Maintained
6290 F:      drivers/edac/armada_xp_*
6291
6292 EDAC-AST2500
6293 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6294 S:      Supported
6295 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6296 F:      drivers/edac/aspeed_edac.c
6297
6298 EDAC-BLUEFIELD
6299 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6300 S:      Supported
6301 F:      drivers/edac/bluefield_edac.c
6302
6303 EDAC-CALXEDA
6304 M:      Andre Przywara <andre.przywara@arm.com>
6305 L:      linux-edac@vger.kernel.org
6306 S:      Maintained
6307 F:      drivers/edac/highbank*
6308
6309 EDAC-CAVIUM OCTEON
6310 M:      Ralf Baechle <ralf@linux-mips.org>
6311 L:      linux-edac@vger.kernel.org
6312 L:      linux-mips@vger.kernel.org
6313 S:      Supported
6314 F:      drivers/edac/octeon_edac*
6315
6316 EDAC-CAVIUM THUNDERX
6317 M:      Robert Richter <rric@kernel.org>
6318 L:      linux-edac@vger.kernel.org
6319 S:      Odd Fixes
6320 F:      drivers/edac/thunderx_edac*
6321
6322 EDAC-CORE
6323 M:      Borislav Petkov <bp@alien8.de>
6324 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6325 M:      Tony Luck <tony.luck@intel.com>
6326 R:      James Morse <james.morse@arm.com>
6327 R:      Robert Richter <rric@kernel.org>
6328 L:      linux-edac@vger.kernel.org
6329 S:      Supported
6330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6331 F:      Documentation/admin-guide/ras.rst
6332 F:      Documentation/driver-api/edac.rst
6333 F:      drivers/edac/
6334 F:      include/linux/edac.h
6335
6336 EDAC-DMC520
6337 M:      Lei Wang <lewan@microsoft.com>
6338 L:      linux-edac@vger.kernel.org
6339 S:      Supported
6340 F:      drivers/edac/dmc520_edac.c
6341
6342 EDAC-E752X
6343 M:      Mark Gross <mark.gross@intel.com>
6344 L:      linux-edac@vger.kernel.org
6345 S:      Maintained
6346 F:      drivers/edac/e752x_edac.c
6347
6348 EDAC-E7XXX
6349 L:      linux-edac@vger.kernel.org
6350 S:      Maintained
6351 F:      drivers/edac/e7xxx_edac.c
6352
6353 EDAC-FSL_DDR
6354 M:      York Sun <york.sun@nxp.com>
6355 L:      linux-edac@vger.kernel.org
6356 S:      Maintained
6357 F:      drivers/edac/fsl_ddr_edac.*
6358
6359 EDAC-GHES
6360 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6361 L:      linux-edac@vger.kernel.org
6362 S:      Maintained
6363 F:      drivers/edac/ghes_edac.c
6364
6365 EDAC-I10NM
6366 M:      Tony Luck <tony.luck@intel.com>
6367 L:      linux-edac@vger.kernel.org
6368 S:      Maintained
6369 F:      drivers/edac/i10nm_base.c
6370
6371 EDAC-I3000
6372 L:      linux-edac@vger.kernel.org
6373 S:      Orphan
6374 F:      drivers/edac/i3000_edac.c
6375
6376 EDAC-I5000
6377 L:      linux-edac@vger.kernel.org
6378 S:      Maintained
6379 F:      drivers/edac/i5000_edac.c
6380
6381 EDAC-I5400
6382 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6383 L:      linux-edac@vger.kernel.org
6384 S:      Maintained
6385 F:      drivers/edac/i5400_edac.c
6386
6387 EDAC-I7300
6388 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6389 L:      linux-edac@vger.kernel.org
6390 S:      Maintained
6391 F:      drivers/edac/i7300_edac.c
6392
6393 EDAC-I7CORE
6394 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6395 L:      linux-edac@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/edac/i7core_edac.c
6398
6399 EDAC-I82443BXGX
6400 M:      Tim Small <tim@buttersideup.com>
6401 L:      linux-edac@vger.kernel.org
6402 S:      Maintained
6403 F:      drivers/edac/i82443bxgx_edac.c
6404
6405 EDAC-I82975X
6406 M:      "Arvind R." <arvino55@gmail.com>
6407 L:      linux-edac@vger.kernel.org
6408 S:      Maintained
6409 F:      drivers/edac/i82975x_edac.c
6410
6411 EDAC-IE31200
6412 M:      Jason Baron <jbaron@akamai.com>
6413 L:      linux-edac@vger.kernel.org
6414 S:      Maintained
6415 F:      drivers/edac/ie31200_edac.c
6416
6417 EDAC-IGEN6
6418 M:      Tony Luck <tony.luck@intel.com>
6419 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6420 L:      linux-edac@vger.kernel.org
6421 S:      Maintained
6422 F:      drivers/edac/igen6_edac.c
6423
6424 EDAC-MPC85XX
6425 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6426 L:      linux-edac@vger.kernel.org
6427 S:      Maintained
6428 F:      drivers/edac/mpc85xx_edac.[ch]
6429
6430 EDAC-PASEMI
6431 M:      Egor Martovetsky <egor@pasemi.com>
6432 L:      linux-edac@vger.kernel.org
6433 S:      Maintained
6434 F:      drivers/edac/pasemi_edac.c
6435
6436 EDAC-PND2
6437 M:      Tony Luck <tony.luck@intel.com>
6438 L:      linux-edac@vger.kernel.org
6439 S:      Maintained
6440 F:      drivers/edac/pnd2_edac.[ch]
6441
6442 EDAC-QCOM
6443 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6444 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6445 L:      linux-arm-msm@vger.kernel.org
6446 L:      linux-edac@vger.kernel.org
6447 S:      Maintained
6448 F:      drivers/edac/qcom_edac.c
6449
6450 EDAC-R82600
6451 M:      Tim Small <tim@buttersideup.com>
6452 L:      linux-edac@vger.kernel.org
6453 S:      Maintained
6454 F:      drivers/edac/r82600_edac.c
6455
6456 EDAC-SBRIDGE
6457 M:      Tony Luck <tony.luck@intel.com>
6458 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6459 L:      linux-edac@vger.kernel.org
6460 S:      Maintained
6461 F:      drivers/edac/sb_edac.c
6462
6463 EDAC-SIFIVE
6464 M:      Yash Shah <yash.shah@sifive.com>
6465 L:      linux-edac@vger.kernel.org
6466 S:      Supported
6467 F:      drivers/edac/sifive_edac.c
6468
6469 EDAC-SKYLAKE
6470 M:      Tony Luck <tony.luck@intel.com>
6471 L:      linux-edac@vger.kernel.org
6472 S:      Maintained
6473 F:      drivers/edac/skx_*.[ch]
6474
6475 EDAC-TI
6476 M:      Tero Kristo <t-kristo@ti.com>
6477 L:      linux-edac@vger.kernel.org
6478 S:      Maintained
6479 F:      drivers/edac/ti_edac.c
6480
6481 EDIROL UA-101/UA-1000 DRIVER
6482 M:      Clemens Ladisch <clemens@ladisch.de>
6483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6484 S:      Maintained
6485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6486 F:      sound/usb/misc/ua101.c
6487
6488 EFI TEST DRIVER
6489 M:      Ivan Hu <ivan.hu@canonical.com>
6490 M:      Ard Biesheuvel <ardb@kernel.org>
6491 L:      linux-efi@vger.kernel.org
6492 S:      Maintained
6493 F:      drivers/firmware/efi/test/
6494
6495 EFI VARIABLE FILESYSTEM
6496 M:      Matthew Garrett <matthew.garrett@nebula.com>
6497 M:      Jeremy Kerr <jk@ozlabs.org>
6498 M:      Ard Biesheuvel <ardb@kernel.org>
6499 L:      linux-efi@vger.kernel.org
6500 S:      Maintained
6501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6502 F:      fs/efivarfs/
6503
6504 EFIFB FRAMEBUFFER DRIVER
6505 M:      Peter Jones <pjones@redhat.com>
6506 L:      linux-fbdev@vger.kernel.org
6507 S:      Maintained
6508 F:      drivers/video/fbdev/efifb.c
6509
6510 EFS FILESYSTEM
6511 S:      Orphan
6512 W:      http://aeschi.ch.eu.org/efs/
6513 F:      fs/efs/
6514
6515 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6516 M:      Douglas Miller <dougmill@linux.ibm.com>
6517 L:      netdev@vger.kernel.org
6518 S:      Maintained
6519 F:      drivers/net/ethernet/ibm/ehea/
6520
6521 EM28XX VIDEO4LINUX DRIVER
6522 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6523 L:      linux-media@vger.kernel.org
6524 S:      Maintained
6525 W:      https://linuxtv.org
6526 T:      git git://linuxtv.org/media_tree.git
6527 F:      Documentation/admin-guide/media/em28xx*
6528 F:      drivers/media/usb/em28xx/
6529
6530 EMBEDDED LINUX
6531 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6532 M:      Matt Mackall <mpm@selenic.com>
6533 M:      David Woodhouse <dwmw2@infradead.org>
6534 L:      linux-embedded@vger.kernel.org
6535 S:      Maintained
6536
6537 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6538 M:      Adrian Hunter <adrian.hunter@intel.com>
6539 M:      Ritesh Harjani <riteshh@codeaurora.org>
6540 M:      Asutosh Das <asutoshd@codeaurora.org>
6541 L:      linux-mmc@vger.kernel.org
6542 S:      Maintained
6543 F:      drivers/mmc/host/cqhci*
6544
6545 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6546 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6547 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6548 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6549 L:      linux-scsi@vger.kernel.org
6550 S:      Supported
6551 W:      http://www.broadcom.com
6552 F:      drivers/scsi/be2iscsi/
6553
6554 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6555 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6556 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6557 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6558 L:      netdev@vger.kernel.org
6559 S:      Supported
6560 W:      http://www.emulex.com
6561 F:      drivers/net/ethernet/emulex/benet/
6562
6563 EMULEX ONECONNECT ROCE DRIVER
6564 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6565 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6566 L:      linux-rdma@vger.kernel.org
6567 S:      Odd Fixes
6568 W:      http://www.broadcom.com
6569 F:      drivers/infiniband/hw/ocrdma/
6570 F:      include/uapi/rdma/ocrdma-abi.h
6571
6572 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6573 M:      James Smart <james.smart@broadcom.com>
6574 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6575 L:      linux-scsi@vger.kernel.org
6576 S:      Supported
6577 W:      http://www.broadcom.com
6578 F:      drivers/scsi/lpfc/
6579
6580 ENE CB710 FLASH CARD READER DRIVER
6581 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6582 S:      Maintained
6583 F:      drivers/misc/cb710/
6584 F:      drivers/mmc/host/cb710-mmc.*
6585 F:      include/linux/cb710.h
6586
6587 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6588 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6589 S:      Maintained
6590 F:      drivers/media/rc/ene_ir.*
6591
6592 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6593 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6594 L:      linuxppc-dev@lists.ozlabs.org
6595 S:      Maintained
6596 F:      drivers/tty/ehv_bytechan.c
6597
6598 EPSON S1D13XXX FRAMEBUFFER DRIVER
6599 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6600 S:      Maintained
6601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6602 F:      drivers/video/fbdev/s1d13xxxfb.c
6603 F:      include/video/s1d13xxxfb.h
6604
6605 EROFS FILE SYSTEM
6606 M:      Gao Xiang <xiang@kernel.org>
6607 M:      Chao Yu <yuchao0@huawei.com>
6608 L:      linux-erofs@lists.ozlabs.org
6609 S:      Maintained
6610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6611 F:      Documentation/filesystems/erofs.rst
6612 F:      fs/erofs/
6613 F:      include/trace/events/erofs.h
6614
6615 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6616 M:      Jeff Layton <jlayton@kernel.org>
6617 S:      Maintained
6618 F:      include/linux/errseq.h
6619 F:      lib/errseq.c
6620
6621 ET131X NETWORK DRIVER
6622 M:      Mark Einon <mark.einon@gmail.com>
6623 S:      Odd Fixes
6624 F:      drivers/net/ethernet/agere/
6625
6626 ETHERNET BRIDGE
6627 M:      Roopa Prabhu <roopa@nvidia.com>
6628 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
6629 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6630 L:      netdev@vger.kernel.org
6631 S:      Maintained
6632 W:      http://www.linuxfoundation.org/en/Net:Bridge
6633 F:      include/linux/netfilter_bridge/
6634 F:      net/bridge/
6635
6636 ETHERNET PHY LIBRARY
6637 M:      Andrew Lunn <andrew@lunn.ch>
6638 M:      Heiner Kallweit <hkallweit1@gmail.com>
6639 R:      Russell King <linux@armlinux.org.uk>
6640 L:      netdev@vger.kernel.org
6641 S:      Maintained
6642 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6643 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6644 F:      Documentation/devicetree/bindings/net/mdio*
6645 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6646 F:      Documentation/networking/phy.rst
6647 F:      drivers/net/mdio/
6648 F:      drivers/net/mdio/of_mdio.c
6649 F:      drivers/net/pcs/
6650 F:      drivers/net/phy/
6651 F:      drivers/of/of_net.c
6652 F:      include/dt-bindings/net/qca-ar803x.h
6653 F:      include/linux/*mdio*.h
6654 F:      include/linux/mdio/*.h
6655 F:      include/linux/of_net.h
6656 F:      include/linux/phy.h
6657 F:      include/linux/phy_fixed.h
6658 F:      include/linux/platform_data/mdio-bcm-unimac.h
6659 F:      include/linux/platform_data/mdio-gpio.h
6660 F:      include/trace/events/mdio.h
6661 F:      include/uapi/linux/mdio.h
6662 F:      include/uapi/linux/mii.h
6663
6664 EXFAT FILE SYSTEM
6665 M:      Namjae Jeon <namjae.jeon@samsung.com>
6666 M:      Sungjong Seo <sj1557.seo@samsung.com>
6667 L:      linux-fsdevel@vger.kernel.org
6668 S:      Maintained
6669 F:      fs/exfat/
6670
6671 EXT2 FILE SYSTEM
6672 M:      Jan Kara <jack@suse.com>
6673 L:      linux-ext4@vger.kernel.org
6674 S:      Maintained
6675 F:      Documentation/filesystems/ext2.rst
6676 F:      fs/ext2/
6677 F:      include/linux/ext2*
6678
6679 EXT4 FILE SYSTEM
6680 M:      "Theodore Ts'o" <tytso@mit.edu>
6681 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6682 L:      linux-ext4@vger.kernel.org
6683 S:      Maintained
6684 W:      http://ext4.wiki.kernel.org
6685 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6687 F:      Documentation/filesystems/ext4/
6688 F:      fs/ext4/
6689 F:      include/trace/events/ext4.h
6690
6691 Extended Verification Module (EVM)
6692 M:      Mimi Zohar <zohar@linux.ibm.com>
6693 L:      linux-integrity@vger.kernel.org
6694 S:      Supported
6695 F:      security/integrity/evm/
6696
6697 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6698 M:      Ard Biesheuvel <ardb@kernel.org>
6699 L:      linux-efi@vger.kernel.org
6700 S:      Maintained
6701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6702 F:      Documentation/admin-guide/efi-stub.rst
6703 F:      arch/*/include/asm/efi.h
6704 F:      arch/*/kernel/efi.c
6705 F:      arch/arm/boot/compressed/efi-header.S
6706 F:      arch/arm64/kernel/efi-entry.S
6707 F:      arch/x86/platform/efi/
6708 F:      drivers/firmware/efi/
6709 F:      include/linux/efi*.h
6710
6711 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6712 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6713 M:      Chanwoo Choi <cw00.choi@samsung.com>
6714 L:      linux-kernel@vger.kernel.org
6715 S:      Maintained
6716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6717 F:      Documentation/devicetree/bindings/extcon/
6718 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6719 F:      drivers/extcon/
6720 F:      include/linux/extcon.h
6721 F:      include/linux/extcon/
6722
6723 EXTRA BOOT CONFIG
6724 M:      Masami Hiramatsu <mhiramat@kernel.org>
6725 S:      Maintained
6726 F:      Documentation/admin-guide/bootconfig.rst
6727 F:      fs/proc/bootconfig.c
6728 F:      include/linux/bootconfig.h
6729 F:      lib/bootconfig.c
6730 F:      tools/bootconfig/*
6731 F:      tools/bootconfig/scripts/*
6732
6733 EXYNOS DP DRIVER
6734 M:      Jingoo Han <jingoohan1@gmail.com>
6735 L:      dri-devel@lists.freedesktop.org
6736 S:      Maintained
6737 F:      drivers/gpu/drm/exynos/exynos_dp*
6738
6739 EXYNOS SYSMMU (IOMMU) driver
6740 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6741 L:      iommu@lists.linux-foundation.org
6742 S:      Maintained
6743 F:      drivers/iommu/exynos-iommu.c
6744
6745 F2FS FILE SYSTEM
6746 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6747 M:      Chao Yu <yuchao0@huawei.com>
6748 L:      linux-f2fs-devel@lists.sourceforge.net
6749 S:      Maintained
6750 W:      https://f2fs.wiki.kernel.org/
6751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6752 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6753 F:      Documentation/filesystems/f2fs.rst
6754 F:      fs/f2fs/
6755 F:      include/linux/f2fs_fs.h
6756 F:      include/trace/events/f2fs.h
6757 F:      include/uapi/linux/f2fs.h
6758
6759 F71805F HARDWARE MONITORING DRIVER
6760 M:      Jean Delvare <jdelvare@suse.com>
6761 L:      linux-hwmon@vger.kernel.org
6762 S:      Maintained
6763 F:      Documentation/hwmon/f71805f.rst
6764 F:      drivers/hwmon/f71805f.c
6765
6766 FADDR2LINE
6767 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6768 S:      Maintained
6769 F:      scripts/faddr2line
6770
6771 FAILOVER MODULE
6772 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6773 L:      netdev@vger.kernel.org
6774 S:      Supported
6775 F:      Documentation/networking/failover.rst
6776 F:      include/net/failover.h
6777 F:      net/core/failover.c
6778
6779 FANOTIFY
6780 M:      Jan Kara <jack@suse.cz>
6781 R:      Amir Goldstein <amir73il@gmail.com>
6782 L:      linux-fsdevel@vger.kernel.org
6783 S:      Maintained
6784 F:      fs/notify/fanotify/
6785 F:      include/linux/fanotify.h
6786 F:      include/uapi/linux/fanotify.h
6787
6788 FARSYNC SYNCHRONOUS DRIVER
6789 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6790 S:      Supported
6791 W:      http://www.farsite.co.uk/
6792 F:      drivers/net/wan/farsync.*
6793
6794 FAULT INJECTION SUPPORT
6795 M:      Akinobu Mita <akinobu.mita@gmail.com>
6796 S:      Supported
6797 F:      Documentation/fault-injection/
6798 F:      lib/fault-inject.c
6799
6800 FBTFT Framebuffer drivers
6801 L:      dri-devel@lists.freedesktop.org
6802 L:      linux-fbdev@vger.kernel.org
6803 S:      Orphan
6804 F:      drivers/staging/fbtft/
6805
6806 FC0011 TUNER DRIVER
6807 M:      Michael Buesch <m@bues.ch>
6808 L:      linux-media@vger.kernel.org
6809 S:      Maintained
6810 F:      drivers/media/tuners/fc0011.c
6811 F:      drivers/media/tuners/fc0011.h
6812
6813 FC2580 MEDIA DRIVER
6814 M:      Antti Palosaari <crope@iki.fi>
6815 L:      linux-media@vger.kernel.org
6816 S:      Maintained
6817 W:      https://linuxtv.org
6818 W:      http://palosaari.fi/linux/
6819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6820 T:      git git://linuxtv.org/anttip/media_tree.git
6821 F:      drivers/media/tuners/fc2580*
6822
6823 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6824 M:      Hannes Reinecke <hare@suse.de>
6825 L:      linux-scsi@vger.kernel.org
6826 S:      Supported
6827 W:      www.Open-FCoE.org
6828 F:      drivers/scsi/fcoe/
6829 F:      drivers/scsi/libfc/
6830 F:      include/scsi/fc/
6831 F:      include/scsi/libfc.h
6832 F:      include/scsi/libfcoe.h
6833 F:      include/uapi/scsi/fc/
6834
6835 FILE LOCKING (flock() and fcntl()/lockf())
6836 M:      Jeff Layton <jlayton@kernel.org>
6837 M:      "J. Bruce Fields" <bfields@fieldses.org>
6838 L:      linux-fsdevel@vger.kernel.org
6839 S:      Maintained
6840 F:      fs/fcntl.c
6841 F:      fs/locks.c
6842 F:      include/linux/fcntl.h
6843 F:      include/uapi/linux/fcntl.h
6844
6845 FILESYSTEM DIRECT ACCESS (DAX)
6846 M:      Dan Williams <dan.j.williams@intel.com>
6847 R:      Matthew Wilcox <willy@infradead.org>
6848 R:      Jan Kara <jack@suse.cz>
6849 L:      linux-fsdevel@vger.kernel.org
6850 L:      linux-nvdimm@lists.01.org
6851 S:      Supported
6852 F:      fs/dax.c
6853 F:      include/linux/dax.h
6854 F:      include/trace/events/fs_dax.h
6855
6856 FILESYSTEMS (VFS and infrastructure)
6857 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6858 L:      linux-fsdevel@vger.kernel.org
6859 S:      Maintained
6860 F:      fs/*
6861 F:      include/linux/fs.h
6862 F:      include/linux/fs_types.h
6863 F:      include/uapi/linux/fs.h
6864 F:      include/uapi/linux/openat2.h
6865
6866 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6867 M:      Riku Voipio <riku.voipio@iki.fi>
6868 L:      linux-hwmon@vger.kernel.org
6869 S:      Maintained
6870 F:      drivers/hwmon/f75375s.c
6871 F:      include/linux/f75375s.h
6872
6873 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6874 M:      Clemens Ladisch <clemens@ladisch.de>
6875 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6877 S:      Maintained
6878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6879 F:      include/uapi/sound/firewire.h
6880 F:      sound/firewire/
6881
6882 FIREWIRE MEDIA DRIVERS (firedtv)
6883 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6884 L:      linux-media@vger.kernel.org
6885 L:      linux1394-devel@lists.sourceforge.net
6886 S:      Maintained
6887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6888 F:      drivers/media/firewire/
6889
6890 FIREWIRE SBP-2 TARGET
6891 M:      Chris Boot <bootc@bootc.net>
6892 L:      linux-scsi@vger.kernel.org
6893 L:      target-devel@vger.kernel.org
6894 L:      linux1394-devel@lists.sourceforge.net
6895 S:      Maintained
6896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6897 F:      drivers/target/sbp/
6898
6899 FIREWIRE SUBSYSTEM
6900 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6901 L:      linux1394-devel@lists.sourceforge.net
6902 S:      Maintained
6903 W:      http://ieee1394.wiki.kernel.org/
6904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6905 F:      drivers/firewire/
6906 F:      include/linux/firewire.h
6907 F:      include/uapi/linux/firewire*.h
6908 F:      tools/firewire/
6909
6910 FIRMWARE LOADER (request_firmware)
6911 M:      Luis Chamberlain <mcgrof@kernel.org>
6912 L:      linux-kernel@vger.kernel.org
6913 S:      Maintained
6914 F:      Documentation/firmware_class/
6915 F:      drivers/base/firmware_loader/
6916 F:      include/linux/firmware.h
6917
6918 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6919 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6920 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6921 S:      Maintained
6922 F:      drivers/block/rsxx/
6923
6924 FLEXTIMER FTM-QUADDEC DRIVER
6925 M:      Patrick Havelange <patrick.havelange@essensium.com>
6926 L:      linux-iio@vger.kernel.org
6927 S:      Maintained
6928 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6929 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6930 F:      drivers/counter/ftm-quaddec.c
6931
6932 FLOPPY DRIVER
6933 M:      Denis Efremov <efremov@linux.com>
6934 L:      linux-block@vger.kernel.org
6935 S:      Odd Fixes
6936 F:      drivers/block/floppy.c
6937
6938 FLYSKY FSIA6B RC RECEIVER
6939 M:      Markus Koch <markus@notsyncing.net>
6940 L:      linux-input@vger.kernel.org
6941 S:      Maintained
6942 F:      drivers/input/joystick/fsia6b.c
6943
6944 FORCEDETH GIGABIT ETHERNET DRIVER
6945 M:      Rain River <rain.1986.08.12@gmail.com>
6946 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6947 L:      netdev@vger.kernel.org
6948 S:      Maintained
6949 F:      drivers/net/ethernet/nvidia/*
6950
6951 FPGA DFL DRIVERS
6952 M:      Wu Hao <hao.wu@intel.com>
6953 R:      Tom Rix <trix@redhat.com>
6954 L:      linux-fpga@vger.kernel.org
6955 S:      Maintained
6956 F:      Documentation/ABI/testing/sysfs-bus-dfl
6957 F:      Documentation/fpga/dfl.rst
6958 F:      drivers/fpga/dfl*
6959 F:      include/uapi/linux/fpga-dfl.h
6960
6961 FPGA MANAGER FRAMEWORK
6962 M:      Moritz Fischer <mdf@kernel.org>
6963 R:      Tom Rix <trix@redhat.com>
6964 L:      linux-fpga@vger.kernel.org
6965 S:      Maintained
6966 W:      http://www.rocketboards.org
6967 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6969 F:      Documentation/devicetree/bindings/fpga/
6970 F:      Documentation/driver-api/fpga/
6971 F:      Documentation/fpga/
6972 F:      drivers/fpga/
6973 F:      include/linux/fpga/
6974
6975 FPU EMULATOR
6976 M:      Bill Metzenthen <billm@melbpc.org.au>
6977 S:      Maintained
6978 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6979 F:      arch/x86/math-emu/
6980
6981 FRAMEBUFFER LAYER
6982 L:      dri-devel@lists.freedesktop.org
6983 L:      linux-fbdev@vger.kernel.org
6984 S:      Orphan
6985 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6986 T:      git git://anongit.freedesktop.org/drm/drm-misc
6987 F:      Documentation/fb/
6988 F:      drivers/video/
6989 F:      include/linux/fb.h
6990 F:      include/uapi/linux/fb.h
6991 F:      include/uapi/video/
6992 F:      include/video/
6993
6994 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6995 M:      Horia Geantă <horia.geanta@nxp.com>
6996 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6997 L:      linux-crypto@vger.kernel.org
6998 S:      Maintained
6999 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7000 F:      drivers/crypto/caam/
7001
7002 FREESCALE COLDFIRE M5441X MMC DRIVER
7003 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7004 L:      linux-mmc@vger.kernel.org
7005 S:      Maintained
7006 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7007 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7008
7009 FREESCALE DIU FRAMEBUFFER DRIVER
7010 M:      Timur Tabi <timur@kernel.org>
7011 L:      linux-fbdev@vger.kernel.org
7012 S:      Maintained
7013 F:      drivers/video/fbdev/fsl-diu-fb.*
7014
7015 FREESCALE DMA DRIVER
7016 M:      Li Yang <leoyang.li@nxp.com>
7017 M:      Zhang Wei <zw@zh-kernel.org>
7018 L:      linuxppc-dev@lists.ozlabs.org
7019 S:      Maintained
7020 F:      drivers/dma/fsldma.*
7021
7022 FREESCALE DSPI DRIVER
7023 M:      Vladimir Oltean <olteanv@gmail.com>
7024 L:      linux-spi@vger.kernel.org
7025 S:      Maintained
7026 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7027 F:      drivers/spi/spi-fsl-dspi.c
7028 F:      include/linux/spi/spi-fsl-dspi.h
7029
7030 FREESCALE ENETC ETHERNET DRIVERS
7031 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7032 L:      netdev@vger.kernel.org
7033 S:      Maintained
7034 F:      drivers/net/ethernet/freescale/enetc/
7035
7036 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7037 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7038 L:      netdev@vger.kernel.org
7039 S:      Maintained
7040 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7041 F:      drivers/net/ethernet/freescale/gianfar*
7042
7043 FREESCALE GPMI NAND DRIVER
7044 M:      Han Xu <han.xu@nxp.com>
7045 L:      linux-mtd@lists.infradead.org
7046 S:      Maintained
7047 F:      drivers/mtd/nand/raw/gpmi-nand/*
7048
7049 FREESCALE I2C CPM DRIVER
7050 M:      Jochen Friedrich <jochen@scram.de>
7051 L:      linuxppc-dev@lists.ozlabs.org
7052 L:      linux-i2c@vger.kernel.org
7053 S:      Maintained
7054 F:      drivers/i2c/busses/i2c-cpm.c
7055
7056 FREESCALE IMX / MXC FEC DRIVER
7057 M:      Fugang Duan <fugang.duan@nxp.com>
7058 L:      netdev@vger.kernel.org
7059 S:      Maintained
7060 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
7061 F:      drivers/net/ethernet/freescale/fec.h
7062 F:      drivers/net/ethernet/freescale/fec_main.c
7063 F:      drivers/net/ethernet/freescale/fec_ptp.c
7064
7065 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7066 M:      Sascha Hauer <s.hauer@pengutronix.de>
7067 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7068 L:      linux-fbdev@vger.kernel.org
7069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7070 S:      Maintained
7071 F:      drivers/video/fbdev/imxfb.c
7072 F:      include/linux/platform_data/video-imxfb.h
7073
7074 FREESCALE IMX DDR PMU DRIVER
7075 M:      Frank Li <Frank.li@nxp.com>
7076 L:      linux-arm-kernel@lists.infradead.org
7077 S:      Maintained
7078 F:      Documentation/admin-guide/perf/imx-ddr.rst
7079 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7080 F:      drivers/perf/fsl_imx8_ddr_perf.c
7081
7082 FREESCALE IMX I2C DRIVER
7083 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7084 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7085 L:      linux-i2c@vger.kernel.org
7086 S:      Maintained
7087 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7088 F:      drivers/i2c/busses/i2c-imx.c
7089
7090 FREESCALE IMX LPI2C DRIVER
7091 M:      Dong Aisheng <aisheng.dong@nxp.com>
7092 L:      linux-i2c@vger.kernel.org
7093 L:      linux-imx@nxp.com
7094 S:      Maintained
7095 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7096 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7097
7098 FREESCALE QORIQ DPAA ETHERNET DRIVER
7099 M:      Madalin Bucur <madalin.bucur@nxp.com>
7100 L:      netdev@vger.kernel.org
7101 S:      Maintained
7102 F:      drivers/net/ethernet/freescale/dpaa
7103
7104 FREESCALE QORIQ DPAA FMAN DRIVER
7105 M:      Madalin Bucur <madalin.bucur@nxp.com>
7106 L:      netdev@vger.kernel.org
7107 S:      Maintained
7108 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7109 F:      drivers/net/ethernet/freescale/fman
7110
7111 FREESCALE QORIQ PTP CLOCK DRIVER
7112 M:      Yangbo Lu <yangbo.lu@nxp.com>
7113 L:      netdev@vger.kernel.org
7114 S:      Maintained
7115 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7116 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7117 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7118 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7119 F:      drivers/ptp/ptp_qoriq.c
7120 F:      drivers/ptp/ptp_qoriq_debugfs.c
7121 F:      include/linux/fsl/ptp_qoriq.h
7122
7123 FREESCALE QUAD SPI DRIVER
7124 M:      Han Xu <han.xu@nxp.com>
7125 L:      linux-spi@vger.kernel.org
7126 S:      Maintained
7127 F:      drivers/spi/spi-fsl-qspi.c
7128
7129 FREESCALE QUICC ENGINE LIBRARY
7130 M:      Qiang Zhao <qiang.zhao@nxp.com>
7131 L:      linuxppc-dev@lists.ozlabs.org
7132 S:      Maintained
7133 F:      drivers/soc/fsl/qe/
7134 F:      include/soc/fsl/*qe*.h
7135 F:      include/soc/fsl/*ucc*.h
7136
7137 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7138 M:      Li Yang <leoyang.li@nxp.com>
7139 L:      netdev@vger.kernel.org
7140 L:      linuxppc-dev@lists.ozlabs.org
7141 S:      Maintained
7142 F:      drivers/net/ethernet/freescale/ucc_geth*
7143
7144 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7145 M:      Zhao Qiang <qiang.zhao@nxp.com>
7146 L:      netdev@vger.kernel.org
7147 L:      linuxppc-dev@lists.ozlabs.org
7148 S:      Maintained
7149 F:      drivers/net/wan/fsl_ucc_hdlc*
7150
7151 FREESCALE QUICC ENGINE UCC UART DRIVER
7152 M:      Timur Tabi <timur@kernel.org>
7153 L:      linuxppc-dev@lists.ozlabs.org
7154 S:      Maintained
7155 F:      drivers/tty/serial/ucc_uart.c
7156
7157 FREESCALE SOC DRIVERS
7158 M:      Li Yang <leoyang.li@nxp.com>
7159 L:      linuxppc-dev@lists.ozlabs.org
7160 L:      linux-arm-kernel@lists.infradead.org
7161 S:      Maintained
7162 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
7163 F:      Documentation/devicetree/bindings/soc/fsl/
7164 F:      drivers/soc/fsl/
7165 F:      include/linux/fsl/
7166
7167 FREESCALE SOC FS_ENET DRIVER
7168 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7169 L:      linuxppc-dev@lists.ozlabs.org
7170 L:      netdev@vger.kernel.org
7171 S:      Maintained
7172 F:      drivers/net/ethernet/freescale/fs_enet/
7173 F:      include/linux/fs_enet_pd.h
7174
7175 FREESCALE SOC SOUND DRIVERS
7176 M:      Timur Tabi <timur@kernel.org>
7177 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7178 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7179 R:      Fabio Estevam <festevam@gmail.com>
7180 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7182 L:      linuxppc-dev@lists.ozlabs.org
7183 S:      Maintained
7184 F:      sound/soc/fsl/fsl*
7185 F:      sound/soc/fsl/imx*
7186 F:      sound/soc/fsl/mpc8610_hpcd.c
7187
7188 FREESCALE USB PERIPHERAL DRIVERS
7189 M:      Li Yang <leoyang.li@nxp.com>
7190 L:      linux-usb@vger.kernel.org
7191 L:      linuxppc-dev@lists.ozlabs.org
7192 S:      Maintained
7193 F:      drivers/usb/gadget/udc/fsl*
7194
7195 FREESCALE USB PHY DRIVER
7196 M:      Ran Wang <ran.wang_1@nxp.com>
7197 L:      linux-usb@vger.kernel.org
7198 L:      linuxppc-dev@lists.ozlabs.org
7199 S:      Maintained
7200 F:      drivers/usb/phy/phy-fsl-usb*
7201
7202 FREEVXFS FILESYSTEM
7203 M:      Christoph Hellwig <hch@infradead.org>
7204 S:      Maintained
7205 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7206 F:      fs/freevxfs/
7207
7208 FREEZER
7209 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7210 M:      Pavel Machek <pavel@ucw.cz>
7211 L:      linux-pm@vger.kernel.org
7212 S:      Supported
7213 F:      Documentation/power/freezing-of-tasks.rst
7214 F:      include/linux/freezer.h
7215 F:      kernel/freezer.c
7216
7217 FRONTSWAP API
7218 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7219 L:      linux-kernel@vger.kernel.org
7220 S:      Maintained
7221 F:      include/linux/frontswap.h
7222 F:      mm/frontswap.c
7223
7224 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7225 M:      David Howells <dhowells@redhat.com>
7226 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7227 S:      Supported
7228 F:      Documentation/filesystems/caching/
7229 F:      fs/fscache/
7230 F:      include/linux/fscache*.h
7231
7232 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7233 M:      Theodore Y. Ts'o <tytso@mit.edu>
7234 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7235 M:      Eric Biggers <ebiggers@kernel.org>
7236 L:      linux-fscrypt@vger.kernel.org
7237 S:      Supported
7238 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7239 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7240 F:      Documentation/filesystems/fscrypt.rst
7241 F:      fs/crypto/
7242 F:      include/linux/fscrypt*.h
7243 F:      include/uapi/linux/fscrypt.h
7244
7245 FSI SUBSYSTEM
7246 M:      Jeremy Kerr <jk@ozlabs.org>
7247 M:      Joel Stanley <joel@jms.id.au>
7248 R:      Alistar Popple <alistair@popple.id.au>
7249 R:      Eddie James <eajames@linux.ibm.com>
7250 L:      linux-fsi@lists.ozlabs.org
7251 S:      Supported
7252 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7254 F:      drivers/fsi/
7255 F:      include/linux/fsi*.h
7256 F:      include/trace/events/fsi*.h
7257
7258 FSI-ATTACHED I2C DRIVER
7259 M:      Eddie James <eajames@linux.ibm.com>
7260 L:      linux-i2c@vger.kernel.org
7261 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7262 S:      Maintained
7263 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7264 F:      drivers/i2c/busses/i2c-fsi.c
7265
7266 FSI-ATTACHED SPI DRIVER
7267 M:      Eddie James <eajames@linux.ibm.com>
7268 L:      linux-spi@vger.kernel.org
7269 S:      Maintained
7270 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7271 F:      drivers/spi/spi-fsi.c
7272
7273 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7274 M:      Jan Kara <jack@suse.cz>
7275 R:      Amir Goldstein <amir73il@gmail.com>
7276 L:      linux-fsdevel@vger.kernel.org
7277 S:      Maintained
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7279 F:      fs/notify/
7280 F:      include/linux/fsnotify*.h
7281
7282 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7283 M:      Eric Biggers <ebiggers@kernel.org>
7284 M:      Theodore Y. Ts'o <tytso@mit.edu>
7285 L:      linux-fscrypt@vger.kernel.org
7286 S:      Supported
7287 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7288 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7289 F:      Documentation/filesystems/fsverity.rst
7290 F:      fs/verity/
7291 F:      include/linux/fsverity.h
7292 F:      include/uapi/linux/fsverity.h
7293
7294 FUJITSU LAPTOP EXTRAS
7295 M:      Jonathan Woithe <jwoithe@just42.net>
7296 L:      platform-driver-x86@vger.kernel.org
7297 S:      Maintained
7298 F:      drivers/platform/x86/fujitsu-laptop.c
7299
7300 FUJITSU M-5MO LS CAMERA ISP DRIVER
7301 M:      Kyungmin Park <kyungmin.park@samsung.com>
7302 M:      Heungjun Kim <riverful.kim@samsung.com>
7303 L:      linux-media@vger.kernel.org
7304 S:      Maintained
7305 F:      drivers/media/i2c/m5mols/
7306 F:      include/media/i2c/m5mols.h
7307
7308 FUJITSU TABLET EXTRAS
7309 M:      Robert Gerlach <khnz@gmx.de>
7310 L:      platform-driver-x86@vger.kernel.org
7311 S:      Maintained
7312 F:      drivers/platform/x86/fujitsu-tablet.c
7313
7314 FUSE: FILESYSTEM IN USERSPACE
7315 M:      Miklos Szeredi <miklos@szeredi.hu>
7316 L:      linux-fsdevel@vger.kernel.org
7317 S:      Maintained
7318 W:      https://github.com/libfuse/
7319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7320 F:      Documentation/filesystems/fuse.rst
7321 F:      fs/fuse/
7322 F:      include/uapi/linux/fuse.h
7323
7324 FUTEX SUBSYSTEM
7325 M:      Thomas Gleixner <tglx@linutronix.de>
7326 M:      Ingo Molnar <mingo@redhat.com>
7327 R:      Peter Zijlstra <peterz@infradead.org>
7328 R:      Darren Hart <dvhart@infradead.org>
7329 L:      linux-kernel@vger.kernel.org
7330 S:      Maintained
7331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7332 F:      Documentation/locking/*futex*
7333 F:      include/asm-generic/futex.h
7334 F:      include/linux/futex.h
7335 F:      include/uapi/linux/futex.h
7336 F:      kernel/futex.c
7337 F:      tools/perf/bench/futex*
7338 F:      tools/testing/selftests/futex/
7339
7340 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7341 M:      Tim Harvey <tharvey@gateworks.com>
7342 M:      Robert Jones <rjones@gateworks.com>
7343 S:      Maintained
7344 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7345 F:      drivers/mfd/gateworks-gsc.c
7346 F:      include/linux/mfd/gsc.h
7347 F:      Documentation/hwmon/gsc-hwmon.rst
7348 F:      drivers/hwmon/gsc-hwmon.c
7349 F:      include/linux/platform_data/gsc_hwmon.h
7350
7351 GASKET DRIVER FRAMEWORK
7352 M:      Rob Springer <rspringer@google.com>
7353 M:      Todd Poynor <toddpoynor@google.com>
7354 M:      Ben Chan <benchan@chromium.org>
7355 M:      Richard Yeh <rcy@google.com>
7356 S:      Maintained
7357 F:      drivers/staging/gasket/
7358
7359 GCC PLUGINS
7360 M:      Kees Cook <keescook@chromium.org>
7361 L:      linux-hardening@vger.kernel.org
7362 S:      Maintained
7363 F:      Documentation/kbuild/gcc-plugins.rst
7364 F:      scripts/Makefile.gcc-plugins
7365 F:      scripts/gcc-plugins/
7366
7367 GCOV BASED KERNEL PROFILING
7368 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7369 S:      Maintained
7370 F:      Documentation/dev-tools/gcov.rst
7371 F:      kernel/gcov/
7372
7373 GDB KERNEL DEBUGGING HELPER SCRIPTS
7374 M:      Jan Kiszka <jan.kiszka@siemens.com>
7375 M:      Kieran Bingham <kbingham@kernel.org>
7376 S:      Supported
7377 F:      scripts/gdb/
7378
7379 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7380 M:      Achim Leubner <achim_leubner@adaptec.com>
7381 L:      linux-scsi@vger.kernel.org
7382 S:      Supported
7383 W:      http://www.icp-vortex.com/
7384 F:      drivers/scsi/gdt*
7385
7386 GEMTEK FM RADIO RECEIVER DRIVER
7387 M:      Hans Verkuil <hverkuil@xs4all.nl>
7388 L:      linux-media@vger.kernel.org
7389 S:      Maintained
7390 W:      https://linuxtv.org
7391 T:      git git://linuxtv.org/media_tree.git
7392 F:      drivers/media/radio/radio-gemtek*
7393
7394 GENERIC ARCHITECTURE TOPOLOGY
7395 M:      Sudeep Holla <sudeep.holla@arm.com>
7396 L:      linux-kernel@vger.kernel.org
7397 S:      Maintained
7398 F:      drivers/base/arch_topology.c
7399 F:      include/linux/arch_topology.h
7400
7401 GENERIC ENTRY CODE
7402 M:      Thomas Gleixner <tglx@linutronix.de>
7403 M:      Peter Zijlstra <peterz@infradead.org>
7404 M:      Andy Lutomirski <luto@kernel.org>
7405 L:      linux-kernel@vger.kernel.org
7406 S:      Maintained
7407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7408 F:      include/linux/entry-common.h
7409 F:      include/linux/entry-kvm.h
7410 F:      kernel/entry/
7411
7412 GENERIC GPIO I2C DRIVER
7413 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7414 S:      Supported
7415 F:      drivers/i2c/busses/i2c-gpio.c
7416 F:      include/linux/platform_data/i2c-gpio.h
7417
7418 GENERIC GPIO I2C MULTIPLEXER DRIVER
7419 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7420 L:      linux-i2c@vger.kernel.org
7421 S:      Supported
7422 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7423 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7424 F:      include/linux/platform_data/i2c-mux-gpio.h
7425
7426 GENERIC HDLC (WAN) DRIVERS
7427 M:      Krzysztof Halasa <khc@pm.waw.pl>
7428 S:      Maintained
7429 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7430 F:      drivers/net/wan/c101.c
7431 F:      drivers/net/wan/hd6457*
7432 F:      drivers/net/wan/hdlc*
7433 F:      drivers/net/wan/n2.c
7434 F:      drivers/net/wan/pc300too.c
7435 F:      drivers/net/wan/pci200syn.c
7436 F:      drivers/net/wan/wanxl*
7437
7438 GENERIC INCLUDE/ASM HEADER FILES
7439 M:      Arnd Bergmann <arnd@arndb.de>
7440 L:      linux-arch@vger.kernel.org
7441 S:      Maintained
7442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7443 F:      include/asm-generic/
7444 F:      include/uapi/asm-generic/
7445
7446 GENERIC PHY FRAMEWORK
7447 M:      Kishon Vijay Abraham I <kishon@ti.com>
7448 M:      Vinod Koul <vkoul@kernel.org>
7449 L:      linux-kernel@vger.kernel.org
7450 S:      Supported
7451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7452 F:      Documentation/devicetree/bindings/phy/
7453 F:      drivers/phy/
7454 F:      include/linux/phy/
7455
7456 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7457 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7458 S:      Supported
7459 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7460
7461 GENERIC PM DOMAINS
7462 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7463 M:      Kevin Hilman <khilman@kernel.org>
7464 M:      Ulf Hansson <ulf.hansson@linaro.org>
7465 L:      linux-pm@vger.kernel.org
7466 S:      Supported
7467 F:      Documentation/devicetree/bindings/power/power?domain*
7468 F:      drivers/base/power/domain*.c
7469 F:      include/linux/pm_domain.h
7470
7471 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7472 M:      Eugen Hristev <eugen.hristev@microchip.com>
7473 L:      linux-input@vger.kernel.org
7474 S:      Maintained
7475 F:      drivers/input/touchscreen/resistive-adc-touch.c
7476
7477 GENERIC UIO DRIVER FOR PCI DEVICES
7478 M:      "Michael S. Tsirkin" <mst@redhat.com>
7479 L:      kvm@vger.kernel.org
7480 S:      Supported
7481 F:      drivers/uio/uio_pci_generic.c
7482
7483 GENERIC VDSO LIBRARY
7484 M:      Andy Lutomirski <luto@kernel.org>
7485 M:      Thomas Gleixner <tglx@linutronix.de>
7486 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7487 L:      linux-kernel@vger.kernel.org
7488 S:      Maintained
7489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7490 F:      include/asm-generic/vdso/vsyscall.h
7491 F:      include/vdso/
7492 F:      kernel/time/vsyscall.c
7493 F:      lib/vdso/
7494
7495 GENWQE (IBM Generic Workqueue Card)
7496 M:      Frank Haverkamp <haver@linux.ibm.com>
7497 S:      Supported
7498 F:      drivers/misc/genwqe/
7499
7500 GET_MAINTAINER SCRIPT
7501 M:      Joe Perches <joe@perches.com>
7502 S:      Maintained
7503 F:      scripts/get_maintainer.pl
7504
7505 GFS2 FILE SYSTEM
7506 M:      Bob Peterson <rpeterso@redhat.com>
7507 M:      Andreas Gruenbacher <agruenba@redhat.com>
7508 L:      cluster-devel@redhat.com
7509 S:      Supported
7510 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7512 F:      Documentation/filesystems/gfs2*
7513 F:      fs/gfs2/
7514 F:      include/uapi/linux/gfs2_ondisk.h
7515
7516 GNSS SUBSYSTEM
7517 M:      Johan Hovold <johan@kernel.org>
7518 S:      Maintained
7519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7520 F:      Documentation/ABI/testing/sysfs-class-gnss
7521 F:      Documentation/devicetree/bindings/gnss/
7522 F:      drivers/gnss/
7523 F:      include/linux/gnss.h
7524
7525 GO7007 MPEG CODEC
7526 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7527 L:      linux-media@vger.kernel.org
7528 S:      Maintained
7529 F:      drivers/media/usb/go7007/
7530
7531 GOODIX TOUCHSCREEN
7532 M:      Bastien Nocera <hadess@hadess.net>
7533 L:      linux-input@vger.kernel.org
7534 S:      Maintained
7535 F:      drivers/input/touchscreen/goodix.c
7536
7537 GOOGLE ETHERNET DRIVERS
7538 M:      Catherine Sullivan <csully@google.com>
7539 R:      Sagi Shahar <sagis@google.com>
7540 R:      Jon Olson <jonolson@google.com>
7541 L:      netdev@vger.kernel.org
7542 S:      Supported
7543 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7544 F:      drivers/net/ethernet/google
7545
7546 GPD POCKET FAN DRIVER
7547 M:      Hans de Goede <hdegoede@redhat.com>
7548 L:      platform-driver-x86@vger.kernel.org
7549 S:      Maintained
7550 F:      drivers/platform/x86/gpd-pocket-fan.c
7551
7552 GPIO ACPI SUPPORT
7553 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7554 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7555 L:      linux-gpio@vger.kernel.org
7556 L:      linux-acpi@vger.kernel.org
7557 S:      Maintained
7558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7559 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7560 F:      drivers/gpio/gpiolib-acpi.c
7561 F:      drivers/gpio/gpiolib-acpi.h
7562
7563 GPIO AGGREGATOR
7564 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7565 L:      linux-gpio@vger.kernel.org
7566 S:      Supported
7567 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7568 F:      drivers/gpio/gpio-aggregator.c
7569
7570 GPIO IR Transmitter
7571 M:      Sean Young <sean@mess.org>
7572 L:      linux-media@vger.kernel.org
7573 S:      Maintained
7574 F:      drivers/media/rc/gpio-ir-tx.c
7575
7576 GPIO MOCKUP DRIVER
7577 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7578 L:      linux-gpio@vger.kernel.org
7579 S:      Maintained
7580 F:      drivers/gpio/gpio-mockup.c
7581 F:      tools/testing/selftests/gpio/
7582
7583 GPIO REGMAP
7584 R:      Michael Walle <michael@walle.cc>
7585 S:      Maintained
7586 F:      drivers/gpio/gpio-regmap.c
7587 F:      include/linux/gpio/regmap.h
7588
7589 GPIO SUBSYSTEM
7590 M:      Linus Walleij <linus.walleij@linaro.org>
7591 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7592 L:      linux-gpio@vger.kernel.org
7593 S:      Maintained
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7595 F:      Documentation/ABI/obsolete/sysfs-gpio
7596 F:      Documentation/ABI/testing/gpio-cdev
7597 F:      Documentation/admin-guide/gpio/
7598 F:      Documentation/devicetree/bindings/gpio/
7599 F:      Documentation/driver-api/gpio/
7600 F:      drivers/gpio/
7601 F:      include/asm-generic/gpio.h
7602 F:      include/linux/gpio.h
7603 F:      include/linux/gpio/
7604 F:      include/linux/of_gpio.h
7605 F:      include/uapi/linux/gpio.h
7606 F:      tools/gpio/
7607
7608 GRE DEMULTIPLEXER DRIVER
7609 M:      Dmitry Kozlov <xeb@mail.ru>
7610 L:      netdev@vger.kernel.org
7611 S:      Maintained
7612 F:      include/net/gre.h
7613 F:      net/ipv4/gre_demux.c
7614 F:      net/ipv4/gre_offload.c
7615
7616 GRETH 10/100/1G Ethernet MAC device driver
7617 M:      Andreas Larsson <andreas@gaisler.com>
7618 L:      netdev@vger.kernel.org
7619 S:      Maintained
7620 F:      drivers/net/ethernet/aeroflex/
7621
7622 GREYBUS AUDIO PROTOCOLS DRIVERS
7623 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7624 M:      Mark Greer <mgreer@animalcreek.com>
7625 S:      Maintained
7626 F:      drivers/staging/greybus/audio_apbridgea.c
7627 F:      drivers/staging/greybus/audio_apbridgea.h
7628 F:      drivers/staging/greybus/audio_codec.c
7629 F:      drivers/staging/greybus/audio_codec.h
7630 F:      drivers/staging/greybus/audio_gb.c
7631 F:      drivers/staging/greybus/audio_manager.c
7632 F:      drivers/staging/greybus/audio_manager.h
7633 F:      drivers/staging/greybus/audio_manager_module.c
7634 F:      drivers/staging/greybus/audio_manager_private.h
7635 F:      drivers/staging/greybus/audio_manager_sysfs.c
7636 F:      drivers/staging/greybus/audio_module.c
7637 F:      drivers/staging/greybus/audio_topology.c
7638
7639 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7640 M:      Viresh Kumar <vireshk@kernel.org>
7641 S:      Maintained
7642 F:      drivers/staging/greybus/authentication.c
7643 F:      drivers/staging/greybus/bootrom.c
7644 F:      drivers/staging/greybus/firmware.h
7645 F:      drivers/staging/greybus/fw-core.c
7646 F:      drivers/staging/greybus/fw-download.c
7647 F:      drivers/staging/greybus/fw-management.c
7648 F:      drivers/staging/greybus/greybus_authentication.h
7649 F:      drivers/staging/greybus/greybus_firmware.h
7650 F:      drivers/staging/greybus/hid.c
7651 F:      drivers/staging/greybus/i2c.c
7652 F:      drivers/staging/greybus/spi.c
7653 F:      drivers/staging/greybus/spilib.c
7654 F:      drivers/staging/greybus/spilib.h
7655
7656 GREYBUS LOOPBACK DRIVER
7657 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7658 S:      Maintained
7659 F:      drivers/staging/greybus/loopback.c
7660
7661 GREYBUS PLATFORM DRIVERS
7662 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7663 S:      Maintained
7664 F:      drivers/staging/greybus/arche-apb-ctrl.c
7665 F:      drivers/staging/greybus/arche-platform.c
7666 F:      drivers/staging/greybus/arche_platform.h
7667
7668 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7669 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7670 S:      Maintained
7671 F:      drivers/staging/greybus/gpio.c
7672 F:      drivers/staging/greybus/light.c
7673 F:      drivers/staging/greybus/power_supply.c
7674 F:      drivers/staging/greybus/sdio.c
7675 F:      drivers/staging/greybus/spi.c
7676 F:      drivers/staging/greybus/spilib.c
7677
7678 GREYBUS SUBSYSTEM
7679 M:      Johan Hovold <johan@kernel.org>
7680 M:      Alex Elder <elder@kernel.org>
7681 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7682 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7683 S:      Maintained
7684 F:      drivers/greybus/
7685 F:      drivers/staging/greybus/
7686 F:      include/linux/greybus.h
7687 F:      include/linux/greybus/
7688
7689 GREYBUS UART PROTOCOLS DRIVERS
7690 M:      David Lin <dtwlin@gmail.com>
7691 S:      Maintained
7692 F:      drivers/staging/greybus/log.c
7693 F:      drivers/staging/greybus/uart.c
7694
7695 GS1662 VIDEO SERIALIZER
7696 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7697 L:      linux-media@vger.kernel.org
7698 S:      Maintained
7699 T:      git git://linuxtv.org/media_tree.git
7700 F:      drivers/media/spi/gs1662.c
7701
7702 GSPCA FINEPIX SUBDRIVER
7703 M:      Frank Zago <frank@zago.net>
7704 L:      linux-media@vger.kernel.org
7705 S:      Maintained
7706 T:      git git://linuxtv.org/media_tree.git
7707 F:      drivers/media/usb/gspca/finepix.c
7708
7709 GSPCA GL860 SUBDRIVER
7710 M:      Olivier Lorin <o.lorin@laposte.net>
7711 L:      linux-media@vger.kernel.org
7712 S:      Maintained
7713 T:      git git://linuxtv.org/media_tree.git
7714 F:      drivers/media/usb/gspca/gl860/
7715
7716 GSPCA M5602 SUBDRIVER
7717 M:      Erik Andren <erik.andren@gmail.com>
7718 L:      linux-media@vger.kernel.org
7719 S:      Maintained
7720 T:      git git://linuxtv.org/media_tree.git
7721 F:      drivers/media/usb/gspca/m5602/
7722
7723 GSPCA PAC207 SONIXB SUBDRIVER
7724 M:      Hans Verkuil <hverkuil@xs4all.nl>
7725 L:      linux-media@vger.kernel.org
7726 S:      Odd Fixes
7727 T:      git git://linuxtv.org/media_tree.git
7728 F:      drivers/media/usb/gspca/pac207.c
7729
7730 GSPCA SN9C20X SUBDRIVER
7731 M:      Brian Johnson <brijohn@gmail.com>
7732 L:      linux-media@vger.kernel.org
7733 S:      Maintained
7734 T:      git git://linuxtv.org/media_tree.git
7735 F:      drivers/media/usb/gspca/sn9c20x.c
7736
7737 GSPCA T613 SUBDRIVER
7738 M:      Leandro Costantino <lcostantino@gmail.com>
7739 L:      linux-media@vger.kernel.org
7740 S:      Maintained
7741 T:      git git://linuxtv.org/media_tree.git
7742 F:      drivers/media/usb/gspca/t613.c
7743
7744 GSPCA USB WEBCAM DRIVER
7745 M:      Hans Verkuil <hverkuil@xs4all.nl>
7746 L:      linux-media@vger.kernel.org
7747 S:      Odd Fixes
7748 T:      git git://linuxtv.org/media_tree.git
7749 F:      drivers/media/usb/gspca/
7750
7751 GTP (GPRS Tunneling Protocol)
7752 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7753 M:      Harald Welte <laforge@gnumonks.org>
7754 L:      osmocom-net-gprs@lists.osmocom.org
7755 S:      Maintained
7756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7757 F:      drivers/net/gtp.c
7758
7759 GUID PARTITION TABLE (GPT)
7760 M:      Davidlohr Bueso <dave@stgolabs.net>
7761 L:      linux-efi@vger.kernel.org
7762 S:      Maintained
7763 F:      block/partitions/efi.*
7764
7765 H8/300 ARCHITECTURE
7766 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7767 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7768 S:      Maintained
7769 W:      http://uclinux-h8.sourceforge.jp
7770 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7771 F:      arch/h8300/
7772 F:      drivers/clk/h8300/
7773 F:      drivers/clocksource/h8300_*.c
7774 F:      drivers/irqchip/irq-renesas-h8*.c
7775
7776 HABANALABS PCI DRIVER
7777 M:      Oded Gabbay <ogabbay@kernel.org>
7778 S:      Supported
7779 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
7780 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7781 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7782 F:      drivers/misc/habanalabs/
7783 F:      include/uapi/misc/habanalabs.h
7784
7785 HACKRF MEDIA DRIVER
7786 M:      Antti Palosaari <crope@iki.fi>
7787 L:      linux-media@vger.kernel.org
7788 S:      Maintained
7789 W:      https://linuxtv.org
7790 W:      http://palosaari.fi/linux/
7791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7792 T:      git git://linuxtv.org/anttip/media_tree.git
7793 F:      drivers/media/usb/hackrf/
7794
7795 HANTRO VPU CODEC DRIVER
7796 M:      Ezequiel Garcia <ezequiel@collabora.com>
7797 M:      Philipp Zabel <p.zabel@pengutronix.de>
7798 L:      linux-media@vger.kernel.org
7799 L:      linux-rockchip@lists.infradead.org
7800 S:      Maintained
7801 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7802 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7803 F:      drivers/staging/media/hantro/
7804
7805 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7806 M:      Frank Seidel <frank@f-seidel.de>
7807 L:      platform-driver-x86@vger.kernel.org
7808 S:      Maintained
7809 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7810 F:      drivers/platform/x86/hdaps.c
7811
7812 HARDWARE MONITORING
7813 M:      Jean Delvare <jdelvare@suse.com>
7814 M:      Guenter Roeck <linux@roeck-us.net>
7815 L:      linux-hwmon@vger.kernel.org
7816 S:      Maintained
7817 W:      http://hwmon.wiki.kernel.org/
7818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7819 F:      Documentation/devicetree/bindings/hwmon/
7820 F:      Documentation/hwmon/
7821 F:      drivers/hwmon/
7822 F:      include/linux/hwmon*.h
7823 F:      include/trace/events/hwmon*.h
7824
7825 HARDWARE RANDOM NUMBER GENERATOR CORE
7826 M:      Matt Mackall <mpm@selenic.com>
7827 M:      Herbert Xu <herbert@gondor.apana.org.au>
7828 L:      linux-crypto@vger.kernel.org
7829 S:      Odd fixes
7830 F:      Documentation/admin-guide/hw_random.rst
7831 F:      Documentation/devicetree/bindings/rng/
7832 F:      drivers/char/hw_random/
7833 F:      include/linux/hw_random.h
7834
7835 HARDWARE SPINLOCK CORE
7836 M:      Ohad Ben-Cohen <ohad@wizery.com>
7837 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7838 R:      Baolin Wang <baolin.wang7@gmail.com>
7839 L:      linux-remoteproc@vger.kernel.org
7840 S:      Maintained
7841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7842 F:      Documentation/devicetree/bindings/hwlock/
7843 F:      Documentation/locking/hwspinlock.rst
7844 F:      drivers/hwspinlock/
7845 F:      include/linux/hwspinlock.h
7846
7847 HARDWARE TRACING FACILITIES
7848 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7849 S:      Maintained
7850 F:      drivers/hwtracing/
7851
7852 HARMONY SOUND DRIVER
7853 L:      linux-parisc@vger.kernel.org
7854 S:      Maintained
7855 F:      sound/parisc/harmony.*
7856
7857 HDPVR USB VIDEO ENCODER DRIVER
7858 M:      Hans Verkuil <hverkuil@xs4all.nl>
7859 L:      linux-media@vger.kernel.org
7860 S:      Odd Fixes
7861 W:      https://linuxtv.org
7862 T:      git git://linuxtv.org/media_tree.git
7863 F:      drivers/media/usb/hdpvr/
7864
7865 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7866 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7867 S:      Supported
7868 F:      Documentation/watchdog/hpwdt.rst
7869 F:      drivers/watchdog/hpwdt.c
7870
7871 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7872 M:      Don Brace <don.brace@microchip.com>
7873 L:      storagedev@microchip.com
7874 L:      linux-scsi@vger.kernel.org
7875 S:      Supported
7876 F:      Documentation/scsi/hpsa.rst
7877 F:      drivers/scsi/hpsa*.[ch]
7878 F:      include/linux/cciss*.h
7879 F:      include/uapi/linux/cciss*.h
7880
7881 HFI1 DRIVER
7882 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
7883 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
7884 L:      linux-rdma@vger.kernel.org
7885 S:      Supported
7886 F:      drivers/infiniband/hw/hfi1
7887
7888 HFS FILESYSTEM
7889 L:      linux-fsdevel@vger.kernel.org
7890 S:      Orphan
7891 F:      Documentation/filesystems/hfs.rst
7892 F:      fs/hfs/
7893
7894 HFSPLUS FILESYSTEM
7895 L:      linux-fsdevel@vger.kernel.org
7896 S:      Orphan
7897 F:      Documentation/filesystems/hfsplus.rst
7898 F:      fs/hfsplus/
7899
7900 HGA FRAMEBUFFER DRIVER
7901 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7902 L:      linux-nvidia@lists.surfsouth.com
7903 S:      Maintained
7904 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7905 F:      drivers/video/fbdev/hgafb.c
7906
7907 HIBERNATION (aka Software Suspend, aka swsusp)
7908 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7909 M:      Pavel Machek <pavel@ucw.cz>
7910 L:      linux-pm@vger.kernel.org
7911 S:      Supported
7912 B:      https://bugzilla.kernel.org
7913 F:      arch/*/include/asm/suspend*.h
7914 F:      arch/x86/power/
7915 F:      drivers/base/power/
7916 F:      include/linux/freezer.h
7917 F:      include/linux/pm.h
7918 F:      include/linux/suspend.h
7919 F:      kernel/power/
7920
7921 HID CORE LAYER
7922 M:      Jiri Kosina <jikos@kernel.org>
7923 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7924 L:      linux-input@vger.kernel.org
7925 S:      Maintained
7926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7927 F:      drivers/hid/
7928 F:      include/linux/hid*
7929 F:      include/uapi/linux/hid*
7930
7931 HID PLAYSTATION DRIVER
7932 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
7933 L:      linux-input@vger.kernel.org
7934 S:      Supported
7935 F:      drivers/hid/hid-playstation.c
7936
7937 HID SENSOR HUB DRIVERS
7938 M:      Jiri Kosina <jikos@kernel.org>
7939 M:      Jonathan Cameron <jic23@kernel.org>
7940 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7941 L:      linux-input@vger.kernel.org
7942 L:      linux-iio@vger.kernel.org
7943 S:      Maintained
7944 F:      Documentation/hid/hid-sensor*
7945 F:      drivers/hid/hid-sensor-*
7946 F:      drivers/iio/*/hid-*
7947 F:      include/linux/hid-sensor-*
7948
7949 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7950 M:      Thomas Gleixner <tglx@linutronix.de>
7951 L:      linux-kernel@vger.kernel.org
7952 S:      Maintained
7953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7954 F:      Documentation/timers/
7955 F:      include/linux/clockchips.h
7956 F:      include/linux/hrtimer.h
7957 F:      kernel/time/clockevents.c
7958 F:      kernel/time/hrtimer.c
7959 F:      kernel/time/timer_*.c
7960
7961 HIGH-SPEED SCC DRIVER FOR AX.25
7962 L:      linux-hams@vger.kernel.org
7963 S:      Orphan
7964 F:      drivers/net/hamradio/dmascc.c
7965 F:      drivers/net/hamradio/scc.c
7966
7967 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7968 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7969 S:      Supported
7970 W:      http://www.highpoint-tech.com
7971 F:      Documentation/scsi/hptiop.rst
7972 F:      drivers/scsi/hptiop.c
7973
7974 HIPPI
7975 M:      Jes Sorensen <jes@trained-monkey.org>
7976 L:      linux-hippi@sunsite.dk
7977 S:      Maintained
7978 F:      drivers/net/hippi/
7979 F:      include/linux/hippidevice.h
7980 F:      include/uapi/linux/if_hippi.h
7981 F:      net/802/hippi.c
7982
7983 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
7984 M:      Kurt Kanzenbach <kurt@linutronix.de>
7985 L:      netdev@vger.kernel.org
7986 S:      Maintained
7987 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
7988 F:      drivers/net/dsa/hirschmann/*
7989 F:      include/linux/platform_data/hirschmann-hellcreek.h
7990 F:      net/dsa/tag_hellcreek.c
7991
7992 HISILICON DMA DRIVER
7993 M:      Zhou Wang <wangzhou1@hisilicon.com>
7994 L:      dmaengine@vger.kernel.org
7995 S:      Maintained
7996 F:      drivers/dma/hisi_dma.c
7997
7998 HISILICON GPIO DRIVER
7999 M:      Luo Jiaxing <luojiaxing@huawei.com>
8000 L:      linux-gpio@vger.kernel.org
8001 S:      Maintained
8002 F:      drivers/gpio/gpio-hisi.c
8003
8004 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8005 M:      Zaibo Xu <xuzaibo@huawei.com>
8006 L:      linux-crypto@vger.kernel.org
8007 S:      Maintained
8008 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8009 F:      drivers/crypto/hisilicon/hpre/hpre.h
8010 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8011 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8012
8013 HISILICON LPC BUS DRIVER
8014 M:      john.garry@huawei.com
8015 S:      Maintained
8016 W:      http://www.hisilicon.com
8017 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8018 F:      drivers/bus/hisi_lpc.c
8019
8020 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8021 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8022 M:      Salil Mehta <salil.mehta@huawei.com>
8023 L:      netdev@vger.kernel.org
8024 S:      Maintained
8025 W:      http://www.hisilicon.com
8026 F:      drivers/net/ethernet/hisilicon/hns3/
8027
8028 HISILICON NETWORK SUBSYSTEM DRIVER
8029 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8030 M:      Salil Mehta <salil.mehta@huawei.com>
8031 L:      netdev@vger.kernel.org
8032 S:      Maintained
8033 W:      http://www.hisilicon.com
8034 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8035 F:      drivers/net/ethernet/hisilicon/
8036
8037 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8038 M:      John Stultz <john.stultz@linaro.org>
8039 L:      linux-kernel@vger.kernel.org
8040 S:      Maintained
8041 F:      drivers/misc/hisi_hikey_usb.c
8042 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8043
8044 HISILICON PMU DRIVER
8045 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8046 S:      Supported
8047 W:      http://www.hisilicon.com
8048 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8049 F:      drivers/perf/hisilicon
8050
8051 HISILICON QM AND ZIP Controller DRIVER
8052 M:      Zhou Wang <wangzhou1@hisilicon.com>
8053 L:      linux-crypto@vger.kernel.org
8054 S:      Maintained
8055 F:      Documentation/ABI/testing/debugfs-hisi-zip
8056 F:      drivers/crypto/hisilicon/qm.c
8057 F:      drivers/crypto/hisilicon/qm.h
8058 F:      drivers/crypto/hisilicon/sgl.c
8059 F:      drivers/crypto/hisilicon/zip/
8060
8061 HISILICON ROCE DRIVER
8062 M:      Lijun Ou <oulijun@huawei.com>
8063 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
8064 M:      Weihang Li <liweihang@huawei.com>
8065 L:      linux-rdma@vger.kernel.org
8066 S:      Maintained
8067 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8068 F:      drivers/infiniband/hw/hns/
8069
8070 HISILICON SAS Controller
8071 M:      John Garry <john.garry@huawei.com>
8072 S:      Supported
8073 W:      http://www.hisilicon.com
8074 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8075 F:      drivers/scsi/hisi_sas/
8076
8077 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8078 M:      Zaibo Xu <xuzaibo@huawei.com>
8079 L:      linux-crypto@vger.kernel.org
8080 S:      Maintained
8081 F:      Documentation/ABI/testing/debugfs-hisi-sec
8082 F:      drivers/crypto/hisilicon/sec2/sec.h
8083 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8084 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8085 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8086
8087 HISILICON STAGING DRIVERS FOR HIKEY 960/970
8088 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8089 L:      devel@driverdev.osuosl.org
8090 S:      Maintained
8091 F:      drivers/staging/hikey9xx/
8092
8093 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8094 M:      Zaibo Xu <xuzaibo@huawei.com>
8095 S:      Maintained
8096 F:      drivers/crypto/hisilicon/trng/trng.c
8097
8098 HISILICON V3XX SPI NOR FLASH Controller Driver
8099 M:      John Garry <john.garry@huawei.com>
8100 S:      Maintained
8101 W:      http://www.hisilicon.com
8102 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8103
8104 HMM - Heterogeneous Memory Management
8105 M:      Jérôme Glisse <jglisse@redhat.com>
8106 L:      linux-mm@kvack.org
8107 S:      Maintained
8108 F:      Documentation/vm/hmm.rst
8109 F:      include/linux/hmm*
8110 F:      lib/test_hmm*
8111 F:      mm/hmm*
8112 F:      tools/testing/selftests/vm/*hmm*
8113
8114 HOST AP DRIVER
8115 M:      Jouni Malinen <j@w1.fi>
8116 L:      linux-wireless@vger.kernel.org
8117 S:      Obsolete
8118 W:      http://w1.fi/hostap-driver.html
8119 F:      drivers/net/wireless/intersil/hostap/
8120
8121 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8122 L:      platform-driver-x86@vger.kernel.org
8123 S:      Orphan
8124 F:      drivers/platform/x86/tc1100-wmi.c
8125
8126 HPET:   High Precision Event Timers driver
8127 M:      Clemens Ladisch <clemens@ladisch.de>
8128 S:      Maintained
8129 F:      Documentation/timers/hpet.rst
8130 F:      drivers/char/hpet.c
8131 F:      include/linux/hpet.h
8132 F:      include/uapi/linux/hpet.h
8133
8134 HPET:   x86
8135 S:      Orphan
8136 F:      arch/x86/include/asm/hpet.h
8137 F:      arch/x86/kernel/hpet.c
8138
8139 HPFS FILESYSTEM
8140 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8141 S:      Maintained
8142 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8143 F:      fs/hpfs/
8144
8145 HSI SUBSYSTEM
8146 M:      Sebastian Reichel <sre@kernel.org>
8147 S:      Maintained
8148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8149 F:      Documentation/ABI/testing/sysfs-bus-hsi
8150 F:      Documentation/driver-api/hsi.rst
8151 F:      drivers/hsi/
8152 F:      include/linux/hsi/
8153 F:      include/uapi/linux/hsi/
8154
8155 HSO 3G MODEM DRIVER
8156 L:      linux-usb@vger.kernel.org
8157 S:      Orphan
8158 F:      drivers/net/usb/hso.c
8159
8160 HSR NETWORK PROTOCOL
8161 L:      netdev@vger.kernel.org
8162 S:      Orphan
8163 F:      net/hsr/
8164
8165 HT16K33 LED CONTROLLER DRIVER
8166 M:      Robin van der Gracht <robin@protonic.nl>
8167 S:      Maintained
8168 F:      Documentation/devicetree/bindings/display/ht16k33.txt
8169 F:      drivers/auxdisplay/ht16k33.c
8170
8171 HTCPEN TOUCHSCREEN DRIVER
8172 M:      Pau Oliva Fora <pof@eslack.org>
8173 L:      linux-input@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/input/touchscreen/htcpen.c
8176
8177 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8178 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8179 L:      linux-iio@vger.kernel.org
8180 S:      Maintained
8181 W:      http://www.st.com/
8182 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
8183 F:      drivers/iio/humidity/hts221*
8184
8185 HUAWEI ETHERNET DRIVER
8186 M:      Bin Luo <luobin9@huawei.com>
8187 L:      netdev@vger.kernel.org
8188 S:      Supported
8189 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8190 F:      drivers/net/ethernet/huawei/hinic/
8191
8192 HUGETLB FILESYSTEM
8193 M:      Mike Kravetz <mike.kravetz@oracle.com>
8194 L:      linux-mm@kvack.org
8195 S:      Maintained
8196 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8197 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8198 F:      Documentation/vm/hugetlbfs_reserv.rst
8199 F:      fs/hugetlbfs/
8200 F:      include/linux/hugetlb.h
8201 F:      mm/hugetlb.c
8202
8203 HVA ST MEDIA DRIVER
8204 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
8205 L:      linux-media@vger.kernel.org
8206 S:      Supported
8207 W:      https://linuxtv.org
8208 T:      git git://linuxtv.org/media_tree.git
8209 F:      drivers/media/platform/sti/hva
8210
8211 HWPOISON MEMORY FAILURE HANDLING
8212 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8213 L:      linux-mm@kvack.org
8214 S:      Maintained
8215 F:      mm/hwpoison-inject.c
8216 F:      mm/memory-failure.c
8217
8218 HYGON PROCESSOR SUPPORT
8219 M:      Pu Wen <puwen@hygon.cn>
8220 L:      linux-kernel@vger.kernel.org
8221 S:      Maintained
8222 F:      arch/x86/kernel/cpu/hygon.c
8223
8224 HYNIX HI556 SENSOR DRIVER
8225 M:      Shawn Tu <shawnx.tu@intel.com>
8226 L:      linux-media@vger.kernel.org
8227 S:      Maintained
8228 T:      git git://linuxtv.org/media_tree.git
8229 F:      drivers/media/i2c/hi556.c
8230
8231 Hyper-V CORE AND DRIVERS
8232 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8233 M:      Haiyang Zhang <haiyangz@microsoft.com>
8234 M:      Stephen Hemminger <sthemmin@microsoft.com>
8235 M:      Wei Liu <wei.liu@kernel.org>
8236 L:      linux-hyperv@vger.kernel.org
8237 S:      Supported
8238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8239 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8240 F:      Documentation/ABI/testing/debugfs-hyperv
8241 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8242 F:      arch/x86/hyperv
8243 F:      arch/x86/include/asm/hyperv-tlfs.h
8244 F:      arch/x86/include/asm/mshyperv.h
8245 F:      arch/x86/include/asm/trace/hyperv.h
8246 F:      arch/x86/kernel/cpu/mshyperv.c
8247 F:      drivers/clocksource/hyperv_timer.c
8248 F:      drivers/hid/hid-hyperv.c
8249 F:      drivers/hv/
8250 F:      drivers/input/serio/hyperv-keyboard.c
8251 F:      drivers/iommu/hyperv-iommu.c
8252 F:      drivers/net/hyperv/
8253 F:      drivers/pci/controller/pci-hyperv-intf.c
8254 F:      drivers/pci/controller/pci-hyperv.c
8255 F:      drivers/scsi/storvsc_drv.c
8256 F:      drivers/uio/uio_hv_generic.c
8257 F:      drivers/video/fbdev/hyperv_fb.c
8258 F:      include/asm-generic/hyperv-tlfs.h
8259 F:      include/asm-generic/mshyperv.h
8260 F:      include/clocksource/hyperv_timer.h
8261 F:      include/linux/hyperv.h
8262 F:      include/uapi/linux/hyperv.h
8263 F:      net/vmw_vsock/hyperv_transport.c
8264 F:      tools/hv/
8265
8266 HYPERBUS SUPPORT
8267 M:      Vignesh Raghavendra <vigneshr@ti.com>
8268 L:      linux-mtd@lists.infradead.org
8269 S:      Supported
8270 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8271 C:      irc://irc.oftc.net/mtd
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8273 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8274 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8275 F:      drivers/mtd/hyperbus/
8276 F:      include/linux/mtd/hyperbus.h
8277
8278 HYPERVISOR VIRTUAL CONSOLE DRIVER
8279 L:      linuxppc-dev@lists.ozlabs.org
8280 S:      Odd Fixes
8281 F:      drivers/tty/hvc/
8282
8283 I2C ACPI SUPPORT
8284 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8285 L:      linux-i2c@vger.kernel.org
8286 L:      linux-acpi@vger.kernel.org
8287 S:      Maintained
8288 F:      drivers/i2c/i2c-core-acpi.c
8289
8290 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8291 M:      Ajay Gupta <ajayg@nvidia.com>
8292 L:      linux-i2c@vger.kernel.org
8293 S:      Maintained
8294 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8295 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8296
8297 I2C MUXES
8298 M:      Peter Rosin <peda@axentia.se>
8299 L:      linux-i2c@vger.kernel.org
8300 S:      Maintained
8301 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8302 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8303 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8304 F:      Documentation/i2c/i2c-topology.rst
8305 F:      Documentation/i2c/muxes/
8306 F:      drivers/i2c/i2c-mux.c
8307 F:      drivers/i2c/muxes/
8308 F:      include/linux/i2c-mux.h
8309
8310 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8311 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8312 L:      linux-i2c@vger.kernel.org
8313 S:      Maintained
8314 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8315 F:      drivers/i2c/busses/i2c-mv64xxx.c
8316
8317 I2C OVER PARALLEL PORT
8318 M:      Jean Delvare <jdelvare@suse.com>
8319 L:      linux-i2c@vger.kernel.org
8320 S:      Maintained
8321 F:      Documentation/i2c/busses/i2c-parport.rst
8322 F:      drivers/i2c/busses/i2c-parport.c
8323
8324 I2C SUBSYSTEM
8325 M:      Wolfram Sang <wsa@kernel.org>
8326 L:      linux-i2c@vger.kernel.org
8327 S:      Maintained
8328 W:      https://i2c.wiki.kernel.org/
8329 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8331 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8332 F:      Documentation/i2c/
8333 F:      drivers/i2c/*
8334 F:      include/linux/i2c-dev.h
8335 F:      include/linux/i2c-smbus.h
8336 F:      include/linux/i2c.h
8337 F:      include/uapi/linux/i2c-*.h
8338 F:      include/uapi/linux/i2c.h
8339
8340 I2C SUBSYSTEM HOST DRIVERS
8341 L:      linux-i2c@vger.kernel.org
8342 S:      Odd Fixes
8343 W:      https://i2c.wiki.kernel.org/
8344 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8346 F:      Documentation/devicetree/bindings/i2c/
8347 F:      drivers/i2c/algos/
8348 F:      drivers/i2c/busses/
8349
8350 I2C-TAOS-EVM DRIVER
8351 M:      Jean Delvare <jdelvare@suse.com>
8352 L:      linux-i2c@vger.kernel.org
8353 S:      Maintained
8354 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8355 F:      drivers/i2c/busses/i2c-taos-evm.c
8356
8357 I2C-TINY-USB DRIVER
8358 M:      Till Harbaum <till@harbaum.org>
8359 L:      linux-i2c@vger.kernel.org
8360 S:      Maintained
8361 W:      http://www.harbaum.org/till/i2c_tiny_usb
8362 F:      drivers/i2c/busses/i2c-tiny-usb.c
8363
8364 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8365 M:      Jean Delvare <jdelvare@suse.com>
8366 L:      linux-i2c@vger.kernel.org
8367 S:      Maintained
8368 F:      Documentation/i2c/busses/i2c-ali1535.rst
8369 F:      Documentation/i2c/busses/i2c-ali1563.rst
8370 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8371 F:      Documentation/i2c/busses/i2c-amd756.rst
8372 F:      Documentation/i2c/busses/i2c-amd8111.rst
8373 F:      Documentation/i2c/busses/i2c-i801.rst
8374 F:      Documentation/i2c/busses/i2c-nforce2.rst
8375 F:      Documentation/i2c/busses/i2c-piix4.rst
8376 F:      Documentation/i2c/busses/i2c-sis5595.rst
8377 F:      Documentation/i2c/busses/i2c-sis630.rst
8378 F:      Documentation/i2c/busses/i2c-sis96x.rst
8379 F:      Documentation/i2c/busses/i2c-via.rst
8380 F:      Documentation/i2c/busses/i2c-viapro.rst
8381 F:      drivers/i2c/busses/i2c-ali1535.c
8382 F:      drivers/i2c/busses/i2c-ali1563.c
8383 F:      drivers/i2c/busses/i2c-ali15x3.c
8384 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8385 F:      drivers/i2c/busses/i2c-amd756.c
8386 F:      drivers/i2c/busses/i2c-amd8111.c
8387 F:      drivers/i2c/busses/i2c-i801.c
8388 F:      drivers/i2c/busses/i2c-isch.c
8389 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8390 F:      drivers/i2c/busses/i2c-nforce2.c
8391 F:      drivers/i2c/busses/i2c-piix4.c
8392 F:      drivers/i2c/busses/i2c-sis5595.c
8393 F:      drivers/i2c/busses/i2c-sis630.c
8394 F:      drivers/i2c/busses/i2c-sis96x.c
8395 F:      drivers/i2c/busses/i2c-via.c
8396 F:      drivers/i2c/busses/i2c-viapro.c
8397
8398 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8399 M:      Hans de Goede <hdegoede@redhat.com>
8400 L:      linux-i2c@vger.kernel.org
8401 S:      Maintained
8402 F:      drivers/i2c/busses/i2c-cht-wc.c
8403
8404 I2C/SMBUS ISMT DRIVER
8405 M:      Seth Heasley <seth.heasley@intel.com>
8406 M:      Neil Horman <nhorman@tuxdriver.com>
8407 L:      linux-i2c@vger.kernel.org
8408 F:      Documentation/i2c/busses/i2c-ismt.rst
8409 F:      drivers/i2c/busses/i2c-ismt.c
8410
8411 I2C/SMBUS STUB DRIVER
8412 M:      Jean Delvare <jdelvare@suse.com>
8413 L:      linux-i2c@vger.kernel.org
8414 S:      Maintained
8415 F:      drivers/i2c/i2c-stub.c
8416
8417 I3C DRIVER FOR CADENCE I3C MASTER IP
8418 M:      Przemysław Gaj <pgaj@cadence.com>
8419 S:      Maintained
8420 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8421 F:      drivers/i3c/master/i3c-master-cdns.c
8422
8423 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8424 M:      Vitor Soares <vitor.soares@synopsys.com>
8425 S:      Maintained
8426 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8427 F:      drivers/i3c/master/dw*
8428
8429 I3C SUBSYSTEM
8430 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8431 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8432 S:      Maintained
8433 C:      irc://chat.freenode.net/linux-i3c
8434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8435 F:      Documentation/ABI/testing/sysfs-bus-i3c
8436 F:      Documentation/devicetree/bindings/i3c/
8437 F:      Documentation/driver-api/i3c
8438 F:      drivers/i3c/
8439 F:      include/linux/i3c/
8440
8441 IA64 (Itanium) PLATFORM
8442 M:      Tony Luck <tony.luck@intel.com>
8443 M:      Fenghua Yu <fenghua.yu@intel.com>
8444 L:      linux-ia64@vger.kernel.org
8445 S:      Odd Fixes
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8447 F:      Documentation/ia64/
8448 F:      arch/ia64/
8449
8450 IBM Power 842 compression accelerator
8451 M:      Haren Myneni <haren@us.ibm.com>
8452 S:      Supported
8453 F:      crypto/842.c
8454 F:      drivers/crypto/nx/Kconfig
8455 F:      drivers/crypto/nx/Makefile
8456 F:      drivers/crypto/nx/nx-842*
8457 F:      include/linux/sw842.h
8458 F:      lib/842/
8459
8460 IBM Power in-Nest Crypto Acceleration
8461 M:      Breno Leitão <leitao@debian.org>
8462 M:      Nayna Jain <nayna@linux.ibm.com>
8463 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8464 L:      linux-crypto@vger.kernel.org
8465 S:      Supported
8466 F:      drivers/crypto/nx/Kconfig
8467 F:      drivers/crypto/nx/Makefile
8468 F:      drivers/crypto/nx/nx-aes*
8469 F:      drivers/crypto/nx/nx-sha*
8470 F:      drivers/crypto/nx/nx.*
8471 F:      drivers/crypto/nx/nx_csbcpb.h
8472 F:      drivers/crypto/nx/nx_debugfs.c
8473
8474 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8475 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8476 L:      linux-pci@vger.kernel.org
8477 L:      linuxppc-dev@lists.ozlabs.org
8478 S:      Supported
8479 F:      drivers/pci/hotplug/rpadlpar*
8480
8481 IBM Power Linux RAID adapter
8482 M:      Brian King <brking@us.ibm.com>
8483 S:      Supported
8484 F:      drivers/scsi/ipr.*
8485
8486 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8487 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8488 L:      linux-pci@vger.kernel.org
8489 L:      linuxppc-dev@lists.ozlabs.org
8490 S:      Supported
8491 F:      drivers/pci/hotplug/rpaphp*
8492
8493 IBM Power SRIOV Virtual NIC Device Driver
8494 M:      Dany Madden <drt@linux.ibm.com>
8495 M:      Lijun Pan <ljp@linux.ibm.com>
8496 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8497 L:      netdev@vger.kernel.org
8498 S:      Supported
8499 F:      drivers/net/ethernet/ibm/ibmvnic.*
8500
8501 IBM Power Virtual Accelerator Switchboard
8502 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8503 L:      linuxppc-dev@lists.ozlabs.org
8504 S:      Supported
8505 F:      arch/powerpc/include/asm/vas.h
8506 F:      arch/powerpc/platforms/powernv/copy-paste.h
8507 F:      arch/powerpc/platforms/powernv/vas*
8508
8509 IBM Power Virtual Ethernet Device Driver
8510 M:      Cristobal Forno <cforno12@linux.ibm.com>
8511 L:      netdev@vger.kernel.org
8512 S:      Supported
8513 F:      drivers/net/ethernet/ibm/ibmveth.*
8514
8515 IBM Power Virtual FC Device Drivers
8516 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8517 L:      linux-scsi@vger.kernel.org
8518 S:      Supported
8519 F:      drivers/scsi/ibmvscsi/ibmvfc*
8520
8521 IBM Power Virtual Management Channel Driver
8522 M:      Steven Royer <seroyer@linux.ibm.com>
8523 S:      Supported
8524 F:      drivers/misc/ibmvmc.*
8525
8526 IBM Power Virtual SCSI Device Drivers
8527 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8528 L:      linux-scsi@vger.kernel.org
8529 S:      Supported
8530 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8531 F:      include/scsi/viosrp.h
8532
8533 IBM Power Virtual SCSI Device Target Driver
8534 M:      Michael Cyr <mikecyr@linux.ibm.com>
8535 L:      linux-scsi@vger.kernel.org
8536 L:      target-devel@vger.kernel.org
8537 S:      Supported
8538 F:      drivers/scsi/ibmvscsi_tgt/
8539
8540 IBM Power VMX Cryptographic instructions
8541 M:      Breno Leitão <leitao@debian.org>
8542 M:      Nayna Jain <nayna@linux.ibm.com>
8543 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8544 L:      linux-crypto@vger.kernel.org
8545 S:      Supported
8546 F:      drivers/crypto/vmx/Kconfig
8547 F:      drivers/crypto/vmx/Makefile
8548 F:      drivers/crypto/vmx/aes*
8549 F:      drivers/crypto/vmx/ghash*
8550 F:      drivers/crypto/vmx/ppc-xlate.pl
8551 F:      drivers/crypto/vmx/vmx.c
8552
8553 IBM ServeRAID RAID DRIVER
8554 S:      Orphan
8555 F:      drivers/scsi/ips.*
8556
8557 ICH LPC AND GPIO DRIVER
8558 M:      Peter Tyser <ptyser@xes-inc.com>
8559 S:      Maintained
8560 F:      drivers/gpio/gpio-ich.c
8561 F:      drivers/mfd/lpc_ich.c
8562
8563 ICY I2C DRIVER
8564 M:      Max Staudt <max@enpas.org>
8565 L:      linux-i2c@vger.kernel.org
8566 S:      Maintained
8567 F:      drivers/i2c/busses/i2c-icy.c
8568
8569 IDE SUBSYSTEM
8570 M:      "David S. Miller" <davem@davemloft.net>
8571 L:      linux-ide@vger.kernel.org
8572 S:      Maintained
8573 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8575 F:      Documentation/ide/
8576 F:      drivers/ide/
8577 F:      include/linux/ide.h
8578
8579 IDE/ATAPI DRIVERS
8580 M:      Borislav Petkov <bp@alien8.de>
8581 L:      linux-ide@vger.kernel.org
8582 S:      Maintained
8583 F:      Documentation/cdrom/ide-cd.rst
8584 F:      drivers/ide/ide-cd*
8585
8586 IDEAPAD LAPTOP EXTRAS DRIVER
8587 M:      Ike Panhc <ike.pan@canonical.com>
8588 L:      platform-driver-x86@vger.kernel.org
8589 S:      Maintained
8590 W:      http://launchpad.net/ideapad-laptop
8591 F:      drivers/platform/x86/ideapad-laptop.c
8592
8593 IDEAPAD LAPTOP SLIDEBAR DRIVER
8594 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8595 L:      linux-input@vger.kernel.org
8596 S:      Maintained
8597 W:      https://github.com/o2genum/ideapad-slidebar
8598 F:      drivers/input/misc/ideapad_slidebar.c
8599
8600 IDT VersaClock 5 CLOCK DRIVER
8601 M:      Luca Ceresoli <luca@lucaceresoli.net>
8602 S:      Maintained
8603 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
8604 F:      drivers/clk/clk-versaclock5.c
8605
8606 IEEE 802.15.4 SUBSYSTEM
8607 M:      Alexander Aring <alex.aring@gmail.com>
8608 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8609 L:      linux-wpan@vger.kernel.org
8610 S:      Maintained
8611 W:      https://linux-wpan.org/
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8614 F:      Documentation/networking/ieee802154.rst
8615 F:      drivers/net/ieee802154/
8616 F:      include/linux/ieee802154.h
8617 F:      include/linux/nl802154.h
8618 F:      include/net/af_ieee802154.h
8619 F:      include/net/cfg802154.h
8620 F:      include/net/ieee802154_netdev.h
8621 F:      include/net/mac802154.h
8622 F:      include/net/nl802154.h
8623 F:      net/ieee802154/
8624 F:      net/mac802154/
8625
8626 IFE PROTOCOL
8627 M:      Yotam Gigi <yotam.gi@gmail.com>
8628 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8629 F:      include/net/ife.h
8630 F:      include/uapi/linux/ife.h
8631 F:      net/ife
8632
8633 IGORPLUG-USB IR RECEIVER
8634 M:      Sean Young <sean@mess.org>
8635 L:      linux-media@vger.kernel.org
8636 S:      Maintained
8637 F:      drivers/media/rc/igorplugusb.c
8638
8639 IGUANAWORKS USB IR TRANSCEIVER
8640 M:      Sean Young <sean@mess.org>
8641 L:      linux-media@vger.kernel.org
8642 S:      Maintained
8643 F:      drivers/media/rc/iguanair.c
8644
8645 IIO DIGITAL POTENTIOMETER DAC
8646 M:      Peter Rosin <peda@axentia.se>
8647 L:      linux-iio@vger.kernel.org
8648 S:      Maintained
8649 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8650 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8651 F:      drivers/iio/dac/dpot-dac.c
8652
8653 IIO ENVELOPE DETECTOR
8654 M:      Peter Rosin <peda@axentia.se>
8655 L:      linux-iio@vger.kernel.org
8656 S:      Maintained
8657 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8658 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8659 F:      drivers/iio/adc/envelope-detector.c
8660
8661 IIO MULTIPLEXER
8662 M:      Peter Rosin <peda@axentia.se>
8663 L:      linux-iio@vger.kernel.org
8664 S:      Maintained
8665 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8666 F:      drivers/iio/multiplexer/iio-mux.c
8667
8668 IIO SUBSYSTEM AND DRIVERS
8669 M:      Jonathan Cameron <jic23@kernel.org>
8670 R:      Lars-Peter Clausen <lars@metafoo.de>
8671 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8672 L:      linux-iio@vger.kernel.org
8673 S:      Maintained
8674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8675 F:      Documentation/ABI/testing/configfs-iio*
8676 F:      Documentation/ABI/testing/sysfs-bus-iio*
8677 F:      Documentation/devicetree/bindings/iio/
8678 F:      drivers/iio/
8679 F:      drivers/staging/iio/
8680 F:      include/linux/iio/
8681 F:      tools/iio/
8682
8683 IIO UNIT CONVERTER
8684 M:      Peter Rosin <peda@axentia.se>
8685 L:      linux-iio@vger.kernel.org
8686 S:      Maintained
8687 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8688 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8689 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8690 F:      drivers/iio/afe/iio-rescale.c
8691
8692 IKANOS/ADI EAGLE ADSL USB DRIVER
8693 M:      Matthieu Castet <castet.matthieu@free.fr>
8694 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8695 S:      Maintained
8696 F:      drivers/usb/atm/ueagle-atm.c
8697
8698 IMGTEC ASCII LCD DRIVER
8699 M:      Paul Burton <paulburton@kernel.org>
8700 S:      Maintained
8701 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8702 F:      drivers/auxdisplay/img-ascii-lcd.c
8703
8704 IMGTEC IR DECODER DRIVER
8705 S:      Orphan
8706 F:      drivers/media/rc/img-ir/
8707
8708 IMON SOUNDGRAPH USB IR RECEIVER
8709 M:      Sean Young <sean@mess.org>
8710 L:      linux-media@vger.kernel.org
8711 S:      Maintained
8712 F:      drivers/media/rc/imon.c
8713 F:      drivers/media/rc/imon_raw.c
8714
8715 IMS TWINTURBO FRAMEBUFFER DRIVER
8716 L:      linux-fbdev@vger.kernel.org
8717 S:      Orphan
8718 F:      drivers/video/fbdev/imsttfb.c
8719
8720 INA209 HARDWARE MONITOR DRIVER
8721 M:      Guenter Roeck <linux@roeck-us.net>
8722 L:      linux-hwmon@vger.kernel.org
8723 S:      Maintained
8724 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
8725 F:      Documentation/hwmon/ina209.rst
8726 F:      drivers/hwmon/ina209.c
8727
8728 INA2XX HARDWARE MONITOR DRIVER
8729 M:      Guenter Roeck <linux@roeck-us.net>
8730 L:      linux-hwmon@vger.kernel.org
8731 S:      Maintained
8732 F:      Documentation/hwmon/ina2xx.rst
8733 F:      drivers/hwmon/ina2xx.c
8734 F:      include/linux/platform_data/ina2xx.h
8735
8736 INDUSTRY PACK SUBSYSTEM (IPACK)
8737 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8738 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8739 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8740 L:      industrypack-devel@lists.sourceforge.net
8741 S:      Maintained
8742 W:      http://industrypack.sourceforge.net
8743 F:      drivers/ipack/
8744
8745 INFINEON DPS310 Driver
8746 M:      Eddie James <eajames@linux.ibm.com>
8747 L:      linux-iio@vger.kernel.org
8748 S:      Maintained
8749 F:      drivers/iio/pressure/dps310.c
8750
8751 INFINIBAND SUBSYSTEM
8752 M:      Doug Ledford <dledford@redhat.com>
8753 M:      Jason Gunthorpe <jgg@nvidia.com>
8754 L:      linux-rdma@vger.kernel.org
8755 S:      Supported
8756 W:      https://github.com/linux-rdma/rdma-core
8757 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8759 F:      Documentation/devicetree/bindings/infiniband/
8760 F:      Documentation/infiniband/
8761 F:      drivers/infiniband/
8762 F:      include/rdma/
8763 F:      include/trace/events/ib_mad.h
8764 F:      include/trace/events/ib_umad.h
8765 F:      include/uapi/linux/if_infiniband.h
8766 F:      include/uapi/rdma/
8767 F:      samples/bpf/ibumad_kern.c
8768 F:      samples/bpf/ibumad_user.c
8769
8770 INGENIC JZ4780 NAND DRIVER
8771 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8772 L:      linux-mtd@lists.infradead.org
8773 L:      linux-mips@vger.kernel.org
8774 S:      Maintained
8775 F:      drivers/mtd/nand/raw/ingenic/
8776
8777 INGENIC JZ47xx SoCs
8778 M:      Paul Cercueil <paul@crapouillou.net>
8779 L:      linux-mips@vger.kernel.org
8780 S:      Maintained
8781 F:      arch/mips/boot/dts/ingenic/
8782 F:      arch/mips/generic/board-ingenic.c
8783 F:      arch/mips/include/asm/mach-ingenic/
8784 F:      arch/mips/ingenic/Kconfig
8785 F:      drivers/clk/ingenic/
8786 F:      drivers/dma/dma-jz4780.c
8787 F:      drivers/gpu/drm/ingenic/
8788 F:      drivers/i2c/busses/i2c-jz4780.c
8789 F:      drivers/iio/adc/ingenic-adc.c
8790 F:      drivers/irqchip/irq-ingenic.c
8791 F:      drivers/memory/jz4780-nemc.c
8792 F:      drivers/mmc/host/jz4740_mmc.c
8793 F:      drivers/mtd/nand/raw/ingenic/
8794 F:      drivers/pinctrl/pinctrl-ingenic.c
8795 F:      drivers/power/supply/ingenic-battery.c
8796 F:      drivers/pwm/pwm-jz4740.c
8797 F:      drivers/remoteproc/ingenic_rproc.c
8798 F:      drivers/rtc/rtc-jz4740.c
8799 F:      drivers/tty/serial/8250/8250_ingenic.c
8800 F:      drivers/usb/musb/jz4740.c
8801 F:      drivers/watchdog/jz4740_wdt.c
8802 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8803 F:      include/linux/mfd/ingenic-tcu.h
8804 F:      sound/soc/codecs/jz47*
8805 F:      sound/soc/jz4740/
8806
8807 INOTIFY
8808 M:      Jan Kara <jack@suse.cz>
8809 R:      Amir Goldstein <amir73il@gmail.com>
8810 L:      linux-fsdevel@vger.kernel.org
8811 S:      Maintained
8812 F:      Documentation/filesystems/inotify.rst
8813 F:      fs/notify/inotify/
8814 F:      include/linux/inotify.h
8815 F:      include/uapi/linux/inotify.h
8816
8817 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8818 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8819 L:      linux-input@vger.kernel.org
8820 S:      Maintained
8821 Q:      http://patchwork.kernel.org/project/linux-input/list/
8822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8823 F:      Documentation/devicetree/bindings/input/
8824 F:      Documentation/devicetree/bindings/serio/
8825 F:      Documentation/input/
8826 F:      drivers/input/
8827 F:      include/linux/input.h
8828 F:      include/linux/input/
8829 F:      include/uapi/linux/input-event-codes.h
8830 F:      include/uapi/linux/input.h
8831
8832 INPUT MULTITOUCH (MT) PROTOCOL
8833 M:      Henrik Rydberg <rydberg@bitmath.org>
8834 L:      linux-input@vger.kernel.org
8835 S:      Odd fixes
8836 F:      Documentation/input/multi-touch-protocol.rst
8837 F:      drivers/input/input-mt.c
8838 K:      \b(ABS|SYN)_MT_
8839
8840 INSIDE SECURE CRYPTO DRIVER
8841 M:      Antoine Tenart <atenart@kernel.org>
8842 L:      linux-crypto@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/crypto/inside-secure/
8845
8846 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8847 M:      Mimi Zohar <zohar@linux.ibm.com>
8848 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8849 L:      linux-integrity@vger.kernel.org
8850 S:      Supported
8851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8852 F:      security/integrity/ima/
8853
8854 INTEL 810/815 FRAMEBUFFER DRIVER
8855 M:      Antonino Daplas <adaplas@gmail.com>
8856 L:      linux-fbdev@vger.kernel.org
8857 S:      Maintained
8858 F:      drivers/video/fbdev/i810/
8859
8860 INTEL ASoC DRIVERS
8861 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8862 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8863 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8864 M:      Jie Yang <yang.jie@linux.intel.com>
8865 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8866 S:      Supported
8867 F:      sound/soc/intel/
8868
8869 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8870 M:      Hans de Goede <hdegoede@redhat.com>
8871 L:      platform-driver-x86@vger.kernel.org
8872 S:      Maintained
8873 F:      drivers/platform/x86/intel_atomisp2_pm.c
8874
8875 INTEL ATOMISP2 LED DRIVER
8876 M:      Hans de Goede <hdegoede@redhat.com>
8877 L:      platform-driver-x86@vger.kernel.org
8878 S:      Maintained
8879 F:      drivers/platform/x86/intel_atomisp2_led.c
8880
8881 INTEL BROXTON PMC DRIVER
8882 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8883 M:      Zha Qipeng <qipeng.zha@intel.com>
8884 S:      Maintained
8885 F:      drivers/mfd/intel_pmc_bxt.c
8886 F:      include/linux/mfd/intel_pmc_bxt.h
8887
8888 INTEL C600 SERIES SAS CONTROLLER DRIVER
8889 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8890 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8891 L:      linux-scsi@vger.kernel.org
8892 S:      Supported
8893 T:      git git://git.code.sf.net/p/intel-sas/isci
8894 F:      drivers/scsi/isci/
8895
8896 INTEL CPU family model numbers
8897 M:      Tony Luck <tony.luck@intel.com>
8898 M:      x86@kernel.org
8899 L:      linux-kernel@vger.kernel.org
8900 S:      Supported
8901 F:      arch/x86/include/asm/intel-family.h
8902
8903 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8904 M:      Jani Nikula <jani.nikula@linux.intel.com>
8905 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8906 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8907 L:      intel-gfx@lists.freedesktop.org
8908 S:      Supported
8909 W:      https://01.org/linuxgraphics/
8910 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8911 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8912 C:      irc://chat.freenode.net/intel-gfx
8913 T:      git git://anongit.freedesktop.org/drm-intel
8914 F:      Documentation/gpu/i915.rst
8915 F:      drivers/gpu/drm/i915/
8916 F:      include/drm/i915*
8917 F:      include/uapi/drm/i915_drm.h
8918
8919 INTEL ETHERNET DRIVERS
8920 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
8921 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
8922 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8923 S:      Supported
8924 W:      http://www.intel.com/support/feedback.htm
8925 W:      http://e1000.sourceforge.net/
8926 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
8928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
8929 F:      Documentation/networking/device_drivers/ethernet/intel/
8930 F:      drivers/net/ethernet/intel/
8931 F:      drivers/net/ethernet/intel/*/
8932 F:      include/linux/avf/virtchnl.h
8933
8934 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8935 M:      Maik Broemme <mbroemme@libmpq.org>
8936 L:      linux-fbdev@vger.kernel.org
8937 S:      Maintained
8938 F:      Documentation/fb/intelfb.rst
8939 F:      drivers/video/fbdev/intelfb/
8940
8941 INTEL GPIO DRIVERS
8942 M:      Andy Shevchenko <andy@kernel.org>
8943 L:      linux-gpio@vger.kernel.org
8944 S:      Maintained
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8946 F:      drivers/gpio/gpio-ich.c
8947 F:      drivers/gpio/gpio-intel-mid.c
8948 F:      drivers/gpio/gpio-merrifield.c
8949 F:      drivers/gpio/gpio-ml-ioh.c
8950 F:      drivers/gpio/gpio-pch.c
8951 F:      drivers/gpio/gpio-sch.c
8952 F:      drivers/gpio/gpio-sodaville.c
8953
8954 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8955 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8956 M:      Zhi Wang <zhi.a.wang@intel.com>
8957 L:      intel-gvt-dev@lists.freedesktop.org
8958 L:      intel-gfx@lists.freedesktop.org
8959 S:      Supported
8960 W:      https://01.org/igvt-g
8961 T:      git https://github.com/intel/gvt-linux.git
8962 F:      drivers/gpu/drm/i915/gvt/
8963
8964 INTEL HID EVENT DRIVER
8965 M:      Alex Hung <alex.hung@canonical.com>
8966 L:      platform-driver-x86@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/platform/x86/intel-hid.c
8969
8970 INTEL I/OAT DMA DRIVER
8971 M:      Dave Jiang <dave.jiang@intel.com>
8972 R:      Dan Williams <dan.j.williams@intel.com>
8973 L:      dmaengine@vger.kernel.org
8974 S:      Supported
8975 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8976 F:      drivers/dma/ioat*
8977
8978 INTEL IADX DRIVER
8979 M:      Dave Jiang <dave.jiang@intel.com>
8980 L:      dmaengine@vger.kernel.org
8981 S:      Supported
8982 F:      drivers/dma/idxd/*
8983 F:      include/uapi/linux/idxd.h
8984
8985 INTEL IDLE DRIVER
8986 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8987 M:      Len Brown <lenb@kernel.org>
8988 L:      linux-pm@vger.kernel.org
8989 S:      Supported
8990 B:      https://bugzilla.kernel.org
8991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8992 F:      drivers/idle/intel_idle.c
8993
8994 INTEL INTEGRATED SENSOR HUB DRIVER
8995 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8996 M:      Jiri Kosina <jikos@kernel.org>
8997 L:      linux-input@vger.kernel.org
8998 S:      Maintained
8999 F:      drivers/hid/intel-ish-hid/
9000
9001 INTEL IOMMU (VT-d)
9002 M:      David Woodhouse <dwmw2@infradead.org>
9003 M:      Lu Baolu <baolu.lu@linux.intel.com>
9004 L:      iommu@lists.linux-foundation.org
9005 S:      Supported
9006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9007 F:      drivers/iommu/intel/
9008 F:      include/linux/intel-iommu.h
9009 F:      include/linux/intel-svm.h
9010
9011 INTEL IOP-ADMA DMA DRIVER
9012 R:      Dan Williams <dan.j.williams@intel.com>
9013 S:      Odd fixes
9014 F:      drivers/dma/iop-adma.c
9015
9016 INTEL IPU3 CSI-2 CIO2 DRIVER
9017 M:      Yong Zhi <yong.zhi@intel.com>
9018 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9019 M:      Bingbu Cao <bingbu.cao@intel.com>
9020 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9021 L:      linux-media@vger.kernel.org
9022 S:      Maintained
9023 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9024 F:      drivers/media/pci/intel/ipu3/
9025
9026 INTEL IPU3 CSI-2 IMGU DRIVER
9027 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9028 R:      Bingbu Cao <bingbu.cao@intel.com>
9029 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9030 L:      linux-media@vger.kernel.org
9031 S:      Maintained
9032 F:      Documentation/admin-guide/media/ipu3.rst
9033 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9034 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9035 F:      drivers/staging/media/ipu3/
9036
9037 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9038 M:      Krzysztof Halasa <khalasa@piap.pl>
9039 S:      Maintained
9040 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9041 F:      drivers/net/wan/ixp4xx_hss.c
9042 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9043 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9044 F:      include/linux/soc/ixp4xx/npe.h
9045 F:      include/linux/soc/ixp4xx/qmgr.h
9046
9047 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9048 M:      Deepak Saxena <dsaxena@plexity.net>
9049 S:      Maintained
9050 F:      drivers/char/hw_random/ixp4xx-rng.c
9051
9052 INTEL KEEM BAY DRM DRIVER
9053 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9054 M:      Edmund Dea <edmund.j.dea@intel.com>
9055 S:      Maintained
9056 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9057 F:      drivers/gpu/drm/kmb/
9058
9059 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9060 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9061 S:      Maintained
9062 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9063 F:      drivers/crypto/keembay/Kconfig
9064 F:      drivers/crypto/keembay/Makefile
9065 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9066 F:      drivers/crypto/keembay/ocs-aes.c
9067 F:      drivers/crypto/keembay/ocs-aes.h
9068
9069 INTEL MANAGEMENT ENGINE (mei)
9070 M:      Tomas Winkler <tomas.winkler@intel.com>
9071 L:      linux-kernel@vger.kernel.org
9072 S:      Supported
9073 F:      Documentation/driver-api/mei/*
9074 F:      drivers/misc/mei/
9075 F:      drivers/watchdog/mei_wdt.c
9076 F:      include/linux/mei_cl_bus.h
9077 F:      include/uapi/linux/mei.h
9078 F:      samples/mei/*
9079
9080 INTEL MENLOW THERMAL DRIVER
9081 M:      Sujith Thomas <sujith.thomas@intel.com>
9082 L:      platform-driver-x86@vger.kernel.org
9083 S:      Supported
9084 W:      https://01.org/linux-acpi
9085 F:      drivers/platform/x86/intel_menlow.c
9086
9087 INTEL P-Unit IPC DRIVER
9088 M:      Zha Qipeng <qipeng.zha@intel.com>
9089 L:      platform-driver-x86@vger.kernel.org
9090 S:      Maintained
9091 F:      arch/x86/include/asm/intel_punit_ipc.h
9092 F:      drivers/platform/x86/intel_punit_ipc.c
9093
9094 INTEL PMC CORE DRIVER
9095 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9096 M:      David E Box <david.e.box@intel.com>
9097 L:      platform-driver-x86@vger.kernel.org
9098 S:      Maintained
9099 F:      drivers/platform/x86/intel_pmc_core*
9100
9101 INTEL PMIC GPIO DRIVERS
9102 M:      Andy Shevchenko <andy@kernel.org>
9103 S:      Maintained
9104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9105 F:      drivers/gpio/gpio-*cove.c
9106 F:      drivers/gpio/gpio-msic.c
9107
9108 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9109 M:      Andy Shevchenko <andy@kernel.org>
9110 S:      Maintained
9111 F:      drivers/mfd/intel_msic.c
9112 F:      drivers/mfd/intel_soc_pmic*
9113 F:      include/linux/mfd/intel_msic.h
9114 F:      include/linux/mfd/intel_soc_pmic*
9115
9116 INTEL PMT DRIVER
9117 M:      "David E. Box" <david.e.box@linux.intel.com>
9118 S:      Maintained
9119 F:      drivers/mfd/intel_pmt.c
9120 F:      drivers/platform/x86/intel_pmt_*
9121
9122 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9123 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9124 L:      linux-wireless@vger.kernel.org
9125 S:      Maintained
9126 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9127 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9128 F:      drivers/net/wireless/intel/ipw2x00/
9129
9130 INTEL PSTATE DRIVER
9131 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9132 M:      Len Brown <lenb@kernel.org>
9133 L:      linux-pm@vger.kernel.org
9134 S:      Supported
9135 F:      drivers/cpufreq/intel_pstate.c
9136
9137 INTEL RDMA RNIC DRIVER
9138 M:      Faisal Latif <faisal.latif@intel.com>
9139 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9140 L:      linux-rdma@vger.kernel.org
9141 S:      Supported
9142 F:      drivers/infiniband/hw/i40iw/
9143 F:      include/uapi/rdma/i40iw-abi.h
9144
9145 INTEL SCU DRIVERS
9146 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9147 S:      Maintained
9148 F:      arch/x86/include/asm/intel_scu_ipc.h
9149 F:      drivers/platform/x86/intel_scu_*
9150
9151 INTEL SPEED SELECT TECHNOLOGY
9152 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9153 L:      platform-driver-x86@vger.kernel.org
9154 S:      Maintained
9155 F:      drivers/platform/x86/intel_speed_select_if/
9156 F:      include/uapi/linux/isst_if.h
9157 F:      tools/power/x86/intel-speed-select/
9158
9159 INTEL STRATIX10 FIRMWARE DRIVERS
9160 M:      Richard Gong <richard.gong@linux.intel.com>
9161 L:      linux-kernel@vger.kernel.org
9162 S:      Maintained
9163 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9164 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9165 F:      drivers/firmware/stratix10-rsu.c
9166 F:      drivers/firmware/stratix10-svc.c
9167 F:      include/linux/firmware/intel/stratix10-smc.h
9168 F:      include/linux/firmware/intel/stratix10-svc-client.h
9169
9170 INTEL TELEMETRY DRIVER
9171 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
9172 M:      "David E. Box" <david.e.box@linux.intel.com>
9173 L:      platform-driver-x86@vger.kernel.org
9174 S:      Maintained
9175 F:      arch/x86/include/asm/intel_telemetry.h
9176 F:      drivers/platform/x86/intel_telemetry*
9177
9178 INTEL UNCORE FREQUENCY CONTROL
9179 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9180 L:      platform-driver-x86@vger.kernel.org
9181 S:      Maintained
9182 F:      drivers/platform/x86/intel-uncore-frequency.c
9183
9184 INTEL VIRTUAL BUTTON DRIVER
9185 M:      AceLan Kao <acelan.kao@canonical.com>
9186 L:      platform-driver-x86@vger.kernel.org
9187 S:      Maintained
9188 F:      drivers/platform/x86/intel-vbtn.c
9189
9190 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9191 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9192 L:      linux-wireless@vger.kernel.org
9193 S:      Supported
9194 F:      drivers/net/wireless/intel/iwlegacy/
9195
9196 INTEL WIRELESS WIFI LINK (iwlwifi)
9197 M:      Luca Coelho <luciano.coelho@intel.com>
9198 L:      linux-wireless@vger.kernel.org
9199 S:      Supported
9200 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9202 F:      drivers/net/wireless/intel/iwlwifi/
9203
9204 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9205 M:      Jithu Joseph <jithu.joseph@intel.com>
9206 R:      Maurice Ma <maurice.ma@intel.com>
9207 S:      Maintained
9208 W:      https://slimbootloader.github.io/security/firmware-update.html
9209 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
9210
9211 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9212 M:      Mario Limonciello <mario.limonciello@dell.com>
9213 S:      Maintained
9214 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
9215
9216 INTEL(R) TRACE HUB
9217 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9218 S:      Supported
9219 F:      Documentation/trace/intel_th.rst
9220 F:      drivers/hwtracing/intel_th/
9221 F:      include/linux/intel_th.h
9222
9223 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9224 M:      Ning Sun <ning.sun@intel.com>
9225 L:      tboot-devel@lists.sourceforge.net
9226 S:      Supported
9227 W:      http://tboot.sourceforge.net
9228 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9229 F:      Documentation/x86/intel_txt.rst
9230 F:      arch/x86/kernel/tboot.c
9231 F:      include/linux/tboot.h
9232
9233 INTEL SGX
9234 M:      Jarkko Sakkinen <jarkko@kernel.org>
9235 L:      linux-sgx@vger.kernel.org
9236 S:      Supported
9237 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-sgx.git
9239 F:      Documentation/x86/sgx.rst
9240 F:      arch/x86/entry/vdso/vsgx.S
9241 F:      arch/x86/include/uapi/asm/sgx.h
9242 F:      arch/x86/kernel/cpu/sgx/*
9243 F:      tools/testing/selftests/sgx/*
9244 K:      \bSGX_
9245
9246 INTERCONNECT API
9247 M:      Georgi Djakov <djakov@kernel.org>
9248 L:      linux-pm@vger.kernel.org
9249 S:      Maintained
9250 F:      Documentation/devicetree/bindings/interconnect/
9251 F:      Documentation/driver-api/interconnect.rst
9252 F:      drivers/interconnect/
9253 F:      include/dt-bindings/interconnect/
9254 F:      include/linux/interconnect-provider.h
9255 F:      include/linux/interconnect.h
9256
9257 INVENSENSE ICM-426xx IMU DRIVER
9258 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9259 L:      linux-iio@vger.kernel.org
9260 S:      Maintained
9261 W:      https://invensense.tdk.com/
9262 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9263 F:      drivers/iio/imu/inv_icm42600/
9264
9265 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9266 M:      Linus Walleij <linus.walleij@linaro.org>
9267 L:      linux-iio@vger.kernel.org
9268 S:      Maintained
9269 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
9270 F:      drivers/iio/gyro/mpu3050*
9271
9272 IOC3 ETHERNET DRIVER
9273 M:      Ralf Baechle <ralf@linux-mips.org>
9274 L:      linux-mips@vger.kernel.org
9275 S:      Maintained
9276 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9277
9278 IOMAP FILESYSTEM LIBRARY
9279 M:      Christoph Hellwig <hch@infradead.org>
9280 M:      Darrick J. Wong <djwong@kernel.org>
9281 M:      linux-xfs@vger.kernel.org
9282 M:      linux-fsdevel@vger.kernel.org
9283 L:      linux-xfs@vger.kernel.org
9284 L:      linux-fsdevel@vger.kernel.org
9285 S:      Supported
9286 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9287 F:      fs/iomap/
9288 F:      include/linux/iomap.h
9289
9290 IOMMU DRIVERS
9291 M:      Joerg Roedel <joro@8bytes.org>
9292 M:      Will Deacon <will@kernel.org>
9293 L:      iommu@lists.linux-foundation.org
9294 S:      Maintained
9295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9296 F:      Documentation/devicetree/bindings/iommu/
9297 F:      Documentation/userspace-api/iommu.rst
9298 F:      drivers/iommu/
9299 F:      include/linux/iommu.h
9300 F:      include/linux/iova.h
9301 F:      include/linux/of_iommu.h
9302 F:      include/uapi/linux/iommu.h
9303
9304 IO_URING
9305 M:      Jens Axboe <axboe@kernel.dk>
9306 L:      io-uring@vger.kernel.org
9307 S:      Maintained
9308 T:      git git://git.kernel.dk/linux-block
9309 T:      git git://git.kernel.dk/liburing
9310 F:      fs/io-wq.c
9311 F:      fs/io-wq.h
9312 F:      fs/io_uring.c
9313 F:      include/uapi/linux/io_uring.h
9314
9315 IPMI SUBSYSTEM
9316 M:      Corey Minyard <minyard@acm.org>
9317 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9318 S:      Supported
9319 W:      http://openipmi.sourceforge.net/
9320 F:      Documentation/driver-api/ipmi.rst
9321 F:      Documentation/devicetree/bindings/ipmi/
9322 F:      drivers/char/ipmi/
9323 F:      include/linux/ipmi*
9324 F:      include/uapi/linux/ipmi*
9325
9326 IPS SCSI RAID DRIVER
9327 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9328 L:      linux-scsi@vger.kernel.org
9329 S:      Maintained
9330 W:      http://www.adaptec.com/
9331 F:      drivers/scsi/ips*
9332
9333 IPVS
9334 M:      Simon Horman <horms@verge.net.au>
9335 M:      Julian Anastasov <ja@ssi.bg>
9336 L:      netdev@vger.kernel.org
9337 L:      lvs-devel@vger.kernel.org
9338 S:      Maintained
9339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9341 F:      Documentation/networking/ipvs-sysctl.rst
9342 F:      include/net/ip_vs.h
9343 F:      include/uapi/linux/ip_vs.h
9344 F:      net/netfilter/ipvs/
9345
9346 IPWIRELESS DRIVER
9347 M:      Jiri Kosina <jikos@kernel.org>
9348 M:      David Sterba <dsterba@suse.com>
9349 S:      Odd Fixes
9350 F:      drivers/tty/ipwireless/
9351
9352 IPX NETWORK LAYER
9353 L:      netdev@vger.kernel.org
9354 S:      Obsolete
9355 F:      include/uapi/linux/ipx.h
9356
9357 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9358 M:      Marc Zyngier <maz@kernel.org>
9359 S:      Maintained
9360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9361 F:      Documentation/core-api/irq/irq-domain.rst
9362 F:      include/linux/irqdomain.h
9363 F:      kernel/irq/irqdomain.c
9364 F:      kernel/irq/msi.c
9365
9366 IRQ SUBSYSTEM
9367 M:      Thomas Gleixner <tglx@linutronix.de>
9368 L:      linux-kernel@vger.kernel.org
9369 S:      Maintained
9370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9371 F:      kernel/irq/
9372
9373 IRQCHIP DRIVERS
9374 M:      Thomas Gleixner <tglx@linutronix.de>
9375 M:      Marc Zyngier <maz@kernel.org>
9376 L:      linux-kernel@vger.kernel.org
9377 S:      Maintained
9378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9379 F:      Documentation/devicetree/bindings/interrupt-controller/
9380 F:      drivers/irqchip/
9381
9382 ISA
9383 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9384 S:      Maintained
9385 F:      Documentation/driver-api/isa.rst
9386 F:      drivers/base/isa.c
9387 F:      include/linux/isa.h
9388
9389 ISA RADIO MODULE
9390 M:      Hans Verkuil <hverkuil@xs4all.nl>
9391 L:      linux-media@vger.kernel.org
9392 S:      Maintained
9393 W:      https://linuxtv.org
9394 T:      git git://linuxtv.org/media_tree.git
9395 F:      drivers/media/radio/radio-isa*
9396
9397 ISAPNP
9398 M:      Jaroslav Kysela <perex@perex.cz>
9399 S:      Maintained
9400 F:      Documentation/driver-api/isapnp.rst
9401 F:      drivers/pnp/isapnp/
9402 F:      include/linux/isapnp.h
9403
9404 ISCSI
9405 M:      Lee Duncan <lduncan@suse.com>
9406 M:      Chris Leech <cleech@redhat.com>
9407 L:      open-iscsi@googlegroups.com
9408 L:      linux-scsi@vger.kernel.org
9409 S:      Maintained
9410 W:      www.open-iscsi.com
9411 F:      drivers/scsi/*iscsi*
9412 F:      include/scsi/*iscsi*
9413
9414 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9415 M:      Peter Jones <pjones@redhat.com>
9416 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9417 S:      Maintained
9418 F:      drivers/firmware/iscsi_ibft*
9419
9420 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9421 M:      Sagi Grimberg <sagi@grimberg.me>
9422 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9423 L:      linux-rdma@vger.kernel.org
9424 S:      Supported
9425 W:      http://www.openfabrics.org
9426 W:      www.open-iscsi.org
9427 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9428 F:      drivers/infiniband/ulp/iser/
9429
9430 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9431 M:      Sagi Grimberg <sagi@grimberg.me>
9432 L:      linux-rdma@vger.kernel.org
9433 L:      target-devel@vger.kernel.org
9434 S:      Supported
9435 W:      http://www.linux-iscsi.org
9436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9437 F:      drivers/infiniband/ulp/isert
9438
9439 ISDN/CMTP OVER BLUETOOTH
9440 M:      Karsten Keil <isdn@linux-pingi.de>
9441 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9442 L:      netdev@vger.kernel.org
9443 S:      Odd Fixes
9444 W:      http://www.isdn4linux.de
9445 F:      Documentation/isdn/
9446 F:      drivers/isdn/capi/
9447 F:      include/linux/isdn/
9448 F:      include/uapi/linux/isdn/
9449 F:      net/bluetooth/cmtp/
9450
9451 ISDN/mISDN SUBSYSTEM
9452 M:      Karsten Keil <isdn@linux-pingi.de>
9453 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9454 L:      netdev@vger.kernel.org
9455 S:      Maintained
9456 W:      http://www.isdn4linux.de
9457 F:      drivers/isdn/Kconfig
9458 F:      drivers/isdn/Makefile
9459 F:      drivers/isdn/hardware/
9460 F:      drivers/isdn/mISDN/
9461
9462 IT87 HARDWARE MONITORING DRIVER
9463 M:      Jean Delvare <jdelvare@suse.com>
9464 L:      linux-hwmon@vger.kernel.org
9465 S:      Maintained
9466 F:      Documentation/hwmon/it87.rst
9467 F:      drivers/hwmon/it87.c
9468
9469 IT913X MEDIA DRIVER
9470 M:      Antti Palosaari <crope@iki.fi>
9471 L:      linux-media@vger.kernel.org
9472 S:      Maintained
9473 W:      https://linuxtv.org
9474 W:      http://palosaari.fi/linux/
9475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9476 T:      git git://linuxtv.org/anttip/media_tree.git
9477 F:      drivers/media/tuners/it913x*
9478
9479 IVTV VIDEO4LINUX DRIVER
9480 M:      Andy Walls <awalls@md.metrocast.net>
9481 L:      linux-media@vger.kernel.org
9482 S:      Maintained
9483 W:      https://linuxtv.org
9484 T:      git git://linuxtv.org/media_tree.git
9485 F:      Documentation/admin-guide/media/ivtv*
9486 F:      drivers/media/pci/ivtv/
9487 F:      include/uapi/linux/ivtv*
9488
9489 IX2505V MEDIA DRIVER
9490 M:      Malcolm Priestley <tvboxspy@gmail.com>
9491 L:      linux-media@vger.kernel.org
9492 S:      Maintained
9493 W:      https://linuxtv.org
9494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9495 F:      drivers/media/dvb-frontends/ix2505v*
9496
9497 JAILHOUSE HYPERVISOR INTERFACE
9498 M:      Jan Kiszka <jan.kiszka@siemens.com>
9499 L:      jailhouse-dev@googlegroups.com
9500 S:      Maintained
9501 F:      arch/x86/include/asm/jailhouse_para.h
9502 F:      arch/x86/kernel/jailhouse.c
9503
9504 JC42.4 TEMPERATURE SENSOR DRIVER
9505 M:      Guenter Roeck <linux@roeck-us.net>
9506 L:      linux-hwmon@vger.kernel.org
9507 S:      Maintained
9508 F:      Documentation/hwmon/jc42.rst
9509 F:      drivers/hwmon/jc42.c
9510
9511 JFS FILESYSTEM
9512 M:      Dave Kleikamp <shaggy@kernel.org>
9513 L:      jfs-discussion@lists.sourceforge.net
9514 S:      Maintained
9515 W:      http://jfs.sourceforge.net/
9516 T:      git git://github.com/kleikamp/linux-shaggy.git
9517 F:      Documentation/admin-guide/jfs.rst
9518 F:      fs/jfs/
9519
9520 JME NETWORK DRIVER
9521 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9522 L:      netdev@vger.kernel.org
9523 S:      Maintained
9524 F:      drivers/net/ethernet/jme.*
9525
9526 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9527 M:      David Woodhouse <dwmw2@infradead.org>
9528 M:      Richard Weinberger <richard@nod.at>
9529 L:      linux-mtd@lists.infradead.org
9530 S:      Odd Fixes
9531 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9532 T:      git git://git.infradead.org/ubifs-2.6.git
9533 F:      fs/jffs2/
9534 F:      include/uapi/linux/jffs2.h
9535
9536 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9537 M:      "Theodore Ts'o" <tytso@mit.edu>
9538 M:      Jan Kara <jack@suse.com>
9539 L:      linux-ext4@vger.kernel.org
9540 S:      Maintained
9541 F:      fs/jbd2/
9542 F:      include/linux/jbd2.h
9543
9544 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9545 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9546 L:      linux-media@vger.kernel.org
9547 S:      Maintained
9548 F:      drivers/media/platform/rcar_jpu.c
9549
9550 JSM Neo PCI based serial card
9551 L:      linux-serial@vger.kernel.org
9552 S:      Orphan
9553 F:      drivers/tty/serial/jsm/
9554
9555 K10TEMP HARDWARE MONITORING DRIVER
9556 M:      Clemens Ladisch <clemens@ladisch.de>
9557 L:      linux-hwmon@vger.kernel.org
9558 S:      Maintained
9559 F:      Documentation/hwmon/k10temp.rst
9560 F:      drivers/hwmon/k10temp.c
9561
9562 K8TEMP HARDWARE MONITORING DRIVER
9563 M:      Rudolf Marek <r.marek@assembler.cz>
9564 L:      linux-hwmon@vger.kernel.org
9565 S:      Maintained
9566 F:      Documentation/hwmon/k8temp.rst
9567 F:      drivers/hwmon/k8temp.c
9568
9569 KASAN
9570 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9571 R:      Alexander Potapenko <glider@google.com>
9572 R:      Dmitry Vyukov <dvyukov@google.com>
9573 L:      kasan-dev@googlegroups.com
9574 S:      Maintained
9575 F:      Documentation/dev-tools/kasan.rst
9576 F:      arch/*/include/asm/kasan.h
9577 F:      arch/*/mm/kasan_init*
9578 F:      include/linux/kasan*.h
9579 F:      lib/test_kasan.c
9580 F:      mm/kasan/
9581 F:      scripts/Makefile.kasan
9582
9583 KCONFIG
9584 M:      Masahiro Yamada <masahiroy@kernel.org>
9585 L:      linux-kbuild@vger.kernel.org
9586 S:      Maintained
9587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9588 F:      Documentation/kbuild/kconfig*
9589 F:      scripts/Kconfig.include
9590 F:      scripts/kconfig/
9591
9592 KCOV
9593 R:      Dmitry Vyukov <dvyukov@google.com>
9594 R:      Andrey Konovalov <andreyknvl@google.com>
9595 L:      kasan-dev@googlegroups.com
9596 S:      Maintained
9597 F:      Documentation/dev-tools/kcov.rst
9598 F:      include/linux/kcov.h
9599 F:      include/uapi/linux/kcov.h
9600 F:      kernel/kcov.c
9601 F:      scripts/Makefile.kcov
9602
9603 KCSAN
9604 M:      Marco Elver <elver@google.com>
9605 R:      Dmitry Vyukov <dvyukov@google.com>
9606 L:      kasan-dev@googlegroups.com
9607 S:      Maintained
9608 F:      Documentation/dev-tools/kcsan.rst
9609 F:      include/linux/kcsan*.h
9610 F:      kernel/kcsan/
9611 F:      lib/Kconfig.kcsan
9612 F:      scripts/Makefile.kcsan
9613
9614 KDUMP
9615 M:      Dave Young <dyoung@redhat.com>
9616 M:      Baoquan He <bhe@redhat.com>
9617 R:      Vivek Goyal <vgoyal@redhat.com>
9618 L:      kexec@lists.infradead.org
9619 S:      Maintained
9620 W:      http://lse.sourceforge.net/kdump/
9621 F:      Documentation/admin-guide/kdump/
9622 F:      fs/proc/vmcore.c
9623 F:      include/linux/crash_core.h
9624 F:      include/linux/crash_dump.h
9625 F:      include/uapi/linux/vmcore.h
9626 F:      kernel/crash_*.c
9627
9628 KEENE FM RADIO TRANSMITTER DRIVER
9629 M:      Hans Verkuil <hverkuil@xs4all.nl>
9630 L:      linux-media@vger.kernel.org
9631 S:      Maintained
9632 W:      https://linuxtv.org
9633 T:      git git://linuxtv.org/media_tree.git
9634 F:      drivers/media/radio/radio-keene*
9635
9636 KERNEL AUTOMOUNTER
9637 M:      Ian Kent <raven@themaw.net>
9638 L:      autofs@vger.kernel.org
9639 S:      Maintained
9640 F:      fs/autofs/
9641
9642 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9643 M:      Masahiro Yamada <masahiroy@kernel.org>
9644 M:      Michal Marek <michal.lkml@markovi.net>
9645 L:      linux-kbuild@vger.kernel.org
9646 S:      Maintained
9647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9648 F:      Documentation/kbuild/
9649 F:      Makefile
9650 F:      scripts/*vmlinux*
9651 F:      scripts/Kbuild*
9652 F:      scripts/Makefile*
9653 F:      scripts/basic/
9654 F:      scripts/mk*
9655 F:      scripts/mod/
9656 F:      scripts/package/
9657
9658 KERNEL JANITORS
9659 L:      kernel-janitors@vger.kernel.org
9660 S:      Odd Fixes
9661 W:      http://kernelnewbies.org/KernelJanitors
9662
9663 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9664 M:      "J. Bruce Fields" <bfields@fieldses.org>
9665 M:      Chuck Lever <chuck.lever@oracle.com>
9666 L:      linux-nfs@vger.kernel.org
9667 S:      Supported
9668 W:      http://nfs.sourceforge.net/
9669 T:      git git://linux-nfs.org/~bfields/linux.git
9670 F:      fs/lockd/
9671 F:      fs/nfs_common/
9672 F:      fs/nfsd/
9673 F:      include/linux/lockd/
9674 F:      include/linux/sunrpc/
9675 F:      include/uapi/linux/nfsd/
9676 F:      include/uapi/linux/sunrpc/
9677 F:      net/sunrpc/
9678 F:      Documentation/filesystems/nfs/
9679
9680 KERNEL SELFTEST FRAMEWORK
9681 M:      Shuah Khan <shuah@kernel.org>
9682 M:      Shuah Khan <skhan@linuxfoundation.org>
9683 L:      linux-kselftest@vger.kernel.org
9684 S:      Maintained
9685 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9687 F:      Documentation/dev-tools/kselftest*
9688 F:      tools/testing/selftests/
9689
9690 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9691 M:      Brendan Higgins <brendanhiggins@google.com>
9692 L:      linux-kselftest@vger.kernel.org
9693 L:      kunit-dev@googlegroups.com
9694 S:      Maintained
9695 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9696 F:      Documentation/dev-tools/kunit/
9697 F:      include/kunit/
9698 F:      lib/kunit/
9699 F:      tools/testing/kunit/
9700
9701 KERNEL USERMODE HELPER
9702 M:      Luis Chamberlain <mcgrof@kernel.org>
9703 L:      linux-kernel@vger.kernel.org
9704 S:      Maintained
9705 F:      include/linux/umh.h
9706 F:      kernel/umh.c
9707
9708 KERNEL VIRTUAL MACHINE (KVM)
9709 M:      Paolo Bonzini <pbonzini@redhat.com>
9710 L:      kvm@vger.kernel.org
9711 S:      Supported
9712 W:      http://www.linux-kvm.org
9713 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9714 F:      Documentation/virt/kvm/
9715 F:      include/asm-generic/kvm*
9716 F:      include/kvm/iodev.h
9717 F:      include/linux/kvm*
9718 F:      include/trace/events/kvm.h
9719 F:      include/uapi/asm-generic/kvm*
9720 F:      include/uapi/linux/kvm*
9721 F:      tools/kvm/
9722 F:      tools/testing/selftests/kvm/
9723 F:      virt/kvm/*
9724
9725 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9726 M:      Marc Zyngier <maz@kernel.org>
9727 R:      James Morse <james.morse@arm.com>
9728 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9729 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9731 L:      kvmarm@lists.cs.columbia.edu
9732 S:      Maintained
9733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9734 F:      arch/arm64/include/asm/kvm*
9735 F:      arch/arm64/include/uapi/asm/kvm*
9736 F:      arch/arm64/kvm/
9737 F:      include/kvm/arm_*
9738
9739 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9740 M:      Huacai Chen <chenhuacai@kernel.org>
9741 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
9742 L:      linux-mips@vger.kernel.org
9743 L:      kvm@vger.kernel.org
9744 S:      Maintained
9745 F:      arch/mips/include/asm/kvm*
9746 F:      arch/mips/include/uapi/asm/kvm*
9747 F:      arch/mips/kvm/
9748
9749 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9750 M:      Paul Mackerras <paulus@ozlabs.org>
9751 L:      kvm-ppc@vger.kernel.org
9752 S:      Supported
9753 W:      http://www.linux-kvm.org/
9754 T:      git git://github.com/agraf/linux-2.6.git
9755 F:      arch/powerpc/include/asm/kvm*
9756 F:      arch/powerpc/include/uapi/asm/kvm*
9757 F:      arch/powerpc/kernel/kvm*
9758 F:      arch/powerpc/kvm/
9759
9760 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9761 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9762 M:      Janosch Frank <frankja@linux.ibm.com>
9763 R:      David Hildenbrand <david@redhat.com>
9764 R:      Cornelia Huck <cohuck@redhat.com>
9765 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9766 L:      kvm@vger.kernel.org
9767 S:      Supported
9768 W:      http://www.ibm.com/developerworks/linux/linux390/
9769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9770 F:      Documentation/virt/kvm/s390*
9771 F:      arch/s390/include/asm/gmap.h
9772 F:      arch/s390/include/asm/kvm*
9773 F:      arch/s390/include/uapi/asm/kvm*
9774 F:      arch/s390/kernel/uv.c
9775 F:      arch/s390/kvm/
9776 F:      arch/s390/mm/gmap.c
9777 F:      tools/testing/selftests/kvm/*/s390x/
9778 F:      tools/testing/selftests/kvm/s390x/
9779
9780 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9781 M:      Paolo Bonzini <pbonzini@redhat.com>
9782 R:      Sean Christopherson <seanjc@google.com>
9783 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9784 R:      Wanpeng Li <wanpengli@tencent.com>
9785 R:      Jim Mattson <jmattson@google.com>
9786 R:      Joerg Roedel <joro@8bytes.org>
9787 L:      kvm@vger.kernel.org
9788 S:      Supported
9789 W:      http://www.linux-kvm.org
9790 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9791 F:      arch/x86/include/asm/kvm*
9792 F:      arch/x86/include/asm/pvclock-abi.h
9793 F:      arch/x86/include/asm/svm.h
9794 F:      arch/x86/include/asm/vmx*.h
9795 F:      arch/x86/include/uapi/asm/kvm*
9796 F:      arch/x86/include/uapi/asm/svm.h
9797 F:      arch/x86/include/uapi/asm/vmx.h
9798 F:      arch/x86/kernel/kvm.c
9799 F:      arch/x86/kernel/kvmclock.c
9800 F:      arch/x86/kvm/
9801 F:      arch/x86/kvm/*/
9802
9803 KERNFS
9804 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9805 M:      Tejun Heo <tj@kernel.org>
9806 S:      Supported
9807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9808 F:      fs/kernfs/
9809 F:      include/linux/kernfs.h
9810
9811 KEXEC
9812 M:      Eric Biederman <ebiederm@xmission.com>
9813 L:      kexec@lists.infradead.org
9814 S:      Maintained
9815 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9816 F:      include/linux/kexec.h
9817 F:      include/uapi/linux/kexec.h
9818 F:      kernel/kexec*
9819
9820 KEYS-ENCRYPTED
9821 M:      Mimi Zohar <zohar@linux.ibm.com>
9822 L:      linux-integrity@vger.kernel.org
9823 L:      keyrings@vger.kernel.org
9824 S:      Supported
9825 F:      Documentation/security/keys/trusted-encrypted.rst
9826 F:      include/keys/encrypted-type.h
9827 F:      security/keys/encrypted-keys/
9828
9829 KEYS-TRUSTED
9830 M:      James Bottomley <jejb@linux.ibm.com>
9831 M:      Jarkko Sakkinen <jarkko@kernel.org>
9832 M:      Mimi Zohar <zohar@linux.ibm.com>
9833 L:      linux-integrity@vger.kernel.org
9834 L:      keyrings@vger.kernel.org
9835 S:      Supported
9836 F:      Documentation/security/keys/trusted-encrypted.rst
9837 F:      include/keys/trusted-type.h
9838 F:      include/keys/trusted_tpm.h
9839 F:      security/keys/trusted-keys/
9840
9841 KEYS/KEYRINGS
9842 M:      David Howells <dhowells@redhat.com>
9843 M:      Jarkko Sakkinen <jarkko@kernel.org>
9844 L:      keyrings@vger.kernel.org
9845 S:      Maintained
9846 F:      Documentation/security/keys/core.rst
9847 F:      include/keys/
9848 F:      include/linux/key-type.h
9849 F:      include/linux/key.h
9850 F:      include/linux/keyctl.h
9851 F:      include/uapi/linux/keyctl.h
9852 F:      security/keys/
9853
9854 KFIFO
9855 M:      Stefani Seibold <stefani@seibold.net>
9856 S:      Maintained
9857 F:      include/linux/kfifo.h
9858 F:      lib/kfifo.c
9859 F:      samples/kfifo/
9860
9861 KGDB / KDB /debug_core
9862 M:      Jason Wessel <jason.wessel@windriver.com>
9863 M:      Daniel Thompson <daniel.thompson@linaro.org>
9864 R:      Douglas Anderson <dianders@chromium.org>
9865 L:      kgdb-bugreport@lists.sourceforge.net
9866 S:      Maintained
9867 W:      http://kgdb.wiki.kernel.org/
9868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9869 F:      Documentation/dev-tools/kgdb.rst
9870 F:      drivers/misc/kgdbts.c
9871 F:      drivers/tty/serial/kgdboc.c
9872 F:      include/linux/kdb.h
9873 F:      include/linux/kgdb.h
9874 F:      kernel/debug/
9875
9876 KHADAS MCU MFD DRIVER
9877 M:      Neil Armstrong <narmstrong@baylibre.com>
9878 L:      linux-amlogic@lists.infradead.org
9879 S:      Maintained
9880 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
9881 F:      drivers/mfd/khadas-mcu.c
9882 F:      include/linux/mfd/khadas-mcu.h
9883 F:      drivers/thermal/khadas_mcu_fan.c
9884
9885 KMEMLEAK
9886 M:      Catalin Marinas <catalin.marinas@arm.com>
9887 S:      Maintained
9888 F:      Documentation/dev-tools/kmemleak.rst
9889 F:      include/linux/kmemleak.h
9890 F:      mm/kmemleak.c
9891 F:      samples/kmemleak/kmemleak-test.c
9892
9893 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9894 M:      Luis Chamberlain <mcgrof@kernel.org>
9895 L:      linux-kernel@vger.kernel.org
9896 S:      Maintained
9897 F:      include/linux/kmod.h
9898 F:      kernel/kmod.c
9899 F:      lib/test_kmod.c
9900 F:      tools/testing/selftests/kmod/
9901
9902 KPROBES
9903 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9904 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9905 M:      "David S. Miller" <davem@davemloft.net>
9906 M:      Masami Hiramatsu <mhiramat@kernel.org>
9907 S:      Maintained
9908 F:      Documentation/trace/kprobes.rst
9909 F:      include/asm-generic/kprobes.h
9910 F:      include/linux/kprobes.h
9911 F:      kernel/kprobes.c
9912
9913 KS0108 LCD CONTROLLER DRIVER
9914 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9915 S:      Maintained
9916 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9917 F:      drivers/auxdisplay/ks0108.c
9918 F:      include/linux/ks0108.h
9919
9920 KTD253 BACKLIGHT DRIVER
9921 M:      Linus Walleij <linus.walleij@linaro.org>
9922 S:      Maintained
9923 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
9924 F:      drivers/video/backlight/ktd253-backlight.c
9925
9926 L3MDEV
9927 M:      David Ahern <dsahern@kernel.org>
9928 L:      netdev@vger.kernel.org
9929 S:      Maintained
9930 F:      include/net/l3mdev.h
9931 F:      net/l3mdev
9932
9933 L7 BPF FRAMEWORK
9934 M:      John Fastabend <john.fastabend@gmail.com>
9935 M:      Daniel Borkmann <daniel@iogearbox.net>
9936 M:      Jakub Sitnicki <jakub@cloudflare.com>
9937 M:      Lorenz Bauer <lmb@cloudflare.com>
9938 L:      netdev@vger.kernel.org
9939 L:      bpf@vger.kernel.org
9940 S:      Maintained
9941 F:      include/linux/skmsg.h
9942 F:      net/core/skmsg.c
9943 F:      net/core/sock_map.c
9944 F:      net/ipv4/tcp_bpf.c
9945 F:      net/ipv4/udp_bpf.c
9946
9947 LANTIQ / INTEL Ethernet drivers
9948 M:      Hauke Mehrtens <hauke@hauke-m.de>
9949 L:      netdev@vger.kernel.org
9950 S:      Maintained
9951 F:      drivers/net/dsa/lantiq_gswip.c
9952 F:      drivers/net/dsa/lantiq_pce.h
9953 F:      drivers/net/ethernet/lantiq_xrx200.c
9954 F:      net/dsa/tag_gswip.c
9955
9956 LANTIQ MIPS ARCHITECTURE
9957 M:      John Crispin <john@phrozen.org>
9958 L:      linux-mips@vger.kernel.org
9959 S:      Maintained
9960 F:      arch/mips/lantiq
9961 F:      drivers/soc/lantiq
9962
9963 LASI 53c700 driver for PARISC
9964 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9965 L:      linux-scsi@vger.kernel.org
9966 S:      Maintained
9967 F:      Documentation/scsi/53c700.rst
9968 F:      drivers/scsi/53c700*
9969
9970 LEAKING_ADDRESSES
9971 M:      Tobin C. Harding <me@tobin.cc>
9972 M:      Tycho Andersen <tycho@tycho.pizza>
9973 L:      linux-hardening@vger.kernel.org
9974 S:      Maintained
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9976 F:      scripts/leaking_addresses.pl
9977
9978 LED SUBSYSTEM
9979 M:      Pavel Machek <pavel@ucw.cz>
9980 R:      Dan Murphy <dmurphy@ti.com>
9981 L:      linux-leds@vger.kernel.org
9982 S:      Maintained
9983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9984 F:      Documentation/devicetree/bindings/leds/
9985 F:      drivers/leds/
9986 F:      include/linux/leds.h
9987
9988 LEGACY EEPROM DRIVER
9989 M:      Jean Delvare <jdelvare@suse.com>
9990 S:      Maintained
9991 F:      Documentation/misc-devices/eeprom.rst
9992 F:      drivers/misc/eeprom/eeprom.c
9993
9994 LEGO MINDSTORMS EV3
9995 R:      David Lechner <david@lechnology.com>
9996 S:      Maintained
9997 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9998 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9999 F:      drivers/power/supply/lego_ev3_battery.c
10000
10001 LEGO USB Tower driver
10002 M:      Juergen Stuber <starblue@users.sourceforge.net>
10003 L:      legousb-devel@lists.sourceforge.net
10004 S:      Maintained
10005 W:      http://legousb.sourceforge.net/
10006 F:      drivers/usb/misc/legousbtower.c
10007
10008 LG LAPTOP EXTRAS
10009 M:      Matan Ziv-Av <matan@svgalib.org>
10010 L:      platform-driver-x86@vger.kernel.org
10011 S:      Maintained
10012 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10013 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10014 F:      drivers/platform/x86/lg-laptop.c
10015
10016 LG2160 MEDIA DRIVER
10017 M:      Michael Krufky <mkrufky@linuxtv.org>
10018 L:      linux-media@vger.kernel.org
10019 S:      Maintained
10020 W:      https://linuxtv.org
10021 W:      http://github.com/mkrufky
10022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10023 T:      git git://linuxtv.org/mkrufky/tuners.git
10024 F:      drivers/media/dvb-frontends/lg2160.*
10025
10026 LGDT3305 MEDIA DRIVER
10027 M:      Michael Krufky <mkrufky@linuxtv.org>
10028 L:      linux-media@vger.kernel.org
10029 S:      Maintained
10030 W:      https://linuxtv.org
10031 W:      http://github.com/mkrufky
10032 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10033 T:      git git://linuxtv.org/mkrufky/tuners.git
10034 F:      drivers/media/dvb-frontends/lgdt3305.*
10035
10036 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10037 M:      Viresh Kumar <vireshk@kernel.org>
10038 L:      linux-ide@vger.kernel.org
10039 S:      Maintained
10040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10041 F:      drivers/ata/pata_arasan_cf.c
10042 F:      include/linux/pata_arasan_cf_data.h
10043
10044 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10045 M:      Linus Walleij <linus.walleij@linaro.org>
10046 L:      linux-ide@vger.kernel.org
10047 S:      Maintained
10048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10049 F:      drivers/ata/pata_ftide010.c
10050 F:      drivers/ata/sata_gemini.c
10051 F:      drivers/ata/sata_gemini.h
10052
10053 LIBATA SATA AHCI PLATFORM devices support
10054 M:      Hans de Goede <hdegoede@redhat.com>
10055 M:      Jens Axboe <axboe@kernel.dk>
10056 L:      linux-ide@vger.kernel.org
10057 S:      Maintained
10058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10059 F:      drivers/ata/ahci_platform.c
10060 F:      drivers/ata/libahci_platform.c
10061 F:      include/linux/ahci_platform.h
10062
10063 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10064 M:      Mikael Pettersson <mikpelinux@gmail.com>
10065 L:      linux-ide@vger.kernel.org
10066 S:      Maintained
10067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10068 F:      drivers/ata/sata_promise.*
10069
10070 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10071 M:      Jens Axboe <axboe@kernel.dk>
10072 L:      linux-ide@vger.kernel.org
10073 S:      Maintained
10074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10075 F:      Documentation/devicetree/bindings/ata/
10076 F:      drivers/ata/
10077 F:      include/linux/ata.h
10078 F:      include/linux/libata.h
10079
10080 LIBLOCKDEP
10081 M:      Sasha Levin <alexander.levin@microsoft.com>
10082 S:      Maintained
10083 F:      tools/lib/lockdep/
10084
10085 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10086 M:      Dan Williams <dan.j.williams@intel.com>
10087 M:      Vishal Verma <vishal.l.verma@intel.com>
10088 M:      Dave Jiang <dave.jiang@intel.com>
10089 L:      linux-nvdimm@lists.01.org
10090 S:      Supported
10091 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10092 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10093 F:      drivers/nvdimm/blk.c
10094 F:      drivers/nvdimm/region_devs.c
10095
10096 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10097 M:      Vishal Verma <vishal.l.verma@intel.com>
10098 M:      Dan Williams <dan.j.williams@intel.com>
10099 M:      Dave Jiang <dave.jiang@intel.com>
10100 L:      linux-nvdimm@lists.01.org
10101 S:      Supported
10102 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10103 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10104 F:      drivers/nvdimm/btt*
10105
10106 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10107 M:      Dan Williams <dan.j.williams@intel.com>
10108 M:      Vishal Verma <vishal.l.verma@intel.com>
10109 M:      Dave Jiang <dave.jiang@intel.com>
10110 L:      linux-nvdimm@lists.01.org
10111 S:      Supported
10112 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10113 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10114 F:      drivers/nvdimm/pmem*
10115
10116 LIBNVDIMM: DEVICETREE BINDINGS
10117 M:      Oliver O'Halloran <oohall@gmail.com>
10118 L:      linux-nvdimm@lists.01.org
10119 S:      Supported
10120 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10121 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10122 F:      drivers/nvdimm/of_pmem.c
10123
10124 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10125 M:      Dan Williams <dan.j.williams@intel.com>
10126 M:      Vishal Verma <vishal.l.verma@intel.com>
10127 M:      Dave Jiang <dave.jiang@intel.com>
10128 M:      Ira Weiny <ira.weiny@intel.com>
10129 L:      linux-nvdimm@lists.01.org
10130 S:      Supported
10131 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10132 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10134 F:      drivers/acpi/nfit/*
10135 F:      drivers/nvdimm/*
10136 F:      include/linux/libnvdimm.h
10137 F:      include/linux/nd.h
10138 F:      include/uapi/linux/ndctl.h
10139 F:      tools/testing/nvdimm/
10140
10141 LICENSES and SPDX stuff
10142 M:      Thomas Gleixner <tglx@linutronix.de>
10143 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10144 L:      linux-spdx@vger.kernel.org
10145 S:      Maintained
10146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10147 F:      COPYING
10148 F:      Documentation/process/license-rules.rst
10149 F:      LICENSES/
10150 F:      scripts/spdxcheck-test.sh
10151 F:      scripts/spdxcheck.py
10152
10153 LIGHTNVM PLATFORM SUPPORT
10154 M:      Matias Bjorling <mb@lightnvm.io>
10155 L:      linux-block@vger.kernel.org
10156 S:      Maintained
10157 W:      http://github/OpenChannelSSD
10158 F:      drivers/lightnvm/
10159 F:      include/linux/lightnvm.h
10160 F:      include/uapi/linux/lightnvm.h
10161
10162 LINEAR RANGES HELPERS
10163 M:      Mark Brown <broonie@kernel.org>
10164 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10165 F:      lib/linear_ranges.c
10166 F:      lib/test_linear_ranges.c
10167 F:      include/linux/linear_range.h
10168
10169 LINUX FOR POWER MACINTOSH
10170 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10171 L:      linuxppc-dev@lists.ozlabs.org
10172 S:      Odd Fixes
10173 F:      arch/powerpc/platforms/powermac/
10174 F:      drivers/macintosh/
10175
10176 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10177 M:      Michael Ellerman <mpe@ellerman.id.au>
10178 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10179 R:      Paul Mackerras <paulus@samba.org>
10180 L:      linuxppc-dev@lists.ozlabs.org
10181 S:      Supported
10182 W:      https://github.com/linuxppc/wiki/wiki
10183 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10185 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10186 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10187 F:      Documentation/devicetree/bindings/powerpc/
10188 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10189 F:      Documentation/powerpc/
10190 F:      arch/powerpc/
10191 F:      drivers/*/*/*pasemi*
10192 F:      drivers/*/*pasemi*
10193 F:      drivers/char/tpm/tpm_ibmvtpm*
10194 F:      drivers/crypto/nx/
10195 F:      drivers/crypto/vmx/
10196 F:      drivers/i2c/busses/i2c-opal.c
10197 F:      drivers/net/ethernet/ibm/ibmveth.*
10198 F:      drivers/net/ethernet/ibm/ibmvnic.*
10199 F:      drivers/pci/hotplug/pnv_php.c
10200 F:      drivers/pci/hotplug/rpa*
10201 F:      drivers/rtc/rtc-opal.c
10202 F:      drivers/scsi/ibmvscsi/
10203 F:      drivers/tty/hvc/hvc_opal.c
10204 F:      drivers/watchdog/wdrtas.c
10205 F:      tools/testing/selftests/powerpc
10206 N:      /pmac
10207 N:      powermac
10208 N:      powernv
10209 N:      [^a-z0-9]ps3
10210 N:      pseries
10211
10212 LINUX FOR POWERPC EMBEDDED MPC5XXX
10213 M:      Anatolij Gustschin <agust@denx.de>
10214 L:      linuxppc-dev@lists.ozlabs.org
10215 S:      Odd Fixes
10216 F:      arch/powerpc/platforms/512x/
10217 F:      arch/powerpc/platforms/52xx/
10218
10219 LINUX FOR POWERPC EMBEDDED PPC4XX
10220 L:      linuxppc-dev@lists.ozlabs.org
10221 S:      Orphan
10222 F:      arch/powerpc/platforms/40x/
10223 F:      arch/powerpc/platforms/44x/
10224
10225 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10226 M:      Scott Wood <oss@buserror.net>
10227 L:      linuxppc-dev@lists.ozlabs.org
10228 S:      Odd fixes
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10230 F:      Documentation/devicetree/bindings/powerpc/fsl/
10231 F:      arch/powerpc/platforms/83xx/
10232 F:      arch/powerpc/platforms/85xx/
10233
10234 LINUX FOR POWERPC EMBEDDED PPC8XX
10235 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10236 L:      linuxppc-dev@lists.ozlabs.org
10237 S:      Maintained
10238 F:      arch/powerpc/platforms/8xx/
10239
10240 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10241 M:      Kees Cook <keescook@chromium.org>
10242 S:      Maintained
10243 F:      drivers/misc/lkdtm/*
10244 F:      tools/testing/selftests/lkdtm/*
10245
10246 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10247 M:      Alan Stern <stern@rowland.harvard.edu>
10248 M:      Andrea Parri <parri.andrea@gmail.com>
10249 M:      Will Deacon <will@kernel.org>
10250 M:      Peter Zijlstra <peterz@infradead.org>
10251 M:      Boqun Feng <boqun.feng@gmail.com>
10252 M:      Nicholas Piggin <npiggin@gmail.com>
10253 M:      David Howells <dhowells@redhat.com>
10254 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10255 M:      Luc Maranget <luc.maranget@inria.fr>
10256 M:      "Paul E. McKenney" <paulmck@kernel.org>
10257 R:      Akira Yokosawa <akiyks@gmail.com>
10258 R:      Daniel Lustig <dlustig@nvidia.com>
10259 R:      Joel Fernandes <joel@joelfernandes.org>
10260 L:      linux-kernel@vger.kernel.org
10261 L:      linux-arch@vger.kernel.org
10262 S:      Supported
10263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10264 F:      Documentation/atomic_bitops.txt
10265 F:      Documentation/atomic_t.txt
10266 F:      Documentation/core-api/refcount-vs-atomic.rst
10267 F:      Documentation/litmus-tests/
10268 F:      Documentation/memory-barriers.txt
10269 F:      tools/memory-model/
10270
10271 LIS3LV02D ACCELEROMETER DRIVER
10272 M:      Eric Piel <eric.piel@tremplin-utc.net>
10273 S:      Maintained
10274 F:      Documentation/misc-devices/lis3lv02d.rst
10275 F:      drivers/misc/lis3lv02d/
10276 F:      drivers/platform/x86/hp_accel.c
10277
10278 LIST KUNIT TEST
10279 M:      David Gow <davidgow@google.com>
10280 L:      linux-kselftest@vger.kernel.org
10281 L:      kunit-dev@googlegroups.com
10282 S:      Maintained
10283 F:      lib/list-test.c
10284
10285 LITEX PLATFORM
10286 M:      Karol Gugala <kgugala@antmicro.com>
10287 M:      Mateusz Holenko <mholenko@antmicro.com>
10288 S:      Maintained
10289 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10290 F:      arch/openrisc/boot/dts/or1klitex.dts
10291 F:      drivers/soc/litex/litex_soc_ctrl.c
10292 F:      drivers/tty/serial/liteuart.c
10293 F:      include/linux/litex.h
10294
10295 LIVE PATCHING
10296 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10297 M:      Jiri Kosina <jikos@kernel.org>
10298 M:      Miroslav Benes <mbenes@suse.cz>
10299 M:      Petr Mladek <pmladek@suse.com>
10300 R:      Joe Lawrence <joe.lawrence@redhat.com>
10301 L:      live-patching@vger.kernel.org
10302 S:      Maintained
10303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10304 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10305 F:      Documentation/livepatch/
10306 F:      arch/powerpc/include/asm/livepatch.h
10307 F:      arch/s390/include/asm/livepatch.h
10308 F:      arch/x86/include/asm/livepatch.h
10309 F:      include/linux/livepatch.h
10310 F:      kernel/livepatch/
10311 F:      lib/livepatch/
10312 F:      samples/livepatch/
10313 F:      tools/testing/selftests/livepatch/
10314
10315 LLC (802.2)
10316 L:      netdev@vger.kernel.org
10317 S:      Odd fixes
10318 F:      include/linux/llc.h
10319 F:      include/net/llc*
10320 F:      include/uapi/linux/llc.h
10321 F:      net/llc/
10322
10323 LM73 HARDWARE MONITOR DRIVER
10324 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10325 L:      linux-hwmon@vger.kernel.org
10326 S:      Maintained
10327 F:      drivers/hwmon/lm73.c
10328
10329 LM78 HARDWARE MONITOR DRIVER
10330 M:      Jean Delvare <jdelvare@suse.com>
10331 L:      linux-hwmon@vger.kernel.org
10332 S:      Maintained
10333 F:      Documentation/hwmon/lm78.rst
10334 F:      drivers/hwmon/lm78.c
10335
10336 LM83 HARDWARE MONITOR DRIVER
10337 M:      Jean Delvare <jdelvare@suse.com>
10338 L:      linux-hwmon@vger.kernel.org
10339 S:      Maintained
10340 F:      Documentation/hwmon/lm83.rst
10341 F:      drivers/hwmon/lm83.c
10342
10343 LM90 HARDWARE MONITOR DRIVER
10344 M:      Jean Delvare <jdelvare@suse.com>
10345 L:      linux-hwmon@vger.kernel.org
10346 S:      Maintained
10347 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10348 F:      Documentation/hwmon/lm90.rst
10349 F:      drivers/hwmon/lm90.c
10350 F:      include/dt-bindings/thermal/lm90.h
10351
10352 LM95234 HARDWARE MONITOR DRIVER
10353 M:      Guenter Roeck <linux@roeck-us.net>
10354 L:      linux-hwmon@vger.kernel.org
10355 S:      Maintained
10356 F:      Documentation/hwmon/lm95234.rst
10357 F:      drivers/hwmon/lm95234.c
10358
10359 LME2510 MEDIA DRIVER
10360 M:      Malcolm Priestley <tvboxspy@gmail.com>
10361 L:      linux-media@vger.kernel.org
10362 S:      Maintained
10363 W:      https://linuxtv.org
10364 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10365 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10366
10367 LOADPIN SECURITY MODULE
10368 M:      Kees Cook <keescook@chromium.org>
10369 S:      Supported
10370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10371 F:      Documentation/admin-guide/LSM/LoadPin.rst
10372 F:      security/loadpin/
10373
10374 LOCKING PRIMITIVES
10375 M:      Peter Zijlstra <peterz@infradead.org>
10376 M:      Ingo Molnar <mingo@redhat.com>
10377 M:      Will Deacon <will@kernel.org>
10378 L:      linux-kernel@vger.kernel.org
10379 S:      Maintained
10380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10381 F:      Documentation/locking/
10382 F:      arch/*/include/asm/spinlock*.h
10383 F:      include/linux/lockdep.h
10384 F:      include/linux/mutex*.h
10385 F:      include/linux/rwlock*.h
10386 F:      include/linux/rwsem*.h
10387 F:      include/linux/seqlock.h
10388 F:      include/linux/spinlock*.h
10389 F:      kernel/locking/
10390 F:      lib/locking*.[ch]
10391 X:      kernel/locking/locktorture.c
10392
10393 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10394 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10395 L:      linux-ntfs-dev@lists.sourceforge.net
10396 S:      Maintained
10397 W:      http://www.linux-ntfs.org/content/view/19/37/
10398 F:      Documentation/admin-guide/ldm.rst
10399 F:      block/partitions/ldm.*
10400
10401 LOGITECH HID GAMING KEYBOARDS
10402 M:      Hans de Goede <hdegoede@redhat.com>
10403 L:      linux-input@vger.kernel.org
10404 S:      Maintained
10405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10406 F:      drivers/hid/hid-lg-g15.c
10407
10408 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10409 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10410 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10411 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10412 L:      MPT-FusionLinux.pdl@broadcom.com
10413 L:      linux-scsi@vger.kernel.org
10414 S:      Supported
10415 W:      http://www.avagotech.com/support/
10416 F:      drivers/message/fusion/
10417 F:      drivers/scsi/mpt3sas/
10418
10419 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10420 M:      Matthew Wilcox <willy@infradead.org>
10421 L:      linux-scsi@vger.kernel.org
10422 S:      Maintained
10423 F:      drivers/scsi/sym53c8xx_2/
10424
10425 LTC1660 DAC DRIVER
10426 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10427 L:      linux-iio@vger.kernel.org
10428 S:      Maintained
10429 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10430 F:      drivers/iio/dac/ltc1660.c
10431
10432 LTC2947 HARDWARE MONITOR DRIVER
10433 M:      Nuno Sá <nuno.sa@analog.com>
10434 L:      linux-hwmon@vger.kernel.org
10435 S:      Supported
10436 W:      http://ez.analog.com/community/linux-device-drivers
10437 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10438 F:      drivers/hwmon/ltc2947-core.c
10439 F:      drivers/hwmon/ltc2947-i2c.c
10440 F:      drivers/hwmon/ltc2947-spi.c
10441 F:      drivers/hwmon/ltc2947.h
10442
10443 LTC2983 IIO TEMPERATURE DRIVER
10444 M:      Nuno Sá <nuno.sa@analog.com>
10445 L:      linux-iio@vger.kernel.org
10446 S:      Supported
10447 W:      http://ez.analog.com/community/linux-device-drivers
10448 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10449 F:      drivers/iio/temperature/ltc2983.c
10450
10451 LTC4261 HARDWARE MONITOR DRIVER
10452 M:      Guenter Roeck <linux@roeck-us.net>
10453 L:      linux-hwmon@vger.kernel.org
10454 S:      Maintained
10455 F:      Documentation/hwmon/ltc4261.rst
10456 F:      drivers/hwmon/ltc4261.c
10457
10458 LTC4306 I2C MULTIPLEXER DRIVER
10459 M:      Michael Hennerich <michael.hennerich@analog.com>
10460 L:      linux-i2c@vger.kernel.org
10461 S:      Supported
10462 W:      http://ez.analog.com/community/linux-device-drivers
10463 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10464 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10465
10466 LTP (Linux Test Project)
10467 M:      Mike Frysinger <vapier@gentoo.org>
10468 M:      Cyril Hrubis <chrubis@suse.cz>
10469 M:      Wanlong Gao <wanlong.gao@gmail.com>
10470 M:      Jan Stancek <jstancek@redhat.com>
10471 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10472 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10473 L:      ltp@lists.linux.it (subscribers-only)
10474 S:      Maintained
10475 W:      http://linux-test-project.github.io/
10476 T:      git git://github.com/linux-test-project/ltp.git
10477
10478 LYNX PCS MODULE
10479 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
10480 L:      netdev@vger.kernel.org
10481 S:      Supported
10482 F:      drivers/net/pcs/pcs-lynx.c
10483 F:      include/linux/pcs-lynx.h
10484
10485 M68K ARCHITECTURE
10486 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10487 L:      linux-m68k@lists.linux-m68k.org
10488 S:      Maintained
10489 W:      http://www.linux-m68k.org/
10490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10491 F:      arch/m68k/
10492 F:      drivers/zorro/
10493
10494 M68K ON APPLE MACINTOSH
10495 M:      Joshua Thompson <funaho@jurai.org>
10496 L:      linux-m68k@lists.linux-m68k.org
10497 S:      Maintained
10498 W:      http://www.mac.linux-m68k.org/
10499 F:      arch/m68k/mac/
10500 F:      drivers/macintosh/adb-iop.c
10501 F:      drivers/macintosh/via-macii.c
10502
10503 M68K ON HP9000/300
10504 M:      Philip Blundell <philb@gnu.org>
10505 S:      Maintained
10506 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10507 F:      arch/m68k/hp300/
10508
10509 M88DS3103 MEDIA DRIVER
10510 M:      Antti Palosaari <crope@iki.fi>
10511 L:      linux-media@vger.kernel.org
10512 S:      Maintained
10513 W:      https://linuxtv.org
10514 W:      http://palosaari.fi/linux/
10515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10516 T:      git git://linuxtv.org/anttip/media_tree.git
10517 F:      drivers/media/dvb-frontends/m88ds3103*
10518
10519 M88RS2000 MEDIA DRIVER
10520 M:      Malcolm Priestley <tvboxspy@gmail.com>
10521 L:      linux-media@vger.kernel.org
10522 S:      Maintained
10523 W:      https://linuxtv.org
10524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10525 F:      drivers/media/dvb-frontends/m88rs2000*
10526
10527 MA901 MASTERKIT USB FM RADIO DRIVER
10528 M:      Alexey Klimov <klimov.linux@gmail.com>
10529 L:      linux-media@vger.kernel.org
10530 S:      Maintained
10531 T:      git git://linuxtv.org/media_tree.git
10532 F:      drivers/media/radio/radio-ma901.c
10533
10534 MAC80211
10535 M:      Johannes Berg <johannes@sipsolutions.net>
10536 L:      linux-wireless@vger.kernel.org
10537 S:      Maintained
10538 W:      https://wireless.wiki.kernel.org/
10539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10541 F:      Documentation/networking/mac80211-injection.rst
10542 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10543 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10544 F:      include/net/mac80211.h
10545 F:      net/mac80211/
10546
10547 MAILBOX API
10548 M:      Jassi Brar <jassisinghbrar@gmail.com>
10549 L:      linux-kernel@vger.kernel.org
10550 S:      Maintained
10551 F:      drivers/mailbox/
10552 F:      include/linux/mailbox_client.h
10553 F:      include/linux/mailbox_controller.h
10554
10555 MAILBOX ARM MHUv2
10556 M:      Viresh Kumar <viresh.kumar@linaro.org>
10557 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
10558 L:      linux-kernel@vger.kernel.org
10559 S:      Maintained
10560 F:      drivers/mailbox/arm_mhuv2.c
10561 F:      include/linux/mailbox/arm_mhuv2_message.h
10562 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
10563
10564 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10565 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10566 L:      linux-man@vger.kernel.org
10567 S:      Maintained
10568 W:      http://www.kernel.org/doc/man-pages
10569
10570 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10571 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10572 L:      linux-mips@vger.kernel.org
10573 S:      Maintained
10574 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10575
10576 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10577 M:      Andrew Lunn <andrew@lunn.ch>
10578 M:      Vivien Didelot <vivien.didelot@gmail.com>
10579 L:      netdev@vger.kernel.org
10580 S:      Maintained
10581 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10582 F:      Documentation/networking/devlink/mv88e6xxx.rst
10583 F:      drivers/net/dsa/mv88e6xxx/
10584 F:      include/linux/platform_data/mv88e6xxx.h
10585
10586 MARVELL ARMADA 3700 PHY DRIVERS
10587 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10588 S:      Maintained
10589 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10590 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10591 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10592 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10593
10594 MARVELL ARMADA DRM SUPPORT
10595 M:      Russell King <linux@armlinux.org.uk>
10596 S:      Maintained
10597 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10598 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10599 F:      Documentation/devicetree/bindings/display/armada/
10600 F:      drivers/gpu/drm/armada/
10601 F:      include/uapi/drm/armada_drm.h
10602
10603 MARVELL CRYPTO DRIVER
10604 M:      Boris Brezillon <bbrezillon@kernel.org>
10605 M:      Arnaud Ebalard <arno@natisbad.org>
10606 M:      Srujana Challa <schalla@marvell.com>
10607 L:      linux-crypto@vger.kernel.org
10608 S:      Maintained
10609 F:      drivers/crypto/marvell/
10610 F:      include/linux/soc/marvell/octeontx2/
10611
10612 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10613 M:      Mirko Lindner <mlindner@marvell.com>
10614 M:      Stephen Hemminger <stephen@networkplumber.org>
10615 L:      netdev@vger.kernel.org
10616 S:      Maintained
10617 F:      drivers/net/ethernet/marvell/sk*
10618
10619 MARVELL LIBERTAS WIRELESS DRIVER
10620 L:      libertas-dev@lists.infradead.org
10621 S:      Orphan
10622 F:      drivers/net/wireless/marvell/libertas/
10623
10624 MARVELL MACCHIATOBIN SUPPORT
10625 M:      Russell King <linux@armlinux.org.uk>
10626 L:      linux-arm-kernel@lists.infradead.org
10627 S:      Maintained
10628 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10629
10630 MARVELL MV643XX ETHERNET DRIVER
10631 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10632 L:      netdev@vger.kernel.org
10633 S:      Maintained
10634 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10635 F:      include/linux/mv643xx.h
10636
10637 MARVELL MV88X3310 PHY DRIVER
10638 M:      Russell King <linux@armlinux.org.uk>
10639 L:      netdev@vger.kernel.org
10640 S:      Maintained
10641 F:      drivers/net/phy/marvell10g.c
10642
10643 MARVELL MVEBU THERMAL DRIVER
10644 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10645 S:      Maintained
10646 F:      drivers/thermal/armada_thermal.c
10647
10648 MARVELL MVNETA ETHERNET DRIVER
10649 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10650 L:      netdev@vger.kernel.org
10651 S:      Maintained
10652 F:      drivers/net/ethernet/marvell/mvneta.*
10653
10654 MARVELL MVPP2 ETHERNET DRIVER
10655 M:      Marcin Wojtas <mw@semihalf.com>
10656 M:      Russell King <linux@armlinux.org.uk>
10657 L:      netdev@vger.kernel.org
10658 S:      Maintained
10659 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
10660 F:      drivers/net/ethernet/marvell/mvpp2/
10661
10662 MARVELL MWIFIEX WIRELESS DRIVER
10663 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10664 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10665 M:      Xinming Hu <huxinming820@gmail.com>
10666 L:      linux-wireless@vger.kernel.org
10667 S:      Maintained
10668 F:      drivers/net/wireless/marvell/mwifiex/
10669
10670 MARVELL MWL8K WIRELESS DRIVER
10671 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10672 L:      linux-wireless@vger.kernel.org
10673 S:      Odd Fixes
10674 F:      drivers/net/wireless/marvell/mwl8k.c
10675
10676 MARVELL NAND CONTROLLER DRIVER
10677 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10678 L:      linux-mtd@lists.infradead.org
10679 S:      Maintained
10680 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10681 F:      drivers/mtd/nand/raw/marvell_nand.c
10682
10683 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10684 M:      Sunil Goutham <sgoutham@marvell.com>
10685 M:      Geetha sowjanya <gakula@marvell.com>
10686 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10687 M:      hariprasad <hkelam@marvell.com>
10688 L:      netdev@vger.kernel.org
10689 S:      Supported
10690 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10691 F:      include/linux/soc/marvell/octeontx2/
10692
10693 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10694 M:      Sunil Goutham <sgoutham@marvell.com>
10695 M:      Linu Cherian <lcherian@marvell.com>
10696 M:      Geetha sowjanya <gakula@marvell.com>
10697 M:      Jerin Jacob <jerinj@marvell.com>
10698 L:      netdev@vger.kernel.org
10699 S:      Supported
10700 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
10701 F:      drivers/net/ethernet/marvell/octeontx2/af/
10702
10703 MARVELL PRESTERA ETHERNET SWITCH DRIVER
10704 M:      Vadym Kochan <vkochan@marvell.com>
10705 M:      Taras Chornyi <tchornyi@marvell.com>
10706 S:      Supported
10707 W:      https://github.com/Marvell-switching/switchdev-prestera
10708 F:      drivers/net/ethernet/marvell/prestera/
10709
10710 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10711 M:      Nicolas Pitre <nico@fluxnic.net>
10712 S:      Odd Fixes
10713 F:      drivers/mmc/host/mvsdio.*
10714
10715 MARVELL USB MDIO CONTROLLER DRIVER
10716 M:      Tobias Waldekranz <tobias@waldekranz.com>
10717 L:      netdev@vger.kernel.org
10718 S:      Maintained
10719 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10720 F:      drivers/net/mdio/mdio-mvusb.c
10721
10722 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10723 M:      Hu Ziji <huziji@marvell.com>
10724 L:      linux-mmc@vger.kernel.org
10725 S:      Supported
10726 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10727 F:      drivers/mmc/host/sdhci-xenon*
10728
10729 MATROX FRAMEBUFFER DRIVER
10730 L:      linux-fbdev@vger.kernel.org
10731 S:      Orphan
10732 F:      drivers/video/fbdev/matrox/matroxfb_*
10733 F:      include/uapi/linux/matroxfb.h
10734
10735 MAX16065 HARDWARE MONITOR DRIVER
10736 M:      Guenter Roeck <linux@roeck-us.net>
10737 L:      linux-hwmon@vger.kernel.org
10738 S:      Maintained
10739 F:      Documentation/hwmon/max16065.rst
10740 F:      drivers/hwmon/max16065.c
10741
10742 MAX2175 SDR TUNER DRIVER
10743 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10744 L:      linux-media@vger.kernel.org
10745 S:      Maintained
10746 T:      git git://linuxtv.org/media_tree.git
10747 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10748 F:      Documentation/userspace-api/media/drivers/max2175.rst
10749 F:      drivers/media/i2c/max2175*
10750 F:      include/uapi/linux/max2175.h
10751
10752 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10753 L:      linux-hwmon@vger.kernel.org
10754 S:      Orphan
10755 F:      Documentation/hwmon/max6650.rst
10756 F:      drivers/hwmon/max6650.c
10757
10758 MAX6697 HARDWARE MONITOR DRIVER
10759 M:      Guenter Roeck <linux@roeck-us.net>
10760 L:      linux-hwmon@vger.kernel.org
10761 S:      Maintained
10762 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10763 F:      Documentation/hwmon/max6697.rst
10764 F:      drivers/hwmon/max6697.c
10765 F:      include/linux/platform_data/max6697.h
10766
10767 MAX9286 QUAD GMSL DESERIALIZER DRIVER
10768 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
10769 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10770 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
10771 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
10772 L:      linux-media@vger.kernel.org
10773 S:      Maintained
10774 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
10775 F:      drivers/media/i2c/max9286.c
10776
10777 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10778 M:      Peter Rosin <peda@axentia.se>
10779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10780 S:      Maintained
10781 F:      Documentation/devicetree/bindings/sound/max9860.txt
10782 F:      sound/soc/codecs/max9860.*
10783
10784 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10785 M:      Andreas Klinger <ak@it-klinger.de>
10786 L:      linux-iio@vger.kernel.org
10787 S:      Maintained
10788 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10789 F:      drivers/iio/proximity/mb1232.c
10790
10791 MAXIM MAX77650 PMIC MFD DRIVER
10792 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10793 L:      linux-kernel@vger.kernel.org
10794 S:      Maintained
10795 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10796 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10797 F:      drivers/gpio/gpio-max77650.c
10798 F:      drivers/input/misc/max77650-onkey.c
10799 F:      drivers/leds/leds-max77650.c
10800 F:      drivers/mfd/max77650.c
10801 F:      drivers/power/supply/max77650-charger.c
10802 F:      drivers/regulator/max77650-regulator.c
10803 F:      include/linux/mfd/max77650.h
10804
10805 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10806 M:      Javier Martinez Canillas <javier@dowhile0.org>
10807 L:      linux-kernel@vger.kernel.org
10808 S:      Supported
10809 F:      Documentation/devicetree/bindings/*/*max77802.txt
10810 F:      drivers/regulator/max77802-regulator.c
10811 F:      include/dt-bindings/*/*max77802.h
10812
10813 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10814 M:      Krzysztof Kozlowski <krzk@kernel.org>
10815 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10816 L:      linux-pm@vger.kernel.org
10817 S:      Supported
10818 F:      drivers/power/supply/max14577_charger.c
10819 F:      drivers/power/supply/max77693_charger.c
10820
10821 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10822 M:      Chanwoo Choi <cw00.choi@samsung.com>
10823 M:      Krzysztof Kozlowski <krzk@kernel.org>
10824 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10825 L:      linux-kernel@vger.kernel.org
10826 S:      Supported
10827 F:      Documentation/devicetree/bindings/*/max77686.txt
10828 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10829 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10830 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10831 F:      drivers/*/max14577*.c
10832 F:      drivers/*/max77686*.c
10833 F:      drivers/*/max77693*.c
10834 F:      drivers/clk/clk-max77686.c
10835 F:      drivers/extcon/extcon-max14577.c
10836 F:      drivers/extcon/extcon-max77693.c
10837 F:      drivers/rtc/rtc-max77686.c
10838 F:      include/linux/mfd/max14577*.h
10839 F:      include/linux/mfd/max77686*.h
10840 F:      include/linux/mfd/max77693*.h
10841
10842 MAXIRADIO FM RADIO RECEIVER DRIVER
10843 M:      Hans Verkuil <hverkuil@xs4all.nl>
10844 L:      linux-media@vger.kernel.org
10845 S:      Maintained
10846 W:      https://linuxtv.org
10847 T:      git git://linuxtv.org/media_tree.git
10848 F:      drivers/media/radio/radio-maxiradio*
10849
10850 MCAN MMIO DEVICE DRIVER
10851 M:      Dan Murphy <dmurphy@ti.com>
10852 M:      Pankaj Sharma <pankj.sharma@samsung.com>
10853 L:      linux-can@vger.kernel.org
10854 S:      Maintained
10855 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10856 F:      drivers/net/can/m_can/m_can.c
10857 F:      drivers/net/can/m_can/m_can.h
10858 F:      drivers/net/can/m_can/m_can_platform.c
10859
10860 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10861 M:      Rishi Gupta <gupt21@gmail.com>
10862 L:      linux-i2c@vger.kernel.org
10863 L:      linux-input@vger.kernel.org
10864 S:      Maintained
10865 F:      drivers/hid/hid-mcp2221.c
10866
10867 MCP251XFD SPI-CAN NETWORK DRIVER
10868 M:      Marc Kleine-Budde <mkl@pengutronix.de>
10869 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10870 R:      Thomas Kopp <thomas.kopp@microchip.com>
10871 L:      linux-can@vger.kernel.org
10872 S:      Maintained
10873 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
10874 F:      drivers/net/can/spi/mcp251xfd/
10875
10876 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10877 M:      Peter Rosin <peda@axentia.se>
10878 L:      linux-iio@vger.kernel.org
10879 S:      Maintained
10880 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10881 F:      drivers/iio/potentiometer/mcp4018.c
10882 F:      drivers/iio/potentiometer/mcp4531.c
10883
10884 MCR20A IEEE-802.15.4 RADIO DRIVER
10885 M:      Xue Liu <liuxuenetmail@gmail.com>
10886 L:      linux-wpan@vger.kernel.org
10887 S:      Maintained
10888 W:      https://github.com/xueliu/mcr20a-linux
10889 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10890 F:      drivers/net/ieee802154/mcr20a.c
10891 F:      drivers/net/ieee802154/mcr20a.h
10892
10893 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10894 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10895 L:      linux-iio@vger.kernel.org
10896 S:      Maintained
10897 F:      drivers/iio/dac/cio-dac.c
10898
10899 MEDIA CONTROLLER FRAMEWORK
10900 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10901 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10902 L:      linux-media@vger.kernel.org
10903 S:      Supported
10904 W:      https://www.linuxtv.org
10905 T:      git git://linuxtv.org/media_tree.git
10906 F:      drivers/media/mc/
10907 F:      include/media/media-*.h
10908 F:      include/uapi/linux/media.h
10909
10910 MEDIA DRIVER FOR FREESCALE IMX PXP
10911 M:      Philipp Zabel <p.zabel@pengutronix.de>
10912 L:      linux-media@vger.kernel.org
10913 S:      Maintained
10914 T:      git git://linuxtv.org/media_tree.git
10915 F:      drivers/media/platform/imx-pxp.[ch]
10916
10917 MEDIA DRIVERS FOR ASCOT2E
10918 M:      Sergey Kozlov <serjk@netup.ru>
10919 M:      Abylay Ospan <aospan@netup.ru>
10920 L:      linux-media@vger.kernel.org
10921 S:      Supported
10922 W:      https://linuxtv.org
10923 W:      http://netup.tv/
10924 T:      git git://linuxtv.org/media_tree.git
10925 F:      drivers/media/dvb-frontends/ascot2e*
10926
10927 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10928 M:      Jasmin Jessich <jasmin@anw.at>
10929 L:      linux-media@vger.kernel.org
10930 S:      Maintained
10931 W:      https://linuxtv.org
10932 T:      git git://linuxtv.org/media_tree.git
10933 F:      drivers/media/dvb-frontends/cxd2099*
10934
10935 MEDIA DRIVERS FOR CXD2841ER
10936 M:      Sergey Kozlov <serjk@netup.ru>
10937 M:      Abylay Ospan <aospan@netup.ru>
10938 L:      linux-media@vger.kernel.org
10939 S:      Supported
10940 W:      https://linuxtv.org
10941 W:      http://netup.tv/
10942 T:      git git://linuxtv.org/media_tree.git
10943 F:      drivers/media/dvb-frontends/cxd2841er*
10944
10945 MEDIA DRIVERS FOR CXD2880
10946 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10947 L:      linux-media@vger.kernel.org
10948 S:      Supported
10949 W:      http://linuxtv.org/
10950 T:      git git://linuxtv.org/media_tree.git
10951 F:      drivers/media/dvb-frontends/cxd2880/*
10952 F:      drivers/media/spi/cxd2880*
10953
10954 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10955 L:      linux-media@vger.kernel.org
10956 S:      Orphan
10957 W:      https://linuxtv.org
10958 T:      git git://linuxtv.org/media_tree.git
10959 F:      drivers/media/pci/ddbridge/*
10960
10961 MEDIA DRIVERS FOR FREESCALE IMX
10962 M:      Steve Longerbeam <slongerbeam@gmail.com>
10963 M:      Philipp Zabel <p.zabel@pengutronix.de>
10964 L:      linux-media@vger.kernel.org
10965 S:      Maintained
10966 T:      git git://linuxtv.org/media_tree.git
10967 F:      Documentation/admin-guide/media/imx.rst
10968 F:      Documentation/devicetree/bindings/media/imx.txt
10969 F:      drivers/staging/media/imx/
10970 F:      include/linux/imx-media.h
10971 F:      include/media/imx.h
10972
10973 MEDIA DRIVERS FOR FREESCALE IMX7
10974 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10975 L:      linux-media@vger.kernel.org
10976 S:      Maintained
10977 T:      git git://linuxtv.org/media_tree.git
10978 F:      Documentation/admin-guide/media/imx7.rst
10979 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
10980 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
10981 F:      drivers/staging/media/imx/imx7-media-csi.c
10982 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10983
10984 MEDIA DRIVERS FOR HELENE
10985 M:      Abylay Ospan <aospan@netup.ru>
10986 L:      linux-media@vger.kernel.org
10987 S:      Supported
10988 W:      https://linuxtv.org
10989 W:      http://netup.tv/
10990 T:      git git://linuxtv.org/media_tree.git
10991 F:      drivers/media/dvb-frontends/helene*
10992
10993 MEDIA DRIVERS FOR HORUS3A
10994 M:      Sergey Kozlov <serjk@netup.ru>
10995 M:      Abylay Ospan <aospan@netup.ru>
10996 L:      linux-media@vger.kernel.org
10997 S:      Supported
10998 W:      https://linuxtv.org
10999 W:      http://netup.tv/
11000 T:      git git://linuxtv.org/media_tree.git
11001 F:      drivers/media/dvb-frontends/horus3a*
11002
11003 MEDIA DRIVERS FOR LNBH25
11004 M:      Sergey Kozlov <serjk@netup.ru>
11005 M:      Abylay Ospan <aospan@netup.ru>
11006 L:      linux-media@vger.kernel.org
11007 S:      Supported
11008 W:      https://linuxtv.org
11009 W:      http://netup.tv/
11010 T:      git git://linuxtv.org/media_tree.git
11011 F:      drivers/media/dvb-frontends/lnbh25*
11012
11013 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11014 L:      linux-media@vger.kernel.org
11015 S:      Orphan
11016 W:      https://linuxtv.org
11017 T:      git git://linuxtv.org/media_tree.git
11018 F:      drivers/media/dvb-frontends/mxl5xx*
11019
11020 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11021 M:      Sergey Kozlov <serjk@netup.ru>
11022 M:      Abylay Ospan <aospan@netup.ru>
11023 L:      linux-media@vger.kernel.org
11024 S:      Supported
11025 W:      https://linuxtv.org
11026 W:      http://netup.tv/
11027 T:      git git://linuxtv.org/media_tree.git
11028 F:      drivers/media/pci/netup_unidvb/*
11029
11030 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11031 M:      Dmitry Osipenko <digetx@gmail.com>
11032 L:      linux-media@vger.kernel.org
11033 L:      linux-tegra@vger.kernel.org
11034 S:      Maintained
11035 T:      git git://linuxtv.org/media_tree.git
11036 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11037 F:      drivers/staging/media/tegra-vde/
11038
11039 MEDIA DRIVERS FOR RENESAS - CEU
11040 M:      Jacopo Mondi <jacopo@jmondi.org>
11041 L:      linux-media@vger.kernel.org
11042 L:      linux-renesas-soc@vger.kernel.org
11043 S:      Supported
11044 T:      git git://linuxtv.org/media_tree.git
11045 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11046 F:      drivers/media/platform/renesas-ceu.c
11047 F:      include/media/drv-intf/renesas-ceu.h
11048
11049 MEDIA DRIVERS FOR RENESAS - DRIF
11050 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11051 L:      linux-media@vger.kernel.org
11052 L:      linux-renesas-soc@vger.kernel.org
11053 S:      Supported
11054 T:      git git://linuxtv.org/media_tree.git
11055 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
11056 F:      drivers/media/platform/rcar_drif.c
11057
11058 MEDIA DRIVERS FOR RENESAS - FCP
11059 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11060 L:      linux-media@vger.kernel.org
11061 L:      linux-renesas-soc@vger.kernel.org
11062 S:      Supported
11063 T:      git git://linuxtv.org/media_tree.git
11064 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11065 F:      drivers/media/platform/rcar-fcp.c
11066 F:      include/media/rcar-fcp.h
11067
11068 MEDIA DRIVERS FOR RENESAS - FDP1
11069 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11070 L:      linux-media@vger.kernel.org
11071 L:      linux-renesas-soc@vger.kernel.org
11072 S:      Supported
11073 T:      git git://linuxtv.org/media_tree.git
11074 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11075 F:      drivers/media/platform/rcar_fdp1.c
11076
11077 MEDIA DRIVERS FOR RENESAS - VIN
11078 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11079 L:      linux-media@vger.kernel.org
11080 L:      linux-renesas-soc@vger.kernel.org
11081 S:      Supported
11082 T:      git git://linuxtv.org/media_tree.git
11083 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11084 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11085 F:      drivers/media/platform/rcar-vin/
11086
11087 MEDIA DRIVERS FOR RENESAS - VSP1
11088 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11089 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11090 L:      linux-media@vger.kernel.org
11091 L:      linux-renesas-soc@vger.kernel.org
11092 S:      Supported
11093 T:      git git://linuxtv.org/media_tree.git
11094 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11095 F:      drivers/media/platform/vsp1/
11096
11097 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11098 L:      linux-media@vger.kernel.org
11099 S:      Orphan
11100 W:      https://linuxtv.org
11101 T:      git git://linuxtv.org/media_tree.git
11102 F:      drivers/media/dvb-frontends/stv0910*
11103
11104 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11105 L:      linux-media@vger.kernel.org
11106 S:      Orphan
11107 W:      https://linuxtv.org
11108 T:      git git://linuxtv.org/media_tree.git
11109 F:      drivers/media/dvb-frontends/stv6111*
11110
11111 MEDIA DRIVERS FOR STM32 - DCMI
11112 M:      Hugues Fruchet <hugues.fruchet@st.com>
11113 L:      linux-media@vger.kernel.org
11114 S:      Supported
11115 T:      git git://linuxtv.org/media_tree.git
11116 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11117 F:      drivers/media/platform/stm32/stm32-dcmi.c
11118
11119 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11120 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11121 L:      linux-media@vger.kernel.org
11122 S:      Maintained
11123 W:      https://linuxtv.org
11124 Q:      http://patchwork.kernel.org/project/linux-media/list/
11125 T:      git git://linuxtv.org/media_tree.git
11126 F:      Documentation/admin-guide/media/
11127 F:      Documentation/devicetree/bindings/media/
11128 F:      Documentation/driver-api/media/
11129 F:      Documentation/userspace-api/media/
11130 F:      drivers/media/
11131 F:      drivers/staging/media/
11132 F:      include/linux/platform_data/media/
11133 F:      include/media/
11134 F:      include/uapi/linux/dvb/
11135 F:      include/uapi/linux/ivtv*
11136 F:      include/uapi/linux/media.h
11137 F:      include/uapi/linux/meye.h
11138 F:      include/uapi/linux/uvcvideo.h
11139 F:      include/uapi/linux/v4l2-*
11140 F:      include/uapi/linux/videodev2.h
11141
11142 MEDIATEK BLUETOOTH DRIVER
11143 M:      Sean Wang <sean.wang@mediatek.com>
11144 L:      linux-bluetooth@vger.kernel.org
11145 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11146 S:      Maintained
11147 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11148 F:      drivers/bluetooth/btmtkuart.c
11149
11150 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11151 M:      Sean Wang <sean.wang@mediatek.com>
11152 L:      linux-pm@vger.kernel.org
11153 S:      Maintained
11154 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11155 F:      drivers/power/reset/mt6323-poweroff.c
11156
11157 MEDIATEK CIR DRIVER
11158 M:      Sean Wang <sean.wang@mediatek.com>
11159 S:      Maintained
11160 F:      drivers/media/rc/mtk-cir.c
11161
11162 MEDIATEK DMA DRIVER
11163 M:      Sean Wang <sean.wang@mediatek.com>
11164 L:      dmaengine@vger.kernel.org
11165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11166 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11167 S:      Maintained
11168 F:      Documentation/devicetree/bindings/dma/mtk-*
11169 F:      drivers/dma/mediatek/
11170
11171 MEDIATEK ETHERNET DRIVER
11172 M:      Felix Fietkau <nbd@nbd.name>
11173 M:      John Crispin <john@phrozen.org>
11174 M:      Sean Wang <sean.wang@mediatek.com>
11175 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11176 L:      netdev@vger.kernel.org
11177 S:      Maintained
11178 F:      drivers/net/ethernet/mediatek/
11179
11180 MEDIATEK I2C CONTROLLER DRIVER
11181 M:      Qii Wang <qii.wang@mediatek.com>
11182 L:      linux-i2c@vger.kernel.org
11183 S:      Maintained
11184 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11185 F:      drivers/i2c/busses/i2c-mt65xx.c
11186
11187 MEDIATEK JPEG DRIVER
11188 M:      Rick Chang <rick.chang@mediatek.com>
11189 M:      Bin Liu <bin.liu@mediatek.com>
11190 S:      Supported
11191 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11192 F:      drivers/media/platform/mtk-jpeg/
11193
11194 MEDIATEK MDP DRIVER
11195 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11196 M:      Houlong Wei <houlong.wei@mediatek.com>
11197 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11198 S:      Supported
11199 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11200 F:      drivers/media/platform/mtk-mdp/
11201 F:      drivers/media/platform/mtk-vpu/
11202
11203 MEDIATEK MEDIA DRIVER
11204 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11205 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11206 S:      Supported
11207 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11208 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11209 F:      drivers/media/platform/mtk-vcodec/
11210 F:      drivers/media/platform/mtk-vpu/
11211
11212 MEDIATEK MMC/SD/SDIO DRIVER
11213 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11214 S:      Maintained
11215 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
11216 F:      drivers/mmc/host/mtk-sd.c
11217
11218 MEDIATEK MT76 WIRELESS LAN DRIVER
11219 M:      Felix Fietkau <nbd@nbd.name>
11220 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11221 R:      Ryder Lee <ryder.lee@mediatek.com>
11222 L:      linux-wireless@vger.kernel.org
11223 S:      Maintained
11224 F:      drivers/net/wireless/mediatek/mt76/
11225
11226 MEDIATEK MT7601U WIRELESS LAN DRIVER
11227 M:      Jakub Kicinski <kubakici@wp.pl>
11228 L:      linux-wireless@vger.kernel.org
11229 S:      Maintained
11230 F:      drivers/net/wireless/mediatek/mt7601u/
11231
11232 MEDIATEK MT7621/28/88 I2C DRIVER
11233 M:      Stefan Roese <sr@denx.de>
11234 L:      linux-i2c@vger.kernel.org
11235 S:      Maintained
11236 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11237 F:      drivers/i2c/busses/i2c-mt7621.c
11238
11239 MEDIATEK MT7621 PHY PCI DRIVER
11240 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11241 S:      Maintained
11242 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11243 F:      drivers/phy/ralink/phy-mt7621-pci.c
11244
11245 MEDIATEK NAND CONTROLLER DRIVER
11246 L:      linux-mtd@lists.infradead.org
11247 S:      Orphan
11248 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11249 F:      drivers/mtd/nand/raw/mtk_*
11250
11251 MEDIATEK PMIC LED DRIVER
11252 M:      Sean Wang <sean.wang@mediatek.com>
11253 S:      Maintained
11254 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11255 F:      drivers/leds/leds-mt6323.c
11256
11257 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11258 M:      Sean Wang <sean.wang@mediatek.com>
11259 S:      Maintained
11260 F:      drivers/char/hw_random/mtk-rng.c
11261
11262 MEDIATEK SWITCH DRIVER
11263 M:      Sean Wang <sean.wang@mediatek.com>
11264 M:      Landen Chao <Landen.Chao@mediatek.com>
11265 L:      netdev@vger.kernel.org
11266 S:      Maintained
11267 F:      drivers/net/dsa/mt7530.*
11268 F:      net/dsa/tag_mtk.c
11269
11270 MEDIATEK USB3 DRD IP DRIVER
11271 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11272 L:      linux-usb@vger.kernel.org
11273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11274 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11275 S:      Maintained
11276 F:      drivers/usb/mtu3/
11277
11278 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11279 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11280 M:      Martin Donnelly <martin.donnelly@ge.com>
11281 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11282 S:      Maintained
11283 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11284 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11285
11286 MEGARAID SCSI/SAS DRIVERS
11287 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11288 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11289 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11290 L:      megaraidlinux.pdl@broadcom.com
11291 L:      linux-scsi@vger.kernel.org
11292 S:      Maintained
11293 W:      http://www.avagotech.com/support/
11294 F:      Documentation/scsi/megaraid.rst
11295 F:      drivers/scsi/megaraid.*
11296 F:      drivers/scsi/megaraid/
11297
11298 MELEXIS MLX90614 DRIVER
11299 M:      Crt Mori <cmo@melexis.com>
11300 L:      linux-iio@vger.kernel.org
11301 S:      Supported
11302 W:      http://www.melexis.com
11303 F:      drivers/iio/temperature/mlx90614.c
11304
11305 MELEXIS MLX90632 DRIVER
11306 M:      Crt Mori <cmo@melexis.com>
11307 L:      linux-iio@vger.kernel.org
11308 S:      Supported
11309 W:      http://www.melexis.com
11310 F:      drivers/iio/temperature/mlx90632.c
11311
11312 MELFAS MIP4 TOUCHSCREEN DRIVER
11313 M:      Sangwon Jee <jeesw@melfas.com>
11314 S:      Supported
11315 W:      http://www.melfas.com
11316 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11317 F:      drivers/input/touchscreen/melfas_mip4.c
11318
11319 MELLANOX BLUEFIELD I2C DRIVER
11320 M:      Khalil Blaiech <kblaiech@nvidia.com>
11321 L:      linux-i2c@vger.kernel.org
11322 S:      Supported
11323 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11324 F:      drivers/i2c/busses/i2c-mlxbf.c
11325
11326 MELLANOX ETHERNET DRIVER (mlx4_en)
11327 M:      Tariq Toukan <tariqt@nvidia.com>
11328 L:      netdev@vger.kernel.org
11329 S:      Supported
11330 W:      http://www.mellanox.com
11331 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11332 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11333
11334 MELLANOX ETHERNET DRIVER (mlx5e)
11335 M:      Saeed Mahameed <saeedm@nvidia.com>
11336 L:      netdev@vger.kernel.org
11337 S:      Supported
11338 W:      http://www.mellanox.com
11339 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11340 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11341
11342 MELLANOX ETHERNET INNOVA DRIVERS
11343 R:      Boris Pismenny <borisp@nvidia.com>
11344 L:      netdev@vger.kernel.org
11345 S:      Supported
11346 W:      http://www.mellanox.com
11347 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11348 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11349 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11350 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11351 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11352
11353 MELLANOX ETHERNET SWITCH DRIVERS
11354 M:      Jiri Pirko <jiri@nvidia.com>
11355 M:      Ido Schimmel <idosch@nvidia.com>
11356 L:      netdev@vger.kernel.org
11357 S:      Supported
11358 W:      http://www.mellanox.com
11359 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11360 F:      drivers/net/ethernet/mellanox/mlxsw/
11361 F:      tools/testing/selftests/drivers/net/mlxsw/
11362
11363 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11364 M:      mlxsw@nvidia.com
11365 L:      netdev@vger.kernel.org
11366 S:      Supported
11367 W:      http://www.mellanox.com
11368 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11369 F:      drivers/net/ethernet/mellanox/mlxfw/
11370
11371 MELLANOX HARDWARE PLATFORM SUPPORT
11372 M:      Andy Shevchenko <andy@infradead.org>
11373 M:      Darren Hart <dvhart@infradead.org>
11374 M:      Vadim Pasternak <vadimp@nvidia.com>
11375 L:      platform-driver-x86@vger.kernel.org
11376 S:      Supported
11377 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
11378 F:      drivers/platform/mellanox/
11379 F:      include/linux/platform_data/mlxreg.h
11380
11381 MELLANOX MLX4 core VPI driver
11382 M:      Tariq Toukan <tariqt@nvidia.com>
11383 L:      netdev@vger.kernel.org
11384 L:      linux-rdma@vger.kernel.org
11385 S:      Supported
11386 W:      http://www.mellanox.com
11387 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11388 F:      drivers/net/ethernet/mellanox/mlx4/
11389 F:      include/linux/mlx4/
11390
11391 MELLANOX MLX4 IB driver
11392 M:      Yishai Hadas <yishaih@nvidia.com>
11393 L:      linux-rdma@vger.kernel.org
11394 S:      Supported
11395 W:      http://www.mellanox.com
11396 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11397 F:      drivers/infiniband/hw/mlx4/
11398 F:      include/linux/mlx4/
11399 F:      include/uapi/rdma/mlx4-abi.h
11400
11401 MELLANOX MLX5 core VPI driver
11402 M:      Saeed Mahameed <saeedm@nvidia.com>
11403 M:      Leon Romanovsky <leonro@nvidia.com>
11404 L:      netdev@vger.kernel.org
11405 L:      linux-rdma@vger.kernel.org
11406 S:      Supported
11407 W:      http://www.mellanox.com
11408 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11409 F:      Documentation/networking/device_drivers/ethernet/mellanox/
11410 F:      drivers/net/ethernet/mellanox/mlx5/core/
11411 F:      include/linux/mlx5/
11412
11413 MELLANOX MLX5 IB driver
11414 M:      Leon Romanovsky <leonro@nvidia.com>
11415 L:      linux-rdma@vger.kernel.org
11416 S:      Supported
11417 W:      http://www.mellanox.com
11418 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11419 F:      drivers/infiniband/hw/mlx5/
11420 F:      include/linux/mlx5/
11421 F:      include/uapi/rdma/mlx5-abi.h
11422
11423 MELLANOX MLXCPLD I2C AND MUX DRIVER
11424 M:      Vadim Pasternak <vadimp@nvidia.com>
11425 M:      Michael Shych <michaelsh@nvidia.com>
11426 L:      linux-i2c@vger.kernel.org
11427 S:      Supported
11428 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11429 F:      drivers/i2c/busses/i2c-mlxcpld.c
11430 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11431
11432 MELLANOX MLXCPLD LED DRIVER
11433 M:      Vadim Pasternak <vadimp@nvidia.com>
11434 L:      linux-leds@vger.kernel.org
11435 S:      Supported
11436 F:      Documentation/leds/leds-mlxcpld.rst
11437 F:      drivers/leds/leds-mlxcpld.c
11438 F:      drivers/leds/leds-mlxreg.c
11439
11440 MELLANOX PLATFORM DRIVER
11441 M:      Vadim Pasternak <vadimp@nvidia.com>
11442 L:      platform-driver-x86@vger.kernel.org
11443 S:      Supported
11444 F:      drivers/platform/x86/mlx-platform.c
11445
11446 MEMBARRIER SUPPORT
11447 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11448 M:      "Paul E. McKenney" <paulmck@kernel.org>
11449 L:      linux-kernel@vger.kernel.org
11450 S:      Supported
11451 F:      arch/powerpc/include/asm/membarrier.h
11452 F:      include/uapi/linux/membarrier.h
11453 F:      kernel/sched/membarrier.c
11454
11455 MEMBLOCK
11456 M:      Mike Rapoport <rppt@linux.ibm.com>
11457 L:      linux-mm@kvack.org
11458 S:      Maintained
11459 F:      Documentation/core-api/boot-time-mm.rst
11460 F:      include/linux/memblock.h
11461 F:      mm/memblock.c
11462
11463 MEMORY CONTROLLER DRIVERS
11464 M:      Krzysztof Kozlowski <krzk@kernel.org>
11465 L:      linux-kernel@vger.kernel.org
11466 S:      Maintained
11467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
11468 F:      Documentation/devicetree/bindings/memory-controllers/
11469 F:      drivers/memory/
11470 F:      include/dt-bindings/memory/
11471
11472 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
11473 M:      Dmitry Osipenko <digetx@gmail.com>
11474 L:      linux-pm@vger.kernel.org
11475 L:      linux-tegra@vger.kernel.org
11476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
11477 S:      Maintained
11478 F:      drivers/devfreq/tegra30-devfreq.c
11479
11480 MEMORY MANAGEMENT
11481 M:      Andrew Morton <akpm@linux-foundation.org>
11482 L:      linux-mm@kvack.org
11483 S:      Maintained
11484 W:      http://www.linux-mm.org
11485 T:      quilt https://ozlabs.org/~akpm/mmotm/
11486 T:      quilt https://ozlabs.org/~akpm/mmots/
11487 T:      git git://github.com/hnaz/linux-mm.git
11488 F:      include/linux/gfp.h
11489 F:      include/linux/memory_hotplug.h
11490 F:      include/linux/mm.h
11491 F:      include/linux/mmzone.h
11492 F:      include/linux/vmalloc.h
11493 F:      mm/
11494
11495 MEMORY TECHNOLOGY DEVICES (MTD)
11496 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11497 M:      Richard Weinberger <richard@nod.at>
11498 M:      Vignesh Raghavendra <vigneshr@ti.com>
11499 L:      linux-mtd@lists.infradead.org
11500 S:      Maintained
11501 W:      http://www.linux-mtd.infradead.org/
11502 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11503 C:      irc://irc.oftc.net/mtd
11504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11506 F:      Documentation/devicetree/bindings/mtd/
11507 F:      drivers/mtd/
11508 F:      include/linux/mtd/
11509 F:      include/uapi/mtd/
11510
11511 MEN A21 WATCHDOG DRIVER
11512 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11513 L:      linux-watchdog@vger.kernel.org
11514 S:      Maintained
11515 F:      drivers/watchdog/mena21_wdt.c
11516
11517 MEN CHAMELEON BUS (mcb)
11518 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11519 S:      Maintained
11520 F:      Documentation/driver-api/men-chameleon-bus.rst
11521 F:      drivers/mcb/
11522 F:      include/linux/mcb.h
11523
11524 MEN F21BMC (Board Management Controller)
11525 M:      Andreas Werner <andreas.werner@men.de>
11526 S:      Supported
11527 F:      Documentation/hwmon/menf21bmc.rst
11528 F:      drivers/hwmon/menf21bmc_hwmon.c
11529 F:      drivers/leds/leds-menf21bmc.c
11530 F:      drivers/mfd/menf21bmc.c
11531 F:      drivers/watchdog/menf21bmc_wdt.c
11532
11533 MEN Z069 WATCHDOG DRIVER
11534 M:      Johannes Thumshirn <jth@kernel.org>
11535 L:      linux-watchdog@vger.kernel.org
11536 S:      Maintained
11537 F:      drivers/watchdog/menz69_wdt.c
11538
11539 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11540 M:      Neil Armstrong <narmstrong@baylibre.com>
11541 L:      linux-media@vger.kernel.org
11542 L:      linux-amlogic@lists.infradead.org
11543 S:      Supported
11544 W:      http://linux-meson.com/
11545 T:      git git://linuxtv.org/media_tree.git
11546 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11547 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
11548 F:      drivers/media/cec/platform/meson/ao-cec.c
11549
11550 MESON GE2D DRIVER FOR AMLOGIC SOCS
11551 M:      Neil Armstrong <narmstrong@baylibre.com>
11552 L:      linux-media@vger.kernel.org
11553 L:      linux-amlogic@lists.infradead.org
11554 S:      Supported
11555 T:      git git://linuxtv.org/media_tree.git
11556 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
11557 F:      drivers/media/meson/ge2d/
11558
11559 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11560 M:      Liang Yang <liang.yang@amlogic.com>
11561 L:      linux-mtd@lists.infradead.org
11562 S:      Maintained
11563 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11564 F:      drivers/mtd/nand/raw/meson_*
11565
11566 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11567 M:      Neil Armstrong <narmstrong@baylibre.com>
11568 L:      linux-media@vger.kernel.org
11569 L:      linux-amlogic@lists.infradead.org
11570 S:      Supported
11571 T:      git git://linuxtv.org/media_tree.git
11572 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11573 F:      drivers/staging/media/meson/vdec/
11574
11575 METHODE UDPU SUPPORT
11576 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11577 S:      Maintained
11578 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11579
11580 MHI BUS
11581 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11582 M:      Hemant Kumar <hemantk@codeaurora.org>
11583 L:      linux-arm-msm@vger.kernel.org
11584 S:      Maintained
11585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11586 F:      Documentation/ABI/stable/sysfs-bus-mhi
11587 F:      Documentation/mhi/
11588 F:      drivers/bus/mhi/
11589 F:      include/linux/mhi.h
11590
11591 MICROBLAZE ARCHITECTURE
11592 M:      Michal Simek <monstr@monstr.eu>
11593 S:      Supported
11594 W:      http://www.monstr.eu/fdt/
11595 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11596 F:      arch/microblaze/
11597
11598 MICROCHIP AT91 DMA DRIVERS
11599 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11600 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11602 L:      dmaengine@vger.kernel.org
11603 S:      Supported
11604 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11605 F:      drivers/dma/at_hdmac.c
11606 F:      drivers/dma/at_hdmac_regs.h
11607 F:      drivers/dma/at_xdmac.c
11608 F:      include/dt-bindings/dma/at91.h
11609 F:      include/linux/platform_data/dma-atmel.h
11610
11611 MICROCHIP AT91 SERIAL DRIVER
11612 M:      Richard Genoud <richard.genoud@gmail.com>
11613 S:      Maintained
11614 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11615 F:      drivers/tty/serial/atmel_serial.c
11616 F:      drivers/tty/serial/atmel_serial.h
11617
11618 MICROCHIP AT91 USART MFD DRIVER
11619 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11620 L:      linux-kernel@vger.kernel.org
11621 S:      Supported
11622 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11623 F:      drivers/mfd/at91-usart.c
11624 F:      include/dt-bindings/mfd/at91-usart.h
11625
11626 MICROCHIP AT91 USART SPI DRIVER
11627 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11628 L:      linux-spi@vger.kernel.org
11629 S:      Supported
11630 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11631 F:      drivers/spi/spi-at91-usart.c
11632
11633 MICROCHIP AUDIO ASOC DRIVERS
11634 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11635 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11636 S:      Supported
11637 F:      sound/soc/atmel
11638
11639 MICROCHIP ECC DRIVER
11640 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11641 L:      linux-crypto@vger.kernel.org
11642 S:      Maintained
11643 F:      drivers/crypto/atmel-ecc.*
11644
11645 MICROCHIP I2C DRIVER
11646 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11647 L:      linux-i2c@vger.kernel.org
11648 S:      Supported
11649 F:      drivers/i2c/busses/i2c-at91-*.c
11650 F:      drivers/i2c/busses/i2c-at91.h
11651
11652 MICROCHIP ISC DRIVER
11653 M:      Eugen Hristev <eugen.hristev@microchip.com>
11654 L:      linux-media@vger.kernel.org
11655 S:      Supported
11656 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11657 F:      drivers/media/platform/atmel/atmel-isc-base.c
11658 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11659 F:      drivers/media/platform/atmel/atmel-isc.h
11660 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11661 F:      include/linux/atmel-isc-media.h
11662
11663 MICROCHIP ISI DRIVER
11664 M:      Eugen Hristev <eugen.hristev@microchip.com>
11665 L:      linux-media@vger.kernel.org
11666 S:      Supported
11667 F:      drivers/media/platform/atmel/atmel-isi.c
11668 F:      drivers/media/platform/atmel/atmel-isi.h
11669
11670 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11671 M:      Woojung Huh <woojung.huh@microchip.com>
11672 M:      UNGLinuxDriver@microchip.com
11673 L:      netdev@vger.kernel.org
11674 S:      Maintained
11675 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
11676 F:      drivers/net/dsa/microchip/*
11677 F:      include/linux/platform_data/microchip-ksz.h
11678 F:      net/dsa/tag_ksz.c
11679
11680 MICROCHIP LAN743X ETHERNET DRIVER
11681 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11682 M:      UNGLinuxDriver@microchip.com
11683 L:      netdev@vger.kernel.org
11684 S:      Maintained
11685 F:      drivers/net/ethernet/microchip/lan743x_*
11686
11687 MICROCHIP LCDFB DRIVER
11688 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11689 L:      linux-fbdev@vger.kernel.org
11690 S:      Maintained
11691 F:      drivers/video/fbdev/atmel_lcdfb.c
11692 F:      include/video/atmel_lcdc.h
11693
11694 MICROCHIP MCP16502 PMIC DRIVER
11695 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11697 S:      Maintained
11698 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11699 F:      drivers/regulator/mcp16502.c
11700
11701 MICROCHIP MCP3911 ADC DRIVER
11702 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11703 M:      Kent Gustavsson <kent@minoris.se>
11704 L:      linux-iio@vger.kernel.org
11705 S:      Supported
11706 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11707 F:      drivers/iio/adc/mcp3911.c
11708
11709 MICROCHIP MMC/SD/SDIO MCI DRIVER
11710 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11711 S:      Maintained
11712 F:      drivers/mmc/host/atmel-mci.c
11713
11714 MICROCHIP NAND DRIVER
11715 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11716 L:      linux-mtd@lists.infradead.org
11717 S:      Supported
11718 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11719 F:      drivers/mtd/nand/raw/atmel/*
11720
11721 MICROCHIP PWM DRIVER
11722 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11724 L:      linux-pwm@vger.kernel.org
11725 S:      Supported
11726 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11727 F:      drivers/pwm/pwm-atmel.c
11728
11729 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11730 M:      Eugen Hristev <eugen.hristev@microchip.com>
11731 L:      linux-iio@vger.kernel.org
11732 S:      Supported
11733 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11734 F:      drivers/iio/adc/at91-sama5d2_adc.c
11735 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11736
11737 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11738 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11739 S:      Supported
11740 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11741
11742 MICROCHIP SPI DRIVER
11743 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11744 S:      Supported
11745 F:      drivers/spi/spi-atmel.*
11746
11747 MICROCHIP SSC DRIVER
11748 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11750 S:      Supported
11751 F:      drivers/misc/atmel-ssc.c
11752 F:      include/linux/atmel-ssc.h
11753
11754 MICROCHIP USB251XB DRIVER
11755 M:      Richard Leitner <richard.leitner@skidata.com>
11756 L:      linux-usb@vger.kernel.org
11757 S:      Maintained
11758 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11759 F:      drivers/usb/misc/usb251xb.c
11760
11761 MICROCHIP USBA UDC DRIVER
11762 M:      Cristian Birsan <cristian.birsan@microchip.com>
11763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11764 S:      Supported
11765 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11766
11767 MICROCHIP WILC1000 WIFI DRIVER
11768 M:      Ajay Singh <ajay.kathat@microchip.com>
11769 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11770 L:      linux-wireless@vger.kernel.org
11771 S:      Supported
11772 F:      drivers/net/wireless/microchip/wilc1000/
11773
11774 MICROSEMI MIPS SOCS
11775 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11776 M:      UNGLinuxDriver@microchip.com
11777 L:      linux-mips@vger.kernel.org
11778 S:      Supported
11779 F:      Documentation/devicetree/bindings/mips/mscc.txt
11780 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
11781 F:      arch/mips/boot/dts/mscc/
11782 F:      arch/mips/configs/generic/board-ocelot.config
11783 F:      arch/mips/generic/board-ocelot.c
11784
11785 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11786 M:      Don Brace <don.brace@microchip.com>
11787 L:      storagedev@microchip.com
11788 L:      linux-scsi@vger.kernel.org
11789 S:      Supported
11790 F:      Documentation/scsi/smartpqi.rst
11791 F:      drivers/scsi/smartpqi/Kconfig
11792 F:      drivers/scsi/smartpqi/Makefile
11793 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11794 F:      include/linux/cciss*.h
11795 F:      include/uapi/linux/cciss*.h
11796
11797 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
11798 M:      Maximilian Luz <luzmaximilian@gmail.com>
11799 L:      platform-driver-x86@vger.kernel.org
11800 S:      Maintained
11801 F:      drivers/platform/surface/surface_gpe.c
11802
11803 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
11804 M:      Hans de Goede <hdegoede@redhat.com>
11805 M:      Mark Gross <mgross@linux.intel.com>
11806 M:      Maximilian Luz <luzmaximilian@gmail.com>
11807 L:      platform-driver-x86@vger.kernel.org
11808 S:      Maintained
11809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
11810 F:      drivers/platform/surface/
11811
11812 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11813 M:      Chen Yu <yu.c.chen@intel.com>
11814 L:      platform-driver-x86@vger.kernel.org
11815 S:      Supported
11816 F:      drivers/platform/surface/surfacepro3_button.c
11817
11818 MICROTEK X6 SCANNER
11819 M:      Oliver Neukum <oliver@neukum.org>
11820 S:      Maintained
11821 F:      drivers/usb/image/microtek.*
11822
11823 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
11824 M:      Luka Kovacic <luka.kovacic@sartura.hr>
11825 M:      Luka Perkov <luka.perkov@sartura.hr>
11826 S:      Maintained
11827 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
11828 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
11829 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
11830 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
11831 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
11832 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
11833
11834 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
11835 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11836 L:      linux-media@vger.kernel.org
11837 S:      Maintained
11838 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
11839 F:      Documentation/driver-api/media/drivers/ccs/
11840 F:      drivers/media/i2c/ccs-pll.c
11841 F:      drivers/media/i2c/ccs-pll.h
11842 F:      drivers/media/i2c/ccs/
11843 F:      include/uapi/linux/smiapp.h
11844
11845 MIPS
11846 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11847 L:      linux-mips@vger.kernel.org
11848 S:      Maintained
11849 W:      http://www.linux-mips.org/
11850 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11852 F:      Documentation/devicetree/bindings/mips/
11853 F:      Documentation/mips/
11854 F:      arch/mips/
11855 F:      drivers/platform/mips/
11856
11857 MIPS BOSTON DEVELOPMENT BOARD
11858 M:      Paul Burton <paulburton@kernel.org>
11859 L:      linux-mips@vger.kernel.org
11860 S:      Maintained
11861 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11862 F:      arch/mips/boot/dts/img/boston.dts
11863 F:      arch/mips/configs/generic/board-boston.config
11864 F:      drivers/clk/imgtec/clk-boston.c
11865 F:      include/dt-bindings/clock/boston-clock.h
11866
11867 MIPS CORE DRIVERS
11868 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11869 M:      Serge Semin <fancer.lancer@gmail.com>
11870 L:      linux-mips@vger.kernel.org
11871 S:      Supported
11872 F:      drivers/bus/mips_cdmm.c
11873 F:      drivers/clocksource/mips-gic-timer.c
11874 F:      drivers/cpuidle/cpuidle-cps.c
11875 F:      drivers/irqchip/irq-mips-cpu.c
11876 F:      drivers/irqchip/irq-mips-gic.c
11877
11878 MIPS GENERIC PLATFORM
11879 M:      Paul Burton <paulburton@kernel.org>
11880 L:      linux-mips@vger.kernel.org
11881 S:      Supported
11882 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
11883 F:      arch/mips/generic/
11884 F:      arch/mips/tools/generic-board-config.sh
11885
11886 MIPS RINT INSTRUCTION EMULATION
11887 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11888 L:      linux-mips@vger.kernel.org
11889 S:      Supported
11890 F:      arch/mips/math-emu/dp_rint.c
11891 F:      arch/mips/math-emu/sp_rint.c
11892
11893 MIPS/LOONGSON1 ARCHITECTURE
11894 M:      Keguang Zhang <keguang.zhang@gmail.com>
11895 L:      linux-mips@vger.kernel.org
11896 S:      Maintained
11897 F:      arch/mips/include/asm/mach-loongson32/
11898 F:      arch/mips/loongson32/
11899 F:      drivers/*/*/*loongson1*
11900 F:      drivers/*/*loongson1*
11901
11902 MIPS/LOONGSON2EF ARCHITECTURE
11903 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11904 L:      linux-mips@vger.kernel.org
11905 S:      Maintained
11906 F:      arch/mips/include/asm/mach-loongson2ef/
11907 F:      arch/mips/loongson2ef/
11908 F:      drivers/*/*/*loongson2*
11909 F:      drivers/*/*loongson2*
11910
11911 MIPS/LOONGSON64 ARCHITECTURE
11912 M:      Huacai Chen <chenhuacai@kernel.org>
11913 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11914 L:      linux-mips@vger.kernel.org
11915 S:      Maintained
11916 F:      arch/mips/include/asm/mach-loongson64/
11917 F:      arch/mips/loongson64/
11918 F:      drivers/*/*/*loongson3*
11919 F:      drivers/*/*loongson3*
11920 F:      drivers/irqchip/irq-loongson*
11921 F:      drivers/platform/mips/cpu_hwmon.c
11922
11923 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11924 M:      Hans Verkuil <hverkuil@xs4all.nl>
11925 L:      linux-media@vger.kernel.org
11926 S:      Odd Fixes
11927 W:      https://linuxtv.org
11928 T:      git git://linuxtv.org/media_tree.git
11929 F:      drivers/media/radio/radio-miropcm20*
11930
11931 MMP SUPPORT
11932 R:      Lubomir Rintel <lkundrak@v3.sk>
11933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11934 S:      Odd Fixes
11935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11936 F:      arch/arm/boot/dts/mmp*
11937 F:      arch/arm/mach-mmp/
11938 F:      include/linux/soc/mmp/
11939
11940 MMP USB PHY DRIVERS
11941 R:      Lubomir Rintel <lkundrak@v3.sk>
11942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11943 S:      Maintained
11944 F:      drivers/phy/marvell/phy-mmp3-usb.c
11945 F:      drivers/phy/marvell/phy-pxa-usb.c
11946
11947 MMU GATHER AND TLB INVALIDATION
11948 M:      Will Deacon <will@kernel.org>
11949 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11950 M:      Andrew Morton <akpm@linux-foundation.org>
11951 M:      Nick Piggin <npiggin@gmail.com>
11952 M:      Peter Zijlstra <peterz@infradead.org>
11953 L:      linux-arch@vger.kernel.org
11954 L:      linux-mm@kvack.org
11955 S:      Maintained
11956 F:      arch/*/include/asm/tlb.h
11957 F:      include/asm-generic/tlb.h
11958 F:      mm/mmu_gather.c
11959
11960 MN88472 MEDIA DRIVER
11961 M:      Antti Palosaari <crope@iki.fi>
11962 L:      linux-media@vger.kernel.org
11963 S:      Maintained
11964 W:      https://linuxtv.org
11965 W:      http://palosaari.fi/linux/
11966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11967 F:      drivers/media/dvb-frontends/mn88472*
11968
11969 MN88473 MEDIA DRIVER
11970 M:      Antti Palosaari <crope@iki.fi>
11971 L:      linux-media@vger.kernel.org
11972 S:      Maintained
11973 W:      https://linuxtv.org
11974 W:      http://palosaari.fi/linux/
11975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11976 F:      drivers/media/dvb-frontends/mn88473*
11977
11978 MODULE SUPPORT
11979 M:      Jessica Yu <jeyu@kernel.org>
11980 S:      Maintained
11981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11982 F:      include/linux/module.h
11983 F:      kernel/module.c
11984
11985 MONOLITHIC POWER SYSTEM PMIC DRIVER
11986 M:      Saravanan Sekar <sravanhome@gmail.com>
11987 S:      Maintained
11988 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11989 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11990 F:      drivers/iio/adc/mp2629_adc.c
11991 F:      drivers/mfd/mp2629.c
11992 F:      drivers/power/supply/mp2629_charger.c
11993 F:      drivers/regulator/mp5416.c
11994 F:      drivers/regulator/mpq7920.c
11995 F:      drivers/regulator/mpq7920.h
11996 F:      include/linux/mfd/mp2629.h
11997
11998 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11999 S:      Orphan
12000 W:      http://popies.net/meye/
12001 F:      Documentation/userspace-api/media/drivers/meye*
12002 F:      drivers/media/pci/meye/
12003 F:      include/uapi/linux/meye.h
12004
12005 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12006 M:      Jiri Slaby <jirislaby@kernel.org>
12007 S:      Maintained
12008 F:      Documentation/driver-api/serial/moxa-smartio.rst
12009 F:      drivers/tty/mxser.*
12010
12011 MR800 AVERMEDIA USB FM RADIO DRIVER
12012 M:      Alexey Klimov <klimov.linux@gmail.com>
12013 L:      linux-media@vger.kernel.org
12014 S:      Maintained
12015 T:      git git://linuxtv.org/media_tree.git
12016 F:      drivers/media/radio/radio-mr800.c
12017
12018 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12019 M:      Alan Ott <alan@signal11.us>
12020 L:      linux-wpan@vger.kernel.org
12021 S:      Maintained
12022 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12023 F:      drivers/net/ieee802154/mrf24j40.c
12024
12025 MSI LAPTOP SUPPORT
12026 M:      "Lee, Chun-Yi" <jlee@suse.com>
12027 L:      platform-driver-x86@vger.kernel.org
12028 S:      Maintained
12029 F:      drivers/platform/x86/msi-laptop.c
12030
12031 MSI WMI SUPPORT
12032 L:      platform-driver-x86@vger.kernel.org
12033 S:      Orphan
12034 F:      drivers/platform/x86/msi-wmi.c
12035
12036 MSI001 MEDIA DRIVER
12037 M:      Antti Palosaari <crope@iki.fi>
12038 L:      linux-media@vger.kernel.org
12039 S:      Maintained
12040 W:      https://linuxtv.org
12041 W:      http://palosaari.fi/linux/
12042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12043 T:      git git://linuxtv.org/anttip/media_tree.git
12044 F:      drivers/media/tuners/msi001*
12045
12046 MSI2500 MEDIA DRIVER
12047 M:      Antti Palosaari <crope@iki.fi>
12048 L:      linux-media@vger.kernel.org
12049 S:      Maintained
12050 W:      https://linuxtv.org
12051 W:      http://palosaari.fi/linux/
12052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12053 T:      git git://linuxtv.org/anttip/media_tree.git
12054 F:      drivers/media/usb/msi2500/
12055
12056 MSTAR INTERRUPT CONTROLLER DRIVER
12057 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12058 M:      Daniel Palmer <daniel@thingy.jp>
12059 S:      Maintained
12060 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12061 F:      drivers/irqchip/irq-mst-intc.c
12062
12063 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12064 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12065 L:      linux-mtd@lists.infradead.org
12066 S:      Maintained
12067 F:      drivers/mtd/devices/docg3*
12068
12069 MT9M032 APTINA SENSOR DRIVER
12070 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12071 L:      linux-media@vger.kernel.org
12072 S:      Maintained
12073 T:      git git://linuxtv.org/media_tree.git
12074 F:      drivers/media/i2c/mt9m032.c
12075 F:      include/media/i2c/mt9m032.h
12076
12077 MT9P031 APTINA CAMERA SENSOR
12078 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12079 L:      linux-media@vger.kernel.org
12080 S:      Maintained
12081 T:      git git://linuxtv.org/media_tree.git
12082 F:      drivers/media/i2c/mt9p031.c
12083 F:      include/media/i2c/mt9p031.h
12084
12085 MT9T001 APTINA CAMERA SENSOR
12086 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12087 L:      linux-media@vger.kernel.org
12088 S:      Maintained
12089 T:      git git://linuxtv.org/media_tree.git
12090 F:      drivers/media/i2c/mt9t001.c
12091 F:      include/media/i2c/mt9t001.h
12092
12093 MT9T112 APTINA CAMERA SENSOR
12094 M:      Jacopo Mondi <jacopo@jmondi.org>
12095 L:      linux-media@vger.kernel.org
12096 S:      Odd Fixes
12097 T:      git git://linuxtv.org/media_tree.git
12098 F:      drivers/media/i2c/mt9t112.c
12099 F:      include/media/i2c/mt9t112.h
12100
12101 MT9V032 APTINA CAMERA SENSOR
12102 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12103 L:      linux-media@vger.kernel.org
12104 S:      Maintained
12105 T:      git git://linuxtv.org/media_tree.git
12106 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12107 F:      drivers/media/i2c/mt9v032.c
12108 F:      include/media/i2c/mt9v032.h
12109
12110 MT9V111 APTINA CAMERA SENSOR
12111 M:      Jacopo Mondi <jacopo@jmondi.org>
12112 L:      linux-media@vger.kernel.org
12113 S:      Maintained
12114 T:      git git://linuxtv.org/media_tree.git
12115 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12116 F:      drivers/media/i2c/mt9v111.c
12117
12118 MULTIFUNCTION DEVICES (MFD)
12119 M:      Lee Jones <lee.jones@linaro.org>
12120 S:      Supported
12121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12122 F:      Documentation/devicetree/bindings/mfd/
12123 F:      drivers/mfd/
12124 F:      include/dt-bindings/mfd/
12125 F:      include/linux/mfd/
12126
12127 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12128 S:      Orphan
12129 F:      drivers/mmc/host/mmc_spi.c
12130 F:      include/linux/spi/mmc_spi.h
12131
12132 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12133 M:      Ulf Hansson <ulf.hansson@linaro.org>
12134 L:      linux-mmc@vger.kernel.org
12135 S:      Maintained
12136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12137 F:      Documentation/devicetree/bindings/mmc/
12138 F:      drivers/mmc/
12139 F:      include/linux/mmc/
12140 F:      include/uapi/linux/mmc/
12141
12142 MULTIPLEXER SUBSYSTEM
12143 M:      Peter Rosin <peda@axentia.se>
12144 S:      Maintained
12145 F:      Documentation/ABI/testing/sysfs-class-mux*
12146 F:      Documentation/devicetree/bindings/mux/
12147 F:      drivers/mux/
12148 F:      include/dt-bindings/mux/
12149 F:      include/linux/mux/
12150
12151 MULTITECH MULTIPORT CARD (ISICOM)
12152 S:      Orphan
12153 F:      drivers/tty/isicom.c
12154 F:      include/linux/isicom.h
12155
12156 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12157 M:      Bin Liu <b-liu@ti.com>
12158 L:      linux-usb@vger.kernel.org
12159 S:      Maintained
12160 F:      drivers/usb/musb/
12161
12162 MXL301RF MEDIA DRIVER
12163 M:      Akihiro Tsukada <tskd08@gmail.com>
12164 L:      linux-media@vger.kernel.org
12165 S:      Odd Fixes
12166 F:      drivers/media/tuners/mxl301rf*
12167
12168 MXL5007T MEDIA DRIVER
12169 M:      Michael Krufky <mkrufky@linuxtv.org>
12170 L:      linux-media@vger.kernel.org
12171 S:      Maintained
12172 W:      https://linuxtv.org
12173 W:      http://github.com/mkrufky
12174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12175 T:      git git://linuxtv.org/mkrufky/tuners.git
12176 F:      drivers/media/tuners/mxl5007t.*
12177
12178 MXSFB DRM DRIVER
12179 M:      Marek Vasut <marex@denx.de>
12180 M:      Stefan Agner <stefan@agner.ch>
12181 L:      dri-devel@lists.freedesktop.org
12182 S:      Supported
12183 T:      git git://anongit.freedesktop.org/drm/drm-misc
12184 F:      Documentation/devicetree/bindings/display/mxsfb.txt
12185 F:      drivers/gpu/drm/mxsfb/
12186
12187 MYLEX DAC960 PCI RAID Controller
12188 M:      Hannes Reinecke <hare@kernel.org>
12189 L:      linux-scsi@vger.kernel.org
12190 S:      Supported
12191 F:      drivers/scsi/myrb.*
12192 F:      drivers/scsi/myrs.*
12193
12194 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12195 M:      Chris Lee <christopher.lee@cspi.com>
12196 L:      netdev@vger.kernel.org
12197 S:      Supported
12198 W:      https://www.cspi.com/ethernet-products/support/downloads/
12199 F:      drivers/net/ethernet/myricom/myri10ge/
12200
12201 NAND FLASH SUBSYSTEM
12202 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12203 R:      Richard Weinberger <richard@nod.at>
12204 L:      linux-mtd@lists.infradead.org
12205 S:      Maintained
12206 W:      http://www.linux-mtd.infradead.org/
12207 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12208 C:      irc://irc.oftc.net/mtd
12209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12210 F:      drivers/mtd/nand/
12211 F:      include/linux/mtd/*nand*.h
12212
12213 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12214 M:      Daniel Mack <zonque@gmail.com>
12215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12216 S:      Maintained
12217 W:      http://www.native-instruments.com
12218 F:      sound/usb/caiaq/
12219
12220 NATSEMI ETHERNET DRIVER (DP8381x)
12221 S:      Orphan
12222 F:      drivers/net/ethernet/natsemi/natsemi.c
12223
12224 NCR 5380 SCSI DRIVERS
12225 M:      Finn Thain <fthain@telegraphics.com.au>
12226 M:      Michael Schmitz <schmitzmic@gmail.com>
12227 L:      linux-scsi@vger.kernel.org
12228 S:      Maintained
12229 F:      Documentation/scsi/g_NCR5380.rst
12230 F:      drivers/scsi/NCR5380.*
12231 F:      drivers/scsi/arm/cumana_1.c
12232 F:      drivers/scsi/arm/oak.c
12233 F:      drivers/scsi/atari_scsi.*
12234 F:      drivers/scsi/dmx3191d.c
12235 F:      drivers/scsi/g_NCR5380.*
12236 F:      drivers/scsi/mac_scsi.*
12237 F:      drivers/scsi/sun3_scsi.*
12238 F:      drivers/scsi/sun3_scsi_vme.c
12239
12240 NCSI LIBRARY
12241 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12242 S:      Maintained
12243 F:      net/ncsi/
12244
12245 NCT6775 HARDWARE MONITOR DRIVER
12246 M:      Guenter Roeck <linux@roeck-us.net>
12247 L:      linux-hwmon@vger.kernel.org
12248 S:      Maintained
12249 F:      Documentation/hwmon/nct6775.rst
12250 F:      drivers/hwmon/nct6775.c
12251
12252 NETDEVSIM
12253 M:      Jakub Kicinski <kuba@kernel.org>
12254 S:      Maintained
12255 F:      drivers/net/netdevsim/*
12256
12257 NETEM NETWORK EMULATOR
12258 M:      Stephen Hemminger <stephen@networkplumber.org>
12259 L:      netdev@vger.kernel.org
12260 S:      Maintained
12261 F:      net/sched/sch_netem.c
12262
12263 NETERION 10GbE DRIVERS (s2io/vxge)
12264 M:      Jon Mason <jdmason@kudzu.us>
12265 L:      netdev@vger.kernel.org
12266 S:      Supported
12267 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12268 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12269 F:      drivers/net/ethernet/neterion/
12270
12271 NETFILTER
12272 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12273 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12274 M:      Florian Westphal <fw@strlen.de>
12275 L:      netfilter-devel@vger.kernel.org
12276 L:      coreteam@netfilter.org
12277 S:      Maintained
12278 W:      http://www.netfilter.org/
12279 W:      http://www.iptables.org/
12280 W:      http://www.nftables.org/
12281 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12284 F:      include/linux/netfilter*
12285 F:      include/linux/netfilter/
12286 F:      include/net/netfilter/
12287 F:      include/uapi/linux/netfilter*
12288 F:      include/uapi/linux/netfilter/
12289 F:      net/*/netfilter.c
12290 F:      net/*/netfilter/
12291 F:      net/bridge/br_netfilter*.c
12292 F:      net/netfilter/
12293
12294 NETROM NETWORK LAYER
12295 M:      Ralf Baechle <ralf@linux-mips.org>
12296 L:      linux-hams@vger.kernel.org
12297 S:      Maintained
12298 W:      http://www.linux-ax25.org/
12299 F:      include/net/netrom.h
12300 F:      include/uapi/linux/netrom.h
12301 F:      net/netrom/
12302
12303 NETRONOME ETHERNET DRIVERS
12304 M:      Simon Horman <simon.horman@netronome.com>
12305 R:      Jakub Kicinski <kuba@kernel.org>
12306 L:      oss-drivers@netronome.com
12307 S:      Maintained
12308 F:      drivers/net/ethernet/netronome/
12309
12310 NETWORK BLOCK DEVICE (NBD)
12311 M:      Josef Bacik <josef@toxicpanda.com>
12312 L:      linux-block@vger.kernel.org
12313 L:      nbd@other.debian.org
12314 S:      Maintained
12315 F:      Documentation/admin-guide/blockdev/nbd.rst
12316 F:      drivers/block/nbd.c
12317 F:      include/trace/events/nbd.h
12318 F:      include/uapi/linux/nbd.h
12319
12320 NETWORK DROP MONITOR
12321 M:      Neil Horman <nhorman@tuxdriver.com>
12322 L:      netdev@vger.kernel.org
12323 S:      Maintained
12324 W:      https://fedorahosted.org/dropwatch/
12325 F:      include/uapi/linux/net_dropmon.h
12326 F:      net/core/drop_monitor.c
12327
12328 NETWORKING DRIVERS
12329 M:      "David S. Miller" <davem@davemloft.net>
12330 M:      Jakub Kicinski <kuba@kernel.org>
12331 L:      netdev@vger.kernel.org
12332 S:      Maintained
12333 W:      http://www.linuxfoundation.org/en/Net
12334 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12337 F:      Documentation/devicetree/bindings/net/
12338 F:      drivers/connector/
12339 F:      drivers/net/
12340 F:      include/linux/etherdevice.h
12341 F:      include/linux/fcdevice.h
12342 F:      include/linux/fddidevice.h
12343 F:      include/linux/hippidevice.h
12344 F:      include/linux/if_*
12345 F:      include/linux/inetdevice.h
12346 F:      include/linux/netdevice.h
12347 F:      include/uapi/linux/if_*
12348 F:      include/uapi/linux/netdevice.h
12349
12350 NETWORKING DRIVERS (WIRELESS)
12351 M:      Kalle Valo <kvalo@codeaurora.org>
12352 L:      linux-wireless@vger.kernel.org
12353 S:      Maintained
12354 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
12356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
12357 F:      Documentation/devicetree/bindings/net/wireless/
12358 F:      drivers/net/wireless/
12359
12360 NETWORKING [DSA]
12361 M:      Andrew Lunn <andrew@lunn.ch>
12362 M:      Vivien Didelot <vivien.didelot@gmail.com>
12363 M:      Florian Fainelli <f.fainelli@gmail.com>
12364 M:      Vladimir Oltean <olteanv@gmail.com>
12365 S:      Maintained
12366 F:      Documentation/devicetree/bindings/net/dsa/
12367 F:      drivers/net/dsa/
12368 F:      include/linux/dsa/
12369 F:      include/linux/platform_data/dsa.h
12370 F:      include/net/dsa.h
12371 F:      net/dsa/
12372
12373 NETWORKING [GENERAL]
12374 M:      "David S. Miller" <davem@davemloft.net>
12375 M:      Jakub Kicinski <kuba@kernel.org>
12376 L:      netdev@vger.kernel.org
12377 S:      Maintained
12378 W:      http://www.linuxfoundation.org/en/Net
12379 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12380 B:      mailto:netdev@vger.kernel.org
12381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
12383 F:      Documentation/networking/
12384 F:      include/linux/in.h
12385 F:      include/linux/net.h
12386 F:      include/linux/netdevice.h
12387 F:      include/net/
12388 F:      include/uapi/linux/in.h
12389 F:      include/uapi/linux/net.h
12390 F:      include/uapi/linux/net_namespace.h
12391 F:      include/uapi/linux/netdevice.h
12392 F:      lib/net_utils.c
12393 F:      lib/random32.c
12394 F:      net/
12395 F:      tools/testing/selftests/net/
12396
12397 NETWORKING [IPSEC]
12398 M:      Steffen Klassert <steffen.klassert@secunet.com>
12399 M:      Herbert Xu <herbert@gondor.apana.org.au>
12400 M:      "David S. Miller" <davem@davemloft.net>
12401 L:      netdev@vger.kernel.org
12402 S:      Maintained
12403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
12404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
12405 F:      include/net/xfrm.h
12406 F:      include/uapi/linux/xfrm.h
12407 F:      net/ipv4/ah4.c
12408 F:      net/ipv4/esp4*
12409 F:      net/ipv4/ip_vti.c
12410 F:      net/ipv4/ipcomp.c
12411 F:      net/ipv4/xfrm*
12412 F:      net/ipv6/ah6.c
12413 F:      net/ipv6/esp6*
12414 F:      net/ipv6/ip6_vti.c
12415 F:      net/ipv6/ipcomp6.c
12416 F:      net/ipv6/xfrm*
12417 F:      net/key/
12418 F:      net/xfrm/
12419 F:      tools/testing/selftests/net/ipsec.c
12420
12421 NETWORKING [IPv4/IPv6]
12422 M:      "David S. Miller" <davem@davemloft.net>
12423 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
12424 L:      netdev@vger.kernel.org
12425 S:      Maintained
12426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
12427 F:      arch/x86/net/*
12428 F:      include/net/ip*
12429 F:      net/ipv4/
12430 F:      net/ipv6/
12431
12432 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
12433 M:      Paul Moore <paul@paul-moore.com>
12434 L:      netdev@vger.kernel.org
12435 L:      linux-security-module@vger.kernel.org
12436 S:      Maintained
12437 W:      https://github.com/netlabel
12438 F:      Documentation/netlabel/
12439 F:      include/net/calipso.h
12440 F:      include/net/cipso_ipv4.h
12441 F:      include/net/netlabel.h
12442 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
12443 F:      include/uapi/linux/netfilter/xt_SECMARK.h
12444 F:      net/ipv4/cipso_ipv4.c
12445 F:      net/ipv6/calipso.c
12446 F:      net/netfilter/xt_CONNSECMARK.c
12447 F:      net/netfilter/xt_SECMARK.c
12448 F:      net/netlabel/
12449
12450 NETWORKING [MPTCP]
12451 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
12452 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
12453 L:      netdev@vger.kernel.org
12454 L:      mptcp@lists.01.org
12455 S:      Maintained
12456 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
12457 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
12458 F:      Documentation/networking/mptcp-sysctl.rst
12459 F:      include/net/mptcp.h
12460 F:      include/uapi/linux/mptcp.h
12461 F:      net/mptcp/
12462 F:      tools/testing/selftests/net/mptcp/
12463
12464 NETWORKING [TCP]
12465 M:      Eric Dumazet <edumazet@google.com>
12466 L:      netdev@vger.kernel.org
12467 S:      Maintained
12468 F:      include/linux/tcp.h
12469 F:      include/net/tcp.h
12470 F:      include/trace/events/tcp.h
12471 F:      include/uapi/linux/tcp.h
12472 F:      net/ipv4/syncookies.c
12473 F:      net/ipv4/tcp*.c
12474 F:      net/ipv6/syncookies.c
12475 F:      net/ipv6/tcp*.c
12476
12477 NETWORKING [TLS]
12478 M:      Boris Pismenny <borisp@nvidia.com>
12479 M:      John Fastabend <john.fastabend@gmail.com>
12480 M:      Daniel Borkmann <daniel@iogearbox.net>
12481 M:      Jakub Kicinski <kuba@kernel.org>
12482 L:      netdev@vger.kernel.org
12483 S:      Maintained
12484 F:      include/net/tls.h
12485 F:      include/uapi/linux/tls.h
12486 F:      net/tls/*
12487
12488 NETWORKING [WIRELESS]
12489 L:      linux-wireless@vger.kernel.org
12490 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
12491
12492 NETXEN (1/10) GbE SUPPORT
12493 M:      Manish Chopra <manishc@marvell.com>
12494 M:      Rahul Verma <rahulv@marvell.com>
12495 M:      GR-Linux-NIC-Dev@marvell.com
12496 L:      netdev@vger.kernel.org
12497 S:      Supported
12498 F:      drivers/net/ethernet/qlogic/netxen/
12499
12500 NET_FAILOVER MODULE
12501 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12502 L:      netdev@vger.kernel.org
12503 S:      Supported
12504 F:      Documentation/networking/net_failover.rst
12505 F:      drivers/net/net_failover.c
12506 F:      include/net/net_failover.h
12507
12508 NEXTHOP
12509 M:      David Ahern <dsahern@kernel.org>
12510 L:      netdev@vger.kernel.org
12511 S:      Maintained
12512 F:      include/net/netns/nexthop.h
12513 F:      include/net/nexthop.h
12514 F:      include/uapi/linux/nexthop.h
12515 F:      net/ipv4/nexthop.c
12516
12517 NFC SUBSYSTEM
12518 L:      netdev@vger.kernel.org
12519 S:      Orphan
12520 F:      Documentation/devicetree/bindings/net/nfc/
12521 F:      drivers/nfc/
12522 F:      include/linux/platform_data/nfcmrvl.h
12523 F:      include/net/nfc/
12524 F:      include/uapi/linux/nfc.h
12525 F:      net/nfc/
12526
12527 NFS, SUNRPC, AND LOCKD CLIENTS
12528 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12529 M:      Anna Schumaker <anna.schumaker@netapp.com>
12530 L:      linux-nfs@vger.kernel.org
12531 S:      Maintained
12532 W:      http://client.linux-nfs.org
12533 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12534 F:      fs/lockd/
12535 F:      fs/nfs/
12536 F:      fs/nfs_common/
12537 F:      include/linux/lockd/
12538 F:      include/linux/nfs*
12539 F:      include/linux/sunrpc/
12540 F:      include/uapi/linux/nfs*
12541 F:      include/uapi/linux/sunrpc/
12542 F:      net/sunrpc/
12543 F:      Documentation/filesystems/nfs/
12544
12545 NILFS2 FILESYSTEM
12546 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12547 L:      linux-nilfs@vger.kernel.org
12548 S:      Supported
12549 W:      https://nilfs.sourceforge.io/
12550 W:      https://nilfs.osdn.jp/
12551 T:      git git://github.com/konis/nilfs2.git
12552 F:      Documentation/filesystems/nilfs2.rst
12553 F:      fs/nilfs2/
12554 F:      include/trace/events/nilfs2.h
12555 F:      include/uapi/linux/nilfs2_api.h
12556 F:      include/uapi/linux/nilfs2_ondisk.h
12557
12558 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12559 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12560 S:      Maintained
12561 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12562 F:      Documentation/scsi/NinjaSCSI.rst
12563 F:      drivers/scsi/pcmcia/nsp_*
12564
12565 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12566 M:      GOTO Masanori <gotom@debian.or.jp>
12567 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12568 S:      Maintained
12569 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12570 F:      Documentation/scsi/NinjaSCSI.rst
12571 F:      drivers/scsi/nsp32*
12572
12573 NIOS2 ARCHITECTURE
12574 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12575 S:      Maintained
12576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12577 F:      arch/nios2/
12578
12579 NITRO ENCLAVES (NE)
12580 M:      Andra Paraschiv <andraprs@amazon.com>
12581 M:      Alexandru Vasile <lexnv@amazon.com>
12582 M:      Alexandru Ciobotaru <alcioa@amazon.com>
12583 L:      linux-kernel@vger.kernel.org
12584 S:      Supported
12585 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
12586 F:      Documentation/virt/ne_overview.rst
12587 F:      drivers/virt/nitro_enclaves/
12588 F:      include/linux/nitro_enclaves.h
12589 F:      include/uapi/linux/nitro_enclaves.h
12590 F:      samples/nitro_enclaves/
12591
12592 NOHZ, DYNTICKS SUPPORT
12593 M:      Frederic Weisbecker <fweisbec@gmail.com>
12594 M:      Thomas Gleixner <tglx@linutronix.de>
12595 M:      Ingo Molnar <mingo@kernel.org>
12596 L:      linux-kernel@vger.kernel.org
12597 S:      Maintained
12598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12599 F:      include/linux/sched/nohz.h
12600 F:      include/linux/tick.h
12601 F:      kernel/time/tick*.*
12602
12603 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12604 M:      Pavel Machek <pavel@ucw.cz>
12605 M:      Sakari Ailus <sakari.ailus@iki.fi>
12606 L:      linux-media@vger.kernel.org
12607 S:      Maintained
12608 F:      drivers/media/i2c/ad5820.c
12609 F:      drivers/media/i2c/et8ek8
12610
12611 NOKIA N900 POWER SUPPLY DRIVERS
12612 R:      Pali Rohár <pali@kernel.org>
12613 F:      drivers/power/supply/bq2415x_charger.c
12614 F:      drivers/power/supply/bq27xxx_battery.c
12615 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12616 F:      drivers/power/supply/isp1704_charger.c
12617 F:      drivers/power/supply/rx51_battery.c
12618 F:      include/linux/power/bq2415x_charger.h
12619 F:      include/linux/power/bq27xxx_battery.h
12620
12621 NOLIBC HEADER FILE
12622 M:      Willy Tarreau <w@1wt.eu>
12623 S:      Maintained
12624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12625 F:      tools/include/nolibc/
12626
12627 NSDEPS
12628 M:      Matthias Maennich <maennich@google.com>
12629 S:      Maintained
12630 F:      Documentation/core-api/symbol-namespaces.rst
12631 F:      scripts/nsdeps
12632
12633 NTB AMD DRIVER
12634 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12635 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12636 L:      linux-ntb@googlegroups.com
12637 S:      Supported
12638 F:      drivers/ntb/hw/amd/
12639
12640 NTB DRIVER CORE
12641 M:      Jon Mason <jdmason@kudzu.us>
12642 M:      Dave Jiang <dave.jiang@intel.com>
12643 M:      Allen Hubbe <allenbh@gmail.com>
12644 L:      linux-ntb@googlegroups.com
12645 S:      Supported
12646 W:      https://github.com/jonmason/ntb/wiki
12647 T:      git git://github.com/jonmason/ntb.git
12648 F:      drivers/net/ntb_netdev.c
12649 F:      drivers/ntb/
12650 F:      include/linux/ntb.h
12651 F:      include/linux/ntb_transport.h
12652 F:      tools/testing/selftests/ntb/
12653
12654 NTB IDT DRIVER
12655 M:      Serge Semin <fancer.lancer@gmail.com>
12656 L:      linux-ntb@googlegroups.com
12657 S:      Supported
12658 F:      drivers/ntb/hw/idt/
12659
12660 NTB INTEL DRIVER
12661 M:      Dave Jiang <dave.jiang@intel.com>
12662 L:      linux-ntb@googlegroups.com
12663 S:      Supported
12664 W:      https://github.com/davejiang/linux/wiki
12665 T:      git https://github.com/davejiang/linux.git
12666 F:      drivers/ntb/hw/intel/
12667
12668 NTFS FILESYSTEM
12669 M:      Anton Altaparmakov <anton@tuxera.com>
12670 L:      linux-ntfs-dev@lists.sourceforge.net
12671 S:      Supported
12672 W:      http://www.tuxera.com/
12673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12674 F:      Documentation/filesystems/ntfs.rst
12675 F:      fs/ntfs/
12676
12677 NUBUS SUBSYSTEM
12678 M:      Finn Thain <fthain@telegraphics.com.au>
12679 L:      linux-m68k@lists.linux-m68k.org
12680 S:      Maintained
12681 F:      arch/*/include/asm/nubus.h
12682 F:      drivers/nubus/
12683 F:      include/linux/nubus.h
12684 F:      include/uapi/linux/nubus.h
12685
12686 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12687 M:      Antonino Daplas <adaplas@gmail.com>
12688 L:      linux-fbdev@vger.kernel.org
12689 S:      Maintained
12690 F:      drivers/video/fbdev/nvidia/
12691 F:      drivers/video/fbdev/riva/
12692
12693 NVM EXPRESS DRIVER
12694 M:      Keith Busch <kbusch@kernel.org>
12695 M:      Jens Axboe <axboe@fb.com>
12696 M:      Christoph Hellwig <hch@lst.de>
12697 M:      Sagi Grimberg <sagi@grimberg.me>
12698 L:      linux-nvme@lists.infradead.org
12699 S:      Supported
12700 W:      http://git.infradead.org/nvme.git
12701 T:      git://git.infradead.org/nvme.git
12702 F:      drivers/nvme/host/
12703 F:      include/linux/nvme.h
12704 F:      include/uapi/linux/nvme_ioctl.h
12705
12706 NVM EXPRESS FC TRANSPORT DRIVERS
12707 M:      James Smart <james.smart@broadcom.com>
12708 L:      linux-nvme@lists.infradead.org
12709 S:      Supported
12710 F:      drivers/nvme/host/fc.c
12711 F:      drivers/nvme/target/fc.c
12712 F:      drivers/nvme/target/fcloop.c
12713 F:      include/linux/nvme-fc-driver.h
12714 F:      include/linux/nvme-fc.h
12715
12716 NVM EXPRESS TARGET DRIVER
12717 M:      Christoph Hellwig <hch@lst.de>
12718 M:      Sagi Grimberg <sagi@grimberg.me>
12719 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12720 L:      linux-nvme@lists.infradead.org
12721 S:      Supported
12722 W:      http://git.infradead.org/nvme.git
12723 T:      git://git.infradead.org/nvme.git
12724 F:      drivers/nvme/target/
12725
12726 NVMEM FRAMEWORK
12727 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12728 S:      Maintained
12729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
12730 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12731 F:      Documentation/devicetree/bindings/nvmem/
12732 F:      drivers/nvmem/
12733 F:      include/linux/nvmem-consumer.h
12734 F:      include/linux/nvmem-provider.h
12735
12736 NXP FSPI DRIVER
12737 M:      Ashish Kumar <ashish.kumar@nxp.com>
12738 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12739 L:      linux-spi@vger.kernel.org
12740 S:      Maintained
12741 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12742 F:      drivers/spi/spi-nxp-fspi.c
12743
12744 NXP FXAS21002C DRIVER
12745 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12746 L:      linux-iio@vger.kernel.org
12747 S:      Maintained
12748 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
12749 F:      drivers/iio/gyro/fxas21002c.h
12750 F:      drivers/iio/gyro/fxas21002c_core.c
12751 F:      drivers/iio/gyro/fxas21002c_i2c.c
12752 F:      drivers/iio/gyro/fxas21002c_spi.c
12753
12754 NXP i.MX 8MQ DCSS DRIVER
12755 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
12756 R:      Lucas Stach <l.stach@pengutronix.de>
12757 L:      dri-devel@lists.freedesktop.org
12758 S:      Maintained
12759 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
12760 F:      drivers/gpu/drm/imx/dcss/
12761
12762 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
12763 M:      Jagan Teki <jagan@amarulasolutions.com>
12764 S:      Maintained
12765 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
12766 F:      drivers/regulator/pf8x00-regulator.c
12767
12768 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
12769 M:      Krzysztof Kozlowski <krzk@kernel.org>
12770 L:      linux-kernel@vger.kernel.org
12771 S:      Maintained
12772 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
12773 F:      drivers/extcon/extcon-ptn5150.c
12774
12775 NXP SGTL5000 DRIVER
12776 M:      Fabio Estevam <festevam@gmail.com>
12777 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12778 S:      Maintained
12779 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
12780 F:      sound/soc/codecs/sgtl5000*
12781
12782 NXP SJA1105 ETHERNET SWITCH DRIVER
12783 M:      Vladimir Oltean <olteanv@gmail.com>
12784 L:      linux-kernel@vger.kernel.org
12785 S:      Maintained
12786 F:      drivers/net/dsa/sja1105
12787
12788 NXP TDA998X DRM DRIVER
12789 M:      Russell King <linux@armlinux.org.uk>
12790 S:      Maintained
12791 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12792 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12793 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12794 F:      include/drm/i2c/tda998x.h
12795 F:      include/dt-bindings/display/tda998x.h
12796 K:      "nxp,tda998x"
12797
12798 NXP TFA9879 DRIVER
12799 M:      Peter Rosin <peda@axentia.se>
12800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12801 S:      Maintained
12802 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12803 F:      sound/soc/codecs/tfa9879*
12804
12805 NXP-NCI NFC DRIVER
12806 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12807 R:      Charles Gorand <charles.gorand@effinnov.com>
12808 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12809 S:      Supported
12810 F:      drivers/nfc/nxp-nci
12811
12812 OBJAGG
12813 M:      Jiri Pirko <jiri@nvidia.com>
12814 L:      netdev@vger.kernel.org
12815 S:      Supported
12816 F:      include/linux/objagg.h
12817 F:      lib/objagg.c
12818 F:      lib/test_objagg.c
12819
12820 OBJTOOL
12821 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12822 M:      Peter Zijlstra <peterz@infradead.org>
12823 S:      Supported
12824 F:      tools/objtool/
12825 F:      include/linux/objtool.h
12826
12827 OCELOT ETHERNET SWITCH DRIVER
12828 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
12829 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
12830 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12831 M:      UNGLinuxDriver@microchip.com
12832 L:      netdev@vger.kernel.org
12833 S:      Supported
12834 F:      drivers/net/dsa/ocelot/*
12835 F:      drivers/net/ethernet/mscc/
12836 F:      include/soc/mscc/ocelot*
12837 F:      net/dsa/tag_ocelot.c
12838 F:      tools/testing/selftests/drivers/net/ocelot/*
12839
12840 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12841 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12842 M:      Andrew Donnellan <ajd@linux.ibm.com>
12843 L:      linuxppc-dev@lists.ozlabs.org
12844 S:      Supported
12845 F:      Documentation/userspace-api/accelerators/ocxl.rst
12846 F:      arch/powerpc/include/asm/pnv-ocxl.h
12847 F:      arch/powerpc/platforms/powernv/ocxl.c
12848 F:      drivers/misc/ocxl/
12849 F:      include/misc/ocxl*
12850 F:      include/uapi/misc/ocxl.h
12851
12852 OMAP AUDIO SUPPORT
12853 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
12854 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12855 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12856 L:      linux-omap@vger.kernel.org
12857 S:      Maintained
12858 F:      sound/soc/ti/n810.c
12859 F:      sound/soc/ti/omap*
12860 F:      sound/soc/ti/rx51.c
12861 F:      sound/soc/ti/sdma-pcm.*
12862
12863 OMAP CLOCK FRAMEWORK SUPPORT
12864 M:      Paul Walmsley <paul@pwsan.com>
12865 L:      linux-omap@vger.kernel.org
12866 S:      Maintained
12867 F:      arch/arm/*omap*/*clock*
12868
12869 OMAP DEVICE TREE SUPPORT
12870 M:      Benoît Cousson <bcousson@baylibre.com>
12871 M:      Tony Lindgren <tony@atomide.com>
12872 L:      linux-omap@vger.kernel.org
12873 L:      devicetree@vger.kernel.org
12874 S:      Maintained
12875 F:      arch/arm/boot/dts/*am3*
12876 F:      arch/arm/boot/dts/*am4*
12877 F:      arch/arm/boot/dts/*am5*
12878 F:      arch/arm/boot/dts/*dra7*
12879 F:      arch/arm/boot/dts/*omap*
12880 F:      arch/arm/boot/dts/logicpd-som-lv*
12881 F:      arch/arm/boot/dts/logicpd-torpedo*
12882
12883 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12884 L:      linux-omap@vger.kernel.org
12885 L:      linux-fbdev@vger.kernel.org
12886 S:      Orphan
12887 F:      Documentation/arm/omap/dss.rst
12888 F:      drivers/video/fbdev/omap2/
12889
12890 OMAP FRAMEBUFFER SUPPORT
12891 L:      linux-fbdev@vger.kernel.org
12892 L:      linux-omap@vger.kernel.org
12893 S:      Orphan
12894 F:      drivers/video/fbdev/omap/
12895
12896 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12897 M:      Roger Quadros <rogerq@ti.com>
12898 M:      Tony Lindgren <tony@atomide.com>
12899 L:      linux-omap@vger.kernel.org
12900 S:      Maintained
12901 F:      arch/arm/mach-omap2/*gpmc*
12902 F:      drivers/memory/omap-gpmc.c
12903
12904 OMAP GPIO DRIVER
12905 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12906 M:      Santosh Shilimkar <ssantosh@kernel.org>
12907 M:      Kevin Hilman <khilman@kernel.org>
12908 L:      linux-omap@vger.kernel.org
12909 S:      Maintained
12910 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12911 F:      drivers/gpio/gpio-omap.c
12912
12913 OMAP HARDWARE SPINLOCK SUPPORT
12914 M:      Ohad Ben-Cohen <ohad@wizery.com>
12915 L:      linux-omap@vger.kernel.org
12916 S:      Maintained
12917 F:      drivers/hwspinlock/omap_hwspinlock.c
12918
12919 OMAP HS MMC SUPPORT
12920 L:      linux-mmc@vger.kernel.org
12921 L:      linux-omap@vger.kernel.org
12922 S:      Orphan
12923 F:      drivers/mmc/host/omap_hsmmc.c
12924
12925 OMAP HWMOD DATA
12926 M:      Paul Walmsley <paul@pwsan.com>
12927 L:      linux-omap@vger.kernel.org
12928 S:      Maintained
12929 F:      arch/arm/mach-omap2/omap_hwmod*data*
12930
12931 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12932 M:      Benoît Cousson <bcousson@baylibre.com>
12933 L:      linux-omap@vger.kernel.org
12934 S:      Maintained
12935 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12936
12937 OMAP HWMOD SUPPORT
12938 M:      Benoît Cousson <bcousson@baylibre.com>
12939 M:      Paul Walmsley <paul@pwsan.com>
12940 L:      linux-omap@vger.kernel.org
12941 S:      Maintained
12942 F:      arch/arm/mach-omap2/omap_hwmod.*
12943
12944 OMAP I2C DRIVER
12945 M:      Vignesh R <vigneshr@ti.com>
12946 L:      linux-omap@vger.kernel.org
12947 L:      linux-i2c@vger.kernel.org
12948 S:      Maintained
12949 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12950 F:      drivers/i2c/busses/i2c-omap.c
12951
12952 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12953 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12954 L:      linux-media@vger.kernel.org
12955 S:      Maintained
12956 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12957 F:      drivers/media/platform/omap3isp/
12958 F:      drivers/staging/media/omap4iss/
12959
12960 OMAP MMC SUPPORT
12961 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12962 L:      linux-omap@vger.kernel.org
12963 S:      Odd Fixes
12964 F:      drivers/mmc/host/omap.c
12965
12966 OMAP POWER MANAGEMENT SUPPORT
12967 M:      Kevin Hilman <khilman@kernel.org>
12968 L:      linux-omap@vger.kernel.org
12969 S:      Maintained
12970 F:      arch/arm/*omap*/*pm*
12971 F:      drivers/cpufreq/omap-cpufreq.c
12972
12973 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12974 M:      Rajendra Nayak <rnayak@codeaurora.org>
12975 M:      Paul Walmsley <paul@pwsan.com>
12976 L:      linux-omap@vger.kernel.org
12977 S:      Maintained
12978 F:      arch/arm/mach-omap2/prm*
12979
12980 OMAP RANDOM NUMBER GENERATOR SUPPORT
12981 M:      Deepak Saxena <dsaxena@plexity.net>
12982 S:      Maintained
12983 F:      drivers/char/hw_random/omap-rng.c
12984
12985 OMAP USB SUPPORT
12986 L:      linux-usb@vger.kernel.org
12987 L:      linux-omap@vger.kernel.org
12988 S:      Orphan
12989 F:      arch/arm/*omap*/usb*
12990 F:      drivers/usb/*/*omap*
12991
12992 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12993 M:      Mark Jackson <mpfj@newflow.co.uk>
12994 L:      linux-omap@vger.kernel.org
12995 S:      Maintained
12996 F:      arch/arm/boot/dts/am335x-nano.dts
12997
12998 OMAP1 SUPPORT
12999 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13000 M:      Tony Lindgren <tony@atomide.com>
13001 L:      linux-omap@vger.kernel.org
13002 S:      Maintained
13003 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13005 F:      arch/arm/configs/omap1_defconfig
13006 F:      arch/arm/mach-omap1/
13007 F:      arch/arm/plat-omap/
13008 F:      drivers/i2c/busses/i2c-omap.c
13009 F:      include/linux/platform_data/ams-delta-fiq.h
13010 F:      include/linux/platform_data/i2c-omap.h
13011
13012 OMAP2+ SUPPORT
13013 M:      Tony Lindgren <tony@atomide.com>
13014 L:      linux-omap@vger.kernel.org
13015 S:      Maintained
13016 W:      http://www.muru.com/linux/omap/
13017 W:      http://linux.omap.com/
13018 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13020 F:      arch/arm/configs/omap2plus_defconfig
13021 F:      arch/arm/mach-omap2/
13022 F:      arch/arm/plat-omap/
13023 F:      drivers/bus/ti-sysc.c
13024 F:      drivers/i2c/busses/i2c-omap.c
13025 F:      drivers/irqchip/irq-omap-intc.c
13026 F:      drivers/mfd/*omap*.c
13027 F:      drivers/mfd/menelaus.c
13028 F:      drivers/mfd/palmas.c
13029 F:      drivers/mfd/tps65217.c
13030 F:      drivers/mfd/tps65218.c
13031 F:      drivers/mfd/tps65910.c
13032 F:      drivers/mfd/twl-core.[ch]
13033 F:      drivers/mfd/twl4030*.c
13034 F:      drivers/mfd/twl6030*.c
13035 F:      drivers/mfd/twl6040*.c
13036 F:      drivers/regulator/palmas-regulator*.c
13037 F:      drivers/regulator/pbias-regulator.c
13038 F:      drivers/regulator/tps65217-regulator.c
13039 F:      drivers/regulator/tps65218-regulator.c
13040 F:      drivers/regulator/tps65910-regulator.c
13041 F:      drivers/regulator/twl-regulator.c
13042 F:      drivers/regulator/twl6030-regulator.c
13043 F:      include/linux/platform_data/i2c-omap.h
13044 F:      include/linux/platform_data/ti-sysc.h
13045
13046 OMFS FILESYSTEM
13047 M:      Bob Copeland <me@bobcopeland.com>
13048 L:      linux-karma-devel@lists.sourceforge.net
13049 S:      Maintained
13050 F:      Documentation/filesystems/omfs.rst
13051 F:      fs/omfs/
13052
13053 OMNIKEY CARDMAN 4000 DRIVER
13054 M:      Harald Welte <laforge@gnumonks.org>
13055 S:      Maintained
13056 F:      drivers/char/pcmcia/cm4000_cs.c
13057 F:      include/linux/cm4000_cs.h
13058 F:      include/uapi/linux/cm4000_cs.h
13059
13060 OMNIKEY CARDMAN 4040 DRIVER
13061 M:      Harald Welte <laforge@gnumonks.org>
13062 S:      Maintained
13063 F:      drivers/char/pcmcia/cm4040_cs.*
13064
13065 OMNIVISION OV02A10 SENSOR DRIVER
13066 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13067 L:      linux-media@vger.kernel.org
13068 S:      Maintained
13069 T:      git git://linuxtv.org/media_tree.git
13070 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13071 F:      drivers/media/i2c/ov02a10.c
13072
13073 OMNIVISION OV13858 SENSOR DRIVER
13074 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13075 L:      linux-media@vger.kernel.org
13076 S:      Maintained
13077 T:      git git://linuxtv.org/media_tree.git
13078 F:      drivers/media/i2c/ov13858.c
13079
13080 OMNIVISION OV2680 SENSOR DRIVER
13081 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13082 L:      linux-media@vger.kernel.org
13083 S:      Maintained
13084 T:      git git://linuxtv.org/media_tree.git
13085 F:      Documentation/devicetree/bindings/media/i2c/ov2680.yaml
13086 F:      drivers/media/i2c/ov2680.c
13087
13088 OMNIVISION OV2685 SENSOR DRIVER
13089 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13090 L:      linux-media@vger.kernel.org
13091 S:      Maintained
13092 T:      git git://linuxtv.org/media_tree.git
13093 F:      drivers/media/i2c/ov2685.c
13094
13095 OMNIVISION OV2740 SENSOR DRIVER
13096 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13097 R:      Shawn Tu <shawnx.tu@intel.com>
13098 R:      Bingbu Cao <bingbu.cao@intel.com>
13099 L:      linux-media@vger.kernel.org
13100 S:      Maintained
13101 T:      git git://linuxtv.org/media_tree.git
13102 F:      drivers/media/i2c/ov2740.c
13103
13104 OMNIVISION OV5640 SENSOR DRIVER
13105 M:      Steve Longerbeam <slongerbeam@gmail.com>
13106 L:      linux-media@vger.kernel.org
13107 S:      Maintained
13108 T:      git git://linuxtv.org/media_tree.git
13109 F:      drivers/media/i2c/ov5640.c
13110
13111 OMNIVISION OV5647 SENSOR DRIVER
13112 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13113 M:      Jacopo Mondi <jacopo@jmondi.org>
13114 L:      linux-media@vger.kernel.org
13115 S:      Maintained
13116 T:      git git://linuxtv.org/media_tree.git
13117 F:      Documentation/devicetree/bindings/media/i2c/ov5647.yaml
13118 F:      drivers/media/i2c/ov5647.c
13119
13120 OMNIVISION OV5670 SENSOR DRIVER
13121 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13122 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13123 L:      linux-media@vger.kernel.org
13124 S:      Maintained
13125 T:      git git://linuxtv.org/media_tree.git
13126 F:      drivers/media/i2c/ov5670.c
13127
13128 OMNIVISION OV5675 SENSOR DRIVER
13129 M:      Shawn Tu <shawnx.tu@intel.com>
13130 L:      linux-media@vger.kernel.org
13131 S:      Maintained
13132 T:      git git://linuxtv.org/media_tree.git
13133 F:      drivers/media/i2c/ov5675.c
13134
13135 OMNIVISION OV5695 SENSOR DRIVER
13136 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13137 L:      linux-media@vger.kernel.org
13138 S:      Maintained
13139 T:      git git://linuxtv.org/media_tree.git
13140 F:      drivers/media/i2c/ov5695.c
13141
13142 OMNIVISION OV7670 SENSOR DRIVER
13143 L:      linux-media@vger.kernel.org
13144 S:      Orphan
13145 T:      git git://linuxtv.org/media_tree.git
13146 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13147 F:      drivers/media/i2c/ov7670.c
13148
13149 OMNIVISION OV772x SENSOR DRIVER
13150 M:      Jacopo Mondi <jacopo@jmondi.org>
13151 L:      linux-media@vger.kernel.org
13152 S:      Odd fixes
13153 T:      git git://linuxtv.org/media_tree.git
13154 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13155 F:      drivers/media/i2c/ov772x.c
13156 F:      include/media/i2c/ov772x.h
13157
13158 OMNIVISION OV7740 SENSOR DRIVER
13159 M:      Wenyou Yang <wenyou.yang@microchip.com>
13160 L:      linux-media@vger.kernel.org
13161 S:      Maintained
13162 T:      git git://linuxtv.org/media_tree.git
13163 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13164 F:      drivers/media/i2c/ov7740.c
13165
13166 OMNIVISION OV8856 SENSOR DRIVER
13167 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13168 L:      linux-media@vger.kernel.org
13169 S:      Maintained
13170 T:      git git://linuxtv.org/media_tree.git
13171 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13172 F:      drivers/media/i2c/ov8856.c
13173
13174 OMNIVISION OV9640 SENSOR DRIVER
13175 M:      Petr Cvek <petrcvekcz@gmail.com>
13176 L:      linux-media@vger.kernel.org
13177 S:      Maintained
13178 F:      drivers/media/i2c/ov9640.*
13179
13180 OMNIVISION OV9650 SENSOR DRIVER
13181 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13182 R:      Akinobu Mita <akinobu.mita@gmail.com>
13183 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13184 L:      linux-media@vger.kernel.org
13185 S:      Maintained
13186 T:      git git://linuxtv.org/media_tree.git
13187 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13188 F:      drivers/media/i2c/ov9650.c
13189
13190 OMNIVISION OV9734 SENSOR DRIVER
13191 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13192 R:      Bingbu Cao <bingbu.cao@intel.com>
13193 L:      linux-media@vger.kernel.org
13194 S:      Maintained
13195 T:      git git://linuxtv.org/media_tree.git
13196 F:      drivers/media/i2c/ov9734.c
13197
13198 ONENAND FLASH DRIVER
13199 M:      Kyungmin Park <kyungmin.park@samsung.com>
13200 L:      linux-mtd@lists.infradead.org
13201 S:      Maintained
13202 F:      drivers/mtd/nand/onenand/
13203 F:      include/linux/mtd/onenand*.h
13204
13205 ONION OMEGA2+ BOARD
13206 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13207 L:      linux-mips@vger.kernel.org
13208 S:      Maintained
13209 F:      arch/mips/boot/dts/ralink/omega2p.dts
13210
13211 OP-TEE DRIVER
13212 M:      Jens Wiklander <jens.wiklander@linaro.org>
13213 L:      op-tee@lists.trustedfirmware.org
13214 S:      Maintained
13215 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13216 F:      drivers/tee/optee/
13217
13218 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13219 M:      Sumit Garg <sumit.garg@linaro.org>
13220 L:      op-tee@lists.trustedfirmware.org
13221 S:      Maintained
13222 F:      drivers/char/hw_random/optee-rng.c
13223
13224 OPA-VNIC DRIVER
13225 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13226 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13227 L:      linux-rdma@vger.kernel.org
13228 S:      Supported
13229 F:      drivers/infiniband/ulp/opa_vnic
13230
13231 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13232 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13233 M:      Frank Rowand <frowand.list@gmail.com>
13234 L:      devicetree@vger.kernel.org
13235 S:      Maintained
13236 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13237 F:      Documentation/devicetree/overlay-notes.rst
13238 F:      drivers/of/overlay.c
13239 F:      drivers/of/resolver.c
13240 K:      of_overlay_notifier_
13241
13242 OPEN FIRMWARE AND FLATTENED DEVICE TREE
13243 M:      Rob Herring <robh+dt@kernel.org>
13244 M:      Frank Rowand <frowand.list@gmail.com>
13245 L:      devicetree@vger.kernel.org
13246 S:      Maintained
13247 W:      http://www.devicetree.org/
13248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13249 F:      Documentation/ABI/testing/sysfs-firmware-ofw
13250 F:      drivers/of/
13251 F:      include/linux/of*.h
13252 F:      scripts/dtc/
13253
13254 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
13255 M:      Rob Herring <robh+dt@kernel.org>
13256 L:      devicetree@vger.kernel.org
13257 S:      Maintained
13258 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
13259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
13260 F:      Documentation/devicetree/
13261 F:      arch/*/boot/dts/
13262 F:      include/dt-bindings/
13263
13264 OPENCORES I2C BUS DRIVER
13265 M:      Peter Korsgaard <peter@korsgaard.com>
13266 M:      Andrew Lunn <andrew@lunn.ch>
13267 L:      linux-i2c@vger.kernel.org
13268 S:      Maintained
13269 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
13270 F:      Documentation/i2c/busses/i2c-ocores.rst
13271 F:      drivers/i2c/busses/i2c-ocores.c
13272 F:      include/linux/platform_data/i2c-ocores.h
13273
13274 OPENRISC ARCHITECTURE
13275 M:      Jonas Bonn <jonas@southpole.se>
13276 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
13277 M:      Stafford Horne <shorne@gmail.com>
13278 L:      openrisc@lists.librecores.org
13279 S:      Maintained
13280 W:      http://openrisc.io
13281 T:      git git://github.com/openrisc/linux.git
13282 F:      Documentation/devicetree/bindings/openrisc/
13283 F:      Documentation/openrisc/
13284 F:      arch/openrisc/
13285 F:      drivers/irqchip/irq-ompic.c
13286 F:      drivers/irqchip/irq-or1k-*
13287
13288 OPENVSWITCH
13289 M:      Pravin B Shelar <pshelar@ovn.org>
13290 L:      netdev@vger.kernel.org
13291 L:      dev@openvswitch.org
13292 S:      Maintained
13293 W:      http://openvswitch.org
13294 F:      include/uapi/linux/openvswitch.h
13295 F:      net/openvswitch/
13296
13297 OPERATING PERFORMANCE POINTS (OPP)
13298 M:      Viresh Kumar <vireshk@kernel.org>
13299 M:      Nishanth Menon <nm@ti.com>
13300 M:      Stephen Boyd <sboyd@kernel.org>
13301 L:      linux-pm@vger.kernel.org
13302 S:      Maintained
13303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
13304 F:      Documentation/devicetree/bindings/opp/
13305 F:      Documentation/power/opp.rst
13306 F:      drivers/opp/
13307 F:      include/linux/pm_opp.h
13308
13309 OPL4 DRIVER
13310 M:      Clemens Ladisch <clemens@ladisch.de>
13311 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13312 S:      Maintained
13313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
13314 F:      sound/drivers/opl4/
13315
13316 OPROFILE
13317 M:      Robert Richter <rric@kernel.org>
13318 L:      oprofile-list@lists.sf.net
13319 S:      Maintained
13320 F:      arch/*/include/asm/oprofile*.h
13321 F:      arch/*/oprofile/
13322 F:      drivers/oprofile/
13323 F:      include/linux/oprofile.h
13324
13325 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
13326 M:      Mark Fasheh <mark@fasheh.com>
13327 M:      Joel Becker <jlbec@evilplan.org>
13328 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
13329 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
13330 S:      Supported
13331 W:      http://ocfs2.wiki.kernel.org
13332 F:      Documentation/filesystems/dlmfs.rst
13333 F:      Documentation/filesystems/ocfs2.rst
13334 F:      fs/ocfs2/
13335
13336 ORANGEFS FILESYSTEM
13337 M:      Mike Marshall <hubcap@omnibond.com>
13338 R:      Martin Brandenburg <martin@omnibond.com>
13339 L:      devel@lists.orangefs.org
13340 S:      Supported
13341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
13342 F:      Documentation/filesystems/orangefs.rst
13343 F:      fs/orangefs/
13344
13345 ORINOCO DRIVER
13346 L:      linux-wireless@vger.kernel.org
13347 S:      Orphan
13348 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
13349 W:      http://www.nongnu.org/orinoco/
13350 F:      drivers/net/wireless/intersil/orinoco/
13351
13352 OV2659 OMNIVISION SENSOR DRIVER
13353 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13354 L:      linux-media@vger.kernel.org
13355 S:      Maintained
13356 W:      https://linuxtv.org
13357 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13358 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13359 F:      drivers/media/i2c/ov2659.c
13360 F:      include/media/i2c/ov2659.h
13361
13362 OVERLAY FILESYSTEM
13363 M:      Miklos Szeredi <miklos@szeredi.hu>
13364 L:      linux-unionfs@vger.kernel.org
13365 S:      Supported
13366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
13367 F:      Documentation/filesystems/overlayfs.rst
13368 F:      fs/overlayfs/
13369
13370 P54 WIRELESS DRIVER
13371 M:      Christian Lamparter <chunkeey@googlemail.com>
13372 L:      linux-wireless@vger.kernel.org
13373 S:      Maintained
13374 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13375 F:      drivers/net/wireless/intersil/p54/
13376
13377 PACKING
13378 M:      Vladimir Oltean <olteanv@gmail.com>
13379 L:      netdev@vger.kernel.org
13380 S:      Supported
13381 F:      Documentation/core-api/packing.rst
13382 F:      include/linux/packing.h
13383 F:      lib/packing.c
13384
13385 PADATA PARALLEL EXECUTION MECHANISM
13386 M:      Steffen Klassert <steffen.klassert@secunet.com>
13387 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
13388 L:      linux-crypto@vger.kernel.org
13389 L:      linux-kernel@vger.kernel.org
13390 S:      Maintained
13391 F:      Documentation/core-api/padata.rst
13392 F:      include/linux/padata.h
13393 F:      kernel/padata.c
13394
13395 PAGE POOL
13396 M:      Jesper Dangaard Brouer <hawk@kernel.org>
13397 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
13398 L:      netdev@vger.kernel.org
13399 S:      Supported
13400 F:      Documentation/networking/page_pool.rst
13401 F:      include/net/page_pool.h
13402 F:      include/trace/events/page_pool.h
13403 F:      net/core/page_pool.c
13404
13405 PANASONIC LAPTOP ACPI EXTRAS DRIVER
13406 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
13407 L:      platform-driver-x86@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/platform/x86/panasonic-laptop.c
13410
13411 PARALLAX PING IIO SENSOR DRIVER
13412 M:      Andreas Klinger <ak@it-klinger.de>
13413 L:      linux-iio@vger.kernel.org
13414 S:      Maintained
13415 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
13416 F:      drivers/iio/proximity/ping.c
13417
13418 PARALLEL LCD/KEYPAD PANEL DRIVER
13419 M:      Willy Tarreau <willy@haproxy.com>
13420 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
13421 S:      Odd Fixes
13422 F:      Documentation/admin-guide/lcd-panel-cgram.rst
13423 F:      drivers/auxdisplay/panel.c
13424
13425 PARALLEL PORT SUBSYSTEM
13426 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13427 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13428 L:      linux-parport@lists.infradead.org (subscribers-only)
13429 S:      Maintained
13430 F:      Documentation/driver-api/parport*.rst
13431 F:      drivers/char/ppdev.c
13432 F:      drivers/parport/
13433 F:      include/linux/parport*.h
13434 F:      include/uapi/linux/ppdev.h
13435
13436 PARAVIRT_OPS INTERFACE
13437 M:      Juergen Gross <jgross@suse.com>
13438 M:      Deep Shah <sdeep@vmware.com>
13439 M:      "VMware, Inc." <pv-drivers@vmware.com>
13440 L:      virtualization@lists.linux-foundation.org
13441 S:      Supported
13442 F:      Documentation/virt/paravirt_ops.rst
13443 F:      arch/*/include/asm/paravirt*.h
13444 F:      arch/*/kernel/paravirt*
13445 F:      include/linux/hypervisor.h
13446
13447 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
13448 M:      Tim Waugh <tim@cyberelk.net>
13449 L:      linux-parport@lists.infradead.org (subscribers-only)
13450 S:      Maintained
13451 F:      Documentation/admin-guide/blockdev/paride.rst
13452 F:      drivers/block/paride/
13453
13454 PARISC ARCHITECTURE
13455 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
13456 M:      Helge Deller <deller@gmx.de>
13457 L:      linux-parisc@vger.kernel.org
13458 S:      Maintained
13459 W:      https://parisc.wiki.kernel.org
13460 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
13461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
13462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
13463 F:      Documentation/parisc/
13464 F:      arch/parisc/
13465 F:      drivers/char/agp/parisc-agp.c
13466 F:      drivers/input/misc/hp_sdc_rtc.c
13467 F:      drivers/input/serio/gscps2.c
13468 F:      drivers/input/serio/hp_sdc*
13469 F:      drivers/parisc/
13470 F:      drivers/parport/parport_gsc.*
13471 F:      drivers/tty/serial/8250/8250_gsc.c
13472 F:      drivers/video/console/sti*
13473 F:      drivers/video/fbdev/sti*
13474 F:      drivers/video/logo/logo_parisc*
13475 F:      include/linux/hp_sdc.h
13476
13477 PARMAN
13478 M:      Jiri Pirko <jiri@nvidia.com>
13479 L:      netdev@vger.kernel.org
13480 S:      Supported
13481 F:      include/linux/parman.h
13482 F:      lib/parman.c
13483 F:      lib/test_parman.c
13484
13485 PC ENGINES APU BOARD DRIVER
13486 M:      Enrico Weigelt, metux IT consult <info@metux.net>
13487 S:      Maintained
13488 F:      drivers/platform/x86/pcengines-apuv2.c
13489
13490 PC87360 HARDWARE MONITORING DRIVER
13491 M:      Jim Cromie <jim.cromie@gmail.com>
13492 L:      linux-hwmon@vger.kernel.org
13493 S:      Maintained
13494 F:      Documentation/hwmon/pc87360.rst
13495 F:      drivers/hwmon/pc87360.c
13496
13497 PC8736x GPIO DRIVER
13498 M:      Jim Cromie <jim.cromie@gmail.com>
13499 S:      Maintained
13500 F:      drivers/char/pc8736x_gpio.c
13501
13502 PC87427 HARDWARE MONITORING DRIVER
13503 M:      Jean Delvare <jdelvare@suse.com>
13504 L:      linux-hwmon@vger.kernel.org
13505 S:      Maintained
13506 F:      Documentation/hwmon/pc87427.rst
13507 F:      drivers/hwmon/pc87427.c
13508
13509 PCA9532 LED DRIVER
13510 M:      Riku Voipio <riku.voipio@iki.fi>
13511 S:      Maintained
13512 F:      drivers/leds/leds-pca9532.c
13513 F:      include/linux/leds-pca9532.h
13514
13515 PCA9541 I2C BUS MASTER SELECTOR DRIVER
13516 M:      Guenter Roeck <linux@roeck-us.net>
13517 L:      linux-i2c@vger.kernel.org
13518 S:      Maintained
13519 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
13520
13521 PCDP - PRIMARY CONSOLE AND DEBUG PORT
13522 M:      Khalid Aziz <khalid@gonehiking.org>
13523 S:      Maintained
13524 F:      drivers/firmware/pcdp.*
13525
13526 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
13527 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13528 M:      Pali Rohár <pali@kernel.org>
13529 L:      linux-pci@vger.kernel.org
13530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13531 S:      Maintained
13532 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
13533 F:      drivers/pci/controller/pci-aardvark.c
13534
13535 PCI DRIVER FOR ALTERA PCIE IP
13536 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13537 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13538 L:      linux-pci@vger.kernel.org
13539 S:      Supported
13540 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
13541 F:      drivers/pci/controller/pcie-altera.c
13542
13543 PCI DRIVER FOR APPLIEDMICRO XGENE
13544 M:      Toan Le <toan@os.amperecomputing.com>
13545 L:      linux-pci@vger.kernel.org
13546 L:      linux-arm-kernel@lists.infradead.org
13547 S:      Maintained
13548 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
13549 F:      drivers/pci/controller/pci-xgene.c
13550
13551 PCI DRIVER FOR ARM VERSATILE PLATFORM
13552 M:      Rob Herring <robh@kernel.org>
13553 L:      linux-pci@vger.kernel.org
13554 L:      linux-arm-kernel@lists.infradead.org
13555 S:      Maintained
13556 F:      Documentation/devicetree/bindings/pci/versatile.yaml
13557 F:      drivers/pci/controller/pci-versatile.c
13558
13559 PCI DRIVER FOR ARMADA 8K
13560 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13561 L:      linux-pci@vger.kernel.org
13562 L:      linux-arm-kernel@lists.infradead.org
13563 S:      Maintained
13564 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
13565 F:      drivers/pci/controller/dwc/pcie-armada8k.c
13566
13567 PCI DRIVER FOR CADENCE PCIE IP
13568 M:      Tom Joseph <tjoseph@cadence.com>
13569 L:      linux-pci@vger.kernel.org
13570 S:      Maintained
13571 F:      Documentation/devicetree/bindings/pci/cdns,*
13572 F:      drivers/pci/controller/cadence/
13573
13574 PCI DRIVER FOR FREESCALE LAYERSCAPE
13575 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13576 M:      Mingkai Hu <mingkai.hu@nxp.com>
13577 M:      Roy Zang <roy.zang@nxp.com>
13578 L:      linuxppc-dev@lists.ozlabs.org
13579 L:      linux-pci@vger.kernel.org
13580 L:      linux-arm-kernel@lists.infradead.org
13581 S:      Maintained
13582 F:      drivers/pci/controller/dwc/*layerscape*
13583
13584 PCI DRIVER FOR GENERIC OF HOSTS
13585 M:      Will Deacon <will@kernel.org>
13586 L:      linux-pci@vger.kernel.org
13587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13590 F:      drivers/pci/controller/pci-host-common.c
13591 F:      drivers/pci/controller/pci-host-generic.c
13592
13593 PCI DRIVER FOR IMX6
13594 M:      Richard Zhu <hongxing.zhu@nxp.com>
13595 M:      Lucas Stach <l.stach@pengutronix.de>
13596 L:      linux-pci@vger.kernel.org
13597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13598 S:      Maintained
13599 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13600 F:      drivers/pci/controller/dwc/*imx6*
13601
13602 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13603 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13604 L:      linux-pci@vger.kernel.org
13605 S:      Supported
13606 F:      drivers/pci/controller/vmd.c
13607
13608 PCI DRIVER FOR MICROSEMI SWITCHTEC
13609 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13610 M:      Logan Gunthorpe <logang@deltatee.com>
13611 L:      linux-pci@vger.kernel.org
13612 S:      Maintained
13613 F:      Documentation/ABI/testing/sysfs-class-switchtec
13614 F:      Documentation/driver-api/switchtec.rst
13615 F:      drivers/ntb/hw/mscc/
13616 F:      drivers/pci/switch/switchtec*
13617 F:      include/linux/switchtec.h
13618 F:      include/uapi/linux/switchtec_ioctl.h
13619
13620 PCI DRIVER FOR MOBIVEIL PCIE IP
13621 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13622 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13623 L:      linux-pci@vger.kernel.org
13624 S:      Supported
13625 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13626 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13627
13628 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13629 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13630 L:      linux-pci@vger.kernel.org
13631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13632 S:      Maintained
13633 F:      drivers/pci/controller/*mvebu*
13634
13635 PCI DRIVER FOR NVIDIA TEGRA
13636 M:      Thierry Reding <thierry.reding@gmail.com>
13637 L:      linux-tegra@vger.kernel.org
13638 L:      linux-pci@vger.kernel.org
13639 S:      Supported
13640 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13641 F:      drivers/pci/controller/pci-tegra.c
13642
13643 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13644 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13645 L:      linux-pci@vger.kernel.org
13646 L:      linux-arm-kernel@lists.infradead.org
13647 S:      Maintained
13648 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13649 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
13650
13651 PCI DRIVER FOR RENESAS R-CAR
13652 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13653 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13654 L:      linux-pci@vger.kernel.org
13655 L:      linux-renesas-soc@vger.kernel.org
13656 S:      Maintained
13657 F:      Documentation/devicetree/bindings/pci/*rcar*
13658 F:      drivers/pci/controller/*rcar*
13659
13660 PCI DRIVER FOR SAMSUNG EXYNOS
13661 M:      Jingoo Han <jingoohan1@gmail.com>
13662 L:      linux-pci@vger.kernel.org
13663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13664 L:      linux-samsung-soc@vger.kernel.org
13665 S:      Maintained
13666 F:      drivers/pci/controller/dwc/pci-exynos.c
13667
13668 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13669 M:      Jingoo Han <jingoohan1@gmail.com>
13670 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13671 L:      linux-pci@vger.kernel.org
13672 S:      Maintained
13673 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13674 F:      drivers/pci/controller/dwc/*designware*
13675
13676 PCI DRIVER FOR TI DRA7XX/J721E
13677 M:      Kishon Vijay Abraham I <kishon@ti.com>
13678 L:      linux-omap@vger.kernel.org
13679 L:      linux-pci@vger.kernel.org
13680 L:      linux-arm-kernel@lists.infradead.org
13681 S:      Supported
13682 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13683 F:      drivers/pci/controller/cadence/pci-j721e.c
13684 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13685
13686 PCI DRIVER FOR TI KEYSTONE
13687 M:      Murali Karicheri <m-karicheri2@ti.com>
13688 L:      linux-pci@vger.kernel.org
13689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13690 S:      Maintained
13691 F:      drivers/pci/controller/dwc/pci-keystone.c
13692
13693 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13694 M:      Linus Walleij <linus.walleij@linaro.org>
13695 L:      linux-pci@vger.kernel.org
13696 S:      Maintained
13697 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13698 F:      drivers/pci/controller/pci-v3-semi.c
13699
13700 PCI ENDPOINT SUBSYSTEM
13701 M:      Kishon Vijay Abraham I <kishon@ti.com>
13702 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13703 L:      linux-pci@vger.kernel.org
13704 S:      Supported
13705 F:      Documentation/PCI/endpoint/*
13706 F:      Documentation/misc-devices/pci-endpoint-test.rst
13707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13708 F:      drivers/misc/pci_endpoint_test.c
13709 F:      drivers/pci/endpoint/
13710 F:      tools/pci/
13711
13712 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13713 M:      Russell Currey <ruscur@russell.cc>
13714 M:      Oliver O'Halloran <oohall@gmail.com>
13715 L:      linuxppc-dev@lists.ozlabs.org
13716 S:      Supported
13717 F:      Documentation/PCI/pci-error-recovery.rst
13718 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13719 F:      arch/powerpc/include/*/eeh*.h
13720 F:      arch/powerpc/kernel/eeh*.c
13721 F:      arch/powerpc/platforms/*/eeh*.c
13722 F:      drivers/pci/pcie/aer.c
13723 F:      drivers/pci/pcie/dpc.c
13724 F:      drivers/pci/pcie/err.c
13725
13726 PCI ERROR RECOVERY
13727 M:      Linas Vepstas <linasvepstas@gmail.com>
13728 L:      linux-pci@vger.kernel.org
13729 S:      Supported
13730 F:      Documentation/PCI/pci-error-recovery.rst
13731
13732 PCI MSI DRIVER FOR ALTERA MSI IP
13733 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13734 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13735 L:      linux-pci@vger.kernel.org
13736 S:      Supported
13737 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13738 F:      drivers/pci/controller/pcie-altera-msi.c
13739
13740 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13741 M:      Toan Le <toan@os.amperecomputing.com>
13742 L:      linux-pci@vger.kernel.org
13743 L:      linux-arm-kernel@lists.infradead.org
13744 S:      Maintained
13745 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13746 F:      drivers/pci/controller/pci-xgene-msi.c
13747
13748 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13749 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13750 R:      Rob Herring <robh@kernel.org>
13751 L:      linux-pci@vger.kernel.org
13752 S:      Supported
13753 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13755 F:      drivers/pci/controller/
13756
13757 PCI SUBSYSTEM
13758 M:      Bjorn Helgaas <bhelgaas@google.com>
13759 L:      linux-pci@vger.kernel.org
13760 S:      Supported
13761 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13763 F:      Documentation/PCI/
13764 F:      Documentation/devicetree/bindings/pci/
13765 F:      arch/x86/kernel/early-quirks.c
13766 F:      arch/x86/kernel/quirks.c
13767 F:      arch/x86/pci/
13768 F:      drivers/acpi/pci*
13769 F:      drivers/pci/
13770 F:      include/asm-generic/pci*
13771 F:      include/linux/of_pci.h
13772 F:      include/linux/pci*
13773 F:      include/uapi/linux/pci*
13774 F:      lib/pci*
13775
13776 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13777 M:      Jonathan Chocron <jonnyc@amazon.com>
13778 L:      linux-pci@vger.kernel.org
13779 S:      Maintained
13780 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13781 F:      drivers/pci/controller/dwc/pcie-al.c
13782
13783 PCIE DRIVER FOR AMLOGIC MESON
13784 M:      Yue Wang <yue.wang@Amlogic.com>
13785 L:      linux-pci@vger.kernel.org
13786 L:      linux-amlogic@lists.infradead.org
13787 S:      Maintained
13788 F:      drivers/pci/controller/dwc/pci-meson.c
13789
13790 PCIE DRIVER FOR AXIS ARTPEC
13791 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13792 L:      linux-arm-kernel@axis.com
13793 L:      linux-pci@vger.kernel.org
13794 S:      Maintained
13795 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13796 F:      drivers/pci/controller/dwc/*artpec*
13797
13798 PCIE DRIVER FOR CAVIUM THUNDERX
13799 M:      Robert Richter <rric@kernel.org>
13800 L:      linux-pci@vger.kernel.org
13801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13802 S:      Odd Fixes
13803 F:      drivers/pci/controller/pci-thunder-*
13804
13805 PCIE DRIVER FOR HISILICON
13806 M:      Zhou Wang <wangzhou1@hisilicon.com>
13807 L:      linux-pci@vger.kernel.org
13808 S:      Maintained
13809 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13810 F:      drivers/pci/controller/dwc/pcie-hisi.c
13811
13812 PCIE DRIVER FOR HISILICON KIRIN
13813 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13814 M:      Binghui Wang <wangbinghui@hisilicon.com>
13815 L:      linux-pci@vger.kernel.org
13816 S:      Maintained
13817 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13818 F:      drivers/pci/controller/dwc/pcie-kirin.c
13819
13820 PCIE DRIVER FOR HISILICON STB
13821 M:      Shawn Guo <shawn.guo@linaro.org>
13822 L:      linux-pci@vger.kernel.org
13823 S:      Maintained
13824 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13825 F:      drivers/pci/controller/dwc/pcie-histb.c
13826
13827 PCIE DRIVER FOR MEDIATEK
13828 M:      Ryder Lee <ryder.lee@mediatek.com>
13829 L:      linux-pci@vger.kernel.org
13830 L:      linux-mediatek@lists.infradead.org
13831 S:      Supported
13832 F:      Documentation/devicetree/bindings/pci/mediatek*
13833 F:      drivers/pci/controller/*mediatek*
13834
13835 PCIE DRIVER FOR QUALCOMM MSM
13836 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13837 L:      linux-pci@vger.kernel.org
13838 L:      linux-arm-msm@vger.kernel.org
13839 S:      Maintained
13840 F:      drivers/pci/controller/dwc/*qcom*
13841
13842 PCIE DRIVER FOR ROCKCHIP
13843 M:      Shawn Lin <shawn.lin@rock-chips.com>
13844 L:      linux-pci@vger.kernel.org
13845 L:      linux-rockchip@lists.infradead.org
13846 S:      Maintained
13847 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13848 F:      drivers/pci/controller/pcie-rockchip*
13849
13850 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13851 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13852 L:      linux-pci@vger.kernel.org
13853 S:      Maintained
13854 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13855 F:      drivers/pci/controller/dwc/pcie-uniphier*
13856
13857 PCIE DRIVER FOR ST SPEAR13XX
13858 M:      Pratyush Anand <pratyush.anand@gmail.com>
13859 L:      linux-pci@vger.kernel.org
13860 S:      Maintained
13861 F:      drivers/pci/controller/dwc/*spear*
13862
13863 PCMCIA SUBSYSTEM
13864 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13865 S:      Odd Fixes
13866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13867 F:      Documentation/pcmcia/
13868 F:      drivers/pcmcia/
13869 F:      include/pcmcia/
13870 F:      tools/pcmcia/
13871
13872 PCNET32 NETWORK DRIVER
13873 M:      Don Fry <pcnet32@frontier.com>
13874 L:      netdev@vger.kernel.org
13875 S:      Maintained
13876 F:      drivers/net/ethernet/amd/pcnet32.c
13877
13878 PCRYPT PARALLEL CRYPTO ENGINE
13879 M:      Steffen Klassert <steffen.klassert@secunet.com>
13880 L:      linux-crypto@vger.kernel.org
13881 S:      Maintained
13882 F:      crypto/pcrypt.c
13883 F:      include/crypto/pcrypt.h
13884
13885 PEAQ WMI HOTKEYS DRIVER
13886 M:      Hans de Goede <hdegoede@redhat.com>
13887 L:      platform-driver-x86@vger.kernel.org
13888 S:      Maintained
13889 F:      drivers/platform/x86/peaq-wmi.c
13890
13891 PENSANDO ETHERNET DRIVERS
13892 M:      Shannon Nelson <snelson@pensando.io>
13893 M:      drivers@pensando.io
13894 L:      netdev@vger.kernel.org
13895 S:      Supported
13896 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
13897 F:      drivers/net/ethernet/pensando/
13898
13899 PER-CPU MEMORY ALLOCATOR
13900 M:      Dennis Zhou <dennis@kernel.org>
13901 M:      Tejun Heo <tj@kernel.org>
13902 M:      Christoph Lameter <cl@linux.com>
13903 S:      Maintained
13904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13905 F:      arch/*/include/asm/percpu.h
13906 F:      include/linux/percpu*.h
13907 F:      mm/percpu*.c
13908
13909 PER-TASK DELAY ACCOUNTING
13910 M:      Balbir Singh <bsingharora@gmail.com>
13911 S:      Maintained
13912 F:      include/linux/delayacct.h
13913 F:      kernel/delayacct.c
13914
13915 PERFORMANCE EVENTS SUBSYSTEM
13916 M:      Peter Zijlstra <peterz@infradead.org>
13917 M:      Ingo Molnar <mingo@redhat.com>
13918 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13919 R:      Mark Rutland <mark.rutland@arm.com>
13920 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13921 R:      Jiri Olsa <jolsa@redhat.com>
13922 R:      Namhyung Kim <namhyung@kernel.org>
13923 L:      linux-kernel@vger.kernel.org
13924 S:      Supported
13925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13926 F:      arch/*/events/*
13927 F:      arch/*/events/*/*
13928 F:      arch/*/include/asm/perf_event.h
13929 F:      arch/*/kernel/*/*/perf_event*.c
13930 F:      arch/*/kernel/*/perf_event*.c
13931 F:      arch/*/kernel/perf_callchain.c
13932 F:      arch/*/kernel/perf_event*.c
13933 F:      include/linux/perf_event.h
13934 F:      include/uapi/linux/perf_event.h
13935 F:      kernel/events/*
13936 F:      tools/lib/perf/
13937 F:      tools/perf/
13938
13939 PERFORMANCE EVENTS TOOLING ARM64
13940 R:      John Garry <john.garry@huawei.com>
13941 R:      Will Deacon <will@kernel.org>
13942 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
13943 R:      Leo Yan <leo.yan@linaro.org>
13944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13945 S:      Supported
13946 F:      tools/build/feature/test-libopencsd.c
13947 F:      tools/perf/arch/arm*/
13948 F:      tools/perf/pmu-events/arch/arm64/
13949 F:      tools/perf/util/arm-spe*
13950 F:      tools/perf/util/cs-etm*
13951
13952 PERSONALITY HANDLING
13953 M:      Christoph Hellwig <hch@infradead.org>
13954 L:      linux-abi-devel@lists.sourceforge.net
13955 S:      Maintained
13956 F:      include/linux/personality.h
13957 F:      include/uapi/linux/personality.h
13958
13959 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13960 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13961 L:      linux-input@vger.kernel.org
13962 S:      Maintained
13963 F:      Documentation/input/devices/pxrc.rst
13964 F:      drivers/input/joystick/pxrc.c
13965
13966 PHONET PROTOCOL
13967 M:      Remi Denis-Courmont <courmisch@gmail.com>
13968 S:      Supported
13969 F:      Documentation/networking/phonet.rst
13970 F:      include/linux/phonet.h
13971 F:      include/net/phonet/
13972 F:      include/uapi/linux/phonet.h
13973 F:      net/phonet/
13974
13975 PHRAM MTD DRIVER
13976 M:      Joern Engel <joern@lazybastard.org>
13977 L:      linux-mtd@lists.infradead.org
13978 S:      Maintained
13979 F:      drivers/mtd/devices/phram.c
13980
13981 PICOLCD HID DRIVER
13982 M:      Bruno Prémont <bonbons@linux-vserver.org>
13983 L:      linux-input@vger.kernel.org
13984 S:      Maintained
13985 F:      drivers/hid/hid-picolcd*
13986
13987 PICOXCELL SUPPORT
13988 M:      Jamie Iles <jamie@jamieiles.com>
13989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13990 S:      Supported
13991 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13992 F:      arch/arm/boot/dts/picoxcell*
13993 F:      arch/arm/mach-picoxcell/
13994 F:      drivers/crypto/picoxcell*
13995
13996 PIDFD API
13997 M:      Christian Brauner <christian@brauner.io>
13998 L:      linux-kernel@vger.kernel.org
13999 S:      Maintained
14000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14001 F:      samples/pidfd/
14002 F:      tools/testing/selftests/clone3/
14003 F:      tools/testing/selftests/pid_namespace/
14004 F:      tools/testing/selftests/pidfd/
14005 K:      (?i)pidfd
14006 K:      (?i)clone3
14007 K:      \b(clone_args|kernel_clone_args)\b
14008
14009 PIN CONTROL SUBSYSTEM
14010 M:      Linus Walleij <linus.walleij@linaro.org>
14011 L:      linux-gpio@vger.kernel.org
14012 S:      Maintained
14013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14014 F:      Documentation/devicetree/bindings/pinctrl/
14015 F:      Documentation/driver-api/pinctl.rst
14016 F:      drivers/pinctrl/
14017 F:      include/linux/pinctrl/
14018
14019 PIN CONTROLLER - FREESCALE
14020 M:      Dong Aisheng <aisheng.dong@nxp.com>
14021 M:      Fabio Estevam <festevam@gmail.com>
14022 M:      Shawn Guo <shawnguo@kernel.org>
14023 M:      Stefan Agner <stefan@agner.ch>
14024 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14025 L:      linux-gpio@vger.kernel.org
14026 S:      Maintained
14027 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14028 F:      drivers/pinctrl/freescale/
14029
14030 PIN CONTROLLER - INTEL
14031 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14032 M:      Andy Shevchenko <andy@kernel.org>
14033 S:      Maintained
14034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14035 F:      drivers/pinctrl/intel/
14036
14037 PIN CONTROLLER - MEDIATEK
14038 M:      Sean Wang <sean.wang@kernel.org>
14039 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14040 S:      Maintained
14041 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
14042 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
14043 F:      drivers/pinctrl/mediatek/
14044
14045 PIN CONTROLLER - MICROCHIP AT91
14046 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14048 L:      linux-gpio@vger.kernel.org
14049 S:      Supported
14050 F:      drivers/gpio/gpio-sama5d2-piobu.c
14051 F:      drivers/pinctrl/pinctrl-at91*
14052
14053 PIN CONTROLLER - QUALCOMM
14054 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14055 L:      linux-arm-msm@vger.kernel.org
14056 S:      Maintained
14057 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14058 F:      drivers/pinctrl/qcom/
14059
14060 PIN CONTROLLER - RENESAS
14061 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14062 L:      linux-renesas-soc@vger.kernel.org
14063 S:      Supported
14064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14065 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14066 F:      drivers/pinctrl/renesas/
14067
14068 PIN CONTROLLER - SAMSUNG
14069 M:      Tomasz Figa <tomasz.figa@gmail.com>
14070 M:      Krzysztof Kozlowski <krzk@kernel.org>
14071 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14073 L:      linux-samsung-soc@vger.kernel.org
14074 S:      Maintained
14075 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14077 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14078 F:      drivers/pinctrl/samsung/
14079 F:      include/dt-bindings/pinctrl/samsung.h
14080
14081 PIN CONTROLLER - SINGLE
14082 M:      Tony Lindgren <tony@atomide.com>
14083 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14085 L:      linux-omap@vger.kernel.org
14086 S:      Maintained
14087 F:      drivers/pinctrl/pinctrl-single.c
14088
14089 PIN CONTROLLER - ST SPEAR
14090 M:      Viresh Kumar <vireshk@kernel.org>
14091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14092 S:      Maintained
14093 W:      http://www.st.com/spear
14094 F:      drivers/pinctrl/spear/
14095
14096 PISTACHIO SOC SUPPORT
14097 M:      James Hartley <james.hartley@sondrel.com>
14098 L:      linux-mips@vger.kernel.org
14099 S:      Odd Fixes
14100 F:      arch/mips/boot/dts/img/pistachio*
14101 F:      arch/mips/configs/pistachio*_defconfig
14102 F:      arch/mips/include/asm/mach-pistachio/
14103 F:      arch/mips/pistachio/
14104
14105 PKTCDVD DRIVER
14106 M:      linux-block@vger.kernel.org
14107 S:      Orphan
14108 F:      drivers/block/pktcdvd.c
14109 F:      include/linux/pktcdvd.h
14110 F:      include/uapi/linux/pktcdvd.h
14111
14112 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14113 M:      Tomasz Duszynski <tduszyns@gmail.com>
14114 S:      Maintained
14115 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14116 F:      drivers/iio/chemical/pms7003.c
14117
14118 PLDMFW LIBRARY
14119 M:      Jacob Keller <jacob.e.keller@intel.com>
14120 S:      Maintained
14121 F:      Documentation/driver-api/pldmfw/
14122 F:      include/linux/pldmfw.h
14123 F:      lib/pldmfw/
14124
14125 PLX DMA DRIVER
14126 M:      Logan Gunthorpe <logang@deltatee.com>
14127 S:      Maintained
14128 F:      drivers/dma/plx_dma.c
14129
14130 PM6764TR DRIVER
14131 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14132 L:      linux-hwmon@vger.kernel.org
14133 S:      Maintained
14134 F:      Documentation/hwmon/pm6764tr.rst
14135 F:      drivers/hwmon/pmbus/pm6764tr.c
14136
14137 PM-GRAPH UTILITY
14138 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14139 L:      linux-pm@vger.kernel.org
14140 S:      Supported
14141 W:      https://01.org/pm-graph
14142 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14143 T:      git git://github.com/intel/pm-graph
14144 F:      tools/power/pm-graph
14145
14146 PMBUS HARDWARE MONITORING DRIVERS
14147 M:      Guenter Roeck <linux@roeck-us.net>
14148 L:      linux-hwmon@vger.kernel.org
14149 S:      Maintained
14150 W:      http://hwmon.wiki.kernel.org/
14151 W:      http://www.roeck-us.net/linux/drivers/
14152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14153 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14154 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14155 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14156 F:      Documentation/hwmon/adm1275.rst
14157 F:      Documentation/hwmon/ibm-cffps.rst
14158 F:      Documentation/hwmon/ir35221.rst
14159 F:      Documentation/hwmon/lm25066.rst
14160 F:      Documentation/hwmon/ltc2978.rst
14161 F:      Documentation/hwmon/ltc3815.rst
14162 F:      Documentation/hwmon/max16064.rst
14163 F:      Documentation/hwmon/max20751.rst
14164 F:      Documentation/hwmon/max31785.rst
14165 F:      Documentation/hwmon/max34440.rst
14166 F:      Documentation/hwmon/max8688.rst
14167 F:      Documentation/hwmon/pmbus-core.rst
14168 F:      Documentation/hwmon/pmbus.rst
14169 F:      Documentation/hwmon/tps40422.rst
14170 F:      Documentation/hwmon/ucd9000.rst
14171 F:      Documentation/hwmon/ucd9200.rst
14172 F:      Documentation/hwmon/zl6100.rst
14173 F:      drivers/hwmon/pmbus/
14174 F:      include/linux/pmbus.h
14175
14176 PMC SIERRA MaxRAID DRIVER
14177 L:      linux-scsi@vger.kernel.org
14178 S:      Orphan
14179 W:      http://www.pmc-sierra.com/
14180 F:      drivers/scsi/pmcraid.*
14181
14182 PMC SIERRA PM8001 DRIVER
14183 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14184 L:      linux-scsi@vger.kernel.org
14185 S:      Supported
14186 F:      drivers/scsi/pm8001/
14187
14188 PNI RM3100 IIO DRIVER
14189 M:      Song Qiang <songqiang1304521@gmail.com>
14190 L:      linux-iio@vger.kernel.org
14191 S:      Maintained
14192 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
14193 F:      drivers/iio/magnetometer/rm3100*
14194
14195 PNP SUPPORT
14196 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14197 L:      linux-acpi@vger.kernel.org
14198 S:      Maintained
14199 F:      drivers/pnp/
14200 F:      include/linux/pnp.h
14201
14202 POSIX CLOCKS and TIMERS
14203 M:      Thomas Gleixner <tglx@linutronix.de>
14204 L:      linux-kernel@vger.kernel.org
14205 S:      Maintained
14206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14207 F:      fs/timerfd.c
14208 F:      include/linux/time_namespace.h
14209 F:      include/linux/timer*
14210 F:      kernel/time/*timer*
14211 F:      kernel/time/namespace.c
14212
14213 POWER MANAGEMENT CORE
14214 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
14215 L:      linux-pm@vger.kernel.org
14216 S:      Supported
14217 B:      https://bugzilla.kernel.org
14218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
14219 F:      drivers/base/power/
14220 F:      drivers/powercap/
14221 F:      include/linux/intel_rapl.h
14222 F:      include/linux/pm.h
14223 F:      include/linux/pm_*
14224 F:      include/linux/powercap.h
14225 F:      kernel/configs/nopm.config
14226
14227 POWER STATE COORDINATION INTERFACE (PSCI)
14228 M:      Mark Rutland <mark.rutland@arm.com>
14229 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14230 L:      linux-arm-kernel@lists.infradead.org
14231 S:      Maintained
14232 F:      drivers/firmware/psci/
14233 F:      include/linux/psci.h
14234 F:      include/uapi/linux/psci.h
14235
14236 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
14237 M:      Sebastian Reichel <sre@kernel.org>
14238 L:      linux-pm@vger.kernel.org
14239 S:      Maintained
14240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
14241 F:      Documentation/ABI/testing/sysfs-class-power
14242 F:      Documentation/devicetree/bindings/power/supply/
14243 F:      drivers/power/supply/
14244 F:      include/linux/power_supply.h
14245
14246 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
14247 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
14248 L:      linuxppc-dev@lists.ozlabs.org
14249 S:      Maintained
14250 F:      drivers/char/powernv-op-panel.c
14251
14252 PPP OVER ATM (RFC 2364)
14253 M:      Mitchell Blank Jr <mitch@sfgoth.com>
14254 S:      Maintained
14255 F:      include/uapi/linux/atmppp.h
14256 F:      net/atm/pppoatm.c
14257
14258 PPP OVER ETHERNET
14259 M:      Michal Ostrowski <mostrows@earthlink.net>
14260 S:      Maintained
14261 F:      drivers/net/ppp/pppoe.c
14262 F:      drivers/net/ppp/pppox.c
14263
14264 PPP OVER L2TP
14265 M:      James Chapman <jchapman@katalix.com>
14266 S:      Maintained
14267 F:      include/linux/if_pppol2tp.h
14268 F:      include/uapi/linux/if_pppol2tp.h
14269 F:      net/l2tp/l2tp_ppp.c
14270
14271 PPP PROTOCOL DRIVERS AND COMPRESSORS
14272 M:      Paul Mackerras <paulus@samba.org>
14273 L:      linux-ppp@vger.kernel.org
14274 S:      Maintained
14275 F:      drivers/net/ppp/ppp_*
14276
14277 PPS SUPPORT
14278 M:      Rodolfo Giometti <giometti@enneenne.com>
14279 L:      linuxpps@ml.enneenne.com (subscribers-only)
14280 S:      Maintained
14281 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
14282 F:      Documentation/ABI/testing/sysfs-pps
14283 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
14284 F:      Documentation/driver-api/pps.rst
14285 F:      drivers/pps/
14286 F:      include/linux/pps*.h
14287 F:      include/uapi/linux/pps.h
14288
14289 PPTP DRIVER
14290 M:      Dmitry Kozlov <xeb@mail.ru>
14291 L:      netdev@vger.kernel.org
14292 S:      Maintained
14293 W:      http://sourceforge.net/projects/accel-pptp
14294 F:      drivers/net/ppp/pptp.c
14295
14296 PRESSURE STALL INFORMATION (PSI)
14297 M:      Johannes Weiner <hannes@cmpxchg.org>
14298 S:      Maintained
14299 F:      include/linux/psi*
14300 F:      kernel/sched/psi.c
14301
14302 PRINTK
14303 M:      Petr Mladek <pmladek@suse.com>
14304 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
14305 R:      Steven Rostedt <rostedt@goodmis.org>
14306 R:      John Ogness <john.ogness@linutronix.de>
14307 S:      Maintained
14308 F:      include/linux/printk.h
14309 F:      kernel/printk/
14310
14311 PRISM54 WIRELESS DRIVER
14312 M:      Luis Chamberlain <mcgrof@kernel.org>
14313 L:      linux-wireless@vger.kernel.org
14314 S:      Obsolete
14315 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14316 F:      drivers/net/wireless/intersil/prism54/
14317
14318 PROC FILESYSTEM
14319 R:      Alexey Dobriyan <adobriyan@gmail.com>
14320 L:      linux-kernel@vger.kernel.org
14321 L:      linux-fsdevel@vger.kernel.org
14322 S:      Maintained
14323 F:      Documentation/filesystems/proc.rst
14324 F:      fs/proc/
14325 F:      include/linux/proc_fs.h
14326 F:      tools/testing/selftests/proc/
14327
14328 PROC SYSCTL
14329 M:      Luis Chamberlain <mcgrof@kernel.org>
14330 M:      Kees Cook <keescook@chromium.org>
14331 M:      Iurii Zaikin <yzaikin@google.com>
14332 L:      linux-kernel@vger.kernel.org
14333 L:      linux-fsdevel@vger.kernel.org
14334 S:      Maintained
14335 F:      fs/proc/proc_sysctl.c
14336 F:      include/linux/sysctl.h
14337 F:      kernel/sysctl-test.c
14338 F:      kernel/sysctl.c
14339 F:      tools/testing/selftests/sysctl/
14340
14341 PS3 NETWORK SUPPORT
14342 M:      Geoff Levand <geoff@infradead.org>
14343 L:      netdev@vger.kernel.org
14344 L:      linuxppc-dev@lists.ozlabs.org
14345 S:      Maintained
14346 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
14347
14348 PS3 PLATFORM SUPPORT
14349 M:      Geoff Levand <geoff@infradead.org>
14350 L:      linuxppc-dev@lists.ozlabs.org
14351 S:      Maintained
14352 F:      arch/powerpc/boot/ps3*
14353 F:      arch/powerpc/include/asm/lv1call.h
14354 F:      arch/powerpc/include/asm/ps3*.h
14355 F:      arch/powerpc/platforms/ps3/
14356 F:      drivers/*/ps3*
14357 F:      drivers/ps3/
14358 F:      drivers/rtc/rtc-ps3.c
14359 F:      drivers/usb/host/*ps3.c
14360 F:      sound/ppc/snd_ps3*
14361
14362 PS3VRAM DRIVER
14363 M:      Jim Paris <jim@jtan.com>
14364 M:      Geoff Levand <geoff@infradead.org>
14365 L:      linuxppc-dev@lists.ozlabs.org
14366 S:      Maintained
14367 F:      drivers/block/ps3vram.c
14368
14369 PSAMPLE PACKET SAMPLING SUPPORT
14370 M:      Yotam Gigi <yotam.gi@gmail.com>
14371 S:      Maintained
14372 F:      include/net/psample.h
14373 F:      include/uapi/linux/psample.h
14374 F:      net/psample
14375
14376 PSTORE FILESYSTEM
14377 M:      Kees Cook <keescook@chromium.org>
14378 M:      Anton Vorontsov <anton@enomsg.org>
14379 M:      Colin Cross <ccross@android.com>
14380 M:      Tony Luck <tony.luck@intel.com>
14381 S:      Maintained
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
14383 F:      Documentation/admin-guide/ramoops.rst
14384 F:      Documentation/admin-guide/pstore-blk.rst
14385 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
14386 F:      drivers/acpi/apei/erst.c
14387 F:      drivers/firmware/efi/efi-pstore.c
14388 F:      fs/pstore/
14389 F:      include/linux/pstore*
14390 K:      \b(pstore|ramoops)
14391
14392 PTP HARDWARE CLOCK SUPPORT
14393 M:      Richard Cochran <richardcochran@gmail.com>
14394 L:      netdev@vger.kernel.org
14395 S:      Maintained
14396 W:      http://linuxptp.sourceforge.net/
14397 F:      Documentation/ABI/testing/sysfs-ptp
14398 F:      Documentation/driver-api/ptp.rst
14399 F:      drivers/net/phy/dp83640*
14400 F:      drivers/ptp/*
14401 F:      include/linux/ptp_cl*
14402
14403 PTRACE SUPPORT
14404 M:      Oleg Nesterov <oleg@redhat.com>
14405 S:      Maintained
14406 F:      arch/*/*/ptrace*.c
14407 F:      arch/*/include/asm/ptrace*.h
14408 F:      arch/*/ptrace*.c
14409 F:      include/asm-generic/syscall.h
14410 F:      include/linux/ptrace.h
14411 F:      include/linux/regset.h
14412 F:      include/linux/tracehook.h
14413 F:      include/uapi/linux/ptrace.h
14414 F:      include/uapi/linux/ptrace.h
14415 F:      kernel/ptrace.c
14416
14417 PULSE8-CEC DRIVER
14418 M:      Hans Verkuil <hverkuil@xs4all.nl>
14419 L:      linux-media@vger.kernel.org
14420 S:      Maintained
14421 T:      git git://linuxtv.org/media_tree.git
14422 F:      Documentation/admin-guide/media/pulse8-cec.rst
14423 F:      drivers/media/cec/usb/pulse8/
14424
14425 PVRUSB2 VIDEO4LINUX DRIVER
14426 M:      Mike Isely <isely@pobox.com>
14427 L:      pvrusb2@isely.net       (subscribers-only)
14428 L:      linux-media@vger.kernel.org
14429 S:      Maintained
14430 W:      http://www.isely.net/pvrusb2/
14431 T:      git git://linuxtv.org/media_tree.git
14432 F:      Documentation/driver-api/media/drivers/pvrusb2*
14433 F:      drivers/media/usb/pvrusb2/
14434
14435 PWC WEBCAM DRIVER
14436 M:      Hans Verkuil <hverkuil@xs4all.nl>
14437 L:      linux-media@vger.kernel.org
14438 S:      Odd Fixes
14439 T:      git git://linuxtv.org/media_tree.git
14440 F:      drivers/media/usb/pwc/*
14441 F:      include/trace/events/pwc.h
14442
14443 PWM FAN DRIVER
14444 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14445 L:      linux-hwmon@vger.kernel.org
14446 S:      Supported
14447 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
14448 F:      Documentation/hwmon/pwm-fan.rst
14449 F:      drivers/hwmon/pwm-fan.c
14450
14451 PWM IR Transmitter
14452 M:      Sean Young <sean@mess.org>
14453 L:      linux-media@vger.kernel.org
14454 S:      Maintained
14455 F:      drivers/media/rc/pwm-ir-tx.c
14456
14457 PWM SUBSYSTEM
14458 M:      Thierry Reding <thierry.reding@gmail.com>
14459 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14460 M:      Lee Jones <lee.jones@linaro.org>
14461 L:      linux-pwm@vger.kernel.org
14462 S:      Maintained
14463 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
14464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
14465 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
14466 F:      Documentation/devicetree/bindings/pwm/
14467 F:      Documentation/driver-api/pwm.rst
14468 F:      drivers/gpio/gpio-mvebu.c
14469 F:      drivers/pwm/
14470 F:      drivers/video/backlight/pwm_bl.c
14471 F:      include/linux/pwm.h
14472 F:      include/linux/pwm_backlight.h
14473 K:      pwm_(config|apply_state|ops)
14474
14475 PXA GPIO DRIVER
14476 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14477 L:      linux-gpio@vger.kernel.org
14478 S:      Maintained
14479 F:      drivers/gpio/gpio-pxa.c
14480
14481 PXA MMCI DRIVER
14482 S:      Orphan
14483
14484 PXA RTC DRIVER
14485 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14486 L:      linux-rtc@vger.kernel.org
14487 S:      Maintained
14488
14489 PXA2xx/PXA3xx SUPPORT
14490 M:      Daniel Mack <daniel@zonque.org>
14491 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
14492 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14494 S:      Maintained
14495 T:      git git://github.com/hzhuang1/linux.git
14496 T:      git git://github.com/rjarzmik/linux.git
14497 F:      arch/arm/boot/dts/pxa*
14498 F:      arch/arm/mach-pxa/
14499 F:      drivers/dma/pxa*
14500 F:      drivers/pcmcia/pxa2xx*
14501 F:      drivers/pinctrl/pxa/
14502 F:      drivers/spi/spi-pxa2xx*
14503 F:      drivers/usb/gadget/udc/pxa2*
14504 F:      include/sound/pxa2xx-lib.h
14505 F:      sound/arm/pxa*
14506 F:      sound/soc/pxa/
14507
14508 QAT DRIVER
14509 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
14510 L:      qat-linux@intel.com
14511 S:      Supported
14512 F:      drivers/crypto/qat/
14513
14514 QCOM AUDIO (ASoC) DRIVERS
14515 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14516 M:      Banajit Goswami <bgoswami@codeaurora.org>
14517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14518 S:      Supported
14519 F:      sound/soc/codecs/lpass-va-macro.c
14520 F:      sound/soc/codecs/lpass-wsa-macro.*
14521 F:      sound/soc/codecs/msm8916-wcd-analog.c
14522 F:      sound/soc/codecs/msm8916-wcd-digital.c
14523 F:      sound/soc/codecs/wcd9335.*
14524 F:      sound/soc/codecs/wcd934x.c
14525 F:      sound/soc/codecs/wcd-clsh-v2.*
14526 F:      sound/soc/codecs/wsa881x.c
14527 F:      sound/soc/qcom/
14528
14529 QCOM IPA DRIVER
14530 M:      Alex Elder <elder@kernel.org>
14531 L:      netdev@vger.kernel.org
14532 S:      Supported
14533 F:      drivers/net/ipa/
14534
14535 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
14536 M:      Gabriel Somlo <somlo@cmu.edu>
14537 M:      "Michael S. Tsirkin" <mst@redhat.com>
14538 L:      qemu-devel@nongnu.org
14539 S:      Maintained
14540 F:      drivers/firmware/qemu_fw_cfg.c
14541 F:      include/uapi/linux/qemu_fw_cfg.h
14542
14543 QIB DRIVER
14544 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14545 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14546 L:      linux-rdma@vger.kernel.org
14547 S:      Supported
14548 F:      drivers/infiniband/hw/qib/
14549
14550 QLOGIC QL41xxx FCOE DRIVER
14551 M:      Saurav Kashyap <skashyap@marvell.com>
14552 M:      Javed Hasan <jhasan@marvell.com>
14553 M:      GR-QLogic-Storage-Upstream@marvell.com
14554 L:      linux-scsi@vger.kernel.org
14555 S:      Supported
14556 F:      drivers/scsi/qedf/
14557
14558 QLOGIC QL41xxx ISCSI DRIVER
14559 M:      Nilesh Javali <njavali@marvell.com>
14560 M:      Manish Rangankar <mrangankar@marvell.com>
14561 M:      GR-QLogic-Storage-Upstream@marvell.com
14562 L:      linux-scsi@vger.kernel.org
14563 S:      Supported
14564 F:      drivers/scsi/qedi/
14565
14566 QLOGIC QL4xxx ETHERNET DRIVER
14567 M:      Ariel Elior <aelior@marvell.com>
14568 M:      GR-everest-linux-l2@marvell.com
14569 L:      netdev@vger.kernel.org
14570 S:      Supported
14571 F:      drivers/net/ethernet/qlogic/qed/
14572 F:      drivers/net/ethernet/qlogic/qede/
14573 F:      include/linux/qed/
14574
14575 QLOGIC QL4xxx RDMA DRIVER
14576 M:      Michal Kalderon <mkalderon@marvell.com>
14577 M:      Ariel Elior <aelior@marvell.com>
14578 L:      linux-rdma@vger.kernel.org
14579 S:      Supported
14580 F:      drivers/infiniband/hw/qedr/
14581 F:      include/uapi/rdma/qedr-abi.h
14582
14583 QLOGIC QLA1280 SCSI DRIVER
14584 M:      Michael Reed <mdr@sgi.com>
14585 L:      linux-scsi@vger.kernel.org
14586 S:      Maintained
14587 F:      drivers/scsi/qla1280.[ch]
14588
14589 QLOGIC QLA2XXX FC-SCSI DRIVER
14590 M:      Nilesh Javali <njavali@marvell.com>
14591 M:      GR-QLogic-Storage-Upstream@marvell.com
14592 L:      linux-scsi@vger.kernel.org
14593 S:      Supported
14594 F:      drivers/scsi/qla2xxx/
14595
14596 QLOGIC QLA3XXX NETWORK DRIVER
14597 M:      GR-Linux-NIC-Dev@marvell.com
14598 L:      netdev@vger.kernel.org
14599 S:      Supported
14600 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14601
14602 QLOGIC QLA4XXX iSCSI DRIVER
14603 M:      Nilesh Javali <njavali@marvell.com>
14604 M:      Manish Rangankar <mrangankar@marvell.com>
14605 M:      GR-QLogic-Storage-Upstream@marvell.com
14606 L:      linux-scsi@vger.kernel.org
14607 S:      Supported
14608 F:      drivers/scsi/qla4xxx/
14609
14610 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14611 M:      Shahed Shaikh <shshaikh@marvell.com>
14612 M:      Manish Chopra <manishc@marvell.com>
14613 M:      GR-Linux-NIC-Dev@marvell.com
14614 L:      netdev@vger.kernel.org
14615 S:      Supported
14616 F:      drivers/net/ethernet/qlogic/qlcnic/
14617
14618 QLOGIC QLGE 10Gb ETHERNET DRIVER
14619 M:      Manish Chopra <manishc@marvell.com>
14620 M:      GR-Linux-NIC-Dev@marvell.com
14621 L:      netdev@vger.kernel.org
14622 S:      Supported
14623 F:      drivers/staging/qlge/
14624
14625 QM1D1B0004 MEDIA DRIVER
14626 M:      Akihiro Tsukada <tskd08@gmail.com>
14627 L:      linux-media@vger.kernel.org
14628 S:      Odd Fixes
14629 F:      drivers/media/tuners/qm1d1b0004*
14630
14631 QM1D1C0042 MEDIA DRIVER
14632 M:      Akihiro Tsukada <tskd08@gmail.com>
14633 L:      linux-media@vger.kernel.org
14634 S:      Odd Fixes
14635 F:      drivers/media/tuners/qm1d1c0042*
14636
14637 QNX4 FILESYSTEM
14638 M:      Anders Larsen <al@alarsen.net>
14639 S:      Maintained
14640 W:      http://www.alarsen.net/linux/qnx4fs/
14641 F:      fs/qnx4/
14642 F:      include/uapi/linux/qnx4_fs.h
14643 F:      include/uapi/linux/qnxtypes.h
14644
14645 QORIQ DPAA2 FSL-MC BUS DRIVER
14646 M:      Stuart Yoder <stuyoder@gmail.com>
14647 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14648 L:      linux-kernel@vger.kernel.org
14649 S:      Maintained
14650 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14651 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
14652 F:      drivers/bus/fsl-mc/
14653
14654 QT1010 MEDIA DRIVER
14655 M:      Antti Palosaari <crope@iki.fi>
14656 L:      linux-media@vger.kernel.org
14657 S:      Maintained
14658 W:      https://linuxtv.org
14659 W:      http://palosaari.fi/linux/
14660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14661 T:      git git://linuxtv.org/anttip/media_tree.git
14662 F:      drivers/media/tuners/qt1010*
14663
14664 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14665 M:      Kalle Valo <kvalo@codeaurora.org>
14666 L:      ath10k@lists.infradead.org
14667 S:      Supported
14668 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14670 F:      drivers/net/wireless/ath/ath10k/
14671
14672 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14673 M:      Kalle Valo <kvalo@codeaurora.org>
14674 L:      ath11k@lists.infradead.org
14675 S:      Supported
14676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14677 F:      drivers/net/wireless/ath/ath11k/
14678
14679 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14680 M:      ath9k-devel@qca.qualcomm.com
14681 L:      linux-wireless@vger.kernel.org
14682 S:      Supported
14683 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14684 F:      drivers/net/wireless/ath/ath9k/
14685
14686 QUALCOMM CAMERA SUBSYSTEM DRIVER
14687 M:      Robert Foss <robert.foss@linaro.org>
14688 M:      Todor Tomov <todor.too@gmail.com>
14689 L:      linux-media@vger.kernel.org
14690 S:      Maintained
14691 F:      Documentation/admin-guide/media/qcom_camss.rst
14692 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14693 F:      drivers/media/platform/qcom/camss/
14694
14695 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14696 M:      Niklas Cassel <nks@flawful.org>
14697 L:      linux-pm@vger.kernel.org
14698 L:      linux-arm-msm@vger.kernel.org
14699 S:      Maintained
14700 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14701 F:      drivers/soc/qcom/cpr.c
14702
14703 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14704 M:      Ilia Lin <ilia.lin@kernel.org>
14705 L:      linux-pm@vger.kernel.org
14706 S:      Maintained
14707 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14708 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14709
14710 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14711 M:      Timur Tabi <timur@kernel.org>
14712 L:      netdev@vger.kernel.org
14713 S:      Maintained
14714 F:      drivers/net/ethernet/qualcomm/emac/
14715
14716 QUALCOMM ETHQOS ETHERNET DRIVER
14717 M:      Vinod Koul <vkoul@kernel.org>
14718 L:      netdev@vger.kernel.org
14719 S:      Maintained
14720 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14721 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14722
14723 QUALCOMM GENERIC INTERFACE I2C DRIVER
14724 M:      Akash Asthana <akashast@codeaurora.org>
14725 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
14726 L:      linux-i2c@vger.kernel.org
14727 L:      linux-arm-msm@vger.kernel.org
14728 S:      Supported
14729 F:      drivers/i2c/busses/i2c-qcom-geni.c
14730
14731 QUALCOMM HEXAGON ARCHITECTURE
14732 M:      Brian Cain <bcain@codeaurora.org>
14733 L:      linux-hexagon@vger.kernel.org
14734 S:      Supported
14735 F:      arch/hexagon/
14736
14737 QUALCOMM HIDMA DRIVER
14738 M:      Sinan Kaya <okaya@kernel.org>
14739 L:      linux-arm-kernel@lists.infradead.org
14740 L:      linux-arm-msm@vger.kernel.org
14741 L:      dmaengine@vger.kernel.org
14742 S:      Supported
14743 F:      drivers/dma/qcom/hidma*
14744
14745 QUALCOMM I2C CCI DRIVER
14746 M:      Loic Poulain <loic.poulain@linaro.org>
14747 M:      Robert Foss <robert.foss@linaro.org>
14748 L:      linux-i2c@vger.kernel.org
14749 L:      linux-arm-msm@vger.kernel.org
14750 S:      Maintained
14751 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
14752 F:      drivers/i2c/busses/i2c-qcom-cci.c
14753
14754 QUALCOMM IOMMU
14755 M:      Rob Clark <robdclark@gmail.com>
14756 L:      iommu@lists.linux-foundation.org
14757 L:      linux-arm-msm@vger.kernel.org
14758 S:      Maintained
14759 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
14760
14761 QUALCOMM IPCC MAILBOX DRIVER
14762 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14763 L:      linux-arm-msm@vger.kernel.org
14764 S:      Supported
14765 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
14766 F:      drivers/mailbox/qcom-ipcc.c
14767 F:      include/dt-bindings/mailbox/qcom-ipcc.h
14768
14769 QUALCOMM IPQ4019 USB PHY DRIVER
14770 M:      Robert Marko <robert.marko@sartura.hr>
14771 M:      Luka Perkov <luka.perkov@sartura.hr>
14772 L:      linux-arm-msm@vger.kernel.org
14773 S:      Maintained
14774 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
14775 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
14776
14777 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
14778 M:      Robert Marko <robert.marko@sartura.hr>
14779 M:      Luka Perkov <luka.perkov@sartura.hr>
14780 L:      linux-arm-msm@vger.kernel.org
14781 S:      Maintained
14782 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
14783 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
14784
14785 QUALCOMM RMNET DRIVER
14786 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14787 M:      Sean Tranchetti <stranche@codeaurora.org>
14788 L:      netdev@vger.kernel.org
14789 S:      Maintained
14790 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
14791 F:      drivers/net/ethernet/qualcomm/rmnet/
14792 F:      include/linux/if_rmnet.h
14793
14794 QUALCOMM TSENS THERMAL DRIVER
14795 M:      Amit Kucheria <amitk@kernel.org>
14796 L:      linux-pm@vger.kernel.org
14797 L:      linux-arm-msm@vger.kernel.org
14798 S:      Maintained
14799 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14800 F:      drivers/thermal/qcom/
14801
14802 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14803 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14804 L:      linux-media@vger.kernel.org
14805 L:      linux-arm-msm@vger.kernel.org
14806 S:      Maintained
14807 T:      git git://linuxtv.org/media_tree.git
14808 F:      Documentation/devicetree/bindings/media/*venus*
14809 F:      drivers/media/platform/qcom/venus/
14810
14811 QUALCOMM WCN36XX WIRELESS DRIVER
14812 M:      Kalle Valo <kvalo@codeaurora.org>
14813 L:      wcn36xx@lists.infradead.org
14814 S:      Supported
14815 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14816 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14817 F:      drivers/net/wireless/ath/wcn36xx/
14818
14819 QUANTENNA QTNFMAC WIRELESS DRIVER
14820 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14821 R:      Sergey Matyukevich <geomatsi@gmail.com>
14822 L:      linux-wireless@vger.kernel.org
14823 S:      Maintained
14824 F:      drivers/net/wireless/quantenna
14825
14826 RADEON and AMDGPU DRM DRIVERS
14827 M:      Alex Deucher <alexander.deucher@amd.com>
14828 M:      Christian König <christian.koenig@amd.com>
14829 L:      amd-gfx@lists.freedesktop.org
14830 S:      Supported
14831 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
14832 F:      drivers/gpu/drm/amd/
14833 F:      drivers/gpu/drm/radeon/
14834 F:      include/uapi/drm/amdgpu_drm.h
14835 F:      include/uapi/drm/radeon_drm.h
14836
14837 RADEON FRAMEBUFFER DISPLAY DRIVER
14838 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14839 L:      linux-fbdev@vger.kernel.org
14840 S:      Maintained
14841 F:      drivers/video/fbdev/aty/radeon*
14842 F:      include/uapi/linux/radeonfb.h
14843
14844 RADIOSHARK RADIO DRIVER
14845 M:      Hans Verkuil <hverkuil@xs4all.nl>
14846 L:      linux-media@vger.kernel.org
14847 S:      Maintained
14848 T:      git git://linuxtv.org/media_tree.git
14849 F:      drivers/media/radio/radio-shark.c
14850
14851 RADIOSHARK2 RADIO DRIVER
14852 M:      Hans Verkuil <hverkuil@xs4all.nl>
14853 L:      linux-media@vger.kernel.org
14854 S:      Maintained
14855 T:      git git://linuxtv.org/media_tree.git
14856 F:      drivers/media/radio/radio-shark2.c
14857 F:      drivers/media/radio/radio-tea5777.c
14858
14859 RADOS BLOCK DEVICE (RBD)
14860 M:      Ilya Dryomov <idryomov@gmail.com>
14861 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14862 L:      ceph-devel@vger.kernel.org
14863 S:      Supported
14864 W:      http://ceph.com/
14865 T:      git git://github.com/ceph/ceph-client.git
14866 F:      Documentation/ABI/testing/sysfs-bus-rbd
14867 F:      drivers/block/rbd.c
14868 F:      drivers/block/rbd_types.h
14869
14870 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14871 M:      Paul Mackerras <paulus@samba.org>
14872 L:      linux-fbdev@vger.kernel.org
14873 S:      Maintained
14874 F:      drivers/video/fbdev/aty/aty128fb.c
14875
14876 RAINSHADOW-CEC DRIVER
14877 M:      Hans Verkuil <hverkuil@xs4all.nl>
14878 L:      linux-media@vger.kernel.org
14879 S:      Maintained
14880 T:      git git://linuxtv.org/media_tree.git
14881 F:      drivers/media/cec/usb/rainshadow/
14882
14883 RALINK MIPS ARCHITECTURE
14884 M:      John Crispin <john@phrozen.org>
14885 L:      linux-mips@vger.kernel.org
14886 S:      Maintained
14887 F:      arch/mips/ralink
14888
14889 RALINK RT2X00 WIRELESS LAN DRIVER
14890 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14891 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14892 L:      linux-wireless@vger.kernel.org
14893 S:      Maintained
14894 F:      drivers/net/wireless/ralink/rt2x00/
14895
14896 RAMDISK RAM BLOCK DEVICE DRIVER
14897 M:      Jens Axboe <axboe@kernel.dk>
14898 S:      Maintained
14899 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14900 F:      drivers/block/brd.c
14901
14902 RANCHU VIRTUAL BOARD FOR MIPS
14903 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14904 L:      linux-mips@vger.kernel.org
14905 S:      Supported
14906 F:      arch/mips/configs/generic/board-ranchu.config
14907 F:      arch/mips/generic/board-ranchu.c
14908
14909 RANDOM NUMBER DRIVER
14910 M:      "Theodore Ts'o" <tytso@mit.edu>
14911 S:      Maintained
14912 F:      drivers/char/random.c
14913
14914 RAPIDIO SUBSYSTEM
14915 M:      Matt Porter <mporter@kernel.crashing.org>
14916 M:      Alexandre Bounine <alex.bou9@gmail.com>
14917 S:      Maintained
14918 F:      drivers/rapidio/
14919
14920 RAS INFRASTRUCTURE
14921 M:      Tony Luck <tony.luck@intel.com>
14922 M:      Borislav Petkov <bp@alien8.de>
14923 L:      linux-edac@vger.kernel.org
14924 S:      Maintained
14925 F:      Documentation/admin-guide/ras.rst
14926 F:      drivers/ras/
14927 F:      include/linux/ras.h
14928 F:      include/ras/ras_event.h
14929
14930 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14931 L:      linux-wireless@vger.kernel.org
14932 S:      Orphan
14933 F:      drivers/net/wireless/ray*
14934
14935 RC-CORE / LIRC FRAMEWORK
14936 M:      Sean Young <sean@mess.org>
14937 L:      linux-media@vger.kernel.org
14938 S:      Maintained
14939 W:      http://linuxtv.org
14940 T:      git git://linuxtv.org/media_tree.git
14941 F:      Documentation/driver-api/media/rc-core.rst
14942 F:      Documentation/userspace-api/media/rc/
14943 F:      drivers/media/rc/
14944 F:      include/media/rc-map.h
14945 F:      include/media/rc-core.h
14946 F:      include/uapi/linux/lirc.h
14947
14948 RCMM REMOTE CONTROLS DECODER
14949 M:      Patrick Lerda <patrick9876@free.fr>
14950 S:      Maintained
14951 F:      drivers/media/rc/ir-rcmm-decoder.c
14952
14953 RCUTORTURE TEST FRAMEWORK
14954 M:      "Paul E. McKenney" <paulmck@kernel.org>
14955 M:      Josh Triplett <josh@joshtriplett.org>
14956 R:      Steven Rostedt <rostedt@goodmis.org>
14957 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14958 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14959 L:      rcu@vger.kernel.org
14960 S:      Supported
14961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14962 F:      tools/testing/selftests/rcutorture
14963
14964 RDACM20 Camera Sensor
14965 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
14966 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
14967 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
14968 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
14969 L:      linux-media@vger.kernel.org
14970 S:      Maintained
14971 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
14972 F:      drivers/media/i2c/max9271.c
14973 F:      drivers/media/i2c/max9271.h
14974 F:      drivers/media/i2c/rdacm20.c
14975
14976 RDC R-321X SoC
14977 M:      Florian Fainelli <florian@openwrt.org>
14978 S:      Maintained
14979
14980 RDC R6040 FAST ETHERNET DRIVER
14981 M:      Florian Fainelli <f.fainelli@gmail.com>
14982 L:      netdev@vger.kernel.org
14983 S:      Maintained
14984 F:      drivers/net/ethernet/rdc/r6040.c
14985
14986 RDMAVT - RDMA verbs software
14987 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14988 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14989 L:      linux-rdma@vger.kernel.org
14990 S:      Supported
14991 F:      drivers/infiniband/sw/rdmavt
14992
14993 RDS - RELIABLE DATAGRAM SOCKETS
14994 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14995 L:      netdev@vger.kernel.org
14996 L:      linux-rdma@vger.kernel.org
14997 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14998 S:      Supported
14999 W:      https://oss.oracle.com/projects/rds/
15000 F:      Documentation/networking/rds.rst
15001 F:      net/rds/
15002
15003 RDT - RESOURCE ALLOCATION
15004 M:      Fenghua Yu <fenghua.yu@intel.com>
15005 M:      Reinette Chatre <reinette.chatre@intel.com>
15006 L:      linux-kernel@vger.kernel.org
15007 S:      Supported
15008 F:      Documentation/x86/resctrl*
15009 F:      arch/x86/include/asm/resctrl.h
15010 F:      arch/x86/kernel/cpu/resctrl/
15011 F:      tools/testing/selftests/resctrl/
15012
15013 READ-COPY UPDATE (RCU)
15014 M:      "Paul E. McKenney" <paulmck@kernel.org>
15015 M:      Josh Triplett <josh@joshtriplett.org>
15016 R:      Steven Rostedt <rostedt@goodmis.org>
15017 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15018 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15019 R:      Joel Fernandes <joel@joelfernandes.org>
15020 L:      rcu@vger.kernel.org
15021 S:      Supported
15022 W:      http://www.rdrop.com/users/paulmck/RCU/
15023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15024 F:      Documentation/RCU/
15025 F:      include/linux/rcu*
15026 F:      kernel/rcu/
15027 X:      Documentation/RCU/torture.rst
15028 X:      include/linux/srcu*.h
15029 X:      kernel/rcu/srcu*.c
15030
15031 REAL TIME CLOCK (RTC) SUBSYSTEM
15032 M:      Alessandro Zummo <a.zummo@towertech.it>
15033 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15034 L:      linux-rtc@vger.kernel.org
15035 S:      Maintained
15036 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15038 F:      Documentation/admin-guide/rtc.rst
15039 F:      Documentation/devicetree/bindings/rtc/
15040 F:      drivers/rtc/
15041 F:      include/linux/platform_data/rtc-*
15042 F:      include/linux/rtc.h
15043 F:      include/linux/rtc/
15044 F:      include/uapi/linux/rtc.h
15045 F:      tools/testing/selftests/rtc/
15046
15047 REALTEK AUDIO CODECS
15048 M:      Oder Chiou <oder_chiou@realtek.com>
15049 S:      Maintained
15050 F:      include/sound/rt*.h
15051 F:      sound/soc/codecs/rt*
15052
15053 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15054 M:      Linus Walleij <linus.walleij@linaro.org>
15055 S:      Maintained
15056 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15057 F:      drivers/net/dsa/realtek-smi*
15058 F:      drivers/net/dsa/rtl83*
15059
15060 REALTEK WIRELESS DRIVER (rtlwifi family)
15061 M:      Ping-Ke Shih <pkshih@realtek.com>
15062 L:      linux-wireless@vger.kernel.org
15063 S:      Maintained
15064 W:      https://wireless.wiki.kernel.org/
15065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15066 F:      drivers/net/wireless/realtek/rtlwifi/
15067
15068 REALTEK WIRELESS DRIVER (rtw88)
15069 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15070 L:      linux-wireless@vger.kernel.org
15071 S:      Maintained
15072 F:      drivers/net/wireless/realtek/rtw88/
15073
15074 REDPINE WIRELESS DRIVER
15075 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15076 M:      Siva Rebbagondla <siva8118@gmail.com>
15077 L:      linux-wireless@vger.kernel.org
15078 S:      Maintained
15079 F:      drivers/net/wireless/rsi/
15080
15081 REGISTER MAP ABSTRACTION
15082 M:      Mark Brown <broonie@kernel.org>
15083 L:      linux-kernel@vger.kernel.org
15084 S:      Supported
15085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15086 F:      Documentation/devicetree/bindings/regmap/
15087 F:      drivers/base/regmap/
15088 F:      include/linux/regmap.h
15089
15090 REISERFS FILE SYSTEM
15091 L:      reiserfs-devel@vger.kernel.org
15092 S:      Supported
15093 F:      fs/reiserfs/
15094
15095 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15096 M:      Ohad Ben-Cohen <ohad@wizery.com>
15097 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15098 L:      linux-remoteproc@vger.kernel.org
15099 S:      Maintained
15100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15101 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15102 F:      Documentation/devicetree/bindings/remoteproc/
15103 F:      Documentation/staging/remoteproc.rst
15104 F:      drivers/remoteproc/
15105 F:      include/linux/remoteproc.h
15106 F:      include/linux/remoteproc/
15107
15108 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15109 M:      Ohad Ben-Cohen <ohad@wizery.com>
15110 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15111 L:      linux-remoteproc@vger.kernel.org
15112 S:      Maintained
15113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15114 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15115 F:      Documentation/staging/rpmsg.rst
15116 F:      drivers/rpmsg/
15117 F:      include/linux/rpmsg.h
15118 F:      include/linux/rpmsg/
15119 F:      include/uapi/linux/rpmsg.h
15120 F:      samples/rpmsg/
15121
15122 RENESAS CLOCK DRIVERS
15123 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15124 L:      linux-renesas-soc@vger.kernel.org
15125 S:      Supported
15126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15127 F:      Documentation/devicetree/bindings/clock/renesas,*
15128 F:      drivers/clk/renesas/
15129
15130 RENESAS EMEV2 I2C DRIVER
15131 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15132 S:      Supported
15133 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
15134 F:      drivers/i2c/busses/i2c-emev2.c
15135
15136 RENESAS ETHERNET DRIVERS
15137 R:      Sergei Shtylyov <sergei.shtylyov@gmail.com>
15138 L:      netdev@vger.kernel.org
15139 L:      linux-renesas-soc@vger.kernel.org
15140 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15141 F:      drivers/net/ethernet/renesas/
15142 F:      include/linux/sh_eth.h
15143
15144 RENESAS R-CAR GYROADC DRIVER
15145 M:      Marek Vasut <marek.vasut@gmail.com>
15146 L:      linux-iio@vger.kernel.org
15147 S:      Supported
15148 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
15149 F:      drivers/iio/adc/rcar-gyroadc.c
15150
15151 RENESAS R-CAR I2C DRIVERS
15152 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15153 S:      Supported
15154 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
15155 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
15156 F:      drivers/i2c/busses/i2c-rcar.c
15157 F:      drivers/i2c/busses/i2c-sh_mobile.c
15158
15159 RENESAS R-CAR THERMAL DRIVERS
15160 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
15161 L:      linux-renesas-soc@vger.kernel.org
15162 S:      Supported
15163 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
15164 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
15165 F:      drivers/thermal/rcar_gen3_thermal.c
15166 F:      drivers/thermal/rcar_thermal.c
15167
15168 RENESAS RIIC DRIVER
15169 M:      Chris Brandt <chris.brandt@renesas.com>
15170 S:      Supported
15171 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
15172 F:      drivers/i2c/busses/i2c-riic.c
15173
15174 RENESAS USB PHY DRIVER
15175 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15176 L:      linux-renesas-soc@vger.kernel.org
15177 S:      Maintained
15178 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
15179
15180 RESET CONTROLLER FRAMEWORK
15181 M:      Philipp Zabel <p.zabel@pengutronix.de>
15182 S:      Maintained
15183 T:      git git://git.pengutronix.de/git/pza/linux
15184 F:      Documentation/devicetree/bindings/reset/
15185 F:      Documentation/driver-api/reset.rst
15186 F:      drivers/reset/
15187 F:      include/dt-bindings/reset/
15188 F:      include/linux/reset-controller.h
15189 F:      include/linux/reset.h
15190 F:      include/linux/reset/
15191 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
15192
15193 RESTARTABLE SEQUENCES SUPPORT
15194 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15195 M:      Peter Zijlstra <peterz@infradead.org>
15196 M:      "Paul E. McKenney" <paulmck@kernel.org>
15197 M:      Boqun Feng <boqun.feng@gmail.com>
15198 L:      linux-kernel@vger.kernel.org
15199 S:      Supported
15200 F:      include/trace/events/rseq.h
15201 F:      include/uapi/linux/rseq.h
15202 F:      kernel/rseq.c
15203 F:      tools/testing/selftests/rseq/
15204
15205 RFKILL
15206 M:      Johannes Berg <johannes@sipsolutions.net>
15207 L:      linux-wireless@vger.kernel.org
15208 S:      Maintained
15209 W:      https://wireless.wiki.kernel.org/
15210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
15211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
15212 F:      Documentation/ABI/stable/sysfs-class-rfkill
15213 F:      Documentation/driver-api/rfkill.rst
15214 F:      include/linux/rfkill.h
15215 F:      include/uapi/linux/rfkill.h
15216 F:      net/rfkill/
15217
15218 RHASHTABLE
15219 M:      Thomas Graf <tgraf@suug.ch>
15220 M:      Herbert Xu <herbert@gondor.apana.org.au>
15221 L:      netdev@vger.kernel.org
15222 S:      Maintained
15223 F:      include/linux/rhashtable-types.h
15224 F:      include/linux/rhashtable.h
15225 F:      lib/rhashtable.c
15226 F:      lib/test_rhashtable.c
15227
15228 RICOH R5C592 MEMORYSTICK DRIVER
15229 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15230 S:      Maintained
15231 F:      drivers/memstick/host/r592.*
15232
15233 RICOH SMARTMEDIA/XD DRIVER
15234 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15235 S:      Maintained
15236 F:      drivers/mtd/nand/raw/r852.c
15237 F:      drivers/mtd/nand/raw/r852.h
15238
15239 RISC-V ARCHITECTURE
15240 M:      Paul Walmsley <paul.walmsley@sifive.com>
15241 M:      Palmer Dabbelt <palmer@dabbelt.com>
15242 M:      Albert Ou <aou@eecs.berkeley.edu>
15243 L:      linux-riscv@lists.infradead.org
15244 S:      Supported
15245 P:      Documentation/riscv/patch-acceptance.rst
15246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
15247 F:      arch/riscv/
15248 N:      riscv
15249 K:      riscv
15250
15251 RNBD BLOCK DRIVERS
15252 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15253 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15254 L:      linux-block@vger.kernel.org
15255 S:      Maintained
15256 F:      drivers/block/rnbd/
15257
15258 ROCCAT DRIVERS
15259 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
15260 S:      Maintained
15261 W:      http://sourceforge.net/projects/roccat/
15262 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
15263 F:      drivers/hid/hid-roccat*
15264 F:      include/linux/hid-roccat*
15265
15266 ROCKCHIP ISP V1 DRIVER
15267 M:      Helen Koike <helen.koike@collabora.com>
15268 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
15269 L:      linux-media@vger.kernel.org
15270 L:      linux-rockchip@lists.infradead.org
15271 S:      Maintained
15272 F:      Documentation/admin-guide/media/rkisp1.rst
15273 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
15274 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
15275 F:      drivers/media/platform/rockchip/rkisp1
15276 F:      include/uapi/linux/rkisp1-config.h
15277
15278 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
15279 M:      Jacob Chen <jacob-chen@iotwrt.com>
15280 M:      Ezequiel Garcia <ezequiel@collabora.com>
15281 L:      linux-media@vger.kernel.org
15282 L:      linux-rockchip@lists.infradead.org
15283 S:      Maintained
15284 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
15285 F:      drivers/media/platform/rockchip/rga/
15286
15287 ROCKCHIP VIDEO DECODER DRIVER
15288 M:      Ezequiel Garcia <ezequiel@collabora.com>
15289 L:      linux-media@vger.kernel.org
15290 L:      linux-rockchip@lists.infradead.org
15291 S:      Maintained
15292 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
15293 F:      drivers/staging/media/rkvdec/
15294
15295 ROCKER DRIVER
15296 M:      Jiri Pirko <jiri@resnulli.us>
15297 L:      netdev@vger.kernel.org
15298 S:      Supported
15299 F:      drivers/net/ethernet/rocker/
15300
15301 ROCKETPORT DRIVER
15302 S:      Maintained
15303 W:      http://www.comtrol.com
15304 F:      Documentation/driver-api/serial/rocket.rst
15305 F:      drivers/tty/rocket*
15306
15307 ROCKETPORT EXPRESS/INFINITY DRIVER
15308 M:      Kevin Cernekee <cernekee@gmail.com>
15309 L:      linux-serial@vger.kernel.org
15310 S:      Odd Fixes
15311 F:      drivers/tty/serial/rp2.*
15312
15313 ROHM BD99954 CHARGER IC
15314 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15315 L:      linux-power@fi.rohmeurope.com
15316 S:      Supported
15317 F:      drivers/power/supply/bd99954-charger.c
15318 F:      drivers/power/supply/bd99954-charger.h
15319
15320 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
15321 M:      Tomasz Duszynski <tduszyns@gmail.com>
15322 S:      Maintained
15323 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
15324 F:      drivers/iio/light/bh1750.c
15325
15326 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
15327 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15328 L:      linux-kernel@vger.kernel.org
15329 L:      linux-renesas-soc@vger.kernel.org
15330 S:      Supported
15331 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
15332 F:      drivers/gpio/gpio-bd9571mwv.c
15333 F:      drivers/mfd/bd9571mwv.c
15334 F:      drivers/regulator/bd9571mwv-regulator.c
15335 F:      include/linux/mfd/bd9571mwv.h
15336
15337 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
15338 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
15339 L:      linux-power@fi.rohmeurope.com
15340 S:      Supported
15341 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
15342 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
15343 F:      drivers/clk/clk-bd718x7.c
15344 F:      drivers/gpio/gpio-bd70528.c
15345 F:      drivers/gpio/gpio-bd71828.c
15346 F:      drivers/mfd/rohm-bd70528.c
15347 F:      drivers/mfd/rohm-bd71828.c
15348 F:      drivers/mfd/rohm-bd718x7.c
15349 F:      drivers/power/supply/bd70528-charger.c
15350 F:      drivers/regulator/bd70528-regulator.c
15351 F:      drivers/regulator/bd71828-regulator.c
15352 F:      drivers/regulator/bd718x7-regulator.c
15353 F:      drivers/regulator/rohm-regulator.c
15354 F:      drivers/rtc/rtc-bd70528.c
15355 F:      drivers/watchdog/bd70528_wdt.c
15356 F:      include/linux/mfd/rohm-bd70528.h
15357 F:      include/linux/mfd/rohm-bd71828.h
15358 F:      include/linux/mfd/rohm-bd718x7.h
15359 F:      include/linux/mfd/rohm-generic.h
15360 F:      include/linux/mfd/rohm-shared.h
15361
15362 ROSE NETWORK LAYER
15363 M:      Ralf Baechle <ralf@linux-mips.org>
15364 L:      linux-hams@vger.kernel.org
15365 S:      Maintained
15366 W:      http://www.linux-ax25.org/
15367 F:      include/net/rose.h
15368 F:      include/uapi/linux/rose.h
15369 F:      net/rose/
15370
15371 ROTATION DRIVER FOR ALLWINNER A83T
15372 M:      Jernej Skrabec <jernej.skrabec@siol.net>
15373 L:      linux-media@vger.kernel.org
15374 S:      Maintained
15375 T:      git git://linuxtv.org/media_tree.git
15376 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
15377 F:      drivers/media/platform/sunxi/sun8i-rotate/
15378
15379 RTL2830 MEDIA DRIVER
15380 M:      Antti Palosaari <crope@iki.fi>
15381 L:      linux-media@vger.kernel.org
15382 S:      Maintained
15383 W:      https://linuxtv.org
15384 W:      http://palosaari.fi/linux/
15385 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15386 T:      git git://linuxtv.org/anttip/media_tree.git
15387 F:      drivers/media/dvb-frontends/rtl2830*
15388
15389 RTL2832 MEDIA DRIVER
15390 M:      Antti Palosaari <crope@iki.fi>
15391 L:      linux-media@vger.kernel.org
15392 S:      Maintained
15393 W:      https://linuxtv.org
15394 W:      http://palosaari.fi/linux/
15395 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15396 T:      git git://linuxtv.org/anttip/media_tree.git
15397 F:      drivers/media/dvb-frontends/rtl2832*
15398
15399 RTL2832_SDR MEDIA DRIVER
15400 M:      Antti Palosaari <crope@iki.fi>
15401 L:      linux-media@vger.kernel.org
15402 S:      Maintained
15403 W:      https://linuxtv.org
15404 W:      http://palosaari.fi/linux/
15405 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15406 T:      git git://linuxtv.org/anttip/media_tree.git
15407 F:      drivers/media/dvb-frontends/rtl2832_sdr*
15408
15409 RTL8180 WIRELESS DRIVER
15410 L:      linux-wireless@vger.kernel.org
15411 S:      Orphan
15412 W:      https://wireless.wiki.kernel.org/
15413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15414 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
15415
15416 RTL8187 WIRELESS DRIVER
15417 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15418 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
15419 M:      Larry Finger <Larry.Finger@lwfinger.net>
15420 L:      linux-wireless@vger.kernel.org
15421 S:      Maintained
15422 W:      https://wireless.wiki.kernel.org/
15423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15424 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
15425
15426 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
15427 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
15428 L:      linux-wireless@vger.kernel.org
15429 S:      Maintained
15430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
15431 F:      drivers/net/wireless/realtek/rtl8xxxu/
15432
15433 RTRS TRANSPORT DRIVERS
15434 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
15435 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15436 L:      linux-rdma@vger.kernel.org
15437 S:      Maintained
15438 F:      drivers/infiniband/ulp/rtrs/
15439
15440 RXRPC SOCKETS (AF_RXRPC)
15441 M:      David Howells <dhowells@redhat.com>
15442 L:      linux-afs@lists.infradead.org
15443 S:      Supported
15444 W:      https://www.infradead.org/~dhowells/kafs/
15445 F:      Documentation/networking/rxrpc.rst
15446 F:      include/keys/rxrpc-type.h
15447 F:      include/net/af_rxrpc.h
15448 F:      include/trace/events/rxrpc.h
15449 F:      include/uapi/linux/rxrpc.h
15450 F:      net/rxrpc/
15451
15452 S3 SAVAGE FRAMEBUFFER DRIVER
15453 M:      Antonino Daplas <adaplas@gmail.com>
15454 L:      linux-fbdev@vger.kernel.org
15455 S:      Maintained
15456 F:      drivers/video/fbdev/savage/
15457
15458 S390
15459 M:      Heiko Carstens <hca@linux.ibm.com>
15460 M:      Vasily Gorbik <gor@linux.ibm.com>
15461 M:      Christian Borntraeger <borntraeger@de.ibm.com>
15462 L:      linux-s390@vger.kernel.org
15463 S:      Supported
15464 W:      http://www.ibm.com/developerworks/linux/linux390/
15465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
15466 F:      Documentation/driver-api/s390-drivers.rst
15467 F:      Documentation/s390/
15468 F:      arch/s390/
15469 F:      drivers/s390/
15470
15471 S390 COMMON I/O LAYER
15472 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
15473 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
15474 L:      linux-s390@vger.kernel.org
15475 S:      Supported
15476 W:      http://www.ibm.com/developerworks/linux/linux390/
15477 F:      drivers/s390/cio/
15478
15479 S390 DASD DRIVER
15480 M:      Stefan Haberland <sth@linux.ibm.com>
15481 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
15482 L:      linux-s390@vger.kernel.org
15483 S:      Supported
15484 W:      http://www.ibm.com/developerworks/linux/linux390/
15485 F:      block/partitions/ibm.c
15486 F:      drivers/s390/block/dasd*
15487 F:      include/linux/dasd_mod.h
15488
15489 S390 IOMMU (PCI)
15490 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15491 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15492 L:      linux-s390@vger.kernel.org
15493 S:      Supported
15494 W:      http://www.ibm.com/developerworks/linux/linux390/
15495 F:      drivers/iommu/s390-iommu.c
15496
15497 S390 IUCV NETWORK LAYER
15498 M:      Julian Wiedmann <jwi@linux.ibm.com>
15499 M:      Karsten Graul <kgraul@linux.ibm.com>
15500 L:      linux-s390@vger.kernel.org
15501 S:      Supported
15502 W:      http://www.ibm.com/developerworks/linux/linux390/
15503 F:      drivers/s390/net/*iucv*
15504 F:      include/net/iucv/
15505 F:      net/iucv/
15506
15507 S390 NETWORK DRIVERS
15508 M:      Julian Wiedmann <jwi@linux.ibm.com>
15509 M:      Karsten Graul <kgraul@linux.ibm.com>
15510 L:      linux-s390@vger.kernel.org
15511 S:      Supported
15512 W:      http://www.ibm.com/developerworks/linux/linux390/
15513 F:      drivers/s390/net/
15514
15515 S390 PCI SUBSYSTEM
15516 M:      Niklas Schnelle <schnelle@linux.ibm.com>
15517 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
15518 L:      linux-s390@vger.kernel.org
15519 S:      Supported
15520 W:      http://www.ibm.com/developerworks/linux/linux390/
15521 F:      arch/s390/pci/
15522 F:      drivers/pci/hotplug/s390_pci_hpc.c
15523 F:      Documentation/s390/pci.rst
15524
15525 S390 VFIO AP DRIVER
15526 M:      Tony Krowiak <akrowiak@linux.ibm.com>
15527 M:      Pierre Morel <pmorel@linux.ibm.com>
15528 M:      Halil Pasic <pasic@linux.ibm.com>
15529 L:      linux-s390@vger.kernel.org
15530 S:      Supported
15531 W:      http://www.ibm.com/developerworks/linux/linux390/
15532 F:      Documentation/s390/vfio-ap.rst
15533 F:      drivers/s390/crypto/vfio_ap_drv.c
15534 F:      drivers/s390/crypto/vfio_ap_ops.c
15535 F:      drivers/s390/crypto/vfio_ap_private.h
15536
15537 S390 VFIO-CCW DRIVER
15538 M:      Cornelia Huck <cohuck@redhat.com>
15539 M:      Eric Farman <farman@linux.ibm.com>
15540 R:      Halil Pasic <pasic@linux.ibm.com>
15541 L:      linux-s390@vger.kernel.org
15542 L:      kvm@vger.kernel.org
15543 S:      Supported
15544 F:      Documentation/s390/vfio-ccw.rst
15545 F:      drivers/s390/cio/vfio_ccw*
15546 F:      include/uapi/linux/vfio_ccw.h
15547
15548 S390 VFIO-PCI DRIVER
15549 M:      Matthew Rosato <mjrosato@linux.ibm.com>
15550 L:      linux-s390@vger.kernel.org
15551 L:      kvm@vger.kernel.org
15552 S:      Supported
15553 F:      drivers/vfio/pci/vfio_pci_zdev.c
15554 F:      include/uapi/linux/vfio_zdev.h
15555
15556 S390 ZCRYPT DRIVER
15557 M:      Harald Freudenberger <freude@linux.ibm.com>
15558 L:      linux-s390@vger.kernel.org
15559 S:      Supported
15560 W:      http://www.ibm.com/developerworks/linux/linux390/
15561 F:      drivers/s390/crypto/
15562
15563 S390 ZFCP DRIVER
15564 M:      Steffen Maier <maier@linux.ibm.com>
15565 M:      Benjamin Block <bblock@linux.ibm.com>
15566 L:      linux-s390@vger.kernel.org
15567 S:      Supported
15568 W:      http://www.ibm.com/developerworks/linux/linux390/
15569 F:      drivers/s390/scsi/zfcp_*
15570
15571 S3C24XX SD/MMC Driver
15572 M:      Ben Dooks <ben-linux@fluff.org>
15573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15574 S:      Supported
15575 F:      drivers/mmc/host/s3cmci.*
15576
15577 SAA6588 RDS RECEIVER DRIVER
15578 M:      Hans Verkuil <hverkuil@xs4all.nl>
15579 L:      linux-media@vger.kernel.org
15580 S:      Odd Fixes
15581 W:      https://linuxtv.org
15582 T:      git git://linuxtv.org/media_tree.git
15583 F:      drivers/media/i2c/saa6588*
15584
15585 SAA7134 VIDEO4LINUX DRIVER
15586 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15587 L:      linux-media@vger.kernel.org
15588 S:      Odd fixes
15589 W:      https://linuxtv.org
15590 T:      git git://linuxtv.org/media_tree.git
15591 F:      Documentation/driver-api/media/drivers/saa7134*
15592 F:      drivers/media/pci/saa7134/
15593
15594 SAA7146 VIDEO4LINUX-2 DRIVER
15595 M:      Hans Verkuil <hverkuil@xs4all.nl>
15596 L:      linux-media@vger.kernel.org
15597 S:      Maintained
15598 T:      git git://linuxtv.org/media_tree.git
15599 F:      drivers/media/common/saa7146/
15600 F:      drivers/media/pci/saa7146/
15601 F:      include/media/drv-intf/saa7146*
15602
15603 SAFESETID SECURITY MODULE
15604 M:      Micah Morton <mortonm@chromium.org>
15605 S:      Supported
15606 F:      Documentation/admin-guide/LSM/SafeSetID.rst
15607 F:      security/safesetid/
15608
15609 SAMSUNG AUDIO (ASoC) DRIVERS
15610 M:      Krzysztof Kozlowski <krzk@kernel.org>
15611 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15613 S:      Supported
15614 F:      Documentation/devicetree/bindings/sound/samsung*
15615 F:      sound/soc/samsung/
15616
15617 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
15618 M:      Krzysztof Kozlowski <krzk@kernel.org>
15619 L:      linux-crypto@vger.kernel.org
15620 L:      linux-samsung-soc@vger.kernel.org
15621 S:      Maintained
15622 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
15623 F:      drivers/crypto/exynos-rng.c
15624
15625 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
15626 M:      Łukasz Stelmach <l.stelmach@samsung.com>
15627 L:      linux-samsung-soc@vger.kernel.org
15628 S:      Maintained
15629 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
15630 F:      drivers/char/hw_random/exynos-trng.c
15631
15632 SAMSUNG FRAMEBUFFER DRIVER
15633 M:      Jingoo Han <jingoohan1@gmail.com>
15634 L:      linux-fbdev@vger.kernel.org
15635 S:      Maintained
15636 F:      drivers/video/fbdev/s3c-fb.c
15637
15638 SAMSUNG INTERCONNECT DRIVERS
15639 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15640 M:      Artur Świgoń <a.swigon@samsung.com>
15641 L:      linux-pm@vger.kernel.org
15642 L:      linux-samsung-soc@vger.kernel.org
15643 S:      Supported
15644 F:      drivers/interconnect/samsung/
15645
15646 SAMSUNG LAPTOP DRIVER
15647 M:      Corentin Chary <corentin.chary@gmail.com>
15648 L:      platform-driver-x86@vger.kernel.org
15649 S:      Maintained
15650 F:      drivers/platform/x86/samsung-laptop.c
15651
15652 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
15653 M:      Krzysztof Kozlowski <krzk@kernel.org>
15654 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15655 L:      linux-kernel@vger.kernel.org
15656 L:      linux-samsung-soc@vger.kernel.org
15657 S:      Supported
15658 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
15659 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
15660 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
15661 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
15662 F:      drivers/clk/clk-s2mps11.c
15663 F:      drivers/mfd/sec*.c
15664 F:      drivers/regulator/s2m*.c
15665 F:      drivers/regulator/s5m*.c
15666 F:      drivers/rtc/rtc-s5m.c
15667 F:      include/linux/mfd/samsung/
15668
15669 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
15670 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
15671 L:      linux-media@vger.kernel.org
15672 L:      linux-samsung-soc@vger.kernel.org
15673 S:      Maintained
15674 F:      drivers/media/platform/s3c-camif/
15675 F:      include/media/drv-intf/s3c_camif.h
15676
15677 SAMSUNG S3FWRN5 NFC DRIVER
15678 M:      Krzysztof Kozlowski <krzk@kernel.org>
15679 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
15680 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15681 S:      Maintained
15682 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
15683 F:      drivers/nfc/s3fwrn5
15684
15685 SAMSUNG S5C73M3 CAMERA DRIVER
15686 M:      Andrzej Hajda <a.hajda@samsung.com>
15687 L:      linux-media@vger.kernel.org
15688 S:      Supported
15689 F:      drivers/media/i2c/s5c73m3/*
15690
15691 SAMSUNG S5K5BAF CAMERA DRIVER
15692 M:      Andrzej Hajda <a.hajda@samsung.com>
15693 L:      linux-media@vger.kernel.org
15694 S:      Supported
15695 F:      drivers/media/i2c/s5k5baf.c
15696
15697 SAMSUNG S5P Security SubSystem (SSS) DRIVER
15698 M:      Krzysztof Kozlowski <krzk@kernel.org>
15699 M:      Vladimir Zapolskiy <vz@mleia.com>
15700 M:      Kamil Konieczny <k.konieczny@samsung.com>
15701 L:      linux-crypto@vger.kernel.org
15702 L:      linux-samsung-soc@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
15705 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
15706 F:      drivers/crypto/s5p-sss.c
15707
15708 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
15709 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15710 L:      linux-media@vger.kernel.org
15711 S:      Supported
15712 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15713 F:      drivers/media/platform/exynos4-is/
15714
15715 SAMSUNG SOC CLOCK DRIVERS
15716 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15717 M:      Tomasz Figa <tomasz.figa@gmail.com>
15718 M:      Chanwoo Choi <cw00.choi@samsung.com>
15719 L:      linux-samsung-soc@vger.kernel.org
15720 S:      Supported
15721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15722 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15723 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15724 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15725 F:      drivers/clk/samsung/
15726 F:      include/dt-bindings/clock/exynos*.h
15727 F:      include/linux/clk/samsung.h
15728 F:      include/linux/platform_data/clk-s3c2410.h
15729
15730 SAMSUNG SPI DRIVERS
15731 M:      Krzysztof Kozlowski <krzk@kernel.org>
15732 M:      Andi Shyti <andi@etezian.org>
15733 L:      linux-spi@vger.kernel.org
15734 L:      linux-samsung-soc@vger.kernel.org
15735 S:      Maintained
15736 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15737 F:      drivers/spi/spi-s3c*
15738 F:      include/linux/platform_data/spi-s3c64xx.h
15739 F:      include/linux/spi/s3c24xx-fiq.h
15740
15741 SAMSUNG SXGBE DRIVERS
15742 M:      Byungho An <bh74.an@samsung.com>
15743 L:      netdev@vger.kernel.org
15744 S:      Supported
15745 F:      drivers/net/ethernet/samsung/sxgbe/
15746
15747 SAMSUNG THERMAL DRIVER
15748 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15749 L:      linux-pm@vger.kernel.org
15750 L:      linux-samsung-soc@vger.kernel.org
15751 S:      Supported
15752 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15753 F:      drivers/thermal/samsung/
15754
15755 SAMSUNG USB2 PHY DRIVER
15756 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15757 L:      linux-kernel@vger.kernel.org
15758 S:      Supported
15759 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15760 F:      Documentation/driver-api/phy/samsung-usb2.rst
15761 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15762 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15763 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15764 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15765 F:      drivers/phy/samsung/phy-samsung-usb2.c
15766 F:      drivers/phy/samsung/phy-samsung-usb2.h
15767
15768 SC1200 WDT DRIVER
15769 M:      Zwane Mwaikambo <zwanem@gmail.com>
15770 S:      Maintained
15771 F:      drivers/watchdog/sc1200wdt.c
15772
15773 SCHEDULER
15774 M:      Ingo Molnar <mingo@redhat.com>
15775 M:      Peter Zijlstra <peterz@infradead.org>
15776 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15777 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15778 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15779 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15780 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15781 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15782 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
15783 L:      linux-kernel@vger.kernel.org
15784 S:      Maintained
15785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15786 F:      include/linux/preempt.h
15787 F:      include/linux/sched.h
15788 F:      include/linux/wait.h
15789 F:      include/uapi/linux/sched.h
15790 F:      kernel/sched/
15791
15792 SCR24X CHIP CARD INTERFACE DRIVER
15793 M:      Lubomir Rintel <lkundrak@v3.sk>
15794 S:      Supported
15795 F:      drivers/char/pcmcia/scr24x_cs.c
15796
15797 SCSI CDROM DRIVER
15798 M:      Jens Axboe <axboe@kernel.dk>
15799 L:      linux-scsi@vger.kernel.org
15800 S:      Maintained
15801 W:      http://www.kernel.dk
15802 F:      drivers/scsi/sr*
15803
15804 SCSI RDMA PROTOCOL (SRP) INITIATOR
15805 M:      Bart Van Assche <bvanassche@acm.org>
15806 L:      linux-rdma@vger.kernel.org
15807 S:      Supported
15808 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15809 F:      drivers/infiniband/ulp/srp/
15810 F:      include/scsi/srp.h
15811
15812 SCSI RDMA PROTOCOL (SRP) TARGET
15813 M:      Bart Van Assche <bvanassche@acm.org>
15814 L:      linux-rdma@vger.kernel.org
15815 L:      target-devel@vger.kernel.org
15816 S:      Supported
15817 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15818 F:      drivers/infiniband/ulp/srpt/
15819
15820 SCSI SG DRIVER
15821 M:      Doug Gilbert <dgilbert@interlog.com>
15822 L:      linux-scsi@vger.kernel.org
15823 S:      Maintained
15824 W:      http://sg.danny.cz/sg
15825 F:      Documentation/scsi/scsi-generic.rst
15826 F:      drivers/scsi/sg.c
15827 F:      include/scsi/sg.h
15828
15829 SCSI SUBSYSTEM
15830 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15831 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15832 L:      linux-scsi@vger.kernel.org
15833 S:      Maintained
15834 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15837 F:      Documentation/devicetree/bindings/scsi/
15838 F:      drivers/scsi/
15839 F:      include/scsi/
15840
15841 SCSI TAPE DRIVER
15842 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15843 L:      linux-scsi@vger.kernel.org
15844 S:      Maintained
15845 F:      Documentation/scsi/st.rst
15846 F:      drivers/scsi/st.*
15847 F:      drivers/scsi/st_*.h
15848
15849 SCSI TARGET CORE USER DRIVER
15850 M:      Bodo Stroesser <bostroesser@gmail.com>
15851 L:      linux-scsi@vger.kernel.org
15852 L:      target-devel@vger.kernel.org
15853 S:      Supported
15854 F:      Documentation/target/tcmu-design.rst
15855 F:      drivers/target/target_core_user.c
15856 F:      include/uapi/linux/target_core_user.h
15857
15858 SCSI TARGET SUBSYSTEM
15859 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15860 L:      linux-scsi@vger.kernel.org
15861 L:      target-devel@vger.kernel.org
15862 S:      Supported
15863 W:      http://www.linux-iscsi.org
15864 Q:      https://patchwork.kernel.org/project/target-devel/list/
15865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15866 F:      Documentation/target/
15867 F:      drivers/target/
15868 F:      include/target/
15869
15870 SCTP PROTOCOL
15871 M:      Vlad Yasevich <vyasevich@gmail.com>
15872 M:      Neil Horman <nhorman@tuxdriver.com>
15873 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15874 L:      linux-sctp@vger.kernel.org
15875 S:      Maintained
15876 W:      http://lksctp.sourceforge.net
15877 F:      Documentation/networking/sctp.rst
15878 F:      include/linux/sctp.h
15879 F:      include/net/sctp/
15880 F:      include/uapi/linux/sctp.h
15881 F:      net/sctp/
15882
15883 SCx200 CPU SUPPORT
15884 M:      Jim Cromie <jim.cromie@gmail.com>
15885 S:      Odd Fixes
15886 F:      Documentation/i2c/busses/scx200_acb.rst
15887 F:      arch/x86/platform/scx200/
15888 F:      drivers/i2c/busses/scx200*
15889 F:      drivers/mtd/maps/scx200_docflash.c
15890 F:      drivers/watchdog/scx200_wdt.c
15891 F:      include/linux/scx200.h
15892
15893 SCx200 GPIO DRIVER
15894 M:      Jim Cromie <jim.cromie@gmail.com>
15895 S:      Maintained
15896 F:      drivers/char/scx200_gpio.c
15897 F:      include/linux/scx200_gpio.h
15898
15899 SCx200 HRT CLOCKSOURCE DRIVER
15900 M:      Jim Cromie <jim.cromie@gmail.com>
15901 S:      Maintained
15902 F:      drivers/clocksource/scx200_hrt.c
15903
15904 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15905 M:      Sascha Sommer <saschasommer@freenet.de>
15906 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15907 S:      Maintained
15908 F:      drivers/mmc/host/sdricoh_cs.c
15909
15910 SECO BOARDS CEC DRIVER
15911 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15912 S:      Maintained
15913 F:      drivers/media/cec/platform/seco/seco-cec.c
15914 F:      drivers/media/cec/platform/seco/seco-cec.h
15915
15916 SECURE COMPUTING
15917 M:      Kees Cook <keescook@chromium.org>
15918 R:      Andy Lutomirski <luto@amacapital.net>
15919 R:      Will Drewry <wad@chromium.org>
15920 S:      Supported
15921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15922 F:      Documentation/userspace-api/seccomp_filter.rst
15923 F:      include/linux/seccomp.h
15924 F:      include/uapi/linux/seccomp.h
15925 F:      kernel/seccomp.c
15926 F:      tools/testing/selftests/kselftest_harness.h
15927 F:      tools/testing/selftests/seccomp/*
15928 K:      \bsecure_computing
15929 K:      \bTIF_SECCOMP\b
15930
15931 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15932 M:      Al Cooper <alcooperx@gmail.com>
15933 L:      linux-mmc@vger.kernel.org
15934 L:      bcm-kernel-feedback-list@broadcom.com
15935 S:      Maintained
15936 F:      drivers/mmc/host/sdhci-brcmstb*
15937
15938 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15939 M:      Adrian Hunter <adrian.hunter@intel.com>
15940 L:      linux-mmc@vger.kernel.org
15941 S:      Maintained
15942 F:      drivers/mmc/host/sdhci*
15943 F:      include/linux/mmc/sdhci*
15944
15945 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15946 M:      Eugen Hristev <eugen.hristev@microchip.com>
15947 L:      linux-mmc@vger.kernel.org
15948 S:      Supported
15949 F:      drivers/mmc/host/sdhci-of-at91.c
15950
15951 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15952 M:      Ben Dooks <ben-linux@fluff.org>
15953 M:      Jaehoon Chung <jh80.chung@samsung.com>
15954 L:      linux-mmc@vger.kernel.org
15955 S:      Maintained
15956 F:      drivers/mmc/host/sdhci-s3c*
15957
15958 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15959 M:      Viresh Kumar <vireshk@kernel.org>
15960 L:      linux-mmc@vger.kernel.org
15961 S:      Maintained
15962 F:      drivers/mmc/host/sdhci-spear.c
15963
15964 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15965 M:      Kishon Vijay Abraham I <kishon@ti.com>
15966 L:      linux-mmc@vger.kernel.org
15967 S:      Maintained
15968 F:      drivers/mmc/host/sdhci-omap.c
15969
15970 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15971 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15972 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15973 L:      linux-block@vger.kernel.org
15974 S:      Supported
15975 F:      block/opal_proto.h
15976 F:      block/sed*
15977 F:      include/linux/sed*
15978 F:      include/uapi/linux/sed*
15979
15980 SECURITY CONTACT
15981 M:      Security Officers <security@kernel.org>
15982 S:      Supported
15983 F:      Documentation/admin-guide/security-bugs.rst
15984
15985 SECURITY SUBSYSTEM
15986 M:      James Morris <jmorris@namei.org>
15987 M:      "Serge E. Hallyn" <serge@hallyn.com>
15988 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15989 S:      Supported
15990 W:      http://kernsec.org/
15991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15992 F:      security/
15993 X:      security/selinux/
15994
15995 SELINUX SECURITY MODULE
15996 M:      Paul Moore <paul@paul-moore.com>
15997 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15998 M:      Eric Paris <eparis@parisplace.org>
15999 L:      selinux@vger.kernel.org
16000 S:      Supported
16001 W:      https://selinuxproject.org
16002 W:      https://github.com/SELinuxProject
16003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16004 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16005 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16006 F:      Documentation/admin-guide/LSM/SELinux.rst
16007 F:      include/trace/events/avc.h
16008 F:      include/uapi/linux/selinux_netlink.h
16009 F:      scripts/selinux/
16010 F:      security/selinux/
16011
16012 SENSABLE PHANTOM
16013 M:      Jiri Slaby <jirislaby@kernel.org>
16014 S:      Maintained
16015 F:      drivers/misc/phantom.c
16016 F:      include/uapi/linux/phantom.h
16017
16018 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16019 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16020 S:      Maintained
16021 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16022 F:      drivers/iio/chemical/scd30.h
16023 F:      drivers/iio/chemical/scd30_core.c
16024 F:      drivers/iio/chemical/scd30_i2c.c
16025 F:      drivers/iio/chemical/scd30_serial.c
16026
16027 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16028 M:      Tomasz Duszynski <tduszyns@gmail.com>
16029 S:      Maintained
16030 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16031 F:      drivers/iio/chemical/sps30.c
16032
16033 SERIAL DEVICE BUS
16034 M:      Rob Herring <robh@kernel.org>
16035 L:      linux-serial@vger.kernel.org
16036 S:      Maintained
16037 F:      Documentation/devicetree/bindings/serial/serial.yaml
16038 F:      drivers/tty/serdev/
16039 F:      include/linux/serdev.h
16040
16041 SERIAL DRIVERS
16042 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16043 L:      linux-serial@vger.kernel.org
16044 S:      Maintained
16045 F:      Documentation/devicetree/bindings/serial/
16046 F:      drivers/tty/serial/
16047
16048 SERIAL IR RECEIVER
16049 M:      Sean Young <sean@mess.org>
16050 L:      linux-media@vger.kernel.org
16051 S:      Maintained
16052 F:      drivers/media/rc/serial_ir.c
16053
16054 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16055 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16056 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16057 S:      Maintained
16058 F:      Documentation/devicetree/bindings/slimbus/
16059 F:      drivers/slimbus/
16060 F:      include/linux/slimbus.h
16061
16062 SFC NETWORK DRIVER
16063 M:      Edward Cree <ecree.xilinx@gmail.com>
16064 M:      Martin Habets <habetsm.xilinx@gmail.com>
16065 L:      netdev@vger.kernel.org
16066 S:      Supported
16067 F:      drivers/net/ethernet/sfc/
16068
16069 SFF/SFP/SFP+ MODULE SUPPORT
16070 M:      Russell King <linux@armlinux.org.uk>
16071 L:      netdev@vger.kernel.org
16072 S:      Maintained
16073 F:      drivers/net/phy/phylink.c
16074 F:      drivers/net/phy/sfp*
16075 F:      include/linux/mdio/mdio-i2c.h
16076 F:      include/linux/phylink.h
16077 F:      include/linux/sfp.h
16078 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)
16079
16080 SGI GRU DRIVER
16081 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16082 S:      Maintained
16083 F:      drivers/misc/sgi-gru/
16084
16085 SGI XP/XPC/XPNET DRIVER
16086 M:      Robin Holt <robinmholt@gmail.com>
16087 M:      Steve Wahl <steve.wahl@hpe.com>
16088 R:      Mike Travis <mike.travis@hpe.com>
16089 S:      Maintained
16090 F:      drivers/misc/sgi-xp/
16091
16092 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16093 M:      Karsten Graul <kgraul@linux.ibm.com>
16094 L:      linux-s390@vger.kernel.org
16095 S:      Supported
16096 W:      http://www.ibm.com/developerworks/linux/linux390/
16097 F:      net/smc/
16098
16099 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16100 M:      Linus Walleij <linus.walleij@linaro.org>
16101 L:      linux-iio@vger.kernel.org
16102 S:      Maintained
16103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16104 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16105 F:      drivers/iio/light/gp2ap002.c
16106
16107 SHARP RJ54N1CB0C SENSOR DRIVER
16108 M:      Jacopo Mondi <jacopo@jmondi.org>
16109 L:      linux-media@vger.kernel.org
16110 S:      Odd fixes
16111 T:      git git://linuxtv.org/media_tree.git
16112 F:      drivers/media/i2c/rj54n1cb0c.c
16113 F:      include/media/i2c/rj54n1cb0c.h
16114
16115 SH_VOU V4L2 OUTPUT DRIVER
16116 L:      linux-media@vger.kernel.org
16117 S:      Orphan
16118 F:      drivers/media/platform/sh_vou.c
16119 F:      include/media/drv-intf/sh_vou.h
16120
16121 SI2157 MEDIA DRIVER
16122 M:      Antti Palosaari <crope@iki.fi>
16123 L:      linux-media@vger.kernel.org
16124 S:      Maintained
16125 W:      https://linuxtv.org
16126 W:      http://palosaari.fi/linux/
16127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16128 T:      git git://linuxtv.org/anttip/media_tree.git
16129 F:      drivers/media/tuners/si2157*
16130
16131 SI2165 MEDIA DRIVER
16132 M:      Matthias Schwarzott <zzam@gentoo.org>
16133 L:      linux-media@vger.kernel.org
16134 S:      Maintained
16135 W:      https://linuxtv.org
16136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16137 F:      drivers/media/dvb-frontends/si2165*
16138
16139 SI2168 MEDIA DRIVER
16140 M:      Antti Palosaari <crope@iki.fi>
16141 L:      linux-media@vger.kernel.org
16142 S:      Maintained
16143 W:      https://linuxtv.org
16144 W:      http://palosaari.fi/linux/
16145 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16146 T:      git git://linuxtv.org/anttip/media_tree.git
16147 F:      drivers/media/dvb-frontends/si2168*
16148
16149 SI470X FM RADIO RECEIVER I2C DRIVER
16150 M:      Hans Verkuil <hverkuil@xs4all.nl>
16151 L:      linux-media@vger.kernel.org
16152 S:      Odd Fixes
16153 W:      https://linuxtv.org
16154 T:      git git://linuxtv.org/media_tree.git
16155 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
16156
16157 SI470X FM RADIO RECEIVER USB DRIVER
16158 M:      Hans Verkuil <hverkuil@xs4all.nl>
16159 L:      linux-media@vger.kernel.org
16160 S:      Maintained
16161 W:      https://linuxtv.org
16162 T:      git git://linuxtv.org/media_tree.git
16163 F:      drivers/media/radio/si470x/radio-si470x-common.c
16164 F:      drivers/media/radio/si470x/radio-si470x-usb.c
16165 F:      drivers/media/radio/si470x/radio-si470x.h
16166
16167 SI4713 FM RADIO TRANSMITTER I2C DRIVER
16168 M:      Eduardo Valentin <edubezval@gmail.com>
16169 L:      linux-media@vger.kernel.org
16170 S:      Odd Fixes
16171 W:      https://linuxtv.org
16172 T:      git git://linuxtv.org/media_tree.git
16173 F:      drivers/media/radio/si4713/si4713.?
16174
16175 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
16176 M:      Eduardo Valentin <edubezval@gmail.com>
16177 L:      linux-media@vger.kernel.org
16178 S:      Odd Fixes
16179 W:      https://linuxtv.org
16180 T:      git git://linuxtv.org/media_tree.git
16181 F:      drivers/media/radio/si4713/radio-platform-si4713.c
16182
16183 SI4713 FM RADIO TRANSMITTER USB DRIVER
16184 M:      Hans Verkuil <hverkuil@xs4all.nl>
16185 L:      linux-media@vger.kernel.org
16186 S:      Maintained
16187 W:      https://linuxtv.org
16188 T:      git git://linuxtv.org/media_tree.git
16189 F:      drivers/media/radio/si4713/radio-usb-si4713.c
16190
16191 SIANO DVB DRIVER
16192 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16193 L:      linux-media@vger.kernel.org
16194 S:      Odd fixes
16195 W:      https://linuxtv.org
16196 T:      git git://linuxtv.org/media_tree.git
16197 F:      drivers/media/common/siano/
16198 F:      drivers/media/mmc/siano/
16199 F:      drivers/media/usb/siano/
16200 F:      drivers/media/usb/siano/
16201
16202 SIFIVE DRIVERS
16203 M:      Palmer Dabbelt <palmer@dabbelt.com>
16204 M:      Paul Walmsley <paul.walmsley@sifive.com>
16205 L:      linux-riscv@lists.infradead.org
16206 S:      Supported
16207 T:      git git://github.com/sifive/riscv-linux.git
16208 N:      sifive
16209 K:      [^@]sifive
16210
16211 SIFIVE FU540 SYSTEM-ON-CHIP
16212 M:      Paul Walmsley <paul.walmsley@sifive.com>
16213 M:      Palmer Dabbelt <palmer@dabbelt.com>
16214 L:      linux-riscv@lists.infradead.org
16215 S:      Supported
16216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
16217 N:      fu540
16218 K:      fu540
16219
16220 SIFIVE PDMA DRIVER
16221 M:      Green Wan <green.wan@sifive.com>
16222 S:      Maintained
16223 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
16224 F:      drivers/dma/sf-pdma/
16225
16226 SILEAD TOUCHSCREEN DRIVER
16227 M:      Hans de Goede <hdegoede@redhat.com>
16228 L:      linux-input@vger.kernel.org
16229 L:      platform-driver-x86@vger.kernel.org
16230 S:      Maintained
16231 F:      drivers/input/touchscreen/silead.c
16232 F:      drivers/platform/x86/touchscreen_dmi.c
16233
16234 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
16235 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
16236 S:      Supported
16237 F:      drivers/staging/wfx/
16238
16239 SILICON MOTION SM712 FRAME BUFFER DRIVER
16240 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16241 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16242 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16243 L:      linux-fbdev@vger.kernel.org
16244 S:      Maintained
16245 F:      Documentation/fb/sm712fb.rst
16246 F:      drivers/video/fbdev/sm712*
16247
16248 SIMPLE FIRMWARE INTERFACE (SFI)
16249 S:      Obsolete
16250 W:      http://simplefirmware.org/
16251 F:      arch/x86/platform/sfi/
16252 F:      drivers/sfi/
16253 F:      include/linux/sfi*.h
16254
16255 SIMPLEFB FB DRIVER
16256 M:      Hans de Goede <hdegoede@redhat.com>
16257 L:      linux-fbdev@vger.kernel.org
16258 S:      Maintained
16259 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
16260 F:      drivers/video/fbdev/simplefb.c
16261 F:      include/linux/platform_data/simplefb.h
16262
16263 SIMTEC EB110ATX (Chalice CATS)
16264 M:      Simtec Linux Team <linux@simtec.co.uk>
16265 S:      Supported
16266 W:      http://www.simtec.co.uk/products/EB110ATX/
16267
16268 SIMTEC EB2410ITX (BAST)
16269 M:      Simtec Linux Team <linux@simtec.co.uk>
16270 S:      Supported
16271 W:      http://www.simtec.co.uk/products/EB2410ITX/
16272 F:      arch/arm/mach-s3c/bast-ide.c
16273 F:      arch/arm/mach-s3c/bast-irq.c
16274 F:      arch/arm/mach-s3c/mach-bast.c
16275
16276 SIOX
16277 M:      Thorsten Scherer <t.scherer@eckelmann.de>
16278 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16279 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16280 S:      Supported
16281 F:      drivers/gpio/gpio-siox.c
16282 F:      drivers/siox/*
16283 F:      include/trace/events/siox.h
16284
16285 SIPHASH PRF ROUTINES
16286 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16287 S:      Maintained
16288 F:      include/linux/siphash.h
16289 F:      lib/siphash.c
16290 F:      lib/test_siphash.c
16291
16292 SIS 190 ETHERNET DRIVER
16293 M:      Francois Romieu <romieu@fr.zoreil.com>
16294 L:      netdev@vger.kernel.org
16295 S:      Maintained
16296 F:      drivers/net/ethernet/sis/sis190.c
16297
16298 SIS 900/7016 FAST ETHERNET DRIVER
16299 M:      Daniele Venzano <venza@brownhat.org>
16300 L:      netdev@vger.kernel.org
16301 S:      Maintained
16302 W:      http://www.brownhat.org/sis900.html
16303 F:      drivers/net/ethernet/sis/sis900.*
16304
16305 SIS FRAMEBUFFER DRIVER
16306 M:      Thomas Winischhofer <thomas@winischhofer.net>
16307 S:      Maintained
16308 W:      http://www.winischhofer.net/linuxsisvga.shtml
16309 F:      Documentation/fb/sisfb.rst
16310 F:      drivers/video/fbdev/sis/
16311 F:      include/video/sisfb.h
16312
16313 SIS I2C TOUCHSCREEN DRIVER
16314 M:      Mika Penttilä <mika.penttila@nextfour.com>
16315 L:      linux-input@vger.kernel.org
16316 S:      Maintained
16317 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
16318 F:      drivers/input/touchscreen/sis_i2c.c
16319
16320 SIS USB2VGA DRIVER
16321 M:      Thomas Winischhofer <thomas@winischhofer.net>
16322 S:      Maintained
16323 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
16324 F:      drivers/usb/misc/sisusbvga/
16325
16326 SLAB ALLOCATOR
16327 M:      Christoph Lameter <cl@linux.com>
16328 M:      Pekka Enberg <penberg@kernel.org>
16329 M:      David Rientjes <rientjes@google.com>
16330 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
16331 M:      Andrew Morton <akpm@linux-foundation.org>
16332 M:      Vlastimil Babka <vbabka@suse.cz>
16333 L:      linux-mm@kvack.org
16334 S:      Maintained
16335 F:      include/linux/sl?b*.h
16336 F:      mm/sl?b*
16337
16338 SLEEPABLE READ-COPY UPDATE (SRCU)
16339 M:      Lai Jiangshan <jiangshanlai@gmail.com>
16340 M:      "Paul E. McKenney" <paulmck@kernel.org>
16341 M:      Josh Triplett <josh@joshtriplett.org>
16342 R:      Steven Rostedt <rostedt@goodmis.org>
16343 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16344 L:      rcu@vger.kernel.org
16345 S:      Supported
16346 W:      http://www.rdrop.com/users/paulmck/RCU/
16347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16348 F:      include/linux/srcu*.h
16349 F:      kernel/rcu/srcu*.c
16350
16351 SMACK SECURITY MODULE
16352 M:      Casey Schaufler <casey@schaufler-ca.com>
16353 L:      linux-security-module@vger.kernel.org
16354 S:      Maintained
16355 W:      http://schaufler-ca.com
16356 T:      git git://github.com/cschaufler/smack-next
16357 F:      Documentation/admin-guide/LSM/Smack.rst
16358 F:      security/smack/
16359
16360 SMC91x ETHERNET DRIVER
16361 M:      Nicolas Pitre <nico@fluxnic.net>
16362 S:      Odd Fixes
16363 F:      drivers/net/ethernet/smsc/smc91x.*
16364
16365 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
16366 M:      Mark Rutland <mark.rutland@arm.com>
16367 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
16368 M:      Sudeep Holla <sudeep.holla@arm.com>
16369 L:      linux-arm-kernel@lists.infradead.org
16370 S:      Maintained
16371 F:      drivers/firmware/smccc/
16372 F:      include/linux/arm-smccc.h
16373
16374 SMM665 HARDWARE MONITOR DRIVER
16375 M:      Guenter Roeck <linux@roeck-us.net>
16376 L:      linux-hwmon@vger.kernel.org
16377 S:      Maintained
16378 F:      Documentation/hwmon/smm665.rst
16379 F:      drivers/hwmon/smm665.c
16380
16381 SMSC EMC2103 HARDWARE MONITOR DRIVER
16382 M:      Steve Glendinning <steve.glendinning@shawell.net>
16383 L:      linux-hwmon@vger.kernel.org
16384 S:      Maintained
16385 F:      Documentation/hwmon/emc2103.rst
16386 F:      drivers/hwmon/emc2103.c
16387
16388 SMSC SCH5627 HARDWARE MONITOR DRIVER
16389 M:      Hans de Goede <hdegoede@redhat.com>
16390 L:      linux-hwmon@vger.kernel.org
16391 S:      Supported
16392 F:      Documentation/hwmon/sch5627.rst
16393 F:      drivers/hwmon/sch5627.c
16394
16395 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
16396 M:      Steve Glendinning <steve.glendinning@shawell.net>
16397 L:      linux-fbdev@vger.kernel.org
16398 S:      Maintained
16399 F:      drivers/video/fbdev/smscufx.c
16400
16401 SMSC47B397 HARDWARE MONITOR DRIVER
16402 M:      Jean Delvare <jdelvare@suse.com>
16403 L:      linux-hwmon@vger.kernel.org
16404 S:      Maintained
16405 F:      Documentation/hwmon/smsc47b397.rst
16406 F:      drivers/hwmon/smsc47b397.c
16407
16408 SMSC911x ETHERNET DRIVER
16409 M:      Steve Glendinning <steve.glendinning@shawell.net>
16410 L:      netdev@vger.kernel.org
16411 S:      Maintained
16412 F:      drivers/net/ethernet/smsc/smsc911x.*
16413 F:      include/linux/smsc911x.h
16414
16415 SMSC9420 PCI ETHERNET DRIVER
16416 M:      Steve Glendinning <steve.glendinning@shawell.net>
16417 L:      netdev@vger.kernel.org
16418 S:      Maintained
16419 F:      drivers/net/ethernet/smsc/smsc9420.*
16420
16421 SOCIONEXT (SNI) AVE NETWORK DRIVER
16422 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16423 L:      netdev@vger.kernel.org
16424 S:      Maintained
16425 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
16426 F:      drivers/net/ethernet/socionext/sni_ave.c
16427
16428 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
16429 M:      Jassi Brar <jaswinder.singh@linaro.org>
16430 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
16431 L:      netdev@vger.kernel.org
16432 S:      Maintained
16433 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
16434 F:      drivers/net/ethernet/socionext/netsec.c
16435
16436 SOCIONEXT (SNI) Synquacer SPI DRIVER
16437 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
16438 M:      Jassi Brar <jaswinder.singh@linaro.org>
16439 L:      linux-spi@vger.kernel.org
16440 S:      Maintained
16441 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
16442 F:      drivers/spi/spi-synquacer.c
16443
16444 SOCIONEXT SYNQUACER I2C DRIVER
16445 M:      Ard Biesheuvel <ardb@kernel.org>
16446 L:      linux-i2c@vger.kernel.org
16447 S:      Maintained
16448 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
16449 F:      drivers/i2c/busses/i2c-synquacer.c
16450
16451 SOCIONEXT UNIPHIER SOUND DRIVER
16452 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16453 S:      Orphan
16454 F:      sound/soc/uniphier/
16455
16456 SOEKRIS NET48XX LED SUPPORT
16457 M:      Chris Boot <bootc@bootc.net>
16458 S:      Maintained
16459 F:      drivers/leds/leds-net48xx.c
16460
16461 SOFT-IWARP DRIVER (siw)
16462 M:      Bernard Metzler <bmt@zurich.ibm.com>
16463 L:      linux-rdma@vger.kernel.org
16464 S:      Supported
16465 F:      drivers/infiniband/sw/siw/
16466 F:      include/uapi/rdma/siw-abi.h
16467
16468 SOFT-ROCE DRIVER (rxe)
16469 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
16470 L:      linux-rdma@vger.kernel.org
16471 S:      Supported
16472 F:      drivers/infiniband/sw/rxe/
16473 F:      include/uapi/rdma/rdma_user_rxe.h
16474
16475 SOFTLOGIC 6x10 MPEG CODEC
16476 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16477 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16478 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16479 M:      Ismael Luceno <ismael@iodev.co.uk>
16480 L:      linux-media@vger.kernel.org
16481 S:      Supported
16482 F:      drivers/media/pci/solo6x10/
16483
16484 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
16485 M:      James Morse <james.morse@arm.com>
16486 L:      linux-arm-kernel@lists.infradead.org
16487 S:      Maintained
16488 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
16489 F:      drivers/firmware/arm_sdei.c
16490 F:      include/linux/arm_sdei.h
16491 F:      include/uapi/linux/arm_sdei.h
16492
16493 SOFTWARE RAID (Multiple Disks) SUPPORT
16494 M:      Song Liu <song@kernel.org>
16495 L:      linux-raid@vger.kernel.org
16496 S:      Supported
16497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
16498 F:      drivers/md/Kconfig
16499 F:      drivers/md/Makefile
16500 F:      drivers/md/md*
16501 F:      drivers/md/raid*
16502 F:      include/linux/raid/
16503 F:      include/uapi/linux/raid/
16504
16505 SOLIDRUN CLEARFOG SUPPORT
16506 M:      Russell King <linux@armlinux.org.uk>
16507 S:      Maintained
16508 F:      arch/arm/boot/dts/armada-388-clearfog*
16509 F:      arch/arm/boot/dts/armada-38x-solidrun-*
16510
16511 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
16512 M:      Russell King <linux@armlinux.org.uk>
16513 S:      Maintained
16514 F:      arch/arm/boot/dts/imx6*-cubox-i*
16515 F:      arch/arm/boot/dts/imx6*-hummingboard*
16516 F:      arch/arm/boot/dts/imx6*-sr-*
16517
16518 SONIC NETWORK DRIVER
16519 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
16520 L:      netdev@vger.kernel.org
16521 S:      Maintained
16522 F:      drivers/net/ethernet/natsemi/sonic.*
16523
16524 SONICS SILICON BACKPLANE DRIVER (SSB)
16525 M:      Michael Buesch <m@bues.ch>
16526 L:      linux-wireless@vger.kernel.org
16527 S:      Maintained
16528 F:      drivers/ssb/
16529 F:      include/linux/ssb/
16530
16531 SONY IMX214 SENSOR DRIVER
16532 M:      Ricardo Ribalda <ribalda@kernel.org>
16533 L:      linux-media@vger.kernel.org
16534 S:      Maintained
16535 T:      git git://linuxtv.org/media_tree.git
16536 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
16537 F:      drivers/media/i2c/imx214.c
16538
16539 SONY IMX219 SENSOR DRIVER
16540 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
16541 L:      linux-media@vger.kernel.org
16542 S:      Maintained
16543 T:      git git://linuxtv.org/media_tree.git
16544 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
16545 F:      drivers/media/i2c/imx219.c
16546
16547 SONY IMX258 SENSOR DRIVER
16548 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
16549 L:      linux-media@vger.kernel.org
16550 S:      Maintained
16551 T:      git git://linuxtv.org/media_tree.git
16552 F:      drivers/media/i2c/imx258.c
16553
16554 SONY IMX274 SENSOR DRIVER
16555 M:      Leon Luo <leonl@leopardimaging.com>
16556 L:      linux-media@vger.kernel.org
16557 S:      Maintained
16558 T:      git git://linuxtv.org/media_tree.git
16559 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
16560 F:      drivers/media/i2c/imx274.c
16561
16562 SONY IMX290 SENSOR DRIVER
16563 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16564 L:      linux-media@vger.kernel.org
16565 S:      Maintained
16566 T:      git git://linuxtv.org/media_tree.git
16567 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
16568 F:      drivers/media/i2c/imx290.c
16569
16570 SONY IMX319 SENSOR DRIVER
16571 M:      Bingbu Cao <bingbu.cao@intel.com>
16572 L:      linux-media@vger.kernel.org
16573 S:      Maintained
16574 T:      git git://linuxtv.org/media_tree.git
16575 F:      drivers/media/i2c/imx319.c
16576
16577 SONY IMX355 SENSOR DRIVER
16578 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
16579 L:      linux-media@vger.kernel.org
16580 S:      Maintained
16581 T:      git git://linuxtv.org/media_tree.git
16582 F:      drivers/media/i2c/imx355.c
16583
16584 SONY MEMORYSTICK SUBSYSTEM
16585 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16586 M:      Alex Dubov <oakad@yahoo.com>
16587 M:      Ulf Hansson <ulf.hansson@linaro.org>
16588 L:      linux-mmc@vger.kernel.org
16589 S:      Maintained
16590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
16591 F:      drivers/memstick/
16592 F:      include/linux/memstick.h
16593
16594 SONY VAIO CONTROL DEVICE DRIVER
16595 M:      Mattia Dongili <malattia@linux.it>
16596 L:      platform-driver-x86@vger.kernel.org
16597 S:      Maintained
16598 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
16599 F:      Documentation/admin-guide/laptops/sony-laptop.rst
16600 F:      drivers/char/sonypi.c
16601 F:      drivers/platform/x86/sony-laptop.c
16602 F:      include/linux/sony-laptop.h
16603
16604 SOUND
16605 M:      Jaroslav Kysela <perex@perex.cz>
16606 M:      Takashi Iwai <tiwai@suse.com>
16607 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16608 S:      Maintained
16609 W:      http://www.alsa-project.org/
16610 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
16611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16612 F:      Documentation/sound/
16613 F:      include/sound/
16614 F:      include/uapi/sound/
16615 F:      sound/
16616
16617 SOUND - COMPRESSED AUDIO
16618 M:      Vinod Koul <vkoul@kernel.org>
16619 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16620 S:      Supported
16621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16622 F:      Documentation/sound/designs/compress-offload.rst
16623 F:      include/sound/compress_driver.h
16624 F:      include/uapi/sound/compress_*
16625 F:      sound/core/compress_offload.c
16626 F:      sound/soc/soc-compress.c
16627
16628 SOUND - DMAENGINE HELPERS
16629 M:      Lars-Peter Clausen <lars@metafoo.de>
16630 S:      Supported
16631 F:      include/sound/dmaengine_pcm.h
16632 F:      sound/core/pcm_dmaengine.c
16633 F:      sound/soc/soc-generic-dmaengine-pcm.c
16634
16635 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
16636 M:      Liam Girdwood <lgirdwood@gmail.com>
16637 M:      Mark Brown <broonie@kernel.org>
16638 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16639 S:      Supported
16640 W:      http://alsa-project.org/main/index.php/ASoC
16641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
16642 F:      Documentation/devicetree/bindings/sound/
16643 F:      Documentation/sound/soc/
16644 F:      include/dt-bindings/sound/
16645 F:      include/sound/soc*
16646 F:      sound/soc/
16647
16648 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
16649 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16650 M:      Liam Girdwood <lgirdwood@gmail.com>
16651 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
16652 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
16653 M:      Daniel Baluta <daniel.baluta@nxp.com>
16654 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
16655 S:      Supported
16656 W:      https://github.com/thesofproject/linux/
16657 F:      sound/soc/sof/
16658
16659 SOUNDWIRE SUBSYSTEM
16660 M:      Vinod Koul <vkoul@kernel.org>
16661 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
16662 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
16663 R:      Sanyog Kale <sanyog.r.kale@intel.com>
16664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16665 S:      Supported
16666 F:      Documentation/driver-api/soundwire/
16667 F:      drivers/soundwire/
16668 F:      include/linux/soundwire/
16669
16670 SP2 MEDIA DRIVER
16671 M:      Olli Salonen <olli.salonen@iki.fi>
16672 L:      linux-media@vger.kernel.org
16673 S:      Maintained
16674 W:      https://linuxtv.org
16675 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16676 F:      drivers/media/dvb-frontends/sp2*
16677
16678 SPARC + UltraSPARC (sparc/sparc64)
16679 M:      "David S. Miller" <davem@davemloft.net>
16680 L:      sparclinux@vger.kernel.org
16681 S:      Maintained
16682 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
16683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16685 F:      arch/sparc/
16686 F:      drivers/sbus/
16687
16688 SPARC SERIAL DRIVERS
16689 M:      "David S. Miller" <davem@davemloft.net>
16690 L:      sparclinux@vger.kernel.org
16691 S:      Maintained
16692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
16693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
16694 F:      drivers/tty/serial/suncore.c
16695 F:      drivers/tty/serial/sunhv.c
16696 F:      drivers/tty/serial/sunsab.c
16697 F:      drivers/tty/serial/sunsab.h
16698 F:      drivers/tty/serial/sunsu.c
16699 F:      drivers/tty/serial/sunzilog.c
16700 F:      drivers/tty/serial/sunzilog.h
16701 F:      drivers/tty/vcc.c
16702 F:      include/linux/sunserialcore.h
16703
16704 SPARSE CHECKER
16705 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
16706 L:      linux-sparse@vger.kernel.org
16707 S:      Maintained
16708 W:      https://sparse.docs.kernel.org/
16709 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
16710 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
16711 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
16712 F:      include/linux/compiler.h
16713
16714 SPEAKUP CONSOLE SPEECH DRIVER
16715 M:      William Hubbs <w.d.hubbs@gmail.com>
16716 M:      Chris Brannon <chris@the-brannons.com>
16717 M:      Kirk Reiser <kirk@reisers.ca>
16718 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16719 L:      speakup@linux-speakup.org
16720 S:      Odd Fixes
16721 W:      http://www.linux-speakup.org/
16722 W:      https://github.com/linux-speakup/speakup
16723 B:      https://github.com/linux-speakup/speakup/issues
16724 F:      drivers/accessibility/speakup/
16725
16726 SPEAR CLOCK FRAMEWORK SUPPORT
16727 M:      Viresh Kumar <vireshk@kernel.org>
16728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16729 S:      Maintained
16730 W:      http://www.st.com/spear
16731 F:      drivers/clk/spear/
16732
16733 SPEAR PLATFORM SUPPORT
16734 M:      Viresh Kumar <vireshk@kernel.org>
16735 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
16736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16737 S:      Maintained
16738 W:      http://www.st.com/spear
16739 F:      arch/arm/boot/dts/spear*
16740 F:      arch/arm/mach-spear/
16741
16742 SPI NOR SUBSYSTEM
16743 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16744 L:      linux-mtd@lists.infradead.org
16745 S:      Maintained
16746 W:      http://www.linux-mtd.infradead.org/
16747 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16748 C:      irc://irc.oftc.net/mtd
16749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16750 F:      drivers/mtd/spi-nor/
16751 F:      include/linux/mtd/spi-nor.h
16752
16753 SPI SUBSYSTEM
16754 M:      Mark Brown <broonie@kernel.org>
16755 L:      linux-spi@vger.kernel.org
16756 S:      Maintained
16757 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16759 F:      Documentation/devicetree/bindings/spi/
16760 F:      Documentation/spi/
16761 F:      drivers/spi/
16762 F:      include/linux/spi/
16763 F:      include/uapi/linux/spi/
16764 F:      tools/spi/
16765
16766 SPIDERNET NETWORK DRIVER for CELL
16767 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16768 L:      netdev@vger.kernel.org
16769 S:      Supported
16770 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
16771 F:      drivers/net/ethernet/toshiba/spider_net*
16772
16773 SPMI SUBSYSTEM
16774 M:      Stephen Boyd <sboyd@kernel.org>
16775 L:      linux-kernel@vger.kernel.org
16776 S:      Maintained
16777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
16778 F:      Documentation/devicetree/bindings/spmi/
16779 F:      drivers/spmi/
16780 F:      include/dt-bindings/spmi/spmi.h
16781 F:      include/linux/spmi.h
16782 F:      include/trace/events/spmi.h
16783
16784 SPU FILE SYSTEM
16785 M:      Jeremy Kerr <jk@ozlabs.org>
16786 L:      linuxppc-dev@lists.ozlabs.org
16787 S:      Supported
16788 W:      http://www.ibm.com/developerworks/power/cell/
16789 F:      Documentation/filesystems/spufs/spufs.rst
16790 F:      arch/powerpc/platforms/cell/spufs/
16791
16792 SQUASHFS FILE SYSTEM
16793 M:      Phillip Lougher <phillip@squashfs.org.uk>
16794 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16795 S:      Maintained
16796 W:      http://squashfs.org.uk
16797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16798 F:      Documentation/filesystems/squashfs.rst
16799 F:      fs/squashfs/
16800
16801 SRM (Alpha) environment access
16802 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16803 S:      Maintained
16804 F:      arch/alpha/kernel/srm_env.c
16805
16806 ST LSM6DSx IMU IIO DRIVER
16807 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16808 L:      linux-iio@vger.kernel.org
16809 S:      Maintained
16810 W:      http://www.st.com/
16811 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16812 F:      drivers/iio/imu/st_lsm6dsx/
16813
16814 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16815 M:      Mickael Guene <mickael.guene@st.com>
16816 L:      linux-media@vger.kernel.org
16817 S:      Maintained
16818 T:      git git://linuxtv.org/media_tree.git
16819 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16820 F:      drivers/media/i2c/st-mipid02.c
16821
16822 ST STM32 I2C/SMBUS DRIVER
16823 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16824 L:      linux-i2c@vger.kernel.org
16825 S:      Maintained
16826 F:      drivers/i2c/busses/i2c-stm32*
16827
16828 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16829 M:      Song Qiang <songqiang1304521@gmail.com>
16830 L:      linux-iio@vger.kernel.org
16831 S:      Maintained
16832 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16833 F:      drivers/iio/proximity/vl53l0x-i2c.c
16834
16835 STABLE BRANCH
16836 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16837 M:      Sasha Levin <sashal@kernel.org>
16838 L:      stable@vger.kernel.org
16839 S:      Supported
16840 F:      Documentation/process/stable-kernel-rules.rst
16841
16842 STAGING - ATOMISP DRIVER
16843 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16844 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16845 L:      linux-media@vger.kernel.org
16846 S:      Maintained
16847 F:      drivers/staging/media/atomisp/
16848
16849 STAGING - COMEDI
16850 M:      Ian Abbott <abbotti@mev.co.uk>
16851 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16852 S:      Odd Fixes
16853 F:      drivers/staging/comedi/
16854
16855 STAGING - FIELDBUS SUBSYSTEM
16856 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16857 S:      Maintained
16858 F:      drivers/staging/fieldbus/*
16859 F:      drivers/staging/fieldbus/Documentation/
16860
16861 STAGING - HMS ANYBUS-S BUS
16862 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16863 S:      Maintained
16864 F:      drivers/staging/fieldbus/anybuss/
16865
16866 STAGING - INDUSTRIAL IO
16867 M:      Jonathan Cameron <jic23@kernel.org>
16868 L:      linux-iio@vger.kernel.org
16869 S:      Odd Fixes
16870 F:      Documentation/devicetree/bindings/staging/iio/
16871 F:      drivers/staging/iio/
16872
16873 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16874 M:      Marc Dietrich <marvin24@gmx.de>
16875 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16876 L:      linux-tegra@vger.kernel.org
16877 S:      Maintained
16878 F:      drivers/staging/nvec/
16879
16880 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16881 M:      Jens Frederich <jfrederich@gmail.com>
16882 M:      Daniel Drake <dsd@laptop.org>
16883 M:      Jon Nettleton <jon.nettleton@gmail.com>
16884 S:      Maintained
16885 W:      http://wiki.laptop.org/go/DCON
16886 F:      drivers/staging/olpc_dcon/
16887
16888 STAGING - REALTEK RTL8188EU DRIVERS
16889 M:      Larry Finger <Larry.Finger@lwfinger.net>
16890 S:      Odd Fixes
16891 F:      drivers/staging/rtl8188eu/
16892
16893 STAGING - REALTEK RTL8712U DRIVERS
16894 M:      Larry Finger <Larry.Finger@lwfinger.net>
16895 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16896 S:      Odd Fixes
16897 F:      drivers/staging/rtl8712/
16898
16899 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16900 M:      Michael Hennerich <michael.hennerich@analog.com>
16901 L:      linux-fbdev@vger.kernel.org
16902 S:      Supported
16903 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16904 F:      drivers/staging/fbtft/fb_seps525.c
16905
16906 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16907 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16908 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16909 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16910 L:      linux-fbdev@vger.kernel.org
16911 S:      Maintained
16912 F:      drivers/staging/sm750fb/
16913
16914 STAGING - VIA VT665X DRIVERS
16915 M:      Forest Bond <forest@alittletooquiet.net>
16916 S:      Odd Fixes
16917 F:      drivers/staging/vt665?/
16918
16919 STAGING SUBSYSTEM
16920 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16921 L:      devel@driverdev.osuosl.org
16922 S:      Supported
16923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16924 F:      drivers/staging/
16925
16926 STARFIRE/DURALAN NETWORK DRIVER
16927 M:      Ion Badulescu <ionut@badula.org>
16928 S:      Odd Fixes
16929 F:      drivers/net/ethernet/adaptec/starfire*
16930
16931 STATIC BRANCH/CALL
16932 M:      Peter Zijlstra <peterz@infradead.org>
16933 M:      Josh Poimboeuf <jpoimboe@redhat.com>
16934 M:      Jason Baron <jbaron@akamai.com>
16935 R:      Steven Rostedt <rostedt@goodmis.org>
16936 R:      Ard Biesheuvel <ardb@kernel.org>
16937 S:      Supported
16938 F:      arch/*/include/asm/jump_label*.h
16939 F:      arch/*/include/asm/static_call*.h
16940 F:      arch/*/kernel/jump_label.c
16941 F:      arch/*/kernel/static_call.c
16942 F:      include/linux/jump_label*.h
16943 F:      include/linux/static_call*.h
16944 F:      kernel/jump_label.c
16945 F:      kernel/static_call.c
16946
16947 STEC S1220 SKD DRIVER
16948 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16949 L:      linux-block@vger.kernel.org
16950 S:      Maintained
16951 F:      drivers/block/skd*[ch]
16952
16953 STI AUDIO (ASoC) DRIVERS
16954 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16956 S:      Maintained
16957 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16958 F:      sound/soc/sti/
16959
16960 STI CEC DRIVER
16961 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16962 S:      Maintained
16963 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16964 F:      drivers/media/cec/platform/sti/
16965
16966 STK1160 USB VIDEO CAPTURE DRIVER
16967 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16968 L:      linux-media@vger.kernel.org
16969 S:      Maintained
16970 T:      git git://linuxtv.org/media_tree.git
16971 F:      drivers/media/usb/stk1160/
16972
16973 STM32 AUDIO (ASoC) DRIVERS
16974 M:      Olivier Moysan <olivier.moysan@st.com>
16975 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16976 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16977 S:      Maintained
16978 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-*.yaml
16979 F:      sound/soc/stm/
16980
16981 STM32 TIMER/LPTIMER DRIVERS
16982 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16983 S:      Maintained
16984 F:      Documentation/ABI/testing/*timer-stm32
16985 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16986 F:      drivers/*/stm32-*timer*
16987 F:      drivers/pwm/pwm-stm32*
16988 F:      include/linux/*/stm32-*tim*
16989
16990 STMMAC ETHERNET DRIVER
16991 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16992 M:      Alexandre Torgue <alexandre.torgue@st.com>
16993 M:      Jose Abreu <joabreu@synopsys.com>
16994 L:      netdev@vger.kernel.org
16995 S:      Supported
16996 W:      http://www.stlinux.com
16997 F:      Documentation/networking/device_drivers/ethernet/stmicro/
16998 F:      drivers/net/ethernet/stmicro/stmmac/
16999
17000 SUN3/3X
17001 M:      Sam Creasey <sammy@sammy.net>
17002 S:      Maintained
17003 W:      http://sammy.net/sun3/
17004 F:      arch/m68k/include/asm/sun3*
17005 F:      arch/m68k/kernel/*sun3*
17006 F:      arch/m68k/sun3*/
17007 F:      drivers/net/ethernet/i825xx/sun3*
17008
17009 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17010 M:      Hans de Goede <hdegoede@redhat.com>
17011 L:      linux-input@vger.kernel.org
17012 S:      Maintained
17013 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17014 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17015
17016 SUNDANCE NETWORK DRIVER
17017 M:      Denis Kirjanov <kda@linux-powerpc.org>
17018 L:      netdev@vger.kernel.org
17019 S:      Maintained
17020 F:      drivers/net/ethernet/dlink/sundance.c
17021
17022 SUPERH
17023 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17024 M:      Rich Felker <dalias@libc.org>
17025 L:      linux-sh@vger.kernel.org
17026 S:      Maintained
17027 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17028 F:      Documentation/sh/
17029 F:      arch/sh/
17030 F:      drivers/sh/
17031
17032 SUSPEND TO RAM
17033 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
17034 M:      Len Brown <len.brown@intel.com>
17035 M:      Pavel Machek <pavel@ucw.cz>
17036 L:      linux-pm@vger.kernel.org
17037 S:      Supported
17038 B:      https://bugzilla.kernel.org
17039 F:      Documentation/power/
17040 F:      arch/x86/kernel/acpi/
17041 F:      drivers/base/power/
17042 F:      include/linux/freezer.h
17043 F:      include/linux/pm.h
17044 F:      include/linux/suspend.h
17045 F:      kernel/power/
17046
17047 SVGA HANDLING
17048 M:      Martin Mares <mj@ucw.cz>
17049 L:      linux-video@atrey.karlin.mff.cuni.cz
17050 S:      Maintained
17051 F:      Documentation/admin-guide/svga.rst
17052 F:      arch/x86/boot/video*
17053
17054 SWIOTLB SUBSYSTEM
17055 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17056 L:      iommu@lists.linux-foundation.org
17057 S:      Supported
17058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
17059 F:      arch/*/kernel/pci-swiotlb.c
17060 F:      include/linux/swiotlb.h
17061 F:      kernel/dma/swiotlb.c
17062
17063 SWITCHDEV
17064 M:      Jiri Pirko <jiri@resnulli.us>
17065 M:      Ivan Vecera <ivecera@redhat.com>
17066 L:      netdev@vger.kernel.org
17067 S:      Supported
17068 F:      include/net/switchdev.h
17069 F:      net/switchdev/
17070
17071 SY8106A REGULATOR DRIVER
17072 M:      Icenowy Zheng <icenowy@aosc.io>
17073 S:      Maintained
17074 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
17075 F:      drivers/regulator/sy8106a-regulator.c
17076
17077 SYNC FILE FRAMEWORK
17078 M:      Sumit Semwal <sumit.semwal@linaro.org>
17079 R:      Gustavo Padovan <gustavo@padovan.org>
17080 L:      linux-media@vger.kernel.org
17081 L:      dri-devel@lists.freedesktop.org
17082 S:      Maintained
17083 T:      git git://anongit.freedesktop.org/drm/drm-misc
17084 F:      Documentation/driver-api/sync_file.rst
17085 F:      drivers/dma-buf/dma-fence*
17086 F:      drivers/dma-buf/sw_sync.c
17087 F:      drivers/dma-buf/sync_*
17088 F:      include/linux/sync_file.h
17089 F:      include/uapi/linux/sync_file.h
17090
17091 SYNOPSYS ARC ARCHITECTURE
17092 M:      Vineet Gupta <vgupta@synopsys.com>
17093 L:      linux-snps-arc@lists.infradead.org
17094 S:      Supported
17095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
17096 F:      Documentation/devicetree/bindings/arc/*
17097 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
17098 F:      arch/arc/
17099 F:      drivers/clocksource/arc_timer.c
17100 F:      drivers/tty/serial/arc_uart.c
17101
17102 SYNOPSYS ARC HSDK SDP pll clock driver
17103 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17104 S:      Supported
17105 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
17106 F:      drivers/clk/clk-hsdk-pll.c
17107
17108 SYNOPSYS ARC SDP clock driver
17109 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17110 S:      Supported
17111 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
17112 F:      drivers/clk/axs10x/*
17113
17114 SYNOPSYS ARC SDP platform support
17115 M:      Alexey Brodkin <abrodkin@synopsys.com>
17116 S:      Supported
17117 F:      Documentation/devicetree/bindings/arc/axs10*
17118 F:      arch/arc/boot/dts/ax*
17119 F:      arch/arc/plat-axs10x
17120
17121 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
17122 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17123 S:      Supported
17124 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
17125 F:      drivers/reset/reset-axs10x.c
17126
17127 SYNOPSYS CREG GPIO DRIVER
17128 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17129 S:      Maintained
17130 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
17131 F:      drivers/gpio/gpio-creg-snps.c
17132
17133 SYNOPSYS DESIGNWARE 8250 UART DRIVER
17134 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17135 S:      Maintained
17136 F:      drivers/tty/serial/8250/8250_dw.c
17137 F:      drivers/tty/serial/8250/8250_dwlib.*
17138 F:      drivers/tty/serial/8250/8250_lpss.c
17139
17140 SYNOPSYS DESIGNWARE APB GPIO DRIVER
17141 M:      Hoan Tran <hoan@os.amperecomputing.com>
17142 M:      Serge Semin <fancer.lancer@gmail.com>
17143 L:      linux-gpio@vger.kernel.org
17144 S:      Maintained
17145 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
17146 F:      drivers/gpio/gpio-dwapb.c
17147
17148 SYNOPSYS DESIGNWARE APB SSI DRIVER
17149 M:      Serge Semin <fancer.lancer@gmail.com>
17150 L:      linux-spi@vger.kernel.org
17151 S:      Supported
17152 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
17153 F:      drivers/spi/spi-dw*
17154
17155 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
17156 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17157 S:      Maintained
17158 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
17159 F:      drivers/dma/dw-axi-dmac/
17160
17161 SYNOPSYS DESIGNWARE DMAC DRIVER
17162 M:      Viresh Kumar <vireshk@kernel.org>
17163 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17164 S:      Maintained
17165 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
17166 F:      drivers/dma/dw/
17167 F:      include/dt-bindings/dma/dw-dmac.h
17168 F:      include/linux/dma/dw.h
17169 F:      include/linux/platform_data/dma-dw.h
17170
17171 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
17172 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17173 L:      netdev@vger.kernel.org
17174 S:      Supported
17175 F:      drivers/net/ethernet/synopsys/
17176
17177 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
17178 M:      Jose Abreu <Jose.Abreu@synopsys.com>
17179 L:      netdev@vger.kernel.org
17180 S:      Supported
17181 F:      drivers/net/pcs/pcs-xpcs.c
17182 F:      include/linux/pcs/pcs-xpcs.h
17183
17184 SYNOPSYS DESIGNWARE I2C DRIVER
17185 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
17186 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17187 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
17188 L:      linux-i2c@vger.kernel.org
17189 S:      Maintained
17190 F:      drivers/i2c/busses/i2c-designware-*
17191 F:      include/linux/platform_data/i2c-designware.h
17192
17193 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
17194 M:      Jaehoon Chung <jh80.chung@samsung.com>
17195 L:      linux-mmc@vger.kernel.org
17196 S:      Maintained
17197 F:      drivers/mmc/host/dw_mmc*
17198
17199 SYNOPSYS HSDK RESET CONTROLLER DRIVER
17200 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
17201 S:      Supported
17202 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
17203 F:      drivers/reset/reset-hsdk.c
17204 F:      include/dt-bindings/reset/snps,hsdk-reset.h
17205
17206 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
17207 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
17208 M:      Manjunath M B <manjumb@synopsys.com>
17209 L:      linux-mmc@vger.kernel.org
17210 S:      Maintained
17211 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
17212
17213 SYSTEM CONFIGURATION (SYSCON)
17214 M:      Lee Jones <lee.jones@linaro.org>
17215 M:      Arnd Bergmann <arnd@arndb.de>
17216 S:      Supported
17217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
17218 F:      drivers/mfd/syscon.c
17219
17220 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
17221 M:      Sudeep Holla <sudeep.holla@arm.com>
17222 L:      linux-arm-kernel@lists.infradead.org
17223 S:      Maintained
17224 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
17225 F:      drivers/clk/clk-sc[mp]i.c
17226 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
17227 F:      drivers/firmware/arm_scmi/
17228 F:      drivers/firmware/arm_scpi.c
17229 F:      drivers/reset/reset-scmi.c
17230 F:      include/linux/sc[mp]i_protocol.h
17231 F:      include/trace/events/scmi.h
17232
17233 SYSTEM RESET/SHUTDOWN DRIVERS
17234 M:      Sebastian Reichel <sre@kernel.org>
17235 L:      linux-pm@vger.kernel.org
17236 S:      Maintained
17237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
17238 F:      Documentation/devicetree/bindings/power/reset/
17239 F:      drivers/power/reset/
17240
17241 SYSTEM TRACE MODULE CLASS
17242 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
17243 S:      Maintained
17244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
17245 F:      Documentation/trace/stm.rst
17246 F:      drivers/hwtracing/stm/
17247 F:      include/linux/stm.h
17248 F:      include/uapi/linux/stm.h
17249
17250 SYSTEM76 ACPI DRIVER
17251 M:      Jeremy Soller <jeremy@system76.com>
17252 M:      System76 Product Development <productdev@system76.com>
17253 L:      platform-driver-x86@vger.kernel.org
17254 S:      Maintained
17255 F:      drivers/platform/x86/system76_acpi.c
17256
17257 SYSV FILESYSTEM
17258 M:      Christoph Hellwig <hch@infradead.org>
17259 S:      Maintained
17260 F:      Documentation/filesystems/sysv-fs.rst
17261 F:      fs/sysv/
17262 F:      include/linux/sysv_fs.h
17263
17264 TASKSTATS STATISTICS INTERFACE
17265 M:      Balbir Singh <bsingharora@gmail.com>
17266 S:      Maintained
17267 F:      Documentation/accounting/taskstats*
17268 F:      include/linux/taskstats*
17269 F:      kernel/taskstats.c
17270
17271 TC subsystem
17272 M:      Jamal Hadi Salim <jhs@mojatatu.com>
17273 M:      Cong Wang <xiyou.wangcong@gmail.com>
17274 M:      Jiri Pirko <jiri@resnulli.us>
17275 L:      netdev@vger.kernel.org
17276 S:      Maintained
17277 F:      include/net/pkt_cls.h
17278 F:      include/net/pkt_sched.h
17279 F:      include/net/tc_act/
17280 F:      include/uapi/linux/pkt_cls.h
17281 F:      include/uapi/linux/pkt_sched.h
17282 F:      include/uapi/linux/tc_act/
17283 F:      include/uapi/linux/tc_ematch/
17284 F:      net/sched/
17285
17286 TC90522 MEDIA DRIVER
17287 M:      Akihiro Tsukada <tskd08@gmail.com>
17288 L:      linux-media@vger.kernel.org
17289 S:      Odd Fixes
17290 F:      drivers/media/dvb-frontends/tc90522*
17291
17292 TCP LOW PRIORITY MODULE
17293 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
17294 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
17295 S:      Maintained
17296 W:      http://tcp-lp-mod.sourceforge.net/
17297 F:      net/ipv4/tcp_lp.c
17298
17299 TDA10071 MEDIA DRIVER
17300 M:      Antti Palosaari <crope@iki.fi>
17301 L:      linux-media@vger.kernel.org
17302 S:      Maintained
17303 W:      https://linuxtv.org
17304 W:      http://palosaari.fi/linux/
17305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17306 T:      git git://linuxtv.org/anttip/media_tree.git
17307 F:      drivers/media/dvb-frontends/tda10071*
17308
17309 TDA18212 MEDIA DRIVER
17310 M:      Antti Palosaari <crope@iki.fi>
17311 L:      linux-media@vger.kernel.org
17312 S:      Maintained
17313 W:      https://linuxtv.org
17314 W:      http://palosaari.fi/linux/
17315 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17316 T:      git git://linuxtv.org/anttip/media_tree.git
17317 F:      drivers/media/tuners/tda18212*
17318
17319 TDA18218 MEDIA DRIVER
17320 M:      Antti Palosaari <crope@iki.fi>
17321 L:      linux-media@vger.kernel.org
17322 S:      Maintained
17323 W:      https://linuxtv.org
17324 W:      http://palosaari.fi/linux/
17325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17326 T:      git git://linuxtv.org/anttip/media_tree.git
17327 F:      drivers/media/tuners/tda18218*
17328
17329 TDA18250 MEDIA DRIVER
17330 M:      Olli Salonen <olli.salonen@iki.fi>
17331 L:      linux-media@vger.kernel.org
17332 S:      Maintained
17333 W:      https://linuxtv.org
17334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17335 T:      git git://linuxtv.org/media_tree.git
17336 F:      drivers/media/tuners/tda18250*
17337
17338 TDA18271 MEDIA DRIVER
17339 M:      Michael Krufky <mkrufky@linuxtv.org>
17340 L:      linux-media@vger.kernel.org
17341 S:      Maintained
17342 W:      https://linuxtv.org
17343 W:      http://github.com/mkrufky
17344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17345 T:      git git://linuxtv.org/mkrufky/tuners.git
17346 F:      drivers/media/tuners/tda18271*
17347
17348 TDA1997x MEDIA DRIVER
17349 M:      Tim Harvey <tharvey@gateworks.com>
17350 L:      linux-media@vger.kernel.org
17351 S:      Maintained
17352 W:      https://linuxtv.org
17353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17354 F:      drivers/media/i2c/tda1997x.*
17355
17356 TDA827x MEDIA DRIVER
17357 M:      Michael Krufky <mkrufky@linuxtv.org>
17358 L:      linux-media@vger.kernel.org
17359 S:      Maintained
17360 W:      https://linuxtv.org
17361 W:      http://github.com/mkrufky
17362 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17363 T:      git git://linuxtv.org/mkrufky/tuners.git
17364 F:      drivers/media/tuners/tda8290.*
17365
17366 TDA8290 MEDIA DRIVER
17367 M:      Michael Krufky <mkrufky@linuxtv.org>
17368 L:      linux-media@vger.kernel.org
17369 S:      Maintained
17370 W:      https://linuxtv.org
17371 W:      http://github.com/mkrufky
17372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17373 T:      git git://linuxtv.org/mkrufky/tuners.git
17374 F:      drivers/media/tuners/tda8290.*
17375
17376 TDA9840 MEDIA DRIVER
17377 M:      Hans Verkuil <hverkuil@xs4all.nl>
17378 L:      linux-media@vger.kernel.org
17379 S:      Maintained
17380 W:      https://linuxtv.org
17381 T:      git git://linuxtv.org/media_tree.git
17382 F:      drivers/media/i2c/tda9840*
17383
17384 TEA5761 TUNER DRIVER
17385 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17386 L:      linux-media@vger.kernel.org
17387 S:      Odd fixes
17388 W:      https://linuxtv.org
17389 T:      git git://linuxtv.org/media_tree.git
17390 F:      drivers/media/tuners/tea5761.*
17391
17392 TEA5767 TUNER DRIVER
17393 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17394 L:      linux-media@vger.kernel.org
17395 S:      Maintained
17396 W:      https://linuxtv.org
17397 T:      git git://linuxtv.org/media_tree.git
17398 F:      drivers/media/tuners/tea5767.*
17399
17400 TEA6415C MEDIA DRIVER
17401 M:      Hans Verkuil <hverkuil@xs4all.nl>
17402 L:      linux-media@vger.kernel.org
17403 S:      Maintained
17404 W:      https://linuxtv.org
17405 T:      git git://linuxtv.org/media_tree.git
17406 F:      drivers/media/i2c/tea6415c*
17407
17408 TEA6420 MEDIA DRIVER
17409 M:      Hans Verkuil <hverkuil@xs4all.nl>
17410 L:      linux-media@vger.kernel.org
17411 S:      Maintained
17412 W:      https://linuxtv.org
17413 T:      git git://linuxtv.org/media_tree.git
17414 F:      drivers/media/i2c/tea6420*
17415
17416 TEAM DRIVER
17417 M:      Jiri Pirko <jiri@resnulli.us>
17418 L:      netdev@vger.kernel.org
17419 S:      Supported
17420 F:      drivers/net/team/
17421 F:      include/linux/if_team.h
17422 F:      include/uapi/linux/if_team.h
17423
17424 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
17425 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
17426 S:      Maintained
17427 F:      arch/x86/platform/ts5500/
17428
17429 TECHNOTREND USB IR RECEIVER
17430 M:      Sean Young <sean@mess.org>
17431 L:      linux-media@vger.kernel.org
17432 S:      Maintained
17433 F:      drivers/media/rc/ttusbir.c
17434
17435 TECHWELL TW9910 VIDEO DECODER
17436 L:      linux-media@vger.kernel.org
17437 S:      Orphan
17438 F:      drivers/media/i2c/tw9910.c
17439 F:      include/media/i2c/tw9910.h
17440
17441 TEE SUBSYSTEM
17442 M:      Jens Wiklander <jens.wiklander@linaro.org>
17443 L:      op-tee@lists.trustedfirmware.org
17444 S:      Maintained
17445 F:      Documentation/staging/tee.rst
17446 F:      drivers/tee/
17447 F:      include/linux/tee_drv.h
17448 F:      include/uapi/linux/tee.h
17449
17450 TEGRA ARCHITECTURE SUPPORT
17451 M:      Thierry Reding <thierry.reding@gmail.com>
17452 M:      Jonathan Hunter <jonathanh@nvidia.com>
17453 L:      linux-tegra@vger.kernel.org
17454 S:      Supported
17455 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
17456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
17457 N:      [^a-z]tegra
17458
17459 TEGRA CLOCK DRIVER
17460 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
17461 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
17462 S:      Supported
17463 F:      drivers/clk/tegra/
17464
17465 TEGRA DMA DRIVERS
17466 M:      Laxman Dewangan <ldewangan@nvidia.com>
17467 M:      Jon Hunter <jonathanh@nvidia.com>
17468 S:      Supported
17469 F:      drivers/dma/tegra*
17470
17471 TEGRA I2C DRIVER
17472 M:      Laxman Dewangan <ldewangan@nvidia.com>
17473 R:      Dmitry Osipenko <digetx@gmail.com>
17474 S:      Supported
17475 F:      drivers/i2c/busses/i2c-tegra.c
17476
17477 TEGRA IOMMU DRIVERS
17478 M:      Thierry Reding <thierry.reding@gmail.com>
17479 R:      Krishna Reddy <vdumpa@nvidia.com>
17480 L:      linux-tegra@vger.kernel.org
17481 S:      Supported
17482 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
17483 F:      drivers/iommu/tegra*
17484
17485 TEGRA KBC DRIVER
17486 M:      Laxman Dewangan <ldewangan@nvidia.com>
17487 S:      Supported
17488 F:      drivers/input/keyboard/tegra-kbc.c
17489
17490 TEGRA NAND DRIVER
17491 M:      Stefan Agner <stefan@agner.ch>
17492 M:      Lucas Stach <dev@lynxeye.de>
17493 S:      Maintained
17494 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
17495 F:      drivers/mtd/nand/raw/tegra_nand.c
17496
17497 TEGRA PWM DRIVER
17498 M:      Thierry Reding <thierry.reding@gmail.com>
17499 S:      Supported
17500 F:      drivers/pwm/pwm-tegra.c
17501
17502 TEGRA SERIAL DRIVER
17503 M:      Laxman Dewangan <ldewangan@nvidia.com>
17504 S:      Supported
17505 F:      drivers/tty/serial/serial-tegra.c
17506
17507 TEGRA SPI DRIVER
17508 M:      Laxman Dewangan <ldewangan@nvidia.com>
17509 S:      Supported
17510 F:      drivers/spi/spi-tegra*
17511
17512 TEGRA VIDEO DRIVER
17513 M:      Thierry Reding <thierry.reding@gmail.com>
17514 M:      Jonathan Hunter <jonathanh@nvidia.com>
17515 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
17516 L:      linux-media@vger.kernel.org
17517 L:      linux-tegra@vger.kernel.org
17518 S:      Maintained
17519 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
17520 F:      drivers/staging/media/tegra-video/
17521
17522 TEGRA XUSB PADCTL DRIVER
17523 M:      JC Kuo <jckuo@nvidia.com>
17524 S:      Supported
17525 F:      drivers/phy/tegra/xusb*
17526
17527 TEHUTI ETHERNET DRIVER
17528 M:      Andy Gospodarek <andy@greyhouse.net>
17529 L:      netdev@vger.kernel.org
17530 S:      Supported
17531 F:      drivers/net/ethernet/tehuti/*
17532
17533 TELECOM CLOCK DRIVER FOR MCPL0010
17534 M:      Mark Gross <mark.gross@intel.com>
17535 S:      Supported
17536 F:      drivers/char/tlclk.c
17537
17538 TEMPO SEMICONDUCTOR DRIVERS
17539 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17540 S:      Maintained
17541 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17542 F:      sound/soc/codecs/tscs*.c
17543 F:      sound/soc/codecs/tscs*.h
17544
17545 TENSILICA XTENSA PORT (xtensa)
17546 M:      Chris Zankel <chris@zankel.net>
17547 M:      Max Filippov <jcmvbkbc@gmail.com>
17548 L:      linux-xtensa@linux-xtensa.org
17549 S:      Maintained
17550 T:      git git://github.com/czankel/xtensa-linux.git
17551 F:      arch/xtensa/
17552 F:      drivers/irqchip/irq-xtensa-*
17553
17554 TEXAS INSTRUMENTS ASoC DRIVERS
17555 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17556 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17557 S:      Maintained
17558 F:      sound/soc/ti/
17559
17560 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
17561 M:      Ricardo Ribalda <ribalda@kernel.org>
17562 L:      linux-iio@vger.kernel.org
17563 S:      Supported
17564 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
17565 F:      drivers/iio/dac/ti-dac7612.c
17566
17567 TEXAS INSTRUMENTS DMA DRIVERS
17568 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17569 L:      dmaengine@vger.kernel.org
17570 S:      Maintained
17571 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
17572 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
17573 F:      Documentation/devicetree/bindings/dma/ti/
17574 F:      drivers/dma/ti/
17575 X:      drivers/dma/ti/cppi41.c
17576 F:      include/linux/dma/k3-udma-glue.h
17577 F:      include/linux/dma/ti-cppi5.h
17578 F:      include/linux/dma/k3-psil.h
17579
17580 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
17581 M:      Nishanth Menon <nm@ti.com>
17582 M:      Tero Kristo <t-kristo@ti.com>
17583 M:      Santosh Shilimkar <ssantosh@kernel.org>
17584 L:      linux-arm-kernel@lists.infradead.org
17585 S:      Maintained
17586 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
17587 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
17588 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
17589 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
17590 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
17591 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
17592 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
17593 F:      drivers/clk/keystone/sci-clk.c
17594 F:      drivers/firmware/ti_sci*
17595 F:      drivers/irqchip/irq-ti-sci-inta.c
17596 F:      drivers/irqchip/irq-ti-sci-intr.c
17597 F:      drivers/reset/reset-ti-sci.c
17598 F:      drivers/soc/ti/ti_sci_inta_msi.c
17599 F:      drivers/soc/ti/ti_sci_pm_domains.c
17600 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
17601 F:      include/linux/soc/ti/ti_sci_inta_msi.h
17602 F:      include/linux/soc/ti/ti_sci_protocol.h
17603
17604 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
17605 M:      Hans Verkuil <hverkuil@xs4all.nl>
17606 L:      linux-media@vger.kernel.org
17607 S:      Maintained
17608 W:      https://linuxtv.org
17609 T:      git git://linuxtv.org/media_tree.git
17610 F:      drivers/media/radio/radio-raremono.c
17611
17612 THERMAL
17613 M:      Zhang Rui <rui.zhang@intel.com>
17614 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17615 R:      Amit Kucheria <amitk@kernel.org>
17616 L:      linux-pm@vger.kernel.org
17617 S:      Supported
17618 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
17620 F:      Documentation/devicetree/bindings/thermal/
17621 F:      drivers/thermal/
17622 F:      include/linux/cpu_cooling.h
17623 F:      include/linux/thermal.h
17624 F:      include/uapi/linux/thermal.h
17625
17626 THERMAL DRIVER FOR AMLOGIC SOCS
17627 M:      Guillaume La Roque <glaroque@baylibre.com>
17628 L:      linux-pm@vger.kernel.org
17629 L:      linux-amlogic@lists.infradead.org
17630 S:      Supported
17631 W:      http://linux-meson.com/
17632 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
17633 F:      drivers/thermal/amlogic_thermal.c
17634
17635 THERMAL/CPU_COOLING
17636 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
17637 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
17638 M:      Viresh Kumar <viresh.kumar@linaro.org>
17639 M:      Javi Merino <javi.merino@kernel.org>
17640 L:      linux-pm@vger.kernel.org
17641 S:      Supported
17642 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
17643 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
17644 F:      drivers/thermal/cpufreq_cooling.c
17645 F:      drivers/thermal/cpuidle_cooling.c
17646 F:      include/linux/cpu_cooling.h
17647
17648 THERMAL/POWER_ALLOCATOR
17649 M:      Lukasz Luba <lukasz.luba@arm.com>
17650 L:      linux-pm@vger.kernel.org
17651 S:      Maintained
17652 F:      Documentation/driver-api/thermal/power_allocator.rst
17653 F:      drivers/thermal/gov_power_allocator.c
17654 F:      include/trace/events/thermal_power_allocator.h
17655
17656 THINKPAD ACPI EXTRAS DRIVER
17657 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
17658 L:      ibm-acpi-devel@lists.sourceforge.net
17659 L:      platform-driver-x86@vger.kernel.org
17660 S:      Maintained
17661 W:      http://ibm-acpi.sourceforge.net
17662 W:      http://thinkwiki.org/wiki/Ibm-acpi
17663 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
17664 F:      drivers/platform/x86/thinkpad_acpi.c
17665
17666 THUNDERBOLT DMA TRAFFIC TEST DRIVER
17667 M:      Isaac Hazan <isaac.hazan@intel.com>
17668 L:      linux-usb@vger.kernel.org
17669 S:      Maintained
17670 F:      drivers/thunderbolt/dma_test.c
17671
17672 THUNDERBOLT DRIVER
17673 M:      Andreas Noever <andreas.noever@gmail.com>
17674 M:      Michael Jamet <michael.jamet@intel.com>
17675 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17676 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17677 L:      linux-usb@vger.kernel.org
17678 S:      Maintained
17679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
17680 F:      Documentation/admin-guide/thunderbolt.rst
17681 F:      drivers/thunderbolt/
17682 F:      include/linux/thunderbolt.h
17683
17684 THUNDERBOLT NETWORK DRIVER
17685 M:      Michael Jamet <michael.jamet@intel.com>
17686 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
17687 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
17688 L:      netdev@vger.kernel.org
17689 S:      Maintained
17690 F:      drivers/net/thunderbolt.c
17691
17692 THUNDERX GPIO DRIVER
17693 M:      Robert Richter <rric@kernel.org>
17694 S:      Odd Fixes
17695 F:      drivers/gpio/gpio-thunderx.c
17696
17697 TI AM437X VPFE DRIVER
17698 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17699 L:      linux-media@vger.kernel.org
17700 S:      Maintained
17701 W:      https://linuxtv.org
17702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17703 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17704 F:      drivers/media/platform/am437x/
17705
17706 TI BANDGAP AND THERMAL DRIVER
17707 M:      Eduardo Valentin <edubezval@gmail.com>
17708 M:      Keerthy <j-keerthy@ti.com>
17709 L:      linux-pm@vger.kernel.org
17710 L:      linux-omap@vger.kernel.org
17711 S:      Maintained
17712 F:      drivers/thermal/ti-soc-thermal/
17713
17714 TI BQ27XXX POWER SUPPLY DRIVER
17715 R:      Dan Murphy <dmurphy@ti.com>
17716 F:      drivers/power/supply/bq27xxx_battery.c
17717 F:      drivers/power/supply/bq27xxx_battery_i2c.c
17718 F:      include/linux/power/bq27xxx_battery.h
17719
17720 TI CDCE706 CLOCK DRIVER
17721 M:      Max Filippov <jcmvbkbc@gmail.com>
17722 S:      Maintained
17723 F:      drivers/clk/clk-cdce706.c
17724
17725 TI CLOCK DRIVER
17726 M:      Tero Kristo <t-kristo@ti.com>
17727 L:      linux-omap@vger.kernel.org
17728 S:      Maintained
17729 F:      drivers/clk/ti/
17730 F:      include/linux/clk/ti.h
17731
17732 TI DAVINCI MACHINE SUPPORT
17733 M:      Sekhar Nori <nsekhar@ti.com>
17734 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
17735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17736 S:      Supported
17737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
17738 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
17739 F:      arch/arm/boot/dts/da850*
17740 F:      arch/arm/mach-davinci/
17741 F:      drivers/i2c/busses/i2c-davinci.c
17742
17743 TI DAVINCI SERIES CLOCK DRIVER
17744 M:      David Lechner <david@lechnology.com>
17745 R:      Sekhar Nori <nsekhar@ti.com>
17746 S:      Maintained
17747 F:      Documentation/devicetree/bindings/clock/ti/davinci/
17748 F:      drivers/clk/davinci/
17749
17750 TI DAVINCI SERIES GPIO DRIVER
17751 M:      Keerthy <j-keerthy@ti.com>
17752 L:      linux-gpio@vger.kernel.org
17753 S:      Maintained
17754 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
17755 F:      drivers/gpio/gpio-davinci.c
17756
17757 TI DAVINCI SERIES MEDIA DRIVER
17758 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
17759 L:      linux-media@vger.kernel.org
17760 S:      Maintained
17761 W:      https://linuxtv.org
17762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17763 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
17764 F:      drivers/media/platform/davinci/
17765 F:      include/media/davinci/
17766
17767 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
17768 R:      David Lechner <david@lechnology.com>
17769 L:      linux-iio@vger.kernel.org
17770 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
17771 F:      drivers/counter/ti-eqep.c
17772
17773 TI ETHERNET SWITCH DRIVER (CPSW)
17774 R:      Grygorii Strashko <grygorii.strashko@ti.com>
17775 L:      linux-omap@vger.kernel.org
17776 L:      netdev@vger.kernel.org
17777 S:      Maintained
17778 F:      drivers/net/ethernet/ti/cpsw*
17779 F:      drivers/net/ethernet/ti/davinci*
17780
17781 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17782 M:      Alex Dubov <oakad@yahoo.com>
17783 S:      Maintained
17784 W:      http://tifmxx.berlios.de/
17785 F:      drivers/memstick/host/tifm_ms.c
17786 F:      drivers/misc/tifm*
17787 F:      drivers/mmc/host/tifm_sd.c
17788 F:      include/linux/tifm.h
17789
17790 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17791 M:      Santosh Shilimkar <ssantosh@kernel.org>
17792 L:      linux-kernel@vger.kernel.org
17793 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17794 S:      Maintained
17795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17796 F:      drivers/soc/ti/*
17797
17798 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17799 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17800 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17801 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17802 S:      Maintained
17803 F:      sound/soc/codecs/isabelle*
17804 F:      sound/soc/codecs/lm49453*
17805
17806 TI LP855x BACKLIGHT DRIVER
17807 M:      Milo Kim <milo.kim@ti.com>
17808 S:      Maintained
17809 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17810 F:      drivers/video/backlight/lp855x_bl.c
17811 F:      include/linux/platform_data/lp855x.h
17812
17813 TI LP8727 CHARGER DRIVER
17814 M:      Milo Kim <milo.kim@ti.com>
17815 S:      Maintained
17816 F:      drivers/power/supply/lp8727_charger.c
17817 F:      include/linux/platform_data/lp8727.h
17818
17819 TI LP8788 MFD DRIVER
17820 M:      Milo Kim <milo.kim@ti.com>
17821 S:      Maintained
17822 F:      drivers/iio/adc/lp8788_adc.c
17823 F:      drivers/leds/leds-lp8788.c
17824 F:      drivers/mfd/lp8788*.c
17825 F:      drivers/power/supply/lp8788-charger.c
17826 F:      drivers/regulator/lp8788-*.c
17827 F:      include/linux/mfd/lp8788*.h
17828
17829 TI NETCP ETHERNET DRIVER
17830 M:      Wingman Kwok <w-kwok2@ti.com>
17831 M:      Murali Karicheri <m-karicheri2@ti.com>
17832 L:      netdev@vger.kernel.org
17833 S:      Maintained
17834 F:      drivers/net/ethernet/ti/netcp*
17835
17836 TI PCM3060 ASoC CODEC DRIVER
17837 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17838 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17839 S:      Maintained
17840 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17841 F:      sound/soc/codecs/pcm3060*
17842
17843 TI TAS571X FAMILY ASoC CODEC DRIVER
17844 M:      Kevin Cernekee <cernekee@chromium.org>
17845 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17846 S:      Odd Fixes
17847 F:      sound/soc/codecs/tas571x*
17848
17849 TI TCAN4X5X DEVICE DRIVER
17850 M:      Dan Murphy <dmurphy@ti.com>
17851 L:      linux-can@vger.kernel.org
17852 S:      Maintained
17853 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17854 F:      drivers/net/can/m_can/tcan4x5x.c
17855
17856 TI TRF7970A NFC DRIVER
17857 M:      Mark Greer <mgreer@animalcreek.com>
17858 L:      linux-wireless@vger.kernel.org
17859 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17860 S:      Supported
17861 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17862 F:      drivers/nfc/trf7970a.c
17863
17864 TI TWL4030 SERIES SOC CODEC DRIVER
17865 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
17866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17867 S:      Maintained
17868 F:      sound/soc/codecs/twl4030*
17869
17870 TI VPE/CAL DRIVERS
17871 M:      Benoit Parrot <bparrot@ti.com>
17872 L:      linux-media@vger.kernel.org
17873 S:      Maintained
17874 W:      http://linuxtv.org/
17875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17876 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17877 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17878 F:      drivers/media/platform/ti-vpe/
17879
17880 TI WILINK WIRELESS DRIVERS
17881 L:      linux-wireless@vger.kernel.org
17882 S:      Orphan
17883 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17884 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17886 F:      drivers/net/wireless/ti/
17887 F:      include/linux/wl12xx.h
17888
17889 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17890 M:      John Stultz <john.stultz@linaro.org>
17891 M:      Thomas Gleixner <tglx@linutronix.de>
17892 R:      Stephen Boyd <sboyd@kernel.org>
17893 L:      linux-kernel@vger.kernel.org
17894 S:      Supported
17895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17896 F:      include/linux/clocksource.h
17897 F:      include/linux/time.h
17898 F:      include/linux/timex.h
17899 F:      include/uapi/linux/time.h
17900 F:      include/uapi/linux/timex.h
17901 F:      kernel/time/alarmtimer.c
17902 F:      kernel/time/clocksource.c
17903 F:      kernel/time/ntp.c
17904 F:      kernel/time/time*.c
17905 F:      tools/testing/selftests/timers/
17906
17907 TIPC NETWORK LAYER
17908 M:      Jon Maloy <jmaloy@redhat.com>
17909 M:      Ying Xue <ying.xue@windriver.com>
17910 L:      netdev@vger.kernel.org (core kernel code)
17911 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17912 S:      Maintained
17913 W:      http://tipc.sourceforge.net/
17914 F:      include/uapi/linux/tipc*.h
17915 F:      net/tipc/
17916
17917 TLAN NETWORK DRIVER
17918 M:      Samuel Chessman <chessman@tux.org>
17919 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17920 S:      Maintained
17921 W:      http://sourceforge.net/projects/tlan/
17922 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
17923 F:      drivers/net/ethernet/ti/tlan.*
17924
17925 TM6000 VIDEO4LINUX DRIVER
17926 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17927 L:      linux-media@vger.kernel.org
17928 S:      Odd fixes
17929 W:      https://linuxtv.org
17930 T:      git git://linuxtv.org/media_tree.git
17931 F:      Documentation/admin-guide/media/tm6000*
17932 F:      drivers/media/usb/tm6000/
17933
17934 TMIO/SDHI MMC DRIVER
17935 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17936 L:      linux-mmc@vger.kernel.org
17937 S:      Supported
17938 F:      drivers/mmc/host/renesas_sdhi*
17939 F:      drivers/mmc/host/tmio_mmc*
17940 F:      include/linux/mfd/tmio.h
17941
17942 TMP401 HARDWARE MONITOR DRIVER
17943 M:      Guenter Roeck <linux@roeck-us.net>
17944 L:      linux-hwmon@vger.kernel.org
17945 S:      Maintained
17946 F:      Documentation/hwmon/tmp401.rst
17947 F:      drivers/hwmon/tmp401.c
17948
17949 TMP513 HARDWARE MONITOR DRIVER
17950 M:      Eric Tremblay <etremblay@distech-controls.com>
17951 L:      linux-hwmon@vger.kernel.org
17952 S:      Maintained
17953 F:      Documentation/hwmon/tmp513.rst
17954 F:      drivers/hwmon/tmp513.c
17955
17956 TMPFS (SHMEM FILESYSTEM)
17957 M:      Hugh Dickins <hughd@google.com>
17958 L:      linux-mm@kvack.org
17959 S:      Maintained
17960 F:      include/linux/shmem_fs.h
17961 F:      mm/shmem.c
17962
17963 TOMOYO SECURITY MODULE
17964 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17965 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17966 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17967 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17968 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17969 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17970 S:      Maintained
17971 W:      https://tomoyo.osdn.jp/
17972 F:      security/tomoyo/
17973
17974 TOPSTAR LAPTOP EXTRAS DRIVER
17975 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17976 L:      platform-driver-x86@vger.kernel.org
17977 S:      Maintained
17978 F:      drivers/platform/x86/topstar-laptop.c
17979
17980 TORTURE-TEST MODULES
17981 M:      Davidlohr Bueso <dave@stgolabs.net>
17982 M:      "Paul E. McKenney" <paulmck@kernel.org>
17983 M:      Josh Triplett <josh@joshtriplett.org>
17984 L:      linux-kernel@vger.kernel.org
17985 S:      Supported
17986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17987 F:      Documentation/RCU/torture.rst
17988 F:      kernel/locking/locktorture.c
17989 F:      kernel/rcu/rcuscale.c
17990 F:      kernel/rcu/rcutorture.c
17991 F:      kernel/rcu/refscale.c
17992 F:      kernel/torture.c
17993
17994 TOSHIBA ACPI EXTRAS DRIVER
17995 M:      Azael Avalos <coproscefalo@gmail.com>
17996 L:      platform-driver-x86@vger.kernel.org
17997 S:      Maintained
17998 F:      drivers/platform/x86/toshiba_acpi.c
17999
18000 TOSHIBA BLUETOOTH DRIVER
18001 M:      Azael Avalos <coproscefalo@gmail.com>
18002 L:      platform-driver-x86@vger.kernel.org
18003 S:      Maintained
18004 F:      drivers/platform/x86/toshiba_bluetooth.c
18005
18006 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18007 M:      Azael Avalos <coproscefalo@gmail.com>
18008 L:      platform-driver-x86@vger.kernel.org
18009 S:      Maintained
18010 F:      drivers/platform/x86/toshiba_haps.c
18011
18012 TOSHIBA SMM DRIVER
18013 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18014 S:      Maintained
18015 W:      http://www.buzzard.org.uk/toshiba/
18016 F:      drivers/char/toshiba.c
18017 F:      include/linux/toshiba.h
18018 F:      include/uapi/linux/toshiba.h
18019
18020 TOSHIBA TC358743 DRIVER
18021 M:      Mats Randgaard <matrandg@cisco.com>
18022 L:      linux-media@vger.kernel.org
18023 S:      Maintained
18024 F:      drivers/media/i2c/tc358743*
18025 F:      include/media/i2c/tc358743.h
18026
18027 TOSHIBA WMI HOTKEYS DRIVER
18028 M:      Azael Avalos <coproscefalo@gmail.com>
18029 L:      platform-driver-x86@vger.kernel.org
18030 S:      Maintained
18031 F:      drivers/platform/x86/toshiba-wmi.c
18032
18033 TPM DEVICE DRIVER
18034 M:      Peter Huewe <peterhuewe@gmx.de>
18035 M:      Jarkko Sakkinen <jarkko@kernel.org>
18036 R:      Jason Gunthorpe <jgg@ziepe.ca>
18037 L:      linux-integrity@vger.kernel.org
18038 S:      Maintained
18039 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18040 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18042 F:      drivers/char/tpm/
18043
18044 TRACING
18045 M:      Steven Rostedt <rostedt@goodmis.org>
18046 M:      Ingo Molnar <mingo@redhat.com>
18047 S:      Maintained
18048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
18049 F:      Documentation/trace/ftrace.rst
18050 F:      arch/*/*/*/ftrace.h
18051 F:      arch/*/kernel/ftrace.c
18052 F:      fs/tracefs/
18053 F:      include/*/ftrace.h
18054 F:      include/linux/trace*.h
18055 F:      include/trace/
18056 F:      kernel/trace/
18057 F:      tools/testing/selftests/ftrace/
18058
18059 TRACING MMIO ACCESSES (MMIOTRACE)
18060 M:      Steven Rostedt <rostedt@goodmis.org>
18061 M:      Ingo Molnar <mingo@kernel.org>
18062 R:      Karol Herbst <karolherbst@gmail.com>
18063 R:      Pekka Paalanen <ppaalanen@gmail.com>
18064 L:      linux-kernel@vger.kernel.org
18065 L:      nouveau@lists.freedesktop.org
18066 S:      Maintained
18067 F:      arch/x86/mm/kmmio.c
18068 F:      arch/x86/mm/mmio-mod.c
18069 F:      arch/x86/mm/testmmiotrace.c
18070 F:      include/linux/mmiotrace.h
18071 F:      kernel/trace/trace_mmiotrace.c
18072
18073 TRIVIAL PATCHES
18074 M:      Jiri Kosina <trivial@kernel.org>
18075 S:      Maintained
18076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
18077 K:      ^Subject:.*(?i)trivial
18078
18079 TTY LAYER
18080 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18081 M:      Jiri Slaby <jirislaby@kernel.org>
18082 S:      Supported
18083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
18084 F:      Documentation/driver-api/serial/
18085 F:      drivers/tty/
18086 F:      drivers/tty/serial/serial_core.c
18087 F:      include/linux/serial.h
18088 F:      include/linux/serial_core.h
18089 F:      include/linux/tty.h
18090 F:      include/uapi/linux/serial.h
18091 F:      include/uapi/linux/serial_core.h
18092 F:      include/uapi/linux/tty.h
18093
18094 TUA9001 MEDIA DRIVER
18095 M:      Antti Palosaari <crope@iki.fi>
18096 L:      linux-media@vger.kernel.org
18097 S:      Maintained
18098 W:      https://linuxtv.org
18099 W:      http://palosaari.fi/linux/
18100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18101 T:      git git://linuxtv.org/anttip/media_tree.git
18102 F:      drivers/media/tuners/tua9001*
18103
18104 TULIP NETWORK DRIVERS
18105 L:      netdev@vger.kernel.org
18106 L:      linux-parisc@vger.kernel.org
18107 S:      Orphan
18108 F:      drivers/net/ethernet/dec/tulip/
18109
18110 TUN/TAP driver
18111 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
18112 S:      Maintained
18113 W:      http://vtun.sourceforge.net/tun
18114 F:      Documentation/networking/tuntap.rst
18115 F:      arch/um/os-Linux/drivers/
18116
18117 TURBOCHANNEL SUBSYSTEM
18118 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18119 M:      Ralf Baechle <ralf@linux-mips.org>
18120 L:      linux-mips@vger.kernel.org
18121 S:      Maintained
18122 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
18123 F:      drivers/tc/
18124 F:      include/linux/tc.h
18125
18126 TURBOSTAT UTILITY
18127 M:      "Len Brown" <lenb@kernel.org>
18128 L:      linux-pm@vger.kernel.org
18129 S:      Supported
18130 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18131 B:      https://bugzilla.kernel.org
18132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
18133 F:      tools/power/x86/turbostat/
18134
18135 TW5864 VIDEO4LINUX DRIVER
18136 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18137 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18138 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
18139 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18140 L:      linux-media@vger.kernel.org
18141 S:      Supported
18142 F:      drivers/media/pci/tw5864/
18143
18144 TW68 VIDEO4LINUX DRIVER
18145 M:      Hans Verkuil <hverkuil@xs4all.nl>
18146 L:      linux-media@vger.kernel.org
18147 S:      Odd Fixes
18148 W:      https://linuxtv.org
18149 T:      git git://linuxtv.org/media_tree.git
18150 F:      drivers/media/pci/tw68/
18151
18152 TW686X VIDEO4LINUX DRIVER
18153 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18154 L:      linux-media@vger.kernel.org
18155 S:      Maintained
18156 W:      http://linuxtv.org
18157 T:      git git://linuxtv.org/media_tree.git
18158 F:      drivers/media/pci/tw686x/
18159
18160 UACCE ACCELERATOR FRAMEWORK
18161 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
18162 M:      Zhou Wang <wangzhou1@hisilicon.com>
18163 L:      linux-accelerators@lists.ozlabs.org
18164 L:      linux-kernel@vger.kernel.org
18165 S:      Maintained
18166 F:      Documentation/ABI/testing/sysfs-driver-uacce
18167 F:      Documentation/misc-devices/uacce.rst
18168 F:      drivers/misc/uacce/
18169 F:      include/linux/uacce.h
18170 F:      include/uapi/misc/uacce/
18171
18172 UBI FILE SYSTEM (UBIFS)
18173 M:      Richard Weinberger <richard@nod.at>
18174 L:      linux-mtd@lists.infradead.org
18175 S:      Supported
18176 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
18177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18179 F:      Documentation/filesystems/ubifs-authentication.rst
18180 F:      Documentation/filesystems/ubifs.rst
18181 F:      fs/ubifs/
18182
18183 UCLINUX (M68KNOMMU AND COLDFIRE)
18184 M:      Greg Ungerer <gerg@linux-m68k.org>
18185 L:      linux-m68k@lists.linux-m68k.org
18186 L:      uclinux-dev@uclinux.org  (subscribers-only)
18187 S:      Maintained
18188 W:      http://www.linux-m68k.org/
18189 W:      http://www.uclinux.org/
18190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
18191 F:      arch/m68k/*/*_no.*
18192 F:      arch/m68k/68*/
18193 F:      arch/m68k/coldfire/
18194 F:      arch/m68k/include/asm/*_no.*
18195
18196 UDF FILESYSTEM
18197 M:      Jan Kara <jack@suse.com>
18198 S:      Maintained
18199 F:      Documentation/filesystems/udf.rst
18200 F:      fs/udf/
18201
18202 UDRAW TABLET
18203 M:      Bastien Nocera <hadess@hadess.net>
18204 L:      linux-input@vger.kernel.org
18205 S:      Maintained
18206 F:      drivers/hid/hid-udraw-ps3.c
18207
18208 UFS FILESYSTEM
18209 M:      Evgeniy Dushistov <dushistov@mail.ru>
18210 S:      Maintained
18211 F:      Documentation/admin-guide/ufs.rst
18212 F:      fs/ufs/
18213
18214 UHID USERSPACE HID IO DRIVER
18215 M:      David Rheinsberg <david.rheinsberg@gmail.com>
18216 L:      linux-input@vger.kernel.org
18217 S:      Maintained
18218 F:      drivers/hid/uhid.c
18219 F:      include/uapi/linux/uhid.h
18220
18221 ULPI BUS
18222 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18223 L:      linux-usb@vger.kernel.org
18224 S:      Maintained
18225 F:      drivers/usb/common/ulpi.c
18226 F:      include/linux/ulpi/
18227
18228 UNICODE SUBSYSTEM
18229 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
18230 L:      linux-fsdevel@vger.kernel.org
18231 S:      Supported
18232 F:      fs/unicode/
18233
18234 UNIFDEF
18235 M:      Tony Finch <dot@dotat.at>
18236 S:      Maintained
18237 W:      http://dotat.at/prog/unifdef
18238 F:      scripts/unifdef.c
18239
18240 UNIFORM CDROM DRIVER
18241 M:      Jens Axboe <axboe@kernel.dk>
18242 S:      Maintained
18243 W:      http://www.kernel.dk
18244 F:      Documentation/cdrom/
18245 F:      drivers/cdrom/cdrom.c
18246 F:      include/linux/cdrom.h
18247 F:      include/uapi/linux/cdrom.h
18248
18249 UNISYS S-PAR DRIVERS
18250 M:      David Kershner <david.kershner@unisys.com>
18251 L:      sparmaintainer@unisys.com (Unisys internal)
18252 S:      Supported
18253 F:      drivers/staging/unisys/
18254 F:      drivers/visorbus/
18255 F:      include/linux/visorbus.h
18256
18257 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
18258 R:      Alim Akhtar <alim.akhtar@samsung.com>
18259 R:      Avri Altman <avri.altman@wdc.com>
18260 L:      linux-scsi@vger.kernel.org
18261 S:      Supported
18262 F:      Documentation/scsi/ufs.rst
18263 F:      drivers/scsi/ufs/
18264
18265 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
18266 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
18267 L:      linux-scsi@vger.kernel.org
18268 S:      Supported
18269 F:      drivers/scsi/ufs/*dwc*
18270
18271 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
18272 M:      Stanley Chu <stanley.chu@mediatek.com>
18273 L:      linux-scsi@vger.kernel.org
18274 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
18275 S:      Maintained
18276 F:      drivers/scsi/ufs/ufs-mediatek*
18277
18278 UNSORTED BLOCK IMAGES (UBI)
18279 M:      Richard Weinberger <richard@nod.at>
18280 L:      linux-mtd@lists.infradead.org
18281 S:      Supported
18282 W:      http://www.linux-mtd.infradead.org/
18283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
18284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
18285 F:      drivers/mtd/ubi/
18286 F:      include/linux/mtd/ubi.h
18287 F:      include/uapi/mtd/ubi-user.h
18288
18289 USB "USBNET" DRIVER FRAMEWORK
18290 M:      Oliver Neukum <oneukum@suse.com>
18291 L:      netdev@vger.kernel.org
18292 S:      Maintained
18293 W:      http://www.linux-usb.org/usbnet
18294 F:      drivers/net/usb/usbnet.c
18295 F:      include/linux/usb/usbnet.h
18296
18297 USB ACM DRIVER
18298 M:      Oliver Neukum <oneukum@suse.com>
18299 L:      linux-usb@vger.kernel.org
18300 S:      Maintained
18301 F:      Documentation/usb/acm.rst
18302 F:      drivers/usb/class/cdc-acm.*
18303
18304 USB APPLE MFI FASTCHARGE DRIVER
18305 M:      Bastien Nocera <hadess@hadess.net>
18306 L:      linux-usb@vger.kernel.org
18307 S:      Maintained
18308 F:      drivers/usb/misc/apple-mfi-fastcharge.c
18309
18310 USB AR5523 WIRELESS DRIVER
18311 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
18312 L:      linux-wireless@vger.kernel.org
18313 S:      Maintained
18314 F:      drivers/net/wireless/ath/ar5523/
18315
18316 USB ATTACHED SCSI
18317 M:      Oliver Neukum <oneukum@suse.com>
18318 L:      linux-usb@vger.kernel.org
18319 L:      linux-scsi@vger.kernel.org
18320 S:      Maintained
18321 F:      drivers/usb/storage/uas.c
18322
18323 USB CDC ETHERNET DRIVER
18324 M:      Oliver Neukum <oliver@neukum.org>
18325 L:      linux-usb@vger.kernel.org
18326 S:      Maintained
18327 F:      drivers/net/usb/cdc_*.c
18328 F:      include/uapi/linux/usb/cdc.h
18329
18330 USB CHAOSKEY DRIVER
18331 M:      Keith Packard <keithp@keithp.com>
18332 L:      linux-usb@vger.kernel.org
18333 S:      Maintained
18334 F:      drivers/usb/misc/chaoskey.c
18335
18336 USB CYPRESS C67X00 DRIVER
18337 M:      Peter Korsgaard <jacmet@sunsite.dk>
18338 L:      linux-usb@vger.kernel.org
18339 S:      Maintained
18340 F:      drivers/usb/c67x00/
18341
18342 USB DAVICOM DM9601 DRIVER
18343 M:      Peter Korsgaard <jacmet@sunsite.dk>
18344 L:      netdev@vger.kernel.org
18345 S:      Maintained
18346 W:      http://www.linux-usb.org/usbnet
18347 F:      drivers/net/usb/dm9601.c
18348
18349 USB EHCI DRIVER
18350 M:      Alan Stern <stern@rowland.harvard.edu>
18351 L:      linux-usb@vger.kernel.org
18352 S:      Maintained
18353 F:      Documentation/usb/ehci.rst
18354 F:      drivers/usb/host/ehci*
18355
18356 USB GADGET/PERIPHERAL SUBSYSTEM
18357 M:      Felipe Balbi <balbi@kernel.org>
18358 L:      linux-usb@vger.kernel.org
18359 S:      Maintained
18360 W:      http://www.linux-usb.org/gadget
18361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18362 F:      drivers/usb/gadget/
18363 F:      include/linux/usb/gadget*
18364
18365 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
18366 M:      Jiri Kosina <jikos@kernel.org>
18367 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
18368 L:      linux-usb@vger.kernel.org
18369 S:      Maintained
18370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
18371 F:      Documentation/hid/hiddev.rst
18372 F:      drivers/hid/usbhid/
18373
18374 USB INTEL XHCI ROLE MUX DRIVER
18375 M:      Hans de Goede <hdegoede@redhat.com>
18376 L:      linux-usb@vger.kernel.org
18377 S:      Maintained
18378 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
18379
18380 USB IP DRIVER FOR HISILICON KIRIN
18381 M:      Yu Chen <chenyu56@huawei.com>
18382 M:      Binghui Wang <wangbinghui@hisilicon.com>
18383 L:      linux-usb@vger.kernel.org
18384 S:      Maintained
18385 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
18386 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
18387
18388 USB ISP116X DRIVER
18389 M:      Olav Kongas <ok@artecdesign.ee>
18390 L:      linux-usb@vger.kernel.org
18391 S:      Maintained
18392 F:      drivers/usb/host/isp116x*
18393 F:      include/linux/usb/isp116x.h
18394
18395 USB LAN78XX ETHERNET DRIVER
18396 M:      Woojung Huh <woojung.huh@microchip.com>
18397 M:      UNGLinuxDriver@microchip.com
18398 L:      netdev@vger.kernel.org
18399 S:      Maintained
18400 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
18401 F:      drivers/net/usb/lan78xx.*
18402 F:      include/dt-bindings/net/microchip-lan78xx.h
18403
18404 USB MASS STORAGE DRIVER
18405 M:      Alan Stern <stern@rowland.harvard.edu>
18406 L:      linux-usb@vger.kernel.org
18407 L:      usb-storage@lists.one-eyed-alien.net
18408 S:      Maintained
18409 F:      drivers/usb/storage/
18410
18411 USB MIDI DRIVER
18412 M:      Clemens Ladisch <clemens@ladisch.de>
18413 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18414 S:      Maintained
18415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18416 F:      sound/usb/midi.*
18417
18418 USB NETWORKING DRIVERS
18419 L:      linux-usb@vger.kernel.org
18420 S:      Odd Fixes
18421 F:      drivers/net/usb/
18422
18423 USB OHCI DRIVER
18424 M:      Alan Stern <stern@rowland.harvard.edu>
18425 L:      linux-usb@vger.kernel.org
18426 S:      Maintained
18427 F:      Documentation/usb/ohci.rst
18428 F:      drivers/usb/host/ohci*
18429
18430 USB OTG FSM (Finite State Machine)
18431 M:      Peter Chen <peter.chen@kernel.org>
18432 L:      linux-usb@vger.kernel.org
18433 S:      Maintained
18434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
18435 F:      drivers/usb/common/usb-otg-fsm.c
18436
18437 USB OVER IP DRIVER
18438 M:      Valentina Manea <valentina.manea.m@gmail.com>
18439 M:      Shuah Khan <shuah@kernel.org>
18440 M:      Shuah Khan <skhan@linuxfoundation.org>
18441 L:      linux-usb@vger.kernel.org
18442 S:      Maintained
18443 F:      Documentation/usb/usbip_protocol.rst
18444 F:      drivers/usb/usbip/
18445 F:      tools/testing/selftests/drivers/usb/usbip/
18446 F:      tools/usb/usbip/
18447
18448 USB PEGASUS DRIVER
18449 M:      Petko Manolov <petkan@nucleusys.com>
18450 L:      linux-usb@vger.kernel.org
18451 L:      netdev@vger.kernel.org
18452 S:      Maintained
18453 W:      https://github.com/petkan/pegasus
18454 T:      git git://github.com/petkan/pegasus.git
18455 F:      drivers/net/usb/pegasus.*
18456
18457 USB PHY LAYER
18458 M:      Felipe Balbi <balbi@kernel.org>
18459 L:      linux-usb@vger.kernel.org
18460 S:      Maintained
18461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
18462 F:      drivers/usb/phy/
18463
18464 USB PRINTER DRIVER (usblp)
18465 M:      Pete Zaitcev <zaitcev@redhat.com>
18466 L:      linux-usb@vger.kernel.org
18467 S:      Supported
18468 F:      drivers/usb/class/usblp.c
18469
18470 USB RAW GADGET DRIVER
18471 R:      Andrey Konovalov <andreyknvl@gmail.com>
18472 L:      linux-usb@vger.kernel.org
18473 S:      Maintained
18474 F:      Documentation/usb/raw-gadget.rst
18475 F:      drivers/usb/gadget/legacy/raw_gadget.c
18476 F:      include/uapi/linux/usb/raw_gadget.h
18477
18478 USB QMI WWAN NETWORK DRIVER
18479 M:      Bjørn Mork <bjorn@mork.no>
18480 L:      netdev@vger.kernel.org
18481 S:      Maintained
18482 F:      Documentation/ABI/testing/sysfs-class-net-qmi
18483 F:      drivers/net/usb/qmi_wwan.c
18484
18485 USB RTL8150 DRIVER
18486 M:      Petko Manolov <petkan@nucleusys.com>
18487 L:      linux-usb@vger.kernel.org
18488 L:      netdev@vger.kernel.org
18489 S:      Maintained
18490 W:      https://github.com/petkan/rtl8150
18491 T:      git git://github.com/petkan/rtl8150.git
18492 F:      drivers/net/usb/rtl8150.c
18493
18494 USB SERIAL SUBSYSTEM
18495 M:      Johan Hovold <johan@kernel.org>
18496 L:      linux-usb@vger.kernel.org
18497 S:      Maintained
18498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
18499 F:      Documentation/usb/usb-serial.rst
18500 F:      drivers/usb/serial/
18501 F:      include/linux/usb/serial.h
18502
18503 USB SMSC75XX ETHERNET DRIVER
18504 M:      Steve Glendinning <steve.glendinning@shawell.net>
18505 L:      netdev@vger.kernel.org
18506 S:      Maintained
18507 F:      drivers/net/usb/smsc75xx.*
18508
18509 USB SMSC95XX ETHERNET DRIVER
18510 M:      Steve Glendinning <steve.glendinning@shawell.net>
18511 M:      UNGLinuxDriver@microchip.com
18512 L:      netdev@vger.kernel.org
18513 S:      Maintained
18514 F:      drivers/net/usb/smsc95xx.*
18515
18516 USB SUBSYSTEM
18517 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18518 L:      linux-usb@vger.kernel.org
18519 S:      Supported
18520 W:      http://www.linux-usb.org
18521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
18522 F:      Documentation/devicetree/bindings/usb/
18523 F:      Documentation/usb/
18524 F:      drivers/usb/
18525 F:      include/linux/usb.h
18526 F:      include/linux/usb/
18527
18528 USB TYPEC BUS FOR ALTERNATE MODES
18529 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18530 L:      linux-usb@vger.kernel.org
18531 S:      Maintained
18532 F:      Documentation/ABI/testing/sysfs-bus-typec
18533 F:      Documentation/driver-api/usb/typec_bus.rst
18534 F:      drivers/usb/typec/altmodes/
18535 F:      include/linux/usb/typec_altmode.h
18536
18537 USB TYPEC CLASS
18538 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18539 L:      linux-usb@vger.kernel.org
18540 S:      Maintained
18541 F:      Documentation/ABI/testing/sysfs-class-typec
18542 F:      Documentation/driver-api/usb/typec.rst
18543 F:      drivers/usb/typec/
18544 F:      include/linux/usb/typec.h
18545
18546 USB TYPEC INTEL PMC MUX DRIVER
18547 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18548 L:      linux-usb@vger.kernel.org
18549 S:      Maintained
18550 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
18551 F:      drivers/usb/typec/mux/intel_pmc_mux.c
18552
18553 USB TYPEC PI3USB30532 MUX DRIVER
18554 M:      Hans de Goede <hdegoede@redhat.com>
18555 L:      linux-usb@vger.kernel.org
18556 S:      Maintained
18557 F:      drivers/usb/typec/mux/pi3usb30532.c
18558
18559 USB TYPEC PORT CONTROLLER DRIVERS
18560 M:      Guenter Roeck <linux@roeck-us.net>
18561 L:      linux-usb@vger.kernel.org
18562 S:      Maintained
18563 F:      drivers/usb/typec/tcpm/
18564
18565 USB UHCI DRIVER
18566 M:      Alan Stern <stern@rowland.harvard.edu>
18567 L:      linux-usb@vger.kernel.org
18568 S:      Maintained
18569 F:      drivers/usb/host/uhci*
18570
18571 USB VIDEO CLASS
18572 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18573 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
18574 L:      linux-media@vger.kernel.org
18575 S:      Maintained
18576 W:      http://www.ideasonboard.org/uvc/
18577 T:      git git://linuxtv.org/media_tree.git
18578 F:      drivers/media/usb/uvc/
18579 F:      include/uapi/linux/uvcvideo.h
18580
18581 USB WEBCAM GADGET
18582 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18583 L:      linux-usb@vger.kernel.org
18584 S:      Maintained
18585 F:      drivers/usb/gadget/function/*uvc*
18586 F:      drivers/usb/gadget/legacy/webcam.c
18587 F:      include/uapi/linux/usb/g_uvc.h
18588
18589 USB WIRELESS RNDIS DRIVER (rndis_wlan)
18590 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
18591 L:      linux-wireless@vger.kernel.org
18592 S:      Maintained
18593 F:      drivers/net/wireless/rndis_wlan.c
18594
18595 USB XHCI DRIVER
18596 M:      Mathias Nyman <mathias.nyman@intel.com>
18597 L:      linux-usb@vger.kernel.org
18598 S:      Supported
18599 F:      drivers/usb/host/pci-quirks*
18600 F:      drivers/usb/host/xhci*
18601
18602 USB ZD1201 DRIVER
18603 L:      linux-wireless@vger.kernel.org
18604 S:      Orphan
18605 W:      http://linux-lc100020.sourceforge.net
18606 F:      drivers/net/wireless/zydas/zd1201.*
18607
18608 USB ZR364XX DRIVER
18609 M:      Antoine Jacquet <royale@zerezo.com>
18610 L:      linux-usb@vger.kernel.org
18611 L:      linux-media@vger.kernel.org
18612 S:      Maintained
18613 W:      http://royale.zerezo.com/zr364xx/
18614 T:      git git://linuxtv.org/media_tree.git
18615 F:      Documentation/admin-guide/media/zr364xx*
18616 F:      drivers/media/usb/zr364xx/
18617
18618 USER-MODE LINUX (UML)
18619 M:      Jeff Dike <jdike@addtoit.com>
18620 M:      Richard Weinberger <richard@nod.at>
18621 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
18622 L:      linux-um@lists.infradead.org
18623 S:      Maintained
18624 W:      http://user-mode-linux.sourceforge.net
18625 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
18626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
18627 F:      Documentation/virt/uml/
18628 F:      arch/um/
18629 F:      arch/x86/um/
18630 F:      fs/hostfs/
18631
18632 USERSPACE COPYIN/COPYOUT (UIOVEC)
18633 M:      Alexander Viro <viro@zeniv.linux.org.uk>
18634 S:      Maintained
18635 F:      include/linux/uio.h
18636 F:      lib/iov_iter.c
18637
18638 USERSPACE DMA BUFFER DRIVER
18639 M:      Gerd Hoffmann <kraxel@redhat.com>
18640 L:      dri-devel@lists.freedesktop.org
18641 S:      Maintained
18642 T:      git git://anongit.freedesktop.org/drm/drm-misc
18643 F:      drivers/dma-buf/udmabuf.c
18644 F:      include/uapi/linux/udmabuf.h
18645
18646 USERSPACE I/O (UIO)
18647 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18648 S:      Maintained
18649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18650 F:      Documentation/driver-api/uio-howto.rst
18651 F:      drivers/uio/
18652 F:      include/linux/uio_driver.h
18653
18654 UTIL-LINUX PACKAGE
18655 M:      Karel Zak <kzak@redhat.com>
18656 L:      util-linux@vger.kernel.org
18657 S:      Maintained
18658 W:      http://en.wikipedia.org/wiki/Util-linux
18659 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
18660
18661 UUID HELPERS
18662 M:      Christoph Hellwig <hch@lst.de>
18663 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18664 L:      linux-kernel@vger.kernel.org
18665 S:      Maintained
18666 T:      git git://git.infradead.org/users/hch/uuid.git
18667 F:      include/linux/uuid.h
18668 F:      include/uapi/linux/uuid.h
18669 F:      lib/test_uuid.c
18670 F:      lib/uuid.c
18671
18672 UV SYSFS DRIVER
18673 M:      Justin Ernst <justin.ernst@hpe.com>
18674 L:      platform-driver-x86@vger.kernel.org
18675 S:      Maintained
18676 F:      drivers/platform/x86/uv_sysfs.c
18677
18678 UVESAFB DRIVER
18679 M:      Michal Januszewski <spock@gentoo.org>
18680 L:      linux-fbdev@vger.kernel.org
18681 S:      Maintained
18682 W:      https://github.com/mjanusz/v86d
18683 F:      Documentation/fb/uvesafb.rst
18684 F:      drivers/video/fbdev/uvesafb.*
18685
18686 Ux500 CLOCK DRIVERS
18687 M:      Ulf Hansson <ulf.hansson@linaro.org>
18688 L:      linux-clk@vger.kernel.org
18689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18690 S:      Maintained
18691 F:      drivers/clk/ux500/
18692
18693 VF610 NAND DRIVER
18694 M:      Stefan Agner <stefan@agner.ch>
18695 L:      linux-mtd@lists.infradead.org
18696 S:      Supported
18697 F:      drivers/mtd/nand/raw/vf610_nfc.c
18698
18699 VFAT/FAT/MSDOS FILESYSTEM
18700 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
18701 S:      Maintained
18702 F:      Documentation/filesystems/vfat.rst
18703 F:      fs/fat/
18704
18705 VFIO DRIVER
18706 M:      Alex Williamson <alex.williamson@redhat.com>
18707 R:      Cornelia Huck <cohuck@redhat.com>
18708 L:      kvm@vger.kernel.org
18709 S:      Maintained
18710 T:      git git://github.com/awilliam/linux-vfio.git
18711 F:      Documentation/driver-api/vfio.rst
18712 F:      drivers/vfio/
18713 F:      include/linux/vfio.h
18714 F:      include/uapi/linux/vfio.h
18715
18716 VFIO FSL-MC DRIVER
18717 M:      Diana Craciun <diana.craciun@oss.nxp.com>
18718 L:      kvm@vger.kernel.org
18719 S:      Maintained
18720 F:      drivers/vfio/fsl-mc/
18721
18722 VFIO MEDIATED DEVICE DRIVERS
18723 M:      Kirti Wankhede <kwankhede@nvidia.com>
18724 L:      kvm@vger.kernel.org
18725 S:      Maintained
18726 F:      Documentation/driver-api/vfio-mediated-device.rst
18727 F:      drivers/vfio/mdev/
18728 F:      include/linux/mdev.h
18729 F:      samples/vfio-mdev/
18730
18731 VFIO PLATFORM DRIVER
18732 M:      Eric Auger <eric.auger@redhat.com>
18733 L:      kvm@vger.kernel.org
18734 S:      Maintained
18735 F:      drivers/vfio/platform/
18736
18737 VGA_SWITCHEROO
18738 R:      Lukas Wunner <lukas@wunner.de>
18739 S:      Maintained
18740 T:      git git://anongit.freedesktop.org/drm/drm-misc
18741 F:      Documentation/gpu/vga-switcheroo.rst
18742 F:      drivers/gpu/vga/vga_switcheroo.c
18743 F:      include/linux/vga_switcheroo.h
18744
18745 VIA RHINE NETWORK DRIVER
18746 S:      Maintained
18747 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
18748 F:      drivers/net/ethernet/via/via-rhine.c
18749
18750 VIA SD/MMC CARD CONTROLLER DRIVER
18751 M:      Bruce Chang <brucechang@via.com.tw>
18752 M:      Harald Welte <HaraldWelte@viatech.com>
18753 S:      Maintained
18754 F:      drivers/mmc/host/via-sdmmc.c
18755
18756 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
18757 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
18758 L:      linux-fbdev@vger.kernel.org
18759 S:      Maintained
18760 F:      drivers/video/fbdev/via/
18761 F:      include/linux/via-core.h
18762 F:      include/linux/via-gpio.h
18763 F:      include/linux/via_i2c.h
18764
18765 VIA VELOCITY NETWORK DRIVER
18766 M:      Francois Romieu <romieu@fr.zoreil.com>
18767 L:      netdev@vger.kernel.org
18768 S:      Maintained
18769 F:      drivers/net/ethernet/via/via-velocity.*
18770
18771 VICODEC VIRTUAL CODEC DRIVER
18772 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
18773 L:      linux-media@vger.kernel.org
18774 S:      Maintained
18775 W:      https://linuxtv.org
18776 T:      git git://linuxtv.org/media_tree.git
18777 F:      drivers/media/test-drivers/vicodec/*
18778
18779 VIDEO I2C POLLING DRIVER
18780 M:      Matt Ranostay <matt.ranostay@konsulko.com>
18781 L:      linux-media@vger.kernel.org
18782 S:      Maintained
18783 F:      drivers/media/i2c/video-i2c.c
18784
18785 VIDEO MULTIPLEXER DRIVER
18786 M:      Philipp Zabel <p.zabel@pengutronix.de>
18787 L:      linux-media@vger.kernel.org
18788 S:      Maintained
18789 F:      drivers/media/platform/video-mux.c
18790
18791 VIDEOBUF2 FRAMEWORK
18792 M:      Tomasz Figa <tfiga@chromium.org>
18793 M:      Marek Szyprowski <m.szyprowski@samsung.com>
18794 L:      linux-media@vger.kernel.org
18795 S:      Maintained
18796 F:      drivers/media/common/videobuf2/*
18797 F:      include/media/videobuf2-*
18798
18799 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18800 M:      Helen Koike <helen.koike@collabora.com>
18801 R:      Shuah Khan <skhan@linuxfoundation.org>
18802 L:      linux-media@vger.kernel.org
18803 S:      Maintained
18804 W:      https://linuxtv.org
18805 T:      git git://linuxtv.org/media_tree.git
18806 F:      drivers/media/test-drivers/vimc/*
18807
18808 VIRT LIB
18809 M:      Alex Williamson <alex.williamson@redhat.com>
18810 M:      Paolo Bonzini <pbonzini@redhat.com>
18811 L:      kvm@vger.kernel.org
18812 S:      Supported
18813 F:      virt/lib/
18814
18815 VIRTIO AND VHOST VSOCK DRIVER
18816 M:      Stefan Hajnoczi <stefanha@redhat.com>
18817 M:      Stefano Garzarella <sgarzare@redhat.com>
18818 L:      kvm@vger.kernel.org
18819 L:      virtualization@lists.linux-foundation.org
18820 L:      netdev@vger.kernel.org
18821 S:      Maintained
18822 F:      drivers/net/vsockmon.c
18823 F:      drivers/vhost/vsock.c
18824 F:      include/linux/virtio_vsock.h
18825 F:      include/uapi/linux/virtio_vsock.h
18826 F:      include/uapi/linux/vm_sockets_diag.h
18827 F:      include/uapi/linux/vsockmon.h
18828 F:      net/vmw_vsock/af_vsock_tap.c
18829 F:      net/vmw_vsock/diag.c
18830 F:      net/vmw_vsock/virtio_transport.c
18831 F:      net/vmw_vsock/virtio_transport_common.c
18832 F:      net/vmw_vsock/vsock_loopback.c
18833 F:      tools/testing/vsock/
18834
18835 VIRTIO BLOCK AND SCSI DRIVERS
18836 M:      "Michael S. Tsirkin" <mst@redhat.com>
18837 M:      Jason Wang <jasowang@redhat.com>
18838 R:      Paolo Bonzini <pbonzini@redhat.com>
18839 R:      Stefan Hajnoczi <stefanha@redhat.com>
18840 L:      virtualization@lists.linux-foundation.org
18841 S:      Maintained
18842 F:      drivers/block/virtio_blk.c
18843 F:      drivers/scsi/virtio_scsi.c
18844 F:      drivers/vhost/scsi.c
18845 F:      include/uapi/linux/virtio_blk.h
18846 F:      include/uapi/linux/virtio_scsi.h
18847
18848 VIRTIO CONSOLE DRIVER
18849 M:      Amit Shah <amit@kernel.org>
18850 L:      virtualization@lists.linux-foundation.org
18851 S:      Maintained
18852 F:      drivers/char/virtio_console.c
18853 F:      include/linux/virtio_console.h
18854 F:      include/uapi/linux/virtio_console.h
18855
18856 VIRTIO CORE AND NET DRIVERS
18857 M:      "Michael S. Tsirkin" <mst@redhat.com>
18858 M:      Jason Wang <jasowang@redhat.com>
18859 L:      virtualization@lists.linux-foundation.org
18860 S:      Maintained
18861 F:      Documentation/devicetree/bindings/virtio/
18862 F:      drivers/block/virtio_blk.c
18863 F:      drivers/crypto/virtio/
18864 F:      drivers/net/virtio_net.c
18865 F:      drivers/vdpa/
18866 F:      drivers/virtio/
18867 F:      include/linux/vdpa.h
18868 F:      include/linux/virtio*.h
18869 F:      include/uapi/linux/virtio_*.h
18870 F:      tools/virtio/
18871
18872 VIRTIO BALLOON
18873 M:      "Michael S. Tsirkin" <mst@redhat.com>
18874 M:      David Hildenbrand <david@redhat.com>
18875 L:      virtualization@lists.linux-foundation.org
18876 S:      Maintained
18877 F:      drivers/virtio/virtio_balloon.c
18878 F:      include/uapi/linux/virtio_balloon.h
18879 F:      include/linux/balloon_compaction.h
18880 F:      mm/balloon_compaction.c
18881
18882 VIRTIO CRYPTO DRIVER
18883 M:      Gonglei <arei.gonglei@huawei.com>
18884 L:      virtualization@lists.linux-foundation.org
18885 L:      linux-crypto@vger.kernel.org
18886 S:      Maintained
18887 F:      drivers/crypto/virtio/
18888 F:      include/uapi/linux/virtio_crypto.h
18889
18890 VIRTIO DRIVERS FOR S390
18891 M:      Cornelia Huck <cohuck@redhat.com>
18892 M:      Halil Pasic <pasic@linux.ibm.com>
18893 L:      linux-s390@vger.kernel.org
18894 L:      virtualization@lists.linux-foundation.org
18895 L:      kvm@vger.kernel.org
18896 S:      Supported
18897 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18898 F:      drivers/s390/virtio/
18899
18900 VIRTIO FILE SYSTEM
18901 M:      Vivek Goyal <vgoyal@redhat.com>
18902 M:      Stefan Hajnoczi <stefanha@redhat.com>
18903 M:      Miklos Szeredi <miklos@szeredi.hu>
18904 L:      virtualization@lists.linux-foundation.org
18905 L:      linux-fsdevel@vger.kernel.org
18906 S:      Supported
18907 W:      https://virtio-fs.gitlab.io/
18908 F:      Documentation/filesystems/virtiofs.rst
18909 F:      fs/fuse/virtio_fs.c
18910 F:      include/uapi/linux/virtio_fs.h
18911
18912 VIRTIO GPU DRIVER
18913 M:      David Airlie <airlied@linux.ie>
18914 M:      Gerd Hoffmann <kraxel@redhat.com>
18915 L:      dri-devel@lists.freedesktop.org
18916 L:      virtualization@lists.linux-foundation.org
18917 S:      Maintained
18918 T:      git git://anongit.freedesktop.org/drm/drm-misc
18919 F:      drivers/gpu/drm/virtio/
18920 F:      include/uapi/linux/virtio_gpu.h
18921
18922 VIRTIO HOST (VHOST)
18923 M:      "Michael S. Tsirkin" <mst@redhat.com>
18924 M:      Jason Wang <jasowang@redhat.com>
18925 L:      kvm@vger.kernel.org
18926 L:      virtualization@lists.linux-foundation.org
18927 L:      netdev@vger.kernel.org
18928 S:      Maintained
18929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18930 F:      drivers/vhost/
18931 F:      include/linux/vhost_iotlb.h
18932 F:      include/uapi/linux/vhost.h
18933
18934 VIRTIO INPUT DRIVER
18935 M:      Gerd Hoffmann <kraxel@redhat.com>
18936 S:      Maintained
18937 F:      drivers/virtio/virtio_input.c
18938 F:      include/uapi/linux/virtio_input.h
18939
18940 VIRTIO IOMMU DRIVER
18941 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18942 L:      virtualization@lists.linux-foundation.org
18943 S:      Maintained
18944 F:      drivers/iommu/virtio-iommu.c
18945 F:      include/uapi/linux/virtio_iommu.h
18946
18947 VIRTIO MEM DRIVER
18948 M:      David Hildenbrand <david@redhat.com>
18949 L:      virtualization@lists.linux-foundation.org
18950 S:      Maintained
18951 W:      https://virtio-mem.gitlab.io/
18952 F:      drivers/virtio/virtio_mem.c
18953 F:      include/uapi/linux/virtio_mem.h
18954
18955 VIRTUAL BOX GUEST DEVICE DRIVER
18956 M:      Hans de Goede <hdegoede@redhat.com>
18957 M:      Arnd Bergmann <arnd@arndb.de>
18958 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18959 S:      Maintained
18960 F:      drivers/virt/vboxguest/
18961 F:      include/linux/vbox_utils.h
18962 F:      include/uapi/linux/vbox*.h
18963
18964 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18965 M:      Hans de Goede <hdegoede@redhat.com>
18966 L:      linux-fsdevel@vger.kernel.org
18967 S:      Maintained
18968 F:      fs/vboxsf/*
18969
18970 VIRTUAL SERIO DEVICE DRIVER
18971 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18972 S:      Maintained
18973 F:      drivers/input/serio/userio.c
18974 F:      include/uapi/linux/userio.h
18975
18976 VIVID VIRTUAL VIDEO DRIVER
18977 M:      Hans Verkuil <hverkuil@xs4all.nl>
18978 L:      linux-media@vger.kernel.org
18979 S:      Maintained
18980 W:      https://linuxtv.org
18981 T:      git git://linuxtv.org/media_tree.git
18982 F:      drivers/media/test-drivers/vivid/*
18983
18984 VIDTV VIRTUAL DIGITAL TV DRIVER
18985 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
18986 L:      linux-media@vger.kernel.org
18987 S:      Maintained
18988 W:      https://linuxtv.org
18989 T:      git git://linuxtv.org/media_tree.git
18990 F:      drivers/media/test-drivers/vidtv/*
18991
18992 VLYNQ BUS
18993 M:      Florian Fainelli <f.fainelli@gmail.com>
18994 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18995 S:      Maintained
18996 F:      drivers/vlynq/vlynq.c
18997 F:      include/linux/vlynq.h
18998
18999 VME SUBSYSTEM
19000 M:      Martyn Welch <martyn@welchs.me.uk>
19001 M:      Manohar Vanga <manohar.vanga@gmail.com>
19002 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19003 L:      devel@driverdev.osuosl.org
19004 S:      Maintained
19005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19006 F:      Documentation/driver-api/vme.rst
19007 F:      drivers/staging/vme/
19008 F:      drivers/vme/
19009 F:      include/linux/vme*
19010
19011 VMWARE BALLOON DRIVER
19012 M:      Nadav Amit <namit@vmware.com>
19013 M:      "VMware, Inc." <pv-drivers@vmware.com>
19014 L:      linux-kernel@vger.kernel.org
19015 S:      Maintained
19016 F:      drivers/misc/vmw_balloon.c
19017
19018 VMWARE HYPERVISOR INTERFACE
19019 M:      Deep Shah <sdeep@vmware.com>
19020 M:      "VMware, Inc." <pv-drivers@vmware.com>
19021 L:      virtualization@lists.linux-foundation.org
19022 S:      Supported
19023 F:      arch/x86/include/asm/vmware.h
19024 F:      arch/x86/kernel/cpu/vmware.c
19025
19026 VMWARE PVRDMA DRIVER
19027 M:      Adit Ranadive <aditr@vmware.com>
19028 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19029 L:      linux-rdma@vger.kernel.org
19030 S:      Maintained
19031 F:      drivers/infiniband/hw/vmw_pvrdma/
19032
19033 VMware PVSCSI driver
19034 M:      Jim Gill <jgill@vmware.com>
19035 M:      VMware PV-Drivers <pv-drivers@vmware.com>
19036 L:      linux-scsi@vger.kernel.org
19037 S:      Maintained
19038 F:      drivers/scsi/vmw_pvscsi.c
19039 F:      drivers/scsi/vmw_pvscsi.h
19040
19041 VMWARE VIRTUAL PTP CLOCK DRIVER
19042 M:      Vivek Thampi <vithampi@vmware.com>
19043 M:      "VMware, Inc." <pv-drivers@vmware.com>
19044 L:      netdev@vger.kernel.org
19045 S:      Supported
19046 F:      drivers/ptp/ptp_vmw.c
19047
19048 VMWARE VMMOUSE SUBDRIVER
19049 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
19050 M:      "VMware, Inc." <pv-drivers@vmware.com>
19051 L:      linux-input@vger.kernel.org
19052 S:      Maintained
19053 F:      drivers/input/mouse/vmmouse.c
19054 F:      drivers/input/mouse/vmmouse.h
19055
19056 VMWARE VMXNET3 ETHERNET DRIVER
19057 M:      Ronak Doshi <doshir@vmware.com>
19058 M:      pv-drivers@vmware.com
19059 L:      netdev@vger.kernel.org
19060 S:      Maintained
19061 F:      drivers/net/vmxnet3/
19062
19063 VOCORE VOCORE2 BOARD
19064 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
19065 L:      linux-mips@vger.kernel.org
19066 S:      Maintained
19067 F:      arch/mips/boot/dts/ralink/vocore2.dts
19068
19069 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
19070 M:      Liam Girdwood <lgirdwood@gmail.com>
19071 M:      Mark Brown <broonie@kernel.org>
19072 L:      linux-kernel@vger.kernel.org
19073 S:      Supported
19074 W:      http://www.slimlogic.co.uk/?p=48
19075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
19076 F:      Documentation/devicetree/bindings/regulator/
19077 F:      Documentation/power/regulator/
19078 F:      drivers/regulator/
19079 F:      include/dt-bindings/regulator/
19080 F:      include/linux/regulator/
19081 K:      regulator_get_optional
19082
19083 VRF
19084 M:      David Ahern <dsahern@kernel.org>
19085 L:      netdev@vger.kernel.org
19086 S:      Maintained
19087 F:      Documentation/networking/vrf.rst
19088 F:      drivers/net/vrf.c
19089
19090 VSPRINTF
19091 M:      Petr Mladek <pmladek@suse.com>
19092 M:      Steven Rostedt <rostedt@goodmis.org>
19093 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
19094 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19095 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
19096 S:      Maintained
19097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
19098 F:      Documentation/core-api/printk-formats.rst
19099 F:      lib/test_printf.c
19100 F:      lib/vsprintf.c
19101
19102 VT1211 HARDWARE MONITOR DRIVER
19103 M:      Juerg Haefliger <juergh@gmail.com>
19104 L:      linux-hwmon@vger.kernel.org
19105 S:      Maintained
19106 F:      Documentation/hwmon/vt1211.rst
19107 F:      drivers/hwmon/vt1211.c
19108
19109 VT8231 HARDWARE MONITOR DRIVER
19110 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
19111 L:      linux-hwmon@vger.kernel.org
19112 S:      Maintained
19113 F:      drivers/hwmon/vt8231.c
19114
19115 VUB300 USB to SDIO/SD/MMC bridge chip
19116 L:      linux-mmc@vger.kernel.org
19117 S:      Orphan
19118 F:      drivers/mmc/host/vub300.c
19119
19120 W1 DALLAS'S 1-WIRE BUS
19121 M:      Evgeniy Polyakov <zbr@ioremap.net>
19122 S:      Maintained
19123 F:      Documentation/devicetree/bindings/w1/
19124 F:      Documentation/w1/
19125 F:      drivers/w1/
19126 F:      include/linux/w1.h
19127
19128 W83791D HARDWARE MONITORING DRIVER
19129 M:      Marc Hulsman <m.hulsman@tudelft.nl>
19130 L:      linux-hwmon@vger.kernel.org
19131 S:      Maintained
19132 F:      Documentation/hwmon/w83791d.rst
19133 F:      drivers/hwmon/w83791d.c
19134
19135 W83793 HARDWARE MONITORING DRIVER
19136 M:      Rudolf Marek <r.marek@assembler.cz>
19137 L:      linux-hwmon@vger.kernel.org
19138 S:      Maintained
19139 F:      Documentation/hwmon/w83793.rst
19140 F:      drivers/hwmon/w83793.c
19141
19142 W83795 HARDWARE MONITORING DRIVER
19143 M:      Jean Delvare <jdelvare@suse.com>
19144 L:      linux-hwmon@vger.kernel.org
19145 S:      Maintained
19146 F:      drivers/hwmon/w83795.c
19147
19148 W83L51xD SD/MMC CARD INTERFACE DRIVER
19149 M:      Pierre Ossman <pierre@ossman.eu>
19150 S:      Maintained
19151 F:      drivers/mmc/host/wbsd.*
19152
19153 WACOM PROTOCOL 4 SERIAL TABLETS
19154 M:      Julian Squires <julian@cipht.net>
19155 M:      Hans de Goede <hdegoede@redhat.com>
19156 L:      linux-input@vger.kernel.org
19157 S:      Maintained
19158 F:      drivers/input/tablet/wacom_serial4.c
19159
19160 WATCHDOG DEVICE DRIVERS
19161 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
19162 M:      Guenter Roeck <linux@roeck-us.net>
19163 L:      linux-watchdog@vger.kernel.org
19164 S:      Maintained
19165 W:      http://www.linux-watchdog.org/
19166 T:      git git://www.linux-watchdog.org/linux-watchdog.git
19167 F:      Documentation/devicetree/bindings/watchdog/
19168 F:      Documentation/watchdog/
19169 F:      drivers/watchdog/
19170 F:      include/linux/watchdog.h
19171 F:      include/uapi/linux/watchdog.h
19172
19173 WHISKEYCOVE PMIC GPIO DRIVER
19174 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
19175 L:      linux-gpio@vger.kernel.org
19176 S:      Maintained
19177 F:      drivers/gpio/gpio-wcove.c
19178
19179 WHWAVE RTC DRIVER
19180 M:      Dianlong Li <long17.cool@163.com>
19181 L:      linux-rtc@vger.kernel.org
19182 S:      Maintained
19183 F:      drivers/rtc/rtc-sd3078.c
19184
19185 WIIMOTE HID DRIVER
19186 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19187 L:      linux-input@vger.kernel.org
19188 S:      Maintained
19189 F:      drivers/hid/hid-wiimote*
19190
19191 WILOCITY WIL6210 WIRELESS DRIVER
19192 M:      Maya Erez <merez@codeaurora.org>
19193 L:      linux-wireless@vger.kernel.org
19194 L:      wil6210@qti.qualcomm.com
19195 S:      Supported
19196 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
19197 F:      drivers/net/wireless/ath/wil6210/
19198
19199 WINBOND CIR DRIVER
19200 M:      David Härdeman <david@hardeman.nu>
19201 S:      Maintained
19202 F:      drivers/media/rc/winbond-cir.c
19203
19204 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
19205 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19206 L:      linux-watchdog@vger.kernel.org
19207 S:      Maintained
19208 F:      drivers/watchdog/ebc-c384_wdt.c
19209
19210 WINSYSTEMS WS16C48 GPIO DRIVER
19211 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
19212 L:      linux-gpio@vger.kernel.org
19213 S:      Maintained
19214 F:      drivers/gpio/gpio-ws16c48.c
19215
19216 WIREGUARD SECURE NETWORK TUNNEL
19217 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19218 L:      wireguard@lists.zx2c4.com
19219 L:      netdev@vger.kernel.org
19220 S:      Maintained
19221 F:      drivers/net/wireguard/
19222 F:      tools/testing/selftests/wireguard/
19223
19224 WISTRON LAPTOP BUTTON DRIVER
19225 M:      Miloslav Trmac <mitr@volny.cz>
19226 S:      Maintained
19227 F:      drivers/input/misc/wistron_btns.c
19228
19229 WL3501 WIRELESS PCMCIA CARD DRIVER
19230 L:      linux-wireless@vger.kernel.org
19231 S:      Odd fixes
19232 F:      drivers/net/wireless/wl3501*
19233
19234 WOLFSON MICROELECTRONICS DRIVERS
19235 L:      patches@opensource.cirrus.com
19236 S:      Supported
19237 W:      https://github.com/CirrusLogic/linux-drivers/wiki
19238 T:      git https://github.com/CirrusLogic/linux-drivers.git
19239 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
19240 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
19241 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
19242 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
19243 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
19244 F:      Documentation/hwmon/wm83??.rst
19245 F:      arch/arm/mach-s3c/mach-crag6410*
19246 F:      drivers/clk/clk-wm83*.c
19247 F:      drivers/extcon/extcon-arizona.c
19248 F:      drivers/gpio/gpio-*wm*.c
19249 F:      drivers/gpio/gpio-arizona.c
19250 F:      drivers/hwmon/wm83??-hwmon.c
19251 F:      drivers/input/misc/wm831x-on.c
19252 F:      drivers/input/touchscreen/wm831x-ts.c
19253 F:      drivers/input/touchscreen/wm97*.c
19254 F:      drivers/leds/leds-wm83*.c
19255 F:      drivers/mfd/arizona*
19256 F:      drivers/mfd/cs47l24*
19257 F:      drivers/mfd/wm*.c
19258 F:      drivers/power/supply/wm83*.c
19259 F:      drivers/regulator/arizona*
19260 F:      drivers/regulator/wm8*.c
19261 F:      drivers/rtc/rtc-wm83*.c
19262 F:      drivers/video/backlight/wm83*_bl.c
19263 F:      drivers/watchdog/wm83*_wdt.c
19264 F:      include/linux/mfd/arizona/
19265 F:      include/linux/mfd/wm831x/
19266 F:      include/linux/mfd/wm8350/
19267 F:      include/linux/mfd/wm8400*
19268 F:      include/linux/regulator/arizona*
19269 F:      include/linux/wm97xx.h
19270 F:      include/sound/wm????.h
19271 F:      sound/soc/codecs/arizona.?
19272 F:      sound/soc/codecs/cs47l24*
19273 F:      sound/soc/codecs/wm*
19274
19275 WORKQUEUE
19276 M:      Tejun Heo <tj@kernel.org>
19277 R:      Lai Jiangshan <jiangshanlai@gmail.com>
19278 S:      Maintained
19279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
19280 F:      Documentation/core-api/workqueue.rst
19281 F:      include/linux/workqueue.h
19282 F:      kernel/workqueue.c
19283
19284 X-POWERS AXP288 PMIC DRIVERS
19285 M:      Hans de Goede <hdegoede@redhat.com>
19286 S:      Maintained
19287 F:      drivers/acpi/pmic/intel_pmic_xpower.c
19288 N:      axp288
19289
19290 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
19291 M:      Chen-Yu Tsai <wens@csie.org>
19292 L:      linux-kernel@vger.kernel.org
19293 S:      Maintained
19294 N:      axp[128]
19295
19296 X.25 STACK
19297 M:      Martin Schiller <ms@dev.tdt.de>
19298 L:      linux-x25@vger.kernel.org
19299 S:      Maintained
19300 F:      Documentation/networking/lapb-module.rst
19301 F:      Documentation/networking/x25*
19302 F:      drivers/net/wan/hdlc_x25.c
19303 F:      drivers/net/wan/lapbether.c
19304 F:      include/*/lapb.h
19305 F:      include/net/x25*
19306 F:      include/uapi/linux/x25.h
19307 F:      net/lapb/
19308 F:      net/x25/
19309
19310 X86 ARCHITECTURE (32-BIT AND 64-BIT)
19311 M:      Thomas Gleixner <tglx@linutronix.de>
19312 M:      Ingo Molnar <mingo@redhat.com>
19313 M:      Borislav Petkov <bp@alien8.de>
19314 M:      x86@kernel.org
19315 R:      "H. Peter Anvin" <hpa@zytor.com>
19316 L:      linux-kernel@vger.kernel.org
19317 S:      Maintained
19318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19319 F:      Documentation/devicetree/bindings/x86/
19320 F:      Documentation/x86/
19321 F:      arch/x86/
19322
19323 X86 ENTRY CODE
19324 M:      Andy Lutomirski <luto@kernel.org>
19325 L:      linux-kernel@vger.kernel.org
19326 S:      Maintained
19327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
19328 F:      arch/x86/entry/
19329
19330 X86 MCE INFRASTRUCTURE
19331 M:      Tony Luck <tony.luck@intel.com>
19332 M:      Borislav Petkov <bp@alien8.de>
19333 L:      linux-edac@vger.kernel.org
19334 S:      Maintained
19335 F:      arch/x86/kernel/cpu/mce/*
19336
19337 X86 MICROCODE UPDATE SUPPORT
19338 M:      Borislav Petkov <bp@alien8.de>
19339 S:      Maintained
19340 F:      arch/x86/kernel/cpu/microcode/*
19341
19342 X86 MM
19343 M:      Dave Hansen <dave.hansen@linux.intel.com>
19344 M:      Andy Lutomirski <luto@kernel.org>
19345 M:      Peter Zijlstra <peterz@infradead.org>
19346 L:      linux-kernel@vger.kernel.org
19347 S:      Maintained
19348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
19349 F:      arch/x86/mm/
19350
19351 X86 PLATFORM DRIVERS
19352 M:      Hans de Goede <hdegoede@redhat.com>
19353 M:      Mark Gross <mgross@linux.intel.com>
19354 L:      platform-driver-x86@vger.kernel.org
19355 S:      Maintained
19356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
19357 F:      drivers/platform/olpc/
19358 F:      drivers/platform/x86/
19359
19360 X86 PLATFORM DRIVERS - ARCH
19361 R:      Darren Hart <dvhart@infradead.org>
19362 R:      Andy Shevchenko <andy@infradead.org>
19363 L:      platform-driver-x86@vger.kernel.org
19364 L:      x86@kernel.org
19365 S:      Maintained
19366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
19367 F:      arch/x86/platform
19368
19369 X86 PLATFORM UV HPE SUPERDOME FLEX
19370 M:      Steve Wahl <steve.wahl@hpe.com>
19371 R:      Mike Travis <mike.travis@hpe.com>
19372 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19373 R:      Russ Anderson <russ.anderson@hpe.com>
19374 S:      Supported
19375 F:      arch/x86/include/asm/uv/
19376 F:      arch/x86/kernel/apic/x2apic_uv_x.c
19377 F:      arch/x86/platform/uv/
19378
19379 X86 VDSO
19380 M:      Andy Lutomirski <luto@kernel.org>
19381 L:      linux-kernel@vger.kernel.org
19382 S:      Maintained
19383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
19384 F:      arch/x86/entry/vdso/
19385
19386 XARRAY
19387 M:      Matthew Wilcox <willy@infradead.org>
19388 L:      linux-fsdevel@vger.kernel.org
19389 S:      Supported
19390 F:      Documentation/core-api/xarray.rst
19391 F:      include/linux/idr.h
19392 F:      include/linux/xarray.h
19393 F:      lib/idr.c
19394 F:      lib/xarray.c
19395 F:      tools/testing/radix-tree
19396
19397 XBOX DVD IR REMOTE
19398 M:      Benjamin Valentin <benpicco@googlemail.com>
19399 S:      Maintained
19400 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
19401 F:      drivers/media/rc/xbox_remote.c
19402
19403 XC2028/3028 TUNER DRIVER
19404 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19405 L:      linux-media@vger.kernel.org
19406 S:      Maintained
19407 W:      https://linuxtv.org
19408 T:      git git://linuxtv.org/media_tree.git
19409 F:      drivers/media/tuners/tuner-xc2028.*
19410
19411 XDP (eXpress Data Path)
19412 M:      Alexei Starovoitov <ast@kernel.org>
19413 M:      Daniel Borkmann <daniel@iogearbox.net>
19414 M:      David S. Miller <davem@davemloft.net>
19415 M:      Jakub Kicinski <kuba@kernel.org>
19416 M:      Jesper Dangaard Brouer <hawk@kernel.org>
19417 M:      John Fastabend <john.fastabend@gmail.com>
19418 L:      netdev@vger.kernel.org
19419 L:      bpf@vger.kernel.org
19420 S:      Supported
19421 F:      include/net/xdp.h
19422 F:      include/net/xdp_priv.h
19423 F:      include/trace/events/xdp.h
19424 F:      kernel/bpf/cpumap.c
19425 F:      kernel/bpf/devmap.c
19426 F:      net/core/xdp.c
19427 F:      samples/bpf/xdp*
19428 F:      tools/testing/selftests/bpf/*xdp*
19429 F:      tools/testing/selftests/bpf/*/*xdp*
19430 F:      drivers/net/ethernet/*/*/*/*/*xdp*
19431 F:      drivers/net/ethernet/*/*/*xdp*
19432 K:      (?:\b|_)xdp(?:\b|_)
19433
19434 XDP SOCKETS (AF_XDP)
19435 M:      Björn Töpel <bjorn@kernel.org>
19436 M:      Magnus Karlsson <magnus.karlsson@intel.com>
19437 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
19438 L:      netdev@vger.kernel.org
19439 L:      bpf@vger.kernel.org
19440 S:      Maintained
19441 F:      Documentation/networking/af_xdp.rst
19442 F:      include/net/xdp_sock*
19443 F:      include/net/xsk_buff_pool.h
19444 F:      include/uapi/linux/if_xdp.h
19445 F:      include/uapi/linux/xdp_diag.h
19446 F:      include/net/netns/xdp.h
19447 F:      net/xdp/
19448 F:      samples/bpf/xdpsock*
19449 F:      tools/lib/bpf/xsk*
19450
19451 XEN BLOCK SUBSYSTEM
19452 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19453 M:      Roger Pau Monné <roger.pau@citrix.com>
19454 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19455 S:      Supported
19456 F:      drivers/block/xen*
19457 F:      drivers/block/xen-blkback/*
19458
19459 XEN HYPERVISOR ARM
19460 M:      Stefano Stabellini <sstabellini@kernel.org>
19461 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19462 S:      Maintained
19463 F:      arch/arm/include/asm/xen/
19464 F:      arch/arm/xen/
19465
19466 XEN HYPERVISOR ARM64
19467 M:      Stefano Stabellini <sstabellini@kernel.org>
19468 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19469 S:      Maintained
19470 F:      arch/arm64/include/asm/xen/
19471 F:      arch/arm64/xen/
19472
19473 XEN HYPERVISOR INTERFACE
19474 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
19475 M:      Juergen Gross <jgross@suse.com>
19476 R:      Stefano Stabellini <sstabellini@kernel.org>
19477 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19478 S:      Supported
19479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
19480 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
19481 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
19482 F:      arch/x86/include/asm/pvclock-abi.h
19483 F:      arch/x86/include/asm/xen/
19484 F:      arch/x86/platform/pvh/
19485 F:      arch/x86/xen/
19486 F:      drivers/*/xen-*front.c
19487 F:      drivers/xen/
19488 F:      include/uapi/xen/
19489 F:      include/xen/
19490
19491 XEN NETWORK BACKEND DRIVER
19492 M:      Wei Liu <wei.liu@kernel.org>
19493 M:      Paul Durrant <paul@xen.org>
19494 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19495 L:      netdev@vger.kernel.org
19496 S:      Supported
19497 F:      drivers/net/xen-netback/*
19498
19499 XEN PCI SUBSYSTEM
19500 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19501 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19502 S:      Supported
19503 F:      arch/x86/pci/*xen*
19504 F:      drivers/pci/*xen*
19505
19506 XEN PVSCSI DRIVERS
19507 M:      Juergen Gross <jgross@suse.com>
19508 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19509 L:      linux-scsi@vger.kernel.org
19510 S:      Supported
19511 F:      drivers/scsi/xen-scsifront.c
19512 F:      drivers/xen/xen-scsiback.c
19513 F:      include/xen/interface/io/vscsiif.h
19514
19515 XEN SOUND FRONTEND DRIVER
19516 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
19517 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19519 S:      Supported
19520 F:      sound/xen/*
19521
19522 XEN SWIOTLB SUBSYSTEM
19523 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
19524 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
19525 L:      iommu@lists.linux-foundation.org
19526 S:      Supported
19527 F:      arch/x86/xen/*swiotlb*
19528 F:      drivers/xen/*swiotlb*
19529
19530 XFS FILESYSTEM
19531 M:      Darrick J. Wong <djwong@kernel.org>
19532 M:      linux-xfs@vger.kernel.org
19533 L:      linux-xfs@vger.kernel.org
19534 S:      Supported
19535 W:      http://xfs.org/
19536 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
19537 F:      Documentation/ABI/testing/sysfs-fs-xfs
19538 F:      Documentation/admin-guide/xfs.rst
19539 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
19540 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
19541 F:      fs/xfs/
19542 F:      include/uapi/linux/dqblk_xfs.h
19543 F:      include/uapi/linux/fsmap.h
19544
19545 XILINX AXI ETHERNET DRIVER
19546 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
19547 S:      Maintained
19548 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
19549
19550 XILINX CAN DRIVER
19551 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
19552 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
19553 L:      linux-can@vger.kernel.org
19554 S:      Maintained
19555 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
19556 F:      drivers/net/can/xilinx_can.c
19557
19558 XILINX GPIO DRIVER
19559 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
19560 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
19561 R:      Michal Simek <michal.simek@xilinx.com>
19562 S:      Maintained
19563 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
19564 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.txt
19565 F:      drivers/gpio/gpio-xilinx.c
19566 F:      drivers/gpio/gpio-zynq.c
19567
19568 XILINX SD-FEC IP CORES
19569 M:      Derek Kiernan <derek.kiernan@xilinx.com>
19570 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
19571 S:      Maintained
19572 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
19573 F:      Documentation/misc-devices/xilinx_sdfec.rst
19574 F:      drivers/misc/Kconfig
19575 F:      drivers/misc/Makefile
19576 F:      drivers/misc/xilinx_sdfec.c
19577 F:      include/uapi/misc/xilinx_sdfec.h
19578
19579 XILINX UARTLITE SERIAL DRIVER
19580 M:      Peter Korsgaard <jacmet@sunsite.dk>
19581 L:      linux-serial@vger.kernel.org
19582 S:      Maintained
19583 F:      drivers/tty/serial/uartlite.c
19584
19585 XILINX VIDEO IP CORES
19586 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19587 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19588 L:      linux-media@vger.kernel.org
19589 S:      Supported
19590 T:      git git://linuxtv.org/media_tree.git
19591 F:      Documentation/devicetree/bindings/media/xilinx/
19592 F:      drivers/media/platform/xilinx/
19593 F:      include/uapi/linux/xilinx-v4l2-controls.h
19594
19595 XILINX ZYNQMP DPDMA DRIVER
19596 M:      Hyun Kwon <hyun.kwon@xilinx.com>
19597 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19598 L:      dmaengine@vger.kernel.org
19599 S:      Supported
19600 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
19601 F:      drivers/dma/xilinx/xilinx_dpdma.c
19602 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
19603
19604 XILINX ZYNQMP PSGTR PHY DRIVER
19605 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
19606 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19607 L:      linux-kernel@vger.kernel.org
19608 S:      Supported
19609 T:      git https://github.com/Xilinx/linux-xlnx.git
19610 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
19611 F:      drivers/phy/xilinx/phy-zynqmp.c
19612
19613 XILLYBUS DRIVER
19614 M:      Eli Billauer <eli.billauer@gmail.com>
19615 L:      linux-kernel@vger.kernel.org
19616 S:      Supported
19617 F:      drivers/char/xillybus/
19618
19619 XLP9XX I2C DRIVER
19620 M:      George Cherian <gcherian@marvell.com>
19621 L:      linux-i2c@vger.kernel.org
19622 S:      Supported
19623 W:      http://www.marvell.com
19624 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
19625 F:      drivers/i2c/busses/i2c-xlp9xx.c
19626
19627 XRA1403 GPIO EXPANDER
19628 M:      Nandor Han <nandor.han@ge.com>
19629 M:      Semi Malinen <semi.malinen@ge.com>
19630 L:      linux-gpio@vger.kernel.org
19631 S:      Maintained
19632 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
19633 F:      drivers/gpio/gpio-xra1403.c
19634
19635 XTENSA XTFPGA PLATFORM SUPPORT
19636 M:      Max Filippov <jcmvbkbc@gmail.com>
19637 L:      linux-xtensa@linux-xtensa.org
19638 S:      Maintained
19639 F:      drivers/spi/spi-xtensa-xtfpga.c
19640 F:      sound/soc/xtensa/xtfpga-i2s.c
19641
19642 YAM DRIVER FOR AX.25
19643 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
19644 L:      linux-hams@vger.kernel.org
19645 S:      Maintained
19646 F:      drivers/net/hamradio/yam*
19647 F:      include/linux/yam.h
19648
19649 YAMA SECURITY MODULE
19650 M:      Kees Cook <keescook@chromium.org>
19651 S:      Supported
19652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
19653 F:      Documentation/admin-guide/LSM/Yama.rst
19654 F:      security/yama/
19655
19656 YEALINK PHONE DRIVER
19657 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
19658 L:      usbb2k-api-dev@nongnu.org
19659 S:      Maintained
19660 F:      Documentation/input/devices/yealink.rst
19661 F:      drivers/input/misc/yealink.*
19662
19663 Z8530 DRIVER FOR AX.25
19664 M:      Joerg Reuter <jreuter@yaina.de>
19665 L:      linux-hams@vger.kernel.org
19666 S:      Maintained
19667 W:      http://yaina.de/jreuter/
19668 W:      http://www.qsl.net/dl1bke/
19669 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
19670 F:      drivers/net/hamradio/*scc.c
19671 F:      drivers/net/hamradio/z8530.h
19672
19673 ZBUD COMPRESSED PAGE ALLOCATOR
19674 M:      Seth Jennings <sjenning@redhat.com>
19675 M:      Dan Streetman <ddstreet@ieee.org>
19676 L:      linux-mm@kvack.org
19677 S:      Maintained
19678 F:      include/linux/zbud.h
19679 F:      mm/zbud.c
19680
19681 ZD1211RW WIRELESS DRIVER
19682 M:      Daniel Drake <dsd@gentoo.org>
19683 M:      Ulrich Kunitz <kune@deine-taler.de>
19684 L:      linux-wireless@vger.kernel.org
19685 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
19686 S:      Maintained
19687 W:      http://zd1211.ath.cx/wiki/DriverRewrite
19688 F:      drivers/net/wireless/zydas/zd1211rw/
19689
19690 ZD1301 MEDIA DRIVER
19691 M:      Antti Palosaari <crope@iki.fi>
19692 L:      linux-media@vger.kernel.org
19693 S:      Maintained
19694 W:      https://linuxtv.org/
19695 W:      http://palosaari.fi/linux/
19696 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19697 F:      drivers/media/usb/dvb-usb-v2/zd1301*
19698
19699 ZD1301_DEMOD MEDIA DRIVER
19700 M:      Antti Palosaari <crope@iki.fi>
19701 L:      linux-media@vger.kernel.org
19702 S:      Maintained
19703 W:      https://linuxtv.org/
19704 W:      http://palosaari.fi/linux/
19705 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19706 F:      drivers/media/dvb-frontends/zd1301_demod*
19707
19708 ZHAOXIN PROCESSOR SUPPORT
19709 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
19710 L:      linux-kernel@vger.kernel.org
19711 S:      Maintained
19712 F:      arch/x86/kernel/cpu/zhaoxin.c
19713
19714 ZONEFS FILESYSTEM
19715 M:      Damien Le Moal <damien.lemoal@wdc.com>
19716 M:      Naohiro Aota <naohiro.aota@wdc.com>
19717 R:      Johannes Thumshirn <jth@kernel.org>
19718 L:      linux-fsdevel@vger.kernel.org
19719 S:      Maintained
19720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
19721 F:      Documentation/filesystems/zonefs.rst
19722 F:      fs/zonefs/
19723
19724 ZPOOL COMPRESSED PAGE STORAGE API
19725 M:      Dan Streetman <ddstreet@ieee.org>
19726 L:      linux-mm@kvack.org
19727 S:      Maintained
19728 F:      include/linux/zpool.h
19729 F:      mm/zpool.c
19730
19731 ZR36067 VIDEO FOR LINUX DRIVER
19732 M:      Corentin Labbe <clabbe@baylibre.com>
19733 L:      mjpeg-users@lists.sourceforge.net
19734 L:      linux-media@vger.kernel.org
19735 S:      Maintained
19736 W:      http://mjpeg.sourceforge.net/driver-zoran/
19737 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
19738 F:      Documentation/driver-api/media/drivers/zoran.rst
19739 F:      drivers/staging/media/zoran/
19740
19741 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
19742 M:      Minchan Kim <minchan@kernel.org>
19743 M:      Nitin Gupta <ngupta@vflare.org>
19744 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19745 L:      linux-kernel@vger.kernel.org
19746 S:      Maintained
19747 F:      Documentation/admin-guide/blockdev/zram.rst
19748 F:      drivers/block/zram/
19749
19750 ZS DECSTATION Z85C30 SERIAL DRIVER
19751 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
19752 S:      Maintained
19753 F:      drivers/tty/serial/zs.*
19754
19755 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
19756 M:      Minchan Kim <minchan@kernel.org>
19757 M:      Nitin Gupta <ngupta@vflare.org>
19758 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
19759 L:      linux-mm@kvack.org
19760 S:      Maintained
19761 F:      Documentation/vm/zsmalloc.rst
19762 F:      include/linux/zsmalloc.h
19763 F:      mm/zsmalloc.c
19764
19765 ZSWAP COMPRESSED SWAP CACHING
19766 M:      Seth Jennings <sjenning@redhat.com>
19767 M:      Dan Streetman <ddstreet@ieee.org>
19768 M:      Vitaly Wool <vitaly.wool@konsulko.com>
19769 L:      linux-mm@kvack.org
19770 S:      Maintained
19771 F:      mm/zswap.c
19772
19773 THE REST
19774 M:      Linus Torvalds <torvalds@linux-foundation.org>
19775 L:      linux-kernel@vger.kernel.org
19776 S:      Buried alive in reporters
19777 Q:      http://patchwork.kernel.org/project/LKML/list/
19778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
19779 F:      *
19780 F:      */