Merge tag 'xtensa-20200410' of git://github.com/jcmvbkbc/linux-xtensa
[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.txt
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 W:      http://www.lsi.com
163 S:      Supported
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:      net/6lowpan/
179 F:      include/net/6lowpan.h
180 F:      Documentation/networking/6lowpan.rst
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 8169 10/100/1000 GIGABIT ETHERNET DRIVER
189 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
190 M:      Heiner Kallweit <hkallweit1@gmail.com>
191 L:      netdev@vger.kernel.org
192 S:      Maintained
193 F:      drivers/net/ethernet/realtek/r8169*
194
195 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
196 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
197 L:      linux-serial@vger.kernel.org
198 S:      Maintained
199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
200 F:      drivers/tty/serial/8250*
201 F:      include/linux/serial_8250.h
202
203 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
204 L:      netdev@vger.kernel.org
205 S:      Orphan / Obsolete
206 F:      drivers/net/ethernet/8390/
207
208 9P FILE SYSTEM
209 M:      Eric Van Hensbergen <ericvh@gmail.com>
210 M:      Latchesar Ionkov <lucho@ionkov.net>
211 M:      Dominique Martinet <asmadeus@codewreck.org>
212 L:      v9fs-developer@lists.sourceforge.net
213 W:      http://swik.net/v9fs
214 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
216 T:      git git://github.com/martinetd/linux.git
217 S:      Maintained
218 F:      Documentation/filesystems/9p.rst
219 F:      fs/9p/
220 F:      net/9p/
221 F:      include/net/9p/
222 F:      include/uapi/linux/virtio_9p.h
223 F:      include/trace/events/9p.h
224
225 A8293 MEDIA DRIVER
226 M:      Antti Palosaari <crope@iki.fi>
227 L:      linux-media@vger.kernel.org
228 W:      https://linuxtv.org
229 W:      http://palosaari.fi/linux/
230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
231 T:      git git://linuxtv.org/anttip/media_tree.git
232 S:      Maintained
233 F:      drivers/media/dvb-frontends/a8293*
234
235 AACRAID SCSI RAID DRIVER
236 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
237 L:      linux-scsi@vger.kernel.org
238 W:      http://www.adaptec.com/
239 S:      Supported
240 F:      Documentation/scsi/aacraid.rst
241 F:      drivers/scsi/aacraid/
242
243 ABI/API
244 L:      linux-api@vger.kernel.org
245 F:      include/linux/syscalls.h
246 F:      kernel/sys_ni.c
247
248 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
249 M:      Hans de Goede <hdegoede@redhat.com>
250 L:      linux-hwmon@vger.kernel.org
251 S:      Maintained
252 F:      drivers/hwmon/abituguru.c
253
254 ABIT UGURU 3 HARDWARE MONITOR DRIVER
255 M:      Alistair John Strachan <alistair@devzero.co.uk>
256 L:      linux-hwmon@vger.kernel.org
257 S:      Maintained
258 F:      drivers/hwmon/abituguru3.c
259
260 ACCES 104-DIO-48E GPIO DRIVER
261 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
262 L:      linux-gpio@vger.kernel.org
263 S:      Maintained
264 F:      drivers/gpio/gpio-104-dio-48e.c
265
266 ACCES 104-IDI-48 GPIO DRIVER
267 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
268 L:      linux-gpio@vger.kernel.org
269 S:      Maintained
270 F:      drivers/gpio/gpio-104-idi-48.c
271
272 ACCES 104-IDIO-16 GPIO DRIVER
273 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
274 L:      linux-gpio@vger.kernel.org
275 S:      Maintained
276 F:      drivers/gpio/gpio-104-idio-16.c
277
278 ACCES 104-QUAD-8 DRIVER
279 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
280 L:      linux-iio@vger.kernel.org
281 S:      Maintained
282 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
283 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
284 F:      drivers/counter/104-quad-8.c
285
286 ACCES PCI-IDIO-16 GPIO DRIVER
287 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
288 L:      linux-gpio@vger.kernel.org
289 S:      Maintained
290 F:      drivers/gpio/gpio-pci-idio-16.c
291
292 ACCES PCIe-IDIO-24 GPIO DRIVER
293 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
294 L:      linux-gpio@vger.kernel.org
295 S:      Maintained
296 F:      drivers/gpio/gpio-pcie-idio-24.c
297
298 ACENIC DRIVER
299 M:      Jes Sorensen <jes@trained-monkey.org>
300 L:      linux-acenic@sunsite.dk
301 S:      Maintained
302 F:      drivers/net/ethernet/alteon/acenic*
303
304 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
305 M:      Peter Kaestle <peter@piie.net>
306 L:      platform-driver-x86@vger.kernel.org
307 S:      Maintained
308 W:      http://piie.net/?section=acerhdf
309 F:      drivers/platform/x86/acerhdf.c
310
311 ACER WMI LAPTOP EXTRAS
312 M:      "Lee, Chun-Yi" <jlee@suse.com>
313 L:      platform-driver-x86@vger.kernel.org
314 S:      Maintained
315 F:      drivers/platform/x86/acer-wmi.c
316
317 ACPI
318 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
319 M:      Len Brown <lenb@kernel.org>
320 L:      linux-acpi@vger.kernel.org
321 S:      Supported
322 W:      https://01.org/linux-acpi
323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
325 B:      https://bugzilla.kernel.org
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      Documentation/ABI/testing/sysfs-bus-acpi
328 F:      Documentation/firmware-guide/acpi/
329 F:      drivers/acpi/
330 F:      drivers/pci/*/*acpi*
331 F:      drivers/pci/*acpi*
332 F:      drivers/pnp/pnpacpi/
333 F:      include/acpi/
334 F:      include/linux/acpi.h
335 F:      include/linux/fwnode.h
336 F:      tools/power/acpi/
337
338 ACPI APEI
339 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
340 M:      Len Brown <lenb@kernel.org>
341 R:      James Morse <james.morse@arm.com>
342 R:      Tony Luck <tony.luck@intel.com>
343 R:      Borislav Petkov <bp@alien8.de>
344 L:      linux-acpi@vger.kernel.org
345 F:      drivers/acpi/apei/
346
347 ACPI COMPONENT ARCHITECTURE (ACPICA)
348 M:      Robert Moore <robert.moore@intel.com>
349 M:      Erik Kaneda <erik.kaneda@intel.com>
350 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
351 L:      linux-acpi@vger.kernel.org
352 L:      devel@acpica.org
353 S:      Supported
354 W:      https://acpica.org/
355 W:      https://github.com/acpica/acpica/
356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
357 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
358 B:      https://bugzilla.kernel.org
359 B:      https://bugs.acpica.org
360 F:      drivers/acpi/acpica/
361 F:      include/acpi/
362 F:      tools/power/acpi/
363
364 ACPI FAN DRIVER
365 M:      Zhang Rui <rui.zhang@intel.com>
366 L:      linux-acpi@vger.kernel.org
367 S:      Supported
368 W:      https://01.org/linux-acpi
369 B:      https://bugzilla.kernel.org
370 F:      drivers/acpi/fan.c
371
372 ACPI FOR ARM64 (ACPI/arm64)
373 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
374 M:      Hanjun Guo <guohanjun@huawei.com>
375 M:      Sudeep Holla <sudeep.holla@arm.com>
376 L:      linux-acpi@vger.kernel.org
377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
378 S:      Maintained
379 F:      drivers/acpi/arm64
380
381 ACPI I2C MULTI INSTANTIATE DRIVER
382 M:      Hans de Goede <hdegoede@redhat.com>
383 L:      platform-driver-x86@vger.kernel.org
384 S:      Maintained
385 F:      drivers/platform/x86/i2c-multi-instantiate.c
386
387 ACPI PMIC DRIVERS
388 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
389 M:      Len Brown <lenb@kernel.org>
390 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
391 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
392 L:      linux-acpi@vger.kernel.org
393 S:      Supported
394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
395 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
396 B:      https://bugzilla.kernel.org
397 F:      drivers/acpi/pmic/
398
399 ACPI THERMAL DRIVER
400 M:      Zhang Rui <rui.zhang@intel.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 F:      drivers/acpi/*thermal*
406
407 ACPI VIDEO DRIVER
408 M:      Zhang Rui <rui.zhang@intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 W:      https://01.org/linux-acpi
412 B:      https://bugzilla.kernel.org
413 F:      drivers/acpi/acpi_video.c
414
415 ACPI WMI DRIVER
416 L:      platform-driver-x86@vger.kernel.org
417 S:      Orphan
418 F:      drivers/platform/x86/wmi.c
419 F:      include/uapi/linux/wmi.h
420
421 AD1889 ALSA SOUND DRIVER
422 W:      https://parisc.wiki.kernel.org/index.php/AD1889
423 L:      linux-parisc@vger.kernel.org
424 S:      Maintained
425 F:      sound/pci/ad1889.*
426
427 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
428 M:      Michael Hennerich <michael.hennerich@analog.com>
429 W:      http://wiki.analog.com/AD5254
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/misc/ad525x_dpot.c
433
434 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/AD5398
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/regulator/ad5398.c
440
441 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
442 M:      Michael Hennerich <michael.hennerich@analog.com>
443 W:      http://wiki.analog.com/AD7142
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/misc/ad714x.c
447
448 AD7877 TOUCHSCREEN DRIVER
449 M:      Michael Hennerich <michael.hennerich@analog.com>
450 W:      http://wiki.analog.com/AD7877
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7877.c
454
455 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
456 M:      Michael Hennerich <michael.hennerich@analog.com>
457 W:      http://wiki.analog.com/AD7879
458 W:      http://ez.analog.com/community/linux-device-drivers
459 S:      Supported
460 F:      drivers/input/touchscreen/ad7879.c
461
462 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
463 M:      Jiri Kosina <jikos@kernel.org>
464 S:      Maintained
465
466 ADF7242 IEEE 802.15.4 RADIO DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 W:      https://wiki.analog.com/ADF7242
469 W:      http://ez.analog.com/community/linux-device-drivers
470 L:      linux-wpan@vger.kernel.org
471 S:      Supported
472 F:      drivers/net/ieee802154/adf7242.c
473 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
474
475 ADM1025 HARDWARE MONITOR DRIVER
476 M:      Jean Delvare <jdelvare@suse.com>
477 L:      linux-hwmon@vger.kernel.org
478 S:      Maintained
479 F:      Documentation/hwmon/adm1025.rst
480 F:      drivers/hwmon/adm1025.c
481
482 ADM1029 HARDWARE MONITOR DRIVER
483 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
484 L:      linux-hwmon@vger.kernel.org
485 S:      Maintained
486 F:      drivers/hwmon/adm1029.c
487
488 ADM8211 WIRELESS DRIVER
489 L:      linux-wireless@vger.kernel.org
490 W:      http://wireless.kernel.org/
491 S:      Orphan
492 F:      drivers/net/wireless/admtek/adm8211.*
493
494 ADP1653 FLASH CONTROLLER DRIVER
495 M:      Sakari Ailus <sakari.ailus@iki.fi>
496 L:      linux-media@vger.kernel.org
497 S:      Maintained
498 F:      drivers/media/i2c/adp1653.c
499 F:      include/media/i2c/adp1653.h
500
501 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
502 M:      Michael Hennerich <michael.hennerich@analog.com>
503 W:      http://wiki.analog.com/ADP5520
504 W:      http://ez.analog.com/community/linux-device-drivers
505 S:      Supported
506 F:      drivers/mfd/adp5520.c
507 F:      drivers/video/backlight/adp5520_bl.c
508 F:      drivers/leds/leds-adp5520.c
509 F:      drivers/gpio/gpio-adp5520.c
510 F:      drivers/input/keyboard/adp5520-keys.c
511
512 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
513 M:      Michael Hennerich <michael.hennerich@analog.com>
514 W:      http://wiki.analog.com/ADP5588
515 W:      http://ez.analog.com/community/linux-device-drivers
516 S:      Supported
517 F:      drivers/input/keyboard/adp5588-keys.c
518 F:      drivers/gpio/gpio-adp5588.c
519
520 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
521 M:      Michael Hennerich <michael.hennerich@analog.com>
522 W:      http://wiki.analog.com/ADP8860
523 W:      http://ez.analog.com/community/linux-device-drivers
524 S:      Supported
525 F:      drivers/video/backlight/adp8860_bl.c
526
527 ADT746X FAN DRIVER
528 M:      Colin Leroy <colin@colino.net>
529 S:      Maintained
530 F:      drivers/macintosh/therm_adt746x.c
531
532 ADT7475 HARDWARE MONITOR DRIVER
533 M:      Jean Delvare <jdelvare@suse.com>
534 L:      linux-hwmon@vger.kernel.org
535 S:      Maintained
536 F:      Documentation/hwmon/adt7475.rst
537 F:      drivers/hwmon/adt7475.c
538
539 ADVANSYS SCSI DRIVER
540 M:      Matthew Wilcox <willy@infradead.org>
541 M:      Hannes Reinecke <hare@suse.com>
542 L:      linux-scsi@vger.kernel.org
543 S:      Maintained
544 F:      Documentation/scsi/advansys.rst
545 F:      drivers/scsi/advansys.c
546
547 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
548 M:      Michael Hennerich <michael.hennerich@analog.com>
549 W:      http://wiki.analog.com/ADXL345
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/input/misc/adxl34x.c
553 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
554
555 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
556 M:      Stefan Popa <stefan.popa@analog.com>
557 W:      http://ez.analog.com/community/linux-device-drivers
558 S:      Supported
559 F:      drivers/iio/accel/adxl372.c
560 F:      drivers/iio/accel/adxl372_spi.c
561 F:      drivers/iio/accel/adxl372_i2c.c
562 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
563
564 AF9013 MEDIA DRIVER
565 M:      Antti Palosaari <crope@iki.fi>
566 L:      linux-media@vger.kernel.org
567 W:      https://linuxtv.org
568 W:      http://palosaari.fi/linux/
569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
570 T:      git git://linuxtv.org/anttip/media_tree.git
571 S:      Maintained
572 F:      drivers/media/dvb-frontends/af9013*
573
574 AF9033 MEDIA DRIVER
575 M:      Antti Palosaari <crope@iki.fi>
576 L:      linux-media@vger.kernel.org
577 W:      https://linuxtv.org
578 W:      http://palosaari.fi/linux/
579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
580 T:      git git://linuxtv.org/anttip/media_tree.git
581 S:      Maintained
582 F:      drivers/media/dvb-frontends/af9033*
583
584 AFFS FILE SYSTEM
585 M:      David Sterba <dsterba@suse.com>
586 L:      linux-fsdevel@vger.kernel.org
587 S:      Odd Fixes
588 F:      Documentation/filesystems/affs.rst
589 F:      fs/affs/
590
591 AFS FILESYSTEM
592 M:      David Howells <dhowells@redhat.com>
593 L:      linux-afs@lists.infradead.org
594 S:      Supported
595 F:      fs/afs/
596 F:      include/trace/events/afs.h
597 F:      Documentation/filesystems/afs.rst
598 W:      https://www.infradead.org/~dhowells/kafs/
599
600 AGPGART DRIVER
601 M:      David Airlie <airlied@linux.ie>
602 T:      git git://anongit.freedesktop.org/drm/drm
603 S:      Maintained
604 F:      drivers/char/agp/
605 F:      include/linux/agp*
606 F:      include/uapi/linux/agp*
607
608 AHA152X SCSI DRIVER
609 M:      "Juergen E. Fischer" <fischer@norbit.de>
610 L:      linux-scsi@vger.kernel.org
611 S:      Maintained
612 F:      drivers/scsi/aha152x*
613 F:      drivers/scsi/pcmcia/aha152x*
614
615 AIC7XXX / AIC79XX SCSI DRIVER
616 M:      Hannes Reinecke <hare@suse.com>
617 L:      linux-scsi@vger.kernel.org
618 S:      Maintained
619 F:      drivers/scsi/aic7xxx/
620
621 AIMSLAB FM RADIO RECEIVER DRIVER
622 M:      Hans Verkuil <hverkuil@xs4all.nl>
623 L:      linux-media@vger.kernel.org
624 T:      git git://linuxtv.org/media_tree.git
625 W:      https://linuxtv.org
626 S:      Maintained
627 F:      drivers/media/radio/radio-aimslab*
628
629 AIO
630 M:      Benjamin LaHaise <bcrl@kvack.org>
631 L:      linux-aio@kvack.org
632 S:      Supported
633 F:      fs/aio.c
634 F:      include/linux/*aio*.h
635
636 AIRSPY MEDIA DRIVER
637 M:      Antti Palosaari <crope@iki.fi>
638 L:      linux-media@vger.kernel.org
639 W:      https://linuxtv.org
640 W:      http://palosaari.fi/linux/
641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
642 T:      git git://linuxtv.org/anttip/media_tree.git
643 S:      Maintained
644 F:      drivers/media/usb/airspy/
645
646 ALACRITECH GIGABIT ETHERNET DRIVER
647 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
648 S:      Maintained
649 F:      drivers/net/ethernet/alacritech/*
650
651 FORCEDETH GIGABIT ETHERNET DRIVER
652 M:      Rain River <rain.1986.08.12@gmail.com>
653 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
654 L:      netdev@vger.kernel.org
655 S:      Maintained
656 F:      drivers/net/ethernet/nvidia/*
657
658 ALCATEL SPEEDTOUCH USB DRIVER
659 M:      Duncan Sands <duncan.sands@free.fr>
660 L:      linux-usb@vger.kernel.org
661 W:      http://www.linux-usb.org/SpeedTouch/
662 S:      Maintained
663 F:      drivers/usb/atm/speedtch.c
664 F:      drivers/usb/atm/usbatm.c
665
666 ALCHEMY AU1XX0 MMC DRIVER
667 M:      Manuel Lauss <manuel.lauss@gmail.com>
668 S:      Maintained
669 F:      drivers/mmc/host/au1xmmc.c
670
671 ALI1563 I2C DRIVER
672 M:      Rudolf Marek <r.marek@assembler.cz>
673 L:      linux-i2c@vger.kernel.org
674 S:      Maintained
675 F:      Documentation/i2c/busses/i2c-ali1563.rst
676 F:      drivers/i2c/busses/i2c-ali1563.c
677
678 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
679 M:      Tomislav Denis <tomislav.denis@avl.com>
680 W:      http://www.allsensors.com/
681 S:      Maintained
682 L:      linux-iio@vger.kernel.org
683 F:      drivers/iio/pressure/dlhl60d.c
684 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
685
686 ALLEGRO DVT VIDEO IP CORE DRIVER
687 M:      Michael Tretter <m.tretter@pengutronix.de>
688 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/staging/media/allegro-dvt/
692
693 ALLWINNER CPUFREQ DRIVER
694 M:      Yangtao Li <tiny.windzz@gmail.com>
695 L:      linux-pm@vger.kernel.org
696 S:      Maintained
697 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
698 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
699
700 ALLWINNER CRYPTO DRIVERS
701 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
702 L:      linux-crypto@vger.kernel.org
703 S:      Maintained
704 F:      drivers/crypto/allwinner/
705
706 ALLWINNER THERMAL DRIVER
707 M:      Vasily Khoruzhick <anarsoul@gmail.com>
708 M:      Yangtao Li <tiny.windzz@gmail.com>
709 L:      linux-pm@vger.kernel.org
710 S:      Maintained
711 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
712 F:      drivers/thermal/sun8i_thermal.c
713
714 ALLWINNER VPU DRIVER
715 M:      Maxime Ripard <mripard@kernel.org>
716 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
717 L:      linux-media@vger.kernel.org
718 S:      Maintained
719 F:      drivers/staging/media/sunxi/cedrus/
720
721 ALPHA PORT
722 M:      Richard Henderson <rth@twiddle.net>
723 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
724 M:      Matt Turner <mattst88@gmail.com>
725 S:      Odd Fixes
726 L:      linux-alpha@vger.kernel.org
727 F:      arch/alpha/
728
729 ALPS PS/2 TOUCHPAD DRIVER
730 R:      Pali Rohár <pali.rohar@gmail.com>
731 F:      drivers/input/mouse/alps.*
732
733 ALTERA I2C CONTROLLER DRIVER
734 M:      Thor Thayer <thor.thayer@linux.intel.com>
735 S:      Maintained
736 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
737 F:      drivers/i2c/busses/i2c-altera.c
738
739 ALTERA MAILBOX DRIVER
740 M:      Ley Foon Tan <ley.foon.tan@intel.com>
741 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
742 S:      Maintained
743 F:      drivers/mailbox/mailbox-altera.c
744
745 ALTERA PIO DRIVER
746 M:      Joyce Ooi <joyce.ooi@intel.com>
747 L:      linux-gpio@vger.kernel.org
748 S:      Maintained
749 F:      drivers/gpio/gpio-altera.c
750
751 ALTERA SYSTEM MANAGER DRIVER
752 M:      Thor Thayer <thor.thayer@linux.intel.com>
753 S:      Maintained
754 F:      drivers/mfd/altera-sysmgr.c
755 F:      include/linux/mfd/altera-sysmgr.h
756
757 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
758 M:      Thor Thayer <thor.thayer@linux.intel.com>
759 S:      Maintained
760 F:      drivers/gpio/gpio-altera-a10sr.c
761 F:      drivers/mfd/altera-a10sr.c
762 F:      drivers/reset/reset-a10sr.c
763 F:      include/linux/mfd/altera-a10sr.h
764 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
765
766 ALTERA TRIPLE SPEED ETHERNET DRIVER
767 M:      Thor Thayer <thor.thayer@linux.intel.com>
768 L:      netdev@vger.kernel.org
769 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
770 S:      Maintained
771 F:      drivers/net/ethernet/altera/
772
773 ALTERA UART/JTAG UART SERIAL DRIVERS
774 M:      Tobias Klauser <tklauser@distanz.ch>
775 L:      linux-serial@vger.kernel.org
776 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
777 S:      Maintained
778 F:      drivers/tty/serial/altera_uart.c
779 F:      drivers/tty/serial/altera_jtaguart.c
780 F:      include/linux/altera_uart.h
781 F:      include/linux/altera_jtaguart.h
782
783 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
784 M:      Talel Shenhar <talel@amazon.com>
785 S:      Maintained
786 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
787 F:      drivers/thermal/thermal_mmio.c
788
789 AMAZON ETHERNET DRIVERS
790 M:      Netanel Belgazal <netanel@amazon.com>
791 M:      Arthur Kiyanovski <akiyano@amazon.com>
792 R:      Guy Tzalik <gtzalik@amazon.com>
793 R:      Saeed Bishara <saeedb@amazon.com>
794 R:      Zorik Machulsky <zorik@amazon.com>
795 L:      netdev@vger.kernel.org
796 S:      Supported
797 F:      Documentation/networking/device_drivers/amazon/ena.txt
798 F:      drivers/net/ethernet/amazon/
799
800 AMAZON RDMA EFA DRIVER
801 M:      Gal Pressman <galpress@amazon.com>
802 R:      Yossi Leybovich <sleybo@amazon.com>
803 L:      linux-rdma@vger.kernel.org
804 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
805 S:      Supported
806 F:      drivers/infiniband/hw/efa/
807 F:      include/uapi/rdma/efa-abi.h
808
809 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
810 M:      Tom Lendacky <thomas.lendacky@amd.com>
811 L:      linux-crypto@vger.kernel.org
812 S:      Supported
813 F:      drivers/crypto/ccp/
814 F:      include/linux/ccp.h
815
816 AMD DISPLAY CORE
817 M:      Harry Wentland <harry.wentland@amd.com>
818 M:      Leo Li <sunpeng.li@amd.com>
819 L:      amd-gfx@lists.freedesktop.org
820 T:      git git://people.freedesktop.org/~agd5f/linux
821 S:      Supported
822 F:      drivers/gpu/drm/amd/display/
823
824 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
825 M:      Huang Rui <ray.huang@amd.com>
826 L:      linux-hwmon@vger.kernel.org
827 S:      Supported
828 F:      Documentation/hwmon/fam15h_power.rst
829 F:      drivers/hwmon/fam15h_power.c
830
831 AMD FCH GPIO DRIVER
832 M:      Enrico Weigelt, metux IT consult <info@metux.net>
833 L:      linux-gpio@vger.kernel.org
834 S:      Maintained
835 F:      drivers/gpio/gpio-amd-fch.c
836 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
837
838 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
839 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
840 S:      Orphan
841 F:      drivers/usb/gadget/udc/amd5536udc.*
842
843 AMD GEODE PROCESSOR/CHIPSET SUPPORT
844 M:      Andres Salomon <dilinger@queued.net>
845 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
846 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
847 S:      Supported
848 F:      drivers/char/hw_random/geode-rng.c
849 F:      drivers/crypto/geode*
850 F:      drivers/video/fbdev/geode/
851 F:      arch/x86/include/asm/geode.h
852
853 AMD IOMMU (AMD-VI)
854 M:      Joerg Roedel <joro@8bytes.org>
855 L:      iommu@lists.linux-foundation.org
856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
857 S:      Maintained
858 F:      drivers/iommu/amd_iommu*.[ch]
859 F:      include/linux/amd-iommu.h
860
861 AMD KFD
862 M:      Felix Kuehling <Felix.Kuehling@amd.com>
863 L:      amd-gfx@lists.freedesktop.org
864 T:      git git://people.freedesktop.org/~agd5f/linux
865 S:      Supported
866 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
867 F:      drivers/gpu/drm/amd/amdkfd/
868 F:      drivers/gpu/drm/amd/include/cik_structs.h
869 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
870 F:      drivers/gpu/drm/amd/include/vi_structs.h
871 F:      drivers/gpu/drm/amd/include/v9_structs.h
872 F:      include/uapi/linux/kfd_ioctl.h
873
874 AMD MP2 I2C DRIVER
875 M:      Elie Morisse <syniurge@gmail.com>
876 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
877 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
878 L:      linux-i2c@vger.kernel.org
879 S:      Maintained
880 F:      drivers/i2c/busses/i2c-amd-mp2*
881
882 AMD POWERPLAY
883 M:      Evan Quan <evan.quan@amd.com>
884 L:      amd-gfx@lists.freedesktop.org
885 S:      Supported
886 F:      drivers/gpu/drm/amd/powerplay/
887 T:      git git://people.freedesktop.org/~agd5f/linux
888
889 AMD SEATTLE DEVICE TREE SUPPORT
890 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
891 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
892 M:      Tom Lendacky <thomas.lendacky@amd.com>
893 S:      Supported
894 F:      arch/arm64/boot/dts/amd/
895
896 AMD XGBE DRIVER
897 M:      Tom Lendacky <thomas.lendacky@amd.com>
898 L:      netdev@vger.kernel.org
899 S:      Supported
900 F:      drivers/net/ethernet/amd/xgbe/
901 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
902
903 ANALOG DEVICES INC AD5686 DRIVER
904 M:      Stefan Popa <stefan.popa@analog.com>
905 L:      linux-pm@vger.kernel.org
906 W:      http://ez.analog.com/community/linux-device-drivers
907 S:      Supported
908 F:      drivers/iio/dac/ad5686*
909 F:      drivers/iio/dac/ad5696*
910
911 ANALOG DEVICES INC AD5758 DRIVER
912 M:      Stefan Popa <stefan.popa@analog.com>
913 L:      linux-iio@vger.kernel.org
914 W:      http://ez.analog.com/community/linux-device-drivers
915 S:      Supported
916 F:      drivers/iio/dac/ad5758.c
917 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
918
919 ANALOG DEVICES INC AD7091R5 DRIVER
920 M:      Beniamin Bia <beniamin.bia@analog.com>
921 L:      linux-iio@vger.kernel.org
922 W:      http://ez.analog.com/community/linux-device-drivers
923 S:      Supported
924 F:      drivers/iio/adc/ad7091r5.c
925 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
926
927 ANALOG DEVICES INC AD7124 DRIVER
928 M:      Stefan Popa <stefan.popa@analog.com>
929 L:      linux-iio@vger.kernel.org
930 W:      http://ez.analog.com/community/linux-device-drivers
931 S:      Supported
932 F:      drivers/iio/adc/ad7124.c
933 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
934
935 ANALOG DEVICES INC AD7192 DRIVER
936 M:      Alexandru Tachici <alexandru.tachici@analog.com>
937 L:      linux-iio@vger.kernel.org
938 W:      http://ez.analog.com/community/linux-device-drivers
939 S:      Supported
940 F:      drivers/iio/adc/ad7192.c
941 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
942
943 ANALOG DEVICES INC AD7292 DRIVER
944 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
945 L:      linux-iio@vger.kernel.org
946 W:      http://ez.analog.com/community/linux-device-drivers
947 S:      Supported
948 F:      drivers/iio/adc/ad7292.c
949 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
950
951 ANALOG DEVICES INC AD7606 DRIVER
952 M:      Stefan Popa <stefan.popa@analog.com>
953 M:      Beniamin Bia <beniamin.bia@analog.com>
954 L:      linux-iio@vger.kernel.org
955 W:      http://ez.analog.com/community/linux-device-drivers
956 S:      Supported
957 F:      drivers/iio/adc/ad7606.c
958 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
959
960 ANALOG DEVICES INC AD7768-1 DRIVER
961 M:      Stefan Popa <stefan.popa@analog.com>
962 L:      linux-iio@vger.kernel.org
963 W:      http://ez.analog.com/community/linux-device-drivers
964 S:      Supported
965 F:      drivers/iio/adc/ad7768-1.c
966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
967
968 ANALOG DEVICES INC AD7780 DRIVER
969 M:      Michael Hennerich <Michael.Hennerich@analog.com>
970 M:      Renato Lui Geh <renatogeh@gmail.com>
971 L:      linux-iio@vger.kernel.org
972 W:      http://ez.analog.com/community/linux-device-drivers
973 S:      Supported
974 F:      drivers/iio/adc/ad7780.c
975 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
976
977 ANALOG DEVICES INC AD9389B DRIVER
978 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
979 L:      linux-media@vger.kernel.org
980 S:      Maintained
981 F:      drivers/media/i2c/ad9389b*
982
983 ANALOG DEVICES INC ADGS1408 DRIVER
984 M:      Mircea Caprioru <mircea.caprioru@analog.com>
985 S:      Supported
986 F:      drivers/mux/adgs1408.c
987 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
988
989 ANALOG DEVICES INC ADIN DRIVER
990 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
991 L:      netdev@vger.kernel.org
992 W:      http://ez.analog.com/community/linux-device-drivers
993 S:      Supported
994 F:      drivers/net/phy/adin.c
995 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
996
997 ANALOG DEVICES INC ADIS DRIVER LIBRARY
998 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
999 S:      Supported
1000 L:      linux-iio@vger.kernel.org
1001 F:      include/linux/iio/imu/adis.h
1002 F:      drivers/iio/imu/adis.c
1003
1004 ANALOG DEVICES INC ADIS16460 DRIVER
1005 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1006 S:      Supported
1007 L:      linux-iio@vger.kernel.org
1008 W:      http://ez.analog.com/community/linux-device-drivers
1009 F:      drivers/iio/imu/adis16460.c
1010 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1011
1012 ANALOG DEVICES INC ADM1177 DRIVER
1013 M:      Beniamin Bia <beniamin.bia@analog.com>
1014 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1015 L:      linux-hwmon@vger.kernel.org
1016 W:      http://ez.analog.com/community/linux-device-drivers
1017 S:      Supported
1018 F:      drivers/hwmon/adm1177.c
1019 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1020
1021 ANALOG DEVICES INC ADP5061 DRIVER
1022 M:      Stefan Popa <stefan.popa@analog.com>
1023 L:      linux-pm@vger.kernel.org
1024 W:      http://ez.analog.com/community/linux-device-drivers
1025 S:      Supported
1026 F:      drivers/power/supply/adp5061.c
1027
1028 ANALOG DEVICES INC ADV7180 DRIVER
1029 M:      Lars-Peter Clausen <lars@metafoo.de>
1030 L:      linux-media@vger.kernel.org
1031 W:      http://ez.analog.com/community/linux-device-drivers
1032 S:      Supported
1033 F:      drivers/media/i2c/adv7180.c
1034
1035 ANALOG DEVICES INC ADV748X DRIVER
1036 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1037 L:      linux-media@vger.kernel.org
1038 S:      Maintained
1039 F:      drivers/media/i2c/adv748x/*
1040
1041 ANALOG DEVICES INC ADV7511 DRIVER
1042 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1043 L:      linux-media@vger.kernel.org
1044 S:      Maintained
1045 F:      drivers/media/i2c/adv7511*
1046
1047 ANALOG DEVICES INC ADV7604 DRIVER
1048 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1049 L:      linux-media@vger.kernel.org
1050 S:      Maintained
1051 F:      drivers/media/i2c/adv7604*
1052
1053 ANALOG DEVICES INC ADV7842 DRIVER
1054 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1055 L:      linux-media@vger.kernel.org
1056 S:      Maintained
1057 F:      drivers/media/i2c/adv7842*
1058
1059 ANALOG DEVICES INC ASOC CODEC DRIVERS
1060 M:      Lars-Peter Clausen <lars@metafoo.de>
1061 M:      Nuno Sá <nuno.sa@analog.com>
1062 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1063 W:      http://wiki.analog.com/
1064 W:      http://ez.analog.com/community/linux-device-drivers
1065 S:      Supported
1066 F:      sound/soc/codecs/adau*
1067 F:      sound/soc/codecs/adav*
1068 F:      sound/soc/codecs/ad1*
1069 F:      sound/soc/codecs/ad7*
1070 F:      sound/soc/codecs/ssm*
1071 F:      sound/soc/codecs/sigmadsp.*
1072
1073 ANALOG DEVICES INC DMA DRIVERS
1074 M:      Lars-Peter Clausen <lars@metafoo.de>
1075 W:      http://ez.analog.com/community/linux-device-drivers
1076 S:      Supported
1077 F:      drivers/dma/dma-axi-dmac.c
1078
1079 ANALOG DEVICES INC IIO DRIVERS
1080 M:      Lars-Peter Clausen <lars@metafoo.de>
1081 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1082 M:      Stefan Popa <stefan.popa@analog.com>
1083 W:      http://wiki.analog.com/
1084 W:      http://ez.analog.com/community/linux-device-drivers
1085 S:      Supported
1086 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1087 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1088 F:      drivers/iio/*/ad*
1089 F:      drivers/iio/adc/ltc249*
1090 X:      drivers/iio/*/adjd*
1091 F:      drivers/staging/iio/*/ad*
1092
1093 ANALOG DEVICES INC HMC425A DRIVER
1094 M:      Beniamin Bia <beniamin.bia@analog.com>
1095 M:      Michael Hennerich <michael.hennerich@analog.com>
1096 L:      linux-iio@vger.kernel.org
1097 S:      Supported
1098 W:      http://ez.analog.com/community/linux-device-drivers
1099 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,hmc425a.yaml
1100 F:      drivers/iio/amplifiers/hmc425a.c
1101
1102 ANALOGBITS PLL LIBRARIES
1103 M:      Paul Walmsley <paul.walmsley@sifive.com>
1104 S:      Supported
1105 F:      drivers/clk/analogbits/*
1106 F:      include/linux/clk/analogbits*
1107
1108 ANDES ARCHITECTURE
1109 M:      Nick Hu <nickhu@andestech.com>
1110 M:      Greentime Hu <green.hu@gmail.com>
1111 M:      Vincent Chen <deanbo422@gmail.com>
1112 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1113 S:      Supported
1114 F:      arch/nds32/
1115 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1116 F:      Documentation/devicetree/bindings/nds32/
1117 K:      nds32
1118 N:      nds32
1119
1120 ANDROID CONFIG FRAGMENTS
1121 M:      Rob Herring <robh@kernel.org>
1122 S:      Supported
1123 F:      kernel/configs/android*
1124
1125 ANDROID DRIVERS
1126 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1127 M:      Arve Hjønnevåg <arve@android.com>
1128 M:      Todd Kjos <tkjos@android.com>
1129 M:      Martijn Coenen <maco@android.com>
1130 M:      Joel Fernandes <joel@joelfernandes.org>
1131 M:      Christian Brauner <christian@brauner.io>
1132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1133 L:      devel@driverdev.osuosl.org
1134 S:      Supported
1135 F:      drivers/android/
1136 F:      drivers/staging/android/
1137
1138 ANDROID GOLDFISH PIC DRIVER
1139 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1140 S:      Supported
1141 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1142 F:      drivers/irqchip/irq-goldfish-pic.c
1143
1144 ANDROID GOLDFISH RTC DRIVER
1145 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1146 S:      Supported
1147 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1148 F:      drivers/rtc/rtc-goldfish.c
1149
1150 ANDROID ION DRIVER
1151 M:      Laura Abbott <labbott@redhat.com>
1152 M:      Sumit Semwal <sumit.semwal@linaro.org>
1153 L:      devel@driverdev.osuosl.org
1154 L:      dri-devel@lists.freedesktop.org
1155 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1156 S:      Supported
1157 F:      drivers/staging/android/ion
1158 F:      drivers/staging/android/uapi/ion.h
1159
1160 AOA (Apple Onboard Audio) ALSA DRIVER
1161 M:      Johannes Berg <johannes@sipsolutions.net>
1162 L:      linuxppc-dev@lists.ozlabs.org
1163 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1164 S:      Maintained
1165 F:      sound/aoa/
1166
1167 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1168 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1169 L:      linux-iio@vger.kernel.org
1170 S:      Maintained
1171 F:      drivers/iio/adc/stx104.c
1172
1173 APM DRIVER
1174 M:      Jiri Kosina <jikos@kernel.org>
1175 S:      Odd fixes
1176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1177 F:      arch/x86/kernel/apm_32.c
1178 F:      include/linux/apm_bios.h
1179 F:      include/uapi/linux/apm_bios.h
1180 F:      drivers/char/apm-emulation.c
1181
1182 APPARMOR SECURITY MODULE
1183 M:      John Johansen <john.johansen@canonical.com>
1184 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1185 W:      wiki.apparmor.net
1186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1187 S:      Supported
1188 F:      security/apparmor/
1189 F:      Documentation/admin-guide/LSM/apparmor.rst
1190
1191 APPLE BCM5974 MULTITOUCH DRIVER
1192 M:      Henrik Rydberg <rydberg@bitmath.org>
1193 L:      linux-input@vger.kernel.org
1194 S:      Odd fixes
1195 F:      drivers/input/mouse/bcm5974.c
1196
1197 APPLE SMC DRIVER
1198 M:      Henrik Rydberg <rydberg@bitmath.org>
1199 L:      linux-hwmon@vger.kernel.org
1200 S:      Odd fixes
1201 F:      drivers/hwmon/applesmc.c
1202
1203 APPLETALK NETWORK LAYER
1204 L:      netdev@vger.kernel.org
1205 S:      Odd fixes
1206 F:      drivers/net/appletalk/
1207 F:      net/appletalk/
1208 F:      include/linux/atalk.h
1209 F:      include/uapi/linux/atalk.h
1210
1211 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1212 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1213 S:      Supported
1214 F:      arch/arm64/boot/dts/apm/
1215
1216 APPLIED MICRO (APM) X-GENE SOC EDAC
1217 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1218 S:      Supported
1219 F:      drivers/edac/xgene_edac.c
1220 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1221
1222 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1223 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1224 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1225 S:      Supported
1226 F:      drivers/net/ethernet/apm/xgene-v2/
1227
1228 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1229 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1230 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1231 M:      Quan Nguyen <quan@os.amperecomputing.com>
1232 S:      Supported
1233 F:      drivers/net/ethernet/apm/xgene/
1234 F:      drivers/net/phy/mdio-xgene.c
1235 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1236 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1237
1238 APPLIED MICRO (APM) X-GENE SOC PMU
1239 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1240 S:      Supported
1241 F:      drivers/perf/xgene_pmu.c
1242 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1243 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1244
1245 APTINA CAMERA SENSOR PLL
1246 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1247 L:      linux-media@vger.kernel.org
1248 S:      Maintained
1249 F:      drivers/media/i2c/aptina-pll.*
1250
1251 AQUANTIA ETHERNET DRIVER (atlantic)
1252 M:      Igor Russkikh <irusskikh@marvell.com>
1253 L:      netdev@vger.kernel.org
1254 S:      Supported
1255 W:      https://www.marvell.com/
1256 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1257 F:      drivers/net/ethernet/aquantia/atlantic/
1258 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1259
1260 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1261 M:      Egor Pomozov <epomozov@marvell.com>
1262 L:      netdev@vger.kernel.org
1263 S:      Supported
1264 W:      http://www.aquantia.com
1265 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1266
1267 ARC FRAMEBUFFER DRIVER
1268 M:      Jaya Kumar <jayalk@intworks.biz>
1269 S:      Maintained
1270 F:      drivers/video/fbdev/arcfb.c
1271 F:      drivers/video/fbdev/core/fb_defio.c
1272
1273 ARC PGU DRM DRIVER
1274 M:      Alexey Brodkin <abrodkin@synopsys.com>
1275 S:      Supported
1276 F:      drivers/gpu/drm/arc/
1277 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1278
1279 ARCNET NETWORK LAYER
1280 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1281 L:      netdev@vger.kernel.org
1282 S:      Maintained
1283 F:      drivers/net/arcnet/
1284 F:      include/uapi/linux/if_arcnet.h
1285
1286 ARM ARCHITECTED TIMER DRIVER
1287 M:      Mark Rutland <mark.rutland@arm.com>
1288 M:      Marc Zyngier <maz@kernel.org>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Maintained
1291 F:      arch/arm/include/asm/arch_timer.h
1292 F:      arch/arm64/include/asm/arch_timer.h
1293 F:      drivers/clocksource/arm_arch_timer.c
1294
1295 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1296 M:      Linus Walleij <linus.walleij@linaro.org>
1297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1298 S:      Maintained
1299 F:      Documentation/devicetree/bindings/arm/arm-boards
1300 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1301 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1302 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1303 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1304 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1305 F:      arch/arm/mach-integrator/
1306 F:      arch/arm/mach-realview/
1307 F:      arch/arm/mach-versatile/
1308 F:      arch/arm/plat-versatile/
1309 F:      arch/arm/boot/dts/arm-realview-*
1310 F:      arch/arm/boot/dts/integrator*
1311 F:      arch/arm/boot/dts/versatile*
1312 F:      drivers/clk/versatile/
1313 F:      drivers/i2c/busses/i2c-versatile.c
1314 F:      drivers/irqchip/irq-versatile-fpga.c
1315 F:      drivers/mtd/maps/physmap_of_versatile.c
1316 F:      drivers/power/reset/arm-versatile-reboot.c
1317 F:      drivers/soc/versatile/
1318
1319 ARM HDLCD DRM DRIVER
1320 M:      Liviu Dudau <liviu.dudau@arm.com>
1321 S:      Supported
1322 F:      drivers/gpu/drm/arm/hdlcd_*
1323 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1324
1325 ARM KOMEDA DRM-KMS DRIVER
1326 M:      James (Qian) Wang <james.qian.wang@arm.com>
1327 M:      Liviu Dudau <liviu.dudau@arm.com>
1328 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1329 L:      Mali DP Maintainers <malidp@foss.arm.com>
1330 S:      Supported
1331 T:      git git://anongit.freedesktop.org/drm/drm-misc
1332 F:      drivers/gpu/drm/arm/display/include/
1333 F:      drivers/gpu/drm/arm/display/komeda/
1334 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1335 F:      Documentation/gpu/komeda-kms.rst
1336
1337 ARM MALI-DP DRM DRIVER
1338 M:      Liviu Dudau <liviu.dudau@arm.com>
1339 M:      Brian Starkey <brian.starkey@arm.com>
1340 L:      Mali DP Maintainers <malidp@foss.arm.com>
1341 S:      Supported
1342 T:      git git://anongit.freedesktop.org/drm/drm-misc
1343 F:      drivers/gpu/drm/arm/
1344 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1345 F:      Documentation/gpu/afbc.rst
1346
1347 ARM MALI PANFROST DRM DRIVER
1348 M:      Rob Herring <robh@kernel.org>
1349 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1350 R:      Steven Price <steven.price@arm.com>
1351 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1352 L:      dri-devel@lists.freedesktop.org
1353 S:      Supported
1354 T:      git git://anongit.freedesktop.org/drm/drm-misc
1355 F:      drivers/gpu/drm/panfrost/
1356 F:      include/uapi/drm/panfrost_drm.h
1357
1358 ARM MFM AND FLOPPY DRIVERS
1359 M:      Ian Molton <spyro@f2s.com>
1360 S:      Maintained
1361 F:      arch/arm/mach-rpc/floppydma.S
1362 F:      arch/arm/include/asm/floppy.h
1363
1364 ARM PMU PROFILING AND DEBUGGING
1365 M:      Will Deacon <will@kernel.org>
1366 M:      Mark Rutland <mark.rutland@arm.com>
1367 S:      Maintained
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 F:      arch/arm*/kernel/perf_*
1370 F:      arch/arm/oprofile/common.c
1371 F:      arch/arm*/kernel/hw_breakpoint.c
1372 F:      arch/arm*/include/asm/hw_breakpoint.h
1373 F:      arch/arm*/include/asm/perf_event.h
1374 F:      drivers/perf/*
1375 F:      include/linux/perf/arm_pmu.h
1376 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1377 F:      Documentation/devicetree/bindings/perf/
1378
1379 ARM PORT
1380 M:      Russell King <linux@armlinux.org.uk>
1381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1382 W:      http://www.armlinux.org.uk/
1383 S:      Odd Fixes
1384 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1385 F:      arch/arm/
1386 X:      arch/arm/boot/dts/
1387
1388 ARM PRIMECELL AACI PL041 DRIVER
1389 M:      Russell King <linux@armlinux.org.uk>
1390 S:      Odd Fixes
1391 F:      sound/arm/aaci.*
1392
1393 ARM PRIMECELL BUS SUPPORT
1394 M:      Russell King <linux@armlinux.org.uk>
1395 S:      Odd Fixes
1396 F:      drivers/amba/
1397 F:      include/linux/amba/bus.h
1398
1399 ARM PRIMECELL CLCD PL110 DRIVER
1400 M:      Russell King <linux@armlinux.org.uk>
1401 S:      Odd Fixes
1402 F:      drivers/video/fbdev/amba-clcd.*
1403
1404 ARM PRIMECELL KMI PL050 DRIVER
1405 M:      Russell King <linux@armlinux.org.uk>
1406 S:      Odd Fixes
1407 F:      drivers/input/serio/ambakmi.*
1408 F:      include/linux/amba/kmi.h
1409
1410 ARM PRIMECELL MMCI PL180/1 DRIVER
1411 M:      Russell King <linux@armlinux.org.uk>
1412 S:      Odd Fixes
1413 F:      drivers/mmc/host/mmci.*
1414 F:      include/linux/amba/mmci.h
1415
1416 ARM PRIMECELL SSP PL022 SPI DRIVER
1417 M:      Linus Walleij <linus.walleij@linaro.org>
1418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 S:      Maintained
1420 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1421 F:      drivers/spi/spi-pl022.c
1422
1423 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1424 M:      Russell King <linux@armlinux.org.uk>
1425 S:      Odd Fixes
1426 F:      drivers/tty/serial/amba-pl01*.c
1427 F:      include/linux/amba/serial.h
1428
1429 ARM PRIMECELL VIC PL190/PL192 DRIVER
1430 M:      Linus Walleij <linus.walleij@linaro.org>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 S:      Maintained
1433 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1434 F:      drivers/irqchip/irq-vic.c
1435
1436 AMAZON ANNAPURNA LABS FIC DRIVER
1437 M:      Talel Shenhar <talel@amazon.com>
1438 S:      Maintained
1439 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1440 F:      drivers/irqchip/irq-al-fic.c
1441
1442 ARM SMMU DRIVERS
1443 M:      Will Deacon <will@kernel.org>
1444 R:      Robin Murphy <robin.murphy@arm.com>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 S:      Maintained
1447 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1448 F:      drivers/iommu/arm-smmu*
1449 F:      drivers/iommu/io-pgtable-arm.c
1450 F:      drivers/iommu/io-pgtable-arm-v7s.c
1451
1452 ARM SUB-ARCHITECTURES
1453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1454 S:      Maintained
1455 F:      arch/arm/mach-*/
1456 F:      arch/arm/plat-*/
1457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1458
1459 ARM/ACTIONS SEMI ARCHITECTURE
1460 M:      Andreas Färber <afaerber@suse.de>
1461 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1462 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1463 S:      Maintained
1464 N:      owl
1465 F:      arch/arm/mach-actions/
1466 F:      arch/arm/boot/dts/owl-*
1467 F:      arch/arm64/boot/dts/actions/
1468 F:      drivers/clk/actions/
1469 F:      drivers/clocksource/timer-owl*
1470 F:      drivers/dma/owl-dma.c
1471 F:      drivers/i2c/busses/i2c-owl.c
1472 F:      drivers/mmc/host/owl-mmc.c
1473 F:      drivers/pinctrl/actions/*
1474 F:      drivers/soc/actions/
1475 F:      include/dt-bindings/power/owl-*
1476 F:      include/linux/soc/actions/
1477 F:      Documentation/devicetree/bindings/arm/actions.yaml
1478 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1479 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1480 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1481 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1482 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1483 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1484 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1485
1486 ARM/ADS SPHERE MACHINE SUPPORT
1487 M:      Lennert Buytenhek <kernel@wantstofly.org>
1488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 S:      Maintained
1490
1491 ARM/AFEB9260 MACHINE SUPPORT
1492 M:      Sergey Lapin <slapin@ossfans.org>
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495
1496 ARM/AJECO 1ARM MACHINE SUPPORT
1497 M:      Lennert Buytenhek <kernel@wantstofly.org>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Maintained
1500
1501 ARM/Allwinner SoC Clock Support
1502 M:      Emilio López <emilio@elopez.com.ar>
1503 S:      Maintained
1504 F:      drivers/clk/sunxi/
1505
1506 ARM/Allwinner sunXi SoC support
1507 M:      Maxime Ripard <mripard@kernel.org>
1508 M:      Chen-Yu Tsai <wens@csie.org>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Maintained
1511 N:      sun[x456789]i
1512 N:      sun50i
1513 F:      arch/arm/mach-sunxi/
1514 F:      arch/arm64/boot/dts/allwinner/
1515 F:      drivers/clk/sunxi-ng/
1516 F:      drivers/pinctrl/sunxi/
1517 F:      drivers/soc/sunxi/
1518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1519
1520 Allwinner A10 CSI driver
1521 M:      Maxime Ripard <mripard@kernel.org>
1522 L:      linux-media@vger.kernel.org
1523 T:      git git://linuxtv.org/media_tree.git
1524 F:      drivers/media/platform/sunxi/sun4i-csi/
1525 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1526 S:      Maintained
1527
1528 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1529 M:      Neil Armstrong <narmstrong@baylibre.com>
1530 M:      Jerome Brunet <jbrunet@baylibre.com>
1531 L:      linux-amlogic@lists.infradead.org
1532 S:      Maintained
1533 F:      drivers/clk/meson/
1534 F:      include/dt-bindings/clock/meson*
1535 F:      include/dt-bindings/clock/gxbb*
1536 F:      Documentation/devicetree/bindings/clock/amlogic*
1537
1538 ARM/Amlogic Meson SoC support
1539 M:      Kevin Hilman <khilman@baylibre.com>
1540 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1541 L:      linux-amlogic@lists.infradead.org
1542 W:      http://linux-meson.com/
1543 S:      Maintained
1544 F:      arch/arm/mach-meson/
1545 F:      arch/arm/boot/dts/meson*
1546 F:      arch/arm64/boot/dts/amlogic/
1547 F:      drivers/pinctrl/meson/
1548 F:      drivers/mmc/host/meson*
1549 F:      drivers/soc/amlogic/
1550 F:      drivers/rtc/rtc-meson*
1551 N:      meson
1552
1553 ARM/Amlogic Meson SoC Crypto Drivers
1554 M:      Corentin Labbe <clabbe@baylibre.com>
1555 L:      linux-crypto@vger.kernel.org
1556 L:      linux-amlogic@lists.infradead.org
1557 S:      Maintained
1558 F:      drivers/crypto/amlogic/
1559 F:      Documentation/devicetree/bindings/crypto/amlogic*
1560
1561 ARM/Amlogic Meson SoC Sound Drivers
1562 M:      Jerome Brunet <jbrunet@baylibre.com>
1563 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1564 S:      Maintained
1565 F:      sound/soc/meson/
1566 F:      Documentation/devicetree/bindings/sound/amlogic*
1567
1568 ARM/Annapurna Labs ALPINE ARCHITECTURE
1569 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1570 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Maintained
1573 F:      arch/arm/mach-alpine/
1574 F:      arch/arm/boot/dts/alpine*
1575 F:      arch/arm64/boot/dts/al/
1576 F:      drivers/*/*alpine*
1577
1578 ARM/ARTPEC MACHINE SUPPORT
1579 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1580 M:      Lars Persson <lars.persson@axis.com>
1581 S:      Maintained
1582 L:      linux-arm-kernel@axis.com
1583 F:      arch/arm/mach-artpec
1584 F:      arch/arm/boot/dts/artpec6*
1585 F:      drivers/clk/axis
1586 F:      drivers/crypto/axis
1587 F:      drivers/mmc/host/usdhi6rol0.c
1588 F:      drivers/pinctrl/pinctrl-artpec*
1589 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1590
1591 ARM/ASPEED I2C DRIVER
1592 M:      Brendan Higgins <brendanhiggins@google.com>
1593 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1594 R:      Joel Stanley <joel@jms.id.au>
1595 L:      linux-i2c@vger.kernel.org
1596 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1597 S:      Maintained
1598 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1599 F:      drivers/i2c/busses/i2c-aspeed.c
1600 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1601 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1602
1603 ARM/ASPEED MACHINE SUPPORT
1604 M:      Joel Stanley <joel@jms.id.au>
1605 R:      Andrew Jeffery <andrew@aj.id.au>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1608 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1609 S:      Supported
1610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1611 F:      arch/arm/mach-aspeed/
1612 F:      arch/arm/boot/dts/aspeed-*
1613 N:      aspeed
1614
1615 ARM/BITMAIN ARCHITECTURE
1616 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1618 S:      Maintained
1619 F:      arch/arm64/boot/dts/bitmain/
1620 F:      drivers/clk/clk-bm1880.c
1621 F:      drivers/pinctrl/pinctrl-bm1880.c
1622 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1623 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1624 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1625
1626 ARM/CALXEDA HIGHBANK ARCHITECTURE
1627 M:      Andre Przywara <andre.przywara@arm.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      arch/arm/mach-highbank/
1631 F:      arch/arm/boot/dts/highbank.dts
1632 F:      arch/arm/boot/dts/ecx-*.dts*
1633
1634 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1635 M:      Krzysztof Halasa <khalasa@piap.pl>
1636 S:      Maintained
1637 F:      arch/arm/mach-cns3xxx/
1638
1639 ARM/CAVIUM THUNDER NETWORK DRIVER
1640 M:      Sunil Goutham <sgoutham@marvell.com>
1641 M:      Robert Richter <rrichter@marvell.com>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Supported
1644 F:      drivers/net/ethernet/cavium/thunder/
1645
1646 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1647 M:      Lukasz Majewski <lukma@denx.de>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650 F:      arch/arm/mach-ep93xx/ts72xx.c
1651
1652 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1653 M:      Alexander Shiyan <shc_work@mail.ru>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Odd Fixes
1656 N:      clps711x
1657
1658 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1659 M:      Lennert Buytenhek <kernel@wantstofly.org>
1660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1661 S:      Maintained
1662
1663 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1664 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1665 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 F:      arch/arm/mach-ep93xx/
1669 F:      arch/arm/mach-ep93xx/include/mach/
1670
1671 ARM/CLKDEV SUPPORT
1672 M:      Russell King <linux@armlinux.org.uk>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 S:      Maintained
1675 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1676 F:      drivers/clk/clkdev.c
1677
1678 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1679 M:      Mike Rapoport <mike@compulab.co.il>
1680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1681 S:      Maintained
1682
1683 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1684 M:      Baruch Siach <baruch@tkos.co.il>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 F:      arch/arm/boot/dts/cx92755*
1688 N:      digicolor
1689
1690 ARM/CONTEC MICRO9 MACHINE SUPPORT
1691 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1692 S:      Maintained
1693 F:      arch/arm/mach-ep93xx/micro9.c
1694
1695 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1696 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1697 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1698 R:      Mike Leach <mike.leach@linaro.org>
1699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      drivers/hwtracing/coresight/*
1702 F:      include/dt-bindings/arm/coresight-cti-dt.h
1703 F:      Documentation/trace/coresight/*
1704 F:      Documentation/devicetree/bindings/arm/coresight.txt
1705 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1706 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1707 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1708 F:      tools/perf/arch/arm/util/pmu.c
1709 F:      tools/perf/arch/arm/util/auxtrace.c
1710 F:      tools/perf/arch/arm/util/cs-etm.c
1711 F:      tools/perf/arch/arm/util/cs-etm.h
1712 F:      tools/perf/util/cs-etm.*
1713 F:      tools/perf/util/cs-etm-decoder/*
1714
1715 ARM/CORGI MACHINE SUPPORT
1716 M:      Richard Purdie <rpurdie@rpsys.net>
1717 S:      Maintained
1718
1719 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1720 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1721 M:      Linus Walleij <linus.walleij@linaro.org>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 T:      git git://github.com/ulli-kroll/linux.git
1724 S:      Maintained
1725 F:      Documentation/devicetree/bindings/arm/gemini.txt
1726 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1727 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1728 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1729 F:      arch/arm/mach-gemini/
1730 F:      drivers/net/ethernet/cortina/
1731 F:      drivers/pinctrl/pinctrl-gemini.c
1732 F:      drivers/rtc/rtc-ftrtc010.c
1733
1734 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1735 M:      Barry Song <baohua@kernel.org>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1738 S:      Maintained
1739 F:      arch/arm/boot/dts/prima2*
1740 F:      arch/arm/mach-prima2/
1741 F:      drivers/clk/sirf/
1742 F:      drivers/clocksource/timer-prima2.c
1743 F:      drivers/clocksource/timer-atlas7.c
1744 N:      [^a-z]sirf
1745 X:      drivers/gnss
1746
1747 ARM/CZ.NIC TURRIS MOX SUPPORT
1748 M:      Marek Behun <marek.behun@nic.cz>
1749 W:      http://mox.turris.cz
1750 S:      Maintained
1751 F:      Documentation/ABI/testing/debugfs-moxtet
1752 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1753 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1754 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1755 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1756 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1757 F:      include/linux/moxtet.h
1758 F:      drivers/bus/moxtet.c
1759 F:      drivers/firmware/turris-mox-rwtm.c
1760 F:      drivers/gpio/gpio-moxtet.c
1761
1762 ARM/EBSA110 MACHINE SUPPORT
1763 M:      Russell King <linux@armlinux.org.uk>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 W:      http://www.armlinux.org.uk/
1766 S:      Maintained
1767 F:      arch/arm/mach-ebsa110/
1768 F:      drivers/net/ethernet/amd/am79c961a.*
1769
1770 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1771 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1772 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Maintained
1775 N:      efm32
1776
1777 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1778 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1780 S:      Maintained
1781 F:      arch/arm/mach-pxa/ezx.c
1782
1783 ARM/FARADAY FA526 PORT
1784 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S:      Maintained
1787 T:      git git://git.berlios.de/gemini-board
1788 F:      arch/arm/mm/*-fa*
1789
1790 ARM/FOOTBRIDGE ARCHITECTURE
1791 M:      Russell King <linux@armlinux.org.uk>
1792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1793 W:      http://www.armlinux.org.uk/
1794 S:      Maintained
1795 F:      arch/arm/include/asm/hardware/dec21285.h
1796 F:      arch/arm/mach-footbridge/
1797
1798 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1799 M:      Shawn Guo <shawnguo@kernel.org>
1800 M:      Sascha Hauer <s.hauer@pengutronix.de>
1801 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1802 R:      Fabio Estevam <festevam@gmail.com>
1803 R:      NXP Linux Team <linux-imx@nxp.com>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1807 N:      imx
1808 N:      mxs
1809 X:      drivers/media/i2c/
1810
1811 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1812 M:      Shawn Guo <shawnguo@kernel.org>
1813 M:      Sascha Hauer <s.hauer@pengutronix.de>
1814 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1815 R:      Stefan Agner <stefan@agner.ch>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1819 F:      arch/arm/mach-imx/*vf610*
1820 F:      arch/arm/boot/dts/vf*
1821
1822 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1823 M:      Shawn Guo <shawnguo@kernel.org>
1824 M:      Li Yang <leoyang.li@nxp.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Maintained
1827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1828 F:      arch/arm/boot/dts/ls1021a*
1829 F:      arch/arm64/boot/dts/freescale/fsl-*
1830 F:      arch/arm64/boot/dts/freescale/qoriq-*
1831
1832 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1833 M:      Lennert Buytenhek <kernel@wantstofly.org>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836
1837 ARM/GUMSTIX MACHINE SUPPORT
1838 M:      Steve Sakoman <sakoman@gmail.com>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Maintained
1841
1842 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1843 M:      Philipp Zabel <philipp.zabel@gmail.com>
1844 M:      Paul Parsons <lost.distance@yahoo.com>
1845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1846 S:      Maintained
1847 F:      arch/arm/mach-pxa/hx4700.c
1848 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1849 F:      sound/soc/pxa/hx4700.c
1850
1851 ARM/HISILICON SOC SUPPORT
1852 M:      Wei Xu <xuwei5@hisilicon.com>
1853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1854 W:      http://www.hisilicon.com
1855 S:      Supported
1856 T:      git git://github.com/hisilicon/linux-hisi.git
1857 F:      arch/arm/mach-hisi/
1858 F:      arch/arm/boot/dts/hi3*
1859 F:      arch/arm/boot/dts/hip*
1860 F:      arch/arm/boot/dts/hisi*
1861 F:      arch/arm64/boot/dts/hisilicon/
1862
1863 ARM/HP JORNADA 7XX MACHINE SUPPORT
1864 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1865 W:      www.jlime.com
1866 S:      Maintained
1867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1868 F:      arch/arm/mach-sa1100/jornada720.c
1869 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1870
1871 ARM/IGEP MACHINE SUPPORT
1872 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1873 M:      Javier Martinez Canillas <javier@dowhile0.org>
1874 L:      linux-omap@vger.kernel.org
1875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      arch/arm/boot/dts/omap3-igep*
1878
1879 ARM/INCOME PXA270 SUPPORT
1880 M:      Marek Vasut <marek.vasut@gmail.com>
1881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1882 S:      Maintained
1883 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1884
1885 ARM/INTEL IOP32X ARM ARCHITECTURE
1886 M:      Lennert Buytenhek <kernel@wantstofly.org>
1887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1888 S:      Maintained
1889
1890 ARM/INTEL IQ81342EX MACHINE SUPPORT
1891 M:      Lennert Buytenhek <kernel@wantstofly.org>
1892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 S:      Maintained
1894
1895 ARM/INTEL IXDP2850 MACHINE SUPPORT
1896 M:      Lennert Buytenhek <kernel@wantstofly.org>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Maintained
1899
1900 ARM/INTEL IXP4XX ARM ARCHITECTURE
1901 M:      Linus Walleij <linusw@kernel.org>
1902 M:      Imre Kaloz <kaloz@openwrt.org>
1903 M:      Krzysztof Halasa <khalasa@piap.pl>
1904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 S:      Maintained
1906 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1907 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1908 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1909 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1910 F:      arch/arm/mach-ixp4xx/
1911 F:      drivers/clocksource/timer-ixp4xx.c
1912 F:      drivers/gpio/gpio-ixp4xx.c
1913 F:      drivers/irqchip/irq-ixp4xx.c
1914 F:      include/linux/irqchip/irq-ixp4xx.h
1915 F:      include/linux/platform_data/timer-ixp4xx.h
1916
1917 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1918 M:      Jonathan Cameron <jic23@cam.ac.uk>
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Maintained
1921 F:      arch/arm/mach-pxa/stargate2.c
1922 F:      drivers/pcmcia/pxa2xx_stargate2.c
1923
1924 ARM/INTEL XSC3 (MANZANO) ARM CORE
1925 M:      Lennert Buytenhek <kernel@wantstofly.org>
1926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1927 S:      Maintained
1928
1929 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1930 M:      Lennert Buytenhek <kernel@wantstofly.org>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Maintained
1933
1934 ARM/LG1K ARCHITECTURE
1935 M:      Chanho Min <chanho.min@lge.com>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      arch/arm64/boot/dts/lg/
1939
1940 ARM/LOGICPD PXA270 MACHINE SUPPORT
1941 M:      Lennert Buytenhek <kernel@wantstofly.org>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Maintained
1944
1945 ARM/LPC18XX ARCHITECTURE
1946 M:      Vladimir Zapolskiy <vz@mleia.com>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Maintained
1949 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1950 F:      arch/arm/boot/dts/lpc43*
1951 F:      drivers/i2c/busses/i2c-lpc2k.c
1952 F:      drivers/memory/pl172.c
1953 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1954 F:      drivers/rtc/rtc-lpc24xx.c
1955 N:      lpc18xx
1956
1957 ARM/LPC32XX SOC SUPPORT
1958 M:      Vladimir Zapolskiy <vz@mleia.com>
1959 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1961 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1962 S:      Maintained
1963 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1964 F:      arch/arm/boot/dts/lpc32*
1965 F:      arch/arm/mach-lpc32xx/
1966 F:      drivers/i2c/busses/i2c-pnx.c
1967 F:      drivers/net/ethernet/nxp/lpc_eth.c
1968 F:      drivers/usb/host/ohci-nxp.c
1969 F:      drivers/watchdog/pnx4008_wdt.c
1970 N:      lpc32xx
1971
1972 ARM/MAGICIAN MACHINE SUPPORT
1973 M:      Philipp Zabel <philipp.zabel@gmail.com>
1974 S:      Maintained
1975
1976 ARM/Marvell Dove/MV78xx0/Orion SOC support
1977 M:      Jason Cooper <jason@lakedaemon.net>
1978 M:      Andrew Lunn <andrew@lunn.ch>
1979 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1980 M:      Gregory Clement <gregory.clement@bootlin.com>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983 F:      Documentation/devicetree/bindings/soc/dove/
1984 F:      arch/arm/mach-dove/
1985 F:      arch/arm/mach-mv78xx0/
1986 F:      arch/arm/mach-orion5x/
1987 F:      arch/arm/plat-orion/
1988 F:      arch/arm/boot/dts/dove*
1989 F:      arch/arm/boot/dts/orion5x*
1990 T:      git git://git.infradead.org/linux-mvebu.git
1991
1992 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1993 M:      Jason Cooper <jason@lakedaemon.net>
1994 M:      Andrew Lunn <andrew@lunn.ch>
1995 M:      Gregory Clement <gregory.clement@bootlin.com>
1996 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1998 S:      Maintained
1999 F:      arch/arm/boot/dts/armada*
2000 F:      arch/arm/boot/dts/kirkwood*
2001 F:      arch/arm/configs/mvebu_*_defconfig
2002 F:      arch/arm/mach-mvebu/
2003 F:      arch/arm64/boot/dts/marvell/armada*
2004 F:      arch/arm64/boot/dts/marvell/cn913*
2005 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2006 F:      drivers/cpufreq/armada-8k-cpufreq.c
2007 F:      drivers/cpufreq/mvebu-cpufreq.c
2008 F:      drivers/irqchip/irq-armada-370-xp.c
2009 F:      drivers/irqchip/irq-mvebu-*
2010 F:      drivers/pinctrl/mvebu/
2011 F:      drivers/rtc/rtc-armada38x.c
2012 T:      git git://git.infradead.org/linux-mvebu.git
2013
2014 ARM/Mediatek RTC DRIVER
2015 M:      Eddie Huang <eddie.huang@mediatek.com>
2016 M:      Sean Wang <sean.wang@mediatek.com>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2019 S:      Maintained
2020 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2021 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2022 F:      drivers/rtc/rtc-mt2712.c
2023 F:      drivers/rtc/rtc-mt6397.c
2024 F:      drivers/rtc/rtc-mt7622.c
2025
2026 ARM/Mediatek SoC support
2027 M:      Matthias Brugger <matthias.bgg@gmail.com>
2028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2030 W:      https://mtk.bcnfs.org/
2031 C:      irc://chat.freenode.net/linux-mediatek
2032 S:      Maintained
2033 F:      arch/arm/boot/dts/mt6*
2034 F:      arch/arm/boot/dts/mt7*
2035 F:      arch/arm/boot/dts/mt8*
2036 F:      arch/arm/mach-mediatek/
2037 F:      arch/arm64/boot/dts/mediatek/
2038 F:      drivers/soc/mediatek/
2039 N:      mtk
2040 N:      mt[678]
2041 K:      mediatek
2042
2043 ARM/Mediatek USB3 PHY DRIVER
2044 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      drivers/phy/mediatek/
2049 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2050
2051 ARM/Microchip (AT91) SoC support
2052 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2053 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2054 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2056 W:      http://www.linux4sam.org
2057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2058 S:      Supported
2059 N:      at91
2060 N:      atmel
2061 F:      arch/arm/mach-at91/
2062 F:      include/soc/at91/
2063 F:      arch/arm/boot/dts/at91*.dts
2064 F:      arch/arm/boot/dts/at91*.dtsi
2065 F:      arch/arm/boot/dts/sama*.dts
2066 F:      arch/arm/boot/dts/sama*.dtsi
2067 F:      arch/arm/include/debug/at91.S
2068 F:      drivers/memory/atmel*
2069 F:      drivers/watchdog/sama5d4_wdt.c
2070 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2071 X:      drivers/net/wireless/atmel/
2072
2073 ARM/MIOA701 MACHINE SUPPORT
2074 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 F:      arch/arm/mach-pxa/mioa701.c
2077 S:      Maintained
2078
2079 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2080 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2081 S:      Maintained
2082
2083 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2084 M:      Linus Walleij <linus.walleij@linaro.org>
2085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 S:      Maintained
2087 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2088 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2089 F:      arch/arm/mach-nomadik/
2090 F:      arch/arm/mach-u300/
2091 F:      arch/arm/mach-ux500/
2092 F:      drivers/soc/ux500/
2093 F:      arch/arm/boot/dts/ste-*
2094 F:      drivers/clk/clk-nomadik.c
2095 F:      drivers/clk/clk-u300.c
2096 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2097 F:      drivers/clocksource/timer-u300.c
2098 F:      drivers/dma/coh901318*
2099 F:      drivers/dma/ste_dma40*
2100 F:      drivers/hwspinlock/u8500_hsem.c
2101 F:      drivers/i2c/busses/i2c-nomadik.c
2102 F:      drivers/i2c/busses/i2c-stu300.c
2103 F:      drivers/iio/adc/ab8500-gpadc.c
2104 F:      drivers/mfd/ab3100*
2105 F:      drivers/mfd/ab8500*
2106 F:      drivers/mfd/abx500*
2107 F:      drivers/mfd/dbx500*
2108 F:      drivers/mfd/db8500*
2109 F:      drivers/pinctrl/nomadik/
2110 F:      drivers/pinctrl/pinctrl-coh901*
2111 F:      drivers/pinctrl/pinctrl-u300.c
2112 F:      drivers/rtc/rtc-ab3100.c
2113 F:      drivers/rtc/rtc-ab8500.c
2114 F:      drivers/rtc/rtc-coh901331.c
2115 F:      drivers/rtc/rtc-pl031.c
2116 F:      drivers/watchdog/coh901327_wdt.c
2117 F:      Documentation/devicetree/bindings/arm/ste-*
2118 F:      Documentation/devicetree/bindings/arm/ux500/
2119 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2121
2122 ARM/NUVOTON NPCM ARCHITECTURE
2123 M:      Avi Fishman <avifishman70@gmail.com>
2124 M:      Tomer Maimon <tmaimon77@gmail.com>
2125 M:      Tali Perry <tali.perry1@gmail.com>
2126 R:      Patrick Venture <venture@google.com>
2127 R:      Nancy Yuen <yuenn@google.com>
2128 R:      Benjamin Fair <benjaminfair@google.com>
2129 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2130 S:      Supported
2131 F:      arch/arm/mach-npcm/
2132 F:      arch/arm/boot/dts/nuvoton-npcm*
2133 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2134 F:      drivers/*/*npcm*
2135 F:      Documentation/devicetree/bindings/*/*npcm*
2136 F:      Documentation/devicetree/bindings/*/*/*npcm*
2137
2138 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2139 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2140 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2141 S:      Orphan
2142 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2143 F:      arch/arm/mach-s3c24xx/gta02.h
2144
2145 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2146 M:      Alexander Clouter <alex@digriz.org.uk>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 W:      http://www.digriz.org.uk/ts78xx/kernel
2149 S:      Maintained
2150 F:      arch/arm/mach-orion5x/ts78xx-*
2151
2152 ARM/OXNAS platform support
2153 M:      Neil Armstrong <narmstrong@baylibre.com>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2156 S:      Maintained
2157 F:      arch/arm/mach-oxnas/
2158 F:      arch/arm/boot/dts/ox8*.dts*
2159 N:      oxnas
2160
2161 ARM/PALM TREO SUPPORT
2162 M:      Tomas Cech <sleep_walker@suse.com>
2163 L:      linux-arm-kernel@lists.infradead.org
2164 W:      http://hackndev.com
2165 S:      Maintained
2166 F:      arch/arm/mach-pxa/palmtreo.*
2167
2168 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2169 M:      Marek Vasut <marek.vasut@gmail.com>
2170 L:      linux-arm-kernel@lists.infradead.org
2171 W:      http://hackndev.com
2172 S:      Maintained
2173 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2174 F:      arch/arm/mach-pxa/palmtx.c
2175 F:      arch/arm/mach-pxa/palmt5.*
2176 F:      arch/arm/mach-pxa/include/mach/palmld.h
2177 F:      arch/arm/mach-pxa/palmld.c
2178 F:      arch/arm/mach-pxa/palmte2.*
2179 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2180 F:      arch/arm/mach-pxa/palmtc.c
2181
2182 ARM/PALMZ72 SUPPORT
2183 M:      Sergey Lapin <slapin@ossfans.org>
2184 L:      linux-arm-kernel@lists.infradead.org
2185 W:      http://hackndev.com
2186 S:      Maintained
2187 F:      arch/arm/mach-pxa/palmz72.*
2188
2189 ARM/PLEB SUPPORT
2190 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2191 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2192 S:      Maintained
2193
2194 ARM/PT DIGITAL BOARD PORT
2195 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 W:      http://www.armlinux.org.uk/
2198 S:      Maintained
2199
2200 ARM/QUALCOMM SUPPORT
2201 M:      Andy Gross <agross@kernel.org>
2202 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2203 L:      linux-arm-msm@vger.kernel.org
2204 S:      Maintained
2205 F:      Documentation/devicetree/bindings/soc/qcom/
2206 F:      Documentation/devicetree/bindings/*/qcom*
2207 F:      arch/arm/boot/dts/qcom-*.dts
2208 F:      arch/arm/boot/dts/qcom-*.dtsi
2209 F:      arch/arm/mach-qcom/
2210 F:      arch/arm64/boot/dts/qcom/
2211 F:      drivers/*/qcom/
2212 F:      drivers/*/qcom*
2213 F:      drivers/*/*/qcom/
2214 F:      drivers/*/*/qcom*
2215 F:      drivers/*/pm8???-*
2216 F:      drivers/bluetooth/btqcomsmd.c
2217 F:      drivers/clocksource/timer-qcom.c
2218 F:      drivers/extcon/extcon-qcom*
2219 F:      drivers/iommu/msm*
2220 F:      drivers/i2c/busses/i2c-qup.c
2221 F:      drivers/i2c/busses/i2c-qcom-geni.c
2222 F:      drivers/mfd/ssbi.c
2223 F:      drivers/mmc/host/mmci_qcom*
2224 F:      drivers/mmc/host/sdhci-msm.c
2225 F:      drivers/pci/controller/dwc/pcie-qcom.c
2226 F:      drivers/phy/qualcomm/
2227 F:      drivers/power/*/msm*
2228 F:      drivers/reset/reset-qcom-*
2229 F:      drivers/scsi/ufs/ufs-qcom.*
2230 F:      drivers/spi/spi-qup.c
2231 F:      drivers/spi/spi-geni-qcom.c
2232 F:      drivers/spi/spi-qcom-qspi.c
2233 F:      drivers/tty/serial/msm_serial.c
2234 F:      drivers/usb/dwc3/dwc3-qcom.c
2235 F:      include/dt-bindings/*/qcom*
2236 F:      include/linux/*/qcom*
2237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2238
2239 ARM/RADISYS ENP2611 MACHINE SUPPORT
2240 M:      Lennert Buytenhek <kernel@wantstofly.org>
2241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2242 S:      Maintained
2243
2244 ARM/RDA MICRO ARCHITECTURE
2245 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2248 S:      Maintained
2249 F:      arch/arm/boot/dts/rda8810pl-*
2250 F:      drivers/clocksource/timer-rda.c
2251 F:      drivers/gpio/gpio-rda.c
2252 F:      drivers/irqchip/irq-rda-intc.c
2253 F:      drivers/tty/serial/rda-uart.c
2254 F:      Documentation/devicetree/bindings/arm/rda.yaml
2255 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2256 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2257 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2258 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2259
2260 ARM/REALTEK ARCHITECTURE
2261 M:      Andreas Färber <afaerber@suse.de>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2264 S:      Maintained
2265 F:      arch/arm64/boot/dts/realtek/
2266 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2267
2268 ARM/RENESAS ARM64 ARCHITECTURE
2269 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2270 M:      Magnus Damm <magnus.damm@gmail.com>
2271 L:      linux-renesas-soc@vger.kernel.org
2272 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2274 S:      Supported
2275 F:      arch/arm64/boot/dts/renesas/
2276 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2277 F:      drivers/soc/renesas/
2278 F:      include/linux/soc/renesas/
2279
2280 ARM/RISCPC ARCHITECTURE
2281 M:      Russell King <linux@armlinux.org.uk>
2282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2283 W:      http://www.armlinux.org.uk/
2284 S:      Maintained
2285 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2286 F:      arch/arm/include/asm/hardware/ioc.h
2287 F:      arch/arm/include/asm/hardware/iomd.h
2288 F:      arch/arm/include/asm/hardware/memc.h
2289 F:      arch/arm/mach-rpc/
2290 F:      drivers/net/ethernet/8390/etherh.c
2291 F:      drivers/net/ethernet/i825xx/ether1*
2292 F:      drivers/net/ethernet/seeq/ether3*
2293 F:      drivers/scsi/arm/
2294
2295 ARM/Rockchip SoC support
2296 M:      Heiko Stuebner <heiko@sntech.de>
2297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2298 L:      linux-rockchip@lists.infradead.org
2299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2300 S:      Maintained
2301 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2302 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2303 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2304 F:      arch/arm/boot/dts/rk3*
2305 F:      arch/arm/boot/dts/rv1108*
2306 F:      arch/arm/mach-rockchip/
2307 F:      drivers/clk/rockchip/
2308 F:      drivers/i2c/busses/i2c-rk3x.c
2309 F:      drivers/*/*rockchip*
2310 F:      drivers/*/*/*rockchip*
2311 F:      sound/soc/rockchip/
2312 N:      rockchip
2313
2314 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2315 M:      Kukjin Kim <kgene@kernel.org>
2316 M:      Krzysztof Kozlowski <krzk@kernel.org>
2317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2318 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2319 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2320 S:      Maintained
2321 F:      arch/arm/boot/dts/s3c*
2322 F:      arch/arm/boot/dts/s5p*
2323 F:      arch/arm/boot/dts/exynos*
2324 F:      arch/arm64/boot/dts/exynos/
2325 F:      arch/arm/plat-samsung/
2326 F:      arch/arm/mach-s3c24*/
2327 F:      arch/arm/mach-s3c64xx/
2328 F:      arch/arm/mach-s5p*/
2329 F:      arch/arm/mach-exynos*/
2330 F:      drivers/*/*s3c24*
2331 F:      drivers/*/*/*s3c24*
2332 F:      drivers/*/*s3c64xx*
2333 F:      drivers/*/*s5pv210*
2334 F:      drivers/memory/samsung/
2335 F:      drivers/soc/samsung/
2336 F:      drivers/tty/serial/samsung*
2337 F:      include/linux/soc/samsung/
2338 F:      Documentation/arm/samsung/
2339 F:      Documentation/devicetree/bindings/arm/samsung/
2340 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2341 N:      exynos
2342
2343 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2344 M:      Kyungmin Park <kyungmin.park@samsung.com>
2345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2346 S:      Maintained
2347 F:      arch/arm/mach-s5pv210/
2348
2349 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2350 M:      Kyungmin Park <kyungmin.park@samsung.com>
2351 M:      Kamil Debski <kamil@wypas.org>
2352 M:      Andrzej Hajda <a.hajda@samsung.com>
2353 L:      linux-arm-kernel@lists.infradead.org
2354 L:      linux-media@vger.kernel.org
2355 S:      Maintained
2356 F:      drivers/media/platform/s5p-g2d/
2357
2358 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2359 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2360 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2361 L:      linux-media@vger.kernel.org
2362 S:      Maintained
2363 F:      drivers/media/platform/s5p-cec/
2364 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2365
2366 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2367 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2368 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2369 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2370 L:      linux-arm-kernel@lists.infradead.org
2371 L:      linux-media@vger.kernel.org
2372 S:      Maintained
2373 F:      drivers/media/platform/s5p-jpeg/
2374
2375 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2376 M:      Kyungmin Park <kyungmin.park@samsung.com>
2377 M:      Kamil Debski <kamil@wypas.org>
2378 M:      Jeongtae Park <jtp.park@samsung.com>
2379 M:      Andrzej Hajda <a.hajda@samsung.com>
2380 L:      linux-arm-kernel@lists.infradead.org
2381 L:      linux-media@vger.kernel.org
2382 S:      Maintained
2383 F:      drivers/media/platform/s5p-mfc/
2384
2385 ARM/SHMOBILE ARM ARCHITECTURE
2386 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2387 M:      Magnus Damm <magnus.damm@gmail.com>
2388 L:      linux-renesas-soc@vger.kernel.org
2389 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2391 S:      Supported
2392 F:      arch/arm/boot/dts/emev2*
2393 F:      arch/arm/boot/dts/gr-peach*
2394 F:      arch/arm/boot/dts/iwg20d-q7*
2395 F:      arch/arm/boot/dts/r7s*
2396 F:      arch/arm/boot/dts/r8a*
2397 F:      arch/arm/boot/dts/r9a*
2398 F:      arch/arm/boot/dts/sh*
2399 F:      arch/arm/configs/shmobile_defconfig
2400 F:      arch/arm/include/debug/renesas-scif.S
2401 F:      arch/arm/mach-shmobile/
2402 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2403 F:      drivers/soc/renesas/
2404 F:      include/linux/soc/renesas/
2405
2406 ARM/SOCFPGA ARCHITECTURE
2407 M:      Dinh Nguyen <dinguyen@kernel.org>
2408 S:      Maintained
2409 F:      arch/arm/mach-socfpga/
2410 F:      arch/arm/boot/dts/socfpga*
2411 F:      arch/arm/configs/socfpga_defconfig
2412 F:      arch/arm64/boot/dts/altera/
2413 F:      arch/arm64/boot/dts/intel/
2414 W:      http://www.rocketboards.org
2415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2416
2417 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2418 M:      Dinh Nguyen <dinguyen@kernel.org>
2419 S:      Maintained
2420 F:      drivers/clk/socfpga/
2421
2422 ARM/SOCFPGA EDAC SUPPORT
2423 M:      Thor Thayer <thor.thayer@linux.intel.com>
2424 S:      Maintained
2425 F:      drivers/edac/altera_edac.
2426
2427 ARM/SPREADTRUM SoC SUPPORT
2428 M:      Orson Zhai <orsonzhai@gmail.com>
2429 M:      Baolin Wang <baolin.wang7@gmail.com>
2430 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2431 S:      Maintained
2432 F:      arch/arm64/boot/dts/sprd
2433 N:      sprd
2434 N:      sc27xx
2435 N:      sc2731
2436
2437 ARM/STI ARCHITECTURE
2438 M:      Patrice Chotard <patrice.chotard@st.com>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 W:      http://www.stlinux.com
2441 S:      Maintained
2442 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2443 F:      arch/arm/mach-sti/
2444 F:      arch/arm/boot/dts/sti*
2445 F:      drivers/char/hw_random/st-rng.c
2446 F:      drivers/clocksource/arm_global_timer.c
2447 F:      drivers/clocksource/clksrc_st_lpc.c
2448 F:      drivers/cpufreq/sti-cpufreq.c
2449 F:      drivers/dma/st_fdma*
2450 F:      drivers/i2c/busses/i2c-st.c
2451 F:      drivers/media/rc/st_rc.c
2452 F:      drivers/media/platform/sti/c8sectpfe/
2453 F:      drivers/mmc/host/sdhci-st.c
2454 F:      drivers/phy/st/phy-miphy28lp.c
2455 F:      drivers/phy/st/phy-stih407-usb.c
2456 F:      drivers/pinctrl/pinctrl-st.c
2457 F:      drivers/remoteproc/st_remoteproc.c
2458 F:      drivers/remoteproc/st_slim_rproc.c
2459 F:      drivers/reset/sti/
2460 F:      drivers/rtc/rtc-st-lpc.c
2461 F:      drivers/tty/serial/st-asc.c
2462 F:      drivers/usb/dwc3/dwc3-st.c
2463 F:      drivers/usb/host/ehci-st.c
2464 F:      drivers/usb/host/ohci-st.c
2465 F:      drivers/watchdog/st_lpc_wdt.c
2466 F:      drivers/ata/ahci_st.c
2467 F:      include/linux/remoteproc/st_slim_rproc.h
2468
2469 ARM/STM32 ARCHITECTURE
2470 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2471 M:      Alexandre Torgue <alexandre.torgue@st.com>
2472 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2474 S:      Maintained
2475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2476 N:      stm32
2477 N:      stm
2478 F:      arch/arm/boot/dts/stm32*
2479 F:      arch/arm/mach-stm32/
2480 F:      drivers/clocksource/armv7m_systick.c
2481
2482 ARM/Synaptics SoC support
2483 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2484 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 S:      Maintained
2487 F:      arch/arm/mach-berlin/
2488 F:      arch/arm/boot/dts/berlin*
2489 F:      arch/arm64/boot/dts/synaptics/
2490
2491 ARM/TANGO ARCHITECTURE
2492 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2493 M:      Mans Rullgard <mans@mansr.com>
2494 L:      linux-arm-kernel@lists.infradead.org
2495 S:      Odd Fixes
2496 N:      tango
2497
2498 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2499 M:      Lennert Buytenhek <kernel@wantstofly.org>
2500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 S:      Maintained
2502
2503 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2504 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2505 L:      linux-tegra@vger.kernel.org
2506 L:      linux-media@vger.kernel.org
2507 S:      Maintained
2508 F:      drivers/media/platform/tegra-cec/
2509 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2510
2511 ARM/TETON BGA MACHINE SUPPORT
2512 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 S:      Maintained
2515
2516 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2517 M:      Santosh Shilimkar <ssantosh@kernel.org>
2518 L:      linux-kernel@vger.kernel.org
2519 S:      Maintained
2520 F:      drivers/memory/*emif*
2521
2522 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2523 M:      Tero Kristo <t-kristo@ti.com>
2524 M:      Nishanth Menon <nm@ti.com>
2525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2526 S:      Supported
2527 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2528 F:      arch/arm64/boot/dts/ti/Makefile
2529 F:      arch/arm64/boot/dts/ti/k3-*
2530 F:      include/dt-bindings/pinctrl/k3.h
2531
2532 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2533 M:      Santosh Shilimkar <ssantosh@kernel.org>
2534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 S:      Maintained
2536 F:      arch/arm/mach-keystone/
2537 F:      arch/arm/boot/dts/keystone-*
2538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2539
2540 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2541 M:      Santosh Shilimkar <ssantosh@kernel.org>
2542 L:      linux-kernel@vger.kernel.org
2543 S:      Maintained
2544 F:      drivers/clk/keystone/
2545
2546 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2547 M:      Santosh Shilimkar <ssantosh@kernel.org>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 L:      linux-kernel@vger.kernel.org
2550 S:      Maintained
2551 F:      drivers/clocksource/timer-keystone.c
2552
2553 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2554 M:      Santosh Shilimkar <ssantosh@kernel.org>
2555 L:      linux-kernel@vger.kernel.org
2556 S:      Maintained
2557 F:      drivers/power/reset/keystone-reset.c
2558
2559 ARM/THECUS N2100 MACHINE SUPPORT
2560 M:      Lennert Buytenhek <kernel@wantstofly.org>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563
2564 ARM/TOSA MACHINE SUPPORT
2565 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2566 M:      Dirk Opfer <dirk@opfer-online.de>
2567 S:      Maintained
2568
2569 ARM/UNIPHIER ARCHITECTURE
2570 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2573 S:      Maintained
2574 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2575 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2576 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2577 F:      arch/arm/boot/dts/uniphier*
2578 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2579 F:      arch/arm/mach-uniphier/
2580 F:      arch/arm/mm/cache-uniphier.c
2581 F:      arch/arm64/boot/dts/socionext/uniphier*
2582 F:      drivers/bus/uniphier-system-bus.c
2583 F:      drivers/clk/uniphier/
2584 F:      drivers/dma/uniphier-mdmac.c
2585 F:      drivers/gpio/gpio-uniphier.c
2586 F:      drivers/i2c/busses/i2c-uniphier*
2587 F:      drivers/irqchip/irq-uniphier-aidet.c
2588 F:      drivers/mmc/host/uniphier-sd.c
2589 F:      drivers/pinctrl/uniphier/
2590 F:      drivers/reset/reset-uniphier.c
2591 F:      drivers/tty/serial/8250/8250_uniphier.c
2592 N:      uniphier
2593
2594 Ux500 CLOCK DRIVERS
2595 M:      Ulf Hansson <ulf.hansson@linaro.org>
2596 L:      linux-clk@vger.kernel.org
2597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2598 S:      Maintained
2599 F:      drivers/clk/ux500/
2600
2601 ARM/VERSATILE EXPRESS PLATFORM
2602 M:      Liviu Dudau <liviu.dudau@arm.com>
2603 M:      Sudeep Holla <sudeep.holla@arm.com>
2604 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 S:      Maintained
2607 F:      arch/arm/boot/dts/vexpress*
2608 F:      arch/arm64/boot/dts/arm/
2609 F:      arch/arm/mach-vexpress/
2610 F:      */*/vexpress*
2611 F:      */*/*/vexpress*
2612 F:      drivers/clk/versatile/clk-vexpress-osc.c
2613 F:      drivers/clocksource/timer-versatile.c
2614 N:      mps2
2615
2616 ARM/VFP SUPPORT
2617 M:      Russell King <linux@armlinux.org.uk>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 W:      http://www.armlinux.org.uk/
2620 S:      Maintained
2621 F:      arch/arm/vfp/
2622
2623 ARM/VOIPAC PXA270 SUPPORT
2624 M:      Marek Vasut <marek.vasut@gmail.com>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 S:      Maintained
2627 F:      arch/arm/mach-pxa/vpac270.c
2628 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2629
2630 ARM/VT8500 ARM ARCHITECTURE
2631 M:      Tony Prisk <linux@prisktech.co.nz>
2632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2633 S:      Maintained
2634 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2635 F:      arch/arm/mach-vt8500/
2636 F:      drivers/clocksource/timer-vt8500.c
2637 F:      drivers/i2c/busses/i2c-wmt.c
2638 F:      drivers/mmc/host/wmt-sdmmc.c
2639 F:      drivers/pwm/pwm-vt8500.c
2640 F:      drivers/rtc/rtc-vt8500.c
2641 F:      drivers/tty/serial/vt8500_serial.c
2642 F:      drivers/usb/host/ehci-platform.c
2643 F:      drivers/usb/host/uhci-platform.c
2644 F:      drivers/video/fbdev/vt8500lcdfb.*
2645 F:      drivers/video/fbdev/wm8505fb*
2646 F:      drivers/video/fbdev/wmt_ge_rops.*
2647
2648 ARM/ZIPIT Z2 SUPPORT
2649 M:      Marek Vasut <marek.vasut@gmail.com>
2650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2651 S:      Maintained
2652 F:      arch/arm/mach-pxa/z2.c
2653 F:      arch/arm/mach-pxa/include/mach/z2.h
2654
2655 ARM/ZTE ARCHITECTURE
2656 M:      Jun Nie <jun.nie@linaro.org>
2657 M:      Shawn Guo <shawnguo@kernel.org>
2658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2659 S:      Maintained
2660 F:      arch/arm/boot/dts/zx2967*
2661 F:      arch/arm/mach-zx/
2662 F:      arch/arm64/boot/dts/zte/
2663 F:      drivers/clk/zte/
2664 F:      drivers/dma/zx_dma.c
2665 F:      drivers/gpio/gpio-zx.c
2666 F:      drivers/i2c/busses/i2c-zx2967.c
2667 F:      drivers/mmc/host/dw_mmc-zx.*
2668 F:      drivers/pinctrl/zte/
2669 F:      drivers/soc/zte/
2670 F:      drivers/thermal/zx2967_thermal.c
2671 F:      drivers/watchdog/zx2967_wdt.c
2672 F:      Documentation/devicetree/bindings/arm/zte.yaml
2673 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2674 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2675 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2676 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2677 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2678 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2679 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2680 F:      Documentation/devicetree/bindings/soc/zte/
2681 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2682 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2683 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2684 F:      include/dt-bindings/clock/zx2967*.h
2685 F:      include/dt-bindings/soc/zte,*.h
2686 F:      sound/soc/codecs/zx_aud96p22.c
2687 F:      sound/soc/zte/
2688
2689 ARM/ZYNQ ARCHITECTURE
2690 M:      Michal Simek <michal.simek@xilinx.com>
2691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2692 W:      http://wiki.xilinx.com
2693 T:      git https://github.com/Xilinx/linux-xlnx.git
2694 S:      Supported
2695 F:      arch/arm/mach-zynq/
2696 F:      drivers/cpuidle/cpuidle-zynq.c
2697 F:      drivers/block/xsysace.c
2698 N:      zynq
2699 N:      xilinx
2700 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2701 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2702 F:      drivers/clocksource/timer-cadence-ttc.c
2703 F:      drivers/i2c/busses/i2c-cadence.c
2704 F:      drivers/mmc/host/sdhci-of-arasan.c
2705 F:      drivers/edac/synopsys_edac.c
2706 F:      drivers/i2c/busses/i2c-xiic.c
2707
2708 ARM64 PORT (AARCH64 ARCHITECTURE)
2709 M:      Catalin Marinas <catalin.marinas@arm.com>
2710 M:      Will Deacon <will@kernel.org>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2713 S:      Maintained
2714 F:      arch/arm64/
2715 X:      arch/arm64/boot/dts/
2716 F:      Documentation/arm64/
2717 F:      tools/testing/selftests/arm64/
2718
2719 AS3645A LED FLASH CONTROLLER DRIVER
2720 M:      Sakari Ailus <sakari.ailus@iki.fi>
2721 L:      linux-leds@vger.kernel.org
2722 S:      Maintained
2723 F:      drivers/leds/leds-as3645a.c
2724
2725 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2726 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2727 L:      linux-media@vger.kernel.org
2728 T:      git git://linuxtv.org/media_tree.git
2729 S:      Maintained
2730 F:      drivers/media/i2c/ak7375.c
2731 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2732
2733 ASAHI KASEI AK8974 DRIVER
2734 M:      Linus Walleij <linus.walleij@linaro.org>
2735 L:      linux-iio@vger.kernel.org
2736 W:      http://www.akm.com/
2737 S:      Supported
2738 F:      drivers/iio/magnetometer/ak8974.c
2739
2740 ASC7621 HARDWARE MONITOR DRIVER
2741 M:      George Joseph <george.joseph@fairview5.com>
2742 L:      linux-hwmon@vger.kernel.org
2743 S:      Maintained
2744 F:      Documentation/hwmon/asc7621.rst
2745 F:      drivers/hwmon/asc7621.c
2746
2747 ASPEED PINCTRL DRIVERS
2748 M:      Andrew Jeffery <andrew@aj.id.au>
2749 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2750 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2751 L:      linux-gpio@vger.kernel.org
2752 S:      Maintained
2753 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2754 F:      drivers/pinctrl/aspeed/
2755
2756 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2757 M:      Eddie James <eajames@linux.ibm.com>
2758 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2759 S:      Maintained
2760 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2761 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2762 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2763
2764 ASPEED VIDEO ENGINE DRIVER
2765 M:      Eddie James <eajames@linux.ibm.com>
2766 L:      linux-media@vger.kernel.org
2767 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2768 S:      Maintained
2769 F:      drivers/media/platform/aspeed-video.c
2770 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2771
2772 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2773 M:      Corentin Chary <corentin.chary@gmail.com>
2774 L:      acpi4asus-user@lists.sourceforge.net
2775 L:      platform-driver-x86@vger.kernel.org
2776 S:      Maintained
2777 W:      http://acpi4asus.sf.net
2778 F:      drivers/platform/x86/asus*.c
2779 F:      drivers/platform/x86/eeepc*.c
2780
2781 ASUS WIRELESS RADIO CONTROL DRIVER
2782 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2783 L:      platform-driver-x86@vger.kernel.org
2784 S:      Maintained
2785 F:      drivers/platform/x86/asus-wireless.c
2786
2787 ASYMMETRIC KEYS
2788 M:      David Howells <dhowells@redhat.com>
2789 L:      keyrings@vger.kernel.org
2790 S:      Maintained
2791 F:      Documentation/crypto/asymmetric-keys.txt
2792 F:      include/linux/verification.h
2793 F:      include/crypto/public_key.h
2794 F:      include/crypto/pkcs7.h
2795 F:      crypto/asymmetric_keys/
2796
2797 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2798 R:      Dan Williams <dan.j.williams@intel.com>
2799 W:      http://sourceforge.net/projects/xscaleiop
2800 S:      Odd fixes
2801 F:      Documentation/crypto/async-tx-api.txt
2802 F:      crypto/async_tx/
2803 F:      drivers/dma/
2804 F:      include/linux/dmaengine.h
2805 F:      include/linux/async_tx.h
2806
2807 AT24 EEPROM DRIVER
2808 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2809 L:      linux-i2c@vger.kernel.org
2810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2811 S:      Maintained
2812 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2813 F:      drivers/misc/eeprom/at24.c
2814
2815 ATA OVER ETHERNET (AOE) DRIVER
2816 M:      "Justin Sanders" <justin@coraid.com>
2817 W:      http://www.openaoe.org/
2818 S:      Supported
2819 F:      Documentation/admin-guide/aoe/
2820 F:      drivers/block/aoe/
2821
2822 ATHEROS 71XX/9XXX GPIO DRIVER
2823 M:      Alban Bedel <albeu@free.fr>
2824 S:      Maintained
2825 W:      https://github.com/AlbanBedel/linux
2826 T:      git git://github.com/AlbanBedel/linux
2827 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2828 F:      drivers/gpio/gpio-ath79.c
2829
2830 ATHEROS 71XX/9XXX USB PHY DRIVER
2831 M:      Alban Bedel <albeu@free.fr>
2832 W:      https://github.com/AlbanBedel/linux
2833 T:      git git://github.com/AlbanBedel/linux
2834 S:      Maintained
2835 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2836 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2837
2838 ATHEROS ATH GENERIC UTILITIES
2839 M:      Kalle Valo <kvalo@codeaurora.org>
2840 L:      linux-wireless@vger.kernel.org
2841 S:      Supported
2842 F:      drivers/net/wireless/ath/*
2843
2844 ATHEROS ATH5K WIRELESS DRIVER
2845 M:      Jiri Slaby <jirislaby@gmail.com>
2846 M:      Nick Kossifidis <mickflemm@gmail.com>
2847 M:      Luis Chamberlain <mcgrof@kernel.org>
2848 L:      linux-wireless@vger.kernel.org
2849 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2850 S:      Maintained
2851 F:      drivers/net/wireless/ath/ath5k/
2852
2853 ATHEROS ATH6KL WIRELESS DRIVER
2854 M:      Kalle Valo <kvalo@codeaurora.org>
2855 L:      linux-wireless@vger.kernel.org
2856 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2858 S:      Supported
2859 F:      drivers/net/wireless/ath/ath6kl/
2860
2861 ATI_REMOTE2 DRIVER
2862 M:      Ville Syrjala <syrjala@sci.fi>
2863 S:      Maintained
2864 F:      drivers/input/misc/ati_remote2.c
2865
2866 ATK0110 HWMON DRIVER
2867 M:      Luca Tettamanti <kronos.it@gmail.com>
2868 L:      linux-hwmon@vger.kernel.org
2869 S:      Maintained
2870 F:      drivers/hwmon/asus_atk0110.c
2871
2872 ATLX ETHERNET DRIVERS
2873 M:      Jay Cliburn <jcliburn@gmail.com>
2874 M:      Chris Snook <chris.snook@gmail.com>
2875 L:      netdev@vger.kernel.org
2876 W:      http://sourceforge.net/projects/atl1
2877 W:      http://atl1.sourceforge.net
2878 S:      Maintained
2879 F:      drivers/net/ethernet/atheros/
2880
2881 ATM
2882 M:      Chas Williams <3chas3@gmail.com>
2883 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2884 L:      netdev@vger.kernel.org
2885 W:      http://linux-atm.sourceforge.net
2886 S:      Maintained
2887 F:      drivers/atm/
2888 F:      include/linux/atm*
2889 F:      include/uapi/linux/atm*
2890
2891 ATMEL MACB ETHERNET DRIVER
2892 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2893 S:      Supported
2894 F:      drivers/net/ethernet/cadence/
2895
2896 ATMEL MAXTOUCH DRIVER
2897 M:      Nick Dyer <nick@shmanahar.org>
2898 T:      git git://github.com/ndyer/linux.git
2899 S:      Maintained
2900 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2901 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2902
2903 ATMEL WIRELESS DRIVER
2904 M:      Simon Kelley <simon@thekelleys.org.uk>
2905 L:      linux-wireless@vger.kernel.org
2906 W:      http://www.thekelleys.org.uk/atmel
2907 W:      http://atmelwlandriver.sourceforge.net/
2908 S:      Maintained
2909 F:      drivers/net/wireless/atmel/atmel*
2910
2911 ATOMIC INFRASTRUCTURE
2912 M:      Will Deacon <will@kernel.org>
2913 M:      Peter Zijlstra <peterz@infradead.org>
2914 R:      Boqun Feng <boqun.feng@gmail.com>
2915 L:      linux-kernel@vger.kernel.org
2916 S:      Maintained
2917 F:      arch/*/include/asm/atomic*.h
2918 F:      include/*/atomic*.h
2919 F:      scripts/atomic/
2920
2921 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2922 M:      Bradley Grove <linuxdrivers@attotech.com>
2923 L:      linux-scsi@vger.kernel.org
2924 W:      http://www.attotech.com
2925 S:      Supported
2926 F:      drivers/scsi/esas2r
2927
2928 ATUSB IEEE 802.15.4 RADIO DRIVER
2929 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2930 L:      linux-wpan@vger.kernel.org
2931 S:      Maintained
2932 F:      drivers/net/ieee802154/atusb.c
2933 F:      drivers/net/ieee802154/atusb.h
2934 F:      drivers/net/ieee802154/at86rf230.h
2935
2936 AUDIT SUBSYSTEM
2937 M:      Paul Moore <paul@paul-moore.com>
2938 M:      Eric Paris <eparis@redhat.com>
2939 L:      linux-audit@redhat.com (moderated for non-subscribers)
2940 W:      https://github.com/linux-audit
2941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2942 S:      Supported
2943 F:      include/linux/audit.h
2944 F:      include/uapi/linux/audit.h
2945 F:      kernel/audit*
2946
2947 AUXILIARY DISPLAY DRIVERS
2948 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2949 S:      Maintained
2950 F:      drivers/auxdisplay/
2951 F:      include/linux/cfag12864b.h
2952
2953 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2954 M:      Andreas Klinger <ak@it-klinger.de>
2955 L:      linux-iio@vger.kernel.org
2956 S:      Maintained
2957 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2958 F:      drivers/iio/adc/hx711.c
2959
2960 AX.25 NETWORK LAYER
2961 M:      Ralf Baechle <ralf@linux-mips.org>
2962 L:      linux-hams@vger.kernel.org
2963 W:      http://www.linux-ax25.org/
2964 S:      Maintained
2965 F:      include/uapi/linux/ax25.h
2966 F:      include/net/ax25.h
2967 F:      net/ax25/
2968
2969 AXENTIA ARM DEVICES
2970 M:      Peter Rosin <peda@axentia.se>
2971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2972 S:      Maintained
2973 F:      arch/arm/boot/dts/at91-linea.dtsi
2974 F:      arch/arm/boot/dts/at91-natte.dtsi
2975 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2976 F:      arch/arm/boot/dts/at91-tse850-3.dts
2977
2978 AXENTIA ASOC DRIVERS
2979 M:      Peter Rosin <peda@axentia.se>
2980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      Documentation/devicetree/bindings/sound/axentia,*
2983 F:      sound/soc/atmel/tse850-pcm5142.c
2984
2985 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2986 M:      Nuno Sá <nuno.sa@analog.com>
2987 W:      http://ez.analog.com/community/linux-device-drivers
2988 L:      linux-hwmon@vger.kernel.org
2989 S:      Supported
2990 F:      drivers/hwmon/axi-fan-control.c
2991 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2992
2993 AXXIA I2C CONTROLLER
2994 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2995 L:      linux-i2c@vger.kernel.org
2996 S:      Maintained
2997 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2998 F:      drivers/i2c/busses/i2c-axxia.c
2999
3000 AZ6007 DVB DRIVER
3001 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3002 L:      linux-media@vger.kernel.org
3003 W:      https://linuxtv.org
3004 T:      git git://linuxtv.org/media_tree.git
3005 S:      Maintained
3006 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3007
3008 AZTECH FM RADIO RECEIVER DRIVER
3009 M:      Hans Verkuil <hverkuil@xs4all.nl>
3010 L:      linux-media@vger.kernel.org
3011 T:      git git://linuxtv.org/media_tree.git
3012 W:      https://linuxtv.org
3013 S:      Maintained
3014 F:      drivers/media/radio/radio-aztech*
3015
3016 B43 WIRELESS DRIVER
3017 L:      linux-wireless@vger.kernel.org
3018 L:      b43-dev@lists.infradead.org
3019 W:      http://wireless.kernel.org/en/users/Drivers/b43
3020 S:      Odd Fixes
3021 F:      drivers/net/wireless/broadcom/b43/
3022
3023 B43LEGACY WIRELESS DRIVER
3024 M:      Larry Finger <Larry.Finger@lwfinger.net>
3025 L:      linux-wireless@vger.kernel.org
3026 L:      b43-dev@lists.infradead.org
3027 W:      http://wireless.kernel.org/en/users/Drivers/b43
3028 S:      Maintained
3029 F:      drivers/net/wireless/broadcom/b43legacy/
3030
3031 BACKLIGHT CLASS/SUBSYSTEM
3032 M:      Lee Jones <lee.jones@linaro.org>
3033 M:      Daniel Thompson <daniel.thompson@linaro.org>
3034 M:      Jingoo Han <jingoohan1@gmail.com>
3035 L:      dri-devel@lists.freedesktop.org
3036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3037 S:      Maintained
3038 F:      drivers/video/backlight/
3039 F:      include/linux/backlight.h
3040 F:      include/linux/pwm_backlight.h
3041 F:      Documentation/devicetree/bindings/leds/backlight
3042 F:      Documentation/ABI/stable/sysfs-class-backlight
3043 F:      Documentation/ABI/testing/sysfs-class-backlight
3044
3045 BATMAN ADVANCED
3046 M:      Marek Lindner <mareklindner@neomailbox.ch>
3047 M:      Simon Wunderlich <sw@simonwunderlich.de>
3048 M:      Antonio Quartulli <a@unstable.cc>
3049 M:      Sven Eckelmann <sven@narfation.org>
3050 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3051 W:      https://www.open-mesh.org/
3052 B:      https://www.open-mesh.org/projects/batman-adv/issues
3053 C:      irc://chat.freenode.net/batman
3054 Q:      https://patchwork.open-mesh.org/project/batman/list/
3055 T:      git https://git.open-mesh.org/linux-merge.git
3056 S:      Maintained
3057 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3058 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3059 F:      Documentation/networking/batman-adv.rst
3060 F:      include/uapi/linux/batadv_packet.h
3061 F:      include/uapi/linux/batman_adv.h
3062 F:      net/batman-adv/
3063
3064 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3065 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3066 L:      linux-hams@vger.kernel.org
3067 W:      http://www.baycom.org/~tom/ham/ham.html
3068 S:      Maintained
3069 F:      drivers/net/hamradio/baycom*
3070
3071 BCACHE (BLOCK LAYER CACHE)
3072 M:      Coly Li <colyli@suse.de>
3073 M:      Kent Overstreet <kent.overstreet@gmail.com>
3074 L:      linux-bcache@vger.kernel.org
3075 W:      http://bcache.evilpiepirate.org
3076 C:      irc://irc.oftc.net/bcache
3077 S:      Maintained
3078 F:      drivers/md/bcache/
3079
3080 BDISP ST MEDIA DRIVER
3081 M:      Fabien Dessenne <fabien.dessenne@st.com>
3082 L:      linux-media@vger.kernel.org
3083 T:      git git://linuxtv.org/media_tree.git
3084 W:      https://linuxtv.org
3085 S:      Supported
3086 F:      drivers/media/platform/sti/bdisp
3087
3088 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3089 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3090 L:      netdev@vger.kernel.org
3091 S:      Maintained
3092 F:      drivers/net/ethernet/ec_bhf.c
3093
3094 BEFS FILE SYSTEM
3095 M:      Luis de Bethencourt <luisbg@kernel.org>
3096 M:      Salah Triki <salah.triki@gmail.com>
3097 S:      Maintained
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3099 F:      Documentation/filesystems/befs.rst
3100 F:      fs/befs/
3101
3102 BFQ I/O SCHEDULER
3103 M:      Paolo Valente <paolo.valente@linaro.org>
3104 M:      Jens Axboe <axboe@kernel.dk>
3105 L:      linux-block@vger.kernel.org
3106 S:      Maintained
3107 F:      block/bfq-*
3108 F:      Documentation/block/bfq-iosched.rst
3109
3110 BFS FILE SYSTEM
3111 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3112 S:      Maintained
3113 F:      Documentation/filesystems/bfs.rst
3114 F:      fs/bfs/
3115 F:      include/uapi/linux/bfs_fs.h
3116
3117 BLINKM RGB LED DRIVER
3118 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3119 S:      Maintained
3120 F:      drivers/leds/leds-blinkm.c
3121
3122 BLOCK LAYER
3123 M:      Jens Axboe <axboe@kernel.dk>
3124 L:      linux-block@vger.kernel.org
3125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3126 S:      Maintained
3127 F:      block/
3128 F:      drivers/block/
3129 F:      kernel/trace/blktrace.c
3130 F:      lib/sbitmap.c
3131
3132 BLOCK2MTD DRIVER
3133 M:      Joern Engel <joern@lazybastard.org>
3134 L:      linux-mtd@lists.infradead.org
3135 S:      Maintained
3136 F:      drivers/mtd/devices/block2mtd.c
3137
3138 BLUETOOTH DRIVERS
3139 M:      Marcel Holtmann <marcel@holtmann.org>
3140 M:      Johan Hedberg <johan.hedberg@gmail.com>
3141 L:      linux-bluetooth@vger.kernel.org
3142 W:      http://www.bluez.org/
3143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3145 S:      Maintained
3146 F:      drivers/bluetooth/
3147
3148 BLUETOOTH SUBSYSTEM
3149 M:      Marcel Holtmann <marcel@holtmann.org>
3150 M:      Johan Hedberg <johan.hedberg@gmail.com>
3151 L:      linux-bluetooth@vger.kernel.org
3152 W:      http://www.bluez.org/
3153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3155 S:      Maintained
3156 F:      net/bluetooth/
3157 F:      include/net/bluetooth/
3158
3159 BONDING DRIVER
3160 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3161 M:      Veaceslav Falico <vfalico@gmail.com>
3162 M:      Andy Gospodarek <andy@greyhouse.net>
3163 L:      netdev@vger.kernel.org
3164 W:      http://sourceforge.net/projects/bonding/
3165 S:      Supported
3166 F:      drivers/net/bonding/
3167 F:      include/uapi/linux/if_bonding.h
3168
3169 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3170 M:      Dan Robertson <dan@dlrobertson.com>
3171 L:      linux-iio@vger.kernel.org
3172 S:      Maintained
3173 F:      drivers/iio/accel/bma400*
3174 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3175
3176 BPF (Safe dynamic programs and tools)
3177 M:      Alexei Starovoitov <ast@kernel.org>
3178 M:      Daniel Borkmann <daniel@iogearbox.net>
3179 R:      Martin KaFai Lau <kafai@fb.com>
3180 R:      Song Liu <songliubraving@fb.com>
3181 R:      Yonghong Song <yhs@fb.com>
3182 R:      Andrii Nakryiko <andriin@fb.com>
3183 R:      John Fastabend <john.fastabend@gmail.com>
3184 R:      KP Singh <kpsingh@chromium.org>
3185 L:      netdev@vger.kernel.org
3186 L:      bpf@vger.kernel.org
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3189 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3190 S:      Supported
3191 F:      arch/*/net/*
3192 F:      Documentation/networking/filter.txt
3193 F:      Documentation/bpf/
3194 F:      include/linux/bpf*
3195 F:      include/linux/filter.h
3196 F:      include/trace/events/xdp.h
3197 F:      include/uapi/linux/bpf*
3198 F:      include/uapi/linux/filter.h
3199 F:      kernel/bpf/
3200 F:      kernel/trace/bpf_trace.c
3201 F:      lib/test_bpf.c
3202 F:      net/bpf/
3203 F:      net/core/filter.c
3204 F:      net/sched/act_bpf.c
3205 F:      net/sched/cls_bpf.c
3206 F:      samples/bpf/
3207 F:      tools/bpf/
3208 F:      tools/lib/bpf/
3209 F:      tools/testing/selftests/bpf/
3210 K:      bpf
3211 N:      bpf
3212
3213 BPF JIT for ARM
3214 M:      Shubham Bansal <illusionist.neo@gmail.com>
3215 L:      netdev@vger.kernel.org
3216 L:      bpf@vger.kernel.org
3217 S:      Maintained
3218 F:      arch/arm/net/
3219
3220 BPF JIT for ARM64
3221 M:      Daniel Borkmann <daniel@iogearbox.net>
3222 M:      Alexei Starovoitov <ast@kernel.org>
3223 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3224 L:      netdev@vger.kernel.org
3225 L:      bpf@vger.kernel.org
3226 S:      Supported
3227 F:      arch/arm64/net/
3228
3229 BPF JIT for MIPS (32-BIT AND 64-BIT)
3230 M:      Paul Burton <paulburton@kernel.org>
3231 L:      netdev@vger.kernel.org
3232 L:      bpf@vger.kernel.org
3233 S:      Maintained
3234 F:      arch/mips/net/
3235
3236 BPF JIT for NFP NICs
3237 M:      Jakub Kicinski <kuba@kernel.org>
3238 L:      netdev@vger.kernel.org
3239 L:      bpf@vger.kernel.org
3240 S:      Supported
3241 F:      drivers/net/ethernet/netronome/nfp/bpf/
3242
3243 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3244 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3245 M:      Sandipan Das <sandipan@linux.ibm.com>
3246 L:      netdev@vger.kernel.org
3247 L:      bpf@vger.kernel.org
3248 S:      Maintained
3249 F:      arch/powerpc/net/
3250
3251 BPF JIT for RISC-V (32-bit)
3252 M:      Luke Nelson <luke.r.nels@gmail.com>
3253 M:      Xi Wang <xi.wang@gmail.com>
3254 L:      netdev@vger.kernel.org
3255 L:      bpf@vger.kernel.org
3256 S:      Maintained
3257 F:      arch/riscv/net/
3258 X:      arch/riscv/net/bpf_jit_comp64.c
3259
3260 BPF JIT for RISC-V (64-bit)
3261 M:      Björn Töpel <bjorn.topel@gmail.com>
3262 L:      netdev@vger.kernel.org
3263 L:      bpf@vger.kernel.org
3264 S:      Maintained
3265 F:      arch/riscv/net/
3266 X:      arch/riscv/net/bpf_jit_comp32.c
3267
3268 BPF JIT for S390
3269 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3270 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3271 M:      Vasily Gorbik <gor@linux.ibm.com>
3272 L:      netdev@vger.kernel.org
3273 L:      bpf@vger.kernel.org
3274 S:      Maintained
3275 F:      arch/s390/net/
3276 X:      arch/s390/net/pnet.c
3277
3278 BPF JIT for SPARC (32-BIT AND 64-BIT)
3279 M:      David S. Miller <davem@davemloft.net>
3280 L:      netdev@vger.kernel.org
3281 L:      bpf@vger.kernel.org
3282 S:      Maintained
3283 F:      arch/sparc/net/
3284
3285 BPF JIT for X86 32-BIT
3286 M:      Wang YanQing <udknight@gmail.com>
3287 L:      netdev@vger.kernel.org
3288 L:      bpf@vger.kernel.org
3289 S:      Maintained
3290 F:      arch/x86/net/bpf_jit_comp32.c
3291
3292 BPF JIT for X86 64-BIT
3293 M:      Alexei Starovoitov <ast@kernel.org>
3294 M:      Daniel Borkmann <daniel@iogearbox.net>
3295 L:      netdev@vger.kernel.org
3296 L:      bpf@vger.kernel.org
3297 S:      Supported
3298 F:      arch/x86/net/
3299 X:      arch/x86/net/bpf_jit_comp32.c
3300
3301 BROADCOM B44 10/100 ETHERNET DRIVER
3302 M:      Michael Chan <michael.chan@broadcom.com>
3303 L:      netdev@vger.kernel.org
3304 S:      Supported
3305 F:      drivers/net/ethernet/broadcom/b44.*
3306
3307 BROADCOM B53 ETHERNET SWITCH DRIVER
3308 M:      Florian Fainelli <f.fainelli@gmail.com>
3309 L:      netdev@vger.kernel.org
3310 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3311 S:      Supported
3312 F:      drivers/net/dsa/b53/*
3313 F:      include/linux/platform_data/b53.h
3314
3315 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3316 M:      Florian Fainelli <f.fainelli@gmail.com>
3317 M:      Ray Jui <rjui@broadcom.com>
3318 M:      Scott Branden <sbranden@broadcom.com>
3319 M:      bcm-kernel-feedback-list@broadcom.com
3320 T:      git git://github.com/broadcom/mach-bcm
3321 S:      Maintained
3322 N:      bcm281*
3323 N:      bcm113*
3324 N:      bcm216*
3325 N:      kona
3326 F:      arch/arm/mach-bcm/
3327
3328 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3329 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3330 L:      bcm-kernel-feedback-list@broadcom.com
3331 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3333 T:      git git://github.com/anholt/linux
3334 S:      Maintained
3335 N:      bcm2711
3336 N:      bcm2835
3337 F:      drivers/staging/vc04_services
3338 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3339 F:      drivers/pci/controller/pcie-brcmstb.c
3340
3341 BROADCOM BCM47XX MIPS ARCHITECTURE
3342 M:      Hauke Mehrtens <hauke@hauke-m.de>
3343 M:      Rafał Miłecki <zajec5@gmail.com>
3344 L:      linux-mips@vger.kernel.org
3345 S:      Maintained
3346 F:      Documentation/devicetree/bindings/mips/brcm/
3347 F:      arch/mips/bcm47xx/*
3348 F:      arch/mips/include/asm/mach-bcm47xx/*
3349
3350 BROADCOM BCM5301X ARM ARCHITECTURE
3351 M:      Hauke Mehrtens <hauke@hauke-m.de>
3352 M:      Rafał Miłecki <zajec5@gmail.com>
3353 M:      bcm-kernel-feedback-list@broadcom.com
3354 L:      linux-arm-kernel@lists.infradead.org
3355 S:      Maintained
3356 F:      arch/arm/mach-bcm/bcm_5301x.c
3357 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3358 F:      arch/arm/boot/dts/bcm470*
3359 F:      arch/arm/boot/dts/bcm953012*
3360
3361 BROADCOM BCM53573 ARM ARCHITECTURE
3362 M:      Rafał Miłecki <rafal@milecki.pl>
3363 L:      bcm-kernel-feedback-list@broadcom.com
3364 L:      linux-arm-kernel@lists.infradead.org
3365 S:      Maintained
3366 F:      arch/arm/boot/dts/bcm53573*
3367 F:      arch/arm/boot/dts/bcm47189*
3368
3369 BROADCOM BCM63XX ARM ARCHITECTURE
3370 M:      Florian Fainelli <f.fainelli@gmail.com>
3371 M:      bcm-kernel-feedback-list@broadcom.com
3372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3373 T:      git git://github.com/broadcom/stblinux.git
3374 S:      Maintained
3375 N:      bcm63xx
3376
3377 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3378 M:      Kevin Cernekee <cernekee@gmail.com>
3379 L:      linux-usb@vger.kernel.org
3380 S:      Maintained
3381 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3382
3383 BROADCOM BCM7XXX ARM ARCHITECTURE
3384 M:      Florian Fainelli <f.fainelli@gmail.com>
3385 M:      bcm-kernel-feedback-list@broadcom.com
3386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3387 T:      git git://github.com/broadcom/stblinux.git
3388 S:      Maintained
3389 F:      arch/arm/mach-bcm/*brcmstb*
3390 F:      arch/arm/boot/dts/bcm7*.dts*
3391 F:      drivers/bus/brcmstb_gisb.c
3392 F:      arch/arm/mm/cache-b15-rac.c
3393 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3394 N:      brcmstb
3395 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3396 F:      drivers/pci/controller/pcie-brcmstb.c
3397
3398 BROADCOM BMIPS CPUFREQ DRIVER
3399 M:      Markus Mayer <mmayer@broadcom.com>
3400 M:      bcm-kernel-feedback-list@broadcom.com
3401 L:      linux-pm@vger.kernel.org
3402 S:      Maintained
3403 F:      drivers/cpufreq/bmips-cpufreq.c
3404
3405 BROADCOM BMIPS MIPS ARCHITECTURE
3406 M:      Florian Fainelli <f.fainelli@gmail.com>
3407 L:      bcm-kernel-feedback-list@broadcom.com
3408 L:      linux-mips@vger.kernel.org
3409 T:      git git://github.com/broadcom/stblinux.git
3410 S:      Maintained
3411 F:      arch/mips/bmips/*
3412 F:      arch/mips/include/asm/mach-bmips/*
3413 F:      arch/mips/kernel/*bmips*
3414 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3415 F:      drivers/irqchip/irq-bcm63*
3416 F:      drivers/irqchip/irq-bcm7*
3417 F:      drivers/irqchip/irq-brcmstb*
3418 F:      include/linux/bcm963xx_nvram.h
3419 F:      include/linux/bcm963xx_tag.h
3420
3421 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3422 M:      Rasesh Mody <rmody@marvell.com>
3423 M:      GR-Linux-NIC-Dev@marvell.com
3424 L:      netdev@vger.kernel.org
3425 S:      Supported
3426 F:      drivers/net/ethernet/broadcom/bnx2.*
3427 F:      drivers/net/ethernet/broadcom/bnx2_*
3428
3429 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3430 M:      QLogic-Storage-Upstream@qlogic.com
3431 L:      linux-scsi@vger.kernel.org
3432 S:      Supported
3433 F:      drivers/scsi/bnx2fc/
3434
3435 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3436 M:      QLogic-Storage-Upstream@qlogic.com
3437 L:      linux-scsi@vger.kernel.org
3438 S:      Supported
3439 F:      drivers/scsi/bnx2i/
3440
3441 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3442 M:      Ariel Elior <aelior@marvell.com>
3443 M:      Sudarsana Kalluru <skalluru@marvell.com>
3444 M:      GR-everest-linux-l2@marvell.com
3445 L:      netdev@vger.kernel.org
3446 S:      Supported
3447 F:      drivers/net/ethernet/broadcom/bnx2x/
3448
3449 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3450 M:      Michael Chan <michael.chan@broadcom.com>
3451 L:      netdev@vger.kernel.org
3452 S:      Supported
3453 F:      drivers/net/ethernet/broadcom/bnxt/
3454
3455 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3456 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3457 M:      Franky Lin <franky.lin@broadcom.com>
3458 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3459 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3460 M:      Wright Feng <wright.feng@cypress.com>
3461 L:      linux-wireless@vger.kernel.org
3462 L:      brcm80211-dev-list.pdl@broadcom.com
3463 L:      brcm80211-dev-list@cypress.com
3464 S:      Supported
3465 F:      drivers/net/wireless/broadcom/brcm80211/
3466
3467 BROADCOM BRCMSTB GPIO DRIVER
3468 M:      Gregory Fong <gregory.0xf0@gmail.com>
3469 L:      bcm-kernel-feedback-list@broadcom.com
3470 S:      Supported
3471 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3472 F:      drivers/gpio/gpio-brcmstb.c
3473
3474 BROADCOM BRCMSTB I2C DRIVER
3475 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3476 L:      linux-i2c@vger.kernel.org
3477 L:      bcm-kernel-feedback-list@broadcom.com
3478 S:      Supported
3479 F:      drivers/i2c/busses/i2c-brcmstb.c
3480 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3481
3482 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3483 M:      Al Cooper <alcooperx@gmail.com>
3484 L:      linux-kernel@vger.kernel.org
3485 L:      bcm-kernel-feedback-list@broadcom.com
3486 S:      Maintained
3487 F:      drivers/phy/broadcom/phy-brcm-usb*
3488
3489 BROADCOM GENET ETHERNET DRIVER
3490 M:      Doug Berger <opendmb@gmail.com>
3491 M:      Florian Fainelli <f.fainelli@gmail.com>
3492 L:      bcm-kernel-feedback-list@broadcom.com
3493 L:      netdev@vger.kernel.org
3494 S:      Supported
3495 F:      drivers/net/ethernet/broadcom/genet/
3496
3497 BROADCOM IPROC ARM ARCHITECTURE
3498 M:      Ray Jui <rjui@broadcom.com>
3499 M:      Scott Branden <sbranden@broadcom.com>
3500 M:      bcm-kernel-feedback-list@broadcom.com
3501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3502 T:      git git://github.com/broadcom/cygnus-linux.git
3503 S:      Maintained
3504 N:      iproc
3505 N:      cygnus
3506 N:      bcm[-_]nsp
3507 N:      bcm9113*
3508 N:      bcm9583*
3509 N:      bcm9585*
3510 N:      bcm9586*
3511 N:      bcm988312
3512 N:      bcm113*
3513 N:      bcm583*
3514 N:      bcm585*
3515 N:      bcm586*
3516 N:      bcm88312
3517 N:      hr2
3518 N:      stingray
3519 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3520 F:      arch/arm64/boot/dts/broadcom/stingray/*
3521 F:      drivers/clk/bcm/clk-ns*
3522 F:      drivers/clk/bcm/clk-sr*
3523 F:      drivers/pinctrl/bcm/pinctrl-ns*
3524 F:      include/dt-bindings/clock/bcm-sr*
3525
3526 BROADCOM KONA GPIO DRIVER
3527 M:      Ray Jui <rjui@broadcom.com>
3528 L:      bcm-kernel-feedback-list@broadcom.com
3529 S:      Supported
3530 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3531 F:      drivers/gpio/gpio-bcm-kona.c
3532
3533 BROADCOM NETXTREME-E ROCE DRIVER
3534 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3535 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3536 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3537 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3538 L:      linux-rdma@vger.kernel.org
3539 W:      http://www.broadcom.com
3540 S:      Supported
3541 F:      drivers/infiniband/hw/bnxt_re/
3542 F:      include/uapi/rdma/bnxt_re-abi.h
3543
3544 BROADCOM NVRAM DRIVER
3545 M:      Rafał Miłecki <zajec5@gmail.com>
3546 L:      linux-mips@vger.kernel.org
3547 S:      Maintained
3548 F:      drivers/firmware/broadcom/*
3549
3550 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3551 M:      Rafał Miłecki <zajec5@gmail.com>
3552 L:      linux-wireless@vger.kernel.org
3553 S:      Maintained
3554 F:      drivers/bcma/
3555 F:      include/linux/bcma/
3556
3557 BROADCOM STB AVS CPUFREQ DRIVER
3558 M:      Markus Mayer <mmayer@broadcom.com>
3559 M:      bcm-kernel-feedback-list@broadcom.com
3560 L:      linux-pm@vger.kernel.org
3561 S:      Maintained
3562 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3563 F:      drivers/cpufreq/brcmstb*
3564
3565 BROADCOM STB AVS TMON DRIVER
3566 M:      Markus Mayer <mmayer@broadcom.com>
3567 M:      bcm-kernel-feedback-list@broadcom.com
3568 L:      linux-pm@vger.kernel.org
3569 S:      Maintained
3570 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3571 F:      drivers/thermal/broadcom/brcmstb*
3572
3573 BROADCOM STB NAND FLASH DRIVER
3574 M:      Brian Norris <computersforpeace@gmail.com>
3575 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3576 L:      linux-mtd@lists.infradead.org
3577 L:      bcm-kernel-feedback-list@broadcom.com
3578 S:      Maintained
3579 F:      drivers/mtd/nand/raw/brcmnand/
3580
3581 BROADCOM STB DPFE DRIVER
3582 M:      Markus Mayer <mmayer@broadcom.com>
3583 M:      bcm-kernel-feedback-list@broadcom.com
3584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3585 S:      Maintained
3586 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3587 F:      drivers/memory/brcmstb_dpfe.c
3588
3589 BROADCOM SPI DRIVER
3590 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3591 M:      bcm-kernel-feedback-list@broadcom.com
3592 S:      Maintained
3593 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3594 F:      drivers/spi/spi-bcm-qspi.*
3595 F:      drivers/spi/spi-brcmstb-qspi.c
3596 F:      drivers/spi/spi-iproc-qspi.c
3597
3598 BROADCOM SYSTEMPORT ETHERNET DRIVER
3599 M:      Florian Fainelli <f.fainelli@gmail.com>
3600 L:      bcm-kernel-feedback-list@broadcom.com
3601 L:      netdev@vger.kernel.org
3602 S:      Supported
3603 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3604
3605 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3606 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3607 M:      Prashant Sreedharan <prashant@broadcom.com>
3608 M:      Michael Chan <mchan@broadcom.com>
3609 L:      netdev@vger.kernel.org
3610 S:      Supported
3611 F:      drivers/net/ethernet/broadcom/tg3.*
3612
3613 BROCADE BFA FC SCSI DRIVER
3614 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3615 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3616 L:      linux-scsi@vger.kernel.org
3617 S:      Supported
3618 F:      drivers/scsi/bfa/
3619
3620 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3621 M:      Rasesh Mody <rmody@marvell.com>
3622 M:      Sudarsana Kalluru <skalluru@marvell.com>
3623 M:      GR-Linux-NIC-Dev@marvell.com
3624 L:      netdev@vger.kernel.org
3625 S:      Supported
3626 F:      drivers/net/ethernet/brocade/bna/
3627
3628 BSG (block layer generic sg v4 driver)
3629 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3630 L:      linux-scsi@vger.kernel.org
3631 S:      Supported
3632 F:      block/bsg.c
3633 F:      include/linux/bsg.h
3634 F:      include/uapi/linux/bsg.h
3635
3636 BT87X AUDIO DRIVER
3637 M:      Clemens Ladisch <clemens@ladisch.de>
3638 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3640 S:      Maintained
3641 F:      Documentation/sound/cards/bt87x.rst
3642 F:      sound/pci/bt87x.c
3643
3644 BT8XXGPIO DRIVER
3645 M:      Michael Buesch <m@bues.ch>
3646 S:      Maintained
3647 W:      http://bu3sch.de/btgpio.php
3648 F:      drivers/gpio/gpio-bt8xx.c
3649
3650 BTRFS FILE SYSTEM
3651 M:      Chris Mason <clm@fb.com>
3652 M:      Josef Bacik <josef@toxicpanda.com>
3653 M:      David Sterba <dsterba@suse.com>
3654 L:      linux-btrfs@vger.kernel.org
3655 W:      http://btrfs.wiki.kernel.org/
3656 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3658 S:      Maintained
3659 F:      Documentation/filesystems/btrfs.rst
3660 F:      fs/btrfs/
3661 F:      include/linux/btrfs*
3662 F:      include/uapi/linux/btrfs*
3663
3664 BTTV VIDEO4LINUX DRIVER
3665 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3666 L:      linux-media@vger.kernel.org
3667 W:      https://linuxtv.org
3668 T:      git git://linuxtv.org/media_tree.git
3669 S:      Odd fixes
3670 F:      Documentation/media/v4l-drivers/bttv*
3671 F:      drivers/media/pci/bt8xx/bttv*
3672
3673 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3674 M:      Chanwoo Choi <cw00.choi@samsung.com>
3675 L:      linux-pm@vger.kernel.org
3676 L:      linux-samsung-soc@vger.kernel.org
3677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3678 S:      Maintained
3679 F:      drivers/devfreq/exynos-bus.c
3680 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3681
3682 BUSLOGIC SCSI DRIVER
3683 M:      Khalid Aziz <khalid@gonehiking.org>
3684 L:      linux-scsi@vger.kernel.org
3685 S:      Maintained
3686 F:      drivers/scsi/BusLogic.*
3687 F:      drivers/scsi/FlashPoint.*
3688
3689 C-MEDIA CMI8788 DRIVER
3690 M:      Clemens Ladisch <clemens@ladisch.de>
3691 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3693 S:      Maintained
3694 F:      sound/pci/oxygen/
3695
3696 C-SKY ARCHITECTURE
3697 M:      Guo Ren <guoren@kernel.org>
3698 L:      linux-csky@vger.kernel.org
3699 T:      git https://github.com/c-sky/csky-linux.git
3700 S:      Supported
3701 F:      arch/csky/
3702 F:      Documentation/devicetree/bindings/csky/
3703 F:      drivers/irqchip/irq-csky-*
3704 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3705 F:      drivers/clocksource/timer-gx6605s.c
3706 F:      drivers/clocksource/timer-mp-csky.c
3707 F:      Documentation/devicetree/bindings/timer/csky,*
3708 K:      csky
3709 N:      csky
3710
3711 C6X ARCHITECTURE
3712 M:      Mark Salter <msalter@redhat.com>
3713 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3714 L:      linux-c6x-dev@linux-c6x.org
3715 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3716 S:      Maintained
3717 F:      arch/c6x/
3718
3719 CA8210 IEEE-802.15.4 RADIO DRIVER
3720 M:      Harry Morris <h.morris@cascoda.com>
3721 L:      linux-wpan@vger.kernel.org
3722 W:      https://github.com/Cascoda/ca8210-linux.git
3723 S:      Maintained
3724 F:      drivers/net/ieee802154/ca8210.c
3725 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3726
3727 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3728 M:      David Howells <dhowells@redhat.com>
3729 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3730 S:      Supported
3731 F:      Documentation/filesystems/caching/cachefiles.txt
3732 F:      fs/cachefiles/
3733
3734 CADENCE MIPI-CSI2 BRIDGES
3735 M:      Maxime Ripard <mripard@kernel.org>
3736 L:      linux-media@vger.kernel.org
3737 S:      Maintained
3738 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3739 F:      drivers/media/platform/cadence/cdns-csi2*
3740
3741 CADENCE NAND DRIVER
3742 M:      Piotr Sroka <piotrs@cadence.com>
3743 L:      linux-mtd@lists.infradead.org
3744 S:      Maintained
3745 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3746 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3747
3748 CADET FM/AM RADIO RECEIVER DRIVER
3749 M:      Hans Verkuil <hverkuil@xs4all.nl>
3750 L:      linux-media@vger.kernel.org
3751 T:      git git://linuxtv.org/media_tree.git
3752 W:      https://linuxtv.org
3753 S:      Maintained
3754 F:      drivers/media/radio/radio-cadet*
3755
3756 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3757 M:      Jonathan Corbet <corbet@lwn.net>
3758 L:      linux-media@vger.kernel.org
3759 T:      git git://linuxtv.org/media_tree.git
3760 S:      Maintained
3761 F:      Documentation/media/v4l-drivers/cafe_ccic*
3762 F:      drivers/media/platform/marvell-ccic/
3763
3764 CAIF NETWORK LAYER
3765 L:      netdev@vger.kernel.org
3766 S:      Orphan
3767 F:      Documentation/networking/caif/
3768 F:      drivers/net/caif/
3769 F:      include/uapi/linux/caif/
3770 F:      include/net/caif/
3771 F:      net/caif/
3772
3773 CAKE QDISC
3774 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3775 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3776 S:      Maintained
3777 F:      net/sched/sch_cake.c
3778
3779 CAN NETWORK DRIVERS
3780 M:      Wolfgang Grandegger <wg@grandegger.com>
3781 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3782 L:      linux-can@vger.kernel.org
3783 W:      https://github.com/linux-can
3784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3786 S:      Maintained
3787 F:      Documentation/devicetree/bindings/net/can/
3788 F:      drivers/net/can/
3789 F:      include/linux/can/dev.h
3790 F:      include/linux/can/led.h
3791 F:      include/linux/can/rx-offload.h
3792 F:      include/linux/can/platform/
3793 F:      include/uapi/linux/can/error.h
3794 F:      include/uapi/linux/can/netlink.h
3795 F:      include/uapi/linux/can/vxcan.h
3796
3797 CAN NETWORK LAYER
3798 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3799 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3800 L:      linux-can@vger.kernel.org
3801 W:      https://github.com/linux-can
3802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3804 S:      Maintained
3805 F:      Documentation/networking/can.rst
3806 F:      net/can/
3807 F:      include/linux/can/core.h
3808 F:      include/linux/can/skb.h
3809 F:      include/net/netns/can.h
3810 F:      include/uapi/linux/can.h
3811 F:      include/uapi/linux/can/bcm.h
3812 F:      include/uapi/linux/can/raw.h
3813 F:      include/uapi/linux/can/gw.h
3814
3815 CAN-J1939 NETWORK LAYER
3816 M:      Robin van der Gracht <robin@protonic.nl>
3817 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3818 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3819 L:      linux-can@vger.kernel.org
3820 S:      Maintained
3821 F:      Documentation/networking/j1939.rst
3822 F:      net/can/j1939/
3823 F:      include/uapi/linux/can/j1939.h
3824
3825 CAPABILITIES
3826 M:      Serge Hallyn <serge@hallyn.com>
3827 L:      linux-security-module@vger.kernel.org
3828 S:      Supported
3829 F:      include/linux/capability.h
3830 F:      include/uapi/linux/capability.h
3831 F:      security/commoncap.c
3832 F:      kernel/capability.c
3833
3834 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3835 M:      Kevin Tsai <ktsai@capellamicro.com>
3836 S:      Maintained
3837 F:      drivers/iio/light/cm*
3838
3839 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3840 M:      Christian Lamparter <chunkeey@googlemail.com>
3841 L:      linux-wireless@vger.kernel.org
3842 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3843 S:      Maintained
3844 F:      drivers/net/wireless/ath/carl9170/
3845
3846 CAVIUM I2C DRIVER
3847 M:      Robert Richter <rrichter@marvell.com>
3848 W:      http://www.marvell.com
3849 S:      Supported
3850 F:      drivers/i2c/busses/i2c-octeon*
3851 F:      drivers/i2c/busses/i2c-thunderx*
3852
3853 CAVIUM LIQUIDIO NETWORK DRIVER
3854 M:      Derek Chickles <dchickles@marvell.com>
3855 M:      Satanand Burla <sburla@marvell.com>
3856 M:      Felix Manlunas <fmanlunas@marvell.com>
3857 L:      netdev@vger.kernel.org
3858 W:      http://www.marvell.com
3859 S:      Supported
3860 F:      drivers/net/ethernet/cavium/liquidio/
3861
3862 CAVIUM MMC DRIVER
3863 M:      Robert Richter <rrichter@marvell.com>
3864 W:      http://www.marvell.com
3865 S:      Supported
3866 F:      drivers/mmc/host/cavium*
3867
3868 CAVIUM OCTEON-TX CRYPTO DRIVER
3869 M:      George Cherian <gcherian@marvell.com>
3870 L:      linux-crypto@vger.kernel.org
3871 W:      http://www.marvell.com
3872 S:      Supported
3873 F:      drivers/crypto/cavium/cpt/
3874
3875 CAVIUM THUNDERX2 ARM64 SOC
3876 M:      Robert Richter <rrichter@marvell.com>
3877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3878 S:      Maintained
3879 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3880 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3881
3882 CC2520 IEEE-802.15.4 RADIO DRIVER
3883 M:      Varka Bhadram <varkabhadram@gmail.com>
3884 L:      linux-wpan@vger.kernel.org
3885 S:      Maintained
3886 F:      drivers/net/ieee802154/cc2520.c
3887 F:      include/linux/spi/cc2520.h
3888 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3889
3890 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3891 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3892 L:      linux-crypto@vger.kernel.org
3893 S:      Supported
3894 F:      drivers/crypto/ccree/
3895 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3896
3897 CEC FRAMEWORK
3898 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3899 L:      linux-media@vger.kernel.org
3900 T:      git git://linuxtv.org/media_tree.git
3901 W:      http://linuxtv.org
3902 S:      Supported
3903 F:      Documentation/media/kapi/cec-core.rst
3904 F:      Documentation/media/uapi/cec
3905 F:      drivers/media/cec/
3906 F:      drivers/media/rc/keymaps/rc-cec.c
3907 F:      include/media/cec.h
3908 F:      include/media/cec-notifier.h
3909 F:      include/uapi/linux/cec.h
3910 F:      include/uapi/linux/cec-funcs.h
3911 F:      Documentation/devicetree/bindings/media/cec.txt
3912 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3913
3914 CEC GPIO DRIVER
3915 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3916 L:      linux-media@vger.kernel.org
3917 T:      git git://linuxtv.org/media_tree.git
3918 W:      http://linuxtv.org
3919 S:      Supported
3920 F:      drivers/media/platform/cec-gpio/
3921 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3922
3923 CELL BROADBAND ENGINE ARCHITECTURE
3924 M:      Arnd Bergmann <arnd@arndb.de>
3925 L:      linuxppc-dev@lists.ozlabs.org
3926 W:      http://www.ibm.com/developerworks/power/cell/
3927 S:      Supported
3928 F:      arch/powerpc/include/asm/cell*.h
3929 F:      arch/powerpc/include/asm/spu*.h
3930 F:      arch/powerpc/include/uapi/asm/spu*.h
3931 F:      arch/powerpc/oprofile/*cell*
3932 F:      arch/powerpc/platforms/cell/
3933
3934 CEPH COMMON CODE (LIBCEPH)
3935 M:      Ilya Dryomov <idryomov@gmail.com>
3936 M:      Jeff Layton <jlayton@kernel.org>
3937 M:      Sage Weil <sage@redhat.com>
3938 L:      ceph-devel@vger.kernel.org
3939 W:      http://ceph.com/
3940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3941 T:      git git://github.com/ceph/ceph-client.git
3942 S:      Supported
3943 F:      net/ceph/
3944 F:      include/linux/ceph/
3945 F:      include/linux/crush/
3946
3947 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3948 M:      Jeff Layton <jlayton@kernel.org>
3949 M:      Sage Weil <sage@redhat.com>
3950 M:      Ilya Dryomov <idryomov@gmail.com>
3951 L:      ceph-devel@vger.kernel.org
3952 W:      http://ceph.com/
3953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3954 T:      git git://github.com/ceph/ceph-client.git
3955 S:      Supported
3956 F:      Documentation/filesystems/ceph.rst
3957 F:      fs/ceph/
3958
3959 CERTIFICATE HANDLING
3960 M:      David Howells <dhowells@redhat.com>
3961 M:      David Woodhouse <dwmw2@infradead.org>
3962 L:      keyrings@vger.kernel.org
3963 S:      Maintained
3964 F:      Documentation/admin-guide/module-signing.rst
3965 F:      certs/
3966 F:      scripts/sign-file.c
3967 F:      scripts/extract-cert.c
3968
3969 CFAG12864B LCD DRIVER
3970 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3971 S:      Maintained
3972 F:      drivers/auxdisplay/cfag12864b.c
3973 F:      include/linux/cfag12864b.h
3974
3975 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3976 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3977 S:      Maintained
3978 F:      drivers/auxdisplay/cfag12864bfb.c
3979 F:      include/linux/cfag12864b.h
3980
3981 802.11 (including CFG80211/NL80211)
3982 M:      Johannes Berg <johannes@sipsolutions.net>
3983 L:      linux-wireless@vger.kernel.org
3984 W:      http://wireless.kernel.org/
3985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3987 S:      Maintained
3988 F:      net/wireless/
3989 F:      include/uapi/linux/nl80211.h
3990 F:      include/linux/ieee80211.h
3991 F:      include/net/wext.h
3992 F:      include/net/cfg80211.h
3993 F:      include/net/iw_handler.h
3994 F:      include/net/ieee80211_radiotap.h
3995 F:      Documentation/driver-api/80211/cfg80211.rst
3996 F:      Documentation/networking/regulatory.txt
3997
3998 CHAR and MISC DRIVERS
3999 M:      Arnd Bergmann <arnd@arndb.de>
4000 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4002 S:      Supported
4003 F:      drivers/char/
4004 F:      drivers/misc/
4005 F:      include/linux/miscdevice.h
4006
4007 CHECKPATCH
4008 M:      Andy Whitcroft <apw@canonical.com>
4009 M:      Joe Perches <joe@perches.com>
4010 S:      Maintained
4011 F:      scripts/checkpatch.pl
4012
4013 CHINESE DOCUMENTATION
4014 M:      Harry Wei <harryxiyou@gmail.com>
4015 M:      Alex Shi <alex.shi@linux.alibaba.com>
4016 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4017 S:      Maintained
4018 F:      Documentation/translations/zh_CN/
4019
4020 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4021 M:      Peter Chen <Peter.Chen@nxp.com>
4022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4023 L:      linux-usb@vger.kernel.org
4024 S:      Maintained
4025 F:      drivers/usb/chipidea/
4026
4027 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4028 M:      Hans de Goede <hdegoede@redhat.com>
4029 L:      linux-input@vger.kernel.org
4030 S:      Maintained
4031 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4032 F:      drivers/input/touchscreen/chipone_icn8318.c
4033
4034 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4035 M:      Hans de Goede <hdegoede@redhat.com>
4036 L:      linux-input@vger.kernel.org
4037 S:      Maintained
4038 F:      drivers/input/touchscreen/chipone_icn8505.c
4039
4040 CHROME HARDWARE PLATFORM SUPPORT
4041 M:      Benson Leung <bleung@chromium.org>
4042 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4043 S:      Maintained
4044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4045 F:      drivers/platform/chrome/
4046
4047 CHROMEOS EC SUBDRIVERS
4048 M:      Benson Leung <bleung@chromium.org>
4049 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4050 R:      Guenter Roeck <groeck@chromium.org>
4051 S:      Maintained
4052 N:      cros_ec
4053 N:      cros-ec
4054 F:      drivers/power/supply/cros_usbpd-charger.c
4055
4056 CHROMEOS EC CODEC DRIVER
4057 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4058 S:      Maintained
4059 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4060 R:      Guenter Roeck <groeck@chromium.org>
4061 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4062 F:      sound/soc/codecs/cros_ec_codec.*
4063
4064 CIRRUS LOGIC AUDIO CODEC DRIVERS
4065 M:      James Schulman <james.schulman@cirrus.com>
4066 M:      David Rhodes <david.rhodes@cirrus.com>
4067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4068 S:      Maintained
4069 F:      sound/soc/codecs/cs*
4070
4071 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4072 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4073 L:      netdev@vger.kernel.org
4074 S:      Maintained
4075 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4076
4077 CIRRUS LOGIC LOCHNAGAR DRIVER
4078 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4079 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4080 L:      patches@opensource.cirrus.com
4081 S:      Supported
4082 F:      drivers/clk/clk-lochnagar.c
4083 F:      drivers/hwmon/lochnagar-hwmon.c
4084 F:      drivers/mfd/lochnagar-i2c.c
4085 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4086 F:      drivers/regulator/lochnagar-regulator.c
4087 F:      sound/soc/codecs/lochnagar-sc.c
4088 F:      include/dt-bindings/clk/lochnagar.h
4089 F:      include/dt-bindings/pinctrl/lochnagar.h
4090 F:      include/linux/mfd/lochnagar*
4091 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4092 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4093 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4094 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4095 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4096 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4097 F:      Documentation/hwmon/lochnagar.rst
4098
4099 CISCO FCOE HBA DRIVER
4100 M:      Satish Kharat <satishkh@cisco.com>
4101 M:      Sesidhar Baddela <sebaddel@cisco.com>
4102 M:      Karan Tilak Kumar <kartilak@cisco.com>
4103 L:      linux-scsi@vger.kernel.org
4104 S:      Supported
4105 F:      drivers/scsi/fnic/
4106
4107 CISCO SCSI HBA DRIVER
4108 M:      Karan Tilak Kumar <kartilak@cisco.com>
4109 M:      Sesidhar Baddela <sebaddel@cisco.com>
4110 L:      linux-scsi@vger.kernel.org
4111 S:      Supported
4112 F:      drivers/scsi/snic/
4113
4114 CISCO VIC ETHERNET NIC DRIVER
4115 M:      Christian Benvenuti <benve@cisco.com>
4116 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4117 S:      Supported
4118 F:      drivers/net/ethernet/cisco/enic/
4119
4120 CISCO VIC LOW LATENCY NIC DRIVER
4121 M:      Christian Benvenuti <benve@cisco.com>
4122 M:      Nelson Escobar <neescoba@cisco.com>
4123 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4124 S:      Supported
4125 F:      drivers/infiniband/hw/usnic/
4126
4127 CIRRUS LOGIC MADERA CODEC DRIVERS
4128 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4129 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4130 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4131 L:      patches@opensource.cirrus.com
4132 T:      git https://github.com/CirrusLogic/linux-drivers.git
4133 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4134 S:      Supported
4135 F:      Documentation/devicetree/bindings/mfd/madera.txt
4136 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4137 F:      Documentation/devicetree/bindings/sound/madera.txt
4138 F:      include/dt-bindings/sound/madera*
4139 F:      include/linux/irqchip/irq-madera*
4140 F:      include/linux/mfd/madera/*
4141 F:      include/sound/madera*
4142 F:      drivers/gpio/gpio-madera*
4143 F:      drivers/irqchip/irq-madera*
4144 F:      drivers/mfd/madera*
4145 F:      drivers/mfd/cs47l*
4146 F:      drivers/pinctrl/cirrus/*
4147 F:      sound/soc/codecs/cs47l*
4148 F:      sound/soc/codecs/madera*
4149
4150 CLANG-FORMAT FILE
4151 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4152 S:      Maintained
4153 F:      .clang-format
4154
4155 CLANG/LLVM BUILD SUPPORT
4156 L:      clang-built-linux@googlegroups.com
4157 W:      https://clangbuiltlinux.github.io/
4158 B:      https://github.com/ClangBuiltLinux/linux/issues
4159 C:      irc://chat.freenode.net/clangbuiltlinux
4160 S:      Supported
4161 K:      \b(?i:clang|llvm)\b
4162 F:      Documentation/kbuild/llvm.rst
4163
4164 CLEANCACHE API
4165 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4166 L:      linux-kernel@vger.kernel.org
4167 S:      Maintained
4168 F:      mm/cleancache.c
4169 F:      include/linux/cleancache.h
4170
4171 CLK API
4172 M:      Russell King <linux@armlinux.org.uk>
4173 L:      linux-clk@vger.kernel.org
4174 S:      Maintained
4175 F:      include/linux/clk.h
4176
4177 CLOCKSOURCE, CLOCKEVENT DRIVERS
4178 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4179 M:      Thomas Gleixner <tglx@linutronix.de>
4180 L:      linux-kernel@vger.kernel.org
4181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4182 S:      Supported
4183 F:      drivers/clocksource/
4184 F:      Documentation/devicetree/bindings/timer/
4185
4186 CMPC ACPI DRIVER
4187 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4188 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4189 L:      platform-driver-x86@vger.kernel.org
4190 S:      Supported
4191 F:      drivers/platform/x86/classmate-laptop.c
4192
4193 COBALT MEDIA DRIVER
4194 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4195 L:      linux-media@vger.kernel.org
4196 T:      git git://linuxtv.org/media_tree.git
4197 W:      https://linuxtv.org
4198 S:      Supported
4199 F:      drivers/media/pci/cobalt/
4200
4201 COCCINELLE/Semantic Patches (SmPL)
4202 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4203 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4204 M:      Nicolas Palix <nicolas.palix@imag.fr>
4205 M:      Michal Marek <michal.lkml@markovi.net>
4206 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4208 W:      http://coccinelle.lip6.fr/
4209 S:      Supported
4210 F:      Documentation/dev-tools/coccinelle.rst
4211 F:      scripts/coccinelle/
4212 F:      scripts/coccicheck
4213
4214 CODA FILE SYSTEM
4215 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4216 M:      coda@cs.cmu.edu
4217 L:      codalist@coda.cs.cmu.edu
4218 W:      http://www.coda.cs.cmu.edu/
4219 S:      Maintained
4220 F:      Documentation/filesystems/coda.txt
4221 F:      fs/coda/
4222 F:      include/linux/coda*.h
4223 F:      include/uapi/linux/coda*.h
4224
4225 CODA V4L2 MEM2MEM DRIVER
4226 M:      Philipp Zabel <p.zabel@pengutronix.de>
4227 L:      linux-media@vger.kernel.org
4228 S:      Maintained
4229 F:      Documentation/devicetree/bindings/media/coda.txt
4230 F:      drivers/media/platform/coda/
4231
4232 CODE OF CONDUCT
4233 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4234 S:      Supported
4235 F:      Documentation/process/code-of-conduct.rst
4236 F:      Documentation/process/code-of-conduct-interpretation.rst
4237
4238 COMMON CLK FRAMEWORK
4239 M:      Michael Turquette <mturquette@baylibre.com>
4240 M:      Stephen Boyd <sboyd@kernel.org>
4241 L:      linux-clk@vger.kernel.org
4242 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4244 S:      Maintained
4245 F:      Documentation/devicetree/bindings/clock/
4246 F:      drivers/clk/
4247 X:      drivers/clk/clkdev.c
4248 F:      include/linux/clk-pr*
4249 F:      include/linux/clk/
4250 F:      include/linux/of_clk.h
4251
4252 COMMON INTERNET FILE SYSTEM (CIFS)
4253 M:      Steve French <sfrench@samba.org>
4254 L:      linux-cifs@vger.kernel.org
4255 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4256 W:      http://linux-cifs.samba.org/
4257 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4258 S:      Supported
4259 F:      Documentation/admin-guide/cifs/
4260 F:      fs/cifs/
4261
4262 COMPACTPCI HOTPLUG CORE
4263 M:      Scott Murray <scott@spiteful.org>
4264 L:      linux-pci@vger.kernel.org
4265 S:      Maintained
4266 F:      drivers/pci/hotplug/cpci_hotplug*
4267
4268 COMPACTPCI HOTPLUG GENERIC DRIVER
4269 M:      Scott Murray <scott@spiteful.org>
4270 L:      linux-pci@vger.kernel.org
4271 S:      Maintained
4272 F:      drivers/pci/hotplug/cpcihp_generic.c
4273
4274 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4275 M:      Scott Murray <scott@spiteful.org>
4276 L:      linux-pci@vger.kernel.org
4277 S:      Maintained
4278 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4279
4280 COMPAL LAPTOP SUPPORT
4281 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4282 L:      platform-driver-x86@vger.kernel.org
4283 S:      Maintained
4284 F:      drivers/platform/x86/compal-laptop.c
4285
4286 COMPILER ATTRIBUTES
4287 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4288 S:      Maintained
4289 F:      include/linux/compiler_attributes.h
4290
4291 CONEXANT ACCESSRUNNER USB DRIVER
4292 L:      accessrunner-general@lists.sourceforge.net
4293 W:      http://accessrunner.sourceforge.net/
4294 S:      Orphan
4295 F:      drivers/usb/atm/cxacru.c
4296
4297 CONFIGFS
4298 M:      Joel Becker <jlbec@evilplan.org>
4299 M:      Christoph Hellwig <hch@lst.de>
4300 T:      git git://git.infradead.org/users/hch/configfs.git
4301 S:      Supported
4302 F:      fs/configfs/
4303 F:      include/linux/configfs.h
4304
4305 CONNECTOR
4306 M:      Evgeniy Polyakov <zbr@ioremap.net>
4307 L:      netdev@vger.kernel.org
4308 S:      Maintained
4309 F:      drivers/connector/
4310
4311 CONTROL GROUP (CGROUP)
4312 M:      Tejun Heo <tj@kernel.org>
4313 M:      Li Zefan <lizefan@huawei.com>
4314 M:      Johannes Weiner <hannes@cmpxchg.org>
4315 L:      cgroups@vger.kernel.org
4316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4317 S:      Maintained
4318 F:      Documentation/admin-guide/cgroup-v2.rst
4319 F:      Documentation/admin-guide/cgroup-v1/
4320 F:      include/linux/cgroup*
4321 F:      kernel/cgroup/
4322
4323 CONTROL GROUP - CPUSET
4324 M:      Li Zefan <lizefan@huawei.com>
4325 L:      cgroups@vger.kernel.org
4326 W:      http://www.bullopensource.org/cpuset/
4327 W:      http://oss.sgi.com/projects/cpusets/
4328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4329 S:      Maintained
4330 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4331 F:      include/linux/cpuset.h
4332 F:      kernel/cgroup/cpuset.c
4333
4334 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4335 M:      Johannes Weiner <hannes@cmpxchg.org>
4336 M:      Michal Hocko <mhocko@kernel.org>
4337 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4338 L:      cgroups@vger.kernel.org
4339 L:      linux-mm@kvack.org
4340 S:      Maintained
4341 F:      mm/memcontrol.c
4342 F:      mm/swap_cgroup.c
4343
4344 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4345 M:      Tejun Heo <tj@kernel.org>
4346 M:      Jens Axboe <axboe@kernel.dk>
4347 L:      cgroups@vger.kernel.org
4348 L:      linux-block@vger.kernel.org
4349 T:      git git://git.kernel.dk/linux-block
4350 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4351 F:      block/blk-cgroup.c
4352 F:      include/linux/blk-cgroup.h
4353 F:      block/blk-throttle.c
4354 F:      block/blk-iolatency.c
4355 F:      block/bfq-cgroup.c
4356
4357 CORETEMP HARDWARE MONITORING DRIVER
4358 M:      Fenghua Yu <fenghua.yu@intel.com>
4359 L:      linux-hwmon@vger.kernel.org
4360 S:      Maintained
4361 F:      Documentation/hwmon/coretemp.rst
4362 F:      drivers/hwmon/coretemp.c
4363
4364 COSA/SRP SYNC SERIAL DRIVER
4365 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4366 W:      http://www.fi.muni.cz/~kas/cosa/
4367 S:      Maintained
4368 F:      drivers/net/wan/cosa*
4369
4370 COUNTER SUBSYSTEM
4371 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4372 L:      linux-iio@vger.kernel.org
4373 S:      Maintained
4374 F:      Documentation/ABI/testing/sysfs-bus-counter*
4375 F:      Documentation/driver-api/generic-counter.rst
4376 F:      drivers/counter/
4377 F:      include/linux/counter.h
4378 F:      include/linux/counter_enum.h
4379
4380 CPMAC ETHERNET DRIVER
4381 M:      Florian Fainelli <f.fainelli@gmail.com>
4382 L:      netdev@vger.kernel.org
4383 S:      Maintained
4384 F:      drivers/net/ethernet/ti/cpmac.c
4385
4386 CPU FREQUENCY SCALING FRAMEWORK
4387 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4388 M:      Viresh Kumar <viresh.kumar@linaro.org>
4389 L:      linux-pm@vger.kernel.org
4390 S:      Maintained
4391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4393 B:      https://bugzilla.kernel.org
4394 F:      Documentation/admin-guide/pm/cpufreq.rst
4395 F:      Documentation/admin-guide/pm/intel_pstate.rst
4396 F:      Documentation/cpu-freq/
4397 F:      Documentation/devicetree/bindings/cpufreq/
4398 F:      drivers/cpufreq/
4399 F:      kernel/sched/cpufreq*.c
4400 F:      include/linux/cpufreq.h
4401 F:      include/linux/sched/cpufreq.h
4402 F:      tools/testing/selftests/cpufreq/
4403
4404 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4405 M:      Viresh Kumar <viresh.kumar@linaro.org>
4406 M:      Sudeep Holla <sudeep.holla@arm.com>
4407 L:      linux-pm@vger.kernel.org
4408 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4409 S:      Maintained
4410 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4411
4412 CPU POWER MONITORING SUBSYSTEM
4413 M:      Thomas Renninger <trenn@suse.com>
4414 M:      Shuah Khan <shuah@kernel.org>
4415 M:      Shuah Khan <skhan@linuxfoundation.org>
4416 L:      linux-pm@vger.kernel.org
4417 S:      Maintained
4418 F:      tools/power/cpupower/
4419
4420 CPUID/MSR DRIVER
4421 M:      "H. Peter Anvin" <hpa@zytor.com>
4422 S:      Maintained
4423 F:      arch/x86/kernel/cpuid.c
4424 F:      arch/x86/kernel/msr.c
4425
4426 CPUIDLE DRIVER - ARM BIG LITTLE
4427 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4428 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4429 L:      linux-pm@vger.kernel.org
4430 L:      linux-arm-kernel@lists.infradead.org
4431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4432 S:      Maintained
4433 F:      drivers/cpuidle/cpuidle-big_little.c
4434
4435 CPUIDLE DRIVER - ARM EXYNOS
4436 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4437 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4438 M:      Kukjin Kim <kgene@kernel.org>
4439 L:      linux-pm@vger.kernel.org
4440 L:      linux-samsung-soc@vger.kernel.org
4441 S:      Supported
4442 F:      drivers/cpuidle/cpuidle-exynos.c
4443 F:      arch/arm/mach-exynos/pm.c
4444
4445 CPUIDLE DRIVER - ARM PSCI
4446 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4447 M:      Sudeep Holla <sudeep.holla@arm.com>
4448 L:      linux-pm@vger.kernel.org
4449 L:      linux-arm-kernel@lists.infradead.org
4450 S:      Supported
4451 F:      drivers/cpuidle/cpuidle-psci.c
4452
4453 CPU IDLE TIME MANAGEMENT FRAMEWORK
4454 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4455 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4456 L:      linux-pm@vger.kernel.org
4457 S:      Maintained
4458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4459 B:      https://bugzilla.kernel.org
4460 F:      Documentation/admin-guide/pm/cpuidle.rst
4461 F:      Documentation/driver-api/pm/cpuidle.rst
4462 F:      drivers/cpuidle/*
4463 F:      include/linux/cpuidle.h
4464
4465 CRAMFS FILESYSTEM
4466 M:      Nicolas Pitre <nico@fluxnic.net>
4467 S:      Maintained
4468 F:      Documentation/filesystems/cramfs.rst
4469 F:      fs/cramfs/
4470
4471 CREATIVE SB0540
4472 M:      Bastien Nocera <hadess@hadess.net>
4473 L:      linux-input@vger.kernel.org
4474 S:      Maintained
4475 F:      drivers/hid/hid-creative-sb0540.c
4476
4477 CRYPTO API
4478 M:      Herbert Xu <herbert@gondor.apana.org.au>
4479 M:      "David S. Miller" <davem@davemloft.net>
4480 L:      linux-crypto@vger.kernel.org
4481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4483 S:      Maintained
4484 F:      Documentation/crypto/
4485 F:      Documentation/devicetree/bindings/crypto/
4486 F:      arch/*/crypto/
4487 F:      crypto/
4488 F:      drivers/crypto/
4489 F:      include/crypto/
4490 F:      include/linux/crypto*
4491 F:      lib/crypto/
4492
4493 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4494 M:      Neil Horman <nhorman@tuxdriver.com>
4495 L:      linux-crypto@vger.kernel.org
4496 S:      Maintained
4497 F:      crypto/ansi_cprng.c
4498 F:      crypto/rng.c
4499
4500 CS3308 MEDIA DRIVER
4501 M:      Hans Verkuil <hverkuil@xs4all.nl>
4502 L:      linux-media@vger.kernel.org
4503 T:      git git://linuxtv.org/media_tree.git
4504 W:      http://linuxtv.org
4505 S:      Odd Fixes
4506 F:      drivers/media/i2c/cs3308.c
4507
4508 CS5535 Audio ALSA driver
4509 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4510 S:      Maintained
4511 F:      sound/pci/cs5535audio/
4512
4513 CSI DRIVERS FOR ALLWINNER V3s
4514 M:      Yong Deng <yong.deng@magewell.com>
4515 L:      linux-media@vger.kernel.org
4516 T:      git git://linuxtv.org/media_tree.git
4517 S:      Maintained
4518 F:      drivers/media/platform/sunxi/sun6i-csi/
4519 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4520
4521 CW1200 WLAN driver
4522 M:      Solomon Peachy <pizza@shaftnet.org>
4523 S:      Maintained
4524 F:      drivers/net/wireless/st/cw1200/
4525
4526 CX18 VIDEO4LINUX DRIVER
4527 M:      Andy Walls <awalls@md.metrocast.net>
4528 L:      linux-media@vger.kernel.org
4529 T:      git git://linuxtv.org/media_tree.git
4530 W:      https://linuxtv.org
4531 S:      Maintained
4532 F:      drivers/media/pci/cx18/
4533 F:      include/uapi/linux/ivtv*
4534
4535 CX2341X MPEG ENCODER HELPER MODULE
4536 M:      Hans Verkuil <hverkuil@xs4all.nl>
4537 L:      linux-media@vger.kernel.org
4538 T:      git git://linuxtv.org/media_tree.git
4539 W:      https://linuxtv.org
4540 S:      Maintained
4541 F:      drivers/media/common/cx2341x*
4542 F:      include/media/drv-intf/cx2341x.h
4543
4544 CX24120 MEDIA DRIVER
4545 M:      Jemma Denson <jdenson@gmail.com>
4546 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4547 L:      linux-media@vger.kernel.org
4548 W:      https://linuxtv.org
4549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4550 S:      Maintained
4551 F:      drivers/media/dvb-frontends/cx24120*
4552
4553 CX88 VIDEO4LINUX DRIVER
4554 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4555 L:      linux-media@vger.kernel.org
4556 W:      https://linuxtv.org
4557 T:      git git://linuxtv.org/media_tree.git
4558 S:      Odd fixes
4559 F:      Documentation/media/v4l-drivers/cx88*
4560 F:      drivers/media/pci/cx88/
4561
4562 CXD2820R MEDIA DRIVER
4563 M:      Antti Palosaari <crope@iki.fi>
4564 L:      linux-media@vger.kernel.org
4565 W:      https://linuxtv.org
4566 W:      http://palosaari.fi/linux/
4567 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4568 T:      git git://linuxtv.org/anttip/media_tree.git
4569 S:      Maintained
4570 F:      drivers/media/dvb-frontends/cxd2820r*
4571
4572 CXGB3 ETHERNET DRIVER (CXGB3)
4573 M:      Vishal Kulkarni <vishal@chelsio.com>
4574 L:      netdev@vger.kernel.org
4575 W:      http://www.chelsio.com
4576 S:      Supported
4577 F:      drivers/net/ethernet/chelsio/cxgb3/
4578
4579 CXGB3 ISCSI DRIVER (CXGB3I)
4580 M:      Karen Xie <kxie@chelsio.com>
4581 L:      linux-scsi@vger.kernel.org
4582 W:      http://www.chelsio.com
4583 S:      Supported
4584 F:      drivers/scsi/cxgbi/cxgb3i
4585
4586 CXGB4 CRYPTO DRIVER (chcr)
4587 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4588 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4589 M:      Rohit Maheshwari <rohitm@chelsio.com>
4590 L:      linux-crypto@vger.kernel.org
4591 W:      http://www.chelsio.com
4592 S:      Supported
4593 F:      drivers/crypto/chelsio
4594
4595 CXGB4 ETHERNET DRIVER (CXGB4)
4596 M:      Vishal Kulkarni <vishal@chelsio.com>
4597 L:      netdev@vger.kernel.org
4598 W:      http://www.chelsio.com
4599 S:      Supported
4600 F:      drivers/net/ethernet/chelsio/cxgb4/
4601
4602 CXGB4 ISCSI DRIVER (CXGB4I)
4603 M:      Karen Xie <kxie@chelsio.com>
4604 L:      linux-scsi@vger.kernel.org
4605 W:      http://www.chelsio.com
4606 S:      Supported
4607 F:      drivers/scsi/cxgbi/cxgb4i
4608
4609 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4610 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4611 L:      linux-rdma@vger.kernel.org
4612 W:      http://www.openfabrics.org
4613 S:      Supported
4614 F:      drivers/infiniband/hw/cxgb4/
4615 F:      include/uapi/rdma/cxgb4-abi.h
4616
4617 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4618 M:      Vishal Kulkarni <vishal@gmail.com>
4619 L:      netdev@vger.kernel.org
4620 W:      http://www.chelsio.com
4621 S:      Supported
4622 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4623
4624 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4625 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4626 M:      Andrew Donnellan <ajd@linux.ibm.com>
4627 L:      linuxppc-dev@lists.ozlabs.org
4628 S:      Supported
4629 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4630 F:      drivers/misc/cxl/
4631 F:      include/misc/cxl*
4632 F:      include/uapi/misc/cxl.h
4633 F:      Documentation/powerpc/cxl.rst
4634 F:      Documentation/ABI/testing/sysfs-class-cxl
4635
4636 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4637 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4638 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4639 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4640 L:      linux-scsi@vger.kernel.org
4641 S:      Supported
4642 F:      drivers/scsi/cxlflash/
4643 F:      include/uapi/scsi/cxlflash_ioctl.h
4644 F:      Documentation/powerpc/cxlflash.rst
4645
4646 CYBERPRO FB DRIVER
4647 M:      Russell King <linux@armlinux.org.uk>
4648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4649 W:      http://www.armlinux.org.uk/
4650 S:      Maintained
4651 F:      drivers/video/fbdev/cyber2000fb.*
4652
4653 CYCLADES ASYNC MUX DRIVER
4654 W:      http://www.cyclades.com/
4655 S:      Orphan
4656 F:      drivers/tty/cyclades.c
4657 F:      include/linux/cyclades.h
4658 F:      include/uapi/linux/cyclades.h
4659
4660 CYCLADES PC300 DRIVER
4661 W:      http://www.cyclades.com/
4662 S:      Orphan
4663 F:      drivers/net/wan/pc300*
4664
4665 CYPRESS_FIRMWARE MEDIA DRIVER
4666 M:      Antti Palosaari <crope@iki.fi>
4667 L:      linux-media@vger.kernel.org
4668 W:      https://linuxtv.org
4669 W:      http://palosaari.fi/linux/
4670 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4671 T:      git git://linuxtv.org/anttip/media_tree.git
4672 S:      Maintained
4673 F:      drivers/media/common/cypress_firmware*
4674
4675 CYTTSP TOUCHSCREEN DRIVER
4676 M:      Ferruh Yigit <fery@cypress.com>
4677 L:      linux-input@vger.kernel.org
4678 S:      Supported
4679 F:      drivers/input/touchscreen/cyttsp*
4680 F:      include/linux/input/cyttsp.h
4681
4682 D-LINK DIR-685 TOUCHKEYS DRIVER
4683 M:      Linus Walleij <linus.walleij@linaro.org>
4684 L:      linux-input@vger.kernel.org
4685 S:      Supported
4686 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4687
4688 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4689 M:      Joshua Kinard <kumba@gentoo.org>
4690 S:      Maintained
4691 F:      drivers/rtc/rtc-ds1685.c
4692 F:      include/linux/rtc/ds1685.h
4693
4694 DAMA SLAVE for AX.25
4695 M:      Joerg Reuter <jreuter@yaina.de>
4696 W:      http://yaina.de/jreuter/
4697 W:      http://www.qsl.net/dl1bke/
4698 L:      linux-hams@vger.kernel.org
4699 S:      Maintained
4700 F:      net/ax25/af_ax25.c
4701 F:      net/ax25/ax25_dev.c
4702 F:      net/ax25/ax25_ds_*
4703 F:      net/ax25/ax25_in.c
4704 F:      net/ax25/ax25_out.c
4705 F:      net/ax25/ax25_timer.c
4706 F:      net/ax25/sysctl_net_ax25.c
4707
4708 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4709 L:      netdev@vger.kernel.org
4710 S:      Orphan
4711 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4712 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4713
4714 DC390/AM53C974 SCSI driver
4715 M:      Hannes Reinecke <hare@suse.com>
4716 L:      linux-scsi@vger.kernel.org
4717 S:      Maintained
4718 F:      drivers/scsi/am53c974.c
4719
4720 DC395x SCSI driver
4721 M:      Oliver Neukum <oliver@neukum.org>
4722 M:      Ali Akcaagac <aliakc@web.de>
4723 M:      Jamie Lenehan <lenehan@twibble.org>
4724 L:      dc395x@twibble.org
4725 W:      http://twibble.org/dist/dc395x/
4726 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4727 S:      Maintained
4728 F:      Documentation/scsi/dc395x.rst
4729 F:      drivers/scsi/dc395x.*
4730
4731 DCCP PROTOCOL
4732 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4733 L:      dccp@vger.kernel.org
4734 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4735 S:      Maintained
4736 F:      include/linux/dccp.h
4737 F:      include/uapi/linux/dccp.h
4738 F:      include/linux/tfrc.h
4739 F:      net/dccp/
4740
4741 DECnet NETWORK LAYER
4742 W:      http://linux-decnet.sourceforge.net
4743 L:      linux-decnet-user@lists.sourceforge.net
4744 S:      Orphan
4745 F:      Documentation/networking/decnet.txt
4746 F:      net/decnet/
4747
4748 DECSTATION PLATFORM SUPPORT
4749 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4750 L:      linux-mips@vger.kernel.org
4751 W:      http://www.linux-mips.org/wiki/DECstation
4752 S:      Maintained
4753 F:      arch/mips/dec/
4754 F:      arch/mips/include/asm/dec/
4755 F:      arch/mips/include/asm/mach-dec/
4756
4757 DEFXX FDDI NETWORK DRIVER
4758 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4759 S:      Maintained
4760 F:      drivers/net/fddi/defxx.*
4761
4762 DEINTERLACE DRIVERS FOR ALLWINNER H3
4763 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4764 L:      linux-media@vger.kernel.org
4765 T:      git git://linuxtv.org/media_tree.git
4766 S:      Maintained
4767 F:      drivers/media/platform/sunxi/sun8i-di/
4768 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
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 DELL LAPTOP DRIVER
4776 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4777 M:      Pali Rohár <pali.rohar@gmail.com>
4778 L:      platform-driver-x86@vger.kernel.org
4779 S:      Maintained
4780 F:      drivers/platform/x86/dell-laptop.c
4781
4782 DELL LAPTOP FREEFALL DRIVER
4783 M:      Pali Rohár <pali.rohar@gmail.com>
4784 S:      Maintained
4785 F:      drivers/platform/x86/dell-smo8800.c
4786
4787 DELL LAPTOP RBTN DRIVER
4788 M:      Pali Rohár <pali.rohar@gmail.com>
4789 S:      Maintained
4790 F:      drivers/platform/x86/dell-rbtn.*
4791
4792 DELL LAPTOP SMM DRIVER
4793 M:      Pali Rohár <pali.rohar@gmail.com>
4794 S:      Maintained
4795 F:      drivers/hwmon/dell-smm-hwmon.c
4796 F:      include/uapi/linux/i8k.h
4797
4798 DELL REMOTE BIOS UPDATE DRIVER
4799 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4800 L:      platform-driver-x86@vger.kernel.org
4801 S:      Maintained
4802 F:      drivers/platform/x86/dell_rbu.c
4803
4804 DELL SMBIOS DRIVER
4805 M:      Pali Rohár <pali.rohar@gmail.com>
4806 M:      Mario Limonciello <mario.limonciello@dell.com>
4807 L:      platform-driver-x86@vger.kernel.org
4808 S:      Maintained
4809 F:      drivers/platform/x86/dell-smbios.*
4810
4811 DELL SMBIOS SMM DRIVER
4812 M:      Mario Limonciello <mario.limonciello@dell.com>
4813 L:      platform-driver-x86@vger.kernel.org
4814 S:      Maintained
4815 F:      drivers/platform/x86/dell-smbios-smm.c
4816
4817 DELL SMBIOS WMI DRIVER
4818 M:      Mario Limonciello <mario.limonciello@dell.com>
4819 L:      platform-driver-x86@vger.kernel.org
4820 S:      Maintained
4821 F:      drivers/platform/x86/dell-smbios-wmi.c
4822 F:      tools/wmi/dell-smbios-example.c
4823
4824 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4825 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4826 L:      platform-driver-x86@vger.kernel.org
4827 S:      Maintained
4828 F:      Documentation/driver-api/dcdbas.rst
4829 F:      drivers/platform/x86/dcdbas.*
4830
4831 DELL WMI DESCRIPTOR DRIVER
4832 M:      Mario Limonciello <mario.limonciello@dell.com>
4833 S:      Maintained
4834 F:      drivers/platform/x86/dell-wmi-descriptor.c
4835
4836 DELL WMI NOTIFICATIONS DRIVER
4837 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4838 M:      Pali Rohár <pali.rohar@gmail.com>
4839 S:      Maintained
4840 F:      drivers/platform/x86/dell-wmi.c
4841
4842 DELTA ST MEDIA DRIVER
4843 M:      Hugues Fruchet <hugues.fruchet@st.com>
4844 L:      linux-media@vger.kernel.org
4845 T:      git git://linuxtv.org/media_tree.git
4846 W:      https://linuxtv.org
4847 S:      Supported
4848 F:      drivers/media/platform/sti/delta
4849
4850 DENALI NAND DRIVER
4851 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4852 L:      linux-mtd@lists.infradead.org
4853 S:      Supported
4854 F:      drivers/mtd/nand/raw/denali*
4855
4856 DESIGNWARE EDMA CORE IP DRIVER
4857 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4858 L:      dmaengine@vger.kernel.org
4859 S:      Maintained
4860 F:      drivers/dma/dw-edma/
4861 F:      include/linux/dma/edma.h
4862
4863 DESIGNWARE USB2 DRD IP DRIVER
4864 M:      Minas Harutyunyan <hminas@synopsys.com>
4865 L:      linux-usb@vger.kernel.org
4866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4867 S:      Maintained
4868 F:      drivers/usb/dwc2/
4869
4870 DESIGNWARE USB3 DRD IP DRIVER
4871 M:      Felipe Balbi <balbi@kernel.org>
4872 L:      linux-usb@vger.kernel.org
4873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4874 S:      Maintained
4875 F:      drivers/usb/dwc3/
4876
4877 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4878 M:      Andreas Klinger <ak@it-klinger.de>
4879 L:      linux-iio@vger.kernel.org
4880 S:      Maintained
4881 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4882 F:      drivers/iio/proximity/srf*.c
4883
4884 DEVICE COREDUMP (DEV_COREDUMP)
4885 M:      Johannes Berg <johannes@sipsolutions.net>
4886 L:      linux-kernel@vger.kernel.org
4887 S:      Maintained
4888 F:      drivers/base/devcoredump.c
4889 F:      include/linux/devcoredump.h
4890
4891 DEVICE FREQUENCY (DEVFREQ)
4892 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4893 M:      Kyungmin Park <kyungmin.park@samsung.com>
4894 M:      Chanwoo Choi <cw00.choi@samsung.com>
4895 L:      linux-pm@vger.kernel.org
4896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4897 S:      Maintained
4898 F:      drivers/devfreq/
4899 F:      include/linux/devfreq.h
4900 F:      Documentation/devicetree/bindings/devfreq/
4901 F:      include/trace/events/devfreq.h
4902
4903 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4904 M:      Chanwoo Choi <cw00.choi@samsung.com>
4905 L:      linux-pm@vger.kernel.org
4906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4907 S:      Supported
4908 F:      drivers/devfreq/event/
4909 F:      drivers/devfreq/devfreq-event.c
4910 F:      include/dt-bindings/pmu/exynos_ppmu.h
4911 F:      include/linux/devfreq-event.h
4912 F:      Documentation/devicetree/bindings/devfreq/event/
4913
4914 DEVICE NUMBER REGISTRY
4915 M:      Torben Mathiasen <device@lanana.org>
4916 W:      http://lanana.org/docs/device-list/index.html
4917 S:      Maintained
4918
4919 DEVICE-MAPPER  (LVM)
4920 M:      Alasdair Kergon <agk@redhat.com>
4921 M:      Mike Snitzer <snitzer@redhat.com>
4922 M:      dm-devel@redhat.com
4923 L:      dm-devel@redhat.com
4924 W:      http://sources.redhat.com/dm
4925 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4927 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4928 S:      Maintained
4929 F:      Documentation/admin-guide/device-mapper/
4930 F:      drivers/md/Makefile
4931 F:      drivers/md/Kconfig
4932 F:      drivers/md/dm*
4933 F:      drivers/md/persistent-data/
4934 F:      include/linux/device-mapper.h
4935 F:      include/linux/dm-*.h
4936 F:      include/uapi/linux/dm-*.h
4937
4938 DEVLINK
4939 M:      Jiri Pirko <jiri@mellanox.com>
4940 L:      netdev@vger.kernel.org
4941 S:      Supported
4942 F:      net/core/devlink.c
4943 F:      include/net/devlink.h
4944 F:      include/uapi/linux/devlink.h
4945 F:      Documentation/networking/devlink
4946
4947 DIALOG SEMICONDUCTOR DRIVERS
4948 M:      Support Opensource <support.opensource@diasemi.com>
4949 W:      http://www.dialog-semiconductor.com/products
4950 S:      Supported
4951 F:      Documentation/hwmon/da90??.rst
4952 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4953 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4954 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4955 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4956 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4957 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4958 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4959 F:      drivers/gpio/gpio-da90??.c
4960 F:      drivers/hwmon/da90??-hwmon.c
4961 F:      drivers/iio/adc/da91??-*.c
4962 F:      drivers/input/misc/da90??_onkey.c
4963 F:      drivers/input/touchscreen/da9052_tsi.c
4964 F:      drivers/leds/leds-da90??.c
4965 F:      drivers/mfd/da903x.c
4966 F:      drivers/mfd/da90??-*.c
4967 F:      drivers/mfd/da91??-*.c
4968 F:      drivers/pinctrl/pinctrl-da90??.c
4969 F:      drivers/power/supply/da9052-battery.c
4970 F:      drivers/power/supply/da91??-*.c
4971 F:      drivers/regulator/da903x.c
4972 F:      drivers/regulator/da9???-regulator.[ch]
4973 F:      drivers/regulator/slg51000-regulator.[ch]
4974 F:      drivers/thermal/da90??-thermal.c
4975 F:      drivers/rtc/rtc-da90??.c
4976 F:      drivers/video/backlight/da90??_bl.c
4977 F:      drivers/watchdog/da90??_wdt.c
4978 F:      include/linux/mfd/da903x.h
4979 F:      include/linux/mfd/da9052/
4980 F:      include/linux/mfd/da9055/
4981 F:      include/linux/mfd/da9062/
4982 F:      include/linux/mfd/da9063/
4983 F:      include/linux/mfd/da9150/
4984 F:      include/linux/regulator/da9211.h
4985 F:      include/sound/da[79]*.h
4986 F:      sound/soc/codecs/da[79]*.[ch]
4987
4988 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4989 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4990 L:      linux-gpio@vger.kernel.org
4991 S:      Maintained
4992 F:      drivers/gpio/gpio-gpio-mm.c
4993
4994 DIOLAN U2C-12 I2C DRIVER
4995 M:      Guenter Roeck <linux@roeck-us.net>
4996 L:      linux-i2c@vger.kernel.org
4997 S:      Maintained
4998 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4999
5000 FILESYSTEM DIRECT ACCESS (DAX)
5001 M:      Dan Williams <dan.j.williams@intel.com>
5002 R:      Matthew Wilcox <willy@infradead.org>
5003 R:      Jan Kara <jack@suse.cz>
5004 L:      linux-fsdevel@vger.kernel.org
5005 L:      linux-nvdimm@lists.01.org
5006 S:      Supported
5007 F:      fs/dax.c
5008 F:      include/linux/dax.h
5009 F:      include/trace/events/fs_dax.h
5010
5011 DEVICE DIRECT ACCESS (DAX)
5012 M:      Dan Williams <dan.j.williams@intel.com>
5013 M:      Vishal Verma <vishal.l.verma@intel.com>
5014 M:      Dave Jiang <dave.jiang@intel.com>
5015 L:      linux-nvdimm@lists.01.org
5016 S:      Supported
5017 F:      drivers/dax/
5018
5019 DIRECTORY NOTIFICATION (DNOTIFY)
5020 M:      Jan Kara <jack@suse.cz>
5021 R:      Amir Goldstein <amir73il@gmail.com>
5022 L:      linux-fsdevel@vger.kernel.org
5023 S:      Maintained
5024 F:      Documentation/filesystems/dnotify.txt
5025 F:      fs/notify/dnotify/
5026 F:      include/linux/dnotify.h
5027
5028 DISK GEOMETRY AND PARTITION HANDLING
5029 M:      Andries Brouwer <aeb@cwi.nl>
5030 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5031 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5032 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5033 S:      Maintained
5034
5035 DISKQUOTA
5036 M:      Jan Kara <jack@suse.com>
5037 S:      Maintained
5038 F:      Documentation/filesystems/quota.txt
5039 F:      fs/quota/
5040 F:      include/linux/quota*.h
5041 F:      include/uapi/linux/quota*.h
5042
5043 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5044 M:      Bernie Thompson <bernie@plugable.com>
5045 L:      linux-fbdev@vger.kernel.org
5046 S:      Maintained
5047 W:      http://plugable.com/category/projects/udlfb/
5048 F:      drivers/video/fbdev/udlfb.c
5049 F:      include/video/udlfb.h
5050 F:      Documentation/fb/udlfb.rst
5051
5052 DISTRIBUTED LOCK MANAGER (DLM)
5053 M:      Christine Caulfield <ccaulfie@redhat.com>
5054 M:      David Teigland <teigland@redhat.com>
5055 L:      cluster-devel@redhat.com
5056 W:      http://sources.redhat.com/cluster/
5057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5058 S:      Supported
5059 F:      fs/dlm/
5060
5061 DMA BUFFER SHARING FRAMEWORK
5062 M:      Sumit Semwal <sumit.semwal@linaro.org>
5063 S:      Maintained
5064 L:      linux-media@vger.kernel.org
5065 L:      dri-devel@lists.freedesktop.org
5066 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5067 F:      drivers/dma-buf/
5068 F:      include/linux/dma-buf*
5069 F:      include/linux/dma-resv.h
5070 F:      include/linux/*fence.h
5071 F:      Documentation/driver-api/dma-buf.rst
5072 K:      dma_(buf|fence|resv)
5073 T:      git git://anongit.freedesktop.org/drm/drm-misc
5074
5075 DMA-BUF HEAPS FRAMEWORK
5076 M:      Sumit Semwal <sumit.semwal@linaro.org>
5077 R:      Andrew F. Davis <afd@ti.com>
5078 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5079 R:      Liam Mark <lmark@codeaurora.org>
5080 R:      Laura Abbott <labbott@redhat.com>
5081 R:      Brian Starkey <Brian.Starkey@arm.com>
5082 R:      John Stultz <john.stultz@linaro.org>
5083 S:      Maintained
5084 L:      linux-media@vger.kernel.org
5085 L:      dri-devel@lists.freedesktop.org
5086 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5087 F:      include/uapi/linux/dma-heap.h
5088 F:      include/linux/dma-heap.h
5089 F:      drivers/dma-buf/dma-heap.c
5090 F:      drivers/dma-buf/heaps/*
5091 T:      git git://anongit.freedesktop.org/drm/drm-misc
5092
5093 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5094 M:      Vinod Koul <vkoul@kernel.org>
5095 L:      dmaengine@vger.kernel.org
5096 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5097 S:      Maintained
5098 F:      drivers/dma/
5099 F:      include/linux/dmaengine.h
5100 F:      include/linux/of_dma.h
5101 F:      Documentation/devicetree/bindings/dma/
5102 F:      Documentation/driver-api/dmaengine/
5103 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5104
5105 DMA MAPPING HELPERS
5106 M:      Christoph Hellwig <hch@lst.de>
5107 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5108 R:      Robin Murphy <robin.murphy@arm.com>
5109 L:      iommu@lists.linux-foundation.org
5110 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5111 W:      http://git.infradead.org/users/hch/dma-mapping.git
5112 S:      Supported
5113 F:      kernel/dma/
5114 F:      include/asm-generic/dma-mapping.h
5115 F:      include/linux/dma-direct.h
5116 F:      include/linux/dma-mapping.h
5117 F:      include/linux/dma-noncoherent.h
5118
5119 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5120 M:      Lukasz Luba <lukasz.luba@arm.com>
5121 L:      linux-pm@vger.kernel.org
5122 L:      linux-samsung-soc@vger.kernel.org
5123 S:      Maintained
5124 F:      drivers/memory/samsung/exynos5422-dmc.c
5125 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5126
5127 DME1737 HARDWARE MONITOR DRIVER
5128 M:      Juerg Haefliger <juergh@gmail.com>
5129 L:      linux-hwmon@vger.kernel.org
5130 S:      Maintained
5131 F:      Documentation/hwmon/dme1737.rst
5132 F:      drivers/hwmon/dme1737.c
5133
5134 DMI/SMBIOS SUPPORT
5135 M:      Jean Delvare <jdelvare@suse.com>
5136 S:      Maintained
5137 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5138 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5139 F:      drivers/firmware/dmi-id.c
5140 F:      drivers/firmware/dmi_scan.c
5141 F:      include/linux/dmi.h
5142
5143 DOCUMENTATION
5144 M:      Jonathan Corbet <corbet@lwn.net>
5145 L:      linux-doc@vger.kernel.org
5146 S:      Maintained
5147 F:      Documentation/
5148 F:      scripts/documentation-file-ref-check
5149 F:      scripts/kernel-doc
5150 F:      scripts/sphinx-pre-install
5151 X:      Documentation/ABI/
5152 X:      Documentation/firmware-guide/acpi/
5153 X:      Documentation/devicetree/
5154 X:      Documentation/i2c/
5155 X:      Documentation/media/
5156 X:      Documentation/power/
5157 X:      Documentation/spi/
5158 T:      git git://git.lwn.net/linux.git docs-next
5159
5160 DOCUMENTATION/ITALIAN
5161 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5162 L:      linux-doc@vger.kernel.org
5163 S:      Maintained
5164 F:      Documentation/translations/it_IT
5165
5166 DOCUMENTATION SCRIPTS
5167 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5168 L:      linux-doc@vger.kernel.org
5169 S:      Maintained
5170 F:      scripts/documentation-file-ref-check
5171 F:      scripts/sphinx-pre-install
5172 F:      Documentation/sphinx/parse-headers.pl
5173
5174 DONGWOON DW9714 LENS VOICE COIL DRIVER
5175 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5176 L:      linux-media@vger.kernel.org
5177 T:      git git://linuxtv.org/media_tree.git
5178 S:      Maintained
5179 F:      drivers/media/i2c/dw9714.c
5180 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5181
5182 DONGWOON DW9807 LENS VOICE COIL DRIVER
5183 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5184 L:      linux-media@vger.kernel.org
5185 T:      git git://linuxtv.org/media_tree.git
5186 S:      Maintained
5187 F:      drivers/media/i2c/dw9807-vcm.c
5188 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5189
5190 DOUBLETALK DRIVER
5191 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5192 L:      blinux-list@redhat.com
5193 S:      Maintained
5194 F:      drivers/char/dtlk.c
5195 F:      include/linux/dtlk.h
5196
5197 DPAA2 DATAPATH I/O (DPIO) DRIVER
5198 M:      Roy Pledge <Roy.Pledge@nxp.com>
5199 L:      linux-kernel@vger.kernel.org
5200 S:      Maintained
5201 F:      drivers/soc/fsl/dpio
5202
5203 DPAA2 ETHERNET DRIVER
5204 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5205 L:      netdev@vger.kernel.org
5206 S:      Maintained
5207 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5208 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5209 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5210 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5211 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5212 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5213 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5214 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5215 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
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 W:      http://www.adaptec.com/
5228 S:      Maintained
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 W:      http://www.drbd.org
5237 T:      git git://git.linbit.com/linux-drbd.git
5238 T:      git git://git.linbit.com/drbd-8.4.git
5239 S:      Supported
5240 F:      drivers/block/drbd/
5241 F:      lib/lru_cache.c
5242 F:      Documentation/admin-guide/blockdev/
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 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5248 S:      Supported
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 S:      Maintained
5261 F:      drivers/power/avs/
5262 F:      include/linux/power/smartreflex.h
5263 L:      linux-pm@vger.kernel.org
5264
5265 DRM DRIVER FOR ARM PL111 CLCD
5266 M:      Eric Anholt <eric@anholt.net>
5267 T:      git git://anongit.freedesktop.org/drm/drm-misc
5268 S:      Supported
5269 F:      drivers/gpu/drm/pl111/
5270
5271 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5272 M:      Linus Walleij <linus.walleij@linaro.org>
5273 T:      git git://anongit.freedesktop.org/drm/drm-misc
5274 S:      Maintained
5275 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5276 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5277
5278 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5279 M:      Dave Airlie <airlied@redhat.com>
5280 S:      Odd Fixes
5281 F:      drivers/gpu/drm/ast/
5282
5283 DRM DRIVER FOR ASPEED BMC GFX
5284 M:      Joel Stanley <joel@jms.id.au>
5285 L:      linux-aspeed@lists.ozlabs.org
5286 T:      git git://anongit.freedesktop.org/drm/drm-misc
5287 S:      Supported
5288 F:      drivers/gpu/drm/aspeed/
5289 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5290
5291 DRM DRIVER FOR BOCHS VIRTUAL GPU
5292 M:      Gerd Hoffmann <kraxel@redhat.com>
5293 L:      virtualization@lists.linux-foundation.org
5294 T:      git git://anongit.freedesktop.org/drm/drm-misc
5295 S:      Maintained
5296 F:      drivers/gpu/drm/bochs/
5297
5298 DRM DRIVER FOR BOE HIMAX8279D PANELS
5299 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5300 S:      Maintained
5301 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5302 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5303
5304 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5305 M:      Linus Walleij <linus.walleij@linaro.org>
5306 T:      git git://anongit.freedesktop.org/drm/drm-misc
5307 S:      Maintained
5308 F:      drivers/gpu/drm/tve200/
5309
5310 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5311 M:      Icenowy Zheng <icenowy@aosc.io>
5312 S:      Maintained
5313 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5314 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5315
5316 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5317 M:      Jagan Teki <jagan@amarulasolutions.com>
5318 S:      Maintained
5319 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5320 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5321
5322 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5323 M:      Hans de Goede <hdegoede@redhat.com>
5324 T:      git git://anongit.freedesktop.org/drm/drm-misc
5325 S:      Maintained
5326 F:      drivers/gpu/drm/tiny/gm12u320.c
5327
5328 DRM DRIVER FOR ILITEK ILI9225 PANELS
5329 M:      David Lechner <david@lechnology.com>
5330 T:      git git://anongit.freedesktop.org/drm/drm-misc
5331 S:      Maintained
5332 F:      drivers/gpu/drm/tiny/ili9225.c
5333 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5334
5335 DRM DRIVER FOR ILITEK ILI9486 PANELS
5336 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5337 T:      git git://anongit.freedesktop.org/drm/drm-misc
5338 S:      Maintained
5339 F:      drivers/gpu/drm/tiny/ili9486.c
5340 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5341
5342 DRM DRIVER FOR HX8357D PANELS
5343 M:      Eric Anholt <eric@anholt.net>
5344 T:      git git://anongit.freedesktop.org/drm/drm-misc
5345 S:      Maintained
5346 F:      drivers/gpu/drm/tiny/hx8357d.c
5347 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5348
5349 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5350 S:      Orphan / Obsolete
5351 F:      drivers/gpu/drm/i810/
5352 F:      include/uapi/drm/i810_drm.h
5353
5354 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5355 S:      Orphan / Obsolete
5356 F:      drivers/gpu/drm/mga/
5357 F:      include/uapi/drm/mga_drm.h
5358
5359 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5360 M:      Dave Airlie <airlied@redhat.com>
5361 S:      Odd Fixes
5362 F:      drivers/gpu/drm/mgag200/
5363
5364 DRM DRIVER FOR MI0283QT
5365 M:      Noralf Trønnes <noralf@tronnes.org>
5366 T:      git git://anongit.freedesktop.org/drm/drm-misc
5367 S:      Maintained
5368 F:      drivers/gpu/drm/tiny/mi0283qt.c
5369 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5370
5371 DRM DRIVER FOR MSM ADRENO GPU
5372 M:      Rob Clark <robdclark@gmail.com>
5373 M:      Sean Paul <sean@poorly.run>
5374 L:      linux-arm-msm@vger.kernel.org
5375 L:      dri-devel@lists.freedesktop.org
5376 L:      freedreno@lists.freedesktop.org
5377 T:      git https://gitlab.freedesktop.org/drm/msm.git
5378 S:      Maintained
5379 F:      drivers/gpu/drm/msm/
5380 F:      include/uapi/drm/msm_drm.h
5381 F:      Documentation/devicetree/bindings/display/msm/
5382
5383 DRM DRIVER FOR NOVATEK NT35510 PANELS
5384 M:      Linus Walleij <linus.walleij@linaro.org>
5385 T:      git git://anongit.freedesktop.org/drm/drm-misc
5386 S:      Maintained
5387 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5388 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5389
5390 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5391 M:      Ben Skeggs <bskeggs@redhat.com>
5392 L:      dri-devel@lists.freedesktop.org
5393 L:      nouveau@lists.freedesktop.org
5394 T:      git git://github.com/skeggsb/linux
5395 S:      Supported
5396 F:      drivers/gpu/drm/nouveau/
5397 F:      include/uapi/drm/nouveau_drm.h
5398
5399 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5400 M:      Stefan Mavrodiev <stefan@olimex.com>
5401 S:      Maintained
5402 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5403 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5404
5405 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5406 M:      Noralf Trønnes <noralf@tronnes.org>
5407 T:      git git://anongit.freedesktop.org/drm/drm-misc
5408 S:      Maintained
5409 F:      drivers/gpu/drm/tiny/repaper.c
5410 F:      Documentation/devicetree/bindings/display/repaper.txt
5411
5412 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5413 M:      Dave Airlie <airlied@redhat.com>
5414 M:      Gerd Hoffmann <kraxel@redhat.com>
5415 L:      virtualization@lists.linux-foundation.org
5416 T:      git git://anongit.freedesktop.org/drm/drm-misc
5417 S:      Obsolete
5418 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5419 F:      drivers/gpu/drm/cirrus/
5420
5421 DRM DRIVER FOR QXL VIRTUAL GPU
5422 M:      Dave Airlie <airlied@redhat.com>
5423 M:      Gerd Hoffmann <kraxel@redhat.com>
5424 L:      virtualization@lists.linux-foundation.org
5425 L:      spice-devel@lists.freedesktop.org
5426 T:      git git://anongit.freedesktop.org/drm/drm-misc
5427 S:      Maintained
5428 F:      drivers/gpu/drm/qxl/
5429 F:      include/uapi/drm/qxl_drm.h
5430
5431 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5432 M:      Robert Chiras <robert.chiras@nxp.com>
5433 S:      Maintained
5434 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5435 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5436
5437 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5438 S:      Orphan / Obsolete
5439 F:      drivers/gpu/drm/r128/
5440 F:      include/uapi/drm/r128_drm.h
5441
5442 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5443 M:      Guido Günther <agx@sigxcpu.org>
5444 R:      Purism Kernel Team <kernel@puri.sm>
5445 S:      Maintained
5446 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5447 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5448
5449 DRM DRIVER FOR SAVAGE VIDEO CARDS
5450 S:      Orphan / Obsolete
5451 F:      drivers/gpu/drm/savage/
5452 F:      include/uapi/drm/savage_drm.h
5453
5454 DRM DRIVER FOR SIS VIDEO CARDS
5455 S:      Orphan / Obsolete
5456 F:      drivers/gpu/drm/sis/
5457 F:      include/uapi/drm/sis_drm.h
5458
5459 DRM DRIVER FOR SITRONIX ST7701 PANELS
5460 M:      Jagan Teki <jagan@amarulasolutions.com>
5461 S:      Maintained
5462 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5463 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5464
5465 DRM DRIVER FOR SITRONIX ST7586 PANELS
5466 M:      David Lechner <david@lechnology.com>
5467 T:      git git://anongit.freedesktop.org/drm/drm-misc
5468 S:      Maintained
5469 F:      drivers/gpu/drm/tiny/st7586.c
5470 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5471
5472 DRM DRIVER FOR SITRONIX ST7735R PANELS
5473 M:      David Lechner <david@lechnology.com>
5474 T:      git git://anongit.freedesktop.org/drm/drm-misc
5475 S:      Maintained
5476 F:      drivers/gpu/drm/tiny/st7735r.c
5477 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5478
5479 DRM DRIVER FOR SONY ACX424AKP PANELS
5480 M:      Linus Walleij <linus.walleij@linaro.org>
5481 T:      git git://anongit.freedesktop.org/drm/drm-misc
5482 S:      Maintained
5483 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5484
5485 DRM DRIVER FOR ST-ERICSSON MCDE
5486 M:      Linus Walleij <linus.walleij@linaro.org>
5487 T:      git git://anongit.freedesktop.org/drm/drm-misc
5488 S:      Maintained
5489 F:      drivers/gpu/drm/mcde/
5490 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5491
5492 DRM DRIVER FOR TDFX VIDEO CARDS
5493 S:      Orphan / Obsolete
5494 F:      drivers/gpu/drm/tdfx/
5495
5496 DRM DRIVER FOR TPO TPG110 PANELS
5497 M:      Linus Walleij <linus.walleij@linaro.org>
5498 T:      git git://anongit.freedesktop.org/drm/drm-misc
5499 S:      Maintained
5500 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5501 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5502
5503 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5504 M:      Dave Airlie <airlied@redhat.com>
5505 R:      Sean Paul <sean@poorly.run>
5506 L:      dri-devel@lists.freedesktop.org
5507 S:      Odd Fixes
5508 F:      drivers/gpu/drm/udl/
5509 T:      git git://anongit.freedesktop.org/drm/drm-misc
5510
5511 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5512 M:      Hans de Goede <hdegoede@redhat.com>
5513 L:      dri-devel@lists.freedesktop.org
5514 S:      Maintained
5515 F:      drivers/gpu/drm/vboxvideo/
5516 T:      git git://anongit.freedesktop.org/drm/drm-misc
5517
5518 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5519 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5520 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5521 R:      Daniel Vetter <daniel@ffwll.ch>
5522 T:      git git://anongit.freedesktop.org/drm/drm-misc
5523 S:      Maintained
5524 L:      dri-devel@lists.freedesktop.org
5525 F:      drivers/gpu/drm/vkms/
5526 F:      Documentation/gpu/vkms.rst
5527
5528 DRM DRIVER FOR VMWARE VIRTUAL GPU
5529 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5530 M:      Thomas Hellstrom <thellstrom@vmware.com>
5531 L:      dri-devel@lists.freedesktop.org
5532 T:      git git://people.freedesktop.org/~thomash/linux
5533 S:      Supported
5534 F:      drivers/gpu/drm/vmwgfx/
5535 F:      include/uapi/drm/vmwgfx_drm.h
5536
5537 DRM DRIVERS
5538 M:      David Airlie <airlied@linux.ie>
5539 M:      Daniel Vetter <daniel@ffwll.ch>
5540 L:      dri-devel@lists.freedesktop.org
5541 T:      git git://anongit.freedesktop.org/drm/drm
5542 B:      https://bugs.freedesktop.org/
5543 C:      irc://chat.freenode.net/dri-devel
5544 S:      Maintained
5545 F:      drivers/gpu/drm/
5546 F:      drivers/gpu/vga/
5547 F:      Documentation/devicetree/bindings/display/
5548 F:      Documentation/devicetree/bindings/gpu/
5549 F:      Documentation/gpu/
5550 F:      include/drm/
5551 F:      include/uapi/drm/
5552 F:      include/linux/vga*
5553
5554 DRM DRIVERS AND MISC GPU PATCHES
5555 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5556 M:      Maxime Ripard <mripard@kernel.org>
5557 M:      Thomas Zimmermann <tzimmermann@suse.de>
5558 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5559 S:      Maintained
5560 T:      git git://anongit.freedesktop.org/drm/drm-misc
5561 F:      Documentation/gpu/
5562 F:      drivers/gpu/vga/
5563 F:      drivers/gpu/drm/*
5564 F:      include/drm/drm*
5565 F:      include/uapi/drm/drm*
5566 F:      include/linux/vga*
5567
5568 DRM DRIVERS FOR ALLWINNER A10
5569 M:      Maxime Ripard <mripard@kernel.org>
5570 M:      Chen-Yu Tsai <wens@csie.org>
5571 L:      dri-devel@lists.freedesktop.org
5572 S:      Supported
5573 F:      drivers/gpu/drm/sun4i/
5574 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5575 T:      git git://anongit.freedesktop.org/drm/drm-misc
5576
5577 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5578 M:      Maxime Ripard <mripard@kernel.org>
5579 M:      Chen-Yu Tsai <wens@csie.org>
5580 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5581 L:      dri-devel@lists.freedesktop.org
5582 S:      Supported
5583 F:      drivers/gpu/drm/sun4i/sun8i*
5584 T:      git git://anongit.freedesktop.org/drm/drm-misc
5585
5586 DRM DRIVERS FOR AMLOGIC SOCS
5587 M:      Neil Armstrong <narmstrong@baylibre.com>
5588 L:      dri-devel@lists.freedesktop.org
5589 L:      linux-amlogic@lists.infradead.org
5590 W:      http://linux-meson.com/
5591 S:      Supported
5592 F:      drivers/gpu/drm/meson/
5593 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5594 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5595 F:      Documentation/gpu/meson.rst
5596 T:      git git://anongit.freedesktop.org/drm/drm-misc
5597
5598 DRM DRIVERS FOR ATMEL HLCDC
5599 M:      Sam Ravnborg <sam@ravnborg.org>
5600 M:      Boris Brezillon <bbrezillon@kernel.org>
5601 L:      dri-devel@lists.freedesktop.org
5602 S:      Supported
5603 F:      drivers/gpu/drm/atmel-hlcdc/
5604 F:      Documentation/devicetree/bindings/display/atmel/
5605 T:      git git://anongit.freedesktop.org/drm/drm-misc
5606
5607 DRM DRIVERS FOR BRIDGE CHIPS
5608 M:      Andrzej Hajda <a.hajda@samsung.com>
5609 M:      Neil Armstrong <narmstrong@baylibre.com>
5610 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5611 R:      Jonas Karlman <jonas@kwiboo.se>
5612 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5613 S:      Maintained
5614 T:      git git://anongit.freedesktop.org/drm/drm-misc
5615 F:      drivers/gpu/drm/bridge/
5616
5617 DRM DRIVERS FOR EXYNOS
5618 M:      Inki Dae <inki.dae@samsung.com>
5619 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5620 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5621 M:      Kyungmin Park <kyungmin.park@samsung.com>
5622 L:      dri-devel@lists.freedesktop.org
5623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5624 S:      Supported
5625 F:      drivers/gpu/drm/exynos/
5626 F:      include/uapi/drm/exynos_drm.h
5627 F:      Documentation/devicetree/bindings/display/exynos/
5628
5629 DRM DRIVERS FOR FREESCALE DCU
5630 M:      Stefan Agner <stefan@agner.ch>
5631 M:      Alison Wang <alison.wang@nxp.com>
5632 L:      dri-devel@lists.freedesktop.org
5633 S:      Supported
5634 F:      drivers/gpu/drm/fsl-dcu/
5635 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5636 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5637 T:      git git://anongit.freedesktop.org/drm/drm-misc
5638
5639 DRM DRIVERS FOR FREESCALE IMX
5640 M:      Philipp Zabel <p.zabel@pengutronix.de>
5641 L:      dri-devel@lists.freedesktop.org
5642 S:      Maintained
5643 F:      drivers/gpu/drm/imx/
5644 F:      drivers/gpu/ipu-v3/
5645 F:      Documentation/devicetree/bindings/display/imx/
5646
5647 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5648 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5649 L:      dri-devel@lists.freedesktop.org
5650 T:      git git://github.com/patjak/drm-gma500
5651 S:      Maintained
5652 F:      drivers/gpu/drm/gma500/
5653
5654 DRM DRIVERS FOR HISILICON
5655 M:      Xinliang Liu <xinliang.liu@linaro.org>
5656 M:      Rongrong Zou <zourongrong@gmail.com>
5657 R:      John Stultz <john.stultz@linaro.org>
5658 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5659 R:      Chen Feng <puck.chen@hisilicon.com>
5660 L:      dri-devel@lists.freedesktop.org
5661 T:      git git://anongit.freedesktop.org/drm/drm-misc
5662 S:      Maintained
5663 F:      drivers/gpu/drm/hisilicon/
5664 F:      Documentation/devicetree/bindings/display/hisilicon/
5665
5666 DRM DRIVERS FOR LIMA
5667 M:      Qiang Yu <yuq825@gmail.com>
5668 L:      dri-devel@lists.freedesktop.org
5669 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5670 S:      Maintained
5671 F:      drivers/gpu/drm/lima/
5672 F:      include/uapi/drm/lima_drm.h
5673 T:      git git://anongit.freedesktop.org/drm/drm-misc
5674
5675 DRM DRIVERS FOR MEDIATEK
5676 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5677 M:      Philipp Zabel <p.zabel@pengutronix.de>
5678 L:      dri-devel@lists.freedesktop.org
5679 S:      Supported
5680 F:      drivers/gpu/drm/mediatek/
5681 F:      Documentation/devicetree/bindings/display/mediatek/
5682
5683 DRM DRIVERS FOR NVIDIA TEGRA
5684 M:      Thierry Reding <thierry.reding@gmail.com>
5685 L:      dri-devel@lists.freedesktop.org
5686 L:      linux-tegra@vger.kernel.org
5687 T:      git git://anongit.freedesktop.org/tegra/linux.git
5688 S:      Supported
5689 F:      drivers/gpu/drm/tegra/
5690 F:      drivers/gpu/host1x/
5691 F:      include/linux/host1x.h
5692 F:      include/uapi/drm/tegra_drm.h
5693 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5694
5695 DRM DRIVERS FOR RENESAS
5696 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5697 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5698 L:      dri-devel@lists.freedesktop.org
5699 L:      linux-renesas-soc@vger.kernel.org
5700 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5701 S:      Supported
5702 F:      drivers/gpu/drm/rcar-du/
5703 F:      drivers/gpu/drm/shmobile/
5704 F:      include/linux/platform_data/shmob_drm.h
5705 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5706 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5707 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5708
5709 DRM DRIVERS FOR ROCKCHIP
5710 M:      Sandy Huang <hjc@rock-chips.com>
5711 M:      Heiko Stübner <heiko@sntech.de>
5712 L:      dri-devel@lists.freedesktop.org
5713 S:      Maintained
5714 F:      drivers/gpu/drm/rockchip/
5715 F:      Documentation/devicetree/bindings/display/rockchip/
5716 T:      git git://anongit.freedesktop.org/drm/drm-misc
5717
5718 DRM DRIVERS FOR STI
5719 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5720 M:      Vincent Abriou <vincent.abriou@st.com>
5721 L:      dri-devel@lists.freedesktop.org
5722 T:      git git://anongit.freedesktop.org/drm/drm-misc
5723 S:      Maintained
5724 F:      drivers/gpu/drm/sti
5725 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5726
5727 DRM DRIVERS FOR STM
5728 M:      Yannick Fertre <yannick.fertre@st.com>
5729 M:      Philippe Cornu <philippe.cornu@st.com>
5730 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5731 M:      Vincent Abriou <vincent.abriou@st.com>
5732 L:      dri-devel@lists.freedesktop.org
5733 T:      git git://anongit.freedesktop.org/drm/drm-misc
5734 S:      Maintained
5735 F:      drivers/gpu/drm/stm
5736 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5737
5738 DRM DRIVERS FOR TI LCDC
5739 M:      Jyri Sarha <jsarha@ti.com>
5740 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5741 L:      dri-devel@lists.freedesktop.org
5742 S:      Maintained
5743 F:      drivers/gpu/drm/tilcdc/
5744 F:      Documentation/devicetree/bindings/display/tilcdc/
5745
5746 DRM DRIVERS FOR TI OMAP
5747 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5748 L:      dri-devel@lists.freedesktop.org
5749 S:      Maintained
5750 F:      drivers/gpu/drm/omapdrm/
5751 F:      Documentation/devicetree/bindings/display/ti/
5752
5753 DRM DRIVERS FOR TI KEYSTONE
5754 M:      Jyri Sarha <jsarha@ti.com>
5755 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5756 L:      dri-devel@lists.freedesktop.org
5757 S:      Maintained
5758 F:      drivers/gpu/drm/tidss/
5759 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5760 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5761 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5762 T:      git git://anongit.freedesktop.org/drm/drm-misc
5763
5764 DRM DRIVERS FOR V3D
5765 M:      Eric Anholt <eric@anholt.net>
5766 S:      Supported
5767 F:      drivers/gpu/drm/v3d/
5768 F:      include/uapi/drm/v3d_drm.h
5769 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5770 T:      git git://anongit.freedesktop.org/drm/drm-misc
5771
5772 DRM DRIVERS FOR VC4
5773 M:      Eric Anholt <eric@anholt.net>
5774 T:      git git://github.com/anholt/linux
5775 S:      Supported
5776 F:      drivers/gpu/drm/vc4/
5777 F:      include/uapi/drm/vc4_drm.h
5778 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5779 T:      git git://anongit.freedesktop.org/drm/drm-misc
5780
5781 DRM DRIVERS FOR VIVANTE GPU IP
5782 M:      Lucas Stach <l.stach@pengutronix.de>
5783 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5784 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5785 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5786 L:      dri-devel@lists.freedesktop.org
5787 S:      Maintained
5788 F:      drivers/gpu/drm/etnaviv/
5789 F:      include/uapi/drm/etnaviv_drm.h
5790 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5791
5792 DRM DRIVERS FOR ZTE ZX
5793 M:      Shawn Guo <shawnguo@kernel.org>
5794 L:      dri-devel@lists.freedesktop.org
5795 S:      Maintained
5796 F:      drivers/gpu/drm/zte/
5797 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5798 T:      git git://anongit.freedesktop.org/drm/drm-misc
5799
5800 DRM PANEL DRIVERS
5801 M:      Thierry Reding <thierry.reding@gmail.com>
5802 R:      Sam Ravnborg <sam@ravnborg.org>
5803 L:      dri-devel@lists.freedesktop.org
5804 T:      git git://anongit.freedesktop.org/drm/drm-misc
5805 S:      Maintained
5806 F:      drivers/gpu/drm/drm_panel.c
5807 F:      drivers/gpu/drm/panel/
5808 F:      include/drm/drm_panel.h
5809 F:      Documentation/devicetree/bindings/display/panel/
5810
5811 DRM DRIVERS FOR XEN
5812 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5813 T:      git git://anongit.freedesktop.org/drm/drm-misc
5814 L:      dri-devel@lists.freedesktop.org
5815 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5816 S:      Supported
5817 F:      drivers/gpu/drm/xen/
5818 F:      Documentation/gpu/xen-front.rst
5819
5820 DRM TTM SUBSYSTEM
5821 M:      Christian Koenig <christian.koenig@amd.com>
5822 M:      Huang Rui <ray.huang@amd.com>
5823 T:      git git://people.freedesktop.org/~agd5f/linux
5824 S:      Maintained
5825 L:      dri-devel@lists.freedesktop.org
5826 F:      include/drm/ttm/
5827 F:      drivers/gpu/drm/ttm/
5828
5829 DSBR100 USB FM RADIO DRIVER
5830 M:      Alexey Klimov <klimov.linux@gmail.com>
5831 L:      linux-media@vger.kernel.org
5832 T:      git git://linuxtv.org/media_tree.git
5833 S:      Maintained
5834 F:      drivers/media/radio/dsbr100.c
5835
5836 DT3155 MEDIA DRIVER
5837 M:      Hans Verkuil <hverkuil@xs4all.nl>
5838 L:      linux-media@vger.kernel.org
5839 T:      git git://linuxtv.org/media_tree.git
5840 W:      https://linuxtv.org
5841 S:      Odd Fixes
5842 F:      drivers/media/pci/dt3155/
5843
5844 DVB_USB_AF9015 MEDIA DRIVER
5845 M:      Antti Palosaari <crope@iki.fi>
5846 L:      linux-media@vger.kernel.org
5847 W:      https://linuxtv.org
5848 W:      http://palosaari.fi/linux/
5849 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5850 T:      git git://linuxtv.org/anttip/media_tree.git
5851 S:      Maintained
5852 F:      drivers/media/usb/dvb-usb-v2/af9015*
5853
5854 DVB_USB_AF9035 MEDIA DRIVER
5855 M:      Antti Palosaari <crope@iki.fi>
5856 L:      linux-media@vger.kernel.org
5857 W:      https://linuxtv.org
5858 W:      http://palosaari.fi/linux/
5859 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5860 T:      git git://linuxtv.org/anttip/media_tree.git
5861 S:      Maintained
5862 F:      drivers/media/usb/dvb-usb-v2/af9035*
5863
5864 DVB_USB_ANYSEE MEDIA DRIVER
5865 M:      Antti Palosaari <crope@iki.fi>
5866 L:      linux-media@vger.kernel.org
5867 W:      https://linuxtv.org
5868 W:      http://palosaari.fi/linux/
5869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5870 T:      git git://linuxtv.org/anttip/media_tree.git
5871 S:      Maintained
5872 F:      drivers/media/usb/dvb-usb-v2/anysee*
5873
5874 DVB_USB_AU6610 MEDIA DRIVER
5875 M:      Antti Palosaari <crope@iki.fi>
5876 L:      linux-media@vger.kernel.org
5877 W:      https://linuxtv.org
5878 W:      http://palosaari.fi/linux/
5879 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5880 T:      git git://linuxtv.org/anttip/media_tree.git
5881 S:      Maintained
5882 F:      drivers/media/usb/dvb-usb-v2/au6610*
5883
5884 DVB_USB_CE6230 MEDIA DRIVER
5885 M:      Antti Palosaari <crope@iki.fi>
5886 L:      linux-media@vger.kernel.org
5887 W:      https://linuxtv.org
5888 W:      http://palosaari.fi/linux/
5889 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5890 T:      git git://linuxtv.org/anttip/media_tree.git
5891 S:      Maintained
5892 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5893
5894 DVB_USB_CXUSB MEDIA DRIVER
5895 M:      Michael Krufky <mkrufky@linuxtv.org>
5896 L:      linux-media@vger.kernel.org
5897 W:      https://linuxtv.org
5898 W:      http://github.com/mkrufky
5899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5900 T:      git git://linuxtv.org/media_tree.git
5901 S:      Maintained
5902 F:      drivers/media/usb/dvb-usb/cxusb*
5903
5904 DVB_USB_EC168 MEDIA DRIVER
5905 M:      Antti Palosaari <crope@iki.fi>
5906 L:      linux-media@vger.kernel.org
5907 W:      https://linuxtv.org
5908 W:      http://palosaari.fi/linux/
5909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5910 T:      git git://linuxtv.org/anttip/media_tree.git
5911 S:      Maintained
5912 F:      drivers/media/usb/dvb-usb-v2/ec168*
5913
5914 DVB_USB_GL861 MEDIA DRIVER
5915 M:      Antti Palosaari <crope@iki.fi>
5916 L:      linux-media@vger.kernel.org
5917 W:      https://linuxtv.org
5918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5919 T:      git git://linuxtv.org/anttip/media_tree.git
5920 S:      Maintained
5921 F:      drivers/media/usb/dvb-usb-v2/gl861*
5922
5923 DVB_USB_MXL111SF MEDIA DRIVER
5924 M:      Michael Krufky <mkrufky@linuxtv.org>
5925 L:      linux-media@vger.kernel.org
5926 W:      https://linuxtv.org
5927 W:      http://github.com/mkrufky
5928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5929 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5930 S:      Maintained
5931 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5932
5933 DVB_USB_RTL28XXU MEDIA DRIVER
5934 M:      Antti Palosaari <crope@iki.fi>
5935 L:      linux-media@vger.kernel.org
5936 W:      https://linuxtv.org
5937 W:      http://palosaari.fi/linux/
5938 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5939 T:      git git://linuxtv.org/anttip/media_tree.git
5940 S:      Maintained
5941 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5942
5943 DVB_USB_V2 MEDIA DRIVER
5944 M:      Antti Palosaari <crope@iki.fi>
5945 L:      linux-media@vger.kernel.org
5946 W:      https://linuxtv.org
5947 W:      http://palosaari.fi/linux/
5948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5949 T:      git git://linuxtv.org/anttip/media_tree.git
5950 S:      Maintained
5951 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5952 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5953
5954 DYNAMIC DEBUG
5955 M:      Jason Baron <jbaron@akamai.com>
5956 S:      Maintained
5957 F:      lib/dynamic_debug.c
5958 F:      include/linux/dynamic_debug.h
5959
5960 DYNAMIC INTERRUPT MODERATION
5961 M:      Tal Gilboa <talgi@mellanox.com>
5962 S:      Maintained
5963 F:      include/linux/dim.h
5964 F:      lib/dim/
5965
5966 DZ DECSTATION DZ11 SERIAL DRIVER
5967 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5968 S:      Maintained
5969 F:      drivers/tty/serial/dz.*
5970
5971 E3X0 POWER BUTTON DRIVER
5972 M:      Moritz Fischer <moritz.fischer@ettus.com>
5973 L:      usrp-users@lists.ettus.com
5974 W:      http://www.ettus.com
5975 S:      Supported
5976 F:      drivers/input/misc/e3x0-button.c
5977 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5978
5979 E4000 MEDIA DRIVER
5980 M:      Antti Palosaari <crope@iki.fi>
5981 L:      linux-media@vger.kernel.org
5982 W:      https://linuxtv.org
5983 W:      http://palosaari.fi/linux/
5984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5985 T:      git git://linuxtv.org/anttip/media_tree.git
5986 S:      Maintained
5987 F:      drivers/media/tuners/e4000*
5988
5989 EARTH_PT1 MEDIA DRIVER
5990 M:      Akihiro Tsukada <tskd08@gmail.com>
5991 L:      linux-media@vger.kernel.org
5992 S:      Odd Fixes
5993 F:      drivers/media/pci/pt1/
5994
5995 EARTH_PT3 MEDIA DRIVER
5996 M:      Akihiro Tsukada <tskd08@gmail.com>
5997 L:      linux-media@vger.kernel.org
5998 S:      Odd Fixes
5999 F:      drivers/media/pci/pt3/
6000
6001 EC100 MEDIA DRIVER
6002 M:      Antti Palosaari <crope@iki.fi>
6003 L:      linux-media@vger.kernel.org
6004 W:      https://linuxtv.org
6005 W:      http://palosaari.fi/linux/
6006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6007 T:      git git://linuxtv.org/anttip/media_tree.git
6008 S:      Maintained
6009 F:      drivers/media/dvb-frontends/ec100*
6010
6011 ECRYPT FILE SYSTEM
6012 M:      Tyler Hicks <code@tyhicks.com>
6013 L:      ecryptfs@vger.kernel.org
6014 W:      http://ecryptfs.org
6015 W:      https://launchpad.net/ecryptfs
6016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6017 S:      Odd Fixes
6018 F:      Documentation/filesystems/ecryptfs.rst
6019 F:      fs/ecryptfs/
6020
6021 EDAC-AMD64
6022 M:      Borislav Petkov <bp@alien8.de>
6023 L:      linux-edac@vger.kernel.org
6024 S:      Maintained
6025 F:      drivers/edac/amd64_edac*
6026
6027 EDAC-ARMADA
6028 M:      Jan Luebbe <jlu@pengutronix.de>
6029 L:      linux-edac@vger.kernel.org
6030 S:      Maintained
6031 F:      drivers/edac/armada_xp_*
6032
6033 EDAC-AST2500
6034 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6035 S:      Supported
6036 F:      drivers/edac/aspeed_edac.c
6037 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6038
6039 EDAC-BLUEFIELD
6040 M:      Shravan Kumar Ramani <sramani@mellanox.com>
6041 S:      Supported
6042 F:      drivers/edac/bluefield_edac.c
6043
6044 EDAC-CALXEDA
6045 M:      Robert Richter <rric@kernel.org>
6046 L:      linux-edac@vger.kernel.org
6047 S:      Maintained
6048 F:      drivers/edac/highbank*
6049
6050 EDAC-CAVIUM OCTEON
6051 M:      Ralf Baechle <ralf@linux-mips.org>
6052 M:      Robert Richter <rrichter@marvell.com>
6053 L:      linux-edac@vger.kernel.org
6054 L:      linux-mips@vger.kernel.org
6055 S:      Supported
6056 F:      drivers/edac/octeon_edac*
6057
6058 EDAC-CAVIUM THUNDERX
6059 M:      Robert Richter <rrichter@marvell.com>
6060 L:      linux-edac@vger.kernel.org
6061 S:      Supported
6062 F:      drivers/edac/thunderx_edac*
6063
6064 EDAC-CORE
6065 M:      Borislav Petkov <bp@alien8.de>
6066 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6067 M:      Tony Luck <tony.luck@intel.com>
6068 R:      James Morse <james.morse@arm.com>
6069 R:      Robert Richter <rrichter@marvell.com>
6070 L:      linux-edac@vger.kernel.org
6071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6072 S:      Supported
6073 F:      Documentation/admin-guide/ras.rst
6074 F:      Documentation/driver-api/edac.rst
6075 F:      drivers/edac/
6076 F:      include/linux/edac.h
6077
6078 EDAC-DMC520
6079 M:      Lei Wang <lewan@microsoft.com>
6080 L:      linux-edac@vger.kernel.org
6081 S:      Supported
6082 F:      drivers/edac/dmc520_edac.c
6083
6084 EDAC-E752X
6085 M:      Mark Gross <mark.gross@intel.com>
6086 L:      linux-edac@vger.kernel.org
6087 S:      Maintained
6088 F:      drivers/edac/e752x_edac.c
6089
6090 EDAC-E7XXX
6091 L:      linux-edac@vger.kernel.org
6092 S:      Maintained
6093 F:      drivers/edac/e7xxx_edac.c
6094
6095 EDAC-FSL_DDR
6096 M:      York Sun <york.sun@nxp.com>
6097 L:      linux-edac@vger.kernel.org
6098 S:      Maintained
6099 F:      drivers/edac/fsl_ddr_edac.*
6100
6101 EDAC-GHES
6102 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6103 L:      linux-edac@vger.kernel.org
6104 S:      Maintained
6105 F:      drivers/edac/ghes_edac.c
6106
6107 EDAC-I10NM
6108 M:      Tony Luck <tony.luck@intel.com>
6109 L:      linux-edac@vger.kernel.org
6110 S:      Maintained
6111 F:      drivers/edac/i10nm_base.c
6112
6113 EDAC-I3000
6114 L:      linux-edac@vger.kernel.org
6115 S:      Orphan
6116 F:      drivers/edac/i3000_edac.c
6117
6118 EDAC-I5000
6119 L:      linux-edac@vger.kernel.org
6120 S:      Maintained
6121 F:      drivers/edac/i5000_edac.c
6122
6123 EDAC-I5400
6124 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6125 L:      linux-edac@vger.kernel.org
6126 S:      Maintained
6127 F:      drivers/edac/i5400_edac.c
6128
6129 EDAC-I7300
6130 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6131 L:      linux-edac@vger.kernel.org
6132 S:      Maintained
6133 F:      drivers/edac/i7300_edac.c
6134
6135 EDAC-I7CORE
6136 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6137 L:      linux-edac@vger.kernel.org
6138 S:      Maintained
6139 F:      drivers/edac/i7core_edac.c
6140
6141 EDAC-I82443BXGX
6142 M:      Tim Small <tim@buttersideup.com>
6143 L:      linux-edac@vger.kernel.org
6144 S:      Maintained
6145 F:      drivers/edac/i82443bxgx_edac.c
6146
6147 EDAC-I82975X
6148 M:      "Arvind R." <arvino55@gmail.com>
6149 L:      linux-edac@vger.kernel.org
6150 S:      Maintained
6151 F:      drivers/edac/i82975x_edac.c
6152
6153 EDAC-IE31200
6154 M:      Jason Baron <jbaron@akamai.com>
6155 L:      linux-edac@vger.kernel.org
6156 S:      Maintained
6157 F:      drivers/edac/ie31200_edac.c
6158
6159 EDAC-MPC85XX
6160 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6161 L:      linux-edac@vger.kernel.org
6162 S:      Maintained
6163 F:      drivers/edac/mpc85xx_edac.[ch]
6164
6165 EDAC-PASEMI
6166 M:      Egor Martovetsky <egor@pasemi.com>
6167 L:      linux-edac@vger.kernel.org
6168 S:      Maintained
6169 F:      drivers/edac/pasemi_edac.c
6170
6171 EDAC-PND2
6172 M:      Tony Luck <tony.luck@intel.com>
6173 L:      linux-edac@vger.kernel.org
6174 S:      Maintained
6175 F:      drivers/edac/pnd2_edac.[ch]
6176
6177 EDAC-R82600
6178 M:      Tim Small <tim@buttersideup.com>
6179 L:      linux-edac@vger.kernel.org
6180 S:      Maintained
6181 F:      drivers/edac/r82600_edac.c
6182
6183 EDAC-SBRIDGE
6184 M:      Tony Luck <tony.luck@intel.com>
6185 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6186 L:      linux-edac@vger.kernel.org
6187 S:      Maintained
6188 F:      drivers/edac/sb_edac.c
6189
6190 EDAC-SIFIVE
6191 M:      Yash Shah <yash.shah@sifive.com>
6192 L:      linux-edac@vger.kernel.org
6193 S:      Supported
6194 F:      drivers/edac/sifive_edac.c
6195 F:      drivers/soc/sifive_l2_cache.c
6196
6197 EDAC-SKYLAKE
6198 M:      Tony Luck <tony.luck@intel.com>
6199 L:      linux-edac@vger.kernel.org
6200 S:      Maintained
6201 F:      drivers/edac/skx_*.c
6202
6203 EDAC-TI
6204 M:      Tero Kristo <t-kristo@ti.com>
6205 L:      linux-edac@vger.kernel.org
6206 S:      Maintained
6207 F:      drivers/edac/ti_edac.c
6208
6209 EDAC-QCOM
6210 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6211 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6212 L:      linux-arm-msm@vger.kernel.org
6213 L:      linux-edac@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/edac/qcom_edac.c
6216
6217 EDIROL UA-101/UA-1000 DRIVER
6218 M:      Clemens Ladisch <clemens@ladisch.de>
6219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6221 S:      Maintained
6222 F:      sound/usb/misc/ua101.c
6223
6224 EFI TEST DRIVER
6225 L:      linux-efi@vger.kernel.org
6226 M:      Ivan Hu <ivan.hu@canonical.com>
6227 M:      Ard Biesheuvel <ardb@kernel.org>
6228 S:      Maintained
6229 F:      drivers/firmware/efi/test/
6230
6231 EFI VARIABLE FILESYSTEM
6232 M:      Matthew Garrett <matthew.garrett@nebula.com>
6233 M:      Jeremy Kerr <jk@ozlabs.org>
6234 M:      Ard Biesheuvel <ardb@kernel.org>
6235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6236 L:      linux-efi@vger.kernel.org
6237 S:      Maintained
6238 F:      fs/efivarfs/
6239
6240 EFIFB FRAMEBUFFER DRIVER
6241 L:      linux-fbdev@vger.kernel.org
6242 M:      Peter Jones <pjones@redhat.com>
6243 S:      Maintained
6244 F:      drivers/video/fbdev/efifb.c
6245
6246 EFS FILESYSTEM
6247 W:      http://aeschi.ch.eu.org/efs/
6248 S:      Orphan
6249 F:      fs/efs/
6250
6251 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6252 M:      Douglas Miller <dougmill@linux.ibm.com>
6253 L:      netdev@vger.kernel.org
6254 S:      Maintained
6255 F:      drivers/net/ethernet/ibm/ehea/
6256
6257 EM28XX VIDEO4LINUX DRIVER
6258 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6259 L:      linux-media@vger.kernel.org
6260 W:      https://linuxtv.org
6261 T:      git git://linuxtv.org/media_tree.git
6262 S:      Maintained
6263 F:      drivers/media/usb/em28xx/
6264 F:      Documentation/media/v4l-drivers/em28xx*
6265
6266 EMBEDDED LINUX
6267 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6268 M:      Matt Mackall <mpm@selenic.com>
6269 M:      David Woodhouse <dwmw2@infradead.org>
6270 L:      linux-embedded@vger.kernel.org
6271 S:      Maintained
6272
6273 Emulex 10Gbps iSCSI - OneConnect DRIVER
6274 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6275 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6276 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6277 L:      linux-scsi@vger.kernel.org
6278 W:      http://www.broadcom.com
6279 S:      Supported
6280 F:      drivers/scsi/be2iscsi/
6281
6282 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6283 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6284 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6285 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6286 L:      netdev@vger.kernel.org
6287 W:      http://www.emulex.com
6288 S:      Supported
6289 F:      drivers/net/ethernet/emulex/benet/
6290
6291 EMULEX ONECONNECT ROCE DRIVER
6292 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6293 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6294 L:      linux-rdma@vger.kernel.org
6295 W:      http://www.broadcom.com
6296 S:      Odd Fixes
6297 F:      drivers/infiniband/hw/ocrdma/
6298 F:      include/uapi/rdma/ocrdma-abi.h
6299
6300 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6301 M:      James Smart <james.smart@broadcom.com>
6302 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6303 L:      linux-scsi@vger.kernel.org
6304 W:      http://www.broadcom.com
6305 S:      Supported
6306 F:      drivers/scsi/lpfc/
6307
6308 ENE CB710 FLASH CARD READER DRIVER
6309 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6310 S:      Maintained
6311 F:      drivers/misc/cb710/
6312 F:      drivers/mmc/host/cb710-mmc.*
6313 F:      include/linux/cb710.h
6314
6315 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6316 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6317 S:      Maintained
6318 F:      drivers/media/rc/ene_ir.*
6319
6320 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6321 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6322 L:      linuxppc-dev@lists.ozlabs.org
6323 S:      Maintained
6324 F:      drivers/tty/ehv_bytechan.c
6325
6326 EPSON S1D13XXX FRAMEBUFFER DRIVER
6327 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6328 S:      Maintained
6329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6330 F:      drivers/video/fbdev/s1d13xxxfb.c
6331 F:      include/video/s1d13xxxfb.h
6332
6333 EROFS FILE SYSTEM
6334 M:      Gao Xiang <xiang@kernel.org>
6335 M:      Chao Yu <yuchao0@huawei.com>
6336 L:      linux-erofs@lists.ozlabs.org
6337 S:      Maintained
6338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6339 F:      Documentation/filesystems/erofs.rst
6340 F:      fs/erofs/
6341 F:      include/trace/events/erofs.h
6342
6343 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6344 M:      Jeff Layton <jlayton@kernel.org>
6345 S:      Maintained
6346 F:      lib/errseq.c
6347 F:      include/linux/errseq.h
6348
6349 ET131X NETWORK DRIVER
6350 M:      Mark Einon <mark.einon@gmail.com>
6351 S:      Odd Fixes
6352 F:      drivers/net/ethernet/agere/
6353
6354 ETHERNET BRIDGE
6355 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6356 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6357 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6358 L:      netdev@vger.kernel.org
6359 W:      http://www.linuxfoundation.org/en/Net:Bridge
6360 S:      Maintained
6361 F:      include/linux/netfilter_bridge/
6362 F:      net/bridge/
6363
6364 ETHERNET PHY LIBRARY
6365 M:      Andrew Lunn <andrew@lunn.ch>
6366 M:      Florian Fainelli <f.fainelli@gmail.com>
6367 M:      Heiner Kallweit <hkallweit1@gmail.com>
6368 R:      Russell King <linux@armlinux.org.uk>
6369 L:      netdev@vger.kernel.org
6370 S:      Maintained
6371 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6372 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6373 F:      Documentation/devicetree/bindings/net/mdio*
6374 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
6375 F:      Documentation/networking/phy.rst
6376 F:      drivers/net/phy/
6377 F:      drivers/of/of_mdio.c
6378 F:      drivers/of/of_net.c
6379 F:      include/dt-bindings/net/qca-ar803x.h
6380 F:      include/linux/*mdio*.h
6381 F:      include/linux/of_net.h
6382 F:      include/linux/phy.h
6383 F:      include/linux/phy_fixed.h
6384 F:      include/linux/platform_data/mdio-bcm-unimac.h
6385 F:      include/linux/platform_data/mdio-gpio.h
6386 F:      include/trace/events/mdio.h
6387 F:      include/uapi/linux/mdio.h
6388 F:      include/uapi/linux/mii.h
6389
6390 EXFAT FILE SYSTEM
6391 M:      Namjae Jeon <namjae.jeon@samsung.com>
6392 M:      Sungjong Seo <sj1557.seo@samsung.com>
6393 L:      linux-fsdevel@vger.kernel.org
6394 S:      Maintained
6395 F:      fs/exfat/
6396
6397 EXT2 FILE SYSTEM
6398 M:      Jan Kara <jack@suse.com>
6399 L:      linux-ext4@vger.kernel.org
6400 S:      Maintained
6401 F:      Documentation/filesystems/ext2.rst
6402 F:      fs/ext2/
6403 F:      include/linux/ext2*
6404
6405 EXT4 FILE SYSTEM
6406 M:      "Theodore Ts'o" <tytso@mit.edu>
6407 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6408 L:      linux-ext4@vger.kernel.org
6409 W:      http://ext4.wiki.kernel.org
6410 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6412 S:      Maintained
6413 F:      Documentation/filesystems/ext4/
6414 F:      fs/ext4/
6415
6416 Extended Verification Module (EVM)
6417 M:      Mimi Zohar <zohar@linux.ibm.com>
6418 L:      linux-integrity@vger.kernel.org
6419 S:      Supported
6420 F:      security/integrity/evm/
6421
6422 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6423 M:      Ard Biesheuvel <ardb@kernel.org>
6424 L:      linux-efi@vger.kernel.org
6425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6426 S:      Maintained
6427 F:      Documentation/admin-guide/efi-stub.rst
6428 F:      arch/*/kernel/efi.c
6429 F:      arch/*/include/asm/efi.h
6430 F:      arch/x86/platform/efi/
6431 F:      drivers/firmware/efi/
6432 F:      include/linux/efi*.h
6433 F:      arch/arm/boot/compressed/efi-header.S
6434 F:      arch/arm64/kernel/efi-entry.S
6435
6436 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6437 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6438 M:      Chanwoo Choi <cw00.choi@samsung.com>
6439 L:      linux-kernel@vger.kernel.org
6440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6441 S:      Maintained
6442 F:      drivers/extcon/
6443 F:      include/linux/extcon/
6444 F:      include/linux/extcon.h
6445 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6446 F:      Documentation/devicetree/bindings/extcon/
6447
6448 EXYNOS DP DRIVER
6449 M:      Jingoo Han <jingoohan1@gmail.com>
6450 L:      dri-devel@lists.freedesktop.org
6451 S:      Maintained
6452 F:      drivers/gpu/drm/exynos/exynos_dp*
6453
6454 EXYNOS SYSMMU (IOMMU) driver
6455 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6456 L:      iommu@lists.linux-foundation.org
6457 S:      Maintained
6458 F:      drivers/iommu/exynos-iommu.c
6459
6460 EZchip NPS platform support
6461 M:      Vineet Gupta <vgupta@synopsys.com>
6462 M:      Ofer Levi <oferle@mellanox.com>
6463 S:      Supported
6464 F:      arch/arc/plat-eznps
6465 F:      arch/arc/boot/dts/eznps.dts
6466
6467 F2FS FILE SYSTEM
6468 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6469 M:      Chao Yu <yuchao0@huawei.com>
6470 L:      linux-f2fs-devel@lists.sourceforge.net
6471 W:      https://f2fs.wiki.kernel.org/
6472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6473 S:      Maintained
6474 F:      Documentation/filesystems/f2fs.rst
6475 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6476 F:      fs/f2fs/
6477 F:      include/linux/f2fs_fs.h
6478 F:      include/trace/events/f2fs.h
6479
6480 F71805F HARDWARE MONITORING DRIVER
6481 M:      Jean Delvare <jdelvare@suse.com>
6482 L:      linux-hwmon@vger.kernel.org
6483 S:      Maintained
6484 F:      Documentation/hwmon/f71805f.rst
6485 F:      drivers/hwmon/f71805f.c
6486
6487 FADDR2LINE
6488 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6489 S:      Maintained
6490 F:      scripts/faddr2line
6491
6492 FAILOVER MODULE
6493 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6494 L:      netdev@vger.kernel.org
6495 S:      Supported
6496 F:      net/core/failover.c
6497 F:      include/net/failover.h
6498 F:      Documentation/networking/failover.rst
6499
6500 FANOTIFY
6501 M:      Jan Kara <jack@suse.cz>
6502 R:      Amir Goldstein <amir73il@gmail.com>
6503 L:      linux-fsdevel@vger.kernel.org
6504 S:      Maintained
6505 F:      fs/notify/fanotify/
6506 F:      include/linux/fanotify.h
6507 F:      include/uapi/linux/fanotify.h
6508
6509 FARSYNC SYNCHRONOUS DRIVER
6510 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6511 W:      http://www.farsite.co.uk/
6512 S:      Supported
6513 F:      drivers/net/wan/farsync.*
6514
6515 FAULT INJECTION SUPPORT
6516 M:      Akinobu Mita <akinobu.mita@gmail.com>
6517 S:      Supported
6518 F:      Documentation/fault-injection/
6519 F:      lib/fault-inject.c
6520
6521 FBTFT Framebuffer drivers
6522 S:      Orphan
6523 L:      dri-devel@lists.freedesktop.org
6524 L:      linux-fbdev@vger.kernel.org
6525 F:      drivers/staging/fbtft/
6526
6527 FC0011 TUNER DRIVER
6528 M:      Michael Buesch <m@bues.ch>
6529 L:      linux-media@vger.kernel.org
6530 S:      Maintained
6531 F:      drivers/media/tuners/fc0011.h
6532 F:      drivers/media/tuners/fc0011.c
6533
6534 FC2580 MEDIA DRIVER
6535 M:      Antti Palosaari <crope@iki.fi>
6536 L:      linux-media@vger.kernel.org
6537 W:      https://linuxtv.org
6538 W:      http://palosaari.fi/linux/
6539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6540 T:      git git://linuxtv.org/anttip/media_tree.git
6541 S:      Maintained
6542 F:      drivers/media/tuners/fc2580*
6543
6544 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6545 M:      Hannes Reinecke <hare@suse.de>
6546 L:      linux-scsi@vger.kernel.org
6547 W:      www.Open-FCoE.org
6548 S:      Supported
6549 F:      drivers/scsi/libfc/
6550 F:      drivers/scsi/fcoe/
6551 F:      include/scsi/fc/
6552 F:      include/scsi/libfc.h
6553 F:      include/scsi/libfcoe.h
6554 F:      include/uapi/scsi/fc/
6555
6556 FILE LOCKING (flock() and fcntl()/lockf())
6557 M:      Jeff Layton <jlayton@kernel.org>
6558 M:      "J. Bruce Fields" <bfields@fieldses.org>
6559 L:      linux-fsdevel@vger.kernel.org
6560 S:      Maintained
6561 F:      include/linux/fcntl.h
6562 F:      include/uapi/linux/fcntl.h
6563 F:      fs/fcntl.c
6564 F:      fs/locks.c
6565
6566 FILESYSTEMS (VFS and infrastructure)
6567 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6568 L:      linux-fsdevel@vger.kernel.org
6569 S:      Maintained
6570 F:      fs/*
6571 F:      include/linux/fs.h
6572 F:      include/linux/fs_types.h
6573 F:      include/uapi/linux/fs.h
6574 F:      include/uapi/linux/openat2.h
6575
6576 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6577 M:      Riku Voipio <riku.voipio@iki.fi>
6578 L:      linux-hwmon@vger.kernel.org
6579 S:      Maintained
6580 F:      drivers/hwmon/f75375s.c
6581 F:      include/linux/f75375s.h
6582
6583 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6584 M:      Clemens Ladisch <clemens@ladisch.de>
6585 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6586 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6588 S:      Maintained
6589 F:      sound/firewire/
6590 F:      include/uapi/sound/firewire.h
6591
6592 FIREWIRE MEDIA DRIVERS (firedtv)
6593 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6594 L:      linux-media@vger.kernel.org
6595 L:      linux1394-devel@lists.sourceforge.net
6596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6597 S:      Maintained
6598 F:      drivers/media/firewire/
6599
6600 FIREWIRE SBP-2 TARGET
6601 M:      Chris Boot <bootc@bootc.net>
6602 L:      linux-scsi@vger.kernel.org
6603 L:      target-devel@vger.kernel.org
6604 L:      linux1394-devel@lists.sourceforge.net
6605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6606 S:      Maintained
6607 F:      drivers/target/sbp/
6608
6609 FIREWIRE SUBSYSTEM
6610 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6611 L:      linux1394-devel@lists.sourceforge.net
6612 W:      http://ieee1394.wiki.kernel.org/
6613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6614 S:      Maintained
6615 F:      drivers/firewire/
6616 F:      include/linux/firewire.h
6617 F:      include/uapi/linux/firewire*.h
6618 F:      tools/firewire/
6619
6620 FIRMWARE LOADER (request_firmware)
6621 M:      Luis Chamberlain <mcgrof@kernel.org>
6622 L:      linux-kernel@vger.kernel.org
6623 S:      Maintained
6624 F:      Documentation/firmware_class/
6625 F:      drivers/base/firmware_loader/
6626 F:      include/linux/firmware.h
6627
6628 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6629 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6630 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6631 S:      Maintained
6632 F:      drivers/block/rsxx/
6633
6634 FLEXTIMER FTM-QUADDEC DRIVER
6635 M:      Patrick Havelange <patrick.havelange@essensium.com>
6636 L:      linux-iio@vger.kernel.org
6637 S:      Maintained
6638 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6639 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6640 F:      drivers/counter/ftm-quaddec.c
6641
6642 FLOPPY DRIVER
6643 M:      Denis Efremov <efremov@linux.com>
6644 S:      Odd Fixes
6645 L:      linux-block@vger.kernel.org
6646 F:      drivers/block/floppy.c
6647
6648 FPGA MANAGER FRAMEWORK
6649 M:      Moritz Fischer <mdf@kernel.org>
6650 L:      linux-fpga@vger.kernel.org
6651 S:      Maintained
6652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6653 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6654 F:      Documentation/fpga/
6655 F:      Documentation/driver-api/fpga/
6656 F:      Documentation/devicetree/bindings/fpga/
6657 F:      drivers/fpga/
6658 F:      include/linux/fpga/
6659 W:      http://www.rocketboards.org
6660
6661 FPGA DFL DRIVERS
6662 M:      Wu Hao <hao.wu@intel.com>
6663 L:      linux-fpga@vger.kernel.org
6664 S:      Maintained
6665 F:      Documentation/fpga/dfl.rst
6666 F:      include/uapi/linux/fpga-dfl.h
6667 F:      drivers/fpga/dfl*
6668
6669 FPU EMULATOR
6670 M:      Bill Metzenthen <billm@melbpc.org.au>
6671 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6672 S:      Maintained
6673 F:      arch/x86/math-emu/
6674
6675 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6676 L:      netdev@vger.kernel.org
6677 S:      Orphan
6678 F:      drivers/net/wan/dlci.c
6679 F:      drivers/net/wan/sdla.c
6680
6681 FRAMEBUFFER LAYER
6682 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6683 L:      dri-devel@lists.freedesktop.org
6684 L:      linux-fbdev@vger.kernel.org
6685 T:      git git://anongit.freedesktop.org/drm/drm-misc
6686 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6687 S:      Maintained
6688 F:      Documentation/fb/
6689 F:      drivers/video/
6690 F:      include/video/
6691 F:      include/linux/fb.h
6692 F:      include/uapi/video/
6693 F:      include/uapi/linux/fb.h
6694
6695 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6696 M:      Horia Geantă <horia.geanta@nxp.com>
6697 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6698 L:      linux-crypto@vger.kernel.org
6699 S:      Maintained
6700 F:      drivers/crypto/caam/
6701 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6702
6703 FREESCALE DIU FRAMEBUFFER DRIVER
6704 M:      Timur Tabi <timur@kernel.org>
6705 L:      linux-fbdev@vger.kernel.org
6706 S:      Maintained
6707 F:      drivers/video/fbdev/fsl-diu-fb.*
6708
6709 FREESCALE DMA DRIVER
6710 M:      Li Yang <leoyang.li@nxp.com>
6711 M:      Zhang Wei <zw@zh-kernel.org>
6712 L:      linuxppc-dev@lists.ozlabs.org
6713 S:      Maintained
6714 F:      drivers/dma/fsldma.*
6715
6716 FREESCALE ENETC ETHERNET DRIVERS
6717 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6718 L:      netdev@vger.kernel.org
6719 S:      Maintained
6720 F:      drivers/net/ethernet/freescale/enetc/
6721
6722 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6723 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6724 L:      netdev@vger.kernel.org
6725 S:      Maintained
6726 F:      drivers/net/ethernet/freescale/gianfar*
6727 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6728
6729 FREESCALE GPMI NAND DRIVER
6730 M:      Han Xu <han.xu@nxp.com>
6731 L:      linux-mtd@lists.infradead.org
6732 S:      Maintained
6733 F:      drivers/mtd/nand/raw/gpmi-nand/*
6734
6735 FREESCALE I2C CPM DRIVER
6736 M:      Jochen Friedrich <jochen@scram.de>
6737 L:      linuxppc-dev@lists.ozlabs.org
6738 L:      linux-i2c@vger.kernel.org
6739 S:      Maintained
6740 F:      drivers/i2c/busses/i2c-cpm.c
6741
6742 FREESCALE IMX DDR PMU DRIVER
6743 M:      Frank Li <Frank.li@nxp.com>
6744 L:      linux-arm-kernel@lists.infradead.org
6745 S:      Maintained
6746 F:      drivers/perf/fsl_imx8_ddr_perf.c
6747 F:      Documentation/admin-guide/perf/imx-ddr.rst
6748 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6749
6750 FREESCALE IMX I2C DRIVER
6751 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6752 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6753 L:      linux-i2c@vger.kernel.org
6754 S:      Maintained
6755 F:      drivers/i2c/busses/i2c-imx.c
6756 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6757
6758 FREESCALE IMX LPI2C DRIVER
6759 M:      Dong Aisheng <aisheng.dong@nxp.com>
6760 L:      linux-i2c@vger.kernel.org
6761 L:      linux-imx@nxp.com
6762 S:      Maintained
6763 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6764 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6765
6766 FREESCALE IMX / MXC FEC DRIVER
6767 M:      Fugang Duan <fugang.duan@nxp.com>
6768 L:      netdev@vger.kernel.org
6769 S:      Maintained
6770 F:      drivers/net/ethernet/freescale/fec_main.c
6771 F:      drivers/net/ethernet/freescale/fec_ptp.c
6772 F:      drivers/net/ethernet/freescale/fec.h
6773 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6774
6775 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6776 M:      Sascha Hauer <s.hauer@pengutronix.de>
6777 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6778 L:      linux-fbdev@vger.kernel.org
6779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6780 S:      Maintained
6781 F:      include/linux/platform_data/video-imxfb.h
6782 F:      drivers/video/fbdev/imxfb.c
6783
6784 FREESCALE QORIQ DPAA ETHERNET DRIVER
6785 M:      Madalin Bucur <madalin.bucur@nxp.com>
6786 L:      netdev@vger.kernel.org
6787 S:      Maintained
6788 F:      drivers/net/ethernet/freescale/dpaa
6789
6790 FREESCALE QORIQ DPAA FMAN DRIVER
6791 M:      Madalin Bucur <madalin.bucur@nxp.com>
6792 L:      netdev@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/net/ethernet/freescale/fman
6795 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6796
6797 FREESCALE QORIQ PTP CLOCK DRIVER
6798 M:      Yangbo Lu <yangbo.lu@nxp.com>
6799 L:      netdev@vger.kernel.org
6800 S:      Maintained
6801 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6802 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6803 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6804 F:      drivers/ptp/ptp_qoriq.c
6805 F:      drivers/ptp/ptp_qoriq_debugfs.c
6806 F:      include/linux/fsl/ptp_qoriq.h
6807 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6808
6809 FREESCALE QUAD SPI DRIVER
6810 M:      Han Xu <han.xu@nxp.com>
6811 L:      linux-spi@vger.kernel.org
6812 S:      Maintained
6813 F:      drivers/spi/spi-fsl-qspi.c
6814
6815 FREESCALE QUICC ENGINE LIBRARY
6816 M:      Qiang Zhao <qiang.zhao@nxp.com>
6817 L:      linuxppc-dev@lists.ozlabs.org
6818 S:      Maintained
6819 F:      drivers/soc/fsl/qe/
6820 F:      include/soc/fsl/*qe*.h
6821 F:      include/soc/fsl/*ucc*.h
6822
6823 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6824 M:      Li Yang <leoyang.li@nxp.com>
6825 L:      netdev@vger.kernel.org
6826 L:      linuxppc-dev@lists.ozlabs.org
6827 S:      Maintained
6828 F:      drivers/net/ethernet/freescale/ucc_geth*
6829
6830 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6831 M:      Zhao Qiang <qiang.zhao@nxp.com>
6832 L:      netdev@vger.kernel.org
6833 L:      linuxppc-dev@lists.ozlabs.org
6834 S:      Maintained
6835 F:      drivers/net/wan/fsl_ucc_hdlc*
6836
6837 FREESCALE QUICC ENGINE UCC UART DRIVER
6838 M:      Timur Tabi <timur@kernel.org>
6839 L:      linuxppc-dev@lists.ozlabs.org
6840 S:      Maintained
6841 F:      drivers/tty/serial/ucc_uart.c
6842
6843 FREESCALE SOC DRIVERS
6844 M:      Li Yang <leoyang.li@nxp.com>
6845 L:      linuxppc-dev@lists.ozlabs.org
6846 L:      linux-arm-kernel@lists.infradead.org
6847 S:      Maintained
6848 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6849 F:      Documentation/devicetree/bindings/soc/fsl/
6850 F:      drivers/soc/fsl/
6851 F:      include/linux/fsl/
6852
6853 FREESCALE SOC FS_ENET DRIVER
6854 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6855 L:      linuxppc-dev@lists.ozlabs.org
6856 L:      netdev@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/net/ethernet/freescale/fs_enet/
6859 F:      include/linux/fs_enet_pd.h
6860
6861 FREESCALE SOC SOUND DRIVERS
6862 M:      Timur Tabi <timur@kernel.org>
6863 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6864 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6865 R:      Fabio Estevam <festevam@gmail.com>
6866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6867 L:      linuxppc-dev@lists.ozlabs.org
6868 S:      Maintained
6869 F:      sound/soc/fsl/fsl*
6870 F:      sound/soc/fsl/imx*
6871 F:      sound/soc/fsl/mpc8610_hpcd.c
6872
6873 FREESCALE USB PERIPHERAL DRIVERS
6874 M:      Li Yang <leoyang.li@nxp.com>
6875 L:      linux-usb@vger.kernel.org
6876 L:      linuxppc-dev@lists.ozlabs.org
6877 S:      Maintained
6878 F:      drivers/usb/gadget/udc/fsl*
6879
6880 FREEVXFS FILESYSTEM
6881 M:      Christoph Hellwig <hch@infradead.org>
6882 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6883 S:      Maintained
6884 F:      fs/freevxfs/
6885
6886 FREEZER
6887 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6888 M:      Pavel Machek <pavel@ucw.cz>
6889 L:      linux-pm@vger.kernel.org
6890 S:      Supported
6891 F:      Documentation/power/freezing-of-tasks.rst
6892 F:      include/linux/freezer.h
6893 F:      kernel/freezer.c
6894
6895 FRONTSWAP API
6896 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6897 L:      linux-kernel@vger.kernel.org
6898 S:      Maintained
6899 F:      mm/frontswap.c
6900 F:      include/linux/frontswap.h
6901
6902 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6903 M:      David Howells <dhowells@redhat.com>
6904 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6905 S:      Supported
6906 F:      Documentation/filesystems/caching/
6907 F:      fs/fscache/
6908 F:      include/linux/fscache*.h
6909
6910 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6911 M:      Theodore Y. Ts'o <tytso@mit.edu>
6912 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6913 M:      Eric Biggers <ebiggers@kernel.org>
6914 L:      linux-fscrypt@vger.kernel.org
6915 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6916 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6917 S:      Supported
6918 F:      fs/crypto/
6919 F:      include/linux/fscrypt*.h
6920 F:      include/uapi/linux/fscrypt.h
6921 F:      Documentation/filesystems/fscrypt.rst
6922
6923 FSI SUBSYSTEM
6924 M:      Jeremy Kerr <jk@ozlabs.org>
6925 M:      Joel Stanley <joel@jms.id.au>
6926 R:      Alistar Popple <alistair@popple.id.au>
6927 R:      Eddie James <eajames@linux.ibm.com>
6928 L:      linux-fsi@lists.ozlabs.org
6929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6930 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6931 S:      Supported
6932 F:      drivers/fsi/
6933 F:      include/linux/fsi*.h
6934 F:      include/trace/events/fsi*.h
6935
6936 FSI-ATTACHED I2C DRIVER
6937 M:      Eddie James <eajames@linux.ibm.com>
6938 L:      linux-i2c@vger.kernel.org
6939 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6940 S:      Maintained
6941 F:      drivers/i2c/busses/i2c-fsi.c
6942 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6943
6944 FSI-ATTACHED SPI DRIVER
6945 M:      Eddie James <eajames@linux.ibm.com>
6946 L:      linux-spi@vger.kernel.org
6947 S:      Maintained
6948 F:      drivers/spi/spi-fsi.c
6949 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
6950
6951 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6952 M:      Jan Kara <jack@suse.cz>
6953 R:      Amir Goldstein <amir73il@gmail.com>
6954 L:      linux-fsdevel@vger.kernel.org
6955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
6956 S:      Maintained
6957 F:      fs/notify/
6958 F:      include/linux/fsnotify*.h
6959
6960 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6961 M:      Eric Biggers <ebiggers@kernel.org>
6962 M:      Theodore Y. Ts'o <tytso@mit.edu>
6963 L:      linux-fscrypt@vger.kernel.org
6964 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6965 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6966 S:      Supported
6967 F:      fs/verity/
6968 F:      include/linux/fsverity.h
6969 F:      include/uapi/linux/fsverity.h
6970 F:      Documentation/filesystems/fsverity.rst
6971
6972 FUJITSU LAPTOP EXTRAS
6973 M:      Jonathan Woithe <jwoithe@just42.net>
6974 L:      platform-driver-x86@vger.kernel.org
6975 S:      Maintained
6976 F:      drivers/platform/x86/fujitsu-laptop.c
6977
6978 FUJITSU M-5MO LS CAMERA ISP DRIVER
6979 M:      Kyungmin Park <kyungmin.park@samsung.com>
6980 M:      Heungjun Kim <riverful.kim@samsung.com>
6981 L:      linux-media@vger.kernel.org
6982 S:      Maintained
6983 F:      drivers/media/i2c/m5mols/
6984 F:      include/media/i2c/m5mols.h
6985
6986 FUJITSU TABLET EXTRAS
6987 M:      Robert Gerlach <khnz@gmx.de>
6988 L:      platform-driver-x86@vger.kernel.org
6989 S:      Maintained
6990 F:      drivers/platform/x86/fujitsu-tablet.c
6991
6992 FUSE: FILESYSTEM IN USERSPACE
6993 M:      Miklos Szeredi <miklos@szeredi.hu>
6994 L:      linux-fsdevel@vger.kernel.org
6995 W:      http://fuse.sourceforge.net/
6996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6997 S:      Maintained
6998 F:      fs/fuse/
6999 F:      include/uapi/linux/fuse.h
7000 F:      Documentation/filesystems/fuse.rst
7001
7002 FUTEX SUBSYSTEM
7003 M:      Thomas Gleixner <tglx@linutronix.de>
7004 M:      Ingo Molnar <mingo@redhat.com>
7005 R:      Peter Zijlstra <peterz@infradead.org>
7006 R:      Darren Hart <dvhart@infradead.org>
7007 L:      linux-kernel@vger.kernel.org
7008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7009 S:      Maintained
7010 F:      kernel/futex.c
7011 F:      include/asm-generic/futex.h
7012 F:      include/linux/futex.h
7013 F:      include/uapi/linux/futex.h
7014 F:      tools/testing/selftests/futex/
7015 F:      tools/perf/bench/futex*
7016 F:      Documentation/*futex*
7017
7018 GCC PLUGINS
7019 M:      Kees Cook <keescook@chromium.org>
7020 R:      Emese Revfy <re.emese@gmail.com>
7021 L:      kernel-hardening@lists.openwall.com
7022 S:      Maintained
7023 F:      scripts/gcc-plugins/
7024 F:      scripts/gcc-plugin.sh
7025 F:      scripts/Makefile.gcc-plugins
7026 F:      Documentation/kbuild/gcc-plugins.rst
7027
7028 GASKET DRIVER FRAMEWORK
7029 M:      Rob Springer <rspringer@google.com>
7030 M:      Todd Poynor <toddpoynor@google.com>
7031 M:      Ben Chan <benchan@chromium.org>
7032 S:      Maintained
7033 F:      drivers/staging/gasket/
7034
7035 GCOV BASED KERNEL PROFILING
7036 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7037 S:      Maintained
7038 F:      kernel/gcov/
7039 F:      Documentation/dev-tools/gcov.rst
7040
7041 GDB KERNEL DEBUGGING HELPER SCRIPTS
7042 M:      Jan Kiszka <jan.kiszka@siemens.com>
7043 M:      Kieran Bingham <kbingham@kernel.org>
7044 S:      Supported
7045 F:      scripts/gdb/
7046
7047 GDT SCSI DISK ARRAY CONTROLLER DRIVER
7048 M:      Achim Leubner <achim_leubner@adaptec.com>
7049 L:      linux-scsi@vger.kernel.org
7050 W:      http://www.icp-vortex.com/
7051 S:      Supported
7052 F:      drivers/scsi/gdt*
7053
7054 GEMTEK FM RADIO RECEIVER DRIVER
7055 M:      Hans Verkuil <hverkuil@xs4all.nl>
7056 L:      linux-media@vger.kernel.org
7057 T:      git git://linuxtv.org/media_tree.git
7058 W:      https://linuxtv.org
7059 S:      Maintained
7060 F:      drivers/media/radio/radio-gemtek*
7061
7062 GENERIC ARCHITECTURE TOPOLOGY
7063 M:      Sudeep Holla <sudeep.holla@arm.com>
7064 L:      linux-kernel@vger.kernel.org
7065 S:      Maintained
7066 F:      drivers/base/arch_topology.c
7067 F:      include/linux/arch_topology.h
7068
7069 GENERIC GPIO I2C DRIVER
7070 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7071 S:      Supported
7072 F:      drivers/i2c/busses/i2c-gpio.c
7073 F:      include/linux/platform_data/i2c-gpio.h
7074
7075 GENERIC GPIO I2C MULTIPLEXER DRIVER
7076 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7077 L:      linux-i2c@vger.kernel.org
7078 S:      Supported
7079 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7080 F:      include/linux/platform_data/i2c-mux-gpio.h
7081 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7082
7083 GENERIC HDLC (WAN) DRIVERS
7084 M:      Krzysztof Halasa <khc@pm.waw.pl>
7085 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7086 S:      Maintained
7087 F:      drivers/net/wan/c101.c
7088 F:      drivers/net/wan/hd6457*
7089 F:      drivers/net/wan/hdlc*
7090 F:      drivers/net/wan/n2.c
7091 F:      drivers/net/wan/pc300too.c
7092 F:      drivers/net/wan/pci200syn.c
7093 F:      drivers/net/wan/wanxl*
7094
7095 GENERIC INCLUDE/ASM HEADER FILES
7096 M:      Arnd Bergmann <arnd@arndb.de>
7097 L:      linux-arch@vger.kernel.org
7098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7099 S:      Maintained
7100 F:      include/asm-generic/
7101 F:      include/uapi/asm-generic/
7102
7103 GENERIC PHY FRAMEWORK
7104 M:      Kishon Vijay Abraham I <kishon@ti.com>
7105 L:      linux-kernel@vger.kernel.org
7106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
7107 S:      Supported
7108 F:      drivers/phy/
7109 F:      include/linux/phy/
7110 F:      Documentation/devicetree/bindings/phy/
7111
7112 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7113 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7114 S:      Supported
7115 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7116
7117 GENERIC PM DOMAINS
7118 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7119 M:      Kevin Hilman <khilman@kernel.org>
7120 M:      Ulf Hansson <ulf.hansson@linaro.org>
7121 L:      linux-pm@vger.kernel.org
7122 S:      Supported
7123 F:      drivers/base/power/domain*.c
7124 F:      include/linux/pm_domain.h
7125 F:      Documentation/devicetree/bindings/power/power?domain*
7126
7127 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7128 M:      Eugen Hristev <eugen.hristev@microchip.com>
7129 L:      linux-input@vger.kernel.org
7130 S:      Maintained
7131 F:      drivers/input/touchscreen/resistive-adc-touch.c
7132
7133 GENERIC UIO DRIVER FOR PCI DEVICES
7134 M:      "Michael S. Tsirkin" <mst@redhat.com>
7135 L:      kvm@vger.kernel.org
7136 S:      Supported
7137 F:      drivers/uio/uio_pci_generic.c
7138
7139 GENERIC VDSO LIBRARY
7140 M:      Andy Lutomirski <luto@kernel.org>
7141 M:      Thomas Gleixner <tglx@linutronix.de>
7142 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7143 L:      linux-kernel@vger.kernel.org
7144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7145 S:      Maintained
7146 F:      lib/vdso/
7147 F:      kernel/time/vsyscall.c
7148 F:      include/vdso/
7149 F:      include/asm-generic/vdso/vsyscall.h
7150
7151 GENWQE (IBM Generic Workqueue Card)
7152 M:      Frank Haverkamp <haver@linux.ibm.com>
7153 S:      Supported
7154 F:      drivers/misc/genwqe/
7155
7156 GET_MAINTAINER SCRIPT
7157 M:      Joe Perches <joe@perches.com>
7158 S:      Maintained
7159 F:      scripts/get_maintainer.pl
7160
7161 GFS2 FILE SYSTEM
7162 M:      Bob Peterson <rpeterso@redhat.com>
7163 M:      Andreas Gruenbacher <agruenba@redhat.com>
7164 L:      cluster-devel@redhat.com
7165 W:      http://sources.redhat.com/cluster/
7166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7167 S:      Supported
7168 F:      Documentation/filesystems/gfs2*.txt
7169 F:      fs/gfs2/
7170 F:      include/uapi/linux/gfs2_ondisk.h
7171
7172 GNSS SUBSYSTEM
7173 M:      Johan Hovold <johan@kernel.org>
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7175 S:      Maintained
7176 F:      Documentation/ABI/testing/sysfs-class-gnss
7177 F:      Documentation/devicetree/bindings/gnss/
7178 F:      drivers/gnss/
7179 F:      include/linux/gnss.h
7180
7181 GO7007 MPEG CODEC
7182 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7183 L:      linux-media@vger.kernel.org
7184 S:      Maintained
7185 F:      drivers/media/usb/go7007/
7186
7187 GOODIX TOUCHSCREEN
7188 M:      Bastien Nocera <hadess@hadess.net>
7189 L:      linux-input@vger.kernel.org
7190 S:      Maintained
7191 F:      drivers/input/touchscreen/goodix.c
7192
7193 GOOGLE ETHERNET DRIVERS
7194 M:      Catherine Sullivan <csully@google.com>
7195 R:      Sagi Shahar <sagis@google.com>
7196 R:      Jon Olson <jonolson@google.com>
7197 L:      netdev@vger.kernel.org
7198 S:      Supported
7199 F:      Documentation/networking/device_drivers/google/gve.rst
7200 F:      drivers/net/ethernet/google
7201
7202 GPD POCKET FAN DRIVER
7203 M:      Hans de Goede <hdegoede@redhat.com>
7204 L:      platform-driver-x86@vger.kernel.org
7205 S:      Maintained
7206 F:      drivers/platform/x86/gpd-pocket-fan.c
7207
7208 GPIO ACPI SUPPORT
7209 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7210 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7211 L:      linux-gpio@vger.kernel.org
7212 L:      linux-acpi@vger.kernel.org
7213 S:      Maintained
7214 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7215 F:      drivers/gpio/gpiolib-acpi.c
7216 F:      drivers/gpio/gpiolib-acpi.h
7217
7218 GPIO IR Transmitter
7219 M:      Sean Young <sean@mess.org>
7220 L:      linux-media@vger.kernel.org
7221 S:      Maintained
7222 F:      drivers/media/rc/gpio-ir-tx.c
7223
7224 GPIO MOCKUP DRIVER
7225 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7226 L:      linux-gpio@vger.kernel.org
7227 S:      Maintained
7228 F:      drivers/gpio/gpio-mockup.c
7229 F:      tools/testing/selftests/gpio/
7230
7231 GPIO SUBSYSTEM
7232 M:      Linus Walleij <linus.walleij@linaro.org>
7233 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7234 L:      linux-gpio@vger.kernel.org
7235 S:      Maintained
7236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7237 F:      Documentation/ABI/obsolete/sysfs-gpio
7238 F:      Documentation/ABI/testing/gpio-cdev
7239 F:      Documentation/admin-guide/gpio/
7240 F:      Documentation/devicetree/bindings/gpio/
7241 F:      Documentation/driver-api/gpio/
7242 F:      drivers/gpio/
7243 F:      include/asm-generic/gpio.h
7244 F:      include/linux/gpio/
7245 F:      include/linux/gpio.h
7246 F:      include/linux/of_gpio.h
7247 F:      include/uapi/linux/gpio.h
7248 F:      tools/gpio/
7249
7250 GRE DEMULTIPLEXER DRIVER
7251 M:      Dmitry Kozlov <xeb@mail.ru>
7252 L:      netdev@vger.kernel.org
7253 S:      Maintained
7254 F:      net/ipv4/gre_demux.c
7255 F:      net/ipv4/gre_offload.c
7256 F:      include/net/gre.h
7257
7258 GRETH 10/100/1G Ethernet MAC device driver
7259 M:      Andreas Larsson <andreas@gaisler.com>
7260 L:      netdev@vger.kernel.org
7261 S:      Maintained
7262 F:      drivers/net/ethernet/aeroflex/
7263
7264 GREYBUS AUDIO PROTOCOLS DRIVERS
7265 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7266 M:      Mark Greer <mgreer@animalcreek.com>
7267 S:      Maintained
7268 F:      drivers/staging/greybus/audio_apbridgea.c
7269 F:      drivers/staging/greybus/audio_apbridgea.h
7270 F:      drivers/staging/greybus/audio_codec.c
7271 F:      drivers/staging/greybus/audio_codec.h
7272 F:      drivers/staging/greybus/audio_gb.c
7273 F:      drivers/staging/greybus/audio_manager.c
7274 F:      drivers/staging/greybus/audio_manager.h
7275 F:      drivers/staging/greybus/audio_manager_module.c
7276 F:      drivers/staging/greybus/audio_manager_private.h
7277 F:      drivers/staging/greybus/audio_manager_sysfs.c
7278 F:      drivers/staging/greybus/audio_module.c
7279 F:      drivers/staging/greybus/audio_topology.c
7280
7281 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7282 M:      Viresh Kumar <vireshk@kernel.org>
7283 S:      Maintained
7284 F:      drivers/staging/greybus/authentication.c
7285 F:      drivers/staging/greybus/bootrom.c
7286 F:      drivers/staging/greybus/firmware.h
7287 F:      drivers/staging/greybus/fw-core.c
7288 F:      drivers/staging/greybus/fw-download.c
7289 F:      drivers/staging/greybus/fw-management.c
7290 F:      drivers/staging/greybus/greybus_authentication.h
7291 F:      drivers/staging/greybus/greybus_firmware.h
7292 F:      drivers/staging/greybus/hid.c
7293 F:      drivers/staging/greybus/i2c.c
7294 F:      drivers/staging/greybus/spi.c
7295 F:      drivers/staging/greybus/spilib.c
7296 F:      drivers/staging/greybus/spilib.h
7297
7298 GREYBUS LOOPBACK DRIVER
7299 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7300 S:      Maintained
7301 F:      drivers/staging/greybus/loopback.c
7302
7303 GREYBUS PLATFORM DRIVERS
7304 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7305 S:      Maintained
7306 F:      drivers/staging/greybus/arche-platform.c
7307 F:      drivers/staging/greybus/arche-apb-ctrl.c
7308 F:      drivers/staging/greybus/arche_platform.h
7309
7310 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7311 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7312 S:      Maintained
7313 F:      drivers/staging/greybus/sdio.c
7314 F:      drivers/staging/greybus/light.c
7315 F:      drivers/staging/greybus/gpio.c
7316 F:      drivers/staging/greybus/power_supply.c
7317 F:      drivers/staging/greybus/spi.c
7318 F:      drivers/staging/greybus/spilib.c
7319
7320 GREYBUS SUBSYSTEM
7321 M:      Johan Hovold <johan@kernel.org>
7322 M:      Alex Elder <elder@kernel.org>
7323 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7324 S:      Maintained
7325 F:      drivers/staging/greybus/
7326 F:      drivers/greybus/
7327 F:      include/linux/greybus.h
7328 F:      include/linux/greybus/
7329 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7330
7331 GREYBUS UART PROTOCOLS DRIVERS
7332 M:      David Lin <dtwlin@gmail.com>
7333 S:      Maintained
7334 F:      drivers/staging/greybus/uart.c
7335 F:      drivers/staging/greybus/log.c
7336
7337 GS1662 VIDEO SERIALIZER
7338 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7339 L:      linux-media@vger.kernel.org
7340 T:      git git://linuxtv.org/media_tree.git
7341 S:      Maintained
7342 F:      drivers/media/spi/gs1662.c
7343
7344 GSPCA FINEPIX SUBDRIVER
7345 M:      Frank Zago <frank@zago.net>
7346 L:      linux-media@vger.kernel.org
7347 T:      git git://linuxtv.org/media_tree.git
7348 S:      Maintained
7349 F:      drivers/media/usb/gspca/finepix.c
7350
7351 GSPCA GL860 SUBDRIVER
7352 M:      Olivier Lorin <o.lorin@laposte.net>
7353 L:      linux-media@vger.kernel.org
7354 T:      git git://linuxtv.org/media_tree.git
7355 S:      Maintained
7356 F:      drivers/media/usb/gspca/gl860/
7357
7358 GSPCA M5602 SUBDRIVER
7359 M:      Erik Andren <erik.andren@gmail.com>
7360 L:      linux-media@vger.kernel.org
7361 T:      git git://linuxtv.org/media_tree.git
7362 S:      Maintained
7363 F:      drivers/media/usb/gspca/m5602/
7364
7365 GSPCA PAC207 SONIXB SUBDRIVER
7366 M:      Hans Verkuil <hverkuil@xs4all.nl>
7367 L:      linux-media@vger.kernel.org
7368 T:      git git://linuxtv.org/media_tree.git
7369 S:      Odd Fixes
7370 F:      drivers/media/usb/gspca/pac207.c
7371
7372 GSPCA SN9C20X SUBDRIVER
7373 M:      Brian Johnson <brijohn@gmail.com>
7374 L:      linux-media@vger.kernel.org
7375 T:      git git://linuxtv.org/media_tree.git
7376 S:      Maintained
7377 F:      drivers/media/usb/gspca/sn9c20x.c
7378
7379 GSPCA T613 SUBDRIVER
7380 M:      Leandro Costantino <lcostantino@gmail.com>
7381 L:      linux-media@vger.kernel.org
7382 T:      git git://linuxtv.org/media_tree.git
7383 S:      Maintained
7384 F:      drivers/media/usb/gspca/t613.c
7385
7386 GSPCA USB WEBCAM DRIVER
7387 M:      Hans Verkuil <hverkuil@xs4all.nl>
7388 L:      linux-media@vger.kernel.org
7389 T:      git git://linuxtv.org/media_tree.git
7390 S:      Odd Fixes
7391 F:      drivers/media/usb/gspca/
7392
7393 GTP (GPRS Tunneling Protocol)
7394 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7395 M:      Harald Welte <laforge@gnumonks.org>
7396 L:      osmocom-net-gprs@lists.osmocom.org
7397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7398 S:      Maintained
7399 F:      drivers/net/gtp.c
7400
7401 GUID PARTITION TABLE (GPT)
7402 M:      Davidlohr Bueso <dave@stgolabs.net>
7403 L:      linux-efi@vger.kernel.org
7404 S:      Maintained
7405 F:      block/partitions/efi.*
7406
7407 H8/300 ARCHITECTURE
7408 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7409 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7410 W:      http://uclinux-h8.sourceforge.jp
7411 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7412 S:      Maintained
7413 F:      arch/h8300/
7414 F:      drivers/clocksource/h8300_*.c
7415 F:      drivers/clk/h8300/
7416 F:      drivers/irqchip/irq-renesas-h8*.c
7417
7418 HABANALABS PCI DRIVER
7419 M:      Oded Gabbay <oded.gabbay@gmail.com>
7420 T:      git https://github.com/HabanaAI/linux.git
7421 S:      Supported
7422 F:      drivers/misc/habanalabs/
7423 F:      include/uapi/misc/habanalabs.h
7424 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7425 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7426
7427 HACKRF MEDIA DRIVER
7428 M:      Antti Palosaari <crope@iki.fi>
7429 L:      linux-media@vger.kernel.org
7430 W:      https://linuxtv.org
7431 W:      http://palosaari.fi/linux/
7432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7433 T:      git git://linuxtv.org/anttip/media_tree.git
7434 S:      Maintained
7435 F:      drivers/media/usb/hackrf/
7436
7437 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7438 M:      Frank Seidel <frank@f-seidel.de>
7439 L:      platform-driver-x86@vger.kernel.org
7440 S:      Maintained
7441 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7442 F:      drivers/platform/x86/hdaps.c
7443
7444 HARDWARE MONITORING
7445 M:      Jean Delvare <jdelvare@suse.com>
7446 M:      Guenter Roeck <linux@roeck-us.net>
7447 L:      linux-hwmon@vger.kernel.org
7448 W:      http://hwmon.wiki.kernel.org/
7449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7450 S:      Maintained
7451 F:      Documentation/devicetree/bindings/hwmon/
7452 F:      Documentation/hwmon/
7453 F:      drivers/hwmon/
7454 F:      include/linux/hwmon*.h
7455 F:      include/trace/events/hwmon*.h
7456
7457 HARDWARE RANDOM NUMBER GENERATOR CORE
7458 M:      Matt Mackall <mpm@selenic.com>
7459 M:      Herbert Xu <herbert@gondor.apana.org.au>
7460 L:      linux-crypto@vger.kernel.org
7461 S:      Odd fixes
7462 F:      Documentation/devicetree/bindings/rng/
7463 F:      Documentation/admin-guide/hw_random.rst
7464 F:      drivers/char/hw_random/
7465 F:      include/linux/hw_random.h
7466
7467 HARDWARE TRACING FACILITIES
7468 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7469 S:      Maintained
7470 F:      drivers/hwtracing/
7471
7472 HARDWARE SPINLOCK CORE
7473 M:      Ohad Ben-Cohen <ohad@wizery.com>
7474 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7475 R:      Baolin Wang <baolin.wang7@gmail.com>
7476 L:      linux-remoteproc@vger.kernel.org
7477 S:      Maintained
7478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
7479 F:      Documentation/devicetree/bindings/hwlock/
7480 F:      Documentation/hwspinlock.txt
7481 F:      drivers/hwspinlock/
7482 F:      include/linux/hwspinlock.h
7483
7484 HARMONY SOUND DRIVER
7485 L:      linux-parisc@vger.kernel.org
7486 S:      Maintained
7487 F:      sound/parisc/harmony.*
7488
7489 HDPVR USB VIDEO ENCODER DRIVER
7490 M:      Hans Verkuil <hverkuil@xs4all.nl>
7491 L:      linux-media@vger.kernel.org
7492 T:      git git://linuxtv.org/media_tree.git
7493 W:      https://linuxtv.org
7494 S:      Odd Fixes
7495 F:      drivers/media/usb/hdpvr/
7496
7497 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7498 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7499 S:      Supported
7500 F:      Documentation/watchdog/hpwdt.rst
7501 F:      drivers/watchdog/hpwdt.c
7502
7503 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7504 M:      Don Brace <don.brace@microsemi.com>
7505 L:      esc.storagedev@microsemi.com
7506 L:      linux-scsi@vger.kernel.org
7507 S:      Supported
7508 F:      Documentation/scsi/hpsa.rst
7509 F:      drivers/scsi/hpsa*.[ch]
7510 F:      include/linux/cciss*.h
7511 F:      include/uapi/linux/cciss*.h
7512
7513 HFI1 DRIVER
7514 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7515 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7516 L:      linux-rdma@vger.kernel.org
7517 S:      Supported
7518 F:      drivers/infiniband/hw/hfi1
7519
7520 HFS FILESYSTEM
7521 L:      linux-fsdevel@vger.kernel.org
7522 S:      Orphan
7523 F:      Documentation/filesystems/hfs.rst
7524 F:      fs/hfs/
7525
7526 HFSPLUS FILESYSTEM
7527 L:      linux-fsdevel@vger.kernel.org
7528 S:      Orphan
7529 F:      Documentation/filesystems/hfsplus.rst
7530 F:      fs/hfsplus/
7531
7532 HGA FRAMEBUFFER DRIVER
7533 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7534 L:      linux-nvidia@lists.surfsouth.com
7535 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7536 S:      Maintained
7537 F:      drivers/video/fbdev/hgafb.c
7538
7539 HIBERNATION (aka Software Suspend, aka swsusp)
7540 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7541 M:      Pavel Machek <pavel@ucw.cz>
7542 L:      linux-pm@vger.kernel.org
7543 B:      https://bugzilla.kernel.org
7544 S:      Supported
7545 F:      arch/x86/power/
7546 F:      drivers/base/power/
7547 F:      kernel/power/
7548 F:      include/linux/suspend.h
7549 F:      include/linux/freezer.h
7550 F:      include/linux/pm.h
7551 F:      arch/*/include/asm/suspend*.h
7552
7553 HID CORE LAYER
7554 M:      Jiri Kosina <jikos@kernel.org>
7555 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7556 L:      linux-input@vger.kernel.org
7557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7558 S:      Maintained
7559 F:      drivers/hid/
7560 F:      include/linux/hid*
7561 F:      include/uapi/linux/hid*
7562
7563 HID SENSOR HUB DRIVERS
7564 M:      Jiri Kosina <jikos@kernel.org>
7565 M:      Jonathan Cameron <jic23@kernel.org>
7566 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7567 L:      linux-input@vger.kernel.org
7568 L:      linux-iio@vger.kernel.org
7569 S:      Maintained
7570 F:      Documentation/hid/hid-sensor*
7571 F:      drivers/hid/hid-sensor-*
7572 F:      drivers/iio/*/hid-*
7573 F:      include/linux/hid-sensor-*
7574
7575 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7576 M:      Thomas Gleixner <tglx@linutronix.de>
7577 L:      linux-kernel@vger.kernel.org
7578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7579 S:      Maintained
7580 F:      Documentation/timers/
7581 F:      kernel/time/hrtimer.c
7582 F:      kernel/time/clockevents.c
7583 F:      kernel/time/timer_*.c
7584 F:      include/linux/clockchips.h
7585 F:      include/linux/hrtimer.h
7586
7587 HIGH-SPEED SCC DRIVER FOR AX.25
7588 L:      linux-hams@vger.kernel.org
7589 S:      Orphan
7590 F:      drivers/net/hamradio/dmascc.c
7591 F:      drivers/net/hamradio/scc.c
7592
7593 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7594 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7595 W:      http://www.highpoint-tech.com
7596 S:      Supported
7597 F:      Documentation/scsi/hptiop.rst
7598 F:      drivers/scsi/hptiop.c
7599
7600 HIPPI
7601 M:      Jes Sorensen <jes@trained-monkey.org>
7602 L:      linux-hippi@sunsite.dk
7603 S:      Maintained
7604 F:      include/linux/hippidevice.h
7605 F:      include/uapi/linux/if_hippi.h
7606 F:      net/802/hippi.c
7607 F:      drivers/net/hippi/
7608
7609 HISILICON DMA DRIVER
7610 M:      Zhou Wang <wangzhou1@hisilicon.com>
7611 L:      dmaengine@vger.kernel.org
7612 S:      Maintained
7613 F:      drivers/dma/hisi_dma.c
7614
7615 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
7616 M:      Zaibo Xu <xuzaibo@huawei.com>
7617 L:      linux-crypto@vger.kernel.org
7618 S:      Maintained
7619 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
7620 F:      drivers/crypto/hisilicon/sec2/sec_main.c
7621 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
7622 F:      drivers/crypto/hisilicon/sec2/sec.h
7623 F:      Documentation/ABI/testing/debugfs-hisi-sec
7624
7625 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
7626 M:      Zaibo Xu <xuzaibo@huawei.com>
7627 L:      linux-crypto@vger.kernel.org
7628 S:      Maintained
7629 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
7630 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
7631 F:      drivers/crypto/hisilicon/hpre/hpre.h
7632 F:      Documentation/ABI/testing/debugfs-hisi-hpre
7633
7634 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7635 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7636 M:      Salil Mehta <salil.mehta@huawei.com>
7637 L:      netdev@vger.kernel.org
7638 W:      http://www.hisilicon.com
7639 S:      Maintained
7640 F:      drivers/net/ethernet/hisilicon/hns3/
7641
7642 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
7643 M:      Zaibo Xu <xuzaibo@huawei.com>
7644 S:      Maintained
7645 F:      drivers/char/hw_random/hisi-trng-v2.c
7646
7647 HISILICON LPC BUS DRIVER
7648 M:      john.garry@huawei.com
7649 W:      http://www.hisilicon.com
7650 S:      Maintained
7651 F:      drivers/bus/hisi_lpc.c
7652 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7653
7654 HISILICON NETWORK SUBSYSTEM DRIVER
7655 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7656 M:      Salil Mehta <salil.mehta@huawei.com>
7657 L:      netdev@vger.kernel.org
7658 W:      http://www.hisilicon.com
7659 S:      Maintained
7660 F:      drivers/net/ethernet/hisilicon/
7661 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7662
7663 HISILICON PMU DRIVER
7664 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7665 W:      http://www.hisilicon.com
7666 S:      Supported
7667 F:      drivers/perf/hisilicon
7668 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7669
7670 HISILICON ROCE DRIVER
7671 M:      Lijun Ou <oulijun@huawei.com>
7672 M:      Wei Hu(Xavier) <huwei87@hisilicon.com>
7673 M:      Weihang Li <liweihang@huawei.com>
7674 L:      linux-rdma@vger.kernel.org
7675 S:      Maintained
7676 F:      drivers/infiniband/hw/hns/
7677 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7678
7679 HISILICON SAS Controller
7680 M:      John Garry <john.garry@huawei.com>
7681 W:      http://www.hisilicon.com
7682 S:      Supported
7683 F:      drivers/scsi/hisi_sas/
7684 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7685
7686 HISILICON V3XX SPI NOR FLASH Controller Driver
7687 M:      John Garry <john.garry@huawei.com>
7688 W:      http://www.hisilicon.com
7689 S:      Maintained
7690 F:      drivers/spi/spi-hisi-sfc-v3xx.c
7691
7692 HISILICON QM AND ZIP Controller DRIVER
7693 M:      Zhou Wang <wangzhou1@hisilicon.com>
7694 L:      linux-crypto@vger.kernel.org
7695 S:      Maintained
7696 F:      drivers/crypto/hisilicon/qm.c
7697 F:      drivers/crypto/hisilicon/qm.h
7698 F:      drivers/crypto/hisilicon/sgl.c
7699 F:      drivers/crypto/hisilicon/zip/
7700 F:      Documentation/ABI/testing/debugfs-hisi-zip
7701
7702 HMM - Heterogeneous Memory Management
7703 M:      Jérôme Glisse <jglisse@redhat.com>
7704 L:      linux-mm@kvack.org
7705 S:      Maintained
7706 F:      mm/hmm*
7707 F:      include/linux/hmm*
7708 F:      Documentation/vm/hmm.rst
7709
7710 HOST AP DRIVER
7711 M:      Jouni Malinen <j@w1.fi>
7712 L:      linux-wireless@vger.kernel.org
7713 W:      http://w1.fi/hostap-driver.html
7714 S:      Obsolete
7715 F:      drivers/net/wireless/intersil/hostap/
7716
7717 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7718 L:      platform-driver-x86@vger.kernel.org
7719 S:      Orphan
7720 F:      drivers/platform/x86/tc1100-wmi.c
7721
7722 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7723 M:      Jaroslav Kysela <perex@perex.cz>
7724 S:      Obsolete
7725 F:      drivers/staging/hp/hp100.*
7726
7727 HPET:   High Precision Event Timers driver
7728 M:      Clemens Ladisch <clemens@ladisch.de>
7729 S:      Maintained
7730 F:      Documentation/timers/hpet.rst
7731 F:      drivers/char/hpet.c
7732 F:      include/linux/hpet.h
7733 F:      include/uapi/linux/hpet.h
7734
7735 HPET:   x86
7736 S:      Orphan
7737 F:      arch/x86/kernel/hpet.c
7738 F:      arch/x86/include/asm/hpet.h
7739
7740 HPFS FILESYSTEM
7741 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7742 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7743 S:      Maintained
7744 F:      fs/hpfs/
7745
7746 HSI SUBSYSTEM
7747 M:      Sebastian Reichel <sre@kernel.org>
7748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7749 S:      Maintained
7750 F:      Documentation/ABI/testing/sysfs-bus-hsi
7751 F:      Documentation/driver-api/hsi.rst
7752 F:      drivers/hsi/
7753 F:      include/linux/hsi/
7754 F:      include/uapi/linux/hsi/
7755
7756 HSO 3G MODEM DRIVER
7757 L:      linux-usb@vger.kernel.org
7758 S:      Orphan
7759 F:      drivers/net/usb/hso.c
7760
7761 HSR NETWORK PROTOCOL
7762 L:      netdev@vger.kernel.org
7763 S:      Orphan
7764 F:      net/hsr/
7765
7766 HT16K33 LED CONTROLLER DRIVER
7767 M:      Robin van der Gracht <robin@protonic.nl>
7768 S:      Maintained
7769 F:      drivers/auxdisplay/ht16k33.c
7770 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7771
7772 HTCPEN TOUCHSCREEN DRIVER
7773 M:      Pau Oliva Fora <pof@eslack.org>
7774 L:      linux-input@vger.kernel.org
7775 S:      Maintained
7776 F:      drivers/input/touchscreen/htcpen.c
7777
7778 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7779 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7780 L:      linux-iio@vger.kernel.org
7781 W:      http://www.st.com/
7782 S:      Maintained
7783 F:      drivers/iio/humidity/hts221*
7784 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7785
7786 HUAWEI ETHERNET DRIVER
7787 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7788 L:      netdev@vger.kernel.org
7789 S:      Supported
7790 F:      Documentation/networking/hinic.txt
7791 F:      drivers/net/ethernet/huawei/hinic/
7792
7793 HUGETLB FILESYSTEM
7794 M:      Mike Kravetz <mike.kravetz@oracle.com>
7795 L:      linux-mm@kvack.org
7796 S:      Maintained
7797 F:      fs/hugetlbfs/
7798 F:      mm/hugetlb.c
7799 F:      include/linux/hugetlb.h
7800 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7801 F:      Documentation/vm/hugetlbfs_reserv.rst
7802 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7803
7804 HVA ST MEDIA DRIVER
7805 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7806 L:      linux-media@vger.kernel.org
7807 T:      git git://linuxtv.org/media_tree.git
7808 W:      https://linuxtv.org
7809 S:      Supported
7810 F:      drivers/media/platform/sti/hva
7811
7812 HWPOISON MEMORY FAILURE HANDLING
7813 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7814 L:      linux-mm@kvack.org
7815 S:      Maintained
7816 F:      mm/memory-failure.c
7817 F:      mm/hwpoison-inject.c
7818
7819 HYGON PROCESSOR SUPPORT
7820 M:      Pu Wen <puwen@hygon.cn>
7821 L:      linux-kernel@vger.kernel.org
7822 S:      Maintained
7823 F:      arch/x86/kernel/cpu/hygon.c
7824
7825 HYNIX HI556 SENSOR DRIVER
7826 M:      Shawn Tu <shawnx.tu@intel.com>
7827 L:      linux-media@vger.kernel.org
7828 T:      git git://linuxtv.org/media_tree.git
7829 S:      Maintained
7830 F:      drivers/media/i2c/hi556.c
7831
7832 Hyper-V CORE AND DRIVERS
7833 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7834 M:      Haiyang Zhang <haiyangz@microsoft.com>
7835 M:      Stephen Hemminger <sthemmin@microsoft.com>
7836 M:      Wei Liu <wei.liu@kernel.org>
7837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7838 L:      linux-hyperv@vger.kernel.org
7839 S:      Supported
7840 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7841 F:      arch/x86/include/asm/mshyperv.h
7842 F:      arch/x86/include/asm/trace/hyperv.h
7843 F:      arch/x86/include/asm/hyperv-tlfs.h
7844 F:      arch/x86/kernel/cpu/mshyperv.c
7845 F:      arch/x86/hyperv
7846 F:      drivers/clocksource/hyperv_timer.c
7847 F:      drivers/hid/hid-hyperv.c
7848 F:      drivers/hv/
7849 F:      drivers/input/serio/hyperv-keyboard.c
7850 F:      drivers/pci/controller/pci-hyperv.c
7851 F:      drivers/pci/controller/pci-hyperv-intf.c
7852 F:      drivers/net/hyperv/
7853 F:      drivers/scsi/storvsc_drv.c
7854 F:      drivers/uio/uio_hv_generic.c
7855 F:      drivers/video/fbdev/hyperv_fb.c
7856 F:      drivers/iommu/hyperv-iommu.c
7857 F:      net/vmw_vsock/hyperv_transport.c
7858 F:      include/clocksource/hyperv_timer.h
7859 F:      include/linux/hyperv.h
7860 F:      include/uapi/linux/hyperv.h
7861 F:      include/asm-generic/mshyperv.h
7862 F:      tools/hv/
7863 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7864 F:      Documentation/ABI/testing/debugfs-hyperv
7865
7866 HYPERBUS SUPPORT
7867 M:      Vignesh Raghavendra <vigneshr@ti.com>
7868 L:      linux-mtd@lists.infradead.org
7869 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
7871 C:      irc://irc.oftc.net/mtd
7872 S:      Supported
7873 F:      drivers/mtd/hyperbus/
7874 F:      include/linux/mtd/hyperbus.h
7875 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7876 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7877
7878 HYPERVISOR VIRTUAL CONSOLE DRIVER
7879 L:      linuxppc-dev@lists.ozlabs.org
7880 S:      Odd Fixes
7881 F:      drivers/tty/hvc/
7882
7883 I2C ACPI SUPPORT
7884 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7885 L:      linux-i2c@vger.kernel.org
7886 L:      linux-acpi@vger.kernel.org
7887 S:      Maintained
7888 F:      drivers/i2c/i2c-core-acpi.c
7889
7890 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7891 M:      Ajay Gupta <ajayg@nvidia.com>
7892 L:      linux-i2c@vger.kernel.org
7893 S:      Maintained
7894 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7895 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7896
7897 I2C MUXES
7898 M:      Peter Rosin <peda@axentia.se>
7899 L:      linux-i2c@vger.kernel.org
7900 S:      Maintained
7901 F:      Documentation/i2c/i2c-topology.rst
7902 F:      Documentation/i2c/muxes/
7903 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7904 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7905 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7906 F:      drivers/i2c/i2c-mux.c
7907 F:      drivers/i2c/muxes/
7908 F:      include/linux/i2c-mux.h
7909
7910 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7911 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7912 L:      linux-i2c@vger.kernel.org
7913 S:      Maintained
7914 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7915 F:      drivers/i2c/busses/i2c-mv64xxx.c
7916
7917 I2C OVER PARALLEL PORT
7918 M:      Jean Delvare <jdelvare@suse.com>
7919 L:      linux-i2c@vger.kernel.org
7920 S:      Maintained
7921 F:      Documentation/i2c/busses/i2c-parport.rst
7922 F:      drivers/i2c/busses/i2c-parport.c
7923
7924 I2C SUBSYSTEM
7925 M:      Wolfram Sang <wsa@the-dreams.de>
7926 L:      linux-i2c@vger.kernel.org
7927 W:      https://i2c.wiki.kernel.org/
7928 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7930 S:      Maintained
7931 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7932 F:      Documentation/i2c/
7933 F:      drivers/i2c/*
7934 F:      include/linux/i2c.h
7935 F:      include/linux/i2c-dev.h
7936 F:      include/linux/i2c-smbus.h
7937 F:      include/uapi/linux/i2c.h
7938 F:      include/uapi/linux/i2c-*.h
7939
7940 I2C SUBSYSTEM HOST DRIVERS
7941 L:      linux-i2c@vger.kernel.org
7942 W:      https://i2c.wiki.kernel.org/
7943 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7945 S:      Odd Fixes
7946 F:      Documentation/devicetree/bindings/i2c/
7947 F:      drivers/i2c/algos/
7948 F:      drivers/i2c/busses/
7949
7950 I2C-TAOS-EVM DRIVER
7951 M:      Jean Delvare <jdelvare@suse.com>
7952 L:      linux-i2c@vger.kernel.org
7953 S:      Maintained
7954 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7955 F:      drivers/i2c/busses/i2c-taos-evm.c
7956
7957 I2C-TINY-USB DRIVER
7958 M:      Till Harbaum <till@harbaum.org>
7959 L:      linux-i2c@vger.kernel.org
7960 W:      http://www.harbaum.org/till/i2c_tiny_usb
7961 S:      Maintained
7962 F:      drivers/i2c/busses/i2c-tiny-usb.c
7963
7964 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7965 M:      Jean Delvare <jdelvare@suse.com>
7966 L:      linux-i2c@vger.kernel.org
7967 S:      Maintained
7968 F:      Documentation/i2c/busses/i2c-ali1535.rst
7969 F:      Documentation/i2c/busses/i2c-ali1563.rst
7970 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7971 F:      Documentation/i2c/busses/i2c-amd756.rst
7972 F:      Documentation/i2c/busses/i2c-amd8111.rst
7973 F:      Documentation/i2c/busses/i2c-i801.rst
7974 F:      Documentation/i2c/busses/i2c-nforce2.rst
7975 F:      Documentation/i2c/busses/i2c-piix4.rst
7976 F:      Documentation/i2c/busses/i2c-sis5595.rst
7977 F:      Documentation/i2c/busses/i2c-sis630.rst
7978 F:      Documentation/i2c/busses/i2c-sis96x.rst
7979 F:      Documentation/i2c/busses/i2c-via.rst
7980 F:      Documentation/i2c/busses/i2c-viapro.rst
7981 F:      drivers/i2c/busses/i2c-ali1535.c
7982 F:      drivers/i2c/busses/i2c-ali1563.c
7983 F:      drivers/i2c/busses/i2c-ali15x3.c
7984 F:      drivers/i2c/busses/i2c-amd756.c
7985 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7986 F:      drivers/i2c/busses/i2c-amd8111.c
7987 F:      drivers/i2c/busses/i2c-i801.c
7988 F:      drivers/i2c/busses/i2c-isch.c
7989 F:      drivers/i2c/busses/i2c-nforce2.c
7990 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7991 F:      drivers/i2c/busses/i2c-piix4.c
7992 F:      drivers/i2c/busses/i2c-sis5595.c
7993 F:      drivers/i2c/busses/i2c-sis630.c
7994 F:      drivers/i2c/busses/i2c-sis96x.c
7995 F:      drivers/i2c/busses/i2c-via.c
7996 F:      drivers/i2c/busses/i2c-viapro.c
7997
7998 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7999 M:      Hans de Goede <hdegoede@redhat.com>
8000 L:      linux-i2c@vger.kernel.org
8001 S:      Maintained
8002 F:      drivers/i2c/busses/i2c-cht-wc.c
8003
8004 I2C/SMBUS ISMT DRIVER
8005 M:      Seth Heasley <seth.heasley@intel.com>
8006 M:      Neil Horman <nhorman@tuxdriver.com>
8007 L:      linux-i2c@vger.kernel.org
8008 F:      drivers/i2c/busses/i2c-ismt.c
8009 F:      Documentation/i2c/busses/i2c-ismt.rst
8010
8011 I2C/SMBUS STUB DRIVER
8012 M:      Jean Delvare <jdelvare@suse.com>
8013 L:      linux-i2c@vger.kernel.org
8014 S:      Maintained
8015 F:      drivers/i2c/i2c-stub.c
8016
8017 I3C SUBSYSTEM
8018 M:      Boris Brezillon <bbrezillon@kernel.org>
8019 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8020 C:      irc://chat.freenode.net/linux-i3c
8021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8022 S:      Maintained
8023 F:      Documentation/ABI/testing/sysfs-bus-i3c
8024 F:      Documentation/devicetree/bindings/i3c/
8025 F:      Documentation/driver-api/i3c
8026 F:      drivers/i3c/
8027 F:      include/linux/i3c/
8028
8029 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8030 M:      Vitor Soares <vitor.soares@synopsys.com>
8031 S:      Maintained
8032 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8033 F:      drivers/i3c/master/dw*
8034
8035 I3C DRIVER FOR CADENCE I3C MASTER IP
8036 M:      Przemysław Gaj <pgaj@cadence.com>
8037 S:      Maintained
8038 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8039 F:      drivers/i3c/master/i3c-master-cdns.c
8040
8041 IA64 (Itanium) PLATFORM
8042 M:      Tony Luck <tony.luck@intel.com>
8043 M:      Fenghua Yu <fenghua.yu@intel.com>
8044 L:      linux-ia64@vger.kernel.org
8045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8046 S:      Maintained
8047 F:      arch/ia64/
8048 F:      Documentation/ia64/
8049
8050 IBM Power 842 compression accelerator
8051 M:      Haren Myneni <haren@us.ibm.com>
8052 S:      Supported
8053 F:      drivers/crypto/nx/Makefile
8054 F:      drivers/crypto/nx/Kconfig
8055 F:      drivers/crypto/nx/nx-842*
8056 F:      include/linux/sw842.h
8057 F:      crypto/842.c
8058 F:      lib/842/
8059
8060 IBM Power in-Nest Crypto Acceleration
8061 M:      Breno Leitão <leitao@debian.org>
8062 M:      Nayna Jain <nayna@linux.ibm.com>
8063 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8064 L:      linux-crypto@vger.kernel.org
8065 S:      Supported
8066 F:      drivers/crypto/nx/Makefile
8067 F:      drivers/crypto/nx/Kconfig
8068 F:      drivers/crypto/nx/nx-aes*
8069 F:      drivers/crypto/nx/nx-sha*
8070 F:      drivers/crypto/nx/nx.*
8071 F:      drivers/crypto/nx/nx_csbcpb.h
8072 F:      drivers/crypto/nx/nx_debugfs.c
8073
8074 IBM Power Linux RAID adapter
8075 M:      Brian King <brking@us.ibm.com>
8076 S:      Supported
8077 F:      drivers/scsi/ipr.*
8078
8079 IBM Power SRIOV Virtual NIC Device Driver
8080 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8081 M:      John Allen <jallen@linux.ibm.com>
8082 L:      netdev@vger.kernel.org
8083 S:      Supported
8084 F:      drivers/net/ethernet/ibm/ibmvnic.*
8085
8086 IBM Power Virtual Accelerator Switchboard
8087 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8088 L:      linuxppc-dev@lists.ozlabs.org
8089 S:      Supported
8090 F:      arch/powerpc/platforms/powernv/vas*
8091 F:      arch/powerpc/platforms/powernv/copy-paste.h
8092 F:      arch/powerpc/include/asm/vas.h
8093
8094 IBM Power Virtual Ethernet Device Driver
8095 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
8096 L:      netdev@vger.kernel.org
8097 S:      Supported
8098 F:      drivers/net/ethernet/ibm/ibmveth.*
8099
8100 IBM Power Virtual FC Device Drivers
8101 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8102 L:      linux-scsi@vger.kernel.org
8103 S:      Supported
8104 F:      drivers/scsi/ibmvscsi/ibmvfc*
8105
8106 IBM Power Virtual Management Channel Driver
8107 M:      Steven Royer <seroyer@linux.ibm.com>
8108 S:      Supported
8109 F:      drivers/misc/ibmvmc.*
8110
8111 IBM Power Virtual SCSI Device Drivers
8112 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8113 L:      linux-scsi@vger.kernel.org
8114 S:      Supported
8115 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8116 F:      include/scsi/viosrp.h
8117
8118 IBM Power Virtual SCSI Device Target Driver
8119 M:      Michael Cyr <mikecyr@linux.ibm.com>
8120 L:      linux-scsi@vger.kernel.org
8121 L:      target-devel@vger.kernel.org
8122 S:      Supported
8123 F:      drivers/scsi/ibmvscsi_tgt/
8124
8125 IBM Power VMX Cryptographic instructions
8126 M:      Breno Leitão <leitao@debian.org>
8127 M:      Nayna Jain <nayna@linux.ibm.com>
8128 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8129 L:      linux-crypto@vger.kernel.org
8130 S:      Supported
8131 F:      drivers/crypto/vmx/Makefile
8132 F:      drivers/crypto/vmx/Kconfig
8133 F:      drivers/crypto/vmx/vmx.c
8134 F:      drivers/crypto/vmx/aes*
8135 F:      drivers/crypto/vmx/ghash*
8136 F:      drivers/crypto/vmx/ppc-xlate.pl
8137
8138 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8139 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8140 L:      linux-pci@vger.kernel.org
8141 L:      linuxppc-dev@lists.ozlabs.org
8142 S:      Supported
8143 F:      drivers/pci/hotplug/rpaphp*
8144
8145 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8146 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8147 L:      linux-pci@vger.kernel.org
8148 L:      linuxppc-dev@lists.ozlabs.org
8149 S:      Supported
8150 F:      drivers/pci/hotplug/rpadlpar*
8151
8152 IBM ServeRAID RAID DRIVER
8153 S:      Orphan
8154 F:      drivers/scsi/ips.*
8155
8156 ICH LPC AND GPIO DRIVER
8157 M:      Peter Tyser <ptyser@xes-inc.com>
8158 S:      Maintained
8159 F:      drivers/gpio/gpio-ich.c
8160 F:      drivers/mfd/lpc_ich.c
8161
8162 ICY I2C DRIVER
8163 M:      Max Staudt <max@enpas.org>
8164 L:      linux-i2c@vger.kernel.org
8165 S:      Maintained
8166 F:      drivers/i2c/busses/i2c-icy.c
8167
8168 IDE SUBSYSTEM
8169 M:      "David S. Miller" <davem@davemloft.net>
8170 L:      linux-ide@vger.kernel.org
8171 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
8172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
8173 S:      Maintained
8174 F:      Documentation/ide/
8175 F:      drivers/ide/
8176 F:      include/linux/ide.h
8177
8178 IDE/ATAPI DRIVERS
8179 M:      Borislav Petkov <bp@alien8.de>
8180 L:      linux-ide@vger.kernel.org
8181 S:      Maintained
8182 F:      Documentation/cdrom/ide-cd.rst
8183 F:      drivers/ide/ide-cd*
8184
8185 IDEAPAD LAPTOP EXTRAS DRIVER
8186 M:      Ike Panhc <ike.pan@canonical.com>
8187 L:      platform-driver-x86@vger.kernel.org
8188 S:      Maintained
8189 W:      http://launchpad.net/ideapad-laptop
8190 F:      drivers/platform/x86/ideapad-laptop.c
8191
8192 IDEAPAD LAPTOP SLIDEBAR DRIVER
8193 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
8194 L:      linux-input@vger.kernel.org
8195 S:      Maintained
8196 W:      https://github.com/o2genum/ideapad-slidebar
8197 F:      drivers/input/misc/ideapad_slidebar.c
8198
8199 IDT VersaClock 5 CLOCK DRIVER
8200 M:      Marek Vasut <marek.vasut@gmail.com>
8201 S:      Maintained
8202 F:      drivers/clk/clk-versaclock5.c
8203
8204 IEEE 802.15.4 SUBSYSTEM
8205 M:      Alexander Aring <alex.aring@gmail.com>
8206 M:      Stefan Schmidt <stefan@datenfreihafen.org>
8207 L:      linux-wpan@vger.kernel.org
8208 W:      http://wpan.cakelab.org/
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
8210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
8211 S:      Maintained
8212 F:      net/ieee802154/
8213 F:      net/mac802154/
8214 F:      drivers/net/ieee802154/
8215 F:      include/linux/nl802154.h
8216 F:      include/linux/ieee802154.h
8217 F:      include/net/nl802154.h
8218 F:      include/net/mac802154.h
8219 F:      include/net/af_ieee802154.h
8220 F:      include/net/cfg802154.h
8221 F:      include/net/ieee802154_netdev.h
8222 F:      Documentation/networking/ieee802154.rst
8223
8224 IFE PROTOCOL
8225 M:      Yotam Gigi <yotam.gi@gmail.com>
8226 M:      Jamal Hadi Salim <jhs@mojatatu.com>
8227 F:      net/ife
8228 F:      include/net/ife.h
8229 F:      include/uapi/linux/ife.h
8230
8231 IGORPLUG-USB IR RECEIVER
8232 M:      Sean Young <sean@mess.org>
8233 L:      linux-media@vger.kernel.org
8234 S:      Maintained
8235 F:      drivers/media/rc/igorplugusb.c
8236
8237 IGUANAWORKS USB IR TRANSCEIVER
8238 M:      Sean Young <sean@mess.org>
8239 L:      linux-media@vger.kernel.org
8240 S:      Maintained
8241 F:      drivers/media/rc/iguanair.c
8242
8243 IIO DIGITAL POTENTIOMETER DAC
8244 M:      Peter Rosin <peda@axentia.se>
8245 L:      linux-iio@vger.kernel.org
8246 S:      Maintained
8247 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
8248 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
8249 F:      drivers/iio/dac/dpot-dac.c
8250
8251 IIO ENVELOPE DETECTOR
8252 M:      Peter Rosin <peda@axentia.se>
8253 L:      linux-iio@vger.kernel.org
8254 S:      Maintained
8255 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
8256 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
8257 F:      drivers/iio/adc/envelope-detector.c
8258
8259 IIO MULTIPLEXER
8260 M:      Peter Rosin <peda@axentia.se>
8261 L:      linux-iio@vger.kernel.org
8262 S:      Maintained
8263 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
8264 F:      drivers/iio/multiplexer/iio-mux.c
8265
8266 IIO SUBSYSTEM AND DRIVERS
8267 M:      Jonathan Cameron <jic23@kernel.org>
8268 R:      Hartmut Knaack <knaack.h@gmx.de>
8269 R:      Lars-Peter Clausen <lars@metafoo.de>
8270 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
8271 L:      linux-iio@vger.kernel.org
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
8273 S:      Maintained
8274 F:      Documentation/ABI/testing/configfs-iio*
8275 F:      Documentation/ABI/testing/sysfs-bus-iio*
8276 F:      Documentation/devicetree/bindings/iio/
8277 F:      drivers/iio/
8278 F:      drivers/staging/iio/
8279 F:      include/linux/iio/
8280 F:      tools/iio/
8281
8282 IIO UNIT CONVERTER
8283 M:      Peter Rosin <peda@axentia.se>
8284 L:      linux-iio@vger.kernel.org
8285 S:      Maintained
8286 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8287 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8288 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8289 F:      drivers/iio/afe/iio-rescale.c
8290
8291 IKANOS/ADI EAGLE ADSL USB DRIVER
8292 M:      Matthieu Castet <castet.matthieu@free.fr>
8293 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8294 S:      Maintained
8295 F:      drivers/usb/atm/ueagle-atm.c
8296
8297 IMGTEC ASCII LCD DRIVER
8298 M:      Paul Burton <paulburton@kernel.org>
8299 S:      Maintained
8300 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8301 F:      drivers/auxdisplay/img-ascii-lcd.c
8302
8303 IMGTEC IR DECODER DRIVER
8304 S:      Orphan
8305 F:      drivers/media/rc/img-ir/
8306
8307 IMON SOUNDGRAPH USB IR RECEIVER
8308 M:      Sean Young <sean@mess.org>
8309 L:      linux-media@vger.kernel.org
8310 S:      Maintained
8311 F:      drivers/media/rc/imon_raw.c
8312 F:      drivers/media/rc/imon.c
8313
8314 IMS TWINTURBO FRAMEBUFFER DRIVER
8315 L:      linux-fbdev@vger.kernel.org
8316 S:      Orphan
8317 F:      drivers/video/fbdev/imsttfb.c
8318
8319 INA209 HARDWARE MONITOR DRIVER
8320 M:      Guenter Roeck <linux@roeck-us.net>
8321 L:      linux-hwmon@vger.kernel.org
8322 S:      Maintained
8323 F:      Documentation/hwmon/ina209.rst
8324 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8325 F:      drivers/hwmon/ina209.c
8326
8327 INA2XX HARDWARE MONITOR DRIVER
8328 M:      Guenter Roeck <linux@roeck-us.net>
8329 L:      linux-hwmon@vger.kernel.org
8330 S:      Maintained
8331 F:      Documentation/hwmon/ina2xx.rst
8332 F:      drivers/hwmon/ina2xx.c
8333 F:      include/linux/platform_data/ina2xx.h
8334
8335 INDUSTRY PACK SUBSYSTEM (IPACK)
8336 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8337 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8338 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8339 L:      industrypack-devel@lists.sourceforge.net
8340 W:      http://industrypack.sourceforge.net
8341 S:      Maintained
8342 F:      drivers/ipack/
8343
8344 INFINEON DPS310 Driver
8345 M:      Eddie James <eajames@linux.ibm.com>
8346 L:      linux-iio@vger.kernel.org
8347 F:      drivers/iio/pressure/dps310.c
8348 S:      Maintained
8349
8350 INFINIBAND SUBSYSTEM
8351 M:      Doug Ledford <dledford@redhat.com>
8352 M:      Jason Gunthorpe <jgg@mellanox.com>
8353 L:      linux-rdma@vger.kernel.org
8354 W:      https://github.com/linux-rdma/rdma-core
8355 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8357 S:      Supported
8358 F:      Documentation/devicetree/bindings/infiniband/
8359 F:      Documentation/infiniband/
8360 F:      drivers/infiniband/
8361 F:      include/uapi/linux/if_infiniband.h
8362 F:      include/uapi/rdma/
8363 F:      include/rdma/
8364 F:      include/trace/events/ib_mad.h
8365 F:      include/trace/events/ib_umad.h
8366 F:      samples/bpf/ibumad_kern.c
8367 F:      samples/bpf/ibumad_user.c
8368
8369 INGENIC JZ4780 DMA Driver
8370 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8371 S:      Maintained
8372 F:      drivers/dma/dma-jz4780.c
8373
8374 INGENIC JZ4780 NAND DRIVER
8375 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8376 L:      linux-mtd@lists.infradead.org
8377 S:      Maintained
8378 F:      drivers/mtd/nand/raw/ingenic/
8379
8380 INGENIC JZ47xx SoCs
8381 M:      Paul Cercueil <paul@crapouillou.net>
8382 S:      Maintained
8383 F:      arch/mips/boot/dts/ingenic/
8384 F:      arch/mips/include/asm/mach-jz4740/
8385 F:      arch/mips/jz4740/
8386 F:      drivers/clk/ingenic/
8387 F:      drivers/dma/dma-jz4780.c
8388 F:      drivers/gpu/drm/ingenic/
8389 F:      drivers/i2c/busses/i2c-jz4780.c
8390 F:      drivers/iio/adc/ingenic-adc.c
8391 F:      drivers/irqchip/irq-ingenic.c
8392 F:      drivers/memory/jz4780-nemc.c
8393 F:      drivers/mmc/host/jz4740_mmc.c
8394 F:      drivers/mtd/nand/raw/ingenic/
8395 F:      drivers/pinctrl/pinctrl-ingenic.c
8396 F:      drivers/power/supply/ingenic-battery.c
8397 F:      drivers/pwm/pwm-jz4740.c
8398 F:      drivers/rtc/rtc-jz4740.c
8399 F:      drivers/tty/serial/8250/8250_ingenic.c
8400 F:      drivers/usb/musb/jz4740.c
8401 F:      drivers/watchdog/jz4740_wdt.c
8402 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8403 F:      include/linux/mfd/ingenic-tcu.h
8404 F:      sound/soc/jz4740/
8405 F:      sound/soc/codecs/jz47*
8406
8407 INOTIFY
8408 M:      Jan Kara <jack@suse.cz>
8409 R:      Amir Goldstein <amir73il@gmail.com>
8410 L:      linux-fsdevel@vger.kernel.org
8411 S:      Maintained
8412 F:      Documentation/filesystems/inotify.rst
8413 F:      fs/notify/inotify/
8414 F:      include/linux/inotify.h
8415 F:      include/uapi/linux/inotify.h
8416
8417 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8418 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8419 L:      linux-input@vger.kernel.org
8420 Q:      http://patchwork.kernel.org/project/linux-input/list/
8421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8422 S:      Maintained
8423 F:      drivers/input/
8424 F:      include/linux/input.h
8425 F:      include/uapi/linux/input.h
8426 F:      include/uapi/linux/input-event-codes.h
8427 F:      include/linux/input/
8428 F:      Documentation/devicetree/bindings/input/
8429 F:      Documentation/devicetree/bindings/serio/
8430 F:      Documentation/input/
8431
8432 INPUT MULTITOUCH (MT) PROTOCOL
8433 M:      Henrik Rydberg <rydberg@bitmath.org>
8434 L:      linux-input@vger.kernel.org
8435 S:      Odd fixes
8436 F:      Documentation/input/multi-touch-protocol.rst
8437 F:      drivers/input/input-mt.c
8438 K:      \b(ABS|SYN)_MT_
8439
8440 INSIDE SECURE CRYPTO DRIVER
8441 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8442 F:      drivers/crypto/inside-secure/
8443 S:      Maintained
8444 L:      linux-crypto@vger.kernel.org
8445
8446 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8447 M:      Mimi Zohar <zohar@linux.ibm.com>
8448 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8449 L:      linux-integrity@vger.kernel.org
8450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8451 S:      Supported
8452 F:      security/integrity/ima/
8453
8454 INTEL 810/815 FRAMEBUFFER DRIVER
8455 M:      Antonino Daplas <adaplas@gmail.com>
8456 L:      linux-fbdev@vger.kernel.org
8457 S:      Maintained
8458 F:      drivers/video/fbdev/i810/
8459
8460 INTEL ASoC DRIVERS
8461 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8462 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8463 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8464 M:      Jie Yang <yang.jie@linux.intel.com>
8465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8466 S:      Supported
8467 F:      sound/soc/intel/
8468
8469 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8470 M:      Hans de Goede <hdegoede@redhat.com>
8471 L:      platform-driver-x86@vger.kernel.org
8472 S:      Maintained
8473 F:      drivers/platform/x86/intel_atomisp2_pm.c
8474
8475 INTEL C600 SERIES SAS CONTROLLER DRIVER
8476 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8477 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8478 L:      linux-scsi@vger.kernel.org
8479 T:      git git://git.code.sf.net/p/intel-sas/isci
8480 S:      Supported
8481 F:      drivers/scsi/isci/
8482
8483 INTEL CPU family model numbers
8484 M:      Tony Luck <tony.luck@intel.com>
8485 M:      x86@kernel.org
8486 L:      linux-kernel@vger.kernel.org
8487 S:      Supported
8488 F:      arch/x86/include/asm/intel-family.h
8489
8490 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8491 M:      Jani Nikula <jani.nikula@linux.intel.com>
8492 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8493 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8494 L:      intel-gfx@lists.freedesktop.org
8495 W:      https://01.org/linuxgraphics/
8496 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
8497 C:      irc://chat.freenode.net/intel-gfx
8498 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8499 T:      git git://anongit.freedesktop.org/drm-intel
8500 S:      Supported
8501 F:      drivers/gpu/drm/i915/
8502 F:      include/drm/i915*
8503 F:      include/uapi/drm/i915_drm.h
8504 F:      Documentation/gpu/i915.rst
8505
8506 INTEL ETHERNET DRIVERS
8507 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8508 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8509 W:      http://www.intel.com/support/feedback.htm
8510 W:      http://e1000.sourceforge.net/
8511 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8514 S:      Supported
8515 F:      Documentation/networking/device_drivers/intel/e100.rst
8516 F:      Documentation/networking/device_drivers/intel/e1000.rst
8517 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8518 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8519 F:      Documentation/networking/device_drivers/intel/igb.rst
8520 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8521 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8522 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8523 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8524 F:      Documentation/networking/device_drivers/intel/i40e.rst
8525 F:      Documentation/networking/device_drivers/intel/iavf.rst
8526 F:      Documentation/networking/device_drivers/intel/ice.rst
8527 F:      drivers/net/ethernet/intel/
8528 F:      drivers/net/ethernet/intel/*/
8529 F:      include/linux/avf/virtchnl.h
8530
8531 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8532 M:      Maik Broemme <mbroemme@libmpq.org>
8533 L:      linux-fbdev@vger.kernel.org
8534 S:      Maintained
8535 F:      Documentation/fb/intelfb.rst
8536 F:      drivers/video/fbdev/intelfb/
8537
8538 INTEL GPIO DRIVERS
8539 M:      Andy Shevchenko <andy@kernel.org>
8540 L:      linux-gpio@vger.kernel.org
8541 S:      Maintained
8542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8543 F:      drivers/gpio/gpio-ich.c
8544 F:      drivers/gpio/gpio-intel-mid.c
8545 F:      drivers/gpio/gpio-merrifield.c
8546 F:      drivers/gpio/gpio-ml-ioh.c
8547 F:      drivers/gpio/gpio-pch.c
8548 F:      drivers/gpio/gpio-sch.c
8549 F:      drivers/gpio/gpio-sodaville.c
8550
8551 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8552 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8553 M:      Zhi Wang <zhi.a.wang@intel.com>
8554 L:      intel-gvt-dev@lists.freedesktop.org
8555 L:      intel-gfx@lists.freedesktop.org
8556 W:      https://01.org/igvt-g
8557 T:      git https://github.com/intel/gvt-linux.git
8558 S:      Supported
8559 F:      drivers/gpu/drm/i915/gvt/
8560
8561 INTEL HID EVENT DRIVER
8562 M:      Alex Hung <alex.hung@canonical.com>
8563 L:      platform-driver-x86@vger.kernel.org
8564 S:      Maintained
8565 F:      drivers/platform/x86/intel-hid.c
8566
8567 INTEL I/OAT DMA DRIVER
8568 M:      Dave Jiang <dave.jiang@intel.com>
8569 R:      Dan Williams <dan.j.williams@intel.com>
8570 L:      dmaengine@vger.kernel.org
8571 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8572 S:      Supported
8573 F:      drivers/dma/ioat*
8574
8575 INTEL IADX DRIVER
8576 M:      Dave Jiang <dave.jiang@intel.com>
8577 L:      dmaengine@vger.kernel.org
8578 S:      Supported
8579 F:      drivers/dma/idxd/*
8580 F:      include/uapi/linux/idxd.h
8581
8582 INTEL IDLE DRIVER
8583 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8584 M:      Len Brown <lenb@kernel.org>
8585 L:      linux-pm@vger.kernel.org
8586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8587 B:      https://bugzilla.kernel.org
8588 S:      Supported
8589 F:      drivers/idle/intel_idle.c
8590
8591 INTEL INTEGRATED SENSOR HUB DRIVER
8592 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8593 M:      Jiri Kosina <jikos@kernel.org>
8594 L:      linux-input@vger.kernel.org
8595 S:      Maintained
8596 F:      drivers/hid/intel-ish-hid/
8597
8598 INTEL IOMMU (VT-d)
8599 M:      David Woodhouse <dwmw2@infradead.org>
8600 M:      Lu Baolu <baolu.lu@linux.intel.com>
8601 L:      iommu@lists.linux-foundation.org
8602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8603 S:      Supported
8604 F:      drivers/iommu/dmar.c
8605 F:      drivers/iommu/intel*.[ch]
8606 F:      include/linux/intel-iommu.h
8607 F:      include/linux/intel-svm.h
8608
8609 INTEL IOP-ADMA DMA DRIVER
8610 R:      Dan Williams <dan.j.williams@intel.com>
8611 S:      Odd fixes
8612 F:      drivers/dma/iop-adma.c
8613
8614 INTEL IPU3 CSI-2 CIO2 DRIVER
8615 M:      Yong Zhi <yong.zhi@intel.com>
8616 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8617 M:      Bingbu Cao <bingbu.cao@intel.com>
8618 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8619 L:      linux-media@vger.kernel.org
8620 S:      Maintained
8621 F:      drivers/media/pci/intel/ipu3/
8622 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8623
8624 INTEL IPU3 CSI-2 IMGU DRIVER
8625 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8626 L:      linux-media@vger.kernel.org
8627 S:      Maintained
8628 F:      drivers/staging/media/ipu3/
8629 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8630 F:      Documentation/media/v4l-drivers/ipu3.rst
8631 F:      Documentation/media/v4l-drivers/ipu3_rcb.svg
8632
8633 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8634 M:      Krzysztof Halasa <khalasa@piap.pl>
8635 S:      Maintained
8636 F:      include/linux/soc/ixp4xx/qmgr.h
8637 F:      include/linux/soc/ixp4xx/npe.h
8638 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8639 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8640 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8641 F:      drivers/net/wan/ixp4xx_hss.c
8642
8643 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8644 M:      Deepak Saxena <dsaxena@plexity.net>
8645 S:      Maintained
8646 F:      drivers/char/hw_random/ixp4xx-rng.c
8647
8648 INTEL MANAGEMENT ENGINE (mei)
8649 M:      Tomas Winkler <tomas.winkler@intel.com>
8650 L:      linux-kernel@vger.kernel.org
8651 S:      Supported
8652 F:      include/uapi/linux/mei.h
8653 F:      include/linux/mei_cl_bus.h
8654 F:      drivers/misc/mei/*
8655 F:      drivers/watchdog/mei_wdt.c
8656 F:      Documentation/driver-api/mei/*
8657 F:      samples/mei/*
8658
8659 INTEL MENLOW THERMAL DRIVER
8660 M:      Sujith Thomas <sujith.thomas@intel.com>
8661 L:      platform-driver-x86@vger.kernel.org
8662 S:      Supported
8663 W:      https://01.org/linux-acpi
8664 F:      drivers/platform/x86/intel_menlow.c
8665
8666 INTEL MIC DRIVERS (mic)
8667 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8668 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8669 S:      Supported
8670 W:      https://github.com/sudeepdutt/mic
8671 W:      http://software.intel.com/en-us/mic-developer
8672 F:      Documentation/misc-devices/mic/
8673 F:      drivers/dma/mic_x100_dma.c
8674 F:      drivers/dma/mic_x100_dma.h
8675 F:      drivers/misc/mic/
8676 F:      include/linux/mic_bus.h
8677 F:      include/linux/scif.h
8678 F:      include/uapi/linux/mic_common.h
8679 F:      include/uapi/linux/mic_ioctl.h
8680 F:      include/uapi/linux/scif_ioctl.h
8681
8682 INTEL PMC CORE DRIVER
8683 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8684 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8685 L:      platform-driver-x86@vger.kernel.org
8686 S:      Maintained
8687 F:      drivers/platform/x86/intel_pmc_core*
8688
8689 INTEL PMC/P-Unit IPC DRIVER
8690 M:      Zha Qipeng<qipeng.zha@intel.com>
8691 L:      platform-driver-x86@vger.kernel.org
8692 S:      Maintained
8693 F:      arch/x86/include/asm/intel_pmc_ipc.h
8694 F:      arch/x86/include/asm/intel_punit_ipc.h
8695 F:      drivers/platform/x86/intel_pmc_ipc.c
8696 F:      drivers/platform/x86/intel_punit_ipc.c
8697
8698 INTEL PMIC GPIO DRIVERS
8699 M:      Andy Shevchenko <andy@kernel.org>
8700 S:      Maintained
8701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8702 F:      drivers/gpio/gpio-*cove.c
8703 F:      drivers/gpio/gpio-msic.c
8704
8705 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8706 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8707 S:      Maintained
8708 F:      drivers/mfd/intel_msic.c
8709 F:      drivers/mfd/intel_soc_pmic*
8710 F:      include/linux/mfd/intel_msic.h
8711 F:      include/linux/mfd/intel_soc_pmic*
8712
8713 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8714 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8715 L:      linux-wireless@vger.kernel.org
8716 S:      Maintained
8717 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8718 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8719 F:      drivers/net/wireless/intel/ipw2x00/
8720
8721 INTEL PSTATE DRIVER
8722 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8723 M:      Len Brown <lenb@kernel.org>
8724 L:      linux-pm@vger.kernel.org
8725 S:      Supported
8726 F:      drivers/cpufreq/intel_pstate.c
8727
8728 INTEL RDMA RNIC DRIVER
8729 M:      Faisal Latif <faisal.latif@intel.com>
8730 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8731 L:      linux-rdma@vger.kernel.org
8732 S:      Supported
8733 F:      drivers/infiniband/hw/i40iw/
8734 F:      include/uapi/rdma/i40iw-abi.h
8735
8736 INTEL SPEED SELECT TECHNOLOGY
8737 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8738 L:      platform-driver-x86@vger.kernel.org
8739 S:      Maintained
8740 F:      drivers/platform/x86/intel_speed_select_if/
8741 F:      include/uapi/linux/isst_if.h
8742 F:      tools/power/x86/intel-speed-select/
8743
8744 INTEL STRATIX10 FIRMWARE DRIVERS
8745 M:      Richard Gong <richard.gong@linux.intel.com>
8746 L:      linux-kernel@vger.kernel.org
8747 S:      Maintained
8748 F:      drivers/firmware/stratix10-rsu.c
8749 F:      drivers/firmware/stratix10-svc.c
8750 F:      include/linux/firmware/intel/stratix10-smc.h
8751 F:      include/linux/firmware/intel/stratix10-svc-client.h
8752 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8753 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8754
8755 INTEL TELEMETRY DRIVER
8756 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8757 M:      "David E. Box" <david.e.box@linux.intel.com>
8758 L:      platform-driver-x86@vger.kernel.org
8759 S:      Maintained
8760 F:      arch/x86/include/asm/intel_telemetry.h
8761 F:      drivers/platform/x86/intel_telemetry*
8762
8763 INTEL UNCORE FREQUENCY CONTROL
8764 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8765 L:      platform-driver-x86@vger.kernel.org
8766 S:      Maintained
8767 F:      drivers/platform/x86/intel-uncore-frequency.c
8768
8769 INTEL VIRTUAL BUTTON DRIVER
8770 M:      AceLan Kao <acelan.kao@canonical.com>
8771 L:      platform-driver-x86@vger.kernel.org
8772 S:      Maintained
8773 F:      drivers/platform/x86/intel-vbtn.c
8774
8775 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8776 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8777 L:      linux-wireless@vger.kernel.org
8778 S:      Supported
8779 F:      drivers/net/wireless/intel/iwlegacy/
8780
8781 INTEL WIRELESS WIFI LINK (iwlwifi)
8782 M:      Johannes Berg <johannes.berg@intel.com>
8783 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8784 M:      Luca Coelho <luciano.coelho@intel.com>
8785 M:      Intel Linux Wireless <linuxwifi@intel.com>
8786 L:      linux-wireless@vger.kernel.org
8787 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
8788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8789 S:      Supported
8790 F:      drivers/net/wireless/intel/iwlwifi/
8791
8792 INTEL WIRELESS WIMAX CONNECTION 2400
8793 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8794 M:      linux-wimax@intel.com
8795 L:      wimax@linuxwimax.org (subscribers-only)
8796 S:      Supported
8797 W:      http://linuxwimax.org
8798 F:      Documentation/admin-guide/wimax/i2400m.rst
8799 F:      drivers/net/wimax/i2400m/
8800 F:      include/uapi/linux/wimax/i2400m.h
8801
8802 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8803 M:      Mario Limonciello <mario.limonciello@dell.com>
8804 S:      Maintained
8805 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8806
8807 INTEL(R) TRACE HUB
8808 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8809 S:      Supported
8810 F:      Documentation/trace/intel_th.rst
8811 F:      drivers/hwtracing/intel_th/
8812 F:      include/linux/intel_th.h
8813
8814 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8815 M:      Ning Sun <ning.sun@intel.com>
8816 L:      tboot-devel@lists.sourceforge.net
8817 W:      http://tboot.sourceforge.net
8818 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8819 S:      Supported
8820 F:      Documentation/x86/intel_txt.rst
8821 F:      include/linux/tboot.h
8822 F:      arch/x86/kernel/tboot.c
8823
8824 INTERCONNECT API
8825 M:      Georgi Djakov <georgi.djakov@linaro.org>
8826 L:      linux-pm@vger.kernel.org
8827 S:      Maintained
8828 F:      Documentation/driver-api/interconnect.rst
8829 F:      Documentation/devicetree/bindings/interconnect/
8830 F:      drivers/interconnect/
8831 F:      include/dt-bindings/interconnect/
8832 F:      include/linux/interconnect-provider.h
8833 F:      include/linux/interconnect.h
8834
8835 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8836 M:      Linus Walleij <linus.walleij@linaro.org>
8837 L:      linux-iio@vger.kernel.org
8838 S:      Maintained
8839 F:      drivers/iio/gyro/mpu3050*
8840 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8841
8842 IOC3 ETHERNET DRIVER
8843 M:      Ralf Baechle <ralf@linux-mips.org>
8844 L:      linux-mips@vger.kernel.org
8845 S:      Maintained
8846 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8847
8848 IOMAP FILESYSTEM LIBRARY
8849 M:      Christoph Hellwig <hch@infradead.org>
8850 M:      Darrick J. Wong <darrick.wong@oracle.com>
8851 M:      linux-xfs@vger.kernel.org
8852 M:      linux-fsdevel@vger.kernel.org
8853 L:      linux-xfs@vger.kernel.org
8854 L:      linux-fsdevel@vger.kernel.org
8855 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8856 S:      Supported
8857 F:      fs/iomap/
8858 F:      include/linux/iomap.h
8859
8860 IOMMU DRIVERS
8861 M:      Joerg Roedel <joro@8bytes.org>
8862 L:      iommu@lists.linux-foundation.org
8863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8864 S:      Maintained
8865 F:      Documentation/devicetree/bindings/iommu/
8866 F:      drivers/iommu/
8867 F:      include/linux/iommu.h
8868 F:      include/linux/of_iommu.h
8869 F:      include/linux/iova.h
8870
8871 IO_URING
8872 M:      Jens Axboe <axboe@kernel.dk>
8873 L:      io-uring@vger.kernel.org
8874 T:      git git://git.kernel.dk/linux-block
8875 T:      git git://git.kernel.dk/liburing
8876 S:      Maintained
8877 F:      fs/io_uring.c
8878 F:      fs/io-wq.c
8879 F:      fs/io-wq.h
8880 F:      include/uapi/linux/io_uring.h
8881
8882 IPMI SUBSYSTEM
8883 M:      Corey Minyard <minyard@acm.org>
8884 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8885 W:      http://openipmi.sourceforge.net/
8886 S:      Supported
8887 F:      Documentation/devicetree/bindings/ipmi/
8888 F:      Documentation/IPMI.txt
8889 F:      drivers/char/ipmi/
8890 F:      include/linux/ipmi*
8891 F:      include/uapi/linux/ipmi*
8892
8893 IPS SCSI RAID DRIVER
8894 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8895 L:      linux-scsi@vger.kernel.org
8896 W:      http://www.adaptec.com/
8897 S:      Maintained
8898 F:      drivers/scsi/ips*
8899
8900 IPVS
8901 M:      Wensong Zhang <wensong@linux-vs.org>
8902 M:      Simon Horman <horms@verge.net.au>
8903 M:      Julian Anastasov <ja@ssi.bg>
8904 L:      netdev@vger.kernel.org
8905 L:      lvs-devel@vger.kernel.org
8906 S:      Maintained
8907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8909 F:      Documentation/networking/ipvs-sysctl.txt
8910 F:      include/net/ip_vs.h
8911 F:      include/uapi/linux/ip_vs.h
8912 F:      net/netfilter/ipvs/
8913
8914 IPWIRELESS DRIVER
8915 M:      Jiri Kosina <jikos@kernel.org>
8916 M:      David Sterba <dsterba@suse.com>
8917 S:      Odd Fixes
8918 F:      drivers/tty/ipwireless/
8919
8920 IPX NETWORK LAYER
8921 L:      netdev@vger.kernel.org
8922 S:      Obsolete
8923 F:      include/uapi/linux/ipx.h
8924
8925 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8926 M:      Marc Zyngier <maz@kernel.org>
8927 S:      Maintained
8928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8929 F:      Documentation/IRQ-domain.txt
8930 F:      include/linux/irqdomain.h
8931 F:      kernel/irq/irqdomain.c
8932 F:      kernel/irq/msi.c
8933
8934 IRQ SUBSYSTEM
8935 M:      Thomas Gleixner <tglx@linutronix.de>
8936 L:      linux-kernel@vger.kernel.org
8937 S:      Maintained
8938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8939 F:      kernel/irq/
8940
8941 IRQCHIP DRIVERS
8942 M:      Thomas Gleixner <tglx@linutronix.de>
8943 M:      Jason Cooper <jason@lakedaemon.net>
8944 M:      Marc Zyngier <maz@kernel.org>
8945 L:      linux-kernel@vger.kernel.org
8946 S:      Maintained
8947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8948 F:      Documentation/devicetree/bindings/interrupt-controller/
8949 F:      drivers/irqchip/
8950
8951 ISA
8952 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8953 S:      Maintained
8954 F:      Documentation/driver-api/isa.rst
8955 F:      drivers/base/isa.c
8956 F:      include/linux/isa.h
8957
8958 ISA RADIO MODULE
8959 M:      Hans Verkuil <hverkuil@xs4all.nl>
8960 L:      linux-media@vger.kernel.org
8961 T:      git git://linuxtv.org/media_tree.git
8962 W:      https://linuxtv.org
8963 S:      Maintained
8964 F:      drivers/media/radio/radio-isa*
8965
8966 ISAPNP
8967 M:      Jaroslav Kysela <perex@perex.cz>
8968 S:      Maintained
8969 F:      Documentation/driver-api/isapnp.rst
8970 F:      drivers/pnp/isapnp/
8971 F:      include/linux/isapnp.h
8972
8973 ISCSI
8974 M:      Lee Duncan <lduncan@suse.com>
8975 M:      Chris Leech <cleech@redhat.com>
8976 L:      open-iscsi@googlegroups.com
8977 L:      linux-scsi@vger.kernel.org
8978 W:      www.open-iscsi.com
8979 S:      Maintained
8980 F:      drivers/scsi/*iscsi*
8981 F:      include/scsi/*iscsi*
8982
8983 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8984 M:      Peter Jones <pjones@redhat.com>
8985 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8986 S:      Maintained
8987 F:      drivers/firmware/iscsi_ibft*
8988
8989 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8990 M:      Sagi Grimberg <sagi@grimberg.me>
8991 M:      Max Gurtovoy <maxg@mellanox.com>
8992 L:      linux-rdma@vger.kernel.org
8993 S:      Supported
8994 W:      http://www.openfabrics.org
8995 W:      www.open-iscsi.org
8996 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8997 F:      drivers/infiniband/ulp/iser/
8998
8999 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9000 M:      Sagi Grimberg <sagi@grimberg.me>
9001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9002 L:      linux-rdma@vger.kernel.org
9003 L:      target-devel@vger.kernel.org
9004 S:      Supported
9005 W:      http://www.linux-iscsi.org
9006 F:      drivers/infiniband/ulp/isert
9007
9008 ISDN/mISDN SUBSYSTEM
9009 M:      Karsten Keil <isdn@linux-pingi.de>
9010 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9011 L:      netdev@vger.kernel.org
9012 W:      http://www.isdn4linux.de
9013 S:      Maintained
9014 F:      drivers/isdn/mISDN/
9015 F:      drivers/isdn/hardware/
9016 F:      drivers/isdn/Kconfig
9017 F:      drivers/isdn/Makefile
9018
9019 ISDN/CMTP OVER BLUETOOTH
9020 M:      Karsten Keil <isdn@linux-pingi.de>
9021 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9022 L:      netdev@vger.kernel.org
9023 W:      http://www.isdn4linux.de
9024 S:      Odd Fixes
9025 F:      Documentation/isdn/
9026 F:      drivers/isdn/capi/
9027 F:      net/bluetooth/cmtp/
9028 F:      include/linux/isdn/
9029 F:      include/uapi/linux/isdn/
9030
9031 IT87 HARDWARE MONITORING DRIVER
9032 M:      Jean Delvare <jdelvare@suse.com>
9033 L:      linux-hwmon@vger.kernel.org
9034 S:      Maintained
9035 F:      Documentation/hwmon/it87.rst
9036 F:      drivers/hwmon/it87.c
9037
9038 IT913X MEDIA DRIVER
9039 M:      Antti Palosaari <crope@iki.fi>
9040 L:      linux-media@vger.kernel.org
9041 W:      https://linuxtv.org
9042 W:      http://palosaari.fi/linux/
9043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9044 T:      git git://linuxtv.org/anttip/media_tree.git
9045 S:      Maintained
9046 F:      drivers/media/tuners/it913x*
9047
9048 IVTV VIDEO4LINUX DRIVER
9049 M:      Andy Walls <awalls@md.metrocast.net>
9050 L:      linux-media@vger.kernel.org
9051 T:      git git://linuxtv.org/media_tree.git
9052 W:      https://linuxtv.org
9053 S:      Maintained
9054 F:      Documentation/media/v4l-drivers/ivtv*
9055 F:      drivers/media/pci/ivtv/
9056 F:      include/uapi/linux/ivtv*
9057
9058 IX2505V MEDIA DRIVER
9059 M:      Malcolm Priestley <tvboxspy@gmail.com>
9060 L:      linux-media@vger.kernel.org
9061 W:      https://linuxtv.org
9062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9063 S:      Maintained
9064 F:      drivers/media/dvb-frontends/ix2505v*
9065
9066 JAILHOUSE HYPERVISOR INTERFACE
9067 M:      Jan Kiszka <jan.kiszka@siemens.com>
9068 L:      jailhouse-dev@googlegroups.com
9069 S:      Maintained
9070 F:      arch/x86/kernel/jailhouse.c
9071 F:      arch/x86/include/asm/jailhouse_para.h
9072
9073 JC42.4 TEMPERATURE SENSOR DRIVER
9074 M:      Guenter Roeck <linux@roeck-us.net>
9075 L:      linux-hwmon@vger.kernel.org
9076 S:      Maintained
9077 F:      drivers/hwmon/jc42.c
9078 F:      Documentation/hwmon/jc42.rst
9079
9080 JFS FILESYSTEM
9081 M:      Dave Kleikamp <shaggy@kernel.org>
9082 L:      jfs-discussion@lists.sourceforge.net
9083 W:      http://jfs.sourceforge.net/
9084 T:      git git://github.com/kleikamp/linux-shaggy.git
9085 S:      Maintained
9086 F:      Documentation/admin-guide/jfs.rst
9087 F:      fs/jfs/
9088
9089 JME NETWORK DRIVER
9090 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
9091 L:      netdev@vger.kernel.org
9092 S:      Maintained
9093 F:      drivers/net/ethernet/jme.*
9094
9095 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
9096 M:      David Woodhouse <dwmw2@infradead.org>
9097 M:      Richard Weinberger <richard@nod.at>
9098 L:      linux-mtd@lists.infradead.org
9099 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
9100 T:      git git://git.infradead.org/ubifs-2.6.git
9101 S:      Odd Fixes
9102 F:      fs/jffs2/
9103 F:      include/uapi/linux/jffs2.h
9104
9105 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
9106 M:      "Theodore Ts'o" <tytso@mit.edu>
9107 M:      Jan Kara <jack@suse.com>
9108 L:      linux-ext4@vger.kernel.org
9109 S:      Maintained
9110 F:      fs/jbd2/
9111 F:      include/linux/jbd2.h
9112
9113 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
9114 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
9115 L:      linux-media@vger.kernel.org
9116 S:      Maintained
9117 F:      drivers/media/platform/rcar_jpu.c
9118
9119 JSM Neo PCI based serial card
9120 L:      linux-serial@vger.kernel.org
9121 S:      Orphan
9122 F:      drivers/tty/serial/jsm/
9123
9124 K10TEMP HARDWARE MONITORING DRIVER
9125 M:      Clemens Ladisch <clemens@ladisch.de>
9126 L:      linux-hwmon@vger.kernel.org
9127 S:      Maintained
9128 F:      Documentation/hwmon/k10temp.rst
9129 F:      drivers/hwmon/k10temp.c
9130
9131 K8TEMP HARDWARE MONITORING DRIVER
9132 M:      Rudolf Marek <r.marek@assembler.cz>
9133 L:      linux-hwmon@vger.kernel.org
9134 S:      Maintained
9135 F:      Documentation/hwmon/k8temp.rst
9136 F:      drivers/hwmon/k8temp.c
9137
9138 KASAN
9139 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
9140 R:      Alexander Potapenko <glider@google.com>
9141 R:      Dmitry Vyukov <dvyukov@google.com>
9142 L:      kasan-dev@googlegroups.com
9143 S:      Maintained
9144 F:      arch/*/include/asm/kasan.h
9145 F:      arch/*/mm/kasan_init*
9146 F:      Documentation/dev-tools/kasan.rst
9147 F:      include/linux/kasan*.h
9148 F:      lib/test_kasan.c
9149 F:      mm/kasan/
9150 F:      scripts/Makefile.kasan
9151
9152 KCONFIG
9153 M:      Masahiro Yamada <masahiroy@kernel.org>
9154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
9155 L:      linux-kbuild@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/kbuild/kconfig*
9158 F:      scripts/kconfig/
9159 F:      scripts/Kconfig.include
9160
9161 KDUMP
9162 M:      Dave Young <dyoung@redhat.com>
9163 M:      Baoquan He <bhe@redhat.com>
9164 R:      Vivek Goyal <vgoyal@redhat.com>
9165 L:      kexec@lists.infradead.org
9166 W:      http://lse.sourceforge.net/kdump/
9167 S:      Maintained
9168 F:      Documentation/admin-guide/kdump/
9169
9170 KEENE FM RADIO TRANSMITTER DRIVER
9171 M:      Hans Verkuil <hverkuil@xs4all.nl>
9172 L:      linux-media@vger.kernel.org
9173 T:      git git://linuxtv.org/media_tree.git
9174 W:      https://linuxtv.org
9175 S:      Maintained
9176 F:      drivers/media/radio/radio-keene*
9177
9178 KERNEL AUTOMOUNTER
9179 M:      Ian Kent <raven@themaw.net>
9180 L:      autofs@vger.kernel.org
9181 S:      Maintained
9182 F:      fs/autofs/
9183
9184 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
9185 M:      Masahiro Yamada <masahiroy@kernel.org>
9186 M:      Michal Marek <michal.lkml@markovi.net>
9187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
9188 L:      linux-kbuild@vger.kernel.org
9189 S:      Maintained
9190 F:      Documentation/kbuild/
9191 F:      Makefile
9192 F:      scripts/Kbuild*
9193 F:      scripts/Makefile*
9194 F:      scripts/basic/
9195 F:      scripts/mk*
9196 F:      scripts/*vmlinux*
9197 F:      scripts/mod/
9198 F:      scripts/package/
9199
9200 KERNEL JANITORS
9201 L:      kernel-janitors@vger.kernel.org
9202 W:      http://kernelnewbies.org/KernelJanitors
9203 S:      Odd Fixes
9204
9205 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
9206 M:      "J. Bruce Fields" <bfields@fieldses.org>
9207 M:      Chuck Lever <chuck.lever@oracle.com>
9208 L:      linux-nfs@vger.kernel.org
9209 W:      http://nfs.sourceforge.net/
9210 T:      git git://linux-nfs.org/~bfields/linux.git
9211 S:      Supported
9212 F:      fs/nfsd/
9213 F:      include/uapi/linux/nfsd/
9214 F:      fs/lockd/
9215 F:      fs/nfs_common/
9216 F:      net/sunrpc/
9217 F:      include/linux/lockd/
9218 F:      include/linux/sunrpc/
9219 F:      include/uapi/linux/sunrpc/
9220
9221 KERNEL SELFTEST FRAMEWORK
9222 M:      Shuah Khan <shuah@kernel.org>
9223 M:      Shuah Khan <skhan@linuxfoundation.org>
9224 L:      linux-kselftest@vger.kernel.org
9225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
9226 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
9227 S:      Maintained
9228 F:      tools/testing/selftests/
9229 F:      Documentation/dev-tools/kselftest*
9230
9231 KERNEL UNIT TESTING FRAMEWORK (KUnit)
9232 M:      Brendan Higgins <brendanhiggins@google.com>
9233 L:      linux-kselftest@vger.kernel.org
9234 L:      kunit-dev@googlegroups.com
9235 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
9236 S:      Maintained
9237 F:      Documentation/dev-tools/kunit/
9238 F:      include/kunit/
9239 F:      lib/kunit/
9240 F:      tools/testing/kunit/
9241
9242 KERNEL USERMODE HELPER
9243 M:      Luis Chamberlain <mcgrof@kernel.org>
9244 L:      linux-kernel@vger.kernel.org
9245 S:      Maintained
9246 F:      kernel/umh.c
9247 F:      include/linux/umh.h
9248
9249 KERNEL VIRTUAL MACHINE (KVM)
9250 M:      Paolo Bonzini <pbonzini@redhat.com>
9251 L:      kvm@vger.kernel.org
9252 W:      http://www.linux-kvm.org
9253 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9254 S:      Supported
9255 F:      Documentation/virt/kvm/
9256 F:      include/trace/events/kvm.h
9257 F:      include/uapi/asm-generic/kvm*
9258 F:      include/uapi/linux/kvm*
9259 F:      include/asm-generic/kvm*
9260 F:      include/linux/kvm*
9261 F:      include/kvm/iodev.h
9262 F:      virt/kvm/*
9263 F:      tools/kvm/
9264 F:      tools/testing/selftests/kvm/
9265
9266 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
9267 M:      Marc Zyngier <maz@kernel.org>
9268 R:      James Morse <james.morse@arm.com>
9269 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
9270 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
9271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9272 L:      kvmarm@lists.cs.columbia.edu
9273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
9274 S:      Maintained
9275 F:      arch/arm64/include/uapi/asm/kvm*
9276 F:      arch/arm64/include/asm/kvm*
9277 F:      arch/arm64/kvm/
9278 F:      virt/kvm/arm/
9279 F:      include/kvm/arm_*
9280
9281 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
9282 L:      linux-mips@vger.kernel.org
9283 L:      kvm@vger.kernel.org
9284 S:      Orphan
9285 F:      arch/mips/include/uapi/asm/kvm*
9286 F:      arch/mips/include/asm/kvm*
9287 F:      arch/mips/kvm/
9288
9289 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
9290 M:      Paul Mackerras <paulus@ozlabs.org>
9291 L:      kvm-ppc@vger.kernel.org
9292 W:      http://www.linux-kvm.org/
9293 T:      git git://github.com/agraf/linux-2.6.git
9294 S:      Supported
9295 F:      arch/powerpc/include/uapi/asm/kvm*
9296 F:      arch/powerpc/include/asm/kvm*
9297 F:      arch/powerpc/kvm/
9298 F:      arch/powerpc/kernel/kvm*
9299
9300 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9301 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9302 M:      Janosch Frank <frankja@linux.ibm.com>
9303 R:      David Hildenbrand <david@redhat.com>
9304 R:      Cornelia Huck <cohuck@redhat.com>
9305 L:      kvm@vger.kernel.org
9306 W:      http://www.ibm.com/developerworks/linux/linux390/
9307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9308 S:      Supported
9309 F:      Documentation/virt/kvm/s390*
9310 F:      arch/s390/include/uapi/asm/kvm*
9311 F:      arch/s390/include/asm/gmap.h
9312 F:      arch/s390/include/asm/kvm*
9313 F:      arch/s390/kvm/
9314 F:      arch/s390/mm/gmap.c
9315 F:      tools/testing/selftests/kvm/s390x/
9316 F:      tools/testing/selftests/kvm/*/s390x/
9317
9318 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9319 M:      Paolo Bonzini <pbonzini@redhat.com>
9320 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9321 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9322 R:      Wanpeng Li <wanpengli@tencent.com>
9323 R:      Jim Mattson <jmattson@google.com>
9324 R:      Joerg Roedel <joro@8bytes.org>
9325 L:      kvm@vger.kernel.org
9326 W:      http://www.linux-kvm.org
9327 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9328 S:      Supported
9329 F:      arch/x86/kvm/
9330 F:      arch/x86/kvm/*/
9331 F:      arch/x86/include/uapi/asm/kvm*
9332 F:      arch/x86/include/uapi/asm/vmx.h
9333 F:      arch/x86/include/uapi/asm/svm.h
9334 F:      arch/x86/include/asm/kvm*
9335 F:      arch/x86/include/asm/pvclock-abi.h
9336 F:      arch/x86/include/asm/svm.h
9337 F:      arch/x86/include/asm/vmx*.h
9338 F:      arch/x86/kernel/kvm.c
9339 F:      arch/x86/kernel/kvmclock.c
9340
9341 KERNFS
9342 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9343 M:      Tejun Heo <tj@kernel.org>
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9345 S:      Supported
9346 F:      include/linux/kernfs.h
9347 F:      fs/kernfs/
9348
9349 KEXEC
9350 M:      Eric Biederman <ebiederm@xmission.com>
9351 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9352 L:      kexec@lists.infradead.org
9353 S:      Maintained
9354 F:      include/linux/kexec.h
9355 F:      include/uapi/linux/kexec.h
9356 F:      kernel/kexec*
9357
9358 KEYS-ENCRYPTED
9359 M:      Mimi Zohar <zohar@linux.ibm.com>
9360 L:      linux-integrity@vger.kernel.org
9361 L:      keyrings@vger.kernel.org
9362 S:      Supported
9363 F:      Documentation/security/keys/trusted-encrypted.rst
9364 F:      include/keys/encrypted-type.h
9365 F:      security/keys/encrypted-keys/
9366
9367 KEYS-TRUSTED
9368 M:      James Bottomley <jejb@linux.ibm.com>
9369 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9370 M:      Mimi Zohar <zohar@linux.ibm.com>
9371 L:      linux-integrity@vger.kernel.org
9372 L:      keyrings@vger.kernel.org
9373 S:      Supported
9374 F:      Documentation/security/keys/trusted-encrypted.rst
9375 F:      include/keys/trusted-type.h
9376 F:      include/keys/trusted_tpm.h
9377 F:      security/keys/trusted-keys/
9378
9379 KEYS/KEYRINGS
9380 M:      David Howells <dhowells@redhat.com>
9381 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9382 L:      keyrings@vger.kernel.org
9383 S:      Maintained
9384 F:      Documentation/security/keys/core.rst
9385 F:      include/linux/key.h
9386 F:      include/linux/key-type.h
9387 F:      include/linux/keyctl.h
9388 F:      include/uapi/linux/keyctl.h
9389 F:      include/keys/
9390 F:      security/keys/
9391
9392 KGDB / KDB /debug_core
9393 M:      Jason Wessel <jason.wessel@windriver.com>
9394 M:      Daniel Thompson <daniel.thompson@linaro.org>
9395 R:      Douglas Anderson <dianders@chromium.org>
9396 W:      http://kgdb.wiki.kernel.org/
9397 L:      kgdb-bugreport@lists.sourceforge.net
9398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9399 S:      Maintained
9400 F:      Documentation/dev-tools/kgdb.rst
9401 F:      drivers/misc/kgdbts.c
9402 F:      drivers/tty/serial/kgdboc.c
9403 F:      include/linux/kdb.h
9404 F:      include/linux/kgdb.h
9405 F:      kernel/debug/
9406
9407 KMEMLEAK
9408 M:      Catalin Marinas <catalin.marinas@arm.com>
9409 S:      Maintained
9410 F:      Documentation/dev-tools/kmemleak.rst
9411 F:      include/linux/kmemleak.h
9412 F:      mm/kmemleak.c
9413 F:      mm/kmemleak-test.c
9414
9415 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9416 M:      Luis Chamberlain <mcgrof@kernel.org>
9417 L:      linux-kernel@vger.kernel.org
9418 S:      Maintained
9419 F:      kernel/kmod.c
9420 F:      include/linux/kmod.h
9421 F:      lib/test_kmod.c
9422 F:      tools/testing/selftests/kmod/
9423
9424 KPROBES
9425 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9426 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9427 M:      "David S. Miller" <davem@davemloft.net>
9428 M:      Masami Hiramatsu <mhiramat@kernel.org>
9429 S:      Maintained
9430 F:      Documentation/kprobes.txt
9431 F:      include/linux/kprobes.h
9432 F:      include/asm-generic/kprobes.h
9433 F:      kernel/kprobes.c
9434
9435 KS0108 LCD CONTROLLER DRIVER
9436 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9437 S:      Maintained
9438 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9439 F:      drivers/auxdisplay/ks0108.c
9440 F:      include/linux/ks0108.h
9441
9442 L3MDEV
9443 M:      David Ahern <dsahern@kernel.org>
9444 L:      netdev@vger.kernel.org
9445 S:      Maintained
9446 F:      net/l3mdev
9447 F:      include/net/l3mdev.h
9448
9449 L7 BPF FRAMEWORK
9450 M:      John Fastabend <john.fastabend@gmail.com>
9451 M:      Daniel Borkmann <daniel@iogearbox.net>
9452 M:      Jakub Sitnicki <jakub@cloudflare.com>
9453 M:      Lorenz Bauer <lmb@cloudflare.com>
9454 L:      netdev@vger.kernel.org
9455 L:      bpf@vger.kernel.org
9456 S:      Maintained
9457 F:      include/linux/skmsg.h
9458 F:      net/core/skmsg.c
9459 F:      net/core/sock_map.c
9460 F:      net/ipv4/tcp_bpf.c
9461 F:      net/ipv4/udp_bpf.c
9462
9463 LANTIQ / INTEL Ethernet drivers
9464 M:      Hauke Mehrtens <hauke@hauke-m.de>
9465 L:      netdev@vger.kernel.org
9466 S:      Maintained
9467 F:      net/dsa/tag_gswip.c
9468 F:      drivers/net/ethernet/lantiq_xrx200.c
9469 F:      drivers/net/dsa/lantiq_pce.h
9470 F:      drivers/net/dsa/lantiq_gswip.c
9471
9472 LANTIQ MIPS ARCHITECTURE
9473 M:      John Crispin <john@phrozen.org>
9474 L:      linux-mips@vger.kernel.org
9475 S:      Maintained
9476 F:      arch/mips/lantiq
9477 F:      drivers/soc/lantiq
9478
9479 LAPB module
9480 L:      linux-x25@vger.kernel.org
9481 S:      Orphan
9482 F:      Documentation/networking/lapb-module.txt
9483 F:      include/*/lapb.h
9484 F:      net/lapb/
9485
9486 LASI 53c700 driver for PARISC
9487 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9488 L:      linux-scsi@vger.kernel.org
9489 S:      Maintained
9490 F:      Documentation/scsi/53c700.rst
9491 F:      drivers/scsi/53c700*
9492
9493 LEAKING_ADDRESSES
9494 M:      Tobin C. Harding <me@tobin.cc>
9495 M:      Tycho Andersen <tycho@tycho.ws>
9496 L:      kernel-hardening@lists.openwall.com
9497 S:      Maintained
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9499 F:      scripts/leaking_addresses.pl
9500
9501 LED SUBSYSTEM
9502 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9503 M:      Pavel Machek <pavel@ucw.cz>
9504 R:      Dan Murphy <dmurphy@ti.com>
9505 L:      linux-leds@vger.kernel.org
9506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9508 S:      Maintained
9509 F:      Documentation/devicetree/bindings/leds/
9510 F:      drivers/leds/
9511 F:      include/linux/leds.h
9512
9513 LEGACY EEPROM DRIVER
9514 M:      Jean Delvare <jdelvare@suse.com>
9515 S:      Maintained
9516 F:      Documentation/misc-devices/eeprom.rst
9517 F:      drivers/misc/eeprom/eeprom.c
9518
9519 LEGO MINDSTORMS EV3
9520 R:      David Lechner <david@lechnology.com>
9521 S:      Maintained
9522 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9523 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9524 F:      drivers/power/supply/lego_ev3_battery.c
9525
9526 LEGO USB Tower driver
9527 M:      Juergen Stuber <starblue@users.sourceforge.net>
9528 L:      legousb-devel@lists.sourceforge.net
9529 W:      http://legousb.sourceforge.net/
9530 S:      Maintained
9531 F:      drivers/usb/misc/legousbtower.c
9532
9533 LG LAPTOP EXTRAS
9534 M:      Matan Ziv-Av <matan@svgalib.org>
9535 L:      platform-driver-x86@vger.kernel.org
9536 S:      Maintained
9537 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9538 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9539 F:      drivers/platform/x86/lg-laptop.c
9540
9541 LG2160 MEDIA DRIVER
9542 M:      Michael Krufky <mkrufky@linuxtv.org>
9543 L:      linux-media@vger.kernel.org
9544 W:      https://linuxtv.org
9545 W:      http://github.com/mkrufky
9546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9547 T:      git git://linuxtv.org/mkrufky/tuners.git
9548 S:      Maintained
9549 F:      drivers/media/dvb-frontends/lg2160.*
9550
9551 LGDT3305 MEDIA DRIVER
9552 M:      Michael Krufky <mkrufky@linuxtv.org>
9553 L:      linux-media@vger.kernel.org
9554 W:      https://linuxtv.org
9555 W:      http://github.com/mkrufky
9556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9557 T:      git git://linuxtv.org/mkrufky/tuners.git
9558 S:      Maintained
9559 F:      drivers/media/dvb-frontends/lgdt3305.*
9560
9561 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9562 M:      Viresh Kumar <vireshk@kernel.org>
9563 L:      linux-ide@vger.kernel.org
9564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9565 S:      Maintained
9566 F:      include/linux/pata_arasan_cf_data.h
9567 F:      drivers/ata/pata_arasan_cf.c
9568
9569 LIBATA PATA DRIVERS
9570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9571 M:      Jens Axboe <axboe@kernel.dk>
9572 L:      linux-ide@vger.kernel.org
9573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9574 S:      Maintained
9575 F:      drivers/ata/pata_*.c
9576 F:      drivers/ata/ata_generic.c
9577
9578 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9579 M:      Linus Walleij <linus.walleij@linaro.org>
9580 L:      linux-ide@vger.kernel.org
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9582 S:      Maintained
9583 F:      drivers/ata/pata_ftide010.c
9584 F:      drivers/ata/sata_gemini.c
9585 F:      drivers/ata/sata_gemini.h
9586
9587 LIBATA SATA AHCI PLATFORM devices support
9588 M:      Hans de Goede <hdegoede@redhat.com>
9589 M:      Jens Axboe <axboe@kernel.dk>
9590 L:      linux-ide@vger.kernel.org
9591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9592 S:      Maintained
9593 F:      drivers/ata/ahci_platform.c
9594 F:      drivers/ata/libahci_platform.c
9595 F:      include/linux/ahci_platform.h
9596
9597 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9598 M:      Mikael Pettersson <mikpelinux@gmail.com>
9599 L:      linux-ide@vger.kernel.org
9600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9601 S:      Maintained
9602 F:      drivers/ata/sata_promise.*
9603
9604 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9605 M:      Jens Axboe <axboe@kernel.dk>
9606 L:      linux-ide@vger.kernel.org
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9608 S:      Maintained
9609 F:      drivers/ata/
9610 F:      include/linux/ata.h
9611 F:      include/linux/libata.h
9612 F:      Documentation/devicetree/bindings/ata/
9613
9614 LIBLOCKDEP
9615 M:      Sasha Levin <alexander.levin@microsoft.com>
9616 S:      Maintained
9617 F:      tools/lib/lockdep/
9618
9619 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9620 M:      Dan Williams <dan.j.williams@intel.com>
9621 M:      Vishal Verma <vishal.l.verma@intel.com>
9622 M:      Dave Jiang <dave.jiang@intel.com>
9623 L:      linux-nvdimm@lists.01.org
9624 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9625 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9626 S:      Supported
9627 F:      drivers/nvdimm/blk.c
9628 F:      drivers/nvdimm/region_devs.c
9629
9630 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9631 M:      Vishal Verma <vishal.l.verma@intel.com>
9632 M:      Dan Williams <dan.j.williams@intel.com>
9633 M:      Dave Jiang <dave.jiang@intel.com>
9634 L:      linux-nvdimm@lists.01.org
9635 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9636 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9637 S:      Supported
9638 F:      drivers/nvdimm/btt*
9639
9640 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9641 M:      Dan Williams <dan.j.williams@intel.com>
9642 M:      Vishal Verma <vishal.l.verma@intel.com>
9643 M:      Dave Jiang <dave.jiang@intel.com>
9644 L:      linux-nvdimm@lists.01.org
9645 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9646 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9647 S:      Supported
9648 F:      drivers/nvdimm/pmem*
9649
9650 LIBNVDIMM: DEVICETREE BINDINGS
9651 M:      Oliver O'Halloran <oohall@gmail.com>
9652 L:      linux-nvdimm@lists.01.org
9653 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9654 S:      Supported
9655 F:      drivers/nvdimm/of_pmem.c
9656 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9657
9658 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9659 M:      Dan Williams <dan.j.williams@intel.com>
9660 M:      Vishal Verma <vishal.l.verma@intel.com>
9661 M:      Dave Jiang <dave.jiang@intel.com>
9662 M:      Ira Weiny <ira.weiny@intel.com>
9663 L:      linux-nvdimm@lists.01.org
9664 P:      Documentation/nvdimm/maintainer-entry-profile.rst
9665 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9667 S:      Supported
9668 F:      drivers/nvdimm/*
9669 F:      drivers/acpi/nfit/*
9670 F:      include/linux/nd.h
9671 F:      include/linux/libnvdimm.h
9672 F:      include/uapi/linux/ndctl.h
9673 F:      tools/testing/nvdimm/
9674
9675 LICENSES and SPDX stuff
9676 M:      Thomas Gleixner <tglx@linutronix.de>
9677 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9678 L:      linux-spdx@vger.kernel.org
9679 S:      Maintained
9680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9681 F:      COPYING
9682 F:      Documentation/process/license-rules.rst
9683 F:      LICENSES/
9684 F:      scripts/spdxcheck-test.sh
9685 F:      scripts/spdxcheck.py
9686
9687 LIGHTNVM PLATFORM SUPPORT
9688 M:      Matias Bjorling <mb@lightnvm.io>
9689 W:      http://github/OpenChannelSSD
9690 L:      linux-block@vger.kernel.org
9691 S:      Maintained
9692 F:      drivers/lightnvm/
9693 F:      include/linux/lightnvm.h
9694 F:      include/uapi/linux/lightnvm.h
9695
9696 LINUX FOR POWER MACINTOSH
9697 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9698 L:      linuxppc-dev@lists.ozlabs.org
9699 S:      Odd Fixes
9700 F:      arch/powerpc/platforms/powermac/
9701 F:      drivers/macintosh/
9702
9703 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9704 M:      Michael Ellerman <mpe@ellerman.id.au>
9705 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9706 R:      Paul Mackerras <paulus@samba.org>
9707 W:      https://github.com/linuxppc/wiki/wiki
9708 L:      linuxppc-dev@lists.ozlabs.org
9709 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9711 S:      Supported
9712 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9713 F:      Documentation/devicetree/bindings/powerpc/
9714 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9715 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9716 F:      Documentation/powerpc/
9717 F:      arch/powerpc/
9718 F:      drivers/char/tpm/tpm_ibmvtpm*
9719 F:      drivers/crypto/nx/
9720 F:      drivers/crypto/vmx/
9721 F:      drivers/i2c/busses/i2c-opal.c
9722 F:      drivers/net/ethernet/ibm/ibmveth.*
9723 F:      drivers/net/ethernet/ibm/ibmvnic.*
9724 F:      drivers/*/*/*pasemi*
9725 F:      drivers/*/*pasemi*
9726 F:      drivers/pci/hotplug/pnv_php.c
9727 F:      drivers/pci/hotplug/rpa*
9728 F:      drivers/rtc/rtc-opal.c
9729 F:      drivers/scsi/ibmvscsi/
9730 F:      drivers/tty/hvc/hvc_opal.c
9731 F:      drivers/watchdog/wdrtas.c
9732 F:      tools/testing/selftests/powerpc
9733 N:      /pmac
9734 N:      powermac
9735 N:      powernv
9736 N:      [^a-z0-9]ps3
9737 N:      pseries
9738
9739 LINUX FOR POWERPC EMBEDDED MPC5XXX
9740 M:      Anatolij Gustschin <agust@denx.de>
9741 L:      linuxppc-dev@lists.ozlabs.org
9742 S:      Odd Fixes
9743 F:      arch/powerpc/platforms/512x/
9744 F:      arch/powerpc/platforms/52xx/
9745
9746 LINUX FOR POWERPC EMBEDDED PPC4XX
9747 L:      linuxppc-dev@lists.ozlabs.org
9748 S:      Orphan
9749 F:      arch/powerpc/platforms/40x/
9750 F:      arch/powerpc/platforms/44x/
9751
9752 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9753 M:      Scott Wood <oss@buserror.net>
9754 L:      linuxppc-dev@lists.ozlabs.org
9755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9756 S:      Odd fixes
9757 F:      arch/powerpc/platforms/83xx/
9758 F:      arch/powerpc/platforms/85xx/
9759 F:      Documentation/devicetree/bindings/powerpc/fsl/
9760
9761 LINUX FOR POWERPC EMBEDDED PPC8XX
9762 M:      Christophe Leroy <christophe.leroy@c-s.fr>
9763 L:      linuxppc-dev@lists.ozlabs.org
9764 S:      Maintained
9765 F:      arch/powerpc/platforms/8xx/
9766
9767 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9768 M:      Kees Cook <keescook@chromium.org>
9769 S:      Maintained
9770 F:      drivers/misc/lkdtm/*
9771 F:      tools/testing/selftests/lkdtm/*
9772
9773 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9774 M:      Alan Stern <stern@rowland.harvard.edu>
9775 M:      Andrea Parri <parri.andrea@gmail.com>
9776 M:      Will Deacon <will@kernel.org>
9777 M:      Peter Zijlstra <peterz@infradead.org>
9778 M:      Boqun Feng <boqun.feng@gmail.com>
9779 M:      Nicholas Piggin <npiggin@gmail.com>
9780 M:      David Howells <dhowells@redhat.com>
9781 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9782 M:      Luc Maranget <luc.maranget@inria.fr>
9783 M:      "Paul E. McKenney" <paulmck@kernel.org>
9784 R:      Akira Yokosawa <akiyks@gmail.com>
9785 R:      Daniel Lustig <dlustig@nvidia.com>
9786 L:      linux-kernel@vger.kernel.org
9787 L:      linux-arch@vger.kernel.org
9788 S:      Supported
9789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9790 F:      tools/memory-model/
9791 F:      Documentation/atomic_bitops.txt
9792 F:      Documentation/atomic_t.txt
9793 F:      Documentation/core-api/atomic_ops.rst
9794 F:      Documentation/core-api/refcount-vs-atomic.rst
9795 F:      Documentation/memory-barriers.txt
9796
9797 LIS3LV02D ACCELEROMETER DRIVER
9798 M:      Eric Piel <eric.piel@tremplin-utc.net>
9799 S:      Maintained
9800 F:      Documentation/misc-devices/lis3lv02d.rst
9801 F:      drivers/misc/lis3lv02d/
9802 F:      drivers/platform/x86/hp_accel.c
9803
9804 LIST KUNIT TEST
9805 M:      David Gow <davidgow@google.com>
9806 L:      linux-kselftest@vger.kernel.org
9807 L:      kunit-dev@googlegroups.com
9808 S:      Maintained
9809 F:      lib/list-test.c
9810
9811 LIVE PATCHING
9812 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9813 M:      Jiri Kosina <jikos@kernel.org>
9814 M:      Miroslav Benes <mbenes@suse.cz>
9815 M:      Petr Mladek <pmladek@suse.com>
9816 R:      Joe Lawrence <joe.lawrence@redhat.com>
9817 S:      Maintained
9818 F:      kernel/livepatch/
9819 F:      include/linux/livepatch.h
9820 F:      arch/x86/include/asm/livepatch.h
9821 F:      arch/x86/kernel/livepatch.c
9822 F:      Documentation/livepatch/
9823 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9824 F:      samples/livepatch/
9825 F:      tools/testing/selftests/livepatch/
9826 L:      live-patching@vger.kernel.org
9827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9828
9829 LLC (802.2)
9830 L:      netdev@vger.kernel.org
9831 S:      Odd fixes
9832 F:      include/linux/llc.h
9833 F:      include/uapi/linux/llc.h
9834 F:      include/net/llc*
9835 F:      net/llc/
9836
9837 LM73 HARDWARE MONITOR DRIVER
9838 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9839 L:      linux-hwmon@vger.kernel.org
9840 S:      Maintained
9841 F:      drivers/hwmon/lm73.c
9842
9843 LM78 HARDWARE MONITOR DRIVER
9844 M:      Jean Delvare <jdelvare@suse.com>
9845 L:      linux-hwmon@vger.kernel.org
9846 S:      Maintained
9847 F:      Documentation/hwmon/lm78.rst
9848 F:      drivers/hwmon/lm78.c
9849
9850 LM83 HARDWARE MONITOR DRIVER
9851 M:      Jean Delvare <jdelvare@suse.com>
9852 L:      linux-hwmon@vger.kernel.org
9853 S:      Maintained
9854 F:      Documentation/hwmon/lm83.rst
9855 F:      drivers/hwmon/lm83.c
9856
9857 LM90 HARDWARE MONITOR DRIVER
9858 M:      Jean Delvare <jdelvare@suse.com>
9859 L:      linux-hwmon@vger.kernel.org
9860 S:      Maintained
9861 F:      Documentation/hwmon/lm90.rst
9862 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9863 F:      drivers/hwmon/lm90.c
9864 F:      include/dt-bindings/thermal/lm90.h
9865
9866 LM95234 HARDWARE MONITOR DRIVER
9867 M:      Guenter Roeck <linux@roeck-us.net>
9868 L:      linux-hwmon@vger.kernel.org
9869 S:      Maintained
9870 F:      Documentation/hwmon/lm95234.rst
9871 F:      drivers/hwmon/lm95234.c
9872
9873 LME2510 MEDIA DRIVER
9874 M:      Malcolm Priestley <tvboxspy@gmail.com>
9875 L:      linux-media@vger.kernel.org
9876 W:      https://linuxtv.org
9877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9878 S:      Maintained
9879 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9880
9881 LOADPIN SECURITY MODULE
9882 M:      Kees Cook <keescook@chromium.org>
9883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9884 S:      Supported
9885 F:      security/loadpin/
9886 F:      Documentation/admin-guide/LSM/LoadPin.rst
9887
9888 LOCKING PRIMITIVES
9889 M:      Peter Zijlstra <peterz@infradead.org>
9890 M:      Ingo Molnar <mingo@redhat.com>
9891 M:      Will Deacon <will@kernel.org>
9892 L:      linux-kernel@vger.kernel.org
9893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9894 S:      Maintained
9895 F:      Documentation/locking/
9896 F:      include/linux/lockdep.h
9897 F:      include/linux/spinlock*.h
9898 F:      arch/*/include/asm/spinlock*.h
9899 F:      include/linux/rwlock*.h
9900 F:      include/linux/mutex*.h
9901 F:      include/linux/rwsem*.h
9902 F:      include/linux/seqlock.h
9903 F:      lib/locking*.[ch]
9904 F:      kernel/locking/
9905 X:      kernel/locking/locktorture.c
9906
9907 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9908 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9909 L:      linux-ntfs-dev@lists.sourceforge.net
9910 W:      http://www.linux-ntfs.org/content/view/19/37/
9911 S:      Maintained
9912 F:      Documentation/admin-guide/ldm.rst
9913 F:      block/partitions/ldm.*
9914
9915 LOGITECH HID GAMING KEYBOARDS
9916 M:      Hans de Goede <hdegoede@redhat.com>
9917 L:      linux-input@vger.kernel.org
9918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9919 S:      Maintained
9920 F:      drivers/hid/hid-lg-g15.c
9921
9922 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9923 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9924 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9925 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9926 L:      MPT-FusionLinux.pdl@broadcom.com
9927 L:      linux-scsi@vger.kernel.org
9928 W:      http://www.avagotech.com/support/
9929 S:      Supported
9930 F:      drivers/message/fusion/
9931 F:      drivers/scsi/mpt3sas/
9932
9933 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9934 M:      Matthew Wilcox <willy@infradead.org>
9935 L:      linux-scsi@vger.kernel.org
9936 S:      Maintained
9937 F:      drivers/scsi/sym53c8xx_2/
9938
9939 LTC1660 DAC DRIVER
9940 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9941 L:      linux-iio@vger.kernel.org
9942 S:      Maintained
9943 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9944 F:      drivers/iio/dac/ltc1660.c
9945
9946 LTC2983 IIO TEMPERATURE DRIVER
9947 M:      Nuno Sá <nuno.sa@analog.com>
9948 W:      http://ez.analog.com/community/linux-device-drivers
9949 L:      linux-iio@vger.kernel.org
9950 S:      Supported
9951 F:      drivers/iio/temperature/ltc2983.c
9952 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9953
9954 LTC4261 HARDWARE MONITOR DRIVER
9955 M:      Guenter Roeck <linux@roeck-us.net>
9956 L:      linux-hwmon@vger.kernel.org
9957 S:      Maintained
9958 F:      Documentation/hwmon/ltc4261.rst
9959 F:      drivers/hwmon/ltc4261.c
9960
9961 LTC2947 HARDWARE MONITOR DRIVER
9962 M:      Nuno Sá <nuno.sa@analog.com>
9963 W:      http://ez.analog.com/community/linux-device-drivers
9964 L:      linux-hwmon@vger.kernel.org
9965 S:      Supported
9966 F:      drivers/hwmon/ltc2947-core.c
9967 F:      drivers/hwmon/ltc2947-spi.c
9968 F:      drivers/hwmon/ltc2947-i2c.c
9969 F:      drivers/hwmon/ltc2947.h
9970 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9971
9972 LTC4306 I2C MULTIPLEXER DRIVER
9973 M:      Michael Hennerich <michael.hennerich@analog.com>
9974 W:      http://ez.analog.com/community/linux-device-drivers
9975 L:      linux-i2c@vger.kernel.org
9976 S:      Supported
9977 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9978 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9979
9980 LTP (Linux Test Project)
9981 M:      Mike Frysinger <vapier@gentoo.org>
9982 M:      Cyril Hrubis <chrubis@suse.cz>
9983 M:      Wanlong Gao <wanlong.gao@gmail.com>
9984 M:      Jan Stancek <jstancek@redhat.com>
9985 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9986 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9987 L:      ltp@lists.linux.it (subscribers-only)
9988 W:      http://linux-test-project.github.io/
9989 T:      git git://github.com/linux-test-project/ltp.git
9990 S:      Maintained
9991
9992 M68K ARCHITECTURE
9993 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9994 L:      linux-m68k@lists.linux-m68k.org
9995 W:      http://www.linux-m68k.org/
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9997 S:      Maintained
9998 F:      arch/m68k/
9999 F:      drivers/zorro/
10000
10001 M68K ON APPLE MACINTOSH
10002 M:      Joshua Thompson <funaho@jurai.org>
10003 W:      http://www.mac.linux-m68k.org/
10004 L:      linux-m68k@lists.linux-m68k.org
10005 S:      Maintained
10006 F:      arch/m68k/mac/
10007
10008 M68K ON HP9000/300
10009 M:      Philip Blundell <philb@gnu.org>
10010 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10011 S:      Maintained
10012 F:      arch/m68k/hp300/
10013
10014 M88DS3103 MEDIA DRIVER
10015 M:      Antti Palosaari <crope@iki.fi>
10016 L:      linux-media@vger.kernel.org
10017 W:      https://linuxtv.org
10018 W:      http://palosaari.fi/linux/
10019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10020 T:      git git://linuxtv.org/anttip/media_tree.git
10021 S:      Maintained
10022 F:      drivers/media/dvb-frontends/m88ds3103*
10023
10024 M88RS2000 MEDIA DRIVER
10025 M:      Malcolm Priestley <tvboxspy@gmail.com>
10026 L:      linux-media@vger.kernel.org
10027 W:      https://linuxtv.org
10028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10029 S:      Maintained
10030 F:      drivers/media/dvb-frontends/m88rs2000*
10031
10032 MA901 MASTERKIT USB FM RADIO DRIVER
10033 M:      Alexey Klimov <klimov.linux@gmail.com>
10034 L:      linux-media@vger.kernel.org
10035 T:      git git://linuxtv.org/media_tree.git
10036 S:      Maintained
10037 F:      drivers/media/radio/radio-ma901.c
10038
10039 MAC80211
10040 M:      Johannes Berg <johannes@sipsolutions.net>
10041 L:      linux-wireless@vger.kernel.org
10042 W:      http://wireless.kernel.org/
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10045 S:      Maintained
10046 F:      Documentation/networking/mac80211-injection.txt
10047 F:      include/net/mac80211.h
10048 F:      net/mac80211/
10049 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10050 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10051
10052 MAILBOX API
10053 M:      Jassi Brar <jassisinghbrar@gmail.com>
10054 L:      linux-kernel@vger.kernel.org
10055 S:      Maintained
10056 F:      drivers/mailbox/
10057 F:      include/linux/mailbox_client.h
10058 F:      include/linux/mailbox_controller.h
10059
10060 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10061 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10062 W:      http://www.kernel.org/doc/man-pages
10063 L:      linux-man@vger.kernel.org
10064 S:      Maintained
10065
10066 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10067 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10068 L:      linux-mips@vger.kernel.org
10069 S:      Maintained
10070 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10071
10072 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10073 M:      Andrew Lunn <andrew@lunn.ch>
10074 M:      Vivien Didelot <vivien.didelot@gmail.com>
10075 L:      netdev@vger.kernel.org
10076 S:      Maintained
10077 F:      drivers/net/dsa/mv88e6xxx/
10078 F:      include/linux/platform_data/mv88e6xxx.h
10079 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10080 F:      Documentation/networking/devlink/mv88e6xxx.rst
10081
10082 MARVELL ARMADA DRM SUPPORT
10083 M:      Russell King <linux@armlinux.org.uk>
10084 S:      Maintained
10085 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10086 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10087 F:      drivers/gpu/drm/armada/
10088 F:      include/uapi/drm/armada_drm.h
10089 F:      Documentation/devicetree/bindings/display/armada/
10090
10091 MARVELL ARMADA 3700 PHY DRIVERS
10092 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10093 S:      Maintained
10094 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10095 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10096 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10097 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10098
10099 MARVELL CRYPTO DRIVER
10100 M:      Boris Brezillon <bbrezillon@kernel.org>
10101 M:      Arnaud Ebalard <arno@natisbad.org>
10102 M:      Srujana Challa <schalla@marvell.com>
10103 F:      drivers/crypto/marvell/
10104 S:      Maintained
10105 L:      linux-crypto@vger.kernel.org
10106
10107 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10108 M:      Mirko Lindner <mlindner@marvell.com>
10109 M:      Stephen Hemminger <stephen@networkplumber.org>
10110 L:      netdev@vger.kernel.org
10111 S:      Maintained
10112 F:      drivers/net/ethernet/marvell/sk*
10113
10114 MARVELL LIBERTAS WIRELESS DRIVER
10115 L:      libertas-dev@lists.infradead.org
10116 S:      Orphan
10117 F:      drivers/net/wireless/marvell/libertas/
10118
10119 MARVELL MACCHIATOBIN SUPPORT
10120 M:      Russell King <linux@armlinux.org.uk>
10121 L:      linux-arm-kernel@lists.infradead.org
10122 S:      Maintained
10123 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10124
10125 MARVELL MV643XX ETHERNET DRIVER
10126 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10127 L:      netdev@vger.kernel.org
10128 S:      Maintained
10129 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10130 F:      include/linux/mv643xx.h
10131
10132 MARVELL MV88X3310 PHY DRIVER
10133 M:      Russell King <linux@armlinux.org.uk>
10134 L:      netdev@vger.kernel.org
10135 S:      Maintained
10136 F:      drivers/net/phy/marvell10g.c
10137
10138 MARVELL MVEBU THERMAL DRIVER
10139 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10140 S:      Maintained
10141 F:      drivers/thermal/armada_thermal.c
10142
10143 MARVELL MVNETA ETHERNET DRIVER
10144 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10145 L:      netdev@vger.kernel.org
10146 S:      Maintained
10147 F:      drivers/net/ethernet/marvell/mvneta.*
10148
10149 MARVELL MWIFIEX WIRELESS DRIVER
10150 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10151 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10152 M:      Xinming Hu <huxinming820@gmail.com>
10153 L:      linux-wireless@vger.kernel.org
10154 S:      Maintained
10155 F:      drivers/net/wireless/marvell/mwifiex/
10156
10157 MARVELL MWL8K WIRELESS DRIVER
10158 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10159 L:      linux-wireless@vger.kernel.org
10160 S:      Odd Fixes
10161 F:      drivers/net/wireless/marvell/mwl8k.c
10162
10163 MARVELL NAND CONTROLLER DRIVER
10164 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10165 L:      linux-mtd@lists.infradead.org
10166 S:      Maintained
10167 F:      drivers/mtd/nand/raw/marvell_nand.c
10168 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10169
10170 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10171 M:      Nicolas Pitre <nico@fluxnic.net>
10172 S:      Odd Fixes
10173 F:      drivers/mmc/host/mvsdio.*
10174
10175 MARVELL USB MDIO CONTROLLER DRIVER
10176 M:      Tobias Waldekranz <tobias@waldekranz.com>
10177 L:      netdev@vger.kernel.org
10178 S:      Maintained
10179 F:      drivers/net/phy/mdio-mvusb.c
10180 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10181
10182 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10183 M:      Hu Ziji <huziji@marvell.com>
10184 L:      linux-mmc@vger.kernel.org
10185 S:      Supported
10186 F:      drivers/mmc/host/sdhci-xenon*
10187 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10188
10189 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10190 M:      Sunil Goutham <sgoutham@marvell.com>
10191 M:      Linu Cherian <lcherian@marvell.com>
10192 M:      Geetha sowjanya <gakula@marvell.com>
10193 M:      Jerin Jacob <jerinj@marvell.com>
10194 L:      netdev@vger.kernel.org
10195 S:      Supported
10196 F:      drivers/net/ethernet/marvell/octeontx2/af/
10197 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10198
10199 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10200 M:      Sunil Goutham <sgoutham@marvell.com>
10201 M:      Geetha sowjanya <gakula@marvell.com>
10202 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10203 M:      hariprasad <hkelam@marvell.com>
10204 L:      netdev@vger.kernel.org
10205 S:      Supported
10206 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10207
10208 MATROX FRAMEBUFFER DRIVER
10209 L:      linux-fbdev@vger.kernel.org
10210 S:      Orphan
10211 F:      drivers/video/fbdev/matrox/matroxfb_*
10212 F:      include/uapi/linux/matroxfb.h
10213
10214 MAX16065 HARDWARE MONITOR DRIVER
10215 M:      Guenter Roeck <linux@roeck-us.net>
10216 L:      linux-hwmon@vger.kernel.org
10217 S:      Maintained
10218 F:      Documentation/hwmon/max16065.rst
10219 F:      drivers/hwmon/max16065.c
10220
10221 MAX2175 SDR TUNER DRIVER
10222 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10223 L:      linux-media@vger.kernel.org
10224 T:      git git://linuxtv.org/media_tree.git
10225 S:      Maintained
10226 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10227 F:      Documentation/media/v4l-drivers/max2175.rst
10228 F:      drivers/media/i2c/max2175*
10229 F:      include/uapi/linux/max2175.h
10230
10231 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10232 L:      linux-hwmon@vger.kernel.org
10233 S:      Orphan
10234 F:      Documentation/hwmon/max6650.rst
10235 F:      drivers/hwmon/max6650.c
10236
10237 MAX6697 HARDWARE MONITOR DRIVER
10238 M:      Guenter Roeck <linux@roeck-us.net>
10239 L:      linux-hwmon@vger.kernel.org
10240 S:      Maintained
10241 F:      Documentation/hwmon/max6697.rst
10242 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10243 F:      drivers/hwmon/max6697.c
10244 F:      include/linux/platform_data/max6697.h
10245
10246 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10247 M:      Peter Rosin <peda@axentia.se>
10248 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10249 S:      Maintained
10250 F:      Documentation/devicetree/bindings/sound/max9860.txt
10251 F:      sound/soc/codecs/max9860.*
10252
10253 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10254 M:      Andreas Klinger <ak@it-klinger.de>
10255 L:      linux-iio@vger.kernel.org
10256 S:      Maintained
10257 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10258 F:      drivers/iio/proximity/mb1232.c
10259
10260 MAXIM MAX77650 PMIC MFD DRIVER
10261 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10262 L:      linux-kernel@vger.kernel.org
10263 S:      Maintained
10264 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10265 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10266 F:      include/linux/mfd/max77650.h
10267 F:      drivers/mfd/max77650.c
10268 F:      drivers/regulator/max77650-regulator.c
10269 F:      drivers/power/supply/max77650-charger.c
10270 F:      drivers/input/misc/max77650-onkey.c
10271 F:      drivers/leds/leds-max77650.c
10272 F:      drivers/gpio/gpio-max77650.c
10273
10274 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10275 M:      Javier Martinez Canillas <javier@dowhile0.org>
10276 L:      linux-kernel@vger.kernel.org
10277 S:      Supported
10278 F:      drivers/regulator/max77802-regulator.c
10279 F:      Documentation/devicetree/bindings/*/*max77802.txt
10280 F:      include/dt-bindings/*/*max77802.h
10281
10282 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10283 M:      Krzysztof Kozlowski <krzk@kernel.org>
10284 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10285 L:      linux-pm@vger.kernel.org
10286 S:      Supported
10287 F:      drivers/power/supply/max14577_charger.c
10288 F:      drivers/power/supply/max77693_charger.c
10289
10290 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10291 M:      Chanwoo Choi <cw00.choi@samsung.com>
10292 M:      Krzysztof Kozlowski <krzk@kernel.org>
10293 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10294 L:      linux-kernel@vger.kernel.org
10295 S:      Supported
10296 F:      drivers/*/max14577*.c
10297 F:      drivers/*/max77686*.c
10298 F:      drivers/*/max77693*.c
10299 F:      drivers/extcon/extcon-max14577.c
10300 F:      drivers/extcon/extcon-max77693.c
10301 F:      drivers/rtc/rtc-max77686.c
10302 F:      drivers/clk/clk-max77686.c
10303 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10304 F:      Documentation/devicetree/bindings/*/max77686.txt
10305 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10306 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10307 F:      include/linux/mfd/max14577*.h
10308 F:      include/linux/mfd/max77686*.h
10309 F:      include/linux/mfd/max77693*.h
10310
10311 MAXIRADIO FM RADIO RECEIVER DRIVER
10312 M:      Hans Verkuil <hverkuil@xs4all.nl>
10313 L:      linux-media@vger.kernel.org
10314 T:      git git://linuxtv.org/media_tree.git
10315 W:      https://linuxtv.org
10316 S:      Maintained
10317 F:      drivers/media/radio/radio-maxiradio*
10318
10319 MCAN MMIO DEVICE DRIVER
10320 M:      Dan Murphy <dmurphy@ti.com>
10321 M:      Sriram Dash <sriram.dash@samsung.com>
10322 L:      linux-can@vger.kernel.org
10323 S:      Maintained
10324 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10325 F:      drivers/net/can/m_can/m_can.c
10326 F:      drivers/net/can/m_can/m_can.h
10327 F:      drivers/net/can/m_can/m_can_platform.c
10328
10329 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10330 M:      Rishi Gupta <gupt21@gmail.com>
10331 L:      linux-i2c@vger.kernel.org
10332 L:      linux-input@vger.kernel.org
10333 S:      Maintained
10334 F:      drivers/hid/hid-mcp2221.c
10335
10336 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10337 M:      Peter Rosin <peda@axentia.se>
10338 L:      linux-iio@vger.kernel.org
10339 S:      Maintained
10340 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10341 F:      drivers/iio/potentiometer/mcp4018.c
10342 F:      drivers/iio/potentiometer/mcp4531.c
10343
10344 MCR20A IEEE-802.15.4 RADIO DRIVER
10345 M:      Xue Liu <liuxuenetmail@gmail.com>
10346 L:      linux-wpan@vger.kernel.org
10347 W:      https://github.com/xueliu/mcr20a-linux
10348 S:      Maintained
10349 F:      drivers/net/ieee802154/mcr20a.c
10350 F:      drivers/net/ieee802154/mcr20a.h
10351 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10352
10353 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10354 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10355 L:      linux-iio@vger.kernel.org
10356 S:      Maintained
10357 F:      drivers/iio/dac/cio-dac.c
10358
10359 MEDIA CONTROLLER FRAMEWORK
10360 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10361 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10362 L:      linux-media@vger.kernel.org
10363 W:      https://www.linuxtv.org
10364 T:      git git://linuxtv.org/media_tree.git
10365 S:      Supported
10366 F:      drivers/media/mc/
10367 F:      include/media/media-*.h
10368 F:      include/uapi/linux/media.h
10369
10370 MEDIA DRIVERS FOR ASCOT2E
10371 M:      Sergey Kozlov <serjk@netup.ru>
10372 M:      Abylay Ospan <aospan@netup.ru>
10373 L:      linux-media@vger.kernel.org
10374 W:      https://linuxtv.org
10375 W:      http://netup.tv/
10376 T:      git git://linuxtv.org/media_tree.git
10377 S:      Supported
10378 F:      drivers/media/dvb-frontends/ascot2e*
10379
10380 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10381 M:      Jasmin Jessich <jasmin@anw.at>
10382 L:      linux-media@vger.kernel.org
10383 W:      https://linuxtv.org
10384 T:      git git://linuxtv.org/media_tree.git
10385 S:      Maintained
10386 F:      drivers/media/dvb-frontends/cxd2099*
10387
10388 MEDIA DRIVERS FOR CXD2841ER
10389 M:      Sergey Kozlov <serjk@netup.ru>
10390 M:      Abylay Ospan <aospan@netup.ru>
10391 L:      linux-media@vger.kernel.org
10392 W:      https://linuxtv.org
10393 W:      http://netup.tv/
10394 T:      git git://linuxtv.org/media_tree.git
10395 S:      Supported
10396 F:      drivers/media/dvb-frontends/cxd2841er*
10397
10398 MEDIA DRIVERS FOR CXD2880
10399 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10400 L:      linux-media@vger.kernel.org
10401 W:      http://linuxtv.org/
10402 T:      git git://linuxtv.org/media_tree.git
10403 S:      Supported
10404 F:      drivers/media/dvb-frontends/cxd2880/*
10405 F:      drivers/media/spi/cxd2880*
10406
10407 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10408 L:      linux-media@vger.kernel.org
10409 W:      https://linuxtv.org
10410 T:      git git://linuxtv.org/media_tree.git
10411 S:      Orphan
10412 F:      drivers/media/pci/ddbridge/*
10413
10414 MEDIA DRIVERS FOR FREESCALE IMX
10415 M:      Steve Longerbeam <slongerbeam@gmail.com>
10416 M:      Philipp Zabel <p.zabel@pengutronix.de>
10417 L:      linux-media@vger.kernel.org
10418 T:      git git://linuxtv.org/media_tree.git
10419 S:      Maintained
10420 F:      Documentation/devicetree/bindings/media/imx.txt
10421 F:      Documentation/media/v4l-drivers/imx.rst
10422 F:      drivers/staging/media/imx/
10423 F:      include/linux/imx-media.h
10424 F:      include/media/imx.h
10425
10426 MEDIA DRIVER FOR FREESCALE IMX PXP
10427 M:      Philipp Zabel <p.zabel@pengutronix.de>
10428 L:      linux-media@vger.kernel.org
10429 T:      git git://linuxtv.org/media_tree.git
10430 S:      Maintained
10431 F:      drivers/media/platform/imx-pxp.[ch]
10432
10433 MEDIA DRIVERS FOR FREESCALE IMX7
10434 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10435 L:      linux-media@vger.kernel.org
10436 T:      git git://linuxtv.org/media_tree.git
10437 S:      Maintained
10438 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10439 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10440 F:      Documentation/media/v4l-drivers/imx7.rst
10441 F:      drivers/staging/media/imx/imx7-media-csi.c
10442 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10443
10444 MEDIA DRIVERS FOR HELENE
10445 M:      Abylay Ospan <aospan@netup.ru>
10446 L:      linux-media@vger.kernel.org
10447 W:      https://linuxtv.org
10448 W:      http://netup.tv/
10449 T:      git git://linuxtv.org/media_tree.git
10450 S:      Supported
10451 F:      drivers/media/dvb-frontends/helene*
10452
10453 MEDIA DRIVERS FOR HORUS3A
10454 M:      Sergey Kozlov <serjk@netup.ru>
10455 M:      Abylay Ospan <aospan@netup.ru>
10456 L:      linux-media@vger.kernel.org
10457 W:      https://linuxtv.org
10458 W:      http://netup.tv/
10459 T:      git git://linuxtv.org/media_tree.git
10460 S:      Supported
10461 F:      drivers/media/dvb-frontends/horus3a*
10462
10463 MEDIA DRIVERS FOR LNBH25
10464 M:      Sergey Kozlov <serjk@netup.ru>
10465 M:      Abylay Ospan <aospan@netup.ru>
10466 L:      linux-media@vger.kernel.org
10467 W:      https://linuxtv.org
10468 W:      http://netup.tv/
10469 T:      git git://linuxtv.org/media_tree.git
10470 S:      Supported
10471 F:      drivers/media/dvb-frontends/lnbh25*
10472
10473 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10474 L:      linux-media@vger.kernel.org
10475 W:      https://linuxtv.org
10476 T:      git git://linuxtv.org/media_tree.git
10477 S:      Orphan
10478 F:      drivers/media/dvb-frontends/mxl5xx*
10479
10480 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10481 M:      Sergey Kozlov <serjk@netup.ru>
10482 M:      Abylay Ospan <aospan@netup.ru>
10483 L:      linux-media@vger.kernel.org
10484 W:      https://linuxtv.org
10485 W:      http://netup.tv/
10486 T:      git git://linuxtv.org/media_tree.git
10487 S:      Supported
10488 F:      drivers/media/pci/netup_unidvb/*
10489
10490 MEDIA DRIVERS FOR RENESAS - CEU
10491 M:      Jacopo Mondi <jacopo@jmondi.org>
10492 L:      linux-media@vger.kernel.org
10493 L:      linux-renesas-soc@vger.kernel.org
10494 T:      git git://linuxtv.org/media_tree.git
10495 S:      Supported
10496 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10497 F:      drivers/media/platform/renesas-ceu.c
10498 F:      include/media/drv-intf/renesas-ceu.h
10499
10500 MEDIA DRIVERS FOR RENESAS - DRIF
10501 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10502 L:      linux-media@vger.kernel.org
10503 L:      linux-renesas-soc@vger.kernel.org
10504 T:      git git://linuxtv.org/media_tree.git
10505 S:      Supported
10506 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10507 F:      drivers/media/platform/rcar_drif.c
10508
10509 MEDIA DRIVERS FOR RENESAS - FCP
10510 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10511 L:      linux-media@vger.kernel.org
10512 L:      linux-renesas-soc@vger.kernel.org
10513 T:      git git://linuxtv.org/media_tree.git
10514 S:      Supported
10515 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10516 F:      drivers/media/platform/rcar-fcp.c
10517 F:      include/media/rcar-fcp.h
10518
10519 MEDIA DRIVERS FOR RENESAS - FDP1
10520 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10521 L:      linux-media@vger.kernel.org
10522 L:      linux-renesas-soc@vger.kernel.org
10523 T:      git git://linuxtv.org/media_tree.git
10524 S:      Supported
10525 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10526 F:      drivers/media/platform/rcar_fdp1.c
10527
10528 MEDIA DRIVERS FOR RENESAS - VIN
10529 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10530 L:      linux-media@vger.kernel.org
10531 L:      linux-renesas-soc@vger.kernel.org
10532 T:      git git://linuxtv.org/media_tree.git
10533 S:      Supported
10534 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10535 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10536 F:      drivers/media/platform/rcar-vin/
10537
10538 MEDIA DRIVERS FOR RENESAS - VSP1
10539 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10540 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10541 L:      linux-media@vger.kernel.org
10542 L:      linux-renesas-soc@vger.kernel.org
10543 T:      git git://linuxtv.org/media_tree.git
10544 S:      Supported
10545 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10546 F:      drivers/media/platform/vsp1/
10547
10548 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10549 L:      linux-media@vger.kernel.org
10550 W:      https://linuxtv.org
10551 T:      git git://linuxtv.org/media_tree.git
10552 S:      Orphan
10553 F:      drivers/media/dvb-frontends/stv0910*
10554
10555 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10556 L:      linux-media@vger.kernel.org
10557 W:      https://linuxtv.org
10558 T:      git git://linuxtv.org/media_tree.git
10559 S:      Orphan
10560 F:      drivers/media/dvb-frontends/stv6111*
10561
10562 MEDIA DRIVERS FOR STM32 - DCMI
10563 M:      Hugues Fruchet <hugues.fruchet@st.com>
10564 L:      linux-media@vger.kernel.org
10565 T:      git git://linuxtv.org/media_tree.git
10566 S:      Supported
10567 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10568 F:      drivers/media/platform/stm32/stm32-dcmi.c
10569
10570 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10571 M:      Dmitry Osipenko <digetx@gmail.com>
10572 L:      linux-media@vger.kernel.org
10573 L:      linux-tegra@vger.kernel.org
10574 T:      git git://linuxtv.org/media_tree.git
10575 S:      Maintained
10576 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10577 F:      drivers/staging/media/tegra-vde/
10578
10579 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10580 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10581 L:      linux-media@vger.kernel.org
10582 W:      https://linuxtv.org
10583 Q:      http://patchwork.kernel.org/project/linux-media/list/
10584 T:      git git://linuxtv.org/media_tree.git
10585 S:      Maintained
10586 F:      Documentation/devicetree/bindings/media/
10587 F:      Documentation/media/
10588 F:      drivers/media/
10589 F:      drivers/staging/media/
10590 F:      include/linux/platform_data/media/
10591 F:      include/media/
10592 F:      include/uapi/linux/dvb/
10593 F:      include/uapi/linux/videodev2.h
10594 F:      include/uapi/linux/media.h
10595 F:      include/uapi/linux/v4l2-*
10596 F:      include/uapi/linux/meye.h
10597 F:      include/uapi/linux/ivtv*
10598 F:      include/uapi/linux/uvcvideo.h
10599
10600 MEDIATEK BLUETOOTH DRIVER
10601 M:      Sean Wang <sean.wang@mediatek.com>
10602 L:      linux-bluetooth@vger.kernel.org
10603 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10604 S:      Maintained
10605 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10606 F:      drivers/bluetooth/btmtkuart.c
10607
10608 MEDIATEK CIR DRIVER
10609 M:      Sean Wang <sean.wang@mediatek.com>
10610 S:      Maintained
10611 F:      drivers/media/rc/mtk-cir.c
10612
10613 MEDIATEK DMA DRIVER
10614 M:      Sean Wang <sean.wang@mediatek.com>
10615 L:      dmaengine@vger.kernel.org
10616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10617 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10618 S:      Maintained
10619 F:      Documentation/devicetree/bindings/dma/mtk-*
10620 F:      drivers/dma/mediatek/
10621
10622 MEDIATEK PMIC LED DRIVER
10623 M:      Sean Wang <sean.wang@mediatek.com>
10624 S:      Maintained
10625 F:      drivers/leds/leds-mt6323.c
10626 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10627
10628 MEDIATEK ETHERNET DRIVER
10629 M:      Felix Fietkau <nbd@openwrt.org>
10630 M:      John Crispin <john@phrozen.org>
10631 M:      Sean Wang <sean.wang@mediatek.com>
10632 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10633 L:      netdev@vger.kernel.org
10634 S:      Maintained
10635 F:      drivers/net/ethernet/mediatek/
10636
10637 MEDIATEK SWITCH DRIVER
10638 M:      Sean Wang <sean.wang@mediatek.com>
10639 L:      netdev@vger.kernel.org
10640 S:      Maintained
10641 F:      drivers/net/dsa/mt7530.*
10642 F:      net/dsa/tag_mtk.c
10643
10644 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10645 M:      Sean Wang <sean.wang@mediatek.com>
10646 L:      linux-pm@vger.kernel.org
10647 S:      Maintained
10648 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10649 F:      drivers/power/reset/mt6323-poweroff.c
10650
10651 MEDIATEK JPEG DRIVER
10652 M:      Rick Chang <rick.chang@mediatek.com>
10653 M:      Bin Liu <bin.liu@mediatek.com>
10654 S:      Supported
10655 F:      drivers/media/platform/mtk-jpeg/
10656 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10657
10658 MEDIATEK MDP DRIVER
10659 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10660 M:      Houlong Wei <houlong.wei@mediatek.com>
10661 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10662 S:      Supported
10663 F:      drivers/media/platform/mtk-mdp/
10664 F:      drivers/media/platform/mtk-vpu/
10665 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10666
10667 MEDIATEK MEDIA DRIVER
10668 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10669 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10670 S:      Supported
10671 F:      drivers/media/platform/mtk-vcodec/
10672 F:      drivers/media/platform/mtk-vpu/
10673 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10674 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10675
10676 MEDIATEK MMC/SD/SDIO DRIVER
10677 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10678 S:      Maintained
10679 F:      drivers/mmc/host/mtk-sd.c
10680 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10681
10682 MEDIATEK MT76 WIRELESS LAN DRIVER
10683 M:      Felix Fietkau <nbd@nbd.name>
10684 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10685 R:      Ryder Lee <ryder.lee@mediatek.com>
10686 R:      Roy Luo <royluo@google.com>
10687 L:      linux-wireless@vger.kernel.org
10688 S:      Maintained
10689 F:      drivers/net/wireless/mediatek/mt76/
10690
10691 MEDIATEK MT7601U WIRELESS LAN DRIVER
10692 M:      Jakub Kicinski <kubakici@wp.pl>
10693 L:      linux-wireless@vger.kernel.org
10694 S:      Maintained
10695 F:      drivers/net/wireless/mediatek/mt7601u/
10696
10697 MEDIATEK MT7621/28/88 I2C DRIVER
10698 M:      Stefan Roese <sr@denx.de>
10699 L:      linux-i2c@vger.kernel.org
10700 S:      Maintained
10701 F:      drivers/i2c/busses/i2c-mt7621.c
10702 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10703
10704 MEDIATEK NAND CONTROLLER DRIVER
10705 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10706 L:      linux-mtd@lists.infradead.org
10707 S:      Maintained
10708 F:      drivers/mtd/nand/raw/mtk_*
10709 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10710
10711 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10712 M:      Sean Wang <sean.wang@mediatek.com>
10713 S:      Maintained
10714 F:      drivers/char/hw_random/mtk-rng.c
10715
10716 MEDIATEK USB3 DRD IP DRIVER
10717 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10718 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10720 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10721 S:      Maintained
10722 F:      drivers/usb/mtu3/
10723
10724 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10725 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10726 M:      Martin Donnelly <martin.donnelly@ge.com>
10727 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10728 S:      Maintained
10729 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10730 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10731
10732 MEGARAID SCSI/SAS DRIVERS
10733 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10734 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10735 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10736 L:      megaraidlinux.pdl@broadcom.com
10737 L:      linux-scsi@vger.kernel.org
10738 W:      http://www.avagotech.com/support/
10739 S:      Maintained
10740 F:      Documentation/scsi/megaraid.rst
10741 F:      drivers/scsi/megaraid.*
10742 F:      drivers/scsi/megaraid/
10743
10744 MELEXIS MLX90614 DRIVER
10745 M:      Crt Mori <cmo@melexis.com>
10746 L:      linux-iio@vger.kernel.org
10747 W:      http://www.melexis.com
10748 S:      Supported
10749 F:      drivers/iio/temperature/mlx90614.c
10750
10751 MELEXIS MLX90632 DRIVER
10752 M:      Crt Mori <cmo@melexis.com>
10753 L:      linux-iio@vger.kernel.org
10754 W:      http://www.melexis.com
10755 S:      Supported
10756 F:      drivers/iio/temperature/mlx90632.c
10757
10758 MELFAS MIP4 TOUCHSCREEN DRIVER
10759 M:      Sangwon Jee <jeesw@melfas.com>
10760 W:      http://www.melfas.com
10761 S:      Supported
10762 F:      drivers/input/touchscreen/melfas_mip4.c
10763 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10764
10765 MELLANOX ETHERNET DRIVER (mlx4_en)
10766 M:      Tariq Toukan <tariqt@mellanox.com>
10767 L:      netdev@vger.kernel.org
10768 S:      Supported
10769 W:      http://www.mellanox.com
10770 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10771 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10772
10773 MELLANOX ETHERNET DRIVER (mlx5e)
10774 M:      Saeed Mahameed <saeedm@mellanox.com>
10775 L:      netdev@vger.kernel.org
10776 S:      Supported
10777 W:      http://www.mellanox.com
10778 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10779 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10780
10781 MELLANOX ETHERNET INNOVA DRIVERS
10782 R:      Boris Pismenny <borisp@mellanox.com>
10783 L:      netdev@vger.kernel.org
10784 S:      Supported
10785 W:      http://www.mellanox.com
10786 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10787 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10788 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10789 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10790 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10791
10792 MELLANOX ETHERNET SWITCH DRIVERS
10793 M:      Jiri Pirko <jiri@mellanox.com>
10794 M:      Ido Schimmel <idosch@mellanox.com>
10795 L:      netdev@vger.kernel.org
10796 S:      Supported
10797 W:      http://www.mellanox.com
10798 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10799 F:      drivers/net/ethernet/mellanox/mlxsw/
10800 F:      tools/testing/selftests/drivers/net/mlxsw/
10801
10802 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10803 M:      mlxsw@mellanox.com
10804 L:      netdev@vger.kernel.org
10805 S:      Supported
10806 W:      http://www.mellanox.com
10807 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10808 F:      drivers/net/ethernet/mellanox/mlxfw/
10809
10810 MELLANOX HARDWARE PLATFORM SUPPORT
10811 M:      Andy Shevchenko <andy@infradead.org>
10812 M:      Darren Hart <dvhart@infradead.org>
10813 M:      Vadim Pasternak <vadimp@mellanox.com>
10814 L:      platform-driver-x86@vger.kernel.org
10815 S:      Supported
10816 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10817 F:      drivers/platform/mellanox/
10818 F:      include/linux/platform_data/mlxreg.h
10819
10820 MELLANOX MLX4 core VPI driver
10821 M:      Tariq Toukan <tariqt@mellanox.com>
10822 L:      netdev@vger.kernel.org
10823 L:      linux-rdma@vger.kernel.org
10824 W:      http://www.mellanox.com
10825 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10826 S:      Supported
10827 F:      drivers/net/ethernet/mellanox/mlx4/
10828 F:      include/linux/mlx4/
10829
10830 MELLANOX MLX4 IB driver
10831 M:      Yishai Hadas <yishaih@mellanox.com>
10832 L:      linux-rdma@vger.kernel.org
10833 W:      http://www.mellanox.com
10834 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10835 S:      Supported
10836 F:      drivers/infiniband/hw/mlx4/
10837 F:      include/linux/mlx4/
10838 F:      include/uapi/rdma/mlx4-abi.h
10839
10840 MELLANOX MLX5 core VPI driver
10841 M:      Saeed Mahameed <saeedm@mellanox.com>
10842 M:      Leon Romanovsky <leonro@mellanox.com>
10843 L:      netdev@vger.kernel.org
10844 L:      linux-rdma@vger.kernel.org
10845 W:      http://www.mellanox.com
10846 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10847 S:      Supported
10848 F:      drivers/net/ethernet/mellanox/mlx5/core/
10849 F:      include/linux/mlx5/
10850 F:      Documentation/networking/device_drivers/mellanox/
10851
10852 MELLANOX MLX5 IB driver
10853 M:      Leon Romanovsky <leonro@mellanox.com>
10854 L:      linux-rdma@vger.kernel.org
10855 W:      http://www.mellanox.com
10856 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10857 S:      Supported
10858 F:      drivers/infiniband/hw/mlx5/
10859 F:      include/linux/mlx5/
10860 F:      include/uapi/rdma/mlx5-abi.h
10861
10862 MELLANOX MLXCPLD I2C AND MUX DRIVER
10863 M:      Vadim Pasternak <vadimp@mellanox.com>
10864 M:      Michael Shych <michaelsh@mellanox.com>
10865 L:      linux-i2c@vger.kernel.org
10866 S:      Supported
10867 F:      drivers/i2c/busses/i2c-mlxcpld.c
10868 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10869 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10870
10871 MELLANOX MLXCPLD LED DRIVER
10872 M:      Vadim Pasternak <vadimp@mellanox.com>
10873 L:      linux-leds@vger.kernel.org
10874 S:      Supported
10875 F:      drivers/leds/leds-mlxcpld.c
10876 F:      drivers/leds/leds-mlxreg.c
10877 F:      Documentation/leds/leds-mlxcpld.rst
10878
10879 MELLANOX PLATFORM DRIVER
10880 M:      Vadim Pasternak <vadimp@mellanox.com>
10881 L:      platform-driver-x86@vger.kernel.org
10882 S:      Supported
10883 F:      drivers/platform/x86/mlx-platform.c
10884
10885 MEMBARRIER SUPPORT
10886 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10887 M:      "Paul E. McKenney" <paulmck@kernel.org>
10888 L:      linux-kernel@vger.kernel.org
10889 S:      Supported
10890 F:      kernel/sched/membarrier.c
10891 F:      include/uapi/linux/membarrier.h
10892 F:      arch/powerpc/include/asm/membarrier.h
10893
10894 MEMBLOCK
10895 M:      Mike Rapoport <rppt@linux.ibm.com>
10896 L:      linux-mm@kvack.org
10897 S:      Maintained
10898 F:      include/linux/memblock.h
10899 F:      mm/memblock.c
10900 F:      Documentation/core-api/boot-time-mm.rst
10901
10902 MEMORY MANAGEMENT
10903 M:      Andrew Morton <akpm@linux-foundation.org>
10904 L:      linux-mm@kvack.org
10905 W:      http://www.linux-mm.org
10906 T:      quilt https://ozlabs.org/~akpm/mmotm/
10907 T:      quilt https://ozlabs.org/~akpm/mmots/
10908 T:      git git://github.com/hnaz/linux-mm.git
10909 S:      Maintained
10910 F:      include/linux/mm.h
10911 F:      include/linux/gfp.h
10912 F:      include/linux/mmzone.h
10913 F:      include/linux/memory_hotplug.h
10914 F:      include/linux/vmalloc.h
10915 F:      mm/
10916
10917 MEMORY TECHNOLOGY DEVICES (MTD)
10918 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10919 M:      Richard Weinberger <richard@nod.at>
10920 M:      Vignesh Raghavendra <vigneshr@ti.com>
10921 L:      linux-mtd@lists.infradead.org
10922 W:      http://www.linux-mtd.infradead.org/
10923 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10924 C:      irc://irc.oftc.net/mtd
10925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10927 S:      Maintained
10928 F:      Documentation/devicetree/bindings/mtd/
10929 F:      drivers/mtd/
10930 F:      include/linux/mtd/
10931 F:      include/uapi/mtd/
10932
10933 MEN A21 WATCHDOG DRIVER
10934 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10935 L:      linux-watchdog@vger.kernel.org
10936 S:      Maintained
10937 F:      drivers/watchdog/mena21_wdt.c
10938
10939 MEN CHAMELEON BUS (mcb)
10940 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10941 S:      Maintained
10942 F:      drivers/mcb/
10943 F:      include/linux/mcb.h
10944 F:      Documentation/driver-api/men-chameleon-bus.rst
10945
10946 MEN F21BMC (Board Management Controller)
10947 M:      Andreas Werner <andreas.werner@men.de>
10948 S:      Supported
10949 F:      drivers/mfd/menf21bmc.c
10950 F:      drivers/watchdog/menf21bmc_wdt.c
10951 F:      drivers/leds/leds-menf21bmc.c
10952 F:      drivers/hwmon/menf21bmc_hwmon.c
10953 F:      Documentation/hwmon/menf21bmc.rst
10954
10955 MEN Z069 WATCHDOG DRIVER
10956 M:      Johannes Thumshirn <jth@kernel.org>
10957 L:      linux-watchdog@vger.kernel.org
10958 S:      Maintained
10959 F:      drivers/watchdog/menz69_wdt.c
10960
10961 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10962 M:      Neil Armstrong <narmstrong@baylibre.com>
10963 L:      linux-media@vger.kernel.org
10964 L:      linux-amlogic@lists.infradead.org
10965 W:      http://linux-meson.com/
10966 S:      Supported
10967 F:      drivers/media/platform/meson/ao-cec.c
10968 F:      drivers/media/platform/meson/ao-cec-g12a.c
10969 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10970 T:      git git://linuxtv.org/media_tree.git
10971
10972 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10973 M:      Liang Yang <liang.yang@amlogic.com>
10974 L:      linux-mtd@lists.infradead.org
10975 S:      Maintained
10976 F:      drivers/mtd/nand/raw/meson_*
10977 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10978
10979 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10980 M:      Maxime Jourdan <mjourdan@baylibre.com>
10981 L:      linux-media@vger.kernel.org
10982 L:      linux-amlogic@lists.infradead.org
10983 S:      Supported
10984 F:      drivers/staging/media/meson/vdec/
10985 T:      git git://linuxtv.org/media_tree.git
10986
10987 METHODE UDPU SUPPORT
10988 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10989 S:      Maintained
10990 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10991
10992 MHI BUS
10993 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10994 M:      Hemant Kumar <hemantk@codeaurora.org>
10995 L:      linux-arm-msm@vger.kernel.org
10996 S:      Maintained
10997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
10998 F:      Documentation/mhi/
10999 F:      drivers/bus/mhi/
11000 F:      include/linux/mhi.h
11001
11002 MICROBLAZE ARCHITECTURE
11003 M:      Michal Simek <monstr@monstr.eu>
11004 W:      http://www.monstr.eu/fdt/
11005 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11006 S:      Supported
11007 F:      arch/microblaze/
11008
11009 MICROCHIP AT91 SERIAL DRIVER
11010 M:      Richard Genoud <richard.genoud@gmail.com>
11011 S:      Maintained
11012 F:      drivers/tty/serial/atmel_serial.c
11013 F:      drivers/tty/serial/atmel_serial.h
11014 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11015
11016 MICROCHIP AUDIO ASOC DRIVERS
11017 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11018 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11019 S:      Supported
11020 F:      sound/soc/atmel
11021
11022 MICROCHIP DMA DRIVER
11023 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11025 L:      dmaengine@vger.kernel.org
11026 S:      Supported
11027 F:      drivers/dma/at_hdmac.c
11028 F:      drivers/dma/at_hdmac_regs.h
11029 F:      include/linux/platform_data/dma-atmel.h
11030 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11031 F:      include/dt-bindings/dma/at91.h
11032
11033 MICROCHIP ECC DRIVER
11034 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11035 L:      linux-crypto@vger.kernel.org
11036 S:      Maintained
11037 F:      drivers/crypto/atmel-ecc.*
11038
11039 MICROCHIP I2C DRIVER
11040 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11041 L:      linux-i2c@vger.kernel.org
11042 S:      Supported
11043 F:      drivers/i2c/busses/i2c-at91.h
11044 F:      drivers/i2c/busses/i2c-at91-*.c
11045
11046 MICROCHIP ISC DRIVER
11047 M:      Eugen Hristev <eugen.hristev@microchip.com>
11048 L:      linux-media@vger.kernel.org
11049 S:      Supported
11050 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11051 F:      drivers/media/platform/atmel/atmel-isc.h
11052 F:      drivers/media/platform/atmel/atmel-isc-base.c
11053 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11054 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11055 F:      include/linux/atmel-isc-media.h
11056
11057 MICROCHIP ISI DRIVER
11058 M:      Eugen Hristev <eugen.hristev@microchip.com>
11059 L:      linux-media@vger.kernel.org
11060 S:      Supported
11061 F:      drivers/media/platform/atmel/atmel-isi.c
11062 F:      drivers/media/platform/atmel/atmel-isi.h
11063
11064 MICROCHIP AT91 USART MFD DRIVER
11065 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11066 L:      linux-kernel@vger.kernel.org
11067 S:      Supported
11068 F:      drivers/mfd/at91-usart.c
11069 F:      include/dt-bindings/mfd/at91-usart.h
11070 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11071
11072 MICROCHIP AT91 USART SPI DRIVER
11073 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11074 L:      linux-spi@vger.kernel.org
11075 S:      Supported
11076 F:      drivers/spi/spi-at91-usart.c
11077 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11078
11079 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11080 M:      Woojung Huh <woojung.huh@microchip.com>
11081 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11082 L:      netdev@vger.kernel.org
11083 S:      Maintained
11084 F:      net/dsa/tag_ksz.c
11085 F:      drivers/net/dsa/microchip/*
11086 F:      include/linux/platform_data/microchip-ksz.h
11087 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11088
11089 MICROCHIP LAN743X ETHERNET DRIVER
11090 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11091 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11092 L:      netdev@vger.kernel.org
11093 S:      Maintained
11094 F:      drivers/net/ethernet/microchip/lan743x_*
11095
11096 MICROCHIP LCDFB DRIVER
11097 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11098 L:      linux-fbdev@vger.kernel.org
11099 S:      Maintained
11100 F:      drivers/video/fbdev/atmel_lcdfb.c
11101 F:      include/video/atmel_lcdc.h
11102
11103 MICROCHIP MMC/SD/SDIO MCI DRIVER
11104 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11105 S:      Maintained
11106 F:      drivers/mmc/host/atmel-mci.c
11107
11108 MICROCHIP MCP16502 PMIC DRIVER
11109 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11111 S:      Maintained
11112 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11113 F:      drivers/regulator/mcp16502.c
11114
11115 MICROCHIP MCP3911 ADC DRIVER
11116 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11117 M:      Kent Gustavsson <kent@minoris.se>
11118 L:      linux-iio@vger.kernel.org
11119 S:      Supported
11120 F:      drivers/iio/adc/mcp3911.c
11121 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11122
11123 MICROCHIP NAND DRIVER
11124 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11125 L:      linux-mtd@lists.infradead.org
11126 S:      Supported
11127 F:      drivers/mtd/nand/raw/atmel/*
11128 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11129
11130 MICROCHIP PWM DRIVER
11131 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11133 L:      linux-pwm@vger.kernel.org
11134 S:      Supported
11135 F:      drivers/pwm/pwm-atmel.c
11136 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11137
11138 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11139 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11140 M:      Eugen Hristev <eugen.hristev@microchip.com>
11141 L:      linux-iio@vger.kernel.org
11142 S:      Supported
11143 F:      drivers/iio/adc/at91-sama5d2_adc.c
11144 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11145 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11146
11147 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11148 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11149 S:      Supported
11150 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11151
11152 MICROCHIP SPI DRIVER
11153 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11154 S:      Supported
11155 F:      drivers/spi/spi-atmel.*
11156
11157 MICROCHIP SSC DRIVER
11158 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11160 S:      Supported
11161 F:      drivers/misc/atmel-ssc.c
11162 F:      include/linux/atmel-ssc.h
11163
11164 MICROCHIP USBA UDC DRIVER
11165 M:      Cristian Birsan <cristian.birsan@microchip.com>
11166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11167 S:      Supported
11168 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11169
11170 MICROCHIP USB251XB DRIVER
11171 M:      Richard Leitner <richard.leitner@skidata.com>
11172 L:      linux-usb@vger.kernel.org
11173 S:      Maintained
11174 F:      drivers/usb/misc/usb251xb.c
11175 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11176
11177 MICROCHIP XDMA DRIVER
11178 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11179 L:      linux-arm-kernel@lists.infradead.org
11180 L:      dmaengine@vger.kernel.org
11181 S:      Supported
11182 F:      drivers/dma/at_xdmac.c
11183
11184 MICROSEMI MIPS SOCS
11185 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11186 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11187 L:      linux-mips@vger.kernel.org
11188 S:      Supported
11189 F:      arch/mips/generic/board-ocelot.c
11190 F:      arch/mips/configs/generic/board-ocelot.config
11191 F:      arch/mips/boot/dts/mscc/
11192 F:      Documentation/devicetree/bindings/mips/mscc.txt
11193
11194 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11195 M:      Don Brace <don.brace@microsemi.com>
11196 L:      esc.storagedev@microsemi.com
11197 L:      linux-scsi@vger.kernel.org
11198 S:      Supported
11199 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11200 F:      drivers/scsi/smartpqi/Kconfig
11201 F:      drivers/scsi/smartpqi/Makefile
11202 F:      include/linux/cciss*.h
11203 F:      include/uapi/linux/cciss*.h
11204 F:      Documentation/scsi/smartpqi.rst
11205
11206 MICROSEMI ETHERNET SWITCH DRIVER
11207 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11208 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11209 L:      netdev@vger.kernel.org
11210 S:      Supported
11211 F:      drivers/net/ethernet/mscc/
11212 F:      include/soc/mscc/ocelot*
11213
11214 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11215 M:      Chen Yu <yu.c.chen@intel.com>
11216 L:      platform-driver-x86@vger.kernel.org
11217 S:      Supported
11218 F:      drivers/platform/x86/surfacepro3_button.c
11219
11220 MICROTEK X6 SCANNER
11221 M:      Oliver Neukum <oliver@neukum.org>
11222 S:      Maintained
11223 F:      drivers/usb/image/microtek.*
11224
11225 MIPS
11226 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11227 L:      linux-mips@vger.kernel.org
11228 W:      http://www.linux-mips.org/
11229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11230 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11231 S:      Maintained
11232 F:      Documentation/devicetree/bindings/mips/
11233 F:      Documentation/mips/
11234 F:      arch/mips/
11235 F:      drivers/platform/mips/
11236
11237 MIPS BOSTON DEVELOPMENT BOARD
11238 M:      Paul Burton <paulburton@kernel.org>
11239 L:      linux-mips@vger.kernel.org
11240 S:      Maintained
11241 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11242 F:      arch/mips/boot/dts/img/boston.dts
11243 F:      arch/mips/configs/generic/board-boston.config
11244 F:      drivers/clk/imgtec/clk-boston.c
11245 F:      include/dt-bindings/clock/boston-clock.h
11246
11247 MIPS GENERIC PLATFORM
11248 M:      Paul Burton <paulburton@kernel.org>
11249 L:      linux-mips@vger.kernel.org
11250 S:      Supported
11251 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11252 F:      arch/mips/generic/
11253 F:      arch/mips/tools/generic-board-config.sh
11254
11255 MIPS/LOONGSON1 ARCHITECTURE
11256 M:      Keguang Zhang <keguang.zhang@gmail.com>
11257 L:      linux-mips@vger.kernel.org
11258 S:      Maintained
11259 F:      arch/mips/loongson32/
11260 F:      arch/mips/include/asm/mach-loongson32/
11261 F:      drivers/*/*loongson1*
11262 F:      drivers/*/*/*loongson1*
11263
11264 MIPS/LOONGSON2EF ARCHITECTURE
11265 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11266 L:      linux-mips@vger.kernel.org
11267 S:      Maintained
11268 F:      arch/mips/loongson2ef/
11269 F:      arch/mips/include/asm/mach-loongson2ef/
11270 F:      drivers/*/*loongson2*
11271 F:      drivers/*/*/*loongson2*
11272
11273 MIPS/LOONGSON64 ARCHITECTURE
11274 M:      Huacai Chen <chenhc@lemote.com>
11275 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11276 L:      linux-mips@vger.kernel.org
11277 S:      Maintained
11278 F:      arch/mips/loongson64/
11279 F:      arch/mips/include/asm/mach-loongson64/
11280 F:      drivers/platform/mips/cpu_hwmon.c
11281 F:      drivers/irqchip/irq-loongson*
11282 F:      drivers/*/*loongson3*
11283 F:      drivers/*/*/*loongson3*
11284
11285 MIPS RINT INSTRUCTION EMULATION
11286 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11287 L:      linux-mips@vger.kernel.org
11288 S:      Supported
11289 F:      arch/mips/math-emu/sp_rint.c
11290 F:      arch/mips/math-emu/dp_rint.c
11291
11292 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11293 M:      Hans Verkuil <hverkuil@xs4all.nl>
11294 L:      linux-media@vger.kernel.org
11295 T:      git git://linuxtv.org/media_tree.git
11296 W:      https://linuxtv.org
11297 S:      Odd Fixes
11298 F:      drivers/media/radio/radio-miropcm20*
11299
11300 MMP SUPPORT
11301 R:      Lubomir Rintel <lkundrak@v3.sk>
11302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11304 S:      Odd Fixes
11305 F:      arch/arm/boot/dts/mmp*
11306 F:      arch/arm/mach-mmp/
11307 F:      linux/soc/mmp/
11308
11309 MMP USB PHY DRIVERS
11310 R:      Lubomir Rintel <lkundrak@v3.sk>
11311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11312 S:      Maintained
11313 F:      drivers/phy/marvell/phy-mmp3-usb.c
11314 F:      drivers/phy/marvell/phy-pxa-usb.c
11315
11316 MMU GATHER AND TLB INVALIDATION
11317 M:      Will Deacon <will@kernel.org>
11318 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11319 M:      Andrew Morton <akpm@linux-foundation.org>
11320 M:      Nick Piggin <npiggin@gmail.com>
11321 M:      Peter Zijlstra <peterz@infradead.org>
11322 L:      linux-arch@vger.kernel.org
11323 L:      linux-mm@kvack.org
11324 S:      Maintained
11325 F:      arch/*/include/asm/tlb.h
11326 F:      include/asm-generic/tlb.h
11327 F:      mm/mmu_gather.c
11328
11329 MN88472 MEDIA DRIVER
11330 M:      Antti Palosaari <crope@iki.fi>
11331 L:      linux-media@vger.kernel.org
11332 W:      https://linuxtv.org
11333 W:      http://palosaari.fi/linux/
11334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11335 S:      Maintained
11336 F:      drivers/media/dvb-frontends/mn88472*
11337
11338 MN88473 MEDIA DRIVER
11339 M:      Antti Palosaari <crope@iki.fi>
11340 L:      linux-media@vger.kernel.org
11341 W:      https://linuxtv.org
11342 W:      http://palosaari.fi/linux/
11343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11344 S:      Maintained
11345 F:      drivers/media/dvb-frontends/mn88473*
11346
11347 MODULE SUPPORT
11348 M:      Jessica Yu <jeyu@kernel.org>
11349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11350 S:      Maintained
11351 F:      include/linux/module.h
11352 F:      kernel/module.c
11353
11354 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11355 W:      http://popies.net/meye/
11356 S:      Orphan
11357 F:      Documentation/media/v4l-drivers/meye*
11358 F:      drivers/media/pci/meye/
11359 F:      include/uapi/linux/meye.h
11360
11361 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11362 M:      Jiri Slaby <jirislaby@gmail.com>
11363 S:      Maintained
11364 F:      Documentation/driver-api/serial/moxa-smartio.rst
11365 F:      drivers/tty/mxser.*
11366
11367 MONOLITHIC POWER SYSTEM PMIC DRIVER
11368 M:      Saravanan Sekar <sravanhome@gmail.com>
11369 S:      Maintained
11370 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11371 F:      drivers/regulator/mp5416.c
11372 F:      drivers/regulator/mpq7920.c
11373 F:      drivers/regulator/mpq7920.h
11374
11375 MR800 AVERMEDIA USB FM RADIO DRIVER
11376 M:      Alexey Klimov <klimov.linux@gmail.com>
11377 L:      linux-media@vger.kernel.org
11378 T:      git git://linuxtv.org/media_tree.git
11379 S:      Maintained
11380 F:      drivers/media/radio/radio-mr800.c
11381
11382 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11383 M:      Alan Ott <alan@signal11.us>
11384 L:      linux-wpan@vger.kernel.org
11385 S:      Maintained
11386 F:      drivers/net/ieee802154/mrf24j40.c
11387 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11388
11389 MSI LAPTOP SUPPORT
11390 M:      "Lee, Chun-Yi" <jlee@suse.com>
11391 L:      platform-driver-x86@vger.kernel.org
11392 S:      Maintained
11393 F:      drivers/platform/x86/msi-laptop.c
11394
11395 MSI WMI SUPPORT
11396 L:      platform-driver-x86@vger.kernel.org
11397 S:      Orphan
11398 F:      drivers/platform/x86/msi-wmi.c
11399
11400 MSI001 MEDIA DRIVER
11401 M:      Antti Palosaari <crope@iki.fi>
11402 L:      linux-media@vger.kernel.org
11403 W:      https://linuxtv.org
11404 W:      http://palosaari.fi/linux/
11405 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11406 T:      git git://linuxtv.org/anttip/media_tree.git
11407 S:      Maintained
11408 F:      drivers/media/tuners/msi001*
11409
11410 MSI2500 MEDIA DRIVER
11411 M:      Antti Palosaari <crope@iki.fi>
11412 L:      linux-media@vger.kernel.org
11413 W:      https://linuxtv.org
11414 W:      http://palosaari.fi/linux/
11415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11416 T:      git git://linuxtv.org/anttip/media_tree.git
11417 S:      Maintained
11418 F:      drivers/media/usb/msi2500/
11419
11420 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11421 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11422 L:      linux-mtd@lists.infradead.org
11423 S:      Maintained
11424 F:      drivers/mtd/devices/docg3*
11425
11426 MT9M032 APTINA SENSOR DRIVER
11427 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11428 L:      linux-media@vger.kernel.org
11429 T:      git git://linuxtv.org/media_tree.git
11430 S:      Maintained
11431 F:      drivers/media/i2c/mt9m032.c
11432 F:      include/media/i2c/mt9m032.h
11433
11434 MT9P031 APTINA CAMERA SENSOR
11435 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11436 L:      linux-media@vger.kernel.org
11437 T:      git git://linuxtv.org/media_tree.git
11438 S:      Maintained
11439 F:      drivers/media/i2c/mt9p031.c
11440 F:      include/media/i2c/mt9p031.h
11441
11442 MT9T001 APTINA CAMERA SENSOR
11443 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11444 L:      linux-media@vger.kernel.org
11445 T:      git git://linuxtv.org/media_tree.git
11446 S:      Maintained
11447 F:      drivers/media/i2c/mt9t001.c
11448 F:      include/media/i2c/mt9t001.h
11449
11450 MT9T112 APTINA CAMERA SENSOR
11451 M:      Jacopo Mondi <jacopo@jmondi.org>
11452 L:      linux-media@vger.kernel.org
11453 T:      git git://linuxtv.org/media_tree.git
11454 S:      Odd Fixes
11455 F:      drivers/media/i2c/mt9t112.c
11456 F:      include/media/i2c/mt9t112.h
11457
11458 MT9V032 APTINA CAMERA SENSOR
11459 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11460 L:      linux-media@vger.kernel.org
11461 T:      git git://linuxtv.org/media_tree.git
11462 S:      Maintained
11463 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11464 F:      drivers/media/i2c/mt9v032.c
11465 F:      include/media/i2c/mt9v032.h
11466
11467 MT9V111 APTINA CAMERA SENSOR
11468 M:      Jacopo Mondi <jacopo@jmondi.org>
11469 L:      linux-media@vger.kernel.org
11470 T:      git git://linuxtv.org/media_tree.git
11471 S:      Maintained
11472 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11473 F:      drivers/media/i2c/mt9v111.c
11474
11475 MULTIFUNCTION DEVICES (MFD)
11476 M:      Lee Jones <lee.jones@linaro.org>
11477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11478 S:      Supported
11479 F:      Documentation/devicetree/bindings/mfd/
11480 F:      drivers/mfd/
11481 F:      include/linux/mfd/
11482 F:      include/dt-bindings/mfd/
11483
11484 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11485 S:      Orphan
11486 F:      drivers/mmc/host/mmc_spi.c
11487 F:      include/linux/spi/mmc_spi.h
11488
11489 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11490 M:      Ulf Hansson <ulf.hansson@linaro.org>
11491 L:      linux-mmc@vger.kernel.org
11492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11493 S:      Maintained
11494 F:      Documentation/devicetree/bindings/mmc/
11495 F:      drivers/mmc/
11496 F:      include/linux/mmc/
11497 F:      include/uapi/linux/mmc/
11498
11499 MULTIPLEXER SUBSYSTEM
11500 M:      Peter Rosin <peda@axentia.se>
11501 S:      Maintained
11502 F:      Documentation/ABI/testing/sysfs-class-mux*
11503 F:      Documentation/devicetree/bindings/mux/
11504 F:      include/dt-bindings/mux/
11505 F:      include/linux/mux/
11506 F:      drivers/mux/
11507
11508 MULTITECH MULTIPORT CARD (ISICOM)
11509 S:      Orphan
11510 F:      drivers/tty/isicom.c
11511 F:      include/linux/isicom.h
11512
11513 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11514 M:      Bin Liu <b-liu@ti.com>
11515 L:      linux-usb@vger.kernel.org
11516 S:      Maintained
11517 F:      drivers/usb/musb/
11518
11519 MXL301RF MEDIA DRIVER
11520 M:      Akihiro Tsukada <tskd08@gmail.com>
11521 L:      linux-media@vger.kernel.org
11522 S:      Odd Fixes
11523 F:      drivers/media/tuners/mxl301rf*
11524
11525 MXL5007T MEDIA DRIVER
11526 M:      Michael Krufky <mkrufky@linuxtv.org>
11527 L:      linux-media@vger.kernel.org
11528 W:      https://linuxtv.org
11529 W:      http://github.com/mkrufky
11530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11531 T:      git git://linuxtv.org/mkrufky/tuners.git
11532 S:      Maintained
11533 F:      drivers/media/tuners/mxl5007t.*
11534
11535 MXSFB DRM DRIVER
11536 M:      Marek Vasut <marex@denx.de>
11537 M:      Stefan Agner <stefan@agner.ch>
11538 L:      dri-devel@lists.freedesktop.org
11539 S:      Supported
11540 F:      drivers/gpu/drm/mxsfb/
11541 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11542 T:      git git://anongit.freedesktop.org/drm/drm-misc
11543
11544 MYLEX DAC960 PCI RAID Controller
11545 M:      Hannes Reinecke <hare@kernel.org>
11546 L:      linux-scsi@vger.kernel.org
11547 S:      Supported
11548 F:      drivers/scsi/myrb.*
11549 F:      drivers/scsi/myrs.*
11550
11551 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11552 M:      Chris Lee <christopher.lee@cspi.com>
11553 L:      netdev@vger.kernel.org
11554 W:      https://www.cspi.com/ethernet-products/support/downloads/
11555 S:      Supported
11556 F:      drivers/net/ethernet/myricom/myri10ge/
11557
11558 NAND FLASH SUBSYSTEM
11559 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11560 R:      Richard Weinberger <richard@nod.at>
11561 L:      linux-mtd@lists.infradead.org
11562 W:      http://www.linux-mtd.infradead.org/
11563 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11565 C:      irc://irc.oftc.net/mtd
11566 S:      Maintained
11567 F:      drivers/mtd/nand/
11568 F:      include/linux/mtd/*nand*.h
11569
11570 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11571 M:      Daniel Mack <zonque@gmail.com>
11572 S:      Maintained
11573 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11574 W:      http://www.native-instruments.com
11575 F:      sound/usb/caiaq/
11576
11577 NATSEMI ETHERNET DRIVER (DP8381x)
11578 S:      Orphan
11579 F:      drivers/net/ethernet/natsemi/natsemi.c
11580
11581 NCR 5380 SCSI DRIVERS
11582 M:      Finn Thain <fthain@telegraphics.com.au>
11583 M:      Michael Schmitz <schmitzmic@gmail.com>
11584 L:      linux-scsi@vger.kernel.org
11585 S:      Maintained
11586 F:      Documentation/scsi/g_NCR5380.rst
11587 F:      drivers/scsi/NCR5380.*
11588 F:      drivers/scsi/arm/cumana_1.c
11589 F:      drivers/scsi/arm/oak.c
11590 F:      drivers/scsi/atari_scsi.*
11591 F:      drivers/scsi/dmx3191d.c
11592 F:      drivers/scsi/g_NCR5380.*
11593 F:      drivers/scsi/mac_scsi.*
11594 F:      drivers/scsi/sun3_scsi.*
11595 F:      drivers/scsi/sun3_scsi_vme.c
11596
11597 NCSI LIBRARY
11598 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11599 S:      Maintained
11600 F:      net/ncsi/
11601
11602 NCT6775 HARDWARE MONITOR DRIVER
11603 M:      Guenter Roeck <linux@roeck-us.net>
11604 L:      linux-hwmon@vger.kernel.org
11605 S:      Maintained
11606 F:      Documentation/hwmon/nct6775.rst
11607 F:      drivers/hwmon/nct6775.c
11608
11609 NET_FAILOVER MODULE
11610 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11611 L:      netdev@vger.kernel.org
11612 S:      Supported
11613 F:      drivers/net/net_failover.c
11614 F:      include/net/net_failover.h
11615 F:      Documentation/networking/net_failover.rst
11616
11617 NETEM NETWORK EMULATOR
11618 M:      Stephen Hemminger <stephen@networkplumber.org>
11619 L:      netdev@vger.kernel.org
11620 S:      Maintained
11621 F:      net/sched/sch_netem.c
11622
11623 NETERION 10GbE DRIVERS (s2io/vxge)
11624 M:      Jon Mason <jdmason@kudzu.us>
11625 L:      netdev@vger.kernel.org
11626 S:      Supported
11627 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11628 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11629 F:      drivers/net/ethernet/neterion/
11630
11631 NETFILTER
11632 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11633 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11634 M:      Florian Westphal <fw@strlen.de>
11635 L:      netfilter-devel@vger.kernel.org
11636 L:      coreteam@netfilter.org
11637 W:      http://www.netfilter.org/
11638 W:      http://www.iptables.org/
11639 W:      http://www.nftables.org/
11640 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11643 S:      Maintained
11644 F:      include/linux/netfilter*
11645 F:      include/linux/netfilter/
11646 F:      include/net/netfilter/
11647 F:      include/uapi/linux/netfilter*
11648 F:      include/uapi/linux/netfilter/
11649 F:      net/*/netfilter.c
11650 F:      net/*/netfilter/
11651 F:      net/netfilter/
11652 F:      net/bridge/br_netfilter*.c
11653
11654 NETROM NETWORK LAYER
11655 M:      Ralf Baechle <ralf@linux-mips.org>
11656 L:      linux-hams@vger.kernel.org
11657 W:      http://www.linux-ax25.org/
11658 S:      Maintained
11659 F:      include/net/netrom.h
11660 F:      include/uapi/linux/netrom.h
11661 F:      net/netrom/
11662
11663 NETRONOME ETHERNET DRIVERS
11664 M:      Jakub Kicinski <kuba@kernel.org>
11665 L:      oss-drivers@netronome.com
11666 S:      Maintained
11667 F:      drivers/net/ethernet/netronome/
11668
11669 NETWORK BLOCK DEVICE (NBD)
11670 M:      Josef Bacik <josef@toxicpanda.com>
11671 S:      Maintained
11672 L:      linux-block@vger.kernel.org
11673 L:      nbd@other.debian.org
11674 F:      Documentation/admin-guide/blockdev/nbd.rst
11675 F:      drivers/block/nbd.c
11676 F:      include/trace/events/nbd.h
11677 F:      include/uapi/linux/nbd.h
11678
11679 NETWORK DROP MONITOR
11680 M:      Neil Horman <nhorman@tuxdriver.com>
11681 L:      netdev@vger.kernel.org
11682 S:      Maintained
11683 W:      https://fedorahosted.org/dropwatch/
11684 F:      net/core/drop_monitor.c
11685 F:      include/uapi/linux/net_dropmon.h
11686 F:      include/net/drop_monitor.h
11687
11688 NETWORKING DRIVERS
11689 M:      "David S. Miller" <davem@davemloft.net>
11690 L:      netdev@vger.kernel.org
11691 W:      http://www.linuxfoundation.org/en/Net
11692 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11695 S:      Odd Fixes
11696 F:      Documentation/devicetree/bindings/net/
11697 F:      drivers/net/
11698 F:      include/linux/if_*
11699 F:      include/linux/netdevice.h
11700 F:      include/linux/etherdevice.h
11701 F:      include/linux/fcdevice.h
11702 F:      include/linux/fddidevice.h
11703 F:      include/linux/hippidevice.h
11704 F:      include/linux/inetdevice.h
11705 F:      include/uapi/linux/if_*
11706 F:      include/uapi/linux/netdevice.h
11707
11708 NETWORKING DRIVERS (WIRELESS)
11709 M:      Kalle Valo <kvalo@codeaurora.org>
11710 L:      linux-wireless@vger.kernel.org
11711 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11714 S:      Maintained
11715 F:      Documentation/devicetree/bindings/net/wireless/
11716 F:      drivers/net/wireless/
11717
11718 NETWORKING [DSA]
11719 M:      Andrew Lunn <andrew@lunn.ch>
11720 M:      Vivien Didelot <vivien.didelot@gmail.com>
11721 M:      Florian Fainelli <f.fainelli@gmail.com>
11722 S:      Maintained
11723 F:      Documentation/devicetree/bindings/net/dsa/
11724 F:      net/dsa/
11725 F:      include/net/dsa.h
11726 F:      include/linux/dsa/
11727 F:      include/linux/platform_data/dsa.h
11728 F:      drivers/net/dsa/
11729
11730 NETWORKING [GENERAL]
11731 M:      "David S. Miller" <davem@davemloft.net>
11732 M:      Jakub Kicinski <kuba@kernel.org>
11733 L:      netdev@vger.kernel.org
11734 W:      http://www.linuxfoundation.org/en/Net
11735 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11738 B:      mailto:netdev@vger.kernel.org
11739 S:      Maintained
11740 F:      net/
11741 F:      include/net/
11742 F:      include/linux/in.h
11743 F:      include/linux/net.h
11744 F:      include/linux/netdevice.h
11745 F:      include/uapi/linux/in.h
11746 F:      include/uapi/linux/net.h
11747 F:      include/uapi/linux/netdevice.h
11748 F:      include/uapi/linux/net_namespace.h
11749 F:      tools/testing/selftests/net/
11750 F:      lib/net_utils.c
11751 F:      lib/random32.c
11752 F:      Documentation/networking/
11753
11754 NETWORKING [IPSEC]
11755 M:      Steffen Klassert <steffen.klassert@secunet.com>
11756 M:      Herbert Xu <herbert@gondor.apana.org.au>
11757 M:      "David S. Miller" <davem@davemloft.net>
11758 L:      netdev@vger.kernel.org
11759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11761 S:      Maintained
11762 F:      net/xfrm/
11763 F:      net/key/
11764 F:      net/ipv4/xfrm*
11765 F:      net/ipv4/esp4*
11766 F:      net/ipv4/ah4.c
11767 F:      net/ipv4/ipcomp.c
11768 F:      net/ipv4/ip_vti.c
11769 F:      net/ipv6/xfrm*
11770 F:      net/ipv6/esp6*
11771 F:      net/ipv6/ah6.c
11772 F:      net/ipv6/ipcomp6.c
11773 F:      net/ipv6/ip6_vti.c
11774 F:      include/uapi/linux/xfrm.h
11775 F:      include/net/xfrm.h
11776
11777 NETWORKING [IPv4/IPv6]
11778 M:      "David S. Miller" <davem@davemloft.net>
11779 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11780 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11781 L:      netdev@vger.kernel.org
11782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11783 S:      Maintained
11784 F:      net/ipv4/
11785 F:      net/ipv6/
11786 F:      include/net/ip*
11787 F:      arch/x86/net/*
11788
11789 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11790 M:      Paul Moore <paul@paul-moore.com>
11791 W:      https://github.com/netlabel
11792 L:      netdev@vger.kernel.org
11793 L:      linux-security-module@vger.kernel.org
11794 S:      Maintained
11795 F:      Documentation/netlabel/
11796 F:      include/net/calipso.h
11797 F:      include/net/cipso_ipv4.h
11798 F:      include/net/netlabel.h
11799 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11800 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11801 F:      net/netlabel/
11802 F:      net/ipv4/cipso_ipv4.c
11803 F:      net/ipv6/calipso.c
11804 F:      net/netfilter/xt_CONNSECMARK.c
11805 F:      net/netfilter/xt_SECMARK.c
11806
11807 NETWORKING [MPTCP]
11808 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11809 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11810 L:      netdev@vger.kernel.org
11811 L:      mptcp@lists.01.org
11812 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11813 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11814 S:      Maintained
11815 F:      include/net/mptcp.h
11816 F:      include/uapi/linux/mptcp.h
11817 F:      net/mptcp/
11818 F:      tools/testing/selftests/net/mptcp/
11819
11820 NETWORKING [TCP]
11821 M:      Eric Dumazet <edumazet@google.com>
11822 L:      netdev@vger.kernel.org
11823 S:      Maintained
11824 F:      net/ipv4/tcp*.c
11825 F:      net/ipv4/syncookies.c
11826 F:      net/ipv6/tcp*.c
11827 F:      net/ipv6/syncookies.c
11828 F:      include/uapi/linux/tcp.h
11829 F:      include/net/tcp.h
11830 F:      include/linux/tcp.h
11831 F:      include/trace/events/tcp.h
11832
11833 NETWORKING [TLS]
11834 M:      Boris Pismenny <borisp@mellanox.com>
11835 M:      Aviad Yehezkel <aviadye@mellanox.com>
11836 M:      John Fastabend <john.fastabend@gmail.com>
11837 M:      Daniel Borkmann <daniel@iogearbox.net>
11838 M:      Jakub Kicinski <kuba@kernel.org>
11839 L:      netdev@vger.kernel.org
11840 S:      Maintained
11841 F:      net/tls/*
11842 F:      include/uapi/linux/tls.h
11843 F:      include/net/tls.h
11844
11845 NETWORKING [WIRELESS]
11846 L:      linux-wireless@vger.kernel.org
11847 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11848
11849 NETDEVSIM
11850 M:      Jakub Kicinski <kuba@kernel.org>
11851 S:      Maintained
11852 F:      drivers/net/netdevsim/*
11853
11854 NETXEN (1/10) GbE SUPPORT
11855 M:      Manish Chopra <manishc@marvell.com>
11856 M:      Rahul Verma <rahulv@marvell.com>
11857 M:      GR-Linux-NIC-Dev@marvell.com
11858 L:      netdev@vger.kernel.org
11859 S:      Supported
11860 F:      drivers/net/ethernet/qlogic/netxen/
11861
11862 NEXTHOP
11863 M:      David Ahern <dsahern@kernel.org>
11864 L:      netdev@vger.kernel.org
11865 S:      Maintained
11866 F:      include/net/nexthop.h
11867 F:      include/uapi/linux/nexthop.h
11868 F:      include/net/netns/nexthop.h
11869 F:      net/ipv4/nexthop.c
11870
11871 NFC SUBSYSTEM
11872 L:      netdev@vger.kernel.org
11873 S:      Orphan
11874 F:      net/nfc/
11875 F:      include/net/nfc/
11876 F:      include/uapi/linux/nfc.h
11877 F:      drivers/nfc/
11878 F:      include/linux/platform_data/nfcmrvl.h
11879 F:      Documentation/devicetree/bindings/net/nfc/
11880
11881 NFS, SUNRPC, AND LOCKD CLIENTS
11882 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11883 M:      Anna Schumaker <anna.schumaker@netapp.com>
11884 L:      linux-nfs@vger.kernel.org
11885 W:      http://client.linux-nfs.org
11886 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11887 S:      Maintained
11888 F:      fs/lockd/
11889 F:      fs/nfs/
11890 F:      fs/nfs_common/
11891 F:      net/sunrpc/
11892 F:      include/linux/lockd/
11893 F:      include/linux/nfs*
11894 F:      include/linux/sunrpc/
11895 F:      include/uapi/linux/nfs*
11896 F:      include/uapi/linux/sunrpc/
11897
11898 NILFS2 FILESYSTEM
11899 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11900 L:      linux-nilfs@vger.kernel.org
11901 W:      https://nilfs.sourceforge.io/
11902 W:      https://nilfs.osdn.jp/
11903 T:      git git://github.com/konis/nilfs2.git
11904 S:      Supported
11905 F:      Documentation/filesystems/nilfs2.rst
11906 F:      fs/nilfs2/
11907 F:      include/trace/events/nilfs2.h
11908 F:      include/uapi/linux/nilfs2_api.h
11909 F:      include/uapi/linux/nilfs2_ondisk.h
11910
11911 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11912 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11913 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11914 S:      Maintained
11915 F:      Documentation/scsi/NinjaSCSI.rst
11916 F:      drivers/scsi/pcmcia/nsp_*
11917
11918 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11919 M:      GOTO Masanori <gotom@debian.or.jp>
11920 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11921 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11922 S:      Maintained
11923 F:      Documentation/scsi/NinjaSCSI.rst
11924 F:      drivers/scsi/nsp32*
11925
11926 NIOS2 ARCHITECTURE
11927 M:      Ley Foon Tan <ley.foon.tan@intel.com>
11928 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11930 S:      Maintained
11931 F:      arch/nios2/
11932
11933 NOHZ, DYNTICKS SUPPORT
11934 M:      Frederic Weisbecker <fweisbec@gmail.com>
11935 M:      Thomas Gleixner <tglx@linutronix.de>
11936 M:      Ingo Molnar <mingo@kernel.org>
11937 L:      linux-kernel@vger.kernel.org
11938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11939 S:      Maintained
11940 F:      kernel/time/tick*.*
11941 F:      include/linux/tick.h
11942 F:      include/linux/sched/nohz.h
11943
11944 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11945 M:      Pavel Machek <pavel@ucw.cz>
11946 M:      Sakari Ailus <sakari.ailus@iki.fi>
11947 L:      linux-media@vger.kernel.org
11948 S:      Maintained
11949 F:      drivers/media/i2c/et8ek8
11950 F:      drivers/media/i2c/ad5820.c
11951
11952 NOKIA N900 POWER SUPPLY DRIVERS
11953 R:      Pali Rohár <pali.rohar@gmail.com>
11954 F:      include/linux/power/bq2415x_charger.h
11955 F:      include/linux/power/bq27xxx_battery.h
11956 F:      drivers/power/supply/bq2415x_charger.c
11957 F:      drivers/power/supply/bq27xxx_battery.c
11958 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11959 F:      drivers/power/supply/isp1704_charger.c
11960 F:      drivers/power/supply/rx51_battery.c
11961
11962 NOLIBC HEADER FILE
11963 M:      Willy Tarreau <w@1wt.eu>
11964 S:      Maintained
11965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11966 F:      tools/include/nolibc/
11967
11968 NSDEPS
11969 M:      Matthias Maennich <maennich@google.com>
11970 S:      Maintained
11971 F:      scripts/nsdeps
11972 F:      Documentation/core-api/symbol-namespaces.rst
11973
11974 NTB AMD DRIVER
11975 M:      Sanjay R Mehta <sanju.mehta@amd.com>
11976 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11977 L:      linux-ntb@googlegroups.com
11978 S:      Supported
11979 F:      drivers/ntb/hw/amd/
11980
11981 NTB DRIVER CORE
11982 M:      Jon Mason <jdmason@kudzu.us>
11983 M:      Dave Jiang <dave.jiang@intel.com>
11984 M:      Allen Hubbe <allenbh@gmail.com>
11985 L:      linux-ntb@googlegroups.com
11986 S:      Supported
11987 W:      https://github.com/jonmason/ntb/wiki
11988 T:      git git://github.com/jonmason/ntb.git
11989 F:      drivers/ntb/
11990 F:      drivers/net/ntb_netdev.c
11991 F:      include/linux/ntb.h
11992 F:      include/linux/ntb_transport.h
11993 F:      tools/testing/selftests/ntb/
11994
11995 NTB IDT DRIVER
11996 M:      Serge Semin <fancer.lancer@gmail.com>
11997 L:      linux-ntb@googlegroups.com
11998 S:      Supported
11999 F:      drivers/ntb/hw/idt/
12000
12001 NTB INTEL DRIVER
12002 M:      Dave Jiang <dave.jiang@intel.com>
12003 L:      linux-ntb@googlegroups.com
12004 S:      Supported
12005 W:      https://github.com/davejiang/linux/wiki
12006 T:      git https://github.com/davejiang/linux.git
12007 F:      drivers/ntb/hw/intel/
12008
12009 NTFS FILESYSTEM
12010 M:      Anton Altaparmakov <anton@tuxera.com>
12011 L:      linux-ntfs-dev@lists.sourceforge.net
12012 W:      http://www.tuxera.com/
12013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12014 S:      Supported
12015 F:      Documentation/filesystems/ntfs.rst
12016 F:      fs/ntfs/
12017
12018 NUBUS SUBSYSTEM
12019 M:      Finn Thain <fthain@telegraphics.com.au>
12020 L:      linux-m68k@lists.linux-m68k.org
12021 S:      Maintained
12022 F:      arch/*/include/asm/nubus.h
12023 F:      drivers/nubus/
12024 F:      include/linux/nubus.h
12025 F:      include/uapi/linux/nubus.h
12026
12027 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12028 M:      Antonino Daplas <adaplas@gmail.com>
12029 L:      linux-fbdev@vger.kernel.org
12030 S:      Maintained
12031 F:      drivers/video/fbdev/riva/
12032 F:      drivers/video/fbdev/nvidia/
12033
12034 NVM EXPRESS DRIVER
12035 M:      Keith Busch <kbusch@kernel.org>
12036 M:      Jens Axboe <axboe@fb.com>
12037 M:      Christoph Hellwig <hch@lst.de>
12038 M:      Sagi Grimberg <sagi@grimberg.me>
12039 L:      linux-nvme@lists.infradead.org
12040 T:      git://git.infradead.org/nvme.git
12041 W:      http://git.infradead.org/nvme.git
12042 S:      Supported
12043 F:      drivers/nvme/host/
12044 F:      include/linux/nvme.h
12045 F:      include/uapi/linux/nvme_ioctl.h
12046
12047 NVM EXPRESS FC TRANSPORT DRIVERS
12048 M:      James Smart <james.smart@broadcom.com>
12049 L:      linux-nvme@lists.infradead.org
12050 S:      Supported
12051 F:      include/linux/nvme-fc.h
12052 F:      include/linux/nvme-fc-driver.h
12053 F:      drivers/nvme/host/fc.c
12054 F:      drivers/nvme/target/fc.c
12055 F:      drivers/nvme/target/fcloop.c
12056
12057 NVM EXPRESS TARGET DRIVER
12058 M:      Christoph Hellwig <hch@lst.de>
12059 M:      Sagi Grimberg <sagi@grimberg.me>
12060 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12061 L:      linux-nvme@lists.infradead.org
12062 T:      git://git.infradead.org/nvme.git
12063 W:      http://git.infradead.org/nvme.git
12064 S:      Supported
12065 F:      drivers/nvme/target/
12066
12067 NVMEM FRAMEWORK
12068 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12069 S:      Maintained
12070 F:      drivers/nvmem/
12071 F:      Documentation/devicetree/bindings/nvmem/
12072 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12073 F:      include/linux/nvmem-consumer.h
12074 F:      include/linux/nvmem-provider.h
12075
12076 NXP FXAS21002C DRIVER
12077 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12078 L:      linux-iio@vger.kernel.org
12079 S:      Maintained
12080 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12081 F:      drivers/iio/gyro/fxas21002c_core.c
12082 F:      drivers/iio/gyro/fxas21002c.h
12083 F:      drivers/iio/gyro/fxas21002c_i2c.c
12084 F:      drivers/iio/gyro/fxas21002c_spi.c
12085
12086 NXP SGTL5000 DRIVER
12087 M:      Fabio Estevam <festevam@gmail.com>
12088 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12089 S:      Maintained
12090 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12091 F:      sound/soc/codecs/sgtl5000*
12092
12093 NXP SJA1105 ETHERNET SWITCH DRIVER
12094 M:      Vladimir Oltean <olteanv@gmail.com>
12095 L:      linux-kernel@vger.kernel.org
12096 S:      Maintained
12097 F:      drivers/net/dsa/sja1105
12098
12099 NXP TDA998X DRM DRIVER
12100 M:      Russell King <linux@armlinux.org.uk>
12101 S:      Maintained
12102 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12103 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12104 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12105 F:      include/drm/i2c/tda998x.h
12106 F:      include/dt-bindings/display/tda998x.h
12107 K:      "nxp,tda998x"
12108
12109 NXP TFA9879 DRIVER
12110 M:      Peter Rosin <peda@axentia.se>
12111 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12112 S:      Maintained
12113 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12114 F:      sound/soc/codecs/tfa9879*
12115
12116 NXP-NCI NFC DRIVER
12117 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12118 R:      Charles Gorand <charles.gorand@effinnov.com>
12119 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12120 S:      Supported
12121 F:      drivers/nfc/nxp-nci
12122
12123 OBJAGG
12124 M:      Jiri Pirko <jiri@mellanox.com>
12125 L:      netdev@vger.kernel.org
12126 S:      Supported
12127 F:      lib/objagg.c
12128 F:      lib/test_objagg.c
12129 F:      include/linux/objagg.h
12130
12131 NXP FSPI DRIVER
12132 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12133 M:      Ashish Kumar <ashish.kumar@nxp.com>
12134 L:      linux-spi@vger.kernel.org
12135 S:      Maintained
12136 F:      drivers/spi/spi-nxp-fspi.c
12137 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12138
12139 OBJTOOL
12140 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12141 M:      Peter Zijlstra <peterz@infradead.org>
12142 S:      Supported
12143 F:      tools/objtool/
12144
12145 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12146 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12147 M:      Andrew Donnellan <ajd@linux.ibm.com>
12148 L:      linuxppc-dev@lists.ozlabs.org
12149 S:      Supported
12150 F:      arch/powerpc/platforms/powernv/ocxl.c
12151 F:      arch/powerpc/include/asm/pnv-ocxl.h
12152 F:      drivers/misc/ocxl/
12153 F:      include/misc/ocxl*
12154 F:      include/uapi/misc/ocxl.h
12155 F:      Documentation/userspace-api/accelerators/ocxl.rst
12156
12157 OMAP AUDIO SUPPORT
12158 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12159 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12160 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12161 L:      linux-omap@vger.kernel.org
12162 S:      Maintained
12163 F:      sound/soc/ti/omap*
12164 F:      sound/soc/ti/rx51.c
12165 F:      sound/soc/ti/n810.c
12166 F:      sound/soc/ti/sdma-pcm.*
12167
12168 OMAP CLOCK FRAMEWORK SUPPORT
12169 M:      Paul Walmsley <paul@pwsan.com>
12170 L:      linux-omap@vger.kernel.org
12171 S:      Maintained
12172 F:      arch/arm/*omap*/*clock*
12173
12174 OMAP DEVICE TREE SUPPORT
12175 M:      Benoît Cousson <bcousson@baylibre.com>
12176 M:      Tony Lindgren <tony@atomide.com>
12177 L:      linux-omap@vger.kernel.org
12178 L:      devicetree@vger.kernel.org
12179 S:      Maintained
12180 F:      arch/arm/boot/dts/*omap*
12181 F:      arch/arm/boot/dts/*am3*
12182 F:      arch/arm/boot/dts/*am4*
12183 F:      arch/arm/boot/dts/*am5*
12184 F:      arch/arm/boot/dts/*dra7*
12185 F:      arch/arm/boot/dts/logicpd-som-lv*
12186 F:      arch/arm/boot/dts/logicpd-torpedo*
12187
12188 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12189 L:      linux-omap@vger.kernel.org
12190 L:      linux-fbdev@vger.kernel.org
12191 S:      Orphan
12192 F:      drivers/video/fbdev/omap2/
12193 F:      Documentation/arm/omap/dss.rst
12194
12195 OMAP FRAMEBUFFER SUPPORT
12196 L:      linux-fbdev@vger.kernel.org
12197 L:      linux-omap@vger.kernel.org
12198 S:      Orphan
12199 F:      drivers/video/fbdev/omap/
12200
12201 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12202 M:      Roger Quadros <rogerq@ti.com>
12203 M:      Tony Lindgren <tony@atomide.com>
12204 L:      linux-omap@vger.kernel.org
12205 S:      Maintained
12206 F:      drivers/memory/omap-gpmc.c
12207 F:      arch/arm/mach-omap2/*gpmc*
12208
12209 OMAP GPIO DRIVER
12210 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12211 M:      Santosh Shilimkar <ssantosh@kernel.org>
12212 M:      Kevin Hilman <khilman@kernel.org>
12213 L:      linux-omap@vger.kernel.org
12214 S:      Maintained
12215 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12216 F:      drivers/gpio/gpio-omap.c
12217
12218 OMAP HARDWARE SPINLOCK SUPPORT
12219 M:      Ohad Ben-Cohen <ohad@wizery.com>
12220 L:      linux-omap@vger.kernel.org
12221 S:      Maintained
12222 F:      drivers/hwspinlock/omap_hwspinlock.c
12223
12224 OMAP HS MMC SUPPORT
12225 L:      linux-mmc@vger.kernel.org
12226 L:      linux-omap@vger.kernel.org
12227 S:      Orphan
12228 F:      drivers/mmc/host/omap_hsmmc.c
12229
12230 OMAP HWMOD DATA
12231 M:      Paul Walmsley <paul@pwsan.com>
12232 L:      linux-omap@vger.kernel.org
12233 S:      Maintained
12234 F:      arch/arm/mach-omap2/omap_hwmod*data*
12235
12236 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12237 M:      Benoît Cousson <bcousson@baylibre.com>
12238 L:      linux-omap@vger.kernel.org
12239 S:      Maintained
12240 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12241
12242 OMAP HWMOD SUPPORT
12243 M:      Benoît Cousson <bcousson@baylibre.com>
12244 M:      Paul Walmsley <paul@pwsan.com>
12245 L:      linux-omap@vger.kernel.org
12246 S:      Maintained
12247 F:      arch/arm/mach-omap2/omap_hwmod.*
12248
12249 OMAP I2C DRIVER
12250 M:      Vignesh R <vigneshr@ti.com>
12251 L:      linux-omap@vger.kernel.org
12252 L:      linux-i2c@vger.kernel.org
12253 S:      Maintained
12254 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12255 F:      drivers/i2c/busses/i2c-omap.c
12256
12257 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12258 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12259 L:      linux-media@vger.kernel.org
12260 S:      Maintained
12261 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12262 F:      drivers/media/platform/omap3isp/
12263 F:      drivers/staging/media/omap4iss/
12264
12265 OMAP MMC SUPPORT
12266 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12267 L:      linux-omap@vger.kernel.org
12268 S:      Odd Fixes
12269 F:      drivers/mmc/host/omap.c
12270
12271 OMAP POWER MANAGEMENT SUPPORT
12272 M:      Kevin Hilman <khilman@kernel.org>
12273 L:      linux-omap@vger.kernel.org
12274 S:      Maintained
12275 F:      arch/arm/*omap*/*pm*
12276 F:      drivers/cpufreq/omap-cpufreq.c
12277
12278 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12279 M:      Rajendra Nayak <rnayak@codeaurora.org>
12280 M:      Paul Walmsley <paul@pwsan.com>
12281 L:      linux-omap@vger.kernel.org
12282 S:      Maintained
12283 F:      arch/arm/mach-omap2/prm*
12284
12285 OMAP RANDOM NUMBER GENERATOR SUPPORT
12286 M:      Deepak Saxena <dsaxena@plexity.net>
12287 S:      Maintained
12288 F:      drivers/char/hw_random/omap-rng.c
12289
12290 OMAP USB SUPPORT
12291 L:      linux-usb@vger.kernel.org
12292 L:      linux-omap@vger.kernel.org
12293 S:      Orphan
12294 F:      drivers/usb/*/*omap*
12295 F:      arch/arm/*omap*/usb*
12296
12297 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12298 M:      Mark Jackson <mpfj@newflow.co.uk>
12299 L:      linux-omap@vger.kernel.org
12300 S:      Maintained
12301 F:      arch/arm/boot/dts/am335x-nano.dts
12302
12303 OMAP1 SUPPORT
12304 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12305 M:      Tony Lindgren <tony@atomide.com>
12306 L:      linux-omap@vger.kernel.org
12307 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12309 S:      Maintained
12310 F:      arch/arm/mach-omap1/
12311 F:      arch/arm/plat-omap/
12312 F:      arch/arm/configs/omap1_defconfig
12313 F:      drivers/i2c/busses/i2c-omap.c
12314 F:      include/linux/platform_data/i2c-omap.h
12315 F:      include/linux/platform_data/ams-delta-fiq.h
12316
12317 OMAP2+ SUPPORT
12318 M:      Tony Lindgren <tony@atomide.com>
12319 L:      linux-omap@vger.kernel.org
12320 W:      http://www.muru.com/linux/omap/
12321 W:      http://linux.omap.com/
12322 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12324 S:      Maintained
12325 F:      arch/arm/mach-omap2/
12326 F:      arch/arm/plat-omap/
12327 F:      arch/arm/configs/omap2plus_defconfig
12328 F:      drivers/bus/ti-sysc.c
12329 F:      drivers/i2c/busses/i2c-omap.c
12330 F:      drivers/irqchip/irq-omap-intc.c
12331 F:      drivers/mfd/*omap*.c
12332 F:      drivers/mfd/menelaus.c
12333 F:      drivers/mfd/palmas.c
12334 F:      drivers/mfd/tps65217.c
12335 F:      drivers/mfd/tps65218.c
12336 F:      drivers/mfd/tps65910.c
12337 F:      drivers/mfd/twl-core.[ch]
12338 F:      drivers/mfd/twl4030*.c
12339 F:      drivers/mfd/twl6030*.c
12340 F:      drivers/mfd/twl6040*.c
12341 F:      drivers/regulator/palmas-regulator*.c
12342 F:      drivers/regulator/pbias-regulator.c
12343 F:      drivers/regulator/tps65217-regulator.c
12344 F:      drivers/regulator/tps65218-regulator.c
12345 F:      drivers/regulator/tps65910-regulator.c
12346 F:      drivers/regulator/twl-regulator.c
12347 F:      drivers/regulator/twl6030-regulator.c
12348 F:      include/linux/platform_data/i2c-omap.h
12349 F:      include/linux/platform_data/ti-sysc.h
12350
12351 ONION OMEGA2+ BOARD
12352 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12353 L:      linux-mips@vger.kernel.org
12354 S:      Maintained
12355 F:      arch/mips/boot/dts/ralink/omega2p.dts
12356
12357 OMFS FILESYSTEM
12358 M:      Bob Copeland <me@bobcopeland.com>
12359 L:      linux-karma-devel@lists.sourceforge.net
12360 S:      Maintained
12361 F:      Documentation/filesystems/omfs.rst
12362 F:      fs/omfs/
12363
12364 OMNIKEY CARDMAN 4000 DRIVER
12365 M:      Harald Welte <laforge@gnumonks.org>
12366 S:      Maintained
12367 F:      drivers/char/pcmcia/cm4000_cs.c
12368 F:      include/linux/cm4000_cs.h
12369 F:      include/uapi/linux/cm4000_cs.h
12370
12371 OMNIKEY CARDMAN 4040 DRIVER
12372 M:      Harald Welte <laforge@gnumonks.org>
12373 S:      Maintained
12374 F:      drivers/char/pcmcia/cm4040_cs.*
12375
12376 OMNIVISION OV13858 SENSOR DRIVER
12377 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12378 L:      linux-media@vger.kernel.org
12379 T:      git git://linuxtv.org/media_tree.git
12380 S:      Maintained
12381 F:      drivers/media/i2c/ov13858.c
12382
12383 OMNIVISION OV2680 SENSOR DRIVER
12384 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12385 L:      linux-media@vger.kernel.org
12386 T:      git git://linuxtv.org/media_tree.git
12387 S:      Maintained
12388 F:      drivers/media/i2c/ov2680.c
12389 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12390
12391 OMNIVISION OV2685 SENSOR DRIVER
12392 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12393 L:      linux-media@vger.kernel.org
12394 T:      git git://linuxtv.org/media_tree.git
12395 S:      Maintained
12396 F:      drivers/media/i2c/ov2685.c
12397
12398 OMNIVISION OV5640 SENSOR DRIVER
12399 M:      Steve Longerbeam <slongerbeam@gmail.com>
12400 L:      linux-media@vger.kernel.org
12401 T:      git git://linuxtv.org/media_tree.git
12402 S:      Maintained
12403 F:      drivers/media/i2c/ov5640.c
12404
12405 OMNIVISION OV5647 SENSOR DRIVER
12406 M:      Luis Oliveira <lolivei@synopsys.com>
12407 L:      linux-media@vger.kernel.org
12408 T:      git git://linuxtv.org/media_tree.git
12409 S:      Maintained
12410 F:      drivers/media/i2c/ov5647.c
12411
12412 OMNIVISION OV5670 SENSOR DRIVER
12413 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12414 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12415 L:      linux-media@vger.kernel.org
12416 T:      git git://linuxtv.org/media_tree.git
12417 S:      Maintained
12418 F:      drivers/media/i2c/ov5670.c
12419
12420 OMNIVISION OV5675 SENSOR DRIVER
12421 M:      Shawn Tu <shawnx.tu@intel.com>
12422 L:      linux-media@vger.kernel.org
12423 T:      git git://linuxtv.org/media_tree.git
12424 S:      Maintained
12425 F:      drivers/media/i2c/ov5675.c
12426
12427 OMNIVISION OV5695 SENSOR DRIVER
12428 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12429 L:      linux-media@vger.kernel.org
12430 T:      git git://linuxtv.org/media_tree.git
12431 S:      Maintained
12432 F:      drivers/media/i2c/ov5695.c
12433
12434 OMNIVISION OV7670 SENSOR DRIVER
12435 M:      Jonathan Corbet <corbet@lwn.net>
12436 L:      linux-media@vger.kernel.org
12437 T:      git git://linuxtv.org/media_tree.git
12438 S:      Maintained
12439 F:      drivers/media/i2c/ov7670.c
12440 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12441
12442 OMNIVISION OV772x SENSOR DRIVER
12443 M:      Jacopo Mondi <jacopo@jmondi.org>
12444 L:      linux-media@vger.kernel.org
12445 T:      git git://linuxtv.org/media_tree.git
12446 S:      Odd fixes
12447 F:      drivers/media/i2c/ov772x.c
12448 F:      include/media/i2c/ov772x.h
12449 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12450
12451 OMNIVISION OV7740 SENSOR DRIVER
12452 M:      Wenyou Yang <wenyou.yang@microchip.com>
12453 L:      linux-media@vger.kernel.org
12454 T:      git git://linuxtv.org/media_tree.git
12455 S:      Maintained
12456 F:      drivers/media/i2c/ov7740.c
12457 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12458
12459 OMNIVISION OV9640 SENSOR DRIVER
12460 M:      Petr Cvek <petrcvekcz@gmail.com>
12461 L:      linux-media@vger.kernel.org
12462 S:      Maintained
12463 F:      drivers/media/i2c/ov9640.*
12464
12465 OMNIVISION OV8856 SENSOR DRIVER
12466 M:      Ben Kao <ben.kao@intel.com>
12467 L:      linux-media@vger.kernel.org
12468 T:      git git://linuxtv.org/media_tree.git
12469 S:      Maintained
12470 F:      drivers/media/i2c/ov8856.c
12471
12472 OMNIVISION OV9650 SENSOR DRIVER
12473 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12474 R:      Akinobu Mita <akinobu.mita@gmail.com>
12475 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12476 L:      linux-media@vger.kernel.org
12477 T:      git git://linuxtv.org/media_tree.git
12478 S:      Maintained
12479 F:      drivers/media/i2c/ov9650.c
12480 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12481
12482 ONENAND FLASH DRIVER
12483 M:      Kyungmin Park <kyungmin.park@samsung.com>
12484 L:      linux-mtd@lists.infradead.org
12485 S:      Maintained
12486 F:      drivers/mtd/nand/onenand/
12487 F:      include/linux/mtd/onenand*.h
12488
12489 OP-TEE DRIVER
12490 M:      Jens Wiklander <jens.wiklander@linaro.org>
12491 L:      tee-dev@lists.linaro.org
12492 S:      Maintained
12493 F:      drivers/tee/optee/
12494
12495 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12496 M:      Sumit Garg <sumit.garg@linaro.org>
12497 L:      tee-dev@lists.linaro.org
12498 S:      Maintained
12499 F:      drivers/char/hw_random/optee-rng.c
12500
12501 OPA-VNIC DRIVER
12502 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12503 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12504 L:      linux-rdma@vger.kernel.org
12505 S:      Supported
12506 F:      drivers/infiniband/ulp/opa_vnic
12507
12508 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12509 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12510 M:      Frank Rowand <frowand.list@gmail.com>
12511 L:      devicetree@vger.kernel.org
12512 S:      Maintained
12513 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12514 F:      Documentation/devicetree/overlay-notes.txt
12515 F:      drivers/of/overlay.c
12516 F:      drivers/of/resolver.c
12517 K:      of_overlay_notifier_
12518
12519 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12520 M:      Rob Herring <robh+dt@kernel.org>
12521 M:      Frank Rowand <frowand.list@gmail.com>
12522 L:      devicetree@vger.kernel.org
12523 W:      http://www.devicetree.org/
12524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12525 S:      Maintained
12526 F:      drivers/of/
12527 F:      include/linux/of*.h
12528 F:      scripts/dtc/
12529 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12530
12531 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12532 M:      Rob Herring <robh+dt@kernel.org>
12533 L:      devicetree@vger.kernel.org
12534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12535 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12536 S:      Maintained
12537 F:      Documentation/devicetree/
12538 F:      arch/*/boot/dts/
12539 F:      include/dt-bindings/
12540
12541 OPENCORES I2C BUS DRIVER
12542 M:      Peter Korsgaard <peter@korsgaard.com>
12543 M:      Andrew Lunn <andrew@lunn.ch>
12544 L:      linux-i2c@vger.kernel.org
12545 S:      Maintained
12546 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12547 F:      Documentation/i2c/busses/i2c-ocores.rst
12548 F:      drivers/i2c/busses/i2c-ocores.c
12549 F:      include/linux/platform_data/i2c-ocores.h
12550
12551 OPENRISC ARCHITECTURE
12552 M:      Jonas Bonn <jonas@southpole.se>
12553 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12554 M:      Stafford Horne <shorne@gmail.com>
12555 T:      git git://github.com/openrisc/linux.git
12556 L:      openrisc@lists.librecores.org
12557 W:      http://openrisc.io
12558 S:      Maintained
12559 F:      Documentation/devicetree/bindings/openrisc/
12560 F:      Documentation/openrisc/
12561 F:      arch/openrisc/
12562 F:      drivers/irqchip/irq-ompic.c
12563 F:      drivers/irqchip/irq-or1k-*
12564
12565 OPENVSWITCH
12566 M:      Pravin B Shelar <pshelar@ovn.org>
12567 L:      netdev@vger.kernel.org
12568 L:      dev@openvswitch.org
12569 W:      http://openvswitch.org
12570 S:      Maintained
12571 F:      net/openvswitch/
12572 F:      include/uapi/linux/openvswitch.h
12573
12574 OPERATING PERFORMANCE POINTS (OPP)
12575 M:      Viresh Kumar <vireshk@kernel.org>
12576 M:      Nishanth Menon <nm@ti.com>
12577 M:      Stephen Boyd <sboyd@kernel.org>
12578 L:      linux-pm@vger.kernel.org
12579 S:      Maintained
12580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12581 F:      drivers/opp/
12582 F:      include/linux/pm_opp.h
12583 F:      Documentation/power/opp.rst
12584 F:      Documentation/devicetree/bindings/opp/
12585
12586 OPL4 DRIVER
12587 M:      Clemens Ladisch <clemens@ladisch.de>
12588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12590 S:      Maintained
12591 F:      sound/drivers/opl4/
12592
12593 OPROFILE
12594 M:      Robert Richter <rric@kernel.org>
12595 L:      oprofile-list@lists.sf.net
12596 S:      Maintained
12597 F:      arch/*/include/asm/oprofile*.h
12598 F:      arch/*/oprofile/
12599 F:      drivers/oprofile/
12600 F:      include/linux/oprofile.h
12601
12602 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12603 M:      Mark Fasheh <mark@fasheh.com>
12604 M:      Joel Becker <jlbec@evilplan.org>
12605 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12606 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12607 W:      http://ocfs2.wiki.kernel.org
12608 S:      Supported
12609 F:      Documentation/filesystems/ocfs2.rst
12610 F:      Documentation/filesystems/dlmfs.rst
12611 F:      fs/ocfs2/
12612
12613 ORANGEFS FILESYSTEM
12614 M:      Mike Marshall <hubcap@omnibond.com>
12615 R:      Martin Brandenburg <martin@omnibond.com>
12616 L:      devel@lists.orangefs.org
12617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12618 S:      Supported
12619 F:      fs/orangefs/
12620 F:      Documentation/filesystems/orangefs.rst
12621
12622 ORINOCO DRIVER
12623 L:      linux-wireless@vger.kernel.org
12624 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12625 W:      http://www.nongnu.org/orinoco/
12626 S:      Orphan
12627 F:      drivers/net/wireless/intersil/orinoco/
12628
12629 OV2659 OMNIVISION SENSOR DRIVER
12630 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12631 L:      linux-media@vger.kernel.org
12632 W:      https://linuxtv.org
12633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12634 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12635 S:      Maintained
12636 F:      drivers/media/i2c/ov2659.c
12637 F:      include/media/i2c/ov2659.h
12638
12639 OVERLAY FILESYSTEM
12640 M:      Miklos Szeredi <miklos@szeredi.hu>
12641 L:      linux-unionfs@vger.kernel.org
12642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12643 S:      Supported
12644 F:      fs/overlayfs/
12645 F:      Documentation/filesystems/overlayfs.rst
12646
12647 P54 WIRELESS DRIVER
12648 M:      Christian Lamparter <chunkeey@googlemail.com>
12649 L:      linux-wireless@vger.kernel.org
12650 W:      http://wireless.kernel.org/en/users/Drivers/p54
12651 S:      Maintained
12652 F:      drivers/net/wireless/intersil/p54/
12653
12654 PACKING
12655 M:      Vladimir Oltean <olteanv@gmail.com>
12656 L:      netdev@vger.kernel.org
12657 S:      Supported
12658 F:      lib/packing.c
12659 F:      include/linux/packing.h
12660 F:      Documentation/core-api/packing.rst
12661
12662 PADATA PARALLEL EXECUTION MECHANISM
12663 M:      Steffen Klassert <steffen.klassert@secunet.com>
12664 L:      linux-crypto@vger.kernel.org
12665 S:      Maintained
12666 F:      kernel/padata.c
12667 F:      include/linux/padata.h
12668 F:      Documentation/core-api/padata.rst
12669
12670 PAGE POOL
12671 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12672 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12673 L:      netdev@vger.kernel.org
12674 S:      Supported
12675 F:      net/core/page_pool.c
12676 F:      include/net/page_pool.h
12677
12678 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12679 M:      Harald Welte <laforge@gnumonks.org>
12680 L:      platform-driver-x86@vger.kernel.org
12681 S:      Maintained
12682 F:      drivers/platform/x86/panasonic-laptop.c
12683
12684 PARALLAX PING IIO SENSOR DRIVER
12685 M:      Andreas Klinger <ak@it-klinger.de>
12686 L:      linux-iio@vger.kernel.org
12687 S:      Maintained
12688 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12689 F:      drivers/iio/proximity/ping.c
12690
12691 PARALLEL LCD/KEYPAD PANEL DRIVER
12692 M:      Willy Tarreau <willy@haproxy.com>
12693 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12694 S:      Odd Fixes
12695 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12696 F:      drivers/auxdisplay/panel.c
12697
12698 PARALLEL PORT SUBSYSTEM
12699 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12700 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12701 L:      linux-parport@lists.infradead.org (subscribers-only)
12702 S:      Maintained
12703 F:      drivers/parport/
12704 F:      include/linux/parport*.h
12705 F:      drivers/char/ppdev.c
12706 F:      include/uapi/linux/ppdev.h
12707 F:      Documentation/driver-api/parport*.rst
12708
12709 PARAVIRT_OPS INTERFACE
12710 M:      Juergen Gross <jgross@suse.com>
12711 M:      Thomas Hellstrom <thellstrom@vmware.com>
12712 M:      "VMware, Inc." <pv-drivers@vmware.com>
12713 L:      virtualization@lists.linux-foundation.org
12714 S:      Supported
12715 F:      Documentation/virt/paravirt_ops.rst
12716 F:      arch/*/kernel/paravirt*
12717 F:      arch/*/include/asm/paravirt*.h
12718 F:      include/linux/hypervisor.h
12719
12720 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12721 M:      Tim Waugh <tim@cyberelk.net>
12722 L:      linux-parport@lists.infradead.org (subscribers-only)
12723 S:      Maintained
12724 F:      Documentation/admin-guide/blockdev/paride.rst
12725 F:      drivers/block/paride/
12726
12727 PARISC ARCHITECTURE
12728 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12729 M:      Helge Deller <deller@gmx.de>
12730 L:      linux-parisc@vger.kernel.org
12731 W:      http://www.parisc-linux.org/
12732 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12735 S:      Maintained
12736 F:      arch/parisc/
12737 F:      Documentation/parisc/
12738 F:      drivers/parisc/
12739 F:      drivers/char/agp/parisc-agp.c
12740 F:      drivers/input/misc/hp_sdc_rtc.c
12741 F:      drivers/input/serio/gscps2.c
12742 F:      drivers/input/serio/hp_sdc*
12743 F:      drivers/parport/parport_gsc.*
12744 F:      drivers/tty/serial/8250/8250_gsc.c
12745 F:      drivers/video/fbdev/sti*
12746 F:      drivers/video/console/sti*
12747 F:      drivers/video/logo/logo_parisc*
12748 F:      include/linux/hp_sdc.h
12749
12750 PARMAN
12751 M:      Jiri Pirko <jiri@mellanox.com>
12752 L:      netdev@vger.kernel.org
12753 S:      Supported
12754 F:      lib/parman.c
12755 F:      lib/test_parman.c
12756 F:      include/linux/parman.h
12757
12758 PC ENGINES APU BOARD DRIVER
12759 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12760 S:      Maintained
12761 F:      drivers/platform/x86/pcengines-apuv2.c
12762
12763 PC87360 HARDWARE MONITORING DRIVER
12764 M:      Jim Cromie <jim.cromie@gmail.com>
12765 L:      linux-hwmon@vger.kernel.org
12766 S:      Maintained
12767 F:      Documentation/hwmon/pc87360.rst
12768 F:      drivers/hwmon/pc87360.c
12769
12770 PC8736x GPIO DRIVER
12771 M:      Jim Cromie <jim.cromie@gmail.com>
12772 S:      Maintained
12773 F:      drivers/char/pc8736x_gpio.c
12774
12775 PC87427 HARDWARE MONITORING DRIVER
12776 M:      Jean Delvare <jdelvare@suse.com>
12777 L:      linux-hwmon@vger.kernel.org
12778 S:      Maintained
12779 F:      Documentation/hwmon/pc87427.rst
12780 F:      drivers/hwmon/pc87427.c
12781
12782 PCA9532 LED DRIVER
12783 M:      Riku Voipio <riku.voipio@iki.fi>
12784 S:      Maintained
12785 F:      drivers/leds/leds-pca9532.c
12786 F:      include/linux/leds-pca9532.h
12787
12788 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12789 M:      Guenter Roeck <linux@roeck-us.net>
12790 L:      linux-i2c@vger.kernel.org
12791 S:      Maintained
12792 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12793
12794 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12795 M:      Khalid Aziz <khalid@gonehiking.org>
12796 S:      Maintained
12797 F:      drivers/firmware/pcdp.*
12798
12799 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12800 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12801 L:      linux-pci@vger.kernel.org
12802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12803 S:      Maintained
12804 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12805 F:      drivers/pci/controller/pci-aardvark.c
12806
12807 PCI DRIVER FOR ALTERA PCIE IP
12808 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12809 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12810 L:      linux-pci@vger.kernel.org
12811 S:      Supported
12812 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12813 F:      drivers/pci/controller/pcie-altera.c
12814
12815 PCI DRIVER FOR APPLIEDMICRO XGENE
12816 M:      Toan Le <toan@os.amperecomputing.com>
12817 L:      linux-pci@vger.kernel.org
12818 L:      linux-arm-kernel@lists.infradead.org
12819 S:      Maintained
12820 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12821 F:      drivers/pci/controller/pci-xgene.c
12822
12823 PCI DRIVER FOR ARM VERSATILE PLATFORM
12824 M:      Rob Herring <robh@kernel.org>
12825 L:      linux-pci@vger.kernel.org
12826 L:      linux-arm-kernel@lists.infradead.org
12827 S:      Maintained
12828 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12829 F:      drivers/pci/controller/pci-versatile.c
12830
12831 PCI DRIVER FOR ARMADA 8K
12832 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12833 L:      linux-pci@vger.kernel.org
12834 L:      linux-arm-kernel@lists.infradead.org
12835 S:      Maintained
12836 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12837 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12838
12839 PCI DRIVER FOR CADENCE PCIE IP
12840 M:      Tom Joseph <tjoseph@cadence.com>
12841 L:      linux-pci@vger.kernel.org
12842 S:      Maintained
12843 F:      Documentation/devicetree/bindings/pci/cdns,*
12844 F:      drivers/pci/controller/cadence/
12845
12846 PCI DRIVER FOR FREESCALE LAYERSCAPE
12847 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12848 M:      Mingkai Hu <mingkai.hu@nxp.com>
12849 M:      Roy Zang <roy.zang@nxp.com>
12850 L:      linuxppc-dev@lists.ozlabs.org
12851 L:      linux-pci@vger.kernel.org
12852 L:      linux-arm-kernel@lists.infradead.org
12853 S:      Maintained
12854 F:      drivers/pci/controller/dwc/*layerscape*
12855
12856 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12857 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12858 L:      linux-pci@vger.kernel.org
12859 L:      linux-arm-kernel@lists.infradead.org
12860 S:      Maintained
12861 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12862 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12863
12864 PCI DRIVER FOR GENERIC OF HOSTS
12865 M:      Will Deacon <will@kernel.org>
12866 L:      linux-pci@vger.kernel.org
12867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12868 S:      Maintained
12869 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12870 F:      drivers/pci/controller/pci-host-common.c
12871 F:      drivers/pci/controller/pci-host-generic.c
12872
12873 PCI DRIVER FOR IMX6
12874 M:      Richard Zhu <hongxing.zhu@nxp.com>
12875 M:      Lucas Stach <l.stach@pengutronix.de>
12876 L:      linux-pci@vger.kernel.org
12877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12878 S:      Maintained
12879 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12880 F:      drivers/pci/controller/dwc/*imx6*
12881
12882 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12883 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12884 L:      linux-pci@vger.kernel.org
12885 S:      Supported
12886 F:      drivers/pci/controller/vmd.c
12887
12888 PCI DRIVER FOR MICROSEMI SWITCHTEC
12889 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12890 M:      Logan Gunthorpe <logang@deltatee.com>
12891 L:      linux-pci@vger.kernel.org
12892 S:      Maintained
12893 F:      Documentation/driver-api/switchtec.rst
12894 F:      Documentation/ABI/testing/sysfs-class-switchtec
12895 F:      drivers/pci/switch/switchtec*
12896 F:      include/uapi/linux/switchtec_ioctl.h
12897 F:      include/linux/switchtec.h
12898 F:      drivers/ntb/hw/mscc/
12899
12900 PCI DRIVER FOR MOBIVEIL PCIE IP
12901 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12902 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12903 L:      linux-pci@vger.kernel.org
12904 S:      Supported
12905 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12906 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12907
12908 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12909 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12910 M:      Jason Cooper <jason@lakedaemon.net>
12911 L:      linux-pci@vger.kernel.org
12912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12913 S:      Maintained
12914 F:      drivers/pci/controller/*mvebu*
12915
12916 PCI DRIVER FOR NVIDIA TEGRA
12917 M:      Thierry Reding <thierry.reding@gmail.com>
12918 L:      linux-tegra@vger.kernel.org
12919 L:      linux-pci@vger.kernel.org
12920 S:      Supported
12921 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12922 F:      drivers/pci/controller/pci-tegra.c
12923
12924 PCI DRIVER FOR RENESAS R-CAR
12925 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
12926 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12927 L:      linux-pci@vger.kernel.org
12928 L:      linux-renesas-soc@vger.kernel.org
12929 S:      Maintained
12930 F:      drivers/pci/controller/*rcar*
12931
12932 PCI DRIVER FOR SAMSUNG EXYNOS
12933 M:      Jingoo Han <jingoohan1@gmail.com>
12934 L:      linux-pci@vger.kernel.org
12935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12936 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12937 S:      Maintained
12938 F:      drivers/pci/controller/dwc/pci-exynos.c
12939
12940 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12941 M:      Jingoo Han <jingoohan1@gmail.com>
12942 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12943 L:      linux-pci@vger.kernel.org
12944 S:      Maintained
12945 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12946 F:      drivers/pci/controller/dwc/*designware*
12947
12948 PCI DRIVER FOR TI DRA7XX
12949 M:      Kishon Vijay Abraham I <kishon@ti.com>
12950 L:      linux-omap@vger.kernel.org
12951 L:      linux-pci@vger.kernel.org
12952 S:      Supported
12953 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12954 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12955
12956 PCI DRIVER FOR TI KEYSTONE
12957 M:      Murali Karicheri <m-karicheri2@ti.com>
12958 L:      linux-pci@vger.kernel.org
12959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12960 S:      Maintained
12961 F:      drivers/pci/controller/dwc/pci-keystone.c
12962
12963 PCI ENDPOINT SUBSYSTEM
12964 M:      Kishon Vijay Abraham I <kishon@ti.com>
12965 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12966 L:      linux-pci@vger.kernel.org
12967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12968 S:      Supported
12969 F:      drivers/pci/endpoint/
12970 F:      drivers/misc/pci_endpoint_test.c
12971 F:      tools/pci/
12972
12973 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12974 M:      Russell Currey <ruscur@russell.cc>
12975 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12976 M:      Oliver O'Halloran <oohall@gmail.com>
12977 L:      linuxppc-dev@lists.ozlabs.org
12978 S:      Supported
12979 F:      Documentation/PCI/pci-error-recovery.rst
12980 F:      drivers/pci/pcie/aer.c
12981 F:      drivers/pci/pcie/dpc.c
12982 F:      drivers/pci/pcie/err.c
12983 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12984 F:      arch/powerpc/kernel/eeh*.c
12985 F:      arch/powerpc/platforms/*/eeh*.c
12986 F:      arch/powerpc/include/*/eeh*.h
12987
12988 PCI ERROR RECOVERY
12989 M:      Linas Vepstas <linasvepstas@gmail.com>
12990 L:      linux-pci@vger.kernel.org
12991 S:      Supported
12992 F:      Documentation/PCI/pci-error-recovery.rst
12993
12994 PCI MSI DRIVER FOR ALTERA MSI IP
12995 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12996 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12997 L:      linux-pci@vger.kernel.org
12998 S:      Supported
12999 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
13000 F:      drivers/pci/controller/pcie-altera-msi.c
13001
13002 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13003 M:      Toan Le <toan@os.amperecomputing.com>
13004 L:      linux-pci@vger.kernel.org
13005 L:      linux-arm-kernel@lists.infradead.org
13006 S:      Maintained
13007 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13008 F:      drivers/pci/controller/pci-xgene-msi.c
13009
13010 PCI SUBSYSTEM
13011 M:      Bjorn Helgaas <bhelgaas@google.com>
13012 L:      linux-pci@vger.kernel.org
13013 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13015 S:      Supported
13016 F:      Documentation/devicetree/bindings/pci/
13017 F:      Documentation/PCI/
13018 F:      drivers/acpi/pci*
13019 F:      drivers/pci/
13020 F:      include/asm-generic/pci*
13021 F:      include/linux/pci*
13022 F:      include/linux/of_pci.h
13023 F:      include/uapi/linux/pci*
13024 F:      lib/pci*
13025 F:      arch/x86/pci/
13026 F:      arch/x86/kernel/quirks.c
13027 F:      arch/x86/kernel/early-quirks.c
13028
13029 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13030 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13031 R:      Andrew Murray <amurray@thegoodpenguin.co.uk>
13032 L:      linux-pci@vger.kernel.org
13033 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13035 S:      Supported
13036 F:      drivers/pci/controller/
13037
13038 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13039 M:      Jonathan Chocron <jonnyc@amazon.com>
13040 L:      linux-pci@vger.kernel.org
13041 S:      Maintained
13042 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13043 F:      drivers/pci/controller/dwc/pcie-al.c
13044
13045 PCIE DRIVER FOR AMLOGIC MESON
13046 M:      Yue Wang <yue.wang@Amlogic.com>
13047 L:      linux-pci@vger.kernel.org
13048 L:      linux-amlogic@lists.infradead.org
13049 S:      Maintained
13050 F:      drivers/pci/controller/dwc/pci-meson.c
13051
13052 PCIE DRIVER FOR AXIS ARTPEC
13053 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13054 L:      linux-arm-kernel@axis.com
13055 L:      linux-pci@vger.kernel.org
13056 S:      Maintained
13057 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13058 F:      drivers/pci/controller/dwc/*artpec*
13059
13060 PCIE DRIVER FOR CAVIUM THUNDERX
13061 M:      Robert Richter <rrichter@marvell.com>
13062 L:      linux-pci@vger.kernel.org
13063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13064 S:      Supported
13065 F:      drivers/pci/controller/pci-thunder-*
13066
13067 PCIE DRIVER FOR HISILICON
13068 M:      Zhou Wang <wangzhou1@hisilicon.com>
13069 L:      linux-pci@vger.kernel.org
13070 S:      Maintained
13071 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13072 F:      drivers/pci/controller/dwc/pcie-hisi.c
13073
13074 PCIE DRIVER FOR HISILICON KIRIN
13075 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13076 M:      Binghui Wang <wangbinghui@hisilicon.com>
13077 L:      linux-pci@vger.kernel.org
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13080 F:      drivers/pci/controller/dwc/pcie-kirin.c
13081
13082 PCIE DRIVER FOR HISILICON STB
13083 M:      Shawn Guo <shawn.guo@linaro.org>
13084 L:      linux-pci@vger.kernel.org
13085 S:      Maintained
13086 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13087 F:      drivers/pci/controller/dwc/pcie-histb.c
13088
13089 PCIE DRIVER FOR MEDIATEK
13090 M:      Ryder Lee <ryder.lee@mediatek.com>
13091 L:      linux-pci@vger.kernel.org
13092 L:      linux-mediatek@lists.infradead.org
13093 S:      Supported
13094 F:      Documentation/devicetree/bindings/pci/mediatek*
13095 F:      drivers/pci/controller/*mediatek*
13096
13097 PCIE DRIVER FOR QUALCOMM MSM
13098 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13099 L:      linux-pci@vger.kernel.org
13100 L:      linux-arm-msm@vger.kernel.org
13101 S:      Maintained
13102 F:      drivers/pci/controller/dwc/*qcom*
13103
13104 PCIE DRIVER FOR ROCKCHIP
13105 M:      Shawn Lin <shawn.lin@rock-chips.com>
13106 L:      linux-pci@vger.kernel.org
13107 L:      linux-rockchip@lists.infradead.org
13108 S:      Maintained
13109 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13110 F:      drivers/pci/controller/pcie-rockchip*
13111
13112 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13113 M:      Linus Walleij <linus.walleij@linaro.org>
13114 L:      linux-pci@vger.kernel.org
13115 S:      Maintained
13116 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13117 F:      drivers/pci/controller/pci-v3-semi.c
13118
13119 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13120 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13121 L:      linux-pci@vger.kernel.org
13122 S:      Maintained
13123 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13124 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13125
13126 PCIE DRIVER FOR ST SPEAR13XX
13127 M:      Pratyush Anand <pratyush.anand@gmail.com>
13128 L:      linux-pci@vger.kernel.org
13129 S:      Maintained
13130 F:      drivers/pci/controller/dwc/*spear*
13131
13132 PCMCIA SUBSYSTEM
13133 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13135 S:      Odd Fixes
13136 F:      Documentation/pcmcia/
13137 F:      tools/pcmcia/
13138 F:      drivers/pcmcia/
13139 F:      include/pcmcia/
13140
13141 PCNET32 NETWORK DRIVER
13142 M:      Don Fry <pcnet32@frontier.com>
13143 L:      netdev@vger.kernel.org
13144 S:      Maintained
13145 F:      drivers/net/ethernet/amd/pcnet32.c
13146
13147 PCRYPT PARALLEL CRYPTO ENGINE
13148 M:      Steffen Klassert <steffen.klassert@secunet.com>
13149 L:      linux-crypto@vger.kernel.org
13150 S:      Maintained
13151 F:      crypto/pcrypt.c
13152 F:      include/crypto/pcrypt.h
13153
13154 PEAQ WMI HOTKEYS DRIVER
13155 M:      Hans de Goede <hdegoede@redhat.com>
13156 L:      platform-driver-x86@vger.kernel.org
13157 S:      Maintained
13158 F:      drivers/platform/x86/peaq-wmi.c
13159
13160 PENSANDO ETHERNET DRIVERS
13161 M:      Shannon Nelson <snelson@pensando.io>
13162 M:      Pensando Drivers <drivers@pensando.io>
13163 L:      netdev@vger.kernel.org
13164 S:      Supported
13165 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13166 F:      drivers/net/ethernet/pensando/
13167
13168 PER-CPU MEMORY ALLOCATOR
13169 M:      Dennis Zhou <dennis@kernel.org>
13170 M:      Tejun Heo <tj@kernel.org>
13171 M:      Christoph Lameter <cl@linux.com>
13172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13173 S:      Maintained
13174 F:      include/linux/percpu*.h
13175 F:      mm/percpu*.c
13176 F:      arch/*/include/asm/percpu.h
13177
13178 PER-TASK DELAY ACCOUNTING
13179 M:      Balbir Singh <bsingharora@gmail.com>
13180 S:      Maintained
13181 F:      include/linux/delayacct.h
13182 F:      kernel/delayacct.c
13183
13184 PERFORMANCE EVENTS SUBSYSTEM
13185 M:      Peter Zijlstra <peterz@infradead.org>
13186 M:      Ingo Molnar <mingo@redhat.com>
13187 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13188 R:      Mark Rutland <mark.rutland@arm.com>
13189 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13190 R:      Jiri Olsa <jolsa@redhat.com>
13191 R:      Namhyung Kim <namhyung@kernel.org>
13192 L:      linux-kernel@vger.kernel.org
13193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13194 S:      Supported
13195 F:      kernel/events/*
13196 F:      include/linux/perf_event.h
13197 F:      include/uapi/linux/perf_event.h
13198 F:      arch/*/kernel/perf_event*.c
13199 F:      arch/*/kernel/*/perf_event*.c
13200 F:      arch/*/kernel/*/*/perf_event*.c
13201 F:      arch/*/include/asm/perf_event.h
13202 F:      arch/*/kernel/perf_callchain.c
13203 F:      arch/*/events/*
13204 F:      arch/*/events/*/*
13205 F:      tools/perf/
13206
13207 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13208 R:      John Garry <john.garry@huawei.com>
13209 R:      Will Deacon <will@kernel.org>
13210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13211 S:      Supported
13212 F:      tools/perf/pmu-events/arch/arm64/
13213
13214 PERSONALITY HANDLING
13215 M:      Christoph Hellwig <hch@infradead.org>
13216 L:      linux-abi-devel@lists.sourceforge.net
13217 S:      Maintained
13218 F:      include/linux/personality.h
13219 F:      include/uapi/linux/personality.h
13220
13221 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13222 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13223 L:      linux-input@vger.kernel.org
13224 S:      Maintained
13225 F:      Documentation/input/devices/pxrc.rst
13226 F:      drivers/input/joystick/pxrc.c
13227
13228 FLYSKY FSIA6B RC RECEIVER
13229 M:      Markus Koch <markus@notsyncing.net>
13230 L:      linux-input@vger.kernel.org
13231 S:      Maintained
13232 F:      drivers/input/joystick/fsia6b.c
13233
13234 PHONET PROTOCOL
13235 M:      Remi Denis-Courmont <courmisch@gmail.com>
13236 S:      Supported
13237 F:      Documentation/networking/phonet.txt
13238 F:      include/linux/phonet.h
13239 F:      include/net/phonet/
13240 F:      include/uapi/linux/phonet.h
13241 F:      net/phonet/
13242
13243 PHRAM MTD DRIVER
13244 M:      Joern Engel <joern@lazybastard.org>
13245 L:      linux-mtd@lists.infradead.org
13246 S:      Maintained
13247 F:      drivers/mtd/devices/phram.c
13248
13249 PICOLCD HID DRIVER
13250 M:      Bruno Prémont <bonbons@linux-vserver.org>
13251 L:      linux-input@vger.kernel.org
13252 S:      Maintained
13253 F:      drivers/hid/hid-picolcd*
13254
13255 PICOXCELL SUPPORT
13256 M:      Jamie Iles <jamie@jamieiles.com>
13257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13258 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13259 S:      Supported
13260 F:      arch/arm/boot/dts/picoxcell*
13261 F:      arch/arm/mach-picoxcell/
13262 F:      drivers/crypto/picoxcell*
13263
13264 PIDFD API
13265 M:      Christian Brauner <christian@brauner.io>
13266 L:      linux-kernel@vger.kernel.org
13267 S:      Maintained
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13269 F:      samples/pidfd/
13270 F:      tools/testing/selftests/pidfd/
13271 F:      tools/testing/selftests/pid_namespace/
13272 F:      tools/testing/selftests/clone3/
13273 K:      (?i)pidfd
13274 K:      (?i)clone3
13275 K:      \b(clone_args|kernel_clone_args)\b
13276
13277 PIN CONTROL SUBSYSTEM
13278 M:      Linus Walleij <linus.walleij@linaro.org>
13279 L:      linux-gpio@vger.kernel.org
13280 S:      Maintained
13281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13282 F:      Documentation/devicetree/bindings/pinctrl/
13283 F:      Documentation/driver-api/pinctl.rst
13284 F:      drivers/pinctrl/
13285 F:      include/linux/pinctrl/
13286
13287 PIN CONTROLLER - FREESCALE
13288 M:      Dong Aisheng <aisheng.dong@nxp.com>
13289 M:      Fabio Estevam <festevam@gmail.com>
13290 M:      Shawn Guo <shawnguo@kernel.org>
13291 M:      Stefan Agner <stefan@agner.ch>
13292 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13293 L:      linux-gpio@vger.kernel.org
13294 S:      Maintained
13295 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13296 F:      drivers/pinctrl/freescale/
13297
13298 PIN CONTROLLER - INTEL
13299 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13300 M:      Andy Shevchenko <andy@kernel.org>
13301 S:      Maintained
13302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13303 F:      drivers/pinctrl/intel/
13304
13305 PIN CONTROLLER - MEDIATEK
13306 M:      Sean Wang <sean.wang@kernel.org>
13307 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13308 S:      Maintained
13309 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13310 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13311 F:      drivers/pinctrl/mediatek/
13312
13313 PIN CONTROLLER - MICROCHIP AT91
13314 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13316 L:      linux-gpio@vger.kernel.org
13317 S:      Supported
13318 F:      drivers/gpio/gpio-sama5d2-piobu.c
13319 F:      drivers/pinctrl/pinctrl-at91*
13320
13321 PIN CONTROLLER - QUALCOMM
13322 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13323 L:      linux-arm-msm@vger.kernel.org
13324 S:      Maintained
13325 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13326 F:      drivers/pinctrl/qcom/
13327
13328 PIN CONTROLLER - RENESAS
13329 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13330 L:      linux-renesas-soc@vger.kernel.org
13331 S:      Maintained
13332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13333 F:      drivers/pinctrl/pinctrl-rz*
13334 F:      drivers/pinctrl/sh-pfc/
13335
13336 PIN CONTROLLER - SAMSUNG
13337 M:      Tomasz Figa <tomasz.figa@gmail.com>
13338 M:      Krzysztof Kozlowski <krzk@kernel.org>
13339 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13341 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13342 S:      Maintained
13343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13344 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13345 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13346 F:      drivers/pinctrl/samsung/
13347 F:      include/dt-bindings/pinctrl/samsung.h
13348
13349 PIN CONTROLLER - SINGLE
13350 M:      Tony Lindgren <tony@atomide.com>
13351 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13353 L:      linux-omap@vger.kernel.org
13354 S:      Maintained
13355 F:      drivers/pinctrl/pinctrl-single.c
13356
13357 PIN CONTROLLER - ST SPEAR
13358 M:      Viresh Kumar <vireshk@kernel.org>
13359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13360 S:      Maintained
13361 W:      http://www.st.com/spear
13362 F:      drivers/pinctrl/spear/
13363
13364 PISTACHIO SOC SUPPORT
13365 M:      James Hartley <james.hartley@sondrel.com>
13366 L:      linux-mips@vger.kernel.org
13367 S:      Odd Fixes
13368 F:      arch/mips/pistachio/
13369 F:      arch/mips/include/asm/mach-pistachio/
13370 F:      arch/mips/boot/dts/img/pistachio*
13371 F:      arch/mips/configs/pistachio*_defconfig
13372
13373 PKTCDVD DRIVER
13374 S:      Orphan
13375 M:      linux-block@vger.kernel.org
13376 F:      drivers/block/pktcdvd.c
13377 F:      include/linux/pktcdvd.h
13378 F:      include/uapi/linux/pktcdvd.h
13379
13380 PKUNITY SOC DRIVERS
13381 M:      Guan Xuetao <gxt@pku.edu.cn>
13382 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13383 S:      Maintained
13384 T:      git git://github.com/gxt/linux.git
13385 F:      drivers/input/serio/i8042-unicore32io.h
13386 F:      drivers/i2c/busses/i2c-puv3.c
13387 F:      drivers/video/fbdev/fb-puv3.c
13388 F:      drivers/rtc/rtc-puv3.c
13389
13390 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13391 M:      Tomasz Duszynski <tduszyns@gmail.com>
13392 S:      Maintained
13393 F:      drivers/iio/chemical/pms7003.c
13394 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13395
13396 PLX DMA DRIVER
13397 M:      Logan Gunthorpe <logang@deltatee.com>
13398 S:      Maintained
13399 F:      drivers/dma/plx_dma.c
13400
13401 PMBUS HARDWARE MONITORING DRIVERS
13402 M:      Guenter Roeck <linux@roeck-us.net>
13403 L:      linux-hwmon@vger.kernel.org
13404 W:      http://hwmon.wiki.kernel.org/
13405 W:      http://www.roeck-us.net/linux/drivers/
13406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13407 S:      Maintained
13408 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13409 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13410 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13411 F:      Documentation/hwmon/adm1275.rst
13412 F:      Documentation/hwmon/ibm-cffps.rst
13413 F:      Documentation/hwmon/ir35221.rst
13414 F:      Documentation/hwmon/lm25066.rst
13415 F:      Documentation/hwmon/ltc2978.rst
13416 F:      Documentation/hwmon/ltc3815.rst
13417 F:      Documentation/hwmon/max16064.rst
13418 F:      Documentation/hwmon/max20751.rst
13419 F:      Documentation/hwmon/max31785.rst
13420 F:      Documentation/hwmon/max34440.rst
13421 F:      Documentation/hwmon/max8688.rst
13422 F:      Documentation/hwmon/pmbus.rst
13423 F:      Documentation/hwmon/pmbus-core.rst
13424 F:      Documentation/hwmon/tps40422.rst
13425 F:      Documentation/hwmon/ucd9000.rst
13426 F:      Documentation/hwmon/ucd9200.rst
13427 F:      Documentation/hwmon/zl6100.rst
13428 F:      drivers/hwmon/pmbus/
13429 F:      include/linux/pmbus.h
13430
13431 PMC SIERRA MaxRAID DRIVER
13432 L:      linux-scsi@vger.kernel.org
13433 W:      http://www.pmc-sierra.com/
13434 S:      Orphan
13435 F:      drivers/scsi/pmcraid.*
13436
13437 PMC SIERRA PM8001 DRIVER
13438 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13439 L:      linux-scsi@vger.kernel.org
13440 S:      Supported
13441 F:      drivers/scsi/pm8001/
13442
13443 PM-GRAPH UTILITY
13444 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13445 L:      linux-pm@vger.kernel.org
13446 W:      https://01.org/pm-graph
13447 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13448 T:      git git://github.com/intel/pm-graph
13449 S:      Supported
13450 F:      tools/power/pm-graph
13451
13452 PNI RM3100 IIO DRIVER
13453 M:      Song Qiang <songqiang1304521@gmail.com>
13454 L:      linux-iio@vger.kernel.org
13455 S:      Maintained
13456 F:      drivers/iio/magnetometer/rm3100*
13457 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13458
13459 PNP SUPPORT
13460 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13461 L:      linux-acpi@vger.kernel.org
13462 S:      Maintained
13463 F:      include/linux/pnp.h
13464 F:      drivers/pnp/
13465
13466 POSIX CLOCKS and TIMERS
13467 M:      Thomas Gleixner <tglx@linutronix.de>
13468 L:      linux-kernel@vger.kernel.org
13469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13470 S:      Maintained
13471 F:      fs/timerfd.c
13472 F:      include/linux/timer*
13473 F:      include/linux/time_namespace.h
13474 F:      kernel/time/namespace.c
13475 F:      kernel/time/*timer*
13476
13477 POWER MANAGEMENT CORE
13478 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13479 L:      linux-pm@vger.kernel.org
13480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13481 B:      https://bugzilla.kernel.org
13482 S:      Supported
13483 F:      drivers/base/power/
13484 F:      include/linux/pm.h
13485 F:      include/linux/pm_*
13486 F:      include/linux/powercap.h
13487 F:      include/linux/intel_rapl.h
13488 F:      drivers/powercap/
13489 F:      kernel/configs/nopm.config
13490
13491 POWER STATE COORDINATION INTERFACE (PSCI)
13492 M:      Mark Rutland <mark.rutland@arm.com>
13493 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13494 L:      linux-arm-kernel@lists.infradead.org
13495 S:      Maintained
13496 F:      drivers/firmware/psci/
13497 F:      include/linux/psci.h
13498 F:      include/uapi/linux/psci.h
13499
13500 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13501 M:      Sebastian Reichel <sre@kernel.org>
13502 L:      linux-pm@vger.kernel.org
13503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13504 S:      Maintained
13505 F:      Documentation/ABI/testing/sysfs-class-power
13506 F:      Documentation/devicetree/bindings/power/supply/
13507 F:      include/linux/power_supply.h
13508 F:      drivers/power/supply/
13509
13510 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13511 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13512 L:      linuxppc-dev@lists.ozlabs.org
13513 S:      Maintained
13514 F:      drivers/char/powernv-op-panel.c
13515
13516 PPP OVER ATM (RFC 2364)
13517 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13518 S:      Maintained
13519 F:      net/atm/pppoatm.c
13520 F:      include/uapi/linux/atmppp.h
13521
13522 PPP OVER ETHERNET
13523 M:      Michal Ostrowski <mostrows@earthlink.net>
13524 S:      Maintained
13525 F:      drivers/net/ppp/pppoe.c
13526 F:      drivers/net/ppp/pppox.c
13527
13528 PPP OVER L2TP
13529 M:      James Chapman <jchapman@katalix.com>
13530 S:      Maintained
13531 F:      net/l2tp/l2tp_ppp.c
13532 F:      include/linux/if_pppol2tp.h
13533 F:      include/uapi/linux/if_pppol2tp.h
13534
13535 PPP PROTOCOL DRIVERS AND COMPRESSORS
13536 M:      Paul Mackerras <paulus@samba.org>
13537 L:      linux-ppp@vger.kernel.org
13538 S:      Maintained
13539 F:      drivers/net/ppp/ppp_*
13540
13541 PPS SUPPORT
13542 M:      Rodolfo Giometti <giometti@enneenne.com>
13543 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13544 L:      linuxpps@ml.enneenne.com (subscribers-only)
13545 S:      Maintained
13546 F:      Documentation/driver-api/pps.rst
13547 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13548 F:      Documentation/ABI/testing/sysfs-pps
13549 F:      drivers/pps/
13550 F:      include/linux/pps*.h
13551 F:      include/uapi/linux/pps.h
13552
13553 PPTP DRIVER
13554 M:      Dmitry Kozlov <xeb@mail.ru>
13555 L:      netdev@vger.kernel.org
13556 S:      Maintained
13557 F:      drivers/net/ppp/pptp.c
13558 W:      http://sourceforge.net/projects/accel-pptp
13559
13560 PRINTK
13561 M:      Petr Mladek <pmladek@suse.com>
13562 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13563 R:      Steven Rostedt <rostedt@goodmis.org>
13564 S:      Maintained
13565 F:      kernel/printk/
13566 F:      include/linux/printk.h
13567
13568 PRISM54 WIRELESS DRIVER
13569 M:      Luis Chamberlain <mcgrof@kernel.org>
13570 L:      linux-wireless@vger.kernel.org
13571 W:      http://wireless.kernel.org/en/users/Drivers/p54
13572 S:      Obsolete
13573 F:      drivers/net/wireless/intersil/prism54/
13574
13575 PROC FILESYSTEM
13576 R:      Alexey Dobriyan <adobriyan@gmail.com>
13577 L:      linux-kernel@vger.kernel.org
13578 L:      linux-fsdevel@vger.kernel.org
13579 S:      Maintained
13580 F:      fs/proc/
13581 F:      include/linux/proc_fs.h
13582 F:      tools/testing/selftests/proc/
13583 F:      Documentation/filesystems/proc.rst
13584
13585 PROC SYSCTL
13586 M:      Luis Chamberlain <mcgrof@kernel.org>
13587 M:      Kees Cook <keescook@chromium.org>
13588 M:      Iurii Zaikin <yzaikin@google.com>
13589 L:      linux-kernel@vger.kernel.org
13590 L:      linux-fsdevel@vger.kernel.org
13591 S:      Maintained
13592 F:      fs/proc/proc_sysctl.c
13593 F:      include/linux/sysctl.h
13594 F:      kernel/sysctl.c
13595 F:      kernel/sysctl-test.c
13596 F:      tools/testing/selftests/sysctl/
13597
13598 PS3 NETWORK SUPPORT
13599 M:      Geoff Levand <geoff@infradead.org>
13600 L:      netdev@vger.kernel.org
13601 L:      linuxppc-dev@lists.ozlabs.org
13602 S:      Maintained
13603 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13604
13605 PS3 PLATFORM SUPPORT
13606 M:      Geoff Levand <geoff@infradead.org>
13607 L:      linuxppc-dev@lists.ozlabs.org
13608 S:      Maintained
13609 F:      arch/powerpc/boot/ps3*
13610 F:      arch/powerpc/include/asm/lv1call.h
13611 F:      arch/powerpc/include/asm/ps3*.h
13612 F:      arch/powerpc/platforms/ps3/
13613 F:      drivers/*/ps3*
13614 F:      drivers/ps3/
13615 F:      drivers/rtc/rtc-ps3.c
13616 F:      drivers/usb/host/*ps3.c
13617 F:      sound/ppc/snd_ps3*
13618
13619 PS3VRAM DRIVER
13620 M:      Jim Paris <jim@jtan.com>
13621 M:      Geoff Levand <geoff@infradead.org>
13622 L:      linuxppc-dev@lists.ozlabs.org
13623 S:      Maintained
13624 F:      drivers/block/ps3vram.c
13625
13626 PSAMPLE PACKET SAMPLING SUPPORT
13627 M:      Yotam Gigi <yotam.gi@gmail.com>
13628 S:      Maintained
13629 F:      net/psample
13630 F:      include/net/psample.h
13631 F:      include/uapi/linux/psample.h
13632
13633 PRESSURE STALL INFORMATION (PSI)
13634 M:      Johannes Weiner <hannes@cmpxchg.org>
13635 S:      Maintained
13636 F:      kernel/sched/psi.c
13637 F:      include/linux/psi*
13638
13639 PSTORE FILESYSTEM
13640 M:      Kees Cook <keescook@chromium.org>
13641 M:      Anton Vorontsov <anton@enomsg.org>
13642 M:      Colin Cross <ccross@android.com>
13643 M:      Tony Luck <tony.luck@intel.com>
13644 S:      Maintained
13645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13646 F:      fs/pstore/
13647 F:      include/linux/pstore*
13648 F:      drivers/firmware/efi/efi-pstore.c
13649 F:      drivers/acpi/apei/erst.c
13650 F:      Documentation/admin-guide/ramoops.rst
13651 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13652 K:      \b(pstore|ramoops)
13653
13654 PTP HARDWARE CLOCK SUPPORT
13655 M:      Richard Cochran <richardcochran@gmail.com>
13656 L:      netdev@vger.kernel.org
13657 S:      Maintained
13658 W:      http://linuxptp.sourceforge.net/
13659 F:      Documentation/ABI/testing/sysfs-ptp
13660 F:      Documentation/driver-api/ptp.rst
13661 F:      drivers/net/phy/dp83640*
13662 F:      drivers/ptp/*
13663 F:      include/linux/ptp_cl*
13664
13665 PTRACE SUPPORT
13666 M:      Oleg Nesterov <oleg@redhat.com>
13667 S:      Maintained
13668 F:      include/asm-generic/syscall.h
13669 F:      include/linux/ptrace.h
13670 F:      include/linux/regset.h
13671 F:      include/linux/tracehook.h
13672 F:      include/uapi/linux/ptrace.h
13673 F:      include/uapi/linux/ptrace.h
13674 F:      kernel/ptrace.c
13675 F:      arch/*/ptrace*.c
13676 F:      arch/*/*/ptrace*.c
13677 F:      arch/*/include/asm/ptrace*.h
13678
13679 PULSE8-CEC DRIVER
13680 M:      Hans Verkuil <hverkuil@xs4all.nl>
13681 L:      linux-media@vger.kernel.org
13682 T:      git git://linuxtv.org/media_tree.git
13683 S:      Maintained
13684 F:      drivers/media/usb/pulse8-cec/*
13685 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13686
13687 PVRUSB2 VIDEO4LINUX DRIVER
13688 M:      Mike Isely <isely@pobox.com>
13689 L:      pvrusb2@isely.net       (subscribers-only)
13690 L:      linux-media@vger.kernel.org
13691 W:      http://www.isely.net/pvrusb2/
13692 T:      git git://linuxtv.org/media_tree.git
13693 S:      Maintained
13694 F:      Documentation/media/v4l-drivers/pvrusb2*
13695 F:      drivers/media/usb/pvrusb2/
13696
13697 PWC WEBCAM DRIVER
13698 M:      Hans Verkuil <hverkuil@xs4all.nl>
13699 L:      linux-media@vger.kernel.org
13700 T:      git git://linuxtv.org/media_tree.git
13701 S:      Odd Fixes
13702 F:      drivers/media/usb/pwc/*
13703 F:      include/trace/events/pwc.h
13704
13705 PWM FAN DRIVER
13706 M:      Kamil Debski <kamil@wypas.org>
13707 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13708 L:      linux-hwmon@vger.kernel.org
13709 S:      Supported
13710 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13711 F:      Documentation/hwmon/pwm-fan.rst
13712 F:      drivers/hwmon/pwm-fan.c
13713
13714 PWM IR Transmitter
13715 M:      Sean Young <sean@mess.org>
13716 L:      linux-media@vger.kernel.org
13717 S:      Maintained
13718 F:      drivers/media/rc/pwm-ir-tx.c
13719
13720 PWM SUBSYSTEM
13721 M:      Thierry Reding <thierry.reding@gmail.com>
13722 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13723 L:      linux-pwm@vger.kernel.org
13724 S:      Maintained
13725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13726 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13727 F:      Documentation/driver-api/pwm.rst
13728 F:      Documentation/devicetree/bindings/pwm/
13729 F:      include/linux/pwm.h
13730 F:      drivers/pwm/
13731 F:      drivers/video/backlight/pwm_bl.c
13732 F:      include/linux/pwm_backlight.h
13733 F:      drivers/gpio/gpio-mvebu.c
13734 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13735 K:      pwm_(config|apply_state|ops)
13736
13737 PXA GPIO DRIVER
13738 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13739 L:      linux-gpio@vger.kernel.org
13740 S:      Maintained
13741 F:      drivers/gpio/gpio-pxa.c
13742
13743 PXA MMCI DRIVER
13744 S:      Orphan
13745
13746 PXA RTC DRIVER
13747 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13748 L:      linux-rtc@vger.kernel.org
13749 S:      Maintained
13750
13751 PXA2xx/PXA3xx SUPPORT
13752 M:      Daniel Mack <daniel@zonque.org>
13753 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13754 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13756 T:      git git://github.com/hzhuang1/linux.git
13757 T:      git git://github.com/rjarzmik/linux.git
13758 S:      Maintained
13759 F:      arch/arm/boot/dts/pxa*
13760 F:      arch/arm/mach-pxa/
13761 F:      drivers/dma/pxa*
13762 F:      drivers/pcmcia/pxa2xx*
13763 F:      drivers/pinctrl/pxa/
13764 F:      drivers/spi/spi-pxa2xx*
13765 F:      drivers/usb/gadget/udc/pxa2*
13766 F:      include/sound/pxa2xx-lib.h
13767 F:      sound/arm/pxa*
13768 F:      sound/soc/pxa/
13769
13770 QAT DRIVER
13771 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13772 L:      qat-linux@intel.com
13773 S:      Supported
13774 F:      drivers/crypto/qat/
13775
13776 QCOM AUDIO (ASoC) DRIVERS
13777 M:      Patrick Lai <plai@codeaurora.org>
13778 M:      Banajit Goswami <bgoswami@codeaurora.org>
13779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13780 S:      Supported
13781 F:      sound/soc/qcom/
13782
13783 QCOM IPA DRIVER
13784 M:      Alex Elder <elder@kernel.org>
13785 L:      netdev@vger.kernel.org
13786 S:      Supported
13787 F:      drivers/net/ipa/
13788
13789 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13790 M:      Gabriel Somlo <somlo@cmu.edu>
13791 M:      "Michael S. Tsirkin" <mst@redhat.com>
13792 L:      qemu-devel@nongnu.org
13793 S:      Maintained
13794 F:      drivers/firmware/qemu_fw_cfg.c
13795 F:      include/uapi/linux/qemu_fw_cfg.h
13796
13797 QIB DRIVER
13798 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13799 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13800 L:      linux-rdma@vger.kernel.org
13801 S:      Supported
13802 F:      drivers/infiniband/hw/qib/
13803
13804 QLOGIC QL41xxx FCOE DRIVER
13805 M:      QLogic-Storage-Upstream@cavium.com
13806 L:      linux-scsi@vger.kernel.org
13807 S:      Supported
13808 F:      drivers/scsi/qedf/
13809
13810 QLOGIC QL41xxx ISCSI DRIVER
13811 M:      QLogic-Storage-Upstream@cavium.com
13812 L:      linux-scsi@vger.kernel.org
13813 S:      Supported
13814 F:      drivers/scsi/qedi/
13815
13816 QLOGIC QL4xxx ETHERNET DRIVER
13817 M:      Ariel Elior <aelior@marvell.com>
13818 M:      GR-everest-linux-l2@marvell.com
13819 L:      netdev@vger.kernel.org
13820 S:      Supported
13821 F:      drivers/net/ethernet/qlogic/qed/
13822 F:      include/linux/qed/
13823 F:      drivers/net/ethernet/qlogic/qede/
13824
13825 QLOGIC QL4xxx RDMA DRIVER
13826 M:      Michal Kalderon <mkalderon@marvell.com>
13827 M:      Ariel Elior <aelior@marvell.com>
13828 L:      linux-rdma@vger.kernel.org
13829 S:      Supported
13830 F:      drivers/infiniband/hw/qedr/
13831 F:      include/uapi/rdma/qedr-abi.h
13832
13833 QLOGIC QLA1280 SCSI DRIVER
13834 M:      Michael Reed <mdr@sgi.com>
13835 L:      linux-scsi@vger.kernel.org
13836 S:      Maintained
13837 F:      drivers/scsi/qla1280.[ch]
13838
13839 QLOGIC QLA2XXX FC-SCSI DRIVER
13840 M:      hmadhani@marvell.com
13841 L:      linux-scsi@vger.kernel.org
13842 S:      Supported
13843 F:      Documentation/scsi/LICENSE.qla2xxx
13844 F:      drivers/scsi/qla2xxx/
13845
13846 QLOGIC QLA3XXX NETWORK DRIVER
13847 M:      GR-Linux-NIC-Dev@marvell.com
13848 L:      netdev@vger.kernel.org
13849 S:      Supported
13850 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13851 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13852
13853 QLOGIC QLA4XXX iSCSI DRIVER
13854 M:      QLogic-Storage-Upstream@qlogic.com
13855 L:      linux-scsi@vger.kernel.org
13856 S:      Supported
13857 F:      Documentation/scsi/LICENSE.qla4xxx
13858 F:      drivers/scsi/qla4xxx/
13859
13860 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13861 M:      Shahed Shaikh <shshaikh@marvell.com>
13862 M:      Manish Chopra <manishc@marvell.com>
13863 M:      GR-Linux-NIC-Dev@marvell.com
13864 L:      netdev@vger.kernel.org
13865 S:      Supported
13866 F:      drivers/net/ethernet/qlogic/qlcnic/
13867
13868 QLOGIC QLGE 10Gb ETHERNET DRIVER
13869 M:      Manish Chopra <manishc@marvell.com>
13870 M:      GR-Linux-NIC-Dev@marvell.com
13871 L:      netdev@vger.kernel.org
13872 S:      Supported
13873 F:      drivers/staging/qlge/
13874
13875 QM1D1B0004 MEDIA DRIVER
13876 M:      Akihiro Tsukada <tskd08@gmail.com>
13877 L:      linux-media@vger.kernel.org
13878 S:      Odd Fixes
13879 F:      drivers/media/tuners/qm1d1b0004*
13880
13881 QM1D1C0042 MEDIA DRIVER
13882 M:      Akihiro Tsukada <tskd08@gmail.com>
13883 L:      linux-media@vger.kernel.org
13884 S:      Odd Fixes
13885 F:      drivers/media/tuners/qm1d1c0042*
13886
13887 QNX4 FILESYSTEM
13888 M:      Anders Larsen <al@alarsen.net>
13889 W:      http://www.alarsen.net/linux/qnx4fs/
13890 S:      Maintained
13891 F:      fs/qnx4/
13892 F:      include/uapi/linux/qnx4_fs.h
13893 F:      include/uapi/linux/qnxtypes.h
13894
13895 QORIQ DPAA2 FSL-MC BUS DRIVER
13896 M:      Stuart Yoder <stuyoder@gmail.com>
13897 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13898 L:      linux-kernel@vger.kernel.org
13899 S:      Maintained
13900 F:      drivers/bus/fsl-mc/
13901 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13902 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13903
13904 QT1010 MEDIA DRIVER
13905 M:      Antti Palosaari <crope@iki.fi>
13906 L:      linux-media@vger.kernel.org
13907 W:      https://linuxtv.org
13908 W:      http://palosaari.fi/linux/
13909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13910 T:      git git://linuxtv.org/anttip/media_tree.git
13911 S:      Maintained
13912 F:      drivers/media/tuners/qt1010*
13913
13914 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13915 M:      Kalle Valo <kvalo@codeaurora.org>
13916 L:      ath10k@lists.infradead.org
13917 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13919 S:      Supported
13920 F:      drivers/net/wireless/ath/ath10k/
13921
13922 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13923 M:      Kalle Valo <kvalo@codeaurora.org>
13924 L:      ath11k@lists.infradead.org
13925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13926 S:      Supported
13927 F:      drivers/net/wireless/ath/ath11k/
13928
13929 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13930 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13931 L:      linux-wireless@vger.kernel.org
13932 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13933 S:      Supported
13934 F:      drivers/net/wireless/ath/ath9k/
13935
13936 QUALCOMM CAMERA SUBSYSTEM DRIVER
13937 M:      Todor Tomov <todor.too@gmail.com>
13938 L:      linux-media@vger.kernel.org
13939 S:      Maintained
13940 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13941 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13942 F:      drivers/media/platform/qcom/camss/
13943
13944 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13945 M:      Ilia Lin <ilia.lin@kernel.org>
13946 L:      linux-pm@vger.kernel.org
13947 S:      Maintained
13948 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13949 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13950
13951 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13952 M:      Niklas Cassel <nks@flawful.org>
13953 L:      linux-pm@vger.kernel.org
13954 L:      linux-arm-msm@vger.kernel.org
13955 S:      Maintained
13956 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13957 F:      drivers/power/avs/qcom-cpr.c
13958
13959 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13960 M:      Timur Tabi <timur@kernel.org>
13961 L:      netdev@vger.kernel.org
13962 S:      Maintained
13963 F:      drivers/net/ethernet/qualcomm/emac/
13964
13965 QUALCOMM ETHQOS ETHERNET DRIVER
13966 M:      Vinod Koul <vkoul@kernel.org>
13967 L:      netdev@vger.kernel.org
13968 S:      Maintained
13969 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13970 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13971
13972 QUALCOMM GENERIC INTERFACE I2C DRIVER
13973 M:      Alok Chauhan <alokc@codeaurora.org>
13974 L:      linux-i2c@vger.kernel.org
13975 L:      linux-arm-msm@vger.kernel.org
13976 S:      Supported
13977 F:      drivers/i2c/busses/i2c-qcom-geni.c
13978
13979 QUALCOMM HEXAGON ARCHITECTURE
13980 M:      Brian Cain <bcain@codeaurora.org>
13981 L:      linux-hexagon@vger.kernel.org
13982 S:      Supported
13983 F:      arch/hexagon/
13984
13985 QUALCOMM HIDMA DRIVER
13986 M:      Sinan Kaya <okaya@kernel.org>
13987 L:      linux-arm-kernel@lists.infradead.org
13988 L:      linux-arm-msm@vger.kernel.org
13989 L:      dmaengine@vger.kernel.org
13990 S:      Supported
13991 F:      drivers/dma/qcom/hidma*
13992
13993 QUALCOMM IOMMU
13994 M:      Rob Clark <robdclark@gmail.com>
13995 L:      iommu@lists.linux-foundation.org
13996 L:      linux-arm-msm@vger.kernel.org
13997 S:      Maintained
13998 F:      drivers/iommu/qcom_iommu.c
13999
14000 QUALCOMM RMNET DRIVER
14001 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14002 M:      Sean Tranchetti <stranche@codeaurora.org>
14003 L:      netdev@vger.kernel.org
14004 S:      Maintained
14005 F:      drivers/net/ethernet/qualcomm/rmnet/
14006 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14007 F:      include/linux/if_rmnet.h
14008
14009 QUALCOMM TSENS THERMAL DRIVER
14010 M:      Amit Kucheria <amit.kucheria@linaro.org>
14011 L:      linux-pm@vger.kernel.org
14012 L:      linux-arm-msm@vger.kernel.org
14013 S:      Maintained
14014 F:      drivers/thermal/qcom/
14015 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14016
14017 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14018 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14019 L:      linux-media@vger.kernel.org
14020 L:      linux-arm-msm@vger.kernel.org
14021 T:      git git://linuxtv.org/media_tree.git
14022 S:      Maintained
14023 F:      drivers/media/platform/qcom/venus/
14024 F:      Documentation/devicetree/bindings/media/*venus*
14025
14026 QUALCOMM WCN36XX WIRELESS DRIVER
14027 M:      Kalle Valo <kvalo@codeaurora.org>
14028 L:      wcn36xx@lists.infradead.org
14029 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14030 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14031 S:      Supported
14032 F:      drivers/net/wireless/ath/wcn36xx/
14033
14034 QUANTENNA QTNFMAC WIRELESS DRIVER
14035 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14036 M:      Avinash Patil <avinashp@quantenna.com>
14037 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
14038 L:      linux-wireless@vger.kernel.org
14039 S:      Maintained
14040 F:      drivers/net/wireless/quantenna
14041
14042 RADEON and AMDGPU DRM DRIVERS
14043 M:      Alex Deucher <alexander.deucher@amd.com>
14044 M:      Christian König <christian.koenig@amd.com>
14045 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
14046 L:      amd-gfx@lists.freedesktop.org
14047 T:      git git://people.freedesktop.org/~agd5f/linux
14048 S:      Supported
14049 F:      drivers/gpu/drm/radeon/
14050 F:      include/uapi/drm/radeon_drm.h
14051 F:      drivers/gpu/drm/amd/
14052 F:      include/uapi/drm/amdgpu_drm.h
14053
14054 RADEON FRAMEBUFFER DISPLAY DRIVER
14055 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14056 L:      linux-fbdev@vger.kernel.org
14057 S:      Maintained
14058 F:      drivers/video/fbdev/aty/radeon*
14059 F:      include/uapi/linux/radeonfb.h
14060
14061 RADIOSHARK RADIO DRIVER
14062 M:      Hans Verkuil <hverkuil@xs4all.nl>
14063 L:      linux-media@vger.kernel.org
14064 T:      git git://linuxtv.org/media_tree.git
14065 S:      Maintained
14066 F:      drivers/media/radio/radio-shark.c
14067
14068 RADIOSHARK2 RADIO DRIVER
14069 M:      Hans Verkuil <hverkuil@xs4all.nl>
14070 L:      linux-media@vger.kernel.org
14071 T:      git git://linuxtv.org/media_tree.git
14072 S:      Maintained
14073 F:      drivers/media/radio/radio-shark2.c
14074 F:      drivers/media/radio/radio-tea5777.c
14075
14076 RADOS BLOCK DEVICE (RBD)
14077 M:      Ilya Dryomov <idryomov@gmail.com>
14078 M:      Sage Weil <sage@redhat.com>
14079 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14080 L:      ceph-devel@vger.kernel.org
14081 W:      http://ceph.com/
14082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14083 T:      git git://github.com/ceph/ceph-client.git
14084 S:      Supported
14085 F:      Documentation/ABI/testing/sysfs-bus-rbd
14086 F:      drivers/block/rbd.c
14087 F:      drivers/block/rbd_types.h
14088
14089 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14090 M:      Paul Mackerras <paulus@samba.org>
14091 L:      linux-fbdev@vger.kernel.org
14092 S:      Maintained
14093 F:      drivers/video/fbdev/aty/aty128fb.c
14094
14095 RAINSHADOW-CEC DRIVER
14096 M:      Hans Verkuil <hverkuil@xs4all.nl>
14097 L:      linux-media@vger.kernel.org
14098 T:      git git://linuxtv.org/media_tree.git
14099 S:      Maintained
14100 F:      drivers/media/usb/rainshadow-cec/*
14101
14102 RALINK MIPS ARCHITECTURE
14103 M:      John Crispin <john@phrozen.org>
14104 L:      linux-mips@vger.kernel.org
14105 S:      Maintained
14106 F:      arch/mips/ralink
14107
14108 RALINK RT2X00 WIRELESS LAN DRIVER
14109 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14110 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14111 L:      linux-wireless@vger.kernel.org
14112 S:      Maintained
14113 F:      drivers/net/wireless/ralink/rt2x00/
14114
14115 RAMDISK RAM BLOCK DEVICE DRIVER
14116 M:      Jens Axboe <axboe@kernel.dk>
14117 S:      Maintained
14118 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14119 F:      drivers/block/brd.c
14120
14121 RANCHU VIRTUAL BOARD FOR MIPS
14122 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14123 L:      linux-mips@vger.kernel.org
14124 S:      Supported
14125 F:      arch/mips/generic/board-ranchu.c
14126 F:      arch/mips/configs/generic/board-ranchu.config
14127
14128 RANDOM NUMBER DRIVER
14129 M:      "Theodore Ts'o" <tytso@mit.edu>
14130 S:      Maintained
14131 F:      drivers/char/random.c
14132
14133 RAPIDIO SUBSYSTEM
14134 M:      Matt Porter <mporter@kernel.crashing.org>
14135 M:      Alexandre Bounine <alex.bou9@gmail.com>
14136 S:      Maintained
14137 F:      drivers/rapidio/
14138
14139 RAS INFRASTRUCTURE
14140 M:      Tony Luck <tony.luck@intel.com>
14141 M:      Borislav Petkov <bp@alien8.de>
14142 L:      linux-edac@vger.kernel.org
14143 S:      Maintained
14144 F:      drivers/ras/
14145 F:      include/linux/ras.h
14146 F:      include/ras/ras_event.h
14147 F:      Documentation/admin-guide/ras.rst
14148
14149 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14150 L:      linux-wireless@vger.kernel.org
14151 S:      Orphan
14152 F:      drivers/net/wireless/ray*
14153
14154 RCUTORTURE TEST FRAMEWORK
14155 M:      "Paul E. McKenney" <paulmck@kernel.org>
14156 M:      Josh Triplett <josh@joshtriplett.org>
14157 R:      Steven Rostedt <rostedt@goodmis.org>
14158 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14159 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14160 L:      rcu@vger.kernel.org
14161 S:      Supported
14162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14163 F:      tools/testing/selftests/rcutorture
14164
14165 RDC R-321X SoC
14166 M:      Florian Fainelli <florian@openwrt.org>
14167 S:      Maintained
14168
14169 RDC R6040 FAST ETHERNET DRIVER
14170 M:      Florian Fainelli <f.fainelli@gmail.com>
14171 L:      netdev@vger.kernel.org
14172 S:      Maintained
14173 F:      drivers/net/ethernet/rdc/r6040.c
14174
14175 RDMAVT - RDMA verbs software
14176 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14177 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14178 L:      linux-rdma@vger.kernel.org
14179 S:      Supported
14180 F:      drivers/infiniband/sw/rdmavt
14181
14182 RDS - RELIABLE DATAGRAM SOCKETS
14183 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14184 L:      netdev@vger.kernel.org
14185 L:      linux-rdma@vger.kernel.org
14186 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14187 W:      https://oss.oracle.com/projects/rds/
14188 S:      Supported
14189 F:      net/rds/
14190 F:      Documentation/networking/rds.txt
14191
14192 RDT - RESOURCE ALLOCATION
14193 M:      Fenghua Yu <fenghua.yu@intel.com>
14194 M:      Reinette Chatre <reinette.chatre@intel.com>
14195 L:      linux-kernel@vger.kernel.org
14196 S:      Supported
14197 F:      arch/x86/kernel/cpu/resctrl/
14198 F:      arch/x86/include/asm/resctrl_sched.h
14199 F:      Documentation/x86/resctrl*
14200 F:      tools/testing/selftests/resctrl/
14201
14202 READ-COPY UPDATE (RCU)
14203 M:      "Paul E. McKenney" <paulmck@kernel.org>
14204 M:      Josh Triplett <josh@joshtriplett.org>
14205 R:      Steven Rostedt <rostedt@goodmis.org>
14206 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14207 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14208 R:      Joel Fernandes <joel@joelfernandes.org>
14209 L:      rcu@vger.kernel.org
14210 W:      http://www.rdrop.com/users/paulmck/RCU/
14211 S:      Supported
14212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14213 F:      Documentation/RCU/
14214 X:      Documentation/RCU/torture.txt
14215 F:      include/linux/rcu*
14216 X:      include/linux/srcu*.h
14217 F:      kernel/rcu/
14218 X:      kernel/rcu/srcu*.c
14219
14220 REAL TIME CLOCK (RTC) SUBSYSTEM
14221 M:      Alessandro Zummo <a.zummo@towertech.it>
14222 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14223 L:      linux-rtc@vger.kernel.org
14224 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14226 S:      Maintained
14227 F:      Documentation/devicetree/bindings/rtc/
14228 F:      Documentation/admin-guide/rtc.rst
14229 F:      drivers/rtc/
14230 F:      include/linux/rtc.h
14231 F:      include/uapi/linux/rtc.h
14232 F:      include/linux/rtc/
14233 F:      include/linux/platform_data/rtc-*
14234 F:      tools/testing/selftests/rtc/
14235
14236 REALTEK AUDIO CODECS
14237 M:      Oder Chiou <oder_chiou@realtek.com>
14238 S:      Maintained
14239 F:      sound/soc/codecs/rt*
14240 F:      include/sound/rt*.h
14241
14242 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14243 M:      Linus Walleij <linus.walleij@linaro.org>
14244 S:      Maintained
14245 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14246 F:      drivers/net/dsa/realtek-smi*
14247 F:      drivers/net/dsa/rtl83*
14248
14249 REDPINE WIRELESS DRIVER
14250 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14251 M:      Siva Rebbagondla <siva8118@gmail.com>
14252 L:      linux-wireless@vger.kernel.org
14253 S:      Maintained
14254 F:      drivers/net/wireless/rsi/
14255
14256 REGISTER MAP ABSTRACTION
14257 M:      Mark Brown <broonie@kernel.org>
14258 L:      linux-kernel@vger.kernel.org
14259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14260 S:      Supported
14261 F:      Documentation/devicetree/bindings/regmap/
14262 F:      drivers/base/regmap/
14263 F:      include/linux/regmap.h
14264
14265 REISERFS FILE SYSTEM
14266 L:      reiserfs-devel@vger.kernel.org
14267 S:      Supported
14268 F:      fs/reiserfs/
14269
14270 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14271 M:      Ohad Ben-Cohen <ohad@wizery.com>
14272 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14273 L:      linux-remoteproc@vger.kernel.org
14274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14275 S:      Maintained
14276 F:      Documentation/devicetree/bindings/remoteproc/
14277 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14278 F:      Documentation/remoteproc.txt
14279 F:      drivers/remoteproc/
14280 F:      include/linux/remoteproc.h
14281 F:      include/linux/remoteproc/
14282
14283 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14284 M:      Ohad Ben-Cohen <ohad@wizery.com>
14285 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14286 L:      linux-remoteproc@vger.kernel.org
14287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14288 S:      Maintained
14289 F:      drivers/rpmsg/
14290 F:      Documentation/rpmsg.txt
14291 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14292 F:      include/linux/rpmsg.h
14293 F:      include/linux/rpmsg/
14294 F:      include/uapi/linux/rpmsg.h
14295 F:      samples/rpmsg/
14296
14297 RENESAS CLOCK DRIVERS
14298 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14299 L:      linux-renesas-soc@vger.kernel.org
14300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14301 S:      Supported
14302 F:      drivers/clk/renesas/
14303
14304 RENESAS EMEV2 I2C DRIVER
14305 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14306 S:      Supported
14307 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14308 F:      drivers/i2c/busses/i2c-emev2.c
14309
14310 RENESAS ETHERNET DRIVERS
14311 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14312 L:      netdev@vger.kernel.org
14313 L:      linux-renesas-soc@vger.kernel.org
14314 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14315 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14316 F:      drivers/net/ethernet/renesas/
14317 F:      include/linux/sh_eth.h
14318
14319 RENESAS R-CAR GYROADC DRIVER
14320 M:      Marek Vasut <marek.vasut@gmail.com>
14321 L:      linux-iio@vger.kernel.org
14322 S:      Supported
14323 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14324 F:      drivers/iio/adc/rcar-gyroadc.c
14325
14326 RENESAS R-CAR I2C DRIVERS
14327 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14328 S:      Supported
14329 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14330 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14331 F:      drivers/i2c/busses/i2c-rcar.c
14332 F:      drivers/i2c/busses/i2c-sh_mobile.c
14333
14334 RENESAS RIIC DRIVER
14335 M:      Chris Brandt <chris.brandt@renesas.com>
14336 S:      Supported
14337 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14338 F:      drivers/i2c/busses/i2c-riic.c
14339
14340 RENESAS USB PHY DRIVER
14341 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14342 L:      linux-renesas-soc@vger.kernel.org
14343 S:      Maintained
14344 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14345
14346 RESET CONTROLLER FRAMEWORK
14347 M:      Philipp Zabel <p.zabel@pengutronix.de>
14348 T:      git git://git.pengutronix.de/git/pza/linux
14349 S:      Maintained
14350 F:      drivers/reset/
14351 F:      Documentation/devicetree/bindings/reset/
14352 F:      include/dt-bindings/reset/
14353 F:      include/linux/reset.h
14354 F:      include/linux/reset/
14355 F:      include/linux/reset-controller.h
14356 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14357
14358 RESTARTABLE SEQUENCES SUPPORT
14359 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14360 M:      Peter Zijlstra <peterz@infradead.org>
14361 M:      "Paul E. McKenney" <paulmck@kernel.org>
14362 M:      Boqun Feng <boqun.feng@gmail.com>
14363 L:      linux-kernel@vger.kernel.org
14364 S:      Supported
14365 F:      kernel/rseq.c
14366 F:      include/uapi/linux/rseq.h
14367 F:      include/trace/events/rseq.h
14368 F:      tools/testing/selftests/rseq/
14369
14370 RFKILL
14371 M:      Johannes Berg <johannes@sipsolutions.net>
14372 L:      linux-wireless@vger.kernel.org
14373 W:      http://wireless.kernel.org/
14374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14376 S:      Maintained
14377 F:      Documentation/driver-api/rfkill.rst
14378 F:      Documentation/ABI/stable/sysfs-class-rfkill
14379 F:      net/rfkill/
14380 F:      include/linux/rfkill.h
14381 F:      include/uapi/linux/rfkill.h
14382
14383 RHASHTABLE
14384 M:      Thomas Graf <tgraf@suug.ch>
14385 M:      Herbert Xu <herbert@gondor.apana.org.au>
14386 L:      netdev@vger.kernel.org
14387 S:      Maintained
14388 F:      lib/rhashtable.c
14389 F:      lib/test_rhashtable.c
14390 F:      include/linux/rhashtable.h
14391 F:      include/linux/rhashtable-types.h
14392
14393 RICOH R5C592 MEMORYSTICK DRIVER
14394 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14395 S:      Maintained
14396 F:      drivers/memstick/host/r592.*
14397
14398 RICOH SMARTMEDIA/XD DRIVER
14399 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14400 S:      Maintained
14401 F:      drivers/mtd/nand/raw/r852.c
14402 F:      drivers/mtd/nand/raw/r852.h
14403
14404 RISC-V ARCHITECTURE
14405 M:      Paul Walmsley <paul.walmsley@sifive.com>
14406 M:      Palmer Dabbelt <palmer@dabbelt.com>
14407 M:      Albert Ou <aou@eecs.berkeley.edu>
14408 L:      linux-riscv@lists.infradead.org
14409 P:      Documentation/riscv/patch-acceptance.rst
14410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14411 S:      Supported
14412 F:      arch/riscv/
14413 K:      riscv
14414 N:      riscv
14415
14416 ROCCAT DRIVERS
14417 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14418 W:      http://sourceforge.net/projects/roccat/
14419 S:      Maintained
14420 F:      drivers/hid/hid-roccat*
14421 F:      include/linux/hid-roccat*
14422 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14423
14424 ROCKCHIP ISP V1 DRIVER
14425 M:      Helen Koike <helen.koike@collabora.com>
14426 L:      linux-media@vger.kernel.org
14427 S:      Maintained
14428 F:      drivers/staging/media/rkisp1/
14429
14430 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14431 M:      Jacob Chen <jacob-chen@iotwrt.com>
14432 M:      Ezequiel Garcia <ezequiel@collabora.com>
14433 L:      linux-media@vger.kernel.org
14434 S:      Maintained
14435 F:      drivers/media/platform/rockchip/rga/
14436 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14437
14438 HANTRO VPU CODEC DRIVER
14439 M:      Ezequiel Garcia <ezequiel@collabora.com>
14440 M:      Philipp Zabel <p.zabel@pengutronix.de>
14441 L:      linux-media@vger.kernel.org
14442 L:      linux-rockchip@lists.infradead.org
14443 S:      Maintained
14444 F:      drivers/staging/media/hantro/
14445 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14446 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14447
14448 ROCKER DRIVER
14449 M:      Jiri Pirko <jiri@resnulli.us>
14450 L:      netdev@vger.kernel.org
14451 S:      Supported
14452 F:      drivers/net/ethernet/rocker/
14453
14454 ROCKETPORT DRIVER
14455 W:      http://www.comtrol.com
14456 S:      Maintained
14457 F:      Documentation/driver-api/serial/rocket.rst
14458 F:      drivers/tty/rocket*
14459
14460 ROCKETPORT EXPRESS/INFINITY DRIVER
14461 M:      Kevin Cernekee <cernekee@gmail.com>
14462 L:      linux-serial@vger.kernel.org
14463 S:      Odd Fixes
14464 F:      drivers/tty/serial/rp2.*
14465
14466 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14467 M:      Tomasz Duszynski <tduszyns@gmail.com>
14468 S:      Maintained
14469 F:      drivers/iio/light/bh1750.c
14470 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14471
14472 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14473 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14474 L:      linux-kernel@vger.kernel.org
14475 L:      linux-renesas-soc@vger.kernel.org
14476 S:      Supported
14477 F:      drivers/mfd/bd9571mwv.c
14478 F:      drivers/regulator/bd9571mwv-regulator.c
14479 F:      drivers/gpio/gpio-bd9571mwv.c
14480 F:      include/linux/mfd/bd9571mwv.h
14481 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14482
14483 ROSE NETWORK LAYER
14484 M:      Ralf Baechle <ralf@linux-mips.org>
14485 L:      linux-hams@vger.kernel.org
14486 W:      http://www.linux-ax25.org/
14487 S:      Maintained
14488 F:      include/net/rose.h
14489 F:      include/uapi/linux/rose.h
14490 F:      net/rose/
14491
14492 ROTATION DRIVER FOR ALLWINNER A83T
14493 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14494 L:      linux-media@vger.kernel.org
14495 T:      git git://linuxtv.org/media_tree.git
14496 S:      Maintained
14497 F:      drivers/media/platform/sunxi/sun8i-rotate/
14498 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14499
14500 RTL2830 MEDIA DRIVER
14501 M:      Antti Palosaari <crope@iki.fi>
14502 L:      linux-media@vger.kernel.org
14503 W:      https://linuxtv.org
14504 W:      http://palosaari.fi/linux/
14505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14506 T:      git git://linuxtv.org/anttip/media_tree.git
14507 S:      Maintained
14508 F:      drivers/media/dvb-frontends/rtl2830*
14509
14510 RTL2832 MEDIA DRIVER
14511 M:      Antti Palosaari <crope@iki.fi>
14512 L:      linux-media@vger.kernel.org
14513 W:      https://linuxtv.org
14514 W:      http://palosaari.fi/linux/
14515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14516 T:      git git://linuxtv.org/anttip/media_tree.git
14517 S:      Maintained
14518 F:      drivers/media/dvb-frontends/rtl2832*
14519
14520 RTL2832_SDR MEDIA DRIVER
14521 M:      Antti Palosaari <crope@iki.fi>
14522 L:      linux-media@vger.kernel.org
14523 W:      https://linuxtv.org
14524 W:      http://palosaari.fi/linux/
14525 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14526 T:      git git://linuxtv.org/anttip/media_tree.git
14527 S:      Maintained
14528 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14529
14530 RTL8180 WIRELESS DRIVER
14531 L:      linux-wireless@vger.kernel.org
14532 W:      http://wireless.kernel.org/
14533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14534 S:      Orphan
14535 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14536
14537 RTL8187 WIRELESS DRIVER
14538 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14539 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14540 M:      Larry Finger <Larry.Finger@lwfinger.net>
14541 L:      linux-wireless@vger.kernel.org
14542 W:      http://wireless.kernel.org/
14543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14544 S:      Maintained
14545 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14546
14547 REALTEK WIRELESS DRIVER (rtlwifi family)
14548 M:      Ping-Ke Shih <pkshih@realtek.com>
14549 L:      linux-wireless@vger.kernel.org
14550 W:      http://wireless.kernel.org/
14551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14552 S:      Maintained
14553 F:      drivers/net/wireless/realtek/rtlwifi/
14554
14555 REALTEK WIRELESS DRIVER (rtw88)
14556 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14557 L:      linux-wireless@vger.kernel.org
14558 S:      Maintained
14559 F:      drivers/net/wireless/realtek/rtw88/
14560
14561 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14562 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14563 L:      linux-wireless@vger.kernel.org
14564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14565 S:      Maintained
14566 F:      drivers/net/wireless/realtek/rtl8xxxu/
14567
14568 RXRPC SOCKETS (AF_RXRPC)
14569 M:      David Howells <dhowells@redhat.com>
14570 L:      linux-afs@lists.infradead.org
14571 S:      Supported
14572 F:      net/rxrpc/
14573 F:      include/keys/rxrpc-type.h
14574 F:      include/net/af_rxrpc.h
14575 F:      include/trace/events/rxrpc.h
14576 F:      include/uapi/linux/rxrpc.h
14577 F:      Documentation/networking/rxrpc.txt
14578 W:      https://www.infradead.org/~dhowells/kafs/
14579
14580 S3 SAVAGE FRAMEBUFFER DRIVER
14581 M:      Antonino Daplas <adaplas@gmail.com>
14582 L:      linux-fbdev@vger.kernel.org
14583 S:      Maintained
14584 F:      drivers/video/fbdev/savage/
14585
14586 S390
14587 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14588 M:      Vasily Gorbik <gor@linux.ibm.com>
14589 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14590 L:      linux-s390@vger.kernel.org
14591 W:      http://www.ibm.com/developerworks/linux/linux390/
14592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14593 S:      Supported
14594 F:      arch/s390/
14595 F:      drivers/s390/
14596 F:      Documentation/s390/
14597 F:      Documentation/driver-api/s390-drivers.rst
14598
14599 S390 COMMON I/O LAYER
14600 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14601 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14602 L:      linux-s390@vger.kernel.org
14603 W:      http://www.ibm.com/developerworks/linux/linux390/
14604 S:      Supported
14605 F:      drivers/s390/cio/
14606
14607 S390 DASD DRIVER
14608 M:      Stefan Haberland <sth@linux.ibm.com>
14609 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14610 L:      linux-s390@vger.kernel.org
14611 W:      http://www.ibm.com/developerworks/linux/linux390/
14612 S:      Supported
14613 F:      drivers/s390/block/dasd*
14614 F:      block/partitions/ibm.c
14615
14616 S390 IOMMU (PCI)
14617 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14618 L:      linux-s390@vger.kernel.org
14619 W:      http://www.ibm.com/developerworks/linux/linux390/
14620 S:      Supported
14621 F:      drivers/iommu/s390-iommu.c
14622
14623 S390 IUCV NETWORK LAYER
14624 M:      Julian Wiedmann <jwi@linux.ibm.com>
14625 M:      Ursula Braun <ubraun@linux.ibm.com>
14626 L:      linux-s390@vger.kernel.org
14627 W:      http://www.ibm.com/developerworks/linux/linux390/
14628 S:      Supported
14629 F:      drivers/s390/net/*iucv*
14630 F:      include/net/iucv/
14631 F:      net/iucv/
14632
14633 S390 NETWORK DRIVERS
14634 M:      Julian Wiedmann <jwi@linux.ibm.com>
14635 M:      Ursula Braun <ubraun@linux.ibm.com>
14636 L:      linux-s390@vger.kernel.org
14637 W:      http://www.ibm.com/developerworks/linux/linux390/
14638 S:      Supported
14639 F:      drivers/s390/net/
14640
14641 S390 PCI SUBSYSTEM
14642 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14643 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14644 L:      linux-s390@vger.kernel.org
14645 W:      http://www.ibm.com/developerworks/linux/linux390/
14646 S:      Supported
14647 F:      arch/s390/pci/
14648 F:      drivers/pci/hotplug/s390_pci_hpc.c
14649
14650 S390 VFIO-CCW DRIVER
14651 M:      Cornelia Huck <cohuck@redhat.com>
14652 M:      Eric Farman <farman@linux.ibm.com>
14653 R:      Halil Pasic <pasic@linux.ibm.com>
14654 L:      linux-s390@vger.kernel.org
14655 L:      kvm@vger.kernel.org
14656 S:      Supported
14657 F:      drivers/s390/cio/vfio_ccw*
14658 F:      Documentation/s390/vfio-ccw.rst
14659 F:      include/uapi/linux/vfio_ccw.h
14660
14661 S390 ZCRYPT DRIVER
14662 M:      Harald Freudenberger <freude@linux.ibm.com>
14663 L:      linux-s390@vger.kernel.org
14664 W:      http://www.ibm.com/developerworks/linux/linux390/
14665 S:      Supported
14666 F:      drivers/s390/crypto/
14667
14668 S390 VFIO AP DRIVER
14669 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14670 M:      Pierre Morel <pmorel@linux.ibm.com>
14671 M:      Halil Pasic <pasic@linux.ibm.com>
14672 L:      linux-s390@vger.kernel.org
14673 W:      http://www.ibm.com/developerworks/linux/linux390/
14674 S:      Supported
14675 F:      drivers/s390/crypto/vfio_ap_drv.c
14676 F:      drivers/s390/crypto/vfio_ap_private.h
14677 F:      drivers/s390/crypto/vfio_ap_ops.c
14678 F:      Documentation/s390/vfio-ap.rst
14679
14680 S390 ZFCP DRIVER
14681 M:      Steffen Maier <maier@linux.ibm.com>
14682 M:      Benjamin Block <bblock@linux.ibm.com>
14683 L:      linux-s390@vger.kernel.org
14684 W:      http://www.ibm.com/developerworks/linux/linux390/
14685 S:      Supported
14686 F:      drivers/s390/scsi/zfcp_*
14687
14688 S3C24XX SD/MMC Driver
14689 M:      Ben Dooks <ben-linux@fluff.org>
14690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14691 S:      Supported
14692 F:      drivers/mmc/host/s3cmci.*
14693
14694 SAA6588 RDS RECEIVER DRIVER
14695 M:      Hans Verkuil <hverkuil@xs4all.nl>
14696 L:      linux-media@vger.kernel.org
14697 T:      git git://linuxtv.org/media_tree.git
14698 W:      https://linuxtv.org
14699 S:      Odd Fixes
14700 F:      drivers/media/i2c/saa6588*
14701
14702 SAA7134 VIDEO4LINUX DRIVER
14703 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14704 L:      linux-media@vger.kernel.org
14705 W:      https://linuxtv.org
14706 T:      git git://linuxtv.org/media_tree.git
14707 S:      Odd fixes
14708 F:      Documentation/media/v4l-drivers/saa7134*
14709 F:      drivers/media/pci/saa7134/
14710
14711 SAA7146 VIDEO4LINUX-2 DRIVER
14712 M:      Hans Verkuil <hverkuil@xs4all.nl>
14713 L:      linux-media@vger.kernel.org
14714 T:      git git://linuxtv.org/media_tree.git
14715 S:      Maintained
14716 F:      drivers/media/common/saa7146/
14717 F:      drivers/media/pci/saa7146/
14718 F:      include/media/drv-intf/saa7146*
14719
14720 SAFESETID SECURITY MODULE
14721 M:      Micah Morton <mortonm@chromium.org>
14722 S:      Supported
14723 F:      security/safesetid/
14724 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14725
14726 SAMSUNG AUDIO (ASoC) DRIVERS
14727 M:      Krzysztof Kozlowski <krzk@kernel.org>
14728 M:      Sangbeom Kim <sbkim73@samsung.com>
14729 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14731 S:      Supported
14732 F:      sound/soc/samsung/
14733 F:      Documentation/devicetree/bindings/sound/samsung*
14734
14735 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14736 M:      Krzysztof Kozlowski <krzk@kernel.org>
14737 L:      linux-crypto@vger.kernel.org
14738 L:      linux-samsung-soc@vger.kernel.org
14739 S:      Maintained
14740 F:      drivers/crypto/exynos-rng.c
14741 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14742
14743 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14744 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14745 L:      linux-samsung-soc@vger.kernel.org
14746 S:      Maintained
14747 F:      drivers/char/hw_random/exynos-trng.c
14748 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14749
14750 SAMSUNG FRAMEBUFFER DRIVER
14751 M:      Jingoo Han <jingoohan1@gmail.com>
14752 L:      linux-fbdev@vger.kernel.org
14753 S:      Maintained
14754 F:      drivers/video/fbdev/s3c-fb.c
14755
14756 SAMSUNG LAPTOP DRIVER
14757 M:      Corentin Chary <corentin.chary@gmail.com>
14758 L:      platform-driver-x86@vger.kernel.org
14759 S:      Maintained
14760 F:      drivers/platform/x86/samsung-laptop.c
14761
14762 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14763 M:      Sangbeom Kim <sbkim73@samsung.com>
14764 M:      Krzysztof Kozlowski <krzk@kernel.org>
14765 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14766 L:      linux-kernel@vger.kernel.org
14767 L:      linux-samsung-soc@vger.kernel.org
14768 S:      Supported
14769 F:      drivers/mfd/sec*.c
14770 F:      drivers/regulator/s2m*.c
14771 F:      drivers/regulator/s5m*.c
14772 F:      drivers/clk/clk-s2mps11.c
14773 F:      drivers/rtc/rtc-s5m.c
14774 F:      include/linux/mfd/samsung/
14775 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14776 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14777 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14778 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14779
14780 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14781 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14782 L:      linux-media@vger.kernel.org
14783 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14784 S:      Maintained
14785 F:      drivers/media/platform/s3c-camif/
14786 F:      include/media/drv-intf/s3c_camif.h
14787
14788 SAMSUNG S3FWRN5 NFC DRIVER
14789 M:      Robert Baldyga <r.baldyga@samsung.com>
14790 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14791 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14792 S:      Supported
14793 F:      drivers/nfc/s3fwrn5
14794
14795 SAMSUNG S5C73M3 CAMERA DRIVER
14796 M:      Kyungmin Park <kyungmin.park@samsung.com>
14797 M:      Andrzej Hajda <a.hajda@samsung.com>
14798 L:      linux-media@vger.kernel.org
14799 S:      Supported
14800 F:      drivers/media/i2c/s5c73m3/*
14801
14802 SAMSUNG S5K5BAF CAMERA DRIVER
14803 M:      Kyungmin Park <kyungmin.park@samsung.com>
14804 M:      Andrzej Hajda <a.hajda@samsung.com>
14805 L:      linux-media@vger.kernel.org
14806 S:      Supported
14807 F:      drivers/media/i2c/s5k5baf.c
14808
14809 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14810 M:      Krzysztof Kozlowski <krzk@kernel.org>
14811 M:      Vladimir Zapolskiy <vz@mleia.com>
14812 M:      Kamil Konieczny <k.konieczny@samsung.com>
14813 L:      linux-crypto@vger.kernel.org
14814 L:      linux-samsung-soc@vger.kernel.org
14815 S:      Maintained
14816 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14817 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14818 F:      drivers/crypto/s5p-sss.c
14819
14820 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14821 M:      Kyungmin Park <kyungmin.park@samsung.com>
14822 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14823 L:      linux-media@vger.kernel.org
14824 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14825 S:      Supported
14826 F:      drivers/media/platform/exynos4-is/
14827
14828 SAMSUNG SOC CLOCK DRIVERS
14829 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14830 M:      Tomasz Figa <tomasz.figa@gmail.com>
14831 M:      Chanwoo Choi <cw00.choi@samsung.com>
14832 S:      Supported
14833 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14835 F:      drivers/clk/samsung/
14836 F:      include/dt-bindings/clock/exynos*.h
14837 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14838 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14839 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14840
14841 SAMSUNG SPI DRIVERS
14842 M:      Kukjin Kim <kgene@kernel.org>
14843 M:      Krzysztof Kozlowski <krzk@kernel.org>
14844 M:      Andi Shyti <andi@etezian.org>
14845 L:      linux-spi@vger.kernel.org
14846 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14847 S:      Maintained
14848 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14849 F:      drivers/spi/spi-s3c*
14850 F:      include/linux/platform_data/spi-s3c64xx.h
14851
14852 SAMSUNG SXGBE DRIVERS
14853 M:      Byungho An <bh74.an@samsung.com>
14854 S:      Supported
14855 L:      netdev@vger.kernel.org
14856 F:      drivers/net/ethernet/samsung/sxgbe/
14857
14858 SAMSUNG THERMAL DRIVER
14859 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14860 L:      linux-pm@vger.kernel.org
14861 L:      linux-samsung-soc@vger.kernel.org
14862 S:      Supported
14863 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14864 F:      drivers/thermal/samsung/
14865
14866 SAMSUNG USB2 PHY DRIVER
14867 M:      Kamil Debski <kamil@wypas.org>
14868 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14869 L:      linux-kernel@vger.kernel.org
14870 S:      Supported
14871 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14872 F:      Documentation/driver-api/phy/samsung-usb2.rst
14873 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14874 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14875 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14876 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14877 F:      drivers/phy/samsung/phy-samsung-usb2.c
14878 F:      drivers/phy/samsung/phy-samsung-usb2.h
14879
14880 SC1200 WDT DRIVER
14881 M:      Zwane Mwaikambo <zwanem@gmail.com>
14882 S:      Maintained
14883 F:      drivers/watchdog/sc1200wdt.c
14884
14885 SCHEDULER
14886 M:      Ingo Molnar <mingo@redhat.com>
14887 M:      Peter Zijlstra <peterz@infradead.org>
14888 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14889 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14890 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14891 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14892 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14893 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14894 L:      linux-kernel@vger.kernel.org
14895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14896 S:      Maintained
14897 F:      kernel/sched/
14898 F:      include/linux/sched.h
14899 F:      include/uapi/linux/sched.h
14900 F:      include/linux/wait.h
14901 F:      include/linux/preempt.h
14902
14903 SCR24X CHIP CARD INTERFACE DRIVER
14904 M:      Lubomir Rintel <lkundrak@v3.sk>
14905 S:      Supported
14906 F:      drivers/char/pcmcia/scr24x_cs.c
14907
14908 SCSI CDROM DRIVER
14909 M:      Jens Axboe <axboe@kernel.dk>
14910 L:      linux-scsi@vger.kernel.org
14911 W:      http://www.kernel.dk
14912 S:      Maintained
14913 F:      drivers/scsi/sr*
14914
14915 SCSI RDMA PROTOCOL (SRP) INITIATOR
14916 M:      Bart Van Assche <bvanassche@acm.org>
14917 L:      linux-rdma@vger.kernel.org
14918 S:      Supported
14919 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14920 F:      drivers/infiniband/ulp/srp/
14921 F:      include/scsi/srp.h
14922
14923 SCSI RDMA PROTOCOL (SRP) TARGET
14924 M:      Bart Van Assche <bvanassche@acm.org>
14925 L:      linux-rdma@vger.kernel.org
14926 L:      target-devel@vger.kernel.org
14927 S:      Supported
14928 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14929 F:      drivers/infiniband/ulp/srpt/
14930
14931 SCSI SG DRIVER
14932 M:      Doug Gilbert <dgilbert@interlog.com>
14933 L:      linux-scsi@vger.kernel.org
14934 W:      http://sg.danny.cz/sg
14935 S:      Maintained
14936 F:      Documentation/scsi/scsi-generic.rst
14937 F:      drivers/scsi/sg.c
14938 F:      include/scsi/sg.h
14939
14940 SCSI SUBSYSTEM
14941 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14943 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14945 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14946 L:      linux-scsi@vger.kernel.org
14947 S:      Maintained
14948 F:      Documentation/devicetree/bindings/scsi/
14949 F:      drivers/scsi/
14950 F:      include/scsi/
14951
14952 SCSI TAPE DRIVER
14953 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14954 L:      linux-scsi@vger.kernel.org
14955 S:      Maintained
14956 F:      Documentation/scsi/st.rst
14957 F:      drivers/scsi/st.*
14958 F:      drivers/scsi/st_*.h
14959
14960 SCSI TARGET SUBSYSTEM
14961 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14962 L:      linux-scsi@vger.kernel.org
14963 L:      target-devel@vger.kernel.org
14964 W:      http://www.linux-iscsi.org
14965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14966 Q:      https://patchwork.kernel.org/project/target-devel/list/
14967 S:      Supported
14968 F:      drivers/target/
14969 F:      include/target/
14970 F:      Documentation/target/
14971
14972 SCTP PROTOCOL
14973 M:      Vlad Yasevich <vyasevich@gmail.com>
14974 M:      Neil Horman <nhorman@tuxdriver.com>
14975 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14976 L:      linux-sctp@vger.kernel.org
14977 W:      http://lksctp.sourceforge.net
14978 S:      Maintained
14979 F:      Documentation/networking/sctp.txt
14980 F:      include/linux/sctp.h
14981 F:      include/uapi/linux/sctp.h
14982 F:      include/net/sctp/
14983 F:      net/sctp/
14984
14985 SCx200 CPU SUPPORT
14986 M:      Jim Cromie <jim.cromie@gmail.com>
14987 S:      Odd Fixes
14988 F:      Documentation/i2c/busses/scx200_acb.rst
14989 F:      arch/x86/platform/scx200/
14990 F:      drivers/watchdog/scx200_wdt.c
14991 F:      drivers/i2c/busses/scx200*
14992 F:      drivers/mtd/maps/scx200_docflash.c
14993 F:      include/linux/scx200.h
14994
14995 SCx200 GPIO DRIVER
14996 M:      Jim Cromie <jim.cromie@gmail.com>
14997 S:      Maintained
14998 F:      drivers/char/scx200_gpio.c
14999 F:      include/linux/scx200_gpio.h
15000
15001 SCx200 HRT CLOCKSOURCE DRIVER
15002 M:      Jim Cromie <jim.cromie@gmail.com>
15003 S:      Maintained
15004 F:      drivers/clocksource/scx200_hrt.c
15005
15006 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15007 M:      Sascha Sommer <saschasommer@freenet.de>
15008 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15009 S:      Maintained
15010 F:      drivers/mmc/host/sdricoh_cs.c
15011
15012 SECO BOARDS CEC DRIVER
15013 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15014 S:      Maintained
15015 F:      drivers/media/platform/seco-cec/seco-cec.c
15016 F:      drivers/media/platform/seco-cec/seco-cec.h
15017
15018 SECURE COMPUTING
15019 M:      Kees Cook <keescook@chromium.org>
15020 R:      Andy Lutomirski <luto@amacapital.net>
15021 R:      Will Drewry <wad@chromium.org>
15022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15023 S:      Supported
15024 F:      kernel/seccomp.c
15025 F:      include/uapi/linux/seccomp.h
15026 F:      include/linux/seccomp.h
15027 F:      tools/testing/selftests/seccomp/*
15028 F:      tools/testing/selftests/kselftest_harness.h
15029 F:      Documentation/userspace-api/seccomp_filter.rst
15030 K:      \bsecure_computing
15031 K:      \bTIF_SECCOMP\b
15032
15033 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15034 M:      Al Cooper <alcooperx@gmail.com>
15035 L:      linux-mmc@vger.kernel.org
15036 L:      bcm-kernel-feedback-list@broadcom.com
15037 S:      Maintained
15038 F:      drivers/mmc/host/sdhci-brcmstb*
15039
15040 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15041 M:      Adrian Hunter <adrian.hunter@intel.com>
15042 L:      linux-mmc@vger.kernel.org
15043 S:      Maintained
15044 F:      drivers/mmc/host/sdhci*
15045 F:      include/linux/mmc/sdhci*
15046
15047 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
15048 M:      Adrian Hunter <adrian.hunter@intel.com>
15049 M:      Ritesh Harjani <riteshh@codeaurora.org>
15050 M:      Asutosh Das <asutoshd@codeaurora.org>
15051 L:      linux-mmc@vger.kernel.org
15052 S:      Maintained
15053 F:      drivers/mmc/host/cqhci*
15054
15055 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
15056 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
15057 M:      Manjunath M B <manjumb@synopsys.com>
15058 L:      linux-mmc@vger.kernel.org
15059 S:      Maintained
15060 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
15061
15062 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15063 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15064 L:      linux-mmc@vger.kernel.org
15065 S:      Supported
15066 F:      drivers/mmc/host/sdhci-of-at91.c
15067
15068 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15069 M:      Ben Dooks <ben-linux@fluff.org>
15070 M:      Jaehoon Chung <jh80.chung@samsung.com>
15071 L:      linux-mmc@vger.kernel.org
15072 S:      Maintained
15073 F:      drivers/mmc/host/sdhci-s3c*
15074
15075 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15076 M:      Viresh Kumar <vireshk@kernel.org>
15077 L:      linux-mmc@vger.kernel.org
15078 S:      Maintained
15079 F:      drivers/mmc/host/sdhci-spear.c
15080
15081 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15082 M:      Kishon Vijay Abraham I <kishon@ti.com>
15083 L:      linux-mmc@vger.kernel.org
15084 S:      Maintained
15085 F:      drivers/mmc/host/sdhci-omap.c
15086
15087 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15088 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15089 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15090 L:      linux-block@vger.kernel.org
15091 S:      Supported
15092 F:      block/sed*
15093 F:      block/opal_proto.h
15094 F:      include/linux/sed*
15095 F:      include/uapi/linux/sed*
15096
15097 SECURITY CONTACT
15098 M:      Security Officers <security@kernel.org>
15099 S:      Supported
15100
15101 SECURITY SUBSYSTEM
15102 M:      James Morris <jmorris@namei.org>
15103 M:      "Serge E. Hallyn" <serge@hallyn.com>
15104 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15106 W:      http://kernsec.org/
15107 S:      Supported
15108 F:      security/
15109 X:      security/selinux/
15110
15111 SELINUX SECURITY MODULE
15112 M:      Paul Moore <paul@paul-moore.com>
15113 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15114 M:      Eric Paris <eparis@parisplace.org>
15115 L:      selinux@vger.kernel.org
15116 W:      https://selinuxproject.org
15117 W:      https://github.com/SELinuxProject
15118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15119 S:      Supported
15120 F:      include/uapi/linux/selinux_netlink.h
15121 F:      security/selinux/
15122 F:      scripts/selinux/
15123 F:      Documentation/admin-guide/LSM/SELinux.rst
15124 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15125 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15126
15127 SENSABLE PHANTOM
15128 M:      Jiri Slaby <jirislaby@gmail.com>
15129 S:      Maintained
15130 F:      drivers/misc/phantom.c
15131 F:      include/uapi/linux/phantom.h
15132
15133 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15134 M:      Tomasz Duszynski <tduszyns@gmail.com>
15135 S:      Maintained
15136 F:      drivers/iio/chemical/sps30.c
15137 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15138
15139 SERIAL DEVICE BUS
15140 M:      Rob Herring <robh@kernel.org>
15141 L:      linux-serial@vger.kernel.org
15142 S:      Maintained
15143 F:      Documentation/devicetree/bindings/serial/serial.yaml
15144 F:      drivers/tty/serdev/
15145 F:      include/linux/serdev.h
15146
15147 SERIAL DRIVERS
15148 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15149 L:      linux-serial@vger.kernel.org
15150 S:      Maintained
15151 F:      Documentation/devicetree/bindings/serial/
15152 F:      drivers/tty/serial/
15153
15154 SERIAL IR RECEIVER
15155 M:      Sean Young <sean@mess.org>
15156 L:      linux-media@vger.kernel.org
15157 S:      Maintained
15158 F:      drivers/media/rc/serial_ir.c
15159
15160 SFC NETWORK DRIVER
15161 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15162 M:      Edward Cree <ecree@solarflare.com>
15163 M:      Martin Habets <mhabets@solarflare.com>
15164 L:      netdev@vger.kernel.org
15165 S:      Supported
15166 F:      drivers/net/ethernet/sfc/
15167
15168 SFF/SFP/SFP+ MODULE SUPPORT
15169 M:      Russell King <linux@armlinux.org.uk>
15170 L:      netdev@vger.kernel.org
15171 S:      Maintained
15172 F:      drivers/net/phy/phylink.c
15173 F:      drivers/net/phy/sfp*
15174 F:      include/linux/phylink.h
15175 F:      include/linux/sfp.h
15176 K:      phylink
15177
15178 SGI GRU DRIVER
15179 M:      Dimitri Sivanich <sivanich@sgi.com>
15180 S:      Maintained
15181 F:      drivers/misc/sgi-gru/
15182
15183 SGI XP/XPC/XPNET DRIVER
15184 M:      Cliff Whickman <cpw@sgi.com>
15185 M:      Robin Holt <robinmholt@gmail.com>
15186 S:      Maintained
15187 F:      drivers/misc/sgi-xp/
15188
15189 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15190 M:      Ursula Braun <ubraun@linux.ibm.com>
15191 M:      Karsten Graul <kgraul@linux.ibm.com>
15192 L:      linux-s390@vger.kernel.org
15193 W:      http://www.ibm.com/developerworks/linux/linux390/
15194 S:      Supported
15195 F:      net/smc/
15196
15197 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15198 M:      Linus Walleij <linus.walleij@linaro.org>
15199 L:      linux-iio@vger.kernel.org
15200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15201 S:      Maintained
15202 F:      drivers/iio/light/gp2ap002.c
15203 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15204
15205 SHARP RJ54N1CB0C SENSOR DRIVER
15206 M:      Jacopo Mondi <jacopo@jmondi.org>
15207 L:      linux-media@vger.kernel.org
15208 T:      git git://linuxtv.org/media_tree.git
15209 S:      Odd fixes
15210 F:      drivers/media/i2c/rj54n1cb0c.c
15211 F:      include/media/i2c/rj54n1cb0c.h
15212
15213 SH_VEU V4L2 MEM2MEM DRIVER
15214 L:      linux-media@vger.kernel.org
15215 S:      Orphan
15216 F:      drivers/media/platform/sh_veu.c
15217
15218 SH_VOU V4L2 OUTPUT DRIVER
15219 L:      linux-media@vger.kernel.org
15220 S:      Orphan
15221 F:      drivers/media/platform/sh_vou.c
15222 F:      include/media/drv-intf/sh_vou.h
15223
15224 SI2157 MEDIA DRIVER
15225 M:      Antti Palosaari <crope@iki.fi>
15226 L:      linux-media@vger.kernel.org
15227 W:      https://linuxtv.org
15228 W:      http://palosaari.fi/linux/
15229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15230 T:      git git://linuxtv.org/anttip/media_tree.git
15231 S:      Maintained
15232 F:      drivers/media/tuners/si2157*
15233
15234 SI2165 MEDIA DRIVER
15235 M:      Matthias Schwarzott <zzam@gentoo.org>
15236 L:      linux-media@vger.kernel.org
15237 W:      https://linuxtv.org
15238 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15239 S:      Maintained
15240 F:      drivers/media/dvb-frontends/si2165*
15241
15242 SI2168 MEDIA DRIVER
15243 M:      Antti Palosaari <crope@iki.fi>
15244 L:      linux-media@vger.kernel.org
15245 W:      https://linuxtv.org
15246 W:      http://palosaari.fi/linux/
15247 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15248 T:      git git://linuxtv.org/anttip/media_tree.git
15249 S:      Maintained
15250 F:      drivers/media/dvb-frontends/si2168*
15251
15252 SI470X FM RADIO RECEIVER I2C DRIVER
15253 M:      Hans Verkuil <hverkuil@xs4all.nl>
15254 L:      linux-media@vger.kernel.org
15255 T:      git git://linuxtv.org/media_tree.git
15256 W:      https://linuxtv.org
15257 S:      Odd Fixes
15258 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15259
15260 SI470X FM RADIO RECEIVER USB DRIVER
15261 M:      Hans Verkuil <hverkuil@xs4all.nl>
15262 L:      linux-media@vger.kernel.org
15263 T:      git git://linuxtv.org/media_tree.git
15264 W:      https://linuxtv.org
15265 S:      Maintained
15266 F:      drivers/media/radio/si470x/radio-si470x-common.c
15267 F:      drivers/media/radio/si470x/radio-si470x.h
15268 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15269
15270 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15271 M:      Eduardo Valentin <edubezval@gmail.com>
15272 L:      linux-media@vger.kernel.org
15273 T:      git git://linuxtv.org/media_tree.git
15274 W:      https://linuxtv.org
15275 S:      Odd Fixes
15276 F:      drivers/media/radio/si4713/si4713.?
15277
15278 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15279 M:      Eduardo Valentin <edubezval@gmail.com>
15280 L:      linux-media@vger.kernel.org
15281 T:      git git://linuxtv.org/media_tree.git
15282 W:      https://linuxtv.org
15283 S:      Odd Fixes
15284 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15285
15286 SI4713 FM RADIO TRANSMITTER USB DRIVER
15287 M:      Hans Verkuil <hverkuil@xs4all.nl>
15288 L:      linux-media@vger.kernel.org
15289 T:      git git://linuxtv.org/media_tree.git
15290 W:      https://linuxtv.org
15291 S:      Maintained
15292 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15293
15294 SIANO DVB DRIVER
15295 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15296 L:      linux-media@vger.kernel.org
15297 W:      https://linuxtv.org
15298 T:      git git://linuxtv.org/media_tree.git
15299 S:      Odd fixes
15300 F:      drivers/media/common/siano/
15301 F:      drivers/media/usb/siano/
15302 F:      drivers/media/usb/siano/
15303 F:      drivers/media/mmc/siano/
15304
15305 SIFIVE PDMA DRIVER
15306 M:      Green Wan <green.wan@sifive.com>
15307 S:      Maintained
15308 F:      drivers/dma/sf-pdma/
15309 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15310
15311 SIFIVE DRIVERS
15312 M:      Palmer Dabbelt <palmer@dabbelt.com>
15313 M:      Paul Walmsley <paul.walmsley@sifive.com>
15314 L:      linux-riscv@lists.infradead.org
15315 T:      git git://github.com/sifive/riscv-linux.git
15316 S:      Supported
15317 K:      [^@]sifive
15318 N:      sifive
15319
15320 SIFIVE FU540 SYSTEM-ON-CHIP
15321 M:      Paul Walmsley <paul.walmsley@sifive.com>
15322 M:      Palmer Dabbelt <palmer@dabbelt.com>
15323 L:      linux-riscv@lists.infradead.org
15324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15325 S:      Supported
15326 K:      fu540
15327 N:      fu540
15328
15329 SILEAD TOUCHSCREEN DRIVER
15330 M:      Hans de Goede <hdegoede@redhat.com>
15331 L:      linux-input@vger.kernel.org
15332 L:      platform-driver-x86@vger.kernel.org
15333 S:      Maintained
15334 F:      drivers/input/touchscreen/silead.c
15335 F:      drivers/platform/x86/touchscreen_dmi.c
15336
15337 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15338 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15339 S:      Supported
15340 F:      drivers/staging/wfx/
15341
15342 SILICON MOTION SM712 FRAME BUFFER DRIVER
15343 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15344 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15345 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15346 L:      linux-fbdev@vger.kernel.org
15347 S:      Maintained
15348 F:      drivers/video/fbdev/sm712*
15349 F:      Documentation/fb/sm712fb.rst
15350
15351 SIMPLE FIRMWARE INTERFACE (SFI)
15352 W:      http://simplefirmware.org/
15353 S:      Obsolete
15354 F:      arch/x86/platform/sfi/
15355 F:      drivers/sfi/
15356 F:      include/linux/sfi*.h
15357
15358 SIMPLEFB FB DRIVER
15359 M:      Hans de Goede <hdegoede@redhat.com>
15360 L:      linux-fbdev@vger.kernel.org
15361 S:      Maintained
15362 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15363 F:      drivers/video/fbdev/simplefb.c
15364 F:      include/linux/platform_data/simplefb.h
15365
15366 SIMTEC EB110ATX (Chalice CATS)
15367 M:      Vincent Sanders <vince@simtec.co.uk>
15368 M:      Simtec Linux Team <linux@simtec.co.uk>
15369 W:      http://www.simtec.co.uk/products/EB110ATX/
15370 S:      Supported
15371
15372 SIMTEC EB2410ITX (BAST)
15373 M:      Vincent Sanders <vince@simtec.co.uk>
15374 M:      Simtec Linux Team <linux@simtec.co.uk>
15375 W:      http://www.simtec.co.uk/products/EB2410ITX/
15376 S:      Supported
15377 F:      arch/arm/mach-s3c24xx/mach-bast.c
15378 F:      arch/arm/mach-s3c24xx/bast-ide.c
15379 F:      arch/arm/mach-s3c24xx/bast-irq.c
15380
15381 SIPHASH PRF ROUTINES
15382 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15383 S:      Maintained
15384 F:      lib/siphash.c
15385 F:      lib/test_siphash.c
15386 F:      include/linux/siphash.h
15387
15388 SIOX
15389 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15390 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15391 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15392 S:      Supported
15393 F:      drivers/siox/*
15394 F:      drivers/gpio/gpio-siox.c
15395 F:      include/trace/events/siox.h
15396
15397 SIS 190 ETHERNET DRIVER
15398 M:      Francois Romieu <romieu@fr.zoreil.com>
15399 L:      netdev@vger.kernel.org
15400 S:      Maintained
15401 F:      drivers/net/ethernet/sis/sis190.c
15402
15403 SIS 900/7016 FAST ETHERNET DRIVER
15404 M:      Daniele Venzano <venza@brownhat.org>
15405 W:      http://www.brownhat.org/sis900.html
15406 L:      netdev@vger.kernel.org
15407 S:      Maintained
15408 F:      drivers/net/ethernet/sis/sis900.*
15409
15410 SIS FRAMEBUFFER DRIVER
15411 M:      Thomas Winischhofer <thomas@winischhofer.net>
15412 W:      http://www.winischhofer.net/linuxsisvga.shtml
15413 S:      Maintained
15414 F:      Documentation/fb/sisfb.rst
15415 F:      drivers/video/fbdev/sis/
15416 F:      include/video/sisfb.h
15417
15418 SIS USB2VGA DRIVER
15419 M:      Thomas Winischhofer <thomas@winischhofer.net>
15420 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15421 S:      Maintained
15422 F:      drivers/usb/misc/sisusbvga/
15423
15424 SLAB ALLOCATOR
15425 M:      Christoph Lameter <cl@linux.com>
15426 M:      Pekka Enberg <penberg@kernel.org>
15427 M:      David Rientjes <rientjes@google.com>
15428 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15429 M:      Andrew Morton <akpm@linux-foundation.org>
15430 L:      linux-mm@kvack.org
15431 S:      Maintained
15432 F:      include/linux/sl?b*.h
15433 F:      mm/sl?b*
15434
15435 SLEEPABLE READ-COPY UPDATE (SRCU)
15436 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15437 M:      "Paul E. McKenney" <paulmck@kernel.org>
15438 M:      Josh Triplett <josh@joshtriplett.org>
15439 R:      Steven Rostedt <rostedt@goodmis.org>
15440 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15441 L:      rcu@vger.kernel.org
15442 W:      http://www.rdrop.com/users/paulmck/RCU/
15443 S:      Supported
15444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15445 F:      include/linux/srcu*.h
15446 F:      kernel/rcu/srcu*.c
15447
15448 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15449 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15451 S:      Maintained
15452 F:      drivers/slimbus/
15453 F:      Documentation/devicetree/bindings/slimbus/
15454 F:      include/linux/slimbus.h
15455
15456 SMACK SECURITY MODULE
15457 M:      Casey Schaufler <casey@schaufler-ca.com>
15458 L:      linux-security-module@vger.kernel.org
15459 W:      http://schaufler-ca.com
15460 T:      git git://github.com/cschaufler/smack-next
15461 S:      Maintained
15462 F:      Documentation/admin-guide/LSM/Smack.rst
15463 F:      security/smack/
15464
15465 SMC91x ETHERNET DRIVER
15466 M:      Nicolas Pitre <nico@fluxnic.net>
15467 S:      Odd Fixes
15468 F:      drivers/net/ethernet/smsc/smc91x.*
15469
15470 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15471 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15472 L:      linux-media@vger.kernel.org
15473 S:      Maintained
15474 F:      drivers/media/i2c/smiapp/
15475 F:      drivers/media/i2c/smiapp-pll.c
15476 F:      drivers/media/i2c/smiapp-pll.h
15477 F:      include/uapi/linux/smiapp.h
15478 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15479
15480 SMM665 HARDWARE MONITOR DRIVER
15481 M:      Guenter Roeck <linux@roeck-us.net>
15482 L:      linux-hwmon@vger.kernel.org
15483 S:      Maintained
15484 F:      Documentation/hwmon/smm665.rst
15485 F:      drivers/hwmon/smm665.c
15486
15487 SMSC EMC2103 HARDWARE MONITOR DRIVER
15488 M:      Steve Glendinning <steve.glendinning@shawell.net>
15489 L:      linux-hwmon@vger.kernel.org
15490 S:      Maintained
15491 F:      Documentation/hwmon/emc2103.rst
15492 F:      drivers/hwmon/emc2103.c
15493
15494 SMSC SCH5627 HARDWARE MONITOR DRIVER
15495 M:      Hans de Goede <hdegoede@redhat.com>
15496 L:      linux-hwmon@vger.kernel.org
15497 S:      Supported
15498 F:      Documentation/hwmon/sch5627.rst
15499 F:      drivers/hwmon/sch5627.c
15500
15501 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15502 M:      Steve Glendinning <steve.glendinning@shawell.net>
15503 L:      linux-fbdev@vger.kernel.org
15504 S:      Maintained
15505 F:      drivers/video/fbdev/smscufx.c
15506
15507 SMSC47B397 HARDWARE MONITOR DRIVER
15508 M:      Jean Delvare <jdelvare@suse.com>
15509 L:      linux-hwmon@vger.kernel.org
15510 S:      Maintained
15511 F:      Documentation/hwmon/smsc47b397.rst
15512 F:      drivers/hwmon/smsc47b397.c
15513
15514 SMSC911x ETHERNET DRIVER
15515 M:      Steve Glendinning <steve.glendinning@shawell.net>
15516 L:      netdev@vger.kernel.org
15517 S:      Maintained
15518 F:      include/linux/smsc911x.h
15519 F:      drivers/net/ethernet/smsc/smsc911x.*
15520
15521 SMSC9420 PCI ETHERNET DRIVER
15522 M:      Steve Glendinning <steve.glendinning@shawell.net>
15523 L:      netdev@vger.kernel.org
15524 S:      Maintained
15525 F:      drivers/net/ethernet/smsc/smsc9420.*
15526
15527 SOC-CAMERA V4L2 SUBSYSTEM
15528 L:      linux-media@vger.kernel.org
15529 T:      git git://linuxtv.org/media_tree.git
15530 S:      Orphan
15531 F:      include/media/soc_camera.h
15532 F:      drivers/staging/media/soc_camera/
15533
15534 SOCIONEXT SYNQUACER I2C DRIVER
15535 M:      Ard Biesheuvel <ardb@kernel.org>
15536 L:      linux-i2c@vger.kernel.org
15537 S:      Maintained
15538 F:      drivers/i2c/busses/i2c-synquacer.c
15539 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15540
15541 SOCIONEXT UNIPHIER SOUND DRIVER
15542 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15543 S:      Orphan
15544 F:      sound/soc/uniphier/
15545
15546 SOEKRIS NET48XX LED SUPPORT
15547 M:      Chris Boot <bootc@bootc.net>
15548 S:      Maintained
15549 F:      drivers/leds/leds-net48xx.c
15550
15551 SOFT-IWARP DRIVER (siw)
15552 M:      Bernard Metzler <bmt@zurich.ibm.com>
15553 L:      linux-rdma@vger.kernel.org
15554 S:      Supported
15555 F:      drivers/infiniband/sw/siw/
15556 F:      include/uapi/rdma/siw-abi.h
15557
15558 SOFT-ROCE DRIVER (rxe)
15559 M:      Zhu Yanjun <yanjunz@mellanox.com>
15560 L:      linux-rdma@vger.kernel.org
15561 S:      Supported
15562 F:      drivers/infiniband/sw/rxe/
15563 F:      include/uapi/rdma/rdma_user_rxe.h
15564
15565 SOFTLOGIC 6x10 MPEG CODEC
15566 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15567 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15568 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15569 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15570 M:      Ismael Luceno <ismael@iodev.co.uk>
15571 L:      linux-media@vger.kernel.org
15572 S:      Supported
15573 F:      drivers/media/pci/solo6x10/
15574
15575 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15576 M:      James Morse <james.morse@arm.com>
15577 L:      linux-arm-kernel@lists.infradead.org
15578 S:      Maintained
15579 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15580 F:      drivers/firmware/arm_sdei.c
15581 F:      include/linux/arm_sdei.h
15582 F:      include/uapi/linux/arm_sdei.h
15583
15584 SOFTWARE RAID (Multiple Disks) SUPPORT
15585 M:      Song Liu <song@kernel.org>
15586 L:      linux-raid@vger.kernel.org
15587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15588 S:      Supported
15589 F:      drivers/md/Makefile
15590 F:      drivers/md/Kconfig
15591 F:      drivers/md/md*
15592 F:      drivers/md/raid*
15593 F:      include/linux/raid/
15594 F:      include/uapi/linux/raid/
15595
15596 SOCIONEXT (SNI) AVE NETWORK DRIVER
15597 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15598 L:      netdev@vger.kernel.org
15599 S:      Maintained
15600 F:      drivers/net/ethernet/socionext/sni_ave.c
15601 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15602
15603 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15604 M:      Jassi Brar <jaswinder.singh@linaro.org>
15605 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15606 L:      netdev@vger.kernel.org
15607 S:      Maintained
15608 F:      drivers/net/ethernet/socionext/netsec.c
15609 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15610
15611 SOCIONEXT (SNI) Synquacer SPI DRIVER
15612 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15613 M:      Jassi Brar <jaswinder.singh@linaro.org>
15614 L:      linux-spi@vger.kernel.org
15615 S:      Maintained
15616 F:      drivers/spi/spi-synquacer.c
15617 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15618
15619 SOLIDRUN CLEARFOG SUPPORT
15620 M:      Russell King <linux@armlinux.org.uk>
15621 S:      Maintained
15622 F:      arch/arm/boot/dts/armada-388-clearfog*
15623 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15624
15625 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15626 M:      Russell King <linux@armlinux.org.uk>
15627 S:      Maintained
15628 F:      arch/arm/boot/dts/imx6*-cubox-i*
15629 F:      arch/arm/boot/dts/imx6*-hummingboard*
15630 F:      arch/arm/boot/dts/imx6*-sr-*
15631
15632 SONIC NETWORK DRIVER
15633 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15634 L:      netdev@vger.kernel.org
15635 S:      Maintained
15636 F:      drivers/net/ethernet/natsemi/sonic.*
15637
15638 SONICS SILICON BACKPLANE DRIVER (SSB)
15639 M:      Michael Buesch <m@bues.ch>
15640 L:      linux-wireless@vger.kernel.org
15641 S:      Maintained
15642 F:      drivers/ssb/
15643 F:      include/linux/ssb/
15644
15645 SONY IMX214 SENSOR DRIVER
15646 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15647 L:      linux-media@vger.kernel.org
15648 T:      git git://linuxtv.org/media_tree.git
15649 S:      Maintained
15650 F:      drivers/media/i2c/imx214.c
15651 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15652
15653 SONY IMX219 SENSOR DRIVER
15654 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15655 L:      linux-media@vger.kernel.org
15656 T:      git git://linuxtv.org/media_tree.git
15657 S:      Maintained
15658 F:      drivers/media/i2c/imx219.c
15659 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15660
15661 SONY IMX258 SENSOR DRIVER
15662 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15663 L:      linux-media@vger.kernel.org
15664 T:      git git://linuxtv.org/media_tree.git
15665 S:      Maintained
15666 F:      drivers/media/i2c/imx258.c
15667
15668 SONY IMX274 SENSOR DRIVER
15669 M:      Leon Luo <leonl@leopardimaging.com>
15670 L:      linux-media@vger.kernel.org
15671 T:      git git://linuxtv.org/media_tree.git
15672 S:      Maintained
15673 F:      drivers/media/i2c/imx274.c
15674 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15675
15676 SONY IMX290 SENSOR DRIVER
15677 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15678 L:      linux-media@vger.kernel.org
15679 T:      git git://linuxtv.org/media_tree.git
15680 S:      Maintained
15681 F:      drivers/media/i2c/imx290.c
15682 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15683
15684 SONY IMX319 SENSOR DRIVER
15685 M:      Bingbu Cao <bingbu.cao@intel.com>
15686 L:      linux-media@vger.kernel.org
15687 T:      git git://linuxtv.org/media_tree.git
15688 S:      Maintained
15689 F:      drivers/media/i2c/imx319.c
15690
15691 SONY IMX355 SENSOR DRIVER
15692 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15693 L:      linux-media@vger.kernel.org
15694 T:      git git://linuxtv.org/media_tree.git
15695 S:      Maintained
15696 F:      drivers/media/i2c/imx355.c
15697
15698 SONY MEMORYSTICK SUBSYSTEM
15699 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15700 M:      Alex Dubov <oakad@yahoo.com>
15701 M:      Ulf Hansson <ulf.hansson@linaro.org>
15702 L:      linux-mmc@vger.kernel.org
15703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15704 S:      Maintained
15705 F:      drivers/memstick/
15706 F:      include/linux/memstick.h
15707
15708 SONY VAIO CONTROL DEVICE DRIVER
15709 M:      Mattia Dongili <malattia@linux.it>
15710 L:      platform-driver-x86@vger.kernel.org
15711 S:      Maintained
15712 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15713 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15714 F:      drivers/char/sonypi.c
15715 F:      drivers/platform/x86/sony-laptop.c
15716 F:      include/linux/sony-laptop.h
15717
15718 SOUND
15719 M:      Jaroslav Kysela <perex@perex.cz>
15720 M:      Takashi Iwai <tiwai@suse.com>
15721 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15722 W:      http://www.alsa-project.org/
15723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15724 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15725 S:      Maintained
15726 F:      Documentation/sound/
15727 F:      include/sound/
15728 F:      include/uapi/sound/
15729 F:      sound/
15730
15731 SOUND - COMPRESSED AUDIO
15732 M:      Vinod Koul <vkoul@kernel.org>
15733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15735 S:      Supported
15736 F:      Documentation/sound/designs/compress-offload.rst
15737 F:      include/sound/compress_driver.h
15738 F:      include/uapi/sound/compress_*
15739 F:      sound/core/compress_offload.c
15740 F:      sound/soc/soc-compress.c
15741
15742 SOUND - DMAENGINE HELPERS
15743 M:      Lars-Peter Clausen <lars@metafoo.de>
15744 S:      Supported
15745 F:      include/sound/dmaengine_pcm.h
15746 F:      sound/core/pcm_dmaengine.c
15747 F:      sound/soc/soc-generic-dmaengine-pcm.c
15748
15749 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15750 M:      Liam Girdwood <lgirdwood@gmail.com>
15751 M:      Mark Brown <broonie@kernel.org>
15752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15753 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15754 W:      http://alsa-project.org/main/index.php/ASoC
15755 S:      Supported
15756 F:      Documentation/devicetree/bindings/sound/
15757 F:      Documentation/sound/soc/
15758 F:      sound/soc/
15759 F:      include/dt-bindings/sound/
15760 F:      include/sound/soc*
15761
15762 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15763 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15764 M:      Liam Girdwood <lgirdwood@gmail.com>
15765 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15766 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15767 M:      Daniel Baluta <daniel.baluta@nxp.com>
15768 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15769 W:      https://github.com/thesofproject/linux/
15770 S:      Supported
15771 F:      sound/soc/sof/
15772
15773 SOUNDWIRE SUBSYSTEM
15774 M:      Vinod Koul <vkoul@kernel.org>
15775 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15776 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15777 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15778 S:      Supported
15779 F:      Documentation/driver-api/soundwire/
15780 F:      drivers/soundwire/
15781 F:      include/linux/soundwire/
15782
15783 SP2 MEDIA DRIVER
15784 M:      Olli Salonen <olli.salonen@iki.fi>
15785 L:      linux-media@vger.kernel.org
15786 W:      https://linuxtv.org
15787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15788 S:      Maintained
15789 F:      drivers/media/dvb-frontends/sp2*
15790
15791 SPARC + UltraSPARC (sparc/sparc64)
15792 M:      "David S. Miller" <davem@davemloft.net>
15793 L:      sparclinux@vger.kernel.org
15794 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15797 S:      Maintained
15798 F:      arch/sparc/
15799 F:      drivers/sbus/
15800
15801 SPARC SERIAL DRIVERS
15802 M:      "David S. Miller" <davem@davemloft.net>
15803 L:      sparclinux@vger.kernel.org
15804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15806 S:      Maintained
15807 F:      include/linux/sunserialcore.h
15808 F:      drivers/tty/serial/suncore.c
15809 F:      drivers/tty/serial/sunhv.c
15810 F:      drivers/tty/serial/sunsab.c
15811 F:      drivers/tty/serial/sunsab.h
15812 F:      drivers/tty/serial/sunsu.c
15813 F:      drivers/tty/serial/sunzilog.c
15814 F:      drivers/tty/serial/sunzilog.h
15815 F:      drivers/tty/vcc.c
15816
15817 SPARSE CHECKER
15818 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15819 L:      linux-sparse@vger.kernel.org
15820 W:      https://sparse.wiki.kernel.org/
15821 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15822 S:      Maintained
15823 F:      include/linux/compiler.h
15824
15825 SPEAR CLOCK FRAMEWORK SUPPORT
15826 M:      Viresh Kumar <vireshk@kernel.org>
15827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15828 W:      http://www.st.com/spear
15829 S:      Maintained
15830 F:      drivers/clk/spear/
15831
15832 SPEAR PLATFORM SUPPORT
15833 M:      Viresh Kumar <vireshk@kernel.org>
15834 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15836 W:      http://www.st.com/spear
15837 S:      Maintained
15838 F:      arch/arm/boot/dts/spear*
15839 F:      arch/arm/mach-spear/
15840
15841 SPI NOR SUBSYSTEM
15842 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15843 L:      linux-mtd@lists.infradead.org
15844 W:      http://www.linux-mtd.infradead.org/
15845 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15847 C:      irc://irc.oftc.net/mtd
15848 S:      Maintained
15849 F:      drivers/mtd/spi-nor/
15850 F:      include/linux/mtd/spi-nor.h
15851
15852 SPI SUBSYSTEM
15853 M:      Mark Brown <broonie@kernel.org>
15854 L:      linux-spi@vger.kernel.org
15855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15856 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15857 S:      Maintained
15858 F:      Documentation/devicetree/bindings/spi/
15859 F:      Documentation/spi/
15860 F:      drivers/spi/
15861 F:      include/linux/spi/
15862 F:      include/uapi/linux/spi/
15863 F:      tools/spi/
15864
15865 SPIDERNET NETWORK DRIVER for CELL
15866 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15867 L:      netdev@vger.kernel.org
15868 S:      Supported
15869 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15870 F:      drivers/net/ethernet/toshiba/spider_net*
15871
15872 SPMI SUBSYSTEM
15873 R:      Stephen Boyd <sboyd@kernel.org>
15874 L:      linux-arm-msm@vger.kernel.org
15875 F:      Documentation/devicetree/bindings/spmi/
15876 F:      drivers/spmi/
15877 F:      include/dt-bindings/spmi/spmi.h
15878 F:      include/linux/spmi.h
15879 F:      include/trace/events/spmi.h
15880
15881 SPU FILE SYSTEM
15882 M:      Jeremy Kerr <jk@ozlabs.org>
15883 L:      linuxppc-dev@lists.ozlabs.org
15884 W:      http://www.ibm.com/developerworks/power/cell/
15885 S:      Supported
15886 F:      Documentation/filesystems/spufs.txt
15887 F:      arch/powerpc/platforms/cell/spufs/
15888
15889 SQUASHFS FILE SYSTEM
15890 M:      Phillip Lougher <phillip@squashfs.org.uk>
15891 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15892 W:      http://squashfs.org.uk
15893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15894 S:      Maintained
15895 F:      Documentation/filesystems/squashfs.rst
15896 F:      fs/squashfs/
15897
15898 SRM (Alpha) environment access
15899 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15900 S:      Maintained
15901 F:      arch/alpha/kernel/srm_env.c
15902
15903 ST LSM6DSx IMU IIO DRIVER
15904 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15905 L:      linux-iio@vger.kernel.org
15906 W:      http://www.st.com/
15907 S:      Maintained
15908 F:      drivers/iio/imu/st_lsm6dsx/
15909 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15910
15911 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15912 M:      Mickael Guene <mickael.guene@st.com>
15913 L:      linux-media@vger.kernel.org
15914 T:      git git://linuxtv.org/media_tree.git
15915 S:      Maintained
15916 F:      drivers/media/i2c/st-mipid02.c
15917 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15918
15919 ST STM32 I2C/SMBUS DRIVER
15920 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15921 L:      linux-i2c@vger.kernel.org
15922 S:      Maintained
15923 F:      drivers/i2c/busses/i2c-stm32*
15924
15925 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15926 M:      Song Qiang <songqiang1304521@gmail.com>
15927 L:      linux-iio@vger.kernel.org
15928 S:      Maintained
15929 F:      drivers/iio/proximity/vl53l0x-i2c.c
15930 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15931
15932 STABLE BRANCH
15933 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15934 M:      Sasha Levin <sashal@kernel.org>
15935 L:      stable@vger.kernel.org
15936 S:      Supported
15937 F:      Documentation/process/stable-kernel-rules.rst
15938
15939 STAGING - COMEDI
15940 M:      Ian Abbott <abbotti@mev.co.uk>
15941 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15942 S:      Odd Fixes
15943 F:      drivers/staging/comedi/
15944
15945 STAGING - FIELDBUS SUBSYSTEM
15946 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15947 S:      Maintained
15948 F:      drivers/staging/fieldbus/*
15949 F:      drivers/staging/fieldbus/Documentation/
15950
15951 STAGING - HMS ANYBUS-S BUS
15952 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15953 S:      Maintained
15954 F:      drivers/staging/fieldbus/anybuss/
15955
15956 STAGING - INDUSTRIAL IO
15957 M:      Jonathan Cameron <jic23@kernel.org>
15958 L:      linux-iio@vger.kernel.org
15959 S:      Odd Fixes
15960 F:      Documentation/devicetree/bindings/staging/iio/
15961 F:      drivers/staging/iio/
15962
15963 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15964 M:      Marc Dietrich <marvin24@gmx.de>
15965 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15966 L:      linux-tegra@vger.kernel.org
15967 S:      Maintained
15968 F:      drivers/staging/nvec/
15969
15970 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15971 M:      Jens Frederich <jfrederich@gmail.com>
15972 M:      Daniel Drake <dsd@laptop.org>
15973 M:      Jon Nettleton <jon.nettleton@gmail.com>
15974 W:      http://wiki.laptop.org/go/DCON
15975 S:      Maintained
15976 F:      drivers/staging/olpc_dcon/
15977
15978 STAGING - REALTEK RTL8712U DRIVERS
15979 M:      Larry Finger <Larry.Finger@lwfinger.net>
15980 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15981 S:      Odd Fixes
15982 F:      drivers/staging/rtl8712/
15983
15984 STAGING - REALTEK RTL8188EU DRIVERS
15985 M:      Larry Finger <Larry.Finger@lwfinger.net>
15986 S:      Odd Fixes
15987 F:      drivers/staging/rtl8188eu/
15988
15989 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15990 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15991 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15992 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15993 L:      linux-fbdev@vger.kernel.org
15994 S:      Maintained
15995 F:      drivers/staging/sm750fb/
15996
15997 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15998 M:      William Hubbs <w.d.hubbs@gmail.com>
15999 M:      Chris Brannon <chris@the-brannons.com>
16000 M:      Kirk Reiser <kirk@reisers.ca>
16001 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16002 L:      speakup@linux-speakup.org
16003 W:      http://www.linux-speakup.org/
16004 S:      Odd Fixes
16005 F:      drivers/staging/speakup/
16006
16007 STAGING - VIA VT665X DRIVERS
16008 M:      Forest Bond <forest@alittletooquiet.net>
16009 S:      Odd Fixes
16010 F:      drivers/staging/vt665?/
16011
16012 STAGING - WILC1000 WIFI DRIVER
16013 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16014 M:      Ajay Singh <ajay.kathat@microchip.com>
16015 L:      linux-wireless@vger.kernel.org
16016 S:      Supported
16017 F:      drivers/staging/wilc1000/
16018
16019 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16020 M:      Michael Hennerich <michael.hennerich@analog.com>
16021 M:      Beniamin Bia <beniamin.bia@analog.com>
16022 L:      linux-fbdev@vger.kernel.org
16023 S:      Supported
16024 F:      drivers/staging/fbtft/fb_seps525.c
16025 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16026
16027 STAGING SUBSYSTEM
16028 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16030 L:      devel@driverdev.osuosl.org
16031 S:      Supported
16032 F:      drivers/staging/
16033
16034 STARFIRE/DURALAN NETWORK DRIVER
16035 M:      Ion Badulescu <ionut@badula.org>
16036 S:      Odd Fixes
16037 F:      drivers/net/ethernet/adaptec/starfire*
16038
16039 STEC S1220 SKD DRIVER
16040 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16041 L:      linux-block@vger.kernel.org
16042 S:      Maintained
16043 F:      drivers/block/skd*[ch]
16044
16045 STI AUDIO (ASoC) DRIVERS
16046 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16047 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16048 S:      Maintained
16049 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16050 F:      sound/soc/sti/
16051
16052 STI CEC DRIVER
16053 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16054 S:      Maintained
16055 F:      drivers/media/platform/sti/cec/
16056 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16057
16058 STK1160 USB VIDEO CAPTURE DRIVER
16059 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16060 L:      linux-media@vger.kernel.org
16061 T:      git git://linuxtv.org/media_tree.git
16062 S:      Maintained
16063 F:      drivers/media/usb/stk1160/
16064
16065 STM32 AUDIO (ASoC) DRIVERS
16066 M:      Olivier Moysan <olivier.moysan@st.com>
16067 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16069 S:      Maintained
16070 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16071 F:      sound/soc/stm/
16072
16073 STM32 TIMER/LPTIMER DRIVERS
16074 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16075 S:      Maintained
16076 F:      drivers/*/stm32-*timer*
16077 F:      drivers/pwm/pwm-stm32*
16078 F:      include/linux/*/stm32-*tim*
16079 F:      Documentation/ABI/testing/*timer-stm32
16080 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16081
16082 STMMAC ETHERNET DRIVER
16083 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16084 M:      Alexandre Torgue <alexandre.torgue@st.com>
16085 M:      Jose Abreu <joabreu@synopsys.com>
16086 L:      netdev@vger.kernel.org
16087 W:      http://www.stlinux.com
16088 S:      Supported
16089 F:      Documentation/networking/device_drivers/stmicro/
16090 F:      drivers/net/ethernet/stmicro/stmmac/
16091
16092 EXTRA BOOT CONFIG
16093 M:      Masami Hiramatsu <mhiramat@kernel.org>
16094 S:      Maintained
16095 F:      lib/bootconfig.c
16096 F:      fs/proc/bootconfig.c
16097 F:      include/linux/bootconfig.h
16098 F:      tools/bootconfig/*
16099 F:      Documentation/admin-guide/bootconfig.rst
16100
16101 SUN3/3X
16102 M:      Sam Creasey <sammy@sammy.net>
16103 W:      http://sammy.net/sun3/
16104 S:      Maintained
16105 F:      arch/m68k/kernel/*sun3*
16106 F:      arch/m68k/sun3*/
16107 F:      arch/m68k/include/asm/sun3*
16108 F:      drivers/net/ethernet/i825xx/sun3*
16109
16110 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16111 M:      Hans de Goede <hdegoede@redhat.com>
16112 L:      linux-input@vger.kernel.org
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16115 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16116
16117 SUNDANCE NETWORK DRIVER
16118 M:      Denis Kirjanov <kda@linux-powerpc.org>
16119 L:      netdev@vger.kernel.org
16120 S:      Maintained
16121 F:      drivers/net/ethernet/dlink/sundance.c
16122
16123 SUPERH
16124 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16125 M:      Rich Felker <dalias@libc.org>
16126 L:      linux-sh@vger.kernel.org
16127 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16128 S:      Maintained
16129 F:      Documentation/sh/
16130 F:      arch/sh/
16131 F:      drivers/sh/
16132
16133 SUSPEND TO RAM
16134 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16135 M:      Len Brown <len.brown@intel.com>
16136 M:      Pavel Machek <pavel@ucw.cz>
16137 L:      linux-pm@vger.kernel.org
16138 B:      https://bugzilla.kernel.org
16139 S:      Supported
16140 F:      Documentation/power/
16141 F:      arch/x86/kernel/acpi/
16142 F:      drivers/base/power/
16143 F:      kernel/power/
16144 F:      include/linux/suspend.h
16145 F:      include/linux/freezer.h
16146 F:      include/linux/pm.h
16147
16148 SVGA HANDLING
16149 M:      Martin Mares <mj@ucw.cz>
16150 L:      linux-video@atrey.karlin.mff.cuni.cz
16151 S:      Maintained
16152 F:      Documentation/admin-guide/svga.rst
16153 F:      arch/x86/boot/video*
16154
16155 SWIOTLB SUBSYSTEM
16156 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16157 L:      iommu@lists.linux-foundation.org
16158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16159 S:      Supported
16160 F:      kernel/dma/swiotlb.c
16161 F:      arch/*/kernel/pci-swiotlb.c
16162 F:      include/linux/swiotlb.h
16163
16164 SWITCHDEV
16165 M:      Jiri Pirko <jiri@resnulli.us>
16166 M:      Ivan Vecera <ivecera@redhat.com>
16167 L:      netdev@vger.kernel.org
16168 S:      Supported
16169 F:      net/switchdev/
16170 F:      include/net/switchdev.h
16171
16172 SY8106A REGULATOR DRIVER
16173 M:      Icenowy Zheng <icenowy@aosc.io>
16174 S:      Maintained
16175 F:      drivers/regulator/sy8106a-regulator.c
16176 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16177
16178 SYNC FILE FRAMEWORK
16179 M:      Sumit Semwal <sumit.semwal@linaro.org>
16180 R:      Gustavo Padovan <gustavo@padovan.org>
16181 S:      Maintained
16182 L:      linux-media@vger.kernel.org
16183 L:      dri-devel@lists.freedesktop.org
16184 F:      drivers/dma-buf/sync_*
16185 F:      drivers/dma-buf/dma-fence*
16186 F:      drivers/dma-buf/sw_sync.c
16187 F:      include/linux/sync_file.h
16188 F:      include/uapi/linux/sync_file.h
16189 F:      Documentation/driver-api/sync_file.rst
16190 T:      git git://anongit.freedesktop.org/drm/drm-misc
16191
16192 SYNOPSYS ARC ARCHITECTURE
16193 M:      Vineet Gupta <vgupta@synopsys.com>
16194 L:      linux-snps-arc@lists.infradead.org
16195 S:      Supported
16196 F:      arch/arc/
16197 F:      Documentation/devicetree/bindings/arc/*
16198 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16199 F:      drivers/clocksource/arc_timer.c
16200 F:      drivers/tty/serial/arc_uart.c
16201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16202
16203 SYNOPSYS ARC HSDK SDP pll clock driver
16204 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16205 S:      Supported
16206 F:      drivers/clk/clk-hsdk-pll.c
16207 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16208
16209 SYNOPSYS ARC SDP clock driver
16210 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16211 S:      Supported
16212 F:      drivers/clk/axs10x/*
16213 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16214
16215 SYNOPSYS ARC SDP platform support
16216 M:      Alexey Brodkin <abrodkin@synopsys.com>
16217 S:      Supported
16218 F:      arch/arc/plat-axs10x
16219 F:      arch/arc/boot/dts/ax*
16220 F:      Documentation/devicetree/bindings/arc/axs10*
16221
16222 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16223 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16224 S:      Supported
16225 F:      drivers/reset/reset-axs10x.c
16226 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16227
16228 SYNOPSYS CREG GPIO DRIVER
16229 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16230 S:      Maintained
16231 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16232 F:      drivers/gpio/gpio-creg-snps.c
16233
16234 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16235 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16236 S:      Maintained
16237 F:      drivers/tty/serial/8250/8250_dw.c
16238 F:      drivers/tty/serial/8250/8250_dwlib.*
16239 F:      drivers/tty/serial/8250/8250_lpss.c
16240
16241 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16242 M:      Hoan Tran <hoan@os.amperecomputing.com>
16243 L:      linux-gpio@vger.kernel.org
16244 S:      Maintained
16245 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16246 F:      drivers/gpio/gpio-dwapb.c
16247
16248 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16249 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16250 S:      Maintained
16251 F:      drivers/dma/dw-axi-dmac/
16252 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16253
16254 SYNOPSYS DESIGNWARE DMAC DRIVER
16255 M:      Viresh Kumar <vireshk@kernel.org>
16256 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16257 S:      Maintained
16258 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16259 F:      drivers/dma/dw/
16260 F:      include/dt-bindings/dma/dw-dmac.h
16261 F:      include/linux/dma/dw.h
16262 F:      include/linux/platform_data/dma-dw.h
16263
16264 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16265 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16266 L:      netdev@vger.kernel.org
16267 S:      Supported
16268 F:      drivers/net/ethernet/synopsys/
16269
16270 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16271 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16272 L:      netdev@vger.kernel.org
16273 S:      Supported
16274 F:      drivers/net/phy/mdio-xpcs.c
16275 F:      include/linux/mdio-xpcs.h
16276
16277 SYNOPSYS DESIGNWARE I2C DRIVER
16278 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16279 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16280 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16281 L:      linux-i2c@vger.kernel.org
16282 S:      Maintained
16283 F:      drivers/i2c/busses/i2c-designware-*
16284 F:      include/linux/platform_data/i2c-designware.h
16285
16286 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16287 M:      Jaehoon Chung <jh80.chung@samsung.com>
16288 L:      linux-mmc@vger.kernel.org
16289 S:      Maintained
16290 F:      drivers/mmc/host/dw_mmc*
16291
16292 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16293 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16294 S:      Supported
16295 F:      drivers/reset/reset-hsdk.c
16296 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16297 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16298
16299 SYSTEM CONFIGURATION (SYSCON)
16300 M:      Lee Jones <lee.jones@linaro.org>
16301 M:      Arnd Bergmann <arnd@arndb.de>
16302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16303 S:      Supported
16304 F:      drivers/mfd/syscon.c
16305
16306 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16307 M:      Sudeep Holla <sudeep.holla@arm.com>
16308 L:      linux-arm-kernel@lists.infradead.org
16309 S:      Maintained
16310 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16311 F:      drivers/clk/clk-sc[mp]i.c
16312 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16313 F:      drivers/firmware/arm_scpi.c
16314 F:      drivers/firmware/arm_scmi/
16315 F:      drivers/reset/reset-scmi.c
16316 F:      include/linux/sc[mp]i_protocol.h
16317 F:      include/trace/events/scmi.h
16318
16319 SYSTEM RESET/SHUTDOWN DRIVERS
16320 M:      Sebastian Reichel <sre@kernel.org>
16321 L:      linux-pm@vger.kernel.org
16322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16323 S:      Maintained
16324 F:      Documentation/devicetree/bindings/power/reset/
16325 F:      drivers/power/reset/
16326
16327 SYSTEM TRACE MODULE CLASS
16328 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16329 S:      Maintained
16330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16331 F:      Documentation/trace/stm.rst
16332 F:      drivers/hwtracing/stm/
16333 F:      include/linux/stm.h
16334 F:      include/uapi/linux/stm.h
16335
16336 SYSTEM76 ACPI DRIVER
16337 M:      Jeremy Soller <jeremy@system76.com>
16338 M:      System76 Product Development <productdev@system76.com>
16339 L:      platform-driver-x86@vger.kernel.org
16340 S:      Maintained
16341 F:      drivers/platform/x86/system76_acpi.c
16342
16343 SYSV FILESYSTEM
16344 M:      Christoph Hellwig <hch@infradead.org>
16345 S:      Maintained
16346 F:      Documentation/filesystems/sysv-fs.rst
16347 F:      fs/sysv/
16348 F:      include/linux/sysv_fs.h
16349
16350 TASKSTATS STATISTICS INTERFACE
16351 M:      Balbir Singh <bsingharora@gmail.com>
16352 S:      Maintained
16353 F:      Documentation/accounting/taskstats*
16354 F:      include/linux/taskstats*
16355 F:      kernel/taskstats.c
16356
16357 TC subsystem
16358 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16359 M:      Cong Wang <xiyou.wangcong@gmail.com>
16360 M:      Jiri Pirko <jiri@resnulli.us>
16361 L:      netdev@vger.kernel.org
16362 S:      Maintained
16363 F:      include/net/pkt_cls.h
16364 F:      include/net/pkt_sched.h
16365 F:      include/net/tc_act/
16366 F:      include/uapi/linux/pkt_cls.h
16367 F:      include/uapi/linux/pkt_sched.h
16368 F:      include/uapi/linux/tc_act/
16369 F:      include/uapi/linux/tc_ematch/
16370 F:      net/sched/
16371
16372 TC90522 MEDIA DRIVER
16373 M:      Akihiro Tsukada <tskd08@gmail.com>
16374 L:      linux-media@vger.kernel.org
16375 S:      Odd Fixes
16376 F:      drivers/media/dvb-frontends/tc90522*
16377
16378 TCP LOW PRIORITY MODULE
16379 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16380 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16381 W:      http://tcp-lp-mod.sourceforge.net/
16382 S:      Maintained
16383 F:      net/ipv4/tcp_lp.c
16384
16385 TDA10071 MEDIA DRIVER
16386 M:      Antti Palosaari <crope@iki.fi>
16387 L:      linux-media@vger.kernel.org
16388 W:      https://linuxtv.org
16389 W:      http://palosaari.fi/linux/
16390 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16391 T:      git git://linuxtv.org/anttip/media_tree.git
16392 S:      Maintained
16393 F:      drivers/media/dvb-frontends/tda10071*
16394
16395 TDA18212 MEDIA DRIVER
16396 M:      Antti Palosaari <crope@iki.fi>
16397 L:      linux-media@vger.kernel.org
16398 W:      https://linuxtv.org
16399 W:      http://palosaari.fi/linux/
16400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16401 T:      git git://linuxtv.org/anttip/media_tree.git
16402 S:      Maintained
16403 F:      drivers/media/tuners/tda18212*
16404
16405 TDA18218 MEDIA DRIVER
16406 M:      Antti Palosaari <crope@iki.fi>
16407 L:      linux-media@vger.kernel.org
16408 W:      https://linuxtv.org
16409 W:      http://palosaari.fi/linux/
16410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16411 T:      git git://linuxtv.org/anttip/media_tree.git
16412 S:      Maintained
16413 F:      drivers/media/tuners/tda18218*
16414
16415 TDA18250 MEDIA DRIVER
16416 M:      Olli Salonen <olli.salonen@iki.fi>
16417 L:      linux-media@vger.kernel.org
16418 W:      https://linuxtv.org
16419 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16420 T:      git git://linuxtv.org/media_tree.git
16421 S:      Maintained
16422 F:      drivers/media/tuners/tda18250*
16423
16424 TDA18271 MEDIA DRIVER
16425 M:      Michael Krufky <mkrufky@linuxtv.org>
16426 L:      linux-media@vger.kernel.org
16427 W:      https://linuxtv.org
16428 W:      http://github.com/mkrufky
16429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16430 T:      git git://linuxtv.org/mkrufky/tuners.git
16431 S:      Maintained
16432 F:      drivers/media/tuners/tda18271*
16433
16434 TDA1997x MEDIA DRIVER
16435 M:      Tim Harvey <tharvey@gateworks.com>
16436 L:      linux-media@vger.kernel.org
16437 W:      https://linuxtv.org
16438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16439 S:      Maintained
16440 F:      drivers/media/i2c/tda1997x.*
16441
16442 TDA827x MEDIA DRIVER
16443 M:      Michael Krufky <mkrufky@linuxtv.org>
16444 L:      linux-media@vger.kernel.org
16445 W:      https://linuxtv.org
16446 W:      http://github.com/mkrufky
16447 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16448 T:      git git://linuxtv.org/mkrufky/tuners.git
16449 S:      Maintained
16450 F:      drivers/media/tuners/tda8290.*
16451
16452 TDA8290 MEDIA DRIVER
16453 M:      Michael Krufky <mkrufky@linuxtv.org>
16454 L:      linux-media@vger.kernel.org
16455 W:      https://linuxtv.org
16456 W:      http://github.com/mkrufky
16457 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16458 T:      git git://linuxtv.org/mkrufky/tuners.git
16459 S:      Maintained
16460 F:      drivers/media/tuners/tda8290.*
16461
16462 TDA9840 MEDIA DRIVER
16463 M:      Hans Verkuil <hverkuil@xs4all.nl>
16464 L:      linux-media@vger.kernel.org
16465 T:      git git://linuxtv.org/media_tree.git
16466 W:      https://linuxtv.org
16467 S:      Maintained
16468 F:      drivers/media/i2c/tda9840*
16469
16470 TEA5761 TUNER DRIVER
16471 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16472 L:      linux-media@vger.kernel.org
16473 W:      https://linuxtv.org
16474 T:      git git://linuxtv.org/media_tree.git
16475 S:      Odd fixes
16476 F:      drivers/media/tuners/tea5761.*
16477
16478 TEA5767 TUNER DRIVER
16479 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16480 L:      linux-media@vger.kernel.org
16481 W:      https://linuxtv.org
16482 T:      git git://linuxtv.org/media_tree.git
16483 S:      Maintained
16484 F:      drivers/media/tuners/tea5767.*
16485
16486 TEA6415C MEDIA DRIVER
16487 M:      Hans Verkuil <hverkuil@xs4all.nl>
16488 L:      linux-media@vger.kernel.org
16489 T:      git git://linuxtv.org/media_tree.git
16490 W:      https://linuxtv.org
16491 S:      Maintained
16492 F:      drivers/media/i2c/tea6415c*
16493
16494 TEA6420 MEDIA DRIVER
16495 M:      Hans Verkuil <hverkuil@xs4all.nl>
16496 L:      linux-media@vger.kernel.org
16497 T:      git git://linuxtv.org/media_tree.git
16498 W:      https://linuxtv.org
16499 S:      Maintained
16500 F:      drivers/media/i2c/tea6420*
16501
16502 TEAM DRIVER
16503 M:      Jiri Pirko <jiri@resnulli.us>
16504 L:      netdev@vger.kernel.org
16505 S:      Supported
16506 F:      drivers/net/team/
16507 F:      include/linux/if_team.h
16508 F:      include/uapi/linux/if_team.h
16509
16510 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16511 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16512 S:      Maintained
16513 F:      arch/x86/platform/ts5500/
16514
16515 TECHNOTREND USB IR RECEIVER
16516 M:      Sean Young <sean@mess.org>
16517 L:      linux-media@vger.kernel.org
16518 S:      Maintained
16519 F:      drivers/media/rc/ttusbir.c
16520
16521 TECHWELL TW9910 VIDEO DECODER
16522 L:      linux-media@vger.kernel.org
16523 S:      Orphan
16524 F:      drivers/media/i2c/tw9910.c
16525 F:      include/media/i2c/tw9910.h
16526
16527 TEE SUBSYSTEM
16528 M:      Jens Wiklander <jens.wiklander@linaro.org>
16529 L:      tee-dev@lists.linaro.org
16530 S:      Maintained
16531 F:      include/linux/tee_drv.h
16532 F:      include/uapi/linux/tee.h
16533 F:      drivers/tee/
16534 F:      Documentation/tee.txt
16535
16536 TEGRA ARCHITECTURE SUPPORT
16537 M:      Thierry Reding <thierry.reding@gmail.com>
16538 M:      Jonathan Hunter <jonathanh@nvidia.com>
16539 L:      linux-tegra@vger.kernel.org
16540 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16542 S:      Supported
16543 N:      [^a-z]tegra
16544
16545 TEGRA CLOCK DRIVER
16546 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16547 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16548 S:      Supported
16549 F:      drivers/clk/tegra/
16550
16551 TEGRA DMA DRIVERS
16552 M:      Laxman Dewangan <ldewangan@nvidia.com>
16553 M:      Jon Hunter <jonathanh@nvidia.com>
16554 S:      Supported
16555 F:      drivers/dma/tegra*
16556
16557 TEGRA I2C DRIVER
16558 M:      Laxman Dewangan <ldewangan@nvidia.com>
16559 R:      Dmitry Osipenko <digetx@gmail.com>
16560 S:      Supported
16561 F:      drivers/i2c/busses/i2c-tegra.c
16562
16563 TEGRA IOMMU DRIVERS
16564 M:      Thierry Reding <thierry.reding@gmail.com>
16565 L:      linux-tegra@vger.kernel.org
16566 S:      Supported
16567 F:      drivers/iommu/tegra*
16568
16569 TEGRA KBC DRIVER
16570 M:      Laxman Dewangan <ldewangan@nvidia.com>
16571 S:      Supported
16572 F:      drivers/input/keyboard/tegra-kbc.c
16573
16574 TEGRA NAND DRIVER
16575 M:      Stefan Agner <stefan@agner.ch>
16576 M:      Lucas Stach <dev@lynxeye.de>
16577 S:      Maintained
16578 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16579 F:      drivers/mtd/nand/raw/tegra_nand.c
16580
16581 TEGRA PWM DRIVER
16582 M:      Thierry Reding <thierry.reding@gmail.com>
16583 S:      Supported
16584 F:      drivers/pwm/pwm-tegra.c
16585
16586 TEGRA SERIAL DRIVER
16587 M:      Laxman Dewangan <ldewangan@nvidia.com>
16588 S:      Supported
16589 F:      drivers/tty/serial/serial-tegra.c
16590
16591 TEGRA SPI DRIVER
16592 M:      Laxman Dewangan <ldewangan@nvidia.com>
16593 S:      Supported
16594 F:      drivers/spi/spi-tegra*
16595
16596 TEGRA XUSB PADCTL DRIVER
16597 M:      JC Kuo <jckuo@nvidia.com>
16598 S:      Supported
16599 F:      drivers/phy/tegra/xusb*
16600
16601 TEHUTI ETHERNET DRIVER
16602 M:      Andy Gospodarek <andy@greyhouse.net>
16603 L:      netdev@vger.kernel.org
16604 S:      Supported
16605 F:      drivers/net/ethernet/tehuti/*
16606
16607 Telecom Clock Driver for MCPL0010
16608 M:      Mark Gross <mark.gross@intel.com>
16609 S:      Supported
16610 F:      drivers/char/tlclk.c
16611
16612 TENSILICA XTENSA PORT (xtensa)
16613 M:      Chris Zankel <chris@zankel.net>
16614 M:      Max Filippov <jcmvbkbc@gmail.com>
16615 L:      linux-xtensa@linux-xtensa.org
16616 T:      git git://github.com/czankel/xtensa-linux.git
16617 S:      Maintained
16618 F:      arch/xtensa/
16619 F:      drivers/irqchip/irq-xtensa-*
16620
16621 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16622 M:      Nishanth Menon <nm@ti.com>
16623 M:      Tero Kristo <t-kristo@ti.com>
16624 M:      Santosh Shilimkar <ssantosh@kernel.org>
16625 L:      linux-arm-kernel@lists.infradead.org
16626 S:      Maintained
16627 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16628 F:      drivers/firmware/ti_sci*
16629 F:      include/linux/soc/ti/ti_sci_protocol.h
16630 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16631 F:      drivers/soc/ti/ti_sci_pm_domains.c
16632 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16633 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16634 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16635 F:      drivers/clk/keystone/sci-clk.c
16636 F:      drivers/reset/reset-ti-sci.c
16637 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16638 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16639 F:      drivers/irqchip/irq-ti-sci-intr.c
16640 F:      drivers/irqchip/irq-ti-sci-inta.c
16641 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16642 F:      drivers/soc/ti/ti_sci_inta_msi.c
16643
16644 Texas Instruments ASoC drivers
16645 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16646 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16647 S:      Maintained
16648 F:      sound/soc/ti/
16649
16650 Texas Instruments' DAC7612 DAC Driver
16651 M:      Ricardo Ribalda <ricardo@ribalda.com>
16652 L:      linux-iio@vger.kernel.org
16653 S:      Supported
16654 F:      drivers/iio/dac/ti-dac7612.c
16655 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16656
16657 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16658 M:      Hans Verkuil <hverkuil@xs4all.nl>
16659 L:      linux-media@vger.kernel.org
16660 T:      git git://linuxtv.org/media_tree.git
16661 W:      https://linuxtv.org
16662 S:      Maintained
16663 F:      drivers/media/radio/radio-raremono.c
16664
16665 THERMAL
16666 M:      Zhang Rui <rui.zhang@intel.com>
16667 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16668 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16669 L:      linux-pm@vger.kernel.org
16670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16671 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16672 S:      Supported
16673 F:      drivers/thermal/
16674 F:      include/linux/thermal.h
16675 F:      include/uapi/linux/thermal.h
16676 F:      include/linux/cpu_cooling.h
16677 F:      Documentation/devicetree/bindings/thermal/
16678
16679 THERMAL/CPU_COOLING
16680 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16681 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16682 M:      Viresh Kumar <viresh.kumar@linaro.org>
16683 M:      Javi Merino <javi.merino@kernel.org>
16684 L:      linux-pm@vger.kernel.org
16685 S:      Supported
16686 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16687 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16688 F:      drivers/thermal/cpufreq_cooling.c
16689 F:      drivers/thermal/cpuidle_cooling.c
16690 F:      include/linux/cpu_cooling.h
16691
16692 THERMAL DRIVER FOR AMLOGIC SOCS
16693 M:      Guillaume La Roque <glaroque@baylibre.com>
16694 L:      linux-pm@vger.kernel.org
16695 L:      linux-amlogic@lists.infradead.org
16696 W:      http://linux-meson.com/
16697 S:      Supported
16698 F:      drivers/thermal/amlogic_thermal.c
16699 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16700
16701 THINKPAD ACPI EXTRAS DRIVER
16702 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16703 L:      ibm-acpi-devel@lists.sourceforge.net
16704 L:      platform-driver-x86@vger.kernel.org
16705 S:      Maintained
16706 W:      http://ibm-acpi.sourceforge.net
16707 W:      http://thinkwiki.org/wiki/Ibm-acpi
16708 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16709 F:      drivers/platform/x86/thinkpad_acpi.c
16710
16711 THUNDERBOLT DRIVER
16712 M:      Andreas Noever <andreas.noever@gmail.com>
16713 M:      Michael Jamet <michael.jamet@intel.com>
16714 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16715 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16716 L:      linux-usb@vger.kernel.org
16717 S:      Maintained
16718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16719 F:      Documentation/admin-guide/thunderbolt.rst
16720 F:      drivers/thunderbolt/
16721 F:      include/linux/thunderbolt.h
16722
16723 THUNDERBOLT NETWORK DRIVER
16724 M:      Michael Jamet <michael.jamet@intel.com>
16725 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16726 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16727 L:      netdev@vger.kernel.org
16728 S:      Maintained
16729 F:      drivers/net/thunderbolt.c
16730
16731 THUNDERX GPIO DRIVER
16732 M:      Robert Richter <rrichter@marvell.com>
16733 S:      Maintained
16734 F:      drivers/gpio/gpio-thunderx.c
16735
16736 TI AM437X VPFE DRIVER
16737 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16738 L:      linux-media@vger.kernel.org
16739 W:      https://linuxtv.org
16740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16741 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16742 S:      Maintained
16743 F:      drivers/media/platform/am437x/
16744
16745 TI BANDGAP AND THERMAL DRIVER
16746 M:      Eduardo Valentin <edubezval@gmail.com>
16747 M:      Keerthy <j-keerthy@ti.com>
16748 L:      linux-pm@vger.kernel.org
16749 L:      linux-omap@vger.kernel.org
16750 S:      Maintained
16751 F:      drivers/thermal/ti-soc-thermal/
16752
16753 TI BQ27XXX POWER SUPPLY DRIVER
16754 R:      Andrew F. Davis <afd@ti.com>
16755 F:      include/linux/power/bq27xxx_battery.h
16756 F:      drivers/power/supply/bq27xxx_battery.c
16757 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16758
16759 TI CDCE706 CLOCK DRIVER
16760 M:      Max Filippov <jcmvbkbc@gmail.com>
16761 S:      Maintained
16762 F:      drivers/clk/clk-cdce706.c
16763
16764 TI CLOCK DRIVER
16765 M:      Tero Kristo <t-kristo@ti.com>
16766 L:      linux-omap@vger.kernel.org
16767 S:      Maintained
16768 F:      drivers/clk/ti/
16769 F:      include/linux/clk/ti.h
16770
16771 TI DAVINCI MACHINE SUPPORT
16772 M:      Sekhar Nori <nsekhar@ti.com>
16773 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16776 S:      Supported
16777 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16778 F:      arch/arm/mach-davinci/
16779 F:      drivers/i2c/busses/i2c-davinci.c
16780 F:      arch/arm/boot/dts/da850*
16781
16782 TI DAVINCI SERIES CLOCK DRIVER
16783 M:      David Lechner <david@lechnology.com>
16784 R:      Sekhar Nori <nsekhar@ti.com>
16785 S:      Maintained
16786 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16787 F:      drivers/clk/davinci/
16788
16789 TI DAVINCI SERIES GPIO DRIVER
16790 M:      Keerthy <j-keerthy@ti.com>
16791 L:      linux-gpio@vger.kernel.org
16792 S:      Maintained
16793 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16794 F:      drivers/gpio/gpio-davinci.c
16795
16796 TI DAVINCI SERIES MEDIA DRIVER
16797 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16798 L:      linux-media@vger.kernel.org
16799 W:      https://linuxtv.org
16800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16801 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16802 S:      Maintained
16803 F:      drivers/media/platform/davinci/
16804 F:      include/media/davinci/
16805
16806 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16807 R:      David Lechner <david@lechnology.com>
16808 L:      linux-iio@vger.kernel.org
16809 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16810 F:      drivers/counter/ti-eqep.c
16811
16812 TI ETHERNET SWITCH DRIVER (CPSW)
16813 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16814 L:      linux-omap@vger.kernel.org
16815 L:      netdev@vger.kernel.org
16816 S:      Maintained
16817 F:      drivers/net/ethernet/ti/cpsw*
16818 F:      drivers/net/ethernet/ti/davinci*
16819
16820 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16821 M:      Alex Dubov <oakad@yahoo.com>
16822 S:      Maintained
16823 W:      http://tifmxx.berlios.de/
16824 F:      drivers/memstick/host/tifm_ms.c
16825 F:      drivers/misc/tifm*
16826 F:      drivers/mmc/host/tifm_sd.c
16827 F:      include/linux/tifm.h
16828
16829 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16830 M:      Santosh Shilimkar <ssantosh@kernel.org>
16831 L:      linux-kernel@vger.kernel.org
16832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16833 S:      Maintained
16834 F:      drivers/soc/ti/*
16835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16836
16837 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16838 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16839 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16840 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16841 S:      Maintained
16842 F:      sound/soc/codecs/lm49453*
16843 F:      sound/soc/codecs/isabelle*
16844
16845 TI LP855x BACKLIGHT DRIVER
16846 M:      Milo Kim <milo.kim@ti.com>
16847 S:      Maintained
16848 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16849 F:      drivers/video/backlight/lp855x_bl.c
16850 F:      include/linux/platform_data/lp855x.h
16851
16852 TI LP8727 CHARGER DRIVER
16853 M:      Milo Kim <milo.kim@ti.com>
16854 S:      Maintained
16855 F:      drivers/power/supply/lp8727_charger.c
16856 F:      include/linux/platform_data/lp8727.h
16857
16858 TI LP8788 MFD DRIVER
16859 M:      Milo Kim <milo.kim@ti.com>
16860 S:      Maintained
16861 F:      drivers/iio/adc/lp8788_adc.c
16862 F:      drivers/leds/leds-lp8788.c
16863 F:      drivers/mfd/lp8788*.c
16864 F:      drivers/power/supply/lp8788-charger.c
16865 F:      drivers/regulator/lp8788-*.c
16866 F:      include/linux/mfd/lp8788*.h
16867
16868 TI NETCP ETHERNET DRIVER
16869 M:      Wingman Kwok <w-kwok2@ti.com>
16870 M:      Murali Karicheri <m-karicheri2@ti.com>
16871 L:      netdev@vger.kernel.org
16872 S:      Maintained
16873 F:      drivers/net/ethernet/ti/netcp*
16874
16875 TI PCM3060 ASoC CODEC DRIVER
16876 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16877 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16878 S:      Maintained
16879 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16880 F:      sound/soc/codecs/pcm3060*
16881
16882 TI TAS571X FAMILY ASoC CODEC DRIVER
16883 M:      Kevin Cernekee <cernekee@chromium.org>
16884 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16885 S:      Odd Fixes
16886 F:      sound/soc/codecs/tas571x*
16887
16888 TI TCAN4X5X DEVICE DRIVER
16889 M:      Dan Murphy <dmurphy@ti.com>
16890 L:      linux-can@vger.kernel.org
16891 S:      Maintained
16892 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16893 F:      drivers/net/can/m_can/tcan4x5x.c
16894
16895 TI TRF7970A NFC DRIVER
16896 M:      Mark Greer <mgreer@animalcreek.com>
16897 L:      linux-wireless@vger.kernel.org
16898 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16899 S:      Supported
16900 F:      drivers/nfc/trf7970a.c
16901 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16902
16903 TI TWL4030 SERIES SOC CODEC DRIVER
16904 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16905 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16906 S:      Maintained
16907 F:      sound/soc/codecs/twl4030*
16908
16909 TI VPE/CAL DRIVERS
16910 M:      Benoit Parrot <bparrot@ti.com>
16911 L:      linux-media@vger.kernel.org
16912 S:      Maintained
16913 W:      http://linuxtv.org/
16914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16915 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16916 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16917 F:      drivers/media/platform/ti-vpe/
16918
16919 TI WILINK WIRELESS DRIVERS
16920 L:      linux-wireless@vger.kernel.org
16921 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16922 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16924 S:      Orphan
16925 F:      drivers/net/wireless/ti/
16926 F:      include/linux/wl12xx.h
16927
16928 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16929 M:      John Stultz <john.stultz@linaro.org>
16930 M:      Thomas Gleixner <tglx@linutronix.de>
16931 R:      Stephen Boyd <sboyd@kernel.org>
16932 L:      linux-kernel@vger.kernel.org
16933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16934 S:      Supported
16935 F:      include/linux/clocksource.h
16936 F:      include/linux/time.h
16937 F:      include/linux/timex.h
16938 F:      include/uapi/linux/time.h
16939 F:      include/uapi/linux/timex.h
16940 F:      kernel/time/clocksource.c
16941 F:      kernel/time/time*.c
16942 F:      kernel/time/alarmtimer.c
16943 F:      kernel/time/ntp.c
16944 F:      tools/testing/selftests/timers/
16945
16946 TIPC NETWORK LAYER
16947 M:      Jon Maloy <jmaloy@redhat.com>
16948 M:      Ying Xue <ying.xue@windriver.com>
16949 L:      netdev@vger.kernel.org (core kernel code)
16950 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16951 W:      http://tipc.sourceforge.net/
16952 S:      Maintained
16953 F:      include/uapi/linux/tipc*.h
16954 F:      net/tipc/
16955
16956 TLAN NETWORK DRIVER
16957 M:      Samuel Chessman <chessman@tux.org>
16958 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16959 W:      http://sourceforge.net/projects/tlan/
16960 S:      Maintained
16961 F:      Documentation/networking/device_drivers/ti/tlan.txt
16962 F:      drivers/net/ethernet/ti/tlan.*
16963
16964 TM6000 VIDEO4LINUX DRIVER
16965 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16966 L:      linux-media@vger.kernel.org
16967 W:      https://linuxtv.org
16968 T:      git git://linuxtv.org/media_tree.git
16969 S:      Odd fixes
16970 F:      drivers/media/usb/tm6000/
16971 F:      Documentation/media/v4l-drivers/tm6000*
16972
16973 TMIO/SDHI MMC DRIVER
16974 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16975 L:      linux-mmc@vger.kernel.org
16976 S:      Supported
16977 F:      drivers/mmc/host/tmio_mmc*
16978 F:      drivers/mmc/host/renesas_sdhi*
16979 F:      include/linux/mfd/tmio.h
16980
16981 TMP401 HARDWARE MONITOR DRIVER
16982 M:      Guenter Roeck <linux@roeck-us.net>
16983 L:      linux-hwmon@vger.kernel.org
16984 S:      Maintained
16985 F:      Documentation/hwmon/tmp401.rst
16986 F:      drivers/hwmon/tmp401.c
16987
16988 TMP513 HARDWARE MONITOR DRIVER
16989 M:      Eric Tremblay <etremblay@distech-controls.com>
16990 L:      linux-hwmon@vger.kernel.org
16991 S:      Maintained
16992 F:      Documentation/hwmon/tmp513.rst
16993 F:      drivers/hwmon/tmp513.c
16994
16995 TMPFS (SHMEM FILESYSTEM)
16996 M:      Hugh Dickins <hughd@google.com>
16997 L:      linux-mm@kvack.org
16998 S:      Maintained
16999 F:      include/linux/shmem_fs.h
17000 F:      mm/shmem.c
17001
17002 TOMOYO SECURITY MODULE
17003 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17004 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17005 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17006 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17007 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17008 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17009 W:      https://tomoyo.osdn.jp/
17010 S:      Maintained
17011 F:      security/tomoyo/
17012
17013 TOPSTAR LAPTOP EXTRAS DRIVER
17014 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17015 L:      platform-driver-x86@vger.kernel.org
17016 S:      Maintained
17017 F:      drivers/platform/x86/topstar-laptop.c
17018
17019 TORTURE-TEST MODULES
17020 M:      Davidlohr Bueso <dave@stgolabs.net>
17021 M:      "Paul E. McKenney" <paulmck@kernel.org>
17022 M:      Josh Triplett <josh@joshtriplett.org>
17023 L:      linux-kernel@vger.kernel.org
17024 S:      Supported
17025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17026 F:      Documentation/RCU/torture.txt
17027 F:      kernel/torture.c
17028 F:      kernel/rcu/rcutorture.c
17029 F:      kernel/rcu/rcuperf.c
17030 F:      kernel/locking/locktorture.c
17031
17032 TOSHIBA ACPI EXTRAS DRIVER
17033 M:      Azael Avalos <coproscefalo@gmail.com>
17034 L:      platform-driver-x86@vger.kernel.org
17035 S:      Maintained
17036 F:      drivers/platform/x86/toshiba_acpi.c
17037
17038 TOSHIBA BLUETOOTH DRIVER
17039 M:      Azael Avalos <coproscefalo@gmail.com>
17040 L:      platform-driver-x86@vger.kernel.org
17041 S:      Maintained
17042 F:      drivers/platform/x86/toshiba_bluetooth.c
17043
17044 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17045 M:      Azael Avalos <coproscefalo@gmail.com>
17046 L:      platform-driver-x86@vger.kernel.org
17047 S:      Maintained
17048 F:      drivers/platform/x86/toshiba_haps.c
17049
17050 TOSHIBA SMM DRIVER
17051 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17052 W:      http://www.buzzard.org.uk/toshiba/
17053 S:      Maintained
17054 F:      drivers/char/toshiba.c
17055 F:      include/linux/toshiba.h
17056 F:      include/uapi/linux/toshiba.h
17057
17058 TOSHIBA TC358743 DRIVER
17059 M:      Mats Randgaard <matrandg@cisco.com>
17060 L:      linux-media@vger.kernel.org
17061 S:      Maintained
17062 F:      drivers/media/i2c/tc358743*
17063 F:      include/media/i2c/tc358743.h
17064
17065 TOSHIBA WMI HOTKEYS DRIVER
17066 M:      Azael Avalos <coproscefalo@gmail.com>
17067 L:      platform-driver-x86@vger.kernel.org
17068 S:      Maintained
17069 F:      drivers/platform/x86/toshiba-wmi.c
17070
17071 TPM DEVICE DRIVER
17072 M:      Peter Huewe <peterhuewe@gmx.de>
17073 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17074 R:      Jason Gunthorpe <jgg@ziepe.ca>
17075 L:      linux-integrity@vger.kernel.org
17076 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17077 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17078 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17079 S:      Maintained
17080 F:      drivers/char/tpm/
17081
17082 TRACING
17083 M:      Steven Rostedt <rostedt@goodmis.org>
17084 M:      Ingo Molnar <mingo@redhat.com>
17085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17086 S:      Maintained
17087 F:      Documentation/trace/ftrace.rst
17088 F:      arch/*/*/*/ftrace.h
17089 F:      arch/*/kernel/ftrace.c
17090 F:      include/*/ftrace.h
17091 F:      include/linux/trace*.h
17092 F:      include/trace/
17093 F:      kernel/trace/
17094 F:      tools/testing/selftests/ftrace/
17095
17096 TRACING MMIO ACCESSES (MMIOTRACE)
17097 M:      Steven Rostedt <rostedt@goodmis.org>
17098 M:      Ingo Molnar <mingo@kernel.org>
17099 R:      Karol Herbst <karolherbst@gmail.com>
17100 R:      Pekka Paalanen <ppaalanen@gmail.com>
17101 S:      Maintained
17102 L:      linux-kernel@vger.kernel.org
17103 L:      nouveau@lists.freedesktop.org
17104 F:      kernel/trace/trace_mmiotrace.c
17105 F:      include/linux/mmiotrace.h
17106 F:      arch/x86/mm/kmmio.c
17107 F:      arch/x86/mm/mmio-mod.c
17108 F:      arch/x86/mm/testmmiotrace.c
17109
17110 TRIVIAL PATCHES
17111 M:      Jiri Kosina <trivial@kernel.org>
17112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17113 S:      Maintained
17114 K:      ^Subject:.*(?i)trivial
17115
17116 TEMPO SEMICONDUCTOR DRIVERS
17117 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17118 S:      Maintained
17119 F:      sound/soc/codecs/tscs*.c
17120 F:      sound/soc/codecs/tscs*.h
17121 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17122
17123 TTY LAYER
17124 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17125 M:      Jiri Slaby <jslaby@suse.com>
17126 S:      Supported
17127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17128 F:      Documentation/driver-api/serial/
17129 F:      drivers/tty/
17130 F:      drivers/tty/serial/serial_core.c
17131 F:      include/linux/serial_core.h
17132 F:      include/linux/serial.h
17133 F:      include/linux/tty.h
17134 F:      include/uapi/linux/serial_core.h
17135 F:      include/uapi/linux/serial.h
17136 F:      include/uapi/linux/tty.h
17137
17138 TUA9001 MEDIA DRIVER
17139 M:      Antti Palosaari <crope@iki.fi>
17140 L:      linux-media@vger.kernel.org
17141 W:      https://linuxtv.org
17142 W:      http://palosaari.fi/linux/
17143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17144 T:      git git://linuxtv.org/anttip/media_tree.git
17145 S:      Maintained
17146 F:      drivers/media/tuners/tua9001*
17147
17148 TULIP NETWORK DRIVERS
17149 L:      netdev@vger.kernel.org
17150 L:      linux-parisc@vger.kernel.org
17151 S:      Orphan
17152 F:      drivers/net/ethernet/dec/tulip/
17153
17154 TUN/TAP driver
17155 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17156 W:      http://vtun.sourceforge.net/tun
17157 S:      Maintained
17158 F:      Documentation/networking/tuntap.txt
17159 F:      arch/um/os-Linux/drivers/
17160
17161 TURBOCHANNEL SUBSYSTEM
17162 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17163 M:      Ralf Baechle <ralf@linux-mips.org>
17164 L:      linux-mips@vger.kernel.org
17165 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17166 S:      Maintained
17167 F:      drivers/tc/
17168 F:      include/linux/tc.h
17169
17170 TURBOSTAT UTILITY
17171 M:      "Len Brown" <lenb@kernel.org>
17172 L:      linux-pm@vger.kernel.org
17173 B:      https://bugzilla.kernel.org
17174 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17176 S:      Supported
17177 F:      tools/power/x86/turbostat/
17178
17179 TW5864 VIDEO4LINUX DRIVER
17180 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17181 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17182 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17183 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17184 L:      linux-media@vger.kernel.org
17185 S:      Supported
17186 F:      drivers/media/pci/tw5864/
17187
17188 TW68 VIDEO4LINUX DRIVER
17189 M:      Hans Verkuil <hverkuil@xs4all.nl>
17190 L:      linux-media@vger.kernel.org
17191 T:      git git://linuxtv.org/media_tree.git
17192 W:      https://linuxtv.org
17193 S:      Odd Fixes
17194 F:      drivers/media/pci/tw68/
17195
17196 TW686X VIDEO4LINUX DRIVER
17197 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17198 L:      linux-media@vger.kernel.org
17199 T:      git git://linuxtv.org/media_tree.git
17200 W:      http://linuxtv.org
17201 S:      Maintained
17202 F:      drivers/media/pci/tw686x/
17203
17204 UACCE ACCELERATOR FRAMEWORK
17205 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17206 M:      Zhou Wang <wangzhou1@hisilicon.com>
17207 L:      linux-accelerators@lists.ozlabs.org
17208 L:      linux-kernel@vger.kernel.org
17209 S:      Maintained
17210 F:      Documentation/ABI/testing/sysfs-driver-uacce
17211 F:      Documentation/misc-devices/uacce.rst
17212 F:      drivers/misc/uacce/
17213 F:      include/linux/uacce.h
17214 F:      include/uapi/misc/uacce/
17215
17216 UBI FILE SYSTEM (UBIFS)
17217 M:      Richard Weinberger <richard@nod.at>
17218 L:      linux-mtd@lists.infradead.org
17219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17221 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17222 S:      Supported
17223 F:      Documentation/filesystems/ubifs.rst
17224 F:      fs/ubifs/
17225
17226 UCLINUX (M68KNOMMU AND COLDFIRE)
17227 M:      Greg Ungerer <gerg@linux-m68k.org>
17228 W:      http://www.linux-m68k.org/
17229 W:      http://www.uclinux.org/
17230 L:      linux-m68k@lists.linux-m68k.org
17231 L:      uclinux-dev@uclinux.org  (subscribers-only)
17232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17233 S:      Maintained
17234 F:      arch/m68k/coldfire/
17235 F:      arch/m68k/68*/
17236 F:      arch/m68k/*/*_no.*
17237 F:      arch/m68k/include/asm/*_no.*
17238
17239 UDF FILESYSTEM
17240 M:      Jan Kara <jack@suse.com>
17241 S:      Maintained
17242 F:      Documentation/filesystems/udf.rst
17243 F:      fs/udf/
17244
17245 UDRAW TABLET
17246 M:      Bastien Nocera <hadess@hadess.net>
17247 L:      linux-input@vger.kernel.org
17248 S:      Maintained
17249 F:      drivers/hid/hid-udraw-ps3.c
17250
17251 UFS FILESYSTEM
17252 M:      Evgeniy Dushistov <dushistov@mail.ru>
17253 S:      Maintained
17254 F:      Documentation/admin-guide/ufs.rst
17255 F:      fs/ufs/
17256
17257 UHID USERSPACE HID IO DRIVER
17258 M:      David Herrmann <dh.herrmann@googlemail.com>
17259 L:      linux-input@vger.kernel.org
17260 S:      Maintained
17261 F:      drivers/hid/uhid.c
17262 F:      include/uapi/linux/uhid.h
17263
17264 ULPI BUS
17265 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17266 L:      linux-usb@vger.kernel.org
17267 S:      Maintained
17268 F:      drivers/usb/common/ulpi.c
17269 F:      include/linux/ulpi/
17270
17271 UNICODE SUBSYSTEM
17272 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17273 L:      linux-fsdevel@vger.kernel.org
17274 S:      Supported
17275 F:      fs/unicode/
17276
17277 UNICORE32 ARCHITECTURE
17278 M:      Guan Xuetao <gxt@pku.edu.cn>
17279 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17280 S:      Maintained
17281 T:      git git://github.com/gxt/linux.git
17282 F:      arch/unicore32/
17283
17284 UNIFDEF
17285 M:      Tony Finch <dot@dotat.at>
17286 W:      http://dotat.at/prog/unifdef
17287 S:      Maintained
17288 F:      scripts/unifdef.c
17289
17290 UNIFORM CDROM DRIVER
17291 M:      Jens Axboe <axboe@kernel.dk>
17292 W:      http://www.kernel.dk
17293 S:      Maintained
17294 F:      Documentation/cdrom/
17295 F:      drivers/cdrom/cdrom.c
17296 F:      include/linux/cdrom.h
17297 F:      include/uapi/linux/cdrom.h
17298
17299 UNISYS S-PAR DRIVERS
17300 M:      David Kershner <david.kershner@unisys.com>
17301 L:      sparmaintainer@unisys.com (Unisys internal)
17302 S:      Supported
17303 F:      include/linux/visorbus.h
17304 F:      drivers/visorbus/
17305 F:      drivers/staging/unisys/
17306
17307 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17308 R:      Alim Akhtar <alim.akhtar@samsung.com>
17309 R:      Avri Altman <avri.altman@wdc.com>
17310 L:      linux-scsi@vger.kernel.org
17311 S:      Supported
17312 F:      Documentation/scsi/ufs.rst
17313 F:      drivers/scsi/ufs/
17314
17315 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17316 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17317 L:      linux-scsi@vger.kernel.org
17318 S:      Supported
17319 F:      drivers/scsi/ufs/*dwc*
17320
17321 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17322 M:      Stanley Chu <stanley.chu@mediatek.com>
17323 L:      linux-scsi@vger.kernel.org
17324 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17325 S:      Maintained
17326 F:      drivers/scsi/ufs/ufs-mediatek*
17327
17328 UNSORTED BLOCK IMAGES (UBI)
17329 M:      Richard Weinberger <richard@nod.at>
17330 W:      http://www.linux-mtd.infradead.org/
17331 L:      linux-mtd@lists.infradead.org
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17334 S:      Supported
17335 F:      drivers/mtd/ubi/
17336 F:      include/linux/mtd/ubi.h
17337 F:      include/uapi/mtd/ubi-user.h
17338
17339 USB "USBNET" DRIVER FRAMEWORK
17340 M:      Oliver Neukum <oneukum@suse.com>
17341 L:      netdev@vger.kernel.org
17342 W:      http://www.linux-usb.org/usbnet
17343 S:      Maintained
17344 F:      drivers/net/usb/usbnet.c
17345 F:      include/linux/usb/usbnet.h
17346
17347 USB ACM DRIVER
17348 M:      Oliver Neukum <oneukum@suse.com>
17349 L:      linux-usb@vger.kernel.org
17350 S:      Maintained
17351 F:      Documentation/usb/acm.rst
17352 F:      drivers/usb/class/cdc-acm.*
17353
17354 USB APPLE MFI FASTCHARGE DRIVER
17355 M:      Bastien Nocera <hadess@hadess.net>
17356 L:      linux-usb@vger.kernel.org
17357 S:      Maintained
17358 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17359
17360 USB AR5523 WIRELESS DRIVER
17361 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17362 L:      linux-wireless@vger.kernel.org
17363 S:      Maintained
17364 F:      drivers/net/wireless/ath/ar5523/
17365
17366 USB ATTACHED SCSI
17367 M:      Oliver Neukum <oneukum@suse.com>
17368 L:      linux-usb@vger.kernel.org
17369 L:      linux-scsi@vger.kernel.org
17370 S:      Maintained
17371 F:      drivers/usb/storage/uas.c
17372
17373 USB CDC ETHERNET DRIVER
17374 M:      Oliver Neukum <oliver@neukum.org>
17375 L:      linux-usb@vger.kernel.org
17376 S:      Maintained
17377 F:      drivers/net/usb/cdc_*.c
17378 F:      include/uapi/linux/usb/cdc.h
17379
17380 USB CHAOSKEY DRIVER
17381 M:      Keith Packard <keithp@keithp.com>
17382 L:      linux-usb@vger.kernel.org
17383 S:      Maintained
17384 F:      drivers/usb/misc/chaoskey.c
17385
17386 USB CYPRESS C67X00 DRIVER
17387 M:      Peter Korsgaard <jacmet@sunsite.dk>
17388 L:      linux-usb@vger.kernel.org
17389 S:      Maintained
17390 F:      drivers/usb/c67x00/
17391
17392 USB DAVICOM DM9601 DRIVER
17393 M:      Peter Korsgaard <jacmet@sunsite.dk>
17394 L:      netdev@vger.kernel.org
17395 W:      http://www.linux-usb.org/usbnet
17396 S:      Maintained
17397 F:      drivers/net/usb/dm9601.c
17398
17399 USB EHCI DRIVER
17400 M:      Alan Stern <stern@rowland.harvard.edu>
17401 L:      linux-usb@vger.kernel.org
17402 S:      Maintained
17403 F:      Documentation/usb/ehci.rst
17404 F:      drivers/usb/host/ehci*
17405
17406 USB GADGET/PERIPHERAL SUBSYSTEM
17407 M:      Felipe Balbi <balbi@kernel.org>
17408 L:      linux-usb@vger.kernel.org
17409 W:      http://www.linux-usb.org/gadget
17410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17411 S:      Maintained
17412 F:      drivers/usb/gadget/
17413 F:      include/linux/usb/gadget*
17414
17415 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17416 M:      Jiri Kosina <jikos@kernel.org>
17417 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17418 L:      linux-usb@vger.kernel.org
17419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17420 S:      Maintained
17421 F:      Documentation/hid/hiddev.rst
17422 F:      drivers/hid/usbhid/
17423
17424 USB INTEL XHCI ROLE MUX DRIVER
17425 M:      Hans de Goede <hdegoede@redhat.com>
17426 L:      linux-usb@vger.kernel.org
17427 S:      Maintained
17428 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17429
17430 USB IP DRIVER FOR HISILICON KIRIN
17431 M:      Yu Chen <chenyu56@huawei.com>
17432 M:      Binghui Wang <wangbinghui@hisilicon.com>
17433 L:      linux-usb@vger.kernel.org
17434 S:      Maintained
17435 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17436 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17437
17438 USB ISP116X DRIVER
17439 M:      Olav Kongas <ok@artecdesign.ee>
17440 L:      linux-usb@vger.kernel.org
17441 S:      Maintained
17442 F:      drivers/usb/host/isp116x*
17443 F:      include/linux/usb/isp116x.h
17444
17445 USB LAN78XX ETHERNET DRIVER
17446 M:      Woojung Huh <woojung.huh@microchip.com>
17447 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17448 L:      netdev@vger.kernel.org
17449 S:      Maintained
17450 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17451 F:      drivers/net/usb/lan78xx.*
17452 F:      include/dt-bindings/net/microchip-lan78xx.h
17453
17454 USB MASS STORAGE DRIVER
17455 M:      Alan Stern <stern@rowland.harvard.edu>
17456 L:      linux-usb@vger.kernel.org
17457 L:      usb-storage@lists.one-eyed-alien.net
17458 S:      Maintained
17459 F:      drivers/usb/storage/
17460
17461 USB MIDI DRIVER
17462 M:      Clemens Ladisch <clemens@ladisch.de>
17463 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17465 S:      Maintained
17466 F:      sound/usb/midi.*
17467
17468 USB NETWORKING DRIVERS
17469 L:      linux-usb@vger.kernel.org
17470 S:      Odd Fixes
17471 F:      drivers/net/usb/
17472
17473 USB OHCI DRIVER
17474 M:      Alan Stern <stern@rowland.harvard.edu>
17475 L:      linux-usb@vger.kernel.org
17476 S:      Maintained
17477 F:      Documentation/usb/ohci.rst
17478 F:      drivers/usb/host/ohci*
17479
17480 USB OTG FSM (Finite State Machine)
17481 M:      Peter Chen <Peter.Chen@nxp.com>
17482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17483 L:      linux-usb@vger.kernel.org
17484 S:      Maintained
17485 F:      drivers/usb/common/usb-otg-fsm.c
17486
17487 USB OVER IP DRIVER
17488 M:      Valentina Manea <valentina.manea.m@gmail.com>
17489 M:      Shuah Khan <shuah@kernel.org>
17490 M:      Shuah Khan <skhan@linuxfoundation.org>
17491 L:      linux-usb@vger.kernel.org
17492 S:      Maintained
17493 F:      Documentation/usb/usbip_protocol.rst
17494 F:      drivers/usb/usbip/
17495 F:      tools/usb/usbip/
17496 F:      tools/testing/selftests/drivers/usb/usbip/
17497
17498 USB PEGASUS DRIVER
17499 M:      Petko Manolov <petkan@nucleusys.com>
17500 L:      linux-usb@vger.kernel.org
17501 L:      netdev@vger.kernel.org
17502 T:      git git://github.com/petkan/pegasus.git
17503 W:      https://github.com/petkan/pegasus
17504 S:      Maintained
17505 F:      drivers/net/usb/pegasus.*
17506
17507 USB PHY LAYER
17508 M:      Felipe Balbi <balbi@kernel.org>
17509 L:      linux-usb@vger.kernel.org
17510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17511 S:      Maintained
17512 F:      drivers/usb/phy/
17513
17514 USB PRINTER DRIVER (usblp)
17515 M:      Pete Zaitcev <zaitcev@redhat.com>
17516 L:      linux-usb@vger.kernel.org
17517 S:      Supported
17518 F:      drivers/usb/class/usblp.c
17519
17520 USB QMI WWAN NETWORK DRIVER
17521 M:      Bjørn Mork <bjorn@mork.no>
17522 L:      netdev@vger.kernel.org
17523 S:      Maintained
17524 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17525 F:      drivers/net/usb/qmi_wwan.c
17526
17527 USB RTL8150 DRIVER
17528 M:      Petko Manolov <petkan@nucleusys.com>
17529 L:      linux-usb@vger.kernel.org
17530 L:      netdev@vger.kernel.org
17531 T:      git git://github.com/petkan/rtl8150.git
17532 W:      https://github.com/petkan/rtl8150
17533 S:      Maintained
17534 F:      drivers/net/usb/rtl8150.c
17535
17536 USB SERIAL SUBSYSTEM
17537 M:      Johan Hovold <johan@kernel.org>
17538 L:      linux-usb@vger.kernel.org
17539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17540 S:      Maintained
17541 F:      Documentation/usb/usb-serial.rst
17542 F:      drivers/usb/serial/
17543 F:      include/linux/usb/serial.h
17544
17545 USB SMSC75XX ETHERNET DRIVER
17546 M:      Steve Glendinning <steve.glendinning@shawell.net>
17547 L:      netdev@vger.kernel.org
17548 S:      Maintained
17549 F:      drivers/net/usb/smsc75xx.*
17550
17551 USB SMSC95XX ETHERNET DRIVER
17552 M:      Steve Glendinning <steve.glendinning@shawell.net>
17553 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17554 L:      netdev@vger.kernel.org
17555 S:      Maintained
17556 F:      drivers/net/usb/smsc95xx.*
17557
17558 USB SUBSYSTEM
17559 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17560 L:      linux-usb@vger.kernel.org
17561 W:      http://www.linux-usb.org
17562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17563 S:      Supported
17564 F:      Documentation/devicetree/bindings/usb/
17565 F:      Documentation/usb/
17566 F:      drivers/usb/
17567 F:      include/linux/usb.h
17568 F:      include/linux/usb/
17569
17570 USB TYPEC BUS FOR ALTERNATE MODES
17571 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17572 L:      linux-usb@vger.kernel.org
17573 S:      Maintained
17574 F:      Documentation/ABI/testing/sysfs-bus-typec
17575 F:      Documentation/driver-api/usb/typec_bus.rst
17576 F:      drivers/usb/typec/altmodes/
17577 F:      include/linux/usb/typec_altmode.h
17578
17579 USB TYPEC CLASS
17580 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17581 L:      linux-usb@vger.kernel.org
17582 S:      Maintained
17583 F:      Documentation/ABI/testing/sysfs-class-typec
17584 F:      Documentation/driver-api/usb/typec.rst
17585 F:      drivers/usb/typec/
17586 F:      include/linux/usb/typec.h
17587
17588 USB TYPEC PI3USB30532 MUX DRIVER
17589 M:      Hans de Goede <hdegoede@redhat.com>
17590 L:      linux-usb@vger.kernel.org
17591 S:      Maintained
17592 F:      drivers/usb/typec/mux/pi3usb30532.c
17593
17594 USB TYPEC PORT CONTROLLER DRIVERS
17595 M:      Guenter Roeck <linux@roeck-us.net>
17596 L:      linux-usb@vger.kernel.org
17597 S:      Maintained
17598 F:      drivers/usb/typec/tcpm/
17599
17600 USB UHCI DRIVER
17601 M:      Alan Stern <stern@rowland.harvard.edu>
17602 L:      linux-usb@vger.kernel.org
17603 S:      Maintained
17604 F:      drivers/usb/host/uhci*
17605
17606 USB VIDEO CLASS
17607 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17608 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17609 L:      linux-media@vger.kernel.org
17610 T:      git git://linuxtv.org/media_tree.git
17611 W:      http://www.ideasonboard.org/uvc/
17612 S:      Maintained
17613 F:      drivers/media/usb/uvc/
17614 F:      include/uapi/linux/uvcvideo.h
17615
17616 USB VISION DRIVER
17617 M:      Hans Verkuil <hverkuil@xs4all.nl>
17618 L:      linux-media@vger.kernel.org
17619 T:      git git://linuxtv.org/media_tree.git
17620 W:      https://linuxtv.org
17621 S:      Odd Fixes
17622 F:      drivers/staging/media/usbvision/
17623
17624 USB WEBCAM GADGET
17625 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17626 L:      linux-usb@vger.kernel.org
17627 S:      Maintained
17628 F:      drivers/usb/gadget/function/*uvc*
17629 F:      drivers/usb/gadget/legacy/webcam.c
17630 F:      include/uapi/linux/usb/g_uvc.h
17631
17632 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17633 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17634 L:      linux-wireless@vger.kernel.org
17635 S:      Maintained
17636 F:      drivers/net/wireless/rndis_wlan.c
17637
17638 USB XHCI DRIVER
17639 M:      Mathias Nyman <mathias.nyman@intel.com>
17640 L:      linux-usb@vger.kernel.org
17641 S:      Supported
17642 F:      drivers/usb/host/xhci*
17643 F:      drivers/usb/host/pci-quirks*
17644
17645 USB ZD1201 DRIVER
17646 L:      linux-wireless@vger.kernel.org
17647 W:      http://linux-lc100020.sourceforge.net
17648 S:      Orphan
17649 F:      drivers/net/wireless/zydas/zd1201.*
17650
17651 USB ZR364XX DRIVER
17652 M:      Antoine Jacquet <royale@zerezo.com>
17653 L:      linux-usb@vger.kernel.org
17654 L:      linux-media@vger.kernel.org
17655 T:      git git://linuxtv.org/media_tree.git
17656 W:      http://royale.zerezo.com/zr364xx/
17657 S:      Maintained
17658 F:      Documentation/media/v4l-drivers/zr364xx*
17659 F:      drivers/media/usb/zr364xx/
17660
17661 USER-MODE LINUX (UML)
17662 M:      Jeff Dike <jdike@addtoit.com>
17663 M:      Richard Weinberger <richard@nod.at>
17664 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17665 L:      linux-um@lists.infradead.org
17666 W:      http://user-mode-linux.sourceforge.net
17667 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17669 S:      Maintained
17670 F:      Documentation/virt/uml/
17671 F:      arch/um/
17672 F:      arch/x86/um/
17673 F:      fs/hostfs/
17674
17675 USERSPACE COPYIN/COPYOUT (UIOVEC)
17676 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17677 S:      Maintained
17678 F:      lib/iov_iter.c
17679 F:      include/linux/uio.h
17680
17681 USERSPACE DMA BUFFER DRIVER
17682 M:      Gerd Hoffmann <kraxel@redhat.com>
17683 S:      Maintained
17684 L:      dri-devel@lists.freedesktop.org
17685 F:      drivers/dma-buf/udmabuf.c
17686 F:      include/uapi/linux/udmabuf.h
17687 T:      git git://anongit.freedesktop.org/drm/drm-misc
17688
17689 USERSPACE I/O (UIO)
17690 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17691 S:      Maintained
17692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17693 F:      Documentation/driver-api/uio-howto.rst
17694 F:      drivers/uio/
17695 F:      include/linux/uio_driver.h
17696
17697 UTIL-LINUX PACKAGE
17698 M:      Karel Zak <kzak@redhat.com>
17699 L:      util-linux@vger.kernel.org
17700 W:      http://en.wikipedia.org/wiki/Util-linux
17701 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17702 S:      Maintained
17703
17704 UUID HELPERS
17705 M:      Christoph Hellwig <hch@lst.de>
17706 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17707 L:      linux-kernel@vger.kernel.org
17708 T:      git git://git.infradead.org/users/hch/uuid.git
17709 F:      lib/uuid.c
17710 F:      lib/test_uuid.c
17711 F:      include/linux/uuid.h
17712 F:      include/uapi/linux/uuid.h
17713 S:      Maintained
17714
17715 UVESAFB DRIVER
17716 M:      Michal Januszewski <spock@gentoo.org>
17717 L:      linux-fbdev@vger.kernel.org
17718 W:      https://github.com/mjanusz/v86d
17719 S:      Maintained
17720 F:      Documentation/fb/uvesafb.rst
17721 F:      drivers/video/fbdev/uvesafb.*
17722
17723 VF610 NAND DRIVER
17724 M:      Stefan Agner <stefan@agner.ch>
17725 L:      linux-mtd@lists.infradead.org
17726 S:      Supported
17727 F:      drivers/mtd/nand/raw/vf610_nfc.c
17728
17729 VFAT/FAT/MSDOS FILESYSTEM
17730 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17731 S:      Maintained
17732 F:      Documentation/filesystems/vfat.rst
17733 F:      fs/fat/
17734
17735 VFIO DRIVER
17736 M:      Alex Williamson <alex.williamson@redhat.com>
17737 R:      Cornelia Huck <cohuck@redhat.com>
17738 L:      kvm@vger.kernel.org
17739 T:      git git://github.com/awilliam/linux-vfio.git
17740 S:      Maintained
17741 F:      Documentation/driver-api/vfio.rst
17742 F:      drivers/vfio/
17743 F:      include/linux/vfio.h
17744 F:      include/uapi/linux/vfio.h
17745
17746 VFIO MEDIATED DEVICE DRIVERS
17747 M:      Kirti Wankhede <kwankhede@nvidia.com>
17748 L:      kvm@vger.kernel.org
17749 S:      Maintained
17750 F:      Documentation/driver-api/vfio-mediated-device.rst
17751 F:      drivers/vfio/mdev/
17752 F:      include/linux/mdev.h
17753 F:      samples/vfio-mdev/
17754
17755 VFIO PLATFORM DRIVER
17756 M:      Eric Auger <eric.auger@redhat.com>
17757 L:      kvm@vger.kernel.org
17758 S:      Maintained
17759 F:      drivers/vfio/platform/
17760
17761 VGA_SWITCHEROO
17762 R:      Lukas Wunner <lukas@wunner.de>
17763 S:      Maintained
17764 F:      Documentation/gpu/vga-switcheroo.rst
17765 F:      drivers/gpu/vga/vga_switcheroo.c
17766 F:      include/linux/vga_switcheroo.h
17767 T:      git git://anongit.freedesktop.org/drm/drm-misc
17768
17769 VIA RHINE NETWORK DRIVER
17770 S:      Orphan
17771 F:      drivers/net/ethernet/via/via-rhine.c
17772
17773 VIA SD/MMC CARD CONTROLLER DRIVER
17774 M:      Bruce Chang <brucechang@via.com.tw>
17775 M:      Harald Welte <HaraldWelte@viatech.com>
17776 S:      Maintained
17777 F:      drivers/mmc/host/via-sdmmc.c
17778
17779 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17780 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17781 L:      linux-fbdev@vger.kernel.org
17782 S:      Maintained
17783 F:      include/linux/via-core.h
17784 F:      include/linux/via-gpio.h
17785 F:      include/linux/via_i2c.h
17786 F:      drivers/video/fbdev/via/
17787
17788 VIA VELOCITY NETWORK DRIVER
17789 M:      Francois Romieu <romieu@fr.zoreil.com>
17790 L:      netdev@vger.kernel.org
17791 S:      Maintained
17792 F:      drivers/net/ethernet/via/via-velocity.*
17793
17794 VICODEC VIRTUAL CODEC DRIVER
17795 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17796 L:      linux-media@vger.kernel.org
17797 T:      git git://linuxtv.org/media_tree.git
17798 W:      https://linuxtv.org
17799 S:      Maintained
17800 F:      drivers/media/platform/vicodec/*
17801
17802 VIDEO MULTIPLEXER DRIVER
17803 M:      Philipp Zabel <p.zabel@pengutronix.de>
17804 L:      linux-media@vger.kernel.org
17805 S:      Maintained
17806 F:      drivers/media/platform/video-mux.c
17807
17808 VIDEO I2C POLLING DRIVER
17809 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17810 L:      linux-media@vger.kernel.org
17811 S:      Maintained
17812 F:      drivers/media/i2c/video-i2c.c
17813
17814 VIDEOBUF2 FRAMEWORK
17815 M:      Pawel Osciak <pawel@osciak.com>
17816 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17817 M:      Kyungmin Park <kyungmin.park@samsung.com>
17818 R:      Tomasz Figa <tfiga@chromium.org>
17819 L:      linux-media@vger.kernel.org
17820 S:      Maintained
17821 F:      drivers/media/common/videobuf2/*
17822 F:      include/media/videobuf2-*
17823
17824 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17825 M:      Helen Koike <helen.koike@collabora.com>
17826 R:      Shuah Khan <skhan@linuxfoundation.org>
17827 L:      linux-media@vger.kernel.org
17828 T:      git git://linuxtv.org/media_tree.git
17829 W:      https://linuxtv.org
17830 S:      Maintained
17831 F:      drivers/media/platform/vimc/*
17832
17833 VIRT LIB
17834 M:      Alex Williamson <alex.williamson@redhat.com>
17835 M:      Paolo Bonzini <pbonzini@redhat.com>
17836 L:      kvm@vger.kernel.org
17837 S:      Supported
17838 F:      virt/lib/
17839
17840 VIRTIO AND VHOST VSOCK DRIVER
17841 M:      Stefan Hajnoczi <stefanha@redhat.com>
17842 M:      Stefano Garzarella <sgarzare@redhat.com>
17843 L:      kvm@vger.kernel.org
17844 L:      virtualization@lists.linux-foundation.org
17845 L:      netdev@vger.kernel.org
17846 S:      Maintained
17847 F:      include/linux/virtio_vsock.h
17848 F:      include/uapi/linux/virtio_vsock.h
17849 F:      include/uapi/linux/vsockmon.h
17850 F:      include/uapi/linux/vm_sockets_diag.h
17851 F:      net/vmw_vsock/diag.c
17852 F:      net/vmw_vsock/af_vsock_tap.c
17853 F:      net/vmw_vsock/virtio_transport_common.c
17854 F:      net/vmw_vsock/virtio_transport.c
17855 F:      net/vmw_vsock/vsock_loopback.c
17856 F:      drivers/net/vsockmon.c
17857 F:      drivers/vhost/vsock.c
17858 F:      tools/testing/vsock/
17859
17860 VIRTIO CONSOLE DRIVER
17861 M:      Amit Shah <amit@kernel.org>
17862 L:      virtualization@lists.linux-foundation.org
17863 S:      Maintained
17864 F:      drivers/char/virtio_console.c
17865 F:      include/linux/virtio_console.h
17866 F:      include/uapi/linux/virtio_console.h
17867
17868 VIRTIO CORE AND NET DRIVERS
17869 M:      "Michael S. Tsirkin" <mst@redhat.com>
17870 M:      Jason Wang <jasowang@redhat.com>
17871 L:      virtualization@lists.linux-foundation.org
17872 S:      Maintained
17873 F:      Documentation/devicetree/bindings/virtio/
17874 F:      drivers/virtio/
17875 F:      drivers/vdpa/
17876 F:      tools/virtio/
17877 F:      drivers/net/virtio_net.c
17878 F:      drivers/block/virtio_blk.c
17879 F:      include/linux/virtio*.h
17880 F:      include/linux/vdpa.h
17881 F:      include/uapi/linux/virtio_*.h
17882 F:      drivers/crypto/virtio/
17883 F:      mm/balloon_compaction.c
17884
17885 VIRTIO BLOCK AND SCSI DRIVERS
17886 M:      "Michael S. Tsirkin" <mst@redhat.com>
17887 M:      Jason Wang <jasowang@redhat.com>
17888 R:      Paolo Bonzini <pbonzini@redhat.com>
17889 R:      Stefan Hajnoczi <stefanha@redhat.com>
17890 L:      virtualization@lists.linux-foundation.org
17891 S:      Maintained
17892 F:      drivers/block/virtio_blk.c
17893 F:      drivers/scsi/virtio_scsi.c
17894 F:      include/uapi/linux/virtio_blk.h
17895 F:      include/uapi/linux/virtio_scsi.h
17896 F:      drivers/vhost/scsi.c
17897
17898 VIRTIO CRYPTO DRIVER
17899 M:      Gonglei <arei.gonglei@huawei.com>
17900 L:      virtualization@lists.linux-foundation.org
17901 L:      linux-crypto@vger.kernel.org
17902 S:      Maintained
17903 F:      drivers/crypto/virtio/
17904 F:      include/uapi/linux/virtio_crypto.h
17905
17906 VIRTIO DRIVERS FOR S390
17907 M:      Cornelia Huck <cohuck@redhat.com>
17908 M:      Halil Pasic <pasic@linux.ibm.com>
17909 L:      linux-s390@vger.kernel.org
17910 L:      virtualization@lists.linux-foundation.org
17911 L:      kvm@vger.kernel.org
17912 S:      Supported
17913 F:      drivers/s390/virtio/
17914 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17915
17916 VIRTIO FILE SYSTEM
17917 M:      Vivek Goyal <vgoyal@redhat.com>
17918 M:      Stefan Hajnoczi <stefanha@redhat.com>
17919 M:      Miklos Szeredi <miklos@szeredi.hu>
17920 L:      virtualization@lists.linux-foundation.org
17921 L:      linux-fsdevel@vger.kernel.org
17922 W:      https://virtio-fs.gitlab.io/
17923 S:      Supported
17924 F:      fs/fuse/virtio_fs.c
17925 F:      include/uapi/linux/virtio_fs.h
17926 F:      Documentation/filesystems/virtiofs.rst
17927
17928 VIRTIO GPU DRIVER
17929 M:      David Airlie <airlied@linux.ie>
17930 M:      Gerd Hoffmann <kraxel@redhat.com>
17931 L:      dri-devel@lists.freedesktop.org
17932 L:      virtualization@lists.linux-foundation.org
17933 T:      git git://anongit.freedesktop.org/drm/drm-misc
17934 S:      Maintained
17935 F:      drivers/gpu/drm/virtio/
17936 F:      include/uapi/linux/virtio_gpu.h
17937
17938 VIRTIO HOST (VHOST)
17939 M:      "Michael S. Tsirkin" <mst@redhat.com>
17940 M:      Jason Wang <jasowang@redhat.com>
17941 L:      kvm@vger.kernel.org
17942 L:      virtualization@lists.linux-foundation.org
17943 L:      netdev@vger.kernel.org
17944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17945 S:      Maintained
17946 F:      drivers/vhost/
17947 F:      include/uapi/linux/vhost.h
17948 F:      include/linux/vhost_iotlb.h
17949
17950 VIRTIO INPUT DRIVER
17951 M:      Gerd Hoffmann <kraxel@redhat.com>
17952 S:      Maintained
17953 F:      drivers/virtio/virtio_input.c
17954 F:      include/uapi/linux/virtio_input.h
17955
17956 VIRTIO IOMMU DRIVER
17957 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17958 L:      virtualization@lists.linux-foundation.org
17959 S:      Maintained
17960 F:      drivers/iommu/virtio-iommu.c
17961 F:      include/uapi/linux/virtio_iommu.h
17962
17963 VIRTUAL BOX GUEST DEVICE DRIVER
17964 M:      Hans de Goede <hdegoede@redhat.com>
17965 M:      Arnd Bergmann <arnd@arndb.de>
17966 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17967 S:      Maintained
17968 F:      include/linux/vbox_utils.h
17969 F:      include/uapi/linux/vbox*.h
17970 F:      drivers/virt/vboxguest/
17971
17972 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17973 M:      Hans de Goede <hdegoede@redhat.com>
17974 L:      linux-fsdevel@vger.kernel.org
17975 S:      Maintained
17976 F:      fs/vboxsf/*
17977
17978 VIRTUAL SERIO DEVICE DRIVER
17979 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17980 S:      Maintained
17981 F:      drivers/input/serio/userio.c
17982 F:      include/uapi/linux/userio.h
17983
17984 VITESSE FELIX ETHERNET SWITCH DRIVER
17985 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17986 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17987 L:      netdev@vger.kernel.org
17988 S:      Maintained
17989 F:      drivers/net/dsa/ocelot/*
17990 F:      net/dsa/tag_ocelot.c
17991
17992 VIVID VIRTUAL VIDEO DRIVER
17993 M:      Hans Verkuil <hverkuil@xs4all.nl>
17994 L:      linux-media@vger.kernel.org
17995 T:      git git://linuxtv.org/media_tree.git
17996 W:      https://linuxtv.org
17997 S:      Maintained
17998 F:      drivers/media/platform/vivid/*
17999
18000 VLYNQ BUS
18001 M:      Florian Fainelli <f.fainelli@gmail.com>
18002 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
18003 S:      Maintained
18004 F:      drivers/vlynq/vlynq.c
18005 F:      include/linux/vlynq.h
18006
18007 VME SUBSYSTEM
18008 M:      Martyn Welch <martyn@welchs.me.uk>
18009 M:      Manohar Vanga <manohar.vanga@gmail.com>
18010 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18011 L:      devel@driverdev.osuosl.org
18012 S:      Maintained
18013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18014 F:      Documentation/driver-api/vme.rst
18015 F:      drivers/staging/vme/
18016 F:      drivers/vme/
18017 F:      include/linux/vme*
18018
18019 VMWARE BALLOON DRIVER
18020 M:      Nadav Amit <namit@vmware.com>
18021 M:      "VMware, Inc." <pv-drivers@vmware.com>
18022 L:      linux-kernel@vger.kernel.org
18023 S:      Maintained
18024 F:      drivers/misc/vmw_balloon.c
18025
18026 VMWARE HYPERVISOR INTERFACE
18027 M:      Thomas Hellstrom <thellstrom@vmware.com>
18028 M:      "VMware, Inc." <pv-drivers@vmware.com>
18029 L:      virtualization@lists.linux-foundation.org
18030 S:      Supported
18031 F:      arch/x86/kernel/cpu/vmware.c
18032 F:      arch/x86/include/asm/vmware.h
18033
18034 VMWARE VIRTUAL PTP CLOCK DRIVER
18035 M:      Vivek Thampi <vithampi@vmware.com>
18036 M:      "VMware, Inc." <pv-drivers@vmware.com>
18037 L:      netdev@vger.kernel.org
18038 S:      Supported
18039 F:      drivers/ptp/ptp_vmw.c
18040
18041 VMWARE PVRDMA DRIVER
18042 M:      Adit Ranadive <aditr@vmware.com>
18043 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18044 L:      linux-rdma@vger.kernel.org
18045 S:      Maintained
18046 F:      drivers/infiniband/hw/vmw_pvrdma/
18047
18048 VMware PVSCSI driver
18049 M:      Jim Gill <jgill@vmware.com>
18050 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18051 L:      linux-scsi@vger.kernel.org
18052 S:      Maintained
18053 F:      drivers/scsi/vmw_pvscsi.c
18054 F:      drivers/scsi/vmw_pvscsi.h
18055
18056 VMWARE VMMOUSE SUBDRIVER
18057 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18058 M:      "VMware, Inc." <pv-drivers@vmware.com>
18059 L:      linux-input@vger.kernel.org
18060 S:      Maintained
18061 F:      drivers/input/mouse/vmmouse.c
18062 F:      drivers/input/mouse/vmmouse.h
18063
18064 VMWARE VMXNET3 ETHERNET DRIVER
18065 M:      Ronak Doshi <doshir@vmware.com>
18066 M:      "VMware, Inc." <pv-drivers@vmware.com>
18067 L:      netdev@vger.kernel.org
18068 S:      Maintained
18069 F:      drivers/net/vmxnet3/
18070
18071 VOCORE VOCORE2 BOARD
18072 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18073 L:      linux-mips@vger.kernel.org
18074 S:      Maintained
18075 F:      arch/mips/boot/dts/ralink/vocore2.dts
18076
18077 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18078 M:      Liam Girdwood <lgirdwood@gmail.com>
18079 M:      Mark Brown <broonie@kernel.org>
18080 L:      linux-kernel@vger.kernel.org
18081 W:      http://www.slimlogic.co.uk/?p=48
18082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18083 S:      Supported
18084 F:      Documentation/devicetree/bindings/regulator/
18085 F:      Documentation/power/regulator/
18086 F:      drivers/regulator/
18087 F:      include/dt-bindings/regulator/
18088 F:      include/linux/regulator/
18089 K:      regulator_get_optional
18090
18091 VRF
18092 M:      David Ahern <dsahern@kernel.org>
18093 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18094 L:      netdev@vger.kernel.org
18095 S:      Maintained
18096 F:      drivers/net/vrf.c
18097 F:      Documentation/networking/vrf.txt
18098
18099 VSPRINTF
18100 M:      Petr Mladek <pmladek@suse.com>
18101 M:      Steven Rostedt <rostedt@goodmis.org>
18102 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18103 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18104 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18106 S:      Maintained
18107 F:      lib/vsprintf.c
18108 F:      lib/test_printf.c
18109 F:      Documentation/core-api/printk-formats.rst
18110
18111 VT1211 HARDWARE MONITOR DRIVER
18112 M:      Juerg Haefliger <juergh@gmail.com>
18113 L:      linux-hwmon@vger.kernel.org
18114 S:      Maintained
18115 F:      Documentation/hwmon/vt1211.rst
18116 F:      drivers/hwmon/vt1211.c
18117
18118 VT8231 HARDWARE MONITOR DRIVER
18119 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18120 L:      linux-hwmon@vger.kernel.org
18121 S:      Maintained
18122 F:      drivers/hwmon/vt8231.c
18123
18124 VUB300 USB to SDIO/SD/MMC bridge chip
18125 L:      linux-mmc@vger.kernel.org
18126 S:      Orphan
18127 F:      drivers/mmc/host/vub300.c
18128
18129 W1 DALLAS'S 1-WIRE BUS
18130 M:      Evgeniy Polyakov <zbr@ioremap.net>
18131 S:      Maintained
18132 F:      Documentation/devicetree/bindings/w1/
18133 F:      Documentation/w1/
18134 F:      drivers/w1/
18135 F:      include/linux/w1.h
18136
18137 W83791D HARDWARE MONITORING DRIVER
18138 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18139 L:      linux-hwmon@vger.kernel.org
18140 S:      Maintained
18141 F:      Documentation/hwmon/w83791d.rst
18142 F:      drivers/hwmon/w83791d.c
18143
18144 W83793 HARDWARE MONITORING DRIVER
18145 M:      Rudolf Marek <r.marek@assembler.cz>
18146 L:      linux-hwmon@vger.kernel.org
18147 S:      Maintained
18148 F:      Documentation/hwmon/w83793.rst
18149 F:      drivers/hwmon/w83793.c
18150
18151 W83795 HARDWARE MONITORING DRIVER
18152 M:      Jean Delvare <jdelvare@suse.com>
18153 L:      linux-hwmon@vger.kernel.org
18154 S:      Maintained
18155 F:      drivers/hwmon/w83795.c
18156
18157 W83L51xD SD/MMC CARD INTERFACE DRIVER
18158 M:      Pierre Ossman <pierre@ossman.eu>
18159 S:      Maintained
18160 F:      drivers/mmc/host/wbsd.*
18161
18162 WACOM PROTOCOL 4 SERIAL TABLETS
18163 M:      Julian Squires <julian@cipht.net>
18164 M:      Hans de Goede <hdegoede@redhat.com>
18165 L:      linux-input@vger.kernel.org
18166 S:      Maintained
18167 F:      drivers/input/tablet/wacom_serial4.c
18168
18169 WATCHDOG DEVICE DRIVERS
18170 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18171 M:      Guenter Roeck <linux@roeck-us.net>
18172 L:      linux-watchdog@vger.kernel.org
18173 W:      http://www.linux-watchdog.org/
18174 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18175 S:      Maintained
18176 F:      Documentation/devicetree/bindings/watchdog/
18177 F:      Documentation/watchdog/
18178 F:      drivers/watchdog/
18179 F:      include/linux/watchdog.h
18180 F:      include/uapi/linux/watchdog.h
18181
18182 WHISKEYCOVE PMIC GPIO DRIVER
18183 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18184 L:      linux-gpio@vger.kernel.org
18185 S:      Maintained
18186 F:      drivers/gpio/gpio-wcove.c
18187
18188 WHWAVE RTC DRIVER
18189 M:      Dianlong Li <long17.cool@163.com>
18190 L:      linux-rtc@vger.kernel.org
18191 S:      Maintained
18192 F:      drivers/rtc/rtc-sd3078.c
18193
18194 WIIMOTE HID DRIVER
18195 M:      David Herrmann <dh.herrmann@googlemail.com>
18196 L:      linux-input@vger.kernel.org
18197 S:      Maintained
18198 F:      drivers/hid/hid-wiimote*
18199
18200 WILOCITY WIL6210 WIRELESS DRIVER
18201 M:      Maya Erez <merez@codeaurora.org>
18202 L:      linux-wireless@vger.kernel.org
18203 L:      wil6210@qti.qualcomm.com
18204 S:      Supported
18205 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18206 F:      drivers/net/wireless/ath/wil6210/
18207
18208 WIMAX STACK
18209 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18210 M:      linux-wimax@intel.com
18211 L:      wimax@linuxwimax.org (subscribers-only)
18212 S:      Supported
18213 W:      http://linuxwimax.org
18214 F:      Documentation/admin-guide/wimax/wimax.rst
18215 F:      include/linux/wimax/debug.h
18216 F:      include/net/wimax.h
18217 F:      include/uapi/linux/wimax.h
18218 F:      net/wimax/
18219
18220 WINBOND CIR DRIVER
18221 M:      David Härdeman <david@hardeman.nu>
18222 S:      Maintained
18223 F:      drivers/media/rc/winbond-cir.c
18224
18225 RCMM REMOTE CONTROLS DECODER
18226 M:      Patrick Lerda <patrick9876@free.fr>
18227 S:      Maintained
18228 F:      drivers/media/rc/ir-rcmm-decoder.c
18229
18230 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18231 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18232 L:      linux-watchdog@vger.kernel.org
18233 S:      Maintained
18234 F:      drivers/watchdog/ebc-c384_wdt.c
18235
18236 WINSYSTEMS WS16C48 GPIO DRIVER
18237 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18238 L:      linux-gpio@vger.kernel.org
18239 S:      Maintained
18240 F:      drivers/gpio/gpio-ws16c48.c
18241
18242 WIREGUARD SECURE NETWORK TUNNEL
18243 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18244 S:      Maintained
18245 F:      drivers/net/wireguard/
18246 F:      tools/testing/selftests/wireguard/
18247 L:      wireguard@lists.zx2c4.com
18248 L:      netdev@vger.kernel.org
18249
18250 WISTRON LAPTOP BUTTON DRIVER
18251 M:      Miloslav Trmac <mitr@volny.cz>
18252 S:      Maintained
18253 F:      drivers/input/misc/wistron_btns.c
18254
18255 WL3501 WIRELESS PCMCIA CARD DRIVER
18256 L:      linux-wireless@vger.kernel.org
18257 S:      Odd fixes
18258 F:      drivers/net/wireless/wl3501*
18259
18260 WOLFSON MICROELECTRONICS DRIVERS
18261 L:      patches@opensource.cirrus.com
18262 T:      git https://github.com/CirrusLogic/linux-drivers.git
18263 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18264 S:      Supported
18265 F:      Documentation/hwmon/wm83??.rst
18266 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18267 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18268 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18269 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18270 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18271 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18272 F:      drivers/clk/clk-wm83*.c
18273 F:      drivers/extcon/extcon-arizona.c
18274 F:      drivers/leds/leds-wm83*.c
18275 F:      drivers/gpio/gpio-*wm*.c
18276 F:      drivers/gpio/gpio-arizona.c
18277 F:      drivers/hwmon/wm83??-hwmon.c
18278 F:      drivers/input/misc/wm831x-on.c
18279 F:      drivers/input/touchscreen/wm831x-ts.c
18280 F:      drivers/input/touchscreen/wm97*.c
18281 F:      drivers/mfd/arizona*
18282 F:      drivers/mfd/wm*.c
18283 F:      drivers/mfd/cs47l24*
18284 F:      drivers/power/supply/wm83*.c
18285 F:      drivers/rtc/rtc-wm83*.c
18286 F:      drivers/regulator/wm8*.c
18287 F:      drivers/regulator/arizona*
18288 F:      drivers/video/backlight/wm83*_bl.c
18289 F:      drivers/watchdog/wm83*_wdt.c
18290 F:      include/linux/mfd/arizona/
18291 F:      include/linux/mfd/wm831x/
18292 F:      include/linux/mfd/wm8350/
18293 F:      include/linux/mfd/wm8400*
18294 F:      include/linux/regulator/arizona*
18295 F:      include/linux/wm97xx.h
18296 F:      include/sound/wm????.h
18297 F:      sound/soc/codecs/arizona.?
18298 F:      sound/soc/codecs/wm*
18299 F:      sound/soc/codecs/cs47l24*
18300
18301 WORKQUEUE
18302 M:      Tejun Heo <tj@kernel.org>
18303 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18305 S:      Maintained
18306 F:      include/linux/workqueue.h
18307 F:      kernel/workqueue.c
18308 F:      Documentation/core-api/workqueue.rst
18309
18310 X-POWERS AXP288 PMIC DRIVERS
18311 M:      Hans de Goede <hdegoede@redhat.com>
18312 S:      Maintained
18313 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18314 N:      axp288
18315
18316 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18317 M:      Chen-Yu Tsai <wens@csie.org>
18318 L:      linux-kernel@vger.kernel.org
18319 S:      Maintained
18320 N:      axp[128]
18321
18322 X.25 NETWORK LAYER
18323 M:      Andrew Hendry <andrew.hendry@gmail.com>
18324 L:      linux-x25@vger.kernel.org
18325 S:      Odd Fixes
18326 F:      Documentation/networking/x25*
18327 F:      include/net/x25*
18328 F:      net/x25/
18329
18330 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18331 M:      Thomas Gleixner <tglx@linutronix.de>
18332 M:      Ingo Molnar <mingo@redhat.com>
18333 M:      Borislav Petkov <bp@alien8.de>
18334 R:      "H. Peter Anvin" <hpa@zytor.com>
18335 M:      x86@kernel.org
18336 L:      linux-kernel@vger.kernel.org
18337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18338 S:      Maintained
18339 F:      Documentation/devicetree/bindings/x86/
18340 F:      Documentation/x86/
18341 F:      arch/x86/
18342
18343 X86 ENTRY CODE
18344 M:      Andy Lutomirski <luto@kernel.org>
18345 L:      linux-kernel@vger.kernel.org
18346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18347 S:      Maintained
18348 F:      arch/x86/entry/
18349
18350 X86 MCE INFRASTRUCTURE
18351 M:      Tony Luck <tony.luck@intel.com>
18352 M:      Borislav Petkov <bp@alien8.de>
18353 L:      linux-edac@vger.kernel.org
18354 S:      Maintained
18355 F:      arch/x86/kernel/cpu/mce/*
18356
18357 X86 MICROCODE UPDATE SUPPORT
18358 M:      Borislav Petkov <bp@alien8.de>
18359 S:      Maintained
18360 F:      arch/x86/kernel/cpu/microcode/*
18361
18362 X86 MM
18363 M:      Dave Hansen <dave.hansen@linux.intel.com>
18364 M:      Andy Lutomirski <luto@kernel.org>
18365 M:      Peter Zijlstra <peterz@infradead.org>
18366 L:      linux-kernel@vger.kernel.org
18367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18368 S:      Maintained
18369 F:      arch/x86/mm/
18370
18371 X86 PLATFORM DRIVERS
18372 M:      Darren Hart <dvhart@infradead.org>
18373 M:      Andy Shevchenko <andy@infradead.org>
18374 L:      platform-driver-x86@vger.kernel.org
18375 S:      Odd Fixes
18376 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18377 F:      drivers/platform/olpc/
18378 F:      drivers/platform/x86/
18379
18380 X86 PLATFORM DRIVERS - ARCH
18381 R:      Darren Hart <dvhart@infradead.org>
18382 R:      Andy Shevchenko <andy@infradead.org>
18383 L:      platform-driver-x86@vger.kernel.org
18384 L:      x86@kernel.org
18385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18386 S:      Maintained
18387 F:      arch/x86/platform
18388
18389 X86 VDSO
18390 M:      Andy Lutomirski <luto@kernel.org>
18391 L:      linux-kernel@vger.kernel.org
18392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18393 S:      Maintained
18394 F:      arch/x86/entry/vdso/
18395
18396 XARRAY
18397 M:      Matthew Wilcox <willy@infradead.org>
18398 L:      linux-fsdevel@vger.kernel.org
18399 S:      Supported
18400 F:      Documentation/core-api/xarray.rst
18401 F:      lib/idr.c
18402 F:      lib/xarray.c
18403 F:      include/linux/idr.h
18404 F:      include/linux/xarray.h
18405 F:      tools/testing/radix-tree
18406
18407 XBOX DVD IR REMOTE
18408 M:      Benjamin Valentin <benpicco@googlemail.com>
18409 S:      Maintained
18410 F:      drivers/media/rc/xbox_remote.c
18411 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18412
18413 XC2028/3028 TUNER DRIVER
18414 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18415 L:      linux-media@vger.kernel.org
18416 W:      https://linuxtv.org
18417 T:      git git://linuxtv.org/media_tree.git
18418 S:      Maintained
18419 F:      drivers/media/tuners/tuner-xc2028.*
18420
18421 XDP (eXpress Data Path)
18422 M:      Alexei Starovoitov <ast@kernel.org>
18423 M:      Daniel Borkmann <daniel@iogearbox.net>
18424 M:      David S. Miller <davem@davemloft.net>
18425 M:      Jakub Kicinski <kuba@kernel.org>
18426 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18427 M:      John Fastabend <john.fastabend@gmail.com>
18428 L:      netdev@vger.kernel.org
18429 L:      bpf@vger.kernel.org
18430 S:      Supported
18431 F:      net/core/xdp.c
18432 F:      include/net/xdp.h
18433 F:      kernel/bpf/devmap.c
18434 F:      kernel/bpf/cpumap.c
18435 F:      include/trace/events/xdp.h
18436 K:      xdp
18437 N:      xdp
18438
18439 XDP SOCKETS (AF_XDP)
18440 M:      Björn Töpel <bjorn.topel@intel.com>
18441 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18442 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18443 L:      netdev@vger.kernel.org
18444 L:      bpf@vger.kernel.org
18445 S:      Maintained
18446 F:      kernel/bpf/xskmap.c
18447 F:      net/xdp/
18448
18449 XEN BLOCK SUBSYSTEM
18450 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18451 M:      Roger Pau Monné <roger.pau@citrix.com>
18452 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18453 S:      Supported
18454 F:      drivers/block/xen-blkback/*
18455 F:      drivers/block/xen*
18456
18457 XEN HYPERVISOR ARM
18458 M:      Stefano Stabellini <sstabellini@kernel.org>
18459 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18460 S:      Maintained
18461 F:      arch/arm/xen/
18462 F:      arch/arm/include/asm/xen/
18463
18464 XEN HYPERVISOR ARM64
18465 M:      Stefano Stabellini <sstabellini@kernel.org>
18466 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18467 S:      Maintained
18468 F:      arch/arm64/xen/
18469 F:      arch/arm64/include/asm/xen/
18470
18471 XEN HYPERVISOR INTERFACE
18472 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18473 M:      Juergen Gross <jgross@suse.com>
18474 R:      Stefano Stabellini <sstabellini@kernel.org>
18475 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18477 S:      Supported
18478 F:      arch/x86/xen/
18479 F:      arch/x86/platform/pvh/
18480 F:      drivers/*/xen-*front.c
18481 F:      drivers/xen/
18482 F:      arch/x86/include/asm/xen/
18483 F:      arch/x86/include/asm/pvclock-abi.h
18484 F:      include/xen/
18485 F:      include/uapi/xen/
18486 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18487 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18488
18489 XEN NETWORK BACKEND DRIVER
18490 M:      Wei Liu <wei.liu@kernel.org>
18491 M:      Paul Durrant <paul@xen.org>
18492 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18493 L:      netdev@vger.kernel.org
18494 S:      Supported
18495 F:      drivers/net/xen-netback/*
18496
18497 XEN PCI SUBSYSTEM
18498 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18499 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18500 S:      Supported
18501 F:      arch/x86/pci/*xen*
18502 F:      drivers/pci/*xen*
18503
18504 XEN PVSCSI DRIVERS
18505 M:      Juergen Gross <jgross@suse.com>
18506 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18507 L:      linux-scsi@vger.kernel.org
18508 S:      Supported
18509 F:      drivers/scsi/xen-scsifront.c
18510 F:      drivers/xen/xen-scsiback.c
18511 F:      include/xen/interface/io/vscsiif.h
18512
18513 XEN SWIOTLB SUBSYSTEM
18514 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18515 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18516 L:      iommu@lists.linux-foundation.org
18517 S:      Supported
18518 F:      arch/x86/xen/*swiotlb*
18519 F:      drivers/xen/*swiotlb*
18520
18521 XEN SOUND FRONTEND DRIVER
18522 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18523 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18525 S:      Supported
18526 F:      sound/xen/*
18527
18528 XFS FILESYSTEM
18529 M:      Darrick J. Wong <darrick.wong@oracle.com>
18530 M:      linux-xfs@vger.kernel.org
18531 L:      linux-xfs@vger.kernel.org
18532 W:      http://xfs.org/
18533 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18534 S:      Supported
18535 F:      Documentation/admin-guide/xfs.rst
18536 F:      Documentation/ABI/testing/sysfs-fs-xfs
18537 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18538 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18539 F:      fs/xfs/
18540 F:      include/uapi/linux/dqblk_xfs.h
18541 F:      include/uapi/linux/fsmap.h
18542
18543 XILINX AXI ETHERNET DRIVER
18544 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18545 S:      Maintained
18546 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18547
18548 XILINX CAN DRIVER
18549 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18550 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18551 L:      linux-can@vger.kernel.org
18552 S:      Maintained
18553 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18554 F:      drivers/net/can/xilinx_can.c
18555
18556 XILINX UARTLITE SERIAL DRIVER
18557 M:      Peter Korsgaard <jacmet@sunsite.dk>
18558 L:      linux-serial@vger.kernel.org
18559 S:      Maintained
18560 F:      drivers/tty/serial/uartlite.c
18561
18562 XILINX VIDEO IP CORES
18563 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18564 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18565 L:      linux-media@vger.kernel.org
18566 T:      git git://linuxtv.org/media_tree.git
18567 S:      Supported
18568 F:      Documentation/devicetree/bindings/media/xilinx/
18569 F:      drivers/media/platform/xilinx/
18570 F:      include/uapi/linux/xilinx-v4l2-controls.h
18571
18572 XILINX SD-FEC IP CORES
18573 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18574 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18575 S:      Maintained
18576 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18577 F:      Documentation/misc-devices/xilinx_sdfec.rst
18578 F:      drivers/misc/xilinx_sdfec.c
18579 F:      drivers/misc/Kconfig
18580 F:      drivers/misc/Makefile
18581 F:      include/uapi/misc/xilinx_sdfec.h
18582
18583 XILLYBUS DRIVER
18584 M:      Eli Billauer <eli.billauer@gmail.com>
18585 L:      linux-kernel@vger.kernel.org
18586 S:      Supported
18587 F:      drivers/char/xillybus/
18588
18589 XLP9XX I2C DRIVER
18590 M:      George Cherian <gcherian@marvell.com>
18591 L:      linux-i2c@vger.kernel.org
18592 W:      http://www.marvell.com
18593 S:      Supported
18594 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18595 F:      drivers/i2c/busses/i2c-xlp9xx.c
18596
18597 XRA1403 GPIO EXPANDER
18598 M:      Nandor Han <nandor.han@ge.com>
18599 M:      Semi Malinen <semi.malinen@ge.com>
18600 L:      linux-gpio@vger.kernel.org
18601 S:      Maintained
18602 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18603 F:      drivers/gpio/gpio-xra1403.c
18604
18605 XTENSA XTFPGA PLATFORM SUPPORT
18606 M:      Max Filippov <jcmvbkbc@gmail.com>
18607 L:      linux-xtensa@linux-xtensa.org
18608 S:      Maintained
18609 F:      drivers/spi/spi-xtensa-xtfpga.c
18610 F:      sound/soc/xtensa/xtfpga-i2s.c
18611
18612 YAM DRIVER FOR AX.25
18613 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18614 L:      linux-hams@vger.kernel.org
18615 S:      Maintained
18616 F:      drivers/net/hamradio/yam*
18617 F:      include/linux/yam.h
18618
18619 YAMA SECURITY MODULE
18620 M:      Kees Cook <keescook@chromium.org>
18621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18622 S:      Supported
18623 F:      security/yama/
18624 F:      Documentation/admin-guide/LSM/Yama.rst
18625
18626 YEALINK PHONE DRIVER
18627 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18628 L:      usbb2k-api-dev@nongnu.org
18629 S:      Maintained
18630 F:      Documentation/input/devices/yealink.rst
18631 F:      drivers/input/misc/yealink.*
18632
18633 Z8530 DRIVER FOR AX.25
18634 M:      Joerg Reuter <jreuter@yaina.de>
18635 W:      http://yaina.de/jreuter/
18636 W:      http://www.qsl.net/dl1bke/
18637 L:      linux-hams@vger.kernel.org
18638 S:      Maintained
18639 F:      Documentation/networking/z8530drv.txt
18640 F:      drivers/net/hamradio/*scc.c
18641 F:      drivers/net/hamradio/z8530.h
18642
18643 ZBUD COMPRESSED PAGE ALLOCATOR
18644 M:      Seth Jennings <sjenning@redhat.com>
18645 M:      Dan Streetman <ddstreet@ieee.org>
18646 L:      linux-mm@kvack.org
18647 S:      Maintained
18648 F:      mm/zbud.c
18649 F:      include/linux/zbud.h
18650
18651 ZD1211RW WIRELESS DRIVER
18652 M:      Daniel Drake <dsd@gentoo.org>
18653 M:      Ulrich Kunitz <kune@deine-taler.de>
18654 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18655 L:      linux-wireless@vger.kernel.org
18656 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18657 S:      Maintained
18658 F:      drivers/net/wireless/zydas/zd1211rw/
18659
18660 ZD1301 MEDIA DRIVER
18661 M:      Antti Palosaari <crope@iki.fi>
18662 L:      linux-media@vger.kernel.org
18663 W:      https://linuxtv.org/
18664 W:      http://palosaari.fi/linux/
18665 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18666 S:      Maintained
18667 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18668
18669 ZD1301_DEMOD MEDIA DRIVER
18670 M:      Antti Palosaari <crope@iki.fi>
18671 L:      linux-media@vger.kernel.org
18672 W:      https://linuxtv.org/
18673 W:      http://palosaari.fi/linux/
18674 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18675 S:      Maintained
18676 F:      drivers/media/dvb-frontends/zd1301_demod*
18677
18678 ZHAOXIN PROCESSOR SUPPORT
18679 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18680 L:      linux-kernel@vger.kernel.org
18681 S:      Maintained
18682 F:      arch/x86/kernel/cpu/zhaoxin.c
18683
18684 ZONEFS FILESYSTEM
18685 M:      Damien Le Moal <damien.lemoal@wdc.com>
18686 M:      Naohiro Aota <naohiro.aota@wdc.com>
18687 R:      Johannes Thumshirn <jth@kernel.org>
18688 L:      linux-fsdevel@vger.kernel.org
18689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18690 S:      Maintained
18691 F:      fs/zonefs/
18692 F:      Documentation/filesystems/zonefs.rst
18693
18694 ZPOOL COMPRESSED PAGE STORAGE API
18695 M:      Dan Streetman <ddstreet@ieee.org>
18696 L:      linux-mm@kvack.org
18697 S:      Maintained
18698 F:      mm/zpool.c
18699 F:      include/linux/zpool.h
18700
18701 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18702 M:      Minchan Kim <minchan@kernel.org>
18703 M:      Nitin Gupta <ngupta@vflare.org>
18704 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18705 L:      linux-kernel@vger.kernel.org
18706 S:      Maintained
18707 F:      drivers/block/zram/
18708 F:      Documentation/admin-guide/blockdev/zram.rst
18709
18710 ZS DECSTATION Z85C30 SERIAL DRIVER
18711 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18712 S:      Maintained
18713 F:      drivers/tty/serial/zs.*
18714
18715 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18716 M:      Minchan Kim <minchan@kernel.org>
18717 M:      Nitin Gupta <ngupta@vflare.org>
18718 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18719 L:      linux-mm@kvack.org
18720 S:      Maintained
18721 F:      mm/zsmalloc.c
18722 F:      include/linux/zsmalloc.h
18723 F:      Documentation/vm/zsmalloc.rst
18724
18725 ZSWAP COMPRESSED SWAP CACHING
18726 M:      Seth Jennings <sjenning@redhat.com>
18727 M:      Dan Streetman <ddstreet@ieee.org>
18728 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18729 L:      linux-mm@kvack.org
18730 S:      Maintained
18731 F:      mm/zswap.c
18732
18733 THE REST
18734 M:      Linus Torvalds <torvalds@linux-foundation.org>
18735 L:      linux-kernel@vger.kernel.org
18736 Q:      http://patchwork.kernel.org/project/LKML/list/
18737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18738 S:      Buried alive in reporters
18739 F:      *
18740 F:      */