Merge tag 'sh-for-5.8' of git://git.libc.org/linux-sh
[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:      Sreekanth Reddy <sreekanth.reddy@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/mobiveil/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:      Documentation/devicetree/bindings/pci/*rcar*
13086 F:      drivers/pci/controller/*rcar*
13087
13088 PCI DRIVER FOR SAMSUNG EXYNOS
13089 M:      Jingoo Han <jingoohan1@gmail.com>
13090 L:      linux-pci@vger.kernel.org
13091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13092 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13093 S:      Maintained
13094 F:      drivers/pci/controller/dwc/pci-exynos.c
13095
13096 PCI DRIVER FOR SYNOPSYS DESIGNWARE
13097 M:      Jingoo Han <jingoohan1@gmail.com>
13098 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
13099 L:      linux-pci@vger.kernel.org
13100 S:      Maintained
13101 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
13102 F:      drivers/pci/controller/dwc/*designware*
13103
13104 PCI DRIVER FOR TI DRA7XX
13105 M:      Kishon Vijay Abraham I <kishon@ti.com>
13106 L:      linux-omap@vger.kernel.org
13107 L:      linux-pci@vger.kernel.org
13108 S:      Supported
13109 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
13110 F:      drivers/pci/controller/dwc/pci-dra7xx.c
13111
13112 PCI DRIVER FOR TI KEYSTONE
13113 M:      Murali Karicheri <m-karicheri2@ti.com>
13114 L:      linux-pci@vger.kernel.org
13115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13116 S:      Maintained
13117 F:      drivers/pci/controller/dwc/pci-keystone.c
13118
13119 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13120 M:      Linus Walleij <linus.walleij@linaro.org>
13121 L:      linux-pci@vger.kernel.org
13122 S:      Maintained
13123 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13124 F:      drivers/pci/controller/pci-v3-semi.c
13125
13126 PCI ENDPOINT SUBSYSTEM
13127 M:      Kishon Vijay Abraham I <kishon@ti.com>
13128 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13129 L:      linux-pci@vger.kernel.org
13130 S:      Supported
13131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
13132 F:      drivers/misc/pci_endpoint_test.c
13133 F:      drivers/pci/endpoint/
13134 F:      tools/pci/
13135
13136 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
13137 M:      Russell Currey <ruscur@russell.cc>
13138 M:      Sam Bobroff <sbobroff@linux.ibm.com>
13139 M:      Oliver O'Halloran <oohall@gmail.com>
13140 L:      linuxppc-dev@lists.ozlabs.org
13141 S:      Supported
13142 F:      Documentation/PCI/pci-error-recovery.rst
13143 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
13144 F:      arch/powerpc/include/*/eeh*.h
13145 F:      arch/powerpc/kernel/eeh*.c
13146 F:      arch/powerpc/platforms/*/eeh*.c
13147 F:      drivers/pci/pcie/aer.c
13148 F:      drivers/pci/pcie/dpc.c
13149 F:      drivers/pci/pcie/err.c
13150
13151 PCI ERROR RECOVERY
13152 M:      Linas Vepstas <linasvepstas@gmail.com>
13153 L:      linux-pci@vger.kernel.org
13154 S:      Supported
13155 F:      Documentation/PCI/pci-error-recovery.rst
13156
13157 PCI MSI DRIVER FOR ALTERA MSI IP
13158 M:      Ley Foon Tan <ley.foon.tan@intel.com>
13159 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
13160 L:      linux-pci@vger.kernel.org
13161 S:      Supported
13162 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13163 F:      drivers/pci/controller/pcie-altera-msi.c
13164
13165 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13166 M:      Toan Le <toan@os.amperecomputing.com>
13167 L:      linux-pci@vger.kernel.org
13168 L:      linux-arm-kernel@lists.infradead.org
13169 S:      Maintained
13170 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13171 F:      drivers/pci/controller/pci-xgene-msi.c
13172
13173 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13174 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13175 R:      Rob Herring <robh@kernel.org>
13176 L:      linux-pci@vger.kernel.org
13177 S:      Supported
13178 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13180 F:      drivers/pci/controller/
13181
13182 PCI SUBSYSTEM
13183 M:      Bjorn Helgaas <bhelgaas@google.com>
13184 L:      linux-pci@vger.kernel.org
13185 S:      Supported
13186 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13188 F:      Documentation/PCI/
13189 F:      Documentation/devicetree/bindings/pci/
13190 F:      arch/x86/kernel/early-quirks.c
13191 F:      arch/x86/kernel/quirks.c
13192 F:      arch/x86/pci/
13193 F:      drivers/acpi/pci*
13194 F:      drivers/pci/
13195 F:      include/asm-generic/pci*
13196 F:      include/linux/of_pci.h
13197 F:      include/linux/pci*
13198 F:      include/uapi/linux/pci*
13199 F:      lib/pci*
13200
13201 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13202 M:      Jonathan Chocron <jonnyc@amazon.com>
13203 L:      linux-pci@vger.kernel.org
13204 S:      Maintained
13205 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13206 F:      drivers/pci/controller/dwc/pcie-al.c
13207
13208 PCIE DRIVER FOR AMLOGIC MESON
13209 M:      Yue Wang <yue.wang@Amlogic.com>
13210 L:      linux-pci@vger.kernel.org
13211 L:      linux-amlogic@lists.infradead.org
13212 S:      Maintained
13213 F:      drivers/pci/controller/dwc/pci-meson.c
13214
13215 PCIE DRIVER FOR AXIS ARTPEC
13216 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13217 L:      linux-arm-kernel@axis.com
13218 L:      linux-pci@vger.kernel.org
13219 S:      Maintained
13220 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13221 F:      drivers/pci/controller/dwc/*artpec*
13222
13223 PCIE DRIVER FOR CAVIUM THUNDERX
13224 M:      Robert Richter <rrichter@marvell.com>
13225 L:      linux-pci@vger.kernel.org
13226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13227 S:      Supported
13228 F:      drivers/pci/controller/pci-thunder-*
13229
13230 PCIE DRIVER FOR HISILICON
13231 M:      Zhou Wang <wangzhou1@hisilicon.com>
13232 L:      linux-pci@vger.kernel.org
13233 S:      Maintained
13234 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13235 F:      drivers/pci/controller/dwc/pcie-hisi.c
13236
13237 PCIE DRIVER FOR HISILICON KIRIN
13238 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13239 M:      Binghui Wang <wangbinghui@hisilicon.com>
13240 L:      linux-pci@vger.kernel.org
13241 S:      Maintained
13242 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13243 F:      drivers/pci/controller/dwc/pcie-kirin.c
13244
13245 PCIE DRIVER FOR HISILICON STB
13246 M:      Shawn Guo <shawn.guo@linaro.org>
13247 L:      linux-pci@vger.kernel.org
13248 S:      Maintained
13249 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13250 F:      drivers/pci/controller/dwc/pcie-histb.c
13251
13252 PCIE DRIVER FOR MEDIATEK
13253 M:      Ryder Lee <ryder.lee@mediatek.com>
13254 L:      linux-pci@vger.kernel.org
13255 L:      linux-mediatek@lists.infradead.org
13256 S:      Supported
13257 F:      Documentation/devicetree/bindings/pci/mediatek*
13258 F:      drivers/pci/controller/*mediatek*
13259
13260 PCIE DRIVER FOR QUALCOMM MSM
13261 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13262 L:      linux-pci@vger.kernel.org
13263 L:      linux-arm-msm@vger.kernel.org
13264 S:      Maintained
13265 F:      drivers/pci/controller/dwc/*qcom*
13266
13267 PCIE DRIVER FOR ROCKCHIP
13268 M:      Shawn Lin <shawn.lin@rock-chips.com>
13269 L:      linux-pci@vger.kernel.org
13270 L:      linux-rockchip@lists.infradead.org
13271 S:      Maintained
13272 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13273 F:      drivers/pci/controller/pcie-rockchip*
13274
13275 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13276 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13277 L:      linux-pci@vger.kernel.org
13278 S:      Maintained
13279 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
13280 F:      drivers/pci/controller/dwc/pcie-uniphier*
13281
13282 PCIE DRIVER FOR ST SPEAR13XX
13283 M:      Pratyush Anand <pratyush.anand@gmail.com>
13284 L:      linux-pci@vger.kernel.org
13285 S:      Maintained
13286 F:      drivers/pci/controller/dwc/*spear*
13287
13288 PCMCIA SUBSYSTEM
13289 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13290 S:      Odd Fixes
13291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13292 F:      Documentation/pcmcia/
13293 F:      drivers/pcmcia/
13294 F:      include/pcmcia/
13295 F:      tools/pcmcia/
13296
13297 PCNET32 NETWORK DRIVER
13298 M:      Don Fry <pcnet32@frontier.com>
13299 L:      netdev@vger.kernel.org
13300 S:      Maintained
13301 F:      drivers/net/ethernet/amd/pcnet32.c
13302
13303 PCRYPT PARALLEL CRYPTO ENGINE
13304 M:      Steffen Klassert <steffen.klassert@secunet.com>
13305 L:      linux-crypto@vger.kernel.org
13306 S:      Maintained
13307 F:      crypto/pcrypt.c
13308 F:      include/crypto/pcrypt.h
13309
13310 PEAQ WMI HOTKEYS DRIVER
13311 M:      Hans de Goede <hdegoede@redhat.com>
13312 L:      platform-driver-x86@vger.kernel.org
13313 S:      Maintained
13314 F:      drivers/platform/x86/peaq-wmi.c
13315
13316 PENSANDO ETHERNET DRIVERS
13317 M:      Shannon Nelson <snelson@pensando.io>
13318 M:      Pensando Drivers <drivers@pensando.io>
13319 L:      netdev@vger.kernel.org
13320 S:      Supported
13321 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13322 F:      drivers/net/ethernet/pensando/
13323
13324 PER-CPU MEMORY ALLOCATOR
13325 M:      Dennis Zhou <dennis@kernel.org>
13326 M:      Tejun Heo <tj@kernel.org>
13327 M:      Christoph Lameter <cl@linux.com>
13328 S:      Maintained
13329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13330 F:      arch/*/include/asm/percpu.h
13331 F:      include/linux/percpu*.h
13332 F:      mm/percpu*.c
13333
13334 PER-TASK DELAY ACCOUNTING
13335 M:      Balbir Singh <bsingharora@gmail.com>
13336 S:      Maintained
13337 F:      include/linux/delayacct.h
13338 F:      kernel/delayacct.c
13339
13340 PERFORMANCE EVENTS SUBSYSTEM
13341 M:      Peter Zijlstra <peterz@infradead.org>
13342 M:      Ingo Molnar <mingo@redhat.com>
13343 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13344 R:      Mark Rutland <mark.rutland@arm.com>
13345 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13346 R:      Jiri Olsa <jolsa@redhat.com>
13347 R:      Namhyung Kim <namhyung@kernel.org>
13348 L:      linux-kernel@vger.kernel.org
13349 S:      Supported
13350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13351 F:      arch/*/events/*
13352 F:      arch/*/events/*/*
13353 F:      arch/*/include/asm/perf_event.h
13354 F:      arch/*/kernel/*/*/perf_event*.c
13355 F:      arch/*/kernel/*/perf_event*.c
13356 F:      arch/*/kernel/perf_callchain.c
13357 F:      arch/*/kernel/perf_event*.c
13358 F:      include/linux/perf_event.h
13359 F:      include/uapi/linux/perf_event.h
13360 F:      kernel/events/*
13361 F:      tools/perf/
13362
13363 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13364 R:      John Garry <john.garry@huawei.com>
13365 R:      Will Deacon <will@kernel.org>
13366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13367 S:      Supported
13368 F:      tools/perf/pmu-events/arch/arm64/
13369
13370 PERSONALITY HANDLING
13371 M:      Christoph Hellwig <hch@infradead.org>
13372 L:      linux-abi-devel@lists.sourceforge.net
13373 S:      Maintained
13374 F:      include/linux/personality.h
13375 F:      include/uapi/linux/personality.h
13376
13377 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13378 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13379 L:      linux-input@vger.kernel.org
13380 S:      Maintained
13381 F:      Documentation/input/devices/pxrc.rst
13382 F:      drivers/input/joystick/pxrc.c
13383
13384 PHONET PROTOCOL
13385 M:      Remi Denis-Courmont <courmisch@gmail.com>
13386 S:      Supported
13387 F:      Documentation/networking/phonet.rst
13388 F:      include/linux/phonet.h
13389 F:      include/net/phonet/
13390 F:      include/uapi/linux/phonet.h
13391 F:      net/phonet/
13392
13393 PHRAM MTD DRIVER
13394 M:      Joern Engel <joern@lazybastard.org>
13395 L:      linux-mtd@lists.infradead.org
13396 S:      Maintained
13397 F:      drivers/mtd/devices/phram.c
13398
13399 PICOLCD HID DRIVER
13400 M:      Bruno Prémont <bonbons@linux-vserver.org>
13401 L:      linux-input@vger.kernel.org
13402 S:      Maintained
13403 F:      drivers/hid/hid-picolcd*
13404
13405 PICOXCELL SUPPORT
13406 M:      Jamie Iles <jamie@jamieiles.com>
13407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13408 S:      Supported
13409 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13410 F:      arch/arm/boot/dts/picoxcell*
13411 F:      arch/arm/mach-picoxcell/
13412 F:      drivers/crypto/picoxcell*
13413
13414 PIDFD API
13415 M:      Christian Brauner <christian@brauner.io>
13416 L:      linux-kernel@vger.kernel.org
13417 S:      Maintained
13418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13419 F:      samples/pidfd/
13420 F:      tools/testing/selftests/clone3/
13421 F:      tools/testing/selftests/pid_namespace/
13422 F:      tools/testing/selftests/pidfd/
13423 K:      (?i)pidfd
13424 K:      (?i)clone3
13425 K:      \b(clone_args|kernel_clone_args)\b
13426
13427 PIN CONTROL SUBSYSTEM
13428 M:      Linus Walleij <linus.walleij@linaro.org>
13429 L:      linux-gpio@vger.kernel.org
13430 S:      Maintained
13431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13432 F:      Documentation/devicetree/bindings/pinctrl/
13433 F:      Documentation/driver-api/pinctl.rst
13434 F:      drivers/pinctrl/
13435 F:      include/linux/pinctrl/
13436
13437 PIN CONTROLLER - FREESCALE
13438 M:      Dong Aisheng <aisheng.dong@nxp.com>
13439 M:      Fabio Estevam <festevam@gmail.com>
13440 M:      Shawn Guo <shawnguo@kernel.org>
13441 M:      Stefan Agner <stefan@agner.ch>
13442 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13443 L:      linux-gpio@vger.kernel.org
13444 S:      Maintained
13445 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13446 F:      drivers/pinctrl/freescale/
13447
13448 PIN CONTROLLER - INTEL
13449 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13450 M:      Andy Shevchenko <andy@kernel.org>
13451 S:      Maintained
13452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13453 F:      drivers/pinctrl/intel/
13454
13455 PIN CONTROLLER - MEDIATEK
13456 M:      Sean Wang <sean.wang@kernel.org>
13457 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13458 S:      Maintained
13459 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13460 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13461 F:      drivers/pinctrl/mediatek/
13462
13463 PIN CONTROLLER - MICROCHIP AT91
13464 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13466 L:      linux-gpio@vger.kernel.org
13467 S:      Supported
13468 F:      drivers/gpio/gpio-sama5d2-piobu.c
13469 F:      drivers/pinctrl/pinctrl-at91*
13470
13471 PIN CONTROLLER - QUALCOMM
13472 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13473 L:      linux-arm-msm@vger.kernel.org
13474 S:      Maintained
13475 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13476 F:      drivers/pinctrl/qcom/
13477
13478 PIN CONTROLLER - RENESAS
13479 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13480 L:      linux-renesas-soc@vger.kernel.org
13481 S:      Maintained
13482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13483 F:      drivers/pinctrl/pinctrl-rz*
13484 F:      drivers/pinctrl/sh-pfc/
13485
13486 PIN CONTROLLER - SAMSUNG
13487 M:      Tomasz Figa <tomasz.figa@gmail.com>
13488 M:      Krzysztof Kozlowski <krzk@kernel.org>
13489 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13491 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13492 S:      Maintained
13493 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13495 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13496 F:      drivers/pinctrl/samsung/
13497 F:      include/dt-bindings/pinctrl/samsung.h
13498
13499 PIN CONTROLLER - SINGLE
13500 M:      Tony Lindgren <tony@atomide.com>
13501 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13503 L:      linux-omap@vger.kernel.org
13504 S:      Maintained
13505 F:      drivers/pinctrl/pinctrl-single.c
13506
13507 PIN CONTROLLER - ST SPEAR
13508 M:      Viresh Kumar <vireshk@kernel.org>
13509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13510 S:      Maintained
13511 W:      http://www.st.com/spear
13512 F:      drivers/pinctrl/spear/
13513
13514 PISTACHIO SOC SUPPORT
13515 M:      James Hartley <james.hartley@sondrel.com>
13516 L:      linux-mips@vger.kernel.org
13517 S:      Odd Fixes
13518 F:      arch/mips/boot/dts/img/pistachio*
13519 F:      arch/mips/configs/pistachio*_defconfig
13520 F:      arch/mips/include/asm/mach-pistachio/
13521 F:      arch/mips/pistachio/
13522
13523 PKTCDVD DRIVER
13524 M:      linux-block@vger.kernel.org
13525 S:      Orphan
13526 F:      drivers/block/pktcdvd.c
13527 F:      include/linux/pktcdvd.h
13528 F:      include/uapi/linux/pktcdvd.h
13529
13530 PKUNITY SOC DRIVERS
13531 M:      Guan Xuetao <gxt@pku.edu.cn>
13532 S:      Maintained
13533 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13534 T:      git git://github.com/gxt/linux.git
13535 F:      drivers/i2c/busses/i2c-puv3.c
13536 F:      drivers/input/serio/i8042-unicore32io.h
13537 F:      drivers/rtc/rtc-puv3.c
13538 F:      drivers/video/fbdev/fb-puv3.c
13539
13540 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13541 M:      Tomasz Duszynski <tduszyns@gmail.com>
13542 S:      Maintained
13543 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13544 F:      drivers/iio/chemical/pms7003.c
13545
13546 PLX DMA DRIVER
13547 M:      Logan Gunthorpe <logang@deltatee.com>
13548 S:      Maintained
13549 F:      drivers/dma/plx_dma.c
13550
13551 PM-GRAPH UTILITY
13552 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13553 L:      linux-pm@vger.kernel.org
13554 S:      Supported
13555 W:      https://01.org/pm-graph
13556 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13557 T:      git git://github.com/intel/pm-graph
13558 F:      tools/power/pm-graph
13559
13560 PMBUS HARDWARE MONITORING DRIVERS
13561 M:      Guenter Roeck <linux@roeck-us.net>
13562 L:      linux-hwmon@vger.kernel.org
13563 S:      Maintained
13564 W:      http://hwmon.wiki.kernel.org/
13565 W:      http://www.roeck-us.net/linux/drivers/
13566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13567 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13568 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13569 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13570 F:      Documentation/hwmon/adm1275.rst
13571 F:      Documentation/hwmon/ibm-cffps.rst
13572 F:      Documentation/hwmon/ir35221.rst
13573 F:      Documentation/hwmon/lm25066.rst
13574 F:      Documentation/hwmon/ltc2978.rst
13575 F:      Documentation/hwmon/ltc3815.rst
13576 F:      Documentation/hwmon/max16064.rst
13577 F:      Documentation/hwmon/max20751.rst
13578 F:      Documentation/hwmon/max31785.rst
13579 F:      Documentation/hwmon/max34440.rst
13580 F:      Documentation/hwmon/max8688.rst
13581 F:      Documentation/hwmon/pmbus-core.rst
13582 F:      Documentation/hwmon/pmbus.rst
13583 F:      Documentation/hwmon/tps40422.rst
13584 F:      Documentation/hwmon/ucd9000.rst
13585 F:      Documentation/hwmon/ucd9200.rst
13586 F:      Documentation/hwmon/zl6100.rst
13587 F:      drivers/hwmon/pmbus/
13588 F:      include/linux/pmbus.h
13589
13590 PMC SIERRA MaxRAID DRIVER
13591 L:      linux-scsi@vger.kernel.org
13592 S:      Orphan
13593 W:      http://www.pmc-sierra.com/
13594 F:      drivers/scsi/pmcraid.*
13595
13596 PMC SIERRA PM8001 DRIVER
13597 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13598 L:      linux-scsi@vger.kernel.org
13599 S:      Supported
13600 F:      drivers/scsi/pm8001/
13601
13602 PNI RM3100 IIO DRIVER
13603 M:      Song Qiang <songqiang1304521@gmail.com>
13604 L:      linux-iio@vger.kernel.org
13605 S:      Maintained
13606 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13607 F:      drivers/iio/magnetometer/rm3100*
13608
13609 PNP SUPPORT
13610 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13611 L:      linux-acpi@vger.kernel.org
13612 S:      Maintained
13613 F:      drivers/pnp/
13614 F:      include/linux/pnp.h
13615
13616 POSIX CLOCKS and TIMERS
13617 M:      Thomas Gleixner <tglx@linutronix.de>
13618 L:      linux-kernel@vger.kernel.org
13619 S:      Maintained
13620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13621 F:      fs/timerfd.c
13622 F:      include/linux/time_namespace.h
13623 F:      include/linux/timer*
13624 F:      kernel/time/*timer*
13625 F:      kernel/time/namespace.c
13626
13627 POWER MANAGEMENT CORE
13628 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13629 L:      linux-pm@vger.kernel.org
13630 S:      Supported
13631 B:      https://bugzilla.kernel.org
13632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13633 F:      drivers/base/power/
13634 F:      drivers/powercap/
13635 F:      include/linux/intel_rapl.h
13636 F:      include/linux/pm.h
13637 F:      include/linux/pm_*
13638 F:      include/linux/powercap.h
13639 F:      kernel/configs/nopm.config
13640
13641 POWER STATE COORDINATION INTERFACE (PSCI)
13642 M:      Mark Rutland <mark.rutland@arm.com>
13643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13644 L:      linux-arm-kernel@lists.infradead.org
13645 S:      Maintained
13646 F:      drivers/firmware/psci/
13647 F:      include/linux/psci.h
13648 F:      include/uapi/linux/psci.h
13649
13650 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13651 M:      Sebastian Reichel <sre@kernel.org>
13652 L:      linux-pm@vger.kernel.org
13653 S:      Maintained
13654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13655 F:      Documentation/ABI/testing/sysfs-class-power
13656 F:      Documentation/devicetree/bindings/power/supply/
13657 F:      drivers/power/supply/
13658 F:      include/linux/power_supply.h
13659
13660 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13661 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13662 L:      linuxppc-dev@lists.ozlabs.org
13663 S:      Maintained
13664 F:      drivers/char/powernv-op-panel.c
13665
13666 PPP OVER ATM (RFC 2364)
13667 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13668 S:      Maintained
13669 F:      include/uapi/linux/atmppp.h
13670 F:      net/atm/pppoatm.c
13671
13672 PPP OVER ETHERNET
13673 M:      Michal Ostrowski <mostrows@earthlink.net>
13674 S:      Maintained
13675 F:      drivers/net/ppp/pppoe.c
13676 F:      drivers/net/ppp/pppox.c
13677
13678 PPP OVER L2TP
13679 M:      James Chapman <jchapman@katalix.com>
13680 S:      Maintained
13681 F:      include/linux/if_pppol2tp.h
13682 F:      include/uapi/linux/if_pppol2tp.h
13683 F:      net/l2tp/l2tp_ppp.c
13684
13685 PPP PROTOCOL DRIVERS AND COMPRESSORS
13686 M:      Paul Mackerras <paulus@samba.org>
13687 L:      linux-ppp@vger.kernel.org
13688 S:      Maintained
13689 F:      drivers/net/ppp/ppp_*
13690
13691 PPS SUPPORT
13692 M:      Rodolfo Giometti <giometti@enneenne.com>
13693 L:      linuxpps@ml.enneenne.com (subscribers-only)
13694 S:      Maintained
13695 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13696 F:      Documentation/ABI/testing/sysfs-pps
13697 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13698 F:      Documentation/driver-api/pps.rst
13699 F:      drivers/pps/
13700 F:      include/linux/pps*.h
13701 F:      include/uapi/linux/pps.h
13702
13703 PPTP DRIVER
13704 M:      Dmitry Kozlov <xeb@mail.ru>
13705 L:      netdev@vger.kernel.org
13706 S:      Maintained
13707 W:      http://sourceforge.net/projects/accel-pptp
13708 F:      drivers/net/ppp/pptp.c
13709
13710 PRESSURE STALL INFORMATION (PSI)
13711 M:      Johannes Weiner <hannes@cmpxchg.org>
13712 S:      Maintained
13713 F:      include/linux/psi*
13714 F:      kernel/sched/psi.c
13715
13716 PRINTK
13717 M:      Petr Mladek <pmladek@suse.com>
13718 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13719 R:      Steven Rostedt <rostedt@goodmis.org>
13720 S:      Maintained
13721 F:      include/linux/printk.h
13722 F:      kernel/printk/
13723
13724 PRISM54 WIRELESS DRIVER
13725 M:      Luis Chamberlain <mcgrof@kernel.org>
13726 L:      linux-wireless@vger.kernel.org
13727 S:      Obsolete
13728 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
13729 F:      drivers/net/wireless/intersil/prism54/
13730
13731 PROC FILESYSTEM
13732 R:      Alexey Dobriyan <adobriyan@gmail.com>
13733 L:      linux-kernel@vger.kernel.org
13734 L:      linux-fsdevel@vger.kernel.org
13735 S:      Maintained
13736 F:      Documentation/filesystems/proc.rst
13737 F:      fs/proc/
13738 F:      include/linux/proc_fs.h
13739 F:      tools/testing/selftests/proc/
13740
13741 PROC SYSCTL
13742 M:      Luis Chamberlain <mcgrof@kernel.org>
13743 M:      Kees Cook <keescook@chromium.org>
13744 M:      Iurii Zaikin <yzaikin@google.com>
13745 L:      linux-kernel@vger.kernel.org
13746 L:      linux-fsdevel@vger.kernel.org
13747 S:      Maintained
13748 F:      fs/proc/proc_sysctl.c
13749 F:      include/linux/sysctl.h
13750 F:      kernel/sysctl-test.c
13751 F:      kernel/sysctl.c
13752 F:      tools/testing/selftests/sysctl/
13753
13754 PS3 NETWORK SUPPORT
13755 M:      Geoff Levand <geoff@infradead.org>
13756 L:      netdev@vger.kernel.org
13757 L:      linuxppc-dev@lists.ozlabs.org
13758 S:      Maintained
13759 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13760
13761 PS3 PLATFORM SUPPORT
13762 M:      Geoff Levand <geoff@infradead.org>
13763 L:      linuxppc-dev@lists.ozlabs.org
13764 S:      Maintained
13765 F:      arch/powerpc/boot/ps3*
13766 F:      arch/powerpc/include/asm/lv1call.h
13767 F:      arch/powerpc/include/asm/ps3*.h
13768 F:      arch/powerpc/platforms/ps3/
13769 F:      drivers/*/ps3*
13770 F:      drivers/ps3/
13771 F:      drivers/rtc/rtc-ps3.c
13772 F:      drivers/usb/host/*ps3.c
13773 F:      sound/ppc/snd_ps3*
13774
13775 PS3VRAM DRIVER
13776 M:      Jim Paris <jim@jtan.com>
13777 M:      Geoff Levand <geoff@infradead.org>
13778 L:      linuxppc-dev@lists.ozlabs.org
13779 S:      Maintained
13780 F:      drivers/block/ps3vram.c
13781
13782 PSAMPLE PACKET SAMPLING SUPPORT
13783 M:      Yotam Gigi <yotam.gi@gmail.com>
13784 S:      Maintained
13785 F:      include/net/psample.h
13786 F:      include/uapi/linux/psample.h
13787 F:      net/psample
13788
13789 PSTORE FILESYSTEM
13790 M:      Kees Cook <keescook@chromium.org>
13791 M:      Anton Vorontsov <anton@enomsg.org>
13792 M:      Colin Cross <ccross@android.com>
13793 M:      Tony Luck <tony.luck@intel.com>
13794 S:      Maintained
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13796 F:      Documentation/admin-guide/ramoops.rst
13797 F:      Documentation/admin-guide/pstore-blk.rst
13798 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13799 F:      drivers/acpi/apei/erst.c
13800 F:      drivers/firmware/efi/efi-pstore.c
13801 F:      fs/pstore/
13802 F:      include/linux/pstore*
13803 K:      \b(pstore|ramoops)
13804
13805 PTP HARDWARE CLOCK SUPPORT
13806 M:      Richard Cochran <richardcochran@gmail.com>
13807 L:      netdev@vger.kernel.org
13808 S:      Maintained
13809 W:      http://linuxptp.sourceforge.net/
13810 F:      Documentation/ABI/testing/sysfs-ptp
13811 F:      Documentation/driver-api/ptp.rst
13812 F:      drivers/net/phy/dp83640*
13813 F:      drivers/ptp/*
13814 F:      include/linux/ptp_cl*
13815
13816 PTRACE SUPPORT
13817 M:      Oleg Nesterov <oleg@redhat.com>
13818 S:      Maintained
13819 F:      arch/*/*/ptrace*.c
13820 F:      arch/*/include/asm/ptrace*.h
13821 F:      arch/*/ptrace*.c
13822 F:      include/asm-generic/syscall.h
13823 F:      include/linux/ptrace.h
13824 F:      include/linux/regset.h
13825 F:      include/linux/tracehook.h
13826 F:      include/uapi/linux/ptrace.h
13827 F:      include/uapi/linux/ptrace.h
13828 F:      kernel/ptrace.c
13829
13830 PULSE8-CEC DRIVER
13831 M:      Hans Verkuil <hverkuil@xs4all.nl>
13832 L:      linux-media@vger.kernel.org
13833 S:      Maintained
13834 T:      git git://linuxtv.org/media_tree.git
13835 F:      Documentation/admin-guide/media/pulse8-cec.rst
13836 F:      drivers/media/cec/usb/pulse8/
13837
13838 PVRUSB2 VIDEO4LINUX DRIVER
13839 M:      Mike Isely <isely@pobox.com>
13840 L:      pvrusb2@isely.net       (subscribers-only)
13841 L:      linux-media@vger.kernel.org
13842 S:      Maintained
13843 W:      http://www.isely.net/pvrusb2/
13844 T:      git git://linuxtv.org/media_tree.git
13845 F:      Documentation/driver-api/media/drivers/pvrusb2*
13846 F:      drivers/media/usb/pvrusb2/
13847
13848 PWC WEBCAM DRIVER
13849 M:      Hans Verkuil <hverkuil@xs4all.nl>
13850 L:      linux-media@vger.kernel.org
13851 S:      Odd Fixes
13852 T:      git git://linuxtv.org/media_tree.git
13853 F:      drivers/media/usb/pwc/*
13854 F:      include/trace/events/pwc.h
13855
13856 PWM FAN DRIVER
13857 M:      Kamil Debski <kamil@wypas.org>
13858 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13859 L:      linux-hwmon@vger.kernel.org
13860 S:      Supported
13861 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13862 F:      Documentation/hwmon/pwm-fan.rst
13863 F:      drivers/hwmon/pwm-fan.c
13864
13865 PWM IR Transmitter
13866 M:      Sean Young <sean@mess.org>
13867 L:      linux-media@vger.kernel.org
13868 S:      Maintained
13869 F:      drivers/media/rc/pwm-ir-tx.c
13870
13871 PWM SUBSYSTEM
13872 M:      Thierry Reding <thierry.reding@gmail.com>
13873 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13874 L:      linux-pwm@vger.kernel.org
13875 S:      Maintained
13876 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13878 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13879 F:      Documentation/devicetree/bindings/pwm/
13880 F:      Documentation/driver-api/pwm.rst
13881 F:      drivers/gpio/gpio-mvebu.c
13882 F:      drivers/pwm/
13883 F:      drivers/video/backlight/pwm_bl.c
13884 F:      include/linux/pwm.h
13885 F:      include/linux/pwm_backlight.h
13886 K:      pwm_(config|apply_state|ops)
13887
13888 PXA GPIO DRIVER
13889 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13890 L:      linux-gpio@vger.kernel.org
13891 S:      Maintained
13892 F:      drivers/gpio/gpio-pxa.c
13893
13894 PXA MMCI DRIVER
13895 S:      Orphan
13896
13897 PXA RTC DRIVER
13898 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13899 L:      linux-rtc@vger.kernel.org
13900 S:      Maintained
13901
13902 PXA2xx/PXA3xx SUPPORT
13903 M:      Daniel Mack <daniel@zonque.org>
13904 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13905 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13907 S:      Maintained
13908 T:      git git://github.com/hzhuang1/linux.git
13909 T:      git git://github.com/rjarzmik/linux.git
13910 F:      arch/arm/boot/dts/pxa*
13911 F:      arch/arm/mach-pxa/
13912 F:      drivers/dma/pxa*
13913 F:      drivers/pcmcia/pxa2xx*
13914 F:      drivers/pinctrl/pxa/
13915 F:      drivers/spi/spi-pxa2xx*
13916 F:      drivers/usb/gadget/udc/pxa2*
13917 F:      include/sound/pxa2xx-lib.h
13918 F:      sound/arm/pxa*
13919 F:      sound/soc/pxa/
13920
13921 QAT DRIVER
13922 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13923 L:      qat-linux@intel.com
13924 S:      Supported
13925 F:      drivers/crypto/qat/
13926
13927 QCOM AUDIO (ASoC) DRIVERS
13928 M:      Patrick Lai <plai@codeaurora.org>
13929 M:      Banajit Goswami <bgoswami@codeaurora.org>
13930 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13931 S:      Supported
13932 F:      sound/soc/qcom/
13933
13934 QCOM IPA DRIVER
13935 M:      Alex Elder <elder@kernel.org>
13936 L:      netdev@vger.kernel.org
13937 S:      Supported
13938 F:      drivers/net/ipa/
13939
13940 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13941 M:      Gabriel Somlo <somlo@cmu.edu>
13942 M:      "Michael S. Tsirkin" <mst@redhat.com>
13943 L:      qemu-devel@nongnu.org
13944 S:      Maintained
13945 F:      drivers/firmware/qemu_fw_cfg.c
13946 F:      include/uapi/linux/qemu_fw_cfg.h
13947
13948 QIB DRIVER
13949 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13950 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13951 L:      linux-rdma@vger.kernel.org
13952 S:      Supported
13953 F:      drivers/infiniband/hw/qib/
13954
13955 QLOGIC QL41xxx FCOE DRIVER
13956 M:      QLogic-Storage-Upstream@cavium.com
13957 L:      linux-scsi@vger.kernel.org
13958 S:      Supported
13959 F:      drivers/scsi/qedf/
13960
13961 QLOGIC QL41xxx ISCSI DRIVER
13962 M:      QLogic-Storage-Upstream@cavium.com
13963 L:      linux-scsi@vger.kernel.org
13964 S:      Supported
13965 F:      drivers/scsi/qedi/
13966
13967 QLOGIC QL4xxx ETHERNET DRIVER
13968 M:      Ariel Elior <aelior@marvell.com>
13969 M:      GR-everest-linux-l2@marvell.com
13970 L:      netdev@vger.kernel.org
13971 S:      Supported
13972 F:      drivers/net/ethernet/qlogic/qed/
13973 F:      drivers/net/ethernet/qlogic/qede/
13974 F:      include/linux/qed/
13975
13976 QLOGIC QL4xxx RDMA DRIVER
13977 M:      Michal Kalderon <mkalderon@marvell.com>
13978 M:      Ariel Elior <aelior@marvell.com>
13979 L:      linux-rdma@vger.kernel.org
13980 S:      Supported
13981 F:      drivers/infiniband/hw/qedr/
13982 F:      include/uapi/rdma/qedr-abi.h
13983
13984 QLOGIC QLA1280 SCSI DRIVER
13985 M:      Michael Reed <mdr@sgi.com>
13986 L:      linux-scsi@vger.kernel.org
13987 S:      Maintained
13988 F:      drivers/scsi/qla1280.[ch]
13989
13990 QLOGIC QLA2XXX FC-SCSI DRIVER
13991 M:      Nilesh Javali <njavali@marvell.com>
13992 M:      GR-QLogic-Storage-Upstream@marvell.com
13993 L:      linux-scsi@vger.kernel.org
13994 S:      Supported
13995 F:      Documentation/scsi/LICENSE.qla2xxx
13996 F:      drivers/scsi/qla2xxx/
13997
13998 QLOGIC QLA3XXX NETWORK DRIVER
13999 M:      GR-Linux-NIC-Dev@marvell.com
14000 L:      netdev@vger.kernel.org
14001 S:      Supported
14002 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
14003 F:      drivers/net/ethernet/qlogic/qla3xxx.*
14004
14005 QLOGIC QLA4XXX iSCSI DRIVER
14006 M:      QLogic-Storage-Upstream@qlogic.com
14007 L:      linux-scsi@vger.kernel.org
14008 S:      Supported
14009 F:      Documentation/scsi/LICENSE.qla4xxx
14010 F:      drivers/scsi/qla4xxx/
14011
14012 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
14013 M:      Shahed Shaikh <shshaikh@marvell.com>
14014 M:      Manish Chopra <manishc@marvell.com>
14015 M:      GR-Linux-NIC-Dev@marvell.com
14016 L:      netdev@vger.kernel.org
14017 S:      Supported
14018 F:      drivers/net/ethernet/qlogic/qlcnic/
14019
14020 QLOGIC QLGE 10Gb ETHERNET DRIVER
14021 M:      Manish Chopra <manishc@marvell.com>
14022 M:      GR-Linux-NIC-Dev@marvell.com
14023 L:      netdev@vger.kernel.org
14024 S:      Supported
14025 F:      drivers/staging/qlge/
14026
14027 QM1D1B0004 MEDIA DRIVER
14028 M:      Akihiro Tsukada <tskd08@gmail.com>
14029 L:      linux-media@vger.kernel.org
14030 S:      Odd Fixes
14031 F:      drivers/media/tuners/qm1d1b0004*
14032
14033 QM1D1C0042 MEDIA DRIVER
14034 M:      Akihiro Tsukada <tskd08@gmail.com>
14035 L:      linux-media@vger.kernel.org
14036 S:      Odd Fixes
14037 F:      drivers/media/tuners/qm1d1c0042*
14038
14039 QNX4 FILESYSTEM
14040 M:      Anders Larsen <al@alarsen.net>
14041 S:      Maintained
14042 W:      http://www.alarsen.net/linux/qnx4fs/
14043 F:      fs/qnx4/
14044 F:      include/uapi/linux/qnx4_fs.h
14045 F:      include/uapi/linux/qnxtypes.h
14046
14047 QORIQ DPAA2 FSL-MC BUS DRIVER
14048 M:      Stuart Yoder <stuyoder@gmail.com>
14049 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
14050 L:      linux-kernel@vger.kernel.org
14051 S:      Maintained
14052 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
14053 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
14054 F:      drivers/bus/fsl-mc/
14055
14056 QT1010 MEDIA DRIVER
14057 M:      Antti Palosaari <crope@iki.fi>
14058 L:      linux-media@vger.kernel.org
14059 S:      Maintained
14060 W:      https://linuxtv.org
14061 W:      http://palosaari.fi/linux/
14062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14063 T:      git git://linuxtv.org/anttip/media_tree.git
14064 F:      drivers/media/tuners/qt1010*
14065
14066 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
14067 M:      Kalle Valo <kvalo@codeaurora.org>
14068 L:      ath10k@lists.infradead.org
14069 S:      Supported
14070 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
14071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14072 F:      drivers/net/wireless/ath/ath10k/
14073
14074 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
14075 M:      Kalle Valo <kvalo@codeaurora.org>
14076 L:      ath11k@lists.infradead.org
14077 S:      Supported
14078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
14079 F:      drivers/net/wireless/ath/ath11k/
14080
14081 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
14082 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
14083 L:      linux-wireless@vger.kernel.org
14084 S:      Supported
14085 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
14086 F:      drivers/net/wireless/ath/ath9k/
14087
14088 QUALCOMM CAMERA SUBSYSTEM DRIVER
14089 M:      Todor Tomov <todor.too@gmail.com>
14090 L:      linux-media@vger.kernel.org
14091 S:      Maintained
14092 F:      Documentation/admin-guide/media/qcom_camss.rst
14093 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
14094 F:      drivers/media/platform/qcom/camss/
14095
14096 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
14097 M:      Niklas Cassel <nks@flawful.org>
14098 L:      linux-pm@vger.kernel.org
14099 L:      linux-arm-msm@vger.kernel.org
14100 S:      Maintained
14101 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
14102 F:      drivers/power/avs/qcom-cpr.c
14103
14104 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
14105 M:      Ilia Lin <ilia.lin@kernel.org>
14106 L:      linux-pm@vger.kernel.org
14107 S:      Maintained
14108 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
14109 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
14110
14111 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
14112 M:      Timur Tabi <timur@kernel.org>
14113 L:      netdev@vger.kernel.org
14114 S:      Maintained
14115 F:      drivers/net/ethernet/qualcomm/emac/
14116
14117 QUALCOMM ETHQOS ETHERNET DRIVER
14118 M:      Vinod Koul <vkoul@kernel.org>
14119 L:      netdev@vger.kernel.org
14120 S:      Maintained
14121 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
14122 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
14123
14124 QUALCOMM GENERIC INTERFACE I2C DRIVER
14125 M:      Alok Chauhan <alokc@codeaurora.org>
14126 L:      linux-i2c@vger.kernel.org
14127 L:      linux-arm-msm@vger.kernel.org
14128 S:      Supported
14129 F:      drivers/i2c/busses/i2c-qcom-geni.c
14130
14131 QUALCOMM HEXAGON ARCHITECTURE
14132 M:      Brian Cain <bcain@codeaurora.org>
14133 L:      linux-hexagon@vger.kernel.org
14134 S:      Supported
14135 F:      arch/hexagon/
14136
14137 QUALCOMM HIDMA DRIVER
14138 M:      Sinan Kaya <okaya@kernel.org>
14139 L:      linux-arm-kernel@lists.infradead.org
14140 L:      linux-arm-msm@vger.kernel.org
14141 L:      dmaengine@vger.kernel.org
14142 S:      Supported
14143 F:      drivers/dma/qcom/hidma*
14144
14145 QUALCOMM IOMMU
14146 M:      Rob Clark <robdclark@gmail.com>
14147 L:      iommu@lists.linux-foundation.org
14148 L:      linux-arm-msm@vger.kernel.org
14149 S:      Maintained
14150 F:      drivers/iommu/qcom_iommu.c
14151
14152 QUALCOMM RMNET DRIVER
14153 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14154 M:      Sean Tranchetti <stranche@codeaurora.org>
14155 L:      netdev@vger.kernel.org
14156 S:      Maintained
14157 F:      Documentation/networking/device_drivers/qualcomm/rmnet.rst
14158 F:      drivers/net/ethernet/qualcomm/rmnet/
14159 F:      include/linux/if_rmnet.h
14160
14161 QUALCOMM TSENS THERMAL DRIVER
14162 M:      Amit Kucheria <amit.kucheria@linaro.org>
14163 L:      linux-pm@vger.kernel.org
14164 L:      linux-arm-msm@vger.kernel.org
14165 S:      Maintained
14166 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14167 F:      drivers/thermal/qcom/
14168
14169 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14170 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14171 L:      linux-media@vger.kernel.org
14172 L:      linux-arm-msm@vger.kernel.org
14173 S:      Maintained
14174 T:      git git://linuxtv.org/media_tree.git
14175 F:      Documentation/devicetree/bindings/media/*venus*
14176 F:      drivers/media/platform/qcom/venus/
14177
14178 QUALCOMM WCN36XX WIRELESS DRIVER
14179 M:      Kalle Valo <kvalo@codeaurora.org>
14180 L:      wcn36xx@lists.infradead.org
14181 S:      Supported
14182 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
14183 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14184 F:      drivers/net/wireless/ath/wcn36xx/
14185
14186 QUANTENNA QTNFMAC WIRELESS DRIVER
14187 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14188 R:      Sergey Matyukevich <geomatsi@gmail.com>
14189 L:      linux-wireless@vger.kernel.org
14190 S:      Maintained
14191 F:      drivers/net/wireless/quantenna
14192
14193 RADEON and AMDGPU DRM DRIVERS
14194 M:      Alex Deucher <alexander.deucher@amd.com>
14195 M:      Christian König <christian.koenig@amd.com>
14196 L:      amd-gfx@lists.freedesktop.org
14197 S:      Supported
14198 T:      git git://people.freedesktop.org/~agd5f/linux
14199 F:      drivers/gpu/drm/amd/
14200 F:      drivers/gpu/drm/radeon/
14201 F:      include/uapi/drm/amdgpu_drm.h
14202 F:      include/uapi/drm/radeon_drm.h
14203
14204 RADEON FRAMEBUFFER DISPLAY DRIVER
14205 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14206 L:      linux-fbdev@vger.kernel.org
14207 S:      Maintained
14208 F:      drivers/video/fbdev/aty/radeon*
14209 F:      include/uapi/linux/radeonfb.h
14210
14211 RADIOSHARK RADIO DRIVER
14212 M:      Hans Verkuil <hverkuil@xs4all.nl>
14213 L:      linux-media@vger.kernel.org
14214 S:      Maintained
14215 T:      git git://linuxtv.org/media_tree.git
14216 F:      drivers/media/radio/radio-shark.c
14217
14218 RADIOSHARK2 RADIO DRIVER
14219 M:      Hans Verkuil <hverkuil@xs4all.nl>
14220 L:      linux-media@vger.kernel.org
14221 S:      Maintained
14222 T:      git git://linuxtv.org/media_tree.git
14223 F:      drivers/media/radio/radio-shark2.c
14224 F:      drivers/media/radio/radio-tea5777.c
14225
14226 RADOS BLOCK DEVICE (RBD)
14227 M:      Ilya Dryomov <idryomov@gmail.com>
14228 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14229 L:      ceph-devel@vger.kernel.org
14230 S:      Supported
14231 W:      http://ceph.com/
14232 T:      git git://github.com/ceph/ceph-client.git
14233 F:      Documentation/ABI/testing/sysfs-bus-rbd
14234 F:      drivers/block/rbd.c
14235 F:      drivers/block/rbd_types.h
14236
14237 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14238 M:      Paul Mackerras <paulus@samba.org>
14239 L:      linux-fbdev@vger.kernel.org
14240 S:      Maintained
14241 F:      drivers/video/fbdev/aty/aty128fb.c
14242
14243 RAINSHADOW-CEC DRIVER
14244 M:      Hans Verkuil <hverkuil@xs4all.nl>
14245 L:      linux-media@vger.kernel.org
14246 S:      Maintained
14247 T:      git git://linuxtv.org/media_tree.git
14248 F:      drivers/media/cec/usb/rainshadow/
14249
14250 RALINK MIPS ARCHITECTURE
14251 M:      John Crispin <john@phrozen.org>
14252 L:      linux-mips@vger.kernel.org
14253 S:      Maintained
14254 F:      arch/mips/ralink
14255
14256 RALINK RT2X00 WIRELESS LAN DRIVER
14257 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14258 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14259 L:      linux-wireless@vger.kernel.org
14260 S:      Maintained
14261 F:      drivers/net/wireless/ralink/rt2x00/
14262
14263 RAMDISK RAM BLOCK DEVICE DRIVER
14264 M:      Jens Axboe <axboe@kernel.dk>
14265 S:      Maintained
14266 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14267 F:      drivers/block/brd.c
14268
14269 RANCHU VIRTUAL BOARD FOR MIPS
14270 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14271 L:      linux-mips@vger.kernel.org
14272 S:      Supported
14273 F:      arch/mips/configs/generic/board-ranchu.config
14274 F:      arch/mips/generic/board-ranchu.c
14275
14276 RANDOM NUMBER DRIVER
14277 M:      "Theodore Ts'o" <tytso@mit.edu>
14278 S:      Maintained
14279 F:      drivers/char/random.c
14280
14281 RAPIDIO SUBSYSTEM
14282 M:      Matt Porter <mporter@kernel.crashing.org>
14283 M:      Alexandre Bounine <alex.bou9@gmail.com>
14284 S:      Maintained
14285 F:      drivers/rapidio/
14286
14287 RAS INFRASTRUCTURE
14288 M:      Tony Luck <tony.luck@intel.com>
14289 M:      Borislav Petkov <bp@alien8.de>
14290 L:      linux-edac@vger.kernel.org
14291 S:      Maintained
14292 F:      Documentation/admin-guide/ras.rst
14293 F:      drivers/ras/
14294 F:      include/linux/ras.h
14295 F:      include/ras/ras_event.h
14296
14297 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14298 L:      linux-wireless@vger.kernel.org
14299 S:      Orphan
14300 F:      drivers/net/wireless/ray*
14301
14302 RCMM REMOTE CONTROLS DECODER
14303 M:      Patrick Lerda <patrick9876@free.fr>
14304 S:      Maintained
14305 F:      drivers/media/rc/ir-rcmm-decoder.c
14306
14307 RCUTORTURE TEST FRAMEWORK
14308 M:      "Paul E. McKenney" <paulmck@kernel.org>
14309 M:      Josh Triplett <josh@joshtriplett.org>
14310 R:      Steven Rostedt <rostedt@goodmis.org>
14311 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14312 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14313 L:      rcu@vger.kernel.org
14314 S:      Supported
14315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14316 F:      tools/testing/selftests/rcutorture
14317
14318 RDC R-321X SoC
14319 M:      Florian Fainelli <florian@openwrt.org>
14320 S:      Maintained
14321
14322 RDC R6040 FAST ETHERNET DRIVER
14323 M:      Florian Fainelli <f.fainelli@gmail.com>
14324 L:      netdev@vger.kernel.org
14325 S:      Maintained
14326 F:      drivers/net/ethernet/rdc/r6040.c
14327
14328 RDMAVT - RDMA verbs software
14329 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14330 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14331 L:      linux-rdma@vger.kernel.org
14332 S:      Supported
14333 F:      drivers/infiniband/sw/rdmavt
14334
14335 RDS - RELIABLE DATAGRAM SOCKETS
14336 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14337 L:      netdev@vger.kernel.org
14338 L:      linux-rdma@vger.kernel.org
14339 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14340 S:      Supported
14341 W:      https://oss.oracle.com/projects/rds/
14342 F:      Documentation/networking/rds.rst
14343 F:      net/rds/
14344
14345 RDT - RESOURCE ALLOCATION
14346 M:      Fenghua Yu <fenghua.yu@intel.com>
14347 M:      Reinette Chatre <reinette.chatre@intel.com>
14348 L:      linux-kernel@vger.kernel.org
14349 S:      Supported
14350 F:      Documentation/x86/resctrl*
14351 F:      arch/x86/include/asm/resctrl.h
14352 F:      arch/x86/kernel/cpu/resctrl/
14353 F:      tools/testing/selftests/resctrl/
14354
14355 READ-COPY UPDATE (RCU)
14356 M:      "Paul E. McKenney" <paulmck@kernel.org>
14357 M:      Josh Triplett <josh@joshtriplett.org>
14358 R:      Steven Rostedt <rostedt@goodmis.org>
14359 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14360 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14361 R:      Joel Fernandes <joel@joelfernandes.org>
14362 L:      rcu@vger.kernel.org
14363 S:      Supported
14364 W:      http://www.rdrop.com/users/paulmck/RCU/
14365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14366 F:      Documentation/RCU/
14367 F:      include/linux/rcu*
14368 F:      kernel/rcu/
14369 X:      Documentation/RCU/torture.txt
14370 X:      include/linux/srcu*.h
14371 X:      kernel/rcu/srcu*.c
14372
14373 REAL TIME CLOCK (RTC) SUBSYSTEM
14374 M:      Alessandro Zummo <a.zummo@towertech.it>
14375 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14376 L:      linux-rtc@vger.kernel.org
14377 S:      Maintained
14378 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14380 F:      Documentation/admin-guide/rtc.rst
14381 F:      Documentation/devicetree/bindings/rtc/
14382 F:      drivers/rtc/
14383 F:      include/linux/platform_data/rtc-*
14384 F:      include/linux/rtc.h
14385 F:      include/linux/rtc/
14386 F:      include/uapi/linux/rtc.h
14387 F:      tools/testing/selftests/rtc/
14388
14389 REALTEK AUDIO CODECS
14390 M:      Oder Chiou <oder_chiou@realtek.com>
14391 S:      Maintained
14392 F:      include/sound/rt*.h
14393 F:      sound/soc/codecs/rt*
14394
14395 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14396 M:      Linus Walleij <linus.walleij@linaro.org>
14397 S:      Maintained
14398 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14399 F:      drivers/net/dsa/realtek-smi*
14400 F:      drivers/net/dsa/rtl83*
14401
14402 REALTEK WIRELESS DRIVER (rtlwifi family)
14403 M:      Ping-Ke Shih <pkshih@realtek.com>
14404 L:      linux-wireless@vger.kernel.org
14405 S:      Maintained
14406 W:      https://wireless.wiki.kernel.org/
14407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14408 F:      drivers/net/wireless/realtek/rtlwifi/
14409
14410 REALTEK WIRELESS DRIVER (rtw88)
14411 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14412 L:      linux-wireless@vger.kernel.org
14413 S:      Maintained
14414 F:      drivers/net/wireless/realtek/rtw88/
14415
14416 REDPINE WIRELESS DRIVER
14417 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14418 M:      Siva Rebbagondla <siva8118@gmail.com>
14419 L:      linux-wireless@vger.kernel.org
14420 S:      Maintained
14421 F:      drivers/net/wireless/rsi/
14422
14423 REGISTER MAP ABSTRACTION
14424 M:      Mark Brown <broonie@kernel.org>
14425 L:      linux-kernel@vger.kernel.org
14426 S:      Supported
14427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14428 F:      Documentation/devicetree/bindings/regmap/
14429 F:      drivers/base/regmap/
14430 F:      include/linux/regmap.h
14431
14432 REISERFS FILE SYSTEM
14433 L:      reiserfs-devel@vger.kernel.org
14434 S:      Supported
14435 F:      fs/reiserfs/
14436
14437 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14438 M:      Ohad Ben-Cohen <ohad@wizery.com>
14439 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14440 L:      linux-remoteproc@vger.kernel.org
14441 S:      Maintained
14442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14443 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14444 F:      Documentation/devicetree/bindings/remoteproc/
14445 F:      Documentation/remoteproc.txt
14446 F:      drivers/remoteproc/
14447 F:      include/linux/remoteproc.h
14448 F:      include/linux/remoteproc/
14449
14450 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14451 M:      Ohad Ben-Cohen <ohad@wizery.com>
14452 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14453 L:      linux-remoteproc@vger.kernel.org
14454 S:      Maintained
14455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14456 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14457 F:      Documentation/rpmsg.txt
14458 F:      drivers/rpmsg/
14459 F:      include/linux/rpmsg.h
14460 F:      include/linux/rpmsg/
14461 F:      include/uapi/linux/rpmsg.h
14462 F:      samples/rpmsg/
14463
14464 RENESAS CLOCK DRIVERS
14465 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14466 L:      linux-renesas-soc@vger.kernel.org
14467 S:      Supported
14468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14469 F:      drivers/clk/renesas/
14470
14471 RENESAS EMEV2 I2C DRIVER
14472 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14473 S:      Supported
14474 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14475 F:      drivers/i2c/busses/i2c-emev2.c
14476
14477 RENESAS ETHERNET DRIVERS
14478 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14479 L:      netdev@vger.kernel.org
14480 L:      linux-renesas-soc@vger.kernel.org
14481 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14482 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14483 F:      drivers/net/ethernet/renesas/
14484 F:      include/linux/sh_eth.h
14485
14486 RENESAS R-CAR GYROADC DRIVER
14487 M:      Marek Vasut <marek.vasut@gmail.com>
14488 L:      linux-iio@vger.kernel.org
14489 S:      Supported
14490 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14491 F:      drivers/iio/adc/rcar-gyroadc.c
14492
14493 RENESAS R-CAR I2C DRIVERS
14494 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14495 S:      Supported
14496 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14497 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14498 F:      drivers/i2c/busses/i2c-rcar.c
14499 F:      drivers/i2c/busses/i2c-sh_mobile.c
14500
14501 RENESAS RIIC DRIVER
14502 M:      Chris Brandt <chris.brandt@renesas.com>
14503 S:      Supported
14504 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14505 F:      drivers/i2c/busses/i2c-riic.c
14506
14507 RENESAS USB PHY DRIVER
14508 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14509 L:      linux-renesas-soc@vger.kernel.org
14510 S:      Maintained
14511 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14512
14513 RESET CONTROLLER FRAMEWORK
14514 M:      Philipp Zabel <p.zabel@pengutronix.de>
14515 S:      Maintained
14516 T:      git git://git.pengutronix.de/git/pza/linux
14517 F:      Documentation/devicetree/bindings/reset/
14518 F:      drivers/reset/
14519 F:      include/dt-bindings/reset/
14520 F:      include/linux/reset-controller.h
14521 F:      include/linux/reset.h
14522 F:      include/linux/reset/
14523 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14524
14525 RESTARTABLE SEQUENCES SUPPORT
14526 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14527 M:      Peter Zijlstra <peterz@infradead.org>
14528 M:      "Paul E. McKenney" <paulmck@kernel.org>
14529 M:      Boqun Feng <boqun.feng@gmail.com>
14530 L:      linux-kernel@vger.kernel.org
14531 S:      Supported
14532 F:      include/trace/events/rseq.h
14533 F:      include/uapi/linux/rseq.h
14534 F:      kernel/rseq.c
14535 F:      tools/testing/selftests/rseq/
14536
14537 RFKILL
14538 M:      Johannes Berg <johannes@sipsolutions.net>
14539 L:      linux-wireless@vger.kernel.org
14540 S:      Maintained
14541 W:      https://wireless.wiki.kernel.org/
14542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14544 F:      Documentation/ABI/stable/sysfs-class-rfkill
14545 F:      Documentation/driver-api/rfkill.rst
14546 F:      include/linux/rfkill.h
14547 F:      include/uapi/linux/rfkill.h
14548 F:      net/rfkill/
14549
14550 RHASHTABLE
14551 M:      Thomas Graf <tgraf@suug.ch>
14552 M:      Herbert Xu <herbert@gondor.apana.org.au>
14553 L:      netdev@vger.kernel.org
14554 S:      Maintained
14555 F:      include/linux/rhashtable-types.h
14556 F:      include/linux/rhashtable.h
14557 F:      lib/rhashtable.c
14558 F:      lib/test_rhashtable.c
14559
14560 RICOH R5C592 MEMORYSTICK DRIVER
14561 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14562 S:      Maintained
14563 F:      drivers/memstick/host/r592.*
14564
14565 RICOH SMARTMEDIA/XD DRIVER
14566 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14567 S:      Maintained
14568 F:      drivers/mtd/nand/raw/r852.c
14569 F:      drivers/mtd/nand/raw/r852.h
14570
14571 RISC-V ARCHITECTURE
14572 M:      Paul Walmsley <paul.walmsley@sifive.com>
14573 M:      Palmer Dabbelt <palmer@dabbelt.com>
14574 M:      Albert Ou <aou@eecs.berkeley.edu>
14575 L:      linux-riscv@lists.infradead.org
14576 S:      Supported
14577 P:      Documentation/riscv/patch-acceptance.rst
14578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14579 F:      arch/riscv/
14580 N:      riscv
14581 K:      riscv
14582
14583 RNBD BLOCK DRIVERS
14584 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14585 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14586 L:      linux-block@vger.kernel.org
14587 S:      Maintained
14588 F:      drivers/block/rnbd/
14589
14590 ROCCAT DRIVERS
14591 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14592 S:      Maintained
14593 W:      http://sourceforge.net/projects/roccat/
14594 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14595 F:      drivers/hid/hid-roccat*
14596 F:      include/linux/hid-roccat*
14597
14598 ROCKCHIP ISP V1 DRIVER
14599 M:      Helen Koike <helen.koike@collabora.com>
14600 L:      linux-media@vger.kernel.org
14601 S:      Maintained
14602 F:      drivers/staging/media/rkisp1/
14603
14604 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14605 M:      Jacob Chen <jacob-chen@iotwrt.com>
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-rga.yaml
14611 F:      drivers/media/platform/rockchip/rga/
14612
14613 ROCKCHIP VIDEO DECODER DRIVER
14614 M:      Ezequiel Garcia <ezequiel@collabora.com>
14615 L:      linux-media@vger.kernel.org
14616 L:      linux-rockchip@lists.infradead.org
14617 S:      Maintained
14618 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
14619 F:      drivers/staging/media/rkvdec/
14620
14621 ROCKER DRIVER
14622 M:      Jiri Pirko <jiri@resnulli.us>
14623 L:      netdev@vger.kernel.org
14624 S:      Supported
14625 F:      drivers/net/ethernet/rocker/
14626
14627 ROCKETPORT DRIVER
14628 S:      Maintained
14629 W:      http://www.comtrol.com
14630 F:      Documentation/driver-api/serial/rocket.rst
14631 F:      drivers/tty/rocket*
14632
14633 ROCKETPORT EXPRESS/INFINITY DRIVER
14634 M:      Kevin Cernekee <cernekee@gmail.com>
14635 L:      linux-serial@vger.kernel.org
14636 S:      Odd Fixes
14637 F:      drivers/tty/serial/rp2.*
14638
14639 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14640 M:      Tomasz Duszynski <tduszyns@gmail.com>
14641 S:      Maintained
14642 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14643 F:      drivers/iio/light/bh1750.c
14644
14645 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14646 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14647 L:      linux-kernel@vger.kernel.org
14648 L:      linux-renesas-soc@vger.kernel.org
14649 S:      Supported
14650 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14651 F:      drivers/gpio/gpio-bd9571mwv.c
14652 F:      drivers/mfd/bd9571mwv.c
14653 F:      drivers/regulator/bd9571mwv-regulator.c
14654 F:      include/linux/mfd/bd9571mwv.h
14655
14656 ROSE NETWORK LAYER
14657 M:      Ralf Baechle <ralf@linux-mips.org>
14658 L:      linux-hams@vger.kernel.org
14659 S:      Maintained
14660 W:      http://www.linux-ax25.org/
14661 F:      include/net/rose.h
14662 F:      include/uapi/linux/rose.h
14663 F:      net/rose/
14664
14665 ROTATION DRIVER FOR ALLWINNER A83T
14666 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14667 L:      linux-media@vger.kernel.org
14668 S:      Maintained
14669 T:      git git://linuxtv.org/media_tree.git
14670 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14671 F:      drivers/media/platform/sunxi/sun8i-rotate/
14672
14673 RTL2830 MEDIA DRIVER
14674 M:      Antti Palosaari <crope@iki.fi>
14675 L:      linux-media@vger.kernel.org
14676 S:      Maintained
14677 W:      https://linuxtv.org
14678 W:      http://palosaari.fi/linux/
14679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14680 T:      git git://linuxtv.org/anttip/media_tree.git
14681 F:      drivers/media/dvb-frontends/rtl2830*
14682
14683 RTL2832 MEDIA DRIVER
14684 M:      Antti Palosaari <crope@iki.fi>
14685 L:      linux-media@vger.kernel.org
14686 S:      Maintained
14687 W:      https://linuxtv.org
14688 W:      http://palosaari.fi/linux/
14689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14690 T:      git git://linuxtv.org/anttip/media_tree.git
14691 F:      drivers/media/dvb-frontends/rtl2832*
14692
14693 RTL2832_SDR MEDIA DRIVER
14694 M:      Antti Palosaari <crope@iki.fi>
14695 L:      linux-media@vger.kernel.org
14696 S:      Maintained
14697 W:      https://linuxtv.org
14698 W:      http://palosaari.fi/linux/
14699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14700 T:      git git://linuxtv.org/anttip/media_tree.git
14701 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14702
14703 RTL8180 WIRELESS DRIVER
14704 L:      linux-wireless@vger.kernel.org
14705 S:      Orphan
14706 W:      https://wireless.wiki.kernel.org/
14707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14708 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14709
14710 RTL8187 WIRELESS DRIVER
14711 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14712 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14713 M:      Larry Finger <Larry.Finger@lwfinger.net>
14714 L:      linux-wireless@vger.kernel.org
14715 S:      Maintained
14716 W:      https://wireless.wiki.kernel.org/
14717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14718 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14719
14720 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14721 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14722 L:      linux-wireless@vger.kernel.org
14723 S:      Maintained
14724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14725 F:      drivers/net/wireless/realtek/rtl8xxxu/
14726
14727 RTRS TRANSPORT DRIVERS
14728 M:      Danil Kipnis <danil.kipnis@cloud.ionos.com>
14729 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14730 L:      linux-rdma@vger.kernel.org
14731 S:      Maintained
14732 F:      drivers/infiniband/ulp/rtrs/
14733
14734 RXRPC SOCKETS (AF_RXRPC)
14735 M:      David Howells <dhowells@redhat.com>
14736 L:      linux-afs@lists.infradead.org
14737 S:      Supported
14738 W:      https://www.infradead.org/~dhowells/kafs/
14739 F:      Documentation/networking/rxrpc.rst
14740 F:      include/keys/rxrpc-type.h
14741 F:      include/net/af_rxrpc.h
14742 F:      include/trace/events/rxrpc.h
14743 F:      include/uapi/linux/rxrpc.h
14744 F:      net/rxrpc/
14745
14746 S3 SAVAGE FRAMEBUFFER DRIVER
14747 M:      Antonino Daplas <adaplas@gmail.com>
14748 L:      linux-fbdev@vger.kernel.org
14749 S:      Maintained
14750 F:      drivers/video/fbdev/savage/
14751
14752 S390
14753 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14754 M:      Vasily Gorbik <gor@linux.ibm.com>
14755 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14756 L:      linux-s390@vger.kernel.org
14757 S:      Supported
14758 W:      http://www.ibm.com/developerworks/linux/linux390/
14759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14760 F:      Documentation/driver-api/s390-drivers.rst
14761 F:      Documentation/s390/
14762 F:      arch/s390/
14763 F:      drivers/s390/
14764
14765 S390 COMMON I/O LAYER
14766 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14767 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14768 L:      linux-s390@vger.kernel.org
14769 S:      Supported
14770 W:      http://www.ibm.com/developerworks/linux/linux390/
14771 F:      drivers/s390/cio/
14772
14773 S390 DASD DRIVER
14774 M:      Stefan Haberland <sth@linux.ibm.com>
14775 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14776 L:      linux-s390@vger.kernel.org
14777 S:      Supported
14778 W:      http://www.ibm.com/developerworks/linux/linux390/
14779 F:      block/partitions/ibm.c
14780 F:      drivers/s390/block/dasd*
14781 F:      include/linux/dasd_mod.h
14782
14783 S390 IOMMU (PCI)
14784 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14785 L:      linux-s390@vger.kernel.org
14786 S:      Supported
14787 W:      http://www.ibm.com/developerworks/linux/linux390/
14788 F:      drivers/iommu/s390-iommu.c
14789
14790 S390 IUCV NETWORK LAYER
14791 M:      Julian Wiedmann <jwi@linux.ibm.com>
14792 M:      Karsten Graul <kgraul@linux.ibm.com>
14793 M:      Ursula Braun <ubraun@linux.ibm.com>
14794 L:      linux-s390@vger.kernel.org
14795 S:      Supported
14796 W:      http://www.ibm.com/developerworks/linux/linux390/
14797 F:      drivers/s390/net/*iucv*
14798 F:      include/net/iucv/
14799 F:      net/iucv/
14800
14801 S390 NETWORK DRIVERS
14802 M:      Julian Wiedmann <jwi@linux.ibm.com>
14803 M:      Karsten Graul <kgraul@linux.ibm.com>
14804 M:      Ursula Braun <ubraun@linux.ibm.com>
14805 L:      linux-s390@vger.kernel.org
14806 S:      Supported
14807 W:      http://www.ibm.com/developerworks/linux/linux390/
14808 F:      drivers/s390/net/
14809
14810 S390 PCI SUBSYSTEM
14811 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14812 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14813 L:      linux-s390@vger.kernel.org
14814 S:      Supported
14815 W:      http://www.ibm.com/developerworks/linux/linux390/
14816 F:      arch/s390/pci/
14817 F:      drivers/pci/hotplug/s390_pci_hpc.c
14818
14819 S390 VFIO AP DRIVER
14820 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14821 M:      Pierre Morel <pmorel@linux.ibm.com>
14822 M:      Halil Pasic <pasic@linux.ibm.com>
14823 L:      linux-s390@vger.kernel.org
14824 S:      Supported
14825 W:      http://www.ibm.com/developerworks/linux/linux390/
14826 F:      Documentation/s390/vfio-ap.rst
14827 F:      drivers/s390/crypto/vfio_ap_drv.c
14828 F:      drivers/s390/crypto/vfio_ap_ops.c
14829 F:      drivers/s390/crypto/vfio_ap_private.h
14830
14831 S390 VFIO-CCW DRIVER
14832 M:      Cornelia Huck <cohuck@redhat.com>
14833 M:      Eric Farman <farman@linux.ibm.com>
14834 R:      Halil Pasic <pasic@linux.ibm.com>
14835 L:      linux-s390@vger.kernel.org
14836 L:      kvm@vger.kernel.org
14837 S:      Supported
14838 F:      Documentation/s390/vfio-ccw.rst
14839 F:      drivers/s390/cio/vfio_ccw*
14840 F:      include/uapi/linux/vfio_ccw.h
14841
14842 S390 ZCRYPT DRIVER
14843 M:      Harald Freudenberger <freude@linux.ibm.com>
14844 L:      linux-s390@vger.kernel.org
14845 S:      Supported
14846 W:      http://www.ibm.com/developerworks/linux/linux390/
14847 F:      drivers/s390/crypto/
14848
14849 S390 ZFCP DRIVER
14850 M:      Steffen Maier <maier@linux.ibm.com>
14851 M:      Benjamin Block <bblock@linux.ibm.com>
14852 L:      linux-s390@vger.kernel.org
14853 S:      Supported
14854 W:      http://www.ibm.com/developerworks/linux/linux390/
14855 F:      drivers/s390/scsi/zfcp_*
14856
14857 S3C24XX SD/MMC Driver
14858 M:      Ben Dooks <ben-linux@fluff.org>
14859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14860 S:      Supported
14861 F:      drivers/mmc/host/s3cmci.*
14862
14863 SAA6588 RDS RECEIVER DRIVER
14864 M:      Hans Verkuil <hverkuil@xs4all.nl>
14865 L:      linux-media@vger.kernel.org
14866 S:      Odd Fixes
14867 W:      https://linuxtv.org
14868 T:      git git://linuxtv.org/media_tree.git
14869 F:      drivers/media/i2c/saa6588*
14870
14871 SAA7134 VIDEO4LINUX DRIVER
14872 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14873 L:      linux-media@vger.kernel.org
14874 S:      Odd fixes
14875 W:      https://linuxtv.org
14876 T:      git git://linuxtv.org/media_tree.git
14877 F:      Documentation/driver-api/media/drivers/saa7134*
14878 F:      drivers/media/pci/saa7134/
14879
14880 SAA7146 VIDEO4LINUX-2 DRIVER
14881 M:      Hans Verkuil <hverkuil@xs4all.nl>
14882 L:      linux-media@vger.kernel.org
14883 S:      Maintained
14884 T:      git git://linuxtv.org/media_tree.git
14885 F:      drivers/media/common/saa7146/
14886 F:      drivers/media/pci/saa7146/
14887 F:      include/media/drv-intf/saa7146*
14888
14889 SAFESETID SECURITY MODULE
14890 M:      Micah Morton <mortonm@chromium.org>
14891 S:      Supported
14892 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14893 F:      security/safesetid/
14894
14895 SAMSUNG AUDIO (ASoC) DRIVERS
14896 M:      Krzysztof Kozlowski <krzk@kernel.org>
14897 M:      Sangbeom Kim <sbkim73@samsung.com>
14898 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14900 S:      Supported
14901 F:      Documentation/devicetree/bindings/sound/samsung*
14902 F:      sound/soc/samsung/
14903
14904 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14905 M:      Krzysztof Kozlowski <krzk@kernel.org>
14906 L:      linux-crypto@vger.kernel.org
14907 L:      linux-samsung-soc@vger.kernel.org
14908 S:      Maintained
14909 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14910 F:      drivers/crypto/exynos-rng.c
14911
14912 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14913 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14914 L:      linux-samsung-soc@vger.kernel.org
14915 S:      Maintained
14916 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14917 F:      drivers/char/hw_random/exynos-trng.c
14918
14919 SAMSUNG FRAMEBUFFER DRIVER
14920 M:      Jingoo Han <jingoohan1@gmail.com>
14921 L:      linux-fbdev@vger.kernel.org
14922 S:      Maintained
14923 F:      drivers/video/fbdev/s3c-fb.c
14924
14925 SAMSUNG LAPTOP DRIVER
14926 M:      Corentin Chary <corentin.chary@gmail.com>
14927 L:      platform-driver-x86@vger.kernel.org
14928 S:      Maintained
14929 F:      drivers/platform/x86/samsung-laptop.c
14930
14931 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14932 M:      Sangbeom Kim <sbkim73@samsung.com>
14933 M:      Krzysztof Kozlowski <krzk@kernel.org>
14934 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14935 L:      linux-kernel@vger.kernel.org
14936 L:      linux-samsung-soc@vger.kernel.org
14937 S:      Supported
14938 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14939 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14940 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14941 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14942 F:      drivers/clk/clk-s2mps11.c
14943 F:      drivers/mfd/sec*.c
14944 F:      drivers/regulator/s2m*.c
14945 F:      drivers/regulator/s5m*.c
14946 F:      drivers/rtc/rtc-s5m.c
14947 F:      include/linux/mfd/samsung/
14948
14949 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14950 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14951 L:      linux-media@vger.kernel.org
14952 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14953 S:      Maintained
14954 F:      drivers/media/platform/s3c-camif/
14955 F:      include/media/drv-intf/s3c_camif.h
14956
14957 SAMSUNG S3FWRN5 NFC DRIVER
14958 M:      Robert Baldyga <r.baldyga@samsung.com>
14959 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14960 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14961 S:      Supported
14962 F:      drivers/nfc/s3fwrn5
14963
14964 SAMSUNG S5C73M3 CAMERA DRIVER
14965 M:      Kyungmin Park <kyungmin.park@samsung.com>
14966 M:      Andrzej Hajda <a.hajda@samsung.com>
14967 L:      linux-media@vger.kernel.org
14968 S:      Supported
14969 F:      drivers/media/i2c/s5c73m3/*
14970
14971 SAMSUNG S5K5BAF CAMERA DRIVER
14972 M:      Kyungmin Park <kyungmin.park@samsung.com>
14973 M:      Andrzej Hajda <a.hajda@samsung.com>
14974 L:      linux-media@vger.kernel.org
14975 S:      Supported
14976 F:      drivers/media/i2c/s5k5baf.c
14977
14978 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14979 M:      Krzysztof Kozlowski <krzk@kernel.org>
14980 M:      Vladimir Zapolskiy <vz@mleia.com>
14981 M:      Kamil Konieczny <k.konieczny@samsung.com>
14982 L:      linux-crypto@vger.kernel.org
14983 L:      linux-samsung-soc@vger.kernel.org
14984 S:      Maintained
14985 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14986 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14987 F:      drivers/crypto/s5p-sss.c
14988
14989 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14990 M:      Kyungmin Park <kyungmin.park@samsung.com>
14991 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14992 L:      linux-media@vger.kernel.org
14993 S:      Supported
14994 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14995 F:      drivers/media/platform/exynos4-is/
14996
14997 SAMSUNG SOC CLOCK DRIVERS
14998 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14999 M:      Tomasz Figa <tomasz.figa@gmail.com>
15000 M:      Chanwoo Choi <cw00.choi@samsung.com>
15001 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15002 S:      Supported
15003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
15004 F:      Documentation/devicetree/bindings/clock/exynos*.txt
15005 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
15006 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
15007 F:      drivers/clk/samsung/
15008 F:      include/dt-bindings/clock/exynos*.h
15009
15010 SAMSUNG SPI DRIVERS
15011 M:      Kukjin Kim <kgene@kernel.org>
15012 M:      Krzysztof Kozlowski <krzk@kernel.org>
15013 M:      Andi Shyti <andi@etezian.org>
15014 L:      linux-spi@vger.kernel.org
15015 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
15016 S:      Maintained
15017 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
15018 F:      drivers/spi/spi-s3c*
15019 F:      include/linux/platform_data/spi-s3c64xx.h
15020
15021 SAMSUNG SXGBE DRIVERS
15022 M:      Byungho An <bh74.an@samsung.com>
15023 L:      netdev@vger.kernel.org
15024 S:      Supported
15025 F:      drivers/net/ethernet/samsung/sxgbe/
15026
15027 SAMSUNG THERMAL DRIVER
15028 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15029 L:      linux-pm@vger.kernel.org
15030 L:      linux-samsung-soc@vger.kernel.org
15031 S:      Supported
15032 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
15033 F:      drivers/thermal/samsung/
15034
15035 SAMSUNG USB2 PHY DRIVER
15036 M:      Kamil Debski <kamil@wypas.org>
15037 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15038 L:      linux-kernel@vger.kernel.org
15039 S:      Supported
15040 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
15041 F:      Documentation/driver-api/phy/samsung-usb2.rst
15042 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
15043 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
15044 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
15045 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
15046 F:      drivers/phy/samsung/phy-samsung-usb2.c
15047 F:      drivers/phy/samsung/phy-samsung-usb2.h
15048
15049 SC1200 WDT DRIVER
15050 M:      Zwane Mwaikambo <zwanem@gmail.com>
15051 S:      Maintained
15052 F:      drivers/watchdog/sc1200wdt.c
15053
15054 SCHEDULER
15055 M:      Ingo Molnar <mingo@redhat.com>
15056 M:      Peter Zijlstra <peterz@infradead.org>
15057 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
15058 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
15059 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
15060 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
15061 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
15062 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
15063 L:      linux-kernel@vger.kernel.org
15064 S:      Maintained
15065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
15066 F:      include/linux/preempt.h
15067 F:      include/linux/sched.h
15068 F:      include/linux/wait.h
15069 F:      include/uapi/linux/sched.h
15070 F:      kernel/sched/
15071
15072 SCR24X CHIP CARD INTERFACE DRIVER
15073 M:      Lubomir Rintel <lkundrak@v3.sk>
15074 S:      Supported
15075 F:      drivers/char/pcmcia/scr24x_cs.c
15076
15077 SCSI CDROM DRIVER
15078 M:      Jens Axboe <axboe@kernel.dk>
15079 L:      linux-scsi@vger.kernel.org
15080 S:      Maintained
15081 W:      http://www.kernel.dk
15082 F:      drivers/scsi/sr*
15083
15084 SCSI RDMA PROTOCOL (SRP) INITIATOR
15085 M:      Bart Van Assche <bvanassche@acm.org>
15086 L:      linux-rdma@vger.kernel.org
15087 S:      Supported
15088 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15089 F:      drivers/infiniband/ulp/srp/
15090 F:      include/scsi/srp.h
15091
15092 SCSI RDMA PROTOCOL (SRP) TARGET
15093 M:      Bart Van Assche <bvanassche@acm.org>
15094 L:      linux-rdma@vger.kernel.org
15095 L:      target-devel@vger.kernel.org
15096 S:      Supported
15097 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15098 F:      drivers/infiniband/ulp/srpt/
15099
15100 SCSI SG DRIVER
15101 M:      Doug Gilbert <dgilbert@interlog.com>
15102 L:      linux-scsi@vger.kernel.org
15103 S:      Maintained
15104 W:      http://sg.danny.cz/sg
15105 F:      Documentation/scsi/scsi-generic.rst
15106 F:      drivers/scsi/sg.c
15107 F:      include/scsi/sg.h
15108
15109 SCSI SUBSYSTEM
15110 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
15111 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15112 L:      linux-scsi@vger.kernel.org
15113 S:      Maintained
15114 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
15115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
15116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15117 F:      Documentation/devicetree/bindings/scsi/
15118 F:      drivers/scsi/
15119 F:      include/scsi/
15120
15121 SCSI TAPE DRIVER
15122 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
15123 L:      linux-scsi@vger.kernel.org
15124 S:      Maintained
15125 F:      Documentation/scsi/st.rst
15126 F:      drivers/scsi/st.*
15127 F:      drivers/scsi/st_*.h
15128
15129 SCSI TARGET SUBSYSTEM
15130 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
15131 L:      linux-scsi@vger.kernel.org
15132 L:      target-devel@vger.kernel.org
15133 S:      Supported
15134 W:      http://www.linux-iscsi.org
15135 Q:      https://patchwork.kernel.org/project/target-devel/list/
15136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
15137 F:      Documentation/target/
15138 F:      drivers/target/
15139 F:      include/target/
15140
15141 SCTP PROTOCOL
15142 M:      Vlad Yasevich <vyasevich@gmail.com>
15143 M:      Neil Horman <nhorman@tuxdriver.com>
15144 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
15145 L:      linux-sctp@vger.kernel.org
15146 S:      Maintained
15147 W:      http://lksctp.sourceforge.net
15148 F:      Documentation/networking/sctp.rst
15149 F:      include/linux/sctp.h
15150 F:      include/net/sctp/
15151 F:      include/uapi/linux/sctp.h
15152 F:      net/sctp/
15153
15154 SCx200 CPU SUPPORT
15155 M:      Jim Cromie <jim.cromie@gmail.com>
15156 S:      Odd Fixes
15157 F:      Documentation/i2c/busses/scx200_acb.rst
15158 F:      arch/x86/platform/scx200/
15159 F:      drivers/i2c/busses/scx200*
15160 F:      drivers/mtd/maps/scx200_docflash.c
15161 F:      drivers/watchdog/scx200_wdt.c
15162 F:      include/linux/scx200.h
15163
15164 SCx200 GPIO DRIVER
15165 M:      Jim Cromie <jim.cromie@gmail.com>
15166 S:      Maintained
15167 F:      drivers/char/scx200_gpio.c
15168 F:      include/linux/scx200_gpio.h
15169
15170 SCx200 HRT CLOCKSOURCE DRIVER
15171 M:      Jim Cromie <jim.cromie@gmail.com>
15172 S:      Maintained
15173 F:      drivers/clocksource/scx200_hrt.c
15174
15175 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15176 M:      Sascha Sommer <saschasommer@freenet.de>
15177 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15178 S:      Maintained
15179 F:      drivers/mmc/host/sdricoh_cs.c
15180
15181 SECO BOARDS CEC DRIVER
15182 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15183 S:      Maintained
15184 F:      drivers/media/platform/seco-cec/seco-cec.c
15185 F:      drivers/media/platform/seco-cec/seco-cec.h
15186
15187 SECURE COMPUTING
15188 M:      Kees Cook <keescook@chromium.org>
15189 R:      Andy Lutomirski <luto@amacapital.net>
15190 R:      Will Drewry <wad@chromium.org>
15191 S:      Supported
15192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15193 F:      Documentation/userspace-api/seccomp_filter.rst
15194 F:      include/linux/seccomp.h
15195 F:      include/uapi/linux/seccomp.h
15196 F:      kernel/seccomp.c
15197 F:      tools/testing/selftests/kselftest_harness.h
15198 F:      tools/testing/selftests/seccomp/*
15199 K:      \bsecure_computing
15200 K:      \bTIF_SECCOMP\b
15201
15202 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15203 M:      Al Cooper <alcooperx@gmail.com>
15204 L:      linux-mmc@vger.kernel.org
15205 L:      bcm-kernel-feedback-list@broadcom.com
15206 S:      Maintained
15207 F:      drivers/mmc/host/sdhci-brcmstb*
15208
15209 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15210 M:      Adrian Hunter <adrian.hunter@intel.com>
15211 L:      linux-mmc@vger.kernel.org
15212 S:      Maintained
15213 F:      drivers/mmc/host/sdhci*
15214 F:      include/linux/mmc/sdhci*
15215
15216 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15217 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15218 L:      linux-mmc@vger.kernel.org
15219 S:      Supported
15220 F:      drivers/mmc/host/sdhci-of-at91.c
15221
15222 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15223 M:      Ben Dooks <ben-linux@fluff.org>
15224 M:      Jaehoon Chung <jh80.chung@samsung.com>
15225 L:      linux-mmc@vger.kernel.org
15226 S:      Maintained
15227 F:      drivers/mmc/host/sdhci-s3c*
15228
15229 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15230 M:      Viresh Kumar <vireshk@kernel.org>
15231 L:      linux-mmc@vger.kernel.org
15232 S:      Maintained
15233 F:      drivers/mmc/host/sdhci-spear.c
15234
15235 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15236 M:      Kishon Vijay Abraham I <kishon@ti.com>
15237 L:      linux-mmc@vger.kernel.org
15238 S:      Maintained
15239 F:      drivers/mmc/host/sdhci-omap.c
15240
15241 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15242 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15243 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15244 L:      linux-block@vger.kernel.org
15245 S:      Supported
15246 F:      block/opal_proto.h
15247 F:      block/sed*
15248 F:      include/linux/sed*
15249 F:      include/uapi/linux/sed*
15250
15251 SECURITY CONTACT
15252 M:      Security Officers <security@kernel.org>
15253 S:      Supported
15254
15255 SECURITY SUBSYSTEM
15256 M:      James Morris <jmorris@namei.org>
15257 M:      "Serge E. Hallyn" <serge@hallyn.com>
15258 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15259 S:      Supported
15260 W:      http://kernsec.org/
15261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15262 F:      security/
15263 X:      security/selinux/
15264
15265 SELINUX SECURITY MODULE
15266 M:      Paul Moore <paul@paul-moore.com>
15267 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15268 M:      Eric Paris <eparis@parisplace.org>
15269 L:      selinux@vger.kernel.org
15270 S:      Supported
15271 W:      https://selinuxproject.org
15272 W:      https://github.com/SELinuxProject
15273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15274 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15275 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15276 F:      Documentation/admin-guide/LSM/SELinux.rst
15277 F:      include/uapi/linux/selinux_netlink.h
15278 F:      scripts/selinux/
15279 F:      security/selinux/
15280
15281 SENSABLE PHANTOM
15282 M:      Jiri Slaby <jirislaby@gmail.com>
15283 S:      Maintained
15284 F:      drivers/misc/phantom.c
15285 F:      include/uapi/linux/phantom.h
15286
15287 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15288 M:      Tomasz Duszynski <tduszyns@gmail.com>
15289 S:      Maintained
15290 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15291 F:      drivers/iio/chemical/sps30.c
15292
15293 SERIAL DEVICE BUS
15294 M:      Rob Herring <robh@kernel.org>
15295 L:      linux-serial@vger.kernel.org
15296 S:      Maintained
15297 F:      Documentation/devicetree/bindings/serial/serial.yaml
15298 F:      drivers/tty/serdev/
15299 F:      include/linux/serdev.h
15300
15301 SERIAL DRIVERS
15302 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15303 L:      linux-serial@vger.kernel.org
15304 S:      Maintained
15305 F:      Documentation/devicetree/bindings/serial/
15306 F:      drivers/tty/serial/
15307
15308 SERIAL IR RECEIVER
15309 M:      Sean Young <sean@mess.org>
15310 L:      linux-media@vger.kernel.org
15311 S:      Maintained
15312 F:      drivers/media/rc/serial_ir.c
15313
15314 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15315 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15316 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15317 S:      Maintained
15318 F:      Documentation/devicetree/bindings/slimbus/
15319 F:      drivers/slimbus/
15320 F:      include/linux/slimbus.h
15321
15322 SFC NETWORK DRIVER
15323 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15324 M:      Edward Cree <ecree@solarflare.com>
15325 M:      Martin Habets <mhabets@solarflare.com>
15326 L:      netdev@vger.kernel.org
15327 S:      Supported
15328 F:      drivers/net/ethernet/sfc/
15329
15330 SFF/SFP/SFP+ MODULE SUPPORT
15331 M:      Russell King <linux@armlinux.org.uk>
15332 L:      netdev@vger.kernel.org
15333 S:      Maintained
15334 F:      drivers/net/phy/phylink.c
15335 F:      drivers/net/phy/sfp*
15336 F:      include/linux/phylink.h
15337 F:      include/linux/sfp.h
15338 K:      phylink
15339
15340 SGI GRU DRIVER
15341 M:      Dimitri Sivanich <sivanich@sgi.com>
15342 S:      Maintained
15343 F:      drivers/misc/sgi-gru/
15344
15345 SGI XP/XPC/XPNET DRIVER
15346 M:      Cliff Whickman <cpw@sgi.com>
15347 M:      Robin Holt <robinmholt@gmail.com>
15348 S:      Maintained
15349 F:      drivers/misc/sgi-xp/
15350
15351 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15352 M:      Ursula Braun <ubraun@linux.ibm.com>
15353 M:      Karsten Graul <kgraul@linux.ibm.com>
15354 L:      linux-s390@vger.kernel.org
15355 S:      Supported
15356 W:      http://www.ibm.com/developerworks/linux/linux390/
15357 F:      net/smc/
15358
15359 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15360 M:      Linus Walleij <linus.walleij@linaro.org>
15361 L:      linux-iio@vger.kernel.org
15362 S:      Maintained
15363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15364 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15365 F:      drivers/iio/light/gp2ap002.c
15366
15367 SHARP RJ54N1CB0C SENSOR DRIVER
15368 M:      Jacopo Mondi <jacopo@jmondi.org>
15369 L:      linux-media@vger.kernel.org
15370 S:      Odd fixes
15371 T:      git git://linuxtv.org/media_tree.git
15372 F:      drivers/media/i2c/rj54n1cb0c.c
15373 F:      include/media/i2c/rj54n1cb0c.h
15374
15375 SH_VOU V4L2 OUTPUT DRIVER
15376 L:      linux-media@vger.kernel.org
15377 S:      Orphan
15378 F:      drivers/media/platform/sh_vou.c
15379 F:      include/media/drv-intf/sh_vou.h
15380
15381 SI2157 MEDIA DRIVER
15382 M:      Antti Palosaari <crope@iki.fi>
15383 L:      linux-media@vger.kernel.org
15384 S:      Maintained
15385 W:      https://linuxtv.org
15386 W:      http://palosaari.fi/linux/
15387 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15388 T:      git git://linuxtv.org/anttip/media_tree.git
15389 F:      drivers/media/tuners/si2157*
15390
15391 SI2165 MEDIA DRIVER
15392 M:      Matthias Schwarzott <zzam@gentoo.org>
15393 L:      linux-media@vger.kernel.org
15394 S:      Maintained
15395 W:      https://linuxtv.org
15396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15397 F:      drivers/media/dvb-frontends/si2165*
15398
15399 SI2168 MEDIA DRIVER
15400 M:      Antti Palosaari <crope@iki.fi>
15401 L:      linux-media@vger.kernel.org
15402 S:      Maintained
15403 W:      https://linuxtv.org
15404 W:      http://palosaari.fi/linux/
15405 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15406 T:      git git://linuxtv.org/anttip/media_tree.git
15407 F:      drivers/media/dvb-frontends/si2168*
15408
15409 SI470X FM RADIO RECEIVER I2C DRIVER
15410 M:      Hans Verkuil <hverkuil@xs4all.nl>
15411 L:      linux-media@vger.kernel.org
15412 S:      Odd Fixes
15413 W:      https://linuxtv.org
15414 T:      git git://linuxtv.org/media_tree.git
15415 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15416
15417 SI470X FM RADIO RECEIVER USB DRIVER
15418 M:      Hans Verkuil <hverkuil@xs4all.nl>
15419 L:      linux-media@vger.kernel.org
15420 S:      Maintained
15421 W:      https://linuxtv.org
15422 T:      git git://linuxtv.org/media_tree.git
15423 F:      drivers/media/radio/si470x/radio-si470x-common.c
15424 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15425 F:      drivers/media/radio/si470x/radio-si470x.h
15426
15427 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15428 M:      Eduardo Valentin <edubezval@gmail.com>
15429 L:      linux-media@vger.kernel.org
15430 S:      Odd Fixes
15431 W:      https://linuxtv.org
15432 T:      git git://linuxtv.org/media_tree.git
15433 F:      drivers/media/radio/si4713/si4713.?
15434
15435 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15436 M:      Eduardo Valentin <edubezval@gmail.com>
15437 L:      linux-media@vger.kernel.org
15438 S:      Odd Fixes
15439 W:      https://linuxtv.org
15440 T:      git git://linuxtv.org/media_tree.git
15441 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15442
15443 SI4713 FM RADIO TRANSMITTER USB DRIVER
15444 M:      Hans Verkuil <hverkuil@xs4all.nl>
15445 L:      linux-media@vger.kernel.org
15446 S:      Maintained
15447 W:      https://linuxtv.org
15448 T:      git git://linuxtv.org/media_tree.git
15449 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15450
15451 SIANO DVB DRIVER
15452 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15453 L:      linux-media@vger.kernel.org
15454 S:      Odd fixes
15455 W:      https://linuxtv.org
15456 T:      git git://linuxtv.org/media_tree.git
15457 F:      drivers/media/common/siano/
15458 F:      drivers/media/mmc/siano/
15459 F:      drivers/media/usb/siano/
15460 F:      drivers/media/usb/siano/
15461
15462 SIFIVE DRIVERS
15463 M:      Palmer Dabbelt <palmer@dabbelt.com>
15464 M:      Paul Walmsley <paul.walmsley@sifive.com>
15465 L:      linux-riscv@lists.infradead.org
15466 S:      Supported
15467 T:      git git://github.com/sifive/riscv-linux.git
15468 N:      sifive
15469 K:      [^@]sifive
15470
15471 SIFIVE FU540 SYSTEM-ON-CHIP
15472 M:      Paul Walmsley <paul.walmsley@sifive.com>
15473 M:      Palmer Dabbelt <palmer@dabbelt.com>
15474 L:      linux-riscv@lists.infradead.org
15475 S:      Supported
15476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15477 N:      fu540
15478 K:      fu540
15479
15480 SIFIVE PDMA DRIVER
15481 M:      Green Wan <green.wan@sifive.com>
15482 S:      Maintained
15483 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15484 F:      drivers/dma/sf-pdma/
15485
15486 SILEAD TOUCHSCREEN DRIVER
15487 M:      Hans de Goede <hdegoede@redhat.com>
15488 L:      linux-input@vger.kernel.org
15489 L:      platform-driver-x86@vger.kernel.org
15490 S:      Maintained
15491 F:      drivers/input/touchscreen/silead.c
15492 F:      drivers/platform/x86/touchscreen_dmi.c
15493
15494 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15495 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15496 S:      Supported
15497 F:      drivers/staging/wfx/
15498
15499 SILICON MOTION SM712 FRAME BUFFER DRIVER
15500 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15501 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15502 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15503 L:      linux-fbdev@vger.kernel.org
15504 S:      Maintained
15505 F:      Documentation/fb/sm712fb.rst
15506 F:      drivers/video/fbdev/sm712*
15507
15508 SIMPLE FIRMWARE INTERFACE (SFI)
15509 S:      Obsolete
15510 W:      http://simplefirmware.org/
15511 F:      arch/x86/platform/sfi/
15512 F:      drivers/sfi/
15513 F:      include/linux/sfi*.h
15514
15515 SIMPLEFB FB DRIVER
15516 M:      Hans de Goede <hdegoede@redhat.com>
15517 L:      linux-fbdev@vger.kernel.org
15518 S:      Maintained
15519 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15520 F:      drivers/video/fbdev/simplefb.c
15521 F:      include/linux/platform_data/simplefb.h
15522
15523 SIMTEC EB110ATX (Chalice CATS)
15524 M:      Vincent Sanders <vince@simtec.co.uk>
15525 M:      Simtec Linux Team <linux@simtec.co.uk>
15526 S:      Supported
15527 W:      http://www.simtec.co.uk/products/EB110ATX/
15528
15529 SIMTEC EB2410ITX (BAST)
15530 M:      Vincent Sanders <vince@simtec.co.uk>
15531 M:      Simtec Linux Team <linux@simtec.co.uk>
15532 S:      Supported
15533 W:      http://www.simtec.co.uk/products/EB2410ITX/
15534 F:      arch/arm/mach-s3c24xx/bast-ide.c
15535 F:      arch/arm/mach-s3c24xx/bast-irq.c
15536 F:      arch/arm/mach-s3c24xx/mach-bast.c
15537
15538 SIOX
15539 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15540 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15541 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15542 S:      Supported
15543 F:      drivers/gpio/gpio-siox.c
15544 F:      drivers/siox/*
15545 F:      include/trace/events/siox.h
15546
15547 SIPHASH PRF ROUTINES
15548 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15549 S:      Maintained
15550 F:      include/linux/siphash.h
15551 F:      lib/siphash.c
15552 F:      lib/test_siphash.c
15553
15554 SIS 190 ETHERNET DRIVER
15555 M:      Francois Romieu <romieu@fr.zoreil.com>
15556 L:      netdev@vger.kernel.org
15557 S:      Maintained
15558 F:      drivers/net/ethernet/sis/sis190.c
15559
15560 SIS 900/7016 FAST ETHERNET DRIVER
15561 M:      Daniele Venzano <venza@brownhat.org>
15562 L:      netdev@vger.kernel.org
15563 S:      Maintained
15564 W:      http://www.brownhat.org/sis900.html
15565 F:      drivers/net/ethernet/sis/sis900.*
15566
15567 SIS FRAMEBUFFER DRIVER
15568 M:      Thomas Winischhofer <thomas@winischhofer.net>
15569 S:      Maintained
15570 W:      http://www.winischhofer.net/linuxsisvga.shtml
15571 F:      Documentation/fb/sisfb.rst
15572 F:      drivers/video/fbdev/sis/
15573 F:      include/video/sisfb.h
15574
15575 SIS USB2VGA DRIVER
15576 M:      Thomas Winischhofer <thomas@winischhofer.net>
15577 S:      Maintained
15578 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15579 F:      drivers/usb/misc/sisusbvga/
15580
15581 SLAB ALLOCATOR
15582 M:      Christoph Lameter <cl@linux.com>
15583 M:      Pekka Enberg <penberg@kernel.org>
15584 M:      David Rientjes <rientjes@google.com>
15585 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15586 M:      Andrew Morton <akpm@linux-foundation.org>
15587 L:      linux-mm@kvack.org
15588 S:      Maintained
15589 F:      include/linux/sl?b*.h
15590 F:      mm/sl?b*
15591
15592 SLEEPABLE READ-COPY UPDATE (SRCU)
15593 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15594 M:      "Paul E. McKenney" <paulmck@kernel.org>
15595 M:      Josh Triplett <josh@joshtriplett.org>
15596 R:      Steven Rostedt <rostedt@goodmis.org>
15597 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15598 L:      rcu@vger.kernel.org
15599 S:      Supported
15600 W:      http://www.rdrop.com/users/paulmck/RCU/
15601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15602 F:      include/linux/srcu*.h
15603 F:      kernel/rcu/srcu*.c
15604
15605 SMACK SECURITY MODULE
15606 M:      Casey Schaufler <casey@schaufler-ca.com>
15607 L:      linux-security-module@vger.kernel.org
15608 S:      Maintained
15609 W:      http://schaufler-ca.com
15610 T:      git git://github.com/cschaufler/smack-next
15611 F:      Documentation/admin-guide/LSM/Smack.rst
15612 F:      security/smack/
15613
15614 SMC91x ETHERNET DRIVER
15615 M:      Nicolas Pitre <nico@fluxnic.net>
15616 S:      Odd Fixes
15617 F:      drivers/net/ethernet/smsc/smc91x.*
15618
15619 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
15620 M:      Mark Rutland <mark.rutland@arm.com>
15621 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15622 M:      Sudeep Holla <sudeep.holla@arm.com>
15623 L:      linux-arm-kernel@lists.infradead.org
15624 S:      Maintained
15625 F:      drivers/firmware/smccc/
15626 F:      include/linux/arm-smccc.h
15627
15628 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15629 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15630 L:      linux-media@vger.kernel.org
15631 S:      Maintained
15632 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15633 F:      drivers/media/i2c/smiapp-pll.c
15634 F:      drivers/media/i2c/smiapp-pll.h
15635 F:      drivers/media/i2c/smiapp/
15636 F:      include/uapi/linux/smiapp.h
15637
15638 SMM665 HARDWARE MONITOR DRIVER
15639 M:      Guenter Roeck <linux@roeck-us.net>
15640 L:      linux-hwmon@vger.kernel.org
15641 S:      Maintained
15642 F:      Documentation/hwmon/smm665.rst
15643 F:      drivers/hwmon/smm665.c
15644
15645 SMSC EMC2103 HARDWARE MONITOR DRIVER
15646 M:      Steve Glendinning <steve.glendinning@shawell.net>
15647 L:      linux-hwmon@vger.kernel.org
15648 S:      Maintained
15649 F:      Documentation/hwmon/emc2103.rst
15650 F:      drivers/hwmon/emc2103.c
15651
15652 SMSC SCH5627 HARDWARE MONITOR DRIVER
15653 M:      Hans de Goede <hdegoede@redhat.com>
15654 L:      linux-hwmon@vger.kernel.org
15655 S:      Supported
15656 F:      Documentation/hwmon/sch5627.rst
15657 F:      drivers/hwmon/sch5627.c
15658
15659 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15660 M:      Steve Glendinning <steve.glendinning@shawell.net>
15661 L:      linux-fbdev@vger.kernel.org
15662 S:      Maintained
15663 F:      drivers/video/fbdev/smscufx.c
15664
15665 SMSC47B397 HARDWARE MONITOR DRIVER
15666 M:      Jean Delvare <jdelvare@suse.com>
15667 L:      linux-hwmon@vger.kernel.org
15668 S:      Maintained
15669 F:      Documentation/hwmon/smsc47b397.rst
15670 F:      drivers/hwmon/smsc47b397.c
15671
15672 SMSC911x ETHERNET DRIVER
15673 M:      Steve Glendinning <steve.glendinning@shawell.net>
15674 L:      netdev@vger.kernel.org
15675 S:      Maintained
15676 F:      drivers/net/ethernet/smsc/smsc911x.*
15677 F:      include/linux/smsc911x.h
15678
15679 SMSC9420 PCI ETHERNET DRIVER
15680 M:      Steve Glendinning <steve.glendinning@shawell.net>
15681 L:      netdev@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/net/ethernet/smsc/smsc9420.*
15684
15685 SOC-CAMERA V4L2 SUBSYSTEM
15686 L:      linux-media@vger.kernel.org
15687 S:      Orphan
15688 T:      git git://linuxtv.org/media_tree.git
15689 F:      drivers/staging/media/soc_camera/
15690 F:      include/media/soc_camera.h
15691
15692 SOCIONEXT (SNI) AVE NETWORK DRIVER
15693 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15694 L:      netdev@vger.kernel.org
15695 S:      Maintained
15696 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
15697 F:      drivers/net/ethernet/socionext/sni_ave.c
15698
15699 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15700 M:      Jassi Brar <jaswinder.singh@linaro.org>
15701 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15702 L:      netdev@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15705 F:      drivers/net/ethernet/socionext/netsec.c
15706
15707 SOCIONEXT (SNI) Synquacer SPI DRIVER
15708 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15709 M:      Jassi Brar <jaswinder.singh@linaro.org>
15710 L:      linux-spi@vger.kernel.org
15711 S:      Maintained
15712 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15713 F:      drivers/spi/spi-synquacer.c
15714
15715 SOCIONEXT SYNQUACER I2C DRIVER
15716 M:      Ard Biesheuvel <ardb@kernel.org>
15717 L:      linux-i2c@vger.kernel.org
15718 S:      Maintained
15719 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15720 F:      drivers/i2c/busses/i2c-synquacer.c
15721
15722 SOCIONEXT UNIPHIER SOUND DRIVER
15723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15724 S:      Orphan
15725 F:      sound/soc/uniphier/
15726
15727 SOEKRIS NET48XX LED SUPPORT
15728 M:      Chris Boot <bootc@bootc.net>
15729 S:      Maintained
15730 F:      drivers/leds/leds-net48xx.c
15731
15732 SOFT-IWARP DRIVER (siw)
15733 M:      Bernard Metzler <bmt@zurich.ibm.com>
15734 L:      linux-rdma@vger.kernel.org
15735 S:      Supported
15736 F:      drivers/infiniband/sw/siw/
15737 F:      include/uapi/rdma/siw-abi.h
15738
15739 SOFT-ROCE DRIVER (rxe)
15740 M:      Zhu Yanjun <yanjunz@mellanox.com>
15741 L:      linux-rdma@vger.kernel.org
15742 S:      Supported
15743 F:      drivers/infiniband/sw/rxe/
15744 F:      include/uapi/rdma/rdma_user_rxe.h
15745
15746 SOFTLOGIC 6x10 MPEG CODEC
15747 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15748 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15749 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15750 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15751 M:      Ismael Luceno <ismael@iodev.co.uk>
15752 L:      linux-media@vger.kernel.org
15753 S:      Supported
15754 F:      drivers/media/pci/solo6x10/
15755
15756 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15757 M:      James Morse <james.morse@arm.com>
15758 L:      linux-arm-kernel@lists.infradead.org
15759 S:      Maintained
15760 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15761 F:      drivers/firmware/arm_sdei.c
15762 F:      include/linux/arm_sdei.h
15763 F:      include/uapi/linux/arm_sdei.h
15764
15765 SOFTWARE RAID (Multiple Disks) SUPPORT
15766 M:      Song Liu <song@kernel.org>
15767 L:      linux-raid@vger.kernel.org
15768 S:      Supported
15769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15770 F:      drivers/md/Kconfig
15771 F:      drivers/md/Makefile
15772 F:      drivers/md/md*
15773 F:      drivers/md/raid*
15774 F:      include/linux/raid/
15775 F:      include/uapi/linux/raid/
15776
15777 SOLIDRUN CLEARFOG SUPPORT
15778 M:      Russell King <linux@armlinux.org.uk>
15779 S:      Maintained
15780 F:      arch/arm/boot/dts/armada-388-clearfog*
15781 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15782
15783 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15784 M:      Russell King <linux@armlinux.org.uk>
15785 S:      Maintained
15786 F:      arch/arm/boot/dts/imx6*-cubox-i*
15787 F:      arch/arm/boot/dts/imx6*-hummingboard*
15788 F:      arch/arm/boot/dts/imx6*-sr-*
15789
15790 SONIC NETWORK DRIVER
15791 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15792 L:      netdev@vger.kernel.org
15793 S:      Maintained
15794 F:      drivers/net/ethernet/natsemi/sonic.*
15795
15796 SONICS SILICON BACKPLANE DRIVER (SSB)
15797 M:      Michael Buesch <m@bues.ch>
15798 L:      linux-wireless@vger.kernel.org
15799 S:      Maintained
15800 F:      drivers/ssb/
15801 F:      include/linux/ssb/
15802
15803 SONY IMX214 SENSOR DRIVER
15804 M:      Ricardo Ribalda <ribalda@kernel.org>
15805 L:      linux-media@vger.kernel.org
15806 S:      Maintained
15807 T:      git git://linuxtv.org/media_tree.git
15808 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15809 F:      drivers/media/i2c/imx214.c
15810
15811 SONY IMX219 SENSOR DRIVER
15812 M:      Dave Stevenson <dave.stevenson@raspberrypi.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/imx219.yaml
15817 F:      drivers/media/i2c/imx219.c
15818
15819 SONY IMX258 SENSOR DRIVER
15820 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15821 L:      linux-media@vger.kernel.org
15822 S:      Maintained
15823 T:      git git://linuxtv.org/media_tree.git
15824 F:      drivers/media/i2c/imx258.c
15825
15826 SONY IMX274 SENSOR DRIVER
15827 M:      Leon Luo <leonl@leopardimaging.com>
15828 L:      linux-media@vger.kernel.org
15829 S:      Maintained
15830 T:      git git://linuxtv.org/media_tree.git
15831 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15832 F:      drivers/media/i2c/imx274.c
15833
15834 SONY IMX290 SENSOR DRIVER
15835 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15836 L:      linux-media@vger.kernel.org
15837 S:      Maintained
15838 T:      git git://linuxtv.org/media_tree.git
15839 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15840 F:      drivers/media/i2c/imx290.c
15841
15842 SONY IMX319 SENSOR DRIVER
15843 M:      Bingbu Cao <bingbu.cao@intel.com>
15844 L:      linux-media@vger.kernel.org
15845 S:      Maintained
15846 T:      git git://linuxtv.org/media_tree.git
15847 F:      drivers/media/i2c/imx319.c
15848
15849 SONY IMX355 SENSOR DRIVER
15850 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15851 L:      linux-media@vger.kernel.org
15852 S:      Maintained
15853 T:      git git://linuxtv.org/media_tree.git
15854 F:      drivers/media/i2c/imx355.c
15855
15856 SONY MEMORYSTICK SUBSYSTEM
15857 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15858 M:      Alex Dubov <oakad@yahoo.com>
15859 M:      Ulf Hansson <ulf.hansson@linaro.org>
15860 L:      linux-mmc@vger.kernel.org
15861 S:      Maintained
15862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15863 F:      drivers/memstick/
15864 F:      include/linux/memstick.h
15865
15866 SONY VAIO CONTROL DEVICE DRIVER
15867 M:      Mattia Dongili <malattia@linux.it>
15868 L:      platform-driver-x86@vger.kernel.org
15869 S:      Maintained
15870 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15871 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15872 F:      drivers/char/sonypi.c
15873 F:      drivers/platform/x86/sony-laptop.c
15874 F:      include/linux/sony-laptop.h
15875
15876 SOUND
15877 M:      Jaroslav Kysela <perex@perex.cz>
15878 M:      Takashi Iwai <tiwai@suse.com>
15879 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15880 S:      Maintained
15881 W:      http://www.alsa-project.org/
15882 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15884 F:      Documentation/sound/
15885 F:      include/sound/
15886 F:      include/uapi/sound/
15887 F:      sound/
15888
15889 SOUND - COMPRESSED AUDIO
15890 M:      Vinod Koul <vkoul@kernel.org>
15891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15892 S:      Supported
15893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15894 F:      Documentation/sound/designs/compress-offload.rst
15895 F:      include/sound/compress_driver.h
15896 F:      include/uapi/sound/compress_*
15897 F:      sound/core/compress_offload.c
15898 F:      sound/soc/soc-compress.c
15899
15900 SOUND - DMAENGINE HELPERS
15901 M:      Lars-Peter Clausen <lars@metafoo.de>
15902 S:      Supported
15903 F:      include/sound/dmaengine_pcm.h
15904 F:      sound/core/pcm_dmaengine.c
15905 F:      sound/soc/soc-generic-dmaengine-pcm.c
15906
15907 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15908 M:      Liam Girdwood <lgirdwood@gmail.com>
15909 M:      Mark Brown <broonie@kernel.org>
15910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15911 S:      Supported
15912 W:      http://alsa-project.org/main/index.php/ASoC
15913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15914 F:      Documentation/devicetree/bindings/sound/
15915 F:      Documentation/sound/soc/
15916 F:      include/dt-bindings/sound/
15917 F:      include/sound/soc*
15918 F:      sound/soc/
15919
15920 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15921 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15922 M:      Liam Girdwood <lgirdwood@gmail.com>
15923 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15924 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15925 M:      Daniel Baluta <daniel.baluta@nxp.com>
15926 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15927 S:      Supported
15928 W:      https://github.com/thesofproject/linux/
15929 F:      sound/soc/sof/
15930
15931 SOUNDWIRE SUBSYSTEM
15932 M:      Vinod Koul <vkoul@kernel.org>
15933 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15934 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15935 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15936 S:      Supported
15937 F:      Documentation/driver-api/soundwire/
15938 F:      drivers/soundwire/
15939 F:      include/linux/soundwire/
15940
15941 SP2 MEDIA DRIVER
15942 M:      Olli Salonen <olli.salonen@iki.fi>
15943 L:      linux-media@vger.kernel.org
15944 S:      Maintained
15945 W:      https://linuxtv.org
15946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15947 F:      drivers/media/dvb-frontends/sp2*
15948
15949 SPARC + UltraSPARC (sparc/sparc64)
15950 M:      "David S. Miller" <davem@davemloft.net>
15951 L:      sparclinux@vger.kernel.org
15952 S:      Maintained
15953 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15956 F:      arch/sparc/
15957 F:      drivers/sbus/
15958
15959 SPARC SERIAL DRIVERS
15960 M:      "David S. Miller" <davem@davemloft.net>
15961 L:      sparclinux@vger.kernel.org
15962 S:      Maintained
15963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15965 F:      drivers/tty/serial/suncore.c
15966 F:      drivers/tty/serial/sunhv.c
15967 F:      drivers/tty/serial/sunsab.c
15968 F:      drivers/tty/serial/sunsab.h
15969 F:      drivers/tty/serial/sunsu.c
15970 F:      drivers/tty/serial/sunzilog.c
15971 F:      drivers/tty/serial/sunzilog.h
15972 F:      drivers/tty/vcc.c
15973 F:      include/linux/sunserialcore.h
15974
15975 SPARSE CHECKER
15976 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15977 L:      linux-sparse@vger.kernel.org
15978 S:      Maintained
15979 W:      https://sparse.wiki.kernel.org/
15980 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15981 F:      include/linux/compiler.h
15982
15983 SPEAR CLOCK FRAMEWORK SUPPORT
15984 M:      Viresh Kumar <vireshk@kernel.org>
15985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15986 S:      Maintained
15987 W:      http://www.st.com/spear
15988 F:      drivers/clk/spear/
15989
15990 SPEAR PLATFORM SUPPORT
15991 M:      Viresh Kumar <vireshk@kernel.org>
15992 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15994 S:      Maintained
15995 W:      http://www.st.com/spear
15996 F:      arch/arm/boot/dts/spear*
15997 F:      arch/arm/mach-spear/
15998
15999 SPI NOR SUBSYSTEM
16000 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
16001 L:      linux-mtd@lists.infradead.org
16002 S:      Maintained
16003 W:      http://www.linux-mtd.infradead.org/
16004 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
16005 C:      irc://irc.oftc.net/mtd
16006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
16007 F:      drivers/mtd/spi-nor/
16008 F:      include/linux/mtd/spi-nor.h
16009
16010 SPI SUBSYSTEM
16011 M:      Mark Brown <broonie@kernel.org>
16012 L:      linux-spi@vger.kernel.org
16013 S:      Maintained
16014 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
16015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
16016 F:      Documentation/devicetree/bindings/spi/
16017 F:      Documentation/spi/
16018 F:      drivers/spi/
16019 F:      include/linux/spi/
16020 F:      include/uapi/linux/spi/
16021 F:      tools/spi/
16022
16023 SPIDERNET NETWORK DRIVER for CELL
16024 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
16025 L:      netdev@vger.kernel.org
16026 S:      Supported
16027 F:      Documentation/networking/device_drivers/toshiba/spider_net.rst
16028 F:      drivers/net/ethernet/toshiba/spider_net*
16029
16030 SPMI SUBSYSTEM
16031 R:      Stephen Boyd <sboyd@kernel.org>
16032 L:      linux-arm-msm@vger.kernel.org
16033 F:      Documentation/devicetree/bindings/spmi/
16034 F:      drivers/spmi/
16035 F:      include/dt-bindings/spmi/spmi.h
16036 F:      include/linux/spmi.h
16037 F:      include/trace/events/spmi.h
16038
16039 SPU FILE SYSTEM
16040 M:      Jeremy Kerr <jk@ozlabs.org>
16041 L:      linuxppc-dev@lists.ozlabs.org
16042 S:      Supported
16043 W:      http://www.ibm.com/developerworks/power/cell/
16044 F:      Documentation/filesystems/spufs/spufs.rst
16045 F:      arch/powerpc/platforms/cell/spufs/
16046
16047 SQUASHFS FILE SYSTEM
16048 M:      Phillip Lougher <phillip@squashfs.org.uk>
16049 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
16050 S:      Maintained
16051 W:      http://squashfs.org.uk
16052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
16053 F:      Documentation/filesystems/squashfs.rst
16054 F:      fs/squashfs/
16055
16056 SRM (Alpha) environment access
16057 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
16058 S:      Maintained
16059 F:      arch/alpha/kernel/srm_env.c
16060
16061 ST LSM6DSx IMU IIO DRIVER
16062 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
16063 L:      linux-iio@vger.kernel.org
16064 S:      Maintained
16065 W:      http://www.st.com/
16066 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
16067 F:      drivers/iio/imu/st_lsm6dsx/
16068
16069 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
16070 M:      Mickael Guene <mickael.guene@st.com>
16071 L:      linux-media@vger.kernel.org
16072 S:      Maintained
16073 T:      git git://linuxtv.org/media_tree.git
16074 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
16075 F:      drivers/media/i2c/st-mipid02.c
16076
16077 ST STM32 I2C/SMBUS DRIVER
16078 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
16079 L:      linux-i2c@vger.kernel.org
16080 S:      Maintained
16081 F:      drivers/i2c/busses/i2c-stm32*
16082
16083 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
16084 M:      Song Qiang <songqiang1304521@gmail.com>
16085 L:      linux-iio@vger.kernel.org
16086 S:      Maintained
16087 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
16088 F:      drivers/iio/proximity/vl53l0x-i2c.c
16089
16090 STABLE BRANCH
16091 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16092 M:      Sasha Levin <sashal@kernel.org>
16093 L:      stable@vger.kernel.org
16094 S:      Supported
16095 F:      Documentation/process/stable-kernel-rules.rst
16096
16097 STAGING - ATOMISP DRIVER
16098 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16099 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
16100 L:      linux-media@vger.kernel.org
16101 S:      Maintained
16102 F:      drivers/staging/media/atomisp/
16103
16104 STAGING - COMEDI
16105 M:      Ian Abbott <abbotti@mev.co.uk>
16106 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
16107 S:      Odd Fixes
16108 F:      drivers/staging/comedi/
16109
16110 STAGING - FIELDBUS SUBSYSTEM
16111 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16112 S:      Maintained
16113 F:      drivers/staging/fieldbus/*
16114 F:      drivers/staging/fieldbus/Documentation/
16115
16116 STAGING - HMS ANYBUS-S BUS
16117 M:      Sven Van Asbroeck <TheSven73@gmail.com>
16118 S:      Maintained
16119 F:      drivers/staging/fieldbus/anybuss/
16120
16121 STAGING - INDUSTRIAL IO
16122 M:      Jonathan Cameron <jic23@kernel.org>
16123 L:      linux-iio@vger.kernel.org
16124 S:      Odd Fixes
16125 F:      Documentation/devicetree/bindings/staging/iio/
16126 F:      drivers/staging/iio/
16127
16128 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
16129 M:      Marc Dietrich <marvin24@gmx.de>
16130 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
16131 L:      linux-tegra@vger.kernel.org
16132 S:      Maintained
16133 F:      drivers/staging/nvec/
16134
16135 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
16136 M:      Jens Frederich <jfrederich@gmail.com>
16137 M:      Daniel Drake <dsd@laptop.org>
16138 M:      Jon Nettleton <jon.nettleton@gmail.com>
16139 S:      Maintained
16140 W:      http://wiki.laptop.org/go/DCON
16141 F:      drivers/staging/olpc_dcon/
16142
16143 STAGING - REALTEK RTL8188EU DRIVERS
16144 M:      Larry Finger <Larry.Finger@lwfinger.net>
16145 S:      Odd Fixes
16146 F:      drivers/staging/rtl8188eu/
16147
16148 STAGING - REALTEK RTL8712U DRIVERS
16149 M:      Larry Finger <Larry.Finger@lwfinger.net>
16150 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
16151 S:      Odd Fixes
16152 F:      drivers/staging/rtl8712/
16153
16154 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16155 M:      Michael Hennerich <michael.hennerich@analog.com>
16156 M:      Beniamin Bia <beniamin.bia@analog.com>
16157 L:      linux-fbdev@vger.kernel.org
16158 S:      Supported
16159 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16160 F:      drivers/staging/fbtft/fb_seps525.c
16161
16162 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
16163 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
16164 M:      Teddy Wang <teddy.wang@siliconmotion.com>
16165 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
16166 L:      linux-fbdev@vger.kernel.org
16167 S:      Maintained
16168 F:      drivers/staging/sm750fb/
16169
16170 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
16171 M:      William Hubbs <w.d.hubbs@gmail.com>
16172 M:      Chris Brannon <chris@the-brannons.com>
16173 M:      Kirk Reiser <kirk@reisers.ca>
16174 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16175 L:      speakup@linux-speakup.org
16176 S:      Odd Fixes
16177 W:      http://www.linux-speakup.org/
16178 F:      drivers/staging/speakup/
16179
16180 STAGING - VIA VT665X DRIVERS
16181 M:      Forest Bond <forest@alittletooquiet.net>
16182 S:      Odd Fixes
16183 F:      drivers/staging/vt665?/
16184
16185 STAGING - WILC1000 WIFI DRIVER
16186 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16187 M:      Ajay Singh <ajay.kathat@microchip.com>
16188 L:      linux-wireless@vger.kernel.org
16189 S:      Supported
16190 F:      drivers/staging/wilc1000/
16191
16192 STAGING SUBSYSTEM
16193 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16194 L:      devel@driverdev.osuosl.org
16195 S:      Supported
16196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16197 F:      drivers/staging/
16198
16199 STARFIRE/DURALAN NETWORK DRIVER
16200 M:      Ion Badulescu <ionut@badula.org>
16201 S:      Odd Fixes
16202 F:      drivers/net/ethernet/adaptec/starfire*
16203
16204 STEC S1220 SKD DRIVER
16205 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16206 L:      linux-block@vger.kernel.org
16207 S:      Maintained
16208 F:      drivers/block/skd*[ch]
16209
16210 STI AUDIO (ASoC) DRIVERS
16211 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16212 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16213 S:      Maintained
16214 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16215 F:      sound/soc/sti/
16216
16217 STI CEC DRIVER
16218 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16219 S:      Maintained
16220 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16221 F:      drivers/media/platform/sti/cec/
16222
16223 STK1160 USB VIDEO CAPTURE DRIVER
16224 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16225 L:      linux-media@vger.kernel.org
16226 S:      Maintained
16227 T:      git git://linuxtv.org/media_tree.git
16228 F:      drivers/media/usb/stk1160/
16229
16230 STM32 AUDIO (ASoC) DRIVERS
16231 M:      Olivier Moysan <olivier.moysan@st.com>
16232 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16233 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16234 S:      Maintained
16235 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16236 F:      sound/soc/stm/
16237
16238 STM32 TIMER/LPTIMER DRIVERS
16239 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16240 S:      Maintained
16241 F:      Documentation/ABI/testing/*timer-stm32
16242 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16243 F:      drivers/*/stm32-*timer*
16244 F:      drivers/pwm/pwm-stm32*
16245 F:      include/linux/*/stm32-*tim*
16246
16247 STMMAC ETHERNET DRIVER
16248 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16249 M:      Alexandre Torgue <alexandre.torgue@st.com>
16250 M:      Jose Abreu <joabreu@synopsys.com>
16251 L:      netdev@vger.kernel.org
16252 S:      Supported
16253 W:      http://www.stlinux.com
16254 F:      Documentation/networking/device_drivers/stmicro/
16255 F:      drivers/net/ethernet/stmicro/stmmac/
16256
16257 SUN3/3X
16258 M:      Sam Creasey <sammy@sammy.net>
16259 S:      Maintained
16260 W:      http://sammy.net/sun3/
16261 F:      arch/m68k/include/asm/sun3*
16262 F:      arch/m68k/kernel/*sun3*
16263 F:      arch/m68k/sun3*/
16264 F:      drivers/net/ethernet/i825xx/sun3*
16265
16266 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16267 M:      Hans de Goede <hdegoede@redhat.com>
16268 L:      linux-input@vger.kernel.org
16269 S:      Maintained
16270 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16271 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16272
16273 SUNDANCE NETWORK DRIVER
16274 M:      Denis Kirjanov <kda@linux-powerpc.org>
16275 L:      netdev@vger.kernel.org
16276 S:      Maintained
16277 F:      drivers/net/ethernet/dlink/sundance.c
16278
16279 SUPERH
16280 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16281 M:      Rich Felker <dalias@libc.org>
16282 L:      linux-sh@vger.kernel.org
16283 S:      Maintained
16284 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16285 F:      Documentation/sh/
16286 F:      arch/sh/
16287 F:      drivers/sh/
16288
16289 SUSPEND TO RAM
16290 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16291 M:      Len Brown <len.brown@intel.com>
16292 M:      Pavel Machek <pavel@ucw.cz>
16293 L:      linux-pm@vger.kernel.org
16294 S:      Supported
16295 B:      https://bugzilla.kernel.org
16296 F:      Documentation/power/
16297 F:      arch/x86/kernel/acpi/
16298 F:      drivers/base/power/
16299 F:      include/linux/freezer.h
16300 F:      include/linux/pm.h
16301 F:      include/linux/suspend.h
16302 F:      kernel/power/
16303
16304 SVGA HANDLING
16305 M:      Martin Mares <mj@ucw.cz>
16306 L:      linux-video@atrey.karlin.mff.cuni.cz
16307 S:      Maintained
16308 F:      Documentation/admin-guide/svga.rst
16309 F:      arch/x86/boot/video*
16310
16311 SWIOTLB SUBSYSTEM
16312 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16313 L:      iommu@lists.linux-foundation.org
16314 S:      Supported
16315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16316 F:      arch/*/kernel/pci-swiotlb.c
16317 F:      include/linux/swiotlb.h
16318 F:      kernel/dma/swiotlb.c
16319
16320 SWITCHDEV
16321 M:      Jiri Pirko <jiri@resnulli.us>
16322 M:      Ivan Vecera <ivecera@redhat.com>
16323 L:      netdev@vger.kernel.org
16324 S:      Supported
16325 F:      include/net/switchdev.h
16326 F:      net/switchdev/
16327
16328 SY8106A REGULATOR DRIVER
16329 M:      Icenowy Zheng <icenowy@aosc.io>
16330 S:      Maintained
16331 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16332 F:      drivers/regulator/sy8106a-regulator.c
16333
16334 SYNC FILE FRAMEWORK
16335 M:      Sumit Semwal <sumit.semwal@linaro.org>
16336 R:      Gustavo Padovan <gustavo@padovan.org>
16337 L:      linux-media@vger.kernel.org
16338 L:      dri-devel@lists.freedesktop.org
16339 S:      Maintained
16340 T:      git git://anongit.freedesktop.org/drm/drm-misc
16341 F:      Documentation/driver-api/sync_file.rst
16342 F:      drivers/dma-buf/dma-fence*
16343 F:      drivers/dma-buf/sw_sync.c
16344 F:      drivers/dma-buf/sync_*
16345 F:      include/linux/sync_file.h
16346 F:      include/uapi/linux/sync_file.h
16347
16348 SYNOPSYS ARC ARCHITECTURE
16349 M:      Vineet Gupta <vgupta@synopsys.com>
16350 L:      linux-snps-arc@lists.infradead.org
16351 S:      Supported
16352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16353 F:      Documentation/devicetree/bindings/arc/*
16354 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16355 F:      arch/arc/
16356 F:      drivers/clocksource/arc_timer.c
16357 F:      drivers/tty/serial/arc_uart.c
16358
16359 SYNOPSYS ARC HSDK SDP pll clock driver
16360 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16361 S:      Supported
16362 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16363 F:      drivers/clk/clk-hsdk-pll.c
16364
16365 SYNOPSYS ARC SDP clock driver
16366 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16367 S:      Supported
16368 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16369 F:      drivers/clk/axs10x/*
16370
16371 SYNOPSYS ARC SDP platform support
16372 M:      Alexey Brodkin <abrodkin@synopsys.com>
16373 S:      Supported
16374 F:      Documentation/devicetree/bindings/arc/axs10*
16375 F:      arch/arc/boot/dts/ax*
16376 F:      arch/arc/plat-axs10x
16377
16378 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16379 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16380 S:      Supported
16381 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16382 F:      drivers/reset/reset-axs10x.c
16383
16384 SYNOPSYS CREG GPIO DRIVER
16385 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16386 S:      Maintained
16387 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16388 F:      drivers/gpio/gpio-creg-snps.c
16389
16390 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16391 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16392 S:      Maintained
16393 F:      drivers/tty/serial/8250/8250_dw.c
16394 F:      drivers/tty/serial/8250/8250_dwlib.*
16395 F:      drivers/tty/serial/8250/8250_lpss.c
16396
16397 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16398 M:      Hoan Tran <hoan@os.amperecomputing.com>
16399 M:      Serge Semin <fancer.lancer@gmail.com>
16400 L:      linux-gpio@vger.kernel.org
16401 S:      Maintained
16402 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
16403 F:      drivers/gpio/gpio-dwapb.c
16404
16405 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16406 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16407 S:      Maintained
16408 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16409 F:      drivers/dma/dw-axi-dmac/
16410
16411 SYNOPSYS DESIGNWARE DMAC DRIVER
16412 M:      Viresh Kumar <vireshk@kernel.org>
16413 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16414 S:      Maintained
16415 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16416 F:      drivers/dma/dw/
16417 F:      include/dt-bindings/dma/dw-dmac.h
16418 F:      include/linux/dma/dw.h
16419 F:      include/linux/platform_data/dma-dw.h
16420
16421 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16422 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16423 L:      netdev@vger.kernel.org
16424 S:      Supported
16425 F:      drivers/net/ethernet/synopsys/
16426
16427 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16428 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16429 L:      netdev@vger.kernel.org
16430 S:      Supported
16431 F:      drivers/net/phy/mdio-xpcs.c
16432 F:      include/linux/mdio-xpcs.h
16433
16434 SYNOPSYS DESIGNWARE I2C DRIVER
16435 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16436 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16437 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16438 L:      linux-i2c@vger.kernel.org
16439 S:      Maintained
16440 F:      drivers/i2c/busses/i2c-designware-*
16441 F:      include/linux/platform_data/i2c-designware.h
16442
16443 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16444 M:      Jaehoon Chung <jh80.chung@samsung.com>
16445 L:      linux-mmc@vger.kernel.org
16446 S:      Maintained
16447 F:      drivers/mmc/host/dw_mmc*
16448
16449 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16450 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16451 S:      Supported
16452 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16453 F:      drivers/reset/reset-hsdk.c
16454 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16455
16456 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
16457 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
16458 M:      Manjunath M B <manjumb@synopsys.com>
16459 L:      linux-mmc@vger.kernel.org
16460 S:      Maintained
16461 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
16462
16463 SYSTEM CONFIGURATION (SYSCON)
16464 M:      Lee Jones <lee.jones@linaro.org>
16465 M:      Arnd Bergmann <arnd@arndb.de>
16466 S:      Supported
16467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16468 F:      drivers/mfd/syscon.c
16469
16470 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16471 M:      Sudeep Holla <sudeep.holla@arm.com>
16472 L:      linux-arm-kernel@lists.infradead.org
16473 S:      Maintained
16474 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16475 F:      drivers/clk/clk-sc[mp]i.c
16476 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16477 F:      drivers/firmware/arm_scmi/
16478 F:      drivers/firmware/arm_scpi.c
16479 F:      drivers/reset/reset-scmi.c
16480 F:      include/linux/sc[mp]i_protocol.h
16481 F:      include/trace/events/scmi.h
16482
16483 SYSTEM RESET/SHUTDOWN DRIVERS
16484 M:      Sebastian Reichel <sre@kernel.org>
16485 L:      linux-pm@vger.kernel.org
16486 S:      Maintained
16487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16488 F:      Documentation/devicetree/bindings/power/reset/
16489 F:      drivers/power/reset/
16490
16491 SYSTEM TRACE MODULE CLASS
16492 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16493 S:      Maintained
16494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16495 F:      Documentation/trace/stm.rst
16496 F:      drivers/hwtracing/stm/
16497 F:      include/linux/stm.h
16498 F:      include/uapi/linux/stm.h
16499
16500 SYSTEM76 ACPI DRIVER
16501 M:      Jeremy Soller <jeremy@system76.com>
16502 M:      System76 Product Development <productdev@system76.com>
16503 L:      platform-driver-x86@vger.kernel.org
16504 S:      Maintained
16505 F:      drivers/platform/x86/system76_acpi.c
16506
16507 SYSV FILESYSTEM
16508 M:      Christoph Hellwig <hch@infradead.org>
16509 S:      Maintained
16510 F:      Documentation/filesystems/sysv-fs.rst
16511 F:      fs/sysv/
16512 F:      include/linux/sysv_fs.h
16513
16514 TASKSTATS STATISTICS INTERFACE
16515 M:      Balbir Singh <bsingharora@gmail.com>
16516 S:      Maintained
16517 F:      Documentation/accounting/taskstats*
16518 F:      include/linux/taskstats*
16519 F:      kernel/taskstats.c
16520
16521 TC subsystem
16522 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16523 M:      Cong Wang <xiyou.wangcong@gmail.com>
16524 M:      Jiri Pirko <jiri@resnulli.us>
16525 L:      netdev@vger.kernel.org
16526 S:      Maintained
16527 F:      include/net/pkt_cls.h
16528 F:      include/net/pkt_sched.h
16529 F:      include/net/tc_act/
16530 F:      include/uapi/linux/pkt_cls.h
16531 F:      include/uapi/linux/pkt_sched.h
16532 F:      include/uapi/linux/tc_act/
16533 F:      include/uapi/linux/tc_ematch/
16534 F:      net/sched/
16535
16536 TC90522 MEDIA DRIVER
16537 M:      Akihiro Tsukada <tskd08@gmail.com>
16538 L:      linux-media@vger.kernel.org
16539 S:      Odd Fixes
16540 F:      drivers/media/dvb-frontends/tc90522*
16541
16542 TCP LOW PRIORITY MODULE
16543 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16544 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16545 S:      Maintained
16546 W:      http://tcp-lp-mod.sourceforge.net/
16547 F:      net/ipv4/tcp_lp.c
16548
16549 TDA10071 MEDIA DRIVER
16550 M:      Antti Palosaari <crope@iki.fi>
16551 L:      linux-media@vger.kernel.org
16552 S:      Maintained
16553 W:      https://linuxtv.org
16554 W:      http://palosaari.fi/linux/
16555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16556 T:      git git://linuxtv.org/anttip/media_tree.git
16557 F:      drivers/media/dvb-frontends/tda10071*
16558
16559 TDA18212 MEDIA DRIVER
16560 M:      Antti Palosaari <crope@iki.fi>
16561 L:      linux-media@vger.kernel.org
16562 S:      Maintained
16563 W:      https://linuxtv.org
16564 W:      http://palosaari.fi/linux/
16565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16566 T:      git git://linuxtv.org/anttip/media_tree.git
16567 F:      drivers/media/tuners/tda18212*
16568
16569 TDA18218 MEDIA DRIVER
16570 M:      Antti Palosaari <crope@iki.fi>
16571 L:      linux-media@vger.kernel.org
16572 S:      Maintained
16573 W:      https://linuxtv.org
16574 W:      http://palosaari.fi/linux/
16575 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16576 T:      git git://linuxtv.org/anttip/media_tree.git
16577 F:      drivers/media/tuners/tda18218*
16578
16579 TDA18250 MEDIA DRIVER
16580 M:      Olli Salonen <olli.salonen@iki.fi>
16581 L:      linux-media@vger.kernel.org
16582 S:      Maintained
16583 W:      https://linuxtv.org
16584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16585 T:      git git://linuxtv.org/media_tree.git
16586 F:      drivers/media/tuners/tda18250*
16587
16588 TDA18271 MEDIA DRIVER
16589 M:      Michael Krufky <mkrufky@linuxtv.org>
16590 L:      linux-media@vger.kernel.org
16591 S:      Maintained
16592 W:      https://linuxtv.org
16593 W:      http://github.com/mkrufky
16594 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16595 T:      git git://linuxtv.org/mkrufky/tuners.git
16596 F:      drivers/media/tuners/tda18271*
16597
16598 TDA1997x MEDIA DRIVER
16599 M:      Tim Harvey <tharvey@gateworks.com>
16600 L:      linux-media@vger.kernel.org
16601 S:      Maintained
16602 W:      https://linuxtv.org
16603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16604 F:      drivers/media/i2c/tda1997x.*
16605
16606 TDA827x MEDIA DRIVER
16607 M:      Michael Krufky <mkrufky@linuxtv.org>
16608 L:      linux-media@vger.kernel.org
16609 S:      Maintained
16610 W:      https://linuxtv.org
16611 W:      http://github.com/mkrufky
16612 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16613 T:      git git://linuxtv.org/mkrufky/tuners.git
16614 F:      drivers/media/tuners/tda8290.*
16615
16616 TDA8290 MEDIA DRIVER
16617 M:      Michael Krufky <mkrufky@linuxtv.org>
16618 L:      linux-media@vger.kernel.org
16619 S:      Maintained
16620 W:      https://linuxtv.org
16621 W:      http://github.com/mkrufky
16622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16623 T:      git git://linuxtv.org/mkrufky/tuners.git
16624 F:      drivers/media/tuners/tda8290.*
16625
16626 TDA9840 MEDIA DRIVER
16627 M:      Hans Verkuil <hverkuil@xs4all.nl>
16628 L:      linux-media@vger.kernel.org
16629 S:      Maintained
16630 W:      https://linuxtv.org
16631 T:      git git://linuxtv.org/media_tree.git
16632 F:      drivers/media/i2c/tda9840*
16633
16634 TEA5761 TUNER DRIVER
16635 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16636 L:      linux-media@vger.kernel.org
16637 S:      Odd fixes
16638 W:      https://linuxtv.org
16639 T:      git git://linuxtv.org/media_tree.git
16640 F:      drivers/media/tuners/tea5761.*
16641
16642 TEA5767 TUNER DRIVER
16643 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16644 L:      linux-media@vger.kernel.org
16645 S:      Maintained
16646 W:      https://linuxtv.org
16647 T:      git git://linuxtv.org/media_tree.git
16648 F:      drivers/media/tuners/tea5767.*
16649
16650 TEA6415C MEDIA DRIVER
16651 M:      Hans Verkuil <hverkuil@xs4all.nl>
16652 L:      linux-media@vger.kernel.org
16653 S:      Maintained
16654 W:      https://linuxtv.org
16655 T:      git git://linuxtv.org/media_tree.git
16656 F:      drivers/media/i2c/tea6415c*
16657
16658 TEA6420 MEDIA DRIVER
16659 M:      Hans Verkuil <hverkuil@xs4all.nl>
16660 L:      linux-media@vger.kernel.org
16661 S:      Maintained
16662 W:      https://linuxtv.org
16663 T:      git git://linuxtv.org/media_tree.git
16664 F:      drivers/media/i2c/tea6420*
16665
16666 TEAM DRIVER
16667 M:      Jiri Pirko <jiri@resnulli.us>
16668 L:      netdev@vger.kernel.org
16669 S:      Supported
16670 F:      drivers/net/team/
16671 F:      include/linux/if_team.h
16672 F:      include/uapi/linux/if_team.h
16673
16674 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16675 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16676 S:      Maintained
16677 F:      arch/x86/platform/ts5500/
16678
16679 TECHNOTREND USB IR RECEIVER
16680 M:      Sean Young <sean@mess.org>
16681 L:      linux-media@vger.kernel.org
16682 S:      Maintained
16683 F:      drivers/media/rc/ttusbir.c
16684
16685 TECHWELL TW9910 VIDEO DECODER
16686 L:      linux-media@vger.kernel.org
16687 S:      Orphan
16688 F:      drivers/media/i2c/tw9910.c
16689 F:      include/media/i2c/tw9910.h
16690
16691 TEE SUBSYSTEM
16692 M:      Jens Wiklander <jens.wiklander@linaro.org>
16693 L:      tee-dev@lists.linaro.org
16694 S:      Maintained
16695 F:      Documentation/tee.txt
16696 F:      drivers/tee/
16697 F:      include/linux/tee_drv.h
16698 F:      include/uapi/linux/tee.h
16699
16700 TEGRA ARCHITECTURE SUPPORT
16701 M:      Thierry Reding <thierry.reding@gmail.com>
16702 M:      Jonathan Hunter <jonathanh@nvidia.com>
16703 L:      linux-tegra@vger.kernel.org
16704 S:      Supported
16705 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16707 N:      [^a-z]tegra
16708
16709 TEGRA CLOCK DRIVER
16710 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16711 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16712 S:      Supported
16713 F:      drivers/clk/tegra/
16714
16715 TEGRA DMA DRIVERS
16716 M:      Laxman Dewangan <ldewangan@nvidia.com>
16717 M:      Jon Hunter <jonathanh@nvidia.com>
16718 S:      Supported
16719 F:      drivers/dma/tegra*
16720
16721 TEGRA I2C DRIVER
16722 M:      Laxman Dewangan <ldewangan@nvidia.com>
16723 R:      Dmitry Osipenko <digetx@gmail.com>
16724 S:      Supported
16725 F:      drivers/i2c/busses/i2c-tegra.c
16726
16727 TEGRA IOMMU DRIVERS
16728 M:      Thierry Reding <thierry.reding@gmail.com>
16729 L:      linux-tegra@vger.kernel.org
16730 S:      Supported
16731 F:      drivers/iommu/tegra*
16732
16733 TEGRA KBC DRIVER
16734 M:      Laxman Dewangan <ldewangan@nvidia.com>
16735 S:      Supported
16736 F:      drivers/input/keyboard/tegra-kbc.c
16737
16738 TEGRA NAND DRIVER
16739 M:      Stefan Agner <stefan@agner.ch>
16740 M:      Lucas Stach <dev@lynxeye.de>
16741 S:      Maintained
16742 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16743 F:      drivers/mtd/nand/raw/tegra_nand.c
16744
16745 TEGRA PWM DRIVER
16746 M:      Thierry Reding <thierry.reding@gmail.com>
16747 S:      Supported
16748 F:      drivers/pwm/pwm-tegra.c
16749
16750 TEGRA SERIAL DRIVER
16751 M:      Laxman Dewangan <ldewangan@nvidia.com>
16752 S:      Supported
16753 F:      drivers/tty/serial/serial-tegra.c
16754
16755 TEGRA SPI DRIVER
16756 M:      Laxman Dewangan <ldewangan@nvidia.com>
16757 S:      Supported
16758 F:      drivers/spi/spi-tegra*
16759
16760 TEGRA VIDEO DRIVER
16761 M:      Thierry Reding <thierry.reding@gmail.com>
16762 M:      Jonathan Hunter <jonathanh@nvidia.com>
16763 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
16764 L:      linux-media@vger.kernel.org
16765 L:      linux-tegra@vger.kernel.org
16766 S:      Maintained
16767 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
16768 F:      drivers/staging/media/tegra-video/
16769
16770 TEGRA XUSB PADCTL DRIVER
16771 M:      JC Kuo <jckuo@nvidia.com>
16772 S:      Supported
16773 F:      drivers/phy/tegra/xusb*
16774
16775 TEHUTI ETHERNET DRIVER
16776 M:      Andy Gospodarek <andy@greyhouse.net>
16777 L:      netdev@vger.kernel.org
16778 S:      Supported
16779 F:      drivers/net/ethernet/tehuti/*
16780
16781 TELECOM CLOCK DRIVER FOR MCPL0010
16782 M:      Mark Gross <mark.gross@intel.com>
16783 S:      Supported
16784 F:      drivers/char/tlclk.c
16785
16786 TEMPO SEMICONDUCTOR DRIVERS
16787 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16788 S:      Maintained
16789 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16790 F:      sound/soc/codecs/tscs*.c
16791 F:      sound/soc/codecs/tscs*.h
16792
16793 TENSILICA XTENSA PORT (xtensa)
16794 M:      Chris Zankel <chris@zankel.net>
16795 M:      Max Filippov <jcmvbkbc@gmail.com>
16796 L:      linux-xtensa@linux-xtensa.org
16797 S:      Maintained
16798 T:      git git://github.com/czankel/xtensa-linux.git
16799 F:      arch/xtensa/
16800 F:      drivers/irqchip/irq-xtensa-*
16801
16802 TEXAS INSTRUMENTS ASoC DRIVERS
16803 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16804 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16805 S:      Maintained
16806 F:      sound/soc/ti/
16807
16808 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
16809 M:      Ricardo Ribalda <ribalda@kernel.org>
16810 L:      linux-iio@vger.kernel.org
16811 S:      Supported
16812 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16813 F:      drivers/iio/dac/ti-dac7612.c
16814
16815 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
16816 M:      Nishanth Menon <nm@ti.com>
16817 M:      Tero Kristo <t-kristo@ti.com>
16818 M:      Santosh Shilimkar <ssantosh@kernel.org>
16819 L:      linux-arm-kernel@lists.infradead.org
16820 S:      Maintained
16821 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16822 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16823 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16824 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16825 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16826 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16827 F:      drivers/clk/keystone/sci-clk.c
16828 F:      drivers/firmware/ti_sci*
16829 F:      drivers/irqchip/irq-ti-sci-inta.c
16830 F:      drivers/irqchip/irq-ti-sci-intr.c
16831 F:      drivers/reset/reset-ti-sci.c
16832 F:      drivers/soc/ti/ti_sci_inta_msi.c
16833 F:      drivers/soc/ti/ti_sci_pm_domains.c
16834 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16835 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16836 F:      include/linux/soc/ti/ti_sci_protocol.h
16837
16838 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16839 M:      Hans Verkuil <hverkuil@xs4all.nl>
16840 L:      linux-media@vger.kernel.org
16841 S:      Maintained
16842 W:      https://linuxtv.org
16843 T:      git git://linuxtv.org/media_tree.git
16844 F:      drivers/media/radio/radio-raremono.c
16845
16846 THERMAL
16847 M:      Zhang Rui <rui.zhang@intel.com>
16848 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16849 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16850 L:      linux-pm@vger.kernel.org
16851 S:      Supported
16852 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16854 F:      Documentation/devicetree/bindings/thermal/
16855 F:      drivers/thermal/
16856 F:      include/linux/cpu_cooling.h
16857 F:      include/linux/thermal.h
16858 F:      include/uapi/linux/thermal.h
16859
16860 THERMAL DRIVER FOR AMLOGIC SOCS
16861 M:      Guillaume La Roque <glaroque@baylibre.com>
16862 L:      linux-pm@vger.kernel.org
16863 L:      linux-amlogic@lists.infradead.org
16864 S:      Supported
16865 W:      http://linux-meson.com/
16866 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16867 F:      drivers/thermal/amlogic_thermal.c
16868
16869 THERMAL/CPU_COOLING
16870 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16871 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16872 M:      Viresh Kumar <viresh.kumar@linaro.org>
16873 M:      Javi Merino <javi.merino@kernel.org>
16874 L:      linux-pm@vger.kernel.org
16875 S:      Supported
16876 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16877 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16878 F:      drivers/thermal/cpufreq_cooling.c
16879 F:      drivers/thermal/cpuidle_cooling.c
16880 F:      include/linux/cpu_cooling.h
16881
16882 THINKPAD ACPI EXTRAS DRIVER
16883 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16884 L:      ibm-acpi-devel@lists.sourceforge.net
16885 L:      platform-driver-x86@vger.kernel.org
16886 S:      Maintained
16887 W:      http://ibm-acpi.sourceforge.net
16888 W:      http://thinkwiki.org/wiki/Ibm-acpi
16889 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16890 F:      drivers/platform/x86/thinkpad_acpi.c
16891
16892 THUNDERBOLT DRIVER
16893 M:      Andreas Noever <andreas.noever@gmail.com>
16894 M:      Michael Jamet <michael.jamet@intel.com>
16895 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16896 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16897 L:      linux-usb@vger.kernel.org
16898 S:      Maintained
16899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16900 F:      Documentation/admin-guide/thunderbolt.rst
16901 F:      drivers/thunderbolt/
16902 F:      include/linux/thunderbolt.h
16903
16904 THUNDERBOLT NETWORK DRIVER
16905 M:      Michael Jamet <michael.jamet@intel.com>
16906 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16907 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16908 L:      netdev@vger.kernel.org
16909 S:      Maintained
16910 F:      drivers/net/thunderbolt.c
16911
16912 THUNDERX GPIO DRIVER
16913 M:      Robert Richter <rrichter@marvell.com>
16914 S:      Maintained
16915 F:      drivers/gpio/gpio-thunderx.c
16916
16917 TI AM437X VPFE DRIVER
16918 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16919 L:      linux-media@vger.kernel.org
16920 S:      Maintained
16921 W:      https://linuxtv.org
16922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16923 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16924 F:      drivers/media/platform/am437x/
16925
16926 TI BANDGAP AND THERMAL DRIVER
16927 M:      Eduardo Valentin <edubezval@gmail.com>
16928 M:      Keerthy <j-keerthy@ti.com>
16929 L:      linux-pm@vger.kernel.org
16930 L:      linux-omap@vger.kernel.org
16931 S:      Maintained
16932 F:      drivers/thermal/ti-soc-thermal/
16933
16934 TI BQ27XXX POWER SUPPLY DRIVER
16935 R:      Andrew F. Davis <afd@ti.com>
16936 F:      drivers/power/supply/bq27xxx_battery.c
16937 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16938 F:      include/linux/power/bq27xxx_battery.h
16939
16940 TI CDCE706 CLOCK DRIVER
16941 M:      Max Filippov <jcmvbkbc@gmail.com>
16942 S:      Maintained
16943 F:      drivers/clk/clk-cdce706.c
16944
16945 TI CLOCK DRIVER
16946 M:      Tero Kristo <t-kristo@ti.com>
16947 L:      linux-omap@vger.kernel.org
16948 S:      Maintained
16949 F:      drivers/clk/ti/
16950 F:      include/linux/clk/ti.h
16951
16952 TI DAVINCI MACHINE SUPPORT
16953 M:      Sekhar Nori <nsekhar@ti.com>
16954 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16956 S:      Supported
16957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16958 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16959 F:      arch/arm/boot/dts/da850*
16960 F:      arch/arm/mach-davinci/
16961 F:      drivers/i2c/busses/i2c-davinci.c
16962
16963 TI DAVINCI SERIES CLOCK DRIVER
16964 M:      David Lechner <david@lechnology.com>
16965 R:      Sekhar Nori <nsekhar@ti.com>
16966 S:      Maintained
16967 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16968 F:      drivers/clk/davinci/
16969
16970 TI DAVINCI SERIES GPIO DRIVER
16971 M:      Keerthy <j-keerthy@ti.com>
16972 L:      linux-gpio@vger.kernel.org
16973 S:      Maintained
16974 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16975 F:      drivers/gpio/gpio-davinci.c
16976
16977 TI DAVINCI SERIES MEDIA DRIVER
16978 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16979 L:      linux-media@vger.kernel.org
16980 S:      Maintained
16981 W:      https://linuxtv.org
16982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16983 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16984 F:      drivers/media/platform/davinci/
16985 F:      include/media/davinci/
16986
16987 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16988 R:      David Lechner <david@lechnology.com>
16989 L:      linux-iio@vger.kernel.org
16990 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16991 F:      drivers/counter/ti-eqep.c
16992
16993 TI ETHERNET SWITCH DRIVER (CPSW)
16994 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16995 L:      linux-omap@vger.kernel.org
16996 L:      netdev@vger.kernel.org
16997 S:      Maintained
16998 F:      drivers/net/ethernet/ti/cpsw*
16999 F:      drivers/net/ethernet/ti/davinci*
17000
17001 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
17002 M:      Alex Dubov <oakad@yahoo.com>
17003 S:      Maintained
17004 W:      http://tifmxx.berlios.de/
17005 F:      drivers/memstick/host/tifm_ms.c
17006 F:      drivers/misc/tifm*
17007 F:      drivers/mmc/host/tifm_sd.c
17008 F:      include/linux/tifm.h
17009
17010 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
17011 M:      Santosh Shilimkar <ssantosh@kernel.org>
17012 L:      linux-kernel@vger.kernel.org
17013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17014 S:      Maintained
17015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
17016 F:      drivers/soc/ti/*
17017
17018 TI LM49xxx FAMILY ASoC CODEC DRIVERS
17019 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
17020 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
17021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17022 S:      Maintained
17023 F:      sound/soc/codecs/isabelle*
17024 F:      sound/soc/codecs/lm49453*
17025
17026 TI LP855x BACKLIGHT DRIVER
17027 M:      Milo Kim <milo.kim@ti.com>
17028 S:      Maintained
17029 F:      Documentation/driver-api/backlight/lp855x-driver.rst
17030 F:      drivers/video/backlight/lp855x_bl.c
17031 F:      include/linux/platform_data/lp855x.h
17032
17033 TI LP8727 CHARGER DRIVER
17034 M:      Milo Kim <milo.kim@ti.com>
17035 S:      Maintained
17036 F:      drivers/power/supply/lp8727_charger.c
17037 F:      include/linux/platform_data/lp8727.h
17038
17039 TI LP8788 MFD DRIVER
17040 M:      Milo Kim <milo.kim@ti.com>
17041 S:      Maintained
17042 F:      drivers/iio/adc/lp8788_adc.c
17043 F:      drivers/leds/leds-lp8788.c
17044 F:      drivers/mfd/lp8788*.c
17045 F:      drivers/power/supply/lp8788-charger.c
17046 F:      drivers/regulator/lp8788-*.c
17047 F:      include/linux/mfd/lp8788*.h
17048
17049 TI NETCP ETHERNET DRIVER
17050 M:      Wingman Kwok <w-kwok2@ti.com>
17051 M:      Murali Karicheri <m-karicheri2@ti.com>
17052 L:      netdev@vger.kernel.org
17053 S:      Maintained
17054 F:      drivers/net/ethernet/ti/netcp*
17055
17056 TI PCM3060 ASoC CODEC DRIVER
17057 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
17058 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17059 S:      Maintained
17060 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
17061 F:      sound/soc/codecs/pcm3060*
17062
17063 TI TAS571X FAMILY ASoC CODEC DRIVER
17064 M:      Kevin Cernekee <cernekee@chromium.org>
17065 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17066 S:      Odd Fixes
17067 F:      sound/soc/codecs/tas571x*
17068
17069 TI TCAN4X5X DEVICE DRIVER
17070 M:      Dan Murphy <dmurphy@ti.com>
17071 L:      linux-can@vger.kernel.org
17072 S:      Maintained
17073 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
17074 F:      drivers/net/can/m_can/tcan4x5x.c
17075
17076 TI TRF7970A NFC DRIVER
17077 M:      Mark Greer <mgreer@animalcreek.com>
17078 L:      linux-wireless@vger.kernel.org
17079 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
17080 S:      Supported
17081 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
17082 F:      drivers/nfc/trf7970a.c
17083
17084 TI TWL4030 SERIES SOC CODEC DRIVER
17085 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
17086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17087 S:      Maintained
17088 F:      sound/soc/codecs/twl4030*
17089
17090 TI VPE/CAL DRIVERS
17091 M:      Benoit Parrot <bparrot@ti.com>
17092 L:      linux-media@vger.kernel.org
17093 S:      Maintained
17094 W:      http://linuxtv.org/
17095 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17096 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
17097 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
17098 F:      drivers/media/platform/ti-vpe/
17099
17100 TI WILINK WIRELESS DRIVERS
17101 L:      linux-wireless@vger.kernel.org
17102 S:      Orphan
17103 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
17104 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
17105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
17106 F:      drivers/net/wireless/ti/
17107 F:      include/linux/wl12xx.h
17108
17109 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
17110 M:      John Stultz <john.stultz@linaro.org>
17111 M:      Thomas Gleixner <tglx@linutronix.de>
17112 R:      Stephen Boyd <sboyd@kernel.org>
17113 L:      linux-kernel@vger.kernel.org
17114 S:      Supported
17115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
17116 F:      include/linux/clocksource.h
17117 F:      include/linux/time.h
17118 F:      include/linux/timex.h
17119 F:      include/uapi/linux/time.h
17120 F:      include/uapi/linux/timex.h
17121 F:      kernel/time/alarmtimer.c
17122 F:      kernel/time/clocksource.c
17123 F:      kernel/time/ntp.c
17124 F:      kernel/time/time*.c
17125 F:      tools/testing/selftests/timers/
17126
17127 TIPC NETWORK LAYER
17128 M:      Jon Maloy <jmaloy@redhat.com>
17129 M:      Ying Xue <ying.xue@windriver.com>
17130 L:      netdev@vger.kernel.org (core kernel code)
17131 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
17132 S:      Maintained
17133 W:      http://tipc.sourceforge.net/
17134 F:      include/uapi/linux/tipc*.h
17135 F:      net/tipc/
17136
17137 TLAN NETWORK DRIVER
17138 M:      Samuel Chessman <chessman@tux.org>
17139 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
17140 S:      Maintained
17141 W:      http://sourceforge.net/projects/tlan/
17142 F:      Documentation/networking/device_drivers/ti/tlan.rst
17143 F:      drivers/net/ethernet/ti/tlan.*
17144
17145 TM6000 VIDEO4LINUX DRIVER
17146 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17147 L:      linux-media@vger.kernel.org
17148 S:      Odd fixes
17149 W:      https://linuxtv.org
17150 T:      git git://linuxtv.org/media_tree.git
17151 F:      Documentation/admin-guide/media/tm6000*
17152 F:      drivers/media/usb/tm6000/
17153
17154 TMIO/SDHI MMC DRIVER
17155 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17156 L:      linux-mmc@vger.kernel.org
17157 S:      Supported
17158 F:      drivers/mmc/host/renesas_sdhi*
17159 F:      drivers/mmc/host/tmio_mmc*
17160 F:      include/linux/mfd/tmio.h
17161
17162 TMP401 HARDWARE MONITOR DRIVER
17163 M:      Guenter Roeck <linux@roeck-us.net>
17164 L:      linux-hwmon@vger.kernel.org
17165 S:      Maintained
17166 F:      Documentation/hwmon/tmp401.rst
17167 F:      drivers/hwmon/tmp401.c
17168
17169 TMP513 HARDWARE MONITOR DRIVER
17170 M:      Eric Tremblay <etremblay@distech-controls.com>
17171 L:      linux-hwmon@vger.kernel.org
17172 S:      Maintained
17173 F:      Documentation/hwmon/tmp513.rst
17174 F:      drivers/hwmon/tmp513.c
17175
17176 TMPFS (SHMEM FILESYSTEM)
17177 M:      Hugh Dickins <hughd@google.com>
17178 L:      linux-mm@kvack.org
17179 S:      Maintained
17180 F:      include/linux/shmem_fs.h
17181 F:      mm/shmem.c
17182
17183 TOMOYO SECURITY MODULE
17184 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17185 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17186 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17187 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17188 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17189 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17190 S:      Maintained
17191 W:      https://tomoyo.osdn.jp/
17192 F:      security/tomoyo/
17193
17194 TOPSTAR LAPTOP EXTRAS DRIVER
17195 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17196 L:      platform-driver-x86@vger.kernel.org
17197 S:      Maintained
17198 F:      drivers/platform/x86/topstar-laptop.c
17199
17200 TORTURE-TEST MODULES
17201 M:      Davidlohr Bueso <dave@stgolabs.net>
17202 M:      "Paul E. McKenney" <paulmck@kernel.org>
17203 M:      Josh Triplett <josh@joshtriplett.org>
17204 L:      linux-kernel@vger.kernel.org
17205 S:      Supported
17206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17207 F:      Documentation/RCU/torture.txt
17208 F:      kernel/locking/locktorture.c
17209 F:      kernel/rcu/rcuperf.c
17210 F:      kernel/rcu/rcutorture.c
17211 F:      kernel/torture.c
17212
17213 TOSHIBA ACPI EXTRAS DRIVER
17214 M:      Azael Avalos <coproscefalo@gmail.com>
17215 L:      platform-driver-x86@vger.kernel.org
17216 S:      Maintained
17217 F:      drivers/platform/x86/toshiba_acpi.c
17218
17219 TOSHIBA BLUETOOTH DRIVER
17220 M:      Azael Avalos <coproscefalo@gmail.com>
17221 L:      platform-driver-x86@vger.kernel.org
17222 S:      Maintained
17223 F:      drivers/platform/x86/toshiba_bluetooth.c
17224
17225 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17226 M:      Azael Avalos <coproscefalo@gmail.com>
17227 L:      platform-driver-x86@vger.kernel.org
17228 S:      Maintained
17229 F:      drivers/platform/x86/toshiba_haps.c
17230
17231 TOSHIBA SMM DRIVER
17232 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17233 S:      Maintained
17234 W:      http://www.buzzard.org.uk/toshiba/
17235 F:      drivers/char/toshiba.c
17236 F:      include/linux/toshiba.h
17237 F:      include/uapi/linux/toshiba.h
17238
17239 TOSHIBA TC358743 DRIVER
17240 M:      Mats Randgaard <matrandg@cisco.com>
17241 L:      linux-media@vger.kernel.org
17242 S:      Maintained
17243 F:      drivers/media/i2c/tc358743*
17244 F:      include/media/i2c/tc358743.h
17245
17246 TOSHIBA WMI HOTKEYS DRIVER
17247 M:      Azael Avalos <coproscefalo@gmail.com>
17248 L:      platform-driver-x86@vger.kernel.org
17249 S:      Maintained
17250 F:      drivers/platform/x86/toshiba-wmi.c
17251
17252 TPM DEVICE DRIVER
17253 M:      Peter Huewe <peterhuewe@gmx.de>
17254 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17255 R:      Jason Gunthorpe <jgg@ziepe.ca>
17256 L:      linux-integrity@vger.kernel.org
17257 S:      Maintained
17258 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17259 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17260 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17261 F:      drivers/char/tpm/
17262
17263 TRACING
17264 M:      Steven Rostedt <rostedt@goodmis.org>
17265 M:      Ingo Molnar <mingo@redhat.com>
17266 S:      Maintained
17267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17268 F:      Documentation/trace/ftrace.rst
17269 F:      arch/*/*/*/ftrace.h
17270 F:      arch/*/kernel/ftrace.c
17271 F:      include/*/ftrace.h
17272 F:      include/linux/trace*.h
17273 F:      include/trace/
17274 F:      kernel/trace/
17275 F:      tools/testing/selftests/ftrace/
17276
17277 TRACING MMIO ACCESSES (MMIOTRACE)
17278 M:      Steven Rostedt <rostedt@goodmis.org>
17279 M:      Ingo Molnar <mingo@kernel.org>
17280 R:      Karol Herbst <karolherbst@gmail.com>
17281 R:      Pekka Paalanen <ppaalanen@gmail.com>
17282 L:      linux-kernel@vger.kernel.org
17283 L:      nouveau@lists.freedesktop.org
17284 S:      Maintained
17285 F:      arch/x86/mm/kmmio.c
17286 F:      arch/x86/mm/mmio-mod.c
17287 F:      arch/x86/mm/testmmiotrace.c
17288 F:      include/linux/mmiotrace.h
17289 F:      kernel/trace/trace_mmiotrace.c
17290
17291 TRIVIAL PATCHES
17292 M:      Jiri Kosina <trivial@kernel.org>
17293 S:      Maintained
17294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17295 K:      ^Subject:.*(?i)trivial
17296
17297 TTY LAYER
17298 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17299 M:      Jiri Slaby <jslaby@suse.com>
17300 S:      Supported
17301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17302 F:      Documentation/driver-api/serial/
17303 F:      drivers/tty/
17304 F:      drivers/tty/serial/serial_core.c
17305 F:      include/linux/serial.h
17306 F:      include/linux/serial_core.h
17307 F:      include/linux/tty.h
17308 F:      include/uapi/linux/serial.h
17309 F:      include/uapi/linux/serial_core.h
17310 F:      include/uapi/linux/tty.h
17311
17312 TUA9001 MEDIA DRIVER
17313 M:      Antti Palosaari <crope@iki.fi>
17314 L:      linux-media@vger.kernel.org
17315 S:      Maintained
17316 W:      https://linuxtv.org
17317 W:      http://palosaari.fi/linux/
17318 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17319 T:      git git://linuxtv.org/anttip/media_tree.git
17320 F:      drivers/media/tuners/tua9001*
17321
17322 TULIP NETWORK DRIVERS
17323 L:      netdev@vger.kernel.org
17324 L:      linux-parisc@vger.kernel.org
17325 S:      Orphan
17326 F:      drivers/net/ethernet/dec/tulip/
17327
17328 TUN/TAP driver
17329 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17330 S:      Maintained
17331 W:      http://vtun.sourceforge.net/tun
17332 F:      Documentation/networking/tuntap.rst
17333 F:      arch/um/os-Linux/drivers/
17334
17335 TURBOCHANNEL SUBSYSTEM
17336 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17337 M:      Ralf Baechle <ralf@linux-mips.org>
17338 L:      linux-mips@vger.kernel.org
17339 S:      Maintained
17340 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17341 F:      drivers/tc/
17342 F:      include/linux/tc.h
17343
17344 TURBOSTAT UTILITY
17345 M:      "Len Brown" <lenb@kernel.org>
17346 L:      linux-pm@vger.kernel.org
17347 S:      Supported
17348 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17349 B:      https://bugzilla.kernel.org
17350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17351 F:      tools/power/x86/turbostat/
17352
17353 TW5864 VIDEO4LINUX DRIVER
17354 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17355 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17356 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17357 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17358 L:      linux-media@vger.kernel.org
17359 S:      Supported
17360 F:      drivers/media/pci/tw5864/
17361
17362 TW68 VIDEO4LINUX DRIVER
17363 M:      Hans Verkuil <hverkuil@xs4all.nl>
17364 L:      linux-media@vger.kernel.org
17365 S:      Odd Fixes
17366 W:      https://linuxtv.org
17367 T:      git git://linuxtv.org/media_tree.git
17368 F:      drivers/media/pci/tw68/
17369
17370 TW686X VIDEO4LINUX DRIVER
17371 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17372 L:      linux-media@vger.kernel.org
17373 S:      Maintained
17374 W:      http://linuxtv.org
17375 T:      git git://linuxtv.org/media_tree.git
17376 F:      drivers/media/pci/tw686x/
17377
17378 UACCE ACCELERATOR FRAMEWORK
17379 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17380 M:      Zhou Wang <wangzhou1@hisilicon.com>
17381 L:      linux-accelerators@lists.ozlabs.org
17382 L:      linux-kernel@vger.kernel.org
17383 S:      Maintained
17384 F:      Documentation/ABI/testing/sysfs-driver-uacce
17385 F:      Documentation/misc-devices/uacce.rst
17386 F:      drivers/misc/uacce/
17387 F:      include/linux/uacce.h
17388 F:      include/uapi/misc/uacce/
17389
17390 UBI FILE SYSTEM (UBIFS)
17391 M:      Richard Weinberger <richard@nod.at>
17392 L:      linux-mtd@lists.infradead.org
17393 S:      Supported
17394 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17397 F:      Documentation/filesystems/ubifs.rst
17398 F:      fs/ubifs/
17399
17400 UCLINUX (M68KNOMMU AND COLDFIRE)
17401 M:      Greg Ungerer <gerg@linux-m68k.org>
17402 L:      linux-m68k@lists.linux-m68k.org
17403 L:      uclinux-dev@uclinux.org  (subscribers-only)
17404 S:      Maintained
17405 W:      http://www.linux-m68k.org/
17406 W:      http://www.uclinux.org/
17407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17408 F:      arch/m68k/*/*_no.*
17409 F:      arch/m68k/68*/
17410 F:      arch/m68k/coldfire/
17411 F:      arch/m68k/include/asm/*_no.*
17412
17413 UDF FILESYSTEM
17414 M:      Jan Kara <jack@suse.com>
17415 S:      Maintained
17416 F:      Documentation/filesystems/udf.rst
17417 F:      fs/udf/
17418
17419 UDRAW TABLET
17420 M:      Bastien Nocera <hadess@hadess.net>
17421 L:      linux-input@vger.kernel.org
17422 S:      Maintained
17423 F:      drivers/hid/hid-udraw-ps3.c
17424
17425 UFS FILESYSTEM
17426 M:      Evgeniy Dushistov <dushistov@mail.ru>
17427 S:      Maintained
17428 F:      Documentation/admin-guide/ufs.rst
17429 F:      fs/ufs/
17430
17431 UHID USERSPACE HID IO DRIVER
17432 M:      David Herrmann <dh.herrmann@googlemail.com>
17433 L:      linux-input@vger.kernel.org
17434 S:      Maintained
17435 F:      drivers/hid/uhid.c
17436 F:      include/uapi/linux/uhid.h
17437
17438 ULPI BUS
17439 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17440 L:      linux-usb@vger.kernel.org
17441 S:      Maintained
17442 F:      drivers/usb/common/ulpi.c
17443 F:      include/linux/ulpi/
17444
17445 UNICODE SUBSYSTEM
17446 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17447 L:      linux-fsdevel@vger.kernel.org
17448 S:      Supported
17449 F:      fs/unicode/
17450
17451 UNICORE32 ARCHITECTURE
17452 M:      Guan Xuetao <gxt@pku.edu.cn>
17453 S:      Maintained
17454 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17455 T:      git git://github.com/gxt/linux.git
17456 F:      arch/unicore32/
17457
17458 UNIFDEF
17459 M:      Tony Finch <dot@dotat.at>
17460 S:      Maintained
17461 W:      http://dotat.at/prog/unifdef
17462 F:      scripts/unifdef.c
17463
17464 UNIFORM CDROM DRIVER
17465 M:      Jens Axboe <axboe@kernel.dk>
17466 S:      Maintained
17467 W:      http://www.kernel.dk
17468 F:      Documentation/cdrom/
17469 F:      drivers/cdrom/cdrom.c
17470 F:      include/linux/cdrom.h
17471 F:      include/uapi/linux/cdrom.h
17472
17473 UNISYS S-PAR DRIVERS
17474 M:      David Kershner <david.kershner@unisys.com>
17475 L:      sparmaintainer@unisys.com (Unisys internal)
17476 S:      Supported
17477 F:      drivers/staging/unisys/
17478 F:      drivers/visorbus/
17479 F:      include/linux/visorbus.h
17480
17481 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17482 R:      Alim Akhtar <alim.akhtar@samsung.com>
17483 R:      Avri Altman <avri.altman@wdc.com>
17484 L:      linux-scsi@vger.kernel.org
17485 S:      Supported
17486 F:      Documentation/scsi/ufs.rst
17487 F:      drivers/scsi/ufs/
17488
17489 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17490 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17491 L:      linux-scsi@vger.kernel.org
17492 S:      Supported
17493 F:      drivers/scsi/ufs/*dwc*
17494
17495 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17496 M:      Stanley Chu <stanley.chu@mediatek.com>
17497 L:      linux-scsi@vger.kernel.org
17498 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17499 S:      Maintained
17500 F:      drivers/scsi/ufs/ufs-mediatek*
17501
17502 UNSORTED BLOCK IMAGES (UBI)
17503 M:      Richard Weinberger <richard@nod.at>
17504 L:      linux-mtd@lists.infradead.org
17505 S:      Supported
17506 W:      http://www.linux-mtd.infradead.org/
17507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17509 F:      drivers/mtd/ubi/
17510 F:      include/linux/mtd/ubi.h
17511 F:      include/uapi/mtd/ubi-user.h
17512
17513 USB "USBNET" DRIVER FRAMEWORK
17514 M:      Oliver Neukum <oneukum@suse.com>
17515 L:      netdev@vger.kernel.org
17516 S:      Maintained
17517 W:      http://www.linux-usb.org/usbnet
17518 F:      drivers/net/usb/usbnet.c
17519 F:      include/linux/usb/usbnet.h
17520
17521 USB ACM DRIVER
17522 M:      Oliver Neukum <oneukum@suse.com>
17523 L:      linux-usb@vger.kernel.org
17524 S:      Maintained
17525 F:      Documentation/usb/acm.rst
17526 F:      drivers/usb/class/cdc-acm.*
17527
17528 USB APPLE MFI FASTCHARGE DRIVER
17529 M:      Bastien Nocera <hadess@hadess.net>
17530 L:      linux-usb@vger.kernel.org
17531 S:      Maintained
17532 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17533
17534 USB AR5523 WIRELESS DRIVER
17535 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17536 L:      linux-wireless@vger.kernel.org
17537 S:      Maintained
17538 F:      drivers/net/wireless/ath/ar5523/
17539
17540 USB ATTACHED SCSI
17541 M:      Oliver Neukum <oneukum@suse.com>
17542 L:      linux-usb@vger.kernel.org
17543 L:      linux-scsi@vger.kernel.org
17544 S:      Maintained
17545 F:      drivers/usb/storage/uas.c
17546
17547 USB CDC ETHERNET DRIVER
17548 M:      Oliver Neukum <oliver@neukum.org>
17549 L:      linux-usb@vger.kernel.org
17550 S:      Maintained
17551 F:      drivers/net/usb/cdc_*.c
17552 F:      include/uapi/linux/usb/cdc.h
17553
17554 USB CHAOSKEY DRIVER
17555 M:      Keith Packard <keithp@keithp.com>
17556 L:      linux-usb@vger.kernel.org
17557 S:      Maintained
17558 F:      drivers/usb/misc/chaoskey.c
17559
17560 USB CYPRESS C67X00 DRIVER
17561 M:      Peter Korsgaard <jacmet@sunsite.dk>
17562 L:      linux-usb@vger.kernel.org
17563 S:      Maintained
17564 F:      drivers/usb/c67x00/
17565
17566 USB DAVICOM DM9601 DRIVER
17567 M:      Peter Korsgaard <jacmet@sunsite.dk>
17568 L:      netdev@vger.kernel.org
17569 S:      Maintained
17570 W:      http://www.linux-usb.org/usbnet
17571 F:      drivers/net/usb/dm9601.c
17572
17573 USB EHCI DRIVER
17574 M:      Alan Stern <stern@rowland.harvard.edu>
17575 L:      linux-usb@vger.kernel.org
17576 S:      Maintained
17577 F:      Documentation/usb/ehci.rst
17578 F:      drivers/usb/host/ehci*
17579
17580 USB GADGET/PERIPHERAL SUBSYSTEM
17581 M:      Felipe Balbi <balbi@kernel.org>
17582 L:      linux-usb@vger.kernel.org
17583 S:      Maintained
17584 W:      http://www.linux-usb.org/gadget
17585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17586 F:      drivers/usb/gadget/
17587 F:      include/linux/usb/gadget*
17588
17589 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17590 M:      Jiri Kosina <jikos@kernel.org>
17591 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17592 L:      linux-usb@vger.kernel.org
17593 S:      Maintained
17594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17595 F:      Documentation/hid/hiddev.rst
17596 F:      drivers/hid/usbhid/
17597
17598 USB INTEL XHCI ROLE MUX DRIVER
17599 M:      Hans de Goede <hdegoede@redhat.com>
17600 L:      linux-usb@vger.kernel.org
17601 S:      Maintained
17602 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17603
17604 USB IP DRIVER FOR HISILICON KIRIN
17605 M:      Yu Chen <chenyu56@huawei.com>
17606 M:      Binghui Wang <wangbinghui@hisilicon.com>
17607 L:      linux-usb@vger.kernel.org
17608 S:      Maintained
17609 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17610 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17611
17612 USB ISP116X DRIVER
17613 M:      Olav Kongas <ok@artecdesign.ee>
17614 L:      linux-usb@vger.kernel.org
17615 S:      Maintained
17616 F:      drivers/usb/host/isp116x*
17617 F:      include/linux/usb/isp116x.h
17618
17619 USB LAN78XX ETHERNET DRIVER
17620 M:      Woojung Huh <woojung.huh@microchip.com>
17621 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17622 L:      netdev@vger.kernel.org
17623 S:      Maintained
17624 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17625 F:      drivers/net/usb/lan78xx.*
17626 F:      include/dt-bindings/net/microchip-lan78xx.h
17627
17628 USB MASS STORAGE DRIVER
17629 M:      Alan Stern <stern@rowland.harvard.edu>
17630 L:      linux-usb@vger.kernel.org
17631 L:      usb-storage@lists.one-eyed-alien.net
17632 S:      Maintained
17633 F:      drivers/usb/storage/
17634
17635 USB MIDI DRIVER
17636 M:      Clemens Ladisch <clemens@ladisch.de>
17637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17638 S:      Maintained
17639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17640 F:      sound/usb/midi.*
17641
17642 USB NETWORKING DRIVERS
17643 L:      linux-usb@vger.kernel.org
17644 S:      Odd Fixes
17645 F:      drivers/net/usb/
17646
17647 USB OHCI DRIVER
17648 M:      Alan Stern <stern@rowland.harvard.edu>
17649 L:      linux-usb@vger.kernel.org
17650 S:      Maintained
17651 F:      Documentation/usb/ohci.rst
17652 F:      drivers/usb/host/ohci*
17653
17654 USB OTG FSM (Finite State Machine)
17655 M:      Peter Chen <Peter.Chen@nxp.com>
17656 L:      linux-usb@vger.kernel.org
17657 S:      Maintained
17658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17659 F:      drivers/usb/common/usb-otg-fsm.c
17660
17661 USB OVER IP DRIVER
17662 M:      Valentina Manea <valentina.manea.m@gmail.com>
17663 M:      Shuah Khan <shuah@kernel.org>
17664 M:      Shuah Khan <skhan@linuxfoundation.org>
17665 L:      linux-usb@vger.kernel.org
17666 S:      Maintained
17667 F:      Documentation/usb/usbip_protocol.rst
17668 F:      drivers/usb/usbip/
17669 F:      tools/testing/selftests/drivers/usb/usbip/
17670 F:      tools/usb/usbip/
17671
17672 USB PEGASUS DRIVER
17673 M:      Petko Manolov <petkan@nucleusys.com>
17674 L:      linux-usb@vger.kernel.org
17675 L:      netdev@vger.kernel.org
17676 S:      Maintained
17677 W:      https://github.com/petkan/pegasus
17678 T:      git git://github.com/petkan/pegasus.git
17679 F:      drivers/net/usb/pegasus.*
17680
17681 USB PHY LAYER
17682 M:      Felipe Balbi <balbi@kernel.org>
17683 L:      linux-usb@vger.kernel.org
17684 S:      Maintained
17685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17686 F:      drivers/usb/phy/
17687
17688 USB PRINTER DRIVER (usblp)
17689 M:      Pete Zaitcev <zaitcev@redhat.com>
17690 L:      linux-usb@vger.kernel.org
17691 S:      Supported
17692 F:      drivers/usb/class/usblp.c
17693
17694 USB QMI WWAN NETWORK DRIVER
17695 M:      Bjørn Mork <bjorn@mork.no>
17696 L:      netdev@vger.kernel.org
17697 S:      Maintained
17698 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17699 F:      drivers/net/usb/qmi_wwan.c
17700
17701 USB RTL8150 DRIVER
17702 M:      Petko Manolov <petkan@nucleusys.com>
17703 L:      linux-usb@vger.kernel.org
17704 L:      netdev@vger.kernel.org
17705 S:      Maintained
17706 W:      https://github.com/petkan/rtl8150
17707 T:      git git://github.com/petkan/rtl8150.git
17708 F:      drivers/net/usb/rtl8150.c
17709
17710 USB SERIAL SUBSYSTEM
17711 M:      Johan Hovold <johan@kernel.org>
17712 L:      linux-usb@vger.kernel.org
17713 S:      Maintained
17714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17715 F:      Documentation/usb/usb-serial.rst
17716 F:      drivers/usb/serial/
17717 F:      include/linux/usb/serial.h
17718
17719 USB SMSC75XX ETHERNET DRIVER
17720 M:      Steve Glendinning <steve.glendinning@shawell.net>
17721 L:      netdev@vger.kernel.org
17722 S:      Maintained
17723 F:      drivers/net/usb/smsc75xx.*
17724
17725 USB SMSC95XX ETHERNET DRIVER
17726 M:      Steve Glendinning <steve.glendinning@shawell.net>
17727 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17728 L:      netdev@vger.kernel.org
17729 S:      Maintained
17730 F:      drivers/net/usb/smsc95xx.*
17731
17732 USB SUBSYSTEM
17733 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17734 L:      linux-usb@vger.kernel.org
17735 S:      Supported
17736 W:      http://www.linux-usb.org
17737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17738 F:      Documentation/devicetree/bindings/usb/
17739 F:      Documentation/usb/
17740 F:      drivers/usb/
17741 F:      include/linux/usb.h
17742 F:      include/linux/usb/
17743
17744 USB TYPEC BUS FOR ALTERNATE MODES
17745 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17746 L:      linux-usb@vger.kernel.org
17747 S:      Maintained
17748 F:      Documentation/ABI/testing/sysfs-bus-typec
17749 F:      Documentation/driver-api/usb/typec_bus.rst
17750 F:      drivers/usb/typec/altmodes/
17751 F:      include/linux/usb/typec_altmode.h
17752
17753 USB TYPEC CLASS
17754 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17755 L:      linux-usb@vger.kernel.org
17756 S:      Maintained
17757 F:      Documentation/ABI/testing/sysfs-class-typec
17758 F:      Documentation/driver-api/usb/typec.rst
17759 F:      drivers/usb/typec/
17760 F:      include/linux/usb/typec.h
17761
17762 USB TYPEC PI3USB30532 MUX DRIVER
17763 M:      Hans de Goede <hdegoede@redhat.com>
17764 L:      linux-usb@vger.kernel.org
17765 S:      Maintained
17766 F:      drivers/usb/typec/mux/pi3usb30532.c
17767
17768 USB TYPEC PORT CONTROLLER DRIVERS
17769 M:      Guenter Roeck <linux@roeck-us.net>
17770 L:      linux-usb@vger.kernel.org
17771 S:      Maintained
17772 F:      drivers/usb/typec/tcpm/
17773
17774 USB UHCI DRIVER
17775 M:      Alan Stern <stern@rowland.harvard.edu>
17776 L:      linux-usb@vger.kernel.org
17777 S:      Maintained
17778 F:      drivers/usb/host/uhci*
17779
17780 USB VIDEO CLASS
17781 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17782 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17783 L:      linux-media@vger.kernel.org
17784 S:      Maintained
17785 W:      http://www.ideasonboard.org/uvc/
17786 T:      git git://linuxtv.org/media_tree.git
17787 F:      drivers/media/usb/uvc/
17788 F:      include/uapi/linux/uvcvideo.h
17789
17790 USB VISION DRIVER
17791 M:      Hans Verkuil <hverkuil@xs4all.nl>
17792 L:      linux-media@vger.kernel.org
17793 S:      Odd Fixes
17794 W:      https://linuxtv.org
17795 T:      git git://linuxtv.org/media_tree.git
17796 F:      drivers/staging/media/usbvision/
17797
17798 USB WEBCAM GADGET
17799 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17800 L:      linux-usb@vger.kernel.org
17801 S:      Maintained
17802 F:      drivers/usb/gadget/function/*uvc*
17803 F:      drivers/usb/gadget/legacy/webcam.c
17804 F:      include/uapi/linux/usb/g_uvc.h
17805
17806 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17807 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17808 L:      linux-wireless@vger.kernel.org
17809 S:      Maintained
17810 F:      drivers/net/wireless/rndis_wlan.c
17811
17812 USB XHCI DRIVER
17813 M:      Mathias Nyman <mathias.nyman@intel.com>
17814 L:      linux-usb@vger.kernel.org
17815 S:      Supported
17816 F:      drivers/usb/host/pci-quirks*
17817 F:      drivers/usb/host/xhci*
17818
17819 USB ZD1201 DRIVER
17820 L:      linux-wireless@vger.kernel.org
17821 S:      Orphan
17822 W:      http://linux-lc100020.sourceforge.net
17823 F:      drivers/net/wireless/zydas/zd1201.*
17824
17825 USB ZR364XX DRIVER
17826 M:      Antoine Jacquet <royale@zerezo.com>
17827 L:      linux-usb@vger.kernel.org
17828 L:      linux-media@vger.kernel.org
17829 S:      Maintained
17830 W:      http://royale.zerezo.com/zr364xx/
17831 T:      git git://linuxtv.org/media_tree.git
17832 F:      Documentation/admin-guide/media/zr364xx*
17833 F:      drivers/media/usb/zr364xx/
17834
17835 USER-MODE LINUX (UML)
17836 M:      Jeff Dike <jdike@addtoit.com>
17837 M:      Richard Weinberger <richard@nod.at>
17838 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17839 L:      linux-um@lists.infradead.org
17840 S:      Maintained
17841 W:      http://user-mode-linux.sourceforge.net
17842 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17844 F:      Documentation/virt/uml/
17845 F:      arch/um/
17846 F:      arch/x86/um/
17847 F:      fs/hostfs/
17848
17849 USERSPACE COPYIN/COPYOUT (UIOVEC)
17850 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17851 S:      Maintained
17852 F:      include/linux/uio.h
17853 F:      lib/iov_iter.c
17854
17855 USERSPACE DMA BUFFER DRIVER
17856 M:      Gerd Hoffmann <kraxel@redhat.com>
17857 L:      dri-devel@lists.freedesktop.org
17858 S:      Maintained
17859 T:      git git://anongit.freedesktop.org/drm/drm-misc
17860 F:      drivers/dma-buf/udmabuf.c
17861 F:      include/uapi/linux/udmabuf.h
17862
17863 USERSPACE I/O (UIO)
17864 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17865 S:      Maintained
17866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17867 F:      Documentation/driver-api/uio-howto.rst
17868 F:      drivers/uio/
17869 F:      include/linux/uio_driver.h
17870
17871 UTIL-LINUX PACKAGE
17872 M:      Karel Zak <kzak@redhat.com>
17873 L:      util-linux@vger.kernel.org
17874 S:      Maintained
17875 W:      http://en.wikipedia.org/wiki/Util-linux
17876 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17877
17878 UUID HELPERS
17879 M:      Christoph Hellwig <hch@lst.de>
17880 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17881 L:      linux-kernel@vger.kernel.org
17882 S:      Maintained
17883 T:      git git://git.infradead.org/users/hch/uuid.git
17884 F:      include/linux/uuid.h
17885 F:      include/uapi/linux/uuid.h
17886 F:      lib/test_uuid.c
17887 F:      lib/uuid.c
17888
17889 UVESAFB DRIVER
17890 M:      Michal Januszewski <spock@gentoo.org>
17891 L:      linux-fbdev@vger.kernel.org
17892 S:      Maintained
17893 W:      https://github.com/mjanusz/v86d
17894 F:      Documentation/fb/uvesafb.rst
17895 F:      drivers/video/fbdev/uvesafb.*
17896
17897 Ux500 CLOCK DRIVERS
17898 M:      Ulf Hansson <ulf.hansson@linaro.org>
17899 L:      linux-clk@vger.kernel.org
17900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17901 S:      Maintained
17902 F:      drivers/clk/ux500/
17903
17904 VF610 NAND DRIVER
17905 M:      Stefan Agner <stefan@agner.ch>
17906 L:      linux-mtd@lists.infradead.org
17907 S:      Supported
17908 F:      drivers/mtd/nand/raw/vf610_nfc.c
17909
17910 VFAT/FAT/MSDOS FILESYSTEM
17911 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17912 S:      Maintained
17913 F:      Documentation/filesystems/vfat.rst
17914 F:      fs/fat/
17915
17916 VFIO DRIVER
17917 M:      Alex Williamson <alex.williamson@redhat.com>
17918 R:      Cornelia Huck <cohuck@redhat.com>
17919 L:      kvm@vger.kernel.org
17920 S:      Maintained
17921 T:      git git://github.com/awilliam/linux-vfio.git
17922 F:      Documentation/driver-api/vfio.rst
17923 F:      drivers/vfio/
17924 F:      include/linux/vfio.h
17925 F:      include/uapi/linux/vfio.h
17926
17927 VFIO MEDIATED DEVICE DRIVERS
17928 M:      Kirti Wankhede <kwankhede@nvidia.com>
17929 L:      kvm@vger.kernel.org
17930 S:      Maintained
17931 F:      Documentation/driver-api/vfio-mediated-device.rst
17932 F:      drivers/vfio/mdev/
17933 F:      include/linux/mdev.h
17934 F:      samples/vfio-mdev/
17935
17936 VFIO PLATFORM DRIVER
17937 M:      Eric Auger <eric.auger@redhat.com>
17938 L:      kvm@vger.kernel.org
17939 S:      Maintained
17940 F:      drivers/vfio/platform/
17941
17942 VGA_SWITCHEROO
17943 R:      Lukas Wunner <lukas@wunner.de>
17944 S:      Maintained
17945 T:      git git://anongit.freedesktop.org/drm/drm-misc
17946 F:      Documentation/gpu/vga-switcheroo.rst
17947 F:      drivers/gpu/vga/vga_switcheroo.c
17948 F:      include/linux/vga_switcheroo.h
17949
17950 VIA RHINE NETWORK DRIVER
17951 S:      Orphan
17952 F:      drivers/net/ethernet/via/via-rhine.c
17953
17954 VIA SD/MMC CARD CONTROLLER DRIVER
17955 M:      Bruce Chang <brucechang@via.com.tw>
17956 M:      Harald Welte <HaraldWelte@viatech.com>
17957 S:      Maintained
17958 F:      drivers/mmc/host/via-sdmmc.c
17959
17960 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17961 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17962 L:      linux-fbdev@vger.kernel.org
17963 S:      Maintained
17964 F:      drivers/video/fbdev/via/
17965 F:      include/linux/via-core.h
17966 F:      include/linux/via-gpio.h
17967 F:      include/linux/via_i2c.h
17968
17969 VIA VELOCITY NETWORK DRIVER
17970 M:      Francois Romieu <romieu@fr.zoreil.com>
17971 L:      netdev@vger.kernel.org
17972 S:      Maintained
17973 F:      drivers/net/ethernet/via/via-velocity.*
17974
17975 VICODEC VIRTUAL CODEC DRIVER
17976 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17977 L:      linux-media@vger.kernel.org
17978 S:      Maintained
17979 W:      https://linuxtv.org
17980 T:      git git://linuxtv.org/media_tree.git
17981 F:      drivers/media/test-drivers/vicodec/*
17982
17983 VIDEO I2C POLLING DRIVER
17984 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17985 L:      linux-media@vger.kernel.org
17986 S:      Maintained
17987 F:      drivers/media/i2c/video-i2c.c
17988
17989 VIDEO MULTIPLEXER DRIVER
17990 M:      Philipp Zabel <p.zabel@pengutronix.de>
17991 L:      linux-media@vger.kernel.org
17992 S:      Maintained
17993 F:      drivers/media/platform/video-mux.c
17994
17995 VIDEOBUF2 FRAMEWORK
17996 M:      Pawel Osciak <pawel@osciak.com>
17997 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17998 M:      Kyungmin Park <kyungmin.park@samsung.com>
17999 R:      Tomasz Figa <tfiga@chromium.org>
18000 L:      linux-media@vger.kernel.org
18001 S:      Maintained
18002 F:      drivers/media/common/videobuf2/*
18003 F:      include/media/videobuf2-*
18004
18005 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
18006 M:      Helen Koike <helen.koike@collabora.com>
18007 R:      Shuah Khan <skhan@linuxfoundation.org>
18008 L:      linux-media@vger.kernel.org
18009 S:      Maintained
18010 W:      https://linuxtv.org
18011 T:      git git://linuxtv.org/media_tree.git
18012 F:      drivers/media/test-drivers/vimc/*
18013
18014 VIRT LIB
18015 M:      Alex Williamson <alex.williamson@redhat.com>
18016 M:      Paolo Bonzini <pbonzini@redhat.com>
18017 L:      kvm@vger.kernel.org
18018 S:      Supported
18019 F:      virt/lib/
18020
18021 VIRTIO AND VHOST VSOCK DRIVER
18022 M:      Stefan Hajnoczi <stefanha@redhat.com>
18023 M:      Stefano Garzarella <sgarzare@redhat.com>
18024 L:      kvm@vger.kernel.org
18025 L:      virtualization@lists.linux-foundation.org
18026 L:      netdev@vger.kernel.org
18027 S:      Maintained
18028 F:      drivers/net/vsockmon.c
18029 F:      drivers/vhost/vsock.c
18030 F:      include/linux/virtio_vsock.h
18031 F:      include/uapi/linux/virtio_vsock.h
18032 F:      include/uapi/linux/vm_sockets_diag.h
18033 F:      include/uapi/linux/vsockmon.h
18034 F:      net/vmw_vsock/af_vsock_tap.c
18035 F:      net/vmw_vsock/diag.c
18036 F:      net/vmw_vsock/virtio_transport.c
18037 F:      net/vmw_vsock/virtio_transport_common.c
18038 F:      net/vmw_vsock/vsock_loopback.c
18039 F:      tools/testing/vsock/
18040
18041 VIRTIO BLOCK AND SCSI DRIVERS
18042 M:      "Michael S. Tsirkin" <mst@redhat.com>
18043 M:      Jason Wang <jasowang@redhat.com>
18044 R:      Paolo Bonzini <pbonzini@redhat.com>
18045 R:      Stefan Hajnoczi <stefanha@redhat.com>
18046 L:      virtualization@lists.linux-foundation.org
18047 S:      Maintained
18048 F:      drivers/block/virtio_blk.c
18049 F:      drivers/scsi/virtio_scsi.c
18050 F:      drivers/vhost/scsi.c
18051 F:      include/uapi/linux/virtio_blk.h
18052 F:      include/uapi/linux/virtio_scsi.h
18053
18054 VIRTIO CONSOLE DRIVER
18055 M:      Amit Shah <amit@kernel.org>
18056 L:      virtualization@lists.linux-foundation.org
18057 S:      Maintained
18058 F:      drivers/char/virtio_console.c
18059 F:      include/linux/virtio_console.h
18060 F:      include/uapi/linux/virtio_console.h
18061
18062 VIRTIO CORE AND NET DRIVERS
18063 M:      "Michael S. Tsirkin" <mst@redhat.com>
18064 M:      Jason Wang <jasowang@redhat.com>
18065 L:      virtualization@lists.linux-foundation.org
18066 S:      Maintained
18067 F:      Documentation/devicetree/bindings/virtio/
18068 F:      drivers/block/virtio_blk.c
18069 F:      drivers/crypto/virtio/
18070 F:      drivers/net/virtio_net.c
18071 F:      drivers/vdpa/
18072 F:      drivers/virtio/
18073 F:      include/linux/vdpa.h
18074 F:      include/linux/virtio*.h
18075 F:      include/uapi/linux/virtio_*.h
18076 F:      mm/balloon_compaction.c
18077 F:      tools/virtio/
18078
18079 VIRTIO CRYPTO DRIVER
18080 M:      Gonglei <arei.gonglei@huawei.com>
18081 L:      virtualization@lists.linux-foundation.org
18082 L:      linux-crypto@vger.kernel.org
18083 S:      Maintained
18084 F:      drivers/crypto/virtio/
18085 F:      include/uapi/linux/virtio_crypto.h
18086
18087 VIRTIO DRIVERS FOR S390
18088 M:      Cornelia Huck <cohuck@redhat.com>
18089 M:      Halil Pasic <pasic@linux.ibm.com>
18090 L:      linux-s390@vger.kernel.org
18091 L:      virtualization@lists.linux-foundation.org
18092 L:      kvm@vger.kernel.org
18093 S:      Supported
18094 F:      arch/s390/include/uapi/asm/virtio-ccw.h
18095 F:      drivers/s390/virtio/
18096
18097 VIRTIO FILE SYSTEM
18098 M:      Vivek Goyal <vgoyal@redhat.com>
18099 M:      Stefan Hajnoczi <stefanha@redhat.com>
18100 M:      Miklos Szeredi <miklos@szeredi.hu>
18101 L:      virtualization@lists.linux-foundation.org
18102 L:      linux-fsdevel@vger.kernel.org
18103 S:      Supported
18104 W:      https://virtio-fs.gitlab.io/
18105 F:      Documentation/filesystems/virtiofs.rst
18106 F:      fs/fuse/virtio_fs.c
18107 F:      include/uapi/linux/virtio_fs.h
18108
18109 VIRTIO GPU DRIVER
18110 M:      David Airlie <airlied@linux.ie>
18111 M:      Gerd Hoffmann <kraxel@redhat.com>
18112 L:      dri-devel@lists.freedesktop.org
18113 L:      virtualization@lists.linux-foundation.org
18114 S:      Maintained
18115 T:      git git://anongit.freedesktop.org/drm/drm-misc
18116 F:      drivers/gpu/drm/virtio/
18117 F:      include/uapi/linux/virtio_gpu.h
18118
18119 VIRTIO HOST (VHOST)
18120 M:      "Michael S. Tsirkin" <mst@redhat.com>
18121 M:      Jason Wang <jasowang@redhat.com>
18122 L:      kvm@vger.kernel.org
18123 L:      virtualization@lists.linux-foundation.org
18124 L:      netdev@vger.kernel.org
18125 S:      Maintained
18126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
18127 F:      drivers/vhost/
18128 F:      include/linux/vhost_iotlb.h
18129 F:      include/uapi/linux/vhost.h
18130
18131 VIRTIO INPUT DRIVER
18132 M:      Gerd Hoffmann <kraxel@redhat.com>
18133 S:      Maintained
18134 F:      drivers/virtio/virtio_input.c
18135 F:      include/uapi/linux/virtio_input.h
18136
18137 VIRTIO IOMMU DRIVER
18138 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
18139 L:      virtualization@lists.linux-foundation.org
18140 S:      Maintained
18141 F:      drivers/iommu/virtio-iommu.c
18142 F:      include/uapi/linux/virtio_iommu.h
18143
18144 VIRTUAL BOX GUEST DEVICE DRIVER
18145 M:      Hans de Goede <hdegoede@redhat.com>
18146 M:      Arnd Bergmann <arnd@arndb.de>
18147 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18148 S:      Maintained
18149 F:      drivers/virt/vboxguest/
18150 F:      include/linux/vbox_utils.h
18151 F:      include/uapi/linux/vbox*.h
18152
18153 VIRTUAL BOX SHARED FOLDER VFS DRIVER
18154 M:      Hans de Goede <hdegoede@redhat.com>
18155 L:      linux-fsdevel@vger.kernel.org
18156 S:      Maintained
18157 F:      fs/vboxsf/*
18158
18159 VIRTUAL SERIO DEVICE DRIVER
18160 M:      Stephen Chandler Paul <thatslyude@gmail.com>
18161 S:      Maintained
18162 F:      drivers/input/serio/userio.c
18163 F:      include/uapi/linux/userio.h
18164
18165 VITESSE FELIX ETHERNET SWITCH DRIVER
18166 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
18167 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
18168 L:      netdev@vger.kernel.org
18169 S:      Maintained
18170 F:      drivers/net/dsa/ocelot/*
18171 F:      net/dsa/tag_ocelot.c
18172
18173 VIVID VIRTUAL VIDEO DRIVER
18174 M:      Hans Verkuil <hverkuil@xs4all.nl>
18175 L:      linux-media@vger.kernel.org
18176 S:      Maintained
18177 W:      https://linuxtv.org
18178 T:      git git://linuxtv.org/media_tree.git
18179 F:      drivers/media/test-drivers/vivid/*
18180
18181 VLYNQ BUS
18182 M:      Florian Fainelli <f.fainelli@gmail.com>
18183 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18184 S:      Maintained
18185 F:      drivers/vlynq/vlynq.c
18186 F:      include/linux/vlynq.h
18187
18188 VME SUBSYSTEM
18189 M:      Martyn Welch <martyn@welchs.me.uk>
18190 M:      Manohar Vanga <manohar.vanga@gmail.com>
18191 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18192 L:      devel@driverdev.osuosl.org
18193 S:      Maintained
18194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18195 F:      Documentation/driver-api/vme.rst
18196 F:      drivers/staging/vme/
18197 F:      drivers/vme/
18198 F:      include/linux/vme*
18199
18200 VMWARE BALLOON DRIVER
18201 M:      Nadav Amit <namit@vmware.com>
18202 M:      "VMware, Inc." <pv-drivers@vmware.com>
18203 L:      linux-kernel@vger.kernel.org
18204 S:      Maintained
18205 F:      drivers/misc/vmw_balloon.c
18206
18207 VMWARE HYPERVISOR INTERFACE
18208 M:      Thomas Hellstrom <thellstrom@vmware.com>
18209 M:      "VMware, Inc." <pv-drivers@vmware.com>
18210 L:      virtualization@lists.linux-foundation.org
18211 S:      Supported
18212 F:      arch/x86/include/asm/vmware.h
18213 F:      arch/x86/kernel/cpu/vmware.c
18214
18215 VMWARE PVRDMA DRIVER
18216 M:      Adit Ranadive <aditr@vmware.com>
18217 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18218 L:      linux-rdma@vger.kernel.org
18219 S:      Maintained
18220 F:      drivers/infiniband/hw/vmw_pvrdma/
18221
18222 VMware PVSCSI driver
18223 M:      Jim Gill <jgill@vmware.com>
18224 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18225 L:      linux-scsi@vger.kernel.org
18226 S:      Maintained
18227 F:      drivers/scsi/vmw_pvscsi.c
18228 F:      drivers/scsi/vmw_pvscsi.h
18229
18230 VMWARE VIRTUAL PTP CLOCK DRIVER
18231 M:      Vivek Thampi <vithampi@vmware.com>
18232 M:      "VMware, Inc." <pv-drivers@vmware.com>
18233 L:      netdev@vger.kernel.org
18234 S:      Supported
18235 F:      drivers/ptp/ptp_vmw.c
18236
18237 VMWARE VMMOUSE SUBDRIVER
18238 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18239 M:      "VMware, Inc." <pv-drivers@vmware.com>
18240 L:      linux-input@vger.kernel.org
18241 S:      Maintained
18242 F:      drivers/input/mouse/vmmouse.c
18243 F:      drivers/input/mouse/vmmouse.h
18244
18245 VMWARE VMXNET3 ETHERNET DRIVER
18246 M:      Ronak Doshi <doshir@vmware.com>
18247 M:      "VMware, Inc." <pv-drivers@vmware.com>
18248 L:      netdev@vger.kernel.org
18249 S:      Maintained
18250 F:      drivers/net/vmxnet3/
18251
18252 VOCORE VOCORE2 BOARD
18253 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18254 L:      linux-mips@vger.kernel.org
18255 S:      Maintained
18256 F:      arch/mips/boot/dts/ralink/vocore2.dts
18257
18258 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18259 M:      Liam Girdwood <lgirdwood@gmail.com>
18260 M:      Mark Brown <broonie@kernel.org>
18261 L:      linux-kernel@vger.kernel.org
18262 S:      Supported
18263 W:      http://www.slimlogic.co.uk/?p=48
18264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18265 F:      Documentation/devicetree/bindings/regulator/
18266 F:      Documentation/power/regulator/
18267 F:      drivers/regulator/
18268 F:      include/dt-bindings/regulator/
18269 F:      include/linux/regulator/
18270 K:      regulator_get_optional
18271
18272 VRF
18273 M:      David Ahern <dsahern@kernel.org>
18274 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18275 L:      netdev@vger.kernel.org
18276 S:      Maintained
18277 F:      Documentation/networking/vrf.rst
18278 F:      drivers/net/vrf.c
18279
18280 VSPRINTF
18281 M:      Petr Mladek <pmladek@suse.com>
18282 M:      Steven Rostedt <rostedt@goodmis.org>
18283 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18284 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18285 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18286 S:      Maintained
18287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18288 F:      Documentation/core-api/printk-formats.rst
18289 F:      lib/test_printf.c
18290 F:      lib/vsprintf.c
18291
18292 VT1211 HARDWARE MONITOR DRIVER
18293 M:      Juerg Haefliger <juergh@gmail.com>
18294 L:      linux-hwmon@vger.kernel.org
18295 S:      Maintained
18296 F:      Documentation/hwmon/vt1211.rst
18297 F:      drivers/hwmon/vt1211.c
18298
18299 VT8231 HARDWARE MONITOR DRIVER
18300 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18301 L:      linux-hwmon@vger.kernel.org
18302 S:      Maintained
18303 F:      drivers/hwmon/vt8231.c
18304
18305 VUB300 USB to SDIO/SD/MMC bridge chip
18306 L:      linux-mmc@vger.kernel.org
18307 S:      Orphan
18308 F:      drivers/mmc/host/vub300.c
18309
18310 W1 DALLAS'S 1-WIRE BUS
18311 M:      Evgeniy Polyakov <zbr@ioremap.net>
18312 S:      Maintained
18313 F:      Documentation/devicetree/bindings/w1/
18314 F:      Documentation/w1/
18315 F:      drivers/w1/
18316 F:      include/linux/w1.h
18317
18318 W83791D HARDWARE MONITORING DRIVER
18319 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18320 L:      linux-hwmon@vger.kernel.org
18321 S:      Maintained
18322 F:      Documentation/hwmon/w83791d.rst
18323 F:      drivers/hwmon/w83791d.c
18324
18325 W83793 HARDWARE MONITORING DRIVER
18326 M:      Rudolf Marek <r.marek@assembler.cz>
18327 L:      linux-hwmon@vger.kernel.org
18328 S:      Maintained
18329 F:      Documentation/hwmon/w83793.rst
18330 F:      drivers/hwmon/w83793.c
18331
18332 W83795 HARDWARE MONITORING DRIVER
18333 M:      Jean Delvare <jdelvare@suse.com>
18334 L:      linux-hwmon@vger.kernel.org
18335 S:      Maintained
18336 F:      drivers/hwmon/w83795.c
18337
18338 W83L51xD SD/MMC CARD INTERFACE DRIVER
18339 M:      Pierre Ossman <pierre@ossman.eu>
18340 S:      Maintained
18341 F:      drivers/mmc/host/wbsd.*
18342
18343 WACOM PROTOCOL 4 SERIAL TABLETS
18344 M:      Julian Squires <julian@cipht.net>
18345 M:      Hans de Goede <hdegoede@redhat.com>
18346 L:      linux-input@vger.kernel.org
18347 S:      Maintained
18348 F:      drivers/input/tablet/wacom_serial4.c
18349
18350 WATCHDOG DEVICE DRIVERS
18351 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18352 M:      Guenter Roeck <linux@roeck-us.net>
18353 L:      linux-watchdog@vger.kernel.org
18354 S:      Maintained
18355 W:      http://www.linux-watchdog.org/
18356 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18357 F:      Documentation/devicetree/bindings/watchdog/
18358 F:      Documentation/watchdog/
18359 F:      drivers/watchdog/
18360 F:      include/linux/watchdog.h
18361 F:      include/uapi/linux/watchdog.h
18362
18363 WHISKEYCOVE PMIC GPIO DRIVER
18364 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18365 L:      linux-gpio@vger.kernel.org
18366 S:      Maintained
18367 F:      drivers/gpio/gpio-wcove.c
18368
18369 WHWAVE RTC DRIVER
18370 M:      Dianlong Li <long17.cool@163.com>
18371 L:      linux-rtc@vger.kernel.org
18372 S:      Maintained
18373 F:      drivers/rtc/rtc-sd3078.c
18374
18375 WIIMOTE HID DRIVER
18376 M:      David Herrmann <dh.herrmann@googlemail.com>
18377 L:      linux-input@vger.kernel.org
18378 S:      Maintained
18379 F:      drivers/hid/hid-wiimote*
18380
18381 WILOCITY WIL6210 WIRELESS DRIVER
18382 M:      Maya Erez <merez@codeaurora.org>
18383 L:      linux-wireless@vger.kernel.org
18384 L:      wil6210@qti.qualcomm.com
18385 S:      Supported
18386 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
18387 F:      drivers/net/wireless/ath/wil6210/
18388
18389 WIMAX STACK
18390 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18391 M:      linux-wimax@intel.com
18392 L:      wimax@linuxwimax.org (subscribers-only)
18393 S:      Supported
18394 W:      http://linuxwimax.org
18395 F:      Documentation/admin-guide/wimax/wimax.rst
18396 F:      include/linux/wimax/debug.h
18397 F:      include/net/wimax.h
18398 F:      include/uapi/linux/wimax.h
18399 F:      net/wimax/
18400
18401 WINBOND CIR DRIVER
18402 M:      David Härdeman <david@hardeman.nu>
18403 S:      Maintained
18404 F:      drivers/media/rc/winbond-cir.c
18405
18406 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18407 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18408 L:      linux-watchdog@vger.kernel.org
18409 S:      Maintained
18410 F:      drivers/watchdog/ebc-c384_wdt.c
18411
18412 WINSYSTEMS WS16C48 GPIO DRIVER
18413 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18414 L:      linux-gpio@vger.kernel.org
18415 S:      Maintained
18416 F:      drivers/gpio/gpio-ws16c48.c
18417
18418 WIREGUARD SECURE NETWORK TUNNEL
18419 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18420 L:      wireguard@lists.zx2c4.com
18421 L:      netdev@vger.kernel.org
18422 S:      Maintained
18423 F:      drivers/net/wireguard/
18424 F:      tools/testing/selftests/wireguard/
18425
18426 WISTRON LAPTOP BUTTON DRIVER
18427 M:      Miloslav Trmac <mitr@volny.cz>
18428 S:      Maintained
18429 F:      drivers/input/misc/wistron_btns.c
18430
18431 WL3501 WIRELESS PCMCIA CARD DRIVER
18432 L:      linux-wireless@vger.kernel.org
18433 S:      Odd fixes
18434 F:      drivers/net/wireless/wl3501*
18435
18436 WOLFSON MICROELECTRONICS DRIVERS
18437 L:      patches@opensource.cirrus.com
18438 S:      Supported
18439 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18440 T:      git https://github.com/CirrusLogic/linux-drivers.git
18441 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
18442 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
18443 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18444 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
18445 F:      Documentation/devicetree/bindings/sound/wlf,arizona.yaml
18446 F:      Documentation/hwmon/wm83??.rst
18447 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18448 F:      drivers/clk/clk-wm83*.c
18449 F:      drivers/extcon/extcon-arizona.c
18450 F:      drivers/gpio/gpio-*wm*.c
18451 F:      drivers/gpio/gpio-arizona.c
18452 F:      drivers/hwmon/wm83??-hwmon.c
18453 F:      drivers/input/misc/wm831x-on.c
18454 F:      drivers/input/touchscreen/wm831x-ts.c
18455 F:      drivers/input/touchscreen/wm97*.c
18456 F:      drivers/leds/leds-wm83*.c
18457 F:      drivers/mfd/arizona*
18458 F:      drivers/mfd/cs47l24*
18459 F:      drivers/mfd/wm*.c
18460 F:      drivers/power/supply/wm83*.c
18461 F:      drivers/regulator/arizona*
18462 F:      drivers/regulator/wm8*.c
18463 F:      drivers/rtc/rtc-wm83*.c
18464 F:      drivers/video/backlight/wm83*_bl.c
18465 F:      drivers/watchdog/wm83*_wdt.c
18466 F:      include/linux/mfd/arizona/
18467 F:      include/linux/mfd/wm831x/
18468 F:      include/linux/mfd/wm8350/
18469 F:      include/linux/mfd/wm8400*
18470 F:      include/linux/regulator/arizona*
18471 F:      include/linux/wm97xx.h
18472 F:      include/sound/wm????.h
18473 F:      sound/soc/codecs/arizona.?
18474 F:      sound/soc/codecs/cs47l24*
18475 F:      sound/soc/codecs/wm*
18476
18477 WORKQUEUE
18478 M:      Tejun Heo <tj@kernel.org>
18479 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18480 S:      Maintained
18481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18482 F:      Documentation/core-api/workqueue.rst
18483 F:      include/linux/workqueue.h
18484 F:      kernel/workqueue.c
18485
18486 X-POWERS AXP288 PMIC DRIVERS
18487 M:      Hans de Goede <hdegoede@redhat.com>
18488 S:      Maintained
18489 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18490 N:      axp288
18491
18492 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18493 M:      Chen-Yu Tsai <wens@csie.org>
18494 L:      linux-kernel@vger.kernel.org
18495 S:      Maintained
18496 N:      axp[128]
18497
18498 X.25 NETWORK LAYER
18499 M:      Andrew Hendry <andrew.hendry@gmail.com>
18500 L:      linux-x25@vger.kernel.org
18501 S:      Odd Fixes
18502 F:      Documentation/networking/x25*
18503 F:      include/net/x25*
18504 F:      net/x25/
18505
18506 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18507 M:      Thomas Gleixner <tglx@linutronix.de>
18508 M:      Ingo Molnar <mingo@redhat.com>
18509 M:      Borislav Petkov <bp@alien8.de>
18510 M:      x86@kernel.org
18511 R:      "H. Peter Anvin" <hpa@zytor.com>
18512 L:      linux-kernel@vger.kernel.org
18513 S:      Maintained
18514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18515 F:      Documentation/devicetree/bindings/x86/
18516 F:      Documentation/x86/
18517 F:      arch/x86/
18518
18519 X86 ENTRY CODE
18520 M:      Andy Lutomirski <luto@kernel.org>
18521 L:      linux-kernel@vger.kernel.org
18522 S:      Maintained
18523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18524 F:      arch/x86/entry/
18525
18526 X86 MCE INFRASTRUCTURE
18527 M:      Tony Luck <tony.luck@intel.com>
18528 M:      Borislav Petkov <bp@alien8.de>
18529 L:      linux-edac@vger.kernel.org
18530 S:      Maintained
18531 F:      arch/x86/kernel/cpu/mce/*
18532
18533 X86 MICROCODE UPDATE SUPPORT
18534 M:      Borislav Petkov <bp@alien8.de>
18535 S:      Maintained
18536 F:      arch/x86/kernel/cpu/microcode/*
18537
18538 X86 MM
18539 M:      Dave Hansen <dave.hansen@linux.intel.com>
18540 M:      Andy Lutomirski <luto@kernel.org>
18541 M:      Peter Zijlstra <peterz@infradead.org>
18542 L:      linux-kernel@vger.kernel.org
18543 S:      Maintained
18544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18545 F:      arch/x86/mm/
18546
18547 X86 PLATFORM DRIVERS
18548 M:      Darren Hart <dvhart@infradead.org>
18549 M:      Andy Shevchenko <andy@infradead.org>
18550 L:      platform-driver-x86@vger.kernel.org
18551 S:      Odd Fixes
18552 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18553 F:      drivers/platform/olpc/
18554 F:      drivers/platform/x86/
18555
18556 X86 PLATFORM DRIVERS - ARCH
18557 R:      Darren Hart <dvhart@infradead.org>
18558 R:      Andy Shevchenko <andy@infradead.org>
18559 L:      platform-driver-x86@vger.kernel.org
18560 L:      x86@kernel.org
18561 S:      Maintained
18562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18563 F:      arch/x86/platform
18564
18565 X86 VDSO
18566 M:      Andy Lutomirski <luto@kernel.org>
18567 L:      linux-kernel@vger.kernel.org
18568 S:      Maintained
18569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18570 F:      arch/x86/entry/vdso/
18571
18572 XARRAY
18573 M:      Matthew Wilcox <willy@infradead.org>
18574 L:      linux-fsdevel@vger.kernel.org
18575 S:      Supported
18576 F:      Documentation/core-api/xarray.rst
18577 F:      include/linux/idr.h
18578 F:      include/linux/xarray.h
18579 F:      lib/idr.c
18580 F:      lib/xarray.c
18581 F:      tools/testing/radix-tree
18582
18583 XBOX DVD IR REMOTE
18584 M:      Benjamin Valentin <benpicco@googlemail.com>
18585 S:      Maintained
18586 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18587 F:      drivers/media/rc/xbox_remote.c
18588
18589 XC2028/3028 TUNER DRIVER
18590 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18591 L:      linux-media@vger.kernel.org
18592 S:      Maintained
18593 W:      https://linuxtv.org
18594 T:      git git://linuxtv.org/media_tree.git
18595 F:      drivers/media/tuners/tuner-xc2028.*
18596
18597 XDP (eXpress Data Path)
18598 M:      Alexei Starovoitov <ast@kernel.org>
18599 M:      Daniel Borkmann <daniel@iogearbox.net>
18600 M:      David S. Miller <davem@davemloft.net>
18601 M:      Jakub Kicinski <kuba@kernel.org>
18602 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18603 M:      John Fastabend <john.fastabend@gmail.com>
18604 L:      netdev@vger.kernel.org
18605 L:      bpf@vger.kernel.org
18606 S:      Supported
18607 F:      include/net/xdp.h
18608 F:      include/trace/events/xdp.h
18609 F:      kernel/bpf/cpumap.c
18610 F:      kernel/bpf/devmap.c
18611 F:      net/core/xdp.c
18612 N:      xdp
18613 K:      xdp
18614
18615 XDP SOCKETS (AF_XDP)
18616 M:      Björn Töpel <bjorn.topel@intel.com>
18617 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18618 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18619 L:      netdev@vger.kernel.org
18620 L:      bpf@vger.kernel.org
18621 S:      Maintained
18622 F:      include/net/xdp_sock*
18623 F:      include/net/xsk_buff_pool.h
18624 F:      include/uapi/linux/if_xdp.h
18625 F:      net/xdp/
18626 F:      samples/bpf/xdpsock*
18627 F:      tools/lib/bpf/xsk*
18628
18629 XEN BLOCK SUBSYSTEM
18630 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18631 M:      Roger Pau Monné <roger.pau@citrix.com>
18632 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18633 S:      Supported
18634 F:      drivers/block/xen*
18635 F:      drivers/block/xen-blkback/*
18636
18637 XEN HYPERVISOR ARM
18638 M:      Stefano Stabellini <sstabellini@kernel.org>
18639 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18640 S:      Maintained
18641 F:      arch/arm/include/asm/xen/
18642 F:      arch/arm/xen/
18643
18644 XEN HYPERVISOR ARM64
18645 M:      Stefano Stabellini <sstabellini@kernel.org>
18646 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18647 S:      Maintained
18648 F:      arch/arm64/include/asm/xen/
18649 F:      arch/arm64/xen/
18650
18651 XEN HYPERVISOR INTERFACE
18652 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18653 M:      Juergen Gross <jgross@suse.com>
18654 R:      Stefano Stabellini <sstabellini@kernel.org>
18655 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18656 S:      Supported
18657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18658 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18659 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18660 F:      arch/x86/include/asm/pvclock-abi.h
18661 F:      arch/x86/include/asm/xen/
18662 F:      arch/x86/platform/pvh/
18663 F:      arch/x86/xen/
18664 F:      drivers/*/xen-*front.c
18665 F:      drivers/xen/
18666 F:      include/uapi/xen/
18667 F:      include/xen/
18668
18669 XEN NETWORK BACKEND DRIVER
18670 M:      Wei Liu <wei.liu@kernel.org>
18671 M:      Paul Durrant <paul@xen.org>
18672 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18673 L:      netdev@vger.kernel.org
18674 S:      Supported
18675 F:      drivers/net/xen-netback/*
18676
18677 XEN PCI SUBSYSTEM
18678 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18679 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18680 S:      Supported
18681 F:      arch/x86/pci/*xen*
18682 F:      drivers/pci/*xen*
18683
18684 XEN PVSCSI DRIVERS
18685 M:      Juergen Gross <jgross@suse.com>
18686 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18687 L:      linux-scsi@vger.kernel.org
18688 S:      Supported
18689 F:      drivers/scsi/xen-scsifront.c
18690 F:      drivers/xen/xen-scsiback.c
18691 F:      include/xen/interface/io/vscsiif.h
18692
18693 XEN SOUND FRONTEND DRIVER
18694 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18695 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18696 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18697 S:      Supported
18698 F:      sound/xen/*
18699
18700 XEN SWIOTLB SUBSYSTEM
18701 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18702 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18703 L:      iommu@lists.linux-foundation.org
18704 S:      Supported
18705 F:      arch/x86/xen/*swiotlb*
18706 F:      drivers/xen/*swiotlb*
18707
18708 XFS FILESYSTEM
18709 M:      Darrick J. Wong <darrick.wong@oracle.com>
18710 M:      linux-xfs@vger.kernel.org
18711 L:      linux-xfs@vger.kernel.org
18712 S:      Supported
18713 W:      http://xfs.org/
18714 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18715 F:      Documentation/ABI/testing/sysfs-fs-xfs
18716 F:      Documentation/admin-guide/xfs.rst
18717 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
18718 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
18719 F:      fs/xfs/
18720 F:      include/uapi/linux/dqblk_xfs.h
18721 F:      include/uapi/linux/fsmap.h
18722
18723 XILINX AXI ETHERNET DRIVER
18724 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18725 S:      Maintained
18726 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18727
18728 XILINX CAN DRIVER
18729 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18730 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18731 L:      linux-can@vger.kernel.org
18732 S:      Maintained
18733 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18734 F:      drivers/net/can/xilinx_can.c
18735
18736 XILINX SD-FEC IP CORES
18737 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18738 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18739 S:      Maintained
18740 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18741 F:      Documentation/misc-devices/xilinx_sdfec.rst
18742 F:      drivers/misc/Kconfig
18743 F:      drivers/misc/Makefile
18744 F:      drivers/misc/xilinx_sdfec.c
18745 F:      include/uapi/misc/xilinx_sdfec.h
18746
18747 XILINX UARTLITE SERIAL DRIVER
18748 M:      Peter Korsgaard <jacmet@sunsite.dk>
18749 L:      linux-serial@vger.kernel.org
18750 S:      Maintained
18751 F:      drivers/tty/serial/uartlite.c
18752
18753 XILINX VIDEO IP CORES
18754 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18756 L:      linux-media@vger.kernel.org
18757 S:      Supported
18758 T:      git git://linuxtv.org/media_tree.git
18759 F:      Documentation/devicetree/bindings/media/xilinx/
18760 F:      drivers/media/platform/xilinx/
18761 F:      include/uapi/linux/xilinx-v4l2-controls.h
18762
18763 XILLYBUS DRIVER
18764 M:      Eli Billauer <eli.billauer@gmail.com>
18765 L:      linux-kernel@vger.kernel.org
18766 S:      Supported
18767 F:      drivers/char/xillybus/
18768
18769 XLP9XX I2C DRIVER
18770 M:      George Cherian <gcherian@marvell.com>
18771 L:      linux-i2c@vger.kernel.org
18772 S:      Supported
18773 W:      http://www.marvell.com
18774 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18775 F:      drivers/i2c/busses/i2c-xlp9xx.c
18776
18777 XRA1403 GPIO EXPANDER
18778 M:      Nandor Han <nandor.han@ge.com>
18779 M:      Semi Malinen <semi.malinen@ge.com>
18780 L:      linux-gpio@vger.kernel.org
18781 S:      Maintained
18782 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18783 F:      drivers/gpio/gpio-xra1403.c
18784
18785 XTENSA XTFPGA PLATFORM SUPPORT
18786 M:      Max Filippov <jcmvbkbc@gmail.com>
18787 L:      linux-xtensa@linux-xtensa.org
18788 S:      Maintained
18789 F:      drivers/spi/spi-xtensa-xtfpga.c
18790 F:      sound/soc/xtensa/xtfpga-i2s.c
18791
18792 YAM DRIVER FOR AX.25
18793 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18794 L:      linux-hams@vger.kernel.org
18795 S:      Maintained
18796 F:      drivers/net/hamradio/yam*
18797 F:      include/linux/yam.h
18798
18799 YAMA SECURITY MODULE
18800 M:      Kees Cook <keescook@chromium.org>
18801 S:      Supported
18802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18803 F:      Documentation/admin-guide/LSM/Yama.rst
18804 F:      security/yama/
18805
18806 YEALINK PHONE DRIVER
18807 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18808 L:      usbb2k-api-dev@nongnu.org
18809 S:      Maintained
18810 F:      Documentation/input/devices/yealink.rst
18811 F:      drivers/input/misc/yealink.*
18812
18813 Z8530 DRIVER FOR AX.25
18814 M:      Joerg Reuter <jreuter@yaina.de>
18815 L:      linux-hams@vger.kernel.org
18816 S:      Maintained
18817 W:      http://yaina.de/jreuter/
18818 W:      http://www.qsl.net/dl1bke/
18819 F:      Documentation/networking/z8530drv.rst
18820 F:      drivers/net/hamradio/*scc.c
18821 F:      drivers/net/hamradio/z8530.h
18822
18823 ZBUD COMPRESSED PAGE ALLOCATOR
18824 M:      Seth Jennings <sjenning@redhat.com>
18825 M:      Dan Streetman <ddstreet@ieee.org>
18826 L:      linux-mm@kvack.org
18827 S:      Maintained
18828 F:      include/linux/zbud.h
18829 F:      mm/zbud.c
18830
18831 ZD1211RW WIRELESS DRIVER
18832 M:      Daniel Drake <dsd@gentoo.org>
18833 M:      Ulrich Kunitz <kune@deine-taler.de>
18834 L:      linux-wireless@vger.kernel.org
18835 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18836 S:      Maintained
18837 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18838 F:      drivers/net/wireless/zydas/zd1211rw/
18839
18840 ZD1301 MEDIA DRIVER
18841 M:      Antti Palosaari <crope@iki.fi>
18842 L:      linux-media@vger.kernel.org
18843 S:      Maintained
18844 W:      https://linuxtv.org/
18845 W:      http://palosaari.fi/linux/
18846 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18847 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18848
18849 ZD1301_DEMOD MEDIA DRIVER
18850 M:      Antti Palosaari <crope@iki.fi>
18851 L:      linux-media@vger.kernel.org
18852 S:      Maintained
18853 W:      https://linuxtv.org/
18854 W:      http://palosaari.fi/linux/
18855 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18856 F:      drivers/media/dvb-frontends/zd1301_demod*
18857
18858 ZHAOXIN PROCESSOR SUPPORT
18859 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18860 L:      linux-kernel@vger.kernel.org
18861 S:      Maintained
18862 F:      arch/x86/kernel/cpu/zhaoxin.c
18863
18864 ZONEFS FILESYSTEM
18865 M:      Damien Le Moal <damien.lemoal@wdc.com>
18866 M:      Naohiro Aota <naohiro.aota@wdc.com>
18867 R:      Johannes Thumshirn <jth@kernel.org>
18868 L:      linux-fsdevel@vger.kernel.org
18869 S:      Maintained
18870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18871 F:      Documentation/filesystems/zonefs.rst
18872 F:      fs/zonefs/
18873
18874 ZPOOL COMPRESSED PAGE STORAGE API
18875 M:      Dan Streetman <ddstreet@ieee.org>
18876 L:      linux-mm@kvack.org
18877 S:      Maintained
18878 F:      include/linux/zpool.h
18879 F:      mm/zpool.c
18880
18881 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18882 M:      Minchan Kim <minchan@kernel.org>
18883 M:      Nitin Gupta <ngupta@vflare.org>
18884 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18885 L:      linux-kernel@vger.kernel.org
18886 S:      Maintained
18887 F:      Documentation/admin-guide/blockdev/zram.rst
18888 F:      drivers/block/zram/
18889
18890 ZS DECSTATION Z85C30 SERIAL DRIVER
18891 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18892 S:      Maintained
18893 F:      drivers/tty/serial/zs.*
18894
18895 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18896 M:      Minchan Kim <minchan@kernel.org>
18897 M:      Nitin Gupta <ngupta@vflare.org>
18898 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18899 L:      linux-mm@kvack.org
18900 S:      Maintained
18901 F:      Documentation/vm/zsmalloc.rst
18902 F:      include/linux/zsmalloc.h
18903 F:      mm/zsmalloc.c
18904
18905 ZSWAP COMPRESSED SWAP CACHING
18906 M:      Seth Jennings <sjenning@redhat.com>
18907 M:      Dan Streetman <ddstreet@ieee.org>
18908 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18909 L:      linux-mm@kvack.org
18910 S:      Maintained
18911 F:      mm/zswap.c
18912
18913 THE REST
18914 M:      Linus Torvalds <torvalds@linux-foundation.org>
18915 L:      linux-kernel@vger.kernel.org
18916 S:      Buried alive in reporters
18917 Q:      http://patchwork.kernel.org/project/LKML/list/
18918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18919 F:      *
18920 F:      */