Merge tag 'gpio-v5.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux...
[linux-2.6-microblaze.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/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:      Realtek linux nic maintainers <nic_swsd@realtek.com>
207 M:      Heiner Kallweit <hkallweit1@gmail.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 L:      linux-iio@vger.kernel.org
298 S:      Maintained
299 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
300 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
301 F:      drivers/counter/104-quad-8.c
302
303 ACCES PCI-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-pci-idio-16.c
308
309 ACCES PCIe-IDIO-24 GPIO DRIVER
310 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
311 L:      linux-gpio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/gpio/gpio-pcie-idio-24.c
314
315 ACENIC DRIVER
316 M:      Jes Sorensen <jes@trained-monkey.org>
317 L:      linux-acenic@sunsite.dk
318 S:      Maintained
319 F:      drivers/net/ethernet/alteon/acenic*
320
321 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
322 M:      Peter Kaestle <peter@piie.net>
323 L:      platform-driver-x86@vger.kernel.org
324 S:      Maintained
325 W:      http://piie.net/?section=acerhdf
326 F:      drivers/platform/x86/acerhdf.c
327
328 ACER WMI LAPTOP EXTRAS
329 M:      "Lee, Chun-Yi" <jlee@suse.com>
330 L:      platform-driver-x86@vger.kernel.org
331 S:      Maintained
332 F:      drivers/platform/x86/acer-wmi.c
333
334 ACPI
335 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
336 M:      Len Brown <lenb@kernel.org>
337 L:      linux-acpi@vger.kernel.org
338 S:      Supported
339 W:      https://01.org/linux-acpi
340 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
341 B:      https://bugzilla.kernel.org
342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
343 F:      Documentation/ABI/testing/configfs-acpi
344 F:      Documentation/ABI/testing/sysfs-bus-acpi
345 F:      Documentation/firmware-guide/acpi/
346 F:      drivers/acpi/
347 F:      drivers/pci/*/*acpi*
348 F:      drivers/pci/*acpi*
349 F:      drivers/pnp/pnpacpi/
350 F:      include/acpi/
351 F:      include/linux/acpi.h
352 F:      include/linux/fwnode.h
353 F:      tools/power/acpi/
354
355 ACPI APEI
356 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
357 M:      Len Brown <lenb@kernel.org>
358 R:      James Morse <james.morse@arm.com>
359 R:      Tony Luck <tony.luck@intel.com>
360 R:      Borislav Petkov <bp@alien8.de>
361 L:      linux-acpi@vger.kernel.org
362 F:      drivers/acpi/apei/
363
364 ACPI COMPONENT ARCHITECTURE (ACPICA)
365 M:      Robert Moore <robert.moore@intel.com>
366 M:      Erik Kaneda <erik.kaneda@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <rui.zhang@intel.com>
383 L:      linux-acpi@vger.kernel.org
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Zhang Rui <rui.zhang@intel.com>
418 L:      linux-acpi@vger.kernel.org
419 S:      Supported
420 W:      https://01.org/linux-acpi
421 B:      https://bugzilla.kernel.org
422 F:      drivers/acpi/*thermal*
423
424 ACPI VIDEO DRIVER
425 M:      Zhang Rui <rui.zhang@intel.com>
426 L:      linux-acpi@vger.kernel.org
427 S:      Supported
428 W:      https://01.org/linux-acpi
429 B:      https://bugzilla.kernel.org
430 F:      drivers/acpi/acpi_video.c
431
432 ACPI WMI DRIVER
433 L:      platform-driver-x86@vger.kernel.org
434 S:      Orphan
435 F:      drivers/platform/x86/wmi.c
436 F:      include/uapi/linux/wmi.h
437
438 AD1889 ALSA SOUND DRIVER
439 L:      linux-parisc@vger.kernel.org
440 S:      Maintained
441 W:      https://parisc.wiki.kernel.org/index.php/AD1889
442 F:      sound/pci/ad1889.*
443
444 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
445 M:      Michael Hennerich <michael.hennerich@analog.com>
446 S:      Supported
447 W:      http://wiki.analog.com/AD5254
448 W:      http://ez.analog.com/community/linux-device-drivers
449 F:      drivers/misc/ad525x_dpot.c
450
451 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
452 M:      Michael Hennerich <michael.hennerich@analog.com>
453 S:      Supported
454 W:      http://wiki.analog.com/AD5398
455 W:      http://ez.analog.com/community/linux-device-drivers
456 F:      drivers/regulator/ad5398.c
457
458 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD7142
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/input/misc/ad714x.c
464
465 AD7877 TOUCHSCREEN DRIVER
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD7877
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/input/touchscreen/ad7877.c
471
472 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7879
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/touchscreen/ad7879.c
478
479 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
480 M:      Jiri Kosina <jikos@kernel.org>
481 S:      Maintained
482
483 ADF7242 IEEE 802.15.4 RADIO DRIVER
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 L:      linux-wpan@vger.kernel.org
486 S:      Supported
487 W:      https://wiki.analog.com/ADF7242
488 W:      http://ez.analog.com/community/linux-device-drivers
489 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
490 F:      drivers/net/ieee802154/adf7242.c
491
492 ADM1025 HARDWARE MONITOR DRIVER
493 M:      Jean Delvare <jdelvare@suse.com>
494 L:      linux-hwmon@vger.kernel.org
495 S:      Maintained
496 F:      Documentation/hwmon/adm1025.rst
497 F:      drivers/hwmon/adm1025.c
498
499 ADM1029 HARDWARE MONITOR DRIVER
500 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
501 L:      linux-hwmon@vger.kernel.org
502 S:      Maintained
503 F:      drivers/hwmon/adm1029.c
504
505 ADM8211 WIRELESS DRIVER
506 L:      linux-wireless@vger.kernel.org
507 S:      Orphan
508 W:      https://wireless.wiki.kernel.org/
509 F:      drivers/net/wireless/admtek/adm8211.*
510
511 ADP1653 FLASH CONTROLLER DRIVER
512 M:      Sakari Ailus <sakari.ailus@iki.fi>
513 L:      linux-media@vger.kernel.org
514 S:      Maintained
515 F:      drivers/media/i2c/adp1653.c
516 F:      include/media/i2c/adp1653.h
517
518 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
519 M:      Michael Hennerich <michael.hennerich@analog.com>
520 S:      Supported
521 W:      http://wiki.analog.com/ADP5520
522 W:      http://ez.analog.com/community/linux-device-drivers
523 F:      drivers/gpio/gpio-adp5520.c
524 F:      drivers/input/keyboard/adp5520-keys.c
525 F:      drivers/leds/leds-adp5520.c
526 F:      drivers/mfd/adp5520.c
527 F:      drivers/video/backlight/adp5520_bl.c
528
529 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
530 M:      Michael Hennerich <michael.hennerich@analog.com>
531 S:      Supported
532 W:      http://wiki.analog.com/ADP5588
533 W:      http://ez.analog.com/community/linux-device-drivers
534 F:      drivers/gpio/gpio-adp5588.c
535 F:      drivers/input/keyboard/adp5588-keys.c
536
537 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
538 M:      Michael Hennerich <michael.hennerich@analog.com>
539 S:      Supported
540 W:      http://wiki.analog.com/ADP8860
541 W:      http://ez.analog.com/community/linux-device-drivers
542 F:      drivers/video/backlight/adp8860_bl.c
543
544 ADT746X FAN DRIVER
545 M:      Colin Leroy <colin@colino.net>
546 S:      Maintained
547 F:      drivers/macintosh/therm_adt746x.c
548
549 ADT7475 HARDWARE MONITOR DRIVER
550 M:      Jean Delvare <jdelvare@suse.com>
551 L:      linux-hwmon@vger.kernel.org
552 S:      Maintained
553 F:      Documentation/hwmon/adt7475.rst
554 F:      drivers/hwmon/adt7475.c
555
556 ADVANSYS SCSI DRIVER
557 M:      Matthew Wilcox <willy@infradead.org>
558 M:      Hannes Reinecke <hare@suse.com>
559 L:      linux-scsi@vger.kernel.org
560 S:      Maintained
561 F:      Documentation/scsi/advansys.rst
562 F:      drivers/scsi/advansys.c
563
564 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
565 M:      Michael Hennerich <michael.hennerich@analog.com>
566 S:      Supported
567 W:      http://wiki.analog.com/ADXL345
568 W:      http://ez.analog.com/community/linux-device-drivers
569 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
570 F:      drivers/input/misc/adxl34x.c
571
572 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
573 M:      Michael Hennerich <michael.hennerich@analog.com>
574 S:      Supported
575 W:      http://ez.analog.com/community/linux-device-drivers
576 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
577 F:      drivers/iio/accel/adxl372.c
578 F:      drivers/iio/accel/adxl372_i2c.c
579 F:      drivers/iio/accel/adxl372_spi.c
580
581 AF9013 MEDIA DRIVER
582 M:      Antti Palosaari <crope@iki.fi>
583 L:      linux-media@vger.kernel.org
584 S:      Maintained
585 W:      https://linuxtv.org
586 W:      http://palosaari.fi/linux/
587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
588 T:      git git://linuxtv.org/anttip/media_tree.git
589 F:      drivers/media/dvb-frontends/af9013*
590
591 AF9033 MEDIA DRIVER
592 M:      Antti Palosaari <crope@iki.fi>
593 L:      linux-media@vger.kernel.org
594 S:      Maintained
595 W:      https://linuxtv.org
596 W:      http://palosaari.fi/linux/
597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
598 T:      git git://linuxtv.org/anttip/media_tree.git
599 F:      drivers/media/dvb-frontends/af9033*
600
601 AFFS FILE SYSTEM
602 M:      David Sterba <dsterba@suse.com>
603 L:      linux-fsdevel@vger.kernel.org
604 S:      Odd Fixes
605 F:      Documentation/filesystems/affs.rst
606 F:      fs/affs/
607
608 AFS FILESYSTEM
609 M:      David Howells <dhowells@redhat.com>
610 L:      linux-afs@lists.infradead.org
611 S:      Supported
612 W:      https://www.infradead.org/~dhowells/kafs/
613 F:      Documentation/filesystems/afs.rst
614 F:      fs/afs/
615 F:      include/trace/events/afs.h
616
617 AGPGART DRIVER
618 M:      David Airlie <airlied@linux.ie>
619 S:      Maintained
620 T:      git git://anongit.freedesktop.org/drm/drm
621 F:      drivers/char/agp/
622 F:      include/linux/agp*
623 F:      include/uapi/linux/agp*
624
625 AHA152X SCSI DRIVER
626 M:      "Juergen E. Fischer" <fischer@norbit.de>
627 L:      linux-scsi@vger.kernel.org
628 S:      Maintained
629 F:      drivers/scsi/aha152x*
630 F:      drivers/scsi/pcmcia/aha152x*
631
632 AIC7XXX / AIC79XX SCSI DRIVER
633 M:      Hannes Reinecke <hare@suse.com>
634 L:      linux-scsi@vger.kernel.org
635 S:      Maintained
636 F:      drivers/scsi/aic7xxx/
637
638 AIMSLAB FM RADIO RECEIVER DRIVER
639 M:      Hans Verkuil <hverkuil@xs4all.nl>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 T:      git git://linuxtv.org/media_tree.git
644 F:      drivers/media/radio/radio-aimslab*
645
646 AIO
647 M:      Benjamin LaHaise <bcrl@kvack.org>
648 L:      linux-aio@kvack.org
649 S:      Supported
650 F:      fs/aio.c
651 F:      include/linux/*aio*.h
652
653 AIRSPY MEDIA DRIVER
654 M:      Antti Palosaari <crope@iki.fi>
655 L:      linux-media@vger.kernel.org
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/usb/airspy/
662
663 ALACRITECH GIGABIT ETHERNET DRIVER
664 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
665 S:      Maintained
666 F:      drivers/net/ethernet/alacritech/*
667
668 ALCATEL SPEEDTOUCH USB DRIVER
669 M:      Duncan Sands <duncan.sands@free.fr>
670 L:      linux-usb@vger.kernel.org
671 S:      Maintained
672 W:      http://www.linux-usb.org/SpeedTouch/
673 F:      drivers/usb/atm/speedtch.c
674 F:      drivers/usb/atm/usbatm.c
675
676 ALCHEMY AU1XX0 MMC DRIVER
677 M:      Manuel Lauss <manuel.lauss@gmail.com>
678 S:      Maintained
679 F:      drivers/mmc/host/au1xmmc.c
680
681 ALI1563 I2C DRIVER
682 M:      Rudolf Marek <r.marek@assembler.cz>
683 L:      linux-i2c@vger.kernel.org
684 S:      Maintained
685 F:      Documentation/i2c/busses/i2c-ali1563.rst
686 F:      drivers/i2c/busses/i2c-ali1563.c
687
688 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
689 M:      Tomislav Denis <tomislav.denis@avl.com>
690 L:      linux-iio@vger.kernel.org
691 S:      Maintained
692 W:      http://www.allsensors.com/
693 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
694 F:      drivers/iio/pressure/dlhl60d.c
695
696 ALLEGRO DVT VIDEO IP CORE DRIVER
697 M:      Michael Tretter <m.tretter@pengutronix.de>
698 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
699 L:      linux-media@vger.kernel.org
700 S:      Maintained
701 F:      drivers/staging/media/allegro-dvt/
702
703 ALLWINNER A10 CSI DRIVER
704 M:      Maxime Ripard <mripard@kernel.org>
705 L:      linux-media@vger.kernel.org
706 S:      Maintained
707 T:      git git://linuxtv.org/media_tree.git
708 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
709 F:      drivers/media/platform/sunxi/sun4i-csi/
710
711 ALLWINNER CPUFREQ DRIVER
712 M:      Yangtao Li <tiny.windzz@gmail.com>
713 L:      linux-pm@vger.kernel.org
714 S:      Maintained
715 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
716 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
717
718 ALLWINNER CRYPTO DRIVERS
719 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
720 L:      linux-crypto@vger.kernel.org
721 S:      Maintained
722 F:      drivers/crypto/allwinner/
723
724 ALLWINNER THERMAL DRIVER
725 M:      Vasily Khoruzhick <anarsoul@gmail.com>
726 M:      Yangtao Li <tiny.windzz@gmail.com>
727 L:      linux-pm@vger.kernel.org
728 S:      Maintained
729 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
730 F:      drivers/thermal/sun8i_thermal.c
731
732 ALLWINNER VPU DRIVER
733 M:      Maxime Ripard <mripard@kernel.org>
734 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
735 L:      linux-media@vger.kernel.org
736 S:      Maintained
737 F:      drivers/staging/media/sunxi/cedrus/
738
739 ALPHA PORT
740 M:      Richard Henderson <rth@twiddle.net>
741 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
742 M:      Matt Turner <mattst88@gmail.com>
743 L:      linux-alpha@vger.kernel.org
744 S:      Odd Fixes
745 F:      arch/alpha/
746
747 ALPS PS/2 TOUCHPAD DRIVER
748 R:      Pali Rohár <pali@kernel.org>
749 F:      drivers/input/mouse/alps.*
750
751 ALTERA I2C CONTROLLER DRIVER
752 M:      Thor Thayer <thor.thayer@linux.intel.com>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
755 F:      drivers/i2c/busses/i2c-altera.c
756
757 ALTERA MAILBOX DRIVER
758 M:      Ley Foon Tan <ley.foon.tan@intel.com>
759 S:      Maintained
760 F:      drivers/mailbox/mailbox-altera.c
761
762 ALTERA PIO DRIVER
763 M:      Joyce Ooi <joyce.ooi@intel.com>
764 L:      linux-gpio@vger.kernel.org
765 S:      Maintained
766 F:      drivers/gpio/gpio-altera.c
767
768 ALTERA SYSTEM MANAGER DRIVER
769 M:      Thor Thayer <thor.thayer@linux.intel.com>
770 S:      Maintained
771 F:      drivers/mfd/altera-sysmgr.c
772 F:      include/linux/mfd/altera-sysmgr.h
773
774 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
775 M:      Thor Thayer <thor.thayer@linux.intel.com>
776 S:      Maintained
777 F:      drivers/gpio/gpio-altera-a10sr.c
778 F:      drivers/mfd/altera-a10sr.c
779 F:      drivers/reset/reset-a10sr.c
780 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
781 F:      include/linux/mfd/altera-a10sr.h
782
783 ALTERA TRIPLE SPEED ETHERNET DRIVER
784 M:      Thor Thayer <thor.thayer@linux.intel.com>
785 L:      netdev@vger.kernel.org
786 S:      Maintained
787 F:      drivers/net/ethernet/altera/
788
789 ALTERA UART/JTAG UART SERIAL DRIVERS
790 M:      Tobias Klauser <tklauser@distanz.ch>
791 L:      linux-serial@vger.kernel.org
792 S:      Maintained
793 F:      drivers/tty/serial/altera_jtaguart.c
794 F:      drivers/tty/serial/altera_uart.c
795 F:      include/linux/altera_jtaguart.h
796 F:      include/linux/altera_uart.h
797
798 AMAZON ANNAPURNA LABS FIC DRIVER
799 M:      Talel Shenhar <talel@amazon.com>
800 S:      Maintained
801 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
802 F:      drivers/irqchip/irq-al-fic.c
803
804 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
805 M:      Talel Shenhar <talel@amazon.com>
806 S:      Maintained
807 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
808 F:      drivers/thermal/thermal_mmio.c
809
810 AMAZON ETHERNET DRIVERS
811 M:      Netanel Belgazal <netanel@amazon.com>
812 M:      Arthur Kiyanovski <akiyano@amazon.com>
813 R:      Guy Tzalik <gtzalik@amazon.com>
814 R:      Saeed Bishara <saeedb@amazon.com>
815 R:      Zorik Machulsky <zorik@amazon.com>
816 L:      netdev@vger.kernel.org
817 S:      Supported
818 F:      Documentation/networking/device_drivers/amazon/ena.rst
819 F:      drivers/net/ethernet/amazon/
820
821 AMAZON RDMA EFA DRIVER
822 M:      Gal Pressman <galpress@amazon.com>
823 R:      Yossi Leybovich <sleybo@amazon.com>
824 L:      linux-rdma@vger.kernel.org
825 S:      Supported
826 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
827 F:      drivers/infiniband/hw/efa/
828 F:      include/uapi/rdma/efa-abi.h
829
830 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
831 M:      Tom Lendacky <thomas.lendacky@amd.com>
832 L:      linux-crypto@vger.kernel.org
833 S:      Supported
834 F:      drivers/crypto/ccp/
835 F:      include/linux/ccp.h
836
837 AMD DISPLAY CORE
838 M:      Harry Wentland <harry.wentland@amd.com>
839 M:      Leo Li <sunpeng.li@amd.com>
840 L:      amd-gfx@lists.freedesktop.org
841 S:      Supported
842 T:      git git://people.freedesktop.org/~agd5f/linux
843 F:      drivers/gpu/drm/amd/display/
844
845 AMD ENERGY DRIVER
846 M:      Naveen Krishna Chatradhi <nchatrad@amd.com>
847 L:      linux-hwmon@vger.kernel.org
848 S:      Maintained
849 F:      Documentation/hwmon/amd_energy.rst
850 F:      drivers/hwmon/amd_energy.c
851
852 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
853 M:      Huang Rui <ray.huang@amd.com>
854 L:      linux-hwmon@vger.kernel.org
855 S:      Supported
856 F:      Documentation/hwmon/fam15h_power.rst
857 F:      drivers/hwmon/fam15h_power.c
858
859 AMD FCH GPIO DRIVER
860 M:      Enrico Weigelt, metux IT consult <info@metux.net>
861 L:      linux-gpio@vger.kernel.org
862 S:      Maintained
863 F:      drivers/gpio/gpio-amd-fch.c
864 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
865
866 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
867 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
868 S:      Orphan
869 F:      drivers/usb/gadget/udc/amd5536udc.*
870
871 AMD GEODE PROCESSOR/CHIPSET SUPPORT
872 M:      Andres Salomon <dilinger@queued.net>
873 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
874 S:      Supported
875 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
876 F:      arch/x86/include/asm/geode.h
877 F:      drivers/char/hw_random/geode-rng.c
878 F:      drivers/crypto/geode*
879 F:      drivers/video/fbdev/geode/
880
881 AMD IOMMU (AMD-VI)
882 M:      Joerg Roedel <joro@8bytes.org>
883 L:      iommu@lists.linux-foundation.org
884 S:      Maintained
885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
886 F:      drivers/iommu/amd_iommu*.[ch]
887 F:      include/linux/amd-iommu.h
888
889 AMD KFD
890 M:      Felix Kuehling <Felix.Kuehling@amd.com>
891 L:      amd-gfx@lists.freedesktop.org
892 S:      Supported
893 T:      git git://people.freedesktop.org/~agd5f/linux
894 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
895 F:      drivers/gpu/drm/amd/amdkfd/
896 F:      drivers/gpu/drm/amd/include/cik_structs.h
897 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
898 F:      drivers/gpu/drm/amd/include/v9_structs.h
899 F:      drivers/gpu/drm/amd/include/vi_structs.h
900 F:      include/uapi/linux/kfd_ioctl.h
901
902 AMD SPI DRIVER
903 M:      Sanjay R Mehta <sanju.mehta@amd.com>
904 S:      Maintained
905 F:      drivers/spi/spi-amd.c
906
907 AMD MP2 I2C DRIVER
908 M:      Elie Morisse <syniurge@gmail.com>
909 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
910 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
911 L:      linux-i2c@vger.kernel.org
912 S:      Maintained
913 F:      drivers/i2c/busses/i2c-amd-mp2*
914
915 AMD POWERPLAY
916 M:      Evan Quan <evan.quan@amd.com>
917 L:      amd-gfx@lists.freedesktop.org
918 S:      Supported
919 T:      git git://people.freedesktop.org/~agd5f/linux
920 F:      drivers/gpu/drm/amd/powerplay/
921
922 AMD SEATTLE DEVICE TREE SUPPORT
923 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
924 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
925 M:      Tom Lendacky <thomas.lendacky@amd.com>
926 S:      Supported
927 F:      arch/arm64/boot/dts/amd/
928
929 AMD XGBE DRIVER
930 M:      Tom Lendacky <thomas.lendacky@amd.com>
931 L:      netdev@vger.kernel.org
932 S:      Supported
933 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
934 F:      drivers/net/ethernet/amd/xgbe/
935
936 ANALOG DEVICES INC AD5686 DRIVER
937 M:      Michael Hennerich <Michael.Hennerich@analog.com>
938 L:      linux-pm@vger.kernel.org
939 S:      Supported
940 W:      http://ez.analog.com/community/linux-device-drivers
941 F:      drivers/iio/dac/ad5686*
942 F:      drivers/iio/dac/ad5696*
943
944 ANALOG DEVICES INC AD5758 DRIVER
945 M:      Michael Hennerich <Michael.Hennerich@analog.com>
946 L:      linux-iio@vger.kernel.org
947 S:      Supported
948 W:      http://ez.analog.com/community/linux-device-drivers
949 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
950 F:      drivers/iio/dac/ad5758.c
951
952 ANALOG DEVICES INC AD7091R5 DRIVER
953 M:      Beniamin Bia <beniamin.bia@analog.com>
954 L:      linux-iio@vger.kernel.org
955 S:      Supported
956 W:      http://ez.analog.com/community/linux-device-drivers
957 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
958 F:      drivers/iio/adc/ad7091r5.c
959
960 ANALOG DEVICES INC AD7124 DRIVER
961 M:      Michael Hennerich <Michael.Hennerich@analog.com>
962 L:      linux-iio@vger.kernel.org
963 S:      Supported
964 W:      http://ez.analog.com/community/linux-device-drivers
965 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
966 F:      drivers/iio/adc/ad7124.c
967
968 ANALOG DEVICES INC AD7192 DRIVER
969 M:      Alexandru Tachici <alexandru.tachici@analog.com>
970 L:      linux-iio@vger.kernel.org
971 S:      Supported
972 W:      http://ez.analog.com/community/linux-device-drivers
973 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
974 F:      drivers/iio/adc/ad7192.c
975
976 ANALOG DEVICES INC AD7292 DRIVER
977 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
978 L:      linux-iio@vger.kernel.org
979 S:      Supported
980 W:      http://ez.analog.com/community/linux-device-drivers
981 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
982 F:      drivers/iio/adc/ad7292.c
983
984 ANALOG DEVICES INC AD7606 DRIVER
985 M:      Michael Hennerich <Michael.Hennerich@analog.com>
986 M:      Beniamin Bia <beniamin.bia@analog.com>
987 L:      linux-iio@vger.kernel.org
988 S:      Supported
989 W:      http://ez.analog.com/community/linux-device-drivers
990 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
991 F:      drivers/iio/adc/ad7606.c
992
993 ANALOG DEVICES INC AD7768-1 DRIVER
994 M:      Michael Hennerich <Michael.Hennerich@analog.com>
995 L:      linux-iio@vger.kernel.org
996 S:      Supported
997 W:      http://ez.analog.com/community/linux-device-drivers
998 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
999 F:      drivers/iio/adc/ad7768-1.c
1000
1001 ANALOG DEVICES INC AD7780 DRIVER
1002 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1003 M:      Renato Lui Geh <renatogeh@gmail.com>
1004 L:      linux-iio@vger.kernel.org
1005 S:      Supported
1006 W:      http://ez.analog.com/community/linux-device-drivers
1007 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1008 F:      drivers/iio/adc/ad7780.c
1009
1010 ANALOG DEVICES INC AD9389B DRIVER
1011 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1012 L:      linux-media@vger.kernel.org
1013 S:      Maintained
1014 F:      drivers/media/i2c/ad9389b*
1015
1016 ANALOG DEVICES INC ADGS1408 DRIVER
1017 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1018 S:      Supported
1019 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1020 F:      drivers/mux/adgs1408.c
1021
1022 ANALOG DEVICES INC ADIN DRIVER
1023 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
1024 L:      netdev@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1028 F:      drivers/net/phy/adin.c
1029
1030 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1031 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 F:      drivers/iio/imu/adis.c
1035 F:      include/linux/iio/imu/adis.h
1036
1037 ANALOG DEVICES INC ADIS16460 DRIVER
1038 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1039 L:      linux-iio@vger.kernel.org
1040 S:      Supported
1041 W:      http://ez.analog.com/community/linux-device-drivers
1042 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1043 F:      drivers/iio/imu/adis16460.c
1044
1045 ANALOG DEVICES INC ADM1177 DRIVER
1046 M:      Beniamin Bia <beniamin.bia@analog.com>
1047 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1048 L:      linux-hwmon@vger.kernel.org
1049 S:      Supported
1050 W:      http://ez.analog.com/community/linux-device-drivers
1051 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1052 F:      drivers/hwmon/adm1177.c
1053
1054 ANALOG DEVICES INC ADP5061 DRIVER
1055 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1056 L:      linux-pm@vger.kernel.org
1057 S:      Supported
1058 W:      http://ez.analog.com/community/linux-device-drivers
1059 F:      drivers/power/supply/adp5061.c
1060
1061 ANALOG DEVICES INC ADV7180 DRIVER
1062 M:      Lars-Peter Clausen <lars@metafoo.de>
1063 L:      linux-media@vger.kernel.org
1064 S:      Supported
1065 W:      http://ez.analog.com/community/linux-device-drivers
1066 F:      drivers/media/i2c/adv7180.c
1067
1068 ANALOG DEVICES INC ADV748X DRIVER
1069 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1070 L:      linux-media@vger.kernel.org
1071 S:      Maintained
1072 F:      drivers/media/i2c/adv748x/*
1073
1074 ANALOG DEVICES INC ADV7511 DRIVER
1075 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1076 L:      linux-media@vger.kernel.org
1077 S:      Maintained
1078 F:      drivers/media/i2c/adv7511*
1079
1080 ANALOG DEVICES INC ADV7604 DRIVER
1081 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1082 L:      linux-media@vger.kernel.org
1083 S:      Maintained
1084 F:      drivers/media/i2c/adv7604*
1085
1086 ANALOG DEVICES INC ADV7842 DRIVER
1087 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1088 L:      linux-media@vger.kernel.org
1089 S:      Maintained
1090 F:      drivers/media/i2c/adv7842*
1091
1092 ANALOG DEVICES INC ASOC CODEC DRIVERS
1093 M:      Lars-Peter Clausen <lars@metafoo.de>
1094 M:      Nuno Sá <nuno.sa@analog.com>
1095 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1096 S:      Supported
1097 W:      http://wiki.analog.com/
1098 W:      http://ez.analog.com/community/linux-device-drivers
1099 F:      sound/soc/codecs/ad1*
1100 F:      sound/soc/codecs/ad7*
1101 F:      sound/soc/codecs/adau*
1102 F:      sound/soc/codecs/adav*
1103 F:      sound/soc/codecs/sigmadsp.*
1104 F:      sound/soc/codecs/ssm*
1105
1106 ANALOG DEVICES INC DMA DRIVERS
1107 M:      Lars-Peter Clausen <lars@metafoo.de>
1108 S:      Supported
1109 W:      http://ez.analog.com/community/linux-device-drivers
1110 F:      drivers/dma/dma-axi-dmac.c
1111
1112 ANALOG DEVICES INC HMC425A DRIVER
1113 M:      Beniamin Bia <beniamin.bia@analog.com>
1114 M:      Michael Hennerich <michael.hennerich@analog.com>
1115 L:      linux-iio@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1119 F:      drivers/iio/amplifiers/hmc425a.c
1120
1121 ANALOG DEVICES INC IIO DRIVERS
1122 M:      Lars-Peter Clausen <lars@metafoo.de>
1123 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1124 S:      Supported
1125 W:      http://wiki.analog.com/
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1128 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1129 F:      drivers/iio/*/ad*
1130 F:      drivers/iio/adc/ltc249*
1131 F:      drivers/staging/iio/*/ad*
1132 X:      drivers/iio/*/adjd*
1133
1134 ANALOGBITS PLL LIBRARIES
1135 M:      Paul Walmsley <paul.walmsley@sifive.com>
1136 S:      Supported
1137 F:      drivers/clk/analogbits/*
1138 F:      include/linux/clk/analogbits*
1139
1140 ANDES ARCHITECTURE
1141 M:      Nick Hu <nickhu@andestech.com>
1142 M:      Greentime Hu <green.hu@gmail.com>
1143 M:      Vincent Chen <deanbo422@gmail.com>
1144 S:      Supported
1145 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1146 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1147 F:      Documentation/devicetree/bindings/nds32/
1148 F:      arch/nds32/
1149 N:      nds32
1150 K:      nds32
1151
1152 ANDROID CONFIG FRAGMENTS
1153 M:      Rob Herring <robh@kernel.org>
1154 S:      Supported
1155 F:      kernel/configs/android*
1156
1157 ANDROID DRIVERS
1158 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1159 M:      Arve Hjønnevåg <arve@android.com>
1160 M:      Todd Kjos <tkjos@android.com>
1161 M:      Martijn Coenen <maco@android.com>
1162 M:      Joel Fernandes <joel@joelfernandes.org>
1163 M:      Christian Brauner <christian@brauner.io>
1164 L:      devel@driverdev.osuosl.org
1165 S:      Supported
1166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1167 F:      drivers/android/
1168 F:      drivers/staging/android/
1169
1170 ANDROID GOLDFISH PIC DRIVER
1171 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1172 S:      Supported
1173 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1174 F:      drivers/irqchip/irq-goldfish-pic.c
1175
1176 ANDROID GOLDFISH RTC DRIVER
1177 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1178 S:      Supported
1179 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1180 F:      drivers/rtc/rtc-goldfish.c
1181
1182 ANDROID ION DRIVER
1183 M:      Laura Abbott <labbott@redhat.com>
1184 M:      Sumit Semwal <sumit.semwal@linaro.org>
1185 L:      devel@driverdev.osuosl.org
1186 L:      dri-devel@lists.freedesktop.org
1187 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1188 S:      Supported
1189 F:      drivers/staging/android/ion
1190 F:      drivers/staging/android/uapi/ion.h
1191
1192 AOA (Apple Onboard Audio) ALSA DRIVER
1193 M:      Johannes Berg <johannes@sipsolutions.net>
1194 L:      linuxppc-dev@lists.ozlabs.org
1195 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1196 S:      Maintained
1197 F:      sound/aoa/
1198
1199 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1200 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1201 L:      linux-iio@vger.kernel.org
1202 S:      Maintained
1203 F:      drivers/iio/adc/stx104.c
1204
1205 APM DRIVER
1206 M:      Jiri Kosina <jikos@kernel.org>
1207 S:      Odd fixes
1208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1209 F:      arch/x86/kernel/apm_32.c
1210 F:      drivers/char/apm-emulation.c
1211 F:      include/linux/apm_bios.h
1212 F:      include/uapi/linux/apm_bios.h
1213
1214 APPARMOR SECURITY MODULE
1215 M:      John Johansen <john.johansen@canonical.com>
1216 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1217 S:      Supported
1218 W:      wiki.apparmor.net
1219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1220 F:      Documentation/admin-guide/LSM/apparmor.rst
1221 F:      security/apparmor/
1222
1223 APPLE BCM5974 MULTITOUCH DRIVER
1224 M:      Henrik Rydberg <rydberg@bitmath.org>
1225 L:      linux-input@vger.kernel.org
1226 S:      Odd fixes
1227 F:      drivers/input/mouse/bcm5974.c
1228
1229 APPLE SMC DRIVER
1230 M:      Henrik Rydberg <rydberg@bitmath.org>
1231 L:      linux-hwmon@vger.kernel.org
1232 S:      Odd fixes
1233 F:      drivers/hwmon/applesmc.c
1234
1235 APPLETALK NETWORK LAYER
1236 L:      netdev@vger.kernel.org
1237 S:      Odd fixes
1238 F:      drivers/net/appletalk/
1239 F:      include/linux/atalk.h
1240 F:      include/uapi/linux/atalk.h
1241 F:      net/appletalk/
1242
1243 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1244 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1245 S:      Supported
1246 F:      arch/arm64/boot/dts/apm/
1247
1248 APPLIED MICRO (APM) X-GENE SOC EDAC
1249 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1250 S:      Supported
1251 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1252 F:      drivers/edac/xgene_edac.c
1253
1254 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1255 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1256 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1257 S:      Supported
1258 F:      drivers/net/ethernet/apm/xgene-v2/
1259
1260 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1261 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1262 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1263 M:      Quan Nguyen <quan@os.amperecomputing.com>
1264 S:      Supported
1265 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1266 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1267 F:      drivers/net/ethernet/apm/xgene/
1268 F:      drivers/net/phy/mdio-xgene.c
1269
1270 APPLIED MICRO (APM) X-GENE SOC PMU
1271 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1272 S:      Supported
1273 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1274 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1275 F:      drivers/perf/xgene_pmu.c
1276
1277 APTINA CAMERA SENSOR PLL
1278 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1279 L:      linux-media@vger.kernel.org
1280 S:      Maintained
1281 F:      drivers/media/i2c/aptina-pll.*
1282
1283 AQUANTIA ETHERNET DRIVER (atlantic)
1284 M:      Igor Russkikh <irusskikh@marvell.com>
1285 L:      netdev@vger.kernel.org
1286 S:      Supported
1287 W:      https://www.marvell.com/
1288 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1289 F:      Documentation/networking/device_drivers/aquantia/atlantic.rst
1290 F:      drivers/net/ethernet/aquantia/atlantic/
1291
1292 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1293 M:      Egor Pomozov <epomozov@marvell.com>
1294 L:      netdev@vger.kernel.org
1295 S:      Supported
1296 W:      http://www.aquantia.com
1297 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1298
1299 ARC FRAMEBUFFER DRIVER
1300 M:      Jaya Kumar <jayalk@intworks.biz>
1301 S:      Maintained
1302 F:      drivers/video/fbdev/arcfb.c
1303 F:      drivers/video/fbdev/core/fb_defio.c
1304
1305 ARC PGU DRM DRIVER
1306 M:      Alexey Brodkin <abrodkin@synopsys.com>
1307 S:      Supported
1308 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1309 F:      drivers/gpu/drm/arc/
1310
1311 ARCNET NETWORK LAYER
1312 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1313 L:      netdev@vger.kernel.org
1314 S:      Maintained
1315 F:      drivers/net/arcnet/
1316 F:      include/uapi/linux/if_arcnet.h
1317
1318 ARM ARCHITECTED TIMER DRIVER
1319 M:      Mark Rutland <mark.rutland@arm.com>
1320 M:      Marc Zyngier <maz@kernel.org>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 S:      Maintained
1323 F:      arch/arm/include/asm/arch_timer.h
1324 F:      arch/arm64/include/asm/arch_timer.h
1325 F:      drivers/clocksource/arm_arch_timer.c
1326
1327 ARM HDLCD DRM DRIVER
1328 M:      Liviu Dudau <liviu.dudau@arm.com>
1329 S:      Supported
1330 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1331 F:      drivers/gpu/drm/arm/hdlcd_*
1332
1333 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1334 M:      Linus Walleij <linus.walleij@linaro.org>
1335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1338 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1339 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1340 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1341 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1342 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1343 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1344 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1345 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1346 F:      arch/arm/boot/dts/arm-realview-*
1347 F:      arch/arm/boot/dts/integrator*
1348 F:      arch/arm/boot/dts/versatile*
1349 F:      arch/arm/mach-integrator/
1350 F:      arch/arm/mach-realview/
1351 F:      arch/arm/mach-versatile/
1352 F:      arch/arm/plat-versatile/
1353 F:      drivers/bus/arm-integrator-lm.c
1354 F:      drivers/clk/versatile/
1355 F:      drivers/i2c/busses/i2c-versatile.c
1356 F:      drivers/irqchip/irq-versatile-fpga.c
1357 F:      drivers/mtd/maps/physmap-versatile.*
1358 F:      drivers/power/reset/arm-versatile-reboot.c
1359 F:      drivers/soc/versatile/
1360
1361 ARM KOMEDA DRM-KMS DRIVER
1362 M:      James (Qian) Wang <james.qian.wang@arm.com>
1363 M:      Liviu Dudau <liviu.dudau@arm.com>
1364 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1365 L:      Mali DP Maintainers <malidp@foss.arm.com>
1366 S:      Supported
1367 T:      git git://anongit.freedesktop.org/drm/drm-misc
1368 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1369 F:      Documentation/gpu/komeda-kms.rst
1370 F:      drivers/gpu/drm/arm/display/include/
1371 F:      drivers/gpu/drm/arm/display/komeda/
1372
1373 ARM MALI PANFROST DRM DRIVER
1374 M:      Rob Herring <robh@kernel.org>
1375 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1376 R:      Steven Price <steven.price@arm.com>
1377 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1378 L:      dri-devel@lists.freedesktop.org
1379 S:      Supported
1380 T:      git git://anongit.freedesktop.org/drm/drm-misc
1381 F:      drivers/gpu/drm/panfrost/
1382 F:      include/uapi/drm/panfrost_drm.h
1383
1384 ARM MALI-DP DRM DRIVER
1385 M:      Liviu Dudau <liviu.dudau@arm.com>
1386 M:      Brian Starkey <brian.starkey@arm.com>
1387 L:      Mali DP Maintainers <malidp@foss.arm.com>
1388 S:      Supported
1389 T:      git git://anongit.freedesktop.org/drm/drm-misc
1390 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1391 F:      Documentation/gpu/afbc.rst
1392 F:      drivers/gpu/drm/arm/
1393
1394 ARM MFM AND FLOPPY DRIVERS
1395 M:      Ian Molton <spyro@f2s.com>
1396 S:      Maintained
1397 F:      arch/arm/include/asm/floppy.h
1398 F:      arch/arm/mach-rpc/floppydma.S
1399
1400 ARM PMU PROFILING AND DEBUGGING
1401 M:      Will Deacon <will@kernel.org>
1402 M:      Mark Rutland <mark.rutland@arm.com>
1403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1404 S:      Maintained
1405 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1406 F:      Documentation/devicetree/bindings/perf/
1407 F:      arch/arm*/include/asm/hw_breakpoint.h
1408 F:      arch/arm*/include/asm/perf_event.h
1409 F:      arch/arm*/kernel/hw_breakpoint.c
1410 F:      arch/arm*/kernel/perf_*
1411 F:      arch/arm/oprofile/common.c
1412 F:      drivers/perf/*
1413 F:      include/linux/perf/arm_pmu.h
1414
1415 ARM PORT
1416 M:      Russell King <linux@armlinux.org.uk>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Odd Fixes
1419 W:      http://www.armlinux.org.uk/
1420 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1421 F:      arch/arm/
1422 X:      arch/arm/boot/dts/
1423
1424 ARM PRIMECELL AACI PL041 DRIVER
1425 M:      Russell King <linux@armlinux.org.uk>
1426 S:      Odd Fixes
1427 F:      sound/arm/aaci.*
1428
1429 ARM PRIMECELL BUS SUPPORT
1430 M:      Russell King <linux@armlinux.org.uk>
1431 S:      Odd Fixes
1432 F:      drivers/amba/
1433 F:      include/linux/amba/bus.h
1434
1435 ARM PRIMECELL CLCD PL110 DRIVER
1436 M:      Russell King <linux@armlinux.org.uk>
1437 S:      Odd Fixes
1438 F:      drivers/video/fbdev/amba-clcd.*
1439
1440 ARM PRIMECELL KMI PL050 DRIVER
1441 M:      Russell King <linux@armlinux.org.uk>
1442 S:      Odd Fixes
1443 F:      drivers/input/serio/ambakmi.*
1444 F:      include/linux/amba/kmi.h
1445
1446 ARM PRIMECELL MMCI PL180/1 DRIVER
1447 M:      Russell King <linux@armlinux.org.uk>
1448 S:      Odd Fixes
1449 F:      drivers/mmc/host/mmci.*
1450 F:      include/linux/amba/mmci.h
1451
1452 ARM PRIMECELL SSP PL022 SPI DRIVER
1453 M:      Linus Walleij <linus.walleij@linaro.org>
1454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1455 S:      Maintained
1456 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1457 F:      drivers/spi/spi-pl022.c
1458
1459 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1460 M:      Russell King <linux@armlinux.org.uk>
1461 S:      Odd Fixes
1462 F:      drivers/tty/serial/amba-pl01*.c
1463 F:      include/linux/amba/serial.h
1464
1465 ARM PRIMECELL VIC PL190/PL192 DRIVER
1466 M:      Linus Walleij <linus.walleij@linaro.org>
1467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1468 S:      Maintained
1469 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1470 F:      drivers/irqchip/irq-vic.c
1471
1472 ARM SMC WATCHDOG DRIVER
1473 M:      Julius Werner <jwerner@chromium.org>
1474 R:      Evan Benn <evanbenn@chromium.org>
1475 S:      Maintained
1476 F:      devicetree/bindings/watchdog/arm-smc-wdt.yaml
1477 F:      drivers/watchdog/arm_smc_wdt.c
1478
1479 ARM SMMU DRIVERS
1480 M:      Will Deacon <will@kernel.org>
1481 R:      Robin Murphy <robin.murphy@arm.com>
1482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1483 S:      Maintained
1484 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1485 F:      drivers/iommu/arm-smmu*
1486 F:      drivers/iommu/io-pgtable-arm-v7s.c
1487 F:      drivers/iommu/io-pgtable-arm.c
1488
1489 ARM SUB-ARCHITECTURES
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1493 F:      arch/arm/mach-*/
1494 F:      arch/arm/plat-*/
1495
1496 ARM/ACTIONS SEMI ARCHITECTURE
1497 M:      Andreas Färber <afaerber@suse.de>
1498 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      Documentation/devicetree/bindings/arm/actions.yaml
1502 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1503 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1504 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1505 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1506 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1507 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1508 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1509 F:      arch/arm/boot/dts/owl-*
1510 F:      arch/arm/mach-actions/
1511 F:      arch/arm64/boot/dts/actions/
1512 F:      drivers/clk/actions/
1513 F:      drivers/clocksource/timer-owl*
1514 F:      drivers/dma/owl-dma.c
1515 F:      drivers/i2c/busses/i2c-owl.c
1516 F:      drivers/mmc/host/owl-mmc.c
1517 F:      drivers/pinctrl/actions/*
1518 F:      drivers/soc/actions/
1519 F:      include/dt-bindings/power/owl-*
1520 F:      include/linux/soc/actions/
1521 N:      owl
1522
1523 ARM/ADS SPHERE MACHINE SUPPORT
1524 M:      Lennert Buytenhek <kernel@wantstofly.org>
1525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 S:      Maintained
1527
1528 ARM/AFEB9260 MACHINE SUPPORT
1529 M:      Sergey Lapin <slapin@ossfans.org>
1530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 S:      Maintained
1532
1533 ARM/AJECO 1ARM MACHINE SUPPORT
1534 M:      Lennert Buytenhek <kernel@wantstofly.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/Allwinner SoC Clock Support
1539 M:      Emilio López <emilio@elopez.com.ar>
1540 S:      Maintained
1541 F:      drivers/clk/sunxi/
1542
1543 ARM/Allwinner sunXi SoC support
1544 M:      Maxime Ripard <mripard@kernel.org>
1545 M:      Chen-Yu Tsai <wens@csie.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1549 F:      arch/arm/mach-sunxi/
1550 F:      arch/arm64/boot/dts/allwinner/
1551 F:      drivers/clk/sunxi-ng/
1552 F:      drivers/pinctrl/sunxi/
1553 F:      drivers/soc/sunxi/
1554 N:      sun[x456789]i
1555 N:      sun50i
1556
1557 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1558 M:      Neil Armstrong <narmstrong@baylibre.com>
1559 M:      Jerome Brunet <jbrunet@baylibre.com>
1560 L:      linux-amlogic@lists.infradead.org
1561 S:      Maintained
1562 F:      Documentation/devicetree/bindings/clock/amlogic*
1563 F:      drivers/clk/meson/
1564 F:      include/dt-bindings/clock/gxbb*
1565 F:      include/dt-bindings/clock/meson*
1566
1567 ARM/Amlogic Meson SoC Crypto Drivers
1568 M:      Corentin Labbe <clabbe@baylibre.com>
1569 L:      linux-crypto@vger.kernel.org
1570 L:      linux-amlogic@lists.infradead.org
1571 S:      Maintained
1572 F:      Documentation/devicetree/bindings/crypto/amlogic*
1573 F:      drivers/crypto/amlogic/
1574
1575 ARM/Amlogic Meson SoC Sound Drivers
1576 M:      Jerome Brunet <jbrunet@baylibre.com>
1577 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1578 S:      Maintained
1579 F:      Documentation/devicetree/bindings/sound/amlogic*
1580 F:      sound/soc/meson/
1581
1582 ARM/Amlogic Meson SoC support
1583 M:      Kevin Hilman <khilman@baylibre.com>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 L:      linux-amlogic@lists.infradead.org
1586 S:      Maintained
1587 W:      http://linux-meson.com/
1588 F:      arch/arm/boot/dts/meson*
1589 F:      arch/arm/mach-meson/
1590 F:      arch/arm64/boot/dts/amlogic/
1591 F:      drivers/mmc/host/meson*
1592 F:      drivers/pinctrl/meson/
1593 F:      drivers/rtc/rtc-meson*
1594 F:      drivers/soc/amlogic/
1595 N:      meson
1596
1597 ARM/Annapurna Labs ALPINE ARCHITECTURE
1598 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1599 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm/boot/dts/alpine*
1603 F:      arch/arm/mach-alpine/
1604 F:      arch/arm64/boot/dts/al/
1605 F:      drivers/*/*alpine*
1606
1607 ARM/ARTPEC MACHINE SUPPORT
1608 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1609 M:      Lars Persson <lars.persson@axis.com>
1610 L:      linux-arm-kernel@axis.com
1611 S:      Maintained
1612 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1613 F:      arch/arm/boot/dts/artpec6*
1614 F:      arch/arm/mach-artpec
1615 F:      drivers/clk/axis
1616 F:      drivers/crypto/axis
1617 F:      drivers/mmc/host/usdhi6rol0.c
1618 F:      drivers/pinctrl/pinctrl-artpec*
1619
1620 ARM/ASPEED I2C DRIVER
1621 M:      Brendan Higgins <brendanhiggins@google.com>
1622 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1623 R:      Joel Stanley <joel@jms.id.au>
1624 L:      linux-i2c@vger.kernel.org
1625 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1628 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1629 F:      drivers/i2c/busses/i2c-aspeed.c
1630 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1631
1632 ARM/ASPEED MACHINE SUPPORT
1633 M:      Joel Stanley <joel@jms.id.au>
1634 R:      Andrew Jeffery <andrew@aj.id.au>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1637 S:      Supported
1638 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1640 F:      arch/arm/boot/dts/aspeed-*
1641 F:      arch/arm/mach-aspeed/
1642 N:      aspeed
1643
1644 ARM/BITMAIN ARCHITECTURE
1645 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1649 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1650 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1651 F:      arch/arm64/boot/dts/bitmain/
1652 F:      drivers/clk/clk-bm1880.c
1653 F:      drivers/pinctrl/pinctrl-bm1880.c
1654
1655 ARM/CALXEDA HIGHBANK ARCHITECTURE
1656 M:      Andre Przywara <andre.przywara@arm.com>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Maintained
1659 F:      arch/arm/boot/dts/ecx-*.dts*
1660 F:      arch/arm/boot/dts/highbank.dts
1661 F:      arch/arm/mach-highbank/
1662
1663 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1664 M:      Krzysztof Halasa <khalasa@piap.pl>
1665 S:      Maintained
1666 F:      arch/arm/mach-cns3xxx/
1667
1668 ARM/CAVIUM THUNDER NETWORK DRIVER
1669 M:      Sunil Goutham <sgoutham@marvell.com>
1670 M:      Robert Richter <rrichter@marvell.com>
1671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1672 S:      Supported
1673 F:      drivers/net/ethernet/cavium/thunder/
1674
1675 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1676 M:      Lukasz Majewski <lukma@denx.de>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Maintained
1679 F:      arch/arm/mach-ep93xx/ts72xx.c
1680
1681 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1682 M:      Alexander Shiyan <shc_work@mail.ru>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Odd Fixes
1685 N:      clps711x
1686
1687 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1688 M:      Lennert Buytenhek <kernel@wantstofly.org>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 S:      Maintained
1691
1692 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1693 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1694 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      arch/arm/mach-ep93xx/
1698 F:      arch/arm/mach-ep93xx/include/mach/
1699
1700 ARM/CLKDEV SUPPORT
1701 M:      Russell King <linux@armlinux.org.uk>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1705 F:      drivers/clk/clkdev.c
1706
1707 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1708 M:      Baruch Siach <baruch@tkos.co.il>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      arch/arm/boot/dts/cx92755*
1712 N:      digicolor
1713
1714 ARM/CONTEC MICRO9 MACHINE SUPPORT
1715 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1716 S:      Maintained
1717 F:      arch/arm/mach-ep93xx/micro9.c
1718
1719 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1720 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1721 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1722 R:      Mike Leach <mike.leach@linaro.org>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1726 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1727 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1728 F:      Documentation/devicetree/bindings/arm/coresight.txt
1729 F:      Documentation/trace/coresight/*
1730 F:      drivers/hwtracing/coresight/*
1731 F:      include/dt-bindings/arm/coresight-cti-dt.h
1732 F:      tools/perf/arch/arm/util/auxtrace.c
1733 F:      tools/perf/arch/arm/util/cs-etm.c
1734 F:      tools/perf/arch/arm/util/cs-etm.h
1735 F:      tools/perf/arch/arm/util/pmu.c
1736 F:      tools/perf/util/cs-etm-decoder/*
1737 F:      tools/perf/util/cs-etm.*
1738
1739 ARM/CORGI MACHINE SUPPORT
1740 M:      Richard Purdie <rpurdie@rpsys.net>
1741 S:      Maintained
1742
1743 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1744 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1745 M:      Linus Walleij <linus.walleij@linaro.org>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 T:      git git://github.com/ulli-kroll/linux.git
1749 F:      Documentation/devicetree/bindings/arm/gemini.txt
1750 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1751 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1752 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1753 F:      arch/arm/mach-gemini/
1754 F:      drivers/net/ethernet/cortina/
1755 F:      drivers/pinctrl/pinctrl-gemini.c
1756 F:      drivers/rtc/rtc-ftrtc010.c
1757
1758 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1759 M:      Barry Song <baohua@kernel.org>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1763 F:      arch/arm/boot/dts/prima2*
1764 F:      arch/arm/mach-prima2/
1765 F:      drivers/clk/sirf/
1766 F:      drivers/clocksource/timer-atlas7.c
1767 F:      drivers/clocksource/timer-prima2.c
1768 X:      drivers/gnss
1769 N:      [^a-z]sirf
1770
1771 ARM/CZ.NIC TURRIS MOX SUPPORT
1772 M:      Marek Behun <marek.behun@nic.cz>
1773 S:      Maintained
1774 W:      http://mox.turris.cz
1775 F:      Documentation/ABI/testing/debugfs-moxtet
1776 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1777 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1778 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1779 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1780 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1781 F:      drivers/bus/moxtet.c
1782 F:      drivers/firmware/turris-mox-rwtm.c
1783 F:      drivers/gpio/gpio-moxtet.c
1784 F:      include/linux/moxtet.h
1785
1786 ARM/EBSA110 MACHINE SUPPORT
1787 M:      Russell King <linux@armlinux.org.uk>
1788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1789 S:      Maintained
1790 W:      http://www.armlinux.org.uk/
1791 F:      arch/arm/mach-ebsa110/
1792 F:      drivers/net/ethernet/amd/am79c961a.*
1793
1794 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1795 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1796 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 N:      efm32
1800
1801 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1802 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805 F:      arch/arm/mach-pxa/ezx.c
1806
1807 ARM/FARADAY FA526 PORT
1808 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1810 S:      Maintained
1811 T:      git git://git.berlios.de/gemini-board
1812 F:      arch/arm/mm/*-fa*
1813
1814 ARM/FOOTBRIDGE ARCHITECTURE
1815 M:      Russell King <linux@armlinux.org.uk>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 W:      http://www.armlinux.org.uk/
1819 F:      arch/arm/include/asm/hardware/dec21285.h
1820 F:      arch/arm/mach-footbridge/
1821
1822 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1823 M:      Shawn Guo <shawnguo@kernel.org>
1824 M:      Sascha Hauer <s.hauer@pengutronix.de>
1825 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1826 R:      Fabio Estevam <festevam@gmail.com>
1827 R:      NXP Linux Team <linux-imx@nxp.com>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S:      Maintained
1830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1831 X:      drivers/media/i2c/
1832 N:      imx
1833 N:      mxs
1834
1835 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1836 M:      Shawn Guo <shawnguo@kernel.org>
1837 M:      Li Yang <leoyang.li@nxp.com>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1841 F:      arch/arm/boot/dts/ls1021a*
1842 F:      arch/arm64/boot/dts/freescale/fsl-*
1843 F:      arch/arm64/boot/dts/freescale/qoriq-*
1844
1845 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1846 M:      Shawn Guo <shawnguo@kernel.org>
1847 M:      Sascha Hauer <s.hauer@pengutronix.de>
1848 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1849 R:      Stefan Agner <stefan@agner.ch>
1850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1851 S:      Maintained
1852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1853 F:      arch/arm/boot/dts/vf*
1854 F:      arch/arm/mach-imx/*vf610*
1855
1856 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1857 M:      Lennert Buytenhek <kernel@wantstofly.org>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860
1861 ARM/GUMSTIX MACHINE SUPPORT
1862 M:      Steve Sakoman <sakoman@gmail.com>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865
1866 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1867 M:      Philipp Zabel <philipp.zabel@gmail.com>
1868 M:      Paul Parsons <lost.distance@yahoo.com>
1869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1870 S:      Maintained
1871 F:      arch/arm/mach-pxa/hx4700.c
1872 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1873 F:      sound/soc/pxa/hx4700.c
1874
1875 ARM/HISILICON SOC SUPPORT
1876 M:      Wei Xu <xuwei5@hisilicon.com>
1877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1878 S:      Supported
1879 W:      http://www.hisilicon.com
1880 T:      git git://github.com/hisilicon/linux-hisi.git
1881 F:      arch/arm/boot/dts/hi3*
1882 F:      arch/arm/boot/dts/hip*
1883 F:      arch/arm/boot/dts/hisi*
1884 F:      arch/arm/mach-hisi/
1885 F:      arch/arm64/boot/dts/hisilicon/
1886
1887 ARM/HP JORNADA 7XX MACHINE SUPPORT
1888 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1889 S:      Maintained
1890 W:      www.jlime.com
1891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1892 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1893 F:      arch/arm/mach-sa1100/jornada720.c
1894
1895 ARM/IGEP MACHINE SUPPORT
1896 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1897 M:      Javier Martinez Canillas <javier@dowhile0.org>
1898 L:      linux-omap@vger.kernel.org
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 S:      Maintained
1901 F:      arch/arm/boot/dts/omap3-igep*
1902
1903 ARM/INCOME PXA270 SUPPORT
1904 M:      Marek Vasut <marek.vasut@gmail.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1908
1909 ARM/INTEL IOP32X ARM ARCHITECTURE
1910 M:      Lennert Buytenhek <kernel@wantstofly.org>
1911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1912 S:      Maintained
1913
1914 ARM/INTEL IQ81342EX MACHINE SUPPORT
1915 M:      Lennert Buytenhek <kernel@wantstofly.org>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 S:      Maintained
1918
1919 ARM/INTEL IXDP2850 MACHINE SUPPORT
1920 M:      Lennert Buytenhek <kernel@wantstofly.org>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923
1924 ARM/INTEL IXP4XX ARM ARCHITECTURE
1925 M:      Linus Walleij <linusw@kernel.org>
1926 M:      Imre Kaloz <kaloz@openwrt.org>
1927 M:      Krzysztof Halasa <khalasa@piap.pl>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Maintained
1930 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1931 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1932 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1933 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1934 F:      arch/arm/mach-ixp4xx/
1935 F:      drivers/clocksource/timer-ixp4xx.c
1936 F:      drivers/gpio/gpio-ixp4xx.c
1937 F:      drivers/irqchip/irq-ixp4xx.c
1938 F:      include/linux/irqchip/irq-ixp4xx.h
1939 F:      include/linux/platform_data/timer-ixp4xx.h
1940
1941 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1942 M:      Jonathan Cameron <jic23@cam.ac.uk>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 F:      arch/arm/mach-pxa/stargate2.c
1946 F:      drivers/pcmcia/pxa2xx_stargate2.c
1947
1948 ARM/INTEL XSC3 (MANZANO) ARM CORE
1949 M:      Lennert Buytenhek <kernel@wantstofly.org>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Maintained
1952
1953 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1954 M:      Lennert Buytenhek <kernel@wantstofly.org>
1955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1956 S:      Maintained
1957
1958 ARM/LG1K ARCHITECTURE
1959 M:      Chanho Min <chanho.min@lge.com>
1960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1961 S:      Maintained
1962 F:      arch/arm64/boot/dts/lg/
1963
1964 ARM/LOGICPD PXA270 MACHINE SUPPORT
1965 M:      Lennert Buytenhek <kernel@wantstofly.org>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968
1969 ARM/LPC18XX ARCHITECTURE
1970 M:      Vladimir Zapolskiy <vz@mleia.com>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1974 F:      arch/arm/boot/dts/lpc43*
1975 F:      drivers/i2c/busses/i2c-lpc2k.c
1976 F:      drivers/memory/pl172.c
1977 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1978 F:      drivers/rtc/rtc-lpc24xx.c
1979 N:      lpc18xx
1980
1981 ARM/LPC32XX SOC SUPPORT
1982 M:      Vladimir Zapolskiy <vz@mleia.com>
1983 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S:      Maintained
1986 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1987 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1988 F:      arch/arm/boot/dts/lpc32*
1989 F:      arch/arm/mach-lpc32xx/
1990 F:      drivers/i2c/busses/i2c-pnx.c
1991 F:      drivers/net/ethernet/nxp/lpc_eth.c
1992 F:      drivers/usb/host/ohci-nxp.c
1993 F:      drivers/watchdog/pnx4008_wdt.c
1994 N:      lpc32xx
1995
1996 ARM/MAGICIAN MACHINE SUPPORT
1997 M:      Philipp Zabel <philipp.zabel@gmail.com>
1998 S:      Maintained
1999
2000 ARM/Marvell Dove/MV78xx0/Orion SOC support
2001 M:      Jason Cooper <jason@lakedaemon.net>
2002 M:      Andrew Lunn <andrew@lunn.ch>
2003 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2004 M:      Gregory Clement <gregory.clement@bootlin.com>
2005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2006 S:      Maintained
2007 T:      git git://git.infradead.org/linux-mvebu.git
2008 F:      Documentation/devicetree/bindings/soc/dove/
2009 F:      arch/arm/boot/dts/dove*
2010 F:      arch/arm/boot/dts/orion5x*
2011 F:      arch/arm/mach-dove/
2012 F:      arch/arm/mach-mv78xx0/
2013 F:      arch/arm/mach-orion5x/
2014 F:      arch/arm/plat-orion/
2015 F:      drivers/soc/dove/
2016
2017 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2018 M:      Jason Cooper <jason@lakedaemon.net>
2019 M:      Andrew Lunn <andrew@lunn.ch>
2020 M:      Gregory Clement <gregory.clement@bootlin.com>
2021 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2023 S:      Maintained
2024 T:      git git://git.infradead.org/linux-mvebu.git
2025 F:      arch/arm/boot/dts/armada*
2026 F:      arch/arm/boot/dts/kirkwood*
2027 F:      arch/arm/configs/mvebu_*_defconfig
2028 F:      arch/arm/mach-mvebu/
2029 F:      arch/arm64/boot/dts/marvell/armada*
2030 F:      arch/arm64/boot/dts/marvell/cn913*
2031 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2032 F:      drivers/cpufreq/armada-8k-cpufreq.c
2033 F:      drivers/cpufreq/mvebu-cpufreq.c
2034 F:      drivers/irqchip/irq-armada-370-xp.c
2035 F:      drivers/irqchip/irq-mvebu-*
2036 F:      drivers/pinctrl/mvebu/
2037 F:      drivers/rtc/rtc-armada38x.c
2038
2039 ARM/Mediatek RTC DRIVER
2040 M:      Eddie Huang <eddie.huang@mediatek.com>
2041 M:      Sean Wang <sean.wang@mediatek.com>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2046 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2047 F:      drivers/rtc/rtc-mt2712.c
2048 F:      drivers/rtc/rtc-mt6397.c
2049 F:      drivers/rtc/rtc-mt7622.c
2050
2051 ARM/Mediatek SoC support
2052 M:      Matthias Brugger <matthias.bgg@gmail.com>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 W:      https://mtk.bcnfs.org/
2057 C:      irc://chat.freenode.net/linux-mediatek
2058 F:      arch/arm/boot/dts/mt6*
2059 F:      arch/arm/boot/dts/mt7*
2060 F:      arch/arm/boot/dts/mt8*
2061 F:      arch/arm/mach-mediatek/
2062 F:      arch/arm64/boot/dts/mediatek/
2063 F:      drivers/soc/mediatek/
2064 N:      mtk
2065 N:      mt[678]
2066 K:      mediatek
2067
2068 ARM/Mediatek USB3 PHY DRIVER
2069 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2071 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2072 S:      Maintained
2073 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2074 F:      drivers/phy/mediatek/
2075
2076 ARM/Microchip (AT91) SoC support
2077 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2078 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2079 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 S:      Supported
2082 W:      http://www.linux4sam.org
2083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2084 F:      arch/arm/boot/dts/at91*.dts
2085 F:      arch/arm/boot/dts/at91*.dtsi
2086 F:      arch/arm/boot/dts/sama*.dts
2087 F:      arch/arm/boot/dts/sama*.dtsi
2088 F:      arch/arm/include/debug/at91.S
2089 F:      arch/arm/mach-at91/
2090 F:      drivers/memory/atmel*
2091 F:      drivers/watchdog/sama5d4_wdt.c
2092 F:      include/soc/at91/
2093 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2094 X:      drivers/net/wireless/atmel/
2095 N:      at91
2096 N:      atmel
2097
2098 ARM/MIOA701 MACHINE SUPPORT
2099 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      arch/arm/mach-pxa/mioa701.c
2103
2104 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2105 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2106 S:      Maintained
2107
2108 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2109 M:      Linus Walleij <linus.walleij@linaro.org>
2110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2111 S:      Maintained
2112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2113 F:      Documentation/devicetree/bindings/arm/ste-*
2114 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2115 F:      Documentation/devicetree/bindings/arm/ux500/
2116 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2117 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2118 F:      arch/arm/boot/dts/ste-*
2119 F:      arch/arm/mach-nomadik/
2120 F:      arch/arm/mach-u300/
2121 F:      arch/arm/mach-ux500/
2122 F:      drivers/clk/clk-nomadik.c
2123 F:      drivers/clk/clk-u300.c
2124 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2125 F:      drivers/clocksource/timer-u300.c
2126 F:      drivers/dma/coh901318*
2127 F:      drivers/dma/ste_dma40*
2128 F:      drivers/hwspinlock/u8500_hsem.c
2129 F:      drivers/i2c/busses/i2c-nomadik.c
2130 F:      drivers/i2c/busses/i2c-stu300.c
2131 F:      drivers/iio/adc/ab8500-gpadc.c
2132 F:      drivers/mfd/ab3100*
2133 F:      drivers/mfd/ab8500*
2134 F:      drivers/mfd/abx500*
2135 F:      drivers/mfd/db8500*
2136 F:      drivers/mfd/dbx500*
2137 F:      drivers/pinctrl/nomadik/
2138 F:      drivers/pinctrl/pinctrl-coh901*
2139 F:      drivers/pinctrl/pinctrl-u300.c
2140 F:      drivers/rtc/rtc-ab3100.c
2141 F:      drivers/rtc/rtc-ab8500.c
2142 F:      drivers/rtc/rtc-coh901331.c
2143 F:      drivers/rtc/rtc-pl031.c
2144 F:      drivers/soc/ux500/
2145 F:      drivers/watchdog/coh901327_wdt.c
2146
2147 ARM/NUVOTON NPCM ARCHITECTURE
2148 M:      Avi Fishman <avifishman70@gmail.com>
2149 M:      Tomer Maimon <tmaimon77@gmail.com>
2150 M:      Tali Perry <tali.perry1@gmail.com>
2151 R:      Patrick Venture <venture@google.com>
2152 R:      Nancy Yuen <yuenn@google.com>
2153 R:      Benjamin Fair <benjaminfair@google.com>
2154 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2155 S:      Supported
2156 F:      Documentation/devicetree/bindings/*/*/*npcm*
2157 F:      Documentation/devicetree/bindings/*/*npcm*
2158 F:      arch/arm/boot/dts/nuvoton-npcm*
2159 F:      arch/arm/mach-npcm/
2160 F:      drivers/*/*npcm*
2161 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2162
2163 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2164 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2165 S:      Orphan
2166 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2167 F:      arch/arm/mach-s3c24xx/gta02.h
2168 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2169
2170 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2171 M:      Alexander Clouter <alex@digriz.org.uk>
2172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2173 S:      Maintained
2174 W:      http://www.digriz.org.uk/ts78xx/kernel
2175 F:      arch/arm/mach-orion5x/ts78xx-*
2176
2177 ARM/OXNAS platform support
2178 M:      Neil Armstrong <narmstrong@baylibre.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2181 S:      Maintained
2182 F:      arch/arm/boot/dts/ox8*.dts*
2183 F:      arch/arm/mach-oxnas/
2184 N:      oxnas
2185
2186 ARM/PALM TREO SUPPORT
2187 M:      Tomas Cech <sleep_walker@suse.com>
2188 L:      linux-arm-kernel@lists.infradead.org
2189 S:      Maintained
2190 W:      http://hackndev.com
2191 F:      arch/arm/mach-pxa/palmtreo.*
2192
2193 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2194 M:      Marek Vasut <marek.vasut@gmail.com>
2195 L:      linux-arm-kernel@lists.infradead.org
2196 S:      Maintained
2197 W:      http://hackndev.com
2198 F:      arch/arm/mach-pxa/include/mach/palmld.h
2199 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2200 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2201 F:      arch/arm/mach-pxa/palmld.c
2202 F:      arch/arm/mach-pxa/palmt5.*
2203 F:      arch/arm/mach-pxa/palmtc.c
2204 F:      arch/arm/mach-pxa/palmte2.*
2205 F:      arch/arm/mach-pxa/palmtx.c
2206
2207 ARM/PALMZ72 SUPPORT
2208 M:      Sergey Lapin <slapin@ossfans.org>
2209 L:      linux-arm-kernel@lists.infradead.org
2210 S:      Maintained
2211 W:      http://hackndev.com
2212 F:      arch/arm/mach-pxa/palmz72.*
2213
2214 ARM/PLEB SUPPORT
2215 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2216 S:      Maintained
2217 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2218
2219 ARM/PT DIGITAL BOARD PORT
2220 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Maintained
2223 W:      http://www.armlinux.org.uk/
2224
2225 ARM/QUALCOMM SUPPORT
2226 M:      Andy Gross <agross@kernel.org>
2227 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2228 L:      linux-arm-msm@vger.kernel.org
2229 S:      Maintained
2230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2231 F:      Documentation/devicetree/bindings/*/qcom*
2232 F:      Documentation/devicetree/bindings/soc/qcom/
2233 F:      arch/arm/boot/dts/qcom-*.dts
2234 F:      arch/arm/boot/dts/qcom-*.dtsi
2235 F:      arch/arm/mach-qcom/
2236 F:      arch/arm64/boot/dts/qcom/
2237 F:      drivers/*/*/qcom*
2238 F:      drivers/*/*/qcom/
2239 F:      drivers/*/pm8???-*
2240 F:      drivers/*/qcom*
2241 F:      drivers/*/qcom/
2242 F:      drivers/bluetooth/btqcomsmd.c
2243 F:      drivers/clocksource/timer-qcom.c
2244 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2245 F:      drivers/extcon/extcon-qcom*
2246 F:      drivers/i2c/busses/i2c-qcom-geni.c
2247 F:      drivers/i2c/busses/i2c-qup.c
2248 F:      drivers/iommu/msm*
2249 F:      drivers/mfd/ssbi.c
2250 F:      drivers/mmc/host/mmci_qcom*
2251 F:      drivers/mmc/host/sdhci-msm.c
2252 F:      drivers/pci/controller/dwc/pcie-qcom.c
2253 F:      drivers/phy/qualcomm/
2254 F:      drivers/power/*/msm*
2255 F:      drivers/reset/reset-qcom-*
2256 F:      drivers/scsi/ufs/ufs-qcom.*
2257 F:      drivers/spi/spi-geni-qcom.c
2258 F:      drivers/spi/spi-qcom-qspi.c
2259 F:      drivers/spi/spi-qup.c
2260 F:      drivers/tty/serial/msm_serial.c
2261 F:      drivers/usb/dwc3/dwc3-qcom.c
2262 F:      include/dt-bindings/*/qcom*
2263 F:      include/linux/*/qcom*
2264
2265 ARM/RADISYS ENP2611 MACHINE SUPPORT
2266 M:      Lennert Buytenhek <kernel@wantstofly.org>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269
2270 ARM/RDA MICRO ARCHITECTURE
2271 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2273 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2274 S:      Maintained
2275 F:      Documentation/devicetree/bindings/arm/rda.yaml
2276 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2277 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2278 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2279 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2280 F:      arch/arm/boot/dts/rda8810pl-*
2281 F:      drivers/clocksource/timer-rda.c
2282 F:      drivers/gpio/gpio-rda.c
2283 F:      drivers/irqchip/irq-rda-intc.c
2284 F:      drivers/tty/serial/rda-uart.c
2285
2286 ARM/REALTEK ARCHITECTURE
2287 M:      Andreas Färber <afaerber@suse.de>
2288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2289 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2290 S:      Maintained
2291 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2292 F:      arch/arm/boot/dts/rtd*
2293 F:      arch/arm/mach-realtek/
2294 F:      arch/arm64/boot/dts/realtek/
2295
2296 ARM/RENESAS ARM64 ARCHITECTURE
2297 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2298 M:      Magnus Damm <magnus.damm@gmail.com>
2299 L:      linux-renesas-soc@vger.kernel.org
2300 S:      Supported
2301 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2303 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2304 F:      arch/arm64/boot/dts/renesas/
2305 F:      drivers/soc/renesas/
2306 F:      include/linux/soc/renesas/
2307
2308 ARM/RISCPC ARCHITECTURE
2309 M:      Russell King <linux@armlinux.org.uk>
2310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 W:      http://www.armlinux.org.uk/
2313 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2314 F:      arch/arm/include/asm/hardware/ioc.h
2315 F:      arch/arm/include/asm/hardware/iomd.h
2316 F:      arch/arm/include/asm/hardware/memc.h
2317 F:      arch/arm/mach-rpc/
2318 F:      drivers/net/ethernet/8390/etherh.c
2319 F:      drivers/net/ethernet/i825xx/ether1*
2320 F:      drivers/net/ethernet/seeq/ether3*
2321 F:      drivers/scsi/arm/
2322
2323 ARM/Rockchip SoC support
2324 M:      Heiko Stuebner <heiko@sntech.de>
2325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2326 L:      linux-rockchip@lists.infradead.org
2327 S:      Maintained
2328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2329 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2330 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2331 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2332 F:      arch/arm/boot/dts/rk3*
2333 F:      arch/arm/boot/dts/rv1108*
2334 F:      arch/arm/mach-rockchip/
2335 F:      drivers/*/*/*rockchip*
2336 F:      drivers/*/*rockchip*
2337 F:      drivers/clk/rockchip/
2338 F:      drivers/i2c/busses/i2c-rk3x.c
2339 F:      sound/soc/rockchip/
2340 N:      rockchip
2341
2342 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2343 M:      Kukjin Kim <kgene@kernel.org>
2344 M:      Krzysztof Kozlowski <krzk@kernel.org>
2345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2346 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2347 S:      Maintained
2348 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2349 F:      Documentation/arm/samsung/
2350 F:      Documentation/devicetree/bindings/arm/samsung/
2351 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2352 F:      arch/arm/boot/dts/exynos*
2353 F:      arch/arm/boot/dts/s3c*
2354 F:      arch/arm/boot/dts/s5p*
2355 F:      arch/arm/mach-exynos*/
2356 F:      arch/arm/mach-s3c24*/
2357 F:      arch/arm/mach-s3c64xx/
2358 F:      arch/arm/mach-s5p*/
2359 F:      arch/arm/plat-samsung/
2360 F:      arch/arm64/boot/dts/exynos/
2361 F:      drivers/*/*/*s3c24*
2362 F:      drivers/*/*s3c24*
2363 F:      drivers/*/*s3c64xx*
2364 F:      drivers/*/*s5pv210*
2365 F:      drivers/memory/samsung/
2366 F:      drivers/soc/samsung/
2367 F:      drivers/tty/serial/samsung*
2368 F:      include/linux/soc/samsung/
2369 N:      exynos
2370
2371 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2372 M:      Kyungmin Park <kyungmin.park@samsung.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 S:      Maintained
2375 F:      arch/arm/mach-s5pv210/
2376
2377 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2378 M:      Kyungmin Park <kyungmin.park@samsung.com>
2379 M:      Kamil Debski <kamil@wypas.org>
2380 M:      Andrzej Hajda <a.hajda@samsung.com>
2381 L:      linux-arm-kernel@lists.infradead.org
2382 L:      linux-media@vger.kernel.org
2383 S:      Maintained
2384 F:      drivers/media/platform/s5p-g2d/
2385
2386 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2387 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2388 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2389 L:      linux-media@vger.kernel.org
2390 S:      Maintained
2391 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2392 F:      drivers/media/platform/s5p-cec/
2393
2394 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2395 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2396 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2397 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2398 L:      linux-arm-kernel@lists.infradead.org
2399 L:      linux-media@vger.kernel.org
2400 S:      Maintained
2401 F:      drivers/media/platform/s5p-jpeg/
2402
2403 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2404 M:      Kyungmin Park <kyungmin.park@samsung.com>
2405 M:      Kamil Debski <kamil@wypas.org>
2406 M:      Jeongtae Park <jtp.park@samsung.com>
2407 M:      Andrzej Hajda <a.hajda@samsung.com>
2408 L:      linux-arm-kernel@lists.infradead.org
2409 L:      linux-media@vger.kernel.org
2410 S:      Maintained
2411 F:      drivers/media/platform/s5p-mfc/
2412
2413 ARM/SHMOBILE ARM ARCHITECTURE
2414 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2415 M:      Magnus Damm <magnus.damm@gmail.com>
2416 L:      linux-renesas-soc@vger.kernel.org
2417 S:      Supported
2418 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2420 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2421 F:      arch/arm/boot/dts/emev2*
2422 F:      arch/arm/boot/dts/gr-peach*
2423 F:      arch/arm/boot/dts/iwg20d-q7*
2424 F:      arch/arm/boot/dts/r7s*
2425 F:      arch/arm/boot/dts/r8a*
2426 F:      arch/arm/boot/dts/r9a*
2427 F:      arch/arm/boot/dts/sh*
2428 F:      arch/arm/configs/shmobile_defconfig
2429 F:      arch/arm/include/debug/renesas-scif.S
2430 F:      arch/arm/mach-shmobile/
2431 F:      drivers/soc/renesas/
2432 F:      include/linux/soc/renesas/
2433
2434 ARM/SOCFPGA ARCHITECTURE
2435 M:      Dinh Nguyen <dinguyen@kernel.org>
2436 S:      Maintained
2437 W:      http://www.rocketboards.org
2438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2439 F:      arch/arm/boot/dts/socfpga*
2440 F:      arch/arm/configs/socfpga_defconfig
2441 F:      arch/arm/mach-socfpga/
2442 F:      arch/arm64/boot/dts/altera/
2443 F:      arch/arm64/boot/dts/intel/
2444
2445 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2446 M:      Dinh Nguyen <dinguyen@kernel.org>
2447 S:      Maintained
2448 F:      drivers/clk/socfpga/
2449
2450 ARM/SOCFPGA EDAC SUPPORT
2451 M:      Thor Thayer <thor.thayer@linux.intel.com>
2452 S:      Maintained
2453 F:      drivers/edac/altera_edac.
2454
2455 ARM/SPREADTRUM SoC SUPPORT
2456 M:      Orson Zhai <orsonzhai@gmail.com>
2457 M:      Baolin Wang <baolin.wang7@gmail.com>
2458 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2459 S:      Maintained
2460 F:      arch/arm64/boot/dts/sprd
2461 N:      sprd
2462 N:      sc27xx
2463 N:      sc2731
2464
2465 ARM/STI ARCHITECTURE
2466 M:      Patrice Chotard <patrice.chotard@st.com>
2467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2468 S:      Maintained
2469 W:      http://www.stlinux.com
2470 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2471 F:      arch/arm/boot/dts/sti*
2472 F:      arch/arm/mach-sti/
2473 F:      drivers/ata/ahci_st.c
2474 F:      drivers/char/hw_random/st-rng.c
2475 F:      drivers/clocksource/arm_global_timer.c
2476 F:      drivers/clocksource/clksrc_st_lpc.c
2477 F:      drivers/cpufreq/sti-cpufreq.c
2478 F:      drivers/dma/st_fdma*
2479 F:      drivers/i2c/busses/i2c-st.c
2480 F:      drivers/media/platform/sti/c8sectpfe/
2481 F:      drivers/media/rc/st_rc.c
2482 F:      drivers/mmc/host/sdhci-st.c
2483 F:      drivers/phy/st/phy-miphy28lp.c
2484 F:      drivers/phy/st/phy-stih407-usb.c
2485 F:      drivers/pinctrl/pinctrl-st.c
2486 F:      drivers/remoteproc/st_remoteproc.c
2487 F:      drivers/remoteproc/st_slim_rproc.c
2488 F:      drivers/reset/sti/
2489 F:      drivers/rtc/rtc-st-lpc.c
2490 F:      drivers/tty/serial/st-asc.c
2491 F:      drivers/usb/dwc3/dwc3-st.c
2492 F:      drivers/usb/host/ehci-st.c
2493 F:      drivers/usb/host/ohci-st.c
2494 F:      drivers/watchdog/st_lpc_wdt.c
2495 F:      include/linux/remoteproc/st_slim_rproc.h
2496
2497 ARM/STM32 ARCHITECTURE
2498 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2499 M:      Alexandre Torgue <alexandre.torgue@st.com>
2500 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2502 S:      Maintained
2503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2504 F:      arch/arm/boot/dts/stm32*
2505 F:      arch/arm/mach-stm32/
2506 F:      drivers/clocksource/armv7m_systick.c
2507 N:      stm32
2508 N:      stm
2509
2510 ARM/Synaptics SoC support
2511 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2512 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 S:      Maintained
2515 F:      arch/arm/boot/dts/berlin*
2516 F:      arch/arm/mach-berlin/
2517 F:      arch/arm64/boot/dts/synaptics/
2518
2519 ARM/TANGO ARCHITECTURE
2520 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2521 M:      Mans Rullgard <mans@mansr.com>
2522 L:      linux-arm-kernel@lists.infradead.org
2523 S:      Odd Fixes
2524 N:      tango
2525
2526 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2527 M:      Lennert Buytenhek <kernel@wantstofly.org>
2528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2529 S:      Maintained
2530
2531 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2532 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2533 L:      linux-tegra@vger.kernel.org
2534 L:      linux-media@vger.kernel.org
2535 S:      Maintained
2536 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2537 F:      drivers/media/platform/tegra-cec/
2538
2539 ARM/TETON BGA MACHINE SUPPORT
2540 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543
2544 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2545 M:      Santosh Shilimkar <ssantosh@kernel.org>
2546 L:      linux-kernel@vger.kernel.org
2547 S:      Maintained
2548 F:      drivers/memory/*emif*
2549
2550 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2551 M:      Santosh Shilimkar <ssantosh@kernel.org>
2552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2553 S:      Maintained
2554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2555 F:      arch/arm/boot/dts/keystone-*
2556 F:      arch/arm/mach-keystone/
2557
2558 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2559 M:      Santosh Shilimkar <ssantosh@kernel.org>
2560 L:      linux-kernel@vger.kernel.org
2561 S:      Maintained
2562 F:      drivers/clk/keystone/
2563
2564 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2565 M:      Santosh Shilimkar <ssantosh@kernel.org>
2566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2567 L:      linux-kernel@vger.kernel.org
2568 S:      Maintained
2569 F:      drivers/clocksource/timer-keystone.c
2570
2571 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2572 M:      Santosh Shilimkar <ssantosh@kernel.org>
2573 L:      linux-kernel@vger.kernel.org
2574 S:      Maintained
2575 F:      drivers/power/reset/keystone-reset.c
2576
2577 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2578 M:      Tero Kristo <t-kristo@ti.com>
2579 M:      Nishanth Menon <nm@ti.com>
2580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2581 S:      Supported
2582 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2583 F:      arch/arm64/boot/dts/ti/Makefile
2584 F:      arch/arm64/boot/dts/ti/k3-*
2585 F:      include/dt-bindings/pinctrl/k3.h
2586
2587 ARM/THECUS N2100 MACHINE SUPPORT
2588 M:      Lennert Buytenhek <kernel@wantstofly.org>
2589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2590 S:      Maintained
2591
2592 ARM/TOSA MACHINE SUPPORT
2593 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2594 M:      Dirk Opfer <dirk@opfer-online.de>
2595 S:      Maintained
2596
2597 ARM/UNIPHIER ARCHITECTURE
2598 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2600 S:      Maintained
2601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2602 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2603 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2604 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2605 F:      arch/arm/boot/dts/uniphier*
2606 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2607 F:      arch/arm/mach-uniphier/
2608 F:      arch/arm/mm/cache-uniphier.c
2609 F:      arch/arm64/boot/dts/socionext/uniphier*
2610 F:      drivers/bus/uniphier-system-bus.c
2611 F:      drivers/clk/uniphier/
2612 F:      drivers/dma/uniphier-mdmac.c
2613 F:      drivers/gpio/gpio-uniphier.c
2614 F:      drivers/i2c/busses/i2c-uniphier*
2615 F:      drivers/irqchip/irq-uniphier-aidet.c
2616 F:      drivers/mmc/host/uniphier-sd.c
2617 F:      drivers/pinctrl/uniphier/
2618 F:      drivers/reset/reset-uniphier.c
2619 F:      drivers/tty/serial/8250/8250_uniphier.c
2620 N:      uniphier
2621
2622 ARM/VERSATILE EXPRESS PLATFORM
2623 M:      Liviu Dudau <liviu.dudau@arm.com>
2624 M:      Sudeep Holla <sudeep.holla@arm.com>
2625 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 S:      Maintained
2628 F:      */*/*/vexpress*
2629 F:      */*/vexpress*
2630 F:      arch/arm/boot/dts/vexpress*
2631 F:      arch/arm/mach-vexpress/
2632 F:      arch/arm64/boot/dts/arm/
2633 F:      drivers/clk/versatile/clk-vexpress-osc.c
2634 F:      drivers/clocksource/timer-versatile.c
2635 N:      mps2
2636
2637 ARM/VFP SUPPORT
2638 M:      Russell King <linux@armlinux.org.uk>
2639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2640 S:      Maintained
2641 W:      http://www.armlinux.org.uk/
2642 F:      arch/arm/vfp/
2643
2644 ARM/VOIPAC PXA270 SUPPORT
2645 M:      Marek Vasut <marek.vasut@gmail.com>
2646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2647 S:      Maintained
2648 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2649 F:      arch/arm/mach-pxa/vpac270.c
2650
2651 ARM/VT8500 ARM ARCHITECTURE
2652 M:      Tony Prisk <linux@prisktech.co.nz>
2653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2654 S:      Maintained
2655 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2656 F:      arch/arm/mach-vt8500/
2657 F:      drivers/clocksource/timer-vt8500.c
2658 F:      drivers/i2c/busses/i2c-wmt.c
2659 F:      drivers/mmc/host/wmt-sdmmc.c
2660 F:      drivers/pwm/pwm-vt8500.c
2661 F:      drivers/rtc/rtc-vt8500.c
2662 F:      drivers/tty/serial/vt8500_serial.c
2663 F:      drivers/usb/host/ehci-platform.c
2664 F:      drivers/usb/host/uhci-platform.c
2665 F:      drivers/video/fbdev/vt8500lcdfb.*
2666 F:      drivers/video/fbdev/wm8505fb*
2667 F:      drivers/video/fbdev/wmt_ge_rops.*
2668
2669 ARM/ZIPIT Z2 SUPPORT
2670 M:      Marek Vasut <marek.vasut@gmail.com>
2671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 S:      Maintained
2673 F:      arch/arm/mach-pxa/include/mach/z2.h
2674 F:      arch/arm/mach-pxa/z2.c
2675
2676 ARM/ZTE ARCHITECTURE
2677 M:      Jun Nie <jun.nie@linaro.org>
2678 M:      Shawn Guo <shawnguo@kernel.org>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681 F:      Documentation/devicetree/bindings/arm/zte.yaml
2682 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2683 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2684 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2685 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2686 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2687 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2688 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2689 F:      Documentation/devicetree/bindings/soc/zte/
2690 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2691 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2692 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2693 F:      arch/arm/boot/dts/zx2967*
2694 F:      arch/arm/mach-zx/
2695 F:      arch/arm64/boot/dts/zte/
2696 F:      drivers/clk/zte/
2697 F:      drivers/dma/zx_dma.c
2698 F:      drivers/gpio/gpio-zx.c
2699 F:      drivers/i2c/busses/i2c-zx2967.c
2700 F:      drivers/mmc/host/dw_mmc-zx.*
2701 F:      drivers/pinctrl/zte/
2702 F:      drivers/soc/zte/
2703 F:      drivers/thermal/zx2967_thermal.c
2704 F:      drivers/watchdog/zx2967_wdt.c
2705 F:      include/dt-bindings/clock/zx2967*.h
2706 F:      include/dt-bindings/soc/zte,*.h
2707 F:      sound/soc/codecs/zx_aud96p22.c
2708 F:      sound/soc/zte/
2709
2710 ARM/ZYNQ ARCHITECTURE
2711 M:      Michal Simek <michal.simek@xilinx.com>
2712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2713 S:      Supported
2714 W:      http://wiki.xilinx.com
2715 T:      git https://github.com/Xilinx/linux-xlnx.git
2716 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2717 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2718 F:      arch/arm/mach-zynq/
2719 F:      drivers/block/xsysace.c
2720 F:      drivers/clocksource/timer-cadence-ttc.c
2721 F:      drivers/cpuidle/cpuidle-zynq.c
2722 F:      drivers/edac/synopsys_edac.c
2723 F:      drivers/i2c/busses/i2c-cadence.c
2724 F:      drivers/i2c/busses/i2c-xiic.c
2725 F:      drivers/mmc/host/sdhci-of-arasan.c
2726 N:      zynq
2727 N:      xilinx
2728
2729 ARM64 PORT (AARCH64 ARCHITECTURE)
2730 M:      Catalin Marinas <catalin.marinas@arm.com>
2731 M:      Will Deacon <will@kernel.org>
2732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2733 S:      Maintained
2734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2735 F:      Documentation/arm64/
2736 F:      arch/arm64/
2737 F:      tools/testing/selftests/arm64/
2738 X:      arch/arm64/boot/dts/
2739
2740 AS3645A LED FLASH CONTROLLER DRIVER
2741 M:      Sakari Ailus <sakari.ailus@iki.fi>
2742 L:      linux-leds@vger.kernel.org
2743 S:      Maintained
2744 F:      drivers/leds/leds-as3645a.c
2745
2746 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2747 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2748 L:      linux-media@vger.kernel.org
2749 S:      Maintained
2750 T:      git git://linuxtv.org/media_tree.git
2751 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2752 F:      drivers/media/i2c/ak7375.c
2753
2754 ASAHI KASEI AK8974 DRIVER
2755 M:      Linus Walleij <linus.walleij@linaro.org>
2756 L:      linux-iio@vger.kernel.org
2757 S:      Supported
2758 W:      http://www.akm.com/
2759 F:      drivers/iio/magnetometer/ak8974.c
2760
2761 ASC7621 HARDWARE MONITOR DRIVER
2762 M:      George Joseph <george.joseph@fairview5.com>
2763 L:      linux-hwmon@vger.kernel.org
2764 S:      Maintained
2765 F:      Documentation/hwmon/asc7621.rst
2766 F:      drivers/hwmon/asc7621.c
2767
2768 ASPEED PINCTRL DRIVERS
2769 M:      Andrew Jeffery <andrew@aj.id.au>
2770 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2771 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2772 L:      linux-gpio@vger.kernel.org
2773 S:      Maintained
2774 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2775 F:      drivers/pinctrl/aspeed/
2776
2777 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2778 M:      Eddie James <eajames@linux.ibm.com>
2779 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2780 S:      Maintained
2781 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2782 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2783 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2784
2785 ASPEED VIDEO ENGINE DRIVER
2786 M:      Eddie James <eajames@linux.ibm.com>
2787 L:      linux-media@vger.kernel.org
2788 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2789 S:      Maintained
2790 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2791 F:      drivers/media/platform/aspeed-video.c
2792
2793 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2794 M:      Corentin Chary <corentin.chary@gmail.com>
2795 L:      acpi4asus-user@lists.sourceforge.net
2796 L:      platform-driver-x86@vger.kernel.org
2797 S:      Maintained
2798 W:      http://acpi4asus.sf.net
2799 F:      drivers/platform/x86/asus*.c
2800 F:      drivers/platform/x86/eeepc*.c
2801
2802 ASUS WIRELESS RADIO CONTROL DRIVER
2803 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2804 L:      platform-driver-x86@vger.kernel.org
2805 S:      Maintained
2806 F:      drivers/platform/x86/asus-wireless.c
2807
2808 ASYMMETRIC KEYS
2809 M:      David Howells <dhowells@redhat.com>
2810 L:      keyrings@vger.kernel.org
2811 S:      Maintained
2812 F:      Documentation/crypto/asymmetric-keys.txt
2813 F:      crypto/asymmetric_keys/
2814 F:      include/crypto/pkcs7.h
2815 F:      include/crypto/public_key.h
2816 F:      include/linux/verification.h
2817
2818 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2819 R:      Dan Williams <dan.j.williams@intel.com>
2820 S:      Odd fixes
2821 W:      http://sourceforge.net/projects/xscaleiop
2822 F:      Documentation/crypto/async-tx-api.txt
2823 F:      crypto/async_tx/
2824 F:      drivers/dma/
2825 F:      include/linux/async_tx.h
2826 F:      include/linux/dmaengine.h
2827
2828 AT24 EEPROM DRIVER
2829 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2830 L:      linux-i2c@vger.kernel.org
2831 S:      Maintained
2832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2833 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2834 F:      drivers/misc/eeprom/at24.c
2835
2836 ATA OVER ETHERNET (AOE) DRIVER
2837 M:      "Justin Sanders" <justin@coraid.com>
2838 S:      Supported
2839 W:      http://www.openaoe.org/
2840 F:      Documentation/admin-guide/aoe/
2841 F:      drivers/block/aoe/
2842
2843 ATHEROS 71XX/9XXX GPIO DRIVER
2844 M:      Alban Bedel <albeu@free.fr>
2845 S:      Maintained
2846 W:      https://github.com/AlbanBedel/linux
2847 T:      git git://github.com/AlbanBedel/linux
2848 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2849 F:      drivers/gpio/gpio-ath79.c
2850
2851 ATHEROS 71XX/9XXX USB PHY DRIVER
2852 M:      Alban Bedel <albeu@free.fr>
2853 S:      Maintained
2854 W:      https://github.com/AlbanBedel/linux
2855 T:      git git://github.com/AlbanBedel/linux
2856 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2857 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2858
2859 ATHEROS ATH GENERIC UTILITIES
2860 M:      Kalle Valo <kvalo@codeaurora.org>
2861 L:      linux-wireless@vger.kernel.org
2862 S:      Supported
2863 F:      drivers/net/wireless/ath/*
2864
2865 ATHEROS ATH5K WIRELESS DRIVER
2866 M:      Jiri Slaby <jirislaby@gmail.com>
2867 M:      Nick Kossifidis <mickflemm@gmail.com>
2868 M:      Luis Chamberlain <mcgrof@kernel.org>
2869 L:      linux-wireless@vger.kernel.org
2870 S:      Maintained
2871 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
2872 F:      drivers/net/wireless/ath/ath5k/
2873
2874 ATHEROS ATH6KL WIRELESS DRIVER
2875 M:      Kalle Valo <kvalo@codeaurora.org>
2876 L:      linux-wireless@vger.kernel.org
2877 S:      Supported
2878 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
2879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2880 F:      drivers/net/wireless/ath/ath6kl/
2881
2882 ATI_REMOTE2 DRIVER
2883 M:      Ville Syrjala <syrjala@sci.fi>
2884 S:      Maintained
2885 F:      drivers/input/misc/ati_remote2.c
2886
2887 ATK0110 HWMON DRIVER
2888 M:      Luca Tettamanti <kronos.it@gmail.com>
2889 L:      linux-hwmon@vger.kernel.org
2890 S:      Maintained
2891 F:      drivers/hwmon/asus_atk0110.c
2892
2893 ATLX ETHERNET DRIVERS
2894 M:      Jay Cliburn <jcliburn@gmail.com>
2895 M:      Chris Snook <chris.snook@gmail.com>
2896 L:      netdev@vger.kernel.org
2897 S:      Maintained
2898 W:      http://sourceforge.net/projects/atl1
2899 W:      http://atl1.sourceforge.net
2900 F:      drivers/net/ethernet/atheros/
2901
2902 ATM
2903 M:      Chas Williams <3chas3@gmail.com>
2904 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2905 L:      netdev@vger.kernel.org
2906 S:      Maintained
2907 W:      http://linux-atm.sourceforge.net
2908 F:      drivers/atm/
2909 F:      include/linux/atm*
2910 F:      include/uapi/linux/atm*
2911
2912 ATMEL MACB ETHERNET DRIVER
2913 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2914 S:      Supported
2915 F:      drivers/net/ethernet/cadence/
2916
2917 ATMEL MAXTOUCH DRIVER
2918 M:      Nick Dyer <nick@shmanahar.org>
2919 S:      Maintained
2920 T:      git git://github.com/ndyer/linux.git
2921 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2922 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2923
2924 ATMEL WIRELESS DRIVER
2925 M:      Simon Kelley <simon@thekelleys.org.uk>
2926 L:      linux-wireless@vger.kernel.org
2927 S:      Maintained
2928 W:      http://www.thekelleys.org.uk/atmel
2929 W:      http://atmelwlandriver.sourceforge.net/
2930 F:      drivers/net/wireless/atmel/atmel*
2931
2932 ATOMIC INFRASTRUCTURE
2933 M:      Will Deacon <will@kernel.org>
2934 M:      Peter Zijlstra <peterz@infradead.org>
2935 R:      Boqun Feng <boqun.feng@gmail.com>
2936 L:      linux-kernel@vger.kernel.org
2937 S:      Maintained
2938 F:      arch/*/include/asm/atomic*.h
2939 F:      include/*/atomic*.h
2940 F:      scripts/atomic/
2941
2942 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2943 M:      Bradley Grove <linuxdrivers@attotech.com>
2944 L:      linux-scsi@vger.kernel.org
2945 S:      Supported
2946 W:      http://www.attotech.com
2947 F:      drivers/scsi/esas2r
2948
2949 ATUSB IEEE 802.15.4 RADIO DRIVER
2950 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2951 L:      linux-wpan@vger.kernel.org
2952 S:      Maintained
2953 F:      drivers/net/ieee802154/at86rf230.h
2954 F:      drivers/net/ieee802154/atusb.c
2955 F:      drivers/net/ieee802154/atusb.h
2956
2957 AUDIT SUBSYSTEM
2958 M:      Paul Moore <paul@paul-moore.com>
2959 M:      Eric Paris <eparis@redhat.com>
2960 L:      linux-audit@redhat.com (moderated for non-subscribers)
2961 S:      Supported
2962 W:      https://github.com/linux-audit
2963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2964 F:      include/linux/audit.h
2965 F:      include/uapi/linux/audit.h
2966 F:      kernel/audit*
2967
2968 AUXILIARY DISPLAY DRIVERS
2969 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2970 S:      Maintained
2971 F:      drivers/auxdisplay/
2972 F:      include/linux/cfag12864b.h
2973
2974 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2975 M:      Andreas Klinger <ak@it-klinger.de>
2976 L:      linux-iio@vger.kernel.org
2977 S:      Maintained
2978 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2979 F:      drivers/iio/adc/hx711.c
2980
2981 AX.25 NETWORK LAYER
2982 M:      Ralf Baechle <ralf@linux-mips.org>
2983 L:      linux-hams@vger.kernel.org
2984 S:      Maintained
2985 W:      http://www.linux-ax25.org/
2986 F:      include/net/ax25.h
2987 F:      include/uapi/linux/ax25.h
2988 F:      net/ax25/
2989
2990 AXENTIA ARM DEVICES
2991 M:      Peter Rosin <peda@axentia.se>
2992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2993 S:      Maintained
2994 F:      arch/arm/boot/dts/at91-linea.dtsi
2995 F:      arch/arm/boot/dts/at91-natte.dtsi
2996 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2997 F:      arch/arm/boot/dts/at91-tse850-3.dts
2998
2999 AXENTIA ASOC DRIVERS
3000 M:      Peter Rosin <peda@axentia.se>
3001 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3002 S:      Maintained
3003 F:      Documentation/devicetree/bindings/sound/axentia,*
3004 F:      sound/soc/atmel/tse850-pcm5142.c
3005
3006 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3007 M:      Nuno Sá <nuno.sa@analog.com>
3008 L:      linux-hwmon@vger.kernel.org
3009 S:      Supported
3010 W:      http://ez.analog.com/community/linux-device-drivers
3011 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3012 F:      drivers/hwmon/axi-fan-control.c
3013
3014 AXXIA I2C CONTROLLER
3015 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3016 L:      linux-i2c@vger.kernel.org
3017 S:      Maintained
3018 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3019 F:      drivers/i2c/busses/i2c-axxia.c
3020
3021 AZ6007 DVB DRIVER
3022 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3023 L:      linux-media@vger.kernel.org
3024 S:      Maintained
3025 W:      https://linuxtv.org
3026 T:      git git://linuxtv.org/media_tree.git
3027 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3028
3029 AZTECH FM RADIO RECEIVER DRIVER
3030 M:      Hans Verkuil <hverkuil@xs4all.nl>
3031 L:      linux-media@vger.kernel.org
3032 S:      Maintained
3033 W:      https://linuxtv.org
3034 T:      git git://linuxtv.org/media_tree.git
3035 F:      drivers/media/radio/radio-aztech*
3036
3037 B43 WIRELESS DRIVER
3038 L:      linux-wireless@vger.kernel.org
3039 L:      b43-dev@lists.infradead.org
3040 S:      Odd Fixes
3041 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3042 F:      drivers/net/wireless/broadcom/b43/
3043
3044 B43LEGACY WIRELESS DRIVER
3045 M:      Larry Finger <Larry.Finger@lwfinger.net>
3046 L:      linux-wireless@vger.kernel.org
3047 L:      b43-dev@lists.infradead.org
3048 S:      Maintained
3049 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3050 F:      drivers/net/wireless/broadcom/b43legacy/
3051
3052 BACKLIGHT CLASS/SUBSYSTEM
3053 M:      Lee Jones <lee.jones@linaro.org>
3054 M:      Daniel Thompson <daniel.thompson@linaro.org>
3055 M:      Jingoo Han <jingoohan1@gmail.com>
3056 L:      dri-devel@lists.freedesktop.org
3057 S:      Maintained
3058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3059 F:      Documentation/ABI/stable/sysfs-class-backlight
3060 F:      Documentation/ABI/testing/sysfs-class-backlight
3061 F:      Documentation/devicetree/bindings/leds/backlight
3062 F:      drivers/video/backlight/
3063 F:      include/linux/backlight.h
3064 F:      include/linux/pwm_backlight.h
3065
3066 BATMAN ADVANCED
3067 M:      Marek Lindner <mareklindner@neomailbox.ch>
3068 M:      Simon Wunderlich <sw@simonwunderlich.de>
3069 M:      Antonio Quartulli <a@unstable.cc>
3070 M:      Sven Eckelmann <sven@narfation.org>
3071 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3072 S:      Maintained
3073 W:      https://www.open-mesh.org/
3074 Q:      https://patchwork.open-mesh.org/project/batman/list/
3075 B:      https://www.open-mesh.org/projects/batman-adv/issues
3076 C:      irc://chat.freenode.net/batman
3077 T:      git https://git.open-mesh.org/linux-merge.git
3078 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3079 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3080 F:      Documentation/networking/batman-adv.rst
3081 F:      include/uapi/linux/batadv_packet.h
3082 F:      include/uapi/linux/batman_adv.h
3083 F:      net/batman-adv/
3084
3085 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3086 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3087 L:      linux-hams@vger.kernel.org
3088 S:      Maintained
3089 W:      http://www.baycom.org/~tom/ham/ham.html
3090 F:      drivers/net/hamradio/baycom*
3091
3092 BCACHE (BLOCK LAYER CACHE)
3093 M:      Coly Li <colyli@suse.de>
3094 M:      Kent Overstreet <kent.overstreet@gmail.com>
3095 L:      linux-bcache@vger.kernel.org
3096 S:      Maintained
3097 W:      http://bcache.evilpiepirate.org
3098 C:      irc://irc.oftc.net/bcache
3099 F:      drivers/md/bcache/
3100
3101 BDISP ST MEDIA DRIVER
3102 M:      Fabien Dessenne <fabien.dessenne@st.com>
3103 L:      linux-media@vger.kernel.org
3104 S:      Supported
3105 W:      https://linuxtv.org
3106 T:      git git://linuxtv.org/media_tree.git
3107 F:      drivers/media/platform/sti/bdisp
3108
3109 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3110 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3111 L:      netdev@vger.kernel.org
3112 S:      Maintained
3113 F:      drivers/net/ethernet/ec_bhf.c
3114
3115 BEFS FILE SYSTEM
3116 M:      Luis de Bethencourt <luisbg@kernel.org>
3117 M:      Salah Triki <salah.triki@gmail.com>
3118 S:      Maintained
3119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3120 F:      Documentation/filesystems/befs.rst
3121 F:      fs/befs/
3122
3123 BFQ I/O SCHEDULER
3124 M:      Paolo Valente <paolo.valente@linaro.org>
3125 M:      Jens Axboe <axboe@kernel.dk>
3126 L:      linux-block@vger.kernel.org
3127 S:      Maintained
3128 F:      Documentation/block/bfq-iosched.rst
3129 F:      block/bfq-*
3130
3131 BFS FILE SYSTEM
3132 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3133 S:      Maintained
3134 F:      Documentation/filesystems/bfs.rst
3135 F:      fs/bfs/
3136 F:      include/uapi/linux/bfs_fs.h
3137
3138 BLINKM RGB LED DRIVER
3139 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3140 S:      Maintained
3141 F:      drivers/leds/leds-blinkm.c
3142
3143 BLOCK LAYER
3144 M:      Jens Axboe <axboe@kernel.dk>
3145 L:      linux-block@vger.kernel.org
3146 S:      Maintained
3147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3148 F:      block/
3149 F:      drivers/block/
3150 F:      kernel/trace/blktrace.c
3151 F:      lib/sbitmap.c
3152
3153 BLOCK2MTD DRIVER
3154 M:      Joern Engel <joern@lazybastard.org>
3155 L:      linux-mtd@lists.infradead.org
3156 S:      Maintained
3157 F:      drivers/mtd/devices/block2mtd.c
3158
3159 BLUETOOTH DRIVERS
3160 M:      Marcel Holtmann <marcel@holtmann.org>
3161 M:      Johan Hedberg <johan.hedberg@gmail.com>
3162 L:      linux-bluetooth@vger.kernel.org
3163 S:      Maintained
3164 W:      http://www.bluez.org/
3165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3167 F:      drivers/bluetooth/
3168
3169 BLUETOOTH SUBSYSTEM
3170 M:      Marcel Holtmann <marcel@holtmann.org>
3171 M:      Johan Hedberg <johan.hedberg@gmail.com>
3172 L:      linux-bluetooth@vger.kernel.org
3173 S:      Maintained
3174 W:      http://www.bluez.org/
3175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3177 F:      include/net/bluetooth/
3178 F:      net/bluetooth/
3179
3180 BONDING DRIVER
3181 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3182 M:      Veaceslav Falico <vfalico@gmail.com>
3183 M:      Andy Gospodarek <andy@greyhouse.net>
3184 L:      netdev@vger.kernel.org
3185 S:      Supported
3186 W:      http://sourceforge.net/projects/bonding/
3187 F:      drivers/net/bonding/
3188 F:      include/uapi/linux/if_bonding.h
3189
3190 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3191 M:      Dan Robertson <dan@dlrobertson.com>
3192 L:      linux-iio@vger.kernel.org
3193 S:      Maintained
3194 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3195 F:      drivers/iio/accel/bma400*
3196
3197 BPF (Safe dynamic programs and tools)
3198 M:      Alexei Starovoitov <ast@kernel.org>
3199 M:      Daniel Borkmann <daniel@iogearbox.net>
3200 R:      Martin KaFai Lau <kafai@fb.com>
3201 R:      Song Liu <songliubraving@fb.com>
3202 R:      Yonghong Song <yhs@fb.com>
3203 R:      Andrii Nakryiko <andriin@fb.com>
3204 R:      John Fastabend <john.fastabend@gmail.com>
3205 R:      KP Singh <kpsingh@chromium.org>
3206 L:      netdev@vger.kernel.org
3207 L:      bpf@vger.kernel.org
3208 S:      Supported
3209 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3212 F:      Documentation/bpf/
3213 F:      Documentation/networking/filter.rst
3214 F:      arch/*/net/*
3215 F:      include/linux/bpf*
3216 F:      include/linux/filter.h
3217 F:      include/trace/events/xdp.h
3218 F:      include/uapi/linux/bpf*
3219 F:      include/uapi/linux/filter.h
3220 F:      kernel/bpf/
3221 F:      kernel/trace/bpf_trace.c
3222 F:      lib/test_bpf.c
3223 F:      net/bpf/
3224 F:      net/core/filter.c
3225 F:      net/sched/act_bpf.c
3226 F:      net/sched/cls_bpf.c
3227 F:      samples/bpf/
3228 F:      tools/bpf/
3229 F:      tools/lib/bpf/
3230 F:      tools/testing/selftests/bpf/
3231 N:      bpf
3232 K:      bpf
3233
3234 BPF JIT for ARM
3235 M:      Shubham Bansal <illusionist.neo@gmail.com>
3236 L:      netdev@vger.kernel.org
3237 L:      bpf@vger.kernel.org
3238 S:      Maintained
3239 F:      arch/arm/net/
3240
3241 BPF JIT for ARM64
3242 M:      Daniel Borkmann <daniel@iogearbox.net>
3243 M:      Alexei Starovoitov <ast@kernel.org>
3244 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3245 L:      netdev@vger.kernel.org
3246 L:      bpf@vger.kernel.org
3247 S:      Supported
3248 F:      arch/arm64/net/
3249
3250 BPF JIT for MIPS (32-BIT AND 64-BIT)
3251 M:      Paul Burton <paulburton@kernel.org>
3252 L:      netdev@vger.kernel.org
3253 L:      bpf@vger.kernel.org
3254 S:      Maintained
3255 F:      arch/mips/net/
3256
3257 BPF JIT for NFP NICs
3258 M:      Jakub Kicinski <kuba@kernel.org>
3259 L:      netdev@vger.kernel.org
3260 L:      bpf@vger.kernel.org
3261 S:      Supported
3262 F:      drivers/net/ethernet/netronome/nfp/bpf/
3263
3264 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3265 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3266 M:      Sandipan Das <sandipan@linux.ibm.com>
3267 L:      netdev@vger.kernel.org
3268 L:      bpf@vger.kernel.org
3269 S:      Maintained
3270 F:      arch/powerpc/net/
3271
3272 BPF JIT for RISC-V (32-bit)
3273 M:      Luke Nelson <luke.r.nels@gmail.com>
3274 M:      Xi Wang <xi.wang@gmail.com>
3275 L:      netdev@vger.kernel.org
3276 L:      bpf@vger.kernel.org
3277 S:      Maintained
3278 F:      arch/riscv/net/
3279 X:      arch/riscv/net/bpf_jit_comp64.c
3280
3281 BPF JIT for RISC-V (64-bit)
3282 M:      Björn Töpel <bjorn.topel@gmail.com>
3283 L:      netdev@vger.kernel.org
3284 L:      bpf@vger.kernel.org
3285 S:      Maintained
3286 F:      arch/riscv/net/
3287 X:      arch/riscv/net/bpf_jit_comp32.c
3288
3289 BPF JIT for S390
3290 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3291 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3292 M:      Vasily Gorbik <gor@linux.ibm.com>
3293 L:      netdev@vger.kernel.org
3294 L:      bpf@vger.kernel.org
3295 S:      Maintained
3296 F:      arch/s390/net/
3297 X:      arch/s390/net/pnet.c
3298
3299 BPF JIT for SPARC (32-BIT AND 64-BIT)
3300 M:      David S. Miller <davem@davemloft.net>
3301 L:      netdev@vger.kernel.org
3302 L:      bpf@vger.kernel.org
3303 S:      Maintained
3304 F:      arch/sparc/net/
3305
3306 BPF JIT for X86 32-BIT
3307 M:      Wang YanQing <udknight@gmail.com>
3308 L:      netdev@vger.kernel.org
3309 L:      bpf@vger.kernel.org
3310 S:      Maintained
3311 F:      arch/x86/net/bpf_jit_comp32.c
3312
3313 BPF JIT for X86 64-BIT
3314 M:      Alexei Starovoitov <ast@kernel.org>
3315 M:      Daniel Borkmann <daniel@iogearbox.net>
3316 L:      netdev@vger.kernel.org
3317 L:      bpf@vger.kernel.org
3318 S:      Supported
3319 F:      arch/x86/net/
3320 X:      arch/x86/net/bpf_jit_comp32.c
3321
3322 BROADCOM B44 10/100 ETHERNET DRIVER
3323 M:      Michael Chan <michael.chan@broadcom.com>
3324 L:      netdev@vger.kernel.org
3325 S:      Supported
3326 F:      drivers/net/ethernet/broadcom/b44.*
3327
3328 BROADCOM B53 ETHERNET SWITCH DRIVER
3329 M:      Florian Fainelli <f.fainelli@gmail.com>
3330 L:      netdev@vger.kernel.org
3331 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3332 S:      Supported
3333 F:      drivers/net/dsa/b53/*
3334 F:      include/linux/platform_data/b53.h
3335
3336 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3337 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3338 L:      bcm-kernel-feedback-list@broadcom.com
3339 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3341 S:      Maintained
3342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3343 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3344 F:      drivers/pci/controller/pcie-brcmstb.c
3345 F:      drivers/staging/vc04_services
3346 N:      bcm2711
3347 N:      bcm2835
3348
3349 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3350 M:      Florian Fainelli <f.fainelli@gmail.com>
3351 M:      Ray Jui <rjui@broadcom.com>
3352 M:      Scott Branden <sbranden@broadcom.com>
3353 M:      bcm-kernel-feedback-list@broadcom.com
3354 S:      Maintained
3355 T:      git git://github.com/broadcom/mach-bcm
3356 F:      arch/arm/mach-bcm/
3357 N:      bcm281*
3358 N:      bcm113*
3359 N:      bcm216*
3360 N:      kona
3361
3362 BROADCOM BCM47XX MIPS ARCHITECTURE
3363 M:      Hauke Mehrtens <hauke@hauke-m.de>
3364 M:      Rafał Miłecki <zajec5@gmail.com>
3365 L:      linux-mips@vger.kernel.org
3366 S:      Maintained
3367 F:      Documentation/devicetree/bindings/mips/brcm/
3368 F:      arch/mips/bcm47xx/*
3369 F:      arch/mips/include/asm/mach-bcm47xx/*
3370
3371 BROADCOM BCM5301X ARM ARCHITECTURE
3372 M:      Hauke Mehrtens <hauke@hauke-m.de>
3373 M:      Rafał Miłecki <zajec5@gmail.com>
3374 M:      bcm-kernel-feedback-list@broadcom.com
3375 L:      linux-arm-kernel@lists.infradead.org
3376 S:      Maintained
3377 F:      arch/arm/boot/dts/bcm470*
3378 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3379 F:      arch/arm/boot/dts/bcm953012*
3380 F:      arch/arm/mach-bcm/bcm_5301x.c
3381
3382 BROADCOM BCM53573 ARM ARCHITECTURE
3383 M:      Rafał Miłecki <rafal@milecki.pl>
3384 L:      bcm-kernel-feedback-list@broadcom.com
3385 L:      linux-arm-kernel@lists.infradead.org
3386 S:      Maintained
3387 F:      arch/arm/boot/dts/bcm47189*
3388 F:      arch/arm/boot/dts/bcm53573*
3389
3390 BROADCOM BCM63XX ARM ARCHITECTURE
3391 M:      Florian Fainelli <f.fainelli@gmail.com>
3392 M:      bcm-kernel-feedback-list@broadcom.com
3393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3394 S:      Maintained
3395 T:      git git://github.com/broadcom/stblinux.git
3396 N:      bcm63xx
3397
3398 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3399 M:      Kevin Cernekee <cernekee@gmail.com>
3400 L:      linux-usb@vger.kernel.org
3401 S:      Maintained
3402 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3403
3404 BROADCOM BCM7XXX ARM ARCHITECTURE
3405 M:      Florian Fainelli <f.fainelli@gmail.com>
3406 M:      bcm-kernel-feedback-list@broadcom.com
3407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3408 S:      Maintained
3409 T:      git git://github.com/broadcom/stblinux.git
3410 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3411 F:      arch/arm/boot/dts/bcm7*.dts*
3412 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3413 F:      arch/arm/mach-bcm/*brcmstb*
3414 F:      arch/arm/mm/cache-b15-rac.c
3415 F:      drivers/bus/brcmstb_gisb.c
3416 F:      drivers/pci/controller/pcie-brcmstb.c
3417 N:      brcmstb
3418
3419 BROADCOM BMIPS CPUFREQ DRIVER
3420 M:      Markus Mayer <mmayer@broadcom.com>
3421 M:      bcm-kernel-feedback-list@broadcom.com
3422 L:      linux-pm@vger.kernel.org
3423 S:      Maintained
3424 F:      drivers/cpufreq/bmips-cpufreq.c
3425
3426 BROADCOM BMIPS MIPS ARCHITECTURE
3427 M:      Florian Fainelli <f.fainelli@gmail.com>
3428 L:      bcm-kernel-feedback-list@broadcom.com
3429 L:      linux-mips@vger.kernel.org
3430 S:      Maintained
3431 T:      git git://github.com/broadcom/stblinux.git
3432 F:      arch/mips/bmips/*
3433 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3434 F:      arch/mips/include/asm/mach-bmips/*
3435 F:      arch/mips/kernel/*bmips*
3436 F:      drivers/irqchip/irq-bcm63*
3437 F:      drivers/irqchip/irq-bcm7*
3438 F:      drivers/irqchip/irq-brcmstb*
3439 F:      include/linux/bcm963xx_nvram.h
3440 F:      include/linux/bcm963xx_tag.h
3441
3442 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3443 M:      Rasesh Mody <rmody@marvell.com>
3444 M:      GR-Linux-NIC-Dev@marvell.com
3445 L:      netdev@vger.kernel.org
3446 S:      Supported
3447 F:      drivers/net/ethernet/broadcom/bnx2.*
3448 F:      drivers/net/ethernet/broadcom/bnx2_*
3449
3450 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3451 M:      QLogic-Storage-Upstream@qlogic.com
3452 L:      linux-scsi@vger.kernel.org
3453 S:      Supported
3454 F:      drivers/scsi/bnx2fc/
3455
3456 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3457 M:      QLogic-Storage-Upstream@qlogic.com
3458 L:      linux-scsi@vger.kernel.org
3459 S:      Supported
3460 F:      drivers/scsi/bnx2i/
3461
3462 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3463 M:      Ariel Elior <aelior@marvell.com>
3464 M:      Sudarsana Kalluru <skalluru@marvell.com>
3465 M:      GR-everest-linux-l2@marvell.com
3466 L:      netdev@vger.kernel.org
3467 S:      Supported
3468 F:      drivers/net/ethernet/broadcom/bnx2x/
3469
3470 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3471 M:      Michael Chan <michael.chan@broadcom.com>
3472 L:      netdev@vger.kernel.org
3473 S:      Supported
3474 F:      drivers/net/ethernet/broadcom/bnxt/
3475
3476 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3477 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3478 M:      Franky Lin <franky.lin@broadcom.com>
3479 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3480 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3481 M:      Wright Feng <wright.feng@cypress.com>
3482 L:      linux-wireless@vger.kernel.org
3483 L:      brcm80211-dev-list.pdl@broadcom.com
3484 L:      brcm80211-dev-list@cypress.com
3485 S:      Supported
3486 F:      drivers/net/wireless/broadcom/brcm80211/
3487
3488 BROADCOM BRCMSTB GPIO DRIVER
3489 M:      Gregory Fong <gregory.0xf0@gmail.com>
3490 L:      bcm-kernel-feedback-list@broadcom.com
3491 S:      Supported
3492 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3493 F:      drivers/gpio/gpio-brcmstb.c
3494
3495 BROADCOM BRCMSTB I2C DRIVER
3496 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3497 L:      linux-i2c@vger.kernel.org
3498 L:      bcm-kernel-feedback-list@broadcom.com
3499 S:      Supported
3500 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3501 F:      drivers/i2c/busses/i2c-brcmstb.c
3502
3503 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3504 M:      Al Cooper <alcooperx@gmail.com>
3505 L:      linux-kernel@vger.kernel.org
3506 L:      bcm-kernel-feedback-list@broadcom.com
3507 S:      Maintained
3508 F:      drivers/phy/broadcom/phy-brcm-usb*
3509
3510 BROADCOM GENET ETHERNET DRIVER
3511 M:      Doug Berger <opendmb@gmail.com>
3512 M:      Florian Fainelli <f.fainelli@gmail.com>
3513 L:      bcm-kernel-feedback-list@broadcom.com
3514 L:      netdev@vger.kernel.org
3515 S:      Supported
3516 F:      drivers/net/ethernet/broadcom/genet/
3517
3518 BROADCOM IPROC ARM ARCHITECTURE
3519 M:      Ray Jui <rjui@broadcom.com>
3520 M:      Scott Branden <sbranden@broadcom.com>
3521 M:      bcm-kernel-feedback-list@broadcom.com
3522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3523 S:      Maintained
3524 T:      git git://github.com/broadcom/cygnus-linux.git
3525 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3526 F:      arch/arm64/boot/dts/broadcom/stingray/*
3527 F:      drivers/clk/bcm/clk-ns*
3528 F:      drivers/clk/bcm/clk-sr*
3529 F:      drivers/pinctrl/bcm/pinctrl-ns*
3530 F:      include/dt-bindings/clock/bcm-sr*
3531 N:      iproc
3532 N:      cygnus
3533 N:      bcm[-_]nsp
3534 N:      bcm9113*
3535 N:      bcm9583*
3536 N:      bcm9585*
3537 N:      bcm9586*
3538 N:      bcm988312
3539 N:      bcm113*
3540 N:      bcm583*
3541 N:      bcm585*
3542 N:      bcm586*
3543 N:      bcm88312
3544 N:      hr2
3545 N:      stingray
3546
3547 BROADCOM KONA GPIO DRIVER
3548 M:      Ray Jui <rjui@broadcom.com>
3549 L:      bcm-kernel-feedback-list@broadcom.com
3550 S:      Supported
3551 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3552 F:      drivers/gpio/gpio-bcm-kona.c
3553
3554 BROADCOM NETXTREME-E ROCE DRIVER
3555 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3556 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3557 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3558 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3559 L:      linux-rdma@vger.kernel.org
3560 S:      Supported
3561 W:      http://www.broadcom.com
3562 F:      drivers/infiniband/hw/bnxt_re/
3563 F:      include/uapi/rdma/bnxt_re-abi.h
3564
3565 BROADCOM NVRAM DRIVER
3566 M:      Rafał Miłecki <zajec5@gmail.com>
3567 L:      linux-mips@vger.kernel.org
3568 S:      Maintained
3569 F:      drivers/firmware/broadcom/*
3570
3571 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3572 M:      Rafał Miłecki <zajec5@gmail.com>
3573 L:      linux-wireless@vger.kernel.org
3574 S:      Maintained
3575 F:      drivers/bcma/
3576 F:      include/linux/bcma/
3577
3578 BROADCOM SPI DRIVER
3579 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3580 M:      bcm-kernel-feedback-list@broadcom.com
3581 S:      Maintained
3582 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3583 F:      drivers/spi/spi-bcm-qspi.*
3584 F:      drivers/spi/spi-brcmstb-qspi.c
3585 F:      drivers/spi/spi-iproc-qspi.c
3586
3587 BROADCOM STB AVS CPUFREQ DRIVER
3588 M:      Markus Mayer <mmayer@broadcom.com>
3589 M:      bcm-kernel-feedback-list@broadcom.com
3590 L:      linux-pm@vger.kernel.org
3591 S:      Maintained
3592 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3593 F:      drivers/cpufreq/brcmstb*
3594
3595 BROADCOM STB AVS TMON DRIVER
3596 M:      Markus Mayer <mmayer@broadcom.com>
3597 M:      bcm-kernel-feedback-list@broadcom.com
3598 L:      linux-pm@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3601 F:      drivers/thermal/broadcom/brcmstb*
3602
3603 BROADCOM STB DPFE DRIVER
3604 M:      Markus Mayer <mmayer@broadcom.com>
3605 M:      bcm-kernel-feedback-list@broadcom.com
3606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3607 S:      Maintained
3608 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3609 F:      drivers/memory/brcmstb_dpfe.c
3610
3611 BROADCOM STB NAND FLASH DRIVER
3612 M:      Brian Norris <computersforpeace@gmail.com>
3613 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3614 L:      linux-mtd@lists.infradead.org
3615 L:      bcm-kernel-feedback-list@broadcom.com
3616 S:      Maintained
3617 F:      drivers/mtd/nand/raw/brcmnand/
3618
3619 BROADCOM SYSTEMPORT ETHERNET DRIVER
3620 M:      Florian Fainelli <f.fainelli@gmail.com>
3621 L:      bcm-kernel-feedback-list@broadcom.com
3622 L:      netdev@vger.kernel.org
3623 S:      Supported
3624 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3625
3626 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3627 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3628 M:      Prashant Sreedharan <prashant@broadcom.com>
3629 M:      Michael Chan <mchan@broadcom.com>
3630 L:      netdev@vger.kernel.org
3631 S:      Supported
3632 F:      drivers/net/ethernet/broadcom/tg3.*
3633
3634 BROCADE BFA FC SCSI DRIVER
3635 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3636 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3637 L:      linux-scsi@vger.kernel.org
3638 S:      Supported
3639 F:      drivers/scsi/bfa/
3640
3641 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3642 M:      Rasesh Mody <rmody@marvell.com>
3643 M:      Sudarsana Kalluru <skalluru@marvell.com>
3644 M:      GR-Linux-NIC-Dev@marvell.com
3645 L:      netdev@vger.kernel.org
3646 S:      Supported
3647 F:      drivers/net/ethernet/brocade/bna/
3648
3649 BSG (block layer generic sg v4 driver)
3650 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3651 L:      linux-scsi@vger.kernel.org
3652 S:      Supported
3653 F:      block/bsg.c
3654 F:      include/linux/bsg.h
3655 F:      include/uapi/linux/bsg.h
3656
3657 BT87X AUDIO DRIVER
3658 M:      Clemens Ladisch <clemens@ladisch.de>
3659 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3660 S:      Maintained
3661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3662 F:      Documentation/sound/cards/bt87x.rst
3663 F:      sound/pci/bt87x.c
3664
3665 BT8XXGPIO DRIVER
3666 M:      Michael Buesch <m@bues.ch>
3667 S:      Maintained
3668 W:      http://bu3sch.de/btgpio.php
3669 F:      drivers/gpio/gpio-bt8xx.c
3670
3671 BTRFS FILE SYSTEM
3672 M:      Chris Mason <clm@fb.com>
3673 M:      Josef Bacik <josef@toxicpanda.com>
3674 M:      David Sterba <dsterba@suse.com>
3675 L:      linux-btrfs@vger.kernel.org
3676 S:      Maintained
3677 W:      http://btrfs.wiki.kernel.org/
3678 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3680 F:      Documentation/filesystems/btrfs.rst
3681 F:      fs/btrfs/
3682 F:      include/linux/btrfs*
3683 F:      include/uapi/linux/btrfs*
3684
3685 BTTV VIDEO4LINUX DRIVER
3686 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3687 L:      linux-media@vger.kernel.org
3688 S:      Odd fixes
3689 W:      https://linuxtv.org
3690 T:      git git://linuxtv.org/media_tree.git
3691 F:      Documentation/driver-api/media/drivers/bttv*
3692 F:      drivers/media/pci/bt8xx/bttv*
3693
3694 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3695 M:      Chanwoo Choi <cw00.choi@samsung.com>
3696 L:      linux-pm@vger.kernel.org
3697 L:      linux-samsung-soc@vger.kernel.org
3698 S:      Maintained
3699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3700 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3701 F:      drivers/devfreq/exynos-bus.c
3702
3703 BUSLOGIC SCSI DRIVER
3704 M:      Khalid Aziz <khalid@gonehiking.org>
3705 L:      linux-scsi@vger.kernel.org
3706 S:      Maintained
3707 F:      drivers/scsi/BusLogic.*
3708 F:      drivers/scsi/FlashPoint.*
3709
3710 C-MEDIA CMI8788 DRIVER
3711 M:      Clemens Ladisch <clemens@ladisch.de>
3712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3713 S:      Maintained
3714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3715 F:      sound/pci/oxygen/
3716
3717 C-SKY ARCHITECTURE
3718 M:      Guo Ren <guoren@kernel.org>
3719 L:      linux-csky@vger.kernel.org
3720 S:      Supported
3721 T:      git https://github.com/c-sky/csky-linux.git
3722 F:      Documentation/devicetree/bindings/csky/
3723 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3724 F:      Documentation/devicetree/bindings/timer/csky,*
3725 F:      arch/csky/
3726 F:      drivers/clocksource/timer-gx6605s.c
3727 F:      drivers/clocksource/timer-mp-csky.c
3728 F:      drivers/irqchip/irq-csky-*
3729 N:      csky
3730 K:      csky
3731
3732 C6X ARCHITECTURE
3733 M:      Mark Salter <msalter@redhat.com>
3734 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3735 L:      linux-c6x-dev@linux-c6x.org
3736 S:      Maintained
3737 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3738 F:      arch/c6x/
3739
3740 CA8210 IEEE-802.15.4 RADIO DRIVER
3741 M:      Harry Morris <h.morris@cascoda.com>
3742 L:      linux-wpan@vger.kernel.org
3743 S:      Maintained
3744 W:      https://github.com/Cascoda/ca8210-linux.git
3745 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3746 F:      drivers/net/ieee802154/ca8210.c
3747
3748 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3749 M:      David Howells <dhowells@redhat.com>
3750 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3751 S:      Supported
3752 F:      Documentation/filesystems/caching/cachefiles.rst
3753 F:      fs/cachefiles/
3754
3755 CADENCE MIPI-CSI2 BRIDGES
3756 M:      Maxime Ripard <mripard@kernel.org>
3757 L:      linux-media@vger.kernel.org
3758 S:      Maintained
3759 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3760 F:      drivers/media/platform/cadence/cdns-csi2*
3761
3762 CADENCE NAND DRIVER
3763 M:      Piotr Sroka <piotrs@cadence.com>
3764 L:      linux-mtd@lists.infradead.org
3765 S:      Maintained
3766 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3767 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3768
3769 CADET FM/AM RADIO RECEIVER DRIVER
3770 M:      Hans Verkuil <hverkuil@xs4all.nl>
3771 L:      linux-media@vger.kernel.org
3772 S:      Maintained
3773 W:      https://linuxtv.org
3774 T:      git git://linuxtv.org/media_tree.git
3775 F:      drivers/media/radio/radio-cadet*
3776
3777 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3778 M:      Jonathan Corbet <corbet@lwn.net>
3779 L:      linux-media@vger.kernel.org
3780 S:      Maintained
3781 T:      git git://linuxtv.org/media_tree.git
3782 F:      Documentation/admin-guide/media/cafe_ccic*
3783 F:      drivers/media/platform/marvell-ccic/
3784
3785 CAIF NETWORK LAYER
3786 L:      netdev@vger.kernel.org
3787 S:      Orphan
3788 F:      Documentation/networking/caif/
3789 F:      drivers/net/caif/
3790 F:      include/net/caif/
3791 F:      include/uapi/linux/caif/
3792 F:      net/caif/
3793
3794 CAKE QDISC
3795 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3796 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3797 S:      Maintained
3798 F:      net/sched/sch_cake.c
3799
3800 CAN NETWORK DRIVERS
3801 M:      Wolfgang Grandegger <wg@grandegger.com>
3802 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3803 L:      linux-can@vger.kernel.org
3804 S:      Maintained
3805 W:      https://github.com/linux-can
3806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3808 F:      Documentation/devicetree/bindings/net/can/
3809 F:      drivers/net/can/
3810 F:      include/linux/can/dev.h
3811 F:      include/linux/can/led.h
3812 F:      include/linux/can/platform/
3813 F:      include/linux/can/rx-offload.h
3814 F:      include/uapi/linux/can/error.h
3815 F:      include/uapi/linux/can/netlink.h
3816 F:      include/uapi/linux/can/vxcan.h
3817
3818 CAN NETWORK LAYER
3819 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3820 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3821 L:      linux-can@vger.kernel.org
3822 S:      Maintained
3823 W:      https://github.com/linux-can
3824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3826 F:      Documentation/networking/can.rst
3827 F:      include/linux/can/core.h
3828 F:      include/linux/can/skb.h
3829 F:      include/net/netns/can.h
3830 F:      include/uapi/linux/can.h
3831 F:      include/uapi/linux/can/bcm.h
3832 F:      include/uapi/linux/can/gw.h
3833 F:      include/uapi/linux/can/raw.h
3834 F:      net/can/
3835
3836 CAN-J1939 NETWORK LAYER
3837 M:      Robin van der Gracht <robin@protonic.nl>
3838 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3839 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3840 L:      linux-can@vger.kernel.org
3841 S:      Maintained
3842 F:      Documentation/networking/j1939.rst
3843 F:      include/uapi/linux/can/j1939.h
3844 F:      net/can/j1939/
3845
3846 CAPABILITIES
3847 M:      Serge Hallyn <serge@hallyn.com>
3848 L:      linux-security-module@vger.kernel.org
3849 S:      Supported
3850 F:      include/linux/capability.h
3851 F:      include/uapi/linux/capability.h
3852 F:      kernel/capability.c
3853 F:      security/commoncap.c
3854
3855 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3856 M:      Kevin Tsai <ktsai@capellamicro.com>
3857 S:      Maintained
3858 F:      drivers/iio/light/cm*
3859
3860 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3861 M:      Christian Lamparter <chunkeey@googlemail.com>
3862 L:      linux-wireless@vger.kernel.org
3863 S:      Maintained
3864 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
3865 F:      drivers/net/wireless/ath/carl9170/
3866
3867 CAVIUM I2C DRIVER
3868 M:      Robert Richter <rrichter@marvell.com>
3869 S:      Supported
3870 W:      http://www.marvell.com
3871 F:      drivers/i2c/busses/i2c-octeon*
3872 F:      drivers/i2c/busses/i2c-thunderx*
3873
3874 CAVIUM LIQUIDIO NETWORK DRIVER
3875 M:      Derek Chickles <dchickles@marvell.com>
3876 M:      Satanand Burla <sburla@marvell.com>
3877 M:      Felix Manlunas <fmanlunas@marvell.com>
3878 L:      netdev@vger.kernel.org
3879 S:      Supported
3880 W:      http://www.marvell.com
3881 F:      drivers/net/ethernet/cavium/liquidio/
3882
3883 CAVIUM MMC DRIVER
3884 M:      Robert Richter <rrichter@marvell.com>
3885 S:      Supported
3886 W:      http://www.marvell.com
3887 F:      drivers/mmc/host/cavium*
3888
3889 CAVIUM OCTEON-TX CRYPTO DRIVER
3890 M:      George Cherian <gcherian@marvell.com>
3891 L:      linux-crypto@vger.kernel.org
3892 S:      Supported
3893 W:      http://www.marvell.com
3894 F:      drivers/crypto/cavium/cpt/
3895
3896 CAVIUM THUNDERX2 ARM64 SOC
3897 M:      Robert Richter <rrichter@marvell.com>
3898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3899 S:      Maintained
3900 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3901 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3902
3903 CC2520 IEEE-802.15.4 RADIO DRIVER
3904 M:      Varka Bhadram <varkabhadram@gmail.com>
3905 L:      linux-wpan@vger.kernel.org
3906 S:      Maintained
3907 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3908 F:      drivers/net/ieee802154/cc2520.c
3909 F:      include/linux/spi/cc2520.h
3910
3911 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3912 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3913 L:      linux-crypto@vger.kernel.org
3914 S:      Supported
3915 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3916 F:      drivers/crypto/ccree/
3917
3918 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
3919 M:      Hadar Gat <hadar.gat@arm.com>
3920 L:      linux-crypto@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/char/hw_random/cctrng.c
3923 F:      drivers/char/hw_random/cctrng.h
3924 F:      Documentation/devicetree/bindings/rng/arm-cctrng.txt
3925 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3926
3927 CEC FRAMEWORK
3928 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3929 L:      linux-media@vger.kernel.org
3930 S:      Supported
3931 W:      http://linuxtv.org
3932 T:      git git://linuxtv.org/media_tree.git
3933 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3934 F:      Documentation/devicetree/bindings/media/cec.txt
3935 F:      Documentation/driver-api/media/cec-core.rst
3936 F:      Documentation/userspace-api/media/cec
3937 F:      drivers/media/cec/
3938 F:      drivers/media/rc/keymaps/rc-cec.c
3939 F:      include/media/cec-notifier.h
3940 F:      include/media/cec.h
3941 F:      include/uapi/linux/cec-funcs.h
3942 F:      include/uapi/linux/cec.h
3943
3944 CEC GPIO DRIVER
3945 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3946 L:      linux-media@vger.kernel.org
3947 S:      Supported
3948 W:      http://linuxtv.org
3949 T:      git git://linuxtv.org/media_tree.git
3950 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3951 F:      drivers/media/platform/cec-gpio/
3952
3953 CELL BROADBAND ENGINE ARCHITECTURE
3954 M:      Arnd Bergmann <arnd@arndb.de>
3955 L:      linuxppc-dev@lists.ozlabs.org
3956 S:      Supported
3957 W:      http://www.ibm.com/developerworks/power/cell/
3958 F:      arch/powerpc/include/asm/cell*.h
3959 F:      arch/powerpc/include/asm/spu*.h
3960 F:      arch/powerpc/include/uapi/asm/spu*.h
3961 F:      arch/powerpc/oprofile/*cell*
3962 F:      arch/powerpc/platforms/cell/
3963
3964 CEPH COMMON CODE (LIBCEPH)
3965 M:      Ilya Dryomov <idryomov@gmail.com>
3966 M:      Jeff Layton <jlayton@kernel.org>
3967 L:      ceph-devel@vger.kernel.org
3968 S:      Supported
3969 W:      http://ceph.com/
3970 T:      git git://github.com/ceph/ceph-client.git
3971 F:      include/linux/ceph/
3972 F:      include/linux/crush/
3973 F:      net/ceph/
3974
3975 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3976 M:      Jeff Layton <jlayton@kernel.org>
3977 M:      Ilya Dryomov <idryomov@gmail.com>
3978 L:      ceph-devel@vger.kernel.org
3979 S:      Supported
3980 W:      http://ceph.com/
3981 T:      git git://github.com/ceph/ceph-client.git
3982 F:      Documentation/filesystems/ceph.rst
3983 F:      fs/ceph/
3984
3985 CERTIFICATE HANDLING
3986 M:      David Howells <dhowells@redhat.com>
3987 M:      David Woodhouse <dwmw2@infradead.org>
3988 L:      keyrings@vger.kernel.org
3989 S:      Maintained
3990 F:      Documentation/admin-guide/module-signing.rst
3991 F:      certs/
3992 F:      scripts/extract-cert.c
3993 F:      scripts/sign-file.c
3994
3995 CFAG12864B LCD DRIVER
3996 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3997 S:      Maintained
3998 F:      drivers/auxdisplay/cfag12864b.c
3999 F:      include/linux/cfag12864b.h
4000
4001 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4002 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4003 S:      Maintained
4004 F:      drivers/auxdisplay/cfag12864bfb.c
4005 F:      include/linux/cfag12864b.h
4006
4007 CHAR and MISC DRIVERS
4008 M:      Arnd Bergmann <arnd@arndb.de>
4009 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4010 S:      Supported
4011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4012 F:      drivers/char/
4013 F:      drivers/misc/
4014 F:      include/linux/miscdevice.h
4015
4016 CHECKPATCH
4017 M:      Andy Whitcroft <apw@canonical.com>
4018 M:      Joe Perches <joe@perches.com>
4019 S:      Maintained
4020 F:      scripts/checkpatch.pl
4021
4022 CHINESE DOCUMENTATION
4023 M:      Harry Wei <harryxiyou@gmail.com>
4024 M:      Alex Shi <alex.shi@linux.alibaba.com>
4025 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4026 S:      Maintained
4027 F:      Documentation/translations/zh_CN/
4028
4029 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4030 M:      Peter Chen <Peter.Chen@nxp.com>
4031 L:      linux-usb@vger.kernel.org
4032 S:      Maintained
4033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4034 F:      drivers/usb/chipidea/
4035
4036 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4037 M:      Hans de Goede <hdegoede@redhat.com>
4038 L:      linux-input@vger.kernel.org
4039 S:      Maintained
4040 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4041 F:      drivers/input/touchscreen/chipone_icn8318.c
4042
4043 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4044 M:      Hans de Goede <hdegoede@redhat.com>
4045 L:      linux-input@vger.kernel.org
4046 S:      Maintained
4047 F:      drivers/input/touchscreen/chipone_icn8505.c
4048
4049 CHROME HARDWARE PLATFORM SUPPORT
4050 M:      Benson Leung <bleung@chromium.org>
4051 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4052 S:      Maintained
4053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4054 F:      drivers/platform/chrome/
4055
4056 CHROMEOS EC CODEC DRIVER
4057 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4058 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4059 R:      Guenter Roeck <groeck@chromium.org>
4060 S:      Maintained
4061 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4062 F:      sound/soc/codecs/cros_ec_codec.*
4063
4064 CHROMEOS EC SUBDRIVERS
4065 M:      Benson Leung <bleung@chromium.org>
4066 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4067 R:      Guenter Roeck <groeck@chromium.org>
4068 S:      Maintained
4069 F:      drivers/power/supply/cros_usbpd-charger.c
4070 N:      cros_ec
4071 N:      cros-ec
4072
4073 CIRRUS LOGIC AUDIO CODEC DRIVERS
4074 M:      James Schulman <james.schulman@cirrus.com>
4075 M:      David Rhodes <david.rhodes@cirrus.com>
4076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4077 S:      Maintained
4078 F:      sound/soc/codecs/cs*
4079
4080 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4081 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4082 L:      netdev@vger.kernel.org
4083 S:      Maintained
4084 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4085
4086 CIRRUS LOGIC LOCHNAGAR DRIVER
4087 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4088 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4089 L:      patches@opensource.cirrus.com
4090 S:      Supported
4091 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4092 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4093 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4094 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4095 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4096 F:      Documentation/hwmon/lochnagar.rst
4097 F:      drivers/clk/clk-lochnagar.c
4098 F:      drivers/hwmon/lochnagar-hwmon.c
4099 F:      drivers/mfd/lochnagar-i2c.c
4100 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4101 F:      drivers/regulator/lochnagar-regulator.c
4102 F:      include/dt-bindings/clk/lochnagar.h
4103 F:      include/dt-bindings/pinctrl/lochnagar.h
4104 F:      include/linux/mfd/lochnagar*
4105 F:      sound/soc/codecs/lochnagar-sc.c
4106
4107 CIRRUS LOGIC MADERA CODEC DRIVERS
4108 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4109 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4111 L:      patches@opensource.cirrus.com
4112 S:      Supported
4113 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4114 T:      git https://github.com/CirrusLogic/linux-drivers.git
4115 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4116 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4117 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4118 F:      drivers/gpio/gpio-madera*
4119 F:      drivers/irqchip/irq-madera*
4120 F:      drivers/mfd/cs47l*
4121 F:      drivers/mfd/madera*
4122 F:      drivers/pinctrl/cirrus/*
4123 F:      include/dt-bindings/sound/madera*
4124 F:      include/linux/irqchip/irq-madera*
4125 F:      include/linux/mfd/madera/*
4126 F:      include/sound/madera*
4127 F:      sound/soc/codecs/cs47l*
4128 F:      sound/soc/codecs/madera*
4129
4130 CISCO FCOE HBA DRIVER
4131 M:      Satish Kharat <satishkh@cisco.com>
4132 M:      Sesidhar Baddela <sebaddel@cisco.com>
4133 M:      Karan Tilak Kumar <kartilak@cisco.com>
4134 L:      linux-scsi@vger.kernel.org
4135 S:      Supported
4136 F:      drivers/scsi/fnic/
4137
4138 CISCO SCSI HBA DRIVER
4139 M:      Karan Tilak Kumar <kartilak@cisco.com>
4140 M:      Sesidhar Baddela <sebaddel@cisco.com>
4141 L:      linux-scsi@vger.kernel.org
4142 S:      Supported
4143 F:      drivers/scsi/snic/
4144
4145 CISCO VIC ETHERNET NIC DRIVER
4146 M:      Christian Benvenuti <benve@cisco.com>
4147 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4148 S:      Supported
4149 F:      drivers/net/ethernet/cisco/enic/
4150
4151 CISCO VIC LOW LATENCY NIC DRIVER
4152 M:      Christian Benvenuti <benve@cisco.com>
4153 M:      Nelson Escobar <neescoba@cisco.com>
4154 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4155 S:      Supported
4156 F:      drivers/infiniband/hw/usnic/
4157
4158 CLANG-FORMAT FILE
4159 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4160 S:      Maintained
4161 F:      .clang-format
4162
4163 CLANG/LLVM BUILD SUPPORT
4164 L:      clang-built-linux@googlegroups.com
4165 S:      Supported
4166 W:      https://clangbuiltlinux.github.io/
4167 B:      https://github.com/ClangBuiltLinux/linux/issues
4168 C:      irc://chat.freenode.net/clangbuiltlinux
4169 F:      Documentation/kbuild/llvm.rst
4170 K:      \b(?i:clang|llvm)\b
4171
4172 CLEANCACHE API
4173 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4174 L:      linux-kernel@vger.kernel.org
4175 S:      Maintained
4176 F:      include/linux/cleancache.h
4177 F:      mm/cleancache.c
4178
4179 CLK API
4180 M:      Russell King <linux@armlinux.org.uk>
4181 L:      linux-clk@vger.kernel.org
4182 S:      Maintained
4183 F:      include/linux/clk.h
4184
4185 CLOCKSOURCE, CLOCKEVENT DRIVERS
4186 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4187 M:      Thomas Gleixner <tglx@linutronix.de>
4188 L:      linux-kernel@vger.kernel.org
4189 S:      Supported
4190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4191 F:      Documentation/devicetree/bindings/timer/
4192 F:      drivers/clocksource/
4193
4194 CMPC ACPI DRIVER
4195 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4196 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4197 L:      platform-driver-x86@vger.kernel.org
4198 S:      Supported
4199 F:      drivers/platform/x86/classmate-laptop.c
4200
4201 COBALT MEDIA DRIVER
4202 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4203 L:      linux-media@vger.kernel.org
4204 S:      Supported
4205 W:      https://linuxtv.org
4206 T:      git git://linuxtv.org/media_tree.git
4207 F:      drivers/media/pci/cobalt/
4208
4209 COCCINELLE/Semantic Patches (SmPL)
4210 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4211 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4212 M:      Nicolas Palix <nicolas.palix@imag.fr>
4213 M:      Michal Marek <michal.lkml@markovi.net>
4214 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4215 S:      Supported
4216 W:      http://coccinelle.lip6.fr/
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4218 F:      Documentation/dev-tools/coccinelle.rst
4219 F:      scripts/coccicheck
4220 F:      scripts/coccinelle/
4221
4222 CODA FILE SYSTEM
4223 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4224 M:      coda@cs.cmu.edu
4225 L:      codalist@coda.cs.cmu.edu
4226 S:      Maintained
4227 W:      http://www.coda.cs.cmu.edu/
4228 F:      Documentation/filesystems/coda.rst
4229 F:      fs/coda/
4230 F:      include/linux/coda*.h
4231 F:      include/uapi/linux/coda*.h
4232
4233 CODA V4L2 MEM2MEM DRIVER
4234 M:      Philipp Zabel <p.zabel@pengutronix.de>
4235 L:      linux-media@vger.kernel.org
4236 S:      Maintained
4237 F:      Documentation/devicetree/bindings/media/coda.txt
4238 F:      drivers/media/platform/coda/
4239
4240 CODE OF CONDUCT
4241 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4242 S:      Supported
4243 F:      Documentation/process/code-of-conduct-interpretation.rst
4244 F:      Documentation/process/code-of-conduct.rst
4245
4246 COMMON CLK FRAMEWORK
4247 M:      Michael Turquette <mturquette@baylibre.com>
4248 M:      Stephen Boyd <sboyd@kernel.org>
4249 L:      linux-clk@vger.kernel.org
4250 S:      Maintained
4251 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4253 F:      Documentation/devicetree/bindings/clock/
4254 F:      drivers/clk/
4255 F:      include/linux/clk-pr*
4256 F:      include/linux/clk/
4257 F:      include/linux/of_clk.h
4258 X:      drivers/clk/clkdev.c
4259
4260 COMMON INTERNET FILE SYSTEM (CIFS)
4261 M:      Steve French <sfrench@samba.org>
4262 L:      linux-cifs@vger.kernel.org
4263 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4264 S:      Supported
4265 W:      http://linux-cifs.samba.org/
4266 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4267 F:      Documentation/admin-guide/cifs/
4268 F:      fs/cifs/
4269
4270 COMPACTPCI HOTPLUG CORE
4271 M:      Scott Murray <scott@spiteful.org>
4272 L:      linux-pci@vger.kernel.org
4273 S:      Maintained
4274 F:      drivers/pci/hotplug/cpci_hotplug*
4275
4276 COMPACTPCI HOTPLUG GENERIC DRIVER
4277 M:      Scott Murray <scott@spiteful.org>
4278 L:      linux-pci@vger.kernel.org
4279 S:      Maintained
4280 F:      drivers/pci/hotplug/cpcihp_generic.c
4281
4282 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4283 M:      Scott Murray <scott@spiteful.org>
4284 L:      linux-pci@vger.kernel.org
4285 S:      Maintained
4286 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4287
4288 COMPAL LAPTOP SUPPORT
4289 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4290 L:      platform-driver-x86@vger.kernel.org
4291 S:      Maintained
4292 F:      drivers/platform/x86/compal-laptop.c
4293
4294 COMPILER ATTRIBUTES
4295 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4296 S:      Maintained
4297 F:      include/linux/compiler_attributes.h
4298
4299 CONEXANT ACCESSRUNNER USB DRIVER
4300 L:      accessrunner-general@lists.sourceforge.net
4301 S:      Orphan
4302 W:      http://accessrunner.sourceforge.net/
4303 F:      drivers/usb/atm/cxacru.c
4304
4305 CONFIGFS
4306 M:      Joel Becker <jlbec@evilplan.org>
4307 M:      Christoph Hellwig <hch@lst.de>
4308 S:      Supported
4309 T:      git git://git.infradead.org/users/hch/configfs.git
4310 F:      fs/configfs/
4311 F:      include/linux/configfs.h
4312
4313 CONNECTOR
4314 M:      Evgeniy Polyakov <zbr@ioremap.net>
4315 L:      netdev@vger.kernel.org
4316 S:      Maintained
4317 F:      drivers/connector/
4318
4319 CONTROL GROUP (CGROUP)
4320 M:      Tejun Heo <tj@kernel.org>
4321 M:      Li Zefan <lizefan@huawei.com>
4322 M:      Johannes Weiner <hannes@cmpxchg.org>
4323 L:      cgroups@vger.kernel.org
4324 S:      Maintained
4325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4326 F:      Documentation/admin-guide/cgroup-v1/
4327 F:      Documentation/admin-guide/cgroup-v2.rst
4328 F:      include/linux/cgroup*
4329 F:      kernel/cgroup/
4330
4331 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4332 M:      Tejun Heo <tj@kernel.org>
4333 M:      Jens Axboe <axboe@kernel.dk>
4334 L:      cgroups@vger.kernel.org
4335 L:      linux-block@vger.kernel.org
4336 T:      git git://git.kernel.dk/linux-block
4337 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4338 F:      block/bfq-cgroup.c
4339 F:      block/blk-cgroup.c
4340 F:      block/blk-iolatency.c
4341 F:      block/blk-throttle.c
4342 F:      include/linux/blk-cgroup.h
4343
4344 CONTROL GROUP - CPUSET
4345 M:      Li Zefan <lizefan@huawei.com>
4346 L:      cgroups@vger.kernel.org
4347 S:      Maintained
4348 W:      http://www.bullopensource.org/cpuset/
4349 W:      http://oss.sgi.com/projects/cpusets/
4350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4351 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4352 F:      include/linux/cpuset.h
4353 F:      kernel/cgroup/cpuset.c
4354
4355 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4356 M:      Johannes Weiner <hannes@cmpxchg.org>
4357 M:      Michal Hocko <mhocko@kernel.org>
4358 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4359 L:      cgroups@vger.kernel.org
4360 L:      linux-mm@kvack.org
4361 S:      Maintained
4362 F:      mm/memcontrol.c
4363 F:      mm/swap_cgroup.c
4364
4365 CORETEMP HARDWARE MONITORING DRIVER
4366 M:      Fenghua Yu <fenghua.yu@intel.com>
4367 L:      linux-hwmon@vger.kernel.org
4368 S:      Maintained
4369 F:      Documentation/hwmon/coretemp.rst
4370 F:      drivers/hwmon/coretemp.c
4371
4372 COSA/SRP SYNC SERIAL DRIVER
4373 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4374 S:      Maintained
4375 W:      http://www.fi.muni.cz/~kas/cosa/
4376 F:      drivers/net/wan/cosa*
4377
4378 COUNTER SUBSYSTEM
4379 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4380 L:      linux-iio@vger.kernel.org
4381 S:      Maintained
4382 F:      Documentation/ABI/testing/sysfs-bus-counter*
4383 F:      Documentation/driver-api/generic-counter.rst
4384 F:      drivers/counter/
4385 F:      include/linux/counter.h
4386 F:      include/linux/counter_enum.h
4387
4388 CPMAC ETHERNET DRIVER
4389 M:      Florian Fainelli <f.fainelli@gmail.com>
4390 L:      netdev@vger.kernel.org
4391 S:      Maintained
4392 F:      drivers/net/ethernet/ti/cpmac.c
4393
4394 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4395 M:      Viresh Kumar <viresh.kumar@linaro.org>
4396 M:      Sudeep Holla <sudeep.holla@arm.com>
4397 L:      linux-pm@vger.kernel.org
4398 S:      Maintained
4399 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4400 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4401
4402 CPU FREQUENCY SCALING FRAMEWORK
4403 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4404 M:      Viresh Kumar <viresh.kumar@linaro.org>
4405 L:      linux-pm@vger.kernel.org
4406 S:      Maintained
4407 B:      https://bugzilla.kernel.org
4408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4410 F:      Documentation/admin-guide/pm/cpufreq.rst
4411 F:      Documentation/admin-guide/pm/intel_pstate.rst
4412 F:      Documentation/cpu-freq/
4413 F:      Documentation/devicetree/bindings/cpufreq/
4414 F:      drivers/cpufreq/
4415 F:      include/linux/cpufreq.h
4416 F:      include/linux/sched/cpufreq.h
4417 F:      kernel/sched/cpufreq*.c
4418 F:      tools/testing/selftests/cpufreq/
4419
4420 CPU IDLE TIME MANAGEMENT FRAMEWORK
4421 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4422 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4423 L:      linux-pm@vger.kernel.org
4424 S:      Maintained
4425 B:      https://bugzilla.kernel.org
4426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4427 F:      Documentation/admin-guide/pm/cpuidle.rst
4428 F:      Documentation/driver-api/pm/cpuidle.rst
4429 F:      drivers/cpuidle/*
4430 F:      include/linux/cpuidle.h
4431
4432 CPU POWER MONITORING SUBSYSTEM
4433 M:      Thomas Renninger <trenn@suse.com>
4434 M:      Shuah Khan <shuah@kernel.org>
4435 M:      Shuah Khan <skhan@linuxfoundation.org>
4436 L:      linux-pm@vger.kernel.org
4437 S:      Maintained
4438 F:      tools/power/cpupower/
4439
4440 CPUID/MSR DRIVER
4441 M:      "H. Peter Anvin" <hpa@zytor.com>
4442 S:      Maintained
4443 F:      arch/x86/kernel/cpuid.c
4444 F:      arch/x86/kernel/msr.c
4445
4446 CPUIDLE DRIVER - ARM BIG LITTLE
4447 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4448 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4449 L:      linux-pm@vger.kernel.org
4450 L:      linux-arm-kernel@lists.infradead.org
4451 S:      Maintained
4452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4453 F:      drivers/cpuidle/cpuidle-big_little.c
4454
4455 CPUIDLE DRIVER - ARM EXYNOS
4456 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4457 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4458 M:      Kukjin Kim <kgene@kernel.org>
4459 L:      linux-pm@vger.kernel.org
4460 L:      linux-samsung-soc@vger.kernel.org
4461 S:      Supported
4462 F:      arch/arm/mach-exynos/pm.c
4463 F:      drivers/cpuidle/cpuidle-exynos.c
4464
4465 CPUIDLE DRIVER - ARM PSCI
4466 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4467 M:      Sudeep Holla <sudeep.holla@arm.com>
4468 L:      linux-pm@vger.kernel.org
4469 L:      linux-arm-kernel@lists.infradead.org
4470 S:      Supported
4471 F:      drivers/cpuidle/cpuidle-psci.c
4472
4473 CRAMFS FILESYSTEM
4474 M:      Nicolas Pitre <nico@fluxnic.net>
4475 S:      Maintained
4476 F:      Documentation/filesystems/cramfs.rst
4477 F:      fs/cramfs/
4478
4479 CREATIVE SB0540
4480 M:      Bastien Nocera <hadess@hadess.net>
4481 L:      linux-input@vger.kernel.org
4482 S:      Maintained
4483 F:      drivers/hid/hid-creative-sb0540.c
4484
4485 CRYPTO API
4486 M:      Herbert Xu <herbert@gondor.apana.org.au>
4487 M:      "David S. Miller" <davem@davemloft.net>
4488 L:      linux-crypto@vger.kernel.org
4489 S:      Maintained
4490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4492 F:      Documentation/crypto/
4493 F:      Documentation/devicetree/bindings/crypto/
4494 F:      arch/*/crypto/
4495 F:      crypto/
4496 F:      drivers/crypto/
4497 F:      include/crypto/
4498 F:      include/linux/crypto*
4499 F:      lib/crypto/
4500
4501 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4502 M:      Neil Horman <nhorman@tuxdriver.com>
4503 L:      linux-crypto@vger.kernel.org
4504 S:      Maintained
4505 F:      crypto/ansi_cprng.c
4506 F:      crypto/rng.c
4507
4508 CS3308 MEDIA DRIVER
4509 M:      Hans Verkuil <hverkuil@xs4all.nl>
4510 L:      linux-media@vger.kernel.org
4511 S:      Odd Fixes
4512 W:      http://linuxtv.org
4513 T:      git git://linuxtv.org/media_tree.git
4514 F:      drivers/media/i2c/cs3308.c
4515
4516 CS5535 Audio ALSA driver
4517 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4518 S:      Maintained
4519 F:      sound/pci/cs5535audio/
4520
4521 CSI DRIVERS FOR ALLWINNER V3s
4522 M:      Yong Deng <yong.deng@magewell.com>
4523 L:      linux-media@vger.kernel.org
4524 S:      Maintained
4525 T:      git git://linuxtv.org/media_tree.git
4526 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4527 F:      drivers/media/platform/sunxi/sun6i-csi/
4528
4529 CW1200 WLAN driver
4530 M:      Solomon Peachy <pizza@shaftnet.org>
4531 S:      Maintained
4532 F:      drivers/net/wireless/st/cw1200/
4533
4534 CX18 VIDEO4LINUX DRIVER
4535 M:      Andy Walls <awalls@md.metrocast.net>
4536 L:      linux-media@vger.kernel.org
4537 S:      Maintained
4538 W:      https://linuxtv.org
4539 T:      git git://linuxtv.org/media_tree.git
4540 F:      drivers/media/pci/cx18/
4541 F:      include/uapi/linux/ivtv*
4542
4543 CX2341X MPEG ENCODER HELPER MODULE
4544 M:      Hans Verkuil <hverkuil@xs4all.nl>
4545 L:      linux-media@vger.kernel.org
4546 S:      Maintained
4547 W:      https://linuxtv.org
4548 T:      git git://linuxtv.org/media_tree.git
4549 F:      drivers/media/common/cx2341x*
4550 F:      include/media/drv-intf/cx2341x.h
4551
4552 CX24120 MEDIA DRIVER
4553 M:      Jemma Denson <jdenson@gmail.com>
4554 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4555 L:      linux-media@vger.kernel.org
4556 S:      Maintained
4557 W:      https://linuxtv.org
4558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4559 F:      drivers/media/dvb-frontends/cx24120*
4560
4561 CX88 VIDEO4LINUX DRIVER
4562 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4563 L:      linux-media@vger.kernel.org
4564 S:      Odd fixes
4565 W:      https://linuxtv.org
4566 T:      git git://linuxtv.org/media_tree.git
4567 F:      Documentation/driver-api/media/drivers/cx88*
4568 F:      drivers/media/pci/cx88/
4569
4570 CXD2820R MEDIA DRIVER
4571 M:      Antti Palosaari <crope@iki.fi>
4572 L:      linux-media@vger.kernel.org
4573 S:      Maintained
4574 W:      https://linuxtv.org
4575 W:      http://palosaari.fi/linux/
4576 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4577 T:      git git://linuxtv.org/anttip/media_tree.git
4578 F:      drivers/media/dvb-frontends/cxd2820r*
4579
4580 CXGB3 ETHERNET DRIVER (CXGB3)
4581 M:      Vishal Kulkarni <vishal@chelsio.com>
4582 L:      netdev@vger.kernel.org
4583 S:      Supported
4584 W:      http://www.chelsio.com
4585 F:      drivers/net/ethernet/chelsio/cxgb3/
4586
4587 CXGB3 ISCSI DRIVER (CXGB3I)
4588 M:      Karen Xie <kxie@chelsio.com>
4589 L:      linux-scsi@vger.kernel.org
4590 S:      Supported
4591 W:      http://www.chelsio.com
4592 F:      drivers/scsi/cxgbi/cxgb3i
4593
4594 CXGB4 CRYPTO DRIVER (chcr)
4595 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4596 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4597 M:      Rohit Maheshwari <rohitm@chelsio.com>
4598 L:      linux-crypto@vger.kernel.org
4599 S:      Supported
4600 W:      http://www.chelsio.com
4601 F:      drivers/crypto/chelsio
4602
4603 CXGB4 ETHERNET DRIVER (CXGB4)
4604 M:      Vishal Kulkarni <vishal@chelsio.com>
4605 L:      netdev@vger.kernel.org
4606 S:      Supported
4607 W:      http://www.chelsio.com
4608 F:      drivers/net/ethernet/chelsio/cxgb4/
4609
4610 CXGB4 ISCSI DRIVER (CXGB4I)
4611 M:      Karen Xie <kxie@chelsio.com>
4612 L:      linux-scsi@vger.kernel.org
4613 S:      Supported
4614 W:      http://www.chelsio.com
4615 F:      drivers/scsi/cxgbi/cxgb4i
4616
4617 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4618 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4619 L:      linux-rdma@vger.kernel.org
4620 S:      Supported
4621 W:      http://www.openfabrics.org
4622 F:      drivers/infiniband/hw/cxgb4/
4623 F:      include/uapi/rdma/cxgb4-abi.h
4624
4625 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4626 M:      Vishal Kulkarni <vishal@gmail.com>
4627 L:      netdev@vger.kernel.org
4628 S:      Supported
4629 W:      http://www.chelsio.com
4630 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4631
4632 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4633 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4634 M:      Andrew Donnellan <ajd@linux.ibm.com>
4635 L:      linuxppc-dev@lists.ozlabs.org
4636 S:      Supported
4637 F:      Documentation/ABI/testing/sysfs-class-cxl
4638 F:      Documentation/powerpc/cxl.rst
4639 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4640 F:      drivers/misc/cxl/
4641 F:      include/misc/cxl*
4642 F:      include/uapi/misc/cxl.h
4643
4644 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4645 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4646 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4647 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4648 L:      linux-scsi@vger.kernel.org
4649 S:      Supported
4650 F:      Documentation/powerpc/cxlflash.rst
4651 F:      drivers/scsi/cxlflash/
4652 F:      include/uapi/scsi/cxlflash_ioctl.h
4653
4654 CYBERPRO FB DRIVER
4655 M:      Russell King <linux@armlinux.org.uk>
4656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4657 S:      Maintained
4658 W:      http://www.armlinux.org.uk/
4659 F:      drivers/video/fbdev/cyber2000fb.*
4660
4661 CYCLADES ASYNC MUX DRIVER
4662 S:      Orphan
4663 W:      http://www.cyclades.com/
4664 F:      drivers/tty/cyclades.c
4665 F:      include/linux/cyclades.h
4666 F:      include/uapi/linux/cyclades.h
4667
4668 CYCLADES PC300 DRIVER
4669 S:      Orphan
4670 W:      http://www.cyclades.com/
4671 F:      drivers/net/wan/pc300*
4672
4673 CYPRESS_FIRMWARE MEDIA DRIVER
4674 M:      Antti Palosaari <crope@iki.fi>
4675 L:      linux-media@vger.kernel.org
4676 S:      Maintained
4677 W:      https://linuxtv.org
4678 W:      http://palosaari.fi/linux/
4679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4680 T:      git git://linuxtv.org/anttip/media_tree.git
4681 F:      drivers/media/common/cypress_firmware*
4682
4683 CYTTSP TOUCHSCREEN DRIVER
4684 M:      Ferruh Yigit <fery@cypress.com>
4685 L:      linux-input@vger.kernel.org
4686 S:      Supported
4687 F:      drivers/input/touchscreen/cyttsp*
4688 F:      include/linux/input/cyttsp.h
4689
4690 D-LINK DIR-685 TOUCHKEYS DRIVER
4691 M:      Linus Walleij <linus.walleij@linaro.org>
4692 L:      linux-input@vger.kernel.org
4693 S:      Supported
4694 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4695
4696 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4697 M:      Joshua Kinard <kumba@gentoo.org>
4698 S:      Maintained
4699 F:      drivers/rtc/rtc-ds1685.c
4700 F:      include/linux/rtc/ds1685.h
4701
4702 DAMA SLAVE for AX.25
4703 M:      Joerg Reuter <jreuter@yaina.de>
4704 L:      linux-hams@vger.kernel.org
4705 S:      Maintained
4706 W:      http://yaina.de/jreuter/
4707 W:      http://www.qsl.net/dl1bke/
4708 F:      net/ax25/af_ax25.c
4709 F:      net/ax25/ax25_dev.c
4710 F:      net/ax25/ax25_ds_*
4711 F:      net/ax25/ax25_in.c
4712 F:      net/ax25/ax25_out.c
4713 F:      net/ax25/ax25_timer.c
4714 F:      net/ax25/sysctl_net_ax25.c
4715
4716 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4717 L:      netdev@vger.kernel.org
4718 S:      Orphan
4719 F:      Documentation/networking/device_drivers/dec/dmfe.rst
4720 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4721
4722 DC390/AM53C974 SCSI driver
4723 M:      Hannes Reinecke <hare@suse.com>
4724 L:      linux-scsi@vger.kernel.org
4725 S:      Maintained
4726 F:      drivers/scsi/am53c974.c
4727
4728 DC395x SCSI driver
4729 M:      Oliver Neukum <oliver@neukum.org>
4730 M:      Ali Akcaagac <aliakc@web.de>
4731 M:      Jamie Lenehan <lenehan@twibble.org>
4732 L:      dc395x@twibble.org
4733 S:      Maintained
4734 W:      http://twibble.org/dist/dc395x/
4735 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4736 F:      Documentation/scsi/dc395x.rst
4737 F:      drivers/scsi/dc395x.*
4738
4739 DCCP PROTOCOL
4740 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4741 L:      dccp@vger.kernel.org
4742 S:      Maintained
4743 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4744 F:      include/linux/dccp.h
4745 F:      include/linux/tfrc.h
4746 F:      include/uapi/linux/dccp.h
4747 F:      net/dccp/
4748
4749 DECnet NETWORK LAYER
4750 L:      linux-decnet-user@lists.sourceforge.net
4751 S:      Orphan
4752 W:      http://linux-decnet.sourceforge.net
4753 F:      Documentation/networking/decnet.rst
4754 F:      net/decnet/
4755
4756 DECSTATION PLATFORM SUPPORT
4757 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4758 L:      linux-mips@vger.kernel.org
4759 S:      Maintained
4760 W:      http://www.linux-mips.org/wiki/DECstation
4761 F:      arch/mips/dec/
4762 F:      arch/mips/include/asm/dec/
4763 F:      arch/mips/include/asm/mach-dec/
4764
4765 DEFXX FDDI NETWORK DRIVER
4766 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4767 S:      Maintained
4768 F:      drivers/net/fddi/defxx.*
4769
4770 DEFZA FDDI NETWORK DRIVER
4771 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4772 S:      Maintained
4773 F:      drivers/net/fddi/defza.*
4774
4775 DEINTERLACE DRIVERS FOR ALLWINNER H3
4776 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4777 L:      linux-media@vger.kernel.org
4778 S:      Maintained
4779 T:      git git://linuxtv.org/media_tree.git
4780 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4781 F:      drivers/media/platform/sunxi/sun8i-di/
4782
4783 DELL LAPTOP DRIVER
4784 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4785 M:      Pali Rohár <pali@kernel.org>
4786 L:      platform-driver-x86@vger.kernel.org
4787 S:      Maintained
4788 F:      drivers/platform/x86/dell-laptop.c
4789
4790 DELL LAPTOP FREEFALL DRIVER
4791 M:      Pali Rohár <pali@kernel.org>
4792 S:      Maintained
4793 F:      drivers/platform/x86/dell-smo8800.c
4794
4795 DELL LAPTOP RBTN DRIVER
4796 M:      Pali Rohár <pali@kernel.org>
4797 S:      Maintained
4798 F:      drivers/platform/x86/dell-rbtn.*
4799
4800 DELL LAPTOP SMM DRIVER
4801 M:      Pali Rohár <pali@kernel.org>
4802 S:      Maintained
4803 F:      drivers/hwmon/dell-smm-hwmon.c
4804 F:      include/uapi/linux/i8k.h
4805
4806 DELL REMOTE BIOS UPDATE DRIVER
4807 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4808 L:      platform-driver-x86@vger.kernel.org
4809 S:      Maintained
4810 F:      drivers/platform/x86/dell_rbu.c
4811
4812 DELL SMBIOS DRIVER
4813 M:      Pali Rohár <pali@kernel.org>
4814 M:      Mario Limonciello <mario.limonciello@dell.com>
4815 L:      platform-driver-x86@vger.kernel.org
4816 S:      Maintained
4817 F:      drivers/platform/x86/dell-smbios.*
4818
4819 DELL SMBIOS SMM DRIVER
4820 M:      Mario Limonciello <mario.limonciello@dell.com>
4821 L:      platform-driver-x86@vger.kernel.org
4822 S:      Maintained
4823 F:      drivers/platform/x86/dell-smbios-smm.c
4824
4825 DELL SMBIOS WMI DRIVER
4826 M:      Mario Limonciello <mario.limonciello@dell.com>
4827 L:      platform-driver-x86@vger.kernel.org
4828 S:      Maintained
4829 F:      drivers/platform/x86/dell-smbios-wmi.c
4830 F:      tools/wmi/dell-smbios-example.c
4831
4832 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4833 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4834 L:      platform-driver-x86@vger.kernel.org
4835 S:      Maintained
4836 F:      Documentation/driver-api/dcdbas.rst
4837 F:      drivers/platform/x86/dcdbas.*
4838
4839 DELL WMI DESCRIPTOR DRIVER
4840 M:      Mario Limonciello <mario.limonciello@dell.com>
4841 S:      Maintained
4842 F:      drivers/platform/x86/dell-wmi-descriptor.c
4843
4844 DELL WMI NOTIFICATIONS DRIVER
4845 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4846 M:      Pali Rohár <pali@kernel.org>
4847 S:      Maintained
4848 F:      drivers/platform/x86/dell-wmi.c
4849
4850 DELTA ST MEDIA DRIVER
4851 M:      Hugues Fruchet <hugues.fruchet@st.com>
4852 L:      linux-media@vger.kernel.org
4853 S:      Supported
4854 W:      https://linuxtv.org
4855 T:      git git://linuxtv.org/media_tree.git
4856 F:      drivers/media/platform/sti/delta
4857
4858 DENALI NAND DRIVER
4859 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4860 L:      linux-mtd@lists.infradead.org
4861 S:      Supported
4862 F:      drivers/mtd/nand/raw/denali*
4863
4864 DESIGNWARE EDMA CORE IP DRIVER
4865 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4866 L:      dmaengine@vger.kernel.org
4867 S:      Maintained
4868 F:      drivers/dma/dw-edma/
4869 F:      include/linux/dma/edma.h
4870
4871 DESIGNWARE USB2 DRD IP DRIVER
4872 M:      Minas Harutyunyan <hminas@synopsys.com>
4873 L:      linux-usb@vger.kernel.org
4874 S:      Maintained
4875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4876 F:      drivers/usb/dwc2/
4877
4878 DESIGNWARE USB3 DRD IP DRIVER
4879 M:      Felipe Balbi <balbi@kernel.org>
4880 L:      linux-usb@vger.kernel.org
4881 S:      Maintained
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4883 F:      drivers/usb/dwc3/
4884
4885 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4886 M:      Andreas Klinger <ak@it-klinger.de>
4887 L:      linux-iio@vger.kernel.org
4888 S:      Maintained
4889 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4890 F:      drivers/iio/proximity/srf*.c
4891
4892 DEVICE COREDUMP (DEV_COREDUMP)
4893 M:      Johannes Berg <johannes@sipsolutions.net>
4894 L:      linux-kernel@vger.kernel.org
4895 S:      Maintained
4896 F:      drivers/base/devcoredump.c
4897 F:      include/linux/devcoredump.h
4898
4899 DEVICE DIRECT ACCESS (DAX)
4900 M:      Dan Williams <dan.j.williams@intel.com>
4901 M:      Vishal Verma <vishal.l.verma@intel.com>
4902 M:      Dave Jiang <dave.jiang@intel.com>
4903 L:      linux-nvdimm@lists.01.org
4904 S:      Supported
4905 F:      drivers/dax/
4906
4907 DEVICE FREQUENCY (DEVFREQ)
4908 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4909 M:      Kyungmin Park <kyungmin.park@samsung.com>
4910 M:      Chanwoo Choi <cw00.choi@samsung.com>
4911 L:      linux-pm@vger.kernel.org
4912 S:      Maintained
4913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4914 F:      Documentation/devicetree/bindings/devfreq/
4915 F:      drivers/devfreq/
4916 F:      include/linux/devfreq.h
4917 F:      include/trace/events/devfreq.h
4918
4919 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4920 M:      Chanwoo Choi <cw00.choi@samsung.com>
4921 L:      linux-pm@vger.kernel.org
4922 S:      Supported
4923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4924 F:      Documentation/devicetree/bindings/devfreq/event/
4925 F:      drivers/devfreq/devfreq-event.c
4926 F:      drivers/devfreq/event/
4927 F:      include/dt-bindings/pmu/exynos_ppmu.h
4928 F:      include/linux/devfreq-event.h
4929
4930 DEVICE NUMBER REGISTRY
4931 M:      Torben Mathiasen <device@lanana.org>
4932 S:      Maintained
4933 W:      http://lanana.org/docs/device-list/index.html
4934
4935 DEVICE-MAPPER  (LVM)
4936 M:      Alasdair Kergon <agk@redhat.com>
4937 M:      Mike Snitzer <snitzer@redhat.com>
4938 M:      dm-devel@redhat.com
4939 L:      dm-devel@redhat.com
4940 S:      Maintained
4941 W:      http://sources.redhat.com/dm
4942 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4944 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4945 F:      Documentation/admin-guide/device-mapper/
4946 F:      drivers/md/Kconfig
4947 F:      drivers/md/Makefile
4948 F:      drivers/md/dm*
4949 F:      drivers/md/persistent-data/
4950 F:      include/linux/device-mapper.h
4951 F:      include/linux/dm-*.h
4952 F:      include/uapi/linux/dm-*.h
4953
4954 DEVLINK
4955 M:      Jiri Pirko <jiri@mellanox.com>
4956 L:      netdev@vger.kernel.org
4957 S:      Supported
4958 F:      Documentation/networking/devlink
4959 F:      include/net/devlink.h
4960 F:      include/uapi/linux/devlink.h
4961 F:      net/core/devlink.c
4962
4963 DIALOG SEMICONDUCTOR DRIVERS
4964 M:      Support Opensource <support.opensource@diasemi.com>
4965 S:      Supported
4966 W:      http://www.dialog-semiconductor.com/products
4967 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4968 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4969 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4970 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4971 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4972 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4973 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4974 F:      Documentation/hwmon/da90??.rst
4975 F:      drivers/gpio/gpio-da90??.c
4976 F:      drivers/hwmon/da90??-hwmon.c
4977 F:      drivers/iio/adc/da91??-*.c
4978 F:      drivers/input/misc/da90??_onkey.c
4979 F:      drivers/input/touchscreen/da9052_tsi.c
4980 F:      drivers/leds/leds-da90??.c
4981 F:      drivers/mfd/da903x.c
4982 F:      drivers/mfd/da90??-*.c
4983 F:      drivers/mfd/da91??-*.c
4984 F:      drivers/pinctrl/pinctrl-da90??.c
4985 F:      drivers/power/supply/da9052-battery.c
4986 F:      drivers/power/supply/da91??-*.c
4987 F:      drivers/regulator/da903x.c
4988 F:      drivers/regulator/da9???-regulator.[ch]
4989 F:      drivers/regulator/slg51000-regulator.[ch]
4990 F:      drivers/rtc/rtc-da90??.c
4991 F:      drivers/thermal/da90??-thermal.c
4992 F:      drivers/video/backlight/da90??_bl.c
4993 F:      drivers/watchdog/da90??_wdt.c
4994 F:      include/linux/mfd/da903x.h
4995 F:      include/linux/mfd/da9052/
4996 F:      include/linux/mfd/da9055/
4997 F:      include/linux/mfd/da9062/
4998 F:      include/linux/mfd/da9063/
4999 F:      include/linux/mfd/da9150/
5000 F:      include/linux/regulator/da9211.h
5001 F:      include/sound/da[79]*.h
5002 F:      sound/soc/codecs/da[79]*.[ch]
5003
5004 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5005 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5006 L:      linux-gpio@vger.kernel.org
5007 S:      Maintained
5008 F:      drivers/gpio/gpio-gpio-mm.c
5009
5010 DIOLAN U2C-12 I2C DRIVER
5011 M:      Guenter Roeck <linux@roeck-us.net>
5012 L:      linux-i2c@vger.kernel.org
5013 S:      Maintained
5014 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5015
5016 DIRECTORY NOTIFICATION (DNOTIFY)
5017 M:      Jan Kara <jack@suse.cz>
5018 R:      Amir Goldstein <amir73il@gmail.com>
5019 L:      linux-fsdevel@vger.kernel.org
5020 S:      Maintained
5021 F:      Documentation/filesystems/dnotify.rst
5022 F:      fs/notify/dnotify/
5023 F:      include/linux/dnotify.h
5024
5025 DISK GEOMETRY AND PARTITION HANDLING
5026 M:      Andries Brouwer <aeb@cwi.nl>
5027 S:      Maintained
5028 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5029 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5030 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5031
5032 DISKQUOTA
5033 M:      Jan Kara <jack@suse.com>
5034 S:      Maintained
5035 F:      Documentation/filesystems/quota.rst
5036 F:      fs/quota/
5037 F:      include/linux/quota*.h
5038 F:      include/uapi/linux/quota*.h
5039
5040 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5041 M:      Bernie Thompson <bernie@plugable.com>
5042 L:      linux-fbdev@vger.kernel.org
5043 S:      Maintained
5044 W:      http://plugable.com/category/projects/udlfb/
5045 F:      Documentation/fb/udlfb.rst
5046 F:      drivers/video/fbdev/udlfb.c
5047 F:      include/video/udlfb.h
5048
5049 DISTRIBUTED LOCK MANAGER (DLM)
5050 M:      Christine Caulfield <ccaulfie@redhat.com>
5051 M:      David Teigland <teigland@redhat.com>
5052 L:      cluster-devel@redhat.com
5053 S:      Supported
5054 W:      http://sources.redhat.com/cluster/
5055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5056 F:      fs/dlm/
5057
5058 DMA BUFFER SHARING FRAMEWORK
5059 M:      Sumit Semwal <sumit.semwal@linaro.org>
5060 L:      linux-media@vger.kernel.org
5061 L:      dri-devel@lists.freedesktop.org
5062 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5063 S:      Maintained
5064 T:      git git://anongit.freedesktop.org/drm/drm-misc
5065 F:      Documentation/driver-api/dma-buf.rst
5066 F:      drivers/dma-buf/
5067 F:      include/linux/*fence.h
5068 F:      include/linux/dma-buf*
5069 F:      include/linux/dma-resv.h
5070 K:      \bdma_(?:buf|fence|resv)\b
5071
5072 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5073 M:      Vinod Koul <vkoul@kernel.org>
5074 L:      dmaengine@vger.kernel.org
5075 S:      Maintained
5076 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5077 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5078 F:      Documentation/devicetree/bindings/dma/
5079 F:      Documentation/driver-api/dmaengine/
5080 F:      drivers/dma/
5081 F:      include/linux/dmaengine.h
5082 F:      include/linux/of_dma.h
5083
5084 DMA MAPPING HELPERS
5085 M:      Christoph Hellwig <hch@lst.de>
5086 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5087 R:      Robin Murphy <robin.murphy@arm.com>
5088 L:      iommu@lists.linux-foundation.org
5089 S:      Supported
5090 W:      http://git.infradead.org/users/hch/dma-mapping.git
5091 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5092 F:      include/asm-generic/dma-mapping.h
5093 F:      include/linux/dma-direct.h
5094 F:      include/linux/dma-mapping.h
5095 F:      include/linux/dma-noncoherent.h
5096 F:      kernel/dma/
5097
5098 DMA-BUF HEAPS FRAMEWORK
5099 M:      Sumit Semwal <sumit.semwal@linaro.org>
5100 R:      Andrew F. Davis <afd@ti.com>
5101 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5102 R:      Liam Mark <lmark@codeaurora.org>
5103 R:      Laura Abbott <labbott@redhat.com>
5104 R:      Brian Starkey <Brian.Starkey@arm.com>
5105 R:      John Stultz <john.stultz@linaro.org>
5106 L:      linux-media@vger.kernel.org
5107 L:      dri-devel@lists.freedesktop.org
5108 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5109 S:      Maintained
5110 T:      git git://anongit.freedesktop.org/drm/drm-misc
5111 F:      drivers/dma-buf/dma-heap.c
5112 F:      drivers/dma-buf/heaps/*
5113 F:      include/linux/dma-heap.h
5114 F:      include/uapi/linux/dma-heap.h
5115
5116 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5117 M:      Lukasz Luba <lukasz.luba@arm.com>
5118 L:      linux-pm@vger.kernel.org
5119 L:      linux-samsung-soc@vger.kernel.org
5120 S:      Maintained
5121 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5122 F:      drivers/memory/samsung/exynos5422-dmc.c
5123
5124 DME1737 HARDWARE MONITOR DRIVER
5125 M:      Juerg Haefliger <juergh@gmail.com>
5126 L:      linux-hwmon@vger.kernel.org
5127 S:      Maintained
5128 F:      Documentation/hwmon/dme1737.rst
5129 F:      drivers/hwmon/dme1737.c
5130
5131 DMI/SMBIOS SUPPORT
5132 M:      Jean Delvare <jdelvare@suse.com>
5133 S:      Maintained
5134 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5135 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5136 F:      drivers/firmware/dmi-id.c
5137 F:      drivers/firmware/dmi_scan.c
5138 F:      include/linux/dmi.h
5139
5140 DOCUMENTATION
5141 M:      Jonathan Corbet <corbet@lwn.net>
5142 L:      linux-doc@vger.kernel.org
5143 S:      Maintained
5144 T:      git git://git.lwn.net/linux.git docs-next
5145 F:      Documentation/
5146 F:      scripts/documentation-file-ref-check
5147 F:      scripts/kernel-doc
5148 F:      scripts/sphinx-pre-install
5149 X:      Documentation/ABI/
5150 X:      Documentation/admin-guide/media/
5151 X:      Documentation/devicetree/
5152 X:      Documentation/driver-api/media/
5153 X:      Documentation/firmware-guide/acpi/
5154 X:      Documentation/i2c/
5155 X:      Documentation/power/
5156 X:      Documentation/spi/
5157 X:      Documentation/userspace-api/media/
5158
5159 DOCUMENTATION SCRIPTS
5160 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5161 L:      linux-doc@vger.kernel.org
5162 S:      Maintained
5163 F:      Documentation/sphinx/parse-headers.pl
5164 F:      scripts/documentation-file-ref-check
5165 F:      scripts/sphinx-pre-install
5166
5167 DOCUMENTATION/ITALIAN
5168 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5169 L:      linux-doc@vger.kernel.org
5170 S:      Maintained
5171 F:      Documentation/translations/it_IT
5172
5173 DONGWOON DW9714 LENS VOICE COIL DRIVER
5174 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5175 L:      linux-media@vger.kernel.org
5176 S:      Maintained
5177 T:      git git://linuxtv.org/media_tree.git
5178 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5179 F:      drivers/media/i2c/dw9714.c
5180
5181 DONGWOON DW9807 LENS VOICE COIL DRIVER
5182 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5183 L:      linux-media@vger.kernel.org
5184 S:      Maintained
5185 T:      git git://linuxtv.org/media_tree.git
5186 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5187 F:      drivers/media/i2c/dw9807-vcm.c
5188
5189 DOUBLETALK DRIVER
5190 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5191 L:      blinux-list@redhat.com
5192 S:      Maintained
5193 F:      drivers/char/dtlk.c
5194 F:      include/linux/dtlk.h
5195
5196 DPAA2 DATAPATH I/O (DPIO) DRIVER
5197 M:      Roy Pledge <Roy.Pledge@nxp.com>
5198 L:      linux-kernel@vger.kernel.org
5199 S:      Maintained
5200 F:      drivers/soc/fsl/dpio
5201
5202 DPAA2 ETHERNET DRIVER
5203 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5204 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5205 L:      netdev@vger.kernel.org
5206 S:      Maintained
5207 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5208 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5209 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5210 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5211 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5212 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5213 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5214 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5215 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5216
5217 DPAA2 ETHERNET SWITCH DRIVER
5218 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5219 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5220 L:      linux-kernel@vger.kernel.org
5221 S:      Maintained
5222 F:      drivers/staging/fsl-dpaa2/ethsw
5223
5224 DPT_I2O SCSI RAID DRIVER
5225 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5226 L:      linux-scsi@vger.kernel.org
5227 S:      Maintained
5228 W:      http://www.adaptec.com/
5229 F:      drivers/scsi/dpt*
5230 F:      drivers/scsi/dpt/
5231
5232 DRBD DRIVER
5233 M:      Philipp Reisner <philipp.reisner@linbit.com>
5234 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5235 L:      drbd-dev@lists.linbit.com
5236 S:      Supported
5237 W:      http://www.drbd.org
5238 T:      git git://git.linbit.com/linux-drbd.git
5239 T:      git git://git.linbit.com/drbd-8.4.git
5240 F:      Documentation/admin-guide/blockdev/
5241 F:      drivers/block/drbd/
5242 F:      lib/lru_cache.c
5243
5244 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5245 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5246 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5247 S:      Supported
5248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5249 F:      Documentation/core-api/kobject.rst
5250 F:      drivers/base/
5251 F:      fs/debugfs/
5252 F:      fs/sysfs/
5253 F:      include/linux/debugfs.h
5254 F:      include/linux/kobj*
5255 F:      lib/kobj*
5256
5257 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5258 M:      Kevin Hilman <khilman@kernel.org>
5259 M:      Nishanth Menon <nm@ti.com>
5260 L:      linux-pm@vger.kernel.org
5261 S:      Maintained
5262 F:      drivers/power/avs/
5263 F:      include/linux/power/smartreflex.h
5264
5265 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5266 M:      Maxime Ripard <mripard@kernel.org>
5267 M:      Chen-Yu Tsai <wens@csie.org>
5268 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5269 L:      dri-devel@lists.freedesktop.org
5270 S:      Supported
5271 T:      git git://anongit.freedesktop.org/drm/drm-misc
5272 F:      drivers/gpu/drm/sun4i/sun8i*
5273
5274 DRM DRIVER FOR ARM PL111 CLCD
5275 M:      Eric Anholt <eric@anholt.net>
5276 S:      Supported
5277 T:      git git://anongit.freedesktop.org/drm/drm-misc
5278 F:      drivers/gpu/drm/pl111/
5279
5280 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5281 M:      Linus Walleij <linus.walleij@linaro.org>
5282 S:      Maintained
5283 T:      git git://anongit.freedesktop.org/drm/drm-misc
5284 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5285 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5286
5287 DRM DRIVER FOR ASPEED BMC GFX
5288 M:      Joel Stanley <joel@jms.id.au>
5289 L:      linux-aspeed@lists.ozlabs.org
5290 S:      Supported
5291 T:      git git://anongit.freedesktop.org/drm/drm-misc
5292 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5293 F:      drivers/gpu/drm/aspeed/
5294
5295 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5296 M:      Dave Airlie <airlied@redhat.com>
5297 S:      Odd Fixes
5298 F:      drivers/gpu/drm/ast/
5299
5300 DRM DRIVER FOR BOCHS VIRTUAL GPU
5301 M:      Gerd Hoffmann <kraxel@redhat.com>
5302 L:      virtualization@lists.linux-foundation.org
5303 S:      Maintained
5304 T:      git git://anongit.freedesktop.org/drm/drm-misc
5305 F:      drivers/gpu/drm/bochs/
5306
5307 DRM DRIVER FOR BOE HIMAX8279D PANELS
5308 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5309 S:      Maintained
5310 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5311 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5312
5313 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5314 M:      Linus Walleij <linus.walleij@linaro.org>
5315 S:      Maintained
5316 T:      git git://anongit.freedesktop.org/drm/drm-misc
5317 F:      drivers/gpu/drm/tve200/
5318
5319 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5320 M:      Icenowy Zheng <icenowy@aosc.io>
5321 S:      Maintained
5322 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5323 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5324
5325 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5326 M:      Jagan Teki <jagan@amarulasolutions.com>
5327 S:      Maintained
5328 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5329 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5330
5331 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5332 M:      Hans de Goede <hdegoede@redhat.com>
5333 S:      Maintained
5334 T:      git git://anongit.freedesktop.org/drm/drm-misc
5335 F:      drivers/gpu/drm/tiny/gm12u320.c
5336
5337 DRM DRIVER FOR HX8357D PANELS
5338 M:      Eric Anholt <eric@anholt.net>
5339 S:      Maintained
5340 T:      git git://anongit.freedesktop.org/drm/drm-misc
5341 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5342 F:      drivers/gpu/drm/tiny/hx8357d.c
5343
5344 DRM DRIVER FOR ILITEK ILI9225 PANELS
5345 M:      David Lechner <david@lechnology.com>
5346 S:      Maintained
5347 T:      git git://anongit.freedesktop.org/drm/drm-misc
5348 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5349 F:      drivers/gpu/drm/tiny/ili9225.c
5350
5351 DRM DRIVER FOR ILITEK ILI9486 PANELS
5352 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5353 S:      Maintained
5354 T:      git git://anongit.freedesktop.org/drm/drm-misc
5355 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5356 F:      drivers/gpu/drm/tiny/ili9486.c
5357
5358 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5359 S:      Orphan / Obsolete
5360 F:      drivers/gpu/drm/i810/
5361 F:      include/uapi/drm/i810_drm.h
5362
5363 DRM DRIVER FOR LVDS PANELS
5364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5365 L:      dri-devel@lists.freedesktop.org
5366 T:      git git://anongit.freedesktop.org/drm/drm-misc
5367 S:      Maintained
5368 F:      drivers/gpu/drm/panel/panel-lvds.c
5369 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5370
5371 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5372 S:      Orphan / Obsolete
5373 F:      drivers/gpu/drm/mga/
5374 F:      include/uapi/drm/mga_drm.h
5375
5376 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5377 M:      Dave Airlie <airlied@redhat.com>
5378 S:      Odd Fixes
5379 F:      drivers/gpu/drm/mgag200/
5380
5381 DRM DRIVER FOR MI0283QT
5382 M:      Noralf Trønnes <noralf@tronnes.org>
5383 S:      Maintained
5384 T:      git git://anongit.freedesktop.org/drm/drm-misc
5385 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5386 F:      drivers/gpu/drm/tiny/mi0283qt.c
5387
5388 DRM DRIVER FOR MSM ADRENO GPU
5389 M:      Rob Clark <robdclark@gmail.com>
5390 M:      Sean Paul <sean@poorly.run>
5391 L:      linux-arm-msm@vger.kernel.org
5392 L:      dri-devel@lists.freedesktop.org
5393 L:      freedreno@lists.freedesktop.org
5394 S:      Maintained
5395 T:      git https://gitlab.freedesktop.org/drm/msm.git
5396 F:      Documentation/devicetree/bindings/display/msm/
5397 F:      drivers/gpu/drm/msm/
5398 F:      include/uapi/drm/msm_drm.h
5399
5400 DRM DRIVER FOR NOVATEK NT35510 PANELS
5401 M:      Linus Walleij <linus.walleij@linaro.org>
5402 S:      Maintained
5403 T:      git git://anongit.freedesktop.org/drm/drm-misc
5404 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5405 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5406
5407 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5408 M:      Ben Skeggs <bskeggs@redhat.com>
5409 L:      dri-devel@lists.freedesktop.org
5410 L:      nouveau@lists.freedesktop.org
5411 S:      Supported
5412 T:      git git://github.com/skeggsb/linux
5413 F:      drivers/gpu/drm/nouveau/
5414 F:      include/uapi/drm/nouveau_drm.h
5415
5416 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5417 M:      Stefan Mavrodiev <stefan@olimex.com>
5418 S:      Maintained
5419 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5420 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5421
5422 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5423 M:      Noralf Trønnes <noralf@tronnes.org>
5424 S:      Maintained
5425 T:      git git://anongit.freedesktop.org/drm/drm-misc
5426 F:      Documentation/devicetree/bindings/display/repaper.txt
5427 F:      drivers/gpu/drm/tiny/repaper.c
5428
5429 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5430 M:      Dave Airlie <airlied@redhat.com>
5431 M:      Gerd Hoffmann <kraxel@redhat.com>
5432 L:      virtualization@lists.linux-foundation.org
5433 S:      Obsolete
5434 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5435 T:      git git://anongit.freedesktop.org/drm/drm-misc
5436 F:      drivers/gpu/drm/tiny/cirrus.c
5437
5438 DRM DRIVER FOR QXL VIRTUAL GPU
5439 M:      Dave Airlie <airlied@redhat.com>
5440 M:      Gerd Hoffmann <kraxel@redhat.com>
5441 L:      virtualization@lists.linux-foundation.org
5442 L:      spice-devel@lists.freedesktop.org
5443 S:      Maintained
5444 T:      git git://anongit.freedesktop.org/drm/drm-misc
5445 F:      drivers/gpu/drm/qxl/
5446 F:      include/uapi/drm/qxl_drm.h
5447
5448 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5449 S:      Orphan / Obsolete
5450 F:      drivers/gpu/drm/r128/
5451 F:      include/uapi/drm/r128_drm.h
5452
5453 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5454 M:      Robert Chiras <robert.chiras@nxp.com>
5455 S:      Maintained
5456 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5457 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5458
5459 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5460 M:      Guido Günther <agx@sigxcpu.org>
5461 R:      Purism Kernel Team <kernel@puri.sm>
5462 S:      Maintained
5463 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5464 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5465
5466 DRM DRIVER FOR SAVAGE VIDEO CARDS
5467 S:      Orphan / Obsolete
5468 F:      drivers/gpu/drm/savage/
5469 F:      include/uapi/drm/savage_drm.h
5470
5471 DRM DRIVER FOR SIS VIDEO CARDS
5472 S:      Orphan / Obsolete
5473 F:      drivers/gpu/drm/sis/
5474 F:      include/uapi/drm/sis_drm.h
5475
5476 DRM DRIVER FOR SITRONIX ST7586 PANELS
5477 M:      David Lechner <david@lechnology.com>
5478 S:      Maintained
5479 T:      git git://anongit.freedesktop.org/drm/drm-misc
5480 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5481 F:      drivers/gpu/drm/tiny/st7586.c
5482
5483 DRM DRIVER FOR SITRONIX ST7701 PANELS
5484 M:      Jagan Teki <jagan@amarulasolutions.com>
5485 S:      Maintained
5486 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
5487 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5488
5489 DRM DRIVER FOR SITRONIX ST7735R PANELS
5490 M:      David Lechner <david@lechnology.com>
5491 S:      Maintained
5492 T:      git git://anongit.freedesktop.org/drm/drm-misc
5493 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5494 F:      drivers/gpu/drm/tiny/st7735r.c
5495
5496 DRM DRIVER FOR SONY ACX424AKP PANELS
5497 M:      Linus Walleij <linus.walleij@linaro.org>
5498 S:      Maintained
5499 T:      git git://anongit.freedesktop.org/drm/drm-misc
5500 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5501
5502 DRM DRIVER FOR ST-ERICSSON MCDE
5503 M:      Linus Walleij <linus.walleij@linaro.org>
5504 S:      Maintained
5505 T:      git git://anongit.freedesktop.org/drm/drm-misc
5506 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5507 F:      drivers/gpu/drm/mcde/
5508
5509 DRM DRIVER FOR TDFX VIDEO CARDS
5510 S:      Orphan / Obsolete
5511 F:      drivers/gpu/drm/tdfx/
5512
5513 DRM DRIVER FOR TPO TPG110 PANELS
5514 M:      Linus Walleij <linus.walleij@linaro.org>
5515 S:      Maintained
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5518 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5519
5520 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5521 M:      Dave Airlie <airlied@redhat.com>
5522 R:      Sean Paul <sean@poorly.run>
5523 L:      dri-devel@lists.freedesktop.org
5524 S:      Odd Fixes
5525 T:      git git://anongit.freedesktop.org/drm/drm-misc
5526 F:      drivers/gpu/drm/udl/
5527
5528 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5529 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5530 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5531 R:      Daniel Vetter <daniel@ffwll.ch>
5532 L:      dri-devel@lists.freedesktop.org
5533 S:      Maintained
5534 T:      git git://anongit.freedesktop.org/drm/drm-misc
5535 F:      Documentation/gpu/vkms.rst
5536 F:      drivers/gpu/drm/vkms/
5537
5538 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5539 M:      Hans de Goede <hdegoede@redhat.com>
5540 L:      dri-devel@lists.freedesktop.org
5541 S:      Maintained
5542 T:      git git://anongit.freedesktop.org/drm/drm-misc
5543 F:      drivers/gpu/drm/vboxvideo/
5544
5545 DRM DRIVER FOR VMWARE VIRTUAL GPU
5546 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5547 M:      Roland Scheidegger <sroland@vmware.com>
5548 L:      dri-devel@lists.freedesktop.org
5549 S:      Supported
5550 T:      git git://people.freedesktop.org/~sroland/linux
5551 F:      drivers/gpu/drm/vmwgfx/
5552 F:      include/uapi/drm/vmwgfx_drm.h
5553
5554 DRM DRIVERS
5555 M:      David Airlie <airlied@linux.ie>
5556 M:      Daniel Vetter <daniel@ffwll.ch>
5557 L:      dri-devel@lists.freedesktop.org
5558 S:      Maintained
5559 B:      https://bugs.freedesktop.org/
5560 C:      irc://chat.freenode.net/dri-devel
5561 T:      git git://anongit.freedesktop.org/drm/drm
5562 F:      Documentation/devicetree/bindings/display/
5563 F:      Documentation/devicetree/bindings/gpu/
5564 F:      Documentation/gpu/
5565 F:      drivers/gpu/drm/
5566 F:      drivers/gpu/vga/
5567 F:      include/drm/
5568 F:      include/linux/vga*
5569 F:      include/uapi/drm/
5570
5571 DRM DRIVERS AND MISC GPU PATCHES
5572 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5573 M:      Maxime Ripard <mripard@kernel.org>
5574 M:      Thomas Zimmermann <tzimmermann@suse.de>
5575 S:      Maintained
5576 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5577 T:      git git://anongit.freedesktop.org/drm/drm-misc
5578 F:      Documentation/gpu/
5579 F:      drivers/gpu/drm/*
5580 F:      drivers/gpu/vga/
5581 F:      include/drm/drm*
5582 F:      include/linux/vga*
5583 F:      include/uapi/drm/drm*
5584
5585 DRM DRIVERS FOR ALLWINNER A10
5586 M:      Maxime Ripard <mripard@kernel.org>
5587 M:      Chen-Yu Tsai <wens@csie.org>
5588 L:      dri-devel@lists.freedesktop.org
5589 S:      Supported
5590 T:      git git://anongit.freedesktop.org/drm/drm-misc
5591 F:      Documentation/devicetree/bindings/display/allwinner*
5592 F:      drivers/gpu/drm/sun4i/
5593
5594 DRM DRIVERS FOR AMLOGIC SOCS
5595 M:      Neil Armstrong <narmstrong@baylibre.com>
5596 L:      dri-devel@lists.freedesktop.org
5597 L:      linux-amlogic@lists.infradead.org
5598 S:      Supported
5599 W:      http://linux-meson.com/
5600 T:      git git://anongit.freedesktop.org/drm/drm-misc
5601 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5602 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5603 F:      Documentation/gpu/meson.rst
5604 F:      drivers/gpu/drm/meson/
5605
5606 DRM DRIVERS FOR ATMEL HLCDC
5607 M:      Sam Ravnborg <sam@ravnborg.org>
5608 M:      Boris Brezillon <bbrezillon@kernel.org>
5609 L:      dri-devel@lists.freedesktop.org
5610 S:      Supported
5611 T:      git git://anongit.freedesktop.org/drm/drm-misc
5612 F:      Documentation/devicetree/bindings/display/atmel/
5613 F:      drivers/gpu/drm/atmel-hlcdc/
5614
5615 DRM DRIVERS FOR BRIDGE CHIPS
5616 M:      Andrzej Hajda <a.hajda@samsung.com>
5617 M:      Neil Armstrong <narmstrong@baylibre.com>
5618 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5619 R:      Jonas Karlman <jonas@kwiboo.se>
5620 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5621 S:      Maintained
5622 T:      git git://anongit.freedesktop.org/drm/drm-misc
5623 F:      drivers/gpu/drm/bridge/
5624
5625 DRM DRIVERS FOR EXYNOS
5626 M:      Inki Dae <inki.dae@samsung.com>
5627 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5628 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5629 M:      Kyungmin Park <kyungmin.park@samsung.com>
5630 L:      dri-devel@lists.freedesktop.org
5631 S:      Supported
5632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5633 F:      Documentation/devicetree/bindings/display/exynos/
5634 F:      drivers/gpu/drm/exynos/
5635 F:      include/uapi/drm/exynos_drm.h
5636
5637 DRM DRIVERS FOR FREESCALE DCU
5638 M:      Stefan Agner <stefan@agner.ch>
5639 M:      Alison Wang <alison.wang@nxp.com>
5640 L:      dri-devel@lists.freedesktop.org
5641 S:      Supported
5642 T:      git git://anongit.freedesktop.org/drm/drm-misc
5643 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5644 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5645 F:      drivers/gpu/drm/fsl-dcu/
5646
5647 DRM DRIVERS FOR FREESCALE IMX
5648 M:      Philipp Zabel <p.zabel@pengutronix.de>
5649 L:      dri-devel@lists.freedesktop.org
5650 S:      Maintained
5651 F:      Documentation/devicetree/bindings/display/imx/
5652 F:      drivers/gpu/drm/imx/
5653 F:      drivers/gpu/ipu-v3/
5654
5655 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5656 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5657 L:      dri-devel@lists.freedesktop.org
5658 S:      Maintained
5659 T:      git git://github.com/patjak/drm-gma500
5660 F:      drivers/gpu/drm/gma500/
5661
5662 DRM DRIVERS FOR HISILICON
5663 M:      Xinliang Liu <xinliang.liu@linaro.org>
5664 M:      Rongrong Zou <zourongrong@gmail.com>
5665 R:      John Stultz <john.stultz@linaro.org>
5666 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5667 R:      Chen Feng <puck.chen@hisilicon.com>
5668 L:      dri-devel@lists.freedesktop.org
5669 S:      Maintained
5670 T:      git git://anongit.freedesktop.org/drm/drm-misc
5671 F:      Documentation/devicetree/bindings/display/hisilicon/
5672 F:      drivers/gpu/drm/hisilicon/
5673
5674 DRM DRIVERS FOR LIMA
5675 M:      Qiang Yu <yuq825@gmail.com>
5676 L:      dri-devel@lists.freedesktop.org
5677 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5678 S:      Maintained
5679 T:      git git://anongit.freedesktop.org/drm/drm-misc
5680 F:      drivers/gpu/drm/lima/
5681 F:      include/uapi/drm/lima_drm.h
5682
5683 DRM DRIVERS FOR MEDIATEK
5684 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5685 M:      Philipp Zabel <p.zabel@pengutronix.de>
5686 L:      dri-devel@lists.freedesktop.org
5687 S:      Supported
5688 F:      Documentation/devicetree/bindings/display/mediatek/
5689 F:      drivers/gpu/drm/mediatek/
5690
5691 DRM DRIVERS FOR NVIDIA TEGRA
5692 M:      Thierry Reding <thierry.reding@gmail.com>
5693 L:      dri-devel@lists.freedesktop.org
5694 L:      linux-tegra@vger.kernel.org
5695 S:      Supported
5696 T:      git git://anongit.freedesktop.org/tegra/linux.git
5697 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5698 F:      drivers/gpu/drm/tegra/
5699 F:      drivers/gpu/host1x/
5700 F:      include/linux/host1x.h
5701 F:      include/uapi/drm/tegra_drm.h
5702
5703 DRM DRIVERS FOR RENESAS
5704 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5705 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5706 L:      dri-devel@lists.freedesktop.org
5707 L:      linux-renesas-soc@vger.kernel.org
5708 S:      Supported
5709 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5710 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5711 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5712 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5713 F:      drivers/gpu/drm/rcar-du/
5714 F:      drivers/gpu/drm/shmobile/
5715 F:      include/linux/platform_data/shmob_drm.h
5716
5717 DRM DRIVERS FOR ROCKCHIP
5718 M:      Sandy Huang <hjc@rock-chips.com>
5719 M:      Heiko Stübner <heiko@sntech.de>
5720 L:      dri-devel@lists.freedesktop.org
5721 S:      Maintained
5722 T:      git git://anongit.freedesktop.org/drm/drm-misc
5723 F:      Documentation/devicetree/bindings/display/rockchip/
5724 F:      drivers/gpu/drm/rockchip/
5725
5726 DRM DRIVERS FOR STI
5727 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5728 M:      Vincent Abriou <vincent.abriou@st.com>
5729 L:      dri-devel@lists.freedesktop.org
5730 S:      Maintained
5731 T:      git git://anongit.freedesktop.org/drm/drm-misc
5732 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5733 F:      drivers/gpu/drm/sti
5734
5735 DRM DRIVERS FOR STM
5736 M:      Yannick Fertre <yannick.fertre@st.com>
5737 M:      Philippe Cornu <philippe.cornu@st.com>
5738 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5739 M:      Vincent Abriou <vincent.abriou@st.com>
5740 L:      dri-devel@lists.freedesktop.org
5741 S:      Maintained
5742 T:      git git://anongit.freedesktop.org/drm/drm-misc
5743 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5744 F:      drivers/gpu/drm/stm
5745
5746 DRM DRIVERS FOR TI KEYSTONE
5747 M:      Jyri Sarha <jsarha@ti.com>
5748 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5749 L:      dri-devel@lists.freedesktop.org
5750 S:      Maintained
5751 T:      git git://anongit.freedesktop.org/drm/drm-misc
5752 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5753 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5754 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5755 F:      drivers/gpu/drm/tidss/
5756
5757 DRM DRIVERS FOR TI LCDC
5758 M:      Jyri Sarha <jsarha@ti.com>
5759 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5760 L:      dri-devel@lists.freedesktop.org
5761 S:      Maintained
5762 F:      Documentation/devicetree/bindings/display/tilcdc/
5763 F:      drivers/gpu/drm/tilcdc/
5764
5765 DRM DRIVERS FOR TI OMAP
5766 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5767 L:      dri-devel@lists.freedesktop.org
5768 S:      Maintained
5769 F:      Documentation/devicetree/bindings/display/ti/
5770 F:      drivers/gpu/drm/omapdrm/
5771
5772 DRM DRIVERS FOR V3D
5773 M:      Eric Anholt <eric@anholt.net>
5774 S:      Supported
5775 T:      git git://anongit.freedesktop.org/drm/drm-misc
5776 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5777 F:      drivers/gpu/drm/v3d/
5778 F:      include/uapi/drm/v3d_drm.h
5779
5780 DRM DRIVERS FOR VC4
5781 M:      Eric Anholt <eric@anholt.net>
5782 S:      Supported
5783 T:      git git://github.com/anholt/linux
5784 T:      git git://anongit.freedesktop.org/drm/drm-misc
5785 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5786 F:      drivers/gpu/drm/vc4/
5787 F:      include/uapi/drm/vc4_drm.h
5788
5789 DRM DRIVERS FOR VIVANTE GPU IP
5790 M:      Lucas Stach <l.stach@pengutronix.de>
5791 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5792 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5793 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5794 L:      dri-devel@lists.freedesktop.org
5795 S:      Maintained
5796 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5797 F:      drivers/gpu/drm/etnaviv/
5798 F:      include/uapi/drm/etnaviv_drm.h
5799
5800 DRM DRIVERS FOR XEN
5801 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5802 L:      dri-devel@lists.freedesktop.org
5803 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5804 S:      Supported
5805 T:      git git://anongit.freedesktop.org/drm/drm-misc
5806 F:      Documentation/gpu/xen-front.rst
5807 F:      drivers/gpu/drm/xen/
5808
5809 DRM DRIVERS FOR ZTE ZX
5810 M:      Shawn Guo <shawnguo@kernel.org>
5811 L:      dri-devel@lists.freedesktop.org
5812 S:      Maintained
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5815 F:      drivers/gpu/drm/zte/
5816
5817 DRM PANEL DRIVERS
5818 M:      Thierry Reding <thierry.reding@gmail.com>
5819 R:      Sam Ravnborg <sam@ravnborg.org>
5820 L:      dri-devel@lists.freedesktop.org
5821 S:      Maintained
5822 T:      git git://anongit.freedesktop.org/drm/drm-misc
5823 F:      Documentation/devicetree/bindings/display/panel/
5824 F:      drivers/gpu/drm/drm_panel.c
5825 F:      drivers/gpu/drm/panel/
5826 F:      include/drm/drm_panel.h
5827
5828 DRM TTM SUBSYSTEM
5829 M:      Christian Koenig <christian.koenig@amd.com>
5830 M:      Huang Rui <ray.huang@amd.com>
5831 L:      dri-devel@lists.freedesktop.org
5832 S:      Maintained
5833 T:      git git://people.freedesktop.org/~agd5f/linux
5834 F:      drivers/gpu/drm/ttm/
5835 F:      include/drm/ttm/
5836
5837 DSBR100 USB FM RADIO DRIVER
5838 M:      Alexey Klimov <klimov.linux@gmail.com>
5839 L:      linux-media@vger.kernel.org
5840 S:      Maintained
5841 T:      git git://linuxtv.org/media_tree.git
5842 F:      drivers/media/radio/dsbr100.c
5843
5844 DT3155 MEDIA DRIVER
5845 M:      Hans Verkuil <hverkuil@xs4all.nl>
5846 L:      linux-media@vger.kernel.org
5847 S:      Odd Fixes
5848 W:      https://linuxtv.org
5849 T:      git git://linuxtv.org/media_tree.git
5850 F:      drivers/media/pci/dt3155/
5851
5852 DVB_USB_AF9015 MEDIA DRIVER
5853 M:      Antti Palosaari <crope@iki.fi>
5854 L:      linux-media@vger.kernel.org
5855 S:      Maintained
5856 W:      https://linuxtv.org
5857 W:      http://palosaari.fi/linux/
5858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5859 T:      git git://linuxtv.org/anttip/media_tree.git
5860 F:      drivers/media/usb/dvb-usb-v2/af9015*
5861
5862 DVB_USB_AF9035 MEDIA DRIVER
5863 M:      Antti Palosaari <crope@iki.fi>
5864 L:      linux-media@vger.kernel.org
5865 S:      Maintained
5866 W:      https://linuxtv.org
5867 W:      http://palosaari.fi/linux/
5868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5869 T:      git git://linuxtv.org/anttip/media_tree.git
5870 F:      drivers/media/usb/dvb-usb-v2/af9035*
5871
5872 DVB_USB_ANYSEE MEDIA DRIVER
5873 M:      Antti Palosaari <crope@iki.fi>
5874 L:      linux-media@vger.kernel.org
5875 S:      Maintained
5876 W:      https://linuxtv.org
5877 W:      http://palosaari.fi/linux/
5878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5879 T:      git git://linuxtv.org/anttip/media_tree.git
5880 F:      drivers/media/usb/dvb-usb-v2/anysee*
5881
5882 DVB_USB_AU6610 MEDIA DRIVER
5883 M:      Antti Palosaari <crope@iki.fi>
5884 L:      linux-media@vger.kernel.org
5885 S:      Maintained
5886 W:      https://linuxtv.org
5887 W:      http://palosaari.fi/linux/
5888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5889 T:      git git://linuxtv.org/anttip/media_tree.git
5890 F:      drivers/media/usb/dvb-usb-v2/au6610*
5891
5892 DVB_USB_CE6230 MEDIA DRIVER
5893 M:      Antti Palosaari <crope@iki.fi>
5894 L:      linux-media@vger.kernel.org
5895 S:      Maintained
5896 W:      https://linuxtv.org
5897 W:      http://palosaari.fi/linux/
5898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5899 T:      git git://linuxtv.org/anttip/media_tree.git
5900 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5901
5902 DVB_USB_CXUSB MEDIA DRIVER
5903 M:      Michael Krufky <mkrufky@linuxtv.org>
5904 L:      linux-media@vger.kernel.org
5905 S:      Maintained
5906 W:      https://linuxtv.org
5907 W:      http://github.com/mkrufky
5908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5909 T:      git git://linuxtv.org/media_tree.git
5910 F:      drivers/media/usb/dvb-usb/cxusb*
5911
5912 DVB_USB_EC168 MEDIA DRIVER
5913 M:      Antti Palosaari <crope@iki.fi>
5914 L:      linux-media@vger.kernel.org
5915 S:      Maintained
5916 W:      https://linuxtv.org
5917 W:      http://palosaari.fi/linux/
5918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5919 T:      git git://linuxtv.org/anttip/media_tree.git
5920 F:      drivers/media/usb/dvb-usb-v2/ec168*
5921
5922 DVB_USB_GL861 MEDIA DRIVER
5923 M:      Antti Palosaari <crope@iki.fi>
5924 L:      linux-media@vger.kernel.org
5925 S:      Maintained
5926 W:      https://linuxtv.org
5927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5928 T:      git git://linuxtv.org/anttip/media_tree.git
5929 F:      drivers/media/usb/dvb-usb-v2/gl861*
5930
5931 DVB_USB_MXL111SF MEDIA DRIVER
5932 M:      Michael Krufky <mkrufky@linuxtv.org>
5933 L:      linux-media@vger.kernel.org
5934 S:      Maintained
5935 W:      https://linuxtv.org
5936 W:      http://github.com/mkrufky
5937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5938 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5939 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5940
5941 DVB_USB_RTL28XXU MEDIA DRIVER
5942 M:      Antti Palosaari <crope@iki.fi>
5943 L:      linux-media@vger.kernel.org
5944 S:      Maintained
5945 W:      https://linuxtv.org
5946 W:      http://palosaari.fi/linux/
5947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5948 T:      git git://linuxtv.org/anttip/media_tree.git
5949 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5950
5951 DVB_USB_V2 MEDIA DRIVER
5952 M:      Antti Palosaari <crope@iki.fi>
5953 L:      linux-media@vger.kernel.org
5954 S:      Maintained
5955 W:      https://linuxtv.org
5956 W:      http://palosaari.fi/linux/
5957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5958 T:      git git://linuxtv.org/anttip/media_tree.git
5959 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5960 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5961
5962 DYNAMIC DEBUG
5963 M:      Jason Baron <jbaron@akamai.com>
5964 S:      Maintained
5965 F:      include/linux/dynamic_debug.h
5966 F:      lib/dynamic_debug.c
5967
5968 DYNAMIC INTERRUPT MODERATION
5969 M:      Tal Gilboa <talgi@mellanox.com>
5970 S:      Maintained
5971 F:      Documentation/networking/net_dim.rst
5972 F:      include/linux/dim.h
5973 F:      lib/dim/
5974
5975 DZ DECSTATION DZ11 SERIAL DRIVER
5976 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5977 S:      Maintained
5978 F:      drivers/tty/serial/dz.*
5979
5980 E3X0 POWER BUTTON DRIVER
5981 M:      Moritz Fischer <moritz.fischer@ettus.com>
5982 L:      usrp-users@lists.ettus.com
5983 S:      Supported
5984 W:      http://www.ettus.com
5985 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5986 F:      drivers/input/misc/e3x0-button.c
5987
5988 E4000 MEDIA DRIVER
5989 M:      Antti Palosaari <crope@iki.fi>
5990 L:      linux-media@vger.kernel.org
5991 S:      Maintained
5992 W:      https://linuxtv.org
5993 W:      http://palosaari.fi/linux/
5994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5995 T:      git git://linuxtv.org/anttip/media_tree.git
5996 F:      drivers/media/tuners/e4000*
5997
5998 EARTH_PT1 MEDIA DRIVER
5999 M:      Akihiro Tsukada <tskd08@gmail.com>
6000 L:      linux-media@vger.kernel.org
6001 S:      Odd Fixes
6002 F:      drivers/media/pci/pt1/
6003
6004 EARTH_PT3 MEDIA DRIVER
6005 M:      Akihiro Tsukada <tskd08@gmail.com>
6006 L:      linux-media@vger.kernel.org
6007 S:      Odd Fixes
6008 F:      drivers/media/pci/pt3/
6009
6010 EC100 MEDIA DRIVER
6011 M:      Antti Palosaari <crope@iki.fi>
6012 L:      linux-media@vger.kernel.org
6013 S:      Maintained
6014 W:      https://linuxtv.org
6015 W:      http://palosaari.fi/linux/
6016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6017 T:      git git://linuxtv.org/anttip/media_tree.git
6018 F:      drivers/media/dvb-frontends/ec100*
6019
6020 ECRYPT FILE SYSTEM
6021 M:      Tyler Hicks <code@tyhicks.com>
6022 L:      ecryptfs@vger.kernel.org
6023 S:      Odd Fixes
6024 W:      http://ecryptfs.org
6025 W:      https://launchpad.net/ecryptfs
6026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6027 F:      Documentation/filesystems/ecryptfs.rst
6028 F:      fs/ecryptfs/
6029
6030 EDAC-AMD64
6031 M:      Borislav Petkov <bp@alien8.de>
6032 L:      linux-edac@vger.kernel.org
6033 S:      Maintained
6034 F:      drivers/edac/amd64_edac*
6035
6036 EDAC-ARMADA
6037 M:      Jan Luebbe <jlu@pengutronix.de>
6038 L:      linux-edac@vger.kernel.org
6039 S:      Maintained
6040 F:      drivers/edac/armada_xp_*
6041
6042 EDAC-AST2500
6043 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6044 S:      Supported
6045 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6046 F:      drivers/edac/aspeed_edac.c
6047
6048 EDAC-BLUEFIELD
6049 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6050 S:      Supported
6051 F:      drivers/edac/bluefield_edac.c
6052
6053 EDAC-CALXEDA
6054 M:      Robert Richter <rric@kernel.org>
6055 L:      linux-edac@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/edac/highbank*
6058
6059 EDAC-CAVIUM OCTEON
6060 M:      Ralf Baechle <ralf@linux-mips.org>
6061 M:      Robert Richter <rrichter@marvell.com>
6062 L:      linux-edac@vger.kernel.org
6063 L:      linux-mips@vger.kernel.org
6064 S:      Supported
6065 F:      drivers/edac/octeon_edac*
6066
6067 EDAC-CAVIUM THUNDERX
6068 M:      Robert Richter <rrichter@marvell.com>
6069 L:      linux-edac@vger.kernel.org
6070 S:      Supported
6071 F:      drivers/edac/thunderx_edac*
6072
6073 EDAC-CORE
6074 M:      Borislav Petkov <bp@alien8.de>
6075 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6076 M:      Tony Luck <tony.luck@intel.com>
6077 R:      James Morse <james.morse@arm.com>
6078 R:      Robert Richter <rrichter@marvell.com>
6079 L:      linux-edac@vger.kernel.org
6080 S:      Supported
6081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6082 F:      Documentation/admin-guide/ras.rst
6083 F:      Documentation/driver-api/edac.rst
6084 F:      drivers/edac/
6085 F:      include/linux/edac.h
6086
6087 EDAC-DMC520
6088 M:      Lei Wang <lewan@microsoft.com>
6089 L:      linux-edac@vger.kernel.org
6090 S:      Supported
6091 F:      drivers/edac/dmc520_edac.c
6092
6093 EDAC-E752X
6094 M:      Mark Gross <mark.gross@intel.com>
6095 L:      linux-edac@vger.kernel.org
6096 S:      Maintained
6097 F:      drivers/edac/e752x_edac.c
6098
6099 EDAC-E7XXX
6100 L:      linux-edac@vger.kernel.org
6101 S:      Maintained
6102 F:      drivers/edac/e7xxx_edac.c
6103
6104 EDAC-FSL_DDR
6105 M:      York Sun <york.sun@nxp.com>
6106 L:      linux-edac@vger.kernel.org
6107 S:      Maintained
6108 F:      drivers/edac/fsl_ddr_edac.*
6109
6110 EDAC-GHES
6111 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6112 L:      linux-edac@vger.kernel.org
6113 S:      Maintained
6114 F:      drivers/edac/ghes_edac.c
6115
6116 EDAC-I10NM
6117 M:      Tony Luck <tony.luck@intel.com>
6118 L:      linux-edac@vger.kernel.org
6119 S:      Maintained
6120 F:      drivers/edac/i10nm_base.c
6121
6122 EDAC-I3000
6123 L:      linux-edac@vger.kernel.org
6124 S:      Orphan
6125 F:      drivers/edac/i3000_edac.c
6126
6127 EDAC-I5000
6128 L:      linux-edac@vger.kernel.org
6129 S:      Maintained
6130 F:      drivers/edac/i5000_edac.c
6131
6132 EDAC-I5400
6133 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6134 L:      linux-edac@vger.kernel.org
6135 S:      Maintained
6136 F:      drivers/edac/i5400_edac.c
6137
6138 EDAC-I7300
6139 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6140 L:      linux-edac@vger.kernel.org
6141 S:      Maintained
6142 F:      drivers/edac/i7300_edac.c
6143
6144 EDAC-I7CORE
6145 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6146 L:      linux-edac@vger.kernel.org
6147 S:      Maintained
6148 F:      drivers/edac/i7core_edac.c
6149
6150 EDAC-I82443BXGX
6151 M:      Tim Small <tim@buttersideup.com>
6152 L:      linux-edac@vger.kernel.org
6153 S:      Maintained
6154 F:      drivers/edac/i82443bxgx_edac.c
6155
6156 EDAC-I82975X
6157 M:      "Arvind R." <arvino55@gmail.com>
6158 L:      linux-edac@vger.kernel.org
6159 S:      Maintained
6160 F:      drivers/edac/i82975x_edac.c
6161
6162 EDAC-IE31200
6163 M:      Jason Baron <jbaron@akamai.com>
6164 L:      linux-edac@vger.kernel.org
6165 S:      Maintained
6166 F:      drivers/edac/ie31200_edac.c
6167
6168 EDAC-MPC85XX
6169 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6170 L:      linux-edac@vger.kernel.org
6171 S:      Maintained
6172 F:      drivers/edac/mpc85xx_edac.[ch]
6173
6174 EDAC-PASEMI
6175 M:      Egor Martovetsky <egor@pasemi.com>
6176 L:      linux-edac@vger.kernel.org
6177 S:      Maintained
6178 F:      drivers/edac/pasemi_edac.c
6179
6180 EDAC-PND2
6181 M:      Tony Luck <tony.luck@intel.com>
6182 L:      linux-edac@vger.kernel.org
6183 S:      Maintained
6184 F:      drivers/edac/pnd2_edac.[ch]
6185
6186 EDAC-QCOM
6187 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6188 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6189 L:      linux-arm-msm@vger.kernel.org
6190 L:      linux-edac@vger.kernel.org
6191 S:      Maintained
6192 F:      drivers/edac/qcom_edac.c
6193
6194 EDAC-R82600
6195 M:      Tim Small <tim@buttersideup.com>
6196 L:      linux-edac@vger.kernel.org
6197 S:      Maintained
6198 F:      drivers/edac/r82600_edac.c
6199
6200 EDAC-SBRIDGE
6201 M:      Tony Luck <tony.luck@intel.com>
6202 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6203 L:      linux-edac@vger.kernel.org
6204 S:      Maintained
6205 F:      drivers/edac/sb_edac.c
6206
6207 EDAC-SIFIVE
6208 M:      Yash Shah <yash.shah@sifive.com>
6209 L:      linux-edac@vger.kernel.org
6210 S:      Supported
6211 F:      drivers/edac/sifive_edac.c
6212
6213 EDAC-SKYLAKE
6214 M:      Tony Luck <tony.luck@intel.com>
6215 L:      linux-edac@vger.kernel.org
6216 S:      Maintained
6217 F:      drivers/edac/skx_*.c
6218
6219 EDAC-TI
6220 M:      Tero Kristo <t-kristo@ti.com>
6221 L:      linux-edac@vger.kernel.org
6222 S:      Maintained
6223 F:      drivers/edac/ti_edac.c
6224
6225 EDIROL UA-101/UA-1000 DRIVER
6226 M:      Clemens Ladisch <clemens@ladisch.de>
6227 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6228 S:      Maintained
6229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6230 F:      sound/usb/misc/ua101.c
6231
6232 EFI TEST DRIVER
6233 M:      Ivan Hu <ivan.hu@canonical.com>
6234 M:      Ard Biesheuvel <ardb@kernel.org>
6235 L:      linux-efi@vger.kernel.org
6236 S:      Maintained
6237 F:      drivers/firmware/efi/test/
6238
6239 EFI VARIABLE FILESYSTEM
6240 M:      Matthew Garrett <matthew.garrett@nebula.com>
6241 M:      Jeremy Kerr <jk@ozlabs.org>
6242 M:      Ard Biesheuvel <ardb@kernel.org>
6243 L:      linux-efi@vger.kernel.org
6244 S:      Maintained
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6246 F:      fs/efivarfs/
6247
6248 EFIFB FRAMEBUFFER DRIVER
6249 M:      Peter Jones <pjones@redhat.com>
6250 L:      linux-fbdev@vger.kernel.org
6251 S:      Maintained
6252 F:      drivers/video/fbdev/efifb.c
6253
6254 EFS FILESYSTEM
6255 S:      Orphan
6256 W:      http://aeschi.ch.eu.org/efs/
6257 F:      fs/efs/
6258
6259 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6260 M:      Douglas Miller <dougmill@linux.ibm.com>
6261 L:      netdev@vger.kernel.org
6262 S:      Maintained
6263 F:      drivers/net/ethernet/ibm/ehea/
6264
6265 EM28XX VIDEO4LINUX DRIVER
6266 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6267 L:      linux-media@vger.kernel.org
6268 S:      Maintained
6269 W:      https://linuxtv.org
6270 T:      git git://linuxtv.org/media_tree.git
6271 F:      Documentation/admin-guide/media/em28xx*
6272 F:      drivers/media/usb/em28xx/
6273
6274 EMBEDDED LINUX
6275 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6276 M:      Matt Mackall <mpm@selenic.com>
6277 M:      David Woodhouse <dwmw2@infradead.org>
6278 L:      linux-embedded@vger.kernel.org
6279 S:      Maintained
6280
6281 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6282 M:      Adrian Hunter <adrian.hunter@intel.com>
6283 M:      Ritesh Harjani <riteshh@codeaurora.org>
6284 M:      Asutosh Das <asutoshd@codeaurora.org>
6285 L:      linux-mmc@vger.kernel.org
6286 S:      Maintained
6287 F:      drivers/mmc/host/cqhci*
6288
6289 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6290 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6291 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6292 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6293 L:      linux-scsi@vger.kernel.org
6294 S:      Supported
6295 W:      http://www.broadcom.com
6296 F:      drivers/scsi/be2iscsi/
6297
6298 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6299 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6300 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6301 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6302 L:      netdev@vger.kernel.org
6303 S:      Supported
6304 W:      http://www.emulex.com
6305 F:      drivers/net/ethernet/emulex/benet/
6306
6307 EMULEX ONECONNECT ROCE DRIVER
6308 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6309 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6310 L:      linux-rdma@vger.kernel.org
6311 S:      Odd Fixes
6312 W:      http://www.broadcom.com
6313 F:      drivers/infiniband/hw/ocrdma/
6314 F:      include/uapi/rdma/ocrdma-abi.h
6315
6316 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6317 M:      James Smart <james.smart@broadcom.com>
6318 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6319 L:      linux-scsi@vger.kernel.org
6320 S:      Supported
6321 W:      http://www.broadcom.com
6322 F:      drivers/scsi/lpfc/
6323
6324 ENE CB710 FLASH CARD READER DRIVER
6325 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6326 S:      Maintained
6327 F:      drivers/misc/cb710/
6328 F:      drivers/mmc/host/cb710-mmc.*
6329 F:      include/linux/cb710.h
6330
6331 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6332 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6333 S:      Maintained
6334 F:      drivers/media/rc/ene_ir.*
6335
6336 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6337 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6338 L:      linuxppc-dev@lists.ozlabs.org
6339 S:      Maintained
6340 F:      drivers/tty/ehv_bytechan.c
6341
6342 EPSON S1D13XXX FRAMEBUFFER DRIVER
6343 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6344 S:      Maintained
6345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6346 F:      drivers/video/fbdev/s1d13xxxfb.c
6347 F:      include/video/s1d13xxxfb.h
6348
6349 EROFS FILE SYSTEM
6350 M:      Gao Xiang <xiang@kernel.org>
6351 M:      Chao Yu <yuchao0@huawei.com>
6352 L:      linux-erofs@lists.ozlabs.org
6353 S:      Maintained
6354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6355 F:      Documentation/filesystems/erofs.rst
6356 F:      fs/erofs/
6357 F:      include/trace/events/erofs.h
6358
6359 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6360 M:      Jeff Layton <jlayton@kernel.org>
6361 S:      Maintained
6362 F:      include/linux/errseq.h
6363 F:      lib/errseq.c
6364
6365 ET131X NETWORK DRIVER
6366 M:      Mark Einon <mark.einon@gmail.com>
6367 S:      Odd Fixes
6368 F:      drivers/net/ethernet/agere/
6369
6370 ETHERNET BRIDGE
6371 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6372 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6373 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6374 L:      netdev@vger.kernel.org
6375 S:      Maintained
6376 W:      http://www.linuxfoundation.org/en/Net:Bridge
6377 F:      include/linux/netfilter_bridge/
6378 F:      net/bridge/
6379
6380 ETHERNET PHY LIBRARY
6381 M:      Andrew Lunn <andrew@lunn.ch>
6382 M:      Florian Fainelli <f.fainelli@gmail.com>
6383 M:      Heiner Kallweit <hkallweit1@gmail.com>
6384 R:      Russell King <linux@armlinux.org.uk>
6385 L:      netdev@vger.kernel.org
6386 S:      Maintained
6387 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6388 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6389 F:      Documentation/devicetree/bindings/net/mdio*
6390 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6391 F:      Documentation/networking/phy.rst
6392 F:      drivers/net/phy/
6393 F:      drivers/of/of_mdio.c
6394 F:      drivers/of/of_net.c
6395 F:      include/dt-bindings/net/qca-ar803x.h
6396 F:      include/linux/*mdio*.h
6397 F:      include/linux/of_net.h
6398 F:      include/linux/phy.h
6399 F:      include/linux/phy_fixed.h
6400 F:      include/linux/platform_data/mdio-bcm-unimac.h
6401 F:      include/linux/platform_data/mdio-gpio.h
6402 F:      include/trace/events/mdio.h
6403 F:      include/uapi/linux/mdio.h
6404 F:      include/uapi/linux/mii.h
6405
6406 EXFAT FILE SYSTEM
6407 M:      Namjae Jeon <namjae.jeon@samsung.com>
6408 M:      Sungjong Seo <sj1557.seo@samsung.com>
6409 L:      linux-fsdevel@vger.kernel.org
6410 S:      Maintained
6411 F:      fs/exfat/
6412
6413 EXT2 FILE SYSTEM
6414 M:      Jan Kara <jack@suse.com>
6415 L:      linux-ext4@vger.kernel.org
6416 S:      Maintained
6417 F:      Documentation/filesystems/ext2.rst
6418 F:      fs/ext2/
6419 F:      include/linux/ext2*
6420
6421 EXT4 FILE SYSTEM
6422 M:      "Theodore Ts'o" <tytso@mit.edu>
6423 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6424 L:      linux-ext4@vger.kernel.org
6425 S:      Maintained
6426 W:      http://ext4.wiki.kernel.org
6427 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6429 F:      Documentation/filesystems/ext4/
6430 F:      fs/ext4/
6431
6432 Extended Verification Module (EVM)
6433 M:      Mimi Zohar <zohar@linux.ibm.com>
6434 L:      linux-integrity@vger.kernel.org
6435 S:      Supported
6436 F:      security/integrity/evm/
6437
6438 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6439 M:      Ard Biesheuvel <ardb@kernel.org>
6440 L:      linux-efi@vger.kernel.org
6441 S:      Maintained
6442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6443 F:      Documentation/admin-guide/efi-stub.rst
6444 F:      arch/*/include/asm/efi.h
6445 F:      arch/*/kernel/efi.c
6446 F:      arch/arm/boot/compressed/efi-header.S
6447 F:      arch/arm64/kernel/efi-entry.S
6448 F:      arch/x86/platform/efi/
6449 F:      drivers/firmware/efi/
6450 F:      include/linux/efi*.h
6451
6452 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6453 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6454 M:      Chanwoo Choi <cw00.choi@samsung.com>
6455 L:      linux-kernel@vger.kernel.org
6456 S:      Maintained
6457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6458 F:      Documentation/devicetree/bindings/extcon/
6459 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6460 F:      drivers/extcon/
6461 F:      include/linux/extcon.h
6462 F:      include/linux/extcon/
6463
6464 EXTRA BOOT CONFIG
6465 M:      Masami Hiramatsu <mhiramat@kernel.org>
6466 S:      Maintained
6467 F:      Documentation/admin-guide/bootconfig.rst
6468 F:      fs/proc/bootconfig.c
6469 F:      include/linux/bootconfig.h
6470 F:      lib/bootconfig.c
6471 F:      tools/bootconfig/*
6472
6473 EXYNOS DP DRIVER
6474 M:      Jingoo Han <jingoohan1@gmail.com>
6475 L:      dri-devel@lists.freedesktop.org
6476 S:      Maintained
6477 F:      drivers/gpu/drm/exynos/exynos_dp*
6478
6479 EXYNOS SYSMMU (IOMMU) driver
6480 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6481 L:      iommu@lists.linux-foundation.org
6482 S:      Maintained
6483 F:      drivers/iommu/exynos-iommu.c
6484
6485 EZchip NPS platform support
6486 M:      Vineet Gupta <vgupta@synopsys.com>
6487 M:      Ofer Levi <oferle@mellanox.com>
6488 S:      Supported
6489 F:      arch/arc/boot/dts/eznps.dts
6490 F:      arch/arc/plat-eznps
6491
6492 F2FS FILE SYSTEM
6493 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6494 M:      Chao Yu <yuchao0@huawei.com>
6495 L:      linux-f2fs-devel@lists.sourceforge.net
6496 S:      Maintained
6497 W:      https://f2fs.wiki.kernel.org/
6498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6499 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6500 F:      Documentation/filesystems/f2fs.rst
6501 F:      fs/f2fs/
6502 F:      include/linux/f2fs_fs.h
6503 F:      include/trace/events/f2fs.h
6504
6505 F71805F HARDWARE MONITORING DRIVER
6506 M:      Jean Delvare <jdelvare@suse.com>
6507 L:      linux-hwmon@vger.kernel.org
6508 S:      Maintained
6509 F:      Documentation/hwmon/f71805f.rst
6510 F:      drivers/hwmon/f71805f.c
6511
6512 FADDR2LINE
6513 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6514 S:      Maintained
6515 F:      scripts/faddr2line
6516
6517 FAILOVER MODULE
6518 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6519 L:      netdev@vger.kernel.org
6520 S:      Supported
6521 F:      Documentation/networking/failover.rst
6522 F:      include/net/failover.h
6523 F:      net/core/failover.c
6524
6525 FANOTIFY
6526 M:      Jan Kara <jack@suse.cz>
6527 R:      Amir Goldstein <amir73il@gmail.com>
6528 L:      linux-fsdevel@vger.kernel.org
6529 S:      Maintained
6530 F:      fs/notify/fanotify/
6531 F:      include/linux/fanotify.h
6532 F:      include/uapi/linux/fanotify.h
6533
6534 FARSYNC SYNCHRONOUS DRIVER
6535 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6536 S:      Supported
6537 W:      http://www.farsite.co.uk/
6538 F:      drivers/net/wan/farsync.*
6539
6540 FAULT INJECTION SUPPORT
6541 M:      Akinobu Mita <akinobu.mita@gmail.com>
6542 S:      Supported
6543 F:      Documentation/fault-injection/
6544 F:      lib/fault-inject.c
6545
6546 FBTFT Framebuffer drivers
6547 L:      dri-devel@lists.freedesktop.org
6548 L:      linux-fbdev@vger.kernel.org
6549 S:      Orphan
6550 F:      drivers/staging/fbtft/
6551
6552 FC0011 TUNER DRIVER
6553 M:      Michael Buesch <m@bues.ch>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 F:      drivers/media/tuners/fc0011.c
6557 F:      drivers/media/tuners/fc0011.h
6558
6559 FC2580 MEDIA DRIVER
6560 M:      Antti Palosaari <crope@iki.fi>
6561 L:      linux-media@vger.kernel.org
6562 S:      Maintained
6563 W:      https://linuxtv.org
6564 W:      http://palosaari.fi/linux/
6565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6566 T:      git git://linuxtv.org/anttip/media_tree.git
6567 F:      drivers/media/tuners/fc2580*
6568
6569 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6570 M:      Hannes Reinecke <hare@suse.de>
6571 L:      linux-scsi@vger.kernel.org
6572 S:      Supported
6573 W:      www.Open-FCoE.org
6574 F:      drivers/scsi/fcoe/
6575 F:      drivers/scsi/libfc/
6576 F:      include/scsi/fc/
6577 F:      include/scsi/libfc.h
6578 F:      include/scsi/libfcoe.h
6579 F:      include/uapi/scsi/fc/
6580
6581 FILE LOCKING (flock() and fcntl()/lockf())
6582 M:      Jeff Layton <jlayton@kernel.org>
6583 M:      "J. Bruce Fields" <bfields@fieldses.org>
6584 L:      linux-fsdevel@vger.kernel.org
6585 S:      Maintained
6586 F:      fs/fcntl.c
6587 F:      fs/locks.c
6588 F:      include/linux/fcntl.h
6589 F:      include/uapi/linux/fcntl.h
6590
6591 FILESYSTEM DIRECT ACCESS (DAX)
6592 M:      Dan Williams <dan.j.williams@intel.com>
6593 R:      Matthew Wilcox <willy@infradead.org>
6594 R:      Jan Kara <jack@suse.cz>
6595 L:      linux-fsdevel@vger.kernel.org
6596 L:      linux-nvdimm@lists.01.org
6597 S:      Supported
6598 F:      fs/dax.c
6599 F:      include/linux/dax.h
6600 F:      include/trace/events/fs_dax.h
6601
6602 FILESYSTEMS (VFS and infrastructure)
6603 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6604 L:      linux-fsdevel@vger.kernel.org
6605 S:      Maintained
6606 F:      fs/*
6607 F:      include/linux/fs.h
6608 F:      include/linux/fs_types.h
6609 F:      include/uapi/linux/fs.h
6610 F:      include/uapi/linux/openat2.h
6611
6612 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6613 M:      Riku Voipio <riku.voipio@iki.fi>
6614 L:      linux-hwmon@vger.kernel.org
6615 S:      Maintained
6616 F:      drivers/hwmon/f75375s.c
6617 F:      include/linux/f75375s.h
6618
6619 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6620 M:      Clemens Ladisch <clemens@ladisch.de>
6621 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6622 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6623 S:      Maintained
6624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6625 F:      include/uapi/sound/firewire.h
6626 F:      sound/firewire/
6627
6628 FIREWIRE MEDIA DRIVERS (firedtv)
6629 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6630 L:      linux-media@vger.kernel.org
6631 L:      linux1394-devel@lists.sourceforge.net
6632 S:      Maintained
6633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6634 F:      drivers/media/firewire/
6635
6636 FIREWIRE SBP-2 TARGET
6637 M:      Chris Boot <bootc@bootc.net>
6638 L:      linux-scsi@vger.kernel.org
6639 L:      target-devel@vger.kernel.org
6640 L:      linux1394-devel@lists.sourceforge.net
6641 S:      Maintained
6642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6643 F:      drivers/target/sbp/
6644
6645 FIREWIRE SUBSYSTEM
6646 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6647 L:      linux1394-devel@lists.sourceforge.net
6648 S:      Maintained
6649 W:      http://ieee1394.wiki.kernel.org/
6650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6651 F:      drivers/firewire/
6652 F:      include/linux/firewire.h
6653 F:      include/uapi/linux/firewire*.h
6654 F:      tools/firewire/
6655
6656 FIRMWARE LOADER (request_firmware)
6657 M:      Luis Chamberlain <mcgrof@kernel.org>
6658 L:      linux-kernel@vger.kernel.org
6659 S:      Maintained
6660 F:      Documentation/firmware_class/
6661 F:      drivers/base/firmware_loader/
6662 F:      include/linux/firmware.h
6663
6664 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6665 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6666 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6667 S:      Maintained
6668 F:      drivers/block/rsxx/
6669
6670 FLEXTIMER FTM-QUADDEC DRIVER
6671 M:      Patrick Havelange <patrick.havelange@essensium.com>
6672 L:      linux-iio@vger.kernel.org
6673 S:      Maintained
6674 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6675 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6676 F:      drivers/counter/ftm-quaddec.c
6677
6678 FLOPPY DRIVER
6679 M:      Denis Efremov <efremov@linux.com>
6680 L:      linux-block@vger.kernel.org
6681 S:      Odd Fixes
6682 F:      drivers/block/floppy.c
6683
6684 FLYSKY FSIA6B RC RECEIVER
6685 M:      Markus Koch <markus@notsyncing.net>
6686 L:      linux-input@vger.kernel.org
6687 S:      Maintained
6688 F:      drivers/input/joystick/fsia6b.c
6689
6690 FORCEDETH GIGABIT ETHERNET DRIVER
6691 M:      Rain River <rain.1986.08.12@gmail.com>
6692 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
6693 L:      netdev@vger.kernel.org
6694 S:      Maintained
6695 F:      drivers/net/ethernet/nvidia/*
6696
6697 FPGA DFL DRIVERS
6698 M:      Wu Hao <hao.wu@intel.com>
6699 L:      linux-fpga@vger.kernel.org
6700 S:      Maintained
6701 F:      Documentation/fpga/dfl.rst
6702 F:      drivers/fpga/dfl*
6703 F:      include/uapi/linux/fpga-dfl.h
6704
6705 FPGA MANAGER FRAMEWORK
6706 M:      Moritz Fischer <mdf@kernel.org>
6707 L:      linux-fpga@vger.kernel.org
6708 S:      Maintained
6709 W:      http://www.rocketboards.org
6710 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6712 F:      Documentation/devicetree/bindings/fpga/
6713 F:      Documentation/driver-api/fpga/
6714 F:      Documentation/fpga/
6715 F:      drivers/fpga/
6716 F:      include/linux/fpga/
6717
6718 FPU EMULATOR
6719 M:      Bill Metzenthen <billm@melbpc.org.au>
6720 S:      Maintained
6721 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6722 F:      arch/x86/math-emu/
6723
6724 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6725 L:      netdev@vger.kernel.org
6726 S:      Orphan
6727 F:      drivers/net/wan/dlci.c
6728 F:      drivers/net/wan/sdla.c
6729
6730 FRAMEBUFFER LAYER
6731 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6732 L:      dri-devel@lists.freedesktop.org
6733 L:      linux-fbdev@vger.kernel.org
6734 S:      Maintained
6735 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6736 T:      git git://anongit.freedesktop.org/drm/drm-misc
6737 F:      Documentation/fb/
6738 F:      drivers/video/
6739 F:      include/linux/fb.h
6740 F:      include/uapi/linux/fb.h
6741 F:      include/uapi/video/
6742 F:      include/video/
6743
6744 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6745 M:      Horia Geantă <horia.geanta@nxp.com>
6746 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6747 L:      linux-crypto@vger.kernel.org
6748 S:      Maintained
6749 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6750 F:      drivers/crypto/caam/
6751
6752 FREESCALE COLDFIRE M5441X MMC DRIVER
6753 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
6754 L:      linux-mmc@vger.kernel.org
6755 S:      Maintained
6756 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
6757 F:      include/linux/platform_data/mmc-esdhc-mcf.h
6758
6759 FREESCALE DIU FRAMEBUFFER DRIVER
6760 M:      Timur Tabi <timur@kernel.org>
6761 L:      linux-fbdev@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/video/fbdev/fsl-diu-fb.*
6764
6765 FREESCALE DMA DRIVER
6766 M:      Li Yang <leoyang.li@nxp.com>
6767 M:      Zhang Wei <zw@zh-kernel.org>
6768 L:      linuxppc-dev@lists.ozlabs.org
6769 S:      Maintained
6770 F:      drivers/dma/fsldma.*
6771
6772 FREESCALE ENETC ETHERNET DRIVERS
6773 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6774 L:      netdev@vger.kernel.org
6775 S:      Maintained
6776 F:      drivers/net/ethernet/freescale/enetc/
6777
6778 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6779 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6780 L:      netdev@vger.kernel.org
6781 S:      Maintained
6782 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6783 F:      drivers/net/ethernet/freescale/gianfar*
6784
6785 FREESCALE GPMI NAND DRIVER
6786 M:      Han Xu <han.xu@nxp.com>
6787 L:      linux-mtd@lists.infradead.org
6788 S:      Maintained
6789 F:      drivers/mtd/nand/raw/gpmi-nand/*
6790
6791 FREESCALE I2C CPM DRIVER
6792 M:      Jochen Friedrich <jochen@scram.de>
6793 L:      linuxppc-dev@lists.ozlabs.org
6794 L:      linux-i2c@vger.kernel.org
6795 S:      Maintained
6796 F:      drivers/i2c/busses/i2c-cpm.c
6797
6798 FREESCALE IMX / MXC FEC DRIVER
6799 M:      Fugang Duan <fugang.duan@nxp.com>
6800 L:      netdev@vger.kernel.org
6801 S:      Maintained
6802 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6803 F:      drivers/net/ethernet/freescale/fec.h
6804 F:      drivers/net/ethernet/freescale/fec_main.c
6805 F:      drivers/net/ethernet/freescale/fec_ptp.c
6806
6807 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6808 M:      Sascha Hauer <s.hauer@pengutronix.de>
6809 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6810 L:      linux-fbdev@vger.kernel.org
6811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6812 S:      Maintained
6813 F:      drivers/video/fbdev/imxfb.c
6814 F:      include/linux/platform_data/video-imxfb.h
6815
6816 FREESCALE IMX DDR PMU DRIVER
6817 M:      Frank Li <Frank.li@nxp.com>
6818 L:      linux-arm-kernel@lists.infradead.org
6819 S:      Maintained
6820 F:      Documentation/admin-guide/perf/imx-ddr.rst
6821 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6822 F:      drivers/perf/fsl_imx8_ddr_perf.c
6823
6824 FREESCALE IMX I2C DRIVER
6825 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6826 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6827 L:      linux-i2c@vger.kernel.org
6828 S:      Maintained
6829 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6830 F:      drivers/i2c/busses/i2c-imx.c
6831
6832 FREESCALE IMX LPI2C DRIVER
6833 M:      Dong Aisheng <aisheng.dong@nxp.com>
6834 L:      linux-i2c@vger.kernel.org
6835 L:      linux-imx@nxp.com
6836 S:      Maintained
6837 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6838 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6839
6840 FREESCALE QORIQ DPAA ETHERNET DRIVER
6841 M:      Madalin Bucur <madalin.bucur@nxp.com>
6842 L:      netdev@vger.kernel.org
6843 S:      Maintained
6844 F:      drivers/net/ethernet/freescale/dpaa
6845
6846 FREESCALE QORIQ DPAA FMAN DRIVER
6847 M:      Madalin Bucur <madalin.bucur@nxp.com>
6848 L:      netdev@vger.kernel.org
6849 S:      Maintained
6850 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6851 F:      drivers/net/ethernet/freescale/fman
6852
6853 FREESCALE QORIQ PTP CLOCK DRIVER
6854 M:      Yangbo Lu <yangbo.lu@nxp.com>
6855 L:      netdev@vger.kernel.org
6856 S:      Maintained
6857 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6858 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6859 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6860 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6861 F:      drivers/ptp/ptp_qoriq.c
6862 F:      drivers/ptp/ptp_qoriq_debugfs.c
6863 F:      include/linux/fsl/ptp_qoriq.h
6864
6865 FREESCALE QUAD SPI DRIVER
6866 M:      Han Xu <han.xu@nxp.com>
6867 L:      linux-spi@vger.kernel.org
6868 S:      Maintained
6869 F:      drivers/spi/spi-fsl-qspi.c
6870
6871 FREESCALE QUICC ENGINE LIBRARY
6872 M:      Qiang Zhao <qiang.zhao@nxp.com>
6873 L:      linuxppc-dev@lists.ozlabs.org
6874 S:      Maintained
6875 F:      drivers/soc/fsl/qe/
6876 F:      include/soc/fsl/*qe*.h
6877 F:      include/soc/fsl/*ucc*.h
6878
6879 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6880 M:      Li Yang <leoyang.li@nxp.com>
6881 L:      netdev@vger.kernel.org
6882 L:      linuxppc-dev@lists.ozlabs.org
6883 S:      Maintained
6884 F:      drivers/net/ethernet/freescale/ucc_geth*
6885
6886 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6887 M:      Zhao Qiang <qiang.zhao@nxp.com>
6888 L:      netdev@vger.kernel.org
6889 L:      linuxppc-dev@lists.ozlabs.org
6890 S:      Maintained
6891 F:      drivers/net/wan/fsl_ucc_hdlc*
6892
6893 FREESCALE QUICC ENGINE UCC UART DRIVER
6894 M:      Timur Tabi <timur@kernel.org>
6895 L:      linuxppc-dev@lists.ozlabs.org
6896 S:      Maintained
6897 F:      drivers/tty/serial/ucc_uart.c
6898
6899 FREESCALE SOC DRIVERS
6900 M:      Li Yang <leoyang.li@nxp.com>
6901 L:      linuxppc-dev@lists.ozlabs.org
6902 L:      linux-arm-kernel@lists.infradead.org
6903 S:      Maintained
6904 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6905 F:      Documentation/devicetree/bindings/soc/fsl/
6906 F:      drivers/soc/fsl/
6907 F:      include/linux/fsl/
6908
6909 FREESCALE SOC FS_ENET DRIVER
6910 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6911 L:      linuxppc-dev@lists.ozlabs.org
6912 L:      netdev@vger.kernel.org
6913 S:      Maintained
6914 F:      drivers/net/ethernet/freescale/fs_enet/
6915 F:      include/linux/fs_enet_pd.h
6916
6917 FREESCALE SOC SOUND DRIVERS
6918 M:      Timur Tabi <timur@kernel.org>
6919 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6920 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6921 R:      Fabio Estevam <festevam@gmail.com>
6922 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6923 L:      linuxppc-dev@lists.ozlabs.org
6924 S:      Maintained
6925 F:      sound/soc/fsl/fsl*
6926 F:      sound/soc/fsl/imx*
6927 F:      sound/soc/fsl/mpc8610_hpcd.c
6928
6929 FREESCALE USB PERIPHERAL DRIVERS
6930 M:      Li Yang <leoyang.li@nxp.com>
6931 L:      linux-usb@vger.kernel.org
6932 L:      linuxppc-dev@lists.ozlabs.org
6933 S:      Maintained
6934 F:      drivers/usb/gadget/udc/fsl*
6935
6936 FREEVXFS FILESYSTEM
6937 M:      Christoph Hellwig <hch@infradead.org>
6938 S:      Maintained
6939 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6940 F:      fs/freevxfs/
6941
6942 FREEZER
6943 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6944 M:      Pavel Machek <pavel@ucw.cz>
6945 L:      linux-pm@vger.kernel.org
6946 S:      Supported
6947 F:      Documentation/power/freezing-of-tasks.rst
6948 F:      include/linux/freezer.h
6949 F:      kernel/freezer.c
6950
6951 FRONTSWAP API
6952 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6953 L:      linux-kernel@vger.kernel.org
6954 S:      Maintained
6955 F:      include/linux/frontswap.h
6956 F:      mm/frontswap.c
6957
6958 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6959 M:      David Howells <dhowells@redhat.com>
6960 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6961 S:      Supported
6962 F:      Documentation/filesystems/caching/
6963 F:      fs/fscache/
6964 F:      include/linux/fscache*.h
6965
6966 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6967 M:      Theodore Y. Ts'o <tytso@mit.edu>
6968 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6969 M:      Eric Biggers <ebiggers@kernel.org>
6970 L:      linux-fscrypt@vger.kernel.org
6971 S:      Supported
6972 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6973 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6974 F:      Documentation/filesystems/fscrypt.rst
6975 F:      fs/crypto/
6976 F:      include/linux/fscrypt*.h
6977 F:      include/uapi/linux/fscrypt.h
6978
6979 FSI SUBSYSTEM
6980 M:      Jeremy Kerr <jk@ozlabs.org>
6981 M:      Joel Stanley <joel@jms.id.au>
6982 R:      Alistar Popple <alistair@popple.id.au>
6983 R:      Eddie James <eajames@linux.ibm.com>
6984 L:      linux-fsi@lists.ozlabs.org
6985 S:      Supported
6986 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6988 F:      drivers/fsi/
6989 F:      include/linux/fsi*.h
6990 F:      include/trace/events/fsi*.h
6991
6992 FSI-ATTACHED I2C DRIVER
6993 M:      Eddie James <eajames@linux.ibm.com>
6994 L:      linux-i2c@vger.kernel.org
6995 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6996 S:      Maintained
6997 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6998 F:      drivers/i2c/busses/i2c-fsi.c
6999
7000 FSI-ATTACHED SPI DRIVER
7001 M:      Eddie James <eajames@linux.ibm.com>
7002 L:      linux-spi@vger.kernel.org
7003 S:      Maintained
7004 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7005 F:      drivers/spi/spi-fsi.c
7006
7007 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7008 M:      Jan Kara <jack@suse.cz>
7009 R:      Amir Goldstein <amir73il@gmail.com>
7010 L:      linux-fsdevel@vger.kernel.org
7011 S:      Maintained
7012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7013 F:      fs/notify/
7014 F:      include/linux/fsnotify*.h
7015
7016 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7017 M:      Eric Biggers <ebiggers@kernel.org>
7018 M:      Theodore Y. Ts'o <tytso@mit.edu>
7019 L:      linux-fscrypt@vger.kernel.org
7020 S:      Supported
7021 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7022 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7023 F:      Documentation/filesystems/fsverity.rst
7024 F:      fs/verity/
7025 F:      include/linux/fsverity.h
7026 F:      include/uapi/linux/fsverity.h
7027
7028 FUJITSU LAPTOP EXTRAS
7029 M:      Jonathan Woithe <jwoithe@just42.net>
7030 L:      platform-driver-x86@vger.kernel.org
7031 S:      Maintained
7032 F:      drivers/platform/x86/fujitsu-laptop.c
7033
7034 FUJITSU M-5MO LS CAMERA ISP DRIVER
7035 M:      Kyungmin Park <kyungmin.park@samsung.com>
7036 M:      Heungjun Kim <riverful.kim@samsung.com>
7037 L:      linux-media@vger.kernel.org
7038 S:      Maintained
7039 F:      drivers/media/i2c/m5mols/
7040 F:      include/media/i2c/m5mols.h
7041
7042 FUJITSU TABLET EXTRAS
7043 M:      Robert Gerlach <khnz@gmx.de>
7044 L:      platform-driver-x86@vger.kernel.org
7045 S:      Maintained
7046 F:      drivers/platform/x86/fujitsu-tablet.c
7047
7048 FUSE: FILESYSTEM IN USERSPACE
7049 M:      Miklos Szeredi <miklos@szeredi.hu>
7050 L:      linux-fsdevel@vger.kernel.org
7051 S:      Maintained
7052 W:      http://fuse.sourceforge.net/
7053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7054 F:      Documentation/filesystems/fuse.rst
7055 F:      fs/fuse/
7056 F:      include/uapi/linux/fuse.h
7057
7058 FUTEX SUBSYSTEM
7059 M:      Thomas Gleixner <tglx@linutronix.de>
7060 M:      Ingo Molnar <mingo@redhat.com>
7061 R:      Peter Zijlstra <peterz@infradead.org>
7062 R:      Darren Hart <dvhart@infradead.org>
7063 L:      linux-kernel@vger.kernel.org
7064 S:      Maintained
7065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7066 F:      Documentation/locking/*futex*
7067 F:      include/asm-generic/futex.h
7068 F:      include/linux/futex.h
7069 F:      include/uapi/linux/futex.h
7070 F:      kernel/futex.c
7071 F:      tools/perf/bench/futex*
7072 F:      Documentation/locking/*futex*
7073
7074 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7075 M:      Tim Harvey <tharvey@gateworks.com>
7076 M:      Robert Jones <rjones@gateworks.com>
7077 S:      Maintained
7078 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7079 F:      drivers/mfd/gateworks-gsc.c
7080 F:      include/linux/mfd/gsc.h
7081 F:      Documentation/hwmon/gsc-hwmon.rst
7082 F:      drivers/hwmon/gsc-hwmon.c
7083 F:      include/linux/platform_data/gsc_hwmon.h
7084
7085 GASKET DRIVER FRAMEWORK
7086 M:      Rob Springer <rspringer@google.com>
7087 M:      Todd Poynor <toddpoynor@google.com>
7088 M:      Ben Chan <benchan@chromium.org>
7089 S:      Maintained
7090 F:      drivers/staging/gasket/
7091
7092 GCC PLUGINS
7093 M:      Kees Cook <keescook@chromium.org>
7094 R:      Emese Revfy <re.emese@gmail.com>
7095 L:      kernel-hardening@lists.openwall.com
7096 S:      Maintained
7097 F:      Documentation/kbuild/gcc-plugins.rst
7098 F:      scripts/Makefile.gcc-plugins
7099 F:      scripts/gcc-plugin.sh
7100 F:      scripts/gcc-plugins/
7101
7102 GCOV BASED KERNEL PROFILING
7103 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7104 S:      Maintained
7105 F:      Documentation/dev-tools/gcov.rst
7106 F:      kernel/gcov/
7107
7108 GDB KERNEL DEBUGGING HELPER SCRIPTS
7109 M:      Jan Kiszka <jan.kiszka@siemens.com>
7110 M:      Kieran Bingham <kbingham@kernel.org>
7111 S:      Supported
7112 F:      scripts/gdb/
7113
7114 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7115 M:      Achim Leubner <achim_leubner@adaptec.com>
7116 L:      linux-scsi@vger.kernel.org
7117 S:      Supported
7118 W:      http://www.icp-vortex.com/
7119 F:      drivers/scsi/gdt*
7120
7121 GEMTEK FM RADIO RECEIVER DRIVER
7122 M:      Hans Verkuil <hverkuil@xs4all.nl>
7123 L:      linux-media@vger.kernel.org
7124 S:      Maintained
7125 W:      https://linuxtv.org
7126 T:      git git://linuxtv.org/media_tree.git
7127 F:      drivers/media/radio/radio-gemtek*
7128
7129 GENERIC ARCHITECTURE TOPOLOGY
7130 M:      Sudeep Holla <sudeep.holla@arm.com>
7131 L:      linux-kernel@vger.kernel.org
7132 S:      Maintained
7133 F:      drivers/base/arch_topology.c
7134 F:      include/linux/arch_topology.h
7135
7136 GENERIC GPIO I2C DRIVER
7137 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7138 S:      Supported
7139 F:      drivers/i2c/busses/i2c-gpio.c
7140 F:      include/linux/platform_data/i2c-gpio.h
7141
7142 GENERIC GPIO I2C MULTIPLEXER DRIVER
7143 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7144 L:      linux-i2c@vger.kernel.org
7145 S:      Supported
7146 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7147 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7148 F:      include/linux/platform_data/i2c-mux-gpio.h
7149
7150 GENERIC HDLC (WAN) DRIVERS
7151 M:      Krzysztof Halasa <khc@pm.waw.pl>
7152 S:      Maintained
7153 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7154 F:      drivers/net/wan/c101.c
7155 F:      drivers/net/wan/hd6457*
7156 F:      drivers/net/wan/hdlc*
7157 F:      drivers/net/wan/n2.c
7158 F:      drivers/net/wan/pc300too.c
7159 F:      drivers/net/wan/pci200syn.c
7160 F:      drivers/net/wan/wanxl*
7161
7162 GENERIC INCLUDE/ASM HEADER FILES
7163 M:      Arnd Bergmann <arnd@arndb.de>
7164 L:      linux-arch@vger.kernel.org
7165 S:      Maintained
7166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7167 F:      include/asm-generic/
7168 F:      include/uapi/asm-generic/
7169
7170 GENERIC PHY FRAMEWORK
7171 M:      Kishon Vijay Abraham I <kishon@ti.com>
7172 M:      Vinod Koul <vkoul@kernel.org>
7173 L:      linux-kernel@vger.kernel.org
7174 S:      Supported
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7176 F:      Documentation/devicetree/bindings/phy/
7177 F:      drivers/phy/
7178 F:      include/linux/phy/
7179
7180 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7181 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7182 S:      Supported
7183 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7184
7185 GENERIC PM DOMAINS
7186 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7187 M:      Kevin Hilman <khilman@kernel.org>
7188 M:      Ulf Hansson <ulf.hansson@linaro.org>
7189 L:      linux-pm@vger.kernel.org
7190 S:      Supported
7191 F:      Documentation/devicetree/bindings/power/power?domain*
7192 F:      drivers/base/power/domain*.c
7193 F:      include/linux/pm_domain.h
7194
7195 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7196 M:      Eugen Hristev <eugen.hristev@microchip.com>
7197 L:      linux-input@vger.kernel.org
7198 S:      Maintained
7199 F:      drivers/input/touchscreen/resistive-adc-touch.c
7200
7201 GENERIC UIO DRIVER FOR PCI DEVICES
7202 M:      "Michael S. Tsirkin" <mst@redhat.com>
7203 L:      kvm@vger.kernel.org
7204 S:      Supported
7205 F:      drivers/uio/uio_pci_generic.c
7206
7207 GENERIC VDSO LIBRARY
7208 M:      Andy Lutomirski <luto@kernel.org>
7209 M:      Thomas Gleixner <tglx@linutronix.de>
7210 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7211 L:      linux-kernel@vger.kernel.org
7212 S:      Maintained
7213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7214 F:      include/asm-generic/vdso/vsyscall.h
7215 F:      include/vdso/
7216 F:      kernel/time/vsyscall.c
7217 F:      lib/vdso/
7218
7219 GENWQE (IBM Generic Workqueue Card)
7220 M:      Frank Haverkamp <haver@linux.ibm.com>
7221 S:      Supported
7222 F:      drivers/misc/genwqe/
7223
7224 GET_MAINTAINER SCRIPT
7225 M:      Joe Perches <joe@perches.com>
7226 S:      Maintained
7227 F:      scripts/get_maintainer.pl
7228
7229 GFS2 FILE SYSTEM
7230 M:      Bob Peterson <rpeterso@redhat.com>
7231 M:      Andreas Gruenbacher <agruenba@redhat.com>
7232 L:      cluster-devel@redhat.com
7233 S:      Supported
7234 W:      http://sources.redhat.com/cluster/
7235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7236 F:      Documentation/filesystems/gfs2*.txt
7237 F:      fs/gfs2/
7238 F:      include/uapi/linux/gfs2_ondisk.h
7239
7240 GNSS SUBSYSTEM
7241 M:      Johan Hovold <johan@kernel.org>
7242 S:      Maintained
7243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7244 F:      Documentation/ABI/testing/sysfs-class-gnss
7245 F:      Documentation/devicetree/bindings/gnss/
7246 F:      drivers/gnss/
7247 F:      include/linux/gnss.h
7248
7249 GO7007 MPEG CODEC
7250 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7251 L:      linux-media@vger.kernel.org
7252 S:      Maintained
7253 F:      drivers/media/usb/go7007/
7254
7255 GOODIX TOUCHSCREEN
7256 M:      Bastien Nocera <hadess@hadess.net>
7257 L:      linux-input@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/input/touchscreen/goodix.c
7260
7261 GOOGLE ETHERNET DRIVERS
7262 M:      Catherine Sullivan <csully@google.com>
7263 R:      Sagi Shahar <sagis@google.com>
7264 R:      Jon Olson <jonolson@google.com>
7265 L:      netdev@vger.kernel.org
7266 S:      Supported
7267 F:      Documentation/networking/device_drivers/google/gve.rst
7268 F:      drivers/net/ethernet/google
7269
7270 GPD POCKET FAN DRIVER
7271 M:      Hans de Goede <hdegoede@redhat.com>
7272 L:      platform-driver-x86@vger.kernel.org
7273 S:      Maintained
7274 F:      drivers/platform/x86/gpd-pocket-fan.c
7275
7276 GPIO ACPI SUPPORT
7277 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7278 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7279 L:      linux-gpio@vger.kernel.org
7280 L:      linux-acpi@vger.kernel.org
7281 S:      Maintained
7282 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7283 F:      drivers/gpio/gpiolib-acpi.c
7284 F:      drivers/gpio/gpiolib-acpi.h
7285
7286 GPIO AGGREGATOR
7287 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7288 L:      linux-gpio@vger.kernel.org
7289 S:      Supported
7290 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7291 F:      drivers/gpio/gpio-aggregator.c
7292
7293 GPIO IR Transmitter
7294 M:      Sean Young <sean@mess.org>
7295 L:      linux-media@vger.kernel.org
7296 S:      Maintained
7297 F:      drivers/media/rc/gpio-ir-tx.c
7298
7299 GPIO MOCKUP DRIVER
7300 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7301 L:      linux-gpio@vger.kernel.org
7302 S:      Maintained
7303 F:      drivers/gpio/gpio-mockup.c
7304 F:      tools/testing/selftests/gpio/
7305
7306 GPIO REGMAP
7307 R:      Michael Walle <michael@walle.cc>
7308 S:      Maintained
7309 F:      drivers/gpio/gpio-regmap.c
7310 F:      include/linux/gpio/regmap.h
7311
7312 GPIO SUBSYSTEM
7313 M:      Linus Walleij <linus.walleij@linaro.org>
7314 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7315 L:      linux-gpio@vger.kernel.org
7316 S:      Maintained
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7318 F:      Documentation/ABI/obsolete/sysfs-gpio
7319 F:      Documentation/ABI/testing/gpio-cdev
7320 F:      Documentation/admin-guide/gpio/
7321 F:      Documentation/devicetree/bindings/gpio/
7322 F:      Documentation/driver-api/gpio/
7323 F:      drivers/gpio/
7324 F:      include/asm-generic/gpio.h
7325 F:      include/linux/gpio.h
7326 F:      include/linux/gpio/
7327 F:      include/linux/of_gpio.h
7328 F:      include/uapi/linux/gpio.h
7329 F:      tools/gpio/
7330
7331 GRE DEMULTIPLEXER DRIVER
7332 M:      Dmitry Kozlov <xeb@mail.ru>
7333 L:      netdev@vger.kernel.org
7334 S:      Maintained
7335 F:      include/net/gre.h
7336 F:      net/ipv4/gre_demux.c
7337 F:      net/ipv4/gre_offload.c
7338
7339 GRETH 10/100/1G Ethernet MAC device driver
7340 M:      Andreas Larsson <andreas@gaisler.com>
7341 L:      netdev@vger.kernel.org
7342 S:      Maintained
7343 F:      drivers/net/ethernet/aeroflex/
7344
7345 GREYBUS AUDIO PROTOCOLS DRIVERS
7346 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7347 M:      Mark Greer <mgreer@animalcreek.com>
7348 S:      Maintained
7349 F:      drivers/staging/greybus/audio_apbridgea.c
7350 F:      drivers/staging/greybus/audio_apbridgea.h
7351 F:      drivers/staging/greybus/audio_codec.c
7352 F:      drivers/staging/greybus/audio_codec.h
7353 F:      drivers/staging/greybus/audio_gb.c
7354 F:      drivers/staging/greybus/audio_manager.c
7355 F:      drivers/staging/greybus/audio_manager.h
7356 F:      drivers/staging/greybus/audio_manager_module.c
7357 F:      drivers/staging/greybus/audio_manager_private.h
7358 F:      drivers/staging/greybus/audio_manager_sysfs.c
7359 F:      drivers/staging/greybus/audio_module.c
7360 F:      drivers/staging/greybus/audio_topology.c
7361
7362 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7363 M:      Viresh Kumar <vireshk@kernel.org>
7364 S:      Maintained
7365 F:      drivers/staging/greybus/authentication.c
7366 F:      drivers/staging/greybus/bootrom.c
7367 F:      drivers/staging/greybus/firmware.h
7368 F:      drivers/staging/greybus/fw-core.c
7369 F:      drivers/staging/greybus/fw-download.c
7370 F:      drivers/staging/greybus/fw-management.c
7371 F:      drivers/staging/greybus/greybus_authentication.h
7372 F:      drivers/staging/greybus/greybus_firmware.h
7373 F:      drivers/staging/greybus/hid.c
7374 F:      drivers/staging/greybus/i2c.c
7375 F:      drivers/staging/greybus/spi.c
7376 F:      drivers/staging/greybus/spilib.c
7377 F:      drivers/staging/greybus/spilib.h
7378
7379 GREYBUS LOOPBACK DRIVER
7380 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7381 S:      Maintained
7382 F:      drivers/staging/greybus/loopback.c
7383
7384 GREYBUS PLATFORM DRIVERS
7385 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7386 S:      Maintained
7387 F:      drivers/staging/greybus/arche-apb-ctrl.c
7388 F:      drivers/staging/greybus/arche-platform.c
7389 F:      drivers/staging/greybus/arche_platform.h
7390
7391 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7392 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7393 S:      Maintained
7394 F:      drivers/staging/greybus/gpio.c
7395 F:      drivers/staging/greybus/light.c
7396 F:      drivers/staging/greybus/power_supply.c
7397 F:      drivers/staging/greybus/sdio.c
7398 F:      drivers/staging/greybus/spi.c
7399 F:      drivers/staging/greybus/spilib.c
7400
7401 GREYBUS SUBSYSTEM
7402 M:      Johan Hovold <johan@kernel.org>
7403 M:      Alex Elder <elder@kernel.org>
7404 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7405 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7406 S:      Maintained
7407 F:      drivers/greybus/
7408 F:      drivers/staging/greybus/
7409 F:      include/linux/greybus.h
7410 F:      include/linux/greybus/
7411
7412 GREYBUS UART PROTOCOLS DRIVERS
7413 M:      David Lin <dtwlin@gmail.com>
7414 S:      Maintained
7415 F:      drivers/staging/greybus/log.c
7416 F:      drivers/staging/greybus/uart.c
7417
7418 GS1662 VIDEO SERIALIZER
7419 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7420 L:      linux-media@vger.kernel.org
7421 S:      Maintained
7422 T:      git git://linuxtv.org/media_tree.git
7423 F:      drivers/media/spi/gs1662.c
7424
7425 GSPCA FINEPIX SUBDRIVER
7426 M:      Frank Zago <frank@zago.net>
7427 L:      linux-media@vger.kernel.org
7428 S:      Maintained
7429 T:      git git://linuxtv.org/media_tree.git
7430 F:      drivers/media/usb/gspca/finepix.c
7431
7432 GSPCA GL860 SUBDRIVER
7433 M:      Olivier Lorin <o.lorin@laposte.net>
7434 L:      linux-media@vger.kernel.org
7435 S:      Maintained
7436 T:      git git://linuxtv.org/media_tree.git
7437 F:      drivers/media/usb/gspca/gl860/
7438
7439 GSPCA M5602 SUBDRIVER
7440 M:      Erik Andren <erik.andren@gmail.com>
7441 L:      linux-media@vger.kernel.org
7442 S:      Maintained
7443 T:      git git://linuxtv.org/media_tree.git
7444 F:      drivers/media/usb/gspca/m5602/
7445
7446 GSPCA PAC207 SONIXB SUBDRIVER
7447 M:      Hans Verkuil <hverkuil@xs4all.nl>
7448 L:      linux-media@vger.kernel.org
7449 S:      Odd Fixes
7450 T:      git git://linuxtv.org/media_tree.git
7451 F:      drivers/media/usb/gspca/pac207.c
7452
7453 GSPCA SN9C20X SUBDRIVER
7454 M:      Brian Johnson <brijohn@gmail.com>
7455 L:      linux-media@vger.kernel.org
7456 S:      Maintained
7457 T:      git git://linuxtv.org/media_tree.git
7458 F:      drivers/media/usb/gspca/sn9c20x.c
7459
7460 GSPCA T613 SUBDRIVER
7461 M:      Leandro Costantino <lcostantino@gmail.com>
7462 L:      linux-media@vger.kernel.org
7463 S:      Maintained
7464 T:      git git://linuxtv.org/media_tree.git
7465 F:      drivers/media/usb/gspca/t613.c
7466
7467 GSPCA USB WEBCAM DRIVER
7468 M:      Hans Verkuil <hverkuil@xs4all.nl>
7469 L:      linux-media@vger.kernel.org
7470 S:      Odd Fixes
7471 T:      git git://linuxtv.org/media_tree.git
7472 F:      drivers/media/usb/gspca/
7473
7474 GTP (GPRS Tunneling Protocol)
7475 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7476 M:      Harald Welte <laforge@gnumonks.org>
7477 L:      osmocom-net-gprs@lists.osmocom.org
7478 S:      Maintained
7479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7480 F:      drivers/net/gtp.c
7481
7482 GUID PARTITION TABLE (GPT)
7483 M:      Davidlohr Bueso <dave@stgolabs.net>
7484 L:      linux-efi@vger.kernel.org
7485 S:      Maintained
7486 F:      block/partitions/efi.*
7487
7488 H8/300 ARCHITECTURE
7489 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7490 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7491 S:      Maintained
7492 W:      http://uclinux-h8.sourceforge.jp
7493 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7494 F:      arch/h8300/
7495 F:      drivers/clk/h8300/
7496 F:      drivers/clocksource/h8300_*.c
7497 F:      drivers/irqchip/irq-renesas-h8*.c
7498
7499 HABANALABS PCI DRIVER
7500 M:      Oded Gabbay <oded.gabbay@gmail.com>
7501 S:      Supported
7502 T:      git https://github.com/HabanaAI/linux.git
7503 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7504 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7505 F:      drivers/misc/habanalabs/
7506 F:      include/uapi/misc/habanalabs.h
7507
7508 HACKRF MEDIA DRIVER
7509 M:      Antti Palosaari <crope@iki.fi>
7510 L:      linux-media@vger.kernel.org
7511 S:      Maintained
7512 W:      https://linuxtv.org
7513 W:      http://palosaari.fi/linux/
7514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7515 T:      git git://linuxtv.org/anttip/media_tree.git
7516 F:      drivers/media/usb/hackrf/
7517
7518 HANTRO VPU CODEC DRIVER
7519 M:      Ezequiel Garcia <ezequiel@collabora.com>
7520 M:      Philipp Zabel <p.zabel@pengutronix.de>
7521 L:      linux-media@vger.kernel.org
7522 L:      linux-rockchip@lists.infradead.org
7523 S:      Maintained
7524 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
7525 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
7526 F:      drivers/staging/media/hantro/
7527
7528 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7529 M:      Frank Seidel <frank@f-seidel.de>
7530 L:      platform-driver-x86@vger.kernel.org
7531 S:      Maintained
7532 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7533 F:      drivers/platform/x86/hdaps.c
7534
7535 HARDWARE MONITORING
7536 M:      Jean Delvare <jdelvare@suse.com>
7537 M:      Guenter Roeck <linux@roeck-us.net>
7538 L:      linux-hwmon@vger.kernel.org
7539 S:      Maintained
7540 W:      http://hwmon.wiki.kernel.org/
7541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7542 F:      Documentation/devicetree/bindings/hwmon/
7543 F:      Documentation/hwmon/
7544 F:      drivers/hwmon/
7545 F:      include/linux/hwmon*.h
7546 F:      include/trace/events/hwmon*.h
7547
7548 HARDWARE RANDOM NUMBER GENERATOR CORE
7549 M:      Matt Mackall <mpm@selenic.com>
7550 M:      Herbert Xu <herbert@gondor.apana.org.au>
7551 L:      linux-crypto@vger.kernel.org
7552 S:      Odd fixes
7553 F:      Documentation/admin-guide/hw_random.rst
7554 F:      Documentation/devicetree/bindings/rng/
7555 F:      drivers/char/hw_random/
7556 F:      include/linux/hw_random.h
7557
7558 HARDWARE SPINLOCK CORE
7559 M:      Ohad Ben-Cohen <ohad@wizery.com>
7560 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7561 R:      Baolin Wang <baolin.wang7@gmail.com>
7562 L:      linux-remoteproc@vger.kernel.org
7563 S:      Maintained
7564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7565 F:      Documentation/devicetree/bindings/hwlock/
7566 F:      Documentation/locking/hwspinlock.rst
7567 F:      drivers/hwspinlock/
7568 F:      include/linux/hwspinlock.h
7569
7570 HARDWARE TRACING FACILITIES
7571 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7572 S:      Maintained
7573 F:      drivers/hwtracing/
7574
7575 HARMONY SOUND DRIVER
7576 L:      linux-parisc@vger.kernel.org
7577 S:      Maintained
7578 F:      sound/parisc/harmony.*
7579
7580 HDPVR USB VIDEO ENCODER DRIVER
7581 M:      Hans Verkuil <hverkuil@xs4all.nl>
7582 L:      linux-media@vger.kernel.org
7583 S:      Odd Fixes
7584 W:      https://linuxtv.org
7585 T:      git git://linuxtv.org/media_tree.git
7586 F:      drivers/media/usb/hdpvr/
7587
7588 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7589 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7590 S:      Supported
7591 F:      Documentation/watchdog/hpwdt.rst
7592 F:      drivers/watchdog/hpwdt.c
7593
7594 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7595 M:      Don Brace <don.brace@microsemi.com>
7596 L:      esc.storagedev@microsemi.com
7597 L:      linux-scsi@vger.kernel.org
7598 S:      Supported
7599 F:      Documentation/scsi/hpsa.rst
7600 F:      drivers/scsi/hpsa*.[ch]
7601 F:      include/linux/cciss*.h
7602 F:      include/uapi/linux/cciss*.h
7603
7604 HFI1 DRIVER
7605 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7606 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7607 L:      linux-rdma@vger.kernel.org
7608 S:      Supported
7609 F:      drivers/infiniband/hw/hfi1
7610
7611 HFS FILESYSTEM
7612 L:      linux-fsdevel@vger.kernel.org
7613 S:      Orphan
7614 F:      Documentation/filesystems/hfs.rst
7615 F:      fs/hfs/
7616
7617 HFSPLUS FILESYSTEM
7618 L:      linux-fsdevel@vger.kernel.org
7619 S:      Orphan
7620 F:      Documentation/filesystems/hfsplus.rst
7621 F:      fs/hfsplus/
7622
7623 HGA FRAMEBUFFER DRIVER
7624 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7625 L:      linux-nvidia@lists.surfsouth.com
7626 S:      Maintained
7627 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7628 F:      drivers/video/fbdev/hgafb.c
7629
7630 HIBERNATION (aka Software Suspend, aka swsusp)
7631 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7632 M:      Pavel Machek <pavel@ucw.cz>
7633 L:      linux-pm@vger.kernel.org
7634 S:      Supported
7635 B:      https://bugzilla.kernel.org
7636 F:      arch/*/include/asm/suspend*.h
7637 F:      arch/x86/power/
7638 F:      drivers/base/power/
7639 F:      include/linux/freezer.h
7640 F:      include/linux/pm.h
7641 F:      include/linux/suspend.h
7642 F:      kernel/power/
7643
7644 HID CORE LAYER
7645 M:      Jiri Kosina <jikos@kernel.org>
7646 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7647 L:      linux-input@vger.kernel.org
7648 S:      Maintained
7649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7650 F:      drivers/hid/
7651 F:      include/linux/hid*
7652 F:      include/uapi/linux/hid*
7653
7654 HID SENSOR HUB DRIVERS
7655 M:      Jiri Kosina <jikos@kernel.org>
7656 M:      Jonathan Cameron <jic23@kernel.org>
7657 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7658 L:      linux-input@vger.kernel.org
7659 L:      linux-iio@vger.kernel.org
7660 S:      Maintained
7661 F:      Documentation/hid/hid-sensor*
7662 F:      drivers/hid/hid-sensor-*
7663 F:      drivers/iio/*/hid-*
7664 F:      include/linux/hid-sensor-*
7665
7666 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7667 M:      Thomas Gleixner <tglx@linutronix.de>
7668 L:      linux-kernel@vger.kernel.org
7669 S:      Maintained
7670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7671 F:      Documentation/timers/
7672 F:      include/linux/clockchips.h
7673 F:      include/linux/hrtimer.h
7674 F:      kernel/time/clockevents.c
7675 F:      kernel/time/hrtimer.c
7676 F:      kernel/time/timer_*.c
7677
7678 HIGH-SPEED SCC DRIVER FOR AX.25
7679 L:      linux-hams@vger.kernel.org
7680 S:      Orphan
7681 F:      drivers/net/hamradio/dmascc.c
7682 F:      drivers/net/hamradio/scc.c
7683
7684 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7685 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7686 S:      Supported
7687 W:      http://www.highpoint-tech.com
7688 F:      Documentation/scsi/hptiop.rst
7689 F:      drivers/scsi/hptiop.c
7690
7691 HIPPI
7692 M:      Jes Sorensen <jes@trained-monkey.org>
7693 L:      linux-hippi@sunsite.dk
7694 S:      Maintained
7695 F:      drivers/net/hippi/
7696 F:      include/linux/hippidevice.h
7697 F:      include/uapi/linux/if_hippi.h
7698 F:      net/802/hippi.c
7699
7700 HISILICON DMA DRIVER
7701 M:      Zhou Wang <wangzhou1@hisilicon.com>
7702 L:      dmaengine@vger.kernel.org
7703 S:      Maintained
7704 F:      drivers/dma/hisi_dma.c
7705
7706 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7707 M:      Zaibo Xu <xuzaibo@huawei.com>
7708 L:      linux-crypto@vger.kernel.org
7709 S:      Maintained
7710 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7711 F:      drivers/crypto/hisilicon/hpre/hpre.h
7712 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7713 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7714
7715 HISILICON LPC BUS DRIVER
7716 M:      john.garry@huawei.com
7717 S:      Maintained
7718 W:      http://www.hisilicon.com
7719 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7720 F:      drivers/bus/hisi_lpc.c
7721
7722 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7723 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7724 M:      Salil Mehta <salil.mehta@huawei.com>
7725 L:      netdev@vger.kernel.org
7726 S:      Maintained
7727 W:      http://www.hisilicon.com
7728 F:      drivers/net/ethernet/hisilicon/hns3/
7729
7730 HISILICON NETWORK SUBSYSTEM DRIVER
7731 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7732 M:      Salil Mehta <salil.mehta@huawei.com>
7733 L:      netdev@vger.kernel.org
7734 S:      Maintained
7735 W:      http://www.hisilicon.com
7736 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7737 F:      drivers/net/ethernet/hisilicon/
7738
7739 HISILICON PMU DRIVER
7740 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7741 S:      Supported
7742 W:      http://www.hisilicon.com
7743 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7744 F:      drivers/perf/hisilicon
7745
7746 HISILICON QM AND ZIP Controller DRIVER
7747 M:      Zhou Wang <wangzhou1@hisilicon.com>
7748 L:      linux-crypto@vger.kernel.org
7749 S:      Maintained
7750 F:      Documentation/ABI/testing/debugfs-hisi-zip
7751 F:      drivers/crypto/hisilicon/qm.c
7752 F:      drivers/crypto/hisilicon/qm.h
7753 F:      drivers/crypto/hisilicon/sgl.c
7754 F:      drivers/crypto/hisilicon/zip/
7755
7756 HISILICON ROCE DRIVER
7757 M:      Lijun Ou <oulijun@huawei.com>
7758 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7759 M:      Weihang Li <liweihang@huawei.com>
7760 L:      linux-rdma@vger.kernel.org
7761 S:      Maintained
7762 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7763 F:      drivers/infiniband/hw/hns/
7764
7765 HISILICON SAS Controller
7766 M:      John Garry <john.garry@huawei.com>
7767 S:      Supported
7768 W:      http://www.hisilicon.com
7769 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7770 F:      drivers/scsi/hisi_sas/
7771
7772 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7773 M:      Zaibo Xu <xuzaibo@huawei.com>
7774 L:      linux-crypto@vger.kernel.org
7775 S:      Maintained
7776 F:      Documentation/ABI/testing/debugfs-hisi-sec
7777 F:      drivers/crypto/hisilicon/sec2/sec.h
7778 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7779 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7780 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7781
7782 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7783 M:      Zaibo Xu <xuzaibo@huawei.com>
7784 S:      Maintained
7785 F:      drivers/char/hw_random/hisi-trng-v2.c
7786
7787 HISILICON V3XX SPI NOR FLASH Controller Driver
7788 M:      John Garry <john.garry@huawei.com>
7789 S:      Maintained
7790 W:      http://www.hisilicon.com
7791 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7792
7793 HMM - Heterogeneous Memory Management
7794 M:      Jérôme Glisse <jglisse@redhat.com>
7795 L:      linux-mm@kvack.org
7796 S:      Maintained
7797 F:      Documentation/vm/hmm.rst
7798 F:      include/linux/hmm*
7799 F:      lib/test_hmm*
7800 F:      mm/hmm*
7801 F:      tools/testing/selftests/vm/*hmm*
7802
7803 HOST AP DRIVER
7804 M:      Jouni Malinen <j@w1.fi>
7805 L:      linux-wireless@vger.kernel.org
7806 S:      Obsolete
7807 W:      http://w1.fi/hostap-driver.html
7808 F:      drivers/net/wireless/intersil/hostap/
7809
7810 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7811 L:      platform-driver-x86@vger.kernel.org
7812 S:      Orphan
7813 F:      drivers/platform/x86/tc1100-wmi.c
7814
7815 HPET:   High Precision Event Timers driver
7816 M:      Clemens Ladisch <clemens@ladisch.de>
7817 S:      Maintained
7818 F:      Documentation/timers/hpet.rst
7819 F:      drivers/char/hpet.c
7820 F:      include/linux/hpet.h
7821 F:      include/uapi/linux/hpet.h
7822
7823 HPET:   x86
7824 S:      Orphan
7825 F:      arch/x86/include/asm/hpet.h
7826 F:      arch/x86/kernel/hpet.c
7827
7828 HPFS FILESYSTEM
7829 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7830 S:      Maintained
7831 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7832 F:      fs/hpfs/
7833
7834 HSI SUBSYSTEM
7835 M:      Sebastian Reichel <sre@kernel.org>
7836 S:      Maintained
7837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7838 F:      Documentation/ABI/testing/sysfs-bus-hsi
7839 F:      Documentation/driver-api/hsi.rst
7840 F:      drivers/hsi/
7841 F:      include/linux/hsi/
7842 F:      include/uapi/linux/hsi/
7843
7844 HSO 3G MODEM DRIVER
7845 L:      linux-usb@vger.kernel.org
7846 S:      Orphan
7847 F:      drivers/net/usb/hso.c
7848
7849 HSR NETWORK PROTOCOL
7850 L:      netdev@vger.kernel.org
7851 S:      Orphan
7852 F:      net/hsr/
7853
7854 HT16K33 LED CONTROLLER DRIVER
7855 M:      Robin van der Gracht <robin@protonic.nl>
7856 S:      Maintained
7857 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7858 F:      drivers/auxdisplay/ht16k33.c
7859
7860 HTCPEN TOUCHSCREEN DRIVER
7861 M:      Pau Oliva Fora <pof@eslack.org>
7862 L:      linux-input@vger.kernel.org
7863 S:      Maintained
7864 F:      drivers/input/touchscreen/htcpen.c
7865
7866 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7867 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7868 L:      linux-iio@vger.kernel.org
7869 S:      Maintained
7870 W:      http://www.st.com/
7871 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7872 F:      drivers/iio/humidity/hts221*
7873
7874 HUAWEI ETHERNET DRIVER
7875 M:      Bin Luo <luobin9@huawei.com>
7876 L:      netdev@vger.kernel.org
7877 S:      Supported
7878 F:      Documentation/networking/hinic.rst
7879 F:      drivers/net/ethernet/huawei/hinic/
7880
7881 HUGETLB FILESYSTEM
7882 M:      Mike Kravetz <mike.kravetz@oracle.com>
7883 L:      linux-mm@kvack.org
7884 S:      Maintained
7885 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7886 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7887 F:      Documentation/vm/hugetlbfs_reserv.rst
7888 F:      fs/hugetlbfs/
7889 F:      include/linux/hugetlb.h
7890 F:      mm/hugetlb.c
7891
7892 HVA ST MEDIA DRIVER
7893 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7894 L:      linux-media@vger.kernel.org
7895 S:      Supported
7896 W:      https://linuxtv.org
7897 T:      git git://linuxtv.org/media_tree.git
7898 F:      drivers/media/platform/sti/hva
7899
7900 HWPOISON MEMORY FAILURE HANDLING
7901 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
7902 L:      linux-mm@kvack.org
7903 S:      Maintained
7904 F:      mm/hwpoison-inject.c
7905 F:      mm/memory-failure.c
7906
7907 HYGON PROCESSOR SUPPORT
7908 M:      Pu Wen <puwen@hygon.cn>
7909 L:      linux-kernel@vger.kernel.org
7910 S:      Maintained
7911 F:      arch/x86/kernel/cpu/hygon.c
7912
7913 HYNIX HI556 SENSOR DRIVER
7914 M:      Shawn Tu <shawnx.tu@intel.com>
7915 L:      linux-media@vger.kernel.org
7916 S:      Maintained
7917 T:      git git://linuxtv.org/media_tree.git
7918 F:      drivers/media/i2c/hi556.c
7919
7920 Hyper-V CORE AND DRIVERS
7921 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7922 M:      Haiyang Zhang <haiyangz@microsoft.com>
7923 M:      Stephen Hemminger <sthemmin@microsoft.com>
7924 M:      Wei Liu <wei.liu@kernel.org>
7925 L:      linux-hyperv@vger.kernel.org
7926 S:      Supported
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7928 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7929 F:      Documentation/ABI/testing/debugfs-hyperv
7930 F:      Documentation/networking/device_drivers/microsoft/netvsc.rst
7931 F:      arch/x86/hyperv
7932 F:      arch/x86/include/asm/hyperv-tlfs.h
7933 F:      arch/x86/include/asm/mshyperv.h
7934 F:      arch/x86/include/asm/trace/hyperv.h
7935 F:      arch/x86/kernel/cpu/mshyperv.c
7936 F:      drivers/clocksource/hyperv_timer.c
7937 F:      drivers/hid/hid-hyperv.c
7938 F:      drivers/hv/
7939 F:      drivers/input/serio/hyperv-keyboard.c
7940 F:      drivers/iommu/hyperv-iommu.c
7941 F:      drivers/net/hyperv/
7942 F:      drivers/pci/controller/pci-hyperv-intf.c
7943 F:      drivers/pci/controller/pci-hyperv.c
7944 F:      drivers/scsi/storvsc_drv.c
7945 F:      drivers/uio/uio_hv_generic.c
7946 F:      drivers/video/fbdev/hyperv_fb.c
7947 F:      include/asm-generic/hyperv-tlfs.h
7948 F:      include/asm-generic/mshyperv.h
7949 F:      include/clocksource/hyperv_timer.h
7950 F:      include/linux/hyperv.h
7951 F:      include/uapi/linux/hyperv.h
7952 F:      net/vmw_vsock/hyperv_transport.c
7953 F:      tools/hv/
7954
7955 HYPERBUS SUPPORT
7956 M:      Vignesh Raghavendra <vigneshr@ti.com>
7957 L:      linux-mtd@lists.infradead.org
7958 S:      Supported
7959 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7960 C:      irc://irc.oftc.net/mtd
7961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7962 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7963 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7964 F:      drivers/mtd/hyperbus/
7965 F:      include/linux/mtd/hyperbus.h
7966
7967 HYPERVISOR VIRTUAL CONSOLE DRIVER
7968 L:      linuxppc-dev@lists.ozlabs.org
7969 S:      Odd Fixes
7970 F:      drivers/tty/hvc/
7971
7972 I2C ACPI SUPPORT
7973 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7974 L:      linux-i2c@vger.kernel.org
7975 L:      linux-acpi@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/i2c/i2c-core-acpi.c
7978
7979 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7980 M:      Ajay Gupta <ajayg@nvidia.com>
7981 L:      linux-i2c@vger.kernel.org
7982 S:      Maintained
7983 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7984 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7985
7986 I2C MUXES
7987 M:      Peter Rosin <peda@axentia.se>
7988 L:      linux-i2c@vger.kernel.org
7989 S:      Maintained
7990 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7991 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7992 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7993 F:      Documentation/i2c/i2c-topology.rst
7994 F:      Documentation/i2c/muxes/
7995 F:      drivers/i2c/i2c-mux.c
7996 F:      drivers/i2c/muxes/
7997 F:      include/linux/i2c-mux.h
7998
7999 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8000 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8001 L:      linux-i2c@vger.kernel.org
8002 S:      Maintained
8003 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8004 F:      drivers/i2c/busses/i2c-mv64xxx.c
8005
8006 I2C OVER PARALLEL PORT
8007 M:      Jean Delvare <jdelvare@suse.com>
8008 L:      linux-i2c@vger.kernel.org
8009 S:      Maintained
8010 F:      Documentation/i2c/busses/i2c-parport.rst
8011 F:      drivers/i2c/busses/i2c-parport.c
8012
8013 I2C SUBSYSTEM
8014 M:      Wolfram Sang <wsa@kernel.org>
8015 L:      linux-i2c@vger.kernel.org
8016 S:      Maintained
8017 W:      https://i2c.wiki.kernel.org/
8018 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8020 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8021 F:      Documentation/i2c/
8022 F:      drivers/i2c/*
8023 F:      include/linux/i2c-dev.h
8024 F:      include/linux/i2c-smbus.h
8025 F:      include/linux/i2c.h
8026 F:      include/uapi/linux/i2c-*.h
8027 F:      include/uapi/linux/i2c.h
8028
8029 I2C SUBSYSTEM HOST DRIVERS
8030 L:      linux-i2c@vger.kernel.org
8031 S:      Odd Fixes
8032 W:      https://i2c.wiki.kernel.org/
8033 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8035 F:      Documentation/devicetree/bindings/i2c/
8036 F:      drivers/i2c/algos/
8037 F:      drivers/i2c/busses/
8038
8039 I2C-TAOS-EVM DRIVER
8040 M:      Jean Delvare <jdelvare@suse.com>
8041 L:      linux-i2c@vger.kernel.org
8042 S:      Maintained
8043 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8044 F:      drivers/i2c/busses/i2c-taos-evm.c
8045
8046 I2C-TINY-USB DRIVER
8047 M:      Till Harbaum <till@harbaum.org>
8048 L:      linux-i2c@vger.kernel.org
8049 S:      Maintained
8050 W:      http://www.harbaum.org/till/i2c_tiny_usb
8051 F:      drivers/i2c/busses/i2c-tiny-usb.c
8052
8053 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8054 M:      Jean Delvare <jdelvare@suse.com>
8055 L:      linux-i2c@vger.kernel.org
8056 S:      Maintained
8057 F:      Documentation/i2c/busses/i2c-ali1535.rst
8058 F:      Documentation/i2c/busses/i2c-ali1563.rst
8059 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8060 F:      Documentation/i2c/busses/i2c-amd756.rst
8061 F:      Documentation/i2c/busses/i2c-amd8111.rst
8062 F:      Documentation/i2c/busses/i2c-i801.rst
8063 F:      Documentation/i2c/busses/i2c-nforce2.rst
8064 F:      Documentation/i2c/busses/i2c-piix4.rst
8065 F:      Documentation/i2c/busses/i2c-sis5595.rst
8066 F:      Documentation/i2c/busses/i2c-sis630.rst
8067 F:      Documentation/i2c/busses/i2c-sis96x.rst
8068 F:      Documentation/i2c/busses/i2c-via.rst
8069 F:      Documentation/i2c/busses/i2c-viapro.rst
8070 F:      drivers/i2c/busses/i2c-ali1535.c
8071 F:      drivers/i2c/busses/i2c-ali1563.c
8072 F:      drivers/i2c/busses/i2c-ali15x3.c
8073 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8074 F:      drivers/i2c/busses/i2c-amd756.c
8075 F:      drivers/i2c/busses/i2c-amd8111.c
8076 F:      drivers/i2c/busses/i2c-i801.c
8077 F:      drivers/i2c/busses/i2c-isch.c
8078 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8079 F:      drivers/i2c/busses/i2c-nforce2.c
8080 F:      drivers/i2c/busses/i2c-piix4.c
8081 F:      drivers/i2c/busses/i2c-sis5595.c
8082 F:      drivers/i2c/busses/i2c-sis630.c
8083 F:      drivers/i2c/busses/i2c-sis96x.c
8084 F:      drivers/i2c/busses/i2c-via.c
8085 F:      drivers/i2c/busses/i2c-viapro.c
8086
8087 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8088 M:      Hans de Goede <hdegoede@redhat.com>
8089 L:      linux-i2c@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/i2c/busses/i2c-cht-wc.c
8092
8093 I2C/SMBUS ISMT DRIVER
8094 M:      Seth Heasley <seth.heasley@intel.com>
8095 M:      Neil Horman <nhorman@tuxdriver.com>
8096 L:      linux-i2c@vger.kernel.org
8097 F:      Documentation/i2c/busses/i2c-ismt.rst
8098 F:      drivers/i2c/busses/i2c-ismt.c
8099
8100 I2C/SMBUS STUB DRIVER
8101 M:      Jean Delvare <jdelvare@suse.com>
8102 L:      linux-i2c@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/i2c/i2c-stub.c
8105
8106 I3C DRIVER FOR CADENCE I3C MASTER IP
8107 M:      Przemysław Gaj <pgaj@cadence.com>
8108 S:      Maintained
8109 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8110 F:      drivers/i3c/master/i3c-master-cdns.c
8111
8112 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8113 M:      Vitor Soares <vitor.soares@synopsys.com>
8114 S:      Maintained
8115 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8116 F:      drivers/i3c/master/dw*
8117
8118 I3C SUBSYSTEM
8119 M:      Boris Brezillon <bbrezillon@kernel.org>
8120 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8121 S:      Maintained
8122 C:      irc://chat.freenode.net/linux-i3c
8123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8124 F:      Documentation/ABI/testing/sysfs-bus-i3c
8125 F:      Documentation/devicetree/bindings/i3c/
8126 F:      Documentation/driver-api/i3c
8127 F:      drivers/i3c/
8128 F:      include/linux/i3c/
8129
8130 IA64 (Itanium) PLATFORM
8131 M:      Tony Luck <tony.luck@intel.com>
8132 M:      Fenghua Yu <fenghua.yu@intel.com>
8133 L:      linux-ia64@vger.kernel.org
8134 S:      Maintained
8135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8136 F:      Documentation/ia64/
8137 F:      arch/ia64/
8138
8139 IBM Power 842 compression accelerator
8140 M:      Haren Myneni <haren@us.ibm.com>
8141 S:      Supported
8142 F:      crypto/842.c
8143 F:      drivers/crypto/nx/Kconfig
8144 F:      drivers/crypto/nx/Makefile
8145 F:      drivers/crypto/nx/nx-842*
8146 F:      include/linux/sw842.h
8147 F:      lib/842/
8148
8149 IBM Power in-Nest Crypto Acceleration
8150 M:      Breno Leitão <leitao@debian.org>
8151 M:      Nayna Jain <nayna@linux.ibm.com>
8152 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8153 L:      linux-crypto@vger.kernel.org
8154 S:      Supported
8155 F:      drivers/crypto/nx/Kconfig
8156 F:      drivers/crypto/nx/Makefile
8157 F:      drivers/crypto/nx/nx-aes*
8158 F:      drivers/crypto/nx/nx-sha*
8159 F:      drivers/crypto/nx/nx.*
8160 F:      drivers/crypto/nx/nx_csbcpb.h
8161 F:      drivers/crypto/nx/nx_debugfs.c
8162
8163 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8164 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8165 L:      linux-pci@vger.kernel.org
8166 L:      linuxppc-dev@lists.ozlabs.org
8167 S:      Supported
8168 F:      drivers/pci/hotplug/rpadlpar*
8169
8170 IBM Power Linux RAID adapter
8171 M:      Brian King <brking@us.ibm.com>
8172 S:      Supported
8173 F:      drivers/scsi/ipr.*
8174
8175 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8176 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8177 L:      linux-pci@vger.kernel.org
8178 L:      linuxppc-dev@lists.ozlabs.org
8179 S:      Supported
8180 F:      drivers/pci/hotplug/rpaphp*
8181
8182 IBM Power SRIOV Virtual NIC Device Driver
8183 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8184 M:      John Allen <jallen@linux.ibm.com>
8185 L:      netdev@vger.kernel.org
8186 S:      Supported
8187 F:      drivers/net/ethernet/ibm/ibmvnic.*
8188
8189 IBM Power Virtual Accelerator Switchboard
8190 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8191 L:      linuxppc-dev@lists.ozlabs.org
8192 S:      Supported
8193 F:      arch/powerpc/include/asm/vas.h
8194 F:      arch/powerpc/platforms/powernv/copy-paste.h
8195 F:      arch/powerpc/platforms/powernv/vas*
8196
8197 IBM Power Virtual Ethernet Device Driver
8198 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8199 L:      netdev@vger.kernel.org
8200 S:      Supported
8201 F:      drivers/net/ethernet/ibm/ibmveth.*
8202
8203 IBM Power Virtual FC Device Drivers
8204 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8205 L:      linux-scsi@vger.kernel.org
8206 S:      Supported
8207 F:      drivers/scsi/ibmvscsi/ibmvfc*
8208
8209 IBM Power Virtual Management Channel Driver
8210 M:      Steven Royer <seroyer@linux.ibm.com>
8211 S:      Supported
8212 F:      drivers/misc/ibmvmc.*
8213
8214 IBM Power Virtual SCSI Device Drivers
8215 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8216 L:      linux-scsi@vger.kernel.org
8217 S:      Supported
8218 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8219 F:      include/scsi/viosrp.h
8220
8221 IBM Power Virtual SCSI Device Target Driver
8222 M:      Michael Cyr <mikecyr@linux.ibm.com>
8223 L:      linux-scsi@vger.kernel.org
8224 L:      target-devel@vger.kernel.org
8225 S:      Supported
8226 F:      drivers/scsi/ibmvscsi_tgt/
8227
8228 IBM Power VMX Cryptographic instructions
8229 M:      Breno Leitão <leitao@debian.org>
8230 M:      Nayna Jain <nayna@linux.ibm.com>
8231 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8232 L:      linux-crypto@vger.kernel.org
8233 S:      Supported
8234 F:      drivers/crypto/vmx/Kconfig
8235 F:      drivers/crypto/vmx/Makefile
8236 F:      drivers/crypto/vmx/aes*
8237 F:      drivers/crypto/vmx/ghash*
8238 F:      drivers/crypto/vmx/ppc-xlate.pl
8239 F:      drivers/crypto/vmx/vmx.c
8240
8241 IBM ServeRAID RAID DRIVER
8242 S:      Orphan
8243 F:      drivers/scsi/ips.*
8244
8245 ICH LPC AND GPIO DRIVER
8246 M:      Peter Tyser <ptyser@xes-inc.com>
8247 S:      Maintained
8248 F:      drivers/gpio/gpio-ich.c
8249 F:      drivers/mfd/lpc_ich.c
8250
8251 ICY I2C DRIVER
8252 M:      Max Staudt <max@enpas.org>
8253 L:      linux-i2c@vger.kernel.org
8254 S:      Maintained
8255 F:      drivers/i2c/busses/i2c-icy.c
8256
8257 IDE SUBSYSTEM
8258 M:      "David S. Miller" <davem@davemloft.net>
8259 L:      linux-ide@vger.kernel.org
8260 S:      Maintained
8261 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8263 F:      Documentation/ide/
8264 F:      drivers/ide/
8265 F:      include/linux/ide.h
8266
8267 IDE/ATAPI DRIVERS
8268 M:      Borislav Petkov <bp@alien8.de>
8269 L:      linux-ide@vger.kernel.org
8270 S:      Maintained
8271 F:      Documentation/cdrom/ide-cd.rst
8272 F:      drivers/ide/ide-cd*
8273
8274 IDEAPAD LAPTOP EXTRAS DRIVER
8275 M:      Ike Panhc <ike.pan@canonical.com>
8276 L:      platform-driver-x86@vger.kernel.org
8277 S:      Maintained
8278 W:      http://launchpad.net/ideapad-laptop
8279 F:      drivers/platform/x86/ideapad-laptop.c
8280
8281 IDEAPAD LAPTOP SLIDEBAR DRIVER
8282 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8283 L:      linux-input@vger.kernel.org
8284 S:      Maintained
8285 W:      https://github.com/o2genum/ideapad-slidebar
8286 F:      drivers/input/misc/ideapad_slidebar.c
8287
8288 IDT VersaClock 5 CLOCK DRIVER
8289 M:      Marek Vasut <marek.vasut@gmail.com>
8290 S:      Maintained
8291 F:      drivers/clk/clk-versaclock5.c
8292
8293 IEEE 802.15.4 SUBSYSTEM
8294 M:      Alexander Aring <alex.aring@gmail.com>
8295 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8296 L:      linux-wpan@vger.kernel.org
8297 S:      Maintained
8298 W:      http://wpan.cakelab.org/
8299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8301 F:      Documentation/networking/ieee802154.rst
8302 F:      drivers/net/ieee802154/
8303 F:      include/linux/ieee802154.h
8304 F:      include/linux/nl802154.h
8305 F:      include/net/af_ieee802154.h
8306 F:      include/net/cfg802154.h
8307 F:      include/net/ieee802154_netdev.h
8308 F:      include/net/mac802154.h
8309 F:      include/net/nl802154.h
8310 F:      net/ieee802154/
8311 F:      net/mac802154/
8312
8313 IFE PROTOCOL
8314 M:      Yotam Gigi <yotam.gi@gmail.com>
8315 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8316 F:      include/net/ife.h
8317 F:      include/uapi/linux/ife.h
8318 F:      net/ife
8319
8320 IGORPLUG-USB IR RECEIVER
8321 M:      Sean Young <sean@mess.org>
8322 L:      linux-media@vger.kernel.org
8323 S:      Maintained
8324 F:      drivers/media/rc/igorplugusb.c
8325
8326 IGUANAWORKS USB IR TRANSCEIVER
8327 M:      Sean Young <sean@mess.org>
8328 L:      linux-media@vger.kernel.org
8329 S:      Maintained
8330 F:      drivers/media/rc/iguanair.c
8331
8332 IIO DIGITAL POTENTIOMETER DAC
8333 M:      Peter Rosin <peda@axentia.se>
8334 L:      linux-iio@vger.kernel.org
8335 S:      Maintained
8336 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8337 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8338 F:      drivers/iio/dac/dpot-dac.c
8339
8340 IIO ENVELOPE DETECTOR
8341 M:      Peter Rosin <peda@axentia.se>
8342 L:      linux-iio@vger.kernel.org
8343 S:      Maintained
8344 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8345 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8346 F:      drivers/iio/adc/envelope-detector.c
8347
8348 IIO MULTIPLEXER
8349 M:      Peter Rosin <peda@axentia.se>
8350 L:      linux-iio@vger.kernel.org
8351 S:      Maintained
8352 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8353 F:      drivers/iio/multiplexer/iio-mux.c
8354
8355 IIO SUBSYSTEM AND DRIVERS
8356 M:      Jonathan Cameron <jic23@kernel.org>
8357 R:      Hartmut Knaack <knaack.h@gmx.de>
8358 R:      Lars-Peter Clausen <lars@metafoo.de>
8359 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8360 L:      linux-iio@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8363 F:      Documentation/ABI/testing/configfs-iio*
8364 F:      Documentation/ABI/testing/sysfs-bus-iio*
8365 F:      Documentation/devicetree/bindings/iio/
8366 F:      drivers/iio/
8367 F:      drivers/staging/iio/
8368 F:      include/linux/iio/
8369 F:      tools/iio/
8370
8371 IIO UNIT CONVERTER
8372 M:      Peter Rosin <peda@axentia.se>
8373 L:      linux-iio@vger.kernel.org
8374 S:      Maintained
8375 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8376 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8377 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8378 F:      drivers/iio/afe/iio-rescale.c
8379
8380 IKANOS/ADI EAGLE ADSL USB DRIVER
8381 M:      Matthieu Castet <castet.matthieu@free.fr>
8382 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8383 S:      Maintained
8384 F:      drivers/usb/atm/ueagle-atm.c
8385
8386 IMGTEC ASCII LCD DRIVER
8387 M:      Paul Burton <paulburton@kernel.org>
8388 S:      Maintained
8389 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8390 F:      drivers/auxdisplay/img-ascii-lcd.c
8391
8392 IMGTEC IR DECODER DRIVER
8393 S:      Orphan
8394 F:      drivers/media/rc/img-ir/
8395
8396 IMON SOUNDGRAPH USB IR RECEIVER
8397 M:      Sean Young <sean@mess.org>
8398 L:      linux-media@vger.kernel.org
8399 S:      Maintained
8400 F:      drivers/media/rc/imon.c
8401 F:      drivers/media/rc/imon_raw.c
8402
8403 IMS TWINTURBO FRAMEBUFFER DRIVER
8404 L:      linux-fbdev@vger.kernel.org
8405 S:      Orphan
8406 F:      drivers/video/fbdev/imsttfb.c
8407
8408 INA209 HARDWARE MONITOR DRIVER
8409 M:      Guenter Roeck <linux@roeck-us.net>
8410 L:      linux-hwmon@vger.kernel.org
8411 S:      Maintained
8412 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8413 F:      Documentation/hwmon/ina209.rst
8414 F:      drivers/hwmon/ina209.c
8415
8416 INA2XX HARDWARE MONITOR DRIVER
8417 M:      Guenter Roeck <linux@roeck-us.net>
8418 L:      linux-hwmon@vger.kernel.org
8419 S:      Maintained
8420 F:      Documentation/hwmon/ina2xx.rst
8421 F:      drivers/hwmon/ina2xx.c
8422 F:      include/linux/platform_data/ina2xx.h
8423
8424 INDUSTRY PACK SUBSYSTEM (IPACK)
8425 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8426 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8427 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8428 L:      industrypack-devel@lists.sourceforge.net
8429 S:      Maintained
8430 W:      http://industrypack.sourceforge.net
8431 F:      drivers/ipack/
8432
8433 INFINEON DPS310 Driver
8434 M:      Eddie James <eajames@linux.ibm.com>
8435 L:      linux-iio@vger.kernel.org
8436 S:      Maintained
8437 F:      drivers/iio/pressure/dps310.c
8438
8439 INFINIBAND SUBSYSTEM
8440 M:      Doug Ledford <dledford@redhat.com>
8441 M:      Jason Gunthorpe <jgg@mellanox.com>
8442 L:      linux-rdma@vger.kernel.org
8443 S:      Supported
8444 W:      https://github.com/linux-rdma/rdma-core
8445 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8447 F:      Documentation/devicetree/bindings/infiniband/
8448 F:      Documentation/infiniband/
8449 F:      drivers/infiniband/
8450 F:      include/rdma/
8451 F:      include/trace/events/ib_mad.h
8452 F:      include/trace/events/ib_umad.h
8453 F:      include/uapi/linux/if_infiniband.h
8454 F:      include/uapi/rdma/
8455 F:      samples/bpf/ibumad_kern.c
8456 F:      samples/bpf/ibumad_user.c
8457
8458 INGENIC JZ4780 DMA Driver
8459 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8460 S:      Maintained
8461 F:      drivers/dma/dma-jz4780.c
8462
8463 INGENIC JZ4780 NAND DRIVER
8464 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8465 L:      linux-mtd@lists.infradead.org
8466 S:      Maintained
8467 F:      drivers/mtd/nand/raw/ingenic/
8468
8469 INGENIC JZ47xx SoCs
8470 M:      Paul Cercueil <paul@crapouillou.net>
8471 S:      Maintained
8472 F:      arch/mips/boot/dts/ingenic/
8473 F:      arch/mips/include/asm/mach-jz4740/
8474 F:      arch/mips/jz4740/
8475 F:      drivers/clk/ingenic/
8476 F:      drivers/dma/dma-jz4780.c
8477 F:      drivers/gpu/drm/ingenic/
8478 F:      drivers/i2c/busses/i2c-jz4780.c
8479 F:      drivers/iio/adc/ingenic-adc.c
8480 F:      drivers/irqchip/irq-ingenic.c
8481 F:      drivers/memory/jz4780-nemc.c
8482 F:      drivers/mmc/host/jz4740_mmc.c
8483 F:      drivers/mtd/nand/raw/ingenic/
8484 F:      drivers/pinctrl/pinctrl-ingenic.c
8485 F:      drivers/power/supply/ingenic-battery.c
8486 F:      drivers/pwm/pwm-jz4740.c
8487 F:      drivers/rtc/rtc-jz4740.c
8488 F:      drivers/tty/serial/8250/8250_ingenic.c
8489 F:      drivers/usb/musb/jz4740.c
8490 F:      drivers/watchdog/jz4740_wdt.c
8491 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8492 F:      include/linux/mfd/ingenic-tcu.h
8493 F:      sound/soc/codecs/jz47*
8494 F:      sound/soc/jz4740/
8495
8496 INOTIFY
8497 M:      Jan Kara <jack@suse.cz>
8498 R:      Amir Goldstein <amir73il@gmail.com>
8499 L:      linux-fsdevel@vger.kernel.org
8500 S:      Maintained
8501 F:      Documentation/filesystems/inotify.rst
8502 F:      fs/notify/inotify/
8503 F:      include/linux/inotify.h
8504 F:      include/uapi/linux/inotify.h
8505
8506 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8507 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8508 L:      linux-input@vger.kernel.org
8509 S:      Maintained
8510 Q:      http://patchwork.kernel.org/project/linux-input/list/
8511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8512 F:      Documentation/devicetree/bindings/input/
8513 F:      Documentation/devicetree/bindings/serio/
8514 F:      Documentation/input/
8515 F:      drivers/input/
8516 F:      include/linux/input.h
8517 F:      include/linux/input/
8518 F:      include/uapi/linux/input-event-codes.h
8519 F:      include/uapi/linux/input.h
8520
8521 INPUT MULTITOUCH (MT) PROTOCOL
8522 M:      Henrik Rydberg <rydberg@bitmath.org>
8523 L:      linux-input@vger.kernel.org
8524 S:      Odd fixes
8525 F:      Documentation/input/multi-touch-protocol.rst
8526 F:      drivers/input/input-mt.c
8527 K:      \b(ABS|SYN)_MT_
8528
8529 INSIDE SECURE CRYPTO DRIVER
8530 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8531 L:      linux-crypto@vger.kernel.org
8532 S:      Maintained
8533 F:      drivers/crypto/inside-secure/
8534
8535 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8536 M:      Mimi Zohar <zohar@linux.ibm.com>
8537 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8538 L:      linux-integrity@vger.kernel.org
8539 S:      Supported
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8541 F:      security/integrity/ima/
8542
8543 INTEL 810/815 FRAMEBUFFER DRIVER
8544 M:      Antonino Daplas <adaplas@gmail.com>
8545 L:      linux-fbdev@vger.kernel.org
8546 S:      Maintained
8547 F:      drivers/video/fbdev/i810/
8548
8549 INTEL ASoC DRIVERS
8550 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8551 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8552 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8553 M:      Jie Yang <yang.jie@linux.intel.com>
8554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8555 S:      Supported
8556 F:      sound/soc/intel/
8557
8558 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8559 M:      Hans de Goede <hdegoede@redhat.com>
8560 L:      platform-driver-x86@vger.kernel.org
8561 S:      Maintained
8562 F:      drivers/platform/x86/intel_atomisp2_pm.c
8563
8564 INTEL BROXTON PMC DRIVER
8565 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8566 M:      Zha Qipeng <qipeng.zha@intel.com>
8567 S:      Maintained
8568 F:      drivers/mfd/intel_pmc_bxt.c
8569 F:      include/linux/mfd/intel_pmc_bxt.h
8570
8571 INTEL C600 SERIES SAS CONTROLLER DRIVER
8572 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8573 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8574 L:      linux-scsi@vger.kernel.org
8575 S:      Supported
8576 T:      git git://git.code.sf.net/p/intel-sas/isci
8577 F:      drivers/scsi/isci/
8578
8579 INTEL CPU family model numbers
8580 M:      Tony Luck <tony.luck@intel.com>
8581 M:      x86@kernel.org
8582 L:      linux-kernel@vger.kernel.org
8583 S:      Supported
8584 F:      arch/x86/include/asm/intel-family.h
8585
8586 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8587 M:      Jani Nikula <jani.nikula@linux.intel.com>
8588 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8589 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8590 L:      intel-gfx@lists.freedesktop.org
8591 S:      Supported
8592 W:      https://01.org/linuxgraphics/
8593 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8594 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8595 C:      irc://chat.freenode.net/intel-gfx
8596 T:      git git://anongit.freedesktop.org/drm-intel
8597 F:      Documentation/gpu/i915.rst
8598 F:      drivers/gpu/drm/i915/
8599 F:      include/drm/i915*
8600 F:      include/uapi/drm/i915_drm.h
8601
8602 INTEL ETHERNET DRIVERS
8603 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8604 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8605 S:      Supported
8606 W:      http://www.intel.com/support/feedback.htm
8607 W:      http://e1000.sourceforge.net/
8608 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8611 F:      Documentation/networking/device_drivers/intel/e100.rst
8612 F:      Documentation/networking/device_drivers/intel/e1000.rst
8613 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8614 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8615 F:      Documentation/networking/device_drivers/intel/i40e.rst
8616 F:      Documentation/networking/device_drivers/intel/iavf.rst
8617 F:      Documentation/networking/device_drivers/intel/ice.rst
8618 F:      Documentation/networking/device_drivers/intel/igb.rst
8619 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8620 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8621 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8622 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8623 F:      drivers/net/ethernet/intel/
8624 F:      drivers/net/ethernet/intel/*/
8625 F:      include/linux/avf/virtchnl.h
8626
8627 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8628 M:      Maik Broemme <mbroemme@libmpq.org>
8629 L:      linux-fbdev@vger.kernel.org
8630 S:      Maintained
8631 F:      Documentation/fb/intelfb.rst
8632 F:      drivers/video/fbdev/intelfb/
8633
8634 INTEL GPIO DRIVERS
8635 M:      Andy Shevchenko <andy@kernel.org>
8636 L:      linux-gpio@vger.kernel.org
8637 S:      Maintained
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8639 F:      drivers/gpio/gpio-ich.c
8640 F:      drivers/gpio/gpio-intel-mid.c
8641 F:      drivers/gpio/gpio-merrifield.c
8642 F:      drivers/gpio/gpio-ml-ioh.c
8643 F:      drivers/gpio/gpio-pch.c
8644 F:      drivers/gpio/gpio-sch.c
8645 F:      drivers/gpio/gpio-sodaville.c
8646
8647 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8648 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8649 M:      Zhi Wang <zhi.a.wang@intel.com>
8650 L:      intel-gvt-dev@lists.freedesktop.org
8651 L:      intel-gfx@lists.freedesktop.org
8652 S:      Supported
8653 W:      https://01.org/igvt-g
8654 T:      git https://github.com/intel/gvt-linux.git
8655 F:      drivers/gpu/drm/i915/gvt/
8656
8657 INTEL HID EVENT DRIVER
8658 M:      Alex Hung <alex.hung@canonical.com>
8659 L:      platform-driver-x86@vger.kernel.org
8660 S:      Maintained
8661 F:      drivers/platform/x86/intel-hid.c
8662
8663 INTEL I/OAT DMA DRIVER
8664 M:      Dave Jiang <dave.jiang@intel.com>
8665 R:      Dan Williams <dan.j.williams@intel.com>
8666 L:      dmaengine@vger.kernel.org
8667 S:      Supported
8668 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8669 F:      drivers/dma/ioat*
8670
8671 INTEL IADX DRIVER
8672 M:      Dave Jiang <dave.jiang@intel.com>
8673 L:      dmaengine@vger.kernel.org
8674 S:      Supported
8675 F:      drivers/dma/idxd/*
8676 F:      include/uapi/linux/idxd.h
8677
8678 INTEL IDLE DRIVER
8679 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8680 M:      Len Brown <lenb@kernel.org>
8681 L:      linux-pm@vger.kernel.org
8682 S:      Supported
8683 B:      https://bugzilla.kernel.org
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8685 F:      drivers/idle/intel_idle.c
8686
8687 INTEL INTEGRATED SENSOR HUB DRIVER
8688 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8689 M:      Jiri Kosina <jikos@kernel.org>
8690 L:      linux-input@vger.kernel.org
8691 S:      Maintained
8692 F:      drivers/hid/intel-ish-hid/
8693
8694 INTEL IOMMU (VT-d)
8695 M:      David Woodhouse <dwmw2@infradead.org>
8696 M:      Lu Baolu <baolu.lu@linux.intel.com>
8697 L:      iommu@lists.linux-foundation.org
8698 S:      Supported
8699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8700 F:      drivers/iommu/dmar.c
8701 F:      drivers/iommu/intel*.[ch]
8702 F:      include/linux/intel-iommu.h
8703 F:      include/linux/intel-svm.h
8704
8705 INTEL IOP-ADMA DMA DRIVER
8706 R:      Dan Williams <dan.j.williams@intel.com>
8707 S:      Odd fixes
8708 F:      drivers/dma/iop-adma.c
8709
8710 INTEL IPU3 CSI-2 CIO2 DRIVER
8711 M:      Yong Zhi <yong.zhi@intel.com>
8712 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8713 M:      Bingbu Cao <bingbu.cao@intel.com>
8714 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8715 L:      linux-media@vger.kernel.org
8716 S:      Maintained
8717 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
8718 F:      drivers/media/pci/intel/ipu3/
8719
8720 INTEL IPU3 CSI-2 IMGU DRIVER
8721 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8722 R:      Bingbu Cao <bingbu.cao@intel.com>
8723 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8724 L:      linux-media@vger.kernel.org
8725 S:      Maintained
8726 F:      Documentation/admin-guide/media/ipu3.rst
8727 F:      Documentation/admin-guide/media/ipu3_rcb.svg
8728 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
8729 F:      drivers/staging/media/ipu3/
8730
8731 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8732 M:      Krzysztof Halasa <khalasa@piap.pl>
8733 S:      Maintained
8734 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8735 F:      drivers/net/wan/ixp4xx_hss.c
8736 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8737 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8738 F:      include/linux/soc/ixp4xx/npe.h
8739 F:      include/linux/soc/ixp4xx/qmgr.h
8740
8741 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8742 M:      Deepak Saxena <dsaxena@plexity.net>
8743 S:      Maintained
8744 F:      drivers/char/hw_random/ixp4xx-rng.c
8745
8746 INTEL MANAGEMENT ENGINE (mei)
8747 M:      Tomas Winkler <tomas.winkler@intel.com>
8748 L:      linux-kernel@vger.kernel.org
8749 S:      Supported
8750 F:      Documentation/driver-api/mei/*
8751 F:      drivers/misc/mei/*
8752 F:      drivers/watchdog/mei_wdt.c
8753 F:      include/linux/mei_cl_bus.h
8754 F:      include/uapi/linux/mei.h
8755 F:      samples/mei/*
8756
8757 INTEL MENLOW THERMAL DRIVER
8758 M:      Sujith Thomas <sujith.thomas@intel.com>
8759 L:      platform-driver-x86@vger.kernel.org
8760 S:      Supported
8761 W:      https://01.org/linux-acpi
8762 F:      drivers/platform/x86/intel_menlow.c
8763
8764 INTEL MIC DRIVERS (mic)
8765 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8766 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8767 S:      Supported
8768 W:      https://github.com/sudeepdutt/mic
8769 W:      http://software.intel.com/en-us/mic-developer
8770 F:      Documentation/misc-devices/mic/
8771 F:      drivers/dma/mic_x100_dma.c
8772 F:      drivers/dma/mic_x100_dma.h
8773 F:      drivers/misc/mic/
8774 F:      include/linux/mic_bus.h
8775 F:      include/linux/scif.h
8776 F:      include/uapi/linux/mic_common.h
8777 F:      include/uapi/linux/mic_ioctl.h
8778 F:      include/uapi/linux/scif_ioctl.h
8779
8780 INTEL P-Unit IPC DRIVER
8781 M:      Zha Qipeng <qipeng.zha@intel.com>
8782 L:      platform-driver-x86@vger.kernel.org
8783 S:      Maintained
8784 F:      arch/x86/include/asm/intel_punit_ipc.h
8785 F:      drivers/platform/x86/intel_punit_ipc.c
8786
8787 INTEL PMC CORE DRIVER
8788 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8789 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8790 L:      platform-driver-x86@vger.kernel.org
8791 S:      Maintained
8792 F:      drivers/platform/x86/intel_pmc_core*
8793
8794 INTEL PMIC GPIO DRIVERS
8795 M:      Andy Shevchenko <andy@kernel.org>
8796 S:      Maintained
8797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8798 F:      drivers/gpio/gpio-*cove.c
8799 F:      drivers/gpio/gpio-msic.c
8800
8801 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8802 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8803 S:      Maintained
8804 F:      drivers/mfd/intel_msic.c
8805 F:      drivers/mfd/intel_soc_pmic*
8806 F:      include/linux/mfd/intel_msic.h
8807 F:      include/linux/mfd/intel_soc_pmic*
8808
8809 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8810 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8811 L:      linux-wireless@vger.kernel.org
8812 S:      Maintained
8813 F:      Documentation/networking/device_drivers/intel/ipw2100.rst
8814 F:      Documentation/networking/device_drivers/intel/ipw2200.rst
8815 F:      drivers/net/wireless/intel/ipw2x00/
8816
8817 INTEL PSTATE DRIVER
8818 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8819 M:      Len Brown <lenb@kernel.org>
8820 L:      linux-pm@vger.kernel.org
8821 S:      Supported
8822 F:      drivers/cpufreq/intel_pstate.c
8823
8824 INTEL RDMA RNIC DRIVER
8825 M:      Faisal Latif <faisal.latif@intel.com>
8826 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8827 L:      linux-rdma@vger.kernel.org
8828 S:      Supported
8829 F:      drivers/infiniband/hw/i40iw/
8830 F:      include/uapi/rdma/i40iw-abi.h
8831
8832 INTEL SCU DRIVERS
8833 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8834 S:      Maintained
8835 F:      arch/x86/include/asm/intel_scu_ipc.h
8836 F:      drivers/platform/x86/intel_scu_*
8837
8838 INTEL SPEED SELECT TECHNOLOGY
8839 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8840 L:      platform-driver-x86@vger.kernel.org
8841 S:      Maintained
8842 F:      drivers/platform/x86/intel_speed_select_if/
8843 F:      include/uapi/linux/isst_if.h
8844 F:      tools/power/x86/intel-speed-select/
8845
8846 INTEL STRATIX10 FIRMWARE DRIVERS
8847 M:      Richard Gong <richard.gong@linux.intel.com>
8848 L:      linux-kernel@vger.kernel.org
8849 S:      Maintained
8850 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8851 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8852 F:      drivers/firmware/stratix10-rsu.c
8853 F:      drivers/firmware/stratix10-svc.c
8854 F:      include/linux/firmware/intel/stratix10-smc.h
8855 F:      include/linux/firmware/intel/stratix10-svc-client.h
8856
8857 INTEL TELEMETRY DRIVER
8858 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8859 M:      "David E. Box" <david.e.box@linux.intel.com>
8860 L:      platform-driver-x86@vger.kernel.org
8861 S:      Maintained
8862 F:      arch/x86/include/asm/intel_telemetry.h
8863 F:      drivers/platform/x86/intel_telemetry*
8864
8865 INTEL UNCORE FREQUENCY CONTROL
8866 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8867 L:      platform-driver-x86@vger.kernel.org
8868 S:      Maintained
8869 F:      drivers/platform/x86/intel-uncore-frequency.c
8870
8871 INTEL VIRTUAL BUTTON DRIVER
8872 M:      AceLan Kao <acelan.kao@canonical.com>
8873 L:      platform-driver-x86@vger.kernel.org
8874 S:      Maintained
8875 F:      drivers/platform/x86/intel-vbtn.c
8876
8877 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8878 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8879 L:      linux-wireless@vger.kernel.org
8880 S:      Supported
8881 F:      drivers/net/wireless/intel/iwlegacy/
8882
8883 INTEL WIRELESS WIFI LINK (iwlwifi)
8884 M:      Johannes Berg <johannes.berg@intel.com>
8885 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8886 M:      Luca Coelho <luciano.coelho@intel.com>
8887 M:      Intel Linux Wireless <linuxwifi@intel.com>
8888 L:      linux-wireless@vger.kernel.org
8889 S:      Supported
8890 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8892 F:      drivers/net/wireless/intel/iwlwifi/
8893
8894 INTEL WIRELESS WIMAX CONNECTION 2400
8895 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8896 M:      linux-wimax@intel.com
8897 L:      wimax@linuxwimax.org (subscribers-only)
8898 S:      Supported
8899 W:      http://linuxwimax.org
8900 F:      Documentation/admin-guide/wimax/i2400m.rst
8901 F:      drivers/net/wimax/i2400m/
8902 F:      include/uapi/linux/wimax/i2400m.h
8903
8904 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
8905 M:      Jithu Joseph <jithu.joseph@intel.com>
8906 R:      Maurice Ma <maurice.ma@intel.com>
8907 S:      Maintained
8908 W:      https://slimbootloader.github.io/security/firmware-update.html
8909 F:      drivers/platform/x86/intel-wmi-sbl-fw-update.c
8910
8911 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8912 M:      Mario Limonciello <mario.limonciello@dell.com>
8913 S:      Maintained
8914 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8915
8916 INTEL(R) TRACE HUB
8917 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8918 S:      Supported
8919 F:      Documentation/trace/intel_th.rst
8920 F:      drivers/hwtracing/intel_th/
8921 F:      include/linux/intel_th.h
8922
8923 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8924 M:      Ning Sun <ning.sun@intel.com>
8925 L:      tboot-devel@lists.sourceforge.net
8926 S:      Supported
8927 W:      http://tboot.sourceforge.net
8928 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8929 F:      Documentation/x86/intel_txt.rst
8930 F:      arch/x86/kernel/tboot.c
8931 F:      include/linux/tboot.h
8932
8933 INTERCONNECT API
8934 M:      Georgi Djakov <georgi.djakov@linaro.org>
8935 L:      linux-pm@vger.kernel.org
8936 S:      Maintained
8937 F:      Documentation/devicetree/bindings/interconnect/
8938 F:      Documentation/driver-api/interconnect.rst
8939 F:      drivers/interconnect/
8940 F:      include/dt-bindings/interconnect/
8941 F:      include/linux/interconnect-provider.h
8942 F:      include/linux/interconnect.h
8943
8944 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8945 M:      Linus Walleij <linus.walleij@linaro.org>
8946 L:      linux-iio@vger.kernel.org
8947 S:      Maintained
8948 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8949 F:      drivers/iio/gyro/mpu3050*
8950
8951 IOC3 ETHERNET DRIVER
8952 M:      Ralf Baechle <ralf@linux-mips.org>
8953 L:      linux-mips@vger.kernel.org
8954 S:      Maintained
8955 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8956
8957 IOMAP FILESYSTEM LIBRARY
8958 M:      Christoph Hellwig <hch@infradead.org>
8959 M:      Darrick J. Wong <darrick.wong@oracle.com>
8960 M:      linux-xfs@vger.kernel.org
8961 M:      linux-fsdevel@vger.kernel.org
8962 L:      linux-xfs@vger.kernel.org
8963 L:      linux-fsdevel@vger.kernel.org
8964 S:      Supported
8965 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8966 F:      fs/iomap/
8967 F:      include/linux/iomap.h
8968
8969 IOMMU DRIVERS
8970 M:      Joerg Roedel <joro@8bytes.org>
8971 L:      iommu@lists.linux-foundation.org
8972 S:      Maintained
8973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8974 F:      Documentation/devicetree/bindings/iommu/
8975 F:      drivers/iommu/
8976 F:      include/linux/iommu.h
8977 F:      include/linux/iova.h
8978 F:      include/linux/of_iommu.h
8979
8980 IO_URING
8981 M:      Jens Axboe <axboe@kernel.dk>
8982 L:      io-uring@vger.kernel.org
8983 S:      Maintained
8984 T:      git git://git.kernel.dk/linux-block
8985 T:      git git://git.kernel.dk/liburing
8986 F:      fs/io-wq.c
8987 F:      fs/io-wq.h
8988 F:      fs/io_uring.c
8989 F:      include/uapi/linux/io_uring.h
8990
8991 IPMI SUBSYSTEM
8992 M:      Corey Minyard <minyard@acm.org>
8993 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8994 S:      Supported
8995 W:      http://openipmi.sourceforge.net/
8996 F:      Documentation/driver-api/ipmi.rst
8997 F:      Documentation/devicetree/bindings/ipmi/
8998 F:      drivers/char/ipmi/
8999 F:      include/linux/ipmi*
9000 F:      include/uapi/linux/ipmi*
9001
9002 IPS SCSI RAID DRIVER
9003 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9004 L:      linux-scsi@vger.kernel.org
9005 S:      Maintained
9006 W:      http://www.adaptec.com/
9007 F:      drivers/scsi/ips*
9008
9009 IPVS
9010 M:      Wensong Zhang <wensong@linux-vs.org>
9011 M:      Simon Horman <horms@verge.net.au>
9012 M:      Julian Anastasov <ja@ssi.bg>
9013 L:      netdev@vger.kernel.org
9014 L:      lvs-devel@vger.kernel.org
9015 S:      Maintained
9016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9018 F:      Documentation/networking/ipvs-sysctl.rst
9019 F:      include/net/ip_vs.h
9020 F:      include/uapi/linux/ip_vs.h
9021 F:      net/netfilter/ipvs/
9022
9023 IPWIRELESS DRIVER
9024 M:      Jiri Kosina <jikos@kernel.org>
9025 M:      David Sterba <dsterba@suse.com>
9026 S:      Odd Fixes
9027 F:      drivers/tty/ipwireless/
9028
9029 IPX NETWORK LAYER
9030 L:      netdev@vger.kernel.org
9031 S:      Obsolete
9032 F:      include/uapi/linux/ipx.h
9033
9034 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9035 M:      Marc Zyngier <maz@kernel.org>
9036 S:      Maintained
9037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9038 F:      Documentation/core-api/irq/irq-domain.rst
9039 F:      include/linux/irqdomain.h
9040 F:      kernel/irq/irqdomain.c
9041 F:      kernel/irq/msi.c
9042
9043 IRQ SUBSYSTEM
9044 M:      Thomas Gleixner <tglx@linutronix.de>
9045 L:      linux-kernel@vger.kernel.org
9046 S:      Maintained
9047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9048 F:      kernel/irq/
9049
9050 IRQCHIP DRIVERS
9051 M:      Thomas Gleixner <tglx@linutronix.de>
9052 M:      Jason Cooper <jason@lakedaemon.net>
9053 M:      Marc Zyngier <maz@kernel.org>
9054 L:      linux-kernel@vger.kernel.org
9055 S:      Maintained
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9057 F:      Documentation/devicetree/bindings/interrupt-controller/
9058 F:      drivers/irqchip/
9059
9060 ISA
9061 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9062 S:      Maintained
9063 F:      Documentation/driver-api/isa.rst
9064 F:      drivers/base/isa.c
9065 F:      include/linux/isa.h
9066
9067 ISA RADIO MODULE
9068 M:      Hans Verkuil <hverkuil@xs4all.nl>
9069 L:      linux-media@vger.kernel.org
9070 S:      Maintained
9071 W:      https://linuxtv.org
9072 T:      git git://linuxtv.org/media_tree.git
9073 F:      drivers/media/radio/radio-isa*
9074
9075 ISAPNP
9076 M:      Jaroslav Kysela <perex@perex.cz>
9077 S:      Maintained
9078 F:      Documentation/driver-api/isapnp.rst
9079 F:      drivers/pnp/isapnp/
9080 F:      include/linux/isapnp.h
9081
9082 ISCSI
9083 M:      Lee Duncan <lduncan@suse.com>
9084 M:      Chris Leech <cleech@redhat.com>
9085 L:      open-iscsi@googlegroups.com
9086 L:      linux-scsi@vger.kernel.org
9087 S:      Maintained
9088 W:      www.open-iscsi.com
9089 F:      drivers/scsi/*iscsi*
9090 F:      include/scsi/*iscsi*
9091
9092 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9093 M:      Peter Jones <pjones@redhat.com>
9094 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9095 S:      Maintained
9096 F:      drivers/firmware/iscsi_ibft*
9097
9098 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9099 M:      Sagi Grimberg <sagi@grimberg.me>
9100 M:      Max Gurtovoy <maxg@mellanox.com>
9101 L:      linux-rdma@vger.kernel.org
9102 S:      Supported
9103 W:      http://www.openfabrics.org
9104 W:      www.open-iscsi.org
9105 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9106 F:      drivers/infiniband/ulp/iser/
9107
9108 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9109 M:      Sagi Grimberg <sagi@grimberg.me>
9110 L:      linux-rdma@vger.kernel.org
9111 L:      target-devel@vger.kernel.org
9112 S:      Supported
9113 W:      http://www.linux-iscsi.org
9114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9115 F:      drivers/infiniband/ulp/isert
9116
9117 ISDN/CMTP OVER BLUETOOTH
9118 M:      Karsten Keil <isdn@linux-pingi.de>
9119 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9120 L:      netdev@vger.kernel.org
9121 S:      Odd Fixes
9122 W:      http://www.isdn4linux.de
9123 F:      Documentation/isdn/
9124 F:      drivers/isdn/capi/
9125 F:      include/linux/isdn/
9126 F:      include/uapi/linux/isdn/
9127 F:      net/bluetooth/cmtp/
9128
9129 ISDN/mISDN SUBSYSTEM
9130 M:      Karsten Keil <isdn@linux-pingi.de>
9131 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9132 L:      netdev@vger.kernel.org
9133 S:      Maintained
9134 W:      http://www.isdn4linux.de
9135 F:      drivers/isdn/Kconfig
9136 F:      drivers/isdn/Makefile
9137 F:      drivers/isdn/hardware/
9138 F:      drivers/isdn/mISDN/
9139
9140 IT87 HARDWARE MONITORING DRIVER
9141 M:      Jean Delvare <jdelvare@suse.com>
9142 L:      linux-hwmon@vger.kernel.org
9143 S:      Maintained
9144 F:      Documentation/hwmon/it87.rst
9145 F:      drivers/hwmon/it87.c
9146
9147 IT913X MEDIA DRIVER
9148 M:      Antti Palosaari <crope@iki.fi>
9149 L:      linux-media@vger.kernel.org
9150 S:      Maintained
9151 W:      https://linuxtv.org
9152 W:      http://palosaari.fi/linux/
9153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9154 T:      git git://linuxtv.org/anttip/media_tree.git
9155 F:      drivers/media/tuners/it913x*
9156
9157 IVTV VIDEO4LINUX DRIVER
9158 M:      Andy Walls <awalls@md.metrocast.net>
9159 L:      linux-media@vger.kernel.org
9160 S:      Maintained
9161 W:      https://linuxtv.org
9162 T:      git git://linuxtv.org/media_tree.git
9163 F:      Documentation/admin-guide/media/ivtv*
9164 F:      drivers/media/pci/ivtv/
9165 F:      include/uapi/linux/ivtv*
9166
9167 IX2505V MEDIA DRIVER
9168 M:      Malcolm Priestley <tvboxspy@gmail.com>
9169 L:      linux-media@vger.kernel.org
9170 S:      Maintained
9171 W:      https://linuxtv.org
9172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9173 F:      drivers/media/dvb-frontends/ix2505v*
9174
9175 JAILHOUSE HYPERVISOR INTERFACE
9176 M:      Jan Kiszka <jan.kiszka@siemens.com>
9177 L:      jailhouse-dev@googlegroups.com
9178 S:      Maintained
9179 F:      arch/x86/include/asm/jailhouse_para.h
9180 F:      arch/x86/kernel/jailhouse.c
9181
9182 JC42.4 TEMPERATURE SENSOR DRIVER
9183 M:      Guenter Roeck <linux@roeck-us.net>
9184 L:      linux-hwmon@vger.kernel.org
9185 S:      Maintained
9186 F:      Documentation/hwmon/jc42.rst
9187 F:      drivers/hwmon/jc42.c
9188
9189 JFS FILESYSTEM
9190 M:      Dave Kleikamp <shaggy@kernel.org>
9191 L:      jfs-discussion@lists.sourceforge.net
9192 S:      Maintained
9193 W:      http://jfs.sourceforge.net/
9194 T:      git git://github.com/kleikamp/linux-shaggy.git
9195 F:      Documentation/admin-guide/jfs.rst
9196 F:      fs/jfs/
9197
9198 JME NETWORK DRIVER
9199 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9200 L:      netdev@vger.kernel.org
9201 S:      Maintained
9202 F:      drivers/net/ethernet/jme.*
9203
9204 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9205 M:      David Woodhouse <dwmw2@infradead.org>
9206 M:      Richard Weinberger <richard@nod.at>
9207 L:      linux-mtd@lists.infradead.org
9208 S:      Odd Fixes
9209 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9210 T:      git git://git.infradead.org/ubifs-2.6.git
9211 F:      fs/jffs2/
9212 F:      include/uapi/linux/jffs2.h
9213
9214 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9215 M:      "Theodore Ts'o" <tytso@mit.edu>
9216 M:      Jan Kara <jack@suse.com>
9217 L:      linux-ext4@vger.kernel.org
9218 S:      Maintained
9219 F:      fs/jbd2/
9220 F:      include/linux/jbd2.h
9221
9222 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9223 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9224 L:      linux-media@vger.kernel.org
9225 S:      Maintained
9226 F:      drivers/media/platform/rcar_jpu.c
9227
9228 JSM Neo PCI based serial card
9229 L:      linux-serial@vger.kernel.org
9230 S:      Orphan
9231 F:      drivers/tty/serial/jsm/
9232
9233 K10TEMP HARDWARE MONITORING DRIVER
9234 M:      Clemens Ladisch <clemens@ladisch.de>
9235 L:      linux-hwmon@vger.kernel.org
9236 S:      Maintained
9237 F:      Documentation/hwmon/k10temp.rst
9238 F:      drivers/hwmon/k10temp.c
9239
9240 K8TEMP HARDWARE MONITORING DRIVER
9241 M:      Rudolf Marek <r.marek@assembler.cz>
9242 L:      linux-hwmon@vger.kernel.org
9243 S:      Maintained
9244 F:      Documentation/hwmon/k8temp.rst
9245 F:      drivers/hwmon/k8temp.c
9246
9247 KASAN
9248 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9249 R:      Alexander Potapenko <glider@google.com>
9250 R:      Dmitry Vyukov <dvyukov@google.com>
9251 L:      kasan-dev@googlegroups.com
9252 S:      Maintained
9253 F:      Documentation/dev-tools/kasan.rst
9254 F:      arch/*/include/asm/kasan.h
9255 F:      arch/*/mm/kasan_init*
9256 F:      include/linux/kasan*.h
9257 F:      lib/test_kasan.c
9258 F:      mm/kasan/
9259 F:      scripts/Makefile.kasan
9260
9261 KCONFIG
9262 M:      Masahiro Yamada <masahiroy@kernel.org>
9263 L:      linux-kbuild@vger.kernel.org
9264 S:      Maintained
9265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9266 F:      Documentation/kbuild/kconfig*
9267 F:      scripts/Kconfig.include
9268 F:      scripts/kconfig/
9269
9270 KDUMP
9271 M:      Dave Young <dyoung@redhat.com>
9272 M:      Baoquan He <bhe@redhat.com>
9273 R:      Vivek Goyal <vgoyal@redhat.com>
9274 L:      kexec@lists.infradead.org
9275 S:      Maintained
9276 W:      http://lse.sourceforge.net/kdump/
9277 F:      Documentation/admin-guide/kdump/
9278 F:      fs/proc/vmcore.c
9279 F:      include/linux/crash_core.h
9280 F:      include/linux/crash_dump.h
9281 F:      include/uapi/linux/vmcore.h
9282 F:      kernel/crash_*.c
9283
9284 KEENE FM RADIO TRANSMITTER DRIVER
9285 M:      Hans Verkuil <hverkuil@xs4all.nl>
9286 L:      linux-media@vger.kernel.org
9287 S:      Maintained
9288 W:      https://linuxtv.org
9289 T:      git git://linuxtv.org/media_tree.git
9290 F:      drivers/media/radio/radio-keene*
9291
9292 KERNEL AUTOMOUNTER
9293 M:      Ian Kent <raven@themaw.net>
9294 L:      autofs@vger.kernel.org
9295 S:      Maintained
9296 F:      fs/autofs/
9297
9298 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9299 M:      Masahiro Yamada <masahiroy@kernel.org>
9300 M:      Michal Marek <michal.lkml@markovi.net>
9301 L:      linux-kbuild@vger.kernel.org
9302 S:      Maintained
9303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9304 F:      Documentation/kbuild/
9305 F:      Makefile
9306 F:      scripts/*vmlinux*
9307 F:      scripts/Kbuild*
9308 F:      scripts/Makefile*
9309 F:      scripts/basic/
9310 F:      scripts/mk*
9311 F:      scripts/mod/
9312 F:      scripts/package/
9313
9314 KERNEL JANITORS
9315 L:      kernel-janitors@vger.kernel.org
9316 S:      Odd Fixes
9317 W:      http://kernelnewbies.org/KernelJanitors
9318
9319 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9320 M:      "J. Bruce Fields" <bfields@fieldses.org>
9321 M:      Chuck Lever <chuck.lever@oracle.com>
9322 L:      linux-nfs@vger.kernel.org
9323 S:      Supported
9324 W:      http://nfs.sourceforge.net/
9325 T:      git git://linux-nfs.org/~bfields/linux.git
9326 F:      fs/lockd/
9327 F:      fs/nfs_common/
9328 F:      fs/nfsd/
9329 F:      include/linux/lockd/
9330 F:      include/linux/sunrpc/
9331 F:      include/uapi/linux/nfsd/
9332 F:      include/uapi/linux/sunrpc/
9333 F:      net/sunrpc/
9334
9335 KERNEL SELFTEST FRAMEWORK
9336 M:      Shuah Khan <shuah@kernel.org>
9337 M:      Shuah Khan <skhan@linuxfoundation.org>
9338 L:      linux-kselftest@vger.kernel.org
9339 S:      Maintained
9340 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9342 F:      Documentation/dev-tools/kselftest*
9343 F:      tools/testing/selftests/
9344
9345 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9346 M:      Brendan Higgins <brendanhiggins@google.com>
9347 L:      linux-kselftest@vger.kernel.org
9348 L:      kunit-dev@googlegroups.com
9349 S:      Maintained
9350 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9351 F:      Documentation/dev-tools/kunit/
9352 F:      include/kunit/
9353 F:      lib/kunit/
9354 F:      tools/testing/kunit/
9355
9356 KERNEL USERMODE HELPER
9357 M:      Luis Chamberlain <mcgrof@kernel.org>
9358 L:      linux-kernel@vger.kernel.org
9359 S:      Maintained
9360 F:      include/linux/umh.h
9361 F:      kernel/umh.c
9362
9363 KERNEL VIRTUAL MACHINE (KVM)
9364 M:      Paolo Bonzini <pbonzini@redhat.com>
9365 L:      kvm@vger.kernel.org
9366 S:      Supported
9367 W:      http://www.linux-kvm.org
9368 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9369 F:      Documentation/virt/kvm/
9370 F:      include/asm-generic/kvm*
9371 F:      include/kvm/iodev.h
9372 F:      include/linux/kvm*
9373 F:      include/trace/events/kvm.h
9374 F:      include/uapi/asm-generic/kvm*
9375 F:      include/uapi/linux/kvm*
9376 F:      tools/kvm/
9377 F:      tools/testing/selftests/kvm/
9378 F:      virt/kvm/*
9379
9380 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9381 M:      Marc Zyngier <maz@kernel.org>
9382 R:      James Morse <james.morse@arm.com>
9383 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9384 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9386 L:      kvmarm@lists.cs.columbia.edu
9387 S:      Maintained
9388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9389 F:      arch/arm64/include/asm/kvm*
9390 F:      arch/arm64/include/uapi/asm/kvm*
9391 F:      arch/arm64/kvm/
9392 F:      include/kvm/arm_*
9393
9394 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9395 L:      linux-mips@vger.kernel.org
9396 L:      kvm@vger.kernel.org
9397 S:      Orphan
9398 F:      arch/mips/include/asm/kvm*
9399 F:      arch/mips/include/uapi/asm/kvm*
9400 F:      arch/mips/kvm/
9401
9402 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9403 M:      Paul Mackerras <paulus@ozlabs.org>
9404 L:      kvm-ppc@vger.kernel.org
9405 S:      Supported
9406 W:      http://www.linux-kvm.org/
9407 T:      git git://github.com/agraf/linux-2.6.git
9408 F:      arch/powerpc/include/asm/kvm*
9409 F:      arch/powerpc/include/uapi/asm/kvm*
9410 F:      arch/powerpc/kernel/kvm*
9411 F:      arch/powerpc/kvm/
9412
9413 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9414 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9415 M:      Janosch Frank <frankja@linux.ibm.com>
9416 R:      David Hildenbrand <david@redhat.com>
9417 R:      Cornelia Huck <cohuck@redhat.com>
9418 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
9419 L:      kvm@vger.kernel.org
9420 S:      Supported
9421 W:      http://www.ibm.com/developerworks/linux/linux390/
9422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9423 F:      Documentation/virt/kvm/s390*
9424 F:      arch/s390/include/asm/gmap.h
9425 F:      arch/s390/include/asm/kvm*
9426 F:      arch/s390/include/uapi/asm/kvm*
9427 F:      arch/s390/kvm/
9428 F:      arch/s390/mm/gmap.c
9429 F:      tools/testing/selftests/kvm/*/s390x/
9430 F:      tools/testing/selftests/kvm/s390x/
9431
9432 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9433 M:      Paolo Bonzini <pbonzini@redhat.com>
9434 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9435 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9436 R:      Wanpeng Li <wanpengli@tencent.com>
9437 R:      Jim Mattson <jmattson@google.com>
9438 R:      Joerg Roedel <joro@8bytes.org>
9439 L:      kvm@vger.kernel.org
9440 S:      Supported
9441 W:      http://www.linux-kvm.org
9442 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9443 F:      arch/x86/include/asm/kvm*
9444 F:      arch/x86/include/asm/pvclock-abi.h
9445 F:      arch/x86/include/asm/svm.h
9446 F:      arch/x86/include/asm/vmx*.h
9447 F:      arch/x86/include/uapi/asm/kvm*
9448 F:      arch/x86/include/uapi/asm/svm.h
9449 F:      arch/x86/include/uapi/asm/vmx.h
9450 F:      arch/x86/kernel/kvm.c
9451 F:      arch/x86/kernel/kvmclock.c
9452 F:      arch/x86/kvm/
9453 F:      arch/x86/kvm/*/
9454
9455 KERNFS
9456 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9457 M:      Tejun Heo <tj@kernel.org>
9458 S:      Supported
9459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9460 F:      fs/kernfs/
9461 F:      include/linux/kernfs.h
9462
9463 KEXEC
9464 M:      Eric Biederman <ebiederm@xmission.com>
9465 L:      kexec@lists.infradead.org
9466 S:      Maintained
9467 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9468 F:      include/linux/kexec.h
9469 F:      include/uapi/linux/kexec.h
9470 F:      kernel/kexec*
9471
9472 KEYS-ENCRYPTED
9473 M:      Mimi Zohar <zohar@linux.ibm.com>
9474 L:      linux-integrity@vger.kernel.org
9475 L:      keyrings@vger.kernel.org
9476 S:      Supported
9477 F:      Documentation/security/keys/trusted-encrypted.rst
9478 F:      include/keys/encrypted-type.h
9479 F:      security/keys/encrypted-keys/
9480
9481 KEYS-TRUSTED
9482 M:      James Bottomley <jejb@linux.ibm.com>
9483 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9484 M:      Mimi Zohar <zohar@linux.ibm.com>
9485 L:      linux-integrity@vger.kernel.org
9486 L:      keyrings@vger.kernel.org
9487 S:      Supported
9488 F:      Documentation/security/keys/trusted-encrypted.rst
9489 F:      include/keys/trusted-type.h
9490 F:      include/keys/trusted_tpm.h
9491 F:      security/keys/trusted-keys/
9492
9493 KEYS/KEYRINGS
9494 M:      David Howells <dhowells@redhat.com>
9495 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9496 L:      keyrings@vger.kernel.org
9497 S:      Maintained
9498 F:      Documentation/security/keys/core.rst
9499 F:      include/keys/
9500 F:      include/linux/key-type.h
9501 F:      include/linux/key.h
9502 F:      include/linux/keyctl.h
9503 F:      include/uapi/linux/keyctl.h
9504 F:      security/keys/
9505
9506 KFIFO
9507 M:      Stefani Seibold <stefani@seibold.net>
9508 S:      Maintained
9509 F:      include/linux/kfifo.h
9510 F:      lib/kfifo.c
9511 F:      samples/kfifo/
9512
9513 KGDB / KDB /debug_core
9514 M:      Jason Wessel <jason.wessel@windriver.com>
9515 M:      Daniel Thompson <daniel.thompson@linaro.org>
9516 R:      Douglas Anderson <dianders@chromium.org>
9517 L:      kgdb-bugreport@lists.sourceforge.net
9518 S:      Maintained
9519 W:      http://kgdb.wiki.kernel.org/
9520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9521 F:      Documentation/dev-tools/kgdb.rst
9522 F:      drivers/misc/kgdbts.c
9523 F:      drivers/tty/serial/kgdboc.c
9524 F:      include/linux/kdb.h
9525 F:      include/linux/kgdb.h
9526 F:      kernel/debug/
9527
9528 KMEMLEAK
9529 M:      Catalin Marinas <catalin.marinas@arm.com>
9530 S:      Maintained
9531 F:      Documentation/dev-tools/kmemleak.rst
9532 F:      include/linux/kmemleak.h
9533 F:      mm/kmemleak-test.c
9534 F:      mm/kmemleak.c
9535
9536 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9537 M:      Luis Chamberlain <mcgrof@kernel.org>
9538 L:      linux-kernel@vger.kernel.org
9539 S:      Maintained
9540 F:      include/linux/kmod.h
9541 F:      kernel/kmod.c
9542 F:      lib/test_kmod.c
9543 F:      tools/testing/selftests/kmod/
9544
9545 KPROBES
9546 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9547 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9548 M:      "David S. Miller" <davem@davemloft.net>
9549 M:      Masami Hiramatsu <mhiramat@kernel.org>
9550 S:      Maintained
9551 F:      Documentation/kprobes.txt
9552 F:      include/asm-generic/kprobes.h
9553 F:      include/linux/kprobes.h
9554 F:      kernel/kprobes.c
9555
9556 KS0108 LCD CONTROLLER DRIVER
9557 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9558 S:      Maintained
9559 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9560 F:      drivers/auxdisplay/ks0108.c
9561 F:      include/linux/ks0108.h
9562
9563 L3MDEV
9564 M:      David Ahern <dsahern@kernel.org>
9565 L:      netdev@vger.kernel.org
9566 S:      Maintained
9567 F:      include/net/l3mdev.h
9568 F:      net/l3mdev
9569
9570 L7 BPF FRAMEWORK
9571 M:      John Fastabend <john.fastabend@gmail.com>
9572 M:      Daniel Borkmann <daniel@iogearbox.net>
9573 M:      Jakub Sitnicki <jakub@cloudflare.com>
9574 M:      Lorenz Bauer <lmb@cloudflare.com>
9575 L:      netdev@vger.kernel.org
9576 L:      bpf@vger.kernel.org
9577 S:      Maintained
9578 F:      include/linux/skmsg.h
9579 F:      net/core/skmsg.c
9580 F:      net/core/sock_map.c
9581 F:      net/ipv4/tcp_bpf.c
9582 F:      net/ipv4/udp_bpf.c
9583
9584 LANTIQ / INTEL Ethernet drivers
9585 M:      Hauke Mehrtens <hauke@hauke-m.de>
9586 L:      netdev@vger.kernel.org
9587 S:      Maintained
9588 F:      drivers/net/dsa/lantiq_gswip.c
9589 F:      drivers/net/dsa/lantiq_pce.h
9590 F:      drivers/net/ethernet/lantiq_xrx200.c
9591 F:      net/dsa/tag_gswip.c
9592
9593 LANTIQ MIPS ARCHITECTURE
9594 M:      John Crispin <john@phrozen.org>
9595 L:      linux-mips@vger.kernel.org
9596 S:      Maintained
9597 F:      arch/mips/lantiq
9598 F:      drivers/soc/lantiq
9599
9600 LAPB module
9601 L:      linux-x25@vger.kernel.org
9602 S:      Orphan
9603 F:      Documentation/networking/lapb-module.rst
9604 F:      include/*/lapb.h
9605 F:      net/lapb/
9606
9607 LASI 53c700 driver for PARISC
9608 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9609 L:      linux-scsi@vger.kernel.org
9610 S:      Maintained
9611 F:      Documentation/scsi/53c700.rst
9612 F:      drivers/scsi/53c700*
9613
9614 LEAKING_ADDRESSES
9615 M:      Tobin C. Harding <me@tobin.cc>
9616 M:      Tycho Andersen <tycho@tycho.ws>
9617 L:      kernel-hardening@lists.openwall.com
9618 S:      Maintained
9619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9620 F:      scripts/leaking_addresses.pl
9621
9622 LED SUBSYSTEM
9623 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9624 M:      Pavel Machek <pavel@ucw.cz>
9625 R:      Dan Murphy <dmurphy@ti.com>
9626 L:      linux-leds@vger.kernel.org
9627 S:      Maintained
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9630 F:      Documentation/devicetree/bindings/leds/
9631 F:      drivers/leds/
9632 F:      include/linux/leds.h
9633
9634 LEGACY EEPROM DRIVER
9635 M:      Jean Delvare <jdelvare@suse.com>
9636 S:      Maintained
9637 F:      Documentation/misc-devices/eeprom.rst
9638 F:      drivers/misc/eeprom/eeprom.c
9639
9640 LEGO MINDSTORMS EV3
9641 R:      David Lechner <david@lechnology.com>
9642 S:      Maintained
9643 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9644 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9645 F:      drivers/power/supply/lego_ev3_battery.c
9646
9647 LEGO USB Tower driver
9648 M:      Juergen Stuber <starblue@users.sourceforge.net>
9649 L:      legousb-devel@lists.sourceforge.net
9650 S:      Maintained
9651 W:      http://legousb.sourceforge.net/
9652 F:      drivers/usb/misc/legousbtower.c
9653
9654 LG LAPTOP EXTRAS
9655 M:      Matan Ziv-Av <matan@svgalib.org>
9656 L:      platform-driver-x86@vger.kernel.org
9657 S:      Maintained
9658 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9659 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9660 F:      drivers/platform/x86/lg-laptop.c
9661
9662 LG2160 MEDIA DRIVER
9663 M:      Michael Krufky <mkrufky@linuxtv.org>
9664 L:      linux-media@vger.kernel.org
9665 S:      Maintained
9666 W:      https://linuxtv.org
9667 W:      http://github.com/mkrufky
9668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9669 T:      git git://linuxtv.org/mkrufky/tuners.git
9670 F:      drivers/media/dvb-frontends/lg2160.*
9671
9672 LGDT3305 MEDIA DRIVER
9673 M:      Michael Krufky <mkrufky@linuxtv.org>
9674 L:      linux-media@vger.kernel.org
9675 S:      Maintained
9676 W:      https://linuxtv.org
9677 W:      http://github.com/mkrufky
9678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9679 T:      git git://linuxtv.org/mkrufky/tuners.git
9680 F:      drivers/media/dvb-frontends/lgdt3305.*
9681
9682 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9683 M:      Viresh Kumar <vireshk@kernel.org>
9684 L:      linux-ide@vger.kernel.org
9685 S:      Maintained
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9687 F:      drivers/ata/pata_arasan_cf.c
9688 F:      include/linux/pata_arasan_cf_data.h
9689
9690 LIBATA PATA DRIVERS
9691 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9692 M:      Jens Axboe <axboe@kernel.dk>
9693 L:      linux-ide@vger.kernel.org
9694 S:      Maintained
9695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9696 F:      drivers/ata/ata_generic.c
9697 F:      drivers/ata/pata_*.c
9698
9699 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9700 M:      Linus Walleij <linus.walleij@linaro.org>
9701 L:      linux-ide@vger.kernel.org
9702 S:      Maintained
9703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9704 F:      drivers/ata/pata_ftide010.c
9705 F:      drivers/ata/sata_gemini.c
9706 F:      drivers/ata/sata_gemini.h
9707
9708 LIBATA SATA AHCI PLATFORM devices support
9709 M:      Hans de Goede <hdegoede@redhat.com>
9710 M:      Jens Axboe <axboe@kernel.dk>
9711 L:      linux-ide@vger.kernel.org
9712 S:      Maintained
9713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9714 F:      drivers/ata/ahci_platform.c
9715 F:      drivers/ata/libahci_platform.c
9716 F:      include/linux/ahci_platform.h
9717
9718 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9719 M:      Mikael Pettersson <mikpelinux@gmail.com>
9720 L:      linux-ide@vger.kernel.org
9721 S:      Maintained
9722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9723 F:      drivers/ata/sata_promise.*
9724
9725 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9726 M:      Jens Axboe <axboe@kernel.dk>
9727 L:      linux-ide@vger.kernel.org
9728 S:      Maintained
9729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9730 F:      Documentation/devicetree/bindings/ata/
9731 F:      drivers/ata/
9732 F:      include/linux/ata.h
9733 F:      include/linux/libata.h
9734
9735 LIBLOCKDEP
9736 M:      Sasha Levin <alexander.levin@microsoft.com>
9737 S:      Maintained
9738 F:      tools/lib/lockdep/
9739
9740 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9741 M:      Dan Williams <dan.j.williams@intel.com>
9742 M:      Vishal Verma <vishal.l.verma@intel.com>
9743 M:      Dave Jiang <dave.jiang@intel.com>
9744 L:      linux-nvdimm@lists.01.org
9745 S:      Supported
9746 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9747 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9748 F:      drivers/nvdimm/blk.c
9749 F:      drivers/nvdimm/region_devs.c
9750
9751 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9752 M:      Vishal Verma <vishal.l.verma@intel.com>
9753 M:      Dan Williams <dan.j.williams@intel.com>
9754 M:      Dave Jiang <dave.jiang@intel.com>
9755 L:      linux-nvdimm@lists.01.org
9756 S:      Supported
9757 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9758 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9759 F:      drivers/nvdimm/btt*
9760
9761 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9762 M:      Dan Williams <dan.j.williams@intel.com>
9763 M:      Vishal Verma <vishal.l.verma@intel.com>
9764 M:      Dave Jiang <dave.jiang@intel.com>
9765 L:      linux-nvdimm@lists.01.org
9766 S:      Supported
9767 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9768 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9769 F:      drivers/nvdimm/pmem*
9770
9771 LIBNVDIMM: DEVICETREE BINDINGS
9772 M:      Oliver O'Halloran <oohall@gmail.com>
9773 L:      linux-nvdimm@lists.01.org
9774 S:      Supported
9775 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9776 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9777 F:      drivers/nvdimm/of_pmem.c
9778
9779 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9780 M:      Dan Williams <dan.j.williams@intel.com>
9781 M:      Vishal Verma <vishal.l.verma@intel.com>
9782 M:      Dave Jiang <dave.jiang@intel.com>
9783 M:      Ira Weiny <ira.weiny@intel.com>
9784 L:      linux-nvdimm@lists.01.org
9785 S:      Supported
9786 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9787 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9789 F:      drivers/acpi/nfit/*
9790 F:      drivers/nvdimm/*
9791 F:      include/linux/libnvdimm.h
9792 F:      include/linux/nd.h
9793 F:      include/uapi/linux/ndctl.h
9794 F:      tools/testing/nvdimm/
9795
9796 LICENSES and SPDX stuff
9797 M:      Thomas Gleixner <tglx@linutronix.de>
9798 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9799 L:      linux-spdx@vger.kernel.org
9800 S:      Maintained
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9802 F:      COPYING
9803 F:      Documentation/process/license-rules.rst
9804 F:      LICENSES/
9805 F:      scripts/spdxcheck-test.sh
9806 F:      scripts/spdxcheck.py
9807
9808 LIGHTNVM PLATFORM SUPPORT
9809 M:      Matias Bjorling <mb@lightnvm.io>
9810 L:      linux-block@vger.kernel.org
9811 S:      Maintained
9812 W:      http://github/OpenChannelSSD
9813 F:      drivers/lightnvm/
9814 F:      include/linux/lightnvm.h
9815 F:      include/uapi/linux/lightnvm.h
9816
9817 LINEAR RANGES HELPERS
9818 M:      Mark Brown <broonie@kernel.org>
9819 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
9820 F:      lib/linear_ranges.c
9821 F:      lib/test_linear_ranges.c
9822 F:      include/linux/linear_range.h
9823
9824 LINUX FOR POWER MACINTOSH
9825 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9826 L:      linuxppc-dev@lists.ozlabs.org
9827 S:      Odd Fixes
9828 F:      arch/powerpc/platforms/powermac/
9829 F:      drivers/macintosh/
9830
9831 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9832 M:      Michael Ellerman <mpe@ellerman.id.au>
9833 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9834 R:      Paul Mackerras <paulus@samba.org>
9835 L:      linuxppc-dev@lists.ozlabs.org
9836 S:      Supported
9837 W:      https://github.com/linuxppc/wiki/wiki
9838 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9840 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9841 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9842 F:      Documentation/devicetree/bindings/powerpc/
9843 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9844 F:      Documentation/powerpc/
9845 F:      arch/powerpc/
9846 F:      drivers/*/*/*pasemi*
9847 F:      drivers/*/*pasemi*
9848 F:      drivers/char/tpm/tpm_ibmvtpm*
9849 F:      drivers/crypto/nx/
9850 F:      drivers/crypto/vmx/
9851 F:      drivers/i2c/busses/i2c-opal.c
9852 F:      drivers/net/ethernet/ibm/ibmveth.*
9853 F:      drivers/net/ethernet/ibm/ibmvnic.*
9854 F:      drivers/pci/hotplug/pnv_php.c
9855 F:      drivers/pci/hotplug/rpa*
9856 F:      drivers/rtc/rtc-opal.c
9857 F:      drivers/scsi/ibmvscsi/
9858 F:      drivers/tty/hvc/hvc_opal.c
9859 F:      drivers/watchdog/wdrtas.c
9860 F:      tools/testing/selftests/powerpc
9861 N:      /pmac
9862 N:      powermac
9863 N:      powernv
9864 N:      [^a-z0-9]ps3
9865 N:      pseries
9866
9867 LINUX FOR POWERPC EMBEDDED MPC5XXX
9868 M:      Anatolij Gustschin <agust@denx.de>
9869 L:      linuxppc-dev@lists.ozlabs.org
9870 S:      Odd Fixes
9871 F:      arch/powerpc/platforms/512x/
9872 F:      arch/powerpc/platforms/52xx/
9873
9874 LINUX FOR POWERPC EMBEDDED PPC4XX
9875 L:      linuxppc-dev@lists.ozlabs.org
9876 S:      Orphan
9877 F:      arch/powerpc/platforms/40x/
9878 F:      arch/powerpc/platforms/44x/
9879
9880 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9881 M:      Scott Wood <oss@buserror.net>
9882 L:      linuxppc-dev@lists.ozlabs.org
9883 S:      Odd fixes
9884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9885 F:      Documentation/devicetree/bindings/powerpc/fsl/
9886 F:      arch/powerpc/platforms/83xx/
9887 F:      arch/powerpc/platforms/85xx/
9888
9889 LINUX FOR POWERPC EMBEDDED PPC8XX
9890 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
9891 L:      linuxppc-dev@lists.ozlabs.org
9892 S:      Maintained
9893 F:      arch/powerpc/platforms/8xx/
9894
9895 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9896 M:      Kees Cook <keescook@chromium.org>
9897 S:      Maintained
9898 F:      drivers/misc/lkdtm/*
9899 F:      tools/testing/selftests/lkdtm/*
9900
9901 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9902 M:      Alan Stern <stern@rowland.harvard.edu>
9903 M:      Andrea Parri <parri.andrea@gmail.com>
9904 M:      Will Deacon <will@kernel.org>
9905 M:      Peter Zijlstra <peterz@infradead.org>
9906 M:      Boqun Feng <boqun.feng@gmail.com>
9907 M:      Nicholas Piggin <npiggin@gmail.com>
9908 M:      David Howells <dhowells@redhat.com>
9909 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9910 M:      Luc Maranget <luc.maranget@inria.fr>
9911 M:      "Paul E. McKenney" <paulmck@kernel.org>
9912 R:      Akira Yokosawa <akiyks@gmail.com>
9913 R:      Daniel Lustig <dlustig@nvidia.com>
9914 L:      linux-kernel@vger.kernel.org
9915 L:      linux-arch@vger.kernel.org
9916 S:      Supported
9917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9918 F:      Documentation/atomic_bitops.txt
9919 F:      Documentation/atomic_t.txt
9920 F:      Documentation/core-api/atomic_ops.rst
9921 F:      Documentation/core-api/refcount-vs-atomic.rst
9922 F:      Documentation/memory-barriers.txt
9923 F:      tools/memory-model/
9924
9925 LIS3LV02D ACCELEROMETER DRIVER
9926 M:      Eric Piel <eric.piel@tremplin-utc.net>
9927 S:      Maintained
9928 F:      Documentation/misc-devices/lis3lv02d.rst
9929 F:      drivers/misc/lis3lv02d/
9930 F:      drivers/platform/x86/hp_accel.c
9931
9932 LIST KUNIT TEST
9933 M:      David Gow <davidgow@google.com>
9934 L:      linux-kselftest@vger.kernel.org
9935 L:      kunit-dev@googlegroups.com
9936 S:      Maintained
9937 F:      lib/list-test.c
9938
9939 LIVE PATCHING
9940 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9941 M:      Jiri Kosina <jikos@kernel.org>
9942 M:      Miroslav Benes <mbenes@suse.cz>
9943 M:      Petr Mladek <pmladek@suse.com>
9944 R:      Joe Lawrence <joe.lawrence@redhat.com>
9945 L:      live-patching@vger.kernel.org
9946 S:      Maintained
9947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9948 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9949 F:      Documentation/livepatch/
9950 F:      arch/powerpc/include/asm/livepatch.h
9951 F:      arch/s390/include/asm/livepatch.h
9952 F:      arch/x86/include/asm/livepatch.h
9953 F:      include/linux/livepatch.h
9954 F:      kernel/livepatch/
9955 F:      lib/livepatch/
9956 F:      samples/livepatch/
9957 F:      tools/testing/selftests/livepatch/
9958
9959 LLC (802.2)
9960 L:      netdev@vger.kernel.org
9961 S:      Odd fixes
9962 F:      include/linux/llc.h
9963 F:      include/net/llc*
9964 F:      include/uapi/linux/llc.h
9965 F:      net/llc/
9966
9967 LM73 HARDWARE MONITOR DRIVER
9968 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9969 L:      linux-hwmon@vger.kernel.org
9970 S:      Maintained
9971 F:      drivers/hwmon/lm73.c
9972
9973 LM78 HARDWARE MONITOR DRIVER
9974 M:      Jean Delvare <jdelvare@suse.com>
9975 L:      linux-hwmon@vger.kernel.org
9976 S:      Maintained
9977 F:      Documentation/hwmon/lm78.rst
9978 F:      drivers/hwmon/lm78.c
9979
9980 LM83 HARDWARE MONITOR DRIVER
9981 M:      Jean Delvare <jdelvare@suse.com>
9982 L:      linux-hwmon@vger.kernel.org
9983 S:      Maintained
9984 F:      Documentation/hwmon/lm83.rst
9985 F:      drivers/hwmon/lm83.c
9986
9987 LM90 HARDWARE MONITOR DRIVER
9988 M:      Jean Delvare <jdelvare@suse.com>
9989 L:      linux-hwmon@vger.kernel.org
9990 S:      Maintained
9991 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9992 F:      Documentation/hwmon/lm90.rst
9993 F:      drivers/hwmon/lm90.c
9994 F:      include/dt-bindings/thermal/lm90.h
9995
9996 LM95234 HARDWARE MONITOR DRIVER
9997 M:      Guenter Roeck <linux@roeck-us.net>
9998 L:      linux-hwmon@vger.kernel.org
9999 S:      Maintained
10000 F:      Documentation/hwmon/lm95234.rst
10001 F:      drivers/hwmon/lm95234.c
10002
10003 LME2510 MEDIA DRIVER
10004 M:      Malcolm Priestley <tvboxspy@gmail.com>
10005 L:      linux-media@vger.kernel.org
10006 S:      Maintained
10007 W:      https://linuxtv.org
10008 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10009 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10010
10011 LOADPIN SECURITY MODULE
10012 M:      Kees Cook <keescook@chromium.org>
10013 S:      Supported
10014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10015 F:      Documentation/admin-guide/LSM/LoadPin.rst
10016 F:      security/loadpin/
10017
10018 LOCKING PRIMITIVES
10019 M:      Peter Zijlstra <peterz@infradead.org>
10020 M:      Ingo Molnar <mingo@redhat.com>
10021 M:      Will Deacon <will@kernel.org>
10022 L:      linux-kernel@vger.kernel.org
10023 S:      Maintained
10024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10025 F:      Documentation/locking/
10026 F:      arch/*/include/asm/spinlock*.h
10027 F:      include/linux/lockdep.h
10028 F:      include/linux/mutex*.h
10029 F:      include/linux/rwlock*.h
10030 F:      include/linux/rwsem*.h
10031 F:      include/linux/seqlock.h
10032 F:      include/linux/spinlock*.h
10033 F:      kernel/locking/
10034 F:      lib/locking*.[ch]
10035 X:      kernel/locking/locktorture.c
10036
10037 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10038 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10039 L:      linux-ntfs-dev@lists.sourceforge.net
10040 S:      Maintained
10041 W:      http://www.linux-ntfs.org/content/view/19/37/
10042 F:      Documentation/admin-guide/ldm.rst
10043 F:      block/partitions/ldm.*
10044
10045 LOGITECH HID GAMING KEYBOARDS
10046 M:      Hans de Goede <hdegoede@redhat.com>
10047 L:      linux-input@vger.kernel.org
10048 S:      Maintained
10049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10050 F:      drivers/hid/hid-lg-g15.c
10051
10052 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10053 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10054 M:      Chaitra P B <chaitra.basappa@broadcom.com>
10055 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10056 L:      MPT-FusionLinux.pdl@broadcom.com
10057 L:      linux-scsi@vger.kernel.org
10058 S:      Supported
10059 W:      http://www.avagotech.com/support/
10060 F:      drivers/message/fusion/
10061 F:      drivers/scsi/mpt3sas/
10062
10063 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10064 M:      Matthew Wilcox <willy@infradead.org>
10065 L:      linux-scsi@vger.kernel.org
10066 S:      Maintained
10067 F:      drivers/scsi/sym53c8xx_2/
10068
10069 LTC1660 DAC DRIVER
10070 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10071 L:      linux-iio@vger.kernel.org
10072 S:      Maintained
10073 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
10074 F:      drivers/iio/dac/ltc1660.c
10075
10076 LTC2947 HARDWARE MONITOR DRIVER
10077 M:      Nuno Sá <nuno.sa@analog.com>
10078 L:      linux-hwmon@vger.kernel.org
10079 S:      Supported
10080 W:      http://ez.analog.com/community/linux-device-drivers
10081 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
10082 F:      drivers/hwmon/ltc2947-core.c
10083 F:      drivers/hwmon/ltc2947-i2c.c
10084 F:      drivers/hwmon/ltc2947-spi.c
10085 F:      drivers/hwmon/ltc2947.h
10086
10087 LTC2983 IIO TEMPERATURE DRIVER
10088 M:      Nuno Sá <nuno.sa@analog.com>
10089 L:      linux-iio@vger.kernel.org
10090 S:      Supported
10091 W:      http://ez.analog.com/community/linux-device-drivers
10092 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
10093 F:      drivers/iio/temperature/ltc2983.c
10094
10095 LTC4261 HARDWARE MONITOR DRIVER
10096 M:      Guenter Roeck <linux@roeck-us.net>
10097 L:      linux-hwmon@vger.kernel.org
10098 S:      Maintained
10099 F:      Documentation/hwmon/ltc4261.rst
10100 F:      drivers/hwmon/ltc4261.c
10101
10102 LTC4306 I2C MULTIPLEXER DRIVER
10103 M:      Michael Hennerich <michael.hennerich@analog.com>
10104 L:      linux-i2c@vger.kernel.org
10105 S:      Supported
10106 W:      http://ez.analog.com/community/linux-device-drivers
10107 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
10108 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
10109
10110 LTP (Linux Test Project)
10111 M:      Mike Frysinger <vapier@gentoo.org>
10112 M:      Cyril Hrubis <chrubis@suse.cz>
10113 M:      Wanlong Gao <wanlong.gao@gmail.com>
10114 M:      Jan Stancek <jstancek@redhat.com>
10115 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
10116 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
10117 L:      ltp@lists.linux.it (subscribers-only)
10118 S:      Maintained
10119 W:      http://linux-test-project.github.io/
10120 T:      git git://github.com/linux-test-project/ltp.git
10121
10122 M68K ARCHITECTURE
10123 M:      Geert Uytterhoeven <geert@linux-m68k.org>
10124 L:      linux-m68k@lists.linux-m68k.org
10125 S:      Maintained
10126 W:      http://www.linux-m68k.org/
10127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
10128 F:      arch/m68k/
10129 F:      drivers/zorro/
10130
10131 M68K ON APPLE MACINTOSH
10132 M:      Joshua Thompson <funaho@jurai.org>
10133 L:      linux-m68k@lists.linux-m68k.org
10134 S:      Maintained
10135 W:      http://www.mac.linux-m68k.org/
10136 F:      arch/m68k/mac/
10137
10138 M68K ON HP9000/300
10139 M:      Philip Blundell <philb@gnu.org>
10140 S:      Maintained
10141 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10142 F:      arch/m68k/hp300/
10143
10144 M88DS3103 MEDIA DRIVER
10145 M:      Antti Palosaari <crope@iki.fi>
10146 L:      linux-media@vger.kernel.org
10147 S:      Maintained
10148 W:      https://linuxtv.org
10149 W:      http://palosaari.fi/linux/
10150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10151 T:      git git://linuxtv.org/anttip/media_tree.git
10152 F:      drivers/media/dvb-frontends/m88ds3103*
10153
10154 M88RS2000 MEDIA DRIVER
10155 M:      Malcolm Priestley <tvboxspy@gmail.com>
10156 L:      linux-media@vger.kernel.org
10157 S:      Maintained
10158 W:      https://linuxtv.org
10159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10160 F:      drivers/media/dvb-frontends/m88rs2000*
10161
10162 MA901 MASTERKIT USB FM RADIO DRIVER
10163 M:      Alexey Klimov <klimov.linux@gmail.com>
10164 L:      linux-media@vger.kernel.org
10165 S:      Maintained
10166 T:      git git://linuxtv.org/media_tree.git
10167 F:      drivers/media/radio/radio-ma901.c
10168
10169 MAC80211
10170 M:      Johannes Berg <johannes@sipsolutions.net>
10171 L:      linux-wireless@vger.kernel.org
10172 S:      Maintained
10173 W:      https://wireless.wiki.kernel.org/
10174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10176 F:      Documentation/networking/mac80211-injection.rst
10177 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10178 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10179 F:      include/net/mac80211.h
10180 F:      net/mac80211/
10181
10182 MAILBOX API
10183 M:      Jassi Brar <jassisinghbrar@gmail.com>
10184 L:      linux-kernel@vger.kernel.org
10185 S:      Maintained
10186 F:      drivers/mailbox/
10187 F:      include/linux/mailbox_client.h
10188 F:      include/linux/mailbox_controller.h
10189
10190 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10191 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10192 L:      linux-man@vger.kernel.org
10193 S:      Maintained
10194 W:      http://www.kernel.org/doc/man-pages
10195
10196 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10197 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10198 L:      linux-mips@vger.kernel.org
10199 S:      Maintained
10200 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10201
10202 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10203 M:      Andrew Lunn <andrew@lunn.ch>
10204 M:      Vivien Didelot <vivien.didelot@gmail.com>
10205 L:      netdev@vger.kernel.org
10206 S:      Maintained
10207 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10208 F:      Documentation/networking/devlink/mv88e6xxx.rst
10209 F:      drivers/net/dsa/mv88e6xxx/
10210 F:      include/linux/platform_data/mv88e6xxx.h
10211
10212 MARVELL ARMADA 3700 PHY DRIVERS
10213 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10214 S:      Maintained
10215 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10216 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10217 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10218 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10219
10220 MARVELL ARMADA DRM SUPPORT
10221 M:      Russell King <linux@armlinux.org.uk>
10222 S:      Maintained
10223 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10224 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10225 F:      Documentation/devicetree/bindings/display/armada/
10226 F:      drivers/gpu/drm/armada/
10227 F:      include/uapi/drm/armada_drm.h
10228
10229 MARVELL CRYPTO DRIVER
10230 M:      Boris Brezillon <bbrezillon@kernel.org>
10231 M:      Arnaud Ebalard <arno@natisbad.org>
10232 M:      Srujana Challa <schalla@marvell.com>
10233 L:      linux-crypto@vger.kernel.org
10234 S:      Maintained
10235 F:      drivers/crypto/marvell/
10236
10237 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10238 M:      Mirko Lindner <mlindner@marvell.com>
10239 M:      Stephen Hemminger <stephen@networkplumber.org>
10240 L:      netdev@vger.kernel.org
10241 S:      Maintained
10242 F:      drivers/net/ethernet/marvell/sk*
10243
10244 MARVELL LIBERTAS WIRELESS DRIVER
10245 L:      libertas-dev@lists.infradead.org
10246 S:      Orphan
10247 F:      drivers/net/wireless/marvell/libertas/
10248
10249 MARVELL MACCHIATOBIN SUPPORT
10250 M:      Russell King <linux@armlinux.org.uk>
10251 L:      linux-arm-kernel@lists.infradead.org
10252 S:      Maintained
10253 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10254
10255 MARVELL MV643XX ETHERNET DRIVER
10256 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10257 L:      netdev@vger.kernel.org
10258 S:      Maintained
10259 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10260 F:      include/linux/mv643xx.h
10261
10262 MARVELL MV88X3310 PHY DRIVER
10263 M:      Russell King <linux@armlinux.org.uk>
10264 L:      netdev@vger.kernel.org
10265 S:      Maintained
10266 F:      drivers/net/phy/marvell10g.c
10267
10268 MARVELL MVEBU THERMAL DRIVER
10269 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10270 S:      Maintained
10271 F:      drivers/thermal/armada_thermal.c
10272
10273 MARVELL MVNETA ETHERNET DRIVER
10274 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10275 L:      netdev@vger.kernel.org
10276 S:      Maintained
10277 F:      drivers/net/ethernet/marvell/mvneta.*
10278
10279 MARVELL MWIFIEX WIRELESS DRIVER
10280 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10281 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10282 M:      Xinming Hu <huxinming820@gmail.com>
10283 L:      linux-wireless@vger.kernel.org
10284 S:      Maintained
10285 F:      drivers/net/wireless/marvell/mwifiex/
10286
10287 MARVELL MWL8K WIRELESS DRIVER
10288 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10289 L:      linux-wireless@vger.kernel.org
10290 S:      Odd Fixes
10291 F:      drivers/net/wireless/marvell/mwl8k.c
10292
10293 MARVELL NAND CONTROLLER DRIVER
10294 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10295 L:      linux-mtd@lists.infradead.org
10296 S:      Maintained
10297 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10298 F:      drivers/mtd/nand/raw/marvell_nand.c
10299
10300 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10301 M:      Sunil Goutham <sgoutham@marvell.com>
10302 M:      Geetha sowjanya <gakula@marvell.com>
10303 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10304 M:      hariprasad <hkelam@marvell.com>
10305 L:      netdev@vger.kernel.org
10306 S:      Supported
10307 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10308
10309 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10310 M:      Sunil Goutham <sgoutham@marvell.com>
10311 M:      Linu Cherian <lcherian@marvell.com>
10312 M:      Geetha sowjanya <gakula@marvell.com>
10313 M:      Jerin Jacob <jerinj@marvell.com>
10314 L:      netdev@vger.kernel.org
10315 S:      Supported
10316 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10317 F:      drivers/net/ethernet/marvell/octeontx2/af/
10318
10319 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10320 M:      Nicolas Pitre <nico@fluxnic.net>
10321 S:      Odd Fixes
10322 F:      drivers/mmc/host/mvsdio.*
10323
10324 MARVELL USB MDIO CONTROLLER DRIVER
10325 M:      Tobias Waldekranz <tobias@waldekranz.com>
10326 L:      netdev@vger.kernel.org
10327 S:      Maintained
10328 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10329 F:      drivers/net/phy/mdio-mvusb.c
10330
10331 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10332 M:      Hu Ziji <huziji@marvell.com>
10333 L:      linux-mmc@vger.kernel.org
10334 S:      Supported
10335 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10336 F:      drivers/mmc/host/sdhci-xenon*
10337
10338 MATROX FRAMEBUFFER DRIVER
10339 L:      linux-fbdev@vger.kernel.org
10340 S:      Orphan
10341 F:      drivers/video/fbdev/matrox/matroxfb_*
10342 F:      include/uapi/linux/matroxfb.h
10343
10344 MAX16065 HARDWARE MONITOR DRIVER
10345 M:      Guenter Roeck <linux@roeck-us.net>
10346 L:      linux-hwmon@vger.kernel.org
10347 S:      Maintained
10348 F:      Documentation/hwmon/max16065.rst
10349 F:      drivers/hwmon/max16065.c
10350
10351 MAX2175 SDR TUNER DRIVER
10352 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10353 L:      linux-media@vger.kernel.org
10354 S:      Maintained
10355 T:      git git://linuxtv.org/media_tree.git
10356 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10357 F:      Documentation/userspace-api/media/drivers/max2175.rst
10358 F:      drivers/media/i2c/max2175*
10359 F:      include/uapi/linux/max2175.h
10360
10361 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10362 L:      linux-hwmon@vger.kernel.org
10363 S:      Orphan
10364 F:      Documentation/hwmon/max6650.rst
10365 F:      drivers/hwmon/max6650.c
10366
10367 MAX6697 HARDWARE MONITOR DRIVER
10368 M:      Guenter Roeck <linux@roeck-us.net>
10369 L:      linux-hwmon@vger.kernel.org
10370 S:      Maintained
10371 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10372 F:      Documentation/hwmon/max6697.rst
10373 F:      drivers/hwmon/max6697.c
10374 F:      include/linux/platform_data/max6697.h
10375
10376 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10377 M:      Peter Rosin <peda@axentia.se>
10378 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10379 S:      Maintained
10380 F:      Documentation/devicetree/bindings/sound/max9860.txt
10381 F:      sound/soc/codecs/max9860.*
10382
10383 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10384 M:      Andreas Klinger <ak@it-klinger.de>
10385 L:      linux-iio@vger.kernel.org
10386 S:      Maintained
10387 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10388 F:      drivers/iio/proximity/mb1232.c
10389
10390 MAXIM MAX77650 PMIC MFD DRIVER
10391 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10392 L:      linux-kernel@vger.kernel.org
10393 S:      Maintained
10394 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10395 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10396 F:      drivers/gpio/gpio-max77650.c
10397 F:      drivers/input/misc/max77650-onkey.c
10398 F:      drivers/leds/leds-max77650.c
10399 F:      drivers/mfd/max77650.c
10400 F:      drivers/power/supply/max77650-charger.c
10401 F:      drivers/regulator/max77650-regulator.c
10402 F:      include/linux/mfd/max77650.h
10403
10404 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10405 M:      Javier Martinez Canillas <javier@dowhile0.org>
10406 L:      linux-kernel@vger.kernel.org
10407 S:      Supported
10408 F:      Documentation/devicetree/bindings/*/*max77802.txt
10409 F:      drivers/regulator/max77802-regulator.c
10410 F:      include/dt-bindings/*/*max77802.h
10411
10412 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10413 M:      Krzysztof Kozlowski <krzk@kernel.org>
10414 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10415 L:      linux-pm@vger.kernel.org
10416 S:      Supported
10417 F:      drivers/power/supply/max14577_charger.c
10418 F:      drivers/power/supply/max77693_charger.c
10419
10420 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10421 M:      Chanwoo Choi <cw00.choi@samsung.com>
10422 M:      Krzysztof Kozlowski <krzk@kernel.org>
10423 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10424 L:      linux-kernel@vger.kernel.org
10425 S:      Supported
10426 F:      Documentation/devicetree/bindings/*/max77686.txt
10427 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10428 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10429 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10430 F:      drivers/*/max14577*.c
10431 F:      drivers/*/max77686*.c
10432 F:      drivers/*/max77693*.c
10433 F:      drivers/clk/clk-max77686.c
10434 F:      drivers/extcon/extcon-max14577.c
10435 F:      drivers/extcon/extcon-max77693.c
10436 F:      drivers/rtc/rtc-max77686.c
10437 F:      include/linux/mfd/max14577*.h
10438 F:      include/linux/mfd/max77686*.h
10439 F:      include/linux/mfd/max77693*.h
10440
10441 MAXIRADIO FM RADIO RECEIVER DRIVER
10442 M:      Hans Verkuil <hverkuil@xs4all.nl>
10443 L:      linux-media@vger.kernel.org
10444 S:      Maintained
10445 W:      https://linuxtv.org
10446 T:      git git://linuxtv.org/media_tree.git
10447 F:      drivers/media/radio/radio-maxiradio*
10448
10449 MCAN MMIO DEVICE DRIVER
10450 M:      Dan Murphy <dmurphy@ti.com>
10451 M:      Sriram Dash <sriram.dash@samsung.com>
10452 L:      linux-can@vger.kernel.org
10453 S:      Maintained
10454 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10455 F:      drivers/net/can/m_can/m_can.c
10456 F:      drivers/net/can/m_can/m_can.h
10457 F:      drivers/net/can/m_can/m_can_platform.c
10458
10459 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10460 M:      Rishi Gupta <gupt21@gmail.com>
10461 L:      linux-i2c@vger.kernel.org
10462 L:      linux-input@vger.kernel.org
10463 S:      Maintained
10464 F:      drivers/hid/hid-mcp2221.c
10465
10466 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10467 M:      Peter Rosin <peda@axentia.se>
10468 L:      linux-iio@vger.kernel.org
10469 S:      Maintained
10470 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10471 F:      drivers/iio/potentiometer/mcp4018.c
10472 F:      drivers/iio/potentiometer/mcp4531.c
10473
10474 MCR20A IEEE-802.15.4 RADIO DRIVER
10475 M:      Xue Liu <liuxuenetmail@gmail.com>
10476 L:      linux-wpan@vger.kernel.org
10477 S:      Maintained
10478 W:      https://github.com/xueliu/mcr20a-linux
10479 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10480 F:      drivers/net/ieee802154/mcr20a.c
10481 F:      drivers/net/ieee802154/mcr20a.h
10482
10483 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10484 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10485 L:      linux-iio@vger.kernel.org
10486 S:      Maintained
10487 F:      drivers/iio/dac/cio-dac.c
10488
10489 MEDIA CONTROLLER FRAMEWORK
10490 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10491 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10492 L:      linux-media@vger.kernel.org
10493 S:      Supported
10494 W:      https://www.linuxtv.org
10495 T:      git git://linuxtv.org/media_tree.git
10496 F:      drivers/media/mc/
10497 F:      include/media/media-*.h
10498 F:      include/uapi/linux/media.h
10499
10500 MEDIA DRIVER FOR FREESCALE IMX PXP
10501 M:      Philipp Zabel <p.zabel@pengutronix.de>
10502 L:      linux-media@vger.kernel.org
10503 S:      Maintained
10504 T:      git git://linuxtv.org/media_tree.git
10505 F:      drivers/media/platform/imx-pxp.[ch]
10506
10507 MEDIA DRIVERS FOR ASCOT2E
10508 M:      Sergey Kozlov <serjk@netup.ru>
10509 M:      Abylay Ospan <aospan@netup.ru>
10510 L:      linux-media@vger.kernel.org
10511 S:      Supported
10512 W:      https://linuxtv.org
10513 W:      http://netup.tv/
10514 T:      git git://linuxtv.org/media_tree.git
10515 F:      drivers/media/dvb-frontends/ascot2e*
10516
10517 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10518 M:      Jasmin Jessich <jasmin@anw.at>
10519 L:      linux-media@vger.kernel.org
10520 S:      Maintained
10521 W:      https://linuxtv.org
10522 T:      git git://linuxtv.org/media_tree.git
10523 F:      drivers/media/dvb-frontends/cxd2099*
10524
10525 MEDIA DRIVERS FOR CXD2841ER
10526 M:      Sergey Kozlov <serjk@netup.ru>
10527 M:      Abylay Ospan <aospan@netup.ru>
10528 L:      linux-media@vger.kernel.org
10529 S:      Supported
10530 W:      https://linuxtv.org
10531 W:      http://netup.tv/
10532 T:      git git://linuxtv.org/media_tree.git
10533 F:      drivers/media/dvb-frontends/cxd2841er*
10534
10535 MEDIA DRIVERS FOR CXD2880
10536 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10537 L:      linux-media@vger.kernel.org
10538 S:      Supported
10539 W:      http://linuxtv.org/
10540 T:      git git://linuxtv.org/media_tree.git
10541 F:      drivers/media/dvb-frontends/cxd2880/*
10542 F:      drivers/media/spi/cxd2880*
10543
10544 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10545 L:      linux-media@vger.kernel.org
10546 S:      Orphan
10547 W:      https://linuxtv.org
10548 T:      git git://linuxtv.org/media_tree.git
10549 F:      drivers/media/pci/ddbridge/*
10550
10551 MEDIA DRIVERS FOR FREESCALE IMX
10552 M:      Steve Longerbeam <slongerbeam@gmail.com>
10553 M:      Philipp Zabel <p.zabel@pengutronix.de>
10554 L:      linux-media@vger.kernel.org
10555 S:      Maintained
10556 T:      git git://linuxtv.org/media_tree.git
10557 F:      Documentation/admin-guide/media/imx.rst
10558 F:      Documentation/devicetree/bindings/media/imx.txt
10559 F:      drivers/staging/media/imx/
10560 F:      include/linux/imx-media.h
10561 F:      include/media/imx.h
10562
10563 MEDIA DRIVERS FOR FREESCALE IMX7
10564 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10565 L:      linux-media@vger.kernel.org
10566 S:      Maintained
10567 T:      git git://linuxtv.org/media_tree.git
10568 F:      Documentation/admin-guide/media/imx7.rst
10569 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10570 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10571 F:      drivers/staging/media/imx/imx7-media-csi.c
10572 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10573
10574 MEDIA DRIVERS FOR HELENE
10575 M:      Abylay Ospan <aospan@netup.ru>
10576 L:      linux-media@vger.kernel.org
10577 S:      Supported
10578 W:      https://linuxtv.org
10579 W:      http://netup.tv/
10580 T:      git git://linuxtv.org/media_tree.git
10581 F:      drivers/media/dvb-frontends/helene*
10582
10583 MEDIA DRIVERS FOR HORUS3A
10584 M:      Sergey Kozlov <serjk@netup.ru>
10585 M:      Abylay Ospan <aospan@netup.ru>
10586 L:      linux-media@vger.kernel.org
10587 S:      Supported
10588 W:      https://linuxtv.org
10589 W:      http://netup.tv/
10590 T:      git git://linuxtv.org/media_tree.git
10591 F:      drivers/media/dvb-frontends/horus3a*
10592
10593 MEDIA DRIVERS FOR LNBH25
10594 M:      Sergey Kozlov <serjk@netup.ru>
10595 M:      Abylay Ospan <aospan@netup.ru>
10596 L:      linux-media@vger.kernel.org
10597 S:      Supported
10598 W:      https://linuxtv.org
10599 W:      http://netup.tv/
10600 T:      git git://linuxtv.org/media_tree.git
10601 F:      drivers/media/dvb-frontends/lnbh25*
10602
10603 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10604 L:      linux-media@vger.kernel.org
10605 S:      Orphan
10606 W:      https://linuxtv.org
10607 T:      git git://linuxtv.org/media_tree.git
10608 F:      drivers/media/dvb-frontends/mxl5xx*
10609
10610 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10611 M:      Sergey Kozlov <serjk@netup.ru>
10612 M:      Abylay Ospan <aospan@netup.ru>
10613 L:      linux-media@vger.kernel.org
10614 S:      Supported
10615 W:      https://linuxtv.org
10616 W:      http://netup.tv/
10617 T:      git git://linuxtv.org/media_tree.git
10618 F:      drivers/media/pci/netup_unidvb/*
10619
10620 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10621 M:      Dmitry Osipenko <digetx@gmail.com>
10622 L:      linux-media@vger.kernel.org
10623 L:      linux-tegra@vger.kernel.org
10624 S:      Maintained
10625 T:      git git://linuxtv.org/media_tree.git
10626 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10627 F:      drivers/staging/media/tegra-vde/
10628
10629 MEDIA DRIVERS FOR RENESAS - CEU
10630 M:      Jacopo Mondi <jacopo@jmondi.org>
10631 L:      linux-media@vger.kernel.org
10632 L:      linux-renesas-soc@vger.kernel.org
10633 S:      Supported
10634 T:      git git://linuxtv.org/media_tree.git
10635 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10636 F:      drivers/media/platform/renesas-ceu.c
10637 F:      include/media/drv-intf/renesas-ceu.h
10638
10639 MEDIA DRIVERS FOR RENESAS - DRIF
10640 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10641 L:      linux-media@vger.kernel.org
10642 L:      linux-renesas-soc@vger.kernel.org
10643 S:      Supported
10644 T:      git git://linuxtv.org/media_tree.git
10645 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10646 F:      drivers/media/platform/rcar_drif.c
10647
10648 MEDIA DRIVERS FOR RENESAS - FCP
10649 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10650 L:      linux-media@vger.kernel.org
10651 L:      linux-renesas-soc@vger.kernel.org
10652 S:      Supported
10653 T:      git git://linuxtv.org/media_tree.git
10654 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10655 F:      drivers/media/platform/rcar-fcp.c
10656 F:      include/media/rcar-fcp.h
10657
10658 MEDIA DRIVERS FOR RENESAS - FDP1
10659 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10660 L:      linux-media@vger.kernel.org
10661 L:      linux-renesas-soc@vger.kernel.org
10662 S:      Supported
10663 T:      git git://linuxtv.org/media_tree.git
10664 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10665 F:      drivers/media/platform/rcar_fdp1.c
10666
10667 MEDIA DRIVERS FOR RENESAS - VIN
10668 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10669 L:      linux-media@vger.kernel.org
10670 L:      linux-renesas-soc@vger.kernel.org
10671 S:      Supported
10672 T:      git git://linuxtv.org/media_tree.git
10673 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10674 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10675 F:      drivers/media/platform/rcar-vin/
10676
10677 MEDIA DRIVERS FOR RENESAS - VSP1
10678 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10679 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10680 L:      linux-media@vger.kernel.org
10681 L:      linux-renesas-soc@vger.kernel.org
10682 S:      Supported
10683 T:      git git://linuxtv.org/media_tree.git
10684 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10685 F:      drivers/media/platform/vsp1/
10686
10687 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10688 L:      linux-media@vger.kernel.org
10689 S:      Orphan
10690 W:      https://linuxtv.org
10691 T:      git git://linuxtv.org/media_tree.git
10692 F:      drivers/media/dvb-frontends/stv0910*
10693
10694 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10695 L:      linux-media@vger.kernel.org
10696 S:      Orphan
10697 W:      https://linuxtv.org
10698 T:      git git://linuxtv.org/media_tree.git
10699 F:      drivers/media/dvb-frontends/stv6111*
10700
10701 MEDIA DRIVERS FOR STM32 - DCMI
10702 M:      Hugues Fruchet <hugues.fruchet@st.com>
10703 L:      linux-media@vger.kernel.org
10704 S:      Supported
10705 T:      git git://linuxtv.org/media_tree.git
10706 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10707 F:      drivers/media/platform/stm32/stm32-dcmi.c
10708
10709 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10710 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10711 L:      linux-media@vger.kernel.org
10712 S:      Maintained
10713 W:      https://linuxtv.org
10714 Q:      http://patchwork.kernel.org/project/linux-media/list/
10715 T:      git git://linuxtv.org/media_tree.git
10716 F:      Documentation/admin-guide/media/
10717 F:      Documentation/devicetree/bindings/media/
10718 F:      Documentation/driver-api/media/
10719 F:      Documentation/userspace-api/media/
10720 F:      drivers/media/
10721 F:      drivers/staging/media/
10722 F:      include/linux/platform_data/media/
10723 F:      include/media/
10724 F:      include/uapi/linux/dvb/
10725 F:      include/uapi/linux/ivtv*
10726 F:      include/uapi/linux/media.h
10727 F:      include/uapi/linux/meye.h
10728 F:      include/uapi/linux/uvcvideo.h
10729 F:      include/uapi/linux/v4l2-*
10730 F:      include/uapi/linux/videodev2.h
10731
10732 MEDIATEK BLUETOOTH DRIVER
10733 M:      Sean Wang <sean.wang@mediatek.com>
10734 L:      linux-bluetooth@vger.kernel.org
10735 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10736 S:      Maintained
10737 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10738 F:      drivers/bluetooth/btmtkuart.c
10739
10740 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10741 M:      Sean Wang <sean.wang@mediatek.com>
10742 L:      linux-pm@vger.kernel.org
10743 S:      Maintained
10744 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10745 F:      drivers/power/reset/mt6323-poweroff.c
10746
10747 MEDIATEK CIR DRIVER
10748 M:      Sean Wang <sean.wang@mediatek.com>
10749 S:      Maintained
10750 F:      drivers/media/rc/mtk-cir.c
10751
10752 MEDIATEK DMA DRIVER
10753 M:      Sean Wang <sean.wang@mediatek.com>
10754 L:      dmaengine@vger.kernel.org
10755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10756 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10757 S:      Maintained
10758 F:      Documentation/devicetree/bindings/dma/mtk-*
10759 F:      drivers/dma/mediatek/
10760
10761 MEDIATEK ETHERNET DRIVER
10762 M:      Felix Fietkau <nbd@openwrt.org>
10763 M:      John Crispin <john@phrozen.org>
10764 M:      Sean Wang <sean.wang@mediatek.com>
10765 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10766 L:      netdev@vger.kernel.org
10767 S:      Maintained
10768 F:      drivers/net/ethernet/mediatek/
10769
10770 MEDIATEK I2C CONTROLLER DRIVER
10771 M:      Qii Wang <qii.wang@mediatek.com>
10772 L:      linux-i2c@vger.kernel.org
10773 S:      Maintained
10774 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
10775 F:      drivers/i2c/busses/i2c-mt65xx.c
10776
10777 MEDIATEK JPEG DRIVER
10778 M:      Rick Chang <rick.chang@mediatek.com>
10779 M:      Bin Liu <bin.liu@mediatek.com>
10780 S:      Supported
10781 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10782 F:      drivers/media/platform/mtk-jpeg/
10783
10784 MEDIATEK MDP DRIVER
10785 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10786 M:      Houlong Wei <houlong.wei@mediatek.com>
10787 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10788 S:      Supported
10789 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10790 F:      drivers/media/platform/mtk-mdp/
10791 F:      drivers/media/platform/mtk-vpu/
10792
10793 MEDIATEK MEDIA DRIVER
10794 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10795 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10796 S:      Supported
10797 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10798 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10799 F:      drivers/media/platform/mtk-vcodec/
10800 F:      drivers/media/platform/mtk-vpu/
10801
10802 MEDIATEK MMC/SD/SDIO DRIVER
10803 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10804 S:      Maintained
10805 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10806 F:      drivers/mmc/host/mtk-sd.c
10807
10808 MEDIATEK MT76 WIRELESS LAN DRIVER
10809 M:      Felix Fietkau <nbd@nbd.name>
10810 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10811 R:      Ryder Lee <ryder.lee@mediatek.com>
10812 L:      linux-wireless@vger.kernel.org
10813 S:      Maintained
10814 F:      drivers/net/wireless/mediatek/mt76/
10815
10816 MEDIATEK MT7601U WIRELESS LAN DRIVER
10817 M:      Jakub Kicinski <kubakici@wp.pl>
10818 L:      linux-wireless@vger.kernel.org
10819 S:      Maintained
10820 F:      drivers/net/wireless/mediatek/mt7601u/
10821
10822 MEDIATEK MT7621/28/88 I2C DRIVER
10823 M:      Stefan Roese <sr@denx.de>
10824 L:      linux-i2c@vger.kernel.org
10825 S:      Maintained
10826 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10827 F:      drivers/i2c/busses/i2c-mt7621.c
10828
10829 MEDIATEK NAND CONTROLLER DRIVER
10830 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10831 L:      linux-mtd@lists.infradead.org
10832 S:      Maintained
10833 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10834 F:      drivers/mtd/nand/raw/mtk_*
10835
10836 MEDIATEK PMIC LED DRIVER
10837 M:      Sean Wang <sean.wang@mediatek.com>
10838 S:      Maintained
10839 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10840 F:      drivers/leds/leds-mt6323.c
10841
10842 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10843 M:      Sean Wang <sean.wang@mediatek.com>
10844 S:      Maintained
10845 F:      drivers/char/hw_random/mtk-rng.c
10846
10847 MEDIATEK SWITCH DRIVER
10848 M:      Sean Wang <sean.wang@mediatek.com>
10849 L:      netdev@vger.kernel.org
10850 S:      Maintained
10851 F:      drivers/net/dsa/mt7530.*
10852 F:      net/dsa/tag_mtk.c
10853
10854 MEDIATEK USB3 DRD IP DRIVER
10855 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10856 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10858 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10859 S:      Maintained
10860 F:      drivers/usb/mtu3/
10861
10862 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10863 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10864 M:      Martin Donnelly <martin.donnelly@ge.com>
10865 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10866 S:      Maintained
10867 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10868 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10869
10870 MEGARAID SCSI/SAS DRIVERS
10871 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10872 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10873 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10874 L:      megaraidlinux.pdl@broadcom.com
10875 L:      linux-scsi@vger.kernel.org
10876 S:      Maintained
10877 W:      http://www.avagotech.com/support/
10878 F:      Documentation/scsi/megaraid.rst
10879 F:      drivers/scsi/megaraid.*
10880 F:      drivers/scsi/megaraid/
10881
10882 MELEXIS MLX90614 DRIVER
10883 M:      Crt Mori <cmo@melexis.com>
10884 L:      linux-iio@vger.kernel.org
10885 S:      Supported
10886 W:      http://www.melexis.com
10887 F:      drivers/iio/temperature/mlx90614.c
10888
10889 MELEXIS MLX90632 DRIVER
10890 M:      Crt Mori <cmo@melexis.com>
10891 L:      linux-iio@vger.kernel.org
10892 S:      Supported
10893 W:      http://www.melexis.com
10894 F:      drivers/iio/temperature/mlx90632.c
10895
10896 MELFAS MIP4 TOUCHSCREEN DRIVER
10897 M:      Sangwon Jee <jeesw@melfas.com>
10898 S:      Supported
10899 W:      http://www.melfas.com
10900 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10901 F:      drivers/input/touchscreen/melfas_mip4.c
10902
10903 MELLANOX ETHERNET DRIVER (mlx4_en)
10904 M:      Tariq Toukan <tariqt@mellanox.com>
10905 L:      netdev@vger.kernel.org
10906 S:      Supported
10907 W:      http://www.mellanox.com
10908 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10909 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10910
10911 MELLANOX ETHERNET DRIVER (mlx5e)
10912 M:      Saeed Mahameed <saeedm@mellanox.com>
10913 L:      netdev@vger.kernel.org
10914 S:      Supported
10915 W:      http://www.mellanox.com
10916 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10917 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10918
10919 MELLANOX ETHERNET INNOVA DRIVERS
10920 R:      Boris Pismenny <borisp@mellanox.com>
10921 L:      netdev@vger.kernel.org
10922 S:      Supported
10923 W:      http://www.mellanox.com
10924 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10925 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10926 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10927 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10928 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10929
10930 MELLANOX ETHERNET SWITCH DRIVERS
10931 M:      Jiri Pirko <jiri@mellanox.com>
10932 M:      Ido Schimmel <idosch@mellanox.com>
10933 L:      netdev@vger.kernel.org
10934 S:      Supported
10935 W:      http://www.mellanox.com
10936 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10937 F:      drivers/net/ethernet/mellanox/mlxsw/
10938 F:      tools/testing/selftests/drivers/net/mlxsw/
10939
10940 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10941 M:      mlxsw@mellanox.com
10942 L:      netdev@vger.kernel.org
10943 S:      Supported
10944 W:      http://www.mellanox.com
10945 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10946 F:      drivers/net/ethernet/mellanox/mlxfw/
10947
10948 MELLANOX HARDWARE PLATFORM SUPPORT
10949 M:      Andy Shevchenko <andy@infradead.org>
10950 M:      Darren Hart <dvhart@infradead.org>
10951 M:      Vadim Pasternak <vadimp@mellanox.com>
10952 L:      platform-driver-x86@vger.kernel.org
10953 S:      Supported
10954 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10955 F:      drivers/platform/mellanox/
10956 F:      include/linux/platform_data/mlxreg.h
10957
10958 MELLANOX MLX4 core VPI driver
10959 M:      Tariq Toukan <tariqt@mellanox.com>
10960 L:      netdev@vger.kernel.org
10961 L:      linux-rdma@vger.kernel.org
10962 S:      Supported
10963 W:      http://www.mellanox.com
10964 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10965 F:      drivers/net/ethernet/mellanox/mlx4/
10966 F:      include/linux/mlx4/
10967
10968 MELLANOX MLX4 IB driver
10969 M:      Yishai Hadas <yishaih@mellanox.com>
10970 L:      linux-rdma@vger.kernel.org
10971 S:      Supported
10972 W:      http://www.mellanox.com
10973 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10974 F:      drivers/infiniband/hw/mlx4/
10975 F:      include/linux/mlx4/
10976 F:      include/uapi/rdma/mlx4-abi.h
10977
10978 MELLANOX MLX5 core VPI driver
10979 M:      Saeed Mahameed <saeedm@mellanox.com>
10980 M:      Leon Romanovsky <leonro@mellanox.com>
10981 L:      netdev@vger.kernel.org
10982 L:      linux-rdma@vger.kernel.org
10983 S:      Supported
10984 W:      http://www.mellanox.com
10985 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10986 F:      Documentation/networking/device_drivers/mellanox/
10987 F:      drivers/net/ethernet/mellanox/mlx5/core/
10988 F:      include/linux/mlx5/
10989
10990 MELLANOX MLX5 IB driver
10991 M:      Leon Romanovsky <leonro@mellanox.com>
10992 L:      linux-rdma@vger.kernel.org
10993 S:      Supported
10994 W:      http://www.mellanox.com
10995 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10996 F:      drivers/infiniband/hw/mlx5/
10997 F:      include/linux/mlx5/
10998 F:      include/uapi/rdma/mlx5-abi.h
10999
11000 MELLANOX MLXCPLD I2C AND MUX DRIVER
11001 M:      Vadim Pasternak <vadimp@mellanox.com>
11002 M:      Michael Shych <michaelsh@mellanox.com>
11003 L:      linux-i2c@vger.kernel.org
11004 S:      Supported
11005 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
11006 F:      drivers/i2c/busses/i2c-mlxcpld.c
11007 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
11008
11009 MELLANOX MLXCPLD LED DRIVER
11010 M:      Vadim Pasternak <vadimp@mellanox.com>
11011 L:      linux-leds@vger.kernel.org
11012 S:      Supported
11013 F:      Documentation/leds/leds-mlxcpld.rst
11014 F:      drivers/leds/leds-mlxcpld.c
11015 F:      drivers/leds/leds-mlxreg.c
11016
11017 MELLANOX PLATFORM DRIVER
11018 M:      Vadim Pasternak <vadimp@mellanox.com>
11019 L:      platform-driver-x86@vger.kernel.org
11020 S:      Supported
11021 F:      drivers/platform/x86/mlx-platform.c
11022
11023 MEMBARRIER SUPPORT
11024 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11025 M:      "Paul E. McKenney" <paulmck@kernel.org>
11026 L:      linux-kernel@vger.kernel.org
11027 S:      Supported
11028 F:      arch/powerpc/include/asm/membarrier.h
11029 F:      include/uapi/linux/membarrier.h
11030 F:      kernel/sched/membarrier.c
11031
11032 MEMBLOCK
11033 M:      Mike Rapoport <rppt@linux.ibm.com>
11034 L:      linux-mm@kvack.org
11035 S:      Maintained
11036 F:      Documentation/core-api/boot-time-mm.rst
11037 F:      include/linux/memblock.h
11038 F:      mm/memblock.c
11039
11040 MEMORY MANAGEMENT
11041 M:      Andrew Morton <akpm@linux-foundation.org>
11042 L:      linux-mm@kvack.org
11043 S:      Maintained
11044 W:      http://www.linux-mm.org
11045 T:      quilt https://ozlabs.org/~akpm/mmotm/
11046 T:      quilt https://ozlabs.org/~akpm/mmots/
11047 T:      git git://github.com/hnaz/linux-mm.git
11048 F:      include/linux/gfp.h
11049 F:      include/linux/memory_hotplug.h
11050 F:      include/linux/mm.h
11051 F:      include/linux/mmzone.h
11052 F:      include/linux/vmalloc.h
11053 F:      mm/
11054
11055 MEMORY TECHNOLOGY DEVICES (MTD)
11056 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11057 M:      Richard Weinberger <richard@nod.at>
11058 M:      Vignesh Raghavendra <vigneshr@ti.com>
11059 L:      linux-mtd@lists.infradead.org
11060 S:      Maintained
11061 W:      http://www.linux-mtd.infradead.org/
11062 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11063 C:      irc://irc.oftc.net/mtd
11064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
11065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
11066 F:      Documentation/devicetree/bindings/mtd/
11067 F:      drivers/mtd/
11068 F:      include/linux/mtd/
11069 F:      include/uapi/mtd/
11070
11071 MEN A21 WATCHDOG DRIVER
11072 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11073 L:      linux-watchdog@vger.kernel.org
11074 S:      Maintained
11075 F:      drivers/watchdog/mena21_wdt.c
11076
11077 MEN CHAMELEON BUS (mcb)
11078 M:      Johannes Thumshirn <morbidrsa@gmail.com>
11079 S:      Maintained
11080 F:      Documentation/driver-api/men-chameleon-bus.rst
11081 F:      drivers/mcb/
11082 F:      include/linux/mcb.h
11083
11084 MEN F21BMC (Board Management Controller)
11085 M:      Andreas Werner <andreas.werner@men.de>
11086 S:      Supported
11087 F:      Documentation/hwmon/menf21bmc.rst
11088 F:      drivers/hwmon/menf21bmc_hwmon.c
11089 F:      drivers/leds/leds-menf21bmc.c
11090 F:      drivers/mfd/menf21bmc.c
11091 F:      drivers/watchdog/menf21bmc_wdt.c
11092
11093 MEN Z069 WATCHDOG DRIVER
11094 M:      Johannes Thumshirn <jth@kernel.org>
11095 L:      linux-watchdog@vger.kernel.org
11096 S:      Maintained
11097 F:      drivers/watchdog/menz69_wdt.c
11098
11099 MESON AO CEC DRIVER FOR AMLOGIC SOCS
11100 M:      Neil Armstrong <narmstrong@baylibre.com>
11101 L:      linux-media@vger.kernel.org
11102 L:      linux-amlogic@lists.infradead.org
11103 S:      Supported
11104 W:      http://linux-meson.com/
11105 T:      git git://linuxtv.org/media_tree.git
11106 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
11107 F:      drivers/media/platform/meson/ao-cec-g12a.c
11108 F:      drivers/media/platform/meson/ao-cec.c
11109
11110 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
11111 M:      Liang Yang <liang.yang@amlogic.com>
11112 L:      linux-mtd@lists.infradead.org
11113 S:      Maintained
11114 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
11115 F:      drivers/mtd/nand/raw/meson_*
11116
11117 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
11118 M:      Maxime Jourdan <mjourdan@baylibre.com>
11119 M:      Neil Armstrong <narmstrong@baylibre.com>
11120 L:      linux-media@vger.kernel.org
11121 L:      linux-amlogic@lists.infradead.org
11122 S:      Supported
11123 T:      git git://linuxtv.org/media_tree.git
11124 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
11125 F:      drivers/staging/media/meson/vdec/
11126
11127 METHODE UDPU SUPPORT
11128 M:      Vladimir Vid <vladimir.vid@sartura.hr>
11129 S:      Maintained
11130 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
11131
11132 MHI BUS
11133 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11134 M:      Hemant Kumar <hemantk@codeaurora.org>
11135 L:      linux-arm-msm@vger.kernel.org
11136 S:      Maintained
11137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
11138 F:      Documentation/mhi/
11139 F:      drivers/bus/mhi/
11140 F:      include/linux/mhi.h
11141
11142 MICROBLAZE ARCHITECTURE
11143 M:      Michal Simek <monstr@monstr.eu>
11144 S:      Supported
11145 W:      http://www.monstr.eu/fdt/
11146 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11147 F:      arch/microblaze/
11148
11149 MICROCHIP AT91 SERIAL DRIVER
11150 M:      Richard Genoud <richard.genoud@gmail.com>
11151 S:      Maintained
11152 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11153 F:      drivers/tty/serial/atmel_serial.c
11154 F:      drivers/tty/serial/atmel_serial.h
11155
11156 MICROCHIP AT91 USART MFD DRIVER
11157 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11158 L:      linux-kernel@vger.kernel.org
11159 S:      Supported
11160 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11161 F:      drivers/mfd/at91-usart.c
11162 F:      include/dt-bindings/mfd/at91-usart.h
11163
11164 MICROCHIP AT91 USART SPI DRIVER
11165 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11166 L:      linux-spi@vger.kernel.org
11167 S:      Supported
11168 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11169 F:      drivers/spi/spi-at91-usart.c
11170
11171 MICROCHIP AUDIO ASOC DRIVERS
11172 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11173 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11174 S:      Supported
11175 F:      sound/soc/atmel
11176
11177 MICROCHIP DMA DRIVER
11178 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11180 L:      dmaengine@vger.kernel.org
11181 S:      Supported
11182 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11183 F:      drivers/dma/at_hdmac.c
11184 F:      drivers/dma/at_hdmac_regs.h
11185 F:      include/dt-bindings/dma/at91.h
11186 F:      include/linux/platform_data/dma-atmel.h
11187
11188 MICROCHIP ECC DRIVER
11189 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11190 L:      linux-crypto@vger.kernel.org
11191 S:      Maintained
11192 F:      drivers/crypto/atmel-ecc.*
11193
11194 MICROCHIP I2C DRIVER
11195 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11196 L:      linux-i2c@vger.kernel.org
11197 S:      Supported
11198 F:      drivers/i2c/busses/i2c-at91-*.c
11199 F:      drivers/i2c/busses/i2c-at91.h
11200
11201 MICROCHIP ISC DRIVER
11202 M:      Eugen Hristev <eugen.hristev@microchip.com>
11203 L:      linux-media@vger.kernel.org
11204 S:      Supported
11205 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11206 F:      drivers/media/platform/atmel/atmel-isc-base.c
11207 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11208 F:      drivers/media/platform/atmel/atmel-isc.h
11209 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11210 F:      include/linux/atmel-isc-media.h
11211
11212 MICROCHIP ISI DRIVER
11213 M:      Eugen Hristev <eugen.hristev@microchip.com>
11214 L:      linux-media@vger.kernel.org
11215 S:      Supported
11216 F:      drivers/media/platform/atmel/atmel-isi.c
11217 F:      drivers/media/platform/atmel/atmel-isi.h
11218
11219 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11220 M:      Woojung Huh <woojung.huh@microchip.com>
11221 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11222 L:      netdev@vger.kernel.org
11223 S:      Maintained
11224 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11225 F:      drivers/net/dsa/microchip/*
11226 F:      include/linux/platform_data/microchip-ksz.h
11227 F:      net/dsa/tag_ksz.c
11228
11229 MICROCHIP LAN743X ETHERNET DRIVER
11230 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11231 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11232 L:      netdev@vger.kernel.org
11233 S:      Maintained
11234 F:      drivers/net/ethernet/microchip/lan743x_*
11235
11236 MICROCHIP LCDFB DRIVER
11237 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11238 L:      linux-fbdev@vger.kernel.org
11239 S:      Maintained
11240 F:      drivers/video/fbdev/atmel_lcdfb.c
11241 F:      include/video/atmel_lcdc.h
11242
11243 MICROCHIP MCP16502 PMIC DRIVER
11244 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11246 S:      Maintained
11247 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11248 F:      drivers/regulator/mcp16502.c
11249
11250 MICROCHIP MCP3911 ADC DRIVER
11251 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11252 M:      Kent Gustavsson <kent@minoris.se>
11253 L:      linux-iio@vger.kernel.org
11254 S:      Supported
11255 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11256 F:      drivers/iio/adc/mcp3911.c
11257
11258 MICROCHIP MMC/SD/SDIO MCI DRIVER
11259 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11260 S:      Maintained
11261 F:      drivers/mmc/host/atmel-mci.c
11262
11263 MICROCHIP NAND DRIVER
11264 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11265 L:      linux-mtd@lists.infradead.org
11266 S:      Supported
11267 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11268 F:      drivers/mtd/nand/raw/atmel/*
11269
11270 MICROCHIP PWM DRIVER
11271 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11273 L:      linux-pwm@vger.kernel.org
11274 S:      Supported
11275 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11276 F:      drivers/pwm/pwm-atmel.c
11277
11278 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11279 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11280 M:      Eugen Hristev <eugen.hristev@microchip.com>
11281 L:      linux-iio@vger.kernel.org
11282 S:      Supported
11283 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11284 F:      drivers/iio/adc/at91-sama5d2_adc.c
11285 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11286
11287 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11288 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11289 S:      Supported
11290 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11291
11292 MICROCHIP SPI DRIVER
11293 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11294 S:      Supported
11295 F:      drivers/spi/spi-atmel.*
11296
11297 MICROCHIP SSC DRIVER
11298 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11300 S:      Supported
11301 F:      drivers/misc/atmel-ssc.c
11302 F:      include/linux/atmel-ssc.h
11303
11304 MICROCHIP USB251XB DRIVER
11305 M:      Richard Leitner <richard.leitner@skidata.com>
11306 L:      linux-usb@vger.kernel.org
11307 S:      Maintained
11308 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11309 F:      drivers/usb/misc/usb251xb.c
11310
11311 MICROCHIP USBA UDC DRIVER
11312 M:      Cristian Birsan <cristian.birsan@microchip.com>
11313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11314 S:      Supported
11315 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11316
11317 MICROCHIP XDMA DRIVER
11318 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11319 L:      linux-arm-kernel@lists.infradead.org
11320 L:      dmaengine@vger.kernel.org
11321 S:      Supported
11322 F:      drivers/dma/at_xdmac.c
11323
11324 MICROSEMI ETHERNET SWITCH DRIVER
11325 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11326 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11327 L:      netdev@vger.kernel.org
11328 S:      Supported
11329 F:      drivers/net/ethernet/mscc/
11330 F:      include/soc/mscc/ocelot*
11331
11332 MICROSEMI MIPS SOCS
11333 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11334 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11335 L:      linux-mips@vger.kernel.org
11336 S:      Supported
11337 F:      Documentation/devicetree/bindings/mips/mscc.txt
11338 F:      arch/mips/boot/dts/mscc/
11339 F:      arch/mips/configs/generic/board-ocelot.config
11340 F:      arch/mips/generic/board-ocelot.c
11341
11342 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11343 M:      Don Brace <don.brace@microsemi.com>
11344 L:      esc.storagedev@microsemi.com
11345 L:      linux-scsi@vger.kernel.org
11346 S:      Supported
11347 F:      Documentation/scsi/smartpqi.rst
11348 F:      drivers/scsi/smartpqi/Kconfig
11349 F:      drivers/scsi/smartpqi/Makefile
11350 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11351 F:      include/linux/cciss*.h
11352 F:      include/uapi/linux/cciss*.h
11353
11354 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11355 M:      Chen Yu <yu.c.chen@intel.com>
11356 L:      platform-driver-x86@vger.kernel.org
11357 S:      Supported
11358 F:      drivers/platform/x86/surfacepro3_button.c
11359
11360 MICROTEK X6 SCANNER
11361 M:      Oliver Neukum <oliver@neukum.org>
11362 S:      Maintained
11363 F:      drivers/usb/image/microtek.*
11364
11365 MIPS
11366 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11367 L:      linux-mips@vger.kernel.org
11368 S:      Maintained
11369 W:      http://www.linux-mips.org/
11370 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11372 F:      Documentation/devicetree/bindings/mips/
11373 F:      Documentation/mips/
11374 F:      arch/mips/
11375 F:      drivers/platform/mips/
11376
11377 MIPS BOSTON DEVELOPMENT BOARD
11378 M:      Paul Burton <paulburton@kernel.org>
11379 L:      linux-mips@vger.kernel.org
11380 S:      Maintained
11381 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11382 F:      arch/mips/boot/dts/img/boston.dts
11383 F:      arch/mips/configs/generic/board-boston.config
11384 F:      drivers/clk/imgtec/clk-boston.c
11385 F:      include/dt-bindings/clock/boston-clock.h
11386
11387 MIPS GENERIC PLATFORM
11388 M:      Paul Burton <paulburton@kernel.org>
11389 L:      linux-mips@vger.kernel.org
11390 S:      Supported
11391 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11392 F:      arch/mips/generic/
11393 F:      arch/mips/tools/generic-board-config.sh
11394
11395 MIPS RINT INSTRUCTION EMULATION
11396 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11397 L:      linux-mips@vger.kernel.org
11398 S:      Supported
11399 F:      arch/mips/math-emu/dp_rint.c
11400 F:      arch/mips/math-emu/sp_rint.c
11401
11402 MIPS/LOONGSON1 ARCHITECTURE
11403 M:      Keguang Zhang <keguang.zhang@gmail.com>
11404 L:      linux-mips@vger.kernel.org
11405 S:      Maintained
11406 F:      arch/mips/include/asm/mach-loongson32/
11407 F:      arch/mips/loongson32/
11408 F:      drivers/*/*/*loongson1*
11409 F:      drivers/*/*loongson1*
11410
11411 MIPS/LOONGSON2EF ARCHITECTURE
11412 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11413 L:      linux-mips@vger.kernel.org
11414 S:      Maintained
11415 F:      arch/mips/include/asm/mach-loongson2ef/
11416 F:      arch/mips/loongson2ef/
11417 F:      drivers/*/*/*loongson2*
11418 F:      drivers/*/*loongson2*
11419
11420 MIPS/LOONGSON64 ARCHITECTURE
11421 M:      Huacai Chen <chenhc@lemote.com>
11422 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11423 L:      linux-mips@vger.kernel.org
11424 S:      Maintained
11425 F:      arch/mips/include/asm/mach-loongson64/
11426 F:      arch/mips/loongson64/
11427 F:      drivers/*/*/*loongson3*
11428 F:      drivers/*/*loongson3*
11429 F:      drivers/irqchip/irq-loongson*
11430 F:      drivers/platform/mips/cpu_hwmon.c
11431
11432 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11433 M:      Hans Verkuil <hverkuil@xs4all.nl>
11434 L:      linux-media@vger.kernel.org
11435 S:      Odd Fixes
11436 W:      https://linuxtv.org
11437 T:      git git://linuxtv.org/media_tree.git
11438 F:      drivers/media/radio/radio-miropcm20*
11439
11440 MMP SUPPORT
11441 R:      Lubomir Rintel <lkundrak@v3.sk>
11442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11443 S:      Odd Fixes
11444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11445 F:      arch/arm/boot/dts/mmp*
11446 F:      arch/arm/mach-mmp/
11447 F:      linux/soc/mmp/
11448
11449 MMP USB PHY DRIVERS
11450 R:      Lubomir Rintel <lkundrak@v3.sk>
11451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11452 S:      Maintained
11453 F:      drivers/phy/marvell/phy-mmp3-usb.c
11454 F:      drivers/phy/marvell/phy-pxa-usb.c
11455
11456 MMU GATHER AND TLB INVALIDATION
11457 M:      Will Deacon <will@kernel.org>
11458 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11459 M:      Andrew Morton <akpm@linux-foundation.org>
11460 M:      Nick Piggin <npiggin@gmail.com>
11461 M:      Peter Zijlstra <peterz@infradead.org>
11462 L:      linux-arch@vger.kernel.org
11463 L:      linux-mm@kvack.org
11464 S:      Maintained
11465 F:      arch/*/include/asm/tlb.h
11466 F:      include/asm-generic/tlb.h
11467 F:      mm/mmu_gather.c
11468
11469 MN88472 MEDIA DRIVER
11470 M:      Antti Palosaari <crope@iki.fi>
11471 L:      linux-media@vger.kernel.org
11472 S:      Maintained
11473 W:      https://linuxtv.org
11474 W:      http://palosaari.fi/linux/
11475 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11476 F:      drivers/media/dvb-frontends/mn88472*
11477
11478 MN88473 MEDIA DRIVER
11479 M:      Antti Palosaari <crope@iki.fi>
11480 L:      linux-media@vger.kernel.org
11481 S:      Maintained
11482 W:      https://linuxtv.org
11483 W:      http://palosaari.fi/linux/
11484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11485 F:      drivers/media/dvb-frontends/mn88473*
11486
11487 MODULE SUPPORT
11488 M:      Jessica Yu <jeyu@kernel.org>
11489 S:      Maintained
11490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11491 F:      include/linux/module.h
11492 F:      kernel/module.c
11493
11494 MONOLITHIC POWER SYSTEM PMIC DRIVER
11495 M:      Saravanan Sekar <sravanhome@gmail.com>
11496 S:      Maintained
11497 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
11498 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11499 F:      drivers/iio/adc/mp2629_adc.c
11500 F:      drivers/mfd/mp2629.c
11501 F:      drivers/power/supply/mp2629_charger.c
11502 F:      drivers/regulator/mp5416.c
11503 F:      drivers/regulator/mpq7920.c
11504 F:      drivers/regulator/mpq7920.h
11505 F:      include/linux/mfd/mp2629.h
11506
11507 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11508 S:      Orphan
11509 W:      http://popies.net/meye/
11510 F:      Documentation/userspace-api/media/drivers/meye*
11511 F:      drivers/media/pci/meye/
11512 F:      include/uapi/linux/meye.h
11513
11514 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11515 M:      Jiri Slaby <jirislaby@gmail.com>
11516 S:      Maintained
11517 F:      Documentation/driver-api/serial/moxa-smartio.rst
11518 F:      drivers/tty/mxser.*
11519
11520 MR800 AVERMEDIA USB FM RADIO DRIVER
11521 M:      Alexey Klimov <klimov.linux@gmail.com>
11522 L:      linux-media@vger.kernel.org
11523 S:      Maintained
11524 T:      git git://linuxtv.org/media_tree.git
11525 F:      drivers/media/radio/radio-mr800.c
11526
11527 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11528 M:      Alan Ott <alan@signal11.us>
11529 L:      linux-wpan@vger.kernel.org
11530 S:      Maintained
11531 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11532 F:      drivers/net/ieee802154/mrf24j40.c
11533
11534 MSI LAPTOP SUPPORT
11535 M:      "Lee, Chun-Yi" <jlee@suse.com>
11536 L:      platform-driver-x86@vger.kernel.org
11537 S:      Maintained
11538 F:      drivers/platform/x86/msi-laptop.c
11539
11540 MSI WMI SUPPORT
11541 L:      platform-driver-x86@vger.kernel.org
11542 S:      Orphan
11543 F:      drivers/platform/x86/msi-wmi.c
11544
11545 MSI001 MEDIA DRIVER
11546 M:      Antti Palosaari <crope@iki.fi>
11547 L:      linux-media@vger.kernel.org
11548 S:      Maintained
11549 W:      https://linuxtv.org
11550 W:      http://palosaari.fi/linux/
11551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11552 T:      git git://linuxtv.org/anttip/media_tree.git
11553 F:      drivers/media/tuners/msi001*
11554
11555 MSI2500 MEDIA DRIVER
11556 M:      Antti Palosaari <crope@iki.fi>
11557 L:      linux-media@vger.kernel.org
11558 S:      Maintained
11559 W:      https://linuxtv.org
11560 W:      http://palosaari.fi/linux/
11561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11562 T:      git git://linuxtv.org/anttip/media_tree.git
11563 F:      drivers/media/usb/msi2500/
11564
11565 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11566 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11567 L:      linux-mtd@lists.infradead.org
11568 S:      Maintained
11569 F:      drivers/mtd/devices/docg3*
11570
11571 MT9M032 APTINA SENSOR DRIVER
11572 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11573 L:      linux-media@vger.kernel.org
11574 S:      Maintained
11575 T:      git git://linuxtv.org/media_tree.git
11576 F:      drivers/media/i2c/mt9m032.c
11577 F:      include/media/i2c/mt9m032.h
11578
11579 MT9P031 APTINA CAMERA SENSOR
11580 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11581 L:      linux-media@vger.kernel.org
11582 S:      Maintained
11583 T:      git git://linuxtv.org/media_tree.git
11584 F:      drivers/media/i2c/mt9p031.c
11585 F:      include/media/i2c/mt9p031.h
11586
11587 MT9T001 APTINA CAMERA SENSOR
11588 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11589 L:      linux-media@vger.kernel.org
11590 S:      Maintained
11591 T:      git git://linuxtv.org/media_tree.git
11592 F:      drivers/media/i2c/mt9t001.c
11593 F:      include/media/i2c/mt9t001.h
11594
11595 MT9T112 APTINA CAMERA SENSOR
11596 M:      Jacopo Mondi <jacopo@jmondi.org>
11597 L:      linux-media@vger.kernel.org
11598 S:      Odd Fixes
11599 T:      git git://linuxtv.org/media_tree.git
11600 F:      drivers/media/i2c/mt9t112.c
11601 F:      include/media/i2c/mt9t112.h
11602
11603 MT9V032 APTINA CAMERA SENSOR
11604 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11605 L:      linux-media@vger.kernel.org
11606 S:      Maintained
11607 T:      git git://linuxtv.org/media_tree.git
11608 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11609 F:      drivers/media/i2c/mt9v032.c
11610 F:      include/media/i2c/mt9v032.h
11611
11612 MT9V111 APTINA CAMERA SENSOR
11613 M:      Jacopo Mondi <jacopo@jmondi.org>
11614 L:      linux-media@vger.kernel.org
11615 S:      Maintained
11616 T:      git git://linuxtv.org/media_tree.git
11617 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11618 F:      drivers/media/i2c/mt9v111.c
11619
11620 MULTIFUNCTION DEVICES (MFD)
11621 M:      Lee Jones <lee.jones@linaro.org>
11622 S:      Supported
11623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11624 F:      Documentation/devicetree/bindings/mfd/
11625 F:      drivers/mfd/
11626 F:      include/dt-bindings/mfd/
11627 F:      include/linux/mfd/
11628
11629 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11630 S:      Orphan
11631 F:      drivers/mmc/host/mmc_spi.c
11632 F:      include/linux/spi/mmc_spi.h
11633
11634 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11635 M:      Ulf Hansson <ulf.hansson@linaro.org>
11636 L:      linux-mmc@vger.kernel.org
11637 S:      Maintained
11638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11639 F:      Documentation/devicetree/bindings/mmc/
11640 F:      drivers/mmc/
11641 F:      include/linux/mmc/
11642 F:      include/uapi/linux/mmc/
11643
11644 MULTIPLEXER SUBSYSTEM
11645 M:      Peter Rosin <peda@axentia.se>
11646 S:      Maintained
11647 F:      Documentation/ABI/testing/sysfs-class-mux*
11648 F:      Documentation/devicetree/bindings/mux/
11649 F:      drivers/mux/
11650 F:      include/dt-bindings/mux/
11651 F:      include/linux/mux/
11652
11653 MULTITECH MULTIPORT CARD (ISICOM)
11654 S:      Orphan
11655 F:      drivers/tty/isicom.c
11656 F:      include/linux/isicom.h
11657
11658 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11659 M:      Bin Liu <b-liu@ti.com>
11660 L:      linux-usb@vger.kernel.org
11661 S:      Maintained
11662 F:      drivers/usb/musb/
11663
11664 MXL301RF MEDIA DRIVER
11665 M:      Akihiro Tsukada <tskd08@gmail.com>
11666 L:      linux-media@vger.kernel.org
11667 S:      Odd Fixes
11668 F:      drivers/media/tuners/mxl301rf*
11669
11670 MXL5007T MEDIA DRIVER
11671 M:      Michael Krufky <mkrufky@linuxtv.org>
11672 L:      linux-media@vger.kernel.org
11673 S:      Maintained
11674 W:      https://linuxtv.org
11675 W:      http://github.com/mkrufky
11676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11677 T:      git git://linuxtv.org/mkrufky/tuners.git
11678 F:      drivers/media/tuners/mxl5007t.*
11679
11680 MXSFB DRM DRIVER
11681 M:      Marek Vasut <marex@denx.de>
11682 M:      Stefan Agner <stefan@agner.ch>
11683 L:      dri-devel@lists.freedesktop.org
11684 S:      Supported
11685 T:      git git://anongit.freedesktop.org/drm/drm-misc
11686 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11687 F:      drivers/gpu/drm/mxsfb/
11688
11689 MYLEX DAC960 PCI RAID Controller
11690 M:      Hannes Reinecke <hare@kernel.org>
11691 L:      linux-scsi@vger.kernel.org
11692 S:      Supported
11693 F:      drivers/scsi/myrb.*
11694 F:      drivers/scsi/myrs.*
11695
11696 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11697 M:      Chris Lee <christopher.lee@cspi.com>
11698 L:      netdev@vger.kernel.org
11699 S:      Supported
11700 W:      https://www.cspi.com/ethernet-products/support/downloads/
11701 F:      drivers/net/ethernet/myricom/myri10ge/
11702
11703 NAND FLASH SUBSYSTEM
11704 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11705 R:      Richard Weinberger <richard@nod.at>
11706 L:      linux-mtd@lists.infradead.org
11707 S:      Maintained
11708 W:      http://www.linux-mtd.infradead.org/
11709 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11710 C:      irc://irc.oftc.net/mtd
11711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11712 F:      drivers/mtd/nand/
11713 F:      include/linux/mtd/*nand*.h
11714
11715 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11716 M:      Daniel Mack <zonque@gmail.com>
11717 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11718 S:      Maintained
11719 W:      http://www.native-instruments.com
11720 F:      sound/usb/caiaq/
11721
11722 NATSEMI ETHERNET DRIVER (DP8381x)
11723 S:      Orphan
11724 F:      drivers/net/ethernet/natsemi/natsemi.c
11725
11726 NCR 5380 SCSI DRIVERS
11727 M:      Finn Thain <fthain@telegraphics.com.au>
11728 M:      Michael Schmitz <schmitzmic@gmail.com>
11729 L:      linux-scsi@vger.kernel.org
11730 S:      Maintained
11731 F:      Documentation/scsi/g_NCR5380.rst
11732 F:      drivers/scsi/NCR5380.*
11733 F:      drivers/scsi/arm/cumana_1.c
11734 F:      drivers/scsi/arm/oak.c
11735 F:      drivers/scsi/atari_scsi.*
11736 F:      drivers/scsi/dmx3191d.c
11737 F:      drivers/scsi/g_NCR5380.*
11738 F:      drivers/scsi/mac_scsi.*
11739 F:      drivers/scsi/sun3_scsi.*
11740 F:      drivers/scsi/sun3_scsi_vme.c
11741
11742 NCSI LIBRARY
11743 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11744 S:      Maintained
11745 F:      net/ncsi/
11746
11747 NCT6775 HARDWARE MONITOR DRIVER
11748 M:      Guenter Roeck <linux@roeck-us.net>
11749 L:      linux-hwmon@vger.kernel.org
11750 S:      Maintained
11751 F:      Documentation/hwmon/nct6775.rst
11752 F:      drivers/hwmon/nct6775.c
11753
11754 NETDEVSIM
11755 M:      Jakub Kicinski <kuba@kernel.org>
11756 S:      Maintained
11757 F:      drivers/net/netdevsim/*
11758
11759 NETEM NETWORK EMULATOR
11760 M:      Stephen Hemminger <stephen@networkplumber.org>
11761 L:      netdev@vger.kernel.org
11762 S:      Maintained
11763 F:      net/sched/sch_netem.c
11764
11765 NETERION 10GbE DRIVERS (s2io/vxge)
11766 M:      Jon Mason <jdmason@kudzu.us>
11767 L:      netdev@vger.kernel.org
11768 S:      Supported
11769 F:      Documentation/networking/device_drivers/neterion/s2io.rst
11770 F:      Documentation/networking/device_drivers/neterion/vxge.rst
11771 F:      drivers/net/ethernet/neterion/
11772
11773 NETFILTER
11774 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11775 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11776 M:      Florian Westphal <fw@strlen.de>
11777 L:      netfilter-devel@vger.kernel.org
11778 L:      coreteam@netfilter.org
11779 S:      Maintained
11780 W:      http://www.netfilter.org/
11781 W:      http://www.iptables.org/
11782 W:      http://www.nftables.org/
11783 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11786 F:      include/linux/netfilter*
11787 F:      include/linux/netfilter/
11788 F:      include/net/netfilter/
11789 F:      include/uapi/linux/netfilter*
11790 F:      include/uapi/linux/netfilter/
11791 F:      net/*/netfilter.c
11792 F:      net/*/netfilter/
11793 F:      net/bridge/br_netfilter*.c
11794 F:      net/netfilter/
11795
11796 NETROM NETWORK LAYER
11797 M:      Ralf Baechle <ralf@linux-mips.org>
11798 L:      linux-hams@vger.kernel.org
11799 S:      Maintained
11800 W:      http://www.linux-ax25.org/
11801 F:      include/net/netrom.h
11802 F:      include/uapi/linux/netrom.h
11803 F:      net/netrom/
11804
11805 NETRONOME ETHERNET DRIVERS
11806 M:      Jakub Kicinski <kuba@kernel.org>
11807 L:      oss-drivers@netronome.com
11808 S:      Maintained
11809 F:      drivers/net/ethernet/netronome/
11810
11811 NETWORK BLOCK DEVICE (NBD)
11812 M:      Josef Bacik <josef@toxicpanda.com>
11813 L:      linux-block@vger.kernel.org
11814 L:      nbd@other.debian.org
11815 S:      Maintained
11816 F:      Documentation/admin-guide/blockdev/nbd.rst
11817 F:      drivers/block/nbd.c
11818 F:      include/trace/events/nbd.h
11819 F:      include/uapi/linux/nbd.h
11820
11821 NETWORK DROP MONITOR
11822 M:      Neil Horman <nhorman@tuxdriver.com>
11823 L:      netdev@vger.kernel.org
11824 S:      Maintained
11825 W:      https://fedorahosted.org/dropwatch/
11826 F:      include/net/drop_monitor.h
11827 F:      include/uapi/linux/net_dropmon.h
11828 F:      net/core/drop_monitor.c
11829
11830 NETWORKING DRIVERS
11831 M:      "David S. Miller" <davem@davemloft.net>
11832 M:      Jakub Kicinski <kuba@kernel.org>
11833 L:      netdev@vger.kernel.org
11834 S:      Maintained
11835 W:      http://www.linuxfoundation.org/en/Net
11836 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11839 F:      Documentation/devicetree/bindings/net/
11840 F:      drivers/net/
11841 F:      include/linux/etherdevice.h
11842 F:      include/linux/fcdevice.h
11843 F:      include/linux/fddidevice.h
11844 F:      include/linux/hippidevice.h
11845 F:      include/linux/if_*
11846 F:      include/linux/inetdevice.h
11847 F:      include/linux/netdevice.h
11848 F:      include/uapi/linux/if_*
11849 F:      include/uapi/linux/netdevice.h
11850
11851 NETWORKING DRIVERS (WIRELESS)
11852 M:      Kalle Valo <kvalo@codeaurora.org>
11853 L:      linux-wireless@vger.kernel.org
11854 S:      Maintained
11855 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11858 F:      Documentation/devicetree/bindings/net/wireless/
11859 F:      drivers/net/wireless/
11860
11861 NETWORKING [DSA]
11862 M:      Andrew Lunn <andrew@lunn.ch>
11863 M:      Vivien Didelot <vivien.didelot@gmail.com>
11864 M:      Florian Fainelli <f.fainelli@gmail.com>
11865 S:      Maintained
11866 F:      Documentation/devicetree/bindings/net/dsa/
11867 F:      drivers/net/dsa/
11868 F:      include/linux/dsa/
11869 F:      include/linux/platform_data/dsa.h
11870 F:      include/net/dsa.h
11871 F:      net/dsa/
11872
11873 NETWORKING [GENERAL]
11874 M:      "David S. Miller" <davem@davemloft.net>
11875 M:      Jakub Kicinski <kuba@kernel.org>
11876 L:      netdev@vger.kernel.org
11877 S:      Maintained
11878 W:      http://www.linuxfoundation.org/en/Net
11879 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11880 B:      mailto:netdev@vger.kernel.org
11881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11883 F:      Documentation/networking/
11884 F:      include/linux/in.h
11885 F:      include/linux/net.h
11886 F:      include/linux/netdevice.h
11887 F:      include/net/
11888 F:      include/uapi/linux/in.h
11889 F:      include/uapi/linux/net.h
11890 F:      include/uapi/linux/net_namespace.h
11891 F:      include/uapi/linux/netdevice.h
11892 F:      lib/net_utils.c
11893 F:      lib/random32.c
11894 F:      net/
11895 F:      tools/testing/selftests/net/
11896
11897 NETWORKING [IPSEC]
11898 M:      Steffen Klassert <steffen.klassert@secunet.com>
11899 M:      Herbert Xu <herbert@gondor.apana.org.au>
11900 M:      "David S. Miller" <davem@davemloft.net>
11901 L:      netdev@vger.kernel.org
11902 S:      Maintained
11903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11905 F:      include/net/xfrm.h
11906 F:      include/uapi/linux/xfrm.h
11907 F:      net/ipv4/ah4.c
11908 F:      net/ipv4/esp4*
11909 F:      net/ipv4/ip_vti.c
11910 F:      net/ipv4/ipcomp.c
11911 F:      net/ipv4/xfrm*
11912 F:      net/ipv6/ah6.c
11913 F:      net/ipv6/esp6*
11914 F:      net/ipv6/ip6_vti.c
11915 F:      net/ipv6/ipcomp6.c
11916 F:      net/ipv6/xfrm*
11917 F:      net/key/
11918 F:      net/xfrm/
11919
11920 NETWORKING [IPv4/IPv6]
11921 M:      "David S. Miller" <davem@davemloft.net>
11922 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11923 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11924 L:      netdev@vger.kernel.org
11925 S:      Maintained
11926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11927 F:      arch/x86/net/*
11928 F:      include/net/ip*
11929 F:      net/ipv4/
11930 F:      net/ipv6/
11931
11932 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11933 M:      Paul Moore <paul@paul-moore.com>
11934 L:      netdev@vger.kernel.org
11935 L:      linux-security-module@vger.kernel.org
11936 S:      Maintained
11937 W:      https://github.com/netlabel
11938 F:      Documentation/netlabel/
11939 F:      include/net/calipso.h
11940 F:      include/net/cipso_ipv4.h
11941 F:      include/net/netlabel.h
11942 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11943 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11944 F:      net/ipv4/cipso_ipv4.c
11945 F:      net/ipv6/calipso.c
11946 F:      net/netfilter/xt_CONNSECMARK.c
11947 F:      net/netfilter/xt_SECMARK.c
11948 F:      net/netlabel/
11949
11950 NETWORKING [MPTCP]
11951 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11952 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11953 L:      netdev@vger.kernel.org
11954 L:      mptcp@lists.01.org
11955 S:      Maintained
11956 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11957 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11958 F:      include/net/mptcp.h
11959 F:      include/uapi/linux/mptcp.h
11960 F:      net/mptcp/
11961 F:      tools/testing/selftests/net/mptcp/
11962
11963 NETWORKING [TCP]
11964 M:      Eric Dumazet <edumazet@google.com>
11965 L:      netdev@vger.kernel.org
11966 S:      Maintained
11967 F:      include/linux/tcp.h
11968 F:      include/net/tcp.h
11969 F:      include/trace/events/tcp.h
11970 F:      include/uapi/linux/tcp.h
11971 F:      net/ipv4/syncookies.c
11972 F:      net/ipv4/tcp*.c
11973 F:      net/ipv6/syncookies.c
11974 F:      net/ipv6/tcp*.c
11975
11976 NETWORKING [TLS]
11977 M:      Boris Pismenny <borisp@mellanox.com>
11978 M:      Aviad Yehezkel <aviadye@mellanox.com>
11979 M:      John Fastabend <john.fastabend@gmail.com>
11980 M:      Daniel Borkmann <daniel@iogearbox.net>
11981 M:      Jakub Kicinski <kuba@kernel.org>
11982 L:      netdev@vger.kernel.org
11983 S:      Maintained
11984 F:      include/net/tls.h
11985 F:      include/uapi/linux/tls.h
11986 F:      net/tls/*
11987
11988 NETWORKING [WIRELESS]
11989 L:      linux-wireless@vger.kernel.org
11990 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11991
11992 NETXEN (1/10) GbE SUPPORT
11993 M:      Manish Chopra <manishc@marvell.com>
11994 M:      Rahul Verma <rahulv@marvell.com>
11995 M:      GR-Linux-NIC-Dev@marvell.com
11996 L:      netdev@vger.kernel.org
11997 S:      Supported
11998 F:      drivers/net/ethernet/qlogic/netxen/
11999
12000 NET_FAILOVER MODULE
12001 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
12002 L:      netdev@vger.kernel.org
12003 S:      Supported
12004 F:      Documentation/networking/net_failover.rst
12005 F:      drivers/net/net_failover.c
12006 F:      include/net/net_failover.h
12007
12008 NEXTHOP
12009 M:      David Ahern <dsahern@kernel.org>
12010 L:      netdev@vger.kernel.org
12011 S:      Maintained
12012 F:      include/net/netns/nexthop.h
12013 F:      include/net/nexthop.h
12014 F:      include/uapi/linux/nexthop.h
12015 F:      net/ipv4/nexthop.c
12016
12017 NFC SUBSYSTEM
12018 L:      netdev@vger.kernel.org
12019 S:      Orphan
12020 F:      Documentation/devicetree/bindings/net/nfc/
12021 F:      drivers/nfc/
12022 F:      include/linux/platform_data/nfcmrvl.h
12023 F:      include/net/nfc/
12024 F:      include/uapi/linux/nfc.h
12025 F:      net/nfc/
12026
12027 NFS, SUNRPC, AND LOCKD CLIENTS
12028 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
12029 M:      Anna Schumaker <anna.schumaker@netapp.com>
12030 L:      linux-nfs@vger.kernel.org
12031 S:      Maintained
12032 W:      http://client.linux-nfs.org
12033 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
12034 F:      fs/lockd/
12035 F:      fs/nfs/
12036 F:      fs/nfs_common/
12037 F:      include/linux/lockd/
12038 F:      include/linux/nfs*
12039 F:      include/linux/sunrpc/
12040 F:      include/uapi/linux/nfs*
12041 F:      include/uapi/linux/sunrpc/
12042 F:      net/sunrpc/
12043
12044 NILFS2 FILESYSTEM
12045 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
12046 L:      linux-nilfs@vger.kernel.org
12047 S:      Supported
12048 W:      https://nilfs.sourceforge.io/
12049 W:      https://nilfs.osdn.jp/
12050 T:      git git://github.com/konis/nilfs2.git
12051 F:      Documentation/filesystems/nilfs2.rst
12052 F:      fs/nilfs2/
12053 F:      include/trace/events/nilfs2.h
12054 F:      include/uapi/linux/nilfs2_api.h
12055 F:      include/uapi/linux/nilfs2_ondisk.h
12056
12057 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
12058 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12059 S:      Maintained
12060 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12061 F:      Documentation/scsi/NinjaSCSI.rst
12062 F:      drivers/scsi/pcmcia/nsp_*
12063
12064 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
12065 M:      GOTO Masanori <gotom@debian.or.jp>
12066 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
12067 S:      Maintained
12068 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
12069 F:      Documentation/scsi/NinjaSCSI.rst
12070 F:      drivers/scsi/nsp32*
12071
12072 NIOS2 ARCHITECTURE
12073 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12074 S:      Maintained
12075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
12076 F:      arch/nios2/
12077
12078 NOHZ, DYNTICKS SUPPORT
12079 M:      Frederic Weisbecker <fweisbec@gmail.com>
12080 M:      Thomas Gleixner <tglx@linutronix.de>
12081 M:      Ingo Molnar <mingo@kernel.org>
12082 L:      linux-kernel@vger.kernel.org
12083 S:      Maintained
12084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
12085 F:      include/linux/sched/nohz.h
12086 F:      include/linux/tick.h
12087 F:      kernel/time/tick*.*
12088
12089 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
12090 M:      Pavel Machek <pavel@ucw.cz>
12091 M:      Sakari Ailus <sakari.ailus@iki.fi>
12092 L:      linux-media@vger.kernel.org
12093 S:      Maintained
12094 F:      drivers/media/i2c/ad5820.c
12095 F:      drivers/media/i2c/et8ek8
12096
12097 NOKIA N900 POWER SUPPLY DRIVERS
12098 R:      Pali Rohár <pali@kernel.org>
12099 F:      drivers/power/supply/bq2415x_charger.c
12100 F:      drivers/power/supply/bq27xxx_battery.c
12101 F:      drivers/power/supply/bq27xxx_battery_i2c.c
12102 F:      drivers/power/supply/isp1704_charger.c
12103 F:      drivers/power/supply/rx51_battery.c
12104 F:      include/linux/power/bq2415x_charger.h
12105 F:      include/linux/power/bq27xxx_battery.h
12106
12107 NOLIBC HEADER FILE
12108 M:      Willy Tarreau <w@1wt.eu>
12109 S:      Maintained
12110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
12111 F:      tools/include/nolibc/
12112
12113 NSDEPS
12114 M:      Matthias Maennich <maennich@google.com>
12115 S:      Maintained
12116 F:      Documentation/core-api/symbol-namespaces.rst
12117 F:      scripts/nsdeps
12118
12119 NTB AMD DRIVER
12120 M:      Sanjay R Mehta <sanju.mehta@amd.com>
12121 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
12122 L:      linux-ntb@googlegroups.com
12123 S:      Supported
12124 F:      drivers/ntb/hw/amd/
12125
12126 NTB DRIVER CORE
12127 M:      Jon Mason <jdmason@kudzu.us>
12128 M:      Dave Jiang <dave.jiang@intel.com>
12129 M:      Allen Hubbe <allenbh@gmail.com>
12130 L:      linux-ntb@googlegroups.com
12131 S:      Supported
12132 W:      https://github.com/jonmason/ntb/wiki
12133 T:      git git://github.com/jonmason/ntb.git
12134 F:      drivers/net/ntb_netdev.c
12135 F:      drivers/ntb/
12136 F:      include/linux/ntb.h
12137 F:      include/linux/ntb_transport.h
12138 F:      tools/testing/selftests/ntb/
12139
12140 NTB IDT DRIVER
12141 M:      Serge Semin <fancer.lancer@gmail.com>
12142 L:      linux-ntb@googlegroups.com
12143 S:      Supported
12144 F:      drivers/ntb/hw/idt/
12145
12146 NTB INTEL DRIVER
12147 M:      Dave Jiang <dave.jiang@intel.com>
12148 L:      linux-ntb@googlegroups.com
12149 S:      Supported
12150 W:      https://github.com/davejiang/linux/wiki
12151 T:      git https://github.com/davejiang/linux.git
12152 F:      drivers/ntb/hw/intel/
12153
12154 NTFS FILESYSTEM
12155 M:      Anton Altaparmakov <anton@tuxera.com>
12156 L:      linux-ntfs-dev@lists.sourceforge.net
12157 S:      Supported
12158 W:      http://www.tuxera.com/
12159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12160 F:      Documentation/filesystems/ntfs.rst
12161 F:      fs/ntfs/
12162
12163 NUBUS SUBSYSTEM
12164 M:      Finn Thain <fthain@telegraphics.com.au>
12165 L:      linux-m68k@lists.linux-m68k.org
12166 S:      Maintained
12167 F:      arch/*/include/asm/nubus.h
12168 F:      drivers/nubus/
12169 F:      include/linux/nubus.h
12170 F:      include/uapi/linux/nubus.h
12171
12172 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12173 M:      Antonino Daplas <adaplas@gmail.com>
12174 L:      linux-fbdev@vger.kernel.org
12175 S:      Maintained
12176 F:      drivers/video/fbdev/nvidia/
12177 F:      drivers/video/fbdev/riva/
12178
12179 NVM EXPRESS DRIVER
12180 M:      Keith Busch <kbusch@kernel.org>
12181 M:      Jens Axboe <axboe@fb.com>
12182 M:      Christoph Hellwig <hch@lst.de>
12183 M:      Sagi Grimberg <sagi@grimberg.me>
12184 L:      linux-nvme@lists.infradead.org
12185 S:      Supported
12186 W:      http://git.infradead.org/nvme.git
12187 T:      git://git.infradead.org/nvme.git
12188 F:      drivers/nvme/host/
12189 F:      include/linux/nvme.h
12190 F:      include/uapi/linux/nvme_ioctl.h
12191
12192 NVM EXPRESS FC TRANSPORT DRIVERS
12193 M:      James Smart <james.smart@broadcom.com>
12194 L:      linux-nvme@lists.infradead.org
12195 S:      Supported
12196 F:      drivers/nvme/host/fc.c
12197 F:      drivers/nvme/target/fc.c
12198 F:      drivers/nvme/target/fcloop.c
12199 F:      include/linux/nvme-fc-driver.h
12200 F:      include/linux/nvme-fc.h
12201
12202 NVM EXPRESS TARGET DRIVER
12203 M:      Christoph Hellwig <hch@lst.de>
12204 M:      Sagi Grimberg <sagi@grimberg.me>
12205 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12206 L:      linux-nvme@lists.infradead.org
12207 S:      Supported
12208 W:      http://git.infradead.org/nvme.git
12209 T:      git://git.infradead.org/nvme.git
12210 F:      drivers/nvme/target/
12211
12212 NVMEM FRAMEWORK
12213 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12214 S:      Maintained
12215 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12216 F:      Documentation/devicetree/bindings/nvmem/
12217 F:      drivers/nvmem/
12218 F:      include/linux/nvmem-consumer.h
12219 F:      include/linux/nvmem-provider.h
12220
12221 NXP FSPI DRIVER
12222 M:      Ashish Kumar <ashish.kumar@nxp.com>
12223 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12224 L:      linux-spi@vger.kernel.org
12225 S:      Maintained
12226 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12227 F:      drivers/spi/spi-nxp-fspi.c
12228
12229 NXP FXAS21002C DRIVER
12230 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12231 L:      linux-iio@vger.kernel.org
12232 S:      Maintained
12233 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12234 F:      drivers/iio/gyro/fxas21002c.h
12235 F:      drivers/iio/gyro/fxas21002c_core.c
12236 F:      drivers/iio/gyro/fxas21002c_i2c.c
12237 F:      drivers/iio/gyro/fxas21002c_spi.c
12238
12239 NXP SGTL5000 DRIVER
12240 M:      Fabio Estevam <festevam@gmail.com>
12241 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12242 S:      Maintained
12243 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12244 F:      sound/soc/codecs/sgtl5000*
12245
12246 NXP SJA1105 ETHERNET SWITCH DRIVER
12247 M:      Vladimir Oltean <olteanv@gmail.com>
12248 L:      linux-kernel@vger.kernel.org
12249 S:      Maintained
12250 F:      drivers/net/dsa/sja1105
12251
12252 NXP TDA998X DRM DRIVER
12253 M:      Russell King <linux@armlinux.org.uk>
12254 S:      Maintained
12255 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12256 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12257 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12258 F:      include/drm/i2c/tda998x.h
12259 F:      include/dt-bindings/display/tda998x.h
12260 K:      "nxp,tda998x"
12261
12262 NXP TFA9879 DRIVER
12263 M:      Peter Rosin <peda@axentia.se>
12264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12265 S:      Maintained
12266 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12267 F:      sound/soc/codecs/tfa9879*
12268
12269 NXP-NCI NFC DRIVER
12270 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12271 R:      Charles Gorand <charles.gorand@effinnov.com>
12272 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12273 S:      Supported
12274 F:      drivers/nfc/nxp-nci
12275
12276 OBJAGG
12277 M:      Jiri Pirko <jiri@mellanox.com>
12278 L:      netdev@vger.kernel.org
12279 S:      Supported
12280 F:      include/linux/objagg.h
12281 F:      lib/objagg.c
12282 F:      lib/test_objagg.c
12283
12284 OBJTOOL
12285 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12286 M:      Peter Zijlstra <peterz@infradead.org>
12287 S:      Supported
12288 F:      tools/objtool/
12289
12290 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12291 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12292 M:      Andrew Donnellan <ajd@linux.ibm.com>
12293 L:      linuxppc-dev@lists.ozlabs.org
12294 S:      Supported
12295 F:      Documentation/userspace-api/accelerators/ocxl.rst
12296 F:      arch/powerpc/include/asm/pnv-ocxl.h
12297 F:      arch/powerpc/platforms/powernv/ocxl.c
12298 F:      drivers/misc/ocxl/
12299 F:      include/misc/ocxl*
12300 F:      include/uapi/misc/ocxl.h
12301
12302 OMAP AUDIO SUPPORT
12303 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12304 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12305 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12306 L:      linux-omap@vger.kernel.org
12307 S:      Maintained
12308 F:      sound/soc/ti/n810.c
12309 F:      sound/soc/ti/omap*
12310 F:      sound/soc/ti/rx51.c
12311 F:      sound/soc/ti/sdma-pcm.*
12312
12313 OMAP CLOCK FRAMEWORK SUPPORT
12314 M:      Paul Walmsley <paul@pwsan.com>
12315 L:      linux-omap@vger.kernel.org
12316 S:      Maintained
12317 F:      arch/arm/*omap*/*clock*
12318
12319 OMAP DEVICE TREE SUPPORT
12320 M:      Benoît Cousson <bcousson@baylibre.com>
12321 M:      Tony Lindgren <tony@atomide.com>
12322 L:      linux-omap@vger.kernel.org
12323 L:      devicetree@vger.kernel.org
12324 S:      Maintained
12325 F:      arch/arm/boot/dts/*am3*
12326 F:      arch/arm/boot/dts/*am4*
12327 F:      arch/arm/boot/dts/*am5*
12328 F:      arch/arm/boot/dts/*dra7*
12329 F:      arch/arm/boot/dts/*omap*
12330 F:      arch/arm/boot/dts/logicpd-som-lv*
12331 F:      arch/arm/boot/dts/logicpd-torpedo*
12332
12333 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12334 L:      linux-omap@vger.kernel.org
12335 L:      linux-fbdev@vger.kernel.org
12336 S:      Orphan
12337 F:      Documentation/arm/omap/dss.rst
12338 F:      drivers/video/fbdev/omap2/
12339
12340 OMAP FRAMEBUFFER SUPPORT
12341 L:      linux-fbdev@vger.kernel.org
12342 L:      linux-omap@vger.kernel.org
12343 S:      Orphan
12344 F:      drivers/video/fbdev/omap/
12345
12346 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12347 M:      Roger Quadros <rogerq@ti.com>
12348 M:      Tony Lindgren <tony@atomide.com>
12349 L:      linux-omap@vger.kernel.org
12350 S:      Maintained
12351 F:      arch/arm/mach-omap2/*gpmc*
12352 F:      drivers/memory/omap-gpmc.c
12353
12354 OMAP GPIO DRIVER
12355 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12356 M:      Santosh Shilimkar <ssantosh@kernel.org>
12357 M:      Kevin Hilman <khilman@kernel.org>
12358 L:      linux-omap@vger.kernel.org
12359 S:      Maintained
12360 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12361 F:      drivers/gpio/gpio-omap.c
12362
12363 OMAP HARDWARE SPINLOCK SUPPORT
12364 M:      Ohad Ben-Cohen <ohad@wizery.com>
12365 L:      linux-omap@vger.kernel.org
12366 S:      Maintained
12367 F:      drivers/hwspinlock/omap_hwspinlock.c
12368
12369 OMAP HS MMC SUPPORT
12370 L:      linux-mmc@vger.kernel.org
12371 L:      linux-omap@vger.kernel.org
12372 S:      Orphan
12373 F:      drivers/mmc/host/omap_hsmmc.c
12374
12375 OMAP HWMOD DATA
12376 M:      Paul Walmsley <paul@pwsan.com>
12377 L:      linux-omap@vger.kernel.org
12378 S:      Maintained
12379 F:      arch/arm/mach-omap2/omap_hwmod*data*
12380
12381 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12382 M:      Benoît Cousson <bcousson@baylibre.com>
12383 L:      linux-omap@vger.kernel.org
12384 S:      Maintained
12385 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12386
12387 OMAP HWMOD SUPPORT
12388 M:      Benoît Cousson <bcousson@baylibre.com>
12389 M:      Paul Walmsley <paul@pwsan.com>
12390 L:      linux-omap@vger.kernel.org
12391 S:      Maintained
12392 F:      arch/arm/mach-omap2/omap_hwmod.*
12393
12394 OMAP I2C DRIVER
12395 M:      Vignesh R <vigneshr@ti.com>
12396 L:      linux-omap@vger.kernel.org
12397 L:      linux-i2c@vger.kernel.org
12398 S:      Maintained
12399 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12400 F:      drivers/i2c/busses/i2c-omap.c
12401
12402 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12403 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12404 L:      linux-media@vger.kernel.org
12405 S:      Maintained
12406 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12407 F:      drivers/media/platform/omap3isp/
12408 F:      drivers/staging/media/omap4iss/
12409
12410 OMAP MMC SUPPORT
12411 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12412 L:      linux-omap@vger.kernel.org
12413 S:      Odd Fixes
12414 F:      drivers/mmc/host/omap.c
12415
12416 OMAP POWER MANAGEMENT SUPPORT
12417 M:      Kevin Hilman <khilman@kernel.org>
12418 L:      linux-omap@vger.kernel.org
12419 S:      Maintained
12420 F:      arch/arm/*omap*/*pm*
12421 F:      drivers/cpufreq/omap-cpufreq.c
12422
12423 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12424 M:      Rajendra Nayak <rnayak@codeaurora.org>
12425 M:      Paul Walmsley <paul@pwsan.com>
12426 L:      linux-omap@vger.kernel.org
12427 S:      Maintained
12428 F:      arch/arm/mach-omap2/prm*
12429
12430 OMAP RANDOM NUMBER GENERATOR SUPPORT
12431 M:      Deepak Saxena <dsaxena@plexity.net>
12432 S:      Maintained
12433 F:      drivers/char/hw_random/omap-rng.c
12434
12435 OMAP USB SUPPORT
12436 L:      linux-usb@vger.kernel.org
12437 L:      linux-omap@vger.kernel.org
12438 S:      Orphan
12439 F:      arch/arm/*omap*/usb*
12440 F:      drivers/usb/*/*omap*
12441
12442 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12443 M:      Mark Jackson <mpfj@newflow.co.uk>
12444 L:      linux-omap@vger.kernel.org
12445 S:      Maintained
12446 F:      arch/arm/boot/dts/am335x-nano.dts
12447
12448 OMAP1 SUPPORT
12449 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12450 M:      Tony Lindgren <tony@atomide.com>
12451 L:      linux-omap@vger.kernel.org
12452 S:      Maintained
12453 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12455 F:      arch/arm/configs/omap1_defconfig
12456 F:      arch/arm/mach-omap1/
12457 F:      arch/arm/plat-omap/
12458 F:      drivers/i2c/busses/i2c-omap.c
12459 F:      include/linux/platform_data/ams-delta-fiq.h
12460 F:      include/linux/platform_data/i2c-omap.h
12461
12462 OMAP2+ SUPPORT
12463 M:      Tony Lindgren <tony@atomide.com>
12464 L:      linux-omap@vger.kernel.org
12465 S:      Maintained
12466 W:      http://www.muru.com/linux/omap/
12467 W:      http://linux.omap.com/
12468 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12470 F:      arch/arm/configs/omap2plus_defconfig
12471 F:      arch/arm/mach-omap2/
12472 F:      arch/arm/plat-omap/
12473 F:      drivers/bus/ti-sysc.c
12474 F:      drivers/i2c/busses/i2c-omap.c
12475 F:      drivers/irqchip/irq-omap-intc.c
12476 F:      drivers/mfd/*omap*.c
12477 F:      drivers/mfd/menelaus.c
12478 F:      drivers/mfd/palmas.c
12479 F:      drivers/mfd/tps65217.c
12480 F:      drivers/mfd/tps65218.c
12481 F:      drivers/mfd/tps65910.c
12482 F:      drivers/mfd/twl-core.[ch]
12483 F:      drivers/mfd/twl4030*.c
12484 F:      drivers/mfd/twl6030*.c
12485 F:      drivers/mfd/twl6040*.c
12486 F:      drivers/regulator/palmas-regulator*.c
12487 F:      drivers/regulator/pbias-regulator.c
12488 F:      drivers/regulator/tps65217-regulator.c
12489 F:      drivers/regulator/tps65218-regulator.c
12490 F:      drivers/regulator/tps65910-regulator.c
12491 F:      drivers/regulator/twl-regulator.c
12492 F:      drivers/regulator/twl6030-regulator.c
12493 F:      include/linux/platform_data/i2c-omap.h
12494 F:      include/linux/platform_data/ti-sysc.h
12495
12496 OMFS FILESYSTEM
12497 M:      Bob Copeland <me@bobcopeland.com>
12498 L:      linux-karma-devel@lists.sourceforge.net
12499 S:      Maintained
12500 F:      Documentation/filesystems/omfs.rst
12501 F:      fs/omfs/
12502
12503 OMNIKEY CARDMAN 4000 DRIVER
12504 M:      Harald Welte <laforge@gnumonks.org>
12505 S:      Maintained
12506 F:      drivers/char/pcmcia/cm4000_cs.c
12507 F:      include/linux/cm4000_cs.h
12508 F:      include/uapi/linux/cm4000_cs.h
12509
12510 OMNIKEY CARDMAN 4040 DRIVER
12511 M:      Harald Welte <laforge@gnumonks.org>
12512 S:      Maintained
12513 F:      drivers/char/pcmcia/cm4040_cs.*
12514
12515 OMNIVISION OV13858 SENSOR DRIVER
12516 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12517 L:      linux-media@vger.kernel.org
12518 S:      Maintained
12519 T:      git git://linuxtv.org/media_tree.git
12520 F:      drivers/media/i2c/ov13858.c
12521
12522 OMNIVISION OV2680 SENSOR DRIVER
12523 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12524 L:      linux-media@vger.kernel.org
12525 S:      Maintained
12526 T:      git git://linuxtv.org/media_tree.git
12527 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12528 F:      drivers/media/i2c/ov2680.c
12529
12530 OMNIVISION OV2685 SENSOR DRIVER
12531 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12532 L:      linux-media@vger.kernel.org
12533 S:      Maintained
12534 T:      git git://linuxtv.org/media_tree.git
12535 F:      drivers/media/i2c/ov2685.c
12536
12537 OMNIVISION OV2740 SENSOR DRIVER
12538 M:      Tianshu Qiu <tian.shu.qiua@intel.com>
12539 R:      Shawn Tu <shawnx.tu@intel.com>
12540 R:      Bingbu Cao <bingbu.cao@intel.com>
12541 L:      linux-media@vger.kernel.org
12542 S:      Maintained
12543 T:      git git://linuxtv.org/media_tree.git
12544 F:      drivers/media/i2c/ov2740.c
12545
12546 OMNIVISION OV5640 SENSOR DRIVER
12547 M:      Steve Longerbeam <slongerbeam@gmail.com>
12548 L:      linux-media@vger.kernel.org
12549 S:      Maintained
12550 T:      git git://linuxtv.org/media_tree.git
12551 F:      drivers/media/i2c/ov5640.c
12552
12553 OMNIVISION OV5647 SENSOR DRIVER
12554 M:      Luis Oliveira <lolivei@synopsys.com>
12555 L:      linux-media@vger.kernel.org
12556 S:      Maintained
12557 T:      git git://linuxtv.org/media_tree.git
12558 F:      drivers/media/i2c/ov5647.c
12559
12560 OMNIVISION OV5670 SENSOR DRIVER
12561 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12562 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12563 L:      linux-media@vger.kernel.org
12564 S:      Maintained
12565 T:      git git://linuxtv.org/media_tree.git
12566 F:      drivers/media/i2c/ov5670.c
12567
12568 OMNIVISION OV5675 SENSOR DRIVER
12569 M:      Shawn Tu <shawnx.tu@intel.com>
12570 L:      linux-media@vger.kernel.org
12571 S:      Maintained
12572 T:      git git://linuxtv.org/media_tree.git
12573 F:      drivers/media/i2c/ov5675.c
12574
12575 OMNIVISION OV5695 SENSOR DRIVER
12576 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12577 L:      linux-media@vger.kernel.org
12578 S:      Maintained
12579 T:      git git://linuxtv.org/media_tree.git
12580 F:      drivers/media/i2c/ov5695.c
12581
12582 OMNIVISION OV7670 SENSOR DRIVER
12583 M:      Jonathan Corbet <corbet@lwn.net>
12584 L:      linux-media@vger.kernel.org
12585 S:      Maintained
12586 T:      git git://linuxtv.org/media_tree.git
12587 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12588 F:      drivers/media/i2c/ov7670.c
12589
12590 OMNIVISION OV772x SENSOR DRIVER
12591 M:      Jacopo Mondi <jacopo@jmondi.org>
12592 L:      linux-media@vger.kernel.org
12593 S:      Odd fixes
12594 T:      git git://linuxtv.org/media_tree.git
12595 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12596 F:      drivers/media/i2c/ov772x.c
12597 F:      include/media/i2c/ov772x.h
12598
12599 OMNIVISION OV7740 SENSOR DRIVER
12600 M:      Wenyou Yang <wenyou.yang@microchip.com>
12601 L:      linux-media@vger.kernel.org
12602 S:      Maintained
12603 T:      git git://linuxtv.org/media_tree.git
12604 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12605 F:      drivers/media/i2c/ov7740.c
12606
12607 OMNIVISION OV8856 SENSOR DRIVER
12608 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
12609 L:      linux-media@vger.kernel.org
12610 S:      Maintained
12611 T:      git git://linuxtv.org/media_tree.git
12612 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
12613 F:      drivers/media/i2c/ov8856.c
12614
12615 OMNIVISION OV9640 SENSOR DRIVER
12616 M:      Petr Cvek <petrcvekcz@gmail.com>
12617 L:      linux-media@vger.kernel.org
12618 S:      Maintained
12619 F:      drivers/media/i2c/ov9640.*
12620
12621 OMNIVISION OV9650 SENSOR DRIVER
12622 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12623 R:      Akinobu Mita <akinobu.mita@gmail.com>
12624 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12625 L:      linux-media@vger.kernel.org
12626 S:      Maintained
12627 T:      git git://linuxtv.org/media_tree.git
12628 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12629 F:      drivers/media/i2c/ov9650.c
12630
12631 ONENAND FLASH DRIVER
12632 M:      Kyungmin Park <kyungmin.park@samsung.com>
12633 L:      linux-mtd@lists.infradead.org
12634 S:      Maintained
12635 F:      drivers/mtd/nand/onenand/
12636 F:      include/linux/mtd/onenand*.h
12637
12638 ONION OMEGA2+ BOARD
12639 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12640 L:      linux-mips@vger.kernel.org
12641 S:      Maintained
12642 F:      arch/mips/boot/dts/ralink/omega2p.dts
12643
12644 OP-TEE DRIVER
12645 M:      Jens Wiklander <jens.wiklander@linaro.org>
12646 L:      tee-dev@lists.linaro.org
12647 S:      Maintained
12648 F:      drivers/tee/optee/
12649
12650 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12651 M:      Sumit Garg <sumit.garg@linaro.org>
12652 L:      tee-dev@lists.linaro.org
12653 S:      Maintained
12654 F:      drivers/char/hw_random/optee-rng.c
12655
12656 OPA-VNIC DRIVER
12657 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12658 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12659 L:      linux-rdma@vger.kernel.org
12660 S:      Supported
12661 F:      drivers/infiniband/ulp/opa_vnic
12662
12663 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12664 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12665 M:      Frank Rowand <frowand.list@gmail.com>
12666 L:      devicetree@vger.kernel.org
12667 S:      Maintained
12668 F:      Documentation/devicetree/dynamic-resolution-notes.rst
12669 F:      Documentation/devicetree/overlay-notes.rst
12670 F:      drivers/of/overlay.c
12671 F:      drivers/of/resolver.c
12672 K:      of_overlay_notifier_
12673
12674 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12675 M:      Rob Herring <robh+dt@kernel.org>
12676 M:      Frank Rowand <frowand.list@gmail.com>
12677 L:      devicetree@vger.kernel.org
12678 S:      Maintained
12679 W:      http://www.devicetree.org/
12680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12681 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12682 F:      drivers/of/
12683 F:      include/linux/of*.h
12684 F:      scripts/dtc/
12685
12686 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12687 M:      Rob Herring <robh+dt@kernel.org>
12688 L:      devicetree@vger.kernel.org
12689 S:      Maintained
12690 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12692 F:      Documentation/devicetree/
12693 F:      arch/*/boot/dts/
12694 F:      include/dt-bindings/
12695
12696 OPENCORES I2C BUS DRIVER
12697 M:      Peter Korsgaard <peter@korsgaard.com>
12698 M:      Andrew Lunn <andrew@lunn.ch>
12699 L:      linux-i2c@vger.kernel.org
12700 S:      Maintained
12701 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12702 F:      Documentation/i2c/busses/i2c-ocores.rst
12703 F:      drivers/i2c/busses/i2c-ocores.c
12704 F:      include/linux/platform_data/i2c-ocores.h
12705
12706 OPENRISC ARCHITECTURE
12707 M:      Jonas Bonn <jonas@southpole.se>
12708 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12709 M:      Stafford Horne <shorne@gmail.com>
12710 L:      openrisc@lists.librecores.org
12711 S:      Maintained
12712 W:      http://openrisc.io
12713 T:      git git://github.com/openrisc/linux.git
12714 F:      Documentation/devicetree/bindings/openrisc/
12715 F:      Documentation/openrisc/
12716 F:      arch/openrisc/
12717 F:      drivers/irqchip/irq-ompic.c
12718 F:      drivers/irqchip/irq-or1k-*
12719
12720 OPENVSWITCH
12721 M:      Pravin B Shelar <pshelar@ovn.org>
12722 L:      netdev@vger.kernel.org
12723 L:      dev@openvswitch.org
12724 S:      Maintained
12725 W:      http://openvswitch.org
12726 F:      include/uapi/linux/openvswitch.h
12727 F:      net/openvswitch/
12728
12729 OPERATING PERFORMANCE POINTS (OPP)
12730 M:      Viresh Kumar <vireshk@kernel.org>
12731 M:      Nishanth Menon <nm@ti.com>
12732 M:      Stephen Boyd <sboyd@kernel.org>
12733 L:      linux-pm@vger.kernel.org
12734 S:      Maintained
12735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12736 F:      Documentation/devicetree/bindings/opp/
12737 F:      Documentation/power/opp.rst
12738 F:      drivers/opp/
12739 F:      include/linux/pm_opp.h
12740
12741 OPL4 DRIVER
12742 M:      Clemens Ladisch <clemens@ladisch.de>
12743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12744 S:      Maintained
12745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12746 F:      sound/drivers/opl4/
12747
12748 OPROFILE
12749 M:      Robert Richter <rric@kernel.org>
12750 L:      oprofile-list@lists.sf.net
12751 S:      Maintained
12752 F:      arch/*/include/asm/oprofile*.h
12753 F:      arch/*/oprofile/
12754 F:      drivers/oprofile/
12755 F:      include/linux/oprofile.h
12756
12757 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12758 M:      Mark Fasheh <mark@fasheh.com>
12759 M:      Joel Becker <jlbec@evilplan.org>
12760 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12761 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12762 S:      Supported
12763 W:      http://ocfs2.wiki.kernel.org
12764 F:      Documentation/filesystems/dlmfs.rst
12765 F:      Documentation/filesystems/ocfs2.rst
12766 F:      fs/ocfs2/
12767
12768 ORANGEFS FILESYSTEM
12769 M:      Mike Marshall <hubcap@omnibond.com>
12770 R:      Martin Brandenburg <martin@omnibond.com>
12771 L:      devel@lists.orangefs.org
12772 S:      Supported
12773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12774 F:      Documentation/filesystems/orangefs.rst
12775 F:      fs/orangefs/
12776
12777 ORINOCO DRIVER
12778 L:      linux-wireless@vger.kernel.org
12779 S:      Orphan
12780 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
12781 W:      http://www.nongnu.org/orinoco/
12782 F:      drivers/net/wireless/intersil/orinoco/
12783
12784 OV2659 OMNIVISION SENSOR DRIVER
12785 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12786 L:      linux-media@vger.kernel.org
12787 S:      Maintained
12788 W:      https://linuxtv.org
12789 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12790 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12791 F:      drivers/media/i2c/ov2659.c
12792 F:      include/media/i2c/ov2659.h
12793
12794 OVERLAY FILESYSTEM
12795 M:      Miklos Szeredi <miklos@szeredi.hu>
12796 L:      linux-unionfs@vger.kernel.org
12797 S:      Supported
12798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12799 F:      Documentation/filesystems/overlayfs.rst
12800 F:      fs/overlayfs/
12801
12802 P54 WIRELESS DRIVER
12803 M:      Christian Lamparter <chunkeey@googlemail.com>
12804 L:      linux-wireless@vger.kernel.org
12805 S:      Maintained
12806 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
12807 F:      drivers/net/wireless/intersil/p54/
12808
12809 PACKING
12810 M:      Vladimir Oltean <olteanv@gmail.com>
12811 L:      netdev@vger.kernel.org
12812 S:      Supported
12813 F:      Documentation/core-api/packing.rst
12814 F:      include/linux/packing.h
12815 F:      lib/packing.c
12816
12817 PADATA PARALLEL EXECUTION MECHANISM
12818 M:      Steffen Klassert <steffen.klassert@secunet.com>
12819 L:      linux-crypto@vger.kernel.org
12820 S:      Maintained
12821 F:      Documentation/core-api/padata.rst
12822 F:      include/linux/padata.h
12823 F:      kernel/padata.c
12824
12825 PAGE POOL
12826 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12827 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12828 L:      netdev@vger.kernel.org
12829 S:      Supported
12830 F:      include/net/page_pool.h
12831 F:      net/core/page_pool.c
12832
12833 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12834 M:      Harald Welte <laforge@gnumonks.org>
12835 L:      platform-driver-x86@vger.kernel.org
12836 S:      Maintained
12837 F:      drivers/platform/x86/panasonic-laptop.c
12838
12839 PARALLAX PING IIO SENSOR DRIVER
12840 M:      Andreas Klinger <ak@it-klinger.de>
12841 L:      linux-iio@vger.kernel.org
12842 S:      Maintained
12843 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12844 F:      drivers/iio/proximity/ping.c
12845
12846 PARALLEL LCD/KEYPAD PANEL DRIVER
12847 M:      Willy Tarreau <willy@haproxy.com>
12848 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12849 S:      Odd Fixes
12850 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12851 F:      drivers/auxdisplay/panel.c
12852
12853 PARALLEL PORT SUBSYSTEM
12854 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12855 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12856 L:      linux-parport@lists.infradead.org (subscribers-only)
12857 S:      Maintained
12858 F:      Documentation/driver-api/parport*.rst
12859 F:      drivers/char/ppdev.c
12860 F:      drivers/parport/
12861 F:      include/linux/parport*.h
12862 F:      include/uapi/linux/ppdev.h
12863
12864 PARAVIRT_OPS INTERFACE
12865 M:      Juergen Gross <jgross@suse.com>
12866 M:      Thomas Hellstrom <thellstrom@vmware.com>
12867 M:      "VMware, Inc." <pv-drivers@vmware.com>
12868 L:      virtualization@lists.linux-foundation.org
12869 S:      Supported
12870 F:      Documentation/virt/paravirt_ops.rst
12871 F:      arch/*/include/asm/paravirt*.h
12872 F:      arch/*/kernel/paravirt*
12873 F:      include/linux/hypervisor.h
12874
12875 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12876 M:      Tim Waugh <tim@cyberelk.net>
12877 L:      linux-parport@lists.infradead.org (subscribers-only)
12878 S:      Maintained
12879 F:      Documentation/admin-guide/blockdev/paride.rst
12880 F:      drivers/block/paride/
12881
12882 PARISC ARCHITECTURE
12883 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12884 M:      Helge Deller <deller@gmx.de>
12885 L:      linux-parisc@vger.kernel.org
12886 S:      Maintained
12887 W:      https://parisc.wiki.kernel.org
12888 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12891 F:      Documentation/parisc/
12892 F:      arch/parisc/
12893 F:      drivers/char/agp/parisc-agp.c
12894 F:      drivers/input/misc/hp_sdc_rtc.c
12895 F:      drivers/input/serio/gscps2.c
12896 F:      drivers/input/serio/hp_sdc*
12897 F:      drivers/parisc/
12898 F:      drivers/parport/parport_gsc.*
12899 F:      drivers/tty/serial/8250/8250_gsc.c
12900 F:      drivers/video/console/sti*
12901 F:      drivers/video/fbdev/sti*
12902 F:      drivers/video/logo/logo_parisc*
12903 F:      include/linux/hp_sdc.h
12904
12905 PARMAN
12906 M:      Jiri Pirko <jiri@mellanox.com>
12907 L:      netdev@vger.kernel.org
12908 S:      Supported
12909 F:      include/linux/parman.h
12910 F:      lib/parman.c
12911 F:      lib/test_parman.c
12912
12913 PC ENGINES APU BOARD DRIVER
12914 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12915 S:      Maintained
12916 F:      drivers/platform/x86/pcengines-apuv2.c
12917
12918 PC87360 HARDWARE MONITORING DRIVER
12919 M:      Jim Cromie <jim.cromie@gmail.com>
12920 L:      linux-hwmon@vger.kernel.org
12921 S:      Maintained
12922 F:      Documentation/hwmon/pc87360.rst
12923 F:      drivers/hwmon/pc87360.c
12924
12925 PC8736x GPIO DRIVER
12926 M:      Jim Cromie <jim.cromie@gmail.com>
12927 S:      Maintained
12928 F:      drivers/char/pc8736x_gpio.c
12929
12930 PC87427 HARDWARE MONITORING DRIVER
12931 M:      Jean Delvare <jdelvare@suse.com>
12932 L:      linux-hwmon@vger.kernel.org
12933 S:      Maintained
12934 F:      Documentation/hwmon/pc87427.rst
12935 F:      drivers/hwmon/pc87427.c
12936
12937 PCA9532 LED DRIVER
12938 M:      Riku Voipio <riku.voipio@iki.fi>
12939 S:      Maintained
12940 F:      drivers/leds/leds-pca9532.c
12941 F:      include/linux/leds-pca9532.h
12942
12943 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12944 M:      Guenter Roeck <linux@roeck-us.net>
12945 L:      linux-i2c@vger.kernel.org
12946 S:      Maintained
12947 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12948
12949 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12950 M:      Khalid Aziz <khalid@gonehiking.org>
12951 S:      Maintained
12952 F:      drivers/firmware/pcdp.*
12953
12954 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12955 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12956 L:      linux-pci@vger.kernel.org
12957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12958 S:      Maintained
12959 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12960 F:      drivers/pci/controller/pci-aardvark.c
12961
12962 PCI DRIVER FOR ALTERA PCIE IP
12963 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12964 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12965 L:      linux-pci@vger.kernel.org
12966 S:      Supported
12967 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12968 F:      drivers/pci/controller/pcie-altera.c
12969
12970 PCI DRIVER FOR APPLIEDMICRO XGENE
12971 M:      Toan Le <toan@os.amperecomputing.com>
12972 L:      linux-pci@vger.kernel.org
12973 L:      linux-arm-kernel@lists.infradead.org
12974 S:      Maintained
12975 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12976 F:      drivers/pci/controller/pci-xgene.c
12977
12978 PCI DRIVER FOR ARM VERSATILE PLATFORM
12979 M:      Rob Herring <robh@kernel.org>
12980 L:      linux-pci@vger.kernel.org
12981 L:      linux-arm-kernel@lists.infradead.org
12982 S:      Maintained
12983 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12984 F:      drivers/pci/controller/pci-versatile.c
12985
12986 PCI DRIVER FOR ARMADA 8K
12987 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12988 L:      linux-pci@vger.kernel.org
12989 L:      linux-arm-kernel@lists.infradead.org
12990 S:      Maintained
12991 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12992 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12993
12994 PCI DRIVER FOR CADENCE PCIE IP
12995 M:      Tom Joseph <tjoseph@cadence.com>
12996 L:      linux-pci@vger.kernel.org
12997 S:      Maintained
12998 F:      Documentation/devicetree/bindings/pci/cdns,*
12999 F:      drivers/pci/controller/cadence/
13000
13001 PCI DRIVER FOR FREESCALE LAYERSCAPE
13002 M:      Minghuan Lian <minghuan.Lian@nxp.com>
13003 M:      Mingkai Hu <mingkai.hu@nxp.com>
13004 M:      Roy Zang <roy.zang@nxp.com>
13005 L:      linuxppc-dev@lists.ozlabs.org
13006 L:      linux-pci@vger.kernel.org
13007 L:      linux-arm-kernel@lists.infradead.org
13008 S:      Maintained
13009 F:      drivers/pci/controller/dwc/*layerscape*
13010
13011 PCI DRIVER FOR GENERIC OF HOSTS
13012 M:      Will Deacon <will@kernel.org>
13013 L:      linux-pci@vger.kernel.org
13014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13015 S:      Maintained
13016 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
13017 F:      drivers/pci/controller/pci-host-common.c
13018 F:      drivers/pci/controller/pci-host-generic.c
13019
13020 PCI DRIVER FOR IMX6
13021 M:      Richard Zhu <hongxing.zhu@nxp.com>
13022 M:      Lucas Stach <l.stach@pengutronix.de>
13023 L:      linux-pci@vger.kernel.org
13024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13025 S:      Maintained
13026 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
13027 F:      drivers/pci/controller/dwc/*imx6*
13028
13029 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
13030 M:      Jonathan Derrick <jonathan.derrick@intel.com>
13031 L:      linux-pci@vger.kernel.org
13032 S:      Supported
13033 F:      drivers/pci/controller/vmd.c
13034
13035 PCI DRIVER FOR MICROSEMI SWITCHTEC
13036 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
13037 M:      Logan Gunthorpe <logang@deltatee.com>
13038 L:      linux-pci@vger.kernel.org
13039 S:      Maintained
13040 F:      Documentation/ABI/testing/sysfs-class-switchtec
13041 F:      Documentation/driver-api/switchtec.rst
13042 F:      drivers/ntb/hw/mscc/
13043 F:      drivers/pci/switch/switchtec*
13044 F:      include/linux/switchtec.h
13045 F:      include/uapi/linux/switchtec_ioctl.h
13046
13047 PCI DRIVER FOR MOBIVEIL PCIE IP
13048 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
13049 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13050 L:      linux-pci@vger.kernel.org
13051 S:      Supported
13052 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
13053 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
13054
13055 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
13056 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13057 M:      Jason Cooper <jason@lakedaemon.net>
13058 L:      linux-pci@vger.kernel.org
13059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13060 S:      Maintained
13061 F:      drivers/pci/controller/*mvebu*
13062
13063 PCI DRIVER FOR NVIDIA TEGRA
13064 M:      Thierry Reding <thierry.reding@gmail.com>
13065 L:      linux-tegra@vger.kernel.org
13066 L:      linux-pci@vger.kernel.org
13067 S:      Supported
13068 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
13069 F:      drivers/pci/controller/pci-tegra.c
13070
13071 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
13072 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
13073 L:      linux-pci@vger.kernel.org
13074 L:      linux-arm-kernel@lists.infradead.org
13075 S:      Maintained
13076 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
13077 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
13078
13079 PCI DRIVER FOR RENESAS R-CAR
13080 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13081 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13082 L:      linux-pci@vger.kernel.org
13083 L:      linux-renesas-soc@vger.kernel.org
13084 S:      Maintained
13085 F:      drivers/pci/controller/*rcar*
13086
13087 PCI DRIVER FOR SAMSUNG EXYNOS
13088 M:      Jingoo Han <jingoohan1@gmail.com>
13089 L:      linux-pci@vger.kernel.org
13090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13091 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13092 S:      Maintained
13093 F:      drivers/pci/controller/dwc/pci-exynos.c
13094
13095 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13096 M:      Jingoo Han <jingoohan1@gmail.com>
13097 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13098 L:      linux-pci@vger.kernel.org
13099 S:      Maintained
13100 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13101 F:      drivers/pci/controller/dwc/*designware*
13102
13103 PCI DRIVER FOR TI DRA7XX
13104 M:      Kishon Vijay Abraham I <kishon@ti.com>
13105 L:      linux-omap@vger.kernel.org
13106 L:      linux-pci@vger.kernel.org
13107 S:      Supported
13108 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13109 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13110
13111 PCI DRIVER FOR TI KEYSTONE
13112 M:      Murali Karicheri <m-karicheri2@ti.com>
13113 L:      linux-pci@vger.kernel.org
13114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13115 S:      Maintained
13116 F:      drivers/pci/controller/dwc/pci-keystone.c
13117
13118 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13119 M:      Linus Walleij <linus.walleij@linaro.org>
13120 L:      linux-pci@vger.kernel.org
13121 S:      Maintained
13122 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13123 F:      drivers/pci/controller/pci-v3-semi.c
13124
13125 PCI ENDPOINT SUBSYSTEM
13126 M:      Kishon Vijay Abraham I <kishon@ti.com>
13127 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13128 L:      linux-pci@vger.kernel.org
13129 S:      Supported
13130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13131 F:      drivers/misc/pci_endpoint_test.c
13132 F:      drivers/pci/endpoint/
13133 F:      tools/pci/
13134
13135 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13136 M:      Russell Currey <ruscur@russell.cc>
13137 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13138 M:      Oliver O'Halloran <oohall@gmail.com>
13139 L:      linuxppc-dev@lists.ozlabs.org
13140 S:      Supported
13141 F:      Documentation/PCI/pci-error-recovery.rst
13142 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13143 F:      arch/powerpc/include/*/eeh*.h
13144 F:      arch/powerpc/kernel/eeh*.c
13145 F:      arch/powerpc/platforms/*/eeh*.c
13146 F:      drivers/pci/pcie/aer.c
13147 F:      drivers/pci/pcie/dpc.c
13148 F:      drivers/pci/pcie/err.c
13149
13150 PCI ERROR RECOVERY
13151 M:      Linas Vepstas <linasvepstas@gmail.com>
13152 L:      linux-pci@vger.kernel.org
13153 S:      Supported
13154 F:      Documentation/PCI/pci-error-recovery.rst
13155
13156 PCI MSI DRIVER FOR ALTERA MSI IP
13157 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13158 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13159 L:      linux-pci@vger.kernel.org
13160 S:      Supported
13161 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13162 F:      drivers/pci/controller/pcie-altera-msi.c
13163
13164 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13165 M:      Toan Le <toan@os.amperecomputing.com>
13166 L:      linux-pci@vger.kernel.org
13167 L:      linux-arm-kernel@lists.infradead.org
13168 S:      Maintained
13169 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13170 F:      drivers/pci/controller/pci-xgene-msi.c
13171
13172 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13173 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13174 R:      Rob Herring <robh@kernel.org>
13175 L:      linux-pci@vger.kernel.org
13176 S:      Supported
13177 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13179 F:      drivers/pci/controller/
13180
13181 PCI SUBSYSTEM
13182 M:      Bjorn Helgaas <bhelgaas@google.com>
13183 L:      linux-pci@vger.kernel.org
13184 S:      Supported
13185 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13187 F:      Documentation/PCI/
13188 F:      Documentation/devicetree/bindings/pci/
13189 F:      arch/x86/kernel/early-quirks.c
13190 F:      arch/x86/kernel/quirks.c
13191 F:      arch/x86/pci/
13192 F:      drivers/acpi/pci*
13193 F:      drivers/pci/
13194 F:      include/asm-generic/pci*
13195 F:      include/linux/of_pci.h
13196 F:      include/linux/pci*
13197 F:      include/uapi/linux/pci*
13198 F:      lib/pci*
13199
13200 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13201 M:      Jonathan Chocron <jonnyc@amazon.com>
13202 L:      linux-pci@vger.kernel.org
13203 S:      Maintained
13204 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13205 F:      drivers/pci/controller/dwc/pcie-al.c
13206
13207 PCIE DRIVER FOR AMLOGIC MESON
13208 M:      Yue Wang <yue.wang@Amlogic.com>
13209 L:      linux-pci@vger.kernel.org
13210 L:      linux-amlogic@lists.infradead.org
13211 S:      Maintained
13212 F:      drivers/pci/controller/dwc/pci-meson.c
13213
13214 PCIE DRIVER FOR AXIS ARTPEC
13215 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13216 L:      linux-arm-kernel@axis.com
13217 L:      linux-pci@vger.kernel.org
13218 S:      Maintained
13219 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13220 F:      drivers/pci/controller/dwc/*artpec*
13221
13222 PCIE DRIVER FOR CAVIUM THUNDERX
13223 M:      Robert Richter <rrichter@marvell.com>
13224 L:      linux-pci@vger.kernel.org
13225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13226 S:      Supported
13227 F:      drivers/pci/controller/pci-thunder-*
13228
13229 PCIE DRIVER FOR HISILICON
13230 M:      Zhou Wang <wangzhou1@hisilicon.com>
13231 L:      linux-pci@vger.kernel.org
13232 S:      Maintained
13233 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13234 F:      drivers/pci/controller/dwc/pcie-hisi.c
13235
13236 PCIE DRIVER FOR HISILICON KIRIN
13237 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13238 M:      Binghui Wang <wangbinghui@hisilicon.com>
13239 L:      linux-pci@vger.kernel.org
13240 S:      Maintained
13241 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13242 F:      drivers/pci/controller/dwc/pcie-kirin.c
13243
13244 PCIE DRIVER FOR HISILICON STB
13245 M:      Shawn Guo <shawn.guo@linaro.org>
13246 L:      linux-pci@vger.kernel.org
13247 S:      Maintained
13248 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13249 F:      drivers/pci/controller/dwc/pcie-histb.c
13250
13251 PCIE DRIVER FOR MEDIATEK
13252 M:      Ryder Lee <ryder.lee@mediatek.com>
13253 L:      linux-pci@vger.kernel.org
13254 L:      linux-mediatek@lists.infradead.org
13255 S:      Supported
13256 F:      Documentation/devicetree/bindings/pci/mediatek*
13257 F:      drivers/pci/controller/*mediatek*
13258
13259 PCIE DRIVER FOR QUALCOMM MSM
13260 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13261 L:      linux-pci@vger.kernel.org
13262 L:      linux-arm-msm@vger.kernel.org
13263 S:      Maintained
13264 F:      drivers/pci/controller/dwc/*qcom*
13265
13266 PCIE DRIVER FOR ROCKCHIP
13267 M:      Shawn Lin <shawn.lin@rock-chips.com>
13268 L:      linux-pci@vger.kernel.org
13269 L:      linux-rockchip@lists.infradead.org
13270 S:      Maintained
13271 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13272 F:      drivers/pci/controller/pcie-rockchip*
13273
13274 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13275 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13276 L:      linux-pci@vger.kernel.org
13277 S:      Maintained
13278 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13279 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13280
13281 PCIE DRIVER FOR ST SPEAR13XX
13282 M:      Pratyush Anand <pratyush.anand@gmail.com>
13283 L:      linux-pci@vger.kernel.org
13284 S:      Maintained
13285 F:      drivers/pci/controller/dwc/*spear*
13286
13287 PCMCIA SUBSYSTEM
13288 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13289 S:      Odd Fixes
13290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13291 F:      Documentation/pcmcia/
13292 F:      drivers/pcmcia/
13293 F:      include/pcmcia/
13294 F:      tools/pcmcia/
13295
13296 PCNET32 NETWORK DRIVER
13297 M:      Don Fry <pcnet32@frontier.com>
13298 L:      netdev@vger.kernel.org
13299 S:      Maintained
13300 F:      drivers/net/ethernet/amd/pcnet32.c
13301
13302 PCRYPT PARALLEL CRYPTO ENGINE
13303 M:      Steffen Klassert <steffen.klassert@secunet.com>
13304 L:      linux-crypto@vger.kernel.org
13305 S:      Maintained
13306 F:      crypto/pcrypt.c
13307 F:      include/crypto/pcrypt.h
13308
13309 PEAQ WMI HOTKEYS DRIVER
13310 M:      Hans de Goede <hdegoede@redhat.com>
13311 L:      platform-driver-x86@vger.kernel.org
13312 S:      Maintained
13313 F:      drivers/platform/x86/peaq-wmi.c
13314
13315 PENSANDO ETHERNET DRIVERS
13316 M:      Shannon Nelson <snelson@pensando.io>
13317 M:      Pensando Drivers <drivers@pensando.io>
13318 L:      netdev@vger.kernel.org
13319 S:      Supported
13320 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13321 F:      drivers/net/ethernet/pensando/
13322
13323 PER-CPU MEMORY ALLOCATOR
13324 M:      Dennis Zhou <dennis@kernel.org>
13325 M:      Tejun Heo <tj@kernel.org>
13326 M:      Christoph Lameter <cl@linux.com>
13327 S:      Maintained
13328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13329 F:      arch/*/include/asm/percpu.h
13330 F:      include/linux/percpu*.h
13331 F:      mm/percpu*.c
13332
13333 PER-TASK DELAY ACCOUNTING
13334 M:      Balbir Singh <bsingharora@gmail.com>
13335 S:      Maintained
13336 F:      include/linux/delayacct.h
13337 F:      kernel/delayacct.c
13338
13339 PERFORMANCE EVENTS SUBSYSTEM
13340 M:      Peter Zijlstra <peterz@infradead.org>
13341 M:      Ingo Molnar <mingo@redhat.com>
13342 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13343 R:      Mark Rutland <mark.rutland@arm.com>
13344 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13345 R:      Jiri Olsa <jolsa@redhat.com>
13346 R:      Namhyung Kim <namhyung@kernel.org>
13347 L:      linux-kernel@vger.kernel.org
13348 S:      Supported
13349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13350 F:      arch/*/events/*
13351 F:      arch/*/events/*/*
13352 F:      arch/*/include/asm/perf_event.h
13353 F:      arch/*/kernel/*/*/perf_event*.c
13354 F:      arch/*/kernel/*/perf_event*.c
13355 F:      arch/*/kernel/perf_callchain.c
13356 F:      arch/*/kernel/perf_event*.c
13357 F:      include/linux/perf_event.h
13358 F:      include/uapi/linux/perf_event.h
13359 F:      kernel/events/*
13360 F:      tools/perf/
13361
13362 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13363 R:      John Garry <john.garry@huawei.com>
13364 R:      Will Deacon <will@kernel.org>
13365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13366 S:      Supported
13367 F:      tools/perf/pmu-events/arch/arm64/
13368
13369 PERSONALITY HANDLING
13370 M:      Christoph Hellwig <hch@infradead.org>
13371 L:      linux-abi-devel@lists.sourceforge.net
13372 S:      Maintained
13373 F:      include/linux/personality.h
13374 F:      include/uapi/linux/personality.h
13375
13376 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13377 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13378 L:      linux-input@vger.kernel.org
13379 S:      Maintained
13380 F:      Documentation/input/devices/pxrc.rst
13381 F:      drivers/input/joystick/pxrc.c
13382
13383 PHONET PROTOCOL
13384 M:      Remi Denis-Courmont <courmisch@gmail.com>
13385 S:      Supported
13386 F:      Documentation/networking/phonet.rst
13387 F:      include/linux/phonet.h
13388 F:      include/net/phonet/
13389 F:      include/uapi/linux/phonet.h
13390 F:      net/phonet/
13391
13392 PHRAM MTD DRIVER
13393 M:      Joern Engel <joern@lazybastard.org>
13394 L:      linux-mtd@lists.infradead.org
13395 S:      Maintained
13396 F:      drivers/mtd/devices/phram.c
13397
13398 PICOLCD HID DRIVER
13399 M:      Bruno Prémont <bonbons@linux-vserver.org>
13400 L:      linux-input@vger.kernel.org
13401 S:      Maintained
13402 F:      drivers/hid/hid-picolcd*
13403
13404 PICOXCELL SUPPORT
13405 M:      Jamie Iles <jamie@jamieiles.com>
13406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13407 S:      Supported
13408 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13409 F:      arch/arm/boot/dts/picoxcell*
13410 F:      arch/arm/mach-picoxcell/
13411 F:      drivers/crypto/picoxcell*
13412
13413 PIDFD API
13414 M:      Christian Brauner <christian@brauner.io>
13415 L:      linux-kernel@vger.kernel.org
13416 S:      Maintained
13417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13418 F:      samples/pidfd/
13419 F:      tools/testing/selftests/clone3/
13420 F:      tools/testing/selftests/pid_namespace/
13421 F:      tools/testing/selftests/pidfd/
13422 K:      (?i)pidfd
13423 K:      (?i)clone3
13424 K:      \b(clone_args|kernel_clone_args)\b
13425
13426 PIN CONTROL SUBSYSTEM
13427 M:      Linus Walleij <linus.walleij@linaro.org>
13428 L:      linux-gpio@vger.kernel.org
13429 S:      Maintained
13430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13431 F:      Documentation/devicetree/bindings/pinctrl/
13432 F:      Documentation/driver-api/pinctl.rst
13433 F:      drivers/pinctrl/
13434 F:      include/linux/pinctrl/
13435
13436 PIN CONTROLLER - FREESCALE
13437 M:      Dong Aisheng <aisheng.dong@nxp.com>
13438 M:      Fabio Estevam <festevam@gmail.com>
13439 M:      Shawn Guo <shawnguo@kernel.org>
13440 M:      Stefan Agner <stefan@agner.ch>
13441 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13442 L:      linux-gpio@vger.kernel.org
13443 S:      Maintained
13444 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13445 F:      drivers/pinctrl/freescale/
13446
13447 PIN CONTROLLER - INTEL
13448 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13449 M:      Andy Shevchenko <andy@kernel.org>
13450 S:      Maintained
13451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13452 F:      drivers/pinctrl/intel/
13453
13454 PIN CONTROLLER - MEDIATEK
13455 M:      Sean Wang <sean.wang@kernel.org>
13456 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13457 S:      Maintained
13458 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13459 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13460 F:      drivers/pinctrl/mediatek/
13461
13462 PIN CONTROLLER - MICROCHIP AT91
13463 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13465 L:      linux-gpio@vger.kernel.org
13466 S:      Supported
13467 F:      drivers/gpio/gpio-sama5d2-piobu.c
13468 F:      drivers/pinctrl/pinctrl-at91*
13469
13470 PIN CONTROLLER - QUALCOMM
13471 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13472 L:      linux-arm-msm@vger.kernel.org
13473 S:      Maintained
13474 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13475 F:      drivers/pinctrl/qcom/
13476
13477 PIN CONTROLLER - RENESAS
13478 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13479 L:      linux-renesas-soc@vger.kernel.org
13480 S:      Maintained
13481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13482 F:      drivers/pinctrl/pinctrl-rz*
13483 F:      drivers/pinctrl/sh-pfc/
13484
13485 PIN CONTROLLER - SAMSUNG
13486 M:      Tomasz Figa <tomasz.figa@gmail.com>
13487 M:      Krzysztof Kozlowski <krzk@kernel.org>
13488 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13490 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13491 S:      Maintained
13492 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13494 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13495 F:      drivers/pinctrl/samsung/
13496 F:      include/dt-bindings/pinctrl/samsung.h
13497
13498 PIN CONTROLLER - SINGLE
13499 M:      Tony Lindgren <tony@atomide.com>
13500 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13502 L:      linux-omap@vger.kernel.org
13503 S:      Maintained
13504 F:      drivers/pinctrl/pinctrl-single.c
13505
13506 PIN CONTROLLER - ST SPEAR
13507 M:      Viresh Kumar <vireshk@kernel.org>
13508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13509 S:      Maintained
13510 W:      http://www.st.com/spear
13511 F:      drivers/pinctrl/spear/
13512
13513 PISTACHIO SOC SUPPORT
13514 M:      James Hartley <james.hartley@sondrel.com>
13515 L:      linux-mips@vger.kernel.org
13516 S:      Odd Fixes
13517 F:      arch/mips/boot/dts/img/pistachio*
13518 F:      arch/mips/configs/pistachio*_defconfig
13519 F:      arch/mips/include/asm/mach-pistachio/
13520 F:      arch/mips/pistachio/
13521
13522 PKTCDVD DRIVER
13523 M:      linux-block@vger.kernel.org
13524 S:      Orphan
13525 F:      drivers/block/pktcdvd.c
13526 F:      include/linux/pktcdvd.h
13527 F:      include/uapi/linux/pktcdvd.h
13528
13529 PKUNITY SOC DRIVERS
13530 M:      Guan Xuetao <gxt@pku.edu.cn>
13531 S:      Maintained
13532 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13533 T:      git git://github.com/gxt/linux.git
13534 F:      drivers/i2c/busses/i2c-puv3.c
13535 F:      drivers/input/serio/i8042-unicore32io.h
13536 F:      drivers/rtc/rtc-puv3.c
13537 F:      drivers/video/fbdev/fb-puv3.c
13538
13539 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13540 M:      Tomasz Duszynski <tduszyns@gmail.com>
13541 S:      Maintained
13542 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13543 F:      drivers/iio/chemical/pms7003.c
13544
13545 PLX DMA DRIVER
13546 M:      Logan Gunthorpe <logang@deltatee.com>
13547 S:      Maintained
13548 F:      drivers/dma/plx_dma.c
13549
13550 PM-GRAPH UTILITY
13551 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13552 L:      linux-pm@vger.kernel.org
13553 S:      Supported
13554 W:      https://01.org/pm-graph
13555 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13556 T:      git git://github.com/intel/pm-graph
13557 F:      tools/power/pm-graph
13558
13559 PMBUS HARDWARE MONITORING DRIVERS
13560 M:      Guenter Roeck <linux@roeck-us.net>
13561 L:      linux-hwmon@vger.kernel.org
13562 S:      Maintained
13563 W:      http://hwmon.wiki.kernel.org/
13564 W:      http://www.roeck-us.net/linux/drivers/
13565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13566 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13567 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13568 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13569 F:      Documentation/hwmon/adm1275.rst
13570 F:      Documentation/hwmon/ibm-cffps.rst
13571 F:      Documentation/hwmon/ir35221.rst
13572 F:      Documentation/hwmon/lm25066.rst
13573 F:      Documentation/hwmon/ltc2978.rst
13574 F:      Documentation/hwmon/ltc3815.rst
13575 F:      Documentation/hwmon/max16064.rst
13576 F:      Documentation/hwmon/max20751.rst
13577 F:      Documentation/hwmon/max31785.rst
13578 F:      Documentation/hwmon/max34440.rst
13579 F:      Documentation/hwmon/max8688.rst
13580 F:      Documentation/hwmon/pmbus-core.rst
13581 F:      Documentation/hwmon/pmbus.rst
13582 F:      Documentation/hwmon/tps40422.rst
13583 F:      Documentation/hwmon/ucd9000.rst
13584 F:      Documentation/hwmon/ucd9200.rst
13585 F:      Documentation/hwmon/zl6100.rst
13586 F:      drivers/hwmon/pmbus/
13587 F:      include/linux/pmbus.h
13588
13589 PMC SIERRA MaxRAID DRIVER
13590 L:      linux-scsi@vger.kernel.org
13591 S:      Orphan
13592 W:      http://www.pmc-sierra.com/
13593 F:      drivers/scsi/pmcraid.*
13594
13595 PMC SIERRA PM8001 DRIVER
13596 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13597 L:      linux-scsi@vger.kernel.org
13598 S:      Supported
13599 F:      drivers/scsi/pm8001/
13600
13601 PNI RM3100 IIO DRIVER
13602 M:      Song Qiang <songqiang1304521@gmail.com>
13603 L:      linux-iio@vger.kernel.org
13604 S:      Maintained
13605 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13606 F:      drivers/iio/magnetometer/rm3100*
13607
13608 PNP SUPPORT
13609 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13610 L:      linux-acpi@vger.kernel.org
13611 S:      Maintained
13612 F:      drivers/pnp/
13613 F:      include/linux/pnp.h
13614
13615 POSIX CLOCKS and TIMERS
13616 M:      Thomas Gleixner <tglx@linutronix.de>
13617 L:      linux-kernel@vger.kernel.org
13618 S:      Maintained
13619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13620 F:      fs/timerfd.c
13621 F:      include/linux/time_namespace.h
13622 F:      include/linux/timer*
13623 F:      kernel/time/*timer*
13624 F:      kernel/time/namespace.c
13625
13626 POWER MANAGEMENT CORE
13627 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13628 L:      linux-pm@vger.kernel.org
13629 S:      Supported
13630 B:      https://bugzilla.kernel.org
13631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13632 F:      drivers/base/power/
13633 F:      drivers/powercap/
13634 F:      include/linux/intel_rapl.h
13635 F:      include/linux/pm.h
13636 F:      include/linux/pm_*
13637 F:      include/linux/powercap.h
13638 F:      kernel/configs/nopm.config
13639
13640 POWER STATE COORDINATION INTERFACE (PSCI)
13641 M:      Mark Rutland <mark.rutland@arm.com>
13642 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13643 L:      linux-arm-kernel@lists.infradead.org
13644 S:      Maintained
13645 F:      drivers/firmware/psci/
13646 F:      include/linux/psci.h
13647 F:      include/uapi/linux/psci.h
13648
13649 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13650 M:      Sebastian Reichel <sre@kernel.org>
13651 L:      linux-pm@vger.kernel.org
13652 S:      Maintained
13653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13654 F:      Documentation/ABI/testing/sysfs-class-power
13655 F:      Documentation/devicetree/bindings/power/supply/
13656 F:      drivers/power/supply/
13657 F:      include/linux/power_supply.h
13658
13659 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13660 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13661 L:      linuxppc-dev@lists.ozlabs.org
13662 S:      Maintained
13663 F:      drivers/char/powernv-op-panel.c
13664
13665 PPP OVER ATM (RFC 2364)
13666 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13667 S:      Maintained
13668 F:      include/uapi/linux/atmppp.h
13669 F:      net/atm/pppoatm.c
13670
13671 PPP OVER ETHERNET
13672 M:      Michal Ostrowski <mostrows@earthlink.net>
13673 S:      Maintained
13674 F:      drivers/net/ppp/pppoe.c
13675 F:      drivers/net/ppp/pppox.c
13676
13677 PPP OVER L2TP
13678 M:      James Chapman <jchapman@katalix.com>
13679 S:      Maintained
13680 F:      include/linux/if_pppol2tp.h
13681 F:      include/uapi/linux/if_pppol2tp.h
13682 F:      net/l2tp/l2tp_ppp.c
13683
13684 PPP PROTOCOL DRIVERS AND COMPRESSORS
13685 M:      Paul Mackerras <paulus@samba.org>
13686 L:      linux-ppp@vger.kernel.org
13687 S:      Maintained
13688 F:      drivers/net/ppp/ppp_*
13689
13690 PPS SUPPORT
13691 M:      Rodolfo Giometti <giometti@enneenne.com>
13692 L:      linuxpps@ml.enneenne.com (subscribers-only)
13693 S:      Maintained
13694 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13695 F:      Documentation/ABI/testing/sysfs-pps
13696 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13697 F:      Documentation/driver-api/pps.rst
13698 F:      drivers/pps/
13699 F:      include/linux/pps*.h
13700 F:      include/uapi/linux/pps.h
13701
13702 PPTP DRIVER
13703 M:      Dmitry Kozlov <xeb@mail.ru>
13704 L:      netdev@vger.kernel.org
13705 S:      Maintained
13706 W:      http://sourceforge.net/projects/accel-pptp
13707 F:      drivers/net/ppp/pptp.c
13708
13709 PRESSURE STALL INFORMATION (PSI)
13710 M:      Johannes Weiner <hannes@cmpxchg.org>
13711 S:      Maintained
13712 F:      include/linux/psi*
13713 F:      kernel/sched/psi.c
13714
13715 PRINTK
13716 M:      Petr Mladek <pmladek@suse.com>
13717 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13718 R:      Steven Rostedt <rostedt@goodmis.org>
13719 S:      Maintained
13720 F:      include/linux/printk.h
13721 F:      kernel/printk/
13722
13723 PRISM54 WIRELESS DRIVER
13724 M:      Luis Chamberlain <mcgrof@kernel.org>
13725 L:      linux-wireless@vger.kernel.org
13726 S:      Obsolete
13727 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13728 F:      drivers/net/wireless/intersil/prism54/
13729
13730 PROC FILESYSTEM
13731 R:      Alexey Dobriyan <adobriyan@gmail.com>
13732 L:      linux-kernel@vger.kernel.org
13733 L:      linux-fsdevel@vger.kernel.org
13734 S:      Maintained
13735 F:      Documentation/filesystems/proc.rst
13736 F:      fs/proc/
13737 F:      include/linux/proc_fs.h
13738 F:      tools/testing/selftests/proc/
13739
13740 PROC SYSCTL
13741 M:      Luis Chamberlain <mcgrof@kernel.org>
13742 M:      Kees Cook <keescook@chromium.org>
13743 M:      Iurii Zaikin <yzaikin@google.com>
13744 L:      linux-kernel@vger.kernel.org
13745 L:      linux-fsdevel@vger.kernel.org
13746 S:      Maintained
13747 F:      fs/proc/proc_sysctl.c
13748 F:      include/linux/sysctl.h
13749 F:      kernel/sysctl-test.c
13750 F:      kernel/sysctl.c
13751 F:      tools/testing/selftests/sysctl/
13752
13753 PS3 NETWORK SUPPORT
13754 M:      Geoff Levand <geoff@infradead.org>
13755 L:      netdev@vger.kernel.org
13756 L:      linuxppc-dev@lists.ozlabs.org
13757 S:      Maintained
13758 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13759
13760 PS3 PLATFORM SUPPORT
13761 M:      Geoff Levand <geoff@infradead.org>
13762 L:      linuxppc-dev@lists.ozlabs.org
13763 S:      Maintained
13764 F:      arch/powerpc/boot/ps3*
13765 F:      arch/powerpc/include/asm/lv1call.h
13766 F:      arch/powerpc/include/asm/ps3*.h
13767 F:      arch/powerpc/platforms/ps3/
13768 F:      drivers/*/ps3*
13769 F:      drivers/ps3/
13770 F:      drivers/rtc/rtc-ps3.c
13771 F:      drivers/usb/host/*ps3.c
13772 F:      sound/ppc/snd_ps3*
13773
13774 PS3VRAM DRIVER
13775 M:      Jim Paris <jim@jtan.com>
13776 M:      Geoff Levand <geoff@infradead.org>
13777 L:      linuxppc-dev@lists.ozlabs.org
13778 S:      Maintained
13779 F:      drivers/block/ps3vram.c
13780
13781 PSAMPLE PACKET SAMPLING SUPPORT
13782 M:      Yotam Gigi <yotam.gi@gmail.com>
13783 S:      Maintained
13784 F:      include/net/psample.h
13785 F:      include/uapi/linux/psample.h
13786 F:      net/psample
13787
13788 PSTORE FILESYSTEM
13789 M:      Kees Cook <keescook@chromium.org>
13790 M:      Anton Vorontsov <anton@enomsg.org>
13791 M:      Colin Cross <ccross@android.com>
13792 M:      Tony Luck <tony.luck@intel.com>
13793 S:      Maintained
13794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13795 F:      Documentation/admin-guide/ramoops.rst
13796 F:      Documentation/admin-guide/pstore-blk.rst
13797 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13798 F:      drivers/acpi/apei/erst.c
13799 F:      drivers/firmware/efi/efi-pstore.c
13800 F:      fs/pstore/
13801 F:      include/linux/pstore*
13802 K:      \b(pstore|ramoops)
13803
13804 PTP HARDWARE CLOCK SUPPORT
13805 M:      Richard Cochran <richardcochran@gmail.com>
13806 L:      netdev@vger.kernel.org
13807 S:      Maintained
13808 W:      http://linuxptp.sourceforge.net/
13809 F:      Documentation/ABI/testing/sysfs-ptp
13810 F:      Documentation/driver-api/ptp.rst
13811 F:      drivers/net/phy/dp83640*
13812 F:      drivers/ptp/*
13813 F:      include/linux/ptp_cl*
13814
13815 PTRACE SUPPORT
13816 M:      Oleg Nesterov <oleg@redhat.com>
13817 S:      Maintained
13818 F:      arch/*/*/ptrace*.c
13819 F:      arch/*/include/asm/ptrace*.h
13820 F:      arch/*/ptrace*.c
13821 F:      include/asm-generic/syscall.h
13822 F:      include/linux/ptrace.h
13823 F:      include/linux/regset.h
13824 F:      include/linux/tracehook.h
13825 F:      include/uapi/linux/ptrace.h
13826 F:      include/uapi/linux/ptrace.h
13827 F:      kernel/ptrace.c
13828
13829 PULSE8-CEC DRIVER
13830 M:      Hans Verkuil <hverkuil@xs4all.nl>
13831 L:      linux-media@vger.kernel.org
13832 S:      Maintained
13833 T:      git git://linuxtv.org/media_tree.git
13834 F:      Documentation/admin-guide/media/pulse8-cec.rst
13835 F:      drivers/media/cec/usb/pulse8/
13836
13837 PVRUSB2 VIDEO4LINUX DRIVER
13838 M:      Mike Isely <isely@pobox.com>
13839 L:      pvrusb2@isely.net       (subscribers-only)
13840 L:      linux-media@vger.kernel.org
13841 S:      Maintained
13842 W:      http://www.isely.net/pvrusb2/
13843 T:      git git://linuxtv.org/media_tree.git
13844 F:      Documentation/driver-api/media/drivers/pvrusb2*
13845 F:      drivers/media/usb/pvrusb2/
13846
13847 PWC WEBCAM DRIVER
13848 M:      Hans Verkuil <hverkuil@xs4all.nl>
13849 L:      linux-media@vger.kernel.org
13850 S:      Odd Fixes
13851 T:      git git://linuxtv.org/media_tree.git
13852 F:      drivers/media/usb/pwc/*
13853 F:      include/trace/events/pwc.h
13854
13855 PWM FAN DRIVER
13856 M:      Kamil Debski <kamil@wypas.org>
13857 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13858 L:      linux-hwmon@vger.kernel.org
13859 S:      Supported
13860 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13861 F:      Documentation/hwmon/pwm-fan.rst
13862 F:      drivers/hwmon/pwm-fan.c
13863
13864 PWM IR Transmitter
13865 M:      Sean Young <sean@mess.org>
13866 L:      linux-media@vger.kernel.org
13867 S:      Maintained
13868 F:      drivers/media/rc/pwm-ir-tx.c
13869
13870 PWM SUBSYSTEM
13871 M:      Thierry Reding <thierry.reding@gmail.com>
13872 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13873 L:      linux-pwm@vger.kernel.org
13874 S:      Maintained
13875 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13877 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13878 F:      Documentation/devicetree/bindings/pwm/
13879 F:      Documentation/driver-api/pwm.rst
13880 F:      drivers/gpio/gpio-mvebu.c
13881 F:      drivers/pwm/
13882 F:      drivers/video/backlight/pwm_bl.c
13883 F:      include/linux/pwm.h
13884 F:      include/linux/pwm_backlight.h
13885 K:      pwm_(config|apply_state|ops)
13886
13887 PXA GPIO DRIVER
13888 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13889 L:      linux-gpio@vger.kernel.org
13890 S:      Maintained
13891 F:      drivers/gpio/gpio-pxa.c
13892
13893 PXA MMCI DRIVER
13894 S:      Orphan
13895
13896 PXA RTC DRIVER
13897 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13898 L:      linux-rtc@vger.kernel.org
13899 S:      Maintained
13900
13901 PXA2xx/PXA3xx SUPPORT
13902 M:      Daniel Mack <daniel@zonque.org>
13903 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13904 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13906 S:      Maintained
13907 T:      git git://github.com/hzhuang1/linux.git
13908 T:      git git://github.com/rjarzmik/linux.git
13909 F:      arch/arm/boot/dts/pxa*
13910 F:      arch/arm/mach-pxa/
13911 F:      drivers/dma/pxa*
13912 F:      drivers/pcmcia/pxa2xx*
13913 F:      drivers/pinctrl/pxa/
13914 F:      drivers/spi/spi-pxa2xx*
13915 F:      drivers/usb/gadget/udc/pxa2*
13916 F:      include/sound/pxa2xx-lib.h
13917 F:      sound/arm/pxa*
13918 F:      sound/soc/pxa/
13919
13920 QAT DRIVER
13921 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13922 L:      qat-linux@intel.com
13923 S:      Supported
13924 F:      drivers/crypto/qat/
13925
13926 QCOM AUDIO (ASoC) DRIVERS
13927 M:      Patrick Lai <plai@codeaurora.org>
13928 M:      Banajit Goswami <bgoswami@codeaurora.org>
13929 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13930 S:      Supported
13931 F:      sound/soc/qcom/
13932
13933 QCOM IPA DRIVER
13934 M:      Alex Elder <elder@kernel.org>
13935 L:      netdev@vger.kernel.org
13936 S:      Supported
13937 F:      drivers/net/ipa/
13938
13939 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13940 M:      Gabriel Somlo <somlo@cmu.edu>
13941 M:      "Michael S. Tsirkin" <mst@redhat.com>
13942 L:      qemu-devel@nongnu.org
13943 S:      Maintained
13944 F:      drivers/firmware/qemu_fw_cfg.c
13945 F:      include/uapi/linux/qemu_fw_cfg.h
13946
13947 QIB DRIVER
13948 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13949 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13950 L:      linux-rdma@vger.kernel.org
13951 S:      Supported
13952 F:      drivers/infiniband/hw/qib/
13953
13954 QLOGIC QL41xxx FCOE DRIVER
13955 M:      QLogic-Storage-Upstream@cavium.com
13956 L:      linux-scsi@vger.kernel.org
13957 S:      Supported
13958 F:      drivers/scsi/qedf/
13959
13960 QLOGIC QL41xxx ISCSI DRIVER
13961 M:      QLogic-Storage-Upstream@cavium.com
13962 L:      linux-scsi@vger.kernel.org
13963 S:      Supported
13964 F:      drivers/scsi/qedi/
13965
13966 QLOGIC QL4xxx ETHERNET DRIVER
13967 M:      Ariel Elior <aelior@marvell.com>
13968 M:      GR-everest-linux-l2@marvell.com
13969 L:      netdev@vger.kernel.org
13970 S:      Supported
13971 F:      drivers/net/ethernet/qlogic/qed/
13972 F:      drivers/net/ethernet/qlogic/qede/
13973 F:      include/linux/qed/
13974
13975 QLOGIC QL4xxx RDMA DRIVER
13976 M:      Michal Kalderon <mkalderon@marvell.com>
13977 M:      Ariel Elior <aelior@marvell.com>
13978 L:      linux-rdma@vger.kernel.org
13979 S:      Supported
13980 F:      drivers/infiniband/hw/qedr/
13981 F:      include/uapi/rdma/qedr-abi.h
13982
13983 QLOGIC QLA1280 SCSI DRIVER
13984 M:      Michael Reed <mdr@sgi.com>
13985 L:      linux-scsi@vger.kernel.org
13986 S:      Maintained
13987 F:      drivers/scsi/qla1280.[ch]
13988
13989 QLOGIC QLA2XXX FC-SCSI DRIVER
13990 M:      Nilesh Javali <njavali@marvell.com>
13991 M:      GR-QLogic-Storage-Upstream@marvell.com
13992 L:      linux-scsi@vger.kernel.org
13993 S:      Supported
13994 F:      Documentation/scsi/LICENSE.qla2xxx
13995 F:      drivers/scsi/qla2xxx/
13996
13997 QLOGIC QLA3XXX NETWORK DRIVER
13998 M:      GR-Linux-NIC-Dev@marvell.com
13999 L:      netdev@vger.kernel.org
14000 S:      Supported
14001 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14002 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14003
14004 QLOGIC QLA4XXX iSCSI DRIVER
14005 M:      QLogic-Storage-Upstream@qlogic.com
14006 L:      linux-scsi@vger.kernel.org
14007 S:      Supported
14008 F:      Documentation/scsi/LICENSE.qla4xxx
14009 F:      drivers/scsi/qla4xxx/
14010
14011 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14012 M:      Shahed Shaikh <shshaikh@marvell.com>
14013 M:      Manish Chopra <manishc@marvell.com>
14014 M:      GR-Linux-NIC-Dev@marvell.com
14015 L:      netdev@vger.kernel.org
14016 S:      Supported
14017 F:      drivers/net/ethernet/qlogic/qlcnic/
14018
14019 QLOGIC QLGE 10Gb ETHERNET DRIVER
14020 M:      Manish Chopra <manishc@marvell.com>
14021 M:      GR-Linux-NIC-Dev@marvell.com
14022 L:      netdev@vger.kernel.org
14023 S:      Supported
14024 F:      drivers/staging/qlge/
14025
14026 QM1D1B0004 MEDIA DRIVER
14027 M:      Akihiro Tsukada <tskd08@gmail.com>
14028 L:      linux-media@vger.kernel.org
14029 S:      Odd Fixes
14030 F:      drivers/media/tuners/qm1d1b0004*
14031
14032 QM1D1C0042 MEDIA DRIVER
14033 M:      Akihiro Tsukada <tskd08@gmail.com>
14034 L:      linux-media@vger.kernel.org
14035 S:      Odd Fixes
14036 F:      drivers/media/tuners/qm1d1c0042*
14037
14038 QNX4 FILESYSTEM
14039 M:      Anders Larsen <al@alarsen.net>
14040 S:      Maintained
14041 W:      http://www.alarsen.net/linux/qnx4fs/
14042 F:      fs/qnx4/
14043 F:      include/uapi/linux/qnx4_fs.h
14044 F:      include/uapi/linux/qnxtypes.h
14045
14046 QORIQ DPAA2 FSL-MC BUS DRIVER
14047 M:      Stuart Yoder <stuyoder@gmail.com>
14048 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14049 L:      linux-kernel@vger.kernel.org
14050 S:      Maintained
14051 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14052 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14053 F:      drivers/bus/fsl-mc/
14054
14055 QT1010 MEDIA DRIVER
14056 M:      Antti Palosaari <crope@iki.fi>
14057 L:      linux-media@vger.kernel.org
14058 S:      Maintained
14059 W:      https://linuxtv.org
14060 W:      http://palosaari.fi/linux/
14061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14062 T:      git git://linuxtv.org/anttip/media_tree.git
14063 F:      drivers/media/tuners/qt1010*
14064
14065 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14066 M:      Kalle Valo <kvalo@codeaurora.org>
14067 L:      ath10k@lists.infradead.org
14068 S:      Supported
14069 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14071 F:      drivers/net/wireless/ath/ath10k/
14072
14073 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14074 M:      Kalle Valo <kvalo@codeaurora.org>
14075 L:      ath11k@lists.infradead.org
14076 S:      Supported
14077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14078 F:      drivers/net/wireless/ath/ath11k/
14079
14080 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14081 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14082 L:      linux-wireless@vger.kernel.org
14083 S:      Supported
14084 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14085 F:      drivers/net/wireless/ath/ath9k/
14086
14087 QUALCOMM CAMERA SUBSYSTEM DRIVER
14088 M:      Todor Tomov <todor.too@gmail.com>
14089 L:      linux-media@vger.kernel.org
14090 S:      Maintained
14091 F:      Documentation/admin-guide/media/qcom_camss.rst
14092 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14093 F:      drivers/media/platform/qcom/camss/
14094
14095 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14096 M:      Niklas Cassel <nks@flawful.org>
14097 L:      linux-pm@vger.kernel.org
14098 L:      linux-arm-msm@vger.kernel.org
14099 S:      Maintained
14100 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14101 F:      drivers/power/avs/qcom-cpr.c
14102
14103 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14104 M:      Ilia Lin <ilia.lin@kernel.org>
14105 L:      linux-pm@vger.kernel.org
14106 S:      Maintained
14107 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14108 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14109
14110 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14111 M:      Timur Tabi <timur@kernel.org>
14112 L:      netdev@vger.kernel.org
14113 S:      Maintained
14114 F:      drivers/net/ethernet/qualcomm/emac/
14115
14116 QUALCOMM ETHQOS ETHERNET DRIVER
14117 M:      Vinod Koul <vkoul@kernel.org>
14118 L:      netdev@vger.kernel.org
14119 S:      Maintained
14120 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14121 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14122
14123 QUALCOMM GENERIC INTERFACE I2C DRIVER
14124 M:      Alok Chauhan <alokc@codeaurora.org>
14125 L:      linux-i2c@vger.kernel.org
14126 L:      linux-arm-msm@vger.kernel.org
14127 S:      Supported
14128 F:      drivers/i2c/busses/i2c-qcom-geni.c
14129
14130 QUALCOMM HEXAGON ARCHITECTURE
14131 M:      Brian Cain <bcain@codeaurora.org>
14132 L:      linux-hexagon@vger.kernel.org
14133 S:      Supported
14134 F:      arch/hexagon/
14135
14136 QUALCOMM HIDMA DRIVER
14137 M:      Sinan Kaya <okaya@kernel.org>
14138 L:      linux-arm-kernel@lists.infradead.org
14139 L:      linux-arm-msm@vger.kernel.org
14140 L:      dmaengine@vger.kernel.org
14141 S:      Supported
14142 F:      drivers/dma/qcom/hidma*
14143
14144 QUALCOMM IOMMU
14145 M:      Rob Clark <robdclark@gmail.com>
14146 L:      iommu@lists.linux-foundation.org
14147 L:      linux-arm-msm@vger.kernel.org
14148 S:      Maintained
14149 F:      drivers/iommu/qcom_iommu.c
14150
14151 QUALCOMM RMNET DRIVER
14152 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14153 M:      Sean Tranchetti <stranche@codeaurora.org>
14154 L:      netdev@vger.kernel.org
14155 S:      Maintained
14156 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14157 F:      drivers/net/ethernet/qualcomm/rmnet/
14158 F:      include/linux/if_rmnet.h
14159
14160 QUALCOMM TSENS THERMAL DRIVER
14161 M:      Amit Kucheria <amit.kucheria@linaro.org>
14162 L:      linux-pm@vger.kernel.org
14163 L:      linux-arm-msm@vger.kernel.org
14164 S:      Maintained
14165 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14166 F:      drivers/thermal/qcom/
14167
14168 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14169 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14170 L:      linux-media@vger.kernel.org
14171 L:      linux-arm-msm@vger.kernel.org
14172 S:      Maintained
14173 T:      git git://linuxtv.org/media_tree.git
14174 F:      Documentation/devicetree/bindings/media/*venus*
14175 F:      drivers/media/platform/qcom/venus/
14176
14177 QUALCOMM WCN36XX WIRELESS DRIVER
14178 M:      Kalle Valo <kvalo@codeaurora.org>
14179 L:      wcn36xx@lists.infradead.org
14180 S:      Supported
14181 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14182 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14183 F:      drivers/net/wireless/ath/wcn36xx/
14184
14185 QUANTENNA QTNFMAC WIRELESS DRIVER
14186 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14187 R:      Sergey Matyukevich <geomatsi@gmail.com>
14188 L:      linux-wireless@vger.kernel.org
14189 S:      Maintained
14190 F:      drivers/net/wireless/quantenna
14191
14192 RADEON and AMDGPU DRM DRIVERS
14193 M:      Alex Deucher <alexander.deucher@amd.com>
14194 M:      Christian König <christian.koenig@amd.com>
14195 L:      amd-gfx@lists.freedesktop.org
14196 S:      Supported
14197 T:      git git://people.freedesktop.org/~agd5f/linux
14198 F:      drivers/gpu/drm/amd/
14199 F:      drivers/gpu/drm/radeon/
14200 F:      include/uapi/drm/amdgpu_drm.h
14201 F:      include/uapi/drm/radeon_drm.h
14202
14203 RADEON FRAMEBUFFER DISPLAY DRIVER
14204 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14205 L:      linux-fbdev@vger.kernel.org
14206 S:      Maintained
14207 F:      drivers/video/fbdev/aty/radeon*
14208 F:      include/uapi/linux/radeonfb.h
14209
14210 RADIOSHARK RADIO DRIVER
14211 M:      Hans Verkuil <hverkuil@xs4all.nl>
14212 L:      linux-media@vger.kernel.org
14213 S:      Maintained
14214 T:      git git://linuxtv.org/media_tree.git
14215 F:      drivers/media/radio/radio-shark.c
14216
14217 RADIOSHARK2 RADIO DRIVER
14218 M:      Hans Verkuil <hverkuil@xs4all.nl>
14219 L:      linux-media@vger.kernel.org
14220 S:      Maintained
14221 T:      git git://linuxtv.org/media_tree.git
14222 F:      drivers/media/radio/radio-shark2.c
14223 F:      drivers/media/radio/radio-tea5777.c
14224
14225 RADOS BLOCK DEVICE (RBD)
14226 M:      Ilya Dryomov <idryomov@gmail.com>
14227 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14228 L:      ceph-devel@vger.kernel.org
14229 S:      Supported
14230 W:      http://ceph.com/
14231 T:      git git://github.com/ceph/ceph-client.git
14232 F:      Documentation/ABI/testing/sysfs-bus-rbd
14233 F:      drivers/block/rbd.c
14234 F:      drivers/block/rbd_types.h
14235
14236 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14237 M:      Paul Mackerras <paulus@samba.org>
14238 L:      linux-fbdev@vger.kernel.org
14239 S:      Maintained
14240 F:      drivers/video/fbdev/aty/aty128fb.c
14241
14242 RAINSHADOW-CEC DRIVER
14243 M:      Hans Verkuil <hverkuil@xs4all.nl>
14244 L:      linux-media@vger.kernel.org
14245 S:      Maintained
14246 T:      git git://linuxtv.org/media_tree.git
14247 F:      drivers/media/cec/usb/rainshadow/
14248
14249 RALINK MIPS ARCHITECTURE
14250 M:      John Crispin <john@phrozen.org>
14251 L:      linux-mips@vger.kernel.org
14252 S:      Maintained
14253 F:      arch/mips/ralink
14254
14255 RALINK RT2X00 WIRELESS LAN DRIVER
14256 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14257 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14258 L:      linux-wireless@vger.kernel.org
14259 S:      Maintained
14260 F:      drivers/net/wireless/ralink/rt2x00/
14261
14262 RAMDISK RAM BLOCK DEVICE DRIVER
14263 M:      Jens Axboe <axboe@kernel.dk>
14264 S:      Maintained
14265 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14266 F:      drivers/block/brd.c
14267
14268 RANCHU VIRTUAL BOARD FOR MIPS
14269 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14270 L:      linux-mips@vger.kernel.org
14271 S:      Supported
14272 F:      arch/mips/configs/generic/board-ranchu.config
14273 F:      arch/mips/generic/board-ranchu.c
14274
14275 RANDOM NUMBER DRIVER
14276 M:      "Theodore Ts'o" <tytso@mit.edu>
14277 S:      Maintained
14278 F:      drivers/char/random.c
14279
14280 RAPIDIO SUBSYSTEM
14281 M:      Matt Porter <mporter@kernel.crashing.org>
14282 M:      Alexandre Bounine <alex.bou9@gmail.com>
14283 S:      Maintained
14284 F:      drivers/rapidio/
14285
14286 RAS INFRASTRUCTURE
14287 M:      Tony Luck <tony.luck@intel.com>
14288 M:      Borislav Petkov <bp@alien8.de>
14289 L:      linux-edac@vger.kernel.org
14290 S:      Maintained
14291 F:      Documentation/admin-guide/ras.rst
14292 F:      drivers/ras/
14293 F:      include/linux/ras.h
14294 F:      include/ras/ras_event.h
14295
14296 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14297 L:      linux-wireless@vger.kernel.org
14298 S:      Orphan
14299 F:      drivers/net/wireless/ray*
14300
14301 RCMM REMOTE CONTROLS DECODER
14302 M:      Patrick Lerda <patrick9876@free.fr>
14303 S:      Maintained
14304 F:      drivers/media/rc/ir-rcmm-decoder.c
14305
14306 RCUTORTURE TEST FRAMEWORK
14307 M:      "Paul E. McKenney" <paulmck@kernel.org>
14308 M:      Josh Triplett <josh@joshtriplett.org>
14309 R:      Steven Rostedt <rostedt@goodmis.org>
14310 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14311 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14312 L:      rcu@vger.kernel.org
14313 S:      Supported
14314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14315 F:      tools/testing/selftests/rcutorture
14316
14317 RDC R-321X SoC
14318 M:      Florian Fainelli <florian@openwrt.org>
14319 S:      Maintained
14320
14321 RDC R6040 FAST ETHERNET DRIVER
14322 M:      Florian Fainelli <f.fainelli@gmail.com>
14323 L:      netdev@vger.kernel.org
14324 S:      Maintained
14325 F:      drivers/net/ethernet/rdc/r6040.c
14326
14327 RDMAVT - RDMA verbs software
14328 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14329 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14330 L:      linux-rdma@vger.kernel.org
14331 S:      Supported
14332 F:      drivers/infiniband/sw/rdmavt
14333
14334 RDS - RELIABLE DATAGRAM SOCKETS
14335 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14336 L:      netdev@vger.kernel.org
14337 L:      linux-rdma@vger.kernel.org
14338 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14339 S:      Supported
14340 W:      https://oss.oracle.com/projects/rds/
14341 F:      Documentation/networking/rds.rst
14342 F:      net/rds/
14343
14344 RDT - RESOURCE ALLOCATION
14345 M:      Fenghua Yu <fenghua.yu@intel.com>
14346 M:      Reinette Chatre <reinette.chatre@intel.com>
14347 L:      linux-kernel@vger.kernel.org
14348 S:      Supported
14349 F:      Documentation/x86/resctrl*
14350 F:      arch/x86/include/asm/resctrl.h
14351 F:      arch/x86/kernel/cpu/resctrl/
14352 F:      tools/testing/selftests/resctrl/
14353
14354 READ-COPY UPDATE (RCU)
14355 M:      "Paul E. McKenney" <paulmck@kernel.org>
14356 M:      Josh Triplett <josh@joshtriplett.org>
14357 R:      Steven Rostedt <rostedt@goodmis.org>
14358 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14359 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14360 R:      Joel Fernandes <joel@joelfernandes.org>
14361 L:      rcu@vger.kernel.org
14362 S:      Supported
14363 W:      http://www.rdrop.com/users/paulmck/RCU/
14364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14365 F:      Documentation/RCU/
14366 F:      include/linux/rcu*
14367 F:      kernel/rcu/
14368 X:      Documentation/RCU/torture.txt
14369 X:      include/linux/srcu*.h
14370 X:      kernel/rcu/srcu*.c
14371
14372 REAL TIME CLOCK (RTC) SUBSYSTEM
14373 M:      Alessandro Zummo <a.zummo@towertech.it>
14374 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14375 L:      linux-rtc@vger.kernel.org
14376 S:      Maintained
14377 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14379 F:      Documentation/admin-guide/rtc.rst
14380 F:      Documentation/devicetree/bindings/rtc/
14381 F:      drivers/rtc/
14382 F:      include/linux/platform_data/rtc-*
14383 F:      include/linux/rtc.h
14384 F:      include/linux/rtc/
14385 F:      include/uapi/linux/rtc.h
14386 F:      tools/testing/selftests/rtc/
14387
14388 REALTEK AUDIO CODECS
14389 M:      Oder Chiou <oder_chiou@realtek.com>
14390 S:      Maintained
14391 F:      include/sound/rt*.h
14392 F:      sound/soc/codecs/rt*
14393
14394 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14395 M:      Linus Walleij <linus.walleij@linaro.org>
14396 S:      Maintained
14397 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14398 F:      drivers/net/dsa/realtek-smi*
14399 F:      drivers/net/dsa/rtl83*
14400
14401 REALTEK WIRELESS DRIVER (rtlwifi family)
14402 M:      Ping-Ke Shih <pkshih@realtek.com>
14403 L:      linux-wireless@vger.kernel.org
14404 S:      Maintained
14405 W:      https://wireless.wiki.kernel.org/
14406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14407 F:      drivers/net/wireless/realtek/rtlwifi/
14408
14409 REALTEK WIRELESS DRIVER (rtw88)
14410 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14411 L:      linux-wireless@vger.kernel.org
14412 S:      Maintained
14413 F:      drivers/net/wireless/realtek/rtw88/
14414
14415 REDPINE WIRELESS DRIVER
14416 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14417 M:      Siva Rebbagondla <siva8118@gmail.com>
14418 L:      linux-wireless@vger.kernel.org
14419 S:      Maintained
14420 F:      drivers/net/wireless/rsi/
14421
14422 REGISTER MAP ABSTRACTION
14423 M:      Mark Brown <broonie@kernel.org>
14424 L:      linux-kernel@vger.kernel.org
14425 S:      Supported
14426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14427 F:      Documentation/devicetree/bindings/regmap/
14428 F:      drivers/base/regmap/
14429 F:      include/linux/regmap.h
14430
14431 REISERFS FILE SYSTEM
14432 L:      reiserfs-devel@vger.kernel.org
14433 S:      Supported
14434 F:      fs/reiserfs/
14435
14436 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14437 M:      Ohad Ben-Cohen <ohad@wizery.com>
14438 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14439 L:      linux-remoteproc@vger.kernel.org
14440 S:      Maintained
14441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14442 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14443 F:      Documentation/devicetree/bindings/remoteproc/
14444 F:      Documentation/remoteproc.txt
14445 F:      drivers/remoteproc/
14446 F:      include/linux/remoteproc.h
14447 F:      include/linux/remoteproc/
14448
14449 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14450 M:      Ohad Ben-Cohen <ohad@wizery.com>
14451 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14452 L:      linux-remoteproc@vger.kernel.org
14453 S:      Maintained
14454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14455 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14456 F:      Documentation/rpmsg.txt
14457 F:      drivers/rpmsg/
14458 F:      include/linux/rpmsg.h
14459 F:      include/linux/rpmsg/
14460 F:      include/uapi/linux/rpmsg.h
14461 F:      samples/rpmsg/
14462
14463 RENESAS CLOCK DRIVERS
14464 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14465 L:      linux-renesas-soc@vger.kernel.org
14466 S:      Supported
14467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14468 F:      drivers/clk/renesas/
14469
14470 RENESAS EMEV2 I2C DRIVER
14471 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14472 S:      Supported
14473 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14474 F:      drivers/i2c/busses/i2c-emev2.c
14475
14476 RENESAS ETHERNET DRIVERS
14477 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14478 L:      netdev@vger.kernel.org
14479 L:      linux-renesas-soc@vger.kernel.org
14480 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14481 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14482 F:      drivers/net/ethernet/renesas/
14483 F:      include/linux/sh_eth.h
14484
14485 RENESAS R-CAR GYROADC DRIVER
14486 M:      Marek Vasut <marek.vasut@gmail.com>
14487 L:      linux-iio@vger.kernel.org
14488 S:      Supported
14489 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14490 F:      drivers/iio/adc/rcar-gyroadc.c
14491
14492 RENESAS R-CAR I2C DRIVERS
14493 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14494 S:      Supported
14495 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14496 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14497 F:      drivers/i2c/busses/i2c-rcar.c
14498 F:      drivers/i2c/busses/i2c-sh_mobile.c
14499
14500 RENESAS RIIC DRIVER
14501 M:      Chris Brandt <chris.brandt@renesas.com>
14502 S:      Supported
14503 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14504 F:      drivers/i2c/busses/i2c-riic.c
14505
14506 RENESAS USB PHY DRIVER
14507 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14508 L:      linux-renesas-soc@vger.kernel.org
14509 S:      Maintained
14510 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14511
14512 RESET CONTROLLER FRAMEWORK
14513 M:      Philipp Zabel <p.zabel@pengutronix.de>
14514 S:      Maintained
14515 T:      git git://git.pengutronix.de/git/pza/linux
14516 F:      Documentation/devicetree/bindings/reset/
14517 F:      drivers/reset/
14518 F:      include/dt-bindings/reset/
14519 F:      include/linux/reset-controller.h
14520 F:      include/linux/reset.h
14521 F:      include/linux/reset/
14522 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14523
14524 RESTARTABLE SEQUENCES SUPPORT
14525 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14526 M:      Peter Zijlstra <peterz@infradead.org>
14527 M:      "Paul E. McKenney" <paulmck@kernel.org>
14528 M:      Boqun Feng <boqun.feng@gmail.com>
14529 L:      linux-kernel@vger.kernel.org
14530 S:      Supported
14531 F:      include/trace/events/rseq.h
14532 F:      include/uapi/linux/rseq.h
14533 F:      kernel/rseq.c
14534 F:      tools/testing/selftests/rseq/
14535
14536 RFKILL
14537 M:      Johannes Berg <johannes@sipsolutions.net>
14538 L:      linux-wireless@vger.kernel.org
14539 S:      Maintained
14540 W:      https://wireless.wiki.kernel.org/
14541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14543 F:      Documentation/ABI/stable/sysfs-class-rfkill
14544 F:      Documentation/driver-api/rfkill.rst
14545 F:      include/linux/rfkill.h
14546 F:      include/uapi/linux/rfkill.h
14547 F:      net/rfkill/
14548
14549 RHASHTABLE
14550 M:      Thomas Graf <tgraf@suug.ch>
14551 M:      Herbert Xu <herbert@gondor.apana.org.au>
14552 L:      netdev@vger.kernel.org
14553 S:      Maintained
14554 F:      include/linux/rhashtable-types.h
14555 F:      include/linux/rhashtable.h
14556 F:      lib/rhashtable.c
14557 F:      lib/test_rhashtable.c
14558
14559 RICOH R5C592 MEMORYSTICK DRIVER
14560 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14561 S:      Maintained
14562 F:      drivers/memstick/host/r592.*
14563
14564 RICOH SMARTMEDIA/XD DRIVER
14565 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14566 S:      Maintained
14567 F:      drivers/mtd/nand/raw/r852.c
14568 F:      drivers/mtd/nand/raw/r852.h
14569
14570 RISC-V ARCHITECTURE
14571 M:      Paul Walmsley <paul.walmsley@sifive.com>
14572 M:      Palmer Dabbelt <palmer@dabbelt.com>
14573 M:      Albert Ou <aou@eecs.berkeley.edu>
14574 L:      linux-riscv@lists.infradead.org
14575 S:      Supported
14576 P:      Documentation/riscv/patch-acceptance.rst
14577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14578 F:      arch/riscv/
14579 N:      riscv
14580 K:      riscv
14581
14582 ROCCAT DRIVERS
14583 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14584 S:      Maintained
14585 W:      http://sourceforge.net/projects/roccat/
14586 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14587 F:      drivers/hid/hid-roccat*
14588 F:      include/linux/hid-roccat*
14589
14590 ROCKCHIP ISP V1 DRIVER
14591 M:      Helen Koike <helen.koike@collabora.com>
14592 L:      linux-media@vger.kernel.org
14593 S:      Maintained
14594 F:      drivers/staging/media/rkisp1/
14595
14596 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14597 M:      Jacob Chen <jacob-chen@iotwrt.com>
14598 M:      Ezequiel Garcia <ezequiel@collabora.com>
14599 L:      linux-media@vger.kernel.org
14600 L:      linux-rockchip@lists.infradead.org
14601 S:      Maintained
14602 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
14603 F:      drivers/media/platform/rockchip/rga/
14604
14605 ROCKCHIP VIDEO DECODER DRIVER
14606 M:      Ezequiel Garcia <ezequiel@collabora.com>
14607 L:      linux-media@vger.kernel.org
14608 L:      linux-rockchip@lists.infradead.org
14609 S:      Maintained
14610 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14611 F:      drivers/staging/media/rkvdec/
14612
14613 ROCKER DRIVER
14614 M:      Jiri Pirko <jiri@resnulli.us>
14615 L:      netdev@vger.kernel.org
14616 S:      Supported
14617 F:      drivers/net/ethernet/rocker/
14618
14619 ROCKETPORT DRIVER
14620 S:      Maintained
14621 W:      http://www.comtrol.com
14622 F:      Documentation/driver-api/serial/rocket.rst
14623 F:      drivers/tty/rocket*
14624
14625 ROCKETPORT EXPRESS/INFINITY DRIVER
14626 M:      Kevin Cernekee <cernekee@gmail.com>
14627 L:      linux-serial@vger.kernel.org
14628 S:      Odd Fixes
14629 F:      drivers/tty/serial/rp2.*
14630
14631 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14632 M:      Tomasz Duszynski <tduszyns@gmail.com>
14633 S:      Maintained
14634 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14635 F:      drivers/iio/light/bh1750.c
14636
14637 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14638 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14639 L:      linux-kernel@vger.kernel.org
14640 L:      linux-renesas-soc@vger.kernel.org
14641 S:      Supported
14642 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14643 F:      drivers/gpio/gpio-bd9571mwv.c
14644 F:      drivers/mfd/bd9571mwv.c
14645 F:      drivers/regulator/bd9571mwv-regulator.c
14646 F:      include/linux/mfd/bd9571mwv.h
14647
14648 ROSE NETWORK LAYER
14649 M:      Ralf Baechle <ralf@linux-mips.org>
14650 L:      linux-hams@vger.kernel.org
14651 S:      Maintained
14652 W:      http://www.linux-ax25.org/
14653 F:      include/net/rose.h
14654 F:      include/uapi/linux/rose.h
14655 F:      net/rose/
14656
14657 ROTATION DRIVER FOR ALLWINNER A83T
14658 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14659 L:      linux-media@vger.kernel.org
14660 S:      Maintained
14661 T:      git git://linuxtv.org/media_tree.git
14662 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14663 F:      drivers/media/platform/sunxi/sun8i-rotate/
14664
14665 RTL2830 MEDIA DRIVER
14666 M:      Antti Palosaari <crope@iki.fi>
14667 L:      linux-media@vger.kernel.org
14668 S:      Maintained
14669 W:      https://linuxtv.org
14670 W:      http://palosaari.fi/linux/
14671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14672 T:      git git://linuxtv.org/anttip/media_tree.git
14673 F:      drivers/media/dvb-frontends/rtl2830*
14674
14675 RTL2832 MEDIA DRIVER
14676 M:      Antti Palosaari <crope@iki.fi>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 W:      https://linuxtv.org
14680 W:      http://palosaari.fi/linux/
14681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14682 T:      git git://linuxtv.org/anttip/media_tree.git
14683 F:      drivers/media/dvb-frontends/rtl2832*
14684
14685 RTL2832_SDR MEDIA DRIVER
14686 M:      Antti Palosaari <crope@iki.fi>
14687 L:      linux-media@vger.kernel.org
14688 S:      Maintained
14689 W:      https://linuxtv.org
14690 W:      http://palosaari.fi/linux/
14691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14692 T:      git git://linuxtv.org/anttip/media_tree.git
14693 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14694
14695 RTL8180 WIRELESS DRIVER
14696 L:      linux-wireless@vger.kernel.org
14697 S:      Orphan
14698 W:      https://wireless.wiki.kernel.org/
14699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14700 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14701
14702 RTL8187 WIRELESS DRIVER
14703 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14704 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14705 M:      Larry Finger <Larry.Finger@lwfinger.net>
14706 L:      linux-wireless@vger.kernel.org
14707 S:      Maintained
14708 W:      https://wireless.wiki.kernel.org/
14709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14710 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14711
14712 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14713 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14714 L:      linux-wireless@vger.kernel.org
14715 S:      Maintained
14716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14717 F:      drivers/net/wireless/realtek/rtl8xxxu/
14718
14719 RXRPC SOCKETS (AF_RXRPC)
14720 M:      David Howells <dhowells@redhat.com>
14721 L:      linux-afs@lists.infradead.org
14722 S:      Supported
14723 W:      https://www.infradead.org/~dhowells/kafs/
14724 F:      Documentation/networking/rxrpc.rst
14725 F:      include/keys/rxrpc-type.h
14726 F:      include/net/af_rxrpc.h
14727 F:      include/trace/events/rxrpc.h
14728 F:      include/uapi/linux/rxrpc.h
14729 F:      net/rxrpc/
14730
14731 S3 SAVAGE FRAMEBUFFER DRIVER
14732 M:      Antonino Daplas <adaplas@gmail.com>
14733 L:      linux-fbdev@vger.kernel.org
14734 S:      Maintained
14735 F:      drivers/video/fbdev/savage/
14736
14737 S390
14738 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14739 M:      Vasily Gorbik <gor@linux.ibm.com>
14740 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14741 L:      linux-s390@vger.kernel.org
14742 S:      Supported
14743 W:      http://www.ibm.com/developerworks/linux/linux390/
14744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14745 F:      Documentation/driver-api/s390-drivers.rst
14746 F:      Documentation/s390/
14747 F:      arch/s390/
14748 F:      drivers/s390/
14749
14750 S390 COMMON I/O LAYER
14751 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14752 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14753 L:      linux-s390@vger.kernel.org
14754 S:      Supported
14755 W:      http://www.ibm.com/developerworks/linux/linux390/
14756 F:      drivers/s390/cio/
14757
14758 S390 DASD DRIVER
14759 M:      Stefan Haberland <sth@linux.ibm.com>
14760 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14761 L:      linux-s390@vger.kernel.org
14762 S:      Supported
14763 W:      http://www.ibm.com/developerworks/linux/linux390/
14764 F:      block/partitions/ibm.c
14765 F:      drivers/s390/block/dasd*
14766 F:      include/linux/dasd_mod.h
14767
14768 S390 IOMMU (PCI)
14769 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14770 L:      linux-s390@vger.kernel.org
14771 S:      Supported
14772 W:      http://www.ibm.com/developerworks/linux/linux390/
14773 F:      drivers/iommu/s390-iommu.c
14774
14775 S390 IUCV NETWORK LAYER
14776 M:      Julian Wiedmann <jwi@linux.ibm.com>
14777 M:      Karsten Graul <kgraul@linux.ibm.com>
14778 M:      Ursula Braun <ubraun@linux.ibm.com>
14779 L:      linux-s390@vger.kernel.org
14780 S:      Supported
14781 W:      http://www.ibm.com/developerworks/linux/linux390/
14782 F:      drivers/s390/net/*iucv*
14783 F:      include/net/iucv/
14784 F:      net/iucv/
14785
14786 S390 NETWORK DRIVERS
14787 M:      Julian Wiedmann <jwi@linux.ibm.com>
14788 M:      Karsten Graul <kgraul@linux.ibm.com>
14789 M:      Ursula Braun <ubraun@linux.ibm.com>
14790 L:      linux-s390@vger.kernel.org
14791 S:      Supported
14792 W:      http://www.ibm.com/developerworks/linux/linux390/
14793 F:      drivers/s390/net/
14794
14795 S390 PCI SUBSYSTEM
14796 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14797 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14798 L:      linux-s390@vger.kernel.org
14799 S:      Supported
14800 W:      http://www.ibm.com/developerworks/linux/linux390/
14801 F:      arch/s390/pci/
14802 F:      drivers/pci/hotplug/s390_pci_hpc.c
14803
14804 S390 VFIO AP DRIVER
14805 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14806 M:      Pierre Morel <pmorel@linux.ibm.com>
14807 M:      Halil Pasic <pasic@linux.ibm.com>
14808 L:      linux-s390@vger.kernel.org
14809 S:      Supported
14810 W:      http://www.ibm.com/developerworks/linux/linux390/
14811 F:      Documentation/s390/vfio-ap.rst
14812 F:      drivers/s390/crypto/vfio_ap_drv.c
14813 F:      drivers/s390/crypto/vfio_ap_ops.c
14814 F:      drivers/s390/crypto/vfio_ap_private.h
14815
14816 S390 VFIO-CCW DRIVER
14817 M:      Cornelia Huck <cohuck@redhat.com>
14818 M:      Eric Farman <farman@linux.ibm.com>
14819 R:      Halil Pasic <pasic@linux.ibm.com>
14820 L:      linux-s390@vger.kernel.org
14821 L:      kvm@vger.kernel.org
14822 S:      Supported
14823 F:      Documentation/s390/vfio-ccw.rst
14824 F:      drivers/s390/cio/vfio_ccw*
14825 F:      include/uapi/linux/vfio_ccw.h
14826
14827 S390 ZCRYPT DRIVER
14828 M:      Harald Freudenberger <freude@linux.ibm.com>
14829 L:      linux-s390@vger.kernel.org
14830 S:      Supported
14831 W:      http://www.ibm.com/developerworks/linux/linux390/
14832 F:      drivers/s390/crypto/
14833
14834 S390 ZFCP DRIVER
14835 M:      Steffen Maier <maier@linux.ibm.com>
14836 M:      Benjamin Block <bblock@linux.ibm.com>
14837 L:      linux-s390@vger.kernel.org
14838 S:      Supported
14839 W:      http://www.ibm.com/developerworks/linux/linux390/
14840 F:      drivers/s390/scsi/zfcp_*
14841
14842 S3C24XX SD/MMC Driver
14843 M:      Ben Dooks <ben-linux@fluff.org>
14844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14845 S:      Supported
14846 F:      drivers/mmc/host/s3cmci.*
14847
14848 SAA6588 RDS RECEIVER DRIVER
14849 M:      Hans Verkuil <hverkuil@xs4all.nl>
14850 L:      linux-media@vger.kernel.org
14851 S:      Odd Fixes
14852 W:      https://linuxtv.org
14853 T:      git git://linuxtv.org/media_tree.git
14854 F:      drivers/media/i2c/saa6588*
14855
14856 SAA7134 VIDEO4LINUX DRIVER
14857 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14858 L:      linux-media@vger.kernel.org
14859 S:      Odd fixes
14860 W:      https://linuxtv.org
14861 T:      git git://linuxtv.org/media_tree.git
14862 F:      Documentation/driver-api/media/drivers/saa7134*
14863 F:      drivers/media/pci/saa7134/
14864
14865 SAA7146 VIDEO4LINUX-2 DRIVER
14866 M:      Hans Verkuil <hverkuil@xs4all.nl>
14867 L:      linux-media@vger.kernel.org
14868 S:      Maintained
14869 T:      git git://linuxtv.org/media_tree.git
14870 F:      drivers/media/common/saa7146/
14871 F:      drivers/media/pci/saa7146/
14872 F:      include/media/drv-intf/saa7146*
14873
14874 SAFESETID SECURITY MODULE
14875 M:      Micah Morton <mortonm@chromium.org>
14876 S:      Supported
14877 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14878 F:      security/safesetid/
14879
14880 SAMSUNG AUDIO (ASoC) DRIVERS
14881 M:      Krzysztof Kozlowski <krzk@kernel.org>
14882 M:      Sangbeom Kim <sbkim73@samsung.com>
14883 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14884 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14885 S:      Supported
14886 F:      Documentation/devicetree/bindings/sound/samsung*
14887 F:      sound/soc/samsung/
14888
14889 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14890 M:      Krzysztof Kozlowski <krzk@kernel.org>
14891 L:      linux-crypto@vger.kernel.org
14892 L:      linux-samsung-soc@vger.kernel.org
14893 S:      Maintained
14894 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14895 F:      drivers/crypto/exynos-rng.c
14896
14897 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14898 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14899 L:      linux-samsung-soc@vger.kernel.org
14900 S:      Maintained
14901 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14902 F:      drivers/char/hw_random/exynos-trng.c
14903
14904 SAMSUNG FRAMEBUFFER DRIVER
14905 M:      Jingoo Han <jingoohan1@gmail.com>
14906 L:      linux-fbdev@vger.kernel.org
14907 S:      Maintained
14908 F:      drivers/video/fbdev/s3c-fb.c
14909
14910 SAMSUNG LAPTOP DRIVER
14911 M:      Corentin Chary <corentin.chary@gmail.com>
14912 L:      platform-driver-x86@vger.kernel.org
14913 S:      Maintained
14914 F:      drivers/platform/x86/samsung-laptop.c
14915
14916 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14917 M:      Sangbeom Kim <sbkim73@samsung.com>
14918 M:      Krzysztof Kozlowski <krzk@kernel.org>
14919 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14920 L:      linux-kernel@vger.kernel.org
14921 L:      linux-samsung-soc@vger.kernel.org
14922 S:      Supported
14923 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14924 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14925 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14926 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14927 F:      drivers/clk/clk-s2mps11.c
14928 F:      drivers/mfd/sec*.c
14929 F:      drivers/regulator/s2m*.c
14930 F:      drivers/regulator/s5m*.c
14931 F:      drivers/rtc/rtc-s5m.c
14932 F:      include/linux/mfd/samsung/
14933
14934 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14935 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14936 L:      linux-media@vger.kernel.org
14937 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14938 S:      Maintained
14939 F:      drivers/media/platform/s3c-camif/
14940 F:      include/media/drv-intf/s3c_camif.h
14941
14942 SAMSUNG S3FWRN5 NFC DRIVER
14943 M:      Robert Baldyga <r.baldyga@samsung.com>
14944 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14945 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14946 S:      Supported
14947 F:      drivers/nfc/s3fwrn5
14948
14949 SAMSUNG S5C73M3 CAMERA DRIVER
14950 M:      Kyungmin Park <kyungmin.park@samsung.com>
14951 M:      Andrzej Hajda <a.hajda@samsung.com>
14952 L:      linux-media@vger.kernel.org
14953 S:      Supported
14954 F:      drivers/media/i2c/s5c73m3/*
14955
14956 SAMSUNG S5K5BAF CAMERA DRIVER
14957 M:      Kyungmin Park <kyungmin.park@samsung.com>
14958 M:      Andrzej Hajda <a.hajda@samsung.com>
14959 L:      linux-media@vger.kernel.org
14960 S:      Supported
14961 F:      drivers/media/i2c/s5k5baf.c
14962
14963 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14964 M:      Krzysztof Kozlowski <krzk@kernel.org>
14965 M:      Vladimir Zapolskiy <vz@mleia.com>
14966 M:      Kamil Konieczny <k.konieczny@samsung.com>
14967 L:      linux-crypto@vger.kernel.org
14968 L:      linux-samsung-soc@vger.kernel.org
14969 S:      Maintained
14970 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14971 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14972 F:      drivers/crypto/s5p-sss.c
14973
14974 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14975 M:      Kyungmin Park <kyungmin.park@samsung.com>
14976 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14977 L:      linux-media@vger.kernel.org
14978 S:      Supported
14979 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14980 F:      drivers/media/platform/exynos4-is/
14981
14982 SAMSUNG SOC CLOCK DRIVERS
14983 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14984 M:      Tomasz Figa <tomasz.figa@gmail.com>
14985 M:      Chanwoo Choi <cw00.choi@samsung.com>
14986 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14987 S:      Supported
14988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14989 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14990 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14991 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14992 F:      drivers/clk/samsung/
14993 F:      include/dt-bindings/clock/exynos*.h
14994
14995 SAMSUNG SPI DRIVERS
14996 M:      Kukjin Kim <kgene@kernel.org>
14997 M:      Krzysztof Kozlowski <krzk@kernel.org>
14998 M:      Andi Shyti <andi@etezian.org>
14999 L:      linux-spi@vger.kernel.org
15000 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15001 S:      Maintained
15002 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15003 F:      drivers/spi/spi-s3c*
15004 F:      include/linux/platform_data/spi-s3c64xx.h
15005
15006 SAMSUNG SXGBE DRIVERS
15007 M:      Byungho An <bh74.an@samsung.com>
15008 L:      netdev@vger.kernel.org
15009 S:      Supported
15010 F:      drivers/net/ethernet/samsung/sxgbe/
15011
15012 SAMSUNG THERMAL DRIVER
15013 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15014 L:      linux-pm@vger.kernel.org
15015 L:      linux-samsung-soc@vger.kernel.org
15016 S:      Supported
15017 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15018 F:      drivers/thermal/samsung/
15019
15020 SAMSUNG USB2 PHY DRIVER
15021 M:      Kamil Debski <kamil@wypas.org>
15022 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15023 L:      linux-kernel@vger.kernel.org
15024 S:      Supported
15025 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15026 F:      Documentation/driver-api/phy/samsung-usb2.rst
15027 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15028 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15029 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15030 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15031 F:      drivers/phy/samsung/phy-samsung-usb2.c
15032 F:      drivers/phy/samsung/phy-samsung-usb2.h
15033
15034 SC1200 WDT DRIVER
15035 M:      Zwane Mwaikambo <zwanem@gmail.com>
15036 S:      Maintained
15037 F:      drivers/watchdog/sc1200wdt.c
15038
15039 SCHEDULER
15040 M:      Ingo Molnar <mingo@redhat.com>
15041 M:      Peter Zijlstra <peterz@infradead.org>
15042 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15043 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15044 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15045 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15046 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15047 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15048 L:      linux-kernel@vger.kernel.org
15049 S:      Maintained
15050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15051 F:      include/linux/preempt.h
15052 F:      include/linux/sched.h
15053 F:      include/linux/wait.h
15054 F:      include/uapi/linux/sched.h
15055 F:      kernel/sched/
15056
15057 SCR24X CHIP CARD INTERFACE DRIVER
15058 M:      Lubomir Rintel <lkundrak@v3.sk>
15059 S:      Supported
15060 F:      drivers/char/pcmcia/scr24x_cs.c
15061
15062 SCSI CDROM DRIVER
15063 M:      Jens Axboe <axboe@kernel.dk>
15064 L:      linux-scsi@vger.kernel.org
15065 S:      Maintained
15066 W:      http://www.kernel.dk
15067 F:      drivers/scsi/sr*
15068
15069 SCSI RDMA PROTOCOL (SRP) INITIATOR
15070 M:      Bart Van Assche <bvanassche@acm.org>
15071 L:      linux-rdma@vger.kernel.org
15072 S:      Supported
15073 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15074 F:      drivers/infiniband/ulp/srp/
15075 F:      include/scsi/srp.h
15076
15077 SCSI RDMA PROTOCOL (SRP) TARGET
15078 M:      Bart Van Assche <bvanassche@acm.org>
15079 L:      linux-rdma@vger.kernel.org
15080 L:      target-devel@vger.kernel.org
15081 S:      Supported
15082 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15083 F:      drivers/infiniband/ulp/srpt/
15084
15085 SCSI SG DRIVER
15086 M:      Doug Gilbert <dgilbert@interlog.com>
15087 L:      linux-scsi@vger.kernel.org
15088 S:      Maintained
15089 W:      http://sg.danny.cz/sg
15090 F:      Documentation/scsi/scsi-generic.rst
15091 F:      drivers/scsi/sg.c
15092 F:      include/scsi/sg.h
15093
15094 SCSI SUBSYSTEM
15095 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15096 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15097 L:      linux-scsi@vger.kernel.org
15098 S:      Maintained
15099 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15102 F:      Documentation/devicetree/bindings/scsi/
15103 F:      drivers/scsi/
15104 F:      include/scsi/
15105
15106 SCSI TAPE DRIVER
15107 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15108 L:      linux-scsi@vger.kernel.org
15109 S:      Maintained
15110 F:      Documentation/scsi/st.rst
15111 F:      drivers/scsi/st.*
15112 F:      drivers/scsi/st_*.h
15113
15114 SCSI TARGET SUBSYSTEM
15115 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15116 L:      linux-scsi@vger.kernel.org
15117 L:      target-devel@vger.kernel.org
15118 S:      Supported
15119 W:      http://www.linux-iscsi.org
15120 Q:      https://patchwork.kernel.org/project/target-devel/list/
15121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15122 F:      Documentation/target/
15123 F:      drivers/target/
15124 F:      include/target/
15125
15126 SCTP PROTOCOL
15127 M:      Vlad Yasevich <vyasevich@gmail.com>
15128 M:      Neil Horman <nhorman@tuxdriver.com>
15129 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15130 L:      linux-sctp@vger.kernel.org
15131 S:      Maintained
15132 W:      http://lksctp.sourceforge.net
15133 F:      Documentation/networking/sctp.rst
15134 F:      include/linux/sctp.h
15135 F:      include/net/sctp/
15136 F:      include/uapi/linux/sctp.h
15137 F:      net/sctp/
15138
15139 SCx200 CPU SUPPORT
15140 M:      Jim Cromie <jim.cromie@gmail.com>
15141 S:      Odd Fixes
15142 F:      Documentation/i2c/busses/scx200_acb.rst
15143 F:      arch/x86/platform/scx200/
15144 F:      drivers/i2c/busses/scx200*
15145 F:      drivers/mtd/maps/scx200_docflash.c
15146 F:      drivers/watchdog/scx200_wdt.c
15147 F:      include/linux/scx200.h
15148
15149 SCx200 GPIO DRIVER
15150 M:      Jim Cromie <jim.cromie@gmail.com>
15151 S:      Maintained
15152 F:      drivers/char/scx200_gpio.c
15153 F:      include/linux/scx200_gpio.h
15154
15155 SCx200 HRT CLOCKSOURCE DRIVER
15156 M:      Jim Cromie <jim.cromie@gmail.com>
15157 S:      Maintained
15158 F:      drivers/clocksource/scx200_hrt.c
15159
15160 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15161 M:      Sascha Sommer <saschasommer@freenet.de>
15162 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15163 S:      Maintained
15164 F:      drivers/mmc/host/sdricoh_cs.c
15165
15166 SECO BOARDS CEC DRIVER
15167 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15168 S:      Maintained
15169 F:      drivers/media/platform/seco-cec/seco-cec.c
15170 F:      drivers/media/platform/seco-cec/seco-cec.h
15171
15172 SECURE COMPUTING
15173 M:      Kees Cook <keescook@chromium.org>
15174 R:      Andy Lutomirski <luto@amacapital.net>
15175 R:      Will Drewry <wad@chromium.org>
15176 S:      Supported
15177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15178 F:      Documentation/userspace-api/seccomp_filter.rst
15179 F:      include/linux/seccomp.h
15180 F:      include/uapi/linux/seccomp.h
15181 F:      kernel/seccomp.c
15182 F:      tools/testing/selftests/kselftest_harness.h
15183 F:      tools/testing/selftests/seccomp/*
15184 K:      \bsecure_computing
15185 K:      \bTIF_SECCOMP\b
15186
15187 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15188 M:      Al Cooper <alcooperx@gmail.com>
15189 L:      linux-mmc@vger.kernel.org
15190 L:      bcm-kernel-feedback-list@broadcom.com
15191 S:      Maintained
15192 F:      drivers/mmc/host/sdhci-brcmstb*
15193
15194 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15195 M:      Adrian Hunter <adrian.hunter@intel.com>
15196 L:      linux-mmc@vger.kernel.org
15197 S:      Maintained
15198 F:      drivers/mmc/host/sdhci*
15199 F:      include/linux/mmc/sdhci*
15200
15201 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15202 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15203 L:      linux-mmc@vger.kernel.org
15204 S:      Supported
15205 F:      drivers/mmc/host/sdhci-of-at91.c
15206
15207 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15208 M:      Ben Dooks <ben-linux@fluff.org>
15209 M:      Jaehoon Chung <jh80.chung@samsung.com>
15210 L:      linux-mmc@vger.kernel.org
15211 S:      Maintained
15212 F:      drivers/mmc/host/sdhci-s3c*
15213
15214 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15215 M:      Viresh Kumar <vireshk@kernel.org>
15216 L:      linux-mmc@vger.kernel.org
15217 S:      Maintained
15218 F:      drivers/mmc/host/sdhci-spear.c
15219
15220 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15221 M:      Kishon Vijay Abraham I <kishon@ti.com>
15222 L:      linux-mmc@vger.kernel.org
15223 S:      Maintained
15224 F:      drivers/mmc/host/sdhci-omap.c
15225
15226 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15227 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15228 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15229 L:      linux-block@vger.kernel.org
15230 S:      Supported
15231 F:      block/opal_proto.h
15232 F:      block/sed*
15233 F:      include/linux/sed*
15234 F:      include/uapi/linux/sed*
15235
15236 SECURITY CONTACT
15237 M:      Security Officers <security@kernel.org>
15238 S:      Supported
15239
15240 SECURITY SUBSYSTEM
15241 M:      James Morris <jmorris@namei.org>
15242 M:      "Serge E. Hallyn" <serge@hallyn.com>
15243 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15244 S:      Supported
15245 W:      http://kernsec.org/
15246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15247 F:      security/
15248 X:      security/selinux/
15249
15250 SELINUX SECURITY MODULE
15251 M:      Paul Moore <paul@paul-moore.com>
15252 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15253 M:      Eric Paris <eparis@parisplace.org>
15254 L:      selinux@vger.kernel.org
15255 S:      Supported
15256 W:      https://selinuxproject.org
15257 W:      https://github.com/SELinuxProject
15258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15259 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15260 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15261 F:      Documentation/admin-guide/LSM/SELinux.rst
15262 F:      include/uapi/linux/selinux_netlink.h
15263 F:      scripts/selinux/
15264 F:      security/selinux/
15265
15266 SENSABLE PHANTOM
15267 M:      Jiri Slaby <jirislaby@gmail.com>
15268 S:      Maintained
15269 F:      drivers/misc/phantom.c
15270 F:      include/uapi/linux/phantom.h
15271
15272 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15273 M:      Tomasz Duszynski <tduszyns@gmail.com>
15274 S:      Maintained
15275 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15276 F:      drivers/iio/chemical/sps30.c
15277
15278 SERIAL DEVICE BUS
15279 M:      Rob Herring <robh@kernel.org>
15280 L:      linux-serial@vger.kernel.org
15281 S:      Maintained
15282 F:      Documentation/devicetree/bindings/serial/serial.yaml
15283 F:      drivers/tty/serdev/
15284 F:      include/linux/serdev.h
15285
15286 SERIAL DRIVERS
15287 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15288 L:      linux-serial@vger.kernel.org
15289 S:      Maintained
15290 F:      Documentation/devicetree/bindings/serial/
15291 F:      drivers/tty/serial/
15292
15293 SERIAL IR RECEIVER
15294 M:      Sean Young <sean@mess.org>
15295 L:      linux-media@vger.kernel.org
15296 S:      Maintained
15297 F:      drivers/media/rc/serial_ir.c
15298
15299 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15300 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15301 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15302 S:      Maintained
15303 F:      Documentation/devicetree/bindings/slimbus/
15304 F:      drivers/slimbus/
15305 F:      include/linux/slimbus.h
15306
15307 SFC NETWORK DRIVER
15308 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15309 M:      Edward Cree <ecree@solarflare.com>
15310 M:      Martin Habets <mhabets@solarflare.com>
15311 L:      netdev@vger.kernel.org
15312 S:      Supported
15313 F:      drivers/net/ethernet/sfc/
15314
15315 SFF/SFP/SFP+ MODULE SUPPORT
15316 M:      Russell King <linux@armlinux.org.uk>
15317 L:      netdev@vger.kernel.org
15318 S:      Maintained
15319 F:      drivers/net/phy/phylink.c
15320 F:      drivers/net/phy/sfp*
15321 F:      include/linux/phylink.h
15322 F:      include/linux/sfp.h
15323 K:      phylink
15324
15325 SGI GRU DRIVER
15326 M:      Dimitri Sivanich <sivanich@sgi.com>
15327 S:      Maintained
15328 F:      drivers/misc/sgi-gru/
15329
15330 SGI XP/XPC/XPNET DRIVER
15331 M:      Cliff Whickman <cpw@sgi.com>
15332 M:      Robin Holt <robinmholt@gmail.com>
15333 S:      Maintained
15334 F:      drivers/misc/sgi-xp/
15335
15336 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15337 M:      Ursula Braun <ubraun@linux.ibm.com>
15338 M:      Karsten Graul <kgraul@linux.ibm.com>
15339 L:      linux-s390@vger.kernel.org
15340 S:      Supported
15341 W:      http://www.ibm.com/developerworks/linux/linux390/
15342 F:      net/smc/
15343
15344 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15345 M:      Linus Walleij <linus.walleij@linaro.org>
15346 L:      linux-iio@vger.kernel.org
15347 S:      Maintained
15348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15349 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15350 F:      drivers/iio/light/gp2ap002.c
15351
15352 SHARP RJ54N1CB0C SENSOR DRIVER
15353 M:      Jacopo Mondi <jacopo@jmondi.org>
15354 L:      linux-media@vger.kernel.org
15355 S:      Odd fixes
15356 T:      git git://linuxtv.org/media_tree.git
15357 F:      drivers/media/i2c/rj54n1cb0c.c
15358 F:      include/media/i2c/rj54n1cb0c.h
15359
15360 SH_VOU V4L2 OUTPUT DRIVER
15361 L:      linux-media@vger.kernel.org
15362 S:      Orphan
15363 F:      drivers/media/platform/sh_vou.c
15364 F:      include/media/drv-intf/sh_vou.h
15365
15366 SI2157 MEDIA DRIVER
15367 M:      Antti Palosaari <crope@iki.fi>
15368 L:      linux-media@vger.kernel.org
15369 S:      Maintained
15370 W:      https://linuxtv.org
15371 W:      http://palosaari.fi/linux/
15372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15373 T:      git git://linuxtv.org/anttip/media_tree.git
15374 F:      drivers/media/tuners/si2157*
15375
15376 SI2165 MEDIA DRIVER
15377 M:      Matthias Schwarzott <zzam@gentoo.org>
15378 L:      linux-media@vger.kernel.org
15379 S:      Maintained
15380 W:      https://linuxtv.org
15381 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15382 F:      drivers/media/dvb-frontends/si2165*
15383
15384 SI2168 MEDIA DRIVER
15385 M:      Antti Palosaari <crope@iki.fi>
15386 L:      linux-media@vger.kernel.org
15387 S:      Maintained
15388 W:      https://linuxtv.org
15389 W:      http://palosaari.fi/linux/
15390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15391 T:      git git://linuxtv.org/anttip/media_tree.git
15392 F:      drivers/media/dvb-frontends/si2168*
15393
15394 SI470X FM RADIO RECEIVER I2C DRIVER
15395 M:      Hans Verkuil <hverkuil@xs4all.nl>
15396 L:      linux-media@vger.kernel.org
15397 S:      Odd Fixes
15398 W:      https://linuxtv.org
15399 T:      git git://linuxtv.org/media_tree.git
15400 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15401
15402 SI470X FM RADIO RECEIVER USB DRIVER
15403 M:      Hans Verkuil <hverkuil@xs4all.nl>
15404 L:      linux-media@vger.kernel.org
15405 S:      Maintained
15406 W:      https://linuxtv.org
15407 T:      git git://linuxtv.org/media_tree.git
15408 F:      drivers/media/radio/si470x/radio-si470x-common.c
15409 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15410 F:      drivers/media/radio/si470x/radio-si470x.h
15411
15412 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15413 M:      Eduardo Valentin <edubezval@gmail.com>
15414 L:      linux-media@vger.kernel.org
15415 S:      Odd Fixes
15416 W:      https://linuxtv.org
15417 T:      git git://linuxtv.org/media_tree.git
15418 F:      drivers/media/radio/si4713/si4713.?
15419
15420 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15421 M:      Eduardo Valentin <edubezval@gmail.com>
15422 L:      linux-media@vger.kernel.org
15423 S:      Odd Fixes
15424 W:      https://linuxtv.org
15425 T:      git git://linuxtv.org/media_tree.git
15426 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15427
15428 SI4713 FM RADIO TRANSMITTER USB DRIVER
15429 M:      Hans Verkuil <hverkuil@xs4all.nl>
15430 L:      linux-media@vger.kernel.org
15431 S:      Maintained
15432 W:      https://linuxtv.org
15433 T:      git git://linuxtv.org/media_tree.git
15434 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15435
15436 SIANO DVB DRIVER
15437 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15438 L:      linux-media@vger.kernel.org
15439 S:      Odd fixes
15440 W:      https://linuxtv.org
15441 T:      git git://linuxtv.org/media_tree.git
15442 F:      drivers/media/common/siano/
15443 F:      drivers/media/mmc/siano/
15444 F:      drivers/media/usb/siano/
15445 F:      drivers/media/usb/siano/
15446
15447 SIFIVE DRIVERS
15448 M:      Palmer Dabbelt <palmer@dabbelt.com>
15449 M:      Paul Walmsley <paul.walmsley@sifive.com>
15450 L:      linux-riscv@lists.infradead.org
15451 S:      Supported
15452 T:      git git://github.com/sifive/riscv-linux.git
15453 N:      sifive
15454 K:      [^@]sifive
15455
15456 SIFIVE FU540 SYSTEM-ON-CHIP
15457 M:      Paul Walmsley <paul.walmsley@sifive.com>
15458 M:      Palmer Dabbelt <palmer@dabbelt.com>
15459 L:      linux-riscv@lists.infradead.org
15460 S:      Supported
15461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15462 N:      fu540
15463 K:      fu540
15464
15465 SIFIVE PDMA DRIVER
15466 M:      Green Wan <green.wan@sifive.com>
15467 S:      Maintained
15468 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15469 F:      drivers/dma/sf-pdma/
15470
15471 SILEAD TOUCHSCREEN DRIVER
15472 M:      Hans de Goede <hdegoede@redhat.com>
15473 L:      linux-input@vger.kernel.org
15474 L:      platform-driver-x86@vger.kernel.org
15475 S:      Maintained
15476 F:      drivers/input/touchscreen/silead.c
15477 F:      drivers/platform/x86/touchscreen_dmi.c
15478
15479 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15480 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15481 S:      Supported
15482 F:      drivers/staging/wfx/
15483
15484 SILICON MOTION SM712 FRAME BUFFER DRIVER
15485 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15486 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15487 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15488 L:      linux-fbdev@vger.kernel.org
15489 S:      Maintained
15490 F:      Documentation/fb/sm712fb.rst
15491 F:      drivers/video/fbdev/sm712*
15492
15493 SIMPLE FIRMWARE INTERFACE (SFI)
15494 S:      Obsolete
15495 W:      http://simplefirmware.org/
15496 F:      arch/x86/platform/sfi/
15497 F:      drivers/sfi/
15498 F:      include/linux/sfi*.h
15499
15500 SIMPLEFB FB DRIVER
15501 M:      Hans de Goede <hdegoede@redhat.com>
15502 L:      linux-fbdev@vger.kernel.org
15503 S:      Maintained
15504 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15505 F:      drivers/video/fbdev/simplefb.c
15506 F:      include/linux/platform_data/simplefb.h
15507
15508 SIMTEC EB110ATX (Chalice CATS)
15509 M:      Vincent Sanders <vince@simtec.co.uk>
15510 M:      Simtec Linux Team <linux@simtec.co.uk>
15511 S:      Supported
15512 W:      http://www.simtec.co.uk/products/EB110ATX/
15513
15514 SIMTEC EB2410ITX (BAST)
15515 M:      Vincent Sanders <vince@simtec.co.uk>
15516 M:      Simtec Linux Team <linux@simtec.co.uk>
15517 S:      Supported
15518 W:      http://www.simtec.co.uk/products/EB2410ITX/
15519 F:      arch/arm/mach-s3c24xx/bast-ide.c
15520 F:      arch/arm/mach-s3c24xx/bast-irq.c
15521 F:      arch/arm/mach-s3c24xx/mach-bast.c
15522
15523 SIOX
15524 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15525 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15526 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15527 S:      Supported
15528 F:      drivers/gpio/gpio-siox.c
15529 F:      drivers/siox/*
15530 F:      include/trace/events/siox.h
15531
15532 SIPHASH PRF ROUTINES
15533 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15534 S:      Maintained
15535 F:      include/linux/siphash.h
15536 F:      lib/siphash.c
15537 F:      lib/test_siphash.c
15538
15539 SIS 190 ETHERNET DRIVER
15540 M:      Francois Romieu <romieu@fr.zoreil.com>
15541 L:      netdev@vger.kernel.org
15542 S:      Maintained
15543 F:      drivers/net/ethernet/sis/sis190.c
15544
15545 SIS 900/7016 FAST ETHERNET DRIVER
15546 M:      Daniele Venzano <venza@brownhat.org>
15547 L:      netdev@vger.kernel.org
15548 S:      Maintained
15549 W:      http://www.brownhat.org/sis900.html
15550 F:      drivers/net/ethernet/sis/sis900.*
15551
15552 SIS FRAMEBUFFER DRIVER
15553 M:      Thomas Winischhofer <thomas@winischhofer.net>
15554 S:      Maintained
15555 W:      http://www.winischhofer.net/linuxsisvga.shtml
15556 F:      Documentation/fb/sisfb.rst
15557 F:      drivers/video/fbdev/sis/
15558 F:      include/video/sisfb.h
15559
15560 SIS USB2VGA DRIVER
15561 M:      Thomas Winischhofer <thomas@winischhofer.net>
15562 S:      Maintained
15563 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15564 F:      drivers/usb/misc/sisusbvga/
15565
15566 SLAB ALLOCATOR
15567 M:      Christoph Lameter <cl@linux.com>
15568 M:      Pekka Enberg <penberg@kernel.org>
15569 M:      David Rientjes <rientjes@google.com>
15570 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15571 M:      Andrew Morton <akpm@linux-foundation.org>
15572 L:      linux-mm@kvack.org
15573 S:      Maintained
15574 F:      include/linux/sl?b*.h
15575 F:      mm/sl?b*
15576
15577 SLEEPABLE READ-COPY UPDATE (SRCU)
15578 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15579 M:      "Paul E. McKenney" <paulmck@kernel.org>
15580 M:      Josh Triplett <josh@joshtriplett.org>
15581 R:      Steven Rostedt <rostedt@goodmis.org>
15582 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15583 L:      rcu@vger.kernel.org
15584 S:      Supported
15585 W:      http://www.rdrop.com/users/paulmck/RCU/
15586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15587 F:      include/linux/srcu*.h
15588 F:      kernel/rcu/srcu*.c
15589
15590 SMACK SECURITY MODULE
15591 M:      Casey Schaufler <casey@schaufler-ca.com>
15592 L:      linux-security-module@vger.kernel.org
15593 S:      Maintained
15594 W:      http://schaufler-ca.com
15595 T:      git git://github.com/cschaufler/smack-next
15596 F:      Documentation/admin-guide/LSM/Smack.rst
15597 F:      security/smack/
15598
15599 SMC91x ETHERNET DRIVER
15600 M:      Nicolas Pitre <nico@fluxnic.net>
15601 S:      Odd Fixes
15602 F:      drivers/net/ethernet/smsc/smc91x.*
15603
15604 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15605 M:      Mark Rutland <mark.rutland@arm.com>
15606 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15607 M:      Sudeep Holla <sudeep.holla@arm.com>
15608 L:      linux-arm-kernel@lists.infradead.org
15609 S:      Maintained
15610 F:      drivers/firmware/smccc/
15611 F:      include/linux/arm-smccc.h
15612
15613 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15614 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15615 L:      linux-media@vger.kernel.org
15616 S:      Maintained
15617 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15618 F:      drivers/media/i2c/smiapp-pll.c
15619 F:      drivers/media/i2c/smiapp-pll.h
15620 F:      drivers/media/i2c/smiapp/
15621 F:      include/uapi/linux/smiapp.h
15622
15623 SMM665 HARDWARE MONITOR DRIVER
15624 M:      Guenter Roeck <linux@roeck-us.net>
15625 L:      linux-hwmon@vger.kernel.org
15626 S:      Maintained
15627 F:      Documentation/hwmon/smm665.rst
15628 F:      drivers/hwmon/smm665.c
15629
15630 SMSC EMC2103 HARDWARE MONITOR DRIVER
15631 M:      Steve Glendinning <steve.glendinning@shawell.net>
15632 L:      linux-hwmon@vger.kernel.org
15633 S:      Maintained
15634 F:      Documentation/hwmon/emc2103.rst
15635 F:      drivers/hwmon/emc2103.c
15636
15637 SMSC SCH5627 HARDWARE MONITOR DRIVER
15638 M:      Hans de Goede <hdegoede@redhat.com>
15639 L:      linux-hwmon@vger.kernel.org
15640 S:      Supported
15641 F:      Documentation/hwmon/sch5627.rst
15642 F:      drivers/hwmon/sch5627.c
15643
15644 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15645 M:      Steve Glendinning <steve.glendinning@shawell.net>
15646 L:      linux-fbdev@vger.kernel.org
15647 S:      Maintained
15648 F:      drivers/video/fbdev/smscufx.c
15649
15650 SMSC47B397 HARDWARE MONITOR DRIVER
15651 M:      Jean Delvare <jdelvare@suse.com>
15652 L:      linux-hwmon@vger.kernel.org
15653 S:      Maintained
15654 F:      Documentation/hwmon/smsc47b397.rst
15655 F:      drivers/hwmon/smsc47b397.c
15656
15657 SMSC911x ETHERNET DRIVER
15658 M:      Steve Glendinning <steve.glendinning@shawell.net>
15659 L:      netdev@vger.kernel.org
15660 S:      Maintained
15661 F:      drivers/net/ethernet/smsc/smsc911x.*
15662 F:      include/linux/smsc911x.h
15663
15664 SMSC9420 PCI ETHERNET DRIVER
15665 M:      Steve Glendinning <steve.glendinning@shawell.net>
15666 L:      netdev@vger.kernel.org
15667 S:      Maintained
15668 F:      drivers/net/ethernet/smsc/smsc9420.*
15669
15670 SOC-CAMERA V4L2 SUBSYSTEM
15671 L:      linux-media@vger.kernel.org
15672 S:      Orphan
15673 T:      git git://linuxtv.org/media_tree.git
15674 F:      drivers/staging/media/soc_camera/
15675 F:      include/media/soc_camera.h
15676
15677 SOCIONEXT (SNI) AVE NETWORK DRIVER
15678 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15679 L:      netdev@vger.kernel.org
15680 S:      Maintained
15681 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15682 F:      drivers/net/ethernet/socionext/sni_ave.c
15683
15684 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15685 M:      Jassi Brar <jaswinder.singh@linaro.org>
15686 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15687 L:      netdev@vger.kernel.org
15688 S:      Maintained
15689 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15690 F:      drivers/net/ethernet/socionext/netsec.c
15691
15692 SOCIONEXT (SNI) Synquacer SPI DRIVER
15693 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15694 M:      Jassi Brar <jaswinder.singh@linaro.org>
15695 L:      linux-spi@vger.kernel.org
15696 S:      Maintained
15697 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15698 F:      drivers/spi/spi-synquacer.c
15699
15700 SOCIONEXT SYNQUACER I2C DRIVER
15701 M:      Ard Biesheuvel <ardb@kernel.org>
15702 L:      linux-i2c@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15705 F:      drivers/i2c/busses/i2c-synquacer.c
15706
15707 SOCIONEXT UNIPHIER SOUND DRIVER
15708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15709 S:      Orphan
15710 F:      sound/soc/uniphier/
15711
15712 SOEKRIS NET48XX LED SUPPORT
15713 M:      Chris Boot <bootc@bootc.net>
15714 S:      Maintained
15715 F:      drivers/leds/leds-net48xx.c
15716
15717 SOFT-IWARP DRIVER (siw)
15718 M:      Bernard Metzler <bmt@zurich.ibm.com>
15719 L:      linux-rdma@vger.kernel.org
15720 S:      Supported
15721 F:      drivers/infiniband/sw/siw/
15722 F:      include/uapi/rdma/siw-abi.h
15723
15724 SOFT-ROCE DRIVER (rxe)
15725 M:      Zhu Yanjun <yanjunz@mellanox.com>
15726 L:      linux-rdma@vger.kernel.org
15727 S:      Supported
15728 F:      drivers/infiniband/sw/rxe/
15729 F:      include/uapi/rdma/rdma_user_rxe.h
15730
15731 SOFTLOGIC 6x10 MPEG CODEC
15732 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15733 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15734 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15735 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15736 M:      Ismael Luceno <ismael@iodev.co.uk>
15737 L:      linux-media@vger.kernel.org
15738 S:      Supported
15739 F:      drivers/media/pci/solo6x10/
15740
15741 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15742 M:      James Morse <james.morse@arm.com>
15743 L:      linux-arm-kernel@lists.infradead.org
15744 S:      Maintained
15745 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15746 F:      drivers/firmware/arm_sdei.c
15747 F:      include/linux/arm_sdei.h
15748 F:      include/uapi/linux/arm_sdei.h
15749
15750 SOFTWARE RAID (Multiple Disks) SUPPORT
15751 M:      Song Liu <song@kernel.org>
15752 L:      linux-raid@vger.kernel.org
15753 S:      Supported
15754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15755 F:      drivers/md/Kconfig
15756 F:      drivers/md/Makefile
15757 F:      drivers/md/md*
15758 F:      drivers/md/raid*
15759 F:      include/linux/raid/
15760 F:      include/uapi/linux/raid/
15761
15762 SOLIDRUN CLEARFOG SUPPORT
15763 M:      Russell King <linux@armlinux.org.uk>
15764 S:      Maintained
15765 F:      arch/arm/boot/dts/armada-388-clearfog*
15766 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15767
15768 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15769 M:      Russell King <linux@armlinux.org.uk>
15770 S:      Maintained
15771 F:      arch/arm/boot/dts/imx6*-cubox-i*
15772 F:      arch/arm/boot/dts/imx6*-hummingboard*
15773 F:      arch/arm/boot/dts/imx6*-sr-*
15774
15775 SONIC NETWORK DRIVER
15776 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15777 L:      netdev@vger.kernel.org
15778 S:      Maintained
15779 F:      drivers/net/ethernet/natsemi/sonic.*
15780
15781 SONICS SILICON BACKPLANE DRIVER (SSB)
15782 M:      Michael Buesch <m@bues.ch>
15783 L:      linux-wireless@vger.kernel.org
15784 S:      Maintained
15785 F:      drivers/ssb/
15786 F:      include/linux/ssb/
15787
15788 SONY IMX214 SENSOR DRIVER
15789 M:      Ricardo Ribalda <ribalda@kernel.org>
15790 L:      linux-media@vger.kernel.org
15791 S:      Maintained
15792 T:      git git://linuxtv.org/media_tree.git
15793 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15794 F:      drivers/media/i2c/imx214.c
15795
15796 SONY IMX219 SENSOR DRIVER
15797 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15798 L:      linux-media@vger.kernel.org
15799 S:      Maintained
15800 T:      git git://linuxtv.org/media_tree.git
15801 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15802 F:      drivers/media/i2c/imx219.c
15803
15804 SONY IMX258 SENSOR DRIVER
15805 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15806 L:      linux-media@vger.kernel.org
15807 S:      Maintained
15808 T:      git git://linuxtv.org/media_tree.git
15809 F:      drivers/media/i2c/imx258.c
15810
15811 SONY IMX274 SENSOR DRIVER
15812 M:      Leon Luo <leonl@leopardimaging.com>
15813 L:      linux-media@vger.kernel.org
15814 S:      Maintained
15815 T:      git git://linuxtv.org/media_tree.git
15816 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15817 F:      drivers/media/i2c/imx274.c
15818
15819 SONY IMX290 SENSOR DRIVER
15820 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15821 L:      linux-media@vger.kernel.org
15822 S:      Maintained
15823 T:      git git://linuxtv.org/media_tree.git
15824 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15825 F:      drivers/media/i2c/imx290.c
15826
15827 SONY IMX319 SENSOR DRIVER
15828 M:      Bingbu Cao <bingbu.cao@intel.com>
15829 L:      linux-media@vger.kernel.org
15830 S:      Maintained
15831 T:      git git://linuxtv.org/media_tree.git
15832 F:      drivers/media/i2c/imx319.c
15833
15834 SONY IMX355 SENSOR DRIVER
15835 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15836 L:      linux-media@vger.kernel.org
15837 S:      Maintained
15838 T:      git git://linuxtv.org/media_tree.git
15839 F:      drivers/media/i2c/imx355.c
15840
15841 SONY MEMORYSTICK SUBSYSTEM
15842 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15843 M:      Alex Dubov <oakad@yahoo.com>
15844 M:      Ulf Hansson <ulf.hansson@linaro.org>
15845 L:      linux-mmc@vger.kernel.org
15846 S:      Maintained
15847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15848 F:      drivers/memstick/
15849 F:      include/linux/memstick.h
15850
15851 SONY VAIO CONTROL DEVICE DRIVER
15852 M:      Mattia Dongili <malattia@linux.it>
15853 L:      platform-driver-x86@vger.kernel.org
15854 S:      Maintained
15855 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15856 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15857 F:      drivers/char/sonypi.c
15858 F:      drivers/platform/x86/sony-laptop.c
15859 F:      include/linux/sony-laptop.h
15860
15861 SOUND
15862 M:      Jaroslav Kysela <perex@perex.cz>
15863 M:      Takashi Iwai <tiwai@suse.com>
15864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15865 S:      Maintained
15866 W:      http://www.alsa-project.org/
15867 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15869 F:      Documentation/sound/
15870 F:      include/sound/
15871 F:      include/uapi/sound/
15872 F:      sound/
15873
15874 SOUND - COMPRESSED AUDIO
15875 M:      Vinod Koul <vkoul@kernel.org>
15876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15877 S:      Supported
15878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15879 F:      Documentation/sound/designs/compress-offload.rst
15880 F:      include/sound/compress_driver.h
15881 F:      include/uapi/sound/compress_*
15882 F:      sound/core/compress_offload.c
15883 F:      sound/soc/soc-compress.c
15884
15885 SOUND - DMAENGINE HELPERS
15886 M:      Lars-Peter Clausen <lars@metafoo.de>
15887 S:      Supported
15888 F:      include/sound/dmaengine_pcm.h
15889 F:      sound/core/pcm_dmaengine.c
15890 F:      sound/soc/soc-generic-dmaengine-pcm.c
15891
15892 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15893 M:      Liam Girdwood <lgirdwood@gmail.com>
15894 M:      Mark Brown <broonie@kernel.org>
15895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15896 S:      Supported
15897 W:      http://alsa-project.org/main/index.php/ASoC
15898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15899 F:      Documentation/devicetree/bindings/sound/
15900 F:      Documentation/sound/soc/
15901 F:      include/dt-bindings/sound/
15902 F:      include/sound/soc*
15903 F:      sound/soc/
15904
15905 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15906 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15907 M:      Liam Girdwood <lgirdwood@gmail.com>
15908 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15909 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15910 M:      Daniel Baluta <daniel.baluta@nxp.com>
15911 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15912 S:      Supported
15913 W:      https://github.com/thesofproject/linux/
15914 F:      sound/soc/sof/
15915
15916 SOUNDWIRE SUBSYSTEM
15917 M:      Vinod Koul <vkoul@kernel.org>
15918 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15919 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15921 S:      Supported
15922 F:      Documentation/driver-api/soundwire/
15923 F:      drivers/soundwire/
15924 F:      include/linux/soundwire/
15925
15926 SP2 MEDIA DRIVER
15927 M:      Olli Salonen <olli.salonen@iki.fi>
15928 L:      linux-media@vger.kernel.org
15929 S:      Maintained
15930 W:      https://linuxtv.org
15931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15932 F:      drivers/media/dvb-frontends/sp2*
15933
15934 SPARC + UltraSPARC (sparc/sparc64)
15935 M:      "David S. Miller" <davem@davemloft.net>
15936 L:      sparclinux@vger.kernel.org
15937 S:      Maintained
15938 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15941 F:      arch/sparc/
15942 F:      drivers/sbus/
15943
15944 SPARC SERIAL DRIVERS
15945 M:      "David S. Miller" <davem@davemloft.net>
15946 L:      sparclinux@vger.kernel.org
15947 S:      Maintained
15948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15950 F:      drivers/tty/serial/suncore.c
15951 F:      drivers/tty/serial/sunhv.c
15952 F:      drivers/tty/serial/sunsab.c
15953 F:      drivers/tty/serial/sunsab.h
15954 F:      drivers/tty/serial/sunsu.c
15955 F:      drivers/tty/serial/sunzilog.c
15956 F:      drivers/tty/serial/sunzilog.h
15957 F:      drivers/tty/vcc.c
15958 F:      include/linux/sunserialcore.h
15959
15960 SPARSE CHECKER
15961 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15962 L:      linux-sparse@vger.kernel.org
15963 S:      Maintained
15964 W:      https://sparse.wiki.kernel.org/
15965 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15966 F:      include/linux/compiler.h
15967
15968 SPEAR CLOCK FRAMEWORK SUPPORT
15969 M:      Viresh Kumar <vireshk@kernel.org>
15970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15971 S:      Maintained
15972 W:      http://www.st.com/spear
15973 F:      drivers/clk/spear/
15974
15975 SPEAR PLATFORM SUPPORT
15976 M:      Viresh Kumar <vireshk@kernel.org>
15977 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15979 S:      Maintained
15980 W:      http://www.st.com/spear
15981 F:      arch/arm/boot/dts/spear*
15982 F:      arch/arm/mach-spear/
15983
15984 SPI NOR SUBSYSTEM
15985 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15986 L:      linux-mtd@lists.infradead.org
15987 S:      Maintained
15988 W:      http://www.linux-mtd.infradead.org/
15989 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15990 C:      irc://irc.oftc.net/mtd
15991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15992 F:      drivers/mtd/spi-nor/
15993 F:      include/linux/mtd/spi-nor.h
15994
15995 SPI SUBSYSTEM
15996 M:      Mark Brown <broonie@kernel.org>
15997 L:      linux-spi@vger.kernel.org
15998 S:      Maintained
15999 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16001 F:      Documentation/devicetree/bindings/spi/
16002 F:      Documentation/spi/
16003 F:      drivers/spi/
16004 F:      include/linux/spi/
16005 F:      include/uapi/linux/spi/
16006 F:      tools/spi/
16007
16008 SPIDERNET NETWORK DRIVER for CELL
16009 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16010 L:      netdev@vger.kernel.org
16011 S:      Supported
16012 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16013 F:      drivers/net/ethernet/toshiba/spider_net*
16014
16015 SPMI SUBSYSTEM
16016 R:      Stephen Boyd <sboyd@kernel.org>
16017 L:      linux-arm-msm@vger.kernel.org
16018 F:      Documentation/devicetree/bindings/spmi/
16019 F:      drivers/spmi/
16020 F:      include/dt-bindings/spmi/spmi.h
16021 F:      include/linux/spmi.h
16022 F:      include/trace/events/spmi.h
16023
16024 SPU FILE SYSTEM
16025 M:      Jeremy Kerr <jk@ozlabs.org>
16026 L:      linuxppc-dev@lists.ozlabs.org
16027 S:      Supported
16028 W:      http://www.ibm.com/developerworks/power/cell/
16029 F:      Documentation/filesystems/spufs/spufs.rst
16030 F:      arch/powerpc/platforms/cell/spufs/
16031
16032 SQUASHFS FILE SYSTEM
16033 M:      Phillip Lougher <phillip@squashfs.org.uk>
16034 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16035 S:      Maintained
16036 W:      http://squashfs.org.uk
16037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16038 F:      Documentation/filesystems/squashfs.rst
16039 F:      fs/squashfs/
16040
16041 SRM (Alpha) environment access
16042 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16043 S:      Maintained
16044 F:      arch/alpha/kernel/srm_env.c
16045
16046 ST LSM6DSx IMU IIO DRIVER
16047 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16048 L:      linux-iio@vger.kernel.org
16049 S:      Maintained
16050 W:      http://www.st.com/
16051 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16052 F:      drivers/iio/imu/st_lsm6dsx/
16053
16054 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16055 M:      Mickael Guene <mickael.guene@st.com>
16056 L:      linux-media@vger.kernel.org
16057 S:      Maintained
16058 T:      git git://linuxtv.org/media_tree.git
16059 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16060 F:      drivers/media/i2c/st-mipid02.c
16061
16062 ST STM32 I2C/SMBUS DRIVER
16063 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16064 L:      linux-i2c@vger.kernel.org
16065 S:      Maintained
16066 F:      drivers/i2c/busses/i2c-stm32*
16067
16068 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16069 M:      Song Qiang <songqiang1304521@gmail.com>
16070 L:      linux-iio@vger.kernel.org
16071 S:      Maintained
16072 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16073 F:      drivers/iio/proximity/vl53l0x-i2c.c
16074
16075 STABLE BRANCH
16076 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16077 M:      Sasha Levin <sashal@kernel.org>
16078 L:      stable@vger.kernel.org
16079 S:      Supported
16080 F:      Documentation/process/stable-kernel-rules.rst
16081
16082 STAGING - ATOMISP DRIVER
16083 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16084 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16085 L:      linux-media@vger.kernel.org
16086 S:      Maintained
16087 F:      drivers/staging/media/atomisp/
16088
16089 STAGING - COMEDI
16090 M:      Ian Abbott <abbotti@mev.co.uk>
16091 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16092 S:      Odd Fixes
16093 F:      drivers/staging/comedi/
16094
16095 STAGING - FIELDBUS SUBSYSTEM
16096 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16097 S:      Maintained
16098 F:      drivers/staging/fieldbus/*
16099 F:      drivers/staging/fieldbus/Documentation/
16100
16101 STAGING - HMS ANYBUS-S BUS
16102 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16103 S:      Maintained
16104 F:      drivers/staging/fieldbus/anybuss/
16105
16106 STAGING - INDUSTRIAL IO
16107 M:      Jonathan Cameron <jic23@kernel.org>
16108 L:      linux-iio@vger.kernel.org
16109 S:      Odd Fixes
16110 F:      Documentation/devicetree/bindings/staging/iio/
16111 F:      drivers/staging/iio/
16112
16113 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16114 M:      Marc Dietrich <marvin24@gmx.de>
16115 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16116 L:      linux-tegra@vger.kernel.org
16117 S:      Maintained
16118 F:      drivers/staging/nvec/
16119
16120 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16121 M:      Jens Frederich <jfrederich@gmail.com>
16122 M:      Daniel Drake <dsd@laptop.org>
16123 M:      Jon Nettleton <jon.nettleton@gmail.com>
16124 S:      Maintained
16125 W:      http://wiki.laptop.org/go/DCON
16126 F:      drivers/staging/olpc_dcon/
16127
16128 STAGING - REALTEK RTL8188EU DRIVERS
16129 M:      Larry Finger <Larry.Finger@lwfinger.net>
16130 S:      Odd Fixes
16131 F:      drivers/staging/rtl8188eu/
16132
16133 STAGING - REALTEK RTL8712U DRIVERS
16134 M:      Larry Finger <Larry.Finger@lwfinger.net>
16135 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16136 S:      Odd Fixes
16137 F:      drivers/staging/rtl8712/
16138
16139 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16140 M:      Michael Hennerich <michael.hennerich@analog.com>
16141 M:      Beniamin Bia <beniamin.bia@analog.com>
16142 L:      linux-fbdev@vger.kernel.org
16143 S:      Supported
16144 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16145 F:      drivers/staging/fbtft/fb_seps525.c
16146
16147 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16148 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16149 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16150 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16151 L:      linux-fbdev@vger.kernel.org
16152 S:      Maintained
16153 F:      drivers/staging/sm750fb/
16154
16155 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16156 M:      William Hubbs <w.d.hubbs@gmail.com>
16157 M:      Chris Brannon <chris@the-brannons.com>
16158 M:      Kirk Reiser <kirk@reisers.ca>
16159 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16160 L:      speakup@linux-speakup.org
16161 S:      Odd Fixes
16162 W:      http://www.linux-speakup.org/
16163 F:      drivers/staging/speakup/
16164
16165 STAGING - VIA VT665X DRIVERS
16166 M:      Forest Bond <forest@alittletooquiet.net>
16167 S:      Odd Fixes
16168 F:      drivers/staging/vt665?/
16169
16170 STAGING - WILC1000 WIFI DRIVER
16171 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16172 M:      Ajay Singh <ajay.kathat@microchip.com>
16173 L:      linux-wireless@vger.kernel.org
16174 S:      Supported
16175 F:      drivers/staging/wilc1000/
16176
16177 STAGING SUBSYSTEM
16178 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16179 L:      devel@driverdev.osuosl.org
16180 S:      Supported
16181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16182 F:      drivers/staging/
16183
16184 STARFIRE/DURALAN NETWORK DRIVER
16185 M:      Ion Badulescu <ionut@badula.org>
16186 S:      Odd Fixes
16187 F:      drivers/net/ethernet/adaptec/starfire*
16188
16189 STEC S1220 SKD DRIVER
16190 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16191 L:      linux-block@vger.kernel.org
16192 S:      Maintained
16193 F:      drivers/block/skd*[ch]
16194
16195 STI AUDIO (ASoC) DRIVERS
16196 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16197 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16198 S:      Maintained
16199 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16200 F:      sound/soc/sti/
16201
16202 STI CEC DRIVER
16203 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16204 S:      Maintained
16205 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16206 F:      drivers/media/platform/sti/cec/
16207
16208 STK1160 USB VIDEO CAPTURE DRIVER
16209 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16210 L:      linux-media@vger.kernel.org
16211 S:      Maintained
16212 T:      git git://linuxtv.org/media_tree.git
16213 F:      drivers/media/usb/stk1160/
16214
16215 STM32 AUDIO (ASoC) DRIVERS
16216 M:      Olivier Moysan <olivier.moysan@st.com>
16217 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16218 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16219 S:      Maintained
16220 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16221 F:      sound/soc/stm/
16222
16223 STM32 TIMER/LPTIMER DRIVERS
16224 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16225 S:      Maintained
16226 F:      Documentation/ABI/testing/*timer-stm32
16227 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16228 F:      drivers/*/stm32-*timer*
16229 F:      drivers/pwm/pwm-stm32*
16230 F:      include/linux/*/stm32-*tim*
16231
16232 STMMAC ETHERNET DRIVER
16233 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16234 M:      Alexandre Torgue <alexandre.torgue@st.com>
16235 M:      Jose Abreu <joabreu@synopsys.com>
16236 L:      netdev@vger.kernel.org
16237 S:      Supported
16238 W:      http://www.stlinux.com
16239 F:      Documentation/networking/device_drivers/stmicro/
16240 F:      drivers/net/ethernet/stmicro/stmmac/
16241
16242 SUN3/3X
16243 M:      Sam Creasey <sammy@sammy.net>
16244 S:      Maintained
16245 W:      http://sammy.net/sun3/
16246 F:      arch/m68k/include/asm/sun3*
16247 F:      arch/m68k/kernel/*sun3*
16248 F:      arch/m68k/sun3*/
16249 F:      drivers/net/ethernet/i825xx/sun3*
16250
16251 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16252 M:      Hans de Goede <hdegoede@redhat.com>
16253 L:      linux-input@vger.kernel.org
16254 S:      Maintained
16255 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16256 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16257
16258 SUNDANCE NETWORK DRIVER
16259 M:      Denis Kirjanov <kda@linux-powerpc.org>
16260 L:      netdev@vger.kernel.org
16261 S:      Maintained
16262 F:      drivers/net/ethernet/dlink/sundance.c
16263
16264 SUPERH
16265 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16266 M:      Rich Felker <dalias@libc.org>
16267 L:      linux-sh@vger.kernel.org
16268 S:      Maintained
16269 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16270 F:      Documentation/sh/
16271 F:      arch/sh/
16272 F:      drivers/sh/
16273
16274 SUSPEND TO RAM
16275 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16276 M:      Len Brown <len.brown@intel.com>
16277 M:      Pavel Machek <pavel@ucw.cz>
16278 L:      linux-pm@vger.kernel.org
16279 S:      Supported
16280 B:      https://bugzilla.kernel.org
16281 F:      Documentation/power/
16282 F:      arch/x86/kernel/acpi/
16283 F:      drivers/base/power/
16284 F:      include/linux/freezer.h
16285 F:      include/linux/pm.h
16286 F:      include/linux/suspend.h
16287 F:      kernel/power/
16288
16289 SVGA HANDLING
16290 M:      Martin Mares <mj@ucw.cz>
16291 L:      linux-video@atrey.karlin.mff.cuni.cz
16292 S:      Maintained
16293 F:      Documentation/admin-guide/svga.rst
16294 F:      arch/x86/boot/video*
16295
16296 SWIOTLB SUBSYSTEM
16297 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16298 L:      iommu@lists.linux-foundation.org
16299 S:      Supported
16300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16301 F:      arch/*/kernel/pci-swiotlb.c
16302 F:      include/linux/swiotlb.h
16303 F:      kernel/dma/swiotlb.c
16304
16305 SWITCHDEV
16306 M:      Jiri Pirko <jiri@resnulli.us>
16307 M:      Ivan Vecera <ivecera@redhat.com>
16308 L:      netdev@vger.kernel.org
16309 S:      Supported
16310 F:      include/net/switchdev.h
16311 F:      net/switchdev/
16312
16313 SY8106A REGULATOR DRIVER
16314 M:      Icenowy Zheng <icenowy@aosc.io>
16315 S:      Maintained
16316 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16317 F:      drivers/regulator/sy8106a-regulator.c
16318
16319 SYNC FILE FRAMEWORK
16320 M:      Sumit Semwal <sumit.semwal@linaro.org>
16321 R:      Gustavo Padovan <gustavo@padovan.org>
16322 L:      linux-media@vger.kernel.org
16323 L:      dri-devel@lists.freedesktop.org
16324 S:      Maintained
16325 T:      git git://anongit.freedesktop.org/drm/drm-misc
16326 F:      Documentation/driver-api/sync_file.rst
16327 F:      drivers/dma-buf/dma-fence*
16328 F:      drivers/dma-buf/sw_sync.c
16329 F:      drivers/dma-buf/sync_*
16330 F:      include/linux/sync_file.h
16331 F:      include/uapi/linux/sync_file.h
16332
16333 SYNOPSYS ARC ARCHITECTURE
16334 M:      Vineet Gupta <vgupta@synopsys.com>
16335 L:      linux-snps-arc@lists.infradead.org
16336 S:      Supported
16337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16338 F:      Documentation/devicetree/bindings/arc/*
16339 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16340 F:      arch/arc/
16341 F:      drivers/clocksource/arc_timer.c
16342 F:      drivers/tty/serial/arc_uart.c
16343
16344 SYNOPSYS ARC HSDK SDP pll clock driver
16345 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16346 S:      Supported
16347 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16348 F:      drivers/clk/clk-hsdk-pll.c
16349
16350 SYNOPSYS ARC SDP clock driver
16351 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16352 S:      Supported
16353 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16354 F:      drivers/clk/axs10x/*
16355
16356 SYNOPSYS ARC SDP platform support
16357 M:      Alexey Brodkin <abrodkin@synopsys.com>
16358 S:      Supported
16359 F:      Documentation/devicetree/bindings/arc/axs10*
16360 F:      arch/arc/boot/dts/ax*
16361 F:      arch/arc/plat-axs10x
16362
16363 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16364 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16365 S:      Supported
16366 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16367 F:      drivers/reset/reset-axs10x.c
16368
16369 SYNOPSYS CREG GPIO DRIVER
16370 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16371 S:      Maintained
16372 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16373 F:      drivers/gpio/gpio-creg-snps.c
16374
16375 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16376 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16377 S:      Maintained
16378 F:      drivers/tty/serial/8250/8250_dw.c
16379 F:      drivers/tty/serial/8250/8250_dwlib.*
16380 F:      drivers/tty/serial/8250/8250_lpss.c
16381
16382 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16383 M:      Hoan Tran <hoan@os.amperecomputing.com>
16384 M:      Serge Semin <fancer.lancer@gmail.com>
16385 L:      linux-gpio@vger.kernel.org
16386 S:      Maintained
16387 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16388 F:      drivers/gpio/gpio-dwapb.c
16389
16390 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16391 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16392 S:      Maintained
16393 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16394 F:      drivers/dma/dw-axi-dmac/
16395
16396 SYNOPSYS DESIGNWARE DMAC DRIVER
16397 M:      Viresh Kumar <vireshk@kernel.org>
16398 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16399 S:      Maintained
16400 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16401 F:      drivers/dma/dw/
16402 F:      include/dt-bindings/dma/dw-dmac.h
16403 F:      include/linux/dma/dw.h
16404 F:      include/linux/platform_data/dma-dw.h
16405
16406 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16407 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16408 L:      netdev@vger.kernel.org
16409 S:      Supported
16410 F:      drivers/net/ethernet/synopsys/
16411
16412 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16413 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16414 L:      netdev@vger.kernel.org
16415 S:      Supported
16416 F:      drivers/net/phy/mdio-xpcs.c
16417 F:      include/linux/mdio-xpcs.h
16418
16419 SYNOPSYS DESIGNWARE I2C DRIVER
16420 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16421 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16422 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16423 L:      linux-i2c@vger.kernel.org
16424 S:      Maintained
16425 F:      drivers/i2c/busses/i2c-designware-*
16426 F:      include/linux/platform_data/i2c-designware.h
16427
16428 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16429 M:      Jaehoon Chung <jh80.chung@samsung.com>
16430 L:      linux-mmc@vger.kernel.org
16431 S:      Maintained
16432 F:      drivers/mmc/host/dw_mmc*
16433
16434 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16435 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16436 S:      Supported
16437 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16438 F:      drivers/reset/reset-hsdk.c
16439 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16440
16441 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16442 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16443 M:      Manjunath M B <manjumb@synopsys.com>
16444 L:      linux-mmc@vger.kernel.org
16445 S:      Maintained
16446 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16447
16448 SYSTEM CONFIGURATION (SYSCON)
16449 M:      Lee Jones <lee.jones@linaro.org>
16450 M:      Arnd Bergmann <arnd@arndb.de>
16451 S:      Supported
16452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16453 F:      drivers/mfd/syscon.c
16454
16455 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16456 M:      Sudeep Holla <sudeep.holla@arm.com>
16457 L:      linux-arm-kernel@lists.infradead.org
16458 S:      Maintained
16459 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16460 F:      drivers/clk/clk-sc[mp]i.c
16461 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16462 F:      drivers/firmware/arm_scmi/
16463 F:      drivers/firmware/arm_scpi.c
16464 F:      drivers/reset/reset-scmi.c
16465 F:      include/linux/sc[mp]i_protocol.h
16466 F:      include/trace/events/scmi.h
16467
16468 SYSTEM RESET/SHUTDOWN DRIVERS
16469 M:      Sebastian Reichel <sre@kernel.org>
16470 L:      linux-pm@vger.kernel.org
16471 S:      Maintained
16472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16473 F:      Documentation/devicetree/bindings/power/reset/
16474 F:      drivers/power/reset/
16475
16476 SYSTEM TRACE MODULE CLASS
16477 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16478 S:      Maintained
16479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16480 F:      Documentation/trace/stm.rst
16481 F:      drivers/hwtracing/stm/
16482 F:      include/linux/stm.h
16483 F:      include/uapi/linux/stm.h
16484
16485 SYSTEM76 ACPI DRIVER
16486 M:      Jeremy Soller <jeremy@system76.com>
16487 M:      System76 Product Development <productdev@system76.com>
16488 L:      platform-driver-x86@vger.kernel.org
16489 S:      Maintained
16490 F:      drivers/platform/x86/system76_acpi.c
16491
16492 SYSV FILESYSTEM
16493 M:      Christoph Hellwig <hch@infradead.org>
16494 S:      Maintained
16495 F:      Documentation/filesystems/sysv-fs.rst
16496 F:      fs/sysv/
16497 F:      include/linux/sysv_fs.h
16498
16499 TASKSTATS STATISTICS INTERFACE
16500 M:      Balbir Singh <bsingharora@gmail.com>
16501 S:      Maintained
16502 F:      Documentation/accounting/taskstats*
16503 F:      include/linux/taskstats*
16504 F:      kernel/taskstats.c
16505
16506 TC subsystem
16507 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16508 M:      Cong Wang <xiyou.wangcong@gmail.com>
16509 M:      Jiri Pirko <jiri@resnulli.us>
16510 L:      netdev@vger.kernel.org
16511 S:      Maintained
16512 F:      include/net/pkt_cls.h
16513 F:      include/net/pkt_sched.h
16514 F:      include/net/tc_act/
16515 F:      include/uapi/linux/pkt_cls.h
16516 F:      include/uapi/linux/pkt_sched.h
16517 F:      include/uapi/linux/tc_act/
16518 F:      include/uapi/linux/tc_ematch/
16519 F:      net/sched/
16520
16521 TC90522 MEDIA DRIVER
16522 M:      Akihiro Tsukada <tskd08@gmail.com>
16523 L:      linux-media@vger.kernel.org
16524 S:      Odd Fixes
16525 F:      drivers/media/dvb-frontends/tc90522*
16526
16527 TCP LOW PRIORITY MODULE
16528 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16529 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16530 S:      Maintained
16531 W:      http://tcp-lp-mod.sourceforge.net/
16532 F:      net/ipv4/tcp_lp.c
16533
16534 TDA10071 MEDIA DRIVER
16535 M:      Antti Palosaari <crope@iki.fi>
16536 L:      linux-media@vger.kernel.org
16537 S:      Maintained
16538 W:      https://linuxtv.org
16539 W:      http://palosaari.fi/linux/
16540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16541 T:      git git://linuxtv.org/anttip/media_tree.git
16542 F:      drivers/media/dvb-frontends/tda10071*
16543
16544 TDA18212 MEDIA DRIVER
16545 M:      Antti Palosaari <crope@iki.fi>
16546 L:      linux-media@vger.kernel.org
16547 S:      Maintained
16548 W:      https://linuxtv.org
16549 W:      http://palosaari.fi/linux/
16550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16551 T:      git git://linuxtv.org/anttip/media_tree.git
16552 F:      drivers/media/tuners/tda18212*
16553
16554 TDA18218 MEDIA DRIVER
16555 M:      Antti Palosaari <crope@iki.fi>
16556 L:      linux-media@vger.kernel.org
16557 S:      Maintained
16558 W:      https://linuxtv.org
16559 W:      http://palosaari.fi/linux/
16560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16561 T:      git git://linuxtv.org/anttip/media_tree.git
16562 F:      drivers/media/tuners/tda18218*
16563
16564 TDA18250 MEDIA DRIVER
16565 M:      Olli Salonen <olli.salonen@iki.fi>
16566 L:      linux-media@vger.kernel.org
16567 S:      Maintained
16568 W:      https://linuxtv.org
16569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16570 T:      git git://linuxtv.org/media_tree.git
16571 F:      drivers/media/tuners/tda18250*
16572
16573 TDA18271 MEDIA DRIVER
16574 M:      Michael Krufky <mkrufky@linuxtv.org>
16575 L:      linux-media@vger.kernel.org
16576 S:      Maintained
16577 W:      https://linuxtv.org
16578 W:      http://github.com/mkrufky
16579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16580 T:      git git://linuxtv.org/mkrufky/tuners.git
16581 F:      drivers/media/tuners/tda18271*
16582
16583 TDA1997x MEDIA DRIVER
16584 M:      Tim Harvey <tharvey@gateworks.com>
16585 L:      linux-media@vger.kernel.org
16586 S:      Maintained
16587 W:      https://linuxtv.org
16588 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16589 F:      drivers/media/i2c/tda1997x.*
16590
16591 TDA827x MEDIA DRIVER
16592 M:      Michael Krufky <mkrufky@linuxtv.org>
16593 L:      linux-media@vger.kernel.org
16594 S:      Maintained
16595 W:      https://linuxtv.org
16596 W:      http://github.com/mkrufky
16597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16598 T:      git git://linuxtv.org/mkrufky/tuners.git
16599 F:      drivers/media/tuners/tda8290.*
16600
16601 TDA8290 MEDIA DRIVER
16602 M:      Michael Krufky <mkrufky@linuxtv.org>
16603 L:      linux-media@vger.kernel.org
16604 S:      Maintained
16605 W:      https://linuxtv.org
16606 W:      http://github.com/mkrufky
16607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16608 T:      git git://linuxtv.org/mkrufky/tuners.git
16609 F:      drivers/media/tuners/tda8290.*
16610
16611 TDA9840 MEDIA DRIVER
16612 M:      Hans Verkuil <hverkuil@xs4all.nl>
16613 L:      linux-media@vger.kernel.org
16614 S:      Maintained
16615 W:      https://linuxtv.org
16616 T:      git git://linuxtv.org/media_tree.git
16617 F:      drivers/media/i2c/tda9840*
16618
16619 TEA5761 TUNER DRIVER
16620 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16621 L:      linux-media@vger.kernel.org
16622 S:      Odd fixes
16623 W:      https://linuxtv.org
16624 T:      git git://linuxtv.org/media_tree.git
16625 F:      drivers/media/tuners/tea5761.*
16626
16627 TEA5767 TUNER DRIVER
16628 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16629 L:      linux-media@vger.kernel.org
16630 S:      Maintained
16631 W:      https://linuxtv.org
16632 T:      git git://linuxtv.org/media_tree.git
16633 F:      drivers/media/tuners/tea5767.*
16634
16635 TEA6415C MEDIA DRIVER
16636 M:      Hans Verkuil <hverkuil@xs4all.nl>
16637 L:      linux-media@vger.kernel.org
16638 S:      Maintained
16639 W:      https://linuxtv.org
16640 T:      git git://linuxtv.org/media_tree.git
16641 F:      drivers/media/i2c/tea6415c*
16642
16643 TEA6420 MEDIA DRIVER
16644 M:      Hans Verkuil <hverkuil@xs4all.nl>
16645 L:      linux-media@vger.kernel.org
16646 S:      Maintained
16647 W:      https://linuxtv.org
16648 T:      git git://linuxtv.org/media_tree.git
16649 F:      drivers/media/i2c/tea6420*
16650
16651 TEAM DRIVER
16652 M:      Jiri Pirko <jiri@resnulli.us>
16653 L:      netdev@vger.kernel.org
16654 S:      Supported
16655 F:      drivers/net/team/
16656 F:      include/linux/if_team.h
16657 F:      include/uapi/linux/if_team.h
16658
16659 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16660 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16661 S:      Maintained
16662 F:      arch/x86/platform/ts5500/
16663
16664 TECHNOTREND USB IR RECEIVER
16665 M:      Sean Young <sean@mess.org>
16666 L:      linux-media@vger.kernel.org
16667 S:      Maintained
16668 F:      drivers/media/rc/ttusbir.c
16669
16670 TECHWELL TW9910 VIDEO DECODER
16671 L:      linux-media@vger.kernel.org
16672 S:      Orphan
16673 F:      drivers/media/i2c/tw9910.c
16674 F:      include/media/i2c/tw9910.h
16675
16676 TEE SUBSYSTEM
16677 M:      Jens Wiklander <jens.wiklander@linaro.org>
16678 L:      tee-dev@lists.linaro.org
16679 S:      Maintained
16680 F:      Documentation/tee.txt
16681 F:      drivers/tee/
16682 F:      include/linux/tee_drv.h
16683 F:      include/uapi/linux/tee.h
16684
16685 TEGRA ARCHITECTURE SUPPORT
16686 M:      Thierry Reding <thierry.reding@gmail.com>
16687 M:      Jonathan Hunter <jonathanh@nvidia.com>
16688 L:      linux-tegra@vger.kernel.org
16689 S:      Supported
16690 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16692 N:      [^a-z]tegra
16693
16694 TEGRA CLOCK DRIVER
16695 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16696 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16697 S:      Supported
16698 F:      drivers/clk/tegra/
16699
16700 TEGRA DMA DRIVERS
16701 M:      Laxman Dewangan <ldewangan@nvidia.com>
16702 M:      Jon Hunter <jonathanh@nvidia.com>
16703 S:      Supported
16704 F:      drivers/dma/tegra*
16705
16706 TEGRA I2C DRIVER
16707 M:      Laxman Dewangan <ldewangan@nvidia.com>
16708 R:      Dmitry Osipenko <digetx@gmail.com>
16709 S:      Supported
16710 F:      drivers/i2c/busses/i2c-tegra.c
16711
16712 TEGRA IOMMU DRIVERS
16713 M:      Thierry Reding <thierry.reding@gmail.com>
16714 L:      linux-tegra@vger.kernel.org
16715 S:      Supported
16716 F:      drivers/iommu/tegra*
16717
16718 TEGRA KBC DRIVER
16719 M:      Laxman Dewangan <ldewangan@nvidia.com>
16720 S:      Supported
16721 F:      drivers/input/keyboard/tegra-kbc.c
16722
16723 TEGRA NAND DRIVER
16724 M:      Stefan Agner <stefan@agner.ch>
16725 M:      Lucas Stach <dev@lynxeye.de>
16726 S:      Maintained
16727 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16728 F:      drivers/mtd/nand/raw/tegra_nand.c
16729
16730 TEGRA PWM DRIVER
16731 M:      Thierry Reding <thierry.reding@gmail.com>
16732 S:      Supported
16733 F:      drivers/pwm/pwm-tegra.c
16734
16735 TEGRA SERIAL DRIVER
16736 M:      Laxman Dewangan <ldewangan@nvidia.com>
16737 S:      Supported
16738 F:      drivers/tty/serial/serial-tegra.c
16739
16740 TEGRA SPI DRIVER
16741 M:      Laxman Dewangan <ldewangan@nvidia.com>
16742 S:      Supported
16743 F:      drivers/spi/spi-tegra*
16744
16745 TEGRA VIDEO DRIVER
16746 M:      Thierry Reding <thierry.reding@gmail.com>
16747 M:      Jonathan Hunter <jonathanh@nvidia.com>
16748 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16749 L:      linux-media@vger.kernel.org
16750 L:      linux-tegra@vger.kernel.org
16751 S:      Maintained
16752 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16753 F:      drivers/staging/media/tegra-video/
16754
16755 TEGRA XUSB PADCTL DRIVER
16756 M:      JC Kuo <jckuo@nvidia.com>
16757 S:      Supported
16758 F:      drivers/phy/tegra/xusb*
16759
16760 TEHUTI ETHERNET DRIVER
16761 M:      Andy Gospodarek <andy@greyhouse.net>
16762 L:      netdev@vger.kernel.org
16763 S:      Supported
16764 F:      drivers/net/ethernet/tehuti/*
16765
16766 TELECOM CLOCK DRIVER FOR MCPL0010
16767 M:      Mark Gross <mark.gross@intel.com>
16768 S:      Supported
16769 F:      drivers/char/tlclk.c
16770
16771 TEMPO SEMICONDUCTOR DRIVERS
16772 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16773 S:      Maintained
16774 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16775 F:      sound/soc/codecs/tscs*.c
16776 F:      sound/soc/codecs/tscs*.h
16777
16778 TENSILICA XTENSA PORT (xtensa)
16779 M:      Chris Zankel <chris@zankel.net>
16780 M:      Max Filippov <jcmvbkbc@gmail.com>
16781 L:      linux-xtensa@linux-xtensa.org
16782 S:      Maintained
16783 T:      git git://github.com/czankel/xtensa-linux.git
16784 F:      arch/xtensa/
16785 F:      drivers/irqchip/irq-xtensa-*
16786
16787 TEXAS INSTRUMENTS ASoC DRIVERS
16788 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16789 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16790 S:      Maintained
16791 F:      sound/soc/ti/
16792
16793 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16794 M:      Ricardo Ribalda <ribalda@kernel.org>
16795 L:      linux-iio@vger.kernel.org
16796 S:      Supported
16797 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16798 F:      drivers/iio/dac/ti-dac7612.c
16799
16800 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16801 M:      Nishanth Menon <nm@ti.com>
16802 M:      Tero Kristo <t-kristo@ti.com>
16803 M:      Santosh Shilimkar <ssantosh@kernel.org>
16804 L:      linux-arm-kernel@lists.infradead.org
16805 S:      Maintained
16806 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16807 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16808 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16809 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16810 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16811 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16812 F:      drivers/clk/keystone/sci-clk.c
16813 F:      drivers/firmware/ti_sci*
16814 F:      drivers/irqchip/irq-ti-sci-inta.c
16815 F:      drivers/irqchip/irq-ti-sci-intr.c
16816 F:      drivers/reset/reset-ti-sci.c
16817 F:      drivers/soc/ti/ti_sci_inta_msi.c
16818 F:      drivers/soc/ti/ti_sci_pm_domains.c
16819 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16820 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16821 F:      include/linux/soc/ti/ti_sci_protocol.h
16822
16823 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16824 M:      Hans Verkuil <hverkuil@xs4all.nl>
16825 L:      linux-media@vger.kernel.org
16826 S:      Maintained
16827 W:      https://linuxtv.org
16828 T:      git git://linuxtv.org/media_tree.git
16829 F:      drivers/media/radio/radio-raremono.c
16830
16831 THERMAL
16832 M:      Zhang Rui <rui.zhang@intel.com>
16833 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16834 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16835 L:      linux-pm@vger.kernel.org
16836 S:      Supported
16837 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16839 F:      Documentation/devicetree/bindings/thermal/
16840 F:      drivers/thermal/
16841 F:      include/linux/cpu_cooling.h
16842 F:      include/linux/thermal.h
16843 F:      include/uapi/linux/thermal.h
16844
16845 THERMAL DRIVER FOR AMLOGIC SOCS
16846 M:      Guillaume La Roque <glaroque@baylibre.com>
16847 L:      linux-pm@vger.kernel.org
16848 L:      linux-amlogic@lists.infradead.org
16849 S:      Supported
16850 W:      http://linux-meson.com/
16851 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16852 F:      drivers/thermal/amlogic_thermal.c
16853
16854 THERMAL/CPU_COOLING
16855 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16856 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16857 M:      Viresh Kumar <viresh.kumar@linaro.org>
16858 M:      Javi Merino <javi.merino@kernel.org>
16859 L:      linux-pm@vger.kernel.org
16860 S:      Supported
16861 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16862 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16863 F:      drivers/thermal/cpufreq_cooling.c
16864 F:      drivers/thermal/cpuidle_cooling.c
16865 F:      include/linux/cpu_cooling.h
16866
16867 THINKPAD ACPI EXTRAS DRIVER
16868 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16869 L:      ibm-acpi-devel@lists.sourceforge.net
16870 L:      platform-driver-x86@vger.kernel.org
16871 S:      Maintained
16872 W:      http://ibm-acpi.sourceforge.net
16873 W:      http://thinkwiki.org/wiki/Ibm-acpi
16874 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16875 F:      drivers/platform/x86/thinkpad_acpi.c
16876
16877 THUNDERBOLT DRIVER
16878 M:      Andreas Noever <andreas.noever@gmail.com>
16879 M:      Michael Jamet <michael.jamet@intel.com>
16880 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16881 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16882 L:      linux-usb@vger.kernel.org
16883 S:      Maintained
16884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16885 F:      Documentation/admin-guide/thunderbolt.rst
16886 F:      drivers/thunderbolt/
16887 F:      include/linux/thunderbolt.h
16888
16889 THUNDERBOLT NETWORK DRIVER
16890 M:      Michael Jamet <michael.jamet@intel.com>
16891 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16892 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16893 L:      netdev@vger.kernel.org
16894 S:      Maintained
16895 F:      drivers/net/thunderbolt.c
16896
16897 THUNDERX GPIO DRIVER
16898 M:      Robert Richter <rrichter@marvell.com>
16899 S:      Maintained
16900 F:      drivers/gpio/gpio-thunderx.c
16901
16902 TI AM437X VPFE DRIVER
16903 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16904 L:      linux-media@vger.kernel.org
16905 S:      Maintained
16906 W:      https://linuxtv.org
16907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16908 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16909 F:      drivers/media/platform/am437x/
16910
16911 TI BANDGAP AND THERMAL DRIVER
16912 M:      Eduardo Valentin <edubezval@gmail.com>
16913 M:      Keerthy <j-keerthy@ti.com>
16914 L:      linux-pm@vger.kernel.org
16915 L:      linux-omap@vger.kernel.org
16916 S:      Maintained
16917 F:      drivers/thermal/ti-soc-thermal/
16918
16919 TI BQ27XXX POWER SUPPLY DRIVER
16920 R:      Andrew F. Davis <afd@ti.com>
16921 F:      drivers/power/supply/bq27xxx_battery.c
16922 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16923 F:      include/linux/power/bq27xxx_battery.h
16924
16925 TI CDCE706 CLOCK DRIVER
16926 M:      Max Filippov <jcmvbkbc@gmail.com>
16927 S:      Maintained
16928 F:      drivers/clk/clk-cdce706.c
16929
16930 TI CLOCK DRIVER
16931 M:      Tero Kristo <t-kristo@ti.com>
16932 L:      linux-omap@vger.kernel.org
16933 S:      Maintained
16934 F:      drivers/clk/ti/
16935 F:      include/linux/clk/ti.h
16936
16937 TI DAVINCI MACHINE SUPPORT
16938 M:      Sekhar Nori <nsekhar@ti.com>
16939 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16941 S:      Supported
16942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16943 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16944 F:      arch/arm/boot/dts/da850*
16945 F:      arch/arm/mach-davinci/
16946 F:      drivers/i2c/busses/i2c-davinci.c
16947
16948 TI DAVINCI SERIES CLOCK DRIVER
16949 M:      David Lechner <david@lechnology.com>
16950 R:      Sekhar Nori <nsekhar@ti.com>
16951 S:      Maintained
16952 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16953 F:      drivers/clk/davinci/
16954
16955 TI DAVINCI SERIES GPIO DRIVER
16956 M:      Keerthy <j-keerthy@ti.com>
16957 L:      linux-gpio@vger.kernel.org
16958 S:      Maintained
16959 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16960 F:      drivers/gpio/gpio-davinci.c
16961
16962 TI DAVINCI SERIES MEDIA DRIVER
16963 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16964 L:      linux-media@vger.kernel.org
16965 S:      Maintained
16966 W:      https://linuxtv.org
16967 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16968 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16969 F:      drivers/media/platform/davinci/
16970 F:      include/media/davinci/
16971
16972 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16973 R:      David Lechner <david@lechnology.com>
16974 L:      linux-iio@vger.kernel.org
16975 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16976 F:      drivers/counter/ti-eqep.c
16977
16978 TI ETHERNET SWITCH DRIVER (CPSW)
16979 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16980 L:      linux-omap@vger.kernel.org
16981 L:      netdev@vger.kernel.org
16982 S:      Maintained
16983 F:      drivers/net/ethernet/ti/cpsw*
16984 F:      drivers/net/ethernet/ti/davinci*
16985
16986 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16987 M:      Alex Dubov <oakad@yahoo.com>
16988 S:      Maintained
16989 W:      http://tifmxx.berlios.de/
16990 F:      drivers/memstick/host/tifm_ms.c
16991 F:      drivers/misc/tifm*
16992 F:      drivers/mmc/host/tifm_sd.c
16993 F:      include/linux/tifm.h
16994
16995 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16996 M:      Santosh Shilimkar <ssantosh@kernel.org>
16997 L:      linux-kernel@vger.kernel.org
16998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16999 S:      Maintained
17000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17001 F:      drivers/soc/ti/*
17002
17003 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17004 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17005 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17006 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17007 S:      Maintained
17008 F:      sound/soc/codecs/isabelle*
17009 F:      sound/soc/codecs/lm49453*
17010
17011 TI LP855x BACKLIGHT DRIVER
17012 M:      Milo Kim <milo.kim@ti.com>
17013 S:      Maintained
17014 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17015 F:      drivers/video/backlight/lp855x_bl.c
17016 F:      include/linux/platform_data/lp855x.h
17017
17018 TI LP8727 CHARGER DRIVER
17019 M:      Milo Kim <milo.kim@ti.com>
17020 S:      Maintained
17021 F:      drivers/power/supply/lp8727_charger.c
17022 F:      include/linux/platform_data/lp8727.h
17023
17024 TI LP8788 MFD DRIVER
17025 M:      Milo Kim <milo.kim@ti.com>
17026 S:      Maintained
17027 F:      drivers/iio/adc/lp8788_adc.c
17028 F:      drivers/leds/leds-lp8788.c
17029 F:      drivers/mfd/lp8788*.c
17030 F:      drivers/power/supply/lp8788-charger.c
17031 F:      drivers/regulator/lp8788-*.c
17032 F:      include/linux/mfd/lp8788*.h
17033
17034 TI NETCP ETHERNET DRIVER
17035 M:      Wingman Kwok <w-kwok2@ti.com>
17036 M:      Murali Karicheri <m-karicheri2@ti.com>
17037 L:      netdev@vger.kernel.org
17038 S:      Maintained
17039 F:      drivers/net/ethernet/ti/netcp*
17040
17041 TI PCM3060 ASoC CODEC DRIVER
17042 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17043 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17044 S:      Maintained
17045 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17046 F:      sound/soc/codecs/pcm3060*
17047
17048 TI TAS571X FAMILY ASoC CODEC DRIVER
17049 M:      Kevin Cernekee <cernekee@chromium.org>
17050 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17051 S:      Odd Fixes
17052 F:      sound/soc/codecs/tas571x*
17053
17054 TI TCAN4X5X DEVICE DRIVER
17055 M:      Dan Murphy <dmurphy@ti.com>
17056 L:      linux-can@vger.kernel.org
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17059 F:      drivers/net/can/m_can/tcan4x5x.c
17060
17061 TI TRF7970A NFC DRIVER
17062 M:      Mark Greer <mgreer@animalcreek.com>
17063 L:      linux-wireless@vger.kernel.org
17064 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17065 S:      Supported
17066 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17067 F:      drivers/nfc/trf7970a.c
17068
17069 TI TWL4030 SERIES SOC CODEC DRIVER
17070 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17071 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17072 S:      Maintained
17073 F:      sound/soc/codecs/twl4030*
17074
17075 TI VPE/CAL DRIVERS
17076 M:      Benoit Parrot <bparrot@ti.com>
17077 L:      linux-media@vger.kernel.org
17078 S:      Maintained
17079 W:      http://linuxtv.org/
17080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17081 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17082 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17083 F:      drivers/media/platform/ti-vpe/
17084
17085 TI WILINK WIRELESS DRIVERS
17086 L:      linux-wireless@vger.kernel.org
17087 S:      Orphan
17088 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17089 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17091 F:      drivers/net/wireless/ti/
17092 F:      include/linux/wl12xx.h
17093
17094 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17095 M:      John Stultz <john.stultz@linaro.org>
17096 M:      Thomas Gleixner <tglx@linutronix.de>
17097 R:      Stephen Boyd <sboyd@kernel.org>
17098 L:      linux-kernel@vger.kernel.org
17099 S:      Supported
17100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17101 F:      include/linux/clocksource.h
17102 F:      include/linux/time.h
17103 F:      include/linux/timex.h
17104 F:      include/uapi/linux/time.h
17105 F:      include/uapi/linux/timex.h
17106 F:      kernel/time/alarmtimer.c
17107 F:      kernel/time/clocksource.c
17108 F:      kernel/time/ntp.c
17109 F:      kernel/time/time*.c
17110 F:      tools/testing/selftests/timers/
17111
17112 TIPC NETWORK LAYER
17113 M:      Jon Maloy <jmaloy@redhat.com>
17114 M:      Ying Xue <ying.xue@windriver.com>
17115 L:      netdev@vger.kernel.org (core kernel code)
17116 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17117 S:      Maintained
17118 W:      http://tipc.sourceforge.net/
17119 F:      include/uapi/linux/tipc*.h
17120 F:      net/tipc/
17121
17122 TLAN NETWORK DRIVER
17123 M:      Samuel Chessman <chessman@tux.org>
17124 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17125 S:      Maintained
17126 W:      http://sourceforge.net/projects/tlan/
17127 F:      Documentation/networking/device_drivers/ti/tlan.rst
17128 F:      drivers/net/ethernet/ti/tlan.*
17129
17130 TM6000 VIDEO4LINUX DRIVER
17131 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17132 L:      linux-media@vger.kernel.org
17133 S:      Odd fixes
17134 W:      https://linuxtv.org
17135 T:      git git://linuxtv.org/media_tree.git
17136 F:      Documentation/admin-guide/media/tm6000*
17137 F:      drivers/media/usb/tm6000/
17138
17139 TMIO/SDHI MMC DRIVER
17140 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17141 L:      linux-mmc@vger.kernel.org
17142 S:      Supported
17143 F:      drivers/mmc/host/renesas_sdhi*
17144 F:      drivers/mmc/host/tmio_mmc*
17145 F:      include/linux/mfd/tmio.h
17146
17147 TMP401 HARDWARE MONITOR DRIVER
17148 M:      Guenter Roeck <linux@roeck-us.net>
17149 L:      linux-hwmon@vger.kernel.org
17150 S:      Maintained
17151 F:      Documentation/hwmon/tmp401.rst
17152 F:      drivers/hwmon/tmp401.c
17153
17154 TMP513 HARDWARE MONITOR DRIVER
17155 M:      Eric Tremblay <etremblay@distech-controls.com>
17156 L:      linux-hwmon@vger.kernel.org
17157 S:      Maintained
17158 F:      Documentation/hwmon/tmp513.rst
17159 F:      drivers/hwmon/tmp513.c
17160
17161 TMPFS (SHMEM FILESYSTEM)
17162 M:      Hugh Dickins <hughd@google.com>
17163 L:      linux-mm@kvack.org
17164 S:      Maintained
17165 F:      include/linux/shmem_fs.h
17166 F:      mm/shmem.c
17167
17168 TOMOYO SECURITY MODULE
17169 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17170 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17171 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17172 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17173 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17174 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17175 S:      Maintained
17176 W:      https://tomoyo.osdn.jp/
17177 F:      security/tomoyo/
17178
17179 TOPSTAR LAPTOP EXTRAS DRIVER
17180 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17181 L:      platform-driver-x86@vger.kernel.org
17182 S:      Maintained
17183 F:      drivers/platform/x86/topstar-laptop.c
17184
17185 TORTURE-TEST MODULES
17186 M:      Davidlohr Bueso <dave@stgolabs.net>
17187 M:      "Paul E. McKenney" <paulmck@kernel.org>
17188 M:      Josh Triplett <josh@joshtriplett.org>
17189 L:      linux-kernel@vger.kernel.org
17190 S:      Supported
17191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17192 F:      Documentation/RCU/torture.txt
17193 F:      kernel/locking/locktorture.c
17194 F:      kernel/rcu/rcuperf.c
17195 F:      kernel/rcu/rcutorture.c
17196 F:      kernel/torture.c
17197
17198 TOSHIBA ACPI EXTRAS DRIVER
17199 M:      Azael Avalos <coproscefalo@gmail.com>
17200 L:      platform-driver-x86@vger.kernel.org
17201 S:      Maintained
17202 F:      drivers/platform/x86/toshiba_acpi.c
17203
17204 TOSHIBA BLUETOOTH DRIVER
17205 M:      Azael Avalos <coproscefalo@gmail.com>
17206 L:      platform-driver-x86@vger.kernel.org
17207 S:      Maintained
17208 F:      drivers/platform/x86/toshiba_bluetooth.c
17209
17210 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17211 M:      Azael Avalos <coproscefalo@gmail.com>
17212 L:      platform-driver-x86@vger.kernel.org
17213 S:      Maintained
17214 F:      drivers/platform/x86/toshiba_haps.c
17215
17216 TOSHIBA SMM DRIVER
17217 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17218 S:      Maintained
17219 W:      http://www.buzzard.org.uk/toshiba/
17220 F:      drivers/char/toshiba.c
17221 F:      include/linux/toshiba.h
17222 F:      include/uapi/linux/toshiba.h
17223
17224 TOSHIBA TC358743 DRIVER
17225 M:      Mats Randgaard <matrandg@cisco.com>
17226 L:      linux-media@vger.kernel.org
17227 S:      Maintained
17228 F:      drivers/media/i2c/tc358743*
17229 F:      include/media/i2c/tc358743.h
17230
17231 TOSHIBA WMI HOTKEYS DRIVER
17232 M:      Azael Avalos <coproscefalo@gmail.com>
17233 L:      platform-driver-x86@vger.kernel.org
17234 S:      Maintained
17235 F:      drivers/platform/x86/toshiba-wmi.c
17236
17237 TPM DEVICE DRIVER
17238 M:      Peter Huewe <peterhuewe@gmx.de>
17239 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17240 R:      Jason Gunthorpe <jgg@ziepe.ca>
17241 L:      linux-integrity@vger.kernel.org
17242 S:      Maintained
17243 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17244 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17245 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17246 F:      drivers/char/tpm/
17247
17248 TRACING
17249 M:      Steven Rostedt <rostedt@goodmis.org>
17250 M:      Ingo Molnar <mingo@redhat.com>
17251 S:      Maintained
17252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17253 F:      Documentation/trace/ftrace.rst
17254 F:      arch/*/*/*/ftrace.h
17255 F:      arch/*/kernel/ftrace.c
17256 F:      include/*/ftrace.h
17257 F:      include/linux/trace*.h
17258 F:      include/trace/
17259 F:      kernel/trace/
17260 F:      tools/testing/selftests/ftrace/
17261
17262 TRACING MMIO ACCESSES (MMIOTRACE)
17263 M:      Steven Rostedt <rostedt@goodmis.org>
17264 M:      Ingo Molnar <mingo@kernel.org>
17265 R:      Karol Herbst <karolherbst@gmail.com>
17266 R:      Pekka Paalanen <ppaalanen@gmail.com>
17267 L:      linux-kernel@vger.kernel.org
17268 L:      nouveau@lists.freedesktop.org
17269 S:      Maintained
17270 F:      arch/x86/mm/kmmio.c
17271 F:      arch/x86/mm/mmio-mod.c
17272 F:      arch/x86/mm/testmmiotrace.c
17273 F:      include/linux/mmiotrace.h
17274 F:      kernel/trace/trace_mmiotrace.c
17275
17276 TRIVIAL PATCHES
17277 M:      Jiri Kosina <trivial@kernel.org>
17278 S:      Maintained
17279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17280 K:      ^Subject:.*(?i)trivial
17281
17282 TTY LAYER
17283 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17284 M:      Jiri Slaby <jslaby@suse.com>
17285 S:      Supported
17286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17287 F:      Documentation/driver-api/serial/
17288 F:      drivers/tty/
17289 F:      drivers/tty/serial/serial_core.c
17290 F:      include/linux/serial.h
17291 F:      include/linux/serial_core.h
17292 F:      include/linux/tty.h
17293 F:      include/uapi/linux/serial.h
17294 F:      include/uapi/linux/serial_core.h
17295 F:      include/uapi/linux/tty.h
17296
17297 TUA9001 MEDIA DRIVER
17298 M:      Antti Palosaari <crope@iki.fi>
17299 L:      linux-media@vger.kernel.org
17300 S:      Maintained
17301 W:      https://linuxtv.org
17302 W:      http://palosaari.fi/linux/
17303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17304 T:      git git://linuxtv.org/anttip/media_tree.git
17305 F:      drivers/media/tuners/tua9001*
17306
17307 TULIP NETWORK DRIVERS
17308 L:      netdev@vger.kernel.org
17309 L:      linux-parisc@vger.kernel.org
17310 S:      Orphan
17311 F:      drivers/net/ethernet/dec/tulip/
17312
17313 TUN/TAP driver
17314 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17315 S:      Maintained
17316 W:      http://vtun.sourceforge.net/tun
17317 F:      Documentation/networking/tuntap.rst
17318 F:      arch/um/os-Linux/drivers/
17319
17320 TURBOCHANNEL SUBSYSTEM
17321 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17322 M:      Ralf Baechle <ralf@linux-mips.org>
17323 L:      linux-mips@vger.kernel.org
17324 S:      Maintained
17325 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17326 F:      drivers/tc/
17327 F:      include/linux/tc.h
17328
17329 TURBOSTAT UTILITY
17330 M:      "Len Brown" <lenb@kernel.org>
17331 L:      linux-pm@vger.kernel.org
17332 S:      Supported
17333 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17334 B:      https://bugzilla.kernel.org
17335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17336 F:      tools/power/x86/turbostat/
17337
17338 TW5864 VIDEO4LINUX DRIVER
17339 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17340 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17341 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17342 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17343 L:      linux-media@vger.kernel.org
17344 S:      Supported
17345 F:      drivers/media/pci/tw5864/
17346
17347 TW68 VIDEO4LINUX DRIVER
17348 M:      Hans Verkuil <hverkuil@xs4all.nl>
17349 L:      linux-media@vger.kernel.org
17350 S:      Odd Fixes
17351 W:      https://linuxtv.org
17352 T:      git git://linuxtv.org/media_tree.git
17353 F:      drivers/media/pci/tw68/
17354
17355 TW686X VIDEO4LINUX DRIVER
17356 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17357 L:      linux-media@vger.kernel.org
17358 S:      Maintained
17359 W:      http://linuxtv.org
17360 T:      git git://linuxtv.org/media_tree.git
17361 F:      drivers/media/pci/tw686x/
17362
17363 UACCE ACCELERATOR FRAMEWORK
17364 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17365 M:      Zhou Wang <wangzhou1@hisilicon.com>
17366 L:      linux-accelerators@lists.ozlabs.org
17367 L:      linux-kernel@vger.kernel.org
17368 S:      Maintained
17369 F:      Documentation/ABI/testing/sysfs-driver-uacce
17370 F:      Documentation/misc-devices/uacce.rst
17371 F:      drivers/misc/uacce/
17372 F:      include/linux/uacce.h
17373 F:      include/uapi/misc/uacce/
17374
17375 UBI FILE SYSTEM (UBIFS)
17376 M:      Richard Weinberger <richard@nod.at>
17377 L:      linux-mtd@lists.infradead.org
17378 S:      Supported
17379 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17382 F:      Documentation/filesystems/ubifs.rst
17383 F:      fs/ubifs/
17384
17385 UCLINUX (M68KNOMMU AND COLDFIRE)
17386 M:      Greg Ungerer <gerg@linux-m68k.org>
17387 L:      linux-m68k@lists.linux-m68k.org
17388 L:      uclinux-dev@uclinux.org  (subscribers-only)
17389 S:      Maintained
17390 W:      http://www.linux-m68k.org/
17391 W:      http://www.uclinux.org/
17392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17393 F:      arch/m68k/*/*_no.*
17394 F:      arch/m68k/68*/
17395 F:      arch/m68k/coldfire/
17396 F:      arch/m68k/include/asm/*_no.*
17397
17398 UDF FILESYSTEM
17399 M:      Jan Kara <jack@suse.com>
17400 S:      Maintained
17401 F:      Documentation/filesystems/udf.rst
17402 F:      fs/udf/
17403
17404 UDRAW TABLET
17405 M:      Bastien Nocera <hadess@hadess.net>
17406 L:      linux-input@vger.kernel.org
17407 S:      Maintained
17408 F:      drivers/hid/hid-udraw-ps3.c
17409
17410 UFS FILESYSTEM
17411 M:      Evgeniy Dushistov <dushistov@mail.ru>
17412 S:      Maintained
17413 F:      Documentation/admin-guide/ufs.rst
17414 F:      fs/ufs/
17415
17416 UHID USERSPACE HID IO DRIVER
17417 M:      David Herrmann <dh.herrmann@googlemail.com>
17418 L:      linux-input@vger.kernel.org
17419 S:      Maintained
17420 F:      drivers/hid/uhid.c
17421 F:      include/uapi/linux/uhid.h
17422
17423 ULPI BUS
17424 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17425 L:      linux-usb@vger.kernel.org
17426 S:      Maintained
17427 F:      drivers/usb/common/ulpi.c
17428 F:      include/linux/ulpi/
17429
17430 UNICODE SUBSYSTEM
17431 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17432 L:      linux-fsdevel@vger.kernel.org
17433 S:      Supported
17434 F:      fs/unicode/
17435
17436 UNICORE32 ARCHITECTURE
17437 M:      Guan Xuetao <gxt@pku.edu.cn>
17438 S:      Maintained
17439 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17440 T:      git git://github.com/gxt/linux.git
17441 F:      arch/unicore32/
17442
17443 UNIFDEF
17444 M:      Tony Finch <dot@dotat.at>
17445 S:      Maintained
17446 W:      http://dotat.at/prog/unifdef
17447 F:      scripts/unifdef.c
17448
17449 UNIFORM CDROM DRIVER
17450 M:      Jens Axboe <axboe@kernel.dk>
17451 S:      Maintained
17452 W:      http://www.kernel.dk
17453 F:      Documentation/cdrom/
17454 F:      drivers/cdrom/cdrom.c
17455 F:      include/linux/cdrom.h
17456 F:      include/uapi/linux/cdrom.h
17457
17458 UNISYS S-PAR DRIVERS
17459 M:      David Kershner <david.kershner@unisys.com>
17460 L:      sparmaintainer@unisys.com (Unisys internal)
17461 S:      Supported
17462 F:      drivers/staging/unisys/
17463 F:      drivers/visorbus/
17464 F:      include/linux/visorbus.h
17465
17466 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17467 R:      Alim Akhtar <alim.akhtar@samsung.com>
17468 R:      Avri Altman <avri.altman@wdc.com>
17469 L:      linux-scsi@vger.kernel.org
17470 S:      Supported
17471 F:      Documentation/scsi/ufs.rst
17472 F:      drivers/scsi/ufs/
17473
17474 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17475 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17476 L:      linux-scsi@vger.kernel.org
17477 S:      Supported
17478 F:      drivers/scsi/ufs/*dwc*
17479
17480 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17481 M:      Stanley Chu <stanley.chu@mediatek.com>
17482 L:      linux-scsi@vger.kernel.org
17483 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17484 S:      Maintained
17485 F:      drivers/scsi/ufs/ufs-mediatek*
17486
17487 UNSORTED BLOCK IMAGES (UBI)
17488 M:      Richard Weinberger <richard@nod.at>
17489 L:      linux-mtd@lists.infradead.org
17490 S:      Supported
17491 W:      http://www.linux-mtd.infradead.org/
17492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17494 F:      drivers/mtd/ubi/
17495 F:      include/linux/mtd/ubi.h
17496 F:      include/uapi/mtd/ubi-user.h
17497
17498 USB "USBNET" DRIVER FRAMEWORK
17499 M:      Oliver Neukum <oneukum@suse.com>
17500 L:      netdev@vger.kernel.org
17501 S:      Maintained
17502 W:      http://www.linux-usb.org/usbnet
17503 F:      drivers/net/usb/usbnet.c
17504 F:      include/linux/usb/usbnet.h
17505
17506 USB ACM DRIVER
17507 M:      Oliver Neukum <oneukum@suse.com>
17508 L:      linux-usb@vger.kernel.org
17509 S:      Maintained
17510 F:      Documentation/usb/acm.rst
17511 F:      drivers/usb/class/cdc-acm.*
17512
17513 USB APPLE MFI FASTCHARGE DRIVER
17514 M:      Bastien Nocera <hadess@hadess.net>
17515 L:      linux-usb@vger.kernel.org
17516 S:      Maintained
17517 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17518
17519 USB AR5523 WIRELESS DRIVER
17520 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17521 L:      linux-wireless@vger.kernel.org
17522 S:      Maintained
17523 F:      drivers/net/wireless/ath/ar5523/
17524
17525 USB ATTACHED SCSI
17526 M:      Oliver Neukum <oneukum@suse.com>
17527 L:      linux-usb@vger.kernel.org
17528 L:      linux-scsi@vger.kernel.org
17529 S:      Maintained
17530 F:      drivers/usb/storage/uas.c
17531
17532 USB CDC ETHERNET DRIVER
17533 M:      Oliver Neukum <oliver@neukum.org>
17534 L:      linux-usb@vger.kernel.org
17535 S:      Maintained
17536 F:      drivers/net/usb/cdc_*.c
17537 F:      include/uapi/linux/usb/cdc.h
17538
17539 USB CHAOSKEY DRIVER
17540 M:      Keith Packard <keithp@keithp.com>
17541 L:      linux-usb@vger.kernel.org
17542 S:      Maintained
17543 F:      drivers/usb/misc/chaoskey.c
17544
17545 USB CYPRESS C67X00 DRIVER
17546 M:      Peter Korsgaard <jacmet@sunsite.dk>
17547 L:      linux-usb@vger.kernel.org
17548 S:      Maintained
17549 F:      drivers/usb/c67x00/
17550
17551 USB DAVICOM DM9601 DRIVER
17552 M:      Peter Korsgaard <jacmet@sunsite.dk>
17553 L:      netdev@vger.kernel.org
17554 S:      Maintained
17555 W:      http://www.linux-usb.org/usbnet
17556 F:      drivers/net/usb/dm9601.c
17557
17558 USB EHCI DRIVER
17559 M:      Alan Stern <stern@rowland.harvard.edu>
17560 L:      linux-usb@vger.kernel.org
17561 S:      Maintained
17562 F:      Documentation/usb/ehci.rst
17563 F:      drivers/usb/host/ehci*
17564
17565 USB GADGET/PERIPHERAL SUBSYSTEM
17566 M:      Felipe Balbi <balbi@kernel.org>
17567 L:      linux-usb@vger.kernel.org
17568 S:      Maintained
17569 W:      http://www.linux-usb.org/gadget
17570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17571 F:      drivers/usb/gadget/
17572 F:      include/linux/usb/gadget*
17573
17574 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17575 M:      Jiri Kosina <jikos@kernel.org>
17576 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17577 L:      linux-usb@vger.kernel.org
17578 S:      Maintained
17579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17580 F:      Documentation/hid/hiddev.rst
17581 F:      drivers/hid/usbhid/
17582
17583 USB INTEL XHCI ROLE MUX DRIVER
17584 M:      Hans de Goede <hdegoede@redhat.com>
17585 L:      linux-usb@vger.kernel.org
17586 S:      Maintained
17587 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17588
17589 USB IP DRIVER FOR HISILICON KIRIN
17590 M:      Yu Chen <chenyu56@huawei.com>
17591 M:      Binghui Wang <wangbinghui@hisilicon.com>
17592 L:      linux-usb@vger.kernel.org
17593 S:      Maintained
17594 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17595 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17596
17597 USB ISP116X DRIVER
17598 M:      Olav Kongas <ok@artecdesign.ee>
17599 L:      linux-usb@vger.kernel.org
17600 S:      Maintained
17601 F:      drivers/usb/host/isp116x*
17602 F:      include/linux/usb/isp116x.h
17603
17604 USB LAN78XX ETHERNET DRIVER
17605 M:      Woojung Huh <woojung.huh@microchip.com>
17606 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17607 L:      netdev@vger.kernel.org
17608 S:      Maintained
17609 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17610 F:      drivers/net/usb/lan78xx.*
17611 F:      include/dt-bindings/net/microchip-lan78xx.h
17612
17613 USB MASS STORAGE DRIVER
17614 M:      Alan Stern <stern@rowland.harvard.edu>
17615 L:      linux-usb@vger.kernel.org
17616 L:      usb-storage@lists.one-eyed-alien.net
17617 S:      Maintained
17618 F:      drivers/usb/storage/
17619
17620 USB MIDI DRIVER
17621 M:      Clemens Ladisch <clemens@ladisch.de>
17622 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17623 S:      Maintained
17624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17625 F:      sound/usb/midi.*
17626
17627 USB NETWORKING DRIVERS
17628 L:      linux-usb@vger.kernel.org
17629 S:      Odd Fixes
17630 F:      drivers/net/usb/
17631
17632 USB OHCI DRIVER
17633 M:      Alan Stern <stern@rowland.harvard.edu>
17634 L:      linux-usb@vger.kernel.org
17635 S:      Maintained
17636 F:      Documentation/usb/ohci.rst
17637 F:      drivers/usb/host/ohci*
17638
17639 USB OTG FSM (Finite State Machine)
17640 M:      Peter Chen <Peter.Chen@nxp.com>
17641 L:      linux-usb@vger.kernel.org
17642 S:      Maintained
17643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17644 F:      drivers/usb/common/usb-otg-fsm.c
17645
17646 USB OVER IP DRIVER
17647 M:      Valentina Manea <valentina.manea.m@gmail.com>
17648 M:      Shuah Khan <shuah@kernel.org>
17649 M:      Shuah Khan <skhan@linuxfoundation.org>
17650 L:      linux-usb@vger.kernel.org
17651 S:      Maintained
17652 F:      Documentation/usb/usbip_protocol.rst
17653 F:      drivers/usb/usbip/
17654 F:      tools/testing/selftests/drivers/usb/usbip/
17655 F:      tools/usb/usbip/
17656
17657 USB PEGASUS DRIVER
17658 M:      Petko Manolov <petkan@nucleusys.com>
17659 L:      linux-usb@vger.kernel.org
17660 L:      netdev@vger.kernel.org
17661 S:      Maintained
17662 W:      https://github.com/petkan/pegasus
17663 T:      git git://github.com/petkan/pegasus.git
17664 F:      drivers/net/usb/pegasus.*
17665
17666 USB PHY LAYER
17667 M:      Felipe Balbi <balbi@kernel.org>
17668 L:      linux-usb@vger.kernel.org
17669 S:      Maintained
17670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17671 F:      drivers/usb/phy/
17672
17673 USB PRINTER DRIVER (usblp)
17674 M:      Pete Zaitcev <zaitcev@redhat.com>
17675 L:      linux-usb@vger.kernel.org
17676 S:      Supported
17677 F:      drivers/usb/class/usblp.c
17678
17679 USB QMI WWAN NETWORK DRIVER
17680 M:      Bjørn Mork <bjorn@mork.no>
17681 L:      netdev@vger.kernel.org
17682 S:      Maintained
17683 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17684 F:      drivers/net/usb/qmi_wwan.c
17685
17686 USB RTL8150 DRIVER
17687 M:      Petko Manolov <petkan@nucleusys.com>
17688 L:      linux-usb@vger.kernel.org
17689 L:      netdev@vger.kernel.org
17690 S:      Maintained
17691 W:      https://github.com/petkan/rtl8150
17692 T:      git git://github.com/petkan/rtl8150.git
17693 F:      drivers/net/usb/rtl8150.c
17694
17695 USB SERIAL SUBSYSTEM
17696 M:      Johan Hovold <johan@kernel.org>
17697 L:      linux-usb@vger.kernel.org
17698 S:      Maintained
17699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17700 F:      Documentation/usb/usb-serial.rst
17701 F:      drivers/usb/serial/
17702 F:      include/linux/usb/serial.h
17703
17704 USB SMSC75XX ETHERNET DRIVER
17705 M:      Steve Glendinning <steve.glendinning@shawell.net>
17706 L:      netdev@vger.kernel.org
17707 S:      Maintained
17708 F:      drivers/net/usb/smsc75xx.*
17709
17710 USB SMSC95XX ETHERNET DRIVER
17711 M:      Steve Glendinning <steve.glendinning@shawell.net>
17712 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17713 L:      netdev@vger.kernel.org
17714 S:      Maintained
17715 F:      drivers/net/usb/smsc95xx.*
17716
17717 USB SUBSYSTEM
17718 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17719 L:      linux-usb@vger.kernel.org
17720 S:      Supported
17721 W:      http://www.linux-usb.org
17722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17723 F:      Documentation/devicetree/bindings/usb/
17724 F:      Documentation/usb/
17725 F:      drivers/usb/
17726 F:      include/linux/usb.h
17727 F:      include/linux/usb/
17728
17729 USB TYPEC BUS FOR ALTERNATE MODES
17730 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17731 L:      linux-usb@vger.kernel.org
17732 S:      Maintained
17733 F:      Documentation/ABI/testing/sysfs-bus-typec
17734 F:      Documentation/driver-api/usb/typec_bus.rst
17735 F:      drivers/usb/typec/altmodes/
17736 F:      include/linux/usb/typec_altmode.h
17737
17738 USB TYPEC CLASS
17739 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17740 L:      linux-usb@vger.kernel.org
17741 S:      Maintained
17742 F:      Documentation/ABI/testing/sysfs-class-typec
17743 F:      Documentation/driver-api/usb/typec.rst
17744 F:      drivers/usb/typec/
17745 F:      include/linux/usb/typec.h
17746
17747 USB TYPEC PI3USB30532 MUX DRIVER
17748 M:      Hans de Goede <hdegoede@redhat.com>
17749 L:      linux-usb@vger.kernel.org
17750 S:      Maintained
17751 F:      drivers/usb/typec/mux/pi3usb30532.c
17752
17753 USB TYPEC PORT CONTROLLER DRIVERS
17754 M:      Guenter Roeck <linux@roeck-us.net>
17755 L:      linux-usb@vger.kernel.org
17756 S:      Maintained
17757 F:      drivers/usb/typec/tcpm/
17758
17759 USB UHCI DRIVER
17760 M:      Alan Stern <stern@rowland.harvard.edu>
17761 L:      linux-usb@vger.kernel.org
17762 S:      Maintained
17763 F:      drivers/usb/host/uhci*
17764
17765 USB VIDEO CLASS
17766 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17767 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17768 L:      linux-media@vger.kernel.org
17769 S:      Maintained
17770 W:      http://www.ideasonboard.org/uvc/
17771 T:      git git://linuxtv.org/media_tree.git
17772 F:      drivers/media/usb/uvc/
17773 F:      include/uapi/linux/uvcvideo.h
17774
17775 USB VISION DRIVER
17776 M:      Hans Verkuil <hverkuil@xs4all.nl>
17777 L:      linux-media@vger.kernel.org
17778 S:      Odd Fixes
17779 W:      https://linuxtv.org
17780 T:      git git://linuxtv.org/media_tree.git
17781 F:      drivers/staging/media/usbvision/
17782
17783 USB WEBCAM GADGET
17784 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17785 L:      linux-usb@vger.kernel.org
17786 S:      Maintained
17787 F:      drivers/usb/gadget/function/*uvc*
17788 F:      drivers/usb/gadget/legacy/webcam.c
17789 F:      include/uapi/linux/usb/g_uvc.h
17790
17791 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17792 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17793 L:      linux-wireless@vger.kernel.org
17794 S:      Maintained
17795 F:      drivers/net/wireless/rndis_wlan.c
17796
17797 USB XHCI DRIVER
17798 M:      Mathias Nyman <mathias.nyman@intel.com>
17799 L:      linux-usb@vger.kernel.org
17800 S:      Supported
17801 F:      drivers/usb/host/pci-quirks*
17802 F:      drivers/usb/host/xhci*
17803
17804 USB ZD1201 DRIVER
17805 L:      linux-wireless@vger.kernel.org
17806 S:      Orphan
17807 W:      http://linux-lc100020.sourceforge.net
17808 F:      drivers/net/wireless/zydas/zd1201.*
17809
17810 USB ZR364XX DRIVER
17811 M:      Antoine Jacquet <royale@zerezo.com>
17812 L:      linux-usb@vger.kernel.org
17813 L:      linux-media@vger.kernel.org
17814 S:      Maintained
17815 W:      http://royale.zerezo.com/zr364xx/
17816 T:      git git://linuxtv.org/media_tree.git
17817 F:      Documentation/admin-guide/media/zr364xx*
17818 F:      drivers/media/usb/zr364xx/
17819
17820 USER-MODE LINUX (UML)
17821 M:      Jeff Dike <jdike@addtoit.com>
17822 M:      Richard Weinberger <richard@nod.at>
17823 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17824 L:      linux-um@lists.infradead.org
17825 S:      Maintained
17826 W:      http://user-mode-linux.sourceforge.net
17827 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17829 F:      Documentation/virt/uml/
17830 F:      arch/um/
17831 F:      arch/x86/um/
17832 F:      fs/hostfs/
17833
17834 USERSPACE COPYIN/COPYOUT (UIOVEC)
17835 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17836 S:      Maintained
17837 F:      include/linux/uio.h
17838 F:      lib/iov_iter.c
17839
17840 USERSPACE DMA BUFFER DRIVER
17841 M:      Gerd Hoffmann <kraxel@redhat.com>
17842 L:      dri-devel@lists.freedesktop.org
17843 S:      Maintained
17844 T:      git git://anongit.freedesktop.org/drm/drm-misc
17845 F:      drivers/dma-buf/udmabuf.c
17846 F:      include/uapi/linux/udmabuf.h
17847
17848 USERSPACE I/O (UIO)
17849 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17850 S:      Maintained
17851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17852 F:      Documentation/driver-api/uio-howto.rst
17853 F:      drivers/uio/
17854 F:      include/linux/uio_driver.h
17855
17856 UTIL-LINUX PACKAGE
17857 M:      Karel Zak <kzak@redhat.com>
17858 L:      util-linux@vger.kernel.org
17859 S:      Maintained
17860 W:      http://en.wikipedia.org/wiki/Util-linux
17861 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17862
17863 UUID HELPERS
17864 M:      Christoph Hellwig <hch@lst.de>
17865 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17866 L:      linux-kernel@vger.kernel.org
17867 S:      Maintained
17868 T:      git git://git.infradead.org/users/hch/uuid.git
17869 F:      include/linux/uuid.h
17870 F:      include/uapi/linux/uuid.h
17871 F:      lib/test_uuid.c
17872 F:      lib/uuid.c
17873
17874 UVESAFB DRIVER
17875 M:      Michal Januszewski <spock@gentoo.org>
17876 L:      linux-fbdev@vger.kernel.org
17877 S:      Maintained
17878 W:      https://github.com/mjanusz/v86d
17879 F:      Documentation/fb/uvesafb.rst
17880 F:      drivers/video/fbdev/uvesafb.*
17881
17882 Ux500 CLOCK DRIVERS
17883 M:      Ulf Hansson <ulf.hansson@linaro.org>
17884 L:      linux-clk@vger.kernel.org
17885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17886 S:      Maintained
17887 F:      drivers/clk/ux500/
17888
17889 VF610 NAND DRIVER
17890 M:      Stefan Agner <stefan@agner.ch>
17891 L:      linux-mtd@lists.infradead.org
17892 S:      Supported
17893 F:      drivers/mtd/nand/raw/vf610_nfc.c
17894
17895 VFAT/FAT/MSDOS FILESYSTEM
17896 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17897 S:      Maintained
17898 F:      Documentation/filesystems/vfat.rst
17899 F:      fs/fat/
17900
17901 VFIO DRIVER
17902 M:      Alex Williamson <alex.williamson@redhat.com>
17903 R:      Cornelia Huck <cohuck@redhat.com>
17904 L:      kvm@vger.kernel.org
17905 S:      Maintained
17906 T:      git git://github.com/awilliam/linux-vfio.git
17907 F:      Documentation/driver-api/vfio.rst
17908 F:      drivers/vfio/
17909 F:      include/linux/vfio.h
17910 F:      include/uapi/linux/vfio.h
17911
17912 VFIO MEDIATED DEVICE DRIVERS
17913 M:      Kirti Wankhede <kwankhede@nvidia.com>
17914 L:      kvm@vger.kernel.org
17915 S:      Maintained
17916 F:      Documentation/driver-api/vfio-mediated-device.rst
17917 F:      drivers/vfio/mdev/
17918 F:      include/linux/mdev.h
17919 F:      samples/vfio-mdev/
17920
17921 VFIO PLATFORM DRIVER
17922 M:      Eric Auger <eric.auger@redhat.com>
17923 L:      kvm@vger.kernel.org
17924 S:      Maintained
17925 F:      drivers/vfio/platform/
17926
17927 VGA_SWITCHEROO
17928 R:      Lukas Wunner <lukas@wunner.de>
17929 S:      Maintained
17930 T:      git git://anongit.freedesktop.org/drm/drm-misc
17931 F:      Documentation/gpu/vga-switcheroo.rst
17932 F:      drivers/gpu/vga/vga_switcheroo.c
17933 F:      include/linux/vga_switcheroo.h
17934
17935 VIA RHINE NETWORK DRIVER
17936 S:      Orphan
17937 F:      drivers/net/ethernet/via/via-rhine.c
17938
17939 VIA SD/MMC CARD CONTROLLER DRIVER
17940 M:      Bruce Chang <brucechang@via.com.tw>
17941 M:      Harald Welte <HaraldWelte@viatech.com>
17942 S:      Maintained
17943 F:      drivers/mmc/host/via-sdmmc.c
17944
17945 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17946 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17947 L:      linux-fbdev@vger.kernel.org
17948 S:      Maintained
17949 F:      drivers/video/fbdev/via/
17950 F:      include/linux/via-core.h
17951 F:      include/linux/via-gpio.h
17952 F:      include/linux/via_i2c.h
17953
17954 VIA VELOCITY NETWORK DRIVER
17955 M:      Francois Romieu <romieu@fr.zoreil.com>
17956 L:      netdev@vger.kernel.org
17957 S:      Maintained
17958 F:      drivers/net/ethernet/via/via-velocity.*
17959
17960 VICODEC VIRTUAL CODEC DRIVER
17961 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17962 L:      linux-media@vger.kernel.org
17963 S:      Maintained
17964 W:      https://linuxtv.org
17965 T:      git git://linuxtv.org/media_tree.git
17966 F:      drivers/media/test-drivers/vicodec/*
17967
17968 VIDEO I2C POLLING DRIVER
17969 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17970 L:      linux-media@vger.kernel.org
17971 S:      Maintained
17972 F:      drivers/media/i2c/video-i2c.c
17973
17974 VIDEO MULTIPLEXER DRIVER
17975 M:      Philipp Zabel <p.zabel@pengutronix.de>
17976 L:      linux-media@vger.kernel.org
17977 S:      Maintained
17978 F:      drivers/media/platform/video-mux.c
17979
17980 VIDEOBUF2 FRAMEWORK
17981 M:      Pawel Osciak <pawel@osciak.com>
17982 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17983 M:      Kyungmin Park <kyungmin.park@samsung.com>
17984 R:      Tomasz Figa <tfiga@chromium.org>
17985 L:      linux-media@vger.kernel.org
17986 S:      Maintained
17987 F:      drivers/media/common/videobuf2/*
17988 F:      include/media/videobuf2-*
17989
17990 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17991 M:      Helen Koike <helen.koike@collabora.com>
17992 R:      Shuah Khan <skhan@linuxfoundation.org>
17993 L:      linux-media@vger.kernel.org
17994 S:      Maintained
17995 W:      https://linuxtv.org
17996 T:      git git://linuxtv.org/media_tree.git
17997 F:      drivers/media/test-drivers/vimc/*
17998
17999 VIRT LIB
18000 M:      Alex Williamson <alex.williamson@redhat.com>
18001 M:      Paolo Bonzini <pbonzini@redhat.com>
18002 L:      kvm@vger.kernel.org
18003 S:      Supported
18004 F:      virt/lib/
18005
18006 VIRTIO AND VHOST VSOCK DRIVER
18007 M:      Stefan Hajnoczi <stefanha@redhat.com>
18008 M:      Stefano Garzarella <sgarzare@redhat.com>
18009 L:      kvm@vger.kernel.org
18010 L:      virtualization@lists.linux-foundation.org
18011 L:      netdev@vger.kernel.org
18012 S:      Maintained
18013 F:      drivers/net/vsockmon.c
18014 F:      drivers/vhost/vsock.c
18015 F:      include/linux/virtio_vsock.h
18016 F:      include/uapi/linux/virtio_vsock.h
18017 F:      include/uapi/linux/vm_sockets_diag.h
18018 F:      include/uapi/linux/vsockmon.h
18019 F:      net/vmw_vsock/af_vsock_tap.c
18020 F:      net/vmw_vsock/diag.c
18021 F:      net/vmw_vsock/virtio_transport.c
18022 F:      net/vmw_vsock/virtio_transport_common.c
18023 F:      net/vmw_vsock/vsock_loopback.c
18024 F:      tools/testing/vsock/
18025
18026 VIRTIO BLOCK AND SCSI DRIVERS
18027 M:      "Michael S. Tsirkin" <mst@redhat.com>
18028 M:      Jason Wang <jasowang@redhat.com>
18029 R:      Paolo Bonzini <pbonzini@redhat.com>
18030 R:      Stefan Hajnoczi <stefanha@redhat.com>
18031 L:      virtualization@lists.linux-foundation.org
18032 S:      Maintained
18033 F:      drivers/block/virtio_blk.c
18034 F:      drivers/scsi/virtio_scsi.c
18035 F:      drivers/vhost/scsi.c
18036 F:      include/uapi/linux/virtio_blk.h
18037 F:      include/uapi/linux/virtio_scsi.h
18038
18039 VIRTIO CONSOLE DRIVER
18040 M:      Amit Shah <amit@kernel.org>
18041 L:      virtualization@lists.linux-foundation.org
18042 S:      Maintained
18043 F:      drivers/char/virtio_console.c
18044 F:      include/linux/virtio_console.h
18045 F:      include/uapi/linux/virtio_console.h
18046
18047 VIRTIO CORE AND NET DRIVERS
18048 M:      "Michael S. Tsirkin" <mst@redhat.com>
18049 M:      Jason Wang <jasowang@redhat.com>
18050 L:      virtualization@lists.linux-foundation.org
18051 S:      Maintained
18052 F:      Documentation/devicetree/bindings/virtio/
18053 F:      drivers/block/virtio_blk.c
18054 F:      drivers/crypto/virtio/
18055 F:      drivers/net/virtio_net.c
18056 F:      drivers/vdpa/
18057 F:      drivers/virtio/
18058 F:      include/linux/vdpa.h
18059 F:      include/linux/virtio*.h
18060 F:      include/uapi/linux/virtio_*.h
18061 F:      mm/balloon_compaction.c
18062 F:      tools/virtio/
18063
18064 VIRTIO CRYPTO DRIVER
18065 M:      Gonglei <arei.gonglei@huawei.com>
18066 L:      virtualization@lists.linux-foundation.org
18067 L:      linux-crypto@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/crypto/virtio/
18070 F:      include/uapi/linux/virtio_crypto.h
18071
18072 VIRTIO DRIVERS FOR S390
18073 M:      Cornelia Huck <cohuck@redhat.com>
18074 M:      Halil Pasic <pasic@linux.ibm.com>
18075 L:      linux-s390@vger.kernel.org
18076 L:      virtualization@lists.linux-foundation.org
18077 L:      kvm@vger.kernel.org
18078 S:      Supported
18079 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18080 F:      drivers/s390/virtio/
18081
18082 VIRTIO FILE SYSTEM
18083 M:      Vivek Goyal <vgoyal@redhat.com>
18084 M:      Stefan Hajnoczi <stefanha@redhat.com>
18085 M:      Miklos Szeredi <miklos@szeredi.hu>
18086 L:      virtualization@lists.linux-foundation.org
18087 L:      linux-fsdevel@vger.kernel.org
18088 S:      Supported
18089 W:      https://virtio-fs.gitlab.io/
18090 F:      Documentation/filesystems/virtiofs.rst
18091 F:      fs/fuse/virtio_fs.c
18092 F:      include/uapi/linux/virtio_fs.h
18093
18094 VIRTIO GPU DRIVER
18095 M:      David Airlie <airlied@linux.ie>
18096 M:      Gerd Hoffmann <kraxel@redhat.com>
18097 L:      dri-devel@lists.freedesktop.org
18098 L:      virtualization@lists.linux-foundation.org
18099 S:      Maintained
18100 T:      git git://anongit.freedesktop.org/drm/drm-misc
18101 F:      drivers/gpu/drm/virtio/
18102 F:      include/uapi/linux/virtio_gpu.h
18103
18104 VIRTIO HOST (VHOST)
18105 M:      "Michael S. Tsirkin" <mst@redhat.com>
18106 M:      Jason Wang <jasowang@redhat.com>
18107 L:      kvm@vger.kernel.org
18108 L:      virtualization@lists.linux-foundation.org
18109 L:      netdev@vger.kernel.org
18110 S:      Maintained
18111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18112 F:      drivers/vhost/
18113 F:      include/linux/vhost_iotlb.h
18114 F:      include/uapi/linux/vhost.h
18115
18116 VIRTIO INPUT DRIVER
18117 M:      Gerd Hoffmann <kraxel@redhat.com>
18118 S:      Maintained
18119 F:      drivers/virtio/virtio_input.c
18120 F:      include/uapi/linux/virtio_input.h
18121
18122 VIRTIO IOMMU DRIVER
18123 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18124 L:      virtualization@lists.linux-foundation.org
18125 S:      Maintained
18126 F:      drivers/iommu/virtio-iommu.c
18127 F:      include/uapi/linux/virtio_iommu.h
18128
18129 VIRTUAL BOX GUEST DEVICE DRIVER
18130 M:      Hans de Goede <hdegoede@redhat.com>
18131 M:      Arnd Bergmann <arnd@arndb.de>
18132 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18133 S:      Maintained
18134 F:      drivers/virt/vboxguest/
18135 F:      include/linux/vbox_utils.h
18136 F:      include/uapi/linux/vbox*.h
18137
18138 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18139 M:      Hans de Goede <hdegoede@redhat.com>
18140 L:      linux-fsdevel@vger.kernel.org
18141 S:      Maintained
18142 F:      fs/vboxsf/*
18143
18144 VIRTUAL SERIO DEVICE DRIVER
18145 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18146 S:      Maintained
18147 F:      drivers/input/serio/userio.c
18148 F:      include/uapi/linux/userio.h
18149
18150 VITESSE FELIX ETHERNET SWITCH DRIVER
18151 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
18152 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
18153 L:      netdev@vger.kernel.org
18154 S:      Maintained
18155 F:      drivers/net/dsa/ocelot/*
18156 F:      net/dsa/tag_ocelot.c
18157
18158 VIVID VIRTUAL VIDEO DRIVER
18159 M:      Hans Verkuil <hverkuil@xs4all.nl>
18160 L:      linux-media@vger.kernel.org
18161 S:      Maintained
18162 W:      https://linuxtv.org
18163 T:      git git://linuxtv.org/media_tree.git
18164 F:      drivers/media/test-drivers/vivid/*
18165
18166 VLYNQ BUS
18167 M:      Florian Fainelli <f.fainelli@gmail.com>
18168 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18169 S:      Maintained
18170 F:      drivers/vlynq/vlynq.c
18171 F:      include/linux/vlynq.h
18172
18173 VME SUBSYSTEM
18174 M:      Martyn Welch <martyn@welchs.me.uk>
18175 M:      Manohar Vanga <manohar.vanga@gmail.com>
18176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18177 L:      devel@driverdev.osuosl.org
18178 S:      Maintained
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18180 F:      Documentation/driver-api/vme.rst
18181 F:      drivers/staging/vme/
18182 F:      drivers/vme/
18183 F:      include/linux/vme*
18184
18185 VMWARE BALLOON DRIVER
18186 M:      Nadav Amit <namit@vmware.com>
18187 M:      "VMware, Inc." <pv-drivers@vmware.com>
18188 L:      linux-kernel@vger.kernel.org
18189 S:      Maintained
18190 F:      drivers/misc/vmw_balloon.c
18191
18192 VMWARE HYPERVISOR INTERFACE
18193 M:      Thomas Hellstrom <thellstrom@vmware.com>
18194 M:      "VMware, Inc." <pv-drivers@vmware.com>
18195 L:      virtualization@lists.linux-foundation.org
18196 S:      Supported
18197 F:      arch/x86/include/asm/vmware.h
18198 F:      arch/x86/kernel/cpu/vmware.c
18199
18200 VMWARE PVRDMA DRIVER
18201 M:      Adit Ranadive <aditr@vmware.com>
18202 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18203 L:      linux-rdma@vger.kernel.org
18204 S:      Maintained
18205 F:      drivers/infiniband/hw/vmw_pvrdma/
18206
18207 VMware PVSCSI driver
18208 M:      Jim Gill <jgill@vmware.com>
18209 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18210 L:      linux-scsi@vger.kernel.org
18211 S:      Maintained
18212 F:      drivers/scsi/vmw_pvscsi.c
18213 F:      drivers/scsi/vmw_pvscsi.h
18214
18215 VMWARE VIRTUAL PTP CLOCK DRIVER
18216 M:      Vivek Thampi <vithampi@vmware.com>
18217 M:      "VMware, Inc." <pv-drivers@vmware.com>
18218 L:      netdev@vger.kernel.org
18219 S:      Supported
18220 F:      drivers/ptp/ptp_vmw.c
18221
18222 VMWARE VMMOUSE SUBDRIVER
18223 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18224 M:      "VMware, Inc." <pv-drivers@vmware.com>
18225 L:      linux-input@vger.kernel.org
18226 S:      Maintained
18227 F:      drivers/input/mouse/vmmouse.c
18228 F:      drivers/input/mouse/vmmouse.h
18229
18230 VMWARE VMXNET3 ETHERNET DRIVER
18231 M:      Ronak Doshi <doshir@vmware.com>
18232 M:      "VMware, Inc." <pv-drivers@vmware.com>
18233 L:      netdev@vger.kernel.org
18234 S:      Maintained
18235 F:      drivers/net/vmxnet3/
18236
18237 VOCORE VOCORE2 BOARD
18238 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18239 L:      linux-mips@vger.kernel.org
18240 S:      Maintained
18241 F:      arch/mips/boot/dts/ralink/vocore2.dts
18242
18243 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18244 M:      Liam Girdwood <lgirdwood@gmail.com>
18245 M:      Mark Brown <broonie@kernel.org>
18246 L:      linux-kernel@vger.kernel.org
18247 S:      Supported
18248 W:      http://www.slimlogic.co.uk/?p=48
18249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18250 F:      Documentation/devicetree/bindings/regulator/
18251 F:      Documentation/power/regulator/
18252 F:      drivers/regulator/
18253 F:      include/dt-bindings/regulator/
18254 F:      include/linux/regulator/
18255 K:      regulator_get_optional
18256
18257 VRF
18258 M:      David Ahern <dsahern@kernel.org>
18259 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18260 L:      netdev@vger.kernel.org
18261 S:      Maintained
18262 F:      Documentation/networking/vrf.rst
18263 F:      drivers/net/vrf.c
18264
18265 VSPRINTF
18266 M:      Petr Mladek <pmladek@suse.com>
18267 M:      Steven Rostedt <rostedt@goodmis.org>
18268 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18269 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18270 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18271 S:      Maintained
18272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18273 F:      Documentation/core-api/printk-formats.rst
18274 F:      lib/test_printf.c
18275 F:      lib/vsprintf.c
18276
18277 VT1211 HARDWARE MONITOR DRIVER
18278 M:      Juerg Haefliger <juergh@gmail.com>
18279 L:      linux-hwmon@vger.kernel.org
18280 S:      Maintained
18281 F:      Documentation/hwmon/vt1211.rst
18282 F:      drivers/hwmon/vt1211.c
18283
18284 VT8231 HARDWARE MONITOR DRIVER
18285 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18286 L:      linux-hwmon@vger.kernel.org
18287 S:      Maintained
18288 F:      drivers/hwmon/vt8231.c
18289
18290 VUB300 USB to SDIO/SD/MMC bridge chip
18291 L:      linux-mmc@vger.kernel.org
18292 S:      Orphan
18293 F:      drivers/mmc/host/vub300.c
18294
18295 W1 DALLAS'S 1-WIRE BUS
18296 M:      Evgeniy Polyakov <zbr@ioremap.net>
18297 S:      Maintained
18298 F:      Documentation/devicetree/bindings/w1/
18299 F:      Documentation/w1/
18300 F:      drivers/w1/
18301 F:      include/linux/w1.h
18302
18303 W83791D HARDWARE MONITORING DRIVER
18304 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18305 L:      linux-hwmon@vger.kernel.org
18306 S:      Maintained
18307 F:      Documentation/hwmon/w83791d.rst
18308 F:      drivers/hwmon/w83791d.c
18309
18310 W83793 HARDWARE MONITORING DRIVER
18311 M:      Rudolf Marek <r.marek@assembler.cz>
18312 L:      linux-hwmon@vger.kernel.org
18313 S:      Maintained
18314 F:      Documentation/hwmon/w83793.rst
18315 F:      drivers/hwmon/w83793.c
18316
18317 W83795 HARDWARE MONITORING DRIVER
18318 M:      Jean Delvare <jdelvare@suse.com>
18319 L:      linux-hwmon@vger.kernel.org
18320 S:      Maintained
18321 F:      drivers/hwmon/w83795.c
18322
18323 W83L51xD SD/MMC CARD INTERFACE DRIVER
18324 M:      Pierre Ossman <pierre@ossman.eu>
18325 S:      Maintained
18326 F:      drivers/mmc/host/wbsd.*
18327
18328 WACOM PROTOCOL 4 SERIAL TABLETS
18329 M:      Julian Squires <julian@cipht.net>
18330 M:      Hans de Goede <hdegoede@redhat.com>
18331 L:      linux-input@vger.kernel.org
18332 S:      Maintained
18333 F:      drivers/input/tablet/wacom_serial4.c
18334
18335 WATCHDOG DEVICE DRIVERS
18336 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18337 M:      Guenter Roeck <linux@roeck-us.net>
18338 L:      linux-watchdog@vger.kernel.org
18339 S:      Maintained
18340 W:      http://www.linux-watchdog.org/
18341 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18342 F:      Documentation/devicetree/bindings/watchdog/
18343 F:      Documentation/watchdog/
18344 F:      drivers/watchdog/
18345 F:      include/linux/watchdog.h
18346 F:      include/uapi/linux/watchdog.h
18347
18348 WHISKEYCOVE PMIC GPIO DRIVER
18349 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18350 L:      linux-gpio@vger.kernel.org
18351 S:      Maintained
18352 F:      drivers/gpio/gpio-wcove.c
18353
18354 WHWAVE RTC DRIVER
18355 M:      Dianlong Li <long17.cool@163.com>
18356 L:      linux-rtc@vger.kernel.org
18357 S:      Maintained
18358 F:      drivers/rtc/rtc-sd3078.c
18359
18360 WIIMOTE HID DRIVER
18361 M:      David Herrmann <dh.herrmann@googlemail.com>
18362 L:      linux-input@vger.kernel.org
18363 S:      Maintained
18364 F:      drivers/hid/hid-wiimote*
18365
18366 WILOCITY WIL6210 WIRELESS DRIVER
18367 M:      Maya Erez <merez@codeaurora.org>
18368 L:      linux-wireless@vger.kernel.org
18369 L:      wil6210@qti.qualcomm.com
18370 S:      Supported
18371 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18372 F:      drivers/net/wireless/ath/wil6210/
18373
18374 WIMAX STACK
18375 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18376 M:      linux-wimax@intel.com
18377 L:      wimax@linuxwimax.org (subscribers-only)
18378 S:      Supported
18379 W:      http://linuxwimax.org
18380 F:      Documentation/admin-guide/wimax/wimax.rst
18381 F:      include/linux/wimax/debug.h
18382 F:      include/net/wimax.h
18383 F:      include/uapi/linux/wimax.h
18384 F:      net/wimax/
18385
18386 WINBOND CIR DRIVER
18387 M:      David Härdeman <david@hardeman.nu>
18388 S:      Maintained
18389 F:      drivers/media/rc/winbond-cir.c
18390
18391 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18392 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18393 L:      linux-watchdog@vger.kernel.org
18394 S:      Maintained
18395 F:      drivers/watchdog/ebc-c384_wdt.c
18396
18397 WINSYSTEMS WS16C48 GPIO DRIVER
18398 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18399 L:      linux-gpio@vger.kernel.org
18400 S:      Maintained
18401 F:      drivers/gpio/gpio-ws16c48.c
18402
18403 WIREGUARD SECURE NETWORK TUNNEL
18404 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18405 L:      wireguard@lists.zx2c4.com
18406 L:      netdev@vger.kernel.org
18407 S:      Maintained
18408 F:      drivers/net/wireguard/
18409 F:      tools/testing/selftests/wireguard/
18410
18411 WISTRON LAPTOP BUTTON DRIVER
18412 M:      Miloslav Trmac <mitr@volny.cz>
18413 S:      Maintained
18414 F:      drivers/input/misc/wistron_btns.c
18415
18416 WL3501 WIRELESS PCMCIA CARD DRIVER
18417 L:      linux-wireless@vger.kernel.org
18418 S:      Odd fixes
18419 F:      drivers/net/wireless/wl3501*
18420
18421 WOLFSON MICROELECTRONICS DRIVERS
18422 L:      patches@opensource.cirrus.com
18423 S:      Supported
18424 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18425 T:      git https://github.com/CirrusLogic/linux-drivers.git
18426 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18427 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18428 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18429 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18430 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18431 F:      Documentation/hwmon/wm83??.rst
18432 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18433 F:      drivers/clk/clk-wm83*.c
18434 F:      drivers/extcon/extcon-arizona.c
18435 F:      drivers/gpio/gpio-*wm*.c
18436 F:      drivers/gpio/gpio-arizona.c
18437 F:      drivers/hwmon/wm83??-hwmon.c
18438 F:      drivers/input/misc/wm831x-on.c
18439 F:      drivers/input/touchscreen/wm831x-ts.c
18440 F:      drivers/input/touchscreen/wm97*.c
18441 F:      drivers/leds/leds-wm83*.c
18442 F:      drivers/mfd/arizona*
18443 F:      drivers/mfd/cs47l24*
18444 F:      drivers/mfd/wm*.c
18445 F:      drivers/power/supply/wm83*.c
18446 F:      drivers/regulator/arizona*
18447 F:      drivers/regulator/wm8*.c
18448 F:      drivers/rtc/rtc-wm83*.c
18449 F:      drivers/video/backlight/wm83*_bl.c
18450 F:      drivers/watchdog/wm83*_wdt.c
18451 F:      include/linux/mfd/arizona/
18452 F:      include/linux/mfd/wm831x/
18453 F:      include/linux/mfd/wm8350/
18454 F:      include/linux/mfd/wm8400*
18455 F:      include/linux/regulator/arizona*
18456 F:      include/linux/wm97xx.h
18457 F:      include/sound/wm????.h
18458 F:      sound/soc/codecs/arizona.?
18459 F:      sound/soc/codecs/cs47l24*
18460 F:      sound/soc/codecs/wm*
18461
18462 WORKQUEUE
18463 M:      Tejun Heo <tj@kernel.org>
18464 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18465 S:      Maintained
18466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18467 F:      Documentation/core-api/workqueue.rst
18468 F:      include/linux/workqueue.h
18469 F:      kernel/workqueue.c
18470
18471 X-POWERS AXP288 PMIC DRIVERS
18472 M:      Hans de Goede <hdegoede@redhat.com>
18473 S:      Maintained
18474 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18475 N:      axp288
18476
18477 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18478 M:      Chen-Yu Tsai <wens@csie.org>
18479 L:      linux-kernel@vger.kernel.org
18480 S:      Maintained
18481 N:      axp[128]
18482
18483 X.25 NETWORK LAYER
18484 M:      Andrew Hendry <andrew.hendry@gmail.com>
18485 L:      linux-x25@vger.kernel.org
18486 S:      Odd Fixes
18487 F:      Documentation/networking/x25*
18488 F:      include/net/x25*
18489 F:      net/x25/
18490
18491 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18492 M:      Thomas Gleixner <tglx@linutronix.de>
18493 M:      Ingo Molnar <mingo@redhat.com>
18494 M:      Borislav Petkov <bp@alien8.de>
18495 M:      x86@kernel.org
18496 R:      "H. Peter Anvin" <hpa@zytor.com>
18497 L:      linux-kernel@vger.kernel.org
18498 S:      Maintained
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18500 F:      Documentation/devicetree/bindings/x86/
18501 F:      Documentation/x86/
18502 F:      arch/x86/
18503
18504 X86 ENTRY CODE
18505 M:      Andy Lutomirski <luto@kernel.org>
18506 L:      linux-kernel@vger.kernel.org
18507 S:      Maintained
18508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18509 F:      arch/x86/entry/
18510
18511 X86 MCE INFRASTRUCTURE
18512 M:      Tony Luck <tony.luck@intel.com>
18513 M:      Borislav Petkov <bp@alien8.de>
18514 L:      linux-edac@vger.kernel.org
18515 S:      Maintained
18516 F:      arch/x86/kernel/cpu/mce/*
18517
18518 X86 MICROCODE UPDATE SUPPORT
18519 M:      Borislav Petkov <bp@alien8.de>
18520 S:      Maintained
18521 F:      arch/x86/kernel/cpu/microcode/*
18522
18523 X86 MM
18524 M:      Dave Hansen <dave.hansen@linux.intel.com>
18525 M:      Andy Lutomirski <luto@kernel.org>
18526 M:      Peter Zijlstra <peterz@infradead.org>
18527 L:      linux-kernel@vger.kernel.org
18528 S:      Maintained
18529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18530 F:      arch/x86/mm/
18531
18532 X86 PLATFORM DRIVERS
18533 M:      Darren Hart <dvhart@infradead.org>
18534 M:      Andy Shevchenko <andy@infradead.org>
18535 L:      platform-driver-x86@vger.kernel.org
18536 S:      Odd Fixes
18537 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18538 F:      drivers/platform/olpc/
18539 F:      drivers/platform/x86/
18540
18541 X86 PLATFORM DRIVERS - ARCH
18542 R:      Darren Hart <dvhart@infradead.org>
18543 R:      Andy Shevchenko <andy@infradead.org>
18544 L:      platform-driver-x86@vger.kernel.org
18545 L:      x86@kernel.org
18546 S:      Maintained
18547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18548 F:      arch/x86/platform
18549
18550 X86 VDSO
18551 M:      Andy Lutomirski <luto@kernel.org>
18552 L:      linux-kernel@vger.kernel.org
18553 S:      Maintained
18554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18555 F:      arch/x86/entry/vdso/
18556
18557 XARRAY
18558 M:      Matthew Wilcox <willy@infradead.org>
18559 L:      linux-fsdevel@vger.kernel.org
18560 S:      Supported
18561 F:      Documentation/core-api/xarray.rst
18562 F:      include/linux/idr.h
18563 F:      include/linux/xarray.h
18564 F:      lib/idr.c
18565 F:      lib/xarray.c
18566 F:      tools/testing/radix-tree
18567
18568 XBOX DVD IR REMOTE
18569 M:      Benjamin Valentin <benpicco@googlemail.com>
18570 S:      Maintained
18571 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18572 F:      drivers/media/rc/xbox_remote.c
18573
18574 XC2028/3028 TUNER DRIVER
18575 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18576 L:      linux-media@vger.kernel.org
18577 S:      Maintained
18578 W:      https://linuxtv.org
18579 T:      git git://linuxtv.org/media_tree.git
18580 F:      drivers/media/tuners/tuner-xc2028.*
18581
18582 XDP (eXpress Data Path)
18583 M:      Alexei Starovoitov <ast@kernel.org>
18584 M:      Daniel Borkmann <daniel@iogearbox.net>
18585 M:      David S. Miller <davem@davemloft.net>
18586 M:      Jakub Kicinski <kuba@kernel.org>
18587 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18588 M:      John Fastabend <john.fastabend@gmail.com>
18589 L:      netdev@vger.kernel.org
18590 L:      bpf@vger.kernel.org
18591 S:      Supported
18592 F:      include/net/xdp.h
18593 F:      include/trace/events/xdp.h
18594 F:      kernel/bpf/cpumap.c
18595 F:      kernel/bpf/devmap.c
18596 F:      net/core/xdp.c
18597 N:      xdp
18598 K:      xdp
18599
18600 XDP SOCKETS (AF_XDP)
18601 M:      Björn Töpel <bjorn.topel@intel.com>
18602 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18603 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18604 L:      netdev@vger.kernel.org
18605 L:      bpf@vger.kernel.org
18606 S:      Maintained
18607 F:      include/net/xdp_sock*
18608 F:      include/net/xsk_buff_pool.h
18609 F:      include/uapi/linux/if_xdp.h
18610 F:      net/xdp/
18611 F:      samples/bpf/xdpsock*
18612 F:      tools/lib/bpf/xsk*
18613
18614 XEN BLOCK SUBSYSTEM
18615 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18616 M:      Roger Pau Monné <roger.pau@citrix.com>
18617 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18618 S:      Supported
18619 F:      drivers/block/xen*
18620 F:      drivers/block/xen-blkback/*
18621
18622 XEN HYPERVISOR ARM
18623 M:      Stefano Stabellini <sstabellini@kernel.org>
18624 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18625 S:      Maintained
18626 F:      arch/arm/include/asm/xen/
18627 F:      arch/arm/xen/
18628
18629 XEN HYPERVISOR ARM64
18630 M:      Stefano Stabellini <sstabellini@kernel.org>
18631 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18632 S:      Maintained
18633 F:      arch/arm64/include/asm/xen/
18634 F:      arch/arm64/xen/
18635
18636 XEN HYPERVISOR INTERFACE
18637 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18638 M:      Juergen Gross <jgross@suse.com>
18639 R:      Stefano Stabellini <sstabellini@kernel.org>
18640 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18641 S:      Supported
18642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18643 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18644 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18645 F:      arch/x86/include/asm/pvclock-abi.h
18646 F:      arch/x86/include/asm/xen/
18647 F:      arch/x86/platform/pvh/
18648 F:      arch/x86/xen/
18649 F:      drivers/*/xen-*front.c
18650 F:      drivers/xen/
18651 F:      include/uapi/xen/
18652 F:      include/xen/
18653
18654 XEN NETWORK BACKEND DRIVER
18655 M:      Wei Liu <wei.liu@kernel.org>
18656 M:      Paul Durrant <paul@xen.org>
18657 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18658 L:      netdev@vger.kernel.org
18659 S:      Supported
18660 F:      drivers/net/xen-netback/*
18661
18662 XEN PCI SUBSYSTEM
18663 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18664 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18665 S:      Supported
18666 F:      arch/x86/pci/*xen*
18667 F:      drivers/pci/*xen*
18668
18669 XEN PVSCSI DRIVERS
18670 M:      Juergen Gross <jgross@suse.com>
18671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18672 L:      linux-scsi@vger.kernel.org
18673 S:      Supported
18674 F:      drivers/scsi/xen-scsifront.c
18675 F:      drivers/xen/xen-scsiback.c
18676 F:      include/xen/interface/io/vscsiif.h
18677
18678 XEN SOUND FRONTEND DRIVER
18679 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18680 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18681 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18682 S:      Supported
18683 F:      sound/xen/*
18684
18685 XEN SWIOTLB SUBSYSTEM
18686 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18687 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18688 L:      iommu@lists.linux-foundation.org
18689 S:      Supported
18690 F:      arch/x86/xen/*swiotlb*
18691 F:      drivers/xen/*swiotlb*
18692
18693 XFS FILESYSTEM
18694 M:      Darrick J. Wong <darrick.wong@oracle.com>
18695 M:      linux-xfs@vger.kernel.org
18696 L:      linux-xfs@vger.kernel.org
18697 S:      Supported
18698 W:      http://xfs.org/
18699 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18700 F:      Documentation/ABI/testing/sysfs-fs-xfs
18701 F:      Documentation/admin-guide/xfs.rst
18702 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18703 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18704 F:      fs/xfs/
18705 F:      include/uapi/linux/dqblk_xfs.h
18706 F:      include/uapi/linux/fsmap.h
18707
18708 XILINX AXI ETHERNET DRIVER
18709 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18710 S:      Maintained
18711 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18712
18713 XILINX CAN DRIVER
18714 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18715 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18716 L:      linux-can@vger.kernel.org
18717 S:      Maintained
18718 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18719 F:      drivers/net/can/xilinx_can.c
18720
18721 XILINX SD-FEC IP CORES
18722 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18723 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18724 S:      Maintained
18725 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18726 F:      Documentation/misc-devices/xilinx_sdfec.rst
18727 F:      drivers/misc/Kconfig
18728 F:      drivers/misc/Makefile
18729 F:      drivers/misc/xilinx_sdfec.c
18730 F:      include/uapi/misc/xilinx_sdfec.h
18731
18732 XILINX UARTLITE SERIAL DRIVER
18733 M:      Peter Korsgaard <jacmet@sunsite.dk>
18734 L:      linux-serial@vger.kernel.org
18735 S:      Maintained
18736 F:      drivers/tty/serial/uartlite.c
18737
18738 XILINX VIDEO IP CORES
18739 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18740 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18741 L:      linux-media@vger.kernel.org
18742 S:      Supported
18743 T:      git git://linuxtv.org/media_tree.git
18744 F:      Documentation/devicetree/bindings/media/xilinx/
18745 F:      drivers/media/platform/xilinx/
18746 F:      include/uapi/linux/xilinx-v4l2-controls.h
18747
18748 XILLYBUS DRIVER
18749 M:      Eli Billauer <eli.billauer@gmail.com>
18750 L:      linux-kernel@vger.kernel.org
18751 S:      Supported
18752 F:      drivers/char/xillybus/
18753
18754 XLP9XX I2C DRIVER
18755 M:      George Cherian <gcherian@marvell.com>
18756 L:      linux-i2c@vger.kernel.org
18757 S:      Supported
18758 W:      http://www.marvell.com
18759 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18760 F:      drivers/i2c/busses/i2c-xlp9xx.c
18761
18762 XRA1403 GPIO EXPANDER
18763 M:      Nandor Han <nandor.han@ge.com>
18764 M:      Semi Malinen <semi.malinen@ge.com>
18765 L:      linux-gpio@vger.kernel.org
18766 S:      Maintained
18767 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18768 F:      drivers/gpio/gpio-xra1403.c
18769
18770 XTENSA XTFPGA PLATFORM SUPPORT
18771 M:      Max Filippov <jcmvbkbc@gmail.com>
18772 L:      linux-xtensa@linux-xtensa.org
18773 S:      Maintained
18774 F:      drivers/spi/spi-xtensa-xtfpga.c
18775 F:      sound/soc/xtensa/xtfpga-i2s.c
18776
18777 YAM DRIVER FOR AX.25
18778 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18779 L:      linux-hams@vger.kernel.org
18780 S:      Maintained
18781 F:      drivers/net/hamradio/yam*
18782 F:      include/linux/yam.h
18783
18784 YAMA SECURITY MODULE
18785 M:      Kees Cook <keescook@chromium.org>
18786 S:      Supported
18787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18788 F:      Documentation/admin-guide/LSM/Yama.rst
18789 F:      security/yama/
18790
18791 YEALINK PHONE DRIVER
18792 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18793 L:      usbb2k-api-dev@nongnu.org
18794 S:      Maintained
18795 F:      Documentation/input/devices/yealink.rst
18796 F:      drivers/input/misc/yealink.*
18797
18798 Z8530 DRIVER FOR AX.25
18799 M:      Joerg Reuter <jreuter@yaina.de>
18800 L:      linux-hams@vger.kernel.org
18801 S:      Maintained
18802 W:      http://yaina.de/jreuter/
18803 W:      http://www.qsl.net/dl1bke/
18804 F:      Documentation/networking/z8530drv.rst
18805 F:      drivers/net/hamradio/*scc.c
18806 F:      drivers/net/hamradio/z8530.h
18807
18808 ZBUD COMPRESSED PAGE ALLOCATOR
18809 M:      Seth Jennings <sjenning@redhat.com>
18810 M:      Dan Streetman <ddstreet@ieee.org>
18811 L:      linux-mm@kvack.org
18812 S:      Maintained
18813 F:      include/linux/zbud.h
18814 F:      mm/zbud.c
18815
18816 ZD1211RW WIRELESS DRIVER
18817 M:      Daniel Drake <dsd@gentoo.org>
18818 M:      Ulrich Kunitz <kune@deine-taler.de>
18819 L:      linux-wireless@vger.kernel.org
18820 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18821 S:      Maintained
18822 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18823 F:      drivers/net/wireless/zydas/zd1211rw/
18824
18825 ZD1301 MEDIA DRIVER
18826 M:      Antti Palosaari <crope@iki.fi>
18827 L:      linux-media@vger.kernel.org
18828 S:      Maintained
18829 W:      https://linuxtv.org/
18830 W:      http://palosaari.fi/linux/
18831 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18832 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18833
18834 ZD1301_DEMOD MEDIA DRIVER
18835 M:      Antti Palosaari <crope@iki.fi>
18836 L:      linux-media@vger.kernel.org
18837 S:      Maintained
18838 W:      https://linuxtv.org/
18839 W:      http://palosaari.fi/linux/
18840 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18841 F:      drivers/media/dvb-frontends/zd1301_demod*
18842
18843 ZHAOXIN PROCESSOR SUPPORT
18844 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18845 L:      linux-kernel@vger.kernel.org
18846 S:      Maintained
18847 F:      arch/x86/kernel/cpu/zhaoxin.c
18848
18849 ZONEFS FILESYSTEM
18850 M:      Damien Le Moal <damien.lemoal@wdc.com>
18851 M:      Naohiro Aota <naohiro.aota@wdc.com>
18852 R:      Johannes Thumshirn <jth@kernel.org>
18853 L:      linux-fsdevel@vger.kernel.org
18854 S:      Maintained
18855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18856 F:      Documentation/filesystems/zonefs.rst
18857 F:      fs/zonefs/
18858
18859 ZPOOL COMPRESSED PAGE STORAGE API
18860 M:      Dan Streetman <ddstreet@ieee.org>
18861 L:      linux-mm@kvack.org
18862 S:      Maintained
18863 F:      include/linux/zpool.h
18864 F:      mm/zpool.c
18865
18866 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18867 M:      Minchan Kim <minchan@kernel.org>
18868 M:      Nitin Gupta <ngupta@vflare.org>
18869 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18870 L:      linux-kernel@vger.kernel.org
18871 S:      Maintained
18872 F:      Documentation/admin-guide/blockdev/zram.rst
18873 F:      drivers/block/zram/
18874
18875 ZS DECSTATION Z85C30 SERIAL DRIVER
18876 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18877 S:      Maintained
18878 F:      drivers/tty/serial/zs.*
18879
18880 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18881 M:      Minchan Kim <minchan@kernel.org>
18882 M:      Nitin Gupta <ngupta@vflare.org>
18883 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18884 L:      linux-mm@kvack.org
18885 S:      Maintained
18886 F:      Documentation/vm/zsmalloc.rst
18887 F:      include/linux/zsmalloc.h
18888 F:      mm/zsmalloc.c
18889
18890 ZSWAP COMPRESSED SWAP CACHING
18891 M:      Seth Jennings <sjenning@redhat.com>
18892 M:      Dan Streetman <ddstreet@ieee.org>
18893 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18894 L:      linux-mm@kvack.org
18895 S:      Maintained
18896 F:      mm/zswap.c
18897
18898 THE REST
18899 M:      Linus Torvalds <torvalds@linux-foundation.org>
18900 L:      linux-kernel@vger.kernel.org
18901 S:      Buried alive in reporters
18902 Q:      http://patchwork.kernel.org/project/LKML/list/
18903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18904 F:      *
18905 F:      */