Merge tag 'wireless-drivers-2020-04-14' of git://git.kernel.org/pub/scm/linux/kernel...
[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:      drivers/iommu/arm-smmu*
1448 F:      drivers/iommu/io-pgtable-arm.c
1449 F:      drivers/iommu/io-pgtable-arm-v7s.c
1450
1451 ARM SUB-ARCHITECTURES
1452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      arch/arm/mach-*/
1455 F:      arch/arm/plat-*/
1456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1457
1458 ARM/ACTIONS SEMI ARCHITECTURE
1459 M:      Andreas Färber <afaerber@suse.de>
1460 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1462 S:      Maintained
1463 N:      owl
1464 F:      arch/arm/mach-actions/
1465 F:      arch/arm/boot/dts/owl-*
1466 F:      arch/arm64/boot/dts/actions/
1467 F:      drivers/clk/actions/
1468 F:      drivers/clocksource/timer-owl*
1469 F:      drivers/dma/owl-dma.c
1470 F:      drivers/i2c/busses/i2c-owl.c
1471 F:      drivers/mmc/host/owl-mmc.c
1472 F:      drivers/pinctrl/actions/*
1473 F:      drivers/soc/actions/
1474 F:      include/dt-bindings/power/owl-*
1475 F:      include/linux/soc/actions/
1476 F:      Documentation/devicetree/bindings/arm/actions.yaml
1477 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1478 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1479 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1480 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1481 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1482 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1483 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1484
1485 ARM/ADS SPHERE MACHINE SUPPORT
1486 M:      Lennert Buytenhek <kernel@wantstofly.org>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489
1490 ARM/AFEB9260 MACHINE SUPPORT
1491 M:      Sergey Lapin <slapin@ossfans.org>
1492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 S:      Maintained
1494
1495 ARM/AJECO 1ARM MACHINE SUPPORT
1496 M:      Lennert Buytenhek <kernel@wantstofly.org>
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499
1500 ARM/Allwinner SoC Clock Support
1501 M:      Emilio López <emilio@elopez.com.ar>
1502 S:      Maintained
1503 F:      drivers/clk/sunxi/
1504
1505 ARM/Allwinner sunXi SoC support
1506 M:      Maxime Ripard <mripard@kernel.org>
1507 M:      Chen-Yu Tsai <wens@csie.org>
1508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 S:      Maintained
1510 N:      sun[x456789]i
1511 N:      sun50i
1512 F:      arch/arm/mach-sunxi/
1513 F:      arch/arm64/boot/dts/allwinner/
1514 F:      drivers/clk/sunxi-ng/
1515 F:      drivers/pinctrl/sunxi/
1516 F:      drivers/soc/sunxi/
1517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1518
1519 Allwinner A10 CSI driver
1520 M:      Maxime Ripard <mripard@kernel.org>
1521 L:      linux-media@vger.kernel.org
1522 T:      git git://linuxtv.org/media_tree.git
1523 F:      drivers/media/platform/sunxi/sun4i-csi/
1524 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1525 S:      Maintained
1526
1527 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1528 M:      Neil Armstrong <narmstrong@baylibre.com>
1529 M:      Jerome Brunet <jbrunet@baylibre.com>
1530 L:      linux-amlogic@lists.infradead.org
1531 S:      Maintained
1532 F:      drivers/clk/meson/
1533 F:      include/dt-bindings/clock/meson*
1534 F:      include/dt-bindings/clock/gxbb*
1535 F:      Documentation/devicetree/bindings/clock/amlogic*
1536
1537 ARM/Amlogic Meson SoC support
1538 M:      Kevin Hilman <khilman@baylibre.com>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 L:      linux-amlogic@lists.infradead.org
1541 W:      http://linux-meson.com/
1542 S:      Maintained
1543 F:      arch/arm/mach-meson/
1544 F:      arch/arm/boot/dts/meson*
1545 F:      arch/arm64/boot/dts/amlogic/
1546 F:      drivers/pinctrl/meson/
1547 F:      drivers/mmc/host/meson*
1548 F:      drivers/soc/amlogic/
1549 F:      drivers/rtc/rtc-meson*
1550 N:      meson
1551
1552 ARM/Amlogic Meson SoC Crypto Drivers
1553 M:      Corentin Labbe <clabbe@baylibre.com>
1554 L:      linux-crypto@vger.kernel.org
1555 L:      linux-amlogic@lists.infradead.org
1556 S:      Maintained
1557 F:      drivers/crypto/amlogic/
1558 F:      Documentation/devicetree/bindings/crypto/amlogic*
1559
1560 ARM/Amlogic Meson SoC Sound Drivers
1561 M:      Jerome Brunet <jbrunet@baylibre.com>
1562 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      sound/soc/meson/
1565 F:      Documentation/devicetree/bindings/sound/amlogic*
1566
1567 ARM/Annapurna Labs ALPINE ARCHITECTURE
1568 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1569 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 S:      Maintained
1572 F:      arch/arm/mach-alpine/
1573 F:      arch/arm/boot/dts/alpine*
1574 F:      arch/arm64/boot/dts/al/
1575 F:      drivers/*/*alpine*
1576
1577 ARM/ARTPEC MACHINE SUPPORT
1578 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1579 M:      Lars Persson <lars.persson@axis.com>
1580 S:      Maintained
1581 L:      linux-arm-kernel@axis.com
1582 F:      arch/arm/mach-artpec
1583 F:      arch/arm/boot/dts/artpec6*
1584 F:      drivers/clk/axis
1585 F:      drivers/crypto/axis
1586 F:      drivers/mmc/host/usdhi6rol0.c
1587 F:      drivers/pinctrl/pinctrl-artpec*
1588 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1589
1590 ARM/ASPEED I2C DRIVER
1591 M:      Brendan Higgins <brendanhiggins@google.com>
1592 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1593 R:      Joel Stanley <joel@jms.id.au>
1594 L:      linux-i2c@vger.kernel.org
1595 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1598 F:      drivers/i2c/busses/i2c-aspeed.c
1599 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1600 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1601
1602 ARM/ASPEED MACHINE SUPPORT
1603 M:      Joel Stanley <joel@jms.id.au>
1604 R:      Andrew Jeffery <andrew@aj.id.au>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1607 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1608 S:      Supported
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1610 F:      arch/arm/mach-aspeed/
1611 F:      arch/arm/boot/dts/aspeed-*
1612 N:      aspeed
1613
1614 ARM/BITMAIN ARCHITECTURE
1615 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 S:      Maintained
1618 F:      arch/arm64/boot/dts/bitmain/
1619 F:      drivers/clk/clk-bm1880.c
1620 F:      drivers/pinctrl/pinctrl-bm1880.c
1621 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1622 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1623 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1624
1625 ARM/CALXEDA HIGHBANK ARCHITECTURE
1626 M:      Andre Przywara <andre.przywara@arm.com>
1627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 S:      Maintained
1629 F:      arch/arm/mach-highbank/
1630 F:      arch/arm/boot/dts/highbank.dts
1631 F:      arch/arm/boot/dts/ecx-*.dts*
1632
1633 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1634 M:      Krzysztof Halasa <khalasa@piap.pl>
1635 S:      Maintained
1636 F:      arch/arm/mach-cns3xxx/
1637
1638 ARM/CAVIUM THUNDER NETWORK DRIVER
1639 M:      Sunil Goutham <sgoutham@marvell.com>
1640 M:      Robert Richter <rrichter@marvell.com>
1641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 S:      Supported
1643 F:      drivers/net/ethernet/cavium/thunder/
1644
1645 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1646 M:      Lukasz Majewski <lukma@denx.de>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 F:      arch/arm/mach-ep93xx/ts72xx.c
1650
1651 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1652 M:      Alexander Shiyan <shc_work@mail.ru>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Odd Fixes
1655 N:      clps711x
1656
1657 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1658 M:      Lennert Buytenhek <kernel@wantstofly.org>
1659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 S:      Maintained
1661
1662 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1663 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1664 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      arch/arm/mach-ep93xx/
1668 F:      arch/arm/mach-ep93xx/include/mach/
1669
1670 ARM/CLKDEV SUPPORT
1671 M:      Russell King <linux@armlinux.org.uk>
1672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1673 S:      Maintained
1674 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1675 F:      drivers/clk/clkdev.c
1676
1677 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1678 M:      Mike Rapoport <mike@compulab.co.il>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681
1682 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1683 M:      Baruch Siach <baruch@tkos.co.il>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686 F:      arch/arm/boot/dts/cx92755*
1687 N:      digicolor
1688
1689 ARM/CONTEC MICRO9 MACHINE SUPPORT
1690 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1691 S:      Maintained
1692 F:      arch/arm/mach-ep93xx/micro9.c
1693
1694 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1695 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1696 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1697 R:      Mike Leach <mike.leach@linaro.org>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      drivers/hwtracing/coresight/*
1701 F:      include/dt-bindings/arm/coresight-cti-dt.h
1702 F:      Documentation/trace/coresight/*
1703 F:      Documentation/devicetree/bindings/arm/coresight.txt
1704 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1705 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1706 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1707 F:      tools/perf/arch/arm/util/pmu.c
1708 F:      tools/perf/arch/arm/util/auxtrace.c
1709 F:      tools/perf/arch/arm/util/cs-etm.c
1710 F:      tools/perf/arch/arm/util/cs-etm.h
1711 F:      tools/perf/util/cs-etm.*
1712 F:      tools/perf/util/cs-etm-decoder/*
1713
1714 ARM/CORGI MACHINE SUPPORT
1715 M:      Richard Purdie <rpurdie@rpsys.net>
1716 S:      Maintained
1717
1718 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1719 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1720 M:      Linus Walleij <linus.walleij@linaro.org>
1721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722 T:      git git://github.com/ulli-kroll/linux.git
1723 S:      Maintained
1724 F:      Documentation/devicetree/bindings/arm/gemini.txt
1725 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1726 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1727 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1728 F:      arch/arm/mach-gemini/
1729 F:      drivers/net/ethernet/cortina/
1730 F:      drivers/pinctrl/pinctrl-gemini.c
1731 F:      drivers/rtc/rtc-ftrtc010.c
1732
1733 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1734 M:      Barry Song <baohua@kernel.org>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1737 S:      Maintained
1738 F:      arch/arm/boot/dts/prima2*
1739 F:      arch/arm/mach-prima2/
1740 F:      drivers/clk/sirf/
1741 F:      drivers/clocksource/timer-prima2.c
1742 F:      drivers/clocksource/timer-atlas7.c
1743 N:      [^a-z]sirf
1744 X:      drivers/gnss
1745
1746 ARM/CZ.NIC TURRIS MOX SUPPORT
1747 M:      Marek Behun <marek.behun@nic.cz>
1748 W:      http://mox.turris.cz
1749 S:      Maintained
1750 F:      Documentation/ABI/testing/debugfs-moxtet
1751 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1752 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1753 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1754 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1755 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1756 F:      include/linux/moxtet.h
1757 F:      drivers/bus/moxtet.c
1758 F:      drivers/firmware/turris-mox-rwtm.c
1759 F:      drivers/gpio/gpio-moxtet.c
1760
1761 ARM/EBSA110 MACHINE SUPPORT
1762 M:      Russell King <linux@armlinux.org.uk>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 W:      http://www.armlinux.org.uk/
1765 S:      Maintained
1766 F:      arch/arm/mach-ebsa110/
1767 F:      drivers/net/ethernet/amd/am79c961a.*
1768
1769 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1770 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1771 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 S:      Maintained
1774 N:      efm32
1775
1776 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1777 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 F:      arch/arm/mach-pxa/ezx.c
1781
1782 ARM/FARADAY FA526 PORT
1783 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786 T:      git git://git.berlios.de/gemini-board
1787 F:      arch/arm/mm/*-fa*
1788
1789 ARM/FOOTBRIDGE ARCHITECTURE
1790 M:      Russell King <linux@armlinux.org.uk>
1791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1792 W:      http://www.armlinux.org.uk/
1793 S:      Maintained
1794 F:      arch/arm/include/asm/hardware/dec21285.h
1795 F:      arch/arm/mach-footbridge/
1796
1797 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1798 M:      Shawn Guo <shawnguo@kernel.org>
1799 M:      Sascha Hauer <s.hauer@pengutronix.de>
1800 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1801 R:      Fabio Estevam <festevam@gmail.com>
1802 R:      NXP Linux Team <linux-imx@nxp.com>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1806 N:      imx
1807 N:      mxs
1808 X:      drivers/media/i2c/
1809
1810 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1811 M:      Shawn Guo <shawnguo@kernel.org>
1812 M:      Sascha Hauer <s.hauer@pengutronix.de>
1813 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1814 R:      Stefan Agner <stefan@agner.ch>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1818 F:      arch/arm/mach-imx/*vf610*
1819 F:      arch/arm/boot/dts/vf*
1820
1821 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1822 M:      Shawn Guo <shawnguo@kernel.org>
1823 M:      Li Yang <leoyang.li@nxp.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1827 F:      arch/arm/boot/dts/ls1021a*
1828 F:      arch/arm64/boot/dts/freescale/fsl-*
1829 F:      arch/arm64/boot/dts/freescale/qoriq-*
1830
1831 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1832 M:      Lennert Buytenhek <kernel@wantstofly.org>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835
1836 ARM/GUMSTIX MACHINE SUPPORT
1837 M:      Steve Sakoman <sakoman@gmail.com>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840
1841 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1842 M:      Philipp Zabel <philipp.zabel@gmail.com>
1843 M:      Paul Parsons <lost.distance@yahoo.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 F:      arch/arm/mach-pxa/hx4700.c
1847 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1848 F:      sound/soc/pxa/hx4700.c
1849
1850 ARM/HISILICON SOC SUPPORT
1851 M:      Wei Xu <xuwei5@hisilicon.com>
1852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1853 W:      http://www.hisilicon.com
1854 S:      Supported
1855 T:      git git://github.com/hisilicon/linux-hisi.git
1856 F:      arch/arm/mach-hisi/
1857 F:      arch/arm/boot/dts/hi3*
1858 F:      arch/arm/boot/dts/hip*
1859 F:      arch/arm/boot/dts/hisi*
1860 F:      arch/arm64/boot/dts/hisilicon/
1861
1862 ARM/HP JORNADA 7XX MACHINE SUPPORT
1863 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1864 W:      www.jlime.com
1865 S:      Maintained
1866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1867 F:      arch/arm/mach-sa1100/jornada720.c
1868 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1869
1870 ARM/IGEP MACHINE SUPPORT
1871 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1872 M:      Javier Martinez Canillas <javier@dowhile0.org>
1873 L:      linux-omap@vger.kernel.org
1874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1875 S:      Maintained
1876 F:      arch/arm/boot/dts/omap3-igep*
1877
1878 ARM/INCOME PXA270 SUPPORT
1879 M:      Marek Vasut <marek.vasut@gmail.com>
1880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 S:      Maintained
1882 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1883
1884 ARM/INTEL IOP32X ARM ARCHITECTURE
1885 M:      Lennert Buytenhek <kernel@wantstofly.org>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 S:      Maintained
1888
1889 ARM/INTEL IQ81342EX MACHINE SUPPORT
1890 M:      Lennert Buytenhek <kernel@wantstofly.org>
1891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1892 S:      Maintained
1893
1894 ARM/INTEL IXDP2850 MACHINE SUPPORT
1895 M:      Lennert Buytenhek <kernel@wantstofly.org>
1896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1897 S:      Maintained
1898
1899 ARM/INTEL IXP4XX ARM ARCHITECTURE
1900 M:      Linus Walleij <linusw@kernel.org>
1901 M:      Imre Kaloz <kaloz@openwrt.org>
1902 M:      Krzysztof Halasa <khalasa@piap.pl>
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 S:      Maintained
1905 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1906 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1907 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1908 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1909 F:      arch/arm/mach-ixp4xx/
1910 F:      drivers/clocksource/timer-ixp4xx.c
1911 F:      drivers/gpio/gpio-ixp4xx.c
1912 F:      drivers/irqchip/irq-ixp4xx.c
1913 F:      include/linux/irqchip/irq-ixp4xx.h
1914 F:      include/linux/platform_data/timer-ixp4xx.h
1915
1916 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1917 M:      Jonathan Cameron <jic23@cam.ac.uk>
1918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1919 S:      Maintained
1920 F:      arch/arm/mach-pxa/stargate2.c
1921 F:      drivers/pcmcia/pxa2xx_stargate2.c
1922
1923 ARM/INTEL XSC3 (MANZANO) ARM CORE
1924 M:      Lennert Buytenhek <kernel@wantstofly.org>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927
1928 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1929 M:      Lennert Buytenhek <kernel@wantstofly.org>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Maintained
1932
1933 ARM/LG1K ARCHITECTURE
1934 M:      Chanho Min <chanho.min@lge.com>
1935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1936 S:      Maintained
1937 F:      arch/arm64/boot/dts/lg/
1938
1939 ARM/LOGICPD PXA270 MACHINE SUPPORT
1940 M:      Lennert Buytenhek <kernel@wantstofly.org>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943
1944 ARM/LPC18XX ARCHITECTURE
1945 M:      Vladimir Zapolskiy <vz@mleia.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1949 F:      arch/arm/boot/dts/lpc43*
1950 F:      drivers/i2c/busses/i2c-lpc2k.c
1951 F:      drivers/memory/pl172.c
1952 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
1953 F:      drivers/rtc/rtc-lpc24xx.c
1954 N:      lpc18xx
1955
1956 ARM/LPC32XX SOC SUPPORT
1957 M:      Vladimir Zapolskiy <vz@mleia.com>
1958 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1961 S:      Maintained
1962 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1963 F:      arch/arm/boot/dts/lpc32*
1964 F:      arch/arm/mach-lpc32xx/
1965 F:      drivers/i2c/busses/i2c-pnx.c
1966 F:      drivers/net/ethernet/nxp/lpc_eth.c
1967 F:      drivers/usb/host/ohci-nxp.c
1968 F:      drivers/watchdog/pnx4008_wdt.c
1969 N:      lpc32xx
1970
1971 ARM/MAGICIAN MACHINE SUPPORT
1972 M:      Philipp Zabel <philipp.zabel@gmail.com>
1973 S:      Maintained
1974
1975 ARM/Marvell Dove/MV78xx0/Orion SOC support
1976 M:      Jason Cooper <jason@lakedaemon.net>
1977 M:      Andrew Lunn <andrew@lunn.ch>
1978 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1979 M:      Gregory Clement <gregory.clement@bootlin.com>
1980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1981 S:      Maintained
1982 F:      Documentation/devicetree/bindings/soc/dove/
1983 F:      arch/arm/mach-dove/
1984 F:      arch/arm/mach-mv78xx0/
1985 F:      arch/arm/mach-orion5x/
1986 F:      arch/arm/plat-orion/
1987 F:      arch/arm/boot/dts/dove*
1988 F:      arch/arm/boot/dts/orion5x*
1989 T:      git git://git.infradead.org/linux-mvebu.git
1990
1991 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
1992 M:      Jason Cooper <jason@lakedaemon.net>
1993 M:      Andrew Lunn <andrew@lunn.ch>
1994 M:      Gregory Clement <gregory.clement@bootlin.com>
1995 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      arch/arm/boot/dts/armada*
1999 F:      arch/arm/boot/dts/kirkwood*
2000 F:      arch/arm/configs/mvebu_*_defconfig
2001 F:      arch/arm/mach-mvebu/
2002 F:      arch/arm64/boot/dts/marvell/armada*
2003 F:      arch/arm64/boot/dts/marvell/cn913*
2004 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2005 F:      drivers/cpufreq/armada-8k-cpufreq.c
2006 F:      drivers/cpufreq/mvebu-cpufreq.c
2007 F:      drivers/irqchip/irq-armada-370-xp.c
2008 F:      drivers/irqchip/irq-mvebu-*
2009 F:      drivers/pinctrl/mvebu/
2010 F:      drivers/rtc/rtc-armada38x.c
2011 T:      git git://git.infradead.org/linux-mvebu.git
2012
2013 ARM/Mediatek RTC DRIVER
2014 M:      Eddie Huang <eddie.huang@mediatek.com>
2015 M:      Sean Wang <sean.wang@mediatek.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2020 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2021 F:      drivers/rtc/rtc-mt2712.c
2022 F:      drivers/rtc/rtc-mt6397.c
2023 F:      drivers/rtc/rtc-mt7622.c
2024
2025 ARM/Mediatek SoC support
2026 M:      Matthias Brugger <matthias.bgg@gmail.com>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2029 W:      https://mtk.bcnfs.org/
2030 C:      irc://chat.freenode.net/linux-mediatek
2031 S:      Maintained
2032 F:      arch/arm/boot/dts/mt6*
2033 F:      arch/arm/boot/dts/mt7*
2034 F:      arch/arm/boot/dts/mt8*
2035 F:      arch/arm/mach-mediatek/
2036 F:      arch/arm64/boot/dts/mediatek/
2037 F:      drivers/soc/mediatek/
2038 N:      mtk
2039 N:      mt[678]
2040 K:      mediatek
2041
2042 ARM/Mediatek USB3 PHY DRIVER
2043 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2045 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2046 S:      Maintained
2047 F:      drivers/phy/mediatek/
2048 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
2049
2050 ARM/Microchip (AT91) SoC support
2051 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2052 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2053 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 W:      http://www.linux4sam.org
2056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2057 S:      Supported
2058 N:      at91
2059 N:      atmel
2060 F:      arch/arm/mach-at91/
2061 F:      include/soc/at91/
2062 F:      arch/arm/boot/dts/at91*.dts
2063 F:      arch/arm/boot/dts/at91*.dtsi
2064 F:      arch/arm/boot/dts/sama*.dts
2065 F:      arch/arm/boot/dts/sama*.dtsi
2066 F:      arch/arm/include/debug/at91.S
2067 F:      drivers/memory/atmel*
2068 F:      drivers/watchdog/sama5d4_wdt.c
2069 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2070 X:      drivers/net/wireless/atmel/
2071
2072 ARM/MIOA701 MACHINE SUPPORT
2073 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 F:      arch/arm/mach-pxa/mioa701.c
2076 S:      Maintained
2077
2078 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2079 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2080 S:      Maintained
2081
2082 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2083 M:      Linus Walleij <linus.walleij@linaro.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2087 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2088 F:      arch/arm/mach-nomadik/
2089 F:      arch/arm/mach-u300/
2090 F:      arch/arm/mach-ux500/
2091 F:      drivers/soc/ux500/
2092 F:      arch/arm/boot/dts/ste-*
2093 F:      drivers/clk/clk-nomadik.c
2094 F:      drivers/clk/clk-u300.c
2095 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2096 F:      drivers/clocksource/timer-u300.c
2097 F:      drivers/dma/coh901318*
2098 F:      drivers/dma/ste_dma40*
2099 F:      drivers/hwspinlock/u8500_hsem.c
2100 F:      drivers/i2c/busses/i2c-nomadik.c
2101 F:      drivers/i2c/busses/i2c-stu300.c
2102 F:      drivers/iio/adc/ab8500-gpadc.c
2103 F:      drivers/mfd/ab3100*
2104 F:      drivers/mfd/ab8500*
2105 F:      drivers/mfd/abx500*
2106 F:      drivers/mfd/dbx500*
2107 F:      drivers/mfd/db8500*
2108 F:      drivers/pinctrl/nomadik/
2109 F:      drivers/pinctrl/pinctrl-coh901*
2110 F:      drivers/pinctrl/pinctrl-u300.c
2111 F:      drivers/rtc/rtc-ab3100.c
2112 F:      drivers/rtc/rtc-ab8500.c
2113 F:      drivers/rtc/rtc-coh901331.c
2114 F:      drivers/rtc/rtc-pl031.c
2115 F:      drivers/watchdog/coh901327_wdt.c
2116 F:      Documentation/devicetree/bindings/arm/ste-*
2117 F:      Documentation/devicetree/bindings/arm/ux500/
2118 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2120
2121 ARM/NUVOTON NPCM ARCHITECTURE
2122 M:      Avi Fishman <avifishman70@gmail.com>
2123 M:      Tomer Maimon <tmaimon77@gmail.com>
2124 M:      Tali Perry <tali.perry1@gmail.com>
2125 R:      Patrick Venture <venture@google.com>
2126 R:      Nancy Yuen <yuenn@google.com>
2127 R:      Benjamin Fair <benjaminfair@google.com>
2128 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2129 S:      Supported
2130 F:      arch/arm/mach-npcm/
2131 F:      arch/arm/boot/dts/nuvoton-npcm*
2132 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2133 F:      drivers/*/*npcm*
2134 F:      Documentation/devicetree/bindings/*/*npcm*
2135 F:      Documentation/devicetree/bindings/*/*/*npcm*
2136
2137 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2138 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2139 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2140 S:      Orphan
2141 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2142 F:      arch/arm/mach-s3c24xx/gta02.h
2143
2144 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2145 M:      Alexander Clouter <alex@digriz.org.uk>
2146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2147 W:      http://www.digriz.org.uk/ts78xx/kernel
2148 S:      Maintained
2149 F:      arch/arm/mach-orion5x/ts78xx-*
2150
2151 ARM/OXNAS platform support
2152 M:      Neil Armstrong <narmstrong@baylibre.com>
2153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2154 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2155 S:      Maintained
2156 F:      arch/arm/mach-oxnas/
2157 F:      arch/arm/boot/dts/ox8*.dts*
2158 N:      oxnas
2159
2160 ARM/PALM TREO SUPPORT
2161 M:      Tomas Cech <sleep_walker@suse.com>
2162 L:      linux-arm-kernel@lists.infradead.org
2163 W:      http://hackndev.com
2164 S:      Maintained
2165 F:      arch/arm/mach-pxa/palmtreo.*
2166
2167 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2168 M:      Marek Vasut <marek.vasut@gmail.com>
2169 L:      linux-arm-kernel@lists.infradead.org
2170 W:      http://hackndev.com
2171 S:      Maintained
2172 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2173 F:      arch/arm/mach-pxa/palmtx.c
2174 F:      arch/arm/mach-pxa/palmt5.*
2175 F:      arch/arm/mach-pxa/include/mach/palmld.h
2176 F:      arch/arm/mach-pxa/palmld.c
2177 F:      arch/arm/mach-pxa/palmte2.*
2178 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2179 F:      arch/arm/mach-pxa/palmtc.c
2180
2181 ARM/PALMZ72 SUPPORT
2182 M:      Sergey Lapin <slapin@ossfans.org>
2183 L:      linux-arm-kernel@lists.infradead.org
2184 W:      http://hackndev.com
2185 S:      Maintained
2186 F:      arch/arm/mach-pxa/palmz72.*
2187
2188 ARM/PLEB SUPPORT
2189 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2190 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2191 S:      Maintained
2192
2193 ARM/PT DIGITAL BOARD PORT
2194 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196 W:      http://www.armlinux.org.uk/
2197 S:      Maintained
2198
2199 ARM/QUALCOMM SUPPORT
2200 M:      Andy Gross <agross@kernel.org>
2201 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2202 L:      linux-arm-msm@vger.kernel.org
2203 S:      Maintained
2204 F:      Documentation/devicetree/bindings/soc/qcom/
2205 F:      Documentation/devicetree/bindings/*/qcom*
2206 F:      arch/arm/boot/dts/qcom-*.dts
2207 F:      arch/arm/boot/dts/qcom-*.dtsi
2208 F:      arch/arm/mach-qcom/
2209 F:      arch/arm64/boot/dts/qcom/
2210 F:      drivers/*/qcom/
2211 F:      drivers/*/qcom*
2212 F:      drivers/*/*/qcom/
2213 F:      drivers/*/*/qcom*
2214 F:      drivers/*/pm8???-*
2215 F:      drivers/bluetooth/btqcomsmd.c
2216 F:      drivers/clocksource/timer-qcom.c
2217 F:      drivers/extcon/extcon-qcom*
2218 F:      drivers/iommu/msm*
2219 F:      drivers/i2c/busses/i2c-qup.c
2220 F:      drivers/i2c/busses/i2c-qcom-geni.c
2221 F:      drivers/mfd/ssbi.c
2222 F:      drivers/mmc/host/mmci_qcom*
2223 F:      drivers/mmc/host/sdhci-msm.c
2224 F:      drivers/pci/controller/dwc/pcie-qcom.c
2225 F:      drivers/phy/qualcomm/
2226 F:      drivers/power/*/msm*
2227 F:      drivers/reset/reset-qcom-*
2228 F:      drivers/scsi/ufs/ufs-qcom.*
2229 F:      drivers/spi/spi-qup.c
2230 F:      drivers/spi/spi-geni-qcom.c
2231 F:      drivers/spi/spi-qcom-qspi.c
2232 F:      drivers/tty/serial/msm_serial.c
2233 F:      drivers/usb/dwc3/dwc3-qcom.c
2234 F:      include/dt-bindings/*/qcom*
2235 F:      include/linux/*/qcom*
2236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2237
2238 ARM/RADISYS ENP2611 MACHINE SUPPORT
2239 M:      Lennert Buytenhek <kernel@wantstofly.org>
2240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242
2243 ARM/RDA MICRO ARCHITECTURE
2244 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248 F:      arch/arm/boot/dts/rda8810pl-*
2249 F:      drivers/clocksource/timer-rda.c
2250 F:      drivers/gpio/gpio-rda.c
2251 F:      drivers/irqchip/irq-rda-intc.c
2252 F:      drivers/tty/serial/rda-uart.c
2253 F:      Documentation/devicetree/bindings/arm/rda.yaml
2254 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2255 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2256 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2257 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2258
2259 ARM/REALTEK ARCHITECTURE
2260 M:      Andreas Färber <afaerber@suse.de>
2261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2262 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      arch/arm64/boot/dts/realtek/
2265 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2266
2267 ARM/RENESAS ARM64 ARCHITECTURE
2268 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2269 M:      Magnus Damm <magnus.damm@gmail.com>
2270 L:      linux-renesas-soc@vger.kernel.org
2271 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2273 S:      Supported
2274 F:      arch/arm64/boot/dts/renesas/
2275 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2276 F:      drivers/soc/renesas/
2277 F:      include/linux/soc/renesas/
2278
2279 ARM/RISCPC ARCHITECTURE
2280 M:      Russell King <linux@armlinux.org.uk>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 W:      http://www.armlinux.org.uk/
2283 S:      Maintained
2284 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2285 F:      arch/arm/include/asm/hardware/ioc.h
2286 F:      arch/arm/include/asm/hardware/iomd.h
2287 F:      arch/arm/include/asm/hardware/memc.h
2288 F:      arch/arm/mach-rpc/
2289 F:      drivers/net/ethernet/8390/etherh.c
2290 F:      drivers/net/ethernet/i825xx/ether1*
2291 F:      drivers/net/ethernet/seeq/ether3*
2292 F:      drivers/scsi/arm/
2293
2294 ARM/Rockchip SoC support
2295 M:      Heiko Stuebner <heiko@sntech.de>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 L:      linux-rockchip@lists.infradead.org
2298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2299 S:      Maintained
2300 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2301 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2302 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2303 F:      arch/arm/boot/dts/rk3*
2304 F:      arch/arm/boot/dts/rv1108*
2305 F:      arch/arm/mach-rockchip/
2306 F:      drivers/clk/rockchip/
2307 F:      drivers/i2c/busses/i2c-rk3x.c
2308 F:      drivers/*/*rockchip*
2309 F:      drivers/*/*/*rockchip*
2310 F:      sound/soc/rockchip/
2311 N:      rockchip
2312
2313 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2314 M:      Kukjin Kim <kgene@kernel.org>
2315 M:      Krzysztof Kozlowski <krzk@kernel.org>
2316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2317 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2318 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2319 S:      Maintained
2320 F:      arch/arm/boot/dts/s3c*
2321 F:      arch/arm/boot/dts/s5p*
2322 F:      arch/arm/boot/dts/exynos*
2323 F:      arch/arm64/boot/dts/exynos/
2324 F:      arch/arm/plat-samsung/
2325 F:      arch/arm/mach-s3c24*/
2326 F:      arch/arm/mach-s3c64xx/
2327 F:      arch/arm/mach-s5p*/
2328 F:      arch/arm/mach-exynos*/
2329 F:      drivers/*/*s3c24*
2330 F:      drivers/*/*/*s3c24*
2331 F:      drivers/*/*s3c64xx*
2332 F:      drivers/*/*s5pv210*
2333 F:      drivers/memory/samsung/
2334 F:      drivers/soc/samsung/
2335 F:      drivers/tty/serial/samsung*
2336 F:      include/linux/soc/samsung/
2337 F:      Documentation/arm/samsung/
2338 F:      Documentation/devicetree/bindings/arm/samsung/
2339 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2340 N:      exynos
2341
2342 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2343 M:      Kyungmin Park <kyungmin.park@samsung.com>
2344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2345 S:      Maintained
2346 F:      arch/arm/mach-s5pv210/
2347
2348 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2349 M:      Kyungmin Park <kyungmin.park@samsung.com>
2350 M:      Kamil Debski <kamil@wypas.org>
2351 M:      Andrzej Hajda <a.hajda@samsung.com>
2352 L:      linux-arm-kernel@lists.infradead.org
2353 L:      linux-media@vger.kernel.org
2354 S:      Maintained
2355 F:      drivers/media/platform/s5p-g2d/
2356
2357 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2358 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2359 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2360 L:      linux-media@vger.kernel.org
2361 S:      Maintained
2362 F:      drivers/media/platform/s5p-cec/
2363 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2364
2365 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2366 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2367 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2368 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2369 L:      linux-arm-kernel@lists.infradead.org
2370 L:      linux-media@vger.kernel.org
2371 S:      Maintained
2372 F:      drivers/media/platform/s5p-jpeg/
2373
2374 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2375 M:      Kyungmin Park <kyungmin.park@samsung.com>
2376 M:      Kamil Debski <kamil@wypas.org>
2377 M:      Jeongtae Park <jtp.park@samsung.com>
2378 M:      Andrzej Hajda <a.hajda@samsung.com>
2379 L:      linux-arm-kernel@lists.infradead.org
2380 L:      linux-media@vger.kernel.org
2381 S:      Maintained
2382 F:      drivers/media/platform/s5p-mfc/
2383
2384 ARM/SHMOBILE ARM ARCHITECTURE
2385 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2386 M:      Magnus Damm <magnus.damm@gmail.com>
2387 L:      linux-renesas-soc@vger.kernel.org
2388 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2390 S:      Supported
2391 F:      arch/arm/boot/dts/emev2*
2392 F:      arch/arm/boot/dts/gr-peach*
2393 F:      arch/arm/boot/dts/iwg20d-q7*
2394 F:      arch/arm/boot/dts/r7s*
2395 F:      arch/arm/boot/dts/r8a*
2396 F:      arch/arm/boot/dts/r9a*
2397 F:      arch/arm/boot/dts/sh*
2398 F:      arch/arm/configs/shmobile_defconfig
2399 F:      arch/arm/include/debug/renesas-scif.S
2400 F:      arch/arm/mach-shmobile/
2401 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2402 F:      drivers/soc/renesas/
2403 F:      include/linux/soc/renesas/
2404
2405 ARM/SOCFPGA ARCHITECTURE
2406 M:      Dinh Nguyen <dinguyen@kernel.org>
2407 S:      Maintained
2408 F:      arch/arm/mach-socfpga/
2409 F:      arch/arm/boot/dts/socfpga*
2410 F:      arch/arm/configs/socfpga_defconfig
2411 F:      arch/arm64/boot/dts/altera/
2412 F:      arch/arm64/boot/dts/intel/
2413 W:      http://www.rocketboards.org
2414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2415
2416 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2417 M:      Dinh Nguyen <dinguyen@kernel.org>
2418 S:      Maintained
2419 F:      drivers/clk/socfpga/
2420
2421 ARM/SOCFPGA EDAC SUPPORT
2422 M:      Thor Thayer <thor.thayer@linux.intel.com>
2423 S:      Maintained
2424 F:      drivers/edac/altera_edac.
2425
2426 ARM/SPREADTRUM SoC SUPPORT
2427 M:      Orson Zhai <orsonzhai@gmail.com>
2428 M:      Baolin Wang <baolin.wang7@gmail.com>
2429 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2430 S:      Maintained
2431 F:      arch/arm64/boot/dts/sprd
2432 N:      sprd
2433 N:      sc27xx
2434 N:      sc2731
2435
2436 ARM/STI ARCHITECTURE
2437 M:      Patrice Chotard <patrice.chotard@st.com>
2438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 W:      http://www.stlinux.com
2440 S:      Maintained
2441 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2442 F:      arch/arm/mach-sti/
2443 F:      arch/arm/boot/dts/sti*
2444 F:      drivers/char/hw_random/st-rng.c
2445 F:      drivers/clocksource/arm_global_timer.c
2446 F:      drivers/clocksource/clksrc_st_lpc.c
2447 F:      drivers/cpufreq/sti-cpufreq.c
2448 F:      drivers/dma/st_fdma*
2449 F:      drivers/i2c/busses/i2c-st.c
2450 F:      drivers/media/rc/st_rc.c
2451 F:      drivers/media/platform/sti/c8sectpfe/
2452 F:      drivers/mmc/host/sdhci-st.c
2453 F:      drivers/phy/st/phy-miphy28lp.c
2454 F:      drivers/phy/st/phy-stih407-usb.c
2455 F:      drivers/pinctrl/pinctrl-st.c
2456 F:      drivers/remoteproc/st_remoteproc.c
2457 F:      drivers/remoteproc/st_slim_rproc.c
2458 F:      drivers/reset/sti/
2459 F:      drivers/rtc/rtc-st-lpc.c
2460 F:      drivers/tty/serial/st-asc.c
2461 F:      drivers/usb/dwc3/dwc3-st.c
2462 F:      drivers/usb/host/ehci-st.c
2463 F:      drivers/usb/host/ohci-st.c
2464 F:      drivers/watchdog/st_lpc_wdt.c
2465 F:      drivers/ata/ahci_st.c
2466 F:      include/linux/remoteproc/st_slim_rproc.h
2467
2468 ARM/STM32 ARCHITECTURE
2469 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2470 M:      Alexandre Torgue <alexandre.torgue@st.com>
2471 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2473 S:      Maintained
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2475 N:      stm32
2476 N:      stm
2477 F:      arch/arm/boot/dts/stm32*
2478 F:      arch/arm/mach-stm32/
2479 F:      drivers/clocksource/armv7m_systick.c
2480
2481 ARM/Synaptics SoC support
2482 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2483 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2484 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2485 S:      Maintained
2486 F:      arch/arm/mach-berlin/
2487 F:      arch/arm/boot/dts/berlin*
2488 F:      arch/arm64/boot/dts/synaptics/
2489
2490 ARM/TANGO ARCHITECTURE
2491 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2492 M:      Mans Rullgard <mans@mansr.com>
2493 L:      linux-arm-kernel@lists.infradead.org
2494 S:      Odd Fixes
2495 N:      tango
2496
2497 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2498 M:      Lennert Buytenhek <kernel@wantstofly.org>
2499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2500 S:      Maintained
2501
2502 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2503 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2504 L:      linux-tegra@vger.kernel.org
2505 L:      linux-media@vger.kernel.org
2506 S:      Maintained
2507 F:      drivers/media/platform/tegra-cec/
2508 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2509
2510 ARM/TETON BGA MACHINE SUPPORT
2511 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2513 S:      Maintained
2514
2515 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2516 M:      Santosh Shilimkar <ssantosh@kernel.org>
2517 L:      linux-kernel@vger.kernel.org
2518 S:      Maintained
2519 F:      drivers/memory/*emif*
2520
2521 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2522 M:      Tero Kristo <t-kristo@ti.com>
2523 M:      Nishanth Menon <nm@ti.com>
2524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2525 S:      Supported
2526 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2527 F:      arch/arm64/boot/dts/ti/Makefile
2528 F:      arch/arm64/boot/dts/ti/k3-*
2529 F:      include/dt-bindings/pinctrl/k3.h
2530
2531 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2532 M:      Santosh Shilimkar <ssantosh@kernel.org>
2533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2534 S:      Maintained
2535 F:      arch/arm/mach-keystone/
2536 F:      arch/arm/boot/dts/keystone-*
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2538
2539 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2540 M:      Santosh Shilimkar <ssantosh@kernel.org>
2541 L:      linux-kernel@vger.kernel.org
2542 S:      Maintained
2543 F:      drivers/clk/keystone/
2544
2545 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2546 M:      Santosh Shilimkar <ssantosh@kernel.org>
2547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2548 L:      linux-kernel@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/clocksource/timer-keystone.c
2551
2552 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2553 M:      Santosh Shilimkar <ssantosh@kernel.org>
2554 L:      linux-kernel@vger.kernel.org
2555 S:      Maintained
2556 F:      drivers/power/reset/keystone-reset.c
2557
2558 ARM/THECUS N2100 MACHINE SUPPORT
2559 M:      Lennert Buytenhek <kernel@wantstofly.org>
2560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2561 S:      Maintained
2562
2563 ARM/TOSA MACHINE SUPPORT
2564 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2565 M:      Dirk Opfer <dirk@opfer-online.de>
2566 S:      Maintained
2567
2568 ARM/UNIPHIER ARCHITECTURE
2569 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2572 S:      Maintained
2573 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2574 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2575 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2576 F:      arch/arm/boot/dts/uniphier*
2577 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2578 F:      arch/arm/mach-uniphier/
2579 F:      arch/arm/mm/cache-uniphier.c
2580 F:      arch/arm64/boot/dts/socionext/uniphier*
2581 F:      drivers/bus/uniphier-system-bus.c
2582 F:      drivers/clk/uniphier/
2583 F:      drivers/dma/uniphier-mdmac.c
2584 F:      drivers/gpio/gpio-uniphier.c
2585 F:      drivers/i2c/busses/i2c-uniphier*
2586 F:      drivers/irqchip/irq-uniphier-aidet.c
2587 F:      drivers/mmc/host/uniphier-sd.c
2588 F:      drivers/pinctrl/uniphier/
2589 F:      drivers/reset/reset-uniphier.c
2590 F:      drivers/tty/serial/8250/8250_uniphier.c
2591 N:      uniphier
2592
2593 Ux500 CLOCK DRIVERS
2594 M:      Ulf Hansson <ulf.hansson@linaro.org>
2595 L:      linux-clk@vger.kernel.org
2596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2597 S:      Maintained
2598 F:      drivers/clk/ux500/
2599
2600 ARM/VERSATILE EXPRESS PLATFORM
2601 M:      Liviu Dudau <liviu.dudau@arm.com>
2602 M:      Sudeep Holla <sudeep.holla@arm.com>
2603 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2605 S:      Maintained
2606 F:      arch/arm/boot/dts/vexpress*
2607 F:      arch/arm64/boot/dts/arm/
2608 F:      arch/arm/mach-vexpress/
2609 F:      */*/vexpress*
2610 F:      */*/*/vexpress*
2611 F:      drivers/clk/versatile/clk-vexpress-osc.c
2612 F:      drivers/clocksource/timer-versatile.c
2613 N:      mps2
2614
2615 ARM/VFP SUPPORT
2616 M:      Russell King <linux@armlinux.org.uk>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 W:      http://www.armlinux.org.uk/
2619 S:      Maintained
2620 F:      arch/arm/vfp/
2621
2622 ARM/VOIPAC PXA270 SUPPORT
2623 M:      Marek Vasut <marek.vasut@gmail.com>
2624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2625 S:      Maintained
2626 F:      arch/arm/mach-pxa/vpac270.c
2627 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2628
2629 ARM/VT8500 ARM ARCHITECTURE
2630 M:      Tony Prisk <linux@prisktech.co.nz>
2631 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2632 S:      Maintained
2633 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2634 F:      arch/arm/mach-vt8500/
2635 F:      drivers/clocksource/timer-vt8500.c
2636 F:      drivers/i2c/busses/i2c-wmt.c
2637 F:      drivers/mmc/host/wmt-sdmmc.c
2638 F:      drivers/pwm/pwm-vt8500.c
2639 F:      drivers/rtc/rtc-vt8500.c
2640 F:      drivers/tty/serial/vt8500_serial.c
2641 F:      drivers/usb/host/ehci-platform.c
2642 F:      drivers/usb/host/uhci-platform.c
2643 F:      drivers/video/fbdev/vt8500lcdfb.*
2644 F:      drivers/video/fbdev/wm8505fb*
2645 F:      drivers/video/fbdev/wmt_ge_rops.*
2646
2647 ARM/ZIPIT Z2 SUPPORT
2648 M:      Marek Vasut <marek.vasut@gmail.com>
2649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2650 S:      Maintained
2651 F:      arch/arm/mach-pxa/z2.c
2652 F:      arch/arm/mach-pxa/include/mach/z2.h
2653
2654 ARM/ZTE ARCHITECTURE
2655 M:      Jun Nie <jun.nie@linaro.org>
2656 M:      Shawn Guo <shawnguo@kernel.org>
2657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2658 S:      Maintained
2659 F:      arch/arm/boot/dts/zx2967*
2660 F:      arch/arm/mach-zx/
2661 F:      arch/arm64/boot/dts/zte/
2662 F:      drivers/clk/zte/
2663 F:      drivers/dma/zx_dma.c
2664 F:      drivers/gpio/gpio-zx.c
2665 F:      drivers/i2c/busses/i2c-zx2967.c
2666 F:      drivers/mmc/host/dw_mmc-zx.*
2667 F:      drivers/pinctrl/zte/
2668 F:      drivers/soc/zte/
2669 F:      drivers/thermal/zx2967_thermal.c
2670 F:      drivers/watchdog/zx2967_wdt.c
2671 F:      Documentation/devicetree/bindings/arm/zte.yaml
2672 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2673 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2674 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2675 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2676 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2677 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2678 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2679 F:      Documentation/devicetree/bindings/soc/zte/
2680 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2681 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2682 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2683 F:      include/dt-bindings/clock/zx2967*.h
2684 F:      include/dt-bindings/soc/zte,*.h
2685 F:      sound/soc/codecs/zx_aud96p22.c
2686 F:      sound/soc/zte/
2687
2688 ARM/ZYNQ ARCHITECTURE
2689 M:      Michal Simek <michal.simek@xilinx.com>
2690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2691 W:      http://wiki.xilinx.com
2692 T:      git https://github.com/Xilinx/linux-xlnx.git
2693 S:      Supported
2694 F:      arch/arm/mach-zynq/
2695 F:      drivers/cpuidle/cpuidle-zynq.c
2696 F:      drivers/block/xsysace.c
2697 N:      zynq
2698 N:      xilinx
2699 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2700 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2701 F:      drivers/clocksource/timer-cadence-ttc.c
2702 F:      drivers/i2c/busses/i2c-cadence.c
2703 F:      drivers/mmc/host/sdhci-of-arasan.c
2704 F:      drivers/edac/synopsys_edac.c
2705 F:      drivers/i2c/busses/i2c-xiic.c
2706
2707 ARM64 PORT (AARCH64 ARCHITECTURE)
2708 M:      Catalin Marinas <catalin.marinas@arm.com>
2709 M:      Will Deacon <will@kernel.org>
2710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2712 S:      Maintained
2713 F:      arch/arm64/
2714 X:      arch/arm64/boot/dts/
2715 F:      Documentation/arm64/
2716 F:      tools/testing/selftests/arm64/
2717
2718 AS3645A LED FLASH CONTROLLER DRIVER
2719 M:      Sakari Ailus <sakari.ailus@iki.fi>
2720 L:      linux-leds@vger.kernel.org
2721 S:      Maintained
2722 F:      drivers/leds/leds-as3645a.c
2723
2724 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2725 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2726 L:      linux-media@vger.kernel.org
2727 T:      git git://linuxtv.org/media_tree.git
2728 S:      Maintained
2729 F:      drivers/media/i2c/ak7375.c
2730 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2731
2732 ASAHI KASEI AK8974 DRIVER
2733 M:      Linus Walleij <linus.walleij@linaro.org>
2734 L:      linux-iio@vger.kernel.org
2735 W:      http://www.akm.com/
2736 S:      Supported
2737 F:      drivers/iio/magnetometer/ak8974.c
2738
2739 ASC7621 HARDWARE MONITOR DRIVER
2740 M:      George Joseph <george.joseph@fairview5.com>
2741 L:      linux-hwmon@vger.kernel.org
2742 S:      Maintained
2743 F:      Documentation/hwmon/asc7621.rst
2744 F:      drivers/hwmon/asc7621.c
2745
2746 ASPEED PINCTRL DRIVERS
2747 M:      Andrew Jeffery <andrew@aj.id.au>
2748 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2749 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2750 L:      linux-gpio@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2753 F:      drivers/pinctrl/aspeed/
2754
2755 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2756 M:      Eddie James <eajames@linux.ibm.com>
2757 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2758 S:      Maintained
2759 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2760 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2761 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2762
2763 ASPEED VIDEO ENGINE DRIVER
2764 M:      Eddie James <eajames@linux.ibm.com>
2765 L:      linux-media@vger.kernel.org
2766 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2767 S:      Maintained
2768 F:      drivers/media/platform/aspeed-video.c
2769 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2770
2771 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2772 M:      Corentin Chary <corentin.chary@gmail.com>
2773 L:      acpi4asus-user@lists.sourceforge.net
2774 L:      platform-driver-x86@vger.kernel.org
2775 S:      Maintained
2776 W:      http://acpi4asus.sf.net
2777 F:      drivers/platform/x86/asus*.c
2778 F:      drivers/platform/x86/eeepc*.c
2779
2780 ASUS WIRELESS RADIO CONTROL DRIVER
2781 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2782 L:      platform-driver-x86@vger.kernel.org
2783 S:      Maintained
2784 F:      drivers/platform/x86/asus-wireless.c
2785
2786 ASYMMETRIC KEYS
2787 M:      David Howells <dhowells@redhat.com>
2788 L:      keyrings@vger.kernel.org
2789 S:      Maintained
2790 F:      Documentation/crypto/asymmetric-keys.txt
2791 F:      include/linux/verification.h
2792 F:      include/crypto/public_key.h
2793 F:      include/crypto/pkcs7.h
2794 F:      crypto/asymmetric_keys/
2795
2796 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2797 R:      Dan Williams <dan.j.williams@intel.com>
2798 W:      http://sourceforge.net/projects/xscaleiop
2799 S:      Odd fixes
2800 F:      Documentation/crypto/async-tx-api.txt
2801 F:      crypto/async_tx/
2802 F:      drivers/dma/
2803 F:      include/linux/dmaengine.h
2804 F:      include/linux/async_tx.h
2805
2806 AT24 EEPROM DRIVER
2807 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2808 L:      linux-i2c@vger.kernel.org
2809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2810 S:      Maintained
2811 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2812 F:      drivers/misc/eeprom/at24.c
2813
2814 ATA OVER ETHERNET (AOE) DRIVER
2815 M:      "Justin Sanders" <justin@coraid.com>
2816 W:      http://www.openaoe.org/
2817 S:      Supported
2818 F:      Documentation/admin-guide/aoe/
2819 F:      drivers/block/aoe/
2820
2821 ATHEROS 71XX/9XXX GPIO DRIVER
2822 M:      Alban Bedel <albeu@free.fr>
2823 S:      Maintained
2824 W:      https://github.com/AlbanBedel/linux
2825 T:      git git://github.com/AlbanBedel/linux
2826 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2827 F:      drivers/gpio/gpio-ath79.c
2828
2829 ATHEROS 71XX/9XXX USB PHY DRIVER
2830 M:      Alban Bedel <albeu@free.fr>
2831 W:      https://github.com/AlbanBedel/linux
2832 T:      git git://github.com/AlbanBedel/linux
2833 S:      Maintained
2834 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2835 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2836
2837 ATHEROS ATH GENERIC UTILITIES
2838 M:      Kalle Valo <kvalo@codeaurora.org>
2839 L:      linux-wireless@vger.kernel.org
2840 S:      Supported
2841 F:      drivers/net/wireless/ath/*
2842
2843 ATHEROS ATH5K WIRELESS DRIVER
2844 M:      Jiri Slaby <jirislaby@gmail.com>
2845 M:      Nick Kossifidis <mickflemm@gmail.com>
2846 M:      Luis Chamberlain <mcgrof@kernel.org>
2847 L:      linux-wireless@vger.kernel.org
2848 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2849 S:      Maintained
2850 F:      drivers/net/wireless/ath/ath5k/
2851
2852 ATHEROS ATH6KL WIRELESS DRIVER
2853 M:      Kalle Valo <kvalo@codeaurora.org>
2854 L:      linux-wireless@vger.kernel.org
2855 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2857 S:      Supported
2858 F:      drivers/net/wireless/ath/ath6kl/
2859
2860 ATI_REMOTE2 DRIVER
2861 M:      Ville Syrjala <syrjala@sci.fi>
2862 S:      Maintained
2863 F:      drivers/input/misc/ati_remote2.c
2864
2865 ATK0110 HWMON DRIVER
2866 M:      Luca Tettamanti <kronos.it@gmail.com>
2867 L:      linux-hwmon@vger.kernel.org
2868 S:      Maintained
2869 F:      drivers/hwmon/asus_atk0110.c
2870
2871 ATLX ETHERNET DRIVERS
2872 M:      Jay Cliburn <jcliburn@gmail.com>
2873 M:      Chris Snook <chris.snook@gmail.com>
2874 L:      netdev@vger.kernel.org
2875 W:      http://sourceforge.net/projects/atl1
2876 W:      http://atl1.sourceforge.net
2877 S:      Maintained
2878 F:      drivers/net/ethernet/atheros/
2879
2880 ATM
2881 M:      Chas Williams <3chas3@gmail.com>
2882 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2883 L:      netdev@vger.kernel.org
2884 W:      http://linux-atm.sourceforge.net
2885 S:      Maintained
2886 F:      drivers/atm/
2887 F:      include/linux/atm*
2888 F:      include/uapi/linux/atm*
2889
2890 ATMEL MACB ETHERNET DRIVER
2891 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2892 S:      Supported
2893 F:      drivers/net/ethernet/cadence/
2894
2895 ATMEL MAXTOUCH DRIVER
2896 M:      Nick Dyer <nick@shmanahar.org>
2897 T:      git git://github.com/ndyer/linux.git
2898 S:      Maintained
2899 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2900 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2901
2902 ATMEL WIRELESS DRIVER
2903 M:      Simon Kelley <simon@thekelleys.org.uk>
2904 L:      linux-wireless@vger.kernel.org
2905 W:      http://www.thekelleys.org.uk/atmel
2906 W:      http://atmelwlandriver.sourceforge.net/
2907 S:      Maintained
2908 F:      drivers/net/wireless/atmel/atmel*
2909
2910 ATOMIC INFRASTRUCTURE
2911 M:      Will Deacon <will@kernel.org>
2912 M:      Peter Zijlstra <peterz@infradead.org>
2913 R:      Boqun Feng <boqun.feng@gmail.com>
2914 L:      linux-kernel@vger.kernel.org
2915 S:      Maintained
2916 F:      arch/*/include/asm/atomic*.h
2917 F:      include/*/atomic*.h
2918 F:      scripts/atomic/
2919
2920 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2921 M:      Bradley Grove <linuxdrivers@attotech.com>
2922 L:      linux-scsi@vger.kernel.org
2923 W:      http://www.attotech.com
2924 S:      Supported
2925 F:      drivers/scsi/esas2r
2926
2927 ATUSB IEEE 802.15.4 RADIO DRIVER
2928 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2929 L:      linux-wpan@vger.kernel.org
2930 S:      Maintained
2931 F:      drivers/net/ieee802154/atusb.c
2932 F:      drivers/net/ieee802154/atusb.h
2933 F:      drivers/net/ieee802154/at86rf230.h
2934
2935 AUDIT SUBSYSTEM
2936 M:      Paul Moore <paul@paul-moore.com>
2937 M:      Eric Paris <eparis@redhat.com>
2938 L:      linux-audit@redhat.com (moderated for non-subscribers)
2939 W:      https://github.com/linux-audit
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2941 S:      Supported
2942 F:      include/linux/audit.h
2943 F:      include/uapi/linux/audit.h
2944 F:      kernel/audit*
2945
2946 AUXILIARY DISPLAY DRIVERS
2947 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2948 S:      Maintained
2949 F:      drivers/auxdisplay/
2950 F:      include/linux/cfag12864b.h
2951
2952 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2953 M:      Andreas Klinger <ak@it-klinger.de>
2954 L:      linux-iio@vger.kernel.org
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2957 F:      drivers/iio/adc/hx711.c
2958
2959 AX.25 NETWORK LAYER
2960 M:      Ralf Baechle <ralf@linux-mips.org>
2961 L:      linux-hams@vger.kernel.org
2962 W:      http://www.linux-ax25.org/
2963 S:      Maintained
2964 F:      include/uapi/linux/ax25.h
2965 F:      include/net/ax25.h
2966 F:      net/ax25/
2967
2968 AXENTIA ARM DEVICES
2969 M:      Peter Rosin <peda@axentia.se>
2970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2971 S:      Maintained
2972 F:      arch/arm/boot/dts/at91-linea.dtsi
2973 F:      arch/arm/boot/dts/at91-natte.dtsi
2974 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2975 F:      arch/arm/boot/dts/at91-tse850-3.dts
2976
2977 AXENTIA ASOC DRIVERS
2978 M:      Peter Rosin <peda@axentia.se>
2979 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2980 S:      Maintained
2981 F:      Documentation/devicetree/bindings/sound/axentia,*
2982 F:      sound/soc/atmel/tse850-pcm5142.c
2983
2984 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
2985 M:      Nuno Sá <nuno.sa@analog.com>
2986 W:      http://ez.analog.com/community/linux-device-drivers
2987 L:      linux-hwmon@vger.kernel.org
2988 S:      Supported
2989 F:      drivers/hwmon/axi-fan-control.c
2990 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
2991
2992 AXXIA I2C CONTROLLER
2993 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2994 L:      linux-i2c@vger.kernel.org
2995 S:      Maintained
2996 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2997 F:      drivers/i2c/busses/i2c-axxia.c
2998
2999 AZ6007 DVB DRIVER
3000 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3001 L:      linux-media@vger.kernel.org
3002 W:      https://linuxtv.org
3003 T:      git git://linuxtv.org/media_tree.git
3004 S:      Maintained
3005 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3006
3007 AZTECH FM RADIO RECEIVER DRIVER
3008 M:      Hans Verkuil <hverkuil@xs4all.nl>
3009 L:      linux-media@vger.kernel.org
3010 T:      git git://linuxtv.org/media_tree.git
3011 W:      https://linuxtv.org
3012 S:      Maintained
3013 F:      drivers/media/radio/radio-aztech*
3014
3015 B43 WIRELESS DRIVER
3016 L:      linux-wireless@vger.kernel.org
3017 L:      b43-dev@lists.infradead.org
3018 W:      http://wireless.kernel.org/en/users/Drivers/b43
3019 S:      Odd Fixes
3020 F:      drivers/net/wireless/broadcom/b43/
3021
3022 B43LEGACY WIRELESS DRIVER
3023 M:      Larry Finger <Larry.Finger@lwfinger.net>
3024 L:      linux-wireless@vger.kernel.org
3025 L:      b43-dev@lists.infradead.org
3026 W:      http://wireless.kernel.org/en/users/Drivers/b43
3027 S:      Maintained
3028 F:      drivers/net/wireless/broadcom/b43legacy/
3029
3030 BACKLIGHT CLASS/SUBSYSTEM
3031 M:      Lee Jones <lee.jones@linaro.org>
3032 M:      Daniel Thompson <daniel.thompson@linaro.org>
3033 M:      Jingoo Han <jingoohan1@gmail.com>
3034 L:      dri-devel@lists.freedesktop.org
3035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3036 S:      Maintained
3037 F:      drivers/video/backlight/
3038 F:      include/linux/backlight.h
3039 F:      include/linux/pwm_backlight.h
3040 F:      Documentation/devicetree/bindings/leds/backlight
3041 F:      Documentation/ABI/stable/sysfs-class-backlight
3042 F:      Documentation/ABI/testing/sysfs-class-backlight
3043
3044 BATMAN ADVANCED
3045 M:      Marek Lindner <mareklindner@neomailbox.ch>
3046 M:      Simon Wunderlich <sw@simonwunderlich.de>
3047 M:      Antonio Quartulli <a@unstable.cc>
3048 M:      Sven Eckelmann <sven@narfation.org>
3049 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3050 W:      https://www.open-mesh.org/
3051 B:      https://www.open-mesh.org/projects/batman-adv/issues
3052 C:      irc://chat.freenode.net/batman
3053 Q:      https://patchwork.open-mesh.org/project/batman/list/
3054 T:      git https://git.open-mesh.org/linux-merge.git
3055 S:      Maintained
3056 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
3057 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
3058 F:      Documentation/networking/batman-adv.rst
3059 F:      include/uapi/linux/batadv_packet.h
3060 F:      include/uapi/linux/batman_adv.h
3061 F:      net/batman-adv/
3062
3063 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3064 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3065 L:      linux-hams@vger.kernel.org
3066 W:      http://www.baycom.org/~tom/ham/ham.html
3067 S:      Maintained
3068 F:      drivers/net/hamradio/baycom*
3069
3070 BCACHE (BLOCK LAYER CACHE)
3071 M:      Coly Li <colyli@suse.de>
3072 M:      Kent Overstreet <kent.overstreet@gmail.com>
3073 L:      linux-bcache@vger.kernel.org
3074 W:      http://bcache.evilpiepirate.org
3075 C:      irc://irc.oftc.net/bcache
3076 S:      Maintained
3077 F:      drivers/md/bcache/
3078
3079 BDISP ST MEDIA DRIVER
3080 M:      Fabien Dessenne <fabien.dessenne@st.com>
3081 L:      linux-media@vger.kernel.org
3082 T:      git git://linuxtv.org/media_tree.git
3083 W:      https://linuxtv.org
3084 S:      Supported
3085 F:      drivers/media/platform/sti/bdisp
3086
3087 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3088 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3089 L:      netdev@vger.kernel.org
3090 S:      Maintained
3091 F:      drivers/net/ethernet/ec_bhf.c
3092
3093 BEFS FILE SYSTEM
3094 M:      Luis de Bethencourt <luisbg@kernel.org>
3095 M:      Salah Triki <salah.triki@gmail.com>
3096 S:      Maintained
3097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3098 F:      Documentation/filesystems/befs.rst
3099 F:      fs/befs/
3100
3101 BFQ I/O SCHEDULER
3102 M:      Paolo Valente <paolo.valente@linaro.org>
3103 M:      Jens Axboe <axboe@kernel.dk>
3104 L:      linux-block@vger.kernel.org
3105 S:      Maintained
3106 F:      block/bfq-*
3107 F:      Documentation/block/bfq-iosched.rst
3108
3109 BFS FILE SYSTEM
3110 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3111 S:      Maintained
3112 F:      Documentation/filesystems/bfs.rst
3113 F:      fs/bfs/
3114 F:      include/uapi/linux/bfs_fs.h
3115
3116 BLINKM RGB LED DRIVER
3117 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3118 S:      Maintained
3119 F:      drivers/leds/leds-blinkm.c
3120
3121 BLOCK LAYER
3122 M:      Jens Axboe <axboe@kernel.dk>
3123 L:      linux-block@vger.kernel.org
3124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3125 S:      Maintained
3126 F:      block/
3127 F:      drivers/block/
3128 F:      kernel/trace/blktrace.c
3129 F:      lib/sbitmap.c
3130
3131 BLOCK2MTD DRIVER
3132 M:      Joern Engel <joern@lazybastard.org>
3133 L:      linux-mtd@lists.infradead.org
3134 S:      Maintained
3135 F:      drivers/mtd/devices/block2mtd.c
3136
3137 BLUETOOTH DRIVERS
3138 M:      Marcel Holtmann <marcel@holtmann.org>
3139 M:      Johan Hedberg <johan.hedberg@gmail.com>
3140 L:      linux-bluetooth@vger.kernel.org
3141 W:      http://www.bluez.org/
3142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3144 S:      Maintained
3145 F:      drivers/bluetooth/
3146
3147 BLUETOOTH SUBSYSTEM
3148 M:      Marcel Holtmann <marcel@holtmann.org>
3149 M:      Johan Hedberg <johan.hedberg@gmail.com>
3150 L:      linux-bluetooth@vger.kernel.org
3151 W:      http://www.bluez.org/
3152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3154 S:      Maintained
3155 F:      net/bluetooth/
3156 F:      include/net/bluetooth/
3157
3158 BONDING DRIVER
3159 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3160 M:      Veaceslav Falico <vfalico@gmail.com>
3161 M:      Andy Gospodarek <andy@greyhouse.net>
3162 L:      netdev@vger.kernel.org
3163 W:      http://sourceforge.net/projects/bonding/
3164 S:      Supported
3165 F:      drivers/net/bonding/
3166 F:      include/uapi/linux/if_bonding.h
3167
3168 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3169 M:      Dan Robertson <dan@dlrobertson.com>
3170 L:      linux-iio@vger.kernel.org
3171 S:      Maintained
3172 F:      drivers/iio/accel/bma400*
3173 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3174
3175 BPF (Safe dynamic programs and tools)
3176 M:      Alexei Starovoitov <ast@kernel.org>
3177 M:      Daniel Borkmann <daniel@iogearbox.net>
3178 R:      Martin KaFai Lau <kafai@fb.com>
3179 R:      Song Liu <songliubraving@fb.com>
3180 R:      Yonghong Song <yhs@fb.com>
3181 R:      Andrii Nakryiko <andriin@fb.com>
3182 R:      John Fastabend <john.fastabend@gmail.com>
3183 R:      KP Singh <kpsingh@chromium.org>
3184 L:      netdev@vger.kernel.org
3185 L:      bpf@vger.kernel.org
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3188 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3189 S:      Supported
3190 F:      arch/*/net/*
3191 F:      Documentation/networking/filter.txt
3192 F:      Documentation/bpf/
3193 F:      include/linux/bpf*
3194 F:      include/linux/filter.h
3195 F:      include/trace/events/xdp.h
3196 F:      include/uapi/linux/bpf*
3197 F:      include/uapi/linux/filter.h
3198 F:      kernel/bpf/
3199 F:      kernel/trace/bpf_trace.c
3200 F:      lib/test_bpf.c
3201 F:      net/bpf/
3202 F:      net/core/filter.c
3203 F:      net/sched/act_bpf.c
3204 F:      net/sched/cls_bpf.c
3205 F:      samples/bpf/
3206 F:      tools/bpf/
3207 F:      tools/lib/bpf/
3208 F:      tools/testing/selftests/bpf/
3209 K:      bpf
3210 N:      bpf
3211
3212 BPF JIT for ARM
3213 M:      Shubham Bansal <illusionist.neo@gmail.com>
3214 L:      netdev@vger.kernel.org
3215 L:      bpf@vger.kernel.org
3216 S:      Maintained
3217 F:      arch/arm/net/
3218
3219 BPF JIT for ARM64
3220 M:      Daniel Borkmann <daniel@iogearbox.net>
3221 M:      Alexei Starovoitov <ast@kernel.org>
3222 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3223 L:      netdev@vger.kernel.org
3224 L:      bpf@vger.kernel.org
3225 S:      Supported
3226 F:      arch/arm64/net/
3227
3228 BPF JIT for MIPS (32-BIT AND 64-BIT)
3229 M:      Paul Burton <paulburton@kernel.org>
3230 L:      netdev@vger.kernel.org
3231 L:      bpf@vger.kernel.org
3232 S:      Maintained
3233 F:      arch/mips/net/
3234
3235 BPF JIT for NFP NICs
3236 M:      Jakub Kicinski <kuba@kernel.org>
3237 L:      netdev@vger.kernel.org
3238 L:      bpf@vger.kernel.org
3239 S:      Supported
3240 F:      drivers/net/ethernet/netronome/nfp/bpf/
3241
3242 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3243 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3244 M:      Sandipan Das <sandipan@linux.ibm.com>
3245 L:      netdev@vger.kernel.org
3246 L:      bpf@vger.kernel.org
3247 S:      Maintained
3248 F:      arch/powerpc/net/
3249
3250 BPF JIT for RISC-V (32-bit)
3251 M:      Luke Nelson <luke.r.nels@gmail.com>
3252 M:      Xi Wang <xi.wang@gmail.com>
3253 L:      netdev@vger.kernel.org
3254 L:      bpf@vger.kernel.org
3255 S:      Maintained
3256 F:      arch/riscv/net/
3257 X:      arch/riscv/net/bpf_jit_comp64.c
3258
3259 BPF JIT for RISC-V (64-bit)
3260 M:      Björn Töpel <bjorn.topel@gmail.com>
3261 L:      netdev@vger.kernel.org
3262 L:      bpf@vger.kernel.org
3263 S:      Maintained
3264 F:      arch/riscv/net/
3265 X:      arch/riscv/net/bpf_jit_comp32.c
3266
3267 BPF JIT for S390
3268 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3269 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3270 M:      Vasily Gorbik <gor@linux.ibm.com>
3271 L:      netdev@vger.kernel.org
3272 L:      bpf@vger.kernel.org
3273 S:      Maintained
3274 F:      arch/s390/net/
3275 X:      arch/s390/net/pnet.c
3276
3277 BPF JIT for SPARC (32-BIT AND 64-BIT)
3278 M:      David S. Miller <davem@davemloft.net>
3279 L:      netdev@vger.kernel.org
3280 L:      bpf@vger.kernel.org
3281 S:      Maintained
3282 F:      arch/sparc/net/
3283
3284 BPF JIT for X86 32-BIT
3285 M:      Wang YanQing <udknight@gmail.com>
3286 L:      netdev@vger.kernel.org
3287 L:      bpf@vger.kernel.org
3288 S:      Maintained
3289 F:      arch/x86/net/bpf_jit_comp32.c
3290
3291 BPF JIT for X86 64-BIT
3292 M:      Alexei Starovoitov <ast@kernel.org>
3293 M:      Daniel Borkmann <daniel@iogearbox.net>
3294 L:      netdev@vger.kernel.org
3295 L:      bpf@vger.kernel.org
3296 S:      Supported
3297 F:      arch/x86/net/
3298 X:      arch/x86/net/bpf_jit_comp32.c
3299
3300 BROADCOM B44 10/100 ETHERNET DRIVER
3301 M:      Michael Chan <michael.chan@broadcom.com>
3302 L:      netdev@vger.kernel.org
3303 S:      Supported
3304 F:      drivers/net/ethernet/broadcom/b44.*
3305
3306 BROADCOM B53 ETHERNET SWITCH DRIVER
3307 M:      Florian Fainelli <f.fainelli@gmail.com>
3308 L:      netdev@vger.kernel.org
3309 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3310 S:      Supported
3311 F:      drivers/net/dsa/b53/*
3312 F:      include/linux/platform_data/b53.h
3313
3314 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3315 M:      Florian Fainelli <f.fainelli@gmail.com>
3316 M:      Ray Jui <rjui@broadcom.com>
3317 M:      Scott Branden <sbranden@broadcom.com>
3318 M:      bcm-kernel-feedback-list@broadcom.com
3319 T:      git git://github.com/broadcom/mach-bcm
3320 S:      Maintained
3321 N:      bcm281*
3322 N:      bcm113*
3323 N:      bcm216*
3324 N:      kona
3325 F:      arch/arm/mach-bcm/
3326
3327 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3328 M:      Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
3329 L:      bcm-kernel-feedback-list@broadcom.com
3330 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3332 T:      git git://github.com/anholt/linux
3333 S:      Maintained
3334 N:      bcm2711
3335 N:      bcm2835
3336 F:      drivers/staging/vc04_services
3337 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3338 F:      drivers/pci/controller/pcie-brcmstb.c
3339
3340 BROADCOM BCM47XX MIPS ARCHITECTURE
3341 M:      Hauke Mehrtens <hauke@hauke-m.de>
3342 M:      Rafał Miłecki <zajec5@gmail.com>
3343 L:      linux-mips@vger.kernel.org
3344 S:      Maintained
3345 F:      Documentation/devicetree/bindings/mips/brcm/
3346 F:      arch/mips/bcm47xx/*
3347 F:      arch/mips/include/asm/mach-bcm47xx/*
3348
3349 BROADCOM BCM5301X ARM ARCHITECTURE
3350 M:      Hauke Mehrtens <hauke@hauke-m.de>
3351 M:      Rafał Miłecki <zajec5@gmail.com>
3352 M:      bcm-kernel-feedback-list@broadcom.com
3353 L:      linux-arm-kernel@lists.infradead.org
3354 S:      Maintained
3355 F:      arch/arm/mach-bcm/bcm_5301x.c
3356 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3357 F:      arch/arm/boot/dts/bcm470*
3358 F:      arch/arm/boot/dts/bcm953012*
3359
3360 BROADCOM BCM53573 ARM ARCHITECTURE
3361 M:      Rafał Miłecki <rafal@milecki.pl>
3362 L:      bcm-kernel-feedback-list@broadcom.com
3363 L:      linux-arm-kernel@lists.infradead.org
3364 S:      Maintained
3365 F:      arch/arm/boot/dts/bcm53573*
3366 F:      arch/arm/boot/dts/bcm47189*
3367
3368 BROADCOM BCM63XX ARM ARCHITECTURE
3369 M:      Florian Fainelli <f.fainelli@gmail.com>
3370 M:      bcm-kernel-feedback-list@broadcom.com
3371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3372 T:      git git://github.com/broadcom/stblinux.git
3373 S:      Maintained
3374 N:      bcm63xx
3375
3376 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3377 M:      Kevin Cernekee <cernekee@gmail.com>
3378 L:      linux-usb@vger.kernel.org
3379 S:      Maintained
3380 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3381
3382 BROADCOM BCM7XXX ARM ARCHITECTURE
3383 M:      Florian Fainelli <f.fainelli@gmail.com>
3384 M:      bcm-kernel-feedback-list@broadcom.com
3385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3386 T:      git git://github.com/broadcom/stblinux.git
3387 S:      Maintained
3388 F:      arch/arm/mach-bcm/*brcmstb*
3389 F:      arch/arm/boot/dts/bcm7*.dts*
3390 F:      drivers/bus/brcmstb_gisb.c
3391 F:      arch/arm/mm/cache-b15-rac.c
3392 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3393 N:      brcmstb
3394 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3395 F:      drivers/pci/controller/pcie-brcmstb.c
3396
3397 BROADCOM BMIPS CPUFREQ DRIVER
3398 M:      Markus Mayer <mmayer@broadcom.com>
3399 M:      bcm-kernel-feedback-list@broadcom.com
3400 L:      linux-pm@vger.kernel.org
3401 S:      Maintained
3402 F:      drivers/cpufreq/bmips-cpufreq.c
3403
3404 BROADCOM BMIPS MIPS ARCHITECTURE
3405 M:      Florian Fainelli <f.fainelli@gmail.com>
3406 L:      bcm-kernel-feedback-list@broadcom.com
3407 L:      linux-mips@vger.kernel.org
3408 T:      git git://github.com/broadcom/stblinux.git
3409 S:      Maintained
3410 F:      arch/mips/bmips/*
3411 F:      arch/mips/include/asm/mach-bmips/*
3412 F:      arch/mips/kernel/*bmips*
3413 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3414 F:      drivers/irqchip/irq-bcm63*
3415 F:      drivers/irqchip/irq-bcm7*
3416 F:      drivers/irqchip/irq-brcmstb*
3417 F:      include/linux/bcm963xx_nvram.h
3418 F:      include/linux/bcm963xx_tag.h
3419
3420 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3421 M:      Rasesh Mody <rmody@marvell.com>
3422 M:      GR-Linux-NIC-Dev@marvell.com
3423 L:      netdev@vger.kernel.org
3424 S:      Supported
3425 F:      drivers/net/ethernet/broadcom/bnx2.*
3426 F:      drivers/net/ethernet/broadcom/bnx2_*
3427
3428 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3429 M:      QLogic-Storage-Upstream@qlogic.com
3430 L:      linux-scsi@vger.kernel.org
3431 S:      Supported
3432 F:      drivers/scsi/bnx2fc/
3433
3434 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3435 M:      QLogic-Storage-Upstream@qlogic.com
3436 L:      linux-scsi@vger.kernel.org
3437 S:      Supported
3438 F:      drivers/scsi/bnx2i/
3439
3440 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3441 M:      Ariel Elior <aelior@marvell.com>
3442 M:      Sudarsana Kalluru <skalluru@marvell.com>
3443 M:      GR-everest-linux-l2@marvell.com
3444 L:      netdev@vger.kernel.org
3445 S:      Supported
3446 F:      drivers/net/ethernet/broadcom/bnx2x/
3447
3448 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3449 M:      Michael Chan <michael.chan@broadcom.com>
3450 L:      netdev@vger.kernel.org
3451 S:      Supported
3452 F:      drivers/net/ethernet/broadcom/bnxt/
3453
3454 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3455 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3456 M:      Franky Lin <franky.lin@broadcom.com>
3457 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3458 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3459 M:      Wright Feng <wright.feng@cypress.com>
3460 L:      linux-wireless@vger.kernel.org
3461 L:      brcm80211-dev-list.pdl@broadcom.com
3462 L:      brcm80211-dev-list@cypress.com
3463 S:      Supported
3464 F:      drivers/net/wireless/broadcom/brcm80211/
3465
3466 BROADCOM BRCMSTB GPIO DRIVER
3467 M:      Gregory Fong <gregory.0xf0@gmail.com>
3468 L:      bcm-kernel-feedback-list@broadcom.com
3469 S:      Supported
3470 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3471 F:      drivers/gpio/gpio-brcmstb.c
3472
3473 BROADCOM BRCMSTB I2C DRIVER
3474 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3475 L:      linux-i2c@vger.kernel.org
3476 L:      bcm-kernel-feedback-list@broadcom.com
3477 S:      Supported
3478 F:      drivers/i2c/busses/i2c-brcmstb.c
3479 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3480
3481 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3482 M:      Al Cooper <alcooperx@gmail.com>
3483 L:      linux-kernel@vger.kernel.org
3484 L:      bcm-kernel-feedback-list@broadcom.com
3485 S:      Maintained
3486 F:      drivers/phy/broadcom/phy-brcm-usb*
3487
3488 BROADCOM GENET ETHERNET DRIVER
3489 M:      Doug Berger <opendmb@gmail.com>
3490 M:      Florian Fainelli <f.fainelli@gmail.com>
3491 L:      bcm-kernel-feedback-list@broadcom.com
3492 L:      netdev@vger.kernel.org
3493 S:      Supported
3494 F:      drivers/net/ethernet/broadcom/genet/
3495
3496 BROADCOM IPROC ARM ARCHITECTURE
3497 M:      Ray Jui <rjui@broadcom.com>
3498 M:      Scott Branden <sbranden@broadcom.com>
3499 M:      bcm-kernel-feedback-list@broadcom.com
3500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3501 T:      git git://github.com/broadcom/cygnus-linux.git
3502 S:      Maintained
3503 N:      iproc
3504 N:      cygnus
3505 N:      bcm[-_]nsp
3506 N:      bcm9113*
3507 N:      bcm9583*
3508 N:      bcm9585*
3509 N:      bcm9586*
3510 N:      bcm988312
3511 N:      bcm113*
3512 N:      bcm583*
3513 N:      bcm585*
3514 N:      bcm586*
3515 N:      bcm88312
3516 N:      hr2
3517 N:      stingray
3518 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3519 F:      arch/arm64/boot/dts/broadcom/stingray/*
3520 F:      drivers/clk/bcm/clk-ns*
3521 F:      drivers/clk/bcm/clk-sr*
3522 F:      drivers/pinctrl/bcm/pinctrl-ns*
3523 F:      include/dt-bindings/clock/bcm-sr*
3524
3525 BROADCOM KONA GPIO DRIVER
3526 M:      Ray Jui <rjui@broadcom.com>
3527 L:      bcm-kernel-feedback-list@broadcom.com
3528 S:      Supported
3529 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3530 F:      drivers/gpio/gpio-bcm-kona.c
3531
3532 BROADCOM NETXTREME-E ROCE DRIVER
3533 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3534 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3535 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3536 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3537 L:      linux-rdma@vger.kernel.org
3538 W:      http://www.broadcom.com
3539 S:      Supported
3540 F:      drivers/infiniband/hw/bnxt_re/
3541 F:      include/uapi/rdma/bnxt_re-abi.h
3542
3543 BROADCOM NVRAM DRIVER
3544 M:      Rafał Miłecki <zajec5@gmail.com>
3545 L:      linux-mips@vger.kernel.org
3546 S:      Maintained
3547 F:      drivers/firmware/broadcom/*
3548
3549 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3550 M:      Rafał Miłecki <zajec5@gmail.com>
3551 L:      linux-wireless@vger.kernel.org
3552 S:      Maintained
3553 F:      drivers/bcma/
3554 F:      include/linux/bcma/
3555
3556 BROADCOM STB AVS CPUFREQ DRIVER
3557 M:      Markus Mayer <mmayer@broadcom.com>
3558 M:      bcm-kernel-feedback-list@broadcom.com
3559 L:      linux-pm@vger.kernel.org
3560 S:      Maintained
3561 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3562 F:      drivers/cpufreq/brcmstb*
3563
3564 BROADCOM STB AVS TMON DRIVER
3565 M:      Markus Mayer <mmayer@broadcom.com>
3566 M:      bcm-kernel-feedback-list@broadcom.com
3567 L:      linux-pm@vger.kernel.org
3568 S:      Maintained
3569 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3570 F:      drivers/thermal/broadcom/brcmstb*
3571
3572 BROADCOM STB NAND FLASH DRIVER
3573 M:      Brian Norris <computersforpeace@gmail.com>
3574 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3575 L:      linux-mtd@lists.infradead.org
3576 L:      bcm-kernel-feedback-list@broadcom.com
3577 S:      Maintained
3578 F:      drivers/mtd/nand/raw/brcmnand/
3579
3580 BROADCOM STB DPFE DRIVER
3581 M:      Markus Mayer <mmayer@broadcom.com>
3582 M:      bcm-kernel-feedback-list@broadcom.com
3583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3584 S:      Maintained
3585 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3586 F:      drivers/memory/brcmstb_dpfe.c
3587
3588 BROADCOM SPI DRIVER
3589 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3590 M:      bcm-kernel-feedback-list@broadcom.com
3591 S:      Maintained
3592 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3593 F:      drivers/spi/spi-bcm-qspi.*
3594 F:      drivers/spi/spi-brcmstb-qspi.c
3595 F:      drivers/spi/spi-iproc-qspi.c
3596
3597 BROADCOM SYSTEMPORT ETHERNET DRIVER
3598 M:      Florian Fainelli <f.fainelli@gmail.com>
3599 L:      bcm-kernel-feedback-list@broadcom.com
3600 L:      netdev@vger.kernel.org
3601 S:      Supported
3602 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3603
3604 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3605 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3606 M:      Prashant Sreedharan <prashant@broadcom.com>
3607 M:      Michael Chan <mchan@broadcom.com>
3608 L:      netdev@vger.kernel.org
3609 S:      Supported
3610 F:      drivers/net/ethernet/broadcom/tg3.*
3611
3612 BROCADE BFA FC SCSI DRIVER
3613 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3614 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3615 L:      linux-scsi@vger.kernel.org
3616 S:      Supported
3617 F:      drivers/scsi/bfa/
3618
3619 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3620 M:      Rasesh Mody <rmody@marvell.com>
3621 M:      Sudarsana Kalluru <skalluru@marvell.com>
3622 M:      GR-Linux-NIC-Dev@marvell.com
3623 L:      netdev@vger.kernel.org
3624 S:      Supported
3625 F:      drivers/net/ethernet/brocade/bna/
3626
3627 BSG (block layer generic sg v4 driver)
3628 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3629 L:      linux-scsi@vger.kernel.org
3630 S:      Supported
3631 F:      block/bsg.c
3632 F:      include/linux/bsg.h
3633 F:      include/uapi/linux/bsg.h
3634
3635 BT87X AUDIO DRIVER
3636 M:      Clemens Ladisch <clemens@ladisch.de>
3637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3639 S:      Maintained
3640 F:      Documentation/sound/cards/bt87x.rst
3641 F:      sound/pci/bt87x.c
3642
3643 BT8XXGPIO DRIVER
3644 M:      Michael Buesch <m@bues.ch>
3645 S:      Maintained
3646 W:      http://bu3sch.de/btgpio.php
3647 F:      drivers/gpio/gpio-bt8xx.c
3648
3649 BTRFS FILE SYSTEM
3650 M:      Chris Mason <clm@fb.com>
3651 M:      Josef Bacik <josef@toxicpanda.com>
3652 M:      David Sterba <dsterba@suse.com>
3653 L:      linux-btrfs@vger.kernel.org
3654 W:      http://btrfs.wiki.kernel.org/
3655 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3657 S:      Maintained
3658 F:      Documentation/filesystems/btrfs.rst
3659 F:      fs/btrfs/
3660 F:      include/linux/btrfs*
3661 F:      include/uapi/linux/btrfs*
3662
3663 BTTV VIDEO4LINUX DRIVER
3664 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3665 L:      linux-media@vger.kernel.org
3666 W:      https://linuxtv.org
3667 T:      git git://linuxtv.org/media_tree.git
3668 S:      Odd fixes
3669 F:      Documentation/media/v4l-drivers/bttv*
3670 F:      drivers/media/pci/bt8xx/bttv*
3671
3672 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3673 M:      Chanwoo Choi <cw00.choi@samsung.com>
3674 L:      linux-pm@vger.kernel.org
3675 L:      linux-samsung-soc@vger.kernel.org
3676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
3677 S:      Maintained
3678 F:      drivers/devfreq/exynos-bus.c
3679 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3680
3681 BUSLOGIC SCSI DRIVER
3682 M:      Khalid Aziz <khalid@gonehiking.org>
3683 L:      linux-scsi@vger.kernel.org
3684 S:      Maintained
3685 F:      drivers/scsi/BusLogic.*
3686 F:      drivers/scsi/FlashPoint.*
3687
3688 C-MEDIA CMI8788 DRIVER
3689 M:      Clemens Ladisch <clemens@ladisch.de>
3690 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3692 S:      Maintained
3693 F:      sound/pci/oxygen/
3694
3695 C-SKY ARCHITECTURE
3696 M:      Guo Ren <guoren@kernel.org>
3697 L:      linux-csky@vger.kernel.org
3698 T:      git https://github.com/c-sky/csky-linux.git
3699 S:      Supported
3700 F:      arch/csky/
3701 F:      Documentation/devicetree/bindings/csky/
3702 F:      drivers/irqchip/irq-csky-*
3703 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3704 F:      drivers/clocksource/timer-gx6605s.c
3705 F:      drivers/clocksource/timer-mp-csky.c
3706 F:      Documentation/devicetree/bindings/timer/csky,*
3707 K:      csky
3708 N:      csky
3709
3710 C6X ARCHITECTURE
3711 M:      Mark Salter <msalter@redhat.com>
3712 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3713 L:      linux-c6x-dev@linux-c6x.org
3714 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3715 S:      Maintained
3716 F:      arch/c6x/
3717
3718 CA8210 IEEE-802.15.4 RADIO DRIVER
3719 M:      Harry Morris <h.morris@cascoda.com>
3720 L:      linux-wpan@vger.kernel.org
3721 W:      https://github.com/Cascoda/ca8210-linux.git
3722 S:      Maintained
3723 F:      drivers/net/ieee802154/ca8210.c
3724 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3725
3726 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3727 M:      David Howells <dhowells@redhat.com>
3728 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3729 S:      Supported
3730 F:      Documentation/filesystems/caching/cachefiles.txt
3731 F:      fs/cachefiles/
3732
3733 CADENCE MIPI-CSI2 BRIDGES
3734 M:      Maxime Ripard <mripard@kernel.org>
3735 L:      linux-media@vger.kernel.org
3736 S:      Maintained
3737 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3738 F:      drivers/media/platform/cadence/cdns-csi2*
3739
3740 CADENCE NAND DRIVER
3741 M:      Piotr Sroka <piotrs@cadence.com>
3742 L:      linux-mtd@lists.infradead.org
3743 S:      Maintained
3744 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
3745 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
3746
3747 CADET FM/AM RADIO RECEIVER DRIVER
3748 M:      Hans Verkuil <hverkuil@xs4all.nl>
3749 L:      linux-media@vger.kernel.org
3750 T:      git git://linuxtv.org/media_tree.git
3751 W:      https://linuxtv.org
3752 S:      Maintained
3753 F:      drivers/media/radio/radio-cadet*
3754
3755 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3756 M:      Jonathan Corbet <corbet@lwn.net>
3757 L:      linux-media@vger.kernel.org
3758 T:      git git://linuxtv.org/media_tree.git
3759 S:      Maintained
3760 F:      Documentation/media/v4l-drivers/cafe_ccic*
3761 F:      drivers/media/platform/marvell-ccic/
3762
3763 CAIF NETWORK LAYER
3764 L:      netdev@vger.kernel.org
3765 S:      Orphan
3766 F:      Documentation/networking/caif/
3767 F:      drivers/net/caif/
3768 F:      include/uapi/linux/caif/
3769 F:      include/net/caif/
3770 F:      net/caif/
3771
3772 CAKE QDISC
3773 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3774 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3775 S:      Maintained
3776 F:      net/sched/sch_cake.c
3777
3778 CAN NETWORK DRIVERS
3779 M:      Wolfgang Grandegger <wg@grandegger.com>
3780 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3781 L:      linux-can@vger.kernel.org
3782 W:      https://github.com/linux-can
3783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/net/can/
3787 F:      drivers/net/can/
3788 F:      include/linux/can/dev.h
3789 F:      include/linux/can/led.h
3790 F:      include/linux/can/rx-offload.h
3791 F:      include/linux/can/platform/
3792 F:      include/uapi/linux/can/error.h
3793 F:      include/uapi/linux/can/netlink.h
3794 F:      include/uapi/linux/can/vxcan.h
3795
3796 CAN NETWORK LAYER
3797 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3798 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3799 L:      linux-can@vger.kernel.org
3800 W:      https://github.com/linux-can
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3803 S:      Maintained
3804 F:      Documentation/networking/can.rst
3805 F:      net/can/
3806 F:      include/linux/can/core.h
3807 F:      include/linux/can/skb.h
3808 F:      include/net/netns/can.h
3809 F:      include/uapi/linux/can.h
3810 F:      include/uapi/linux/can/bcm.h
3811 F:      include/uapi/linux/can/raw.h
3812 F:      include/uapi/linux/can/gw.h
3813
3814 CAN-J1939 NETWORK LAYER
3815 M:      Robin van der Gracht <robin@protonic.nl>
3816 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3817 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3818 L:      linux-can@vger.kernel.org
3819 S:      Maintained
3820 F:      Documentation/networking/j1939.rst
3821 F:      net/can/j1939/
3822 F:      include/uapi/linux/can/j1939.h
3823
3824 CAPABILITIES
3825 M:      Serge Hallyn <serge@hallyn.com>
3826 L:      linux-security-module@vger.kernel.org
3827 S:      Supported
3828 F:      include/linux/capability.h
3829 F:      include/uapi/linux/capability.h
3830 F:      security/commoncap.c
3831 F:      kernel/capability.c
3832
3833 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3834 M:      Kevin Tsai <ktsai@capellamicro.com>
3835 S:      Maintained
3836 F:      drivers/iio/light/cm*
3837
3838 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3839 M:      Christian Lamparter <chunkeey@googlemail.com>
3840 L:      linux-wireless@vger.kernel.org
3841 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3842 S:      Maintained
3843 F:      drivers/net/wireless/ath/carl9170/
3844
3845 CAVIUM I2C DRIVER
3846 M:      Robert Richter <rrichter@marvell.com>
3847 W:      http://www.marvell.com
3848 S:      Supported
3849 F:      drivers/i2c/busses/i2c-octeon*
3850 F:      drivers/i2c/busses/i2c-thunderx*
3851
3852 CAVIUM LIQUIDIO NETWORK DRIVER
3853 M:      Derek Chickles <dchickles@marvell.com>
3854 M:      Satanand Burla <sburla@marvell.com>
3855 M:      Felix Manlunas <fmanlunas@marvell.com>
3856 L:      netdev@vger.kernel.org
3857 W:      http://www.marvell.com
3858 S:      Supported
3859 F:      drivers/net/ethernet/cavium/liquidio/
3860
3861 CAVIUM MMC DRIVER
3862 M:      Robert Richter <rrichter@marvell.com>
3863 W:      http://www.marvell.com
3864 S:      Supported
3865 F:      drivers/mmc/host/cavium*
3866
3867 CAVIUM OCTEON-TX CRYPTO DRIVER
3868 M:      George Cherian <gcherian@marvell.com>
3869 L:      linux-crypto@vger.kernel.org
3870 W:      http://www.marvell.com
3871 S:      Supported
3872 F:      drivers/crypto/cavium/cpt/
3873
3874 CAVIUM THUNDERX2 ARM64 SOC
3875 M:      Robert Richter <rrichter@marvell.com>
3876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3877 S:      Maintained
3878 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3879 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3880
3881 CC2520 IEEE-802.15.4 RADIO DRIVER
3882 M:      Varka Bhadram <varkabhadram@gmail.com>
3883 L:      linux-wpan@vger.kernel.org
3884 S:      Maintained
3885 F:      drivers/net/ieee802154/cc2520.c
3886 F:      include/linux/spi/cc2520.h
3887 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3888
3889 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3890 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3891 L:      linux-crypto@vger.kernel.org
3892 S:      Supported
3893 F:      drivers/crypto/ccree/
3894 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3895
3896 CEC FRAMEWORK
3897 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3898 L:      linux-media@vger.kernel.org
3899 T:      git git://linuxtv.org/media_tree.git
3900 W:      http://linuxtv.org
3901 S:      Supported
3902 F:      Documentation/media/kapi/cec-core.rst
3903 F:      Documentation/media/uapi/cec
3904 F:      drivers/media/cec/
3905 F:      drivers/media/rc/keymaps/rc-cec.c
3906 F:      include/media/cec.h
3907 F:      include/media/cec-notifier.h
3908 F:      include/uapi/linux/cec.h
3909 F:      include/uapi/linux/cec-funcs.h
3910 F:      Documentation/devicetree/bindings/media/cec.txt
3911 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3912
3913 CEC GPIO DRIVER
3914 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3915 L:      linux-media@vger.kernel.org
3916 T:      git git://linuxtv.org/media_tree.git
3917 W:      http://linuxtv.org
3918 S:      Supported
3919 F:      drivers/media/platform/cec-gpio/
3920 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3921
3922 CELL BROADBAND ENGINE ARCHITECTURE
3923 M:      Arnd Bergmann <arnd@arndb.de>
3924 L:      linuxppc-dev@lists.ozlabs.org
3925 W:      http://www.ibm.com/developerworks/power/cell/
3926 S:      Supported
3927 F:      arch/powerpc/include/asm/cell*.h
3928 F:      arch/powerpc/include/asm/spu*.h
3929 F:      arch/powerpc/include/uapi/asm/spu*.h
3930 F:      arch/powerpc/oprofile/*cell*
3931 F:      arch/powerpc/platforms/cell/
3932
3933 CEPH COMMON CODE (LIBCEPH)
3934 M:      Ilya Dryomov <idryomov@gmail.com>
3935 M:      Jeff Layton <jlayton@kernel.org>
3936 M:      Sage Weil <sage@redhat.com>
3937 L:      ceph-devel@vger.kernel.org
3938 W:      http://ceph.com/
3939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3940 T:      git git://github.com/ceph/ceph-client.git
3941 S:      Supported
3942 F:      net/ceph/
3943 F:      include/linux/ceph/
3944 F:      include/linux/crush/
3945
3946 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3947 M:      Jeff Layton <jlayton@kernel.org>
3948 M:      Sage Weil <sage@redhat.com>
3949 M:      Ilya Dryomov <idryomov@gmail.com>
3950 L:      ceph-devel@vger.kernel.org
3951 W:      http://ceph.com/
3952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3953 T:      git git://github.com/ceph/ceph-client.git
3954 S:      Supported
3955 F:      Documentation/filesystems/ceph.rst
3956 F:      fs/ceph/
3957
3958 CERTIFICATE HANDLING
3959 M:      David Howells <dhowells@redhat.com>
3960 M:      David Woodhouse <dwmw2@infradead.org>
3961 L:      keyrings@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/admin-guide/module-signing.rst
3964 F:      certs/
3965 F:      scripts/sign-file.c
3966 F:      scripts/extract-cert.c
3967
3968 CFAG12864B LCD DRIVER
3969 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3970 S:      Maintained
3971 F:      drivers/auxdisplay/cfag12864b.c
3972 F:      include/linux/cfag12864b.h
3973
3974 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3975 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3976 S:      Maintained
3977 F:      drivers/auxdisplay/cfag12864bfb.c
3978 F:      include/linux/cfag12864b.h
3979
3980 802.11 (including CFG80211/NL80211)
3981 M:      Johannes Berg <johannes@sipsolutions.net>
3982 L:      linux-wireless@vger.kernel.org
3983 W:      http://wireless.kernel.org/
3984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3986 S:      Maintained
3987 F:      net/wireless/
3988 F:      include/uapi/linux/nl80211.h
3989 F:      include/linux/ieee80211.h
3990 F:      include/net/wext.h
3991 F:      include/net/cfg80211.h
3992 F:      include/net/iw_handler.h
3993 F:      include/net/ieee80211_radiotap.h
3994 F:      Documentation/driver-api/80211/cfg80211.rst
3995 F:      Documentation/networking/regulatory.txt
3996
3997 CHAR and MISC DRIVERS
3998 M:      Arnd Bergmann <arnd@arndb.de>
3999 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4001 S:      Supported
4002 F:      drivers/char/
4003 F:      drivers/misc/
4004 F:      include/linux/miscdevice.h
4005
4006 CHECKPATCH
4007 M:      Andy Whitcroft <apw@canonical.com>
4008 M:      Joe Perches <joe@perches.com>
4009 S:      Maintained
4010 F:      scripts/checkpatch.pl
4011
4012 CHINESE DOCUMENTATION
4013 M:      Harry Wei <harryxiyou@gmail.com>
4014 M:      Alex Shi <alex.shi@linux.alibaba.com>
4015 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
4016 S:      Maintained
4017 F:      Documentation/translations/zh_CN/
4018
4019 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4020 M:      Peter Chen <Peter.Chen@nxp.com>
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4022 L:      linux-usb@vger.kernel.org
4023 S:      Maintained
4024 F:      drivers/usb/chipidea/
4025
4026 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4027 M:      Hans de Goede <hdegoede@redhat.com>
4028 L:      linux-input@vger.kernel.org
4029 S:      Maintained
4030 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4031 F:      drivers/input/touchscreen/chipone_icn8318.c
4032
4033 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4034 M:      Hans de Goede <hdegoede@redhat.com>
4035 L:      linux-input@vger.kernel.org
4036 S:      Maintained
4037 F:      drivers/input/touchscreen/chipone_icn8505.c
4038
4039 CHROME HARDWARE PLATFORM SUPPORT
4040 M:      Benson Leung <bleung@chromium.org>
4041 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4042 S:      Maintained
4043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4044 F:      drivers/platform/chrome/
4045
4046 CHROMEOS EC SUBDRIVERS
4047 M:      Benson Leung <bleung@chromium.org>
4048 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4049 R:      Guenter Roeck <groeck@chromium.org>
4050 S:      Maintained
4051 N:      cros_ec
4052 N:      cros-ec
4053 F:      drivers/power/supply/cros_usbpd-charger.c
4054
4055 CHROMEOS EC CODEC DRIVER
4056 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4057 S:      Maintained
4058 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4059 R:      Guenter Roeck <groeck@chromium.org>
4060 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4061 F:      sound/soc/codecs/cros_ec_codec.*
4062
4063 CIRRUS LOGIC AUDIO CODEC DRIVERS
4064 M:      James Schulman <james.schulman@cirrus.com>
4065 M:      David Rhodes <david.rhodes@cirrus.com>
4066 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4067 S:      Maintained
4068 F:      sound/soc/codecs/cs*
4069
4070 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4071 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4072 L:      netdev@vger.kernel.org
4073 S:      Maintained
4074 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4075
4076 CIRRUS LOGIC LOCHNAGAR DRIVER
4077 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4078 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4079 L:      patches@opensource.cirrus.com
4080 S:      Supported
4081 F:      drivers/clk/clk-lochnagar.c
4082 F:      drivers/hwmon/lochnagar-hwmon.c
4083 F:      drivers/mfd/lochnagar-i2c.c
4084 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4085 F:      drivers/regulator/lochnagar-regulator.c
4086 F:      sound/soc/codecs/lochnagar-sc.c
4087 F:      include/dt-bindings/clk/lochnagar.h
4088 F:      include/dt-bindings/pinctrl/lochnagar.h
4089 F:      include/linux/mfd/lochnagar*
4090 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
4091 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
4092 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
4093 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
4094 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
4095 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
4096 F:      Documentation/hwmon/lochnagar.rst
4097
4098 CISCO FCOE HBA DRIVER
4099 M:      Satish Kharat <satishkh@cisco.com>
4100 M:      Sesidhar Baddela <sebaddel@cisco.com>
4101 M:      Karan Tilak Kumar <kartilak@cisco.com>
4102 L:      linux-scsi@vger.kernel.org
4103 S:      Supported
4104 F:      drivers/scsi/fnic/
4105
4106 CISCO SCSI HBA DRIVER
4107 M:      Karan Tilak Kumar <kartilak@cisco.com>
4108 M:      Sesidhar Baddela <sebaddel@cisco.com>
4109 L:      linux-scsi@vger.kernel.org
4110 S:      Supported
4111 F:      drivers/scsi/snic/
4112
4113 CISCO VIC ETHERNET NIC DRIVER
4114 M:      Christian Benvenuti <benve@cisco.com>
4115 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4116 S:      Supported
4117 F:      drivers/net/ethernet/cisco/enic/
4118
4119 CISCO VIC LOW LATENCY NIC DRIVER
4120 M:      Christian Benvenuti <benve@cisco.com>
4121 M:      Nelson Escobar <neescoba@cisco.com>
4122 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4123 S:      Supported
4124 F:      drivers/infiniband/hw/usnic/
4125
4126 CIRRUS LOGIC MADERA CODEC DRIVERS
4127 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4128 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4129 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4130 L:      patches@opensource.cirrus.com
4131 T:      git https://github.com/CirrusLogic/linux-drivers.git
4132 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4133 S:      Supported
4134 F:      Documentation/devicetree/bindings/mfd/madera.txt
4135 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4136 F:      Documentation/devicetree/bindings/sound/madera.txt
4137 F:      include/dt-bindings/sound/madera*
4138 F:      include/linux/irqchip/irq-madera*
4139 F:      include/linux/mfd/madera/*
4140 F:      include/sound/madera*
4141 F:      drivers/gpio/gpio-madera*
4142 F:      drivers/irqchip/irq-madera*
4143 F:      drivers/mfd/madera*
4144 F:      drivers/mfd/cs47l*
4145 F:      drivers/pinctrl/cirrus/*
4146 F:      sound/soc/codecs/cs47l*
4147 F:      sound/soc/codecs/madera*
4148
4149 CLANG-FORMAT FILE
4150 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4151 S:      Maintained
4152 F:      .clang-format
4153
4154 CLANG/LLVM BUILD SUPPORT
4155 L:      clang-built-linux@googlegroups.com
4156 W:      https://clangbuiltlinux.github.io/
4157 B:      https://github.com/ClangBuiltLinux/linux/issues
4158 C:      irc://chat.freenode.net/clangbuiltlinux
4159 S:      Supported
4160 K:      \b(?i:clang|llvm)\b
4161 F:      Documentation/kbuild/llvm.rst
4162
4163 CLEANCACHE API
4164 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4165 L:      linux-kernel@vger.kernel.org
4166 S:      Maintained
4167 F:      mm/cleancache.c
4168 F:      include/linux/cleancache.h
4169
4170 CLK API
4171 M:      Russell King <linux@armlinux.org.uk>
4172 L:      linux-clk@vger.kernel.org
4173 S:      Maintained
4174 F:      include/linux/clk.h
4175
4176 CLOCKSOURCE, CLOCKEVENT DRIVERS
4177 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4178 M:      Thomas Gleixner <tglx@linutronix.de>
4179 L:      linux-kernel@vger.kernel.org
4180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4181 S:      Supported
4182 F:      drivers/clocksource/
4183 F:      Documentation/devicetree/bindings/timer/
4184
4185 CMPC ACPI DRIVER
4186 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4187 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4188 L:      platform-driver-x86@vger.kernel.org
4189 S:      Supported
4190 F:      drivers/platform/x86/classmate-laptop.c
4191
4192 COBALT MEDIA DRIVER
4193 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4194 L:      linux-media@vger.kernel.org
4195 T:      git git://linuxtv.org/media_tree.git
4196 W:      https://linuxtv.org
4197 S:      Supported
4198 F:      drivers/media/pci/cobalt/
4199
4200 COCCINELLE/Semantic Patches (SmPL)
4201 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4202 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4203 M:      Nicolas Palix <nicolas.palix@imag.fr>
4204 M:      Michal Marek <michal.lkml@markovi.net>
4205 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4207 W:      http://coccinelle.lip6.fr/
4208 S:      Supported
4209 F:      Documentation/dev-tools/coccinelle.rst
4210 F:      scripts/coccinelle/
4211 F:      scripts/coccicheck
4212
4213 CODA FILE SYSTEM
4214 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4215 M:      coda@cs.cmu.edu
4216 L:      codalist@coda.cs.cmu.edu
4217 W:      http://www.coda.cs.cmu.edu/
4218 S:      Maintained
4219 F:      Documentation/filesystems/coda.txt
4220 F:      fs/coda/
4221 F:      include/linux/coda*.h
4222 F:      include/uapi/linux/coda*.h
4223
4224 CODA V4L2 MEM2MEM DRIVER
4225 M:      Philipp Zabel <p.zabel@pengutronix.de>
4226 L:      linux-media@vger.kernel.org
4227 S:      Maintained
4228 F:      Documentation/devicetree/bindings/media/coda.txt
4229 F:      drivers/media/platform/coda/
4230
4231 CODE OF CONDUCT
4232 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4233 S:      Supported
4234 F:      Documentation/process/code-of-conduct.rst
4235 F:      Documentation/process/code-of-conduct-interpretation.rst
4236
4237 COMMON CLK FRAMEWORK
4238 M:      Michael Turquette <mturquette@baylibre.com>
4239 M:      Stephen Boyd <sboyd@kernel.org>
4240 L:      linux-clk@vger.kernel.org
4241 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4243 S:      Maintained
4244 F:      Documentation/devicetree/bindings/clock/
4245 F:      drivers/clk/
4246 X:      drivers/clk/clkdev.c
4247 F:      include/linux/clk-pr*
4248 F:      include/linux/clk/
4249 F:      include/linux/of_clk.h
4250
4251 COMMON INTERNET FILE SYSTEM (CIFS)
4252 M:      Steve French <sfrench@samba.org>
4253 L:      linux-cifs@vger.kernel.org
4254 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4255 W:      http://linux-cifs.samba.org/
4256 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4257 S:      Supported
4258 F:      Documentation/admin-guide/cifs/
4259 F:      fs/cifs/
4260
4261 COMPACTPCI HOTPLUG CORE
4262 M:      Scott Murray <scott@spiteful.org>
4263 L:      linux-pci@vger.kernel.org
4264 S:      Maintained
4265 F:      drivers/pci/hotplug/cpci_hotplug*
4266
4267 COMPACTPCI HOTPLUG GENERIC DRIVER
4268 M:      Scott Murray <scott@spiteful.org>
4269 L:      linux-pci@vger.kernel.org
4270 S:      Maintained
4271 F:      drivers/pci/hotplug/cpcihp_generic.c
4272
4273 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4274 M:      Scott Murray <scott@spiteful.org>
4275 L:      linux-pci@vger.kernel.org
4276 S:      Maintained
4277 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4278
4279 COMPAL LAPTOP SUPPORT
4280 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4281 L:      platform-driver-x86@vger.kernel.org
4282 S:      Maintained
4283 F:      drivers/platform/x86/compal-laptop.c
4284
4285 COMPILER ATTRIBUTES
4286 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4287 S:      Maintained
4288 F:      include/linux/compiler_attributes.h
4289
4290 CONEXANT ACCESSRUNNER USB DRIVER
4291 L:      accessrunner-general@lists.sourceforge.net
4292 W:      http://accessrunner.sourceforge.net/
4293 S:      Orphan
4294 F:      drivers/usb/atm/cxacru.c
4295
4296 CONFIGFS
4297 M:      Joel Becker <jlbec@evilplan.org>
4298 M:      Christoph Hellwig <hch@lst.de>
4299 T:      git git://git.infradead.org/users/hch/configfs.git
4300 S:      Supported
4301 F:      fs/configfs/
4302 F:      include/linux/configfs.h
4303
4304 CONNECTOR
4305 M:      Evgeniy Polyakov <zbr@ioremap.net>
4306 L:      netdev@vger.kernel.org
4307 S:      Maintained
4308 F:      drivers/connector/
4309
4310 CONTROL GROUP (CGROUP)
4311 M:      Tejun Heo <tj@kernel.org>
4312 M:      Li Zefan <lizefan@huawei.com>
4313 M:      Johannes Weiner <hannes@cmpxchg.org>
4314 L:      cgroups@vger.kernel.org
4315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4316 S:      Maintained
4317 F:      Documentation/admin-guide/cgroup-v2.rst
4318 F:      Documentation/admin-guide/cgroup-v1/
4319 F:      include/linux/cgroup*
4320 F:      kernel/cgroup/
4321
4322 CONTROL GROUP - CPUSET
4323 M:      Li Zefan <lizefan@huawei.com>
4324 L:      cgroups@vger.kernel.org
4325 W:      http://www.bullopensource.org/cpuset/
4326 W:      http://oss.sgi.com/projects/cpusets/
4327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4328 S:      Maintained
4329 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4330 F:      include/linux/cpuset.h
4331 F:      kernel/cgroup/cpuset.c
4332
4333 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4334 M:      Johannes Weiner <hannes@cmpxchg.org>
4335 M:      Michal Hocko <mhocko@kernel.org>
4336 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4337 L:      cgroups@vger.kernel.org
4338 L:      linux-mm@kvack.org
4339 S:      Maintained
4340 F:      mm/memcontrol.c
4341 F:      mm/swap_cgroup.c
4342
4343 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4344 M:      Tejun Heo <tj@kernel.org>
4345 M:      Jens Axboe <axboe@kernel.dk>
4346 L:      cgroups@vger.kernel.org
4347 L:      linux-block@vger.kernel.org
4348 T:      git git://git.kernel.dk/linux-block
4349 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4350 F:      block/blk-cgroup.c
4351 F:      include/linux/blk-cgroup.h
4352 F:      block/blk-throttle.c
4353 F:      block/blk-iolatency.c
4354 F:      block/bfq-cgroup.c
4355
4356 CORETEMP HARDWARE MONITORING DRIVER
4357 M:      Fenghua Yu <fenghua.yu@intel.com>
4358 L:      linux-hwmon@vger.kernel.org
4359 S:      Maintained
4360 F:      Documentation/hwmon/coretemp.rst
4361 F:      drivers/hwmon/coretemp.c
4362
4363 COSA/SRP SYNC SERIAL DRIVER
4364 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4365 W:      http://www.fi.muni.cz/~kas/cosa/
4366 S:      Maintained
4367 F:      drivers/net/wan/cosa*
4368
4369 COUNTER SUBSYSTEM
4370 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4371 L:      linux-iio@vger.kernel.org
4372 S:      Maintained
4373 F:      Documentation/ABI/testing/sysfs-bus-counter*
4374 F:      Documentation/driver-api/generic-counter.rst
4375 F:      drivers/counter/
4376 F:      include/linux/counter.h
4377 F:      include/linux/counter_enum.h
4378
4379 CPMAC ETHERNET DRIVER
4380 M:      Florian Fainelli <f.fainelli@gmail.com>
4381 L:      netdev@vger.kernel.org
4382 S:      Maintained
4383 F:      drivers/net/ethernet/ti/cpmac.c
4384
4385 CPU FREQUENCY SCALING FRAMEWORK
4386 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4387 M:      Viresh Kumar <viresh.kumar@linaro.org>
4388 L:      linux-pm@vger.kernel.org
4389 S:      Maintained
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4392 B:      https://bugzilla.kernel.org
4393 F:      Documentation/admin-guide/pm/cpufreq.rst
4394 F:      Documentation/admin-guide/pm/intel_pstate.rst
4395 F:      Documentation/cpu-freq/
4396 F:      Documentation/devicetree/bindings/cpufreq/
4397 F:      drivers/cpufreq/
4398 F:      kernel/sched/cpufreq*.c
4399 F:      include/linux/cpufreq.h
4400 F:      include/linux/sched/cpufreq.h
4401 F:      tools/testing/selftests/cpufreq/
4402
4403 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4404 M:      Viresh Kumar <viresh.kumar@linaro.org>
4405 M:      Sudeep Holla <sudeep.holla@arm.com>
4406 L:      linux-pm@vger.kernel.org
4407 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4408 S:      Maintained
4409 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4410
4411 CPU POWER MONITORING SUBSYSTEM
4412 M:      Thomas Renninger <trenn@suse.com>
4413 M:      Shuah Khan <shuah@kernel.org>
4414 M:      Shuah Khan <skhan@linuxfoundation.org>
4415 L:      linux-pm@vger.kernel.org
4416 S:      Maintained
4417 F:      tools/power/cpupower/
4418
4419 CPUID/MSR DRIVER
4420 M:      "H. Peter Anvin" <hpa@zytor.com>
4421 S:      Maintained
4422 F:      arch/x86/kernel/cpuid.c
4423 F:      arch/x86/kernel/msr.c
4424
4425 CPUIDLE DRIVER - ARM BIG LITTLE
4426 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4427 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4428 L:      linux-pm@vger.kernel.org
4429 L:      linux-arm-kernel@lists.infradead.org
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4431 S:      Maintained
4432 F:      drivers/cpuidle/cpuidle-big_little.c
4433
4434 CPUIDLE DRIVER - ARM EXYNOS
4435 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4436 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4437 M:      Kukjin Kim <kgene@kernel.org>
4438 L:      linux-pm@vger.kernel.org
4439 L:      linux-samsung-soc@vger.kernel.org
4440 S:      Supported
4441 F:      drivers/cpuidle/cpuidle-exynos.c
4442 F:      arch/arm/mach-exynos/pm.c
4443
4444 CPUIDLE DRIVER - ARM PSCI
4445 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4446 M:      Sudeep Holla <sudeep.holla@arm.com>
4447 L:      linux-pm@vger.kernel.org
4448 L:      linux-arm-kernel@lists.infradead.org
4449 S:      Supported
4450 F:      drivers/cpuidle/cpuidle-psci.c
4451
4452 CPU IDLE TIME MANAGEMENT FRAMEWORK
4453 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4454 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4455 L:      linux-pm@vger.kernel.org
4456 S:      Maintained
4457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4458 B:      https://bugzilla.kernel.org
4459 F:      Documentation/admin-guide/pm/cpuidle.rst
4460 F:      Documentation/driver-api/pm/cpuidle.rst
4461 F:      drivers/cpuidle/*
4462 F:      include/linux/cpuidle.h
4463
4464 CRAMFS FILESYSTEM
4465 M:      Nicolas Pitre <nico@fluxnic.net>
4466 S:      Maintained
4467 F:      Documentation/filesystems/cramfs.rst
4468 F:      fs/cramfs/
4469
4470 CREATIVE SB0540
4471 M:      Bastien Nocera <hadess@hadess.net>
4472 L:      linux-input@vger.kernel.org
4473 S:      Maintained
4474 F:      drivers/hid/hid-creative-sb0540.c
4475
4476 CRYPTO API
4477 M:      Herbert Xu <herbert@gondor.apana.org.au>
4478 M:      "David S. Miller" <davem@davemloft.net>
4479 L:      linux-crypto@vger.kernel.org
4480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4482 S:      Maintained
4483 F:      Documentation/crypto/
4484 F:      Documentation/devicetree/bindings/crypto/
4485 F:      arch/*/crypto/
4486 F:      crypto/
4487 F:      drivers/crypto/
4488 F:      include/crypto/
4489 F:      include/linux/crypto*
4490 F:      lib/crypto/
4491
4492 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4493 M:      Neil Horman <nhorman@tuxdriver.com>
4494 L:      linux-crypto@vger.kernel.org
4495 S:      Maintained
4496 F:      crypto/ansi_cprng.c
4497 F:      crypto/rng.c
4498
4499 CS3308 MEDIA DRIVER
4500 M:      Hans Verkuil <hverkuil@xs4all.nl>
4501 L:      linux-media@vger.kernel.org
4502 T:      git git://linuxtv.org/media_tree.git
4503 W:      http://linuxtv.org
4504 S:      Odd Fixes
4505 F:      drivers/media/i2c/cs3308.c
4506
4507 CS5535 Audio ALSA driver
4508 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4509 S:      Maintained
4510 F:      sound/pci/cs5535audio/
4511
4512 CSI DRIVERS FOR ALLWINNER V3s
4513 M:      Yong Deng <yong.deng@magewell.com>
4514 L:      linux-media@vger.kernel.org
4515 T:      git git://linuxtv.org/media_tree.git
4516 S:      Maintained
4517 F:      drivers/media/platform/sunxi/sun6i-csi/
4518 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4519
4520 CW1200 WLAN driver
4521 M:      Solomon Peachy <pizza@shaftnet.org>
4522 S:      Maintained
4523 F:      drivers/net/wireless/st/cw1200/
4524
4525 CX18 VIDEO4LINUX DRIVER
4526 M:      Andy Walls <awalls@md.metrocast.net>
4527 L:      linux-media@vger.kernel.org
4528 T:      git git://linuxtv.org/media_tree.git
4529 W:      https://linuxtv.org
4530 S:      Maintained
4531 F:      drivers/media/pci/cx18/
4532 F:      include/uapi/linux/ivtv*
4533
4534 CX2341X MPEG ENCODER HELPER MODULE
4535 M:      Hans Verkuil <hverkuil@xs4all.nl>
4536 L:      linux-media@vger.kernel.org
4537 T:      git git://linuxtv.org/media_tree.git
4538 W:      https://linuxtv.org
4539 S:      Maintained
4540 F:      drivers/media/common/cx2341x*
4541 F:      include/media/drv-intf/cx2341x.h
4542
4543 CX24120 MEDIA DRIVER
4544 M:      Jemma Denson <jdenson@gmail.com>
4545 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4546 L:      linux-media@vger.kernel.org
4547 W:      https://linuxtv.org
4548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4549 S:      Maintained
4550 F:      drivers/media/dvb-frontends/cx24120*
4551
4552 CX88 VIDEO4LINUX DRIVER
4553 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4554 L:      linux-media@vger.kernel.org
4555 W:      https://linuxtv.org
4556 T:      git git://linuxtv.org/media_tree.git
4557 S:      Odd fixes
4558 F:      Documentation/media/v4l-drivers/cx88*
4559 F:      drivers/media/pci/cx88/
4560
4561 CXD2820R MEDIA DRIVER
4562 M:      Antti Palosaari <crope@iki.fi>
4563 L:      linux-media@vger.kernel.org
4564 W:      https://linuxtv.org
4565 W:      http://palosaari.fi/linux/
4566 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4567 T:      git git://linuxtv.org/anttip/media_tree.git
4568 S:      Maintained
4569 F:      drivers/media/dvb-frontends/cxd2820r*
4570
4571 CXGB3 ETHERNET DRIVER (CXGB3)
4572 M:      Vishal Kulkarni <vishal@chelsio.com>
4573 L:      netdev@vger.kernel.org
4574 W:      http://www.chelsio.com
4575 S:      Supported
4576 F:      drivers/net/ethernet/chelsio/cxgb3/
4577
4578 CXGB3 ISCSI DRIVER (CXGB3I)
4579 M:      Karen Xie <kxie@chelsio.com>
4580 L:      linux-scsi@vger.kernel.org
4581 W:      http://www.chelsio.com
4582 S:      Supported
4583 F:      drivers/scsi/cxgbi/cxgb3i
4584
4585 CXGB4 CRYPTO DRIVER (chcr)
4586 M:      Ayush Sawal <ayush.sawal@chelsio.com>
4587 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
4588 M:      Rohit Maheshwari <rohitm@chelsio.com>
4589 L:      linux-crypto@vger.kernel.org
4590 W:      http://www.chelsio.com
4591 S:      Supported
4592 F:      drivers/crypto/chelsio
4593
4594 CXGB4 ETHERNET DRIVER (CXGB4)
4595 M:      Vishal Kulkarni <vishal@chelsio.com>
4596 L:      netdev@vger.kernel.org
4597 W:      http://www.chelsio.com
4598 S:      Supported
4599 F:      drivers/net/ethernet/chelsio/cxgb4/
4600
4601 CXGB4 ISCSI DRIVER (CXGB4I)
4602 M:      Karen Xie <kxie@chelsio.com>
4603 L:      linux-scsi@vger.kernel.org
4604 W:      http://www.chelsio.com
4605 S:      Supported
4606 F:      drivers/scsi/cxgbi/cxgb4i
4607
4608 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4609 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4610 L:      linux-rdma@vger.kernel.org
4611 W:      http://www.openfabrics.org
4612 S:      Supported
4613 F:      drivers/infiniband/hw/cxgb4/
4614 F:      include/uapi/rdma/cxgb4-abi.h
4615
4616 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4617 M:      Vishal Kulkarni <vishal@gmail.com>
4618 L:      netdev@vger.kernel.org
4619 W:      http://www.chelsio.com
4620 S:      Supported
4621 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4622
4623 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4624 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4625 M:      Andrew Donnellan <ajd@linux.ibm.com>
4626 L:      linuxppc-dev@lists.ozlabs.org
4627 S:      Supported
4628 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4629 F:      drivers/misc/cxl/
4630 F:      include/misc/cxl*
4631 F:      include/uapi/misc/cxl.h
4632 F:      Documentation/powerpc/cxl.rst
4633 F:      Documentation/ABI/testing/sysfs-class-cxl
4634
4635 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4636 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4637 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4638 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4639 L:      linux-scsi@vger.kernel.org
4640 S:      Supported
4641 F:      drivers/scsi/cxlflash/
4642 F:      include/uapi/scsi/cxlflash_ioctl.h
4643 F:      Documentation/powerpc/cxlflash.rst
4644
4645 CYBERPRO FB DRIVER
4646 M:      Russell King <linux@armlinux.org.uk>
4647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4648 W:      http://www.armlinux.org.uk/
4649 S:      Maintained
4650 F:      drivers/video/fbdev/cyber2000fb.*
4651
4652 CYCLADES ASYNC MUX DRIVER
4653 W:      http://www.cyclades.com/
4654 S:      Orphan
4655 F:      drivers/tty/cyclades.c
4656 F:      include/linux/cyclades.h
4657 F:      include/uapi/linux/cyclades.h
4658
4659 CYCLADES PC300 DRIVER
4660 W:      http://www.cyclades.com/
4661 S:      Orphan
4662 F:      drivers/net/wan/pc300*
4663
4664 CYPRESS_FIRMWARE MEDIA DRIVER
4665 M:      Antti Palosaari <crope@iki.fi>
4666 L:      linux-media@vger.kernel.org
4667 W:      https://linuxtv.org
4668 W:      http://palosaari.fi/linux/
4669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4670 T:      git git://linuxtv.org/anttip/media_tree.git
4671 S:      Maintained
4672 F:      drivers/media/common/cypress_firmware*
4673
4674 CYTTSP TOUCHSCREEN DRIVER
4675 M:      Ferruh Yigit <fery@cypress.com>
4676 L:      linux-input@vger.kernel.org
4677 S:      Supported
4678 F:      drivers/input/touchscreen/cyttsp*
4679 F:      include/linux/input/cyttsp.h
4680
4681 D-LINK DIR-685 TOUCHKEYS DRIVER
4682 M:      Linus Walleij <linus.walleij@linaro.org>
4683 L:      linux-input@vger.kernel.org
4684 S:      Supported
4685 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4686
4687 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4688 M:      Joshua Kinard <kumba@gentoo.org>
4689 S:      Maintained
4690 F:      drivers/rtc/rtc-ds1685.c
4691 F:      include/linux/rtc/ds1685.h
4692
4693 DAMA SLAVE for AX.25
4694 M:      Joerg Reuter <jreuter@yaina.de>
4695 W:      http://yaina.de/jreuter/
4696 W:      http://www.qsl.net/dl1bke/
4697 L:      linux-hams@vger.kernel.org
4698 S:      Maintained
4699 F:      net/ax25/af_ax25.c
4700 F:      net/ax25/ax25_dev.c
4701 F:      net/ax25/ax25_ds_*
4702 F:      net/ax25/ax25_in.c
4703 F:      net/ax25/ax25_out.c
4704 F:      net/ax25/ax25_timer.c
4705 F:      net/ax25/sysctl_net_ax25.c
4706
4707 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4708 L:      netdev@vger.kernel.org
4709 S:      Orphan
4710 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4711 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4712
4713 DC390/AM53C974 SCSI driver
4714 M:      Hannes Reinecke <hare@suse.com>
4715 L:      linux-scsi@vger.kernel.org
4716 S:      Maintained
4717 F:      drivers/scsi/am53c974.c
4718
4719 DC395x SCSI driver
4720 M:      Oliver Neukum <oliver@neukum.org>
4721 M:      Ali Akcaagac <aliakc@web.de>
4722 M:      Jamie Lenehan <lenehan@twibble.org>
4723 L:      dc395x@twibble.org
4724 W:      http://twibble.org/dist/dc395x/
4725 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4726 S:      Maintained
4727 F:      Documentation/scsi/dc395x.rst
4728 F:      drivers/scsi/dc395x.*
4729
4730 DCCP PROTOCOL
4731 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4732 L:      dccp@vger.kernel.org
4733 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4734 S:      Maintained
4735 F:      include/linux/dccp.h
4736 F:      include/uapi/linux/dccp.h
4737 F:      include/linux/tfrc.h
4738 F:      net/dccp/
4739
4740 DECnet NETWORK LAYER
4741 W:      http://linux-decnet.sourceforge.net
4742 L:      linux-decnet-user@lists.sourceforge.net
4743 S:      Orphan
4744 F:      Documentation/networking/decnet.txt
4745 F:      net/decnet/
4746
4747 DECSTATION PLATFORM SUPPORT
4748 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4749 L:      linux-mips@vger.kernel.org
4750 W:      http://www.linux-mips.org/wiki/DECstation
4751 S:      Maintained
4752 F:      arch/mips/dec/
4753 F:      arch/mips/include/asm/dec/
4754 F:      arch/mips/include/asm/mach-dec/
4755
4756 DEFXX FDDI NETWORK DRIVER
4757 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4758 S:      Maintained
4759 F:      drivers/net/fddi/defxx.*
4760
4761 DEINTERLACE DRIVERS FOR ALLWINNER H3
4762 M:      Jernej Skrabec <jernej.skrabec@siol.net>
4763 L:      linux-media@vger.kernel.org
4764 T:      git git://linuxtv.org/media_tree.git
4765 S:      Maintained
4766 F:      drivers/media/platform/sunxi/sun8i-di/
4767 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
4768
4769 DEFZA FDDI NETWORK DRIVER
4770 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4771 S:      Maintained
4772 F:      drivers/net/fddi/defza.*
4773
4774 DELL LAPTOP DRIVER
4775 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4776 M:      Pali Rohár <pali.rohar@gmail.com>
4777 L:      platform-driver-x86@vger.kernel.org
4778 S:      Maintained
4779 F:      drivers/platform/x86/dell-laptop.c
4780
4781 DELL LAPTOP FREEFALL DRIVER
4782 M:      Pali Rohár <pali.rohar@gmail.com>
4783 S:      Maintained
4784 F:      drivers/platform/x86/dell-smo8800.c
4785
4786 DELL LAPTOP RBTN DRIVER
4787 M:      Pali Rohár <pali.rohar@gmail.com>
4788 S:      Maintained
4789 F:      drivers/platform/x86/dell-rbtn.*
4790
4791 DELL LAPTOP SMM DRIVER
4792 M:      Pali Rohár <pali.rohar@gmail.com>
4793 S:      Maintained
4794 F:      drivers/hwmon/dell-smm-hwmon.c
4795 F:      include/uapi/linux/i8k.h
4796
4797 DELL REMOTE BIOS UPDATE DRIVER
4798 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4799 L:      platform-driver-x86@vger.kernel.org
4800 S:      Maintained
4801 F:      drivers/platform/x86/dell_rbu.c
4802
4803 DELL SMBIOS DRIVER
4804 M:      Pali Rohár <pali.rohar@gmail.com>
4805 M:      Mario Limonciello <mario.limonciello@dell.com>
4806 L:      platform-driver-x86@vger.kernel.org
4807 S:      Maintained
4808 F:      drivers/platform/x86/dell-smbios.*
4809
4810 DELL SMBIOS SMM DRIVER
4811 M:      Mario Limonciello <mario.limonciello@dell.com>
4812 L:      platform-driver-x86@vger.kernel.org
4813 S:      Maintained
4814 F:      drivers/platform/x86/dell-smbios-smm.c
4815
4816 DELL SMBIOS WMI DRIVER
4817 M:      Mario Limonciello <mario.limonciello@dell.com>
4818 L:      platform-driver-x86@vger.kernel.org
4819 S:      Maintained
4820 F:      drivers/platform/x86/dell-smbios-wmi.c
4821 F:      tools/wmi/dell-smbios-example.c
4822
4823 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4824 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4825 L:      platform-driver-x86@vger.kernel.org
4826 S:      Maintained
4827 F:      Documentation/driver-api/dcdbas.rst
4828 F:      drivers/platform/x86/dcdbas.*
4829
4830 DELL WMI DESCRIPTOR DRIVER
4831 M:      Mario Limonciello <mario.limonciello@dell.com>
4832 S:      Maintained
4833 F:      drivers/platform/x86/dell-wmi-descriptor.c
4834
4835 DELL WMI NOTIFICATIONS DRIVER
4836 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4837 M:      Pali Rohár <pali.rohar@gmail.com>
4838 S:      Maintained
4839 F:      drivers/platform/x86/dell-wmi.c
4840
4841 DELTA ST MEDIA DRIVER
4842 M:      Hugues Fruchet <hugues.fruchet@st.com>
4843 L:      linux-media@vger.kernel.org
4844 T:      git git://linuxtv.org/media_tree.git
4845 W:      https://linuxtv.org
4846 S:      Supported
4847 F:      drivers/media/platform/sti/delta
4848
4849 DENALI NAND DRIVER
4850 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4851 L:      linux-mtd@lists.infradead.org
4852 S:      Supported
4853 F:      drivers/mtd/nand/raw/denali*
4854
4855 DESIGNWARE EDMA CORE IP DRIVER
4856 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4857 L:      dmaengine@vger.kernel.org
4858 S:      Maintained
4859 F:      drivers/dma/dw-edma/
4860 F:      include/linux/dma/edma.h
4861
4862 DESIGNWARE USB2 DRD IP DRIVER
4863 M:      Minas Harutyunyan <hminas@synopsys.com>
4864 L:      linux-usb@vger.kernel.org
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4866 S:      Maintained
4867 F:      drivers/usb/dwc2/
4868
4869 DESIGNWARE USB3 DRD IP DRIVER
4870 M:      Felipe Balbi <balbi@kernel.org>
4871 L:      linux-usb@vger.kernel.org
4872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4873 S:      Maintained
4874 F:      drivers/usb/dwc3/
4875
4876 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4877 M:      Andreas Klinger <ak@it-klinger.de>
4878 L:      linux-iio@vger.kernel.org
4879 S:      Maintained
4880 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4881 F:      drivers/iio/proximity/srf*.c
4882
4883 DEVICE COREDUMP (DEV_COREDUMP)
4884 M:      Johannes Berg <johannes@sipsolutions.net>
4885 L:      linux-kernel@vger.kernel.org
4886 S:      Maintained
4887 F:      drivers/base/devcoredump.c
4888 F:      include/linux/devcoredump.h
4889
4890 DEVICE FREQUENCY (DEVFREQ)
4891 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4892 M:      Kyungmin Park <kyungmin.park@samsung.com>
4893 M:      Chanwoo Choi <cw00.choi@samsung.com>
4894 L:      linux-pm@vger.kernel.org
4895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4896 S:      Maintained
4897 F:      drivers/devfreq/
4898 F:      include/linux/devfreq.h
4899 F:      Documentation/devicetree/bindings/devfreq/
4900 F:      include/trace/events/devfreq.h
4901
4902 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4903 M:      Chanwoo Choi <cw00.choi@samsung.com>
4904 L:      linux-pm@vger.kernel.org
4905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4906 S:      Supported
4907 F:      drivers/devfreq/event/
4908 F:      drivers/devfreq/devfreq-event.c
4909 F:      include/dt-bindings/pmu/exynos_ppmu.h
4910 F:      include/linux/devfreq-event.h
4911 F:      Documentation/devicetree/bindings/devfreq/event/
4912
4913 DEVICE NUMBER REGISTRY
4914 M:      Torben Mathiasen <device@lanana.org>
4915 W:      http://lanana.org/docs/device-list/index.html
4916 S:      Maintained
4917
4918 DEVICE-MAPPER  (LVM)
4919 M:      Alasdair Kergon <agk@redhat.com>
4920 M:      Mike Snitzer <snitzer@redhat.com>
4921 M:      dm-devel@redhat.com
4922 L:      dm-devel@redhat.com
4923 W:      http://sources.redhat.com/dm
4924 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4926 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4927 S:      Maintained
4928 F:      Documentation/admin-guide/device-mapper/
4929 F:      drivers/md/Makefile
4930 F:      drivers/md/Kconfig
4931 F:      drivers/md/dm*
4932 F:      drivers/md/persistent-data/
4933 F:      include/linux/device-mapper.h
4934 F:      include/linux/dm-*.h
4935 F:      include/uapi/linux/dm-*.h
4936
4937 DEVLINK
4938 M:      Jiri Pirko <jiri@mellanox.com>
4939 L:      netdev@vger.kernel.org
4940 S:      Supported
4941 F:      net/core/devlink.c
4942 F:      include/net/devlink.h
4943 F:      include/uapi/linux/devlink.h
4944 F:      Documentation/networking/devlink
4945
4946 DIALOG SEMICONDUCTOR DRIVERS
4947 M:      Support Opensource <support.opensource@diasemi.com>
4948 W:      http://www.dialog-semiconductor.com/products
4949 S:      Supported
4950 F:      Documentation/hwmon/da90??.rst
4951 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4952 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4953 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4954 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4955 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4956 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4957 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4958 F:      drivers/gpio/gpio-da90??.c
4959 F:      drivers/hwmon/da90??-hwmon.c
4960 F:      drivers/iio/adc/da91??-*.c
4961 F:      drivers/input/misc/da90??_onkey.c
4962 F:      drivers/input/touchscreen/da9052_tsi.c
4963 F:      drivers/leds/leds-da90??.c
4964 F:      drivers/mfd/da903x.c
4965 F:      drivers/mfd/da90??-*.c
4966 F:      drivers/mfd/da91??-*.c
4967 F:      drivers/pinctrl/pinctrl-da90??.c
4968 F:      drivers/power/supply/da9052-battery.c
4969 F:      drivers/power/supply/da91??-*.c
4970 F:      drivers/regulator/da903x.c
4971 F:      drivers/regulator/da9???-regulator.[ch]
4972 F:      drivers/regulator/slg51000-regulator.[ch]
4973 F:      drivers/thermal/da90??-thermal.c
4974 F:      drivers/rtc/rtc-da90??.c
4975 F:      drivers/video/backlight/da90??_bl.c
4976 F:      drivers/watchdog/da90??_wdt.c
4977 F:      include/linux/mfd/da903x.h
4978 F:      include/linux/mfd/da9052/
4979 F:      include/linux/mfd/da9055/
4980 F:      include/linux/mfd/da9062/
4981 F:      include/linux/mfd/da9063/
4982 F:      include/linux/mfd/da9150/
4983 F:      include/linux/regulator/da9211.h
4984 F:      include/sound/da[79]*.h
4985 F:      sound/soc/codecs/da[79]*.[ch]
4986
4987 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4988 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4989 L:      linux-gpio@vger.kernel.org
4990 S:      Maintained
4991 F:      drivers/gpio/gpio-gpio-mm.c
4992
4993 DIOLAN U2C-12 I2C DRIVER
4994 M:      Guenter Roeck <linux@roeck-us.net>
4995 L:      linux-i2c@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4998
4999 FILESYSTEM DIRECT ACCESS (DAX)
5000 M:      Dan Williams <dan.j.williams@intel.com>
5001 R:      Matthew Wilcox <willy@infradead.org>
5002 R:      Jan Kara <jack@suse.cz>
5003 L:      linux-fsdevel@vger.kernel.org
5004 L:      linux-nvdimm@lists.01.org
5005 S:      Supported
5006 F:      fs/dax.c
5007 F:      include/linux/dax.h
5008 F:      include/trace/events/fs_dax.h
5009
5010 DEVICE DIRECT ACCESS (DAX)
5011 M:      Dan Williams <dan.j.williams@intel.com>
5012 M:      Vishal Verma <vishal.l.verma@intel.com>
5013 M:      Dave Jiang <dave.jiang@intel.com>
5014 L:      linux-nvdimm@lists.01.org
5015 S:      Supported
5016 F:      drivers/dax/
5017
5018 DIRECTORY NOTIFICATION (DNOTIFY)
5019 M:      Jan Kara <jack@suse.cz>
5020 R:      Amir Goldstein <amir73il@gmail.com>
5021 L:      linux-fsdevel@vger.kernel.org
5022 S:      Maintained
5023 F:      Documentation/filesystems/dnotify.txt
5024 F:      fs/notify/dnotify/
5025 F:      include/linux/dnotify.h
5026
5027 DISK GEOMETRY AND PARTITION HANDLING
5028 M:      Andries Brouwer <aeb@cwi.nl>
5029 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5030 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5031 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5032 S:      Maintained
5033
5034 DISKQUOTA
5035 M:      Jan Kara <jack@suse.com>
5036 S:      Maintained
5037 F:      Documentation/filesystems/quota.txt
5038 F:      fs/quota/
5039 F:      include/linux/quota*.h
5040 F:      include/uapi/linux/quota*.h
5041
5042 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5043 M:      Bernie Thompson <bernie@plugable.com>
5044 L:      linux-fbdev@vger.kernel.org
5045 S:      Maintained
5046 W:      http://plugable.com/category/projects/udlfb/
5047 F:      drivers/video/fbdev/udlfb.c
5048 F:      include/video/udlfb.h
5049 F:      Documentation/fb/udlfb.rst
5050
5051 DISTRIBUTED LOCK MANAGER (DLM)
5052 M:      Christine Caulfield <ccaulfie@redhat.com>
5053 M:      David Teigland <teigland@redhat.com>
5054 L:      cluster-devel@redhat.com
5055 W:      http://sources.redhat.com/cluster/
5056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5057 S:      Supported
5058 F:      fs/dlm/
5059
5060 DMA BUFFER SHARING FRAMEWORK
5061 M:      Sumit Semwal <sumit.semwal@linaro.org>
5062 S:      Maintained
5063 L:      linux-media@vger.kernel.org
5064 L:      dri-devel@lists.freedesktop.org
5065 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5066 F:      drivers/dma-buf/
5067 F:      include/linux/dma-buf*
5068 F:      include/linux/dma-resv.h
5069 F:      include/linux/*fence.h
5070 F:      Documentation/driver-api/dma-buf.rst
5071 K:      dma_(buf|fence|resv)
5072 T:      git git://anongit.freedesktop.org/drm/drm-misc
5073
5074 DMA-BUF HEAPS FRAMEWORK
5075 M:      Sumit Semwal <sumit.semwal@linaro.org>
5076 R:      Andrew F. Davis <afd@ti.com>
5077 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5078 R:      Liam Mark <lmark@codeaurora.org>
5079 R:      Laura Abbott <labbott@redhat.com>
5080 R:      Brian Starkey <Brian.Starkey@arm.com>
5081 R:      John Stultz <john.stultz@linaro.org>
5082 S:      Maintained
5083 L:      linux-media@vger.kernel.org
5084 L:      dri-devel@lists.freedesktop.org
5085 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5086 F:      include/uapi/linux/dma-heap.h
5087 F:      include/linux/dma-heap.h
5088 F:      drivers/dma-buf/dma-heap.c
5089 F:      drivers/dma-buf/heaps/*
5090 T:      git git://anongit.freedesktop.org/drm/drm-misc
5091
5092 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5093 M:      Vinod Koul <vkoul@kernel.org>
5094 L:      dmaengine@vger.kernel.org
5095 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5096 S:      Maintained
5097 F:      drivers/dma/
5098 F:      include/linux/dmaengine.h
5099 F:      include/linux/of_dma.h
5100 F:      Documentation/devicetree/bindings/dma/
5101 F:      Documentation/driver-api/dmaengine/
5102 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
5103
5104 DMA MAPPING HELPERS
5105 M:      Christoph Hellwig <hch@lst.de>
5106 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5107 R:      Robin Murphy <robin.murphy@arm.com>
5108 L:      iommu@lists.linux-foundation.org
5109 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5110 W:      http://git.infradead.org/users/hch/dma-mapping.git
5111 S:      Supported
5112 F:      kernel/dma/
5113 F:      include/asm-generic/dma-mapping.h
5114 F:      include/linux/dma-direct.h
5115 F:      include/linux/dma-mapping.h
5116 F:      include/linux/dma-noncoherent.h
5117
5118 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5119 M:      Lukasz Luba <lukasz.luba@arm.com>
5120 L:      linux-pm@vger.kernel.org
5121 L:      linux-samsung-soc@vger.kernel.org
5122 S:      Maintained
5123 F:      drivers/memory/samsung/exynos5422-dmc.c
5124 F:      Documentation/devicetree/bindings/memory-controllers/exynos5422-dmc.txt
5125
5126 DME1737 HARDWARE MONITOR DRIVER
5127 M:      Juerg Haefliger <juergh@gmail.com>
5128 L:      linux-hwmon@vger.kernel.org
5129 S:      Maintained
5130 F:      Documentation/hwmon/dme1737.rst
5131 F:      drivers/hwmon/dme1737.c
5132
5133 DMI/SMBIOS SUPPORT
5134 M:      Jean Delvare <jdelvare@suse.com>
5135 S:      Maintained
5136 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
5137 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5138 F:      drivers/firmware/dmi-id.c
5139 F:      drivers/firmware/dmi_scan.c
5140 F:      include/linux/dmi.h
5141
5142 DOCUMENTATION
5143 M:      Jonathan Corbet <corbet@lwn.net>
5144 L:      linux-doc@vger.kernel.org
5145 S:      Maintained
5146 F:      Documentation/
5147 F:      scripts/documentation-file-ref-check
5148 F:      scripts/kernel-doc
5149 F:      scripts/sphinx-pre-install
5150 X:      Documentation/ABI/
5151 X:      Documentation/firmware-guide/acpi/
5152 X:      Documentation/devicetree/
5153 X:      Documentation/i2c/
5154 X:      Documentation/media/
5155 X:      Documentation/power/
5156 X:      Documentation/spi/
5157 T:      git git://git.lwn.net/linux.git docs-next
5158
5159 DOCUMENTATION/ITALIAN
5160 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5161 L:      linux-doc@vger.kernel.org
5162 S:      Maintained
5163 F:      Documentation/translations/it_IT
5164
5165 DOCUMENTATION SCRIPTS
5166 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5167 L:      linux-doc@vger.kernel.org
5168 S:      Maintained
5169 F:      scripts/documentation-file-ref-check
5170 F:      scripts/sphinx-pre-install
5171 F:      Documentation/sphinx/parse-headers.pl
5172
5173 DONGWOON DW9714 LENS VOICE COIL DRIVER
5174 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5175 L:      linux-media@vger.kernel.org
5176 T:      git git://linuxtv.org/media_tree.git
5177 S:      Maintained
5178 F:      drivers/media/i2c/dw9714.c
5179 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5180
5181 DONGWOON DW9807 LENS VOICE COIL DRIVER
5182 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5183 L:      linux-media@vger.kernel.org
5184 T:      git git://linuxtv.org/media_tree.git
5185 S:      Maintained
5186 F:      drivers/media/i2c/dw9807-vcm.c
5187 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5188
5189 DOUBLETALK DRIVER
5190 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5191 L:      blinux-list@redhat.com
5192 S:      Maintained
5193 F:      drivers/char/dtlk.c
5194 F:      include/linux/dtlk.h
5195
5196 DPAA2 DATAPATH I/O (DPIO) DRIVER
5197 M:      Roy Pledge <Roy.Pledge@nxp.com>
5198 L:      linux-kernel@vger.kernel.org
5199 S:      Maintained
5200 F:      drivers/soc/fsl/dpio
5201
5202 DPAA2 ETHERNET DRIVER
5203 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5204 L:      netdev@vger.kernel.org
5205 S:      Maintained
5206 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5207 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5208 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5209 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5210 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5211 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5212 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5213 F:      Documentation/networking/device_drivers/freescale/dpaa2/ethernet-driver.rst
5214 F:      Documentation/networking/device_drivers/freescale/dpaa2/mac-phy-support.rst
5215
5216 DPAA2 ETHERNET SWITCH DRIVER
5217 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5218 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5219 L:      linux-kernel@vger.kernel.org
5220 S:      Maintained
5221 F:      drivers/staging/fsl-dpaa2/ethsw
5222
5223 DPT_I2O SCSI RAID DRIVER
5224 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5225 L:      linux-scsi@vger.kernel.org
5226 W:      http://www.adaptec.com/
5227 S:      Maintained
5228 F:      drivers/scsi/dpt*
5229 F:      drivers/scsi/dpt/
5230
5231 DRBD DRIVER
5232 M:      Philipp Reisner <philipp.reisner@linbit.com>
5233 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5234 L:      drbd-dev@lists.linbit.com
5235 W:      http://www.drbd.org
5236 T:      git git://git.linbit.com/linux-drbd.git
5237 T:      git git://git.linbit.com/drbd-8.4.git
5238 S:      Supported
5239 F:      drivers/block/drbd/
5240 F:      lib/lru_cache.c
5241 F:      Documentation/admin-guide/blockdev/
5242
5243 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5244 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5245 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5247 S:      Supported
5248 F:      Documentation/core-api/kobject.rst
5249 F:      drivers/base/
5250 F:      fs/debugfs/
5251 F:      fs/sysfs/
5252 F:      include/linux/debugfs.h
5253 F:      include/linux/kobj*
5254 F:      lib/kobj*
5255
5256 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5257 M:      Kevin Hilman <khilman@kernel.org>
5258 M:      Nishanth Menon <nm@ti.com>
5259 S:      Maintained
5260 F:      drivers/power/avs/
5261 F:      include/linux/power/smartreflex.h
5262 L:      linux-pm@vger.kernel.org
5263
5264 DRM DRIVER FOR ARM PL111 CLCD
5265 M:      Eric Anholt <eric@anholt.net>
5266 T:      git git://anongit.freedesktop.org/drm/drm-misc
5267 S:      Supported
5268 F:      drivers/gpu/drm/pl111/
5269
5270 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5271 M:      Linus Walleij <linus.walleij@linaro.org>
5272 T:      git git://anongit.freedesktop.org/drm/drm-misc
5273 S:      Maintained
5274 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5275 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5276
5277 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5278 M:      Dave Airlie <airlied@redhat.com>
5279 S:      Odd Fixes
5280 F:      drivers/gpu/drm/ast/
5281
5282 DRM DRIVER FOR ASPEED BMC GFX
5283 M:      Joel Stanley <joel@jms.id.au>
5284 L:      linux-aspeed@lists.ozlabs.org
5285 T:      git git://anongit.freedesktop.org/drm/drm-misc
5286 S:      Supported
5287 F:      drivers/gpu/drm/aspeed/
5288 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5289
5290 DRM DRIVER FOR BOCHS VIRTUAL GPU
5291 M:      Gerd Hoffmann <kraxel@redhat.com>
5292 L:      virtualization@lists.linux-foundation.org
5293 T:      git git://anongit.freedesktop.org/drm/drm-misc
5294 S:      Maintained
5295 F:      drivers/gpu/drm/bochs/
5296
5297 DRM DRIVER FOR BOE HIMAX8279D PANELS
5298 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5299 S:      Maintained
5300 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5301 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.txt
5302
5303 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5304 M:      Linus Walleij <linus.walleij@linaro.org>
5305 T:      git git://anongit.freedesktop.org/drm/drm-misc
5306 S:      Maintained
5307 F:      drivers/gpu/drm/tve200/
5308
5309 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5310 M:      Icenowy Zheng <icenowy@aosc.io>
5311 S:      Maintained
5312 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5313 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5314
5315 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5316 M:      Jagan Teki <jagan@amarulasolutions.com>
5317 S:      Maintained
5318 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5319 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5320
5321 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5322 M:      Hans de Goede <hdegoede@redhat.com>
5323 T:      git git://anongit.freedesktop.org/drm/drm-misc
5324 S:      Maintained
5325 F:      drivers/gpu/drm/tiny/gm12u320.c
5326
5327 DRM DRIVER FOR ILITEK ILI9225 PANELS
5328 M:      David Lechner <david@lechnology.com>
5329 T:      git git://anongit.freedesktop.org/drm/drm-misc
5330 S:      Maintained
5331 F:      drivers/gpu/drm/tiny/ili9225.c
5332 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5333
5334 DRM DRIVER FOR ILITEK ILI9486 PANELS
5335 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5336 T:      git git://anongit.freedesktop.org/drm/drm-misc
5337 S:      Maintained
5338 F:      drivers/gpu/drm/tiny/ili9486.c
5339 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5340
5341 DRM DRIVER FOR HX8357D PANELS
5342 M:      Eric Anholt <eric@anholt.net>
5343 T:      git git://anongit.freedesktop.org/drm/drm-misc
5344 S:      Maintained
5345 F:      drivers/gpu/drm/tiny/hx8357d.c
5346 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5347
5348 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5349 S:      Orphan / Obsolete
5350 F:      drivers/gpu/drm/i810/
5351 F:      include/uapi/drm/i810_drm.h
5352
5353 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5354 S:      Orphan / Obsolete
5355 F:      drivers/gpu/drm/mga/
5356 F:      include/uapi/drm/mga_drm.h
5357
5358 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5359 M:      Dave Airlie <airlied@redhat.com>
5360 S:      Odd Fixes
5361 F:      drivers/gpu/drm/mgag200/
5362
5363 DRM DRIVER FOR MI0283QT
5364 M:      Noralf Trønnes <noralf@tronnes.org>
5365 T:      git git://anongit.freedesktop.org/drm/drm-misc
5366 S:      Maintained
5367 F:      drivers/gpu/drm/tiny/mi0283qt.c
5368 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5369
5370 DRM DRIVER FOR MSM ADRENO GPU
5371 M:      Rob Clark <robdclark@gmail.com>
5372 M:      Sean Paul <sean@poorly.run>
5373 L:      linux-arm-msm@vger.kernel.org
5374 L:      dri-devel@lists.freedesktop.org
5375 L:      freedreno@lists.freedesktop.org
5376 T:      git https://gitlab.freedesktop.org/drm/msm.git
5377 S:      Maintained
5378 F:      drivers/gpu/drm/msm/
5379 F:      include/uapi/drm/msm_drm.h
5380 F:      Documentation/devicetree/bindings/display/msm/
5381
5382 DRM DRIVER FOR NOVATEK NT35510 PANELS
5383 M:      Linus Walleij <linus.walleij@linaro.org>
5384 T:      git git://anongit.freedesktop.org/drm/drm-misc
5385 S:      Maintained
5386 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5387 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5388
5389 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5390 M:      Ben Skeggs <bskeggs@redhat.com>
5391 L:      dri-devel@lists.freedesktop.org
5392 L:      nouveau@lists.freedesktop.org
5393 T:      git git://github.com/skeggsb/linux
5394 S:      Supported
5395 F:      drivers/gpu/drm/nouveau/
5396 F:      include/uapi/drm/nouveau_drm.h
5397
5398 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5399 M:      Stefan Mavrodiev <stefan@olimex.com>
5400 S:      Maintained
5401 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5402 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5403
5404 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5405 M:      Noralf Trønnes <noralf@tronnes.org>
5406 T:      git git://anongit.freedesktop.org/drm/drm-misc
5407 S:      Maintained
5408 F:      drivers/gpu/drm/tiny/repaper.c
5409 F:      Documentation/devicetree/bindings/display/repaper.txt
5410
5411 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5412 M:      Dave Airlie <airlied@redhat.com>
5413 M:      Gerd Hoffmann <kraxel@redhat.com>
5414 L:      virtualization@lists.linux-foundation.org
5415 T:      git git://anongit.freedesktop.org/drm/drm-misc
5416 S:      Obsolete
5417 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5418 F:      drivers/gpu/drm/cirrus/
5419
5420 DRM DRIVER FOR QXL VIRTUAL GPU
5421 M:      Dave Airlie <airlied@redhat.com>
5422 M:      Gerd Hoffmann <kraxel@redhat.com>
5423 L:      virtualization@lists.linux-foundation.org
5424 L:      spice-devel@lists.freedesktop.org
5425 T:      git git://anongit.freedesktop.org/drm/drm-misc
5426 S:      Maintained
5427 F:      drivers/gpu/drm/qxl/
5428 F:      include/uapi/drm/qxl_drm.h
5429
5430 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5431 M:      Robert Chiras <robert.chiras@nxp.com>
5432 S:      Maintained
5433 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5434 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5435
5436 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5437 S:      Orphan / Obsolete
5438 F:      drivers/gpu/drm/r128/
5439 F:      include/uapi/drm/r128_drm.h
5440
5441 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5442 M:      Guido Günther <agx@sigxcpu.org>
5443 R:      Purism Kernel Team <kernel@puri.sm>
5444 S:      Maintained
5445 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5446 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5447
5448 DRM DRIVER FOR SAVAGE VIDEO CARDS
5449 S:      Orphan / Obsolete
5450 F:      drivers/gpu/drm/savage/
5451 F:      include/uapi/drm/savage_drm.h
5452
5453 DRM DRIVER FOR SIS VIDEO CARDS
5454 S:      Orphan / Obsolete
5455 F:      drivers/gpu/drm/sis/
5456 F:      include/uapi/drm/sis_drm.h
5457
5458 DRM DRIVER FOR SITRONIX ST7701 PANELS
5459 M:      Jagan Teki <jagan@amarulasolutions.com>
5460 S:      Maintained
5461 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5462 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5463
5464 DRM DRIVER FOR SITRONIX ST7586 PANELS
5465 M:      David Lechner <david@lechnology.com>
5466 T:      git git://anongit.freedesktop.org/drm/drm-misc
5467 S:      Maintained
5468 F:      drivers/gpu/drm/tiny/st7586.c
5469 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5470
5471 DRM DRIVER FOR SITRONIX ST7735R PANELS
5472 M:      David Lechner <david@lechnology.com>
5473 T:      git git://anongit.freedesktop.org/drm/drm-misc
5474 S:      Maintained
5475 F:      drivers/gpu/drm/tiny/st7735r.c
5476 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
5477
5478 DRM DRIVER FOR SONY ACX424AKP PANELS
5479 M:      Linus Walleij <linus.walleij@linaro.org>
5480 T:      git git://anongit.freedesktop.org/drm/drm-misc
5481 S:      Maintained
5482 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
5483
5484 DRM DRIVER FOR ST-ERICSSON MCDE
5485 M:      Linus Walleij <linus.walleij@linaro.org>
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487 S:      Maintained
5488 F:      drivers/gpu/drm/mcde/
5489 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5490
5491 DRM DRIVER FOR TDFX VIDEO CARDS
5492 S:      Orphan / Obsolete
5493 F:      drivers/gpu/drm/tdfx/
5494
5495 DRM DRIVER FOR TPO TPG110 PANELS
5496 M:      Linus Walleij <linus.walleij@linaro.org>
5497 T:      git git://anongit.freedesktop.org/drm/drm-misc
5498 S:      Maintained
5499 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5500 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5501
5502 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5503 M:      Dave Airlie <airlied@redhat.com>
5504 R:      Sean Paul <sean@poorly.run>
5505 L:      dri-devel@lists.freedesktop.org
5506 S:      Odd Fixes
5507 F:      drivers/gpu/drm/udl/
5508 T:      git git://anongit.freedesktop.org/drm/drm-misc
5509
5510 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5511 M:      Hans de Goede <hdegoede@redhat.com>
5512 L:      dri-devel@lists.freedesktop.org
5513 S:      Maintained
5514 F:      drivers/gpu/drm/vboxvideo/
5515 T:      git git://anongit.freedesktop.org/drm/drm-misc
5516
5517 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5518 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5519 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5520 R:      Daniel Vetter <daniel@ffwll.ch>
5521 T:      git git://anongit.freedesktop.org/drm/drm-misc
5522 S:      Maintained
5523 L:      dri-devel@lists.freedesktop.org
5524 F:      drivers/gpu/drm/vkms/
5525 F:      Documentation/gpu/vkms.rst
5526
5527 DRM DRIVER FOR VMWARE VIRTUAL GPU
5528 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5529 M:      Thomas Hellstrom <thellstrom@vmware.com>
5530 L:      dri-devel@lists.freedesktop.org
5531 T:      git git://people.freedesktop.org/~thomash/linux
5532 S:      Supported
5533 F:      drivers/gpu/drm/vmwgfx/
5534 F:      include/uapi/drm/vmwgfx_drm.h
5535
5536 DRM DRIVERS
5537 M:      David Airlie <airlied@linux.ie>
5538 M:      Daniel Vetter <daniel@ffwll.ch>
5539 L:      dri-devel@lists.freedesktop.org
5540 T:      git git://anongit.freedesktop.org/drm/drm
5541 B:      https://bugs.freedesktop.org/
5542 C:      irc://chat.freenode.net/dri-devel
5543 S:      Maintained
5544 F:      drivers/gpu/drm/
5545 F:      drivers/gpu/vga/
5546 F:      Documentation/devicetree/bindings/display/
5547 F:      Documentation/devicetree/bindings/gpu/
5548 F:      Documentation/gpu/
5549 F:      include/drm/
5550 F:      include/uapi/drm/
5551 F:      include/linux/vga*
5552
5553 DRM DRIVERS AND MISC GPU PATCHES
5554 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5555 M:      Maxime Ripard <mripard@kernel.org>
5556 M:      Thomas Zimmermann <tzimmermann@suse.de>
5557 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5558 S:      Maintained
5559 T:      git git://anongit.freedesktop.org/drm/drm-misc
5560 F:      Documentation/gpu/
5561 F:      drivers/gpu/vga/
5562 F:      drivers/gpu/drm/*
5563 F:      include/drm/drm*
5564 F:      include/uapi/drm/drm*
5565 F:      include/linux/vga*
5566
5567 DRM DRIVERS FOR ALLWINNER A10
5568 M:      Maxime Ripard <mripard@kernel.org>
5569 M:      Chen-Yu Tsai <wens@csie.org>
5570 L:      dri-devel@lists.freedesktop.org
5571 S:      Supported
5572 F:      drivers/gpu/drm/sun4i/
5573 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5574 T:      git git://anongit.freedesktop.org/drm/drm-misc
5575
5576 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5577 M:      Maxime Ripard <mripard@kernel.org>
5578 M:      Chen-Yu Tsai <wens@csie.org>
5579 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5580 L:      dri-devel@lists.freedesktop.org
5581 S:      Supported
5582 F:      drivers/gpu/drm/sun4i/sun8i*
5583 T:      git git://anongit.freedesktop.org/drm/drm-misc
5584
5585 DRM DRIVERS FOR AMLOGIC SOCS
5586 M:      Neil Armstrong <narmstrong@baylibre.com>
5587 L:      dri-devel@lists.freedesktop.org
5588 L:      linux-amlogic@lists.infradead.org
5589 W:      http://linux-meson.com/
5590 S:      Supported
5591 F:      drivers/gpu/drm/meson/
5592 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5593 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5594 F:      Documentation/gpu/meson.rst
5595 T:      git git://anongit.freedesktop.org/drm/drm-misc
5596
5597 DRM DRIVERS FOR ATMEL HLCDC
5598 M:      Sam Ravnborg <sam@ravnborg.org>
5599 M:      Boris Brezillon <bbrezillon@kernel.org>
5600 L:      dri-devel@lists.freedesktop.org
5601 S:      Supported
5602 F:      drivers/gpu/drm/atmel-hlcdc/
5603 F:      Documentation/devicetree/bindings/display/atmel/
5604 T:      git git://anongit.freedesktop.org/drm/drm-misc
5605
5606 DRM DRIVERS FOR BRIDGE CHIPS
5607 M:      Andrzej Hajda <a.hajda@samsung.com>
5608 M:      Neil Armstrong <narmstrong@baylibre.com>
5609 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5610 R:      Jonas Karlman <jonas@kwiboo.se>
5611 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5612 S:      Maintained
5613 T:      git git://anongit.freedesktop.org/drm/drm-misc
5614 F:      drivers/gpu/drm/bridge/
5615
5616 DRM DRIVERS FOR EXYNOS
5617 M:      Inki Dae <inki.dae@samsung.com>
5618 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5619 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5620 M:      Kyungmin Park <kyungmin.park@samsung.com>
5621 L:      dri-devel@lists.freedesktop.org
5622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5623 S:      Supported
5624 F:      drivers/gpu/drm/exynos/
5625 F:      include/uapi/drm/exynos_drm.h
5626 F:      Documentation/devicetree/bindings/display/exynos/
5627
5628 DRM DRIVERS FOR FREESCALE DCU
5629 M:      Stefan Agner <stefan@agner.ch>
5630 M:      Alison Wang <alison.wang@nxp.com>
5631 L:      dri-devel@lists.freedesktop.org
5632 S:      Supported
5633 F:      drivers/gpu/drm/fsl-dcu/
5634 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5635 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5636 T:      git git://anongit.freedesktop.org/drm/drm-misc
5637
5638 DRM DRIVERS FOR FREESCALE IMX
5639 M:      Philipp Zabel <p.zabel@pengutronix.de>
5640 L:      dri-devel@lists.freedesktop.org
5641 S:      Maintained
5642 F:      drivers/gpu/drm/imx/
5643 F:      drivers/gpu/ipu-v3/
5644 F:      Documentation/devicetree/bindings/display/imx/
5645
5646 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5647 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5648 L:      dri-devel@lists.freedesktop.org
5649 T:      git git://github.com/patjak/drm-gma500
5650 S:      Maintained
5651 F:      drivers/gpu/drm/gma500/
5652
5653 DRM DRIVERS FOR HISILICON
5654 M:      Xinliang Liu <xinliang.liu@linaro.org>
5655 M:      Rongrong Zou <zourongrong@gmail.com>
5656 R:      John Stultz <john.stultz@linaro.org>
5657 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5658 R:      Chen Feng <puck.chen@hisilicon.com>
5659 L:      dri-devel@lists.freedesktop.org
5660 T:      git git://anongit.freedesktop.org/drm/drm-misc
5661 S:      Maintained
5662 F:      drivers/gpu/drm/hisilicon/
5663 F:      Documentation/devicetree/bindings/display/hisilicon/
5664
5665 DRM DRIVERS FOR LIMA
5666 M:      Qiang Yu <yuq825@gmail.com>
5667 L:      dri-devel@lists.freedesktop.org
5668 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5669 S:      Maintained
5670 F:      drivers/gpu/drm/lima/
5671 F:      include/uapi/drm/lima_drm.h
5672 T:      git git://anongit.freedesktop.org/drm/drm-misc
5673
5674 DRM DRIVERS FOR MEDIATEK
5675 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
5676 M:      Philipp Zabel <p.zabel@pengutronix.de>
5677 L:      dri-devel@lists.freedesktop.org
5678 S:      Supported
5679 F:      drivers/gpu/drm/mediatek/
5680 F:      Documentation/devicetree/bindings/display/mediatek/
5681
5682 DRM DRIVERS FOR NVIDIA TEGRA
5683 M:      Thierry Reding <thierry.reding@gmail.com>
5684 L:      dri-devel@lists.freedesktop.org
5685 L:      linux-tegra@vger.kernel.org
5686 T:      git git://anongit.freedesktop.org/tegra/linux.git
5687 S:      Supported
5688 F:      drivers/gpu/drm/tegra/
5689 F:      drivers/gpu/host1x/
5690 F:      include/linux/host1x.h
5691 F:      include/uapi/drm/tegra_drm.h
5692 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5693
5694 DRM DRIVERS FOR RENESAS
5695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5696 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5697 L:      dri-devel@lists.freedesktop.org
5698 L:      linux-renesas-soc@vger.kernel.org
5699 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5700 S:      Supported
5701 F:      drivers/gpu/drm/rcar-du/
5702 F:      drivers/gpu/drm/shmobile/
5703 F:      include/linux/platform_data/shmob_drm.h
5704 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5705 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5706 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5707
5708 DRM DRIVERS FOR ROCKCHIP
5709 M:      Sandy Huang <hjc@rock-chips.com>
5710 M:      Heiko Stübner <heiko@sntech.de>
5711 L:      dri-devel@lists.freedesktop.org
5712 S:      Maintained
5713 F:      drivers/gpu/drm/rockchip/
5714 F:      Documentation/devicetree/bindings/display/rockchip/
5715 T:      git git://anongit.freedesktop.org/drm/drm-misc
5716
5717 DRM DRIVERS FOR STI
5718 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5719 M:      Vincent Abriou <vincent.abriou@st.com>
5720 L:      dri-devel@lists.freedesktop.org
5721 T:      git git://anongit.freedesktop.org/drm/drm-misc
5722 S:      Maintained
5723 F:      drivers/gpu/drm/sti
5724 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5725
5726 DRM DRIVERS FOR STM
5727 M:      Yannick Fertre <yannick.fertre@st.com>
5728 M:      Philippe Cornu <philippe.cornu@st.com>
5729 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5730 M:      Vincent Abriou <vincent.abriou@st.com>
5731 L:      dri-devel@lists.freedesktop.org
5732 T:      git git://anongit.freedesktop.org/drm/drm-misc
5733 S:      Maintained
5734 F:      drivers/gpu/drm/stm
5735 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
5736
5737 DRM DRIVERS FOR TI LCDC
5738 M:      Jyri Sarha <jsarha@ti.com>
5739 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5740 L:      dri-devel@lists.freedesktop.org
5741 S:      Maintained
5742 F:      drivers/gpu/drm/tilcdc/
5743 F:      Documentation/devicetree/bindings/display/tilcdc/
5744
5745 DRM DRIVERS FOR TI OMAP
5746 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5747 L:      dri-devel@lists.freedesktop.org
5748 S:      Maintained
5749 F:      drivers/gpu/drm/omapdrm/
5750 F:      Documentation/devicetree/bindings/display/ti/
5751
5752 DRM DRIVERS FOR TI KEYSTONE
5753 M:      Jyri Sarha <jsarha@ti.com>
5754 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5755 L:      dri-devel@lists.freedesktop.org
5756 S:      Maintained
5757 F:      drivers/gpu/drm/tidss/
5758 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
5759 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
5760 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
5761 T:      git git://anongit.freedesktop.org/drm/drm-misc
5762
5763 DRM DRIVERS FOR V3D
5764 M:      Eric Anholt <eric@anholt.net>
5765 S:      Supported
5766 F:      drivers/gpu/drm/v3d/
5767 F:      include/uapi/drm/v3d_drm.h
5768 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5769 T:      git git://anongit.freedesktop.org/drm/drm-misc
5770
5771 DRM DRIVERS FOR VC4
5772 M:      Eric Anholt <eric@anholt.net>
5773 T:      git git://github.com/anholt/linux
5774 S:      Supported
5775 F:      drivers/gpu/drm/vc4/
5776 F:      include/uapi/drm/vc4_drm.h
5777 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5778 T:      git git://anongit.freedesktop.org/drm/drm-misc
5779
5780 DRM DRIVERS FOR VIVANTE GPU IP
5781 M:      Lucas Stach <l.stach@pengutronix.de>
5782 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5783 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5784 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5785 L:      dri-devel@lists.freedesktop.org
5786 S:      Maintained
5787 F:      drivers/gpu/drm/etnaviv/
5788 F:      include/uapi/drm/etnaviv_drm.h
5789 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
5790
5791 DRM DRIVERS FOR ZTE ZX
5792 M:      Shawn Guo <shawnguo@kernel.org>
5793 L:      dri-devel@lists.freedesktop.org
5794 S:      Maintained
5795 F:      drivers/gpu/drm/zte/
5796 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5797 T:      git git://anongit.freedesktop.org/drm/drm-misc
5798
5799 DRM PANEL DRIVERS
5800 M:      Thierry Reding <thierry.reding@gmail.com>
5801 R:      Sam Ravnborg <sam@ravnborg.org>
5802 L:      dri-devel@lists.freedesktop.org
5803 T:      git git://anongit.freedesktop.org/drm/drm-misc
5804 S:      Maintained
5805 F:      drivers/gpu/drm/drm_panel.c
5806 F:      drivers/gpu/drm/panel/
5807 F:      include/drm/drm_panel.h
5808 F:      Documentation/devicetree/bindings/display/panel/
5809
5810 DRM DRIVERS FOR XEN
5811 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5812 T:      git git://anongit.freedesktop.org/drm/drm-misc
5813 L:      dri-devel@lists.freedesktop.org
5814 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5815 S:      Supported
5816 F:      drivers/gpu/drm/xen/
5817 F:      Documentation/gpu/xen-front.rst
5818
5819 DRM TTM SUBSYSTEM
5820 M:      Christian Koenig <christian.koenig@amd.com>
5821 M:      Huang Rui <ray.huang@amd.com>
5822 T:      git git://people.freedesktop.org/~agd5f/linux
5823 S:      Maintained
5824 L:      dri-devel@lists.freedesktop.org
5825 F:      include/drm/ttm/
5826 F:      drivers/gpu/drm/ttm/
5827
5828 DSBR100 USB FM RADIO DRIVER
5829 M:      Alexey Klimov <klimov.linux@gmail.com>
5830 L:      linux-media@vger.kernel.org
5831 T:      git git://linuxtv.org/media_tree.git
5832 S:      Maintained
5833 F:      drivers/media/radio/dsbr100.c
5834
5835 DT3155 MEDIA DRIVER
5836 M:      Hans Verkuil <hverkuil@xs4all.nl>
5837 L:      linux-media@vger.kernel.org
5838 T:      git git://linuxtv.org/media_tree.git
5839 W:      https://linuxtv.org
5840 S:      Odd Fixes
5841 F:      drivers/media/pci/dt3155/
5842
5843 DVB_USB_AF9015 MEDIA DRIVER
5844 M:      Antti Palosaari <crope@iki.fi>
5845 L:      linux-media@vger.kernel.org
5846 W:      https://linuxtv.org
5847 W:      http://palosaari.fi/linux/
5848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5849 T:      git git://linuxtv.org/anttip/media_tree.git
5850 S:      Maintained
5851 F:      drivers/media/usb/dvb-usb-v2/af9015*
5852
5853 DVB_USB_AF9035 MEDIA DRIVER
5854 M:      Antti Palosaari <crope@iki.fi>
5855 L:      linux-media@vger.kernel.org
5856 W:      https://linuxtv.org
5857 W:      http://palosaari.fi/linux/
5858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5859 T:      git git://linuxtv.org/anttip/media_tree.git
5860 S:      Maintained
5861 F:      drivers/media/usb/dvb-usb-v2/af9035*
5862
5863 DVB_USB_ANYSEE MEDIA DRIVER
5864 M:      Antti Palosaari <crope@iki.fi>
5865 L:      linux-media@vger.kernel.org
5866 W:      https://linuxtv.org
5867 W:      http://palosaari.fi/linux/
5868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5869 T:      git git://linuxtv.org/anttip/media_tree.git
5870 S:      Maintained
5871 F:      drivers/media/usb/dvb-usb-v2/anysee*
5872
5873 DVB_USB_AU6610 MEDIA DRIVER
5874 M:      Antti Palosaari <crope@iki.fi>
5875 L:      linux-media@vger.kernel.org
5876 W:      https://linuxtv.org
5877 W:      http://palosaari.fi/linux/
5878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5879 T:      git git://linuxtv.org/anttip/media_tree.git
5880 S:      Maintained
5881 F:      drivers/media/usb/dvb-usb-v2/au6610*
5882
5883 DVB_USB_CE6230 MEDIA DRIVER
5884 M:      Antti Palosaari <crope@iki.fi>
5885 L:      linux-media@vger.kernel.org
5886 W:      https://linuxtv.org
5887 W:      http://palosaari.fi/linux/
5888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5889 T:      git git://linuxtv.org/anttip/media_tree.git
5890 S:      Maintained
5891 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5892
5893 DVB_USB_CXUSB MEDIA DRIVER
5894 M:      Michael Krufky <mkrufky@linuxtv.org>
5895 L:      linux-media@vger.kernel.org
5896 W:      https://linuxtv.org
5897 W:      http://github.com/mkrufky
5898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5899 T:      git git://linuxtv.org/media_tree.git
5900 S:      Maintained
5901 F:      drivers/media/usb/dvb-usb/cxusb*
5902
5903 DVB_USB_EC168 MEDIA DRIVER
5904 M:      Antti Palosaari <crope@iki.fi>
5905 L:      linux-media@vger.kernel.org
5906 W:      https://linuxtv.org
5907 W:      http://palosaari.fi/linux/
5908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5909 T:      git git://linuxtv.org/anttip/media_tree.git
5910 S:      Maintained
5911 F:      drivers/media/usb/dvb-usb-v2/ec168*
5912
5913 DVB_USB_GL861 MEDIA DRIVER
5914 M:      Antti Palosaari <crope@iki.fi>
5915 L:      linux-media@vger.kernel.org
5916 W:      https://linuxtv.org
5917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5918 T:      git git://linuxtv.org/anttip/media_tree.git
5919 S:      Maintained
5920 F:      drivers/media/usb/dvb-usb-v2/gl861*
5921
5922 DVB_USB_MXL111SF MEDIA DRIVER
5923 M:      Michael Krufky <mkrufky@linuxtv.org>
5924 L:      linux-media@vger.kernel.org
5925 W:      https://linuxtv.org
5926 W:      http://github.com/mkrufky
5927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5928 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5929 S:      Maintained
5930 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5931
5932 DVB_USB_RTL28XXU MEDIA DRIVER
5933 M:      Antti Palosaari <crope@iki.fi>
5934 L:      linux-media@vger.kernel.org
5935 W:      https://linuxtv.org
5936 W:      http://palosaari.fi/linux/
5937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5938 T:      git git://linuxtv.org/anttip/media_tree.git
5939 S:      Maintained
5940 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5941
5942 DVB_USB_V2 MEDIA DRIVER
5943 M:      Antti Palosaari <crope@iki.fi>
5944 L:      linux-media@vger.kernel.org
5945 W:      https://linuxtv.org
5946 W:      http://palosaari.fi/linux/
5947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5948 T:      git git://linuxtv.org/anttip/media_tree.git
5949 S:      Maintained
5950 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5951 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5952
5953 DYNAMIC DEBUG
5954 M:      Jason Baron <jbaron@akamai.com>
5955 S:      Maintained
5956 F:      lib/dynamic_debug.c
5957 F:      include/linux/dynamic_debug.h
5958
5959 DYNAMIC INTERRUPT MODERATION
5960 M:      Tal Gilboa <talgi@mellanox.com>
5961 S:      Maintained
5962 F:      include/linux/dim.h
5963 F:      lib/dim/
5964 F:      Documentation/networking/net_dim.rst
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
9674 LICENSES and SPDX stuff
9675 M:      Thomas Gleixner <tglx@linutronix.de>
9676 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9677 L:      linux-spdx@vger.kernel.org
9678 S:      Maintained
9679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9680 F:      COPYING
9681 F:      Documentation/process/license-rules.rst
9682 F:      LICENSES/
9683 F:      scripts/spdxcheck-test.sh
9684 F:      scripts/spdxcheck.py
9685
9686 LIGHTNVM PLATFORM SUPPORT
9687 M:      Matias Bjorling <mb@lightnvm.io>
9688 W:      http://github/OpenChannelSSD
9689 L:      linux-block@vger.kernel.org
9690 S:      Maintained
9691 F:      drivers/lightnvm/
9692 F:      include/linux/lightnvm.h
9693 F:      include/uapi/linux/lightnvm.h
9694
9695 LINUX FOR POWER MACINTOSH
9696 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9697 L:      linuxppc-dev@lists.ozlabs.org
9698 S:      Odd Fixes
9699 F:      arch/powerpc/platforms/powermac/
9700 F:      drivers/macintosh/
9701
9702 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9703 M:      Michael Ellerman <mpe@ellerman.id.au>
9704 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9705 R:      Paul Mackerras <paulus@samba.org>
9706 W:      https://github.com/linuxppc/wiki/wiki
9707 L:      linuxppc-dev@lists.ozlabs.org
9708 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9710 S:      Supported
9711 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9712 F:      Documentation/devicetree/bindings/powerpc/
9713 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9714 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9715 F:      Documentation/powerpc/
9716 F:      arch/powerpc/
9717 F:      drivers/char/tpm/tpm_ibmvtpm*
9718 F:      drivers/crypto/nx/
9719 F:      drivers/crypto/vmx/
9720 F:      drivers/i2c/busses/i2c-opal.c
9721 F:      drivers/net/ethernet/ibm/ibmveth.*
9722 F:      drivers/net/ethernet/ibm/ibmvnic.*
9723 F:      drivers/*/*/*pasemi*
9724 F:      drivers/*/*pasemi*
9725 F:      drivers/pci/hotplug/pnv_php.c
9726 F:      drivers/pci/hotplug/rpa*
9727 F:      drivers/rtc/rtc-opal.c
9728 F:      drivers/scsi/ibmvscsi/
9729 F:      drivers/tty/hvc/hvc_opal.c
9730 F:      drivers/watchdog/wdrtas.c
9731 F:      tools/testing/selftests/powerpc
9732 N:      /pmac
9733 N:      powermac
9734 N:      powernv
9735 N:      [^a-z0-9]ps3
9736 N:      pseries
9737
9738 LINUX FOR POWERPC EMBEDDED MPC5XXX
9739 M:      Anatolij Gustschin <agust@denx.de>
9740 L:      linuxppc-dev@lists.ozlabs.org
9741 S:      Odd Fixes
9742 F:      arch/powerpc/platforms/512x/
9743 F:      arch/powerpc/platforms/52xx/
9744
9745 LINUX FOR POWERPC EMBEDDED PPC4XX
9746 L:      linuxppc-dev@lists.ozlabs.org
9747 S:      Orphan
9748 F:      arch/powerpc/platforms/40x/
9749 F:      arch/powerpc/platforms/44x/
9750
9751 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9752 M:      Scott Wood <oss@buserror.net>
9753 L:      linuxppc-dev@lists.ozlabs.org
9754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9755 S:      Odd fixes
9756 F:      arch/powerpc/platforms/83xx/
9757 F:      arch/powerpc/platforms/85xx/
9758 F:      Documentation/devicetree/bindings/powerpc/fsl/
9759
9760 LINUX FOR POWERPC EMBEDDED PPC8XX
9761 M:      Christophe Leroy <christophe.leroy@c-s.fr>
9762 L:      linuxppc-dev@lists.ozlabs.org
9763 S:      Maintained
9764 F:      arch/powerpc/platforms/8xx/
9765
9766 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9767 M:      Kees Cook <keescook@chromium.org>
9768 S:      Maintained
9769 F:      drivers/misc/lkdtm/*
9770 F:      tools/testing/selftests/lkdtm/*
9771
9772 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9773 M:      Alan Stern <stern@rowland.harvard.edu>
9774 M:      Andrea Parri <parri.andrea@gmail.com>
9775 M:      Will Deacon <will@kernel.org>
9776 M:      Peter Zijlstra <peterz@infradead.org>
9777 M:      Boqun Feng <boqun.feng@gmail.com>
9778 M:      Nicholas Piggin <npiggin@gmail.com>
9779 M:      David Howells <dhowells@redhat.com>
9780 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9781 M:      Luc Maranget <luc.maranget@inria.fr>
9782 M:      "Paul E. McKenney" <paulmck@kernel.org>
9783 R:      Akira Yokosawa <akiyks@gmail.com>
9784 R:      Daniel Lustig <dlustig@nvidia.com>
9785 L:      linux-kernel@vger.kernel.org
9786 L:      linux-arch@vger.kernel.org
9787 S:      Supported
9788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9789 F:      tools/memory-model/
9790 F:      Documentation/atomic_bitops.txt
9791 F:      Documentation/atomic_t.txt
9792 F:      Documentation/core-api/atomic_ops.rst
9793 F:      Documentation/core-api/refcount-vs-atomic.rst
9794 F:      Documentation/memory-barriers.txt
9795
9796 LIS3LV02D ACCELEROMETER DRIVER
9797 M:      Eric Piel <eric.piel@tremplin-utc.net>
9798 S:      Maintained
9799 F:      Documentation/misc-devices/lis3lv02d.rst
9800 F:      drivers/misc/lis3lv02d/
9801 F:      drivers/platform/x86/hp_accel.c
9802
9803 LIST KUNIT TEST
9804 M:      David Gow <davidgow@google.com>
9805 L:      linux-kselftest@vger.kernel.org
9806 L:      kunit-dev@googlegroups.com
9807 S:      Maintained
9808 F:      lib/list-test.c
9809
9810 LIVE PATCHING
9811 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9812 M:      Jiri Kosina <jikos@kernel.org>
9813 M:      Miroslav Benes <mbenes@suse.cz>
9814 M:      Petr Mladek <pmladek@suse.com>
9815 R:      Joe Lawrence <joe.lawrence@redhat.com>
9816 S:      Maintained
9817 F:      kernel/livepatch/
9818 F:      include/linux/livepatch.h
9819 F:      arch/x86/include/asm/livepatch.h
9820 F:      arch/x86/kernel/livepatch.c
9821 F:      Documentation/livepatch/
9822 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9823 F:      samples/livepatch/
9824 F:      tools/testing/selftests/livepatch/
9825 L:      live-patching@vger.kernel.org
9826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9827
9828 LLC (802.2)
9829 L:      netdev@vger.kernel.org
9830 S:      Odd fixes
9831 F:      include/linux/llc.h
9832 F:      include/uapi/linux/llc.h
9833 F:      include/net/llc*
9834 F:      net/llc/
9835
9836 LM73 HARDWARE MONITOR DRIVER
9837 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9838 L:      linux-hwmon@vger.kernel.org
9839 S:      Maintained
9840 F:      drivers/hwmon/lm73.c
9841
9842 LM78 HARDWARE MONITOR DRIVER
9843 M:      Jean Delvare <jdelvare@suse.com>
9844 L:      linux-hwmon@vger.kernel.org
9845 S:      Maintained
9846 F:      Documentation/hwmon/lm78.rst
9847 F:      drivers/hwmon/lm78.c
9848
9849 LM83 HARDWARE MONITOR DRIVER
9850 M:      Jean Delvare <jdelvare@suse.com>
9851 L:      linux-hwmon@vger.kernel.org
9852 S:      Maintained
9853 F:      Documentation/hwmon/lm83.rst
9854 F:      drivers/hwmon/lm83.c
9855
9856 LM90 HARDWARE MONITOR DRIVER
9857 M:      Jean Delvare <jdelvare@suse.com>
9858 L:      linux-hwmon@vger.kernel.org
9859 S:      Maintained
9860 F:      Documentation/hwmon/lm90.rst
9861 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9862 F:      drivers/hwmon/lm90.c
9863 F:      include/dt-bindings/thermal/lm90.h
9864
9865 LM95234 HARDWARE MONITOR DRIVER
9866 M:      Guenter Roeck <linux@roeck-us.net>
9867 L:      linux-hwmon@vger.kernel.org
9868 S:      Maintained
9869 F:      Documentation/hwmon/lm95234.rst
9870 F:      drivers/hwmon/lm95234.c
9871
9872 LME2510 MEDIA DRIVER
9873 M:      Malcolm Priestley <tvboxspy@gmail.com>
9874 L:      linux-media@vger.kernel.org
9875 W:      https://linuxtv.org
9876 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9877 S:      Maintained
9878 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9879
9880 LOADPIN SECURITY MODULE
9881 M:      Kees Cook <keescook@chromium.org>
9882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9883 S:      Supported
9884 F:      security/loadpin/
9885 F:      Documentation/admin-guide/LSM/LoadPin.rst
9886
9887 LOCKING PRIMITIVES
9888 M:      Peter Zijlstra <peterz@infradead.org>
9889 M:      Ingo Molnar <mingo@redhat.com>
9890 M:      Will Deacon <will@kernel.org>
9891 L:      linux-kernel@vger.kernel.org
9892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9893 S:      Maintained
9894 F:      Documentation/locking/
9895 F:      include/linux/lockdep.h
9896 F:      include/linux/spinlock*.h
9897 F:      arch/*/include/asm/spinlock*.h
9898 F:      include/linux/rwlock*.h
9899 F:      include/linux/mutex*.h
9900 F:      include/linux/rwsem*.h
9901 F:      include/linux/seqlock.h
9902 F:      lib/locking*.[ch]
9903 F:      kernel/locking/
9904 X:      kernel/locking/locktorture.c
9905
9906 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9907 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9908 L:      linux-ntfs-dev@lists.sourceforge.net
9909 W:      http://www.linux-ntfs.org/content/view/19/37/
9910 S:      Maintained
9911 F:      Documentation/admin-guide/ldm.rst
9912 F:      block/partitions/ldm.*
9913
9914 LOGITECH HID GAMING KEYBOARDS
9915 M:      Hans de Goede <hdegoede@redhat.com>
9916 L:      linux-input@vger.kernel.org
9917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9918 S:      Maintained
9919 F:      drivers/hid/hid-lg-g15.c
9920
9921 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9922 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9923 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9924 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9925 L:      MPT-FusionLinux.pdl@broadcom.com
9926 L:      linux-scsi@vger.kernel.org
9927 W:      http://www.avagotech.com/support/
9928 S:      Supported
9929 F:      drivers/message/fusion/
9930 F:      drivers/scsi/mpt3sas/
9931
9932 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9933 M:      Matthew Wilcox <willy@infradead.org>
9934 L:      linux-scsi@vger.kernel.org
9935 S:      Maintained
9936 F:      drivers/scsi/sym53c8xx_2/
9937
9938 LTC1660 DAC DRIVER
9939 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9940 L:      linux-iio@vger.kernel.org
9941 S:      Maintained
9942 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9943 F:      drivers/iio/dac/ltc1660.c
9944
9945 LTC2983 IIO TEMPERATURE DRIVER
9946 M:      Nuno Sá <nuno.sa@analog.com>
9947 W:      http://ez.analog.com/community/linux-device-drivers
9948 L:      linux-iio@vger.kernel.org
9949 S:      Supported
9950 F:      drivers/iio/temperature/ltc2983.c
9951 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9952
9953 LTC4261 HARDWARE MONITOR DRIVER
9954 M:      Guenter Roeck <linux@roeck-us.net>
9955 L:      linux-hwmon@vger.kernel.org
9956 S:      Maintained
9957 F:      Documentation/hwmon/ltc4261.rst
9958 F:      drivers/hwmon/ltc4261.c
9959
9960 LTC2947 HARDWARE MONITOR DRIVER
9961 M:      Nuno Sá <nuno.sa@analog.com>
9962 W:      http://ez.analog.com/community/linux-device-drivers
9963 L:      linux-hwmon@vger.kernel.org
9964 S:      Supported
9965 F:      drivers/hwmon/ltc2947-core.c
9966 F:      drivers/hwmon/ltc2947-spi.c
9967 F:      drivers/hwmon/ltc2947-i2c.c
9968 F:      drivers/hwmon/ltc2947.h
9969 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
9970
9971 LTC4306 I2C MULTIPLEXER DRIVER
9972 M:      Michael Hennerich <michael.hennerich@analog.com>
9973 W:      http://ez.analog.com/community/linux-device-drivers
9974 L:      linux-i2c@vger.kernel.org
9975 S:      Supported
9976 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9977 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9978
9979 LTP (Linux Test Project)
9980 M:      Mike Frysinger <vapier@gentoo.org>
9981 M:      Cyril Hrubis <chrubis@suse.cz>
9982 M:      Wanlong Gao <wanlong.gao@gmail.com>
9983 M:      Jan Stancek <jstancek@redhat.com>
9984 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9985 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9986 L:      ltp@lists.linux.it (subscribers-only)
9987 W:      http://linux-test-project.github.io/
9988 T:      git git://github.com/linux-test-project/ltp.git
9989 S:      Maintained
9990
9991 M68K ARCHITECTURE
9992 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9993 L:      linux-m68k@lists.linux-m68k.org
9994 W:      http://www.linux-m68k.org/
9995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9996 S:      Maintained
9997 F:      arch/m68k/
9998 F:      drivers/zorro/
9999
10000 M68K ON APPLE MACINTOSH
10001 M:      Joshua Thompson <funaho@jurai.org>
10002 W:      http://www.mac.linux-m68k.org/
10003 L:      linux-m68k@lists.linux-m68k.org
10004 S:      Maintained
10005 F:      arch/m68k/mac/
10006
10007 M68K ON HP9000/300
10008 M:      Philip Blundell <philb@gnu.org>
10009 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
10010 S:      Maintained
10011 F:      arch/m68k/hp300/
10012
10013 M88DS3103 MEDIA DRIVER
10014 M:      Antti Palosaari <crope@iki.fi>
10015 L:      linux-media@vger.kernel.org
10016 W:      https://linuxtv.org
10017 W:      http://palosaari.fi/linux/
10018 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10019 T:      git git://linuxtv.org/anttip/media_tree.git
10020 S:      Maintained
10021 F:      drivers/media/dvb-frontends/m88ds3103*
10022
10023 M88RS2000 MEDIA DRIVER
10024 M:      Malcolm Priestley <tvboxspy@gmail.com>
10025 L:      linux-media@vger.kernel.org
10026 W:      https://linuxtv.org
10027 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10028 S:      Maintained
10029 F:      drivers/media/dvb-frontends/m88rs2000*
10030
10031 MA901 MASTERKIT USB FM RADIO DRIVER
10032 M:      Alexey Klimov <klimov.linux@gmail.com>
10033 L:      linux-media@vger.kernel.org
10034 T:      git git://linuxtv.org/media_tree.git
10035 S:      Maintained
10036 F:      drivers/media/radio/radio-ma901.c
10037
10038 MAC80211
10039 M:      Johannes Berg <johannes@sipsolutions.net>
10040 L:      linux-wireless@vger.kernel.org
10041 W:      http://wireless.kernel.org/
10042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10044 S:      Maintained
10045 F:      Documentation/networking/mac80211-injection.txt
10046 F:      include/net/mac80211.h
10047 F:      net/mac80211/
10048 F:      drivers/net/wireless/mac80211_hwsim.[ch]
10049 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
10050
10051 MAILBOX API
10052 M:      Jassi Brar <jassisinghbrar@gmail.com>
10053 L:      linux-kernel@vger.kernel.org
10054 S:      Maintained
10055 F:      drivers/mailbox/
10056 F:      include/linux/mailbox_client.h
10057 F:      include/linux/mailbox_controller.h
10058
10059 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
10060 M:      Michael Kerrisk <mtk.manpages@gmail.com>
10061 W:      http://www.kernel.org/doc/man-pages
10062 L:      linux-man@vger.kernel.org
10063 S:      Maintained
10064
10065 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
10066 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
10067 L:      linux-mips@vger.kernel.org
10068 S:      Maintained
10069 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
10070
10071 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
10072 M:      Andrew Lunn <andrew@lunn.ch>
10073 M:      Vivien Didelot <vivien.didelot@gmail.com>
10074 L:      netdev@vger.kernel.org
10075 S:      Maintained
10076 F:      drivers/net/dsa/mv88e6xxx/
10077 F:      include/linux/platform_data/mv88e6xxx.h
10078 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
10079 F:      Documentation/networking/devlink/mv88e6xxx.rst
10080
10081 MARVELL ARMADA DRM SUPPORT
10082 M:      Russell King <linux@armlinux.org.uk>
10083 S:      Maintained
10084 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
10085 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
10086 F:      drivers/gpu/drm/armada/
10087 F:      include/uapi/drm/armada_drm.h
10088 F:      Documentation/devicetree/bindings/display/armada/
10089
10090 MARVELL ARMADA 3700 PHY DRIVERS
10091 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10092 S:      Maintained
10093 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
10094 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
10095 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
10096 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
10097
10098 MARVELL CRYPTO DRIVER
10099 M:      Boris Brezillon <bbrezillon@kernel.org>
10100 M:      Arnaud Ebalard <arno@natisbad.org>
10101 M:      Srujana Challa <schalla@marvell.com>
10102 F:      drivers/crypto/marvell/
10103 S:      Maintained
10104 L:      linux-crypto@vger.kernel.org
10105
10106 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
10107 M:      Mirko Lindner <mlindner@marvell.com>
10108 M:      Stephen Hemminger <stephen@networkplumber.org>
10109 L:      netdev@vger.kernel.org
10110 S:      Maintained
10111 F:      drivers/net/ethernet/marvell/sk*
10112
10113 MARVELL LIBERTAS WIRELESS DRIVER
10114 L:      libertas-dev@lists.infradead.org
10115 S:      Orphan
10116 F:      drivers/net/wireless/marvell/libertas/
10117
10118 MARVELL MACCHIATOBIN SUPPORT
10119 M:      Russell King <linux@armlinux.org.uk>
10120 L:      linux-arm-kernel@lists.infradead.org
10121 S:      Maintained
10122 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
10123
10124 MARVELL MV643XX ETHERNET DRIVER
10125 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
10126 L:      netdev@vger.kernel.org
10127 S:      Maintained
10128 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
10129 F:      include/linux/mv643xx.h
10130
10131 MARVELL MV88X3310 PHY DRIVER
10132 M:      Russell King <linux@armlinux.org.uk>
10133 L:      netdev@vger.kernel.org
10134 S:      Maintained
10135 F:      drivers/net/phy/marvell10g.c
10136
10137 MARVELL MVEBU THERMAL DRIVER
10138 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10139 S:      Maintained
10140 F:      drivers/thermal/armada_thermal.c
10141
10142 MARVELL MVNETA ETHERNET DRIVER
10143 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
10144 L:      netdev@vger.kernel.org
10145 S:      Maintained
10146 F:      drivers/net/ethernet/marvell/mvneta.*
10147
10148 MARVELL MWIFIEX WIRELESS DRIVER
10149 M:      Amitkumar Karwar <amitkarwar@gmail.com>
10150 M:      Ganapathi Bhat <ganapathi.bhat@nxp.com>
10151 M:      Xinming Hu <huxinming820@gmail.com>
10152 L:      linux-wireless@vger.kernel.org
10153 S:      Maintained
10154 F:      drivers/net/wireless/marvell/mwifiex/
10155
10156 MARVELL MWL8K WIRELESS DRIVER
10157 M:      Lennert Buytenhek <buytenh@wantstofly.org>
10158 L:      linux-wireless@vger.kernel.org
10159 S:      Odd Fixes
10160 F:      drivers/net/wireless/marvell/mwl8k.c
10161
10162 MARVELL NAND CONTROLLER DRIVER
10163 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10164 L:      linux-mtd@lists.infradead.org
10165 S:      Maintained
10166 F:      drivers/mtd/nand/raw/marvell_nand.c
10167 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
10168
10169 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
10170 M:      Nicolas Pitre <nico@fluxnic.net>
10171 S:      Odd Fixes
10172 F:      drivers/mmc/host/mvsdio.*
10173
10174 MARVELL USB MDIO CONTROLLER DRIVER
10175 M:      Tobias Waldekranz <tobias@waldekranz.com>
10176 L:      netdev@vger.kernel.org
10177 S:      Maintained
10178 F:      drivers/net/phy/mdio-mvusb.c
10179 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
10180
10181 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
10182 M:      Hu Ziji <huziji@marvell.com>
10183 L:      linux-mmc@vger.kernel.org
10184 S:      Supported
10185 F:      drivers/mmc/host/sdhci-xenon*
10186 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
10187
10188 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
10189 M:      Sunil Goutham <sgoutham@marvell.com>
10190 M:      Linu Cherian <lcherian@marvell.com>
10191 M:      Geetha sowjanya <gakula@marvell.com>
10192 M:      Jerin Jacob <jerinj@marvell.com>
10193 L:      netdev@vger.kernel.org
10194 S:      Supported
10195 F:      drivers/net/ethernet/marvell/octeontx2/af/
10196 F:      Documentation/networking/device_drivers/marvell/octeontx2.rst
10197
10198 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
10199 M:      Sunil Goutham <sgoutham@marvell.com>
10200 M:      Geetha sowjanya <gakula@marvell.com>
10201 M:      Subbaraya Sundeep <sbhatta@marvell.com>
10202 M:      hariprasad <hkelam@marvell.com>
10203 L:      netdev@vger.kernel.org
10204 S:      Supported
10205 F:      drivers/net/ethernet/marvell/octeontx2/nic/
10206
10207 MATROX FRAMEBUFFER DRIVER
10208 L:      linux-fbdev@vger.kernel.org
10209 S:      Orphan
10210 F:      drivers/video/fbdev/matrox/matroxfb_*
10211 F:      include/uapi/linux/matroxfb.h
10212
10213 MAX16065 HARDWARE MONITOR DRIVER
10214 M:      Guenter Roeck <linux@roeck-us.net>
10215 L:      linux-hwmon@vger.kernel.org
10216 S:      Maintained
10217 F:      Documentation/hwmon/max16065.rst
10218 F:      drivers/hwmon/max16065.c
10219
10220 MAX2175 SDR TUNER DRIVER
10221 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10222 L:      linux-media@vger.kernel.org
10223 T:      git git://linuxtv.org/media_tree.git
10224 S:      Maintained
10225 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
10226 F:      Documentation/media/v4l-drivers/max2175.rst
10227 F:      drivers/media/i2c/max2175*
10228 F:      include/uapi/linux/max2175.h
10229
10230 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
10231 L:      linux-hwmon@vger.kernel.org
10232 S:      Orphan
10233 F:      Documentation/hwmon/max6650.rst
10234 F:      drivers/hwmon/max6650.c
10235
10236 MAX6697 HARDWARE MONITOR DRIVER
10237 M:      Guenter Roeck <linux@roeck-us.net>
10238 L:      linux-hwmon@vger.kernel.org
10239 S:      Maintained
10240 F:      Documentation/hwmon/max6697.rst
10241 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
10242 F:      drivers/hwmon/max6697.c
10243 F:      include/linux/platform_data/max6697.h
10244
10245 MAX9860 MONO AUDIO VOICE CODEC DRIVER
10246 M:      Peter Rosin <peda@axentia.se>
10247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10248 S:      Maintained
10249 F:      Documentation/devicetree/bindings/sound/max9860.txt
10250 F:      sound/soc/codecs/max9860.*
10251
10252 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
10253 M:      Andreas Klinger <ak@it-klinger.de>
10254 L:      linux-iio@vger.kernel.org
10255 S:      Maintained
10256 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
10257 F:      drivers/iio/proximity/mb1232.c
10258
10259 MAXIM MAX77650 PMIC MFD DRIVER
10260 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
10261 L:      linux-kernel@vger.kernel.org
10262 S:      Maintained
10263 F:      Documentation/devicetree/bindings/*/*max77650.yaml
10264 F:      Documentation/devicetree/bindings/*/max77650*.yaml
10265 F:      include/linux/mfd/max77650.h
10266 F:      drivers/mfd/max77650.c
10267 F:      drivers/regulator/max77650-regulator.c
10268 F:      drivers/power/supply/max77650-charger.c
10269 F:      drivers/input/misc/max77650-onkey.c
10270 F:      drivers/leds/leds-max77650.c
10271 F:      drivers/gpio/gpio-max77650.c
10272
10273 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
10274 M:      Javier Martinez Canillas <javier@dowhile0.org>
10275 L:      linux-kernel@vger.kernel.org
10276 S:      Supported
10277 F:      drivers/regulator/max77802-regulator.c
10278 F:      Documentation/devicetree/bindings/*/*max77802.txt
10279 F:      include/dt-bindings/*/*max77802.h
10280
10281 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
10282 M:      Krzysztof Kozlowski <krzk@kernel.org>
10283 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10284 L:      linux-pm@vger.kernel.org
10285 S:      Supported
10286 F:      drivers/power/supply/max14577_charger.c
10287 F:      drivers/power/supply/max77693_charger.c
10288
10289 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
10290 M:      Chanwoo Choi <cw00.choi@samsung.com>
10291 M:      Krzysztof Kozlowski <krzk@kernel.org>
10292 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10293 L:      linux-kernel@vger.kernel.org
10294 S:      Supported
10295 F:      drivers/*/max14577*.c
10296 F:      drivers/*/max77686*.c
10297 F:      drivers/*/max77693*.c
10298 F:      drivers/extcon/extcon-max14577.c
10299 F:      drivers/extcon/extcon-max77693.c
10300 F:      drivers/rtc/rtc-max77686.c
10301 F:      drivers/clk/clk-max77686.c
10302 F:      Documentation/devicetree/bindings/mfd/max14577.txt
10303 F:      Documentation/devicetree/bindings/*/max77686.txt
10304 F:      Documentation/devicetree/bindings/mfd/max77693.txt
10305 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
10306 F:      include/linux/mfd/max14577*.h
10307 F:      include/linux/mfd/max77686*.h
10308 F:      include/linux/mfd/max77693*.h
10309
10310 MAXIRADIO FM RADIO RECEIVER DRIVER
10311 M:      Hans Verkuil <hverkuil@xs4all.nl>
10312 L:      linux-media@vger.kernel.org
10313 T:      git git://linuxtv.org/media_tree.git
10314 W:      https://linuxtv.org
10315 S:      Maintained
10316 F:      drivers/media/radio/radio-maxiradio*
10317
10318 MCAN MMIO DEVICE DRIVER
10319 M:      Dan Murphy <dmurphy@ti.com>
10320 M:      Sriram Dash <sriram.dash@samsung.com>
10321 L:      linux-can@vger.kernel.org
10322 S:      Maintained
10323 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
10324 F:      drivers/net/can/m_can/m_can.c
10325 F:      drivers/net/can/m_can/m_can.h
10326 F:      drivers/net/can/m_can/m_can_platform.c
10327
10328 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
10329 M:      Rishi Gupta <gupt21@gmail.com>
10330 L:      linux-i2c@vger.kernel.org
10331 L:      linux-input@vger.kernel.org
10332 S:      Maintained
10333 F:      drivers/hid/hid-mcp2221.c
10334
10335 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
10336 M:      Peter Rosin <peda@axentia.se>
10337 L:      linux-iio@vger.kernel.org
10338 S:      Maintained
10339 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
10340 F:      drivers/iio/potentiometer/mcp4018.c
10341 F:      drivers/iio/potentiometer/mcp4531.c
10342
10343 MCR20A IEEE-802.15.4 RADIO DRIVER
10344 M:      Xue Liu <liuxuenetmail@gmail.com>
10345 L:      linux-wpan@vger.kernel.org
10346 W:      https://github.com/xueliu/mcr20a-linux
10347 S:      Maintained
10348 F:      drivers/net/ieee802154/mcr20a.c
10349 F:      drivers/net/ieee802154/mcr20a.h
10350 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10351
10352 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10353 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10354 L:      linux-iio@vger.kernel.org
10355 S:      Maintained
10356 F:      drivers/iio/dac/cio-dac.c
10357
10358 MEDIA CONTROLLER FRAMEWORK
10359 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10360 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10361 L:      linux-media@vger.kernel.org
10362 W:      https://www.linuxtv.org
10363 T:      git git://linuxtv.org/media_tree.git
10364 S:      Supported
10365 F:      drivers/media/mc/
10366 F:      include/media/media-*.h
10367 F:      include/uapi/linux/media.h
10368
10369 MEDIA DRIVERS FOR ASCOT2E
10370 M:      Sergey Kozlov <serjk@netup.ru>
10371 M:      Abylay Ospan <aospan@netup.ru>
10372 L:      linux-media@vger.kernel.org
10373 W:      https://linuxtv.org
10374 W:      http://netup.tv/
10375 T:      git git://linuxtv.org/media_tree.git
10376 S:      Supported
10377 F:      drivers/media/dvb-frontends/ascot2e*
10378
10379 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10380 M:      Jasmin Jessich <jasmin@anw.at>
10381 L:      linux-media@vger.kernel.org
10382 W:      https://linuxtv.org
10383 T:      git git://linuxtv.org/media_tree.git
10384 S:      Maintained
10385 F:      drivers/media/dvb-frontends/cxd2099*
10386
10387 MEDIA DRIVERS FOR CXD2841ER
10388 M:      Sergey Kozlov <serjk@netup.ru>
10389 M:      Abylay Ospan <aospan@netup.ru>
10390 L:      linux-media@vger.kernel.org
10391 W:      https://linuxtv.org
10392 W:      http://netup.tv/
10393 T:      git git://linuxtv.org/media_tree.git
10394 S:      Supported
10395 F:      drivers/media/dvb-frontends/cxd2841er*
10396
10397 MEDIA DRIVERS FOR CXD2880
10398 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10399 L:      linux-media@vger.kernel.org
10400 W:      http://linuxtv.org/
10401 T:      git git://linuxtv.org/media_tree.git
10402 S:      Supported
10403 F:      drivers/media/dvb-frontends/cxd2880/*
10404 F:      drivers/media/spi/cxd2880*
10405
10406 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10407 L:      linux-media@vger.kernel.org
10408 W:      https://linuxtv.org
10409 T:      git git://linuxtv.org/media_tree.git
10410 S:      Orphan
10411 F:      drivers/media/pci/ddbridge/*
10412
10413 MEDIA DRIVERS FOR FREESCALE IMX
10414 M:      Steve Longerbeam <slongerbeam@gmail.com>
10415 M:      Philipp Zabel <p.zabel@pengutronix.de>
10416 L:      linux-media@vger.kernel.org
10417 T:      git git://linuxtv.org/media_tree.git
10418 S:      Maintained
10419 F:      Documentation/devicetree/bindings/media/imx.txt
10420 F:      Documentation/media/v4l-drivers/imx.rst
10421 F:      drivers/staging/media/imx/
10422 F:      include/linux/imx-media.h
10423 F:      include/media/imx.h
10424
10425 MEDIA DRIVER FOR FREESCALE IMX PXP
10426 M:      Philipp Zabel <p.zabel@pengutronix.de>
10427 L:      linux-media@vger.kernel.org
10428 T:      git git://linuxtv.org/media_tree.git
10429 S:      Maintained
10430 F:      drivers/media/platform/imx-pxp.[ch]
10431
10432 MEDIA DRIVERS FOR FREESCALE IMX7
10433 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10434 L:      linux-media@vger.kernel.org
10435 T:      git git://linuxtv.org/media_tree.git
10436 S:      Maintained
10437 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10438 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10439 F:      Documentation/media/v4l-drivers/imx7.rst
10440 F:      drivers/staging/media/imx/imx7-media-csi.c
10441 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10442
10443 MEDIA DRIVERS FOR HELENE
10444 M:      Abylay Ospan <aospan@netup.ru>
10445 L:      linux-media@vger.kernel.org
10446 W:      https://linuxtv.org
10447 W:      http://netup.tv/
10448 T:      git git://linuxtv.org/media_tree.git
10449 S:      Supported
10450 F:      drivers/media/dvb-frontends/helene*
10451
10452 MEDIA DRIVERS FOR HORUS3A
10453 M:      Sergey Kozlov <serjk@netup.ru>
10454 M:      Abylay Ospan <aospan@netup.ru>
10455 L:      linux-media@vger.kernel.org
10456 W:      https://linuxtv.org
10457 W:      http://netup.tv/
10458 T:      git git://linuxtv.org/media_tree.git
10459 S:      Supported
10460 F:      drivers/media/dvb-frontends/horus3a*
10461
10462 MEDIA DRIVERS FOR LNBH25
10463 M:      Sergey Kozlov <serjk@netup.ru>
10464 M:      Abylay Ospan <aospan@netup.ru>
10465 L:      linux-media@vger.kernel.org
10466 W:      https://linuxtv.org
10467 W:      http://netup.tv/
10468 T:      git git://linuxtv.org/media_tree.git
10469 S:      Supported
10470 F:      drivers/media/dvb-frontends/lnbh25*
10471
10472 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10473 L:      linux-media@vger.kernel.org
10474 W:      https://linuxtv.org
10475 T:      git git://linuxtv.org/media_tree.git
10476 S:      Orphan
10477 F:      drivers/media/dvb-frontends/mxl5xx*
10478
10479 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10480 M:      Sergey Kozlov <serjk@netup.ru>
10481 M:      Abylay Ospan <aospan@netup.ru>
10482 L:      linux-media@vger.kernel.org
10483 W:      https://linuxtv.org
10484 W:      http://netup.tv/
10485 T:      git git://linuxtv.org/media_tree.git
10486 S:      Supported
10487 F:      drivers/media/pci/netup_unidvb/*
10488
10489 MEDIA DRIVERS FOR RENESAS - CEU
10490 M:      Jacopo Mondi <jacopo@jmondi.org>
10491 L:      linux-media@vger.kernel.org
10492 L:      linux-renesas-soc@vger.kernel.org
10493 T:      git git://linuxtv.org/media_tree.git
10494 S:      Supported
10495 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
10496 F:      drivers/media/platform/renesas-ceu.c
10497 F:      include/media/drv-intf/renesas-ceu.h
10498
10499 MEDIA DRIVERS FOR RENESAS - DRIF
10500 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
10501 L:      linux-media@vger.kernel.org
10502 L:      linux-renesas-soc@vger.kernel.org
10503 T:      git git://linuxtv.org/media_tree.git
10504 S:      Supported
10505 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10506 F:      drivers/media/platform/rcar_drif.c
10507
10508 MEDIA DRIVERS FOR RENESAS - FCP
10509 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10510 L:      linux-media@vger.kernel.org
10511 L:      linux-renesas-soc@vger.kernel.org
10512 T:      git git://linuxtv.org/media_tree.git
10513 S:      Supported
10514 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10515 F:      drivers/media/platform/rcar-fcp.c
10516 F:      include/media/rcar-fcp.h
10517
10518 MEDIA DRIVERS FOR RENESAS - FDP1
10519 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10520 L:      linux-media@vger.kernel.org
10521 L:      linux-renesas-soc@vger.kernel.org
10522 T:      git git://linuxtv.org/media_tree.git
10523 S:      Supported
10524 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10525 F:      drivers/media/platform/rcar_fdp1.c
10526
10527 MEDIA DRIVERS FOR RENESAS - VIN
10528 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10529 L:      linux-media@vger.kernel.org
10530 L:      linux-renesas-soc@vger.kernel.org
10531 T:      git git://linuxtv.org/media_tree.git
10532 S:      Supported
10533 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
10534 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
10535 F:      drivers/media/platform/rcar-vin/
10536
10537 MEDIA DRIVERS FOR RENESAS - VSP1
10538 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10539 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10540 L:      linux-media@vger.kernel.org
10541 L:      linux-renesas-soc@vger.kernel.org
10542 T:      git git://linuxtv.org/media_tree.git
10543 S:      Supported
10544 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10545 F:      drivers/media/platform/vsp1/
10546
10547 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10548 L:      linux-media@vger.kernel.org
10549 W:      https://linuxtv.org
10550 T:      git git://linuxtv.org/media_tree.git
10551 S:      Orphan
10552 F:      drivers/media/dvb-frontends/stv0910*
10553
10554 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10555 L:      linux-media@vger.kernel.org
10556 W:      https://linuxtv.org
10557 T:      git git://linuxtv.org/media_tree.git
10558 S:      Orphan
10559 F:      drivers/media/dvb-frontends/stv6111*
10560
10561 MEDIA DRIVERS FOR STM32 - DCMI
10562 M:      Hugues Fruchet <hugues.fruchet@st.com>
10563 L:      linux-media@vger.kernel.org
10564 T:      git git://linuxtv.org/media_tree.git
10565 S:      Supported
10566 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
10567 F:      drivers/media/platform/stm32/stm32-dcmi.c
10568
10569 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10570 M:      Dmitry Osipenko <digetx@gmail.com>
10571 L:      linux-media@vger.kernel.org
10572 L:      linux-tegra@vger.kernel.org
10573 T:      git git://linuxtv.org/media_tree.git
10574 S:      Maintained
10575 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10576 F:      drivers/staging/media/tegra-vde/
10577
10578 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10579 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10580 L:      linux-media@vger.kernel.org
10581 W:      https://linuxtv.org
10582 Q:      http://patchwork.kernel.org/project/linux-media/list/
10583 T:      git git://linuxtv.org/media_tree.git
10584 S:      Maintained
10585 F:      Documentation/devicetree/bindings/media/
10586 F:      Documentation/media/
10587 F:      drivers/media/
10588 F:      drivers/staging/media/
10589 F:      include/linux/platform_data/media/
10590 F:      include/media/
10591 F:      include/uapi/linux/dvb/
10592 F:      include/uapi/linux/videodev2.h
10593 F:      include/uapi/linux/media.h
10594 F:      include/uapi/linux/v4l2-*
10595 F:      include/uapi/linux/meye.h
10596 F:      include/uapi/linux/ivtv*
10597 F:      include/uapi/linux/uvcvideo.h
10598
10599 MEDIATEK BLUETOOTH DRIVER
10600 M:      Sean Wang <sean.wang@mediatek.com>
10601 L:      linux-bluetooth@vger.kernel.org
10602 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10603 S:      Maintained
10604 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10605 F:      drivers/bluetooth/btmtkuart.c
10606
10607 MEDIATEK CIR DRIVER
10608 M:      Sean Wang <sean.wang@mediatek.com>
10609 S:      Maintained
10610 F:      drivers/media/rc/mtk-cir.c
10611
10612 MEDIATEK DMA DRIVER
10613 M:      Sean Wang <sean.wang@mediatek.com>
10614 L:      dmaengine@vger.kernel.org
10615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10616 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10617 S:      Maintained
10618 F:      Documentation/devicetree/bindings/dma/mtk-*
10619 F:      drivers/dma/mediatek/
10620
10621 MEDIATEK PMIC LED DRIVER
10622 M:      Sean Wang <sean.wang@mediatek.com>
10623 S:      Maintained
10624 F:      drivers/leds/leds-mt6323.c
10625 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10626
10627 MEDIATEK ETHERNET DRIVER
10628 M:      Felix Fietkau <nbd@openwrt.org>
10629 M:      John Crispin <john@phrozen.org>
10630 M:      Sean Wang <sean.wang@mediatek.com>
10631 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10632 L:      netdev@vger.kernel.org
10633 S:      Maintained
10634 F:      drivers/net/ethernet/mediatek/
10635
10636 MEDIATEK SWITCH DRIVER
10637 M:      Sean Wang <sean.wang@mediatek.com>
10638 L:      netdev@vger.kernel.org
10639 S:      Maintained
10640 F:      drivers/net/dsa/mt7530.*
10641 F:      net/dsa/tag_mtk.c
10642
10643 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
10644 M:      Sean Wang <sean.wang@mediatek.com>
10645 L:      linux-pm@vger.kernel.org
10646 S:      Maintained
10647 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
10648 F:      drivers/power/reset/mt6323-poweroff.c
10649
10650 MEDIATEK JPEG DRIVER
10651 M:      Rick Chang <rick.chang@mediatek.com>
10652 M:      Bin Liu <bin.liu@mediatek.com>
10653 S:      Supported
10654 F:      drivers/media/platform/mtk-jpeg/
10655 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10656
10657 MEDIATEK MDP DRIVER
10658 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10659 M:      Houlong Wei <houlong.wei@mediatek.com>
10660 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10661 S:      Supported
10662 F:      drivers/media/platform/mtk-mdp/
10663 F:      drivers/media/platform/mtk-vpu/
10664 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10665
10666 MEDIATEK MEDIA DRIVER
10667 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10668 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10669 S:      Supported
10670 F:      drivers/media/platform/mtk-vcodec/
10671 F:      drivers/media/platform/mtk-vpu/
10672 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10673 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10674
10675 MEDIATEK MMC/SD/SDIO DRIVER
10676 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10677 S:      Maintained
10678 F:      drivers/mmc/host/mtk-sd.c
10679 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10680
10681 MEDIATEK MT76 WIRELESS LAN DRIVER
10682 M:      Felix Fietkau <nbd@nbd.name>
10683 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10684 R:      Ryder Lee <ryder.lee@mediatek.com>
10685 R:      Roy Luo <royluo@google.com>
10686 L:      linux-wireless@vger.kernel.org
10687 S:      Maintained
10688 F:      drivers/net/wireless/mediatek/mt76/
10689
10690 MEDIATEK MT7601U WIRELESS LAN DRIVER
10691 M:      Jakub Kicinski <kubakici@wp.pl>
10692 L:      linux-wireless@vger.kernel.org
10693 S:      Maintained
10694 F:      drivers/net/wireless/mediatek/mt7601u/
10695
10696 MEDIATEK MT7621/28/88 I2C DRIVER
10697 M:      Stefan Roese <sr@denx.de>
10698 L:      linux-i2c@vger.kernel.org
10699 S:      Maintained
10700 F:      drivers/i2c/busses/i2c-mt7621.c
10701 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10702
10703 MEDIATEK NAND CONTROLLER DRIVER
10704 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10705 L:      linux-mtd@lists.infradead.org
10706 S:      Maintained
10707 F:      drivers/mtd/nand/raw/mtk_*
10708 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10709
10710 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10711 M:      Sean Wang <sean.wang@mediatek.com>
10712 S:      Maintained
10713 F:      drivers/char/hw_random/mtk-rng.c
10714
10715 MEDIATEK USB3 DRD IP DRIVER
10716 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10717 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10719 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10720 S:      Maintained
10721 F:      drivers/usb/mtu3/
10722
10723 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10724 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10725 M:      Martin Donnelly <martin.donnelly@ge.com>
10726 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10727 S:      Maintained
10728 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10729 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10730
10731 MEGARAID SCSI/SAS DRIVERS
10732 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10733 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10734 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10735 L:      megaraidlinux.pdl@broadcom.com
10736 L:      linux-scsi@vger.kernel.org
10737 W:      http://www.avagotech.com/support/
10738 S:      Maintained
10739 F:      Documentation/scsi/megaraid.rst
10740 F:      drivers/scsi/megaraid.*
10741 F:      drivers/scsi/megaraid/
10742
10743 MELEXIS MLX90614 DRIVER
10744 M:      Crt Mori <cmo@melexis.com>
10745 L:      linux-iio@vger.kernel.org
10746 W:      http://www.melexis.com
10747 S:      Supported
10748 F:      drivers/iio/temperature/mlx90614.c
10749
10750 MELEXIS MLX90632 DRIVER
10751 M:      Crt Mori <cmo@melexis.com>
10752 L:      linux-iio@vger.kernel.org
10753 W:      http://www.melexis.com
10754 S:      Supported
10755 F:      drivers/iio/temperature/mlx90632.c
10756
10757 MELFAS MIP4 TOUCHSCREEN DRIVER
10758 M:      Sangwon Jee <jeesw@melfas.com>
10759 W:      http://www.melfas.com
10760 S:      Supported
10761 F:      drivers/input/touchscreen/melfas_mip4.c
10762 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10763
10764 MELLANOX ETHERNET DRIVER (mlx4_en)
10765 M:      Tariq Toukan <tariqt@mellanox.com>
10766 L:      netdev@vger.kernel.org
10767 S:      Supported
10768 W:      http://www.mellanox.com
10769 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10770 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10771
10772 MELLANOX ETHERNET DRIVER (mlx5e)
10773 M:      Saeed Mahameed <saeedm@mellanox.com>
10774 L:      netdev@vger.kernel.org
10775 S:      Supported
10776 W:      http://www.mellanox.com
10777 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10778 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10779
10780 MELLANOX ETHERNET INNOVA DRIVERS
10781 R:      Boris Pismenny <borisp@mellanox.com>
10782 L:      netdev@vger.kernel.org
10783 S:      Supported
10784 W:      http://www.mellanox.com
10785 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10786 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10787 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10788 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10789 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10790
10791 MELLANOX ETHERNET SWITCH DRIVERS
10792 M:      Jiri Pirko <jiri@mellanox.com>
10793 M:      Ido Schimmel <idosch@mellanox.com>
10794 L:      netdev@vger.kernel.org
10795 S:      Supported
10796 W:      http://www.mellanox.com
10797 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10798 F:      drivers/net/ethernet/mellanox/mlxsw/
10799 F:      tools/testing/selftests/drivers/net/mlxsw/
10800
10801 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10802 M:      mlxsw@mellanox.com
10803 L:      netdev@vger.kernel.org
10804 S:      Supported
10805 W:      http://www.mellanox.com
10806 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10807 F:      drivers/net/ethernet/mellanox/mlxfw/
10808
10809 MELLANOX HARDWARE PLATFORM SUPPORT
10810 M:      Andy Shevchenko <andy@infradead.org>
10811 M:      Darren Hart <dvhart@infradead.org>
10812 M:      Vadim Pasternak <vadimp@mellanox.com>
10813 L:      platform-driver-x86@vger.kernel.org
10814 S:      Supported
10815 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
10816 F:      drivers/platform/mellanox/
10817 F:      include/linux/platform_data/mlxreg.h
10818
10819 MELLANOX MLX4 core VPI driver
10820 M:      Tariq Toukan <tariqt@mellanox.com>
10821 L:      netdev@vger.kernel.org
10822 L:      linux-rdma@vger.kernel.org
10823 W:      http://www.mellanox.com
10824 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10825 S:      Supported
10826 F:      drivers/net/ethernet/mellanox/mlx4/
10827 F:      include/linux/mlx4/
10828
10829 MELLANOX MLX4 IB driver
10830 M:      Yishai Hadas <yishaih@mellanox.com>
10831 L:      linux-rdma@vger.kernel.org
10832 W:      http://www.mellanox.com
10833 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10834 S:      Supported
10835 F:      drivers/infiniband/hw/mlx4/
10836 F:      include/linux/mlx4/
10837 F:      include/uapi/rdma/mlx4-abi.h
10838
10839 MELLANOX MLX5 core VPI driver
10840 M:      Saeed Mahameed <saeedm@mellanox.com>
10841 M:      Leon Romanovsky <leonro@mellanox.com>
10842 L:      netdev@vger.kernel.org
10843 L:      linux-rdma@vger.kernel.org
10844 W:      http://www.mellanox.com
10845 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10846 S:      Supported
10847 F:      drivers/net/ethernet/mellanox/mlx5/core/
10848 F:      include/linux/mlx5/
10849 F:      Documentation/networking/device_drivers/mellanox/
10850
10851 MELLANOX MLX5 IB driver
10852 M:      Leon Romanovsky <leonro@mellanox.com>
10853 L:      linux-rdma@vger.kernel.org
10854 W:      http://www.mellanox.com
10855 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10856 S:      Supported
10857 F:      drivers/infiniband/hw/mlx5/
10858 F:      include/linux/mlx5/
10859 F:      include/uapi/rdma/mlx5-abi.h
10860
10861 MELLANOX MLXCPLD I2C AND MUX DRIVER
10862 M:      Vadim Pasternak <vadimp@mellanox.com>
10863 M:      Michael Shych <michaelsh@mellanox.com>
10864 L:      linux-i2c@vger.kernel.org
10865 S:      Supported
10866 F:      drivers/i2c/busses/i2c-mlxcpld.c
10867 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10868 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10869
10870 MELLANOX MLXCPLD LED DRIVER
10871 M:      Vadim Pasternak <vadimp@mellanox.com>
10872 L:      linux-leds@vger.kernel.org
10873 S:      Supported
10874 F:      drivers/leds/leds-mlxcpld.c
10875 F:      drivers/leds/leds-mlxreg.c
10876 F:      Documentation/leds/leds-mlxcpld.rst
10877
10878 MELLANOX PLATFORM DRIVER
10879 M:      Vadim Pasternak <vadimp@mellanox.com>
10880 L:      platform-driver-x86@vger.kernel.org
10881 S:      Supported
10882 F:      drivers/platform/x86/mlx-platform.c
10883
10884 MEMBARRIER SUPPORT
10885 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10886 M:      "Paul E. McKenney" <paulmck@kernel.org>
10887 L:      linux-kernel@vger.kernel.org
10888 S:      Supported
10889 F:      kernel/sched/membarrier.c
10890 F:      include/uapi/linux/membarrier.h
10891 F:      arch/powerpc/include/asm/membarrier.h
10892
10893 MEMBLOCK
10894 M:      Mike Rapoport <rppt@linux.ibm.com>
10895 L:      linux-mm@kvack.org
10896 S:      Maintained
10897 F:      include/linux/memblock.h
10898 F:      mm/memblock.c
10899 F:      Documentation/core-api/boot-time-mm.rst
10900
10901 MEMORY MANAGEMENT
10902 M:      Andrew Morton <akpm@linux-foundation.org>
10903 L:      linux-mm@kvack.org
10904 W:      http://www.linux-mm.org
10905 T:      quilt https://ozlabs.org/~akpm/mmotm/
10906 T:      quilt https://ozlabs.org/~akpm/mmots/
10907 T:      git git://github.com/hnaz/linux-mm.git
10908 S:      Maintained
10909 F:      include/linux/mm.h
10910 F:      include/linux/gfp.h
10911 F:      include/linux/mmzone.h
10912 F:      include/linux/memory_hotplug.h
10913 F:      include/linux/vmalloc.h
10914 F:      mm/
10915
10916 MEMORY TECHNOLOGY DEVICES (MTD)
10917 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10918 M:      Richard Weinberger <richard@nod.at>
10919 M:      Vignesh Raghavendra <vigneshr@ti.com>
10920 L:      linux-mtd@lists.infradead.org
10921 W:      http://www.linux-mtd.infradead.org/
10922 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10923 C:      irc://irc.oftc.net/mtd
10924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10926 S:      Maintained
10927 F:      Documentation/devicetree/bindings/mtd/
10928 F:      drivers/mtd/
10929 F:      include/linux/mtd/
10930 F:      include/uapi/mtd/
10931
10932 MEN A21 WATCHDOG DRIVER
10933 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10934 L:      linux-watchdog@vger.kernel.org
10935 S:      Maintained
10936 F:      drivers/watchdog/mena21_wdt.c
10937
10938 MEN CHAMELEON BUS (mcb)
10939 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10940 S:      Maintained
10941 F:      drivers/mcb/
10942 F:      include/linux/mcb.h
10943 F:      Documentation/driver-api/men-chameleon-bus.rst
10944
10945 MEN F21BMC (Board Management Controller)
10946 M:      Andreas Werner <andreas.werner@men.de>
10947 S:      Supported
10948 F:      drivers/mfd/menf21bmc.c
10949 F:      drivers/watchdog/menf21bmc_wdt.c
10950 F:      drivers/leds/leds-menf21bmc.c
10951 F:      drivers/hwmon/menf21bmc_hwmon.c
10952 F:      Documentation/hwmon/menf21bmc.rst
10953
10954 MEN Z069 WATCHDOG DRIVER
10955 M:      Johannes Thumshirn <jth@kernel.org>
10956 L:      linux-watchdog@vger.kernel.org
10957 S:      Maintained
10958 F:      drivers/watchdog/menz69_wdt.c
10959
10960 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10961 M:      Neil Armstrong <narmstrong@baylibre.com>
10962 L:      linux-media@vger.kernel.org
10963 L:      linux-amlogic@lists.infradead.org
10964 W:      http://linux-meson.com/
10965 S:      Supported
10966 F:      drivers/media/platform/meson/ao-cec.c
10967 F:      drivers/media/platform/meson/ao-cec-g12a.c
10968 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
10969 T:      git git://linuxtv.org/media_tree.git
10970
10971 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10972 M:      Liang Yang <liang.yang@amlogic.com>
10973 L:      linux-mtd@lists.infradead.org
10974 S:      Maintained
10975 F:      drivers/mtd/nand/raw/meson_*
10976 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10977
10978 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10979 M:      Maxime Jourdan <mjourdan@baylibre.com>
10980 L:      linux-media@vger.kernel.org
10981 L:      linux-amlogic@lists.infradead.org
10982 S:      Supported
10983 F:      drivers/staging/media/meson/vdec/
10984 T:      git git://linuxtv.org/media_tree.git
10985
10986 METHODE UDPU SUPPORT
10987 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10988 S:      Maintained
10989 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10990
10991 MHI BUS
10992 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
10993 M:      Hemant Kumar <hemantk@codeaurora.org>
10994 L:      linux-arm-msm@vger.kernel.org
10995 S:      Maintained
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
10997 F:      Documentation/mhi/
10998 F:      drivers/bus/mhi/
10999 F:      include/linux/mhi.h
11000
11001 MICROBLAZE ARCHITECTURE
11002 M:      Michal Simek <monstr@monstr.eu>
11003 W:      http://www.monstr.eu/fdt/
11004 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
11005 S:      Supported
11006 F:      arch/microblaze/
11007
11008 MICROCHIP AT91 SERIAL DRIVER
11009 M:      Richard Genoud <richard.genoud@gmail.com>
11010 S:      Maintained
11011 F:      drivers/tty/serial/atmel_serial.c
11012 F:      drivers/tty/serial/atmel_serial.h
11013 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11014
11015 MICROCHIP AUDIO ASOC DRIVERS
11016 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
11017 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11018 S:      Supported
11019 F:      sound/soc/atmel
11020
11021 MICROCHIP DMA DRIVER
11022 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11024 L:      dmaengine@vger.kernel.org
11025 S:      Supported
11026 F:      drivers/dma/at_hdmac.c
11027 F:      drivers/dma/at_hdmac_regs.h
11028 F:      include/linux/platform_data/dma-atmel.h
11029 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
11030 F:      include/dt-bindings/dma/at91.h
11031
11032 MICROCHIP ECC DRIVER
11033 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11034 L:      linux-crypto@vger.kernel.org
11035 S:      Maintained
11036 F:      drivers/crypto/atmel-ecc.*
11037
11038 MICROCHIP I2C DRIVER
11039 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11040 L:      linux-i2c@vger.kernel.org
11041 S:      Supported
11042 F:      drivers/i2c/busses/i2c-at91.h
11043 F:      drivers/i2c/busses/i2c-at91-*.c
11044
11045 MICROCHIP ISC DRIVER
11046 M:      Eugen Hristev <eugen.hristev@microchip.com>
11047 L:      linux-media@vger.kernel.org
11048 S:      Supported
11049 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
11050 F:      drivers/media/platform/atmel/atmel-isc.h
11051 F:      drivers/media/platform/atmel/atmel-isc-base.c
11052 F:      drivers/media/platform/atmel/atmel-isc-regs.h
11053 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
11054 F:      include/linux/atmel-isc-media.h
11055
11056 MICROCHIP ISI DRIVER
11057 M:      Eugen Hristev <eugen.hristev@microchip.com>
11058 L:      linux-media@vger.kernel.org
11059 S:      Supported
11060 F:      drivers/media/platform/atmel/atmel-isi.c
11061 F:      drivers/media/platform/atmel/atmel-isi.h
11062
11063 MICROCHIP AT91 USART MFD DRIVER
11064 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11065 L:      linux-kernel@vger.kernel.org
11066 S:      Supported
11067 F:      drivers/mfd/at91-usart.c
11068 F:      include/dt-bindings/mfd/at91-usart.h
11069 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11070
11071 MICROCHIP AT91 USART SPI DRIVER
11072 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
11073 L:      linux-spi@vger.kernel.org
11074 S:      Supported
11075 F:      drivers/spi/spi-at91-usart.c
11076 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
11077
11078 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
11079 M:      Woojung Huh <woojung.huh@microchip.com>
11080 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11081 L:      netdev@vger.kernel.org
11082 S:      Maintained
11083 F:      net/dsa/tag_ksz.c
11084 F:      drivers/net/dsa/microchip/*
11085 F:      include/linux/platform_data/microchip-ksz.h
11086 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
11087
11088 MICROCHIP LAN743X ETHERNET DRIVER
11089 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
11090 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11091 L:      netdev@vger.kernel.org
11092 S:      Maintained
11093 F:      drivers/net/ethernet/microchip/lan743x_*
11094
11095 MICROCHIP LCDFB DRIVER
11096 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11097 L:      linux-fbdev@vger.kernel.org
11098 S:      Maintained
11099 F:      drivers/video/fbdev/atmel_lcdfb.c
11100 F:      include/video/atmel_lcdc.h
11101
11102 MICROCHIP MMC/SD/SDIO MCI DRIVER
11103 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11104 S:      Maintained
11105 F:      drivers/mmc/host/atmel-mci.c
11106
11107 MICROCHIP MCP16502 PMIC DRIVER
11108 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
11109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11110 S:      Maintained
11111 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
11112 F:      drivers/regulator/mcp16502.c
11113
11114 MICROCHIP MCP3911 ADC DRIVER
11115 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11116 M:      Kent Gustavsson <kent@minoris.se>
11117 L:      linux-iio@vger.kernel.org
11118 S:      Supported
11119 F:      drivers/iio/adc/mcp3911.c
11120 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
11121
11122 MICROCHIP NAND DRIVER
11123 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
11124 L:      linux-mtd@lists.infradead.org
11125 S:      Supported
11126 F:      drivers/mtd/nand/raw/atmel/*
11127 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
11128
11129 MICROCHIP PWM DRIVER
11130 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
11131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11132 L:      linux-pwm@vger.kernel.org
11133 S:      Supported
11134 F:      drivers/pwm/pwm-atmel.c
11135 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
11136
11137 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
11138 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11139 M:      Eugen Hristev <eugen.hristev@microchip.com>
11140 L:      linux-iio@vger.kernel.org
11141 S:      Supported
11142 F:      drivers/iio/adc/at91-sama5d2_adc.c
11143 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
11144 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
11145
11146 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
11147 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11148 S:      Supported
11149 F:      drivers/power/reset/at91-sama5d2_shdwc.c
11150
11151 MICROCHIP SPI DRIVER
11152 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11153 S:      Supported
11154 F:      drivers/spi/spi-atmel.*
11155
11156 MICROCHIP SSC DRIVER
11157 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
11158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11159 S:      Supported
11160 F:      drivers/misc/atmel-ssc.c
11161 F:      include/linux/atmel-ssc.h
11162
11163 MICROCHIP USBA UDC DRIVER
11164 M:      Cristian Birsan <cristian.birsan@microchip.com>
11165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11166 S:      Supported
11167 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
11168
11169 MICROCHIP USB251XB DRIVER
11170 M:      Richard Leitner <richard.leitner@skidata.com>
11171 L:      linux-usb@vger.kernel.org
11172 S:      Maintained
11173 F:      drivers/usb/misc/usb251xb.c
11174 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
11175
11176 MICROCHIP XDMA DRIVER
11177 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
11178 L:      linux-arm-kernel@lists.infradead.org
11179 L:      dmaengine@vger.kernel.org
11180 S:      Supported
11181 F:      drivers/dma/at_xdmac.c
11182
11183 MICROSEMI MIPS SOCS
11184 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11185 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11186 L:      linux-mips@vger.kernel.org
11187 S:      Supported
11188 F:      arch/mips/generic/board-ocelot.c
11189 F:      arch/mips/configs/generic/board-ocelot.config
11190 F:      arch/mips/boot/dts/mscc/
11191 F:      Documentation/devicetree/bindings/mips/mscc.txt
11192
11193 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
11194 M:      Don Brace <don.brace@microsemi.com>
11195 L:      esc.storagedev@microsemi.com
11196 L:      linux-scsi@vger.kernel.org
11197 S:      Supported
11198 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
11199 F:      drivers/scsi/smartpqi/Kconfig
11200 F:      drivers/scsi/smartpqi/Makefile
11201 F:      include/linux/cciss*.h
11202 F:      include/uapi/linux/cciss*.h
11203 F:      Documentation/scsi/smartpqi.rst
11204
11205 MICROSEMI ETHERNET SWITCH DRIVER
11206 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
11207 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11208 L:      netdev@vger.kernel.org
11209 S:      Supported
11210 F:      drivers/net/ethernet/mscc/
11211 F:      include/soc/mscc/ocelot*
11212
11213 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
11214 M:      Chen Yu <yu.c.chen@intel.com>
11215 L:      platform-driver-x86@vger.kernel.org
11216 S:      Supported
11217 F:      drivers/platform/x86/surfacepro3_button.c
11218
11219 MICROTEK X6 SCANNER
11220 M:      Oliver Neukum <oliver@neukum.org>
11221 S:      Maintained
11222 F:      drivers/usb/image/microtek.*
11223
11224 MIPS
11225 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11226 L:      linux-mips@vger.kernel.org
11227 W:      http://www.linux-mips.org/
11228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
11229 Q:      https://patchwork.kernel.org/project/linux-mips/list/
11230 S:      Maintained
11231 F:      Documentation/devicetree/bindings/mips/
11232 F:      Documentation/mips/
11233 F:      arch/mips/
11234 F:      drivers/platform/mips/
11235
11236 MIPS BOSTON DEVELOPMENT BOARD
11237 M:      Paul Burton <paulburton@kernel.org>
11238 L:      linux-mips@vger.kernel.org
11239 S:      Maintained
11240 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
11241 F:      arch/mips/boot/dts/img/boston.dts
11242 F:      arch/mips/configs/generic/board-boston.config
11243 F:      drivers/clk/imgtec/clk-boston.c
11244 F:      include/dt-bindings/clock/boston-clock.h
11245
11246 MIPS GENERIC PLATFORM
11247 M:      Paul Burton <paulburton@kernel.org>
11248 L:      linux-mips@vger.kernel.org
11249 S:      Supported
11250 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
11251 F:      arch/mips/generic/
11252 F:      arch/mips/tools/generic-board-config.sh
11253
11254 MIPS/LOONGSON1 ARCHITECTURE
11255 M:      Keguang Zhang <keguang.zhang@gmail.com>
11256 L:      linux-mips@vger.kernel.org
11257 S:      Maintained
11258 F:      arch/mips/loongson32/
11259 F:      arch/mips/include/asm/mach-loongson32/
11260 F:      drivers/*/*loongson1*
11261 F:      drivers/*/*/*loongson1*
11262
11263 MIPS/LOONGSON2EF ARCHITECTURE
11264 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11265 L:      linux-mips@vger.kernel.org
11266 S:      Maintained
11267 F:      arch/mips/loongson2ef/
11268 F:      arch/mips/include/asm/mach-loongson2ef/
11269 F:      drivers/*/*loongson2*
11270 F:      drivers/*/*/*loongson2*
11271
11272 MIPS/LOONGSON64 ARCHITECTURE
11273 M:      Huacai Chen <chenhc@lemote.com>
11274 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
11275 L:      linux-mips@vger.kernel.org
11276 S:      Maintained
11277 F:      arch/mips/loongson64/
11278 F:      arch/mips/include/asm/mach-loongson64/
11279 F:      drivers/platform/mips/cpu_hwmon.c
11280 F:      drivers/irqchip/irq-loongson*
11281 F:      drivers/*/*loongson3*
11282 F:      drivers/*/*/*loongson3*
11283
11284 MIPS RINT INSTRUCTION EMULATION
11285 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
11286 L:      linux-mips@vger.kernel.org
11287 S:      Supported
11288 F:      arch/mips/math-emu/sp_rint.c
11289 F:      arch/mips/math-emu/dp_rint.c
11290
11291 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
11292 M:      Hans Verkuil <hverkuil@xs4all.nl>
11293 L:      linux-media@vger.kernel.org
11294 T:      git git://linuxtv.org/media_tree.git
11295 W:      https://linuxtv.org
11296 S:      Odd Fixes
11297 F:      drivers/media/radio/radio-miropcm20*
11298
11299 MMP SUPPORT
11300 R:      Lubomir Rintel <lkundrak@v3.sk>
11301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
11303 S:      Odd Fixes
11304 F:      arch/arm/boot/dts/mmp*
11305 F:      arch/arm/mach-mmp/
11306 F:      linux/soc/mmp/
11307
11308 MMP USB PHY DRIVERS
11309 R:      Lubomir Rintel <lkundrak@v3.sk>
11310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11311 S:      Maintained
11312 F:      drivers/phy/marvell/phy-mmp3-usb.c
11313 F:      drivers/phy/marvell/phy-pxa-usb.c
11314
11315 MMU GATHER AND TLB INVALIDATION
11316 M:      Will Deacon <will@kernel.org>
11317 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
11318 M:      Andrew Morton <akpm@linux-foundation.org>
11319 M:      Nick Piggin <npiggin@gmail.com>
11320 M:      Peter Zijlstra <peterz@infradead.org>
11321 L:      linux-arch@vger.kernel.org
11322 L:      linux-mm@kvack.org
11323 S:      Maintained
11324 F:      arch/*/include/asm/tlb.h
11325 F:      include/asm-generic/tlb.h
11326 F:      mm/mmu_gather.c
11327
11328 MN88472 MEDIA DRIVER
11329 M:      Antti Palosaari <crope@iki.fi>
11330 L:      linux-media@vger.kernel.org
11331 W:      https://linuxtv.org
11332 W:      http://palosaari.fi/linux/
11333 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11334 S:      Maintained
11335 F:      drivers/media/dvb-frontends/mn88472*
11336
11337 MN88473 MEDIA DRIVER
11338 M:      Antti Palosaari <crope@iki.fi>
11339 L:      linux-media@vger.kernel.org
11340 W:      https://linuxtv.org
11341 W:      http://palosaari.fi/linux/
11342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11343 S:      Maintained
11344 F:      drivers/media/dvb-frontends/mn88473*
11345
11346 MODULE SUPPORT
11347 M:      Jessica Yu <jeyu@kernel.org>
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
11349 S:      Maintained
11350 F:      include/linux/module.h
11351 F:      kernel/module.c
11352
11353 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
11354 W:      http://popies.net/meye/
11355 S:      Orphan
11356 F:      Documentation/media/v4l-drivers/meye*
11357 F:      drivers/media/pci/meye/
11358 F:      include/uapi/linux/meye.h
11359
11360 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
11361 M:      Jiri Slaby <jirislaby@gmail.com>
11362 S:      Maintained
11363 F:      Documentation/driver-api/serial/moxa-smartio.rst
11364 F:      drivers/tty/mxser.*
11365
11366 MONOLITHIC POWER SYSTEM PMIC DRIVER
11367 M:      Saravanan Sekar <sravanhome@gmail.com>
11368 S:      Maintained
11369 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
11370 F:      drivers/regulator/mp5416.c
11371 F:      drivers/regulator/mpq7920.c
11372 F:      drivers/regulator/mpq7920.h
11373
11374 MR800 AVERMEDIA USB FM RADIO DRIVER
11375 M:      Alexey Klimov <klimov.linux@gmail.com>
11376 L:      linux-media@vger.kernel.org
11377 T:      git git://linuxtv.org/media_tree.git
11378 S:      Maintained
11379 F:      drivers/media/radio/radio-mr800.c
11380
11381 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11382 M:      Alan Ott <alan@signal11.us>
11383 L:      linux-wpan@vger.kernel.org
11384 S:      Maintained
11385 F:      drivers/net/ieee802154/mrf24j40.c
11386 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11387
11388 MSI LAPTOP SUPPORT
11389 M:      "Lee, Chun-Yi" <jlee@suse.com>
11390 L:      platform-driver-x86@vger.kernel.org
11391 S:      Maintained
11392 F:      drivers/platform/x86/msi-laptop.c
11393
11394 MSI WMI SUPPORT
11395 L:      platform-driver-x86@vger.kernel.org
11396 S:      Orphan
11397 F:      drivers/platform/x86/msi-wmi.c
11398
11399 MSI001 MEDIA DRIVER
11400 M:      Antti Palosaari <crope@iki.fi>
11401 L:      linux-media@vger.kernel.org
11402 W:      https://linuxtv.org
11403 W:      http://palosaari.fi/linux/
11404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11405 T:      git git://linuxtv.org/anttip/media_tree.git
11406 S:      Maintained
11407 F:      drivers/media/tuners/msi001*
11408
11409 MSI2500 MEDIA DRIVER
11410 M:      Antti Palosaari <crope@iki.fi>
11411 L:      linux-media@vger.kernel.org
11412 W:      https://linuxtv.org
11413 W:      http://palosaari.fi/linux/
11414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11415 T:      git git://linuxtv.org/anttip/media_tree.git
11416 S:      Maintained
11417 F:      drivers/media/usb/msi2500/
11418
11419 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11420 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11421 L:      linux-mtd@lists.infradead.org
11422 S:      Maintained
11423 F:      drivers/mtd/devices/docg3*
11424
11425 MT9M032 APTINA SENSOR DRIVER
11426 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11427 L:      linux-media@vger.kernel.org
11428 T:      git git://linuxtv.org/media_tree.git
11429 S:      Maintained
11430 F:      drivers/media/i2c/mt9m032.c
11431 F:      include/media/i2c/mt9m032.h
11432
11433 MT9P031 APTINA CAMERA SENSOR
11434 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11435 L:      linux-media@vger.kernel.org
11436 T:      git git://linuxtv.org/media_tree.git
11437 S:      Maintained
11438 F:      drivers/media/i2c/mt9p031.c
11439 F:      include/media/i2c/mt9p031.h
11440
11441 MT9T001 APTINA CAMERA SENSOR
11442 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11443 L:      linux-media@vger.kernel.org
11444 T:      git git://linuxtv.org/media_tree.git
11445 S:      Maintained
11446 F:      drivers/media/i2c/mt9t001.c
11447 F:      include/media/i2c/mt9t001.h
11448
11449 MT9T112 APTINA CAMERA SENSOR
11450 M:      Jacopo Mondi <jacopo@jmondi.org>
11451 L:      linux-media@vger.kernel.org
11452 T:      git git://linuxtv.org/media_tree.git
11453 S:      Odd Fixes
11454 F:      drivers/media/i2c/mt9t112.c
11455 F:      include/media/i2c/mt9t112.h
11456
11457 MT9V032 APTINA CAMERA SENSOR
11458 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11459 L:      linux-media@vger.kernel.org
11460 T:      git git://linuxtv.org/media_tree.git
11461 S:      Maintained
11462 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11463 F:      drivers/media/i2c/mt9v032.c
11464 F:      include/media/i2c/mt9v032.h
11465
11466 MT9V111 APTINA CAMERA SENSOR
11467 M:      Jacopo Mondi <jacopo@jmondi.org>
11468 L:      linux-media@vger.kernel.org
11469 T:      git git://linuxtv.org/media_tree.git
11470 S:      Maintained
11471 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11472 F:      drivers/media/i2c/mt9v111.c
11473
11474 MULTIFUNCTION DEVICES (MFD)
11475 M:      Lee Jones <lee.jones@linaro.org>
11476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11477 S:      Supported
11478 F:      Documentation/devicetree/bindings/mfd/
11479 F:      drivers/mfd/
11480 F:      include/linux/mfd/
11481 F:      include/dt-bindings/mfd/
11482
11483 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11484 S:      Orphan
11485 F:      drivers/mmc/host/mmc_spi.c
11486 F:      include/linux/spi/mmc_spi.h
11487
11488 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11489 M:      Ulf Hansson <ulf.hansson@linaro.org>
11490 L:      linux-mmc@vger.kernel.org
11491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11492 S:      Maintained
11493 F:      Documentation/devicetree/bindings/mmc/
11494 F:      drivers/mmc/
11495 F:      include/linux/mmc/
11496 F:      include/uapi/linux/mmc/
11497
11498 MULTIPLEXER SUBSYSTEM
11499 M:      Peter Rosin <peda@axentia.se>
11500 S:      Maintained
11501 F:      Documentation/ABI/testing/sysfs-class-mux*
11502 F:      Documentation/devicetree/bindings/mux/
11503 F:      include/dt-bindings/mux/
11504 F:      include/linux/mux/
11505 F:      drivers/mux/
11506
11507 MULTITECH MULTIPORT CARD (ISICOM)
11508 S:      Orphan
11509 F:      drivers/tty/isicom.c
11510 F:      include/linux/isicom.h
11511
11512 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11513 M:      Bin Liu <b-liu@ti.com>
11514 L:      linux-usb@vger.kernel.org
11515 S:      Maintained
11516 F:      drivers/usb/musb/
11517
11518 MXL301RF MEDIA DRIVER
11519 M:      Akihiro Tsukada <tskd08@gmail.com>
11520 L:      linux-media@vger.kernel.org
11521 S:      Odd Fixes
11522 F:      drivers/media/tuners/mxl301rf*
11523
11524 MXL5007T MEDIA DRIVER
11525 M:      Michael Krufky <mkrufky@linuxtv.org>
11526 L:      linux-media@vger.kernel.org
11527 W:      https://linuxtv.org
11528 W:      http://github.com/mkrufky
11529 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11530 T:      git git://linuxtv.org/mkrufky/tuners.git
11531 S:      Maintained
11532 F:      drivers/media/tuners/mxl5007t.*
11533
11534 MXSFB DRM DRIVER
11535 M:      Marek Vasut <marex@denx.de>
11536 M:      Stefan Agner <stefan@agner.ch>
11537 L:      dri-devel@lists.freedesktop.org
11538 S:      Supported
11539 F:      drivers/gpu/drm/mxsfb/
11540 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11541 T:      git git://anongit.freedesktop.org/drm/drm-misc
11542
11543 MYLEX DAC960 PCI RAID Controller
11544 M:      Hannes Reinecke <hare@kernel.org>
11545 L:      linux-scsi@vger.kernel.org
11546 S:      Supported
11547 F:      drivers/scsi/myrb.*
11548 F:      drivers/scsi/myrs.*
11549
11550 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11551 M:      Chris Lee <christopher.lee@cspi.com>
11552 L:      netdev@vger.kernel.org
11553 W:      https://www.cspi.com/ethernet-products/support/downloads/
11554 S:      Supported
11555 F:      drivers/net/ethernet/myricom/myri10ge/
11556
11557 NAND FLASH SUBSYSTEM
11558 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11559 R:      Richard Weinberger <richard@nod.at>
11560 L:      linux-mtd@lists.infradead.org
11561 W:      http://www.linux-mtd.infradead.org/
11562 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11564 C:      irc://irc.oftc.net/mtd
11565 S:      Maintained
11566 F:      drivers/mtd/nand/
11567 F:      include/linux/mtd/*nand*.h
11568
11569 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11570 M:      Daniel Mack <zonque@gmail.com>
11571 S:      Maintained
11572 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11573 W:      http://www.native-instruments.com
11574 F:      sound/usb/caiaq/
11575
11576 NATSEMI ETHERNET DRIVER (DP8381x)
11577 S:      Orphan
11578 F:      drivers/net/ethernet/natsemi/natsemi.c
11579
11580 NCR 5380 SCSI DRIVERS
11581 M:      Finn Thain <fthain@telegraphics.com.au>
11582 M:      Michael Schmitz <schmitzmic@gmail.com>
11583 L:      linux-scsi@vger.kernel.org
11584 S:      Maintained
11585 F:      Documentation/scsi/g_NCR5380.rst
11586 F:      drivers/scsi/NCR5380.*
11587 F:      drivers/scsi/arm/cumana_1.c
11588 F:      drivers/scsi/arm/oak.c
11589 F:      drivers/scsi/atari_scsi.*
11590 F:      drivers/scsi/dmx3191d.c
11591 F:      drivers/scsi/g_NCR5380.*
11592 F:      drivers/scsi/mac_scsi.*
11593 F:      drivers/scsi/sun3_scsi.*
11594 F:      drivers/scsi/sun3_scsi_vme.c
11595
11596 NCSI LIBRARY
11597 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11598 S:      Maintained
11599 F:      net/ncsi/
11600
11601 NCT6775 HARDWARE MONITOR DRIVER
11602 M:      Guenter Roeck <linux@roeck-us.net>
11603 L:      linux-hwmon@vger.kernel.org
11604 S:      Maintained
11605 F:      Documentation/hwmon/nct6775.rst
11606 F:      drivers/hwmon/nct6775.c
11607
11608 NET_FAILOVER MODULE
11609 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11610 L:      netdev@vger.kernel.org
11611 S:      Supported
11612 F:      drivers/net/net_failover.c
11613 F:      include/net/net_failover.h
11614 F:      Documentation/networking/net_failover.rst
11615
11616 NETEM NETWORK EMULATOR
11617 M:      Stephen Hemminger <stephen@networkplumber.org>
11618 L:      netdev@vger.kernel.org
11619 S:      Maintained
11620 F:      net/sched/sch_netem.c
11621
11622 NETERION 10GbE DRIVERS (s2io/vxge)
11623 M:      Jon Mason <jdmason@kudzu.us>
11624 L:      netdev@vger.kernel.org
11625 S:      Supported
11626 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11627 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11628 F:      drivers/net/ethernet/neterion/
11629
11630 NETFILTER
11631 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11632 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11633 M:      Florian Westphal <fw@strlen.de>
11634 L:      netfilter-devel@vger.kernel.org
11635 L:      coreteam@netfilter.org
11636 W:      http://www.netfilter.org/
11637 W:      http://www.iptables.org/
11638 W:      http://www.nftables.org/
11639 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11642 S:      Maintained
11643 F:      include/linux/netfilter*
11644 F:      include/linux/netfilter/
11645 F:      include/net/netfilter/
11646 F:      include/uapi/linux/netfilter*
11647 F:      include/uapi/linux/netfilter/
11648 F:      net/*/netfilter.c
11649 F:      net/*/netfilter/
11650 F:      net/netfilter/
11651 F:      net/bridge/br_netfilter*.c
11652
11653 NETROM NETWORK LAYER
11654 M:      Ralf Baechle <ralf@linux-mips.org>
11655 L:      linux-hams@vger.kernel.org
11656 W:      http://www.linux-ax25.org/
11657 S:      Maintained
11658 F:      include/net/netrom.h
11659 F:      include/uapi/linux/netrom.h
11660 F:      net/netrom/
11661
11662 NETRONOME ETHERNET DRIVERS
11663 M:      Jakub Kicinski <kuba@kernel.org>
11664 L:      oss-drivers@netronome.com
11665 S:      Maintained
11666 F:      drivers/net/ethernet/netronome/
11667
11668 NETWORK BLOCK DEVICE (NBD)
11669 M:      Josef Bacik <josef@toxicpanda.com>
11670 S:      Maintained
11671 L:      linux-block@vger.kernel.org
11672 L:      nbd@other.debian.org
11673 F:      Documentation/admin-guide/blockdev/nbd.rst
11674 F:      drivers/block/nbd.c
11675 F:      include/trace/events/nbd.h
11676 F:      include/uapi/linux/nbd.h
11677
11678 NETWORK DROP MONITOR
11679 M:      Neil Horman <nhorman@tuxdriver.com>
11680 L:      netdev@vger.kernel.org
11681 S:      Maintained
11682 W:      https://fedorahosted.org/dropwatch/
11683 F:      net/core/drop_monitor.c
11684 F:      include/uapi/linux/net_dropmon.h
11685 F:      include/net/drop_monitor.h
11686
11687 NETWORKING DRIVERS
11688 M:      "David S. Miller" <davem@davemloft.net>
11689 L:      netdev@vger.kernel.org
11690 W:      http://www.linuxfoundation.org/en/Net
11691 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11694 S:      Odd Fixes
11695 F:      Documentation/devicetree/bindings/net/
11696 F:      drivers/net/
11697 F:      include/linux/if_*
11698 F:      include/linux/netdevice.h
11699 F:      include/linux/etherdevice.h
11700 F:      include/linux/fcdevice.h
11701 F:      include/linux/fddidevice.h
11702 F:      include/linux/hippidevice.h
11703 F:      include/linux/inetdevice.h
11704 F:      include/uapi/linux/if_*
11705 F:      include/uapi/linux/netdevice.h
11706
11707 NETWORKING DRIVERS (WIRELESS)
11708 M:      Kalle Valo <kvalo@codeaurora.org>
11709 L:      linux-wireless@vger.kernel.org
11710 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11713 S:      Maintained
11714 F:      Documentation/devicetree/bindings/net/wireless/
11715 F:      drivers/net/wireless/
11716
11717 NETWORKING [DSA]
11718 M:      Andrew Lunn <andrew@lunn.ch>
11719 M:      Vivien Didelot <vivien.didelot@gmail.com>
11720 M:      Florian Fainelli <f.fainelli@gmail.com>
11721 S:      Maintained
11722 F:      Documentation/devicetree/bindings/net/dsa/
11723 F:      net/dsa/
11724 F:      include/net/dsa.h
11725 F:      include/linux/dsa/
11726 F:      include/linux/platform_data/dsa.h
11727 F:      drivers/net/dsa/
11728
11729 NETWORKING [GENERAL]
11730 M:      "David S. Miller" <davem@davemloft.net>
11731 M:      Jakub Kicinski <kuba@kernel.org>
11732 L:      netdev@vger.kernel.org
11733 W:      http://www.linuxfoundation.org/en/Net
11734 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
11737 B:      mailto:netdev@vger.kernel.org
11738 S:      Maintained
11739 F:      net/
11740 F:      include/net/
11741 F:      include/linux/in.h
11742 F:      include/linux/net.h
11743 F:      include/linux/netdevice.h
11744 F:      include/uapi/linux/in.h
11745 F:      include/uapi/linux/net.h
11746 F:      include/uapi/linux/netdevice.h
11747 F:      include/uapi/linux/net_namespace.h
11748 F:      tools/testing/selftests/net/
11749 F:      lib/net_utils.c
11750 F:      lib/random32.c
11751 F:      Documentation/networking/
11752
11753 NETWORKING [IPSEC]
11754 M:      Steffen Klassert <steffen.klassert@secunet.com>
11755 M:      Herbert Xu <herbert@gondor.apana.org.au>
11756 M:      "David S. Miller" <davem@davemloft.net>
11757 L:      netdev@vger.kernel.org
11758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11760 S:      Maintained
11761 F:      net/xfrm/
11762 F:      net/key/
11763 F:      net/ipv4/xfrm*
11764 F:      net/ipv4/esp4*
11765 F:      net/ipv4/ah4.c
11766 F:      net/ipv4/ipcomp.c
11767 F:      net/ipv4/ip_vti.c
11768 F:      net/ipv6/xfrm*
11769 F:      net/ipv6/esp6*
11770 F:      net/ipv6/ah6.c
11771 F:      net/ipv6/ipcomp6.c
11772 F:      net/ipv6/ip6_vti.c
11773 F:      include/uapi/linux/xfrm.h
11774 F:      include/net/xfrm.h
11775
11776 NETWORKING [IPv4/IPv6]
11777 M:      "David S. Miller" <davem@davemloft.net>
11778 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11779 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11780 L:      netdev@vger.kernel.org
11781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
11782 S:      Maintained
11783 F:      net/ipv4/
11784 F:      net/ipv6/
11785 F:      include/net/ip*
11786 F:      arch/x86/net/*
11787
11788 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11789 M:      Paul Moore <paul@paul-moore.com>
11790 W:      https://github.com/netlabel
11791 L:      netdev@vger.kernel.org
11792 L:      linux-security-module@vger.kernel.org
11793 S:      Maintained
11794 F:      Documentation/netlabel/
11795 F:      include/net/calipso.h
11796 F:      include/net/cipso_ipv4.h
11797 F:      include/net/netlabel.h
11798 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11799 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11800 F:      net/netlabel/
11801 F:      net/ipv4/cipso_ipv4.c
11802 F:      net/ipv6/calipso.c
11803 F:      net/netfilter/xt_CONNSECMARK.c
11804 F:      net/netfilter/xt_SECMARK.c
11805
11806 NETWORKING [MPTCP]
11807 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
11808 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
11809 L:      netdev@vger.kernel.org
11810 L:      mptcp@lists.01.org
11811 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
11812 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
11813 S:      Maintained
11814 F:      include/net/mptcp.h
11815 F:      include/uapi/linux/mptcp.h
11816 F:      net/mptcp/
11817 F:      tools/testing/selftests/net/mptcp/
11818
11819 NETWORKING [TCP]
11820 M:      Eric Dumazet <edumazet@google.com>
11821 L:      netdev@vger.kernel.org
11822 S:      Maintained
11823 F:      net/ipv4/tcp*.c
11824 F:      net/ipv4/syncookies.c
11825 F:      net/ipv6/tcp*.c
11826 F:      net/ipv6/syncookies.c
11827 F:      include/uapi/linux/tcp.h
11828 F:      include/net/tcp.h
11829 F:      include/linux/tcp.h
11830 F:      include/trace/events/tcp.h
11831
11832 NETWORKING [TLS]
11833 M:      Boris Pismenny <borisp@mellanox.com>
11834 M:      Aviad Yehezkel <aviadye@mellanox.com>
11835 M:      John Fastabend <john.fastabend@gmail.com>
11836 M:      Daniel Borkmann <daniel@iogearbox.net>
11837 M:      Jakub Kicinski <kuba@kernel.org>
11838 L:      netdev@vger.kernel.org
11839 S:      Maintained
11840 F:      net/tls/*
11841 F:      include/uapi/linux/tls.h
11842 F:      include/net/tls.h
11843
11844 NETWORKING [WIRELESS]
11845 L:      linux-wireless@vger.kernel.org
11846 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11847
11848 NETDEVSIM
11849 M:      Jakub Kicinski <kuba@kernel.org>
11850 S:      Maintained
11851 F:      drivers/net/netdevsim/*
11852
11853 NETXEN (1/10) GbE SUPPORT
11854 M:      Manish Chopra <manishc@marvell.com>
11855 M:      Rahul Verma <rahulv@marvell.com>
11856 M:      GR-Linux-NIC-Dev@marvell.com
11857 L:      netdev@vger.kernel.org
11858 S:      Supported
11859 F:      drivers/net/ethernet/qlogic/netxen/
11860
11861 NEXTHOP
11862 M:      David Ahern <dsahern@kernel.org>
11863 L:      netdev@vger.kernel.org
11864 S:      Maintained
11865 F:      include/net/nexthop.h
11866 F:      include/uapi/linux/nexthop.h
11867 F:      include/net/netns/nexthop.h
11868 F:      net/ipv4/nexthop.c
11869
11870 NFC SUBSYSTEM
11871 L:      netdev@vger.kernel.org
11872 S:      Orphan
11873 F:      net/nfc/
11874 F:      include/net/nfc/
11875 F:      include/uapi/linux/nfc.h
11876 F:      drivers/nfc/
11877 F:      include/linux/platform_data/nfcmrvl.h
11878 F:      Documentation/devicetree/bindings/net/nfc/
11879
11880 NFS, SUNRPC, AND LOCKD CLIENTS
11881 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11882 M:      Anna Schumaker <anna.schumaker@netapp.com>
11883 L:      linux-nfs@vger.kernel.org
11884 W:      http://client.linux-nfs.org
11885 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11886 S:      Maintained
11887 F:      fs/lockd/
11888 F:      fs/nfs/
11889 F:      fs/nfs_common/
11890 F:      net/sunrpc/
11891 F:      include/linux/lockd/
11892 F:      include/linux/nfs*
11893 F:      include/linux/sunrpc/
11894 F:      include/uapi/linux/nfs*
11895 F:      include/uapi/linux/sunrpc/
11896
11897 NILFS2 FILESYSTEM
11898 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11899 L:      linux-nilfs@vger.kernel.org
11900 W:      https://nilfs.sourceforge.io/
11901 W:      https://nilfs.osdn.jp/
11902 T:      git git://github.com/konis/nilfs2.git
11903 S:      Supported
11904 F:      Documentation/filesystems/nilfs2.rst
11905 F:      fs/nilfs2/
11906 F:      include/trace/events/nilfs2.h
11907 F:      include/uapi/linux/nilfs2_api.h
11908 F:      include/uapi/linux/nilfs2_ondisk.h
11909
11910 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11911 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11912 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11913 S:      Maintained
11914 F:      Documentation/scsi/NinjaSCSI.rst
11915 F:      drivers/scsi/pcmcia/nsp_*
11916
11917 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11918 M:      GOTO Masanori <gotom@debian.or.jp>
11919 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11920 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11921 S:      Maintained
11922 F:      Documentation/scsi/NinjaSCSI.rst
11923 F:      drivers/scsi/nsp32*
11924
11925 NIOS2 ARCHITECTURE
11926 M:      Ley Foon Tan <ley.foon.tan@intel.com>
11927 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11929 S:      Maintained
11930 F:      arch/nios2/
11931
11932 NOHZ, DYNTICKS SUPPORT
11933 M:      Frederic Weisbecker <fweisbec@gmail.com>
11934 M:      Thomas Gleixner <tglx@linutronix.de>
11935 M:      Ingo Molnar <mingo@kernel.org>
11936 L:      linux-kernel@vger.kernel.org
11937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11938 S:      Maintained
11939 F:      kernel/time/tick*.*
11940 F:      include/linux/tick.h
11941 F:      include/linux/sched/nohz.h
11942
11943 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11944 M:      Pavel Machek <pavel@ucw.cz>
11945 M:      Sakari Ailus <sakari.ailus@iki.fi>
11946 L:      linux-media@vger.kernel.org
11947 S:      Maintained
11948 F:      drivers/media/i2c/et8ek8
11949 F:      drivers/media/i2c/ad5820.c
11950
11951 NOKIA N900 POWER SUPPLY DRIVERS
11952 R:      Pali Rohár <pali.rohar@gmail.com>
11953 F:      include/linux/power/bq2415x_charger.h
11954 F:      include/linux/power/bq27xxx_battery.h
11955 F:      drivers/power/supply/bq2415x_charger.c
11956 F:      drivers/power/supply/bq27xxx_battery.c
11957 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11958 F:      drivers/power/supply/isp1704_charger.c
11959 F:      drivers/power/supply/rx51_battery.c
11960
11961 NOLIBC HEADER FILE
11962 M:      Willy Tarreau <w@1wt.eu>
11963 S:      Maintained
11964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11965 F:      tools/include/nolibc/
11966
11967 NSDEPS
11968 M:      Matthias Maennich <maennich@google.com>
11969 S:      Maintained
11970 F:      scripts/nsdeps
11971 F:      Documentation/core-api/symbol-namespaces.rst
11972
11973 NTB AMD DRIVER
11974 M:      Sanjay R Mehta <sanju.mehta@amd.com>
11975 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11976 L:      linux-ntb@googlegroups.com
11977 S:      Supported
11978 F:      drivers/ntb/hw/amd/
11979
11980 NTB DRIVER CORE
11981 M:      Jon Mason <jdmason@kudzu.us>
11982 M:      Dave Jiang <dave.jiang@intel.com>
11983 M:      Allen Hubbe <allenbh@gmail.com>
11984 L:      linux-ntb@googlegroups.com
11985 S:      Supported
11986 W:      https://github.com/jonmason/ntb/wiki
11987 T:      git git://github.com/jonmason/ntb.git
11988 F:      drivers/ntb/
11989 F:      drivers/net/ntb_netdev.c
11990 F:      include/linux/ntb.h
11991 F:      include/linux/ntb_transport.h
11992 F:      tools/testing/selftests/ntb/
11993
11994 NTB IDT DRIVER
11995 M:      Serge Semin <fancer.lancer@gmail.com>
11996 L:      linux-ntb@googlegroups.com
11997 S:      Supported
11998 F:      drivers/ntb/hw/idt/
11999
12000 NTB INTEL DRIVER
12001 M:      Dave Jiang <dave.jiang@intel.com>
12002 L:      linux-ntb@googlegroups.com
12003 S:      Supported
12004 W:      https://github.com/davejiang/linux/wiki
12005 T:      git https://github.com/davejiang/linux.git
12006 F:      drivers/ntb/hw/intel/
12007
12008 NTFS FILESYSTEM
12009 M:      Anton Altaparmakov <anton@tuxera.com>
12010 L:      linux-ntfs-dev@lists.sourceforge.net
12011 W:      http://www.tuxera.com/
12012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
12013 S:      Supported
12014 F:      Documentation/filesystems/ntfs.rst
12015 F:      fs/ntfs/
12016
12017 NUBUS SUBSYSTEM
12018 M:      Finn Thain <fthain@telegraphics.com.au>
12019 L:      linux-m68k@lists.linux-m68k.org
12020 S:      Maintained
12021 F:      arch/*/include/asm/nubus.h
12022 F:      drivers/nubus/
12023 F:      include/linux/nubus.h
12024 F:      include/uapi/linux/nubus.h
12025
12026 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
12027 M:      Antonino Daplas <adaplas@gmail.com>
12028 L:      linux-fbdev@vger.kernel.org
12029 S:      Maintained
12030 F:      drivers/video/fbdev/riva/
12031 F:      drivers/video/fbdev/nvidia/
12032
12033 NVM EXPRESS DRIVER
12034 M:      Keith Busch <kbusch@kernel.org>
12035 M:      Jens Axboe <axboe@fb.com>
12036 M:      Christoph Hellwig <hch@lst.de>
12037 M:      Sagi Grimberg <sagi@grimberg.me>
12038 L:      linux-nvme@lists.infradead.org
12039 T:      git://git.infradead.org/nvme.git
12040 W:      http://git.infradead.org/nvme.git
12041 S:      Supported
12042 F:      drivers/nvme/host/
12043 F:      include/linux/nvme.h
12044 F:      include/uapi/linux/nvme_ioctl.h
12045
12046 NVM EXPRESS FC TRANSPORT DRIVERS
12047 M:      James Smart <james.smart@broadcom.com>
12048 L:      linux-nvme@lists.infradead.org
12049 S:      Supported
12050 F:      include/linux/nvme-fc.h
12051 F:      include/linux/nvme-fc-driver.h
12052 F:      drivers/nvme/host/fc.c
12053 F:      drivers/nvme/target/fc.c
12054 F:      drivers/nvme/target/fcloop.c
12055
12056 NVM EXPRESS TARGET DRIVER
12057 M:      Christoph Hellwig <hch@lst.de>
12058 M:      Sagi Grimberg <sagi@grimberg.me>
12059 M:      Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
12060 L:      linux-nvme@lists.infradead.org
12061 T:      git://git.infradead.org/nvme.git
12062 W:      http://git.infradead.org/nvme.git
12063 S:      Supported
12064 F:      drivers/nvme/target/
12065
12066 NVMEM FRAMEWORK
12067 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12068 S:      Maintained
12069 F:      drivers/nvmem/
12070 F:      Documentation/devicetree/bindings/nvmem/
12071 F:      Documentation/ABI/stable/sysfs-bus-nvmem
12072 F:      include/linux/nvmem-consumer.h
12073 F:      include/linux/nvmem-provider.h
12074
12075 NXP FXAS21002C DRIVER
12076 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12077 L:      linux-iio@vger.kernel.org
12078 S:      Maintained
12079 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
12080 F:      drivers/iio/gyro/fxas21002c_core.c
12081 F:      drivers/iio/gyro/fxas21002c.h
12082 F:      drivers/iio/gyro/fxas21002c_i2c.c
12083 F:      drivers/iio/gyro/fxas21002c_spi.c
12084
12085 NXP SGTL5000 DRIVER
12086 M:      Fabio Estevam <festevam@gmail.com>
12087 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12088 S:      Maintained
12089 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
12090 F:      sound/soc/codecs/sgtl5000*
12091
12092 NXP SJA1105 ETHERNET SWITCH DRIVER
12093 M:      Vladimir Oltean <olteanv@gmail.com>
12094 L:      linux-kernel@vger.kernel.org
12095 S:      Maintained
12096 F:      drivers/net/dsa/sja1105
12097
12098 NXP TDA998X DRM DRIVER
12099 M:      Russell King <linux@armlinux.org.uk>
12100 S:      Maintained
12101 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
12102 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
12103 F:      drivers/gpu/drm/i2c/tda998x_drv.c
12104 F:      include/drm/i2c/tda998x.h
12105 F:      include/dt-bindings/display/tda998x.h
12106 K:      "nxp,tda998x"
12107
12108 NXP TFA9879 DRIVER
12109 M:      Peter Rosin <peda@axentia.se>
12110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12111 S:      Maintained
12112 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
12113 F:      sound/soc/codecs/tfa9879*
12114
12115 NXP-NCI NFC DRIVER
12116 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
12117 R:      Charles Gorand <charles.gorand@effinnov.com>
12118 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12119 S:      Supported
12120 F:      drivers/nfc/nxp-nci
12121
12122 OBJAGG
12123 M:      Jiri Pirko <jiri@mellanox.com>
12124 L:      netdev@vger.kernel.org
12125 S:      Supported
12126 F:      lib/objagg.c
12127 F:      lib/test_objagg.c
12128 F:      include/linux/objagg.h
12129
12130 NXP FSPI DRIVER
12131 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
12132 M:      Ashish Kumar <ashish.kumar@nxp.com>
12133 L:      linux-spi@vger.kernel.org
12134 S:      Maintained
12135 F:      drivers/spi/spi-nxp-fspi.c
12136 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
12137
12138 OBJTOOL
12139 M:      Josh Poimboeuf <jpoimboe@redhat.com>
12140 M:      Peter Zijlstra <peterz@infradead.org>
12141 S:      Supported
12142 F:      tools/objtool/
12143
12144 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
12145 M:      Frederic Barrat <fbarrat@linux.ibm.com>
12146 M:      Andrew Donnellan <ajd@linux.ibm.com>
12147 L:      linuxppc-dev@lists.ozlabs.org
12148 S:      Supported
12149 F:      arch/powerpc/platforms/powernv/ocxl.c
12150 F:      arch/powerpc/include/asm/pnv-ocxl.h
12151 F:      drivers/misc/ocxl/
12152 F:      include/misc/ocxl*
12153 F:      include/uapi/misc/ocxl.h
12154 F:      Documentation/userspace-api/accelerators/ocxl.rst
12155
12156 OMAP AUDIO SUPPORT
12157 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12158 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
12159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12160 L:      linux-omap@vger.kernel.org
12161 S:      Maintained
12162 F:      sound/soc/ti/omap*
12163 F:      sound/soc/ti/rx51.c
12164 F:      sound/soc/ti/n810.c
12165 F:      sound/soc/ti/sdma-pcm.*
12166
12167 OMAP CLOCK FRAMEWORK SUPPORT
12168 M:      Paul Walmsley <paul@pwsan.com>
12169 L:      linux-omap@vger.kernel.org
12170 S:      Maintained
12171 F:      arch/arm/*omap*/*clock*
12172
12173 OMAP DEVICE TREE SUPPORT
12174 M:      Benoît Cousson <bcousson@baylibre.com>
12175 M:      Tony Lindgren <tony@atomide.com>
12176 L:      linux-omap@vger.kernel.org
12177 L:      devicetree@vger.kernel.org
12178 S:      Maintained
12179 F:      arch/arm/boot/dts/*omap*
12180 F:      arch/arm/boot/dts/*am3*
12181 F:      arch/arm/boot/dts/*am4*
12182 F:      arch/arm/boot/dts/*am5*
12183 F:      arch/arm/boot/dts/*dra7*
12184 F:      arch/arm/boot/dts/logicpd-som-lv*
12185 F:      arch/arm/boot/dts/logicpd-torpedo*
12186
12187 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
12188 L:      linux-omap@vger.kernel.org
12189 L:      linux-fbdev@vger.kernel.org
12190 S:      Orphan
12191 F:      drivers/video/fbdev/omap2/
12192 F:      Documentation/arm/omap/dss.rst
12193
12194 OMAP FRAMEBUFFER SUPPORT
12195 L:      linux-fbdev@vger.kernel.org
12196 L:      linux-omap@vger.kernel.org
12197 S:      Orphan
12198 F:      drivers/video/fbdev/omap/
12199
12200 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
12201 M:      Roger Quadros <rogerq@ti.com>
12202 M:      Tony Lindgren <tony@atomide.com>
12203 L:      linux-omap@vger.kernel.org
12204 S:      Maintained
12205 F:      drivers/memory/omap-gpmc.c
12206 F:      arch/arm/mach-omap2/*gpmc*
12207
12208 OMAP GPIO DRIVER
12209 M:      Grygorii Strashko <grygorii.strashko@ti.com>
12210 M:      Santosh Shilimkar <ssantosh@kernel.org>
12211 M:      Kevin Hilman <khilman@kernel.org>
12212 L:      linux-omap@vger.kernel.org
12213 S:      Maintained
12214 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
12215 F:      drivers/gpio/gpio-omap.c
12216
12217 OMAP HARDWARE SPINLOCK SUPPORT
12218 M:      Ohad Ben-Cohen <ohad@wizery.com>
12219 L:      linux-omap@vger.kernel.org
12220 S:      Maintained
12221 F:      drivers/hwspinlock/omap_hwspinlock.c
12222
12223 OMAP HS MMC SUPPORT
12224 L:      linux-mmc@vger.kernel.org
12225 L:      linux-omap@vger.kernel.org
12226 S:      Orphan
12227 F:      drivers/mmc/host/omap_hsmmc.c
12228
12229 OMAP HWMOD DATA
12230 M:      Paul Walmsley <paul@pwsan.com>
12231 L:      linux-omap@vger.kernel.org
12232 S:      Maintained
12233 F:      arch/arm/mach-omap2/omap_hwmod*data*
12234
12235 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
12236 M:      Benoît Cousson <bcousson@baylibre.com>
12237 L:      linux-omap@vger.kernel.org
12238 S:      Maintained
12239 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
12240
12241 OMAP HWMOD SUPPORT
12242 M:      Benoît Cousson <bcousson@baylibre.com>
12243 M:      Paul Walmsley <paul@pwsan.com>
12244 L:      linux-omap@vger.kernel.org
12245 S:      Maintained
12246 F:      arch/arm/mach-omap2/omap_hwmod.*
12247
12248 OMAP I2C DRIVER
12249 M:      Vignesh R <vigneshr@ti.com>
12250 L:      linux-omap@vger.kernel.org
12251 L:      linux-i2c@vger.kernel.org
12252 S:      Maintained
12253 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
12254 F:      drivers/i2c/busses/i2c-omap.c
12255
12256 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
12257 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12258 L:      linux-media@vger.kernel.org
12259 S:      Maintained
12260 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
12261 F:      drivers/media/platform/omap3isp/
12262 F:      drivers/staging/media/omap4iss/
12263
12264 OMAP MMC SUPPORT
12265 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12266 L:      linux-omap@vger.kernel.org
12267 S:      Odd Fixes
12268 F:      drivers/mmc/host/omap.c
12269
12270 OMAP POWER MANAGEMENT SUPPORT
12271 M:      Kevin Hilman <khilman@kernel.org>
12272 L:      linux-omap@vger.kernel.org
12273 S:      Maintained
12274 F:      arch/arm/*omap*/*pm*
12275 F:      drivers/cpufreq/omap-cpufreq.c
12276
12277 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
12278 M:      Rajendra Nayak <rnayak@codeaurora.org>
12279 M:      Paul Walmsley <paul@pwsan.com>
12280 L:      linux-omap@vger.kernel.org
12281 S:      Maintained
12282 F:      arch/arm/mach-omap2/prm*
12283
12284 OMAP RANDOM NUMBER GENERATOR SUPPORT
12285 M:      Deepak Saxena <dsaxena@plexity.net>
12286 S:      Maintained
12287 F:      drivers/char/hw_random/omap-rng.c
12288
12289 OMAP USB SUPPORT
12290 L:      linux-usb@vger.kernel.org
12291 L:      linux-omap@vger.kernel.org
12292 S:      Orphan
12293 F:      drivers/usb/*/*omap*
12294 F:      arch/arm/*omap*/usb*
12295
12296 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
12297 M:      Mark Jackson <mpfj@newflow.co.uk>
12298 L:      linux-omap@vger.kernel.org
12299 S:      Maintained
12300 F:      arch/arm/boot/dts/am335x-nano.dts
12301
12302 OMAP1 SUPPORT
12303 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
12304 M:      Tony Lindgren <tony@atomide.com>
12305 L:      linux-omap@vger.kernel.org
12306 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12308 S:      Maintained
12309 F:      arch/arm/mach-omap1/
12310 F:      arch/arm/plat-omap/
12311 F:      arch/arm/configs/omap1_defconfig
12312 F:      drivers/i2c/busses/i2c-omap.c
12313 F:      include/linux/platform_data/i2c-omap.h
12314 F:      include/linux/platform_data/ams-delta-fiq.h
12315
12316 OMAP2+ SUPPORT
12317 M:      Tony Lindgren <tony@atomide.com>
12318 L:      linux-omap@vger.kernel.org
12319 W:      http://www.muru.com/linux/omap/
12320 W:      http://linux.omap.com/
12321 Q:      http://patchwork.kernel.org/project/linux-omap/list/
12322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
12323 S:      Maintained
12324 F:      arch/arm/mach-omap2/
12325 F:      arch/arm/plat-omap/
12326 F:      arch/arm/configs/omap2plus_defconfig
12327 F:      drivers/bus/ti-sysc.c
12328 F:      drivers/i2c/busses/i2c-omap.c
12329 F:      drivers/irqchip/irq-omap-intc.c
12330 F:      drivers/mfd/*omap*.c
12331 F:      drivers/mfd/menelaus.c
12332 F:      drivers/mfd/palmas.c
12333 F:      drivers/mfd/tps65217.c
12334 F:      drivers/mfd/tps65218.c
12335 F:      drivers/mfd/tps65910.c
12336 F:      drivers/mfd/twl-core.[ch]
12337 F:      drivers/mfd/twl4030*.c
12338 F:      drivers/mfd/twl6030*.c
12339 F:      drivers/mfd/twl6040*.c
12340 F:      drivers/regulator/palmas-regulator*.c
12341 F:      drivers/regulator/pbias-regulator.c
12342 F:      drivers/regulator/tps65217-regulator.c
12343 F:      drivers/regulator/tps65218-regulator.c
12344 F:      drivers/regulator/tps65910-regulator.c
12345 F:      drivers/regulator/twl-regulator.c
12346 F:      drivers/regulator/twl6030-regulator.c
12347 F:      include/linux/platform_data/i2c-omap.h
12348 F:      include/linux/platform_data/ti-sysc.h
12349
12350 ONION OMEGA2+ BOARD
12351 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
12352 L:      linux-mips@vger.kernel.org
12353 S:      Maintained
12354 F:      arch/mips/boot/dts/ralink/omega2p.dts
12355
12356 OMFS FILESYSTEM
12357 M:      Bob Copeland <me@bobcopeland.com>
12358 L:      linux-karma-devel@lists.sourceforge.net
12359 S:      Maintained
12360 F:      Documentation/filesystems/omfs.rst
12361 F:      fs/omfs/
12362
12363 OMNIKEY CARDMAN 4000 DRIVER
12364 M:      Harald Welte <laforge@gnumonks.org>
12365 S:      Maintained
12366 F:      drivers/char/pcmcia/cm4000_cs.c
12367 F:      include/linux/cm4000_cs.h
12368 F:      include/uapi/linux/cm4000_cs.h
12369
12370 OMNIKEY CARDMAN 4040 DRIVER
12371 M:      Harald Welte <laforge@gnumonks.org>
12372 S:      Maintained
12373 F:      drivers/char/pcmcia/cm4040_cs.*
12374
12375 OMNIVISION OV13858 SENSOR DRIVER
12376 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12377 L:      linux-media@vger.kernel.org
12378 T:      git git://linuxtv.org/media_tree.git
12379 S:      Maintained
12380 F:      drivers/media/i2c/ov13858.c
12381
12382 OMNIVISION OV2680 SENSOR DRIVER
12383 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12384 L:      linux-media@vger.kernel.org
12385 T:      git git://linuxtv.org/media_tree.git
12386 S:      Maintained
12387 F:      drivers/media/i2c/ov2680.c
12388 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
12389
12390 OMNIVISION OV2685 SENSOR DRIVER
12391 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12392 L:      linux-media@vger.kernel.org
12393 T:      git git://linuxtv.org/media_tree.git
12394 S:      Maintained
12395 F:      drivers/media/i2c/ov2685.c
12396
12397 OMNIVISION OV5640 SENSOR DRIVER
12398 M:      Steve Longerbeam <slongerbeam@gmail.com>
12399 L:      linux-media@vger.kernel.org
12400 T:      git git://linuxtv.org/media_tree.git
12401 S:      Maintained
12402 F:      drivers/media/i2c/ov5640.c
12403
12404 OMNIVISION OV5647 SENSOR DRIVER
12405 M:      Luis Oliveira <lolivei@synopsys.com>
12406 L:      linux-media@vger.kernel.org
12407 T:      git git://linuxtv.org/media_tree.git
12408 S:      Maintained
12409 F:      drivers/media/i2c/ov5647.c
12410
12411 OMNIVISION OV5670 SENSOR DRIVER
12412 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12413 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12414 L:      linux-media@vger.kernel.org
12415 T:      git git://linuxtv.org/media_tree.git
12416 S:      Maintained
12417 F:      drivers/media/i2c/ov5670.c
12418
12419 OMNIVISION OV5675 SENSOR DRIVER
12420 M:      Shawn Tu <shawnx.tu@intel.com>
12421 L:      linux-media@vger.kernel.org
12422 T:      git git://linuxtv.org/media_tree.git
12423 S:      Maintained
12424 F:      drivers/media/i2c/ov5675.c
12425
12426 OMNIVISION OV5695 SENSOR DRIVER
12427 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12428 L:      linux-media@vger.kernel.org
12429 T:      git git://linuxtv.org/media_tree.git
12430 S:      Maintained
12431 F:      drivers/media/i2c/ov5695.c
12432
12433 OMNIVISION OV7670 SENSOR DRIVER
12434 M:      Jonathan Corbet <corbet@lwn.net>
12435 L:      linux-media@vger.kernel.org
12436 T:      git git://linuxtv.org/media_tree.git
12437 S:      Maintained
12438 F:      drivers/media/i2c/ov7670.c
12439 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12440
12441 OMNIVISION OV772x SENSOR DRIVER
12442 M:      Jacopo Mondi <jacopo@jmondi.org>
12443 L:      linux-media@vger.kernel.org
12444 T:      git git://linuxtv.org/media_tree.git
12445 S:      Odd fixes
12446 F:      drivers/media/i2c/ov772x.c
12447 F:      include/media/i2c/ov772x.h
12448 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12449
12450 OMNIVISION OV7740 SENSOR DRIVER
12451 M:      Wenyou Yang <wenyou.yang@microchip.com>
12452 L:      linux-media@vger.kernel.org
12453 T:      git git://linuxtv.org/media_tree.git
12454 S:      Maintained
12455 F:      drivers/media/i2c/ov7740.c
12456 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12457
12458 OMNIVISION OV9640 SENSOR DRIVER
12459 M:      Petr Cvek <petrcvekcz@gmail.com>
12460 L:      linux-media@vger.kernel.org
12461 S:      Maintained
12462 F:      drivers/media/i2c/ov9640.*
12463
12464 OMNIVISION OV8856 SENSOR DRIVER
12465 M:      Ben Kao <ben.kao@intel.com>
12466 L:      linux-media@vger.kernel.org
12467 T:      git git://linuxtv.org/media_tree.git
12468 S:      Maintained
12469 F:      drivers/media/i2c/ov8856.c
12470
12471 OMNIVISION OV9650 SENSOR DRIVER
12472 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12473 R:      Akinobu Mita <akinobu.mita@gmail.com>
12474 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12475 L:      linux-media@vger.kernel.org
12476 T:      git git://linuxtv.org/media_tree.git
12477 S:      Maintained
12478 F:      drivers/media/i2c/ov9650.c
12479 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12480
12481 ONENAND FLASH DRIVER
12482 M:      Kyungmin Park <kyungmin.park@samsung.com>
12483 L:      linux-mtd@lists.infradead.org
12484 S:      Maintained
12485 F:      drivers/mtd/nand/onenand/
12486 F:      include/linux/mtd/onenand*.h
12487
12488 OP-TEE DRIVER
12489 M:      Jens Wiklander <jens.wiklander@linaro.org>
12490 L:      tee-dev@lists.linaro.org
12491 S:      Maintained
12492 F:      drivers/tee/optee/
12493
12494 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12495 M:      Sumit Garg <sumit.garg@linaro.org>
12496 L:      tee-dev@lists.linaro.org
12497 S:      Maintained
12498 F:      drivers/char/hw_random/optee-rng.c
12499
12500 OPA-VNIC DRIVER
12501 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12502 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12503 L:      linux-rdma@vger.kernel.org
12504 S:      Supported
12505 F:      drivers/infiniband/ulp/opa_vnic
12506
12507 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12508 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12509 M:      Frank Rowand <frowand.list@gmail.com>
12510 L:      devicetree@vger.kernel.org
12511 S:      Maintained
12512 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12513 F:      Documentation/devicetree/overlay-notes.txt
12514 F:      drivers/of/overlay.c
12515 F:      drivers/of/resolver.c
12516 K:      of_overlay_notifier_
12517
12518 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12519 M:      Rob Herring <robh+dt@kernel.org>
12520 M:      Frank Rowand <frowand.list@gmail.com>
12521 L:      devicetree@vger.kernel.org
12522 W:      http://www.devicetree.org/
12523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12524 S:      Maintained
12525 F:      drivers/of/
12526 F:      include/linux/of*.h
12527 F:      scripts/dtc/
12528 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12529
12530 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12531 M:      Rob Herring <robh+dt@kernel.org>
12532 L:      devicetree@vger.kernel.org
12533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12534 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12535 S:      Maintained
12536 F:      Documentation/devicetree/
12537 F:      arch/*/boot/dts/
12538 F:      include/dt-bindings/
12539
12540 OPENCORES I2C BUS DRIVER
12541 M:      Peter Korsgaard <peter@korsgaard.com>
12542 M:      Andrew Lunn <andrew@lunn.ch>
12543 L:      linux-i2c@vger.kernel.org
12544 S:      Maintained
12545 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12546 F:      Documentation/i2c/busses/i2c-ocores.rst
12547 F:      drivers/i2c/busses/i2c-ocores.c
12548 F:      include/linux/platform_data/i2c-ocores.h
12549
12550 OPENRISC ARCHITECTURE
12551 M:      Jonas Bonn <jonas@southpole.se>
12552 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12553 M:      Stafford Horne <shorne@gmail.com>
12554 T:      git git://github.com/openrisc/linux.git
12555 L:      openrisc@lists.librecores.org
12556 W:      http://openrisc.io
12557 S:      Maintained
12558 F:      Documentation/devicetree/bindings/openrisc/
12559 F:      Documentation/openrisc/
12560 F:      arch/openrisc/
12561 F:      drivers/irqchip/irq-ompic.c
12562 F:      drivers/irqchip/irq-or1k-*
12563
12564 OPENVSWITCH
12565 M:      Pravin B Shelar <pshelar@ovn.org>
12566 L:      netdev@vger.kernel.org
12567 L:      dev@openvswitch.org
12568 W:      http://openvswitch.org
12569 S:      Maintained
12570 F:      net/openvswitch/
12571 F:      include/uapi/linux/openvswitch.h
12572
12573 OPERATING PERFORMANCE POINTS (OPP)
12574 M:      Viresh Kumar <vireshk@kernel.org>
12575 M:      Nishanth Menon <nm@ti.com>
12576 M:      Stephen Boyd <sboyd@kernel.org>
12577 L:      linux-pm@vger.kernel.org
12578 S:      Maintained
12579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12580 F:      drivers/opp/
12581 F:      include/linux/pm_opp.h
12582 F:      Documentation/power/opp.rst
12583 F:      Documentation/devicetree/bindings/opp/
12584
12585 OPL4 DRIVER
12586 M:      Clemens Ladisch <clemens@ladisch.de>
12587 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12589 S:      Maintained
12590 F:      sound/drivers/opl4/
12591
12592 OPROFILE
12593 M:      Robert Richter <rric@kernel.org>
12594 L:      oprofile-list@lists.sf.net
12595 S:      Maintained
12596 F:      arch/*/include/asm/oprofile*.h
12597 F:      arch/*/oprofile/
12598 F:      drivers/oprofile/
12599 F:      include/linux/oprofile.h
12600
12601 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12602 M:      Mark Fasheh <mark@fasheh.com>
12603 M:      Joel Becker <jlbec@evilplan.org>
12604 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12605 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12606 W:      http://ocfs2.wiki.kernel.org
12607 S:      Supported
12608 F:      Documentation/filesystems/ocfs2.rst
12609 F:      Documentation/filesystems/dlmfs.rst
12610 F:      fs/ocfs2/
12611
12612 ORANGEFS FILESYSTEM
12613 M:      Mike Marshall <hubcap@omnibond.com>
12614 R:      Martin Brandenburg <martin@omnibond.com>
12615 L:      devel@lists.orangefs.org
12616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12617 S:      Supported
12618 F:      fs/orangefs/
12619 F:      Documentation/filesystems/orangefs.rst
12620
12621 ORINOCO DRIVER
12622 L:      linux-wireless@vger.kernel.org
12623 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12624 W:      http://www.nongnu.org/orinoco/
12625 S:      Orphan
12626 F:      drivers/net/wireless/intersil/orinoco/
12627
12628 OV2659 OMNIVISION SENSOR DRIVER
12629 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12630 L:      linux-media@vger.kernel.org
12631 W:      https://linuxtv.org
12632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12633 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12634 S:      Maintained
12635 F:      drivers/media/i2c/ov2659.c
12636 F:      include/media/i2c/ov2659.h
12637
12638 OVERLAY FILESYSTEM
12639 M:      Miklos Szeredi <miklos@szeredi.hu>
12640 L:      linux-unionfs@vger.kernel.org
12641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12642 S:      Supported
12643 F:      fs/overlayfs/
12644 F:      Documentation/filesystems/overlayfs.rst
12645
12646 P54 WIRELESS DRIVER
12647 M:      Christian Lamparter <chunkeey@googlemail.com>
12648 L:      linux-wireless@vger.kernel.org
12649 W:      http://wireless.kernel.org/en/users/Drivers/p54
12650 S:      Maintained
12651 F:      drivers/net/wireless/intersil/p54/
12652
12653 PACKING
12654 M:      Vladimir Oltean <olteanv@gmail.com>
12655 L:      netdev@vger.kernel.org
12656 S:      Supported
12657 F:      lib/packing.c
12658 F:      include/linux/packing.h
12659 F:      Documentation/core-api/packing.rst
12660
12661 PADATA PARALLEL EXECUTION MECHANISM
12662 M:      Steffen Klassert <steffen.klassert@secunet.com>
12663 L:      linux-crypto@vger.kernel.org
12664 S:      Maintained
12665 F:      kernel/padata.c
12666 F:      include/linux/padata.h
12667 F:      Documentation/core-api/padata.rst
12668
12669 PAGE POOL
12670 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12671 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12672 L:      netdev@vger.kernel.org
12673 S:      Supported
12674 F:      net/core/page_pool.c
12675 F:      include/net/page_pool.h
12676
12677 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12678 M:      Harald Welte <laforge@gnumonks.org>
12679 L:      platform-driver-x86@vger.kernel.org
12680 S:      Maintained
12681 F:      drivers/platform/x86/panasonic-laptop.c
12682
12683 PARALLAX PING IIO SENSOR DRIVER
12684 M:      Andreas Klinger <ak@it-klinger.de>
12685 L:      linux-iio@vger.kernel.org
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
12688 F:      drivers/iio/proximity/ping.c
12689
12690 PARALLEL LCD/KEYPAD PANEL DRIVER
12691 M:      Willy Tarreau <willy@haproxy.com>
12692 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12693 S:      Odd Fixes
12694 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12695 F:      drivers/auxdisplay/panel.c
12696
12697 PARALLEL PORT SUBSYSTEM
12698 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12699 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12700 L:      linux-parport@lists.infradead.org (subscribers-only)
12701 S:      Maintained
12702 F:      drivers/parport/
12703 F:      include/linux/parport*.h
12704 F:      drivers/char/ppdev.c
12705 F:      include/uapi/linux/ppdev.h
12706 F:      Documentation/driver-api/parport*.rst
12707
12708 PARAVIRT_OPS INTERFACE
12709 M:      Juergen Gross <jgross@suse.com>
12710 M:      Thomas Hellstrom <thellstrom@vmware.com>
12711 M:      "VMware, Inc." <pv-drivers@vmware.com>
12712 L:      virtualization@lists.linux-foundation.org
12713 S:      Supported
12714 F:      Documentation/virt/paravirt_ops.rst
12715 F:      arch/*/kernel/paravirt*
12716 F:      arch/*/include/asm/paravirt*.h
12717 F:      include/linux/hypervisor.h
12718
12719 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12720 M:      Tim Waugh <tim@cyberelk.net>
12721 L:      linux-parport@lists.infradead.org (subscribers-only)
12722 S:      Maintained
12723 F:      Documentation/admin-guide/blockdev/paride.rst
12724 F:      drivers/block/paride/
12725
12726 PARISC ARCHITECTURE
12727 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12728 M:      Helge Deller <deller@gmx.de>
12729 L:      linux-parisc@vger.kernel.org
12730 W:      http://www.parisc-linux.org/
12731 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12734 S:      Maintained
12735 F:      arch/parisc/
12736 F:      Documentation/parisc/
12737 F:      drivers/parisc/
12738 F:      drivers/char/agp/parisc-agp.c
12739 F:      drivers/input/misc/hp_sdc_rtc.c
12740 F:      drivers/input/serio/gscps2.c
12741 F:      drivers/input/serio/hp_sdc*
12742 F:      drivers/parport/parport_gsc.*
12743 F:      drivers/tty/serial/8250/8250_gsc.c
12744 F:      drivers/video/fbdev/sti*
12745 F:      drivers/video/console/sti*
12746 F:      drivers/video/logo/logo_parisc*
12747 F:      include/linux/hp_sdc.h
12748
12749 PARMAN
12750 M:      Jiri Pirko <jiri@mellanox.com>
12751 L:      netdev@vger.kernel.org
12752 S:      Supported
12753 F:      lib/parman.c
12754 F:      lib/test_parman.c
12755 F:      include/linux/parman.h
12756
12757 PC ENGINES APU BOARD DRIVER
12758 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12759 S:      Maintained
12760 F:      drivers/platform/x86/pcengines-apuv2.c
12761
12762 PC87360 HARDWARE MONITORING DRIVER
12763 M:      Jim Cromie <jim.cromie@gmail.com>
12764 L:      linux-hwmon@vger.kernel.org
12765 S:      Maintained
12766 F:      Documentation/hwmon/pc87360.rst
12767 F:      drivers/hwmon/pc87360.c
12768
12769 PC8736x GPIO DRIVER
12770 M:      Jim Cromie <jim.cromie@gmail.com>
12771 S:      Maintained
12772 F:      drivers/char/pc8736x_gpio.c
12773
12774 PC87427 HARDWARE MONITORING DRIVER
12775 M:      Jean Delvare <jdelvare@suse.com>
12776 L:      linux-hwmon@vger.kernel.org
12777 S:      Maintained
12778 F:      Documentation/hwmon/pc87427.rst
12779 F:      drivers/hwmon/pc87427.c
12780
12781 PCA9532 LED DRIVER
12782 M:      Riku Voipio <riku.voipio@iki.fi>
12783 S:      Maintained
12784 F:      drivers/leds/leds-pca9532.c
12785 F:      include/linux/leds-pca9532.h
12786
12787 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12788 M:      Guenter Roeck <linux@roeck-us.net>
12789 L:      linux-i2c@vger.kernel.org
12790 S:      Maintained
12791 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12792
12793 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12794 M:      Khalid Aziz <khalid@gonehiking.org>
12795 S:      Maintained
12796 F:      drivers/firmware/pcdp.*
12797
12798 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12799 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12800 L:      linux-pci@vger.kernel.org
12801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12802 S:      Maintained
12803 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12804 F:      drivers/pci/controller/pci-aardvark.c
12805
12806 PCI DRIVER FOR ALTERA PCIE IP
12807 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12808 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12809 L:      linux-pci@vger.kernel.org
12810 S:      Supported
12811 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12812 F:      drivers/pci/controller/pcie-altera.c
12813
12814 PCI DRIVER FOR APPLIEDMICRO XGENE
12815 M:      Toan Le <toan@os.amperecomputing.com>
12816 L:      linux-pci@vger.kernel.org
12817 L:      linux-arm-kernel@lists.infradead.org
12818 S:      Maintained
12819 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12820 F:      drivers/pci/controller/pci-xgene.c
12821
12822 PCI DRIVER FOR ARM VERSATILE PLATFORM
12823 M:      Rob Herring <robh@kernel.org>
12824 L:      linux-pci@vger.kernel.org
12825 L:      linux-arm-kernel@lists.infradead.org
12826 S:      Maintained
12827 F:      Documentation/devicetree/bindings/pci/versatile.yaml
12828 F:      drivers/pci/controller/pci-versatile.c
12829
12830 PCI DRIVER FOR ARMADA 8K
12831 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12832 L:      linux-pci@vger.kernel.org
12833 L:      linux-arm-kernel@lists.infradead.org
12834 S:      Maintained
12835 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12836 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12837
12838 PCI DRIVER FOR CADENCE PCIE IP
12839 M:      Tom Joseph <tjoseph@cadence.com>
12840 L:      linux-pci@vger.kernel.org
12841 S:      Maintained
12842 F:      Documentation/devicetree/bindings/pci/cdns,*
12843 F:      drivers/pci/controller/cadence/
12844
12845 PCI DRIVER FOR FREESCALE LAYERSCAPE
12846 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12847 M:      Mingkai Hu <mingkai.hu@nxp.com>
12848 M:      Roy Zang <roy.zang@nxp.com>
12849 L:      linuxppc-dev@lists.ozlabs.org
12850 L:      linux-pci@vger.kernel.org
12851 L:      linux-arm-kernel@lists.infradead.org
12852 S:      Maintained
12853 F:      drivers/pci/controller/dwc/*layerscape*
12854
12855 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
12856 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12857 L:      linux-pci@vger.kernel.org
12858 L:      linux-arm-kernel@lists.infradead.org
12859 S:      Maintained
12860 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
12861 F:      drivers/pci/controller/mobibeil/pcie-layerscape-gen4.c
12862
12863 PCI DRIVER FOR GENERIC OF HOSTS
12864 M:      Will Deacon <will@kernel.org>
12865 L:      linux-pci@vger.kernel.org
12866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12867 S:      Maintained
12868 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
12869 F:      drivers/pci/controller/pci-host-common.c
12870 F:      drivers/pci/controller/pci-host-generic.c
12871
12872 PCI DRIVER FOR IMX6
12873 M:      Richard Zhu <hongxing.zhu@nxp.com>
12874 M:      Lucas Stach <l.stach@pengutronix.de>
12875 L:      linux-pci@vger.kernel.org
12876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12877 S:      Maintained
12878 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12879 F:      drivers/pci/controller/dwc/*imx6*
12880
12881 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12882 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12883 L:      linux-pci@vger.kernel.org
12884 S:      Supported
12885 F:      drivers/pci/controller/vmd.c
12886
12887 PCI DRIVER FOR MICROSEMI SWITCHTEC
12888 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12889 M:      Logan Gunthorpe <logang@deltatee.com>
12890 L:      linux-pci@vger.kernel.org
12891 S:      Maintained
12892 F:      Documentation/driver-api/switchtec.rst
12893 F:      Documentation/ABI/testing/sysfs-class-switchtec
12894 F:      drivers/pci/switch/switchtec*
12895 F:      include/uapi/linux/switchtec_ioctl.h
12896 F:      include/linux/switchtec.h
12897 F:      drivers/ntb/hw/mscc/
12898
12899 PCI DRIVER FOR MOBIVEIL PCIE IP
12900 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12901 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12902 L:      linux-pci@vger.kernel.org
12903 S:      Supported
12904 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12905 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
12906
12907 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12908 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12909 M:      Jason Cooper <jason@lakedaemon.net>
12910 L:      linux-pci@vger.kernel.org
12911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12912 S:      Maintained
12913 F:      drivers/pci/controller/*mvebu*
12914
12915 PCI DRIVER FOR NVIDIA TEGRA
12916 M:      Thierry Reding <thierry.reding@gmail.com>
12917 L:      linux-tegra@vger.kernel.org
12918 L:      linux-pci@vger.kernel.org
12919 S:      Supported
12920 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12921 F:      drivers/pci/controller/pci-tegra.c
12922
12923 PCI DRIVER FOR RENESAS R-CAR
12924 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
12925 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
12926 L:      linux-pci@vger.kernel.org
12927 L:      linux-renesas-soc@vger.kernel.org
12928 S:      Maintained
12929 F:      drivers/pci/controller/*rcar*
12930
12931 PCI DRIVER FOR SAMSUNG EXYNOS
12932 M:      Jingoo Han <jingoohan1@gmail.com>
12933 L:      linux-pci@vger.kernel.org
12934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12935 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12936 S:      Maintained
12937 F:      drivers/pci/controller/dwc/pci-exynos.c
12938
12939 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12940 M:      Jingoo Han <jingoohan1@gmail.com>
12941 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12942 L:      linux-pci@vger.kernel.org
12943 S:      Maintained
12944 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12945 F:      drivers/pci/controller/dwc/*designware*
12946
12947 PCI DRIVER FOR TI DRA7XX
12948 M:      Kishon Vijay Abraham I <kishon@ti.com>
12949 L:      linux-omap@vger.kernel.org
12950 L:      linux-pci@vger.kernel.org
12951 S:      Supported
12952 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12953 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12954
12955 PCI DRIVER FOR TI KEYSTONE
12956 M:      Murali Karicheri <m-karicheri2@ti.com>
12957 L:      linux-pci@vger.kernel.org
12958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12959 S:      Maintained
12960 F:      drivers/pci/controller/dwc/pci-keystone.c
12961
12962 PCI ENDPOINT SUBSYSTEM
12963 M:      Kishon Vijay Abraham I <kishon@ti.com>
12964 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12965 L:      linux-pci@vger.kernel.org
12966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12967 S:      Supported
12968 F:      drivers/pci/endpoint/
12969 F:      drivers/misc/pci_endpoint_test.c
12970 F:      tools/pci/
12971
12972 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12973 M:      Russell Currey <ruscur@russell.cc>
12974 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12975 M:      Oliver O'Halloran <oohall@gmail.com>
12976 L:      linuxppc-dev@lists.ozlabs.org
12977 S:      Supported
12978 F:      Documentation/PCI/pci-error-recovery.rst
12979 F:      drivers/pci/pcie/aer.c
12980 F:      drivers/pci/pcie/dpc.c
12981 F:      drivers/pci/pcie/err.c
12982 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12983 F:      arch/powerpc/kernel/eeh*.c
12984 F:      arch/powerpc/platforms/*/eeh*.c
12985 F:      arch/powerpc/include/*/eeh*.h
12986
12987 PCI ERROR RECOVERY
12988 M:      Linas Vepstas <linasvepstas@gmail.com>
12989 L:      linux-pci@vger.kernel.org
12990 S:      Supported
12991 F:      Documentation/PCI/pci-error-recovery.rst
12992
12993 PCI MSI DRIVER FOR ALTERA MSI IP
12994 M:      Ley Foon Tan <ley.foon.tan@intel.com>
12995 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12996 L:      linux-pci@vger.kernel.org
12997 S:      Supported
12998 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12999 F:      drivers/pci/controller/pcie-altera-msi.c
13000
13001 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
13002 M:      Toan Le <toan@os.amperecomputing.com>
13003 L:      linux-pci@vger.kernel.org
13004 L:      linux-arm-kernel@lists.infradead.org
13005 S:      Maintained
13006 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
13007 F:      drivers/pci/controller/pci-xgene-msi.c
13008
13009 PCI SUBSYSTEM
13010 M:      Bjorn Helgaas <bhelgaas@google.com>
13011 L:      linux-pci@vger.kernel.org
13012 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
13014 S:      Supported
13015 F:      Documentation/devicetree/bindings/pci/
13016 F:      Documentation/PCI/
13017 F:      drivers/acpi/pci*
13018 F:      drivers/pci/
13019 F:      include/asm-generic/pci*
13020 F:      include/linux/pci*
13021 F:      include/linux/of_pci.h
13022 F:      include/uapi/linux/pci*
13023 F:      lib/pci*
13024 F:      arch/x86/pci/
13025 F:      arch/x86/kernel/quirks.c
13026 F:      arch/x86/kernel/early-quirks.c
13027
13028 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
13029 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13030 R:      Andrew Murray <amurray@thegoodpenguin.co.uk>
13031 L:      linux-pci@vger.kernel.org
13032 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
13033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
13034 S:      Supported
13035 F:      drivers/pci/controller/
13036
13037 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
13038 M:      Jonathan Chocron <jonnyc@amazon.com>
13039 L:      linux-pci@vger.kernel.org
13040 S:      Maintained
13041 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
13042 F:      drivers/pci/controller/dwc/pcie-al.c
13043
13044 PCIE DRIVER FOR AMLOGIC MESON
13045 M:      Yue Wang <yue.wang@Amlogic.com>
13046 L:      linux-pci@vger.kernel.org
13047 L:      linux-amlogic@lists.infradead.org
13048 S:      Maintained
13049 F:      drivers/pci/controller/dwc/pci-meson.c
13050
13051 PCIE DRIVER FOR AXIS ARTPEC
13052 M:      Jesper Nilsson <jesper.nilsson@axis.com>
13053 L:      linux-arm-kernel@axis.com
13054 L:      linux-pci@vger.kernel.org
13055 S:      Maintained
13056 F:      Documentation/devicetree/bindings/pci/axis,artpec*
13057 F:      drivers/pci/controller/dwc/*artpec*
13058
13059 PCIE DRIVER FOR CAVIUM THUNDERX
13060 M:      Robert Richter <rrichter@marvell.com>
13061 L:      linux-pci@vger.kernel.org
13062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13063 S:      Supported
13064 F:      drivers/pci/controller/pci-thunder-*
13065
13066 PCIE DRIVER FOR HISILICON
13067 M:      Zhou Wang <wangzhou1@hisilicon.com>
13068 L:      linux-pci@vger.kernel.org
13069 S:      Maintained
13070 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
13071 F:      drivers/pci/controller/dwc/pcie-hisi.c
13072
13073 PCIE DRIVER FOR HISILICON KIRIN
13074 M:      Xiaowei Song <songxiaowei@hisilicon.com>
13075 M:      Binghui Wang <wangbinghui@hisilicon.com>
13076 L:      linux-pci@vger.kernel.org
13077 S:      Maintained
13078 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
13079 F:      drivers/pci/controller/dwc/pcie-kirin.c
13080
13081 PCIE DRIVER FOR HISILICON STB
13082 M:      Shawn Guo <shawn.guo@linaro.org>
13083 L:      linux-pci@vger.kernel.org
13084 S:      Maintained
13085 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
13086 F:      drivers/pci/controller/dwc/pcie-histb.c
13087
13088 PCIE DRIVER FOR MEDIATEK
13089 M:      Ryder Lee <ryder.lee@mediatek.com>
13090 L:      linux-pci@vger.kernel.org
13091 L:      linux-mediatek@lists.infradead.org
13092 S:      Supported
13093 F:      Documentation/devicetree/bindings/pci/mediatek*
13094 F:      drivers/pci/controller/*mediatek*
13095
13096 PCIE DRIVER FOR QUALCOMM MSM
13097 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
13098 L:      linux-pci@vger.kernel.org
13099 L:      linux-arm-msm@vger.kernel.org
13100 S:      Maintained
13101 F:      drivers/pci/controller/dwc/*qcom*
13102
13103 PCIE DRIVER FOR ROCKCHIP
13104 M:      Shawn Lin <shawn.lin@rock-chips.com>
13105 L:      linux-pci@vger.kernel.org
13106 L:      linux-rockchip@lists.infradead.org
13107 S:      Maintained
13108 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
13109 F:      drivers/pci/controller/pcie-rockchip*
13110
13111 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
13112 M:      Linus Walleij <linus.walleij@linaro.org>
13113 L:      linux-pci@vger.kernel.org
13114 S:      Maintained
13115 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
13116 F:      drivers/pci/controller/pci-v3-semi.c
13117
13118 PCIE DRIVER FOR SOCIONEXT UNIPHIER
13119 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
13120 L:      linux-pci@vger.kernel.org
13121 S:      Maintained
13122 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
13123 F:      drivers/pci/controller/dwc/pcie-uniphier.c
13124
13125 PCIE DRIVER FOR ST SPEAR13XX
13126 M:      Pratyush Anand <pratyush.anand@gmail.com>
13127 L:      linux-pci@vger.kernel.org
13128 S:      Maintained
13129 F:      drivers/pci/controller/dwc/*spear*
13130
13131 PCMCIA SUBSYSTEM
13132 M:      Dominik Brodowski <linux@dominikbrodowski.net>
13133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
13134 S:      Odd Fixes
13135 F:      Documentation/pcmcia/
13136 F:      tools/pcmcia/
13137 F:      drivers/pcmcia/
13138 F:      include/pcmcia/
13139
13140 PCNET32 NETWORK DRIVER
13141 M:      Don Fry <pcnet32@frontier.com>
13142 L:      netdev@vger.kernel.org
13143 S:      Maintained
13144 F:      drivers/net/ethernet/amd/pcnet32.c
13145
13146 PCRYPT PARALLEL CRYPTO ENGINE
13147 M:      Steffen Klassert <steffen.klassert@secunet.com>
13148 L:      linux-crypto@vger.kernel.org
13149 S:      Maintained
13150 F:      crypto/pcrypt.c
13151 F:      include/crypto/pcrypt.h
13152
13153 PEAQ WMI HOTKEYS DRIVER
13154 M:      Hans de Goede <hdegoede@redhat.com>
13155 L:      platform-driver-x86@vger.kernel.org
13156 S:      Maintained
13157 F:      drivers/platform/x86/peaq-wmi.c
13158
13159 PENSANDO ETHERNET DRIVERS
13160 M:      Shannon Nelson <snelson@pensando.io>
13161 M:      Pensando Drivers <drivers@pensando.io>
13162 L:      netdev@vger.kernel.org
13163 S:      Supported
13164 F:      Documentation/networking/device_drivers/pensando/ionic.rst
13165 F:      drivers/net/ethernet/pensando/
13166
13167 PER-CPU MEMORY ALLOCATOR
13168 M:      Dennis Zhou <dennis@kernel.org>
13169 M:      Tejun Heo <tj@kernel.org>
13170 M:      Christoph Lameter <cl@linux.com>
13171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
13172 S:      Maintained
13173 F:      include/linux/percpu*.h
13174 F:      mm/percpu*.c
13175 F:      arch/*/include/asm/percpu.h
13176
13177 PER-TASK DELAY ACCOUNTING
13178 M:      Balbir Singh <bsingharora@gmail.com>
13179 S:      Maintained
13180 F:      include/linux/delayacct.h
13181 F:      kernel/delayacct.c
13182
13183 PERFORMANCE EVENTS SUBSYSTEM
13184 M:      Peter Zijlstra <peterz@infradead.org>
13185 M:      Ingo Molnar <mingo@redhat.com>
13186 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
13187 R:      Mark Rutland <mark.rutland@arm.com>
13188 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13189 R:      Jiri Olsa <jolsa@redhat.com>
13190 R:      Namhyung Kim <namhyung@kernel.org>
13191 L:      linux-kernel@vger.kernel.org
13192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13193 S:      Supported
13194 F:      kernel/events/*
13195 F:      include/linux/perf_event.h
13196 F:      include/uapi/linux/perf_event.h
13197 F:      arch/*/kernel/perf_event*.c
13198 F:      arch/*/kernel/*/perf_event*.c
13199 F:      arch/*/kernel/*/*/perf_event*.c
13200 F:      arch/*/include/asm/perf_event.h
13201 F:      arch/*/kernel/perf_callchain.c
13202 F:      arch/*/events/*
13203 F:      arch/*/events/*/*
13204 F:      tools/perf/
13205
13206 PERFORMANCE EVENTS SUBSYSTEM ARM64 PMU EVENTS
13207 R:      John Garry <john.garry@huawei.com>
13208 R:      Will Deacon <will@kernel.org>
13209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13210 S:      Supported
13211 F:      tools/perf/pmu-events/arch/arm64/
13212
13213 PERSONALITY HANDLING
13214 M:      Christoph Hellwig <hch@infradead.org>
13215 L:      linux-abi-devel@lists.sourceforge.net
13216 S:      Maintained
13217 F:      include/linux/personality.h
13218 F:      include/uapi/linux/personality.h
13219
13220 PHOENIX RC FLIGHT CONTROLLER ADAPTER
13221 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13222 L:      linux-input@vger.kernel.org
13223 S:      Maintained
13224 F:      Documentation/input/devices/pxrc.rst
13225 F:      drivers/input/joystick/pxrc.c
13226
13227 FLYSKY FSIA6B RC RECEIVER
13228 M:      Markus Koch <markus@notsyncing.net>
13229 L:      linux-input@vger.kernel.org
13230 S:      Maintained
13231 F:      drivers/input/joystick/fsia6b.c
13232
13233 PHONET PROTOCOL
13234 M:      Remi Denis-Courmont <courmisch@gmail.com>
13235 S:      Supported
13236 F:      Documentation/networking/phonet.txt
13237 F:      include/linux/phonet.h
13238 F:      include/net/phonet/
13239 F:      include/uapi/linux/phonet.h
13240 F:      net/phonet/
13241
13242 PHRAM MTD DRIVER
13243 M:      Joern Engel <joern@lazybastard.org>
13244 L:      linux-mtd@lists.infradead.org
13245 S:      Maintained
13246 F:      drivers/mtd/devices/phram.c
13247
13248 PICOLCD HID DRIVER
13249 M:      Bruno Prémont <bonbons@linux-vserver.org>
13250 L:      linux-input@vger.kernel.org
13251 S:      Maintained
13252 F:      drivers/hid/hid-picolcd*
13253
13254 PICOXCELL SUPPORT
13255 M:      Jamie Iles <jamie@jamieiles.com>
13256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13257 T:      git git://github.com/jamieiles/linux-2.6-ji.git
13258 S:      Supported
13259 F:      arch/arm/boot/dts/picoxcell*
13260 F:      arch/arm/mach-picoxcell/
13261 F:      drivers/crypto/picoxcell*
13262
13263 PIDFD API
13264 M:      Christian Brauner <christian@brauner.io>
13265 L:      linux-kernel@vger.kernel.org
13266 S:      Maintained
13267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
13268 F:      samples/pidfd/
13269 F:      tools/testing/selftests/pidfd/
13270 F:      tools/testing/selftests/pid_namespace/
13271 F:      tools/testing/selftests/clone3/
13272 K:      (?i)pidfd
13273 K:      (?i)clone3
13274 K:      \b(clone_args|kernel_clone_args)\b
13275
13276 PIN CONTROL SUBSYSTEM
13277 M:      Linus Walleij <linus.walleij@linaro.org>
13278 L:      linux-gpio@vger.kernel.org
13279 S:      Maintained
13280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
13281 F:      Documentation/devicetree/bindings/pinctrl/
13282 F:      Documentation/driver-api/pinctl.rst
13283 F:      drivers/pinctrl/
13284 F:      include/linux/pinctrl/
13285
13286 PIN CONTROLLER - FREESCALE
13287 M:      Dong Aisheng <aisheng.dong@nxp.com>
13288 M:      Fabio Estevam <festevam@gmail.com>
13289 M:      Shawn Guo <shawnguo@kernel.org>
13290 M:      Stefan Agner <stefan@agner.ch>
13291 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
13292 L:      linux-gpio@vger.kernel.org
13293 S:      Maintained
13294 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
13295 F:      drivers/pinctrl/freescale/
13296
13297 PIN CONTROLLER - INTEL
13298 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13299 M:      Andy Shevchenko <andy@kernel.org>
13300 S:      Maintained
13301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
13302 F:      drivers/pinctrl/intel/
13303
13304 PIN CONTROLLER - MEDIATEK
13305 M:      Sean Wang <sean.wang@kernel.org>
13306 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13307 S:      Maintained
13308 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
13309 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
13310 F:      drivers/pinctrl/mediatek/
13311
13312 PIN CONTROLLER - MICROCHIP AT91
13313 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13315 L:      linux-gpio@vger.kernel.org
13316 S:      Supported
13317 F:      drivers/gpio/gpio-sama5d2-piobu.c
13318 F:      drivers/pinctrl/pinctrl-at91*
13319
13320 PIN CONTROLLER - QUALCOMM
13321 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13322 L:      linux-arm-msm@vger.kernel.org
13323 S:      Maintained
13324 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
13325 F:      drivers/pinctrl/qcom/
13326
13327 PIN CONTROLLER - RENESAS
13328 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13329 L:      linux-renesas-soc@vger.kernel.org
13330 S:      Maintained
13331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
13332 F:      drivers/pinctrl/pinctrl-rz*
13333 F:      drivers/pinctrl/sh-pfc/
13334
13335 PIN CONTROLLER - SAMSUNG
13336 M:      Tomasz Figa <tomasz.figa@gmail.com>
13337 M:      Krzysztof Kozlowski <krzk@kernel.org>
13338 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13340 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13341 S:      Maintained
13342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
13343 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
13344 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
13345 F:      drivers/pinctrl/samsung/
13346 F:      include/dt-bindings/pinctrl/samsung.h
13347
13348 PIN CONTROLLER - SINGLE
13349 M:      Tony Lindgren <tony@atomide.com>
13350 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
13351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13352 L:      linux-omap@vger.kernel.org
13353 S:      Maintained
13354 F:      drivers/pinctrl/pinctrl-single.c
13355
13356 PIN CONTROLLER - ST SPEAR
13357 M:      Viresh Kumar <vireshk@kernel.org>
13358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13359 S:      Maintained
13360 W:      http://www.st.com/spear
13361 F:      drivers/pinctrl/spear/
13362
13363 PISTACHIO SOC SUPPORT
13364 M:      James Hartley <james.hartley@sondrel.com>
13365 L:      linux-mips@vger.kernel.org
13366 S:      Odd Fixes
13367 F:      arch/mips/pistachio/
13368 F:      arch/mips/include/asm/mach-pistachio/
13369 F:      arch/mips/boot/dts/img/pistachio*
13370 F:      arch/mips/configs/pistachio*_defconfig
13371
13372 PKTCDVD DRIVER
13373 S:      Orphan
13374 M:      linux-block@vger.kernel.org
13375 F:      drivers/block/pktcdvd.c
13376 F:      include/linux/pktcdvd.h
13377 F:      include/uapi/linux/pktcdvd.h
13378
13379 PKUNITY SOC DRIVERS
13380 M:      Guan Xuetao <gxt@pku.edu.cn>
13381 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13382 S:      Maintained
13383 T:      git git://github.com/gxt/linux.git
13384 F:      drivers/input/serio/i8042-unicore32io.h
13385 F:      drivers/i2c/busses/i2c-puv3.c
13386 F:      drivers/video/fbdev/fb-puv3.c
13387 F:      drivers/rtc/rtc-puv3.c
13388
13389 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
13390 M:      Tomasz Duszynski <tduszyns@gmail.com>
13391 S:      Maintained
13392 F:      drivers/iio/chemical/pms7003.c
13393 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
13394
13395 PLX DMA DRIVER
13396 M:      Logan Gunthorpe <logang@deltatee.com>
13397 S:      Maintained
13398 F:      drivers/dma/plx_dma.c
13399
13400 PMBUS HARDWARE MONITORING DRIVERS
13401 M:      Guenter Roeck <linux@roeck-us.net>
13402 L:      linux-hwmon@vger.kernel.org
13403 W:      http://hwmon.wiki.kernel.org/
13404 W:      http://www.roeck-us.net/linux/drivers/
13405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
13406 S:      Maintained
13407 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
13408 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
13409 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
13410 F:      Documentation/hwmon/adm1275.rst
13411 F:      Documentation/hwmon/ibm-cffps.rst
13412 F:      Documentation/hwmon/ir35221.rst
13413 F:      Documentation/hwmon/lm25066.rst
13414 F:      Documentation/hwmon/ltc2978.rst
13415 F:      Documentation/hwmon/ltc3815.rst
13416 F:      Documentation/hwmon/max16064.rst
13417 F:      Documentation/hwmon/max20751.rst
13418 F:      Documentation/hwmon/max31785.rst
13419 F:      Documentation/hwmon/max34440.rst
13420 F:      Documentation/hwmon/max8688.rst
13421 F:      Documentation/hwmon/pmbus.rst
13422 F:      Documentation/hwmon/pmbus-core.rst
13423 F:      Documentation/hwmon/tps40422.rst
13424 F:      Documentation/hwmon/ucd9000.rst
13425 F:      Documentation/hwmon/ucd9200.rst
13426 F:      Documentation/hwmon/zl6100.rst
13427 F:      drivers/hwmon/pmbus/
13428 F:      include/linux/pmbus.h
13429
13430 PMC SIERRA MaxRAID DRIVER
13431 L:      linux-scsi@vger.kernel.org
13432 W:      http://www.pmc-sierra.com/
13433 S:      Orphan
13434 F:      drivers/scsi/pmcraid.*
13435
13436 PMC SIERRA PM8001 DRIVER
13437 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13438 L:      linux-scsi@vger.kernel.org
13439 S:      Supported
13440 F:      drivers/scsi/pm8001/
13441
13442 PM-GRAPH UTILITY
13443 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
13444 L:      linux-pm@vger.kernel.org
13445 W:      https://01.org/pm-graph
13446 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
13447 T:      git git://github.com/intel/pm-graph
13448 S:      Supported
13449 F:      tools/power/pm-graph
13450
13451 PNI RM3100 IIO DRIVER
13452 M:      Song Qiang <songqiang1304521@gmail.com>
13453 L:      linux-iio@vger.kernel.org
13454 S:      Maintained
13455 F:      drivers/iio/magnetometer/rm3100*
13456 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13457
13458 PNP SUPPORT
13459 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13460 L:      linux-acpi@vger.kernel.org
13461 S:      Maintained
13462 F:      include/linux/pnp.h
13463 F:      drivers/pnp/
13464
13465 POSIX CLOCKS and TIMERS
13466 M:      Thomas Gleixner <tglx@linutronix.de>
13467 L:      linux-kernel@vger.kernel.org
13468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13469 S:      Maintained
13470 F:      fs/timerfd.c
13471 F:      include/linux/timer*
13472 F:      include/linux/time_namespace.h
13473 F:      kernel/time/namespace.c
13474 F:      kernel/time/*timer*
13475
13476 POWER MANAGEMENT CORE
13477 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13478 L:      linux-pm@vger.kernel.org
13479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13480 B:      https://bugzilla.kernel.org
13481 S:      Supported
13482 F:      drivers/base/power/
13483 F:      include/linux/pm.h
13484 F:      include/linux/pm_*
13485 F:      include/linux/powercap.h
13486 F:      include/linux/intel_rapl.h
13487 F:      drivers/powercap/
13488 F:      kernel/configs/nopm.config
13489
13490 POWER STATE COORDINATION INTERFACE (PSCI)
13491 M:      Mark Rutland <mark.rutland@arm.com>
13492 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13493 L:      linux-arm-kernel@lists.infradead.org
13494 S:      Maintained
13495 F:      drivers/firmware/psci/
13496 F:      include/linux/psci.h
13497 F:      include/uapi/linux/psci.h
13498
13499 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13500 M:      Sebastian Reichel <sre@kernel.org>
13501 L:      linux-pm@vger.kernel.org
13502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13503 S:      Maintained
13504 F:      Documentation/ABI/testing/sysfs-class-power
13505 F:      Documentation/devicetree/bindings/power/supply/
13506 F:      include/linux/power_supply.h
13507 F:      drivers/power/supply/
13508
13509 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13510 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13511 L:      linuxppc-dev@lists.ozlabs.org
13512 S:      Maintained
13513 F:      drivers/char/powernv-op-panel.c
13514
13515 PPP OVER ATM (RFC 2364)
13516 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13517 S:      Maintained
13518 F:      net/atm/pppoatm.c
13519 F:      include/uapi/linux/atmppp.h
13520
13521 PPP OVER ETHERNET
13522 M:      Michal Ostrowski <mostrows@earthlink.net>
13523 S:      Maintained
13524 F:      drivers/net/ppp/pppoe.c
13525 F:      drivers/net/ppp/pppox.c
13526
13527 PPP OVER L2TP
13528 M:      James Chapman <jchapman@katalix.com>
13529 S:      Maintained
13530 F:      net/l2tp/l2tp_ppp.c
13531 F:      include/linux/if_pppol2tp.h
13532 F:      include/uapi/linux/if_pppol2tp.h
13533
13534 PPP PROTOCOL DRIVERS AND COMPRESSORS
13535 M:      Paul Mackerras <paulus@samba.org>
13536 L:      linux-ppp@vger.kernel.org
13537 S:      Maintained
13538 F:      drivers/net/ppp/ppp_*
13539
13540 PPS SUPPORT
13541 M:      Rodolfo Giometti <giometti@enneenne.com>
13542 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13543 L:      linuxpps@ml.enneenne.com (subscribers-only)
13544 S:      Maintained
13545 F:      Documentation/driver-api/pps.rst
13546 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13547 F:      Documentation/ABI/testing/sysfs-pps
13548 F:      drivers/pps/
13549 F:      include/linux/pps*.h
13550 F:      include/uapi/linux/pps.h
13551
13552 PPTP DRIVER
13553 M:      Dmitry Kozlov <xeb@mail.ru>
13554 L:      netdev@vger.kernel.org
13555 S:      Maintained
13556 F:      drivers/net/ppp/pptp.c
13557 W:      http://sourceforge.net/projects/accel-pptp
13558
13559 PRINTK
13560 M:      Petr Mladek <pmladek@suse.com>
13561 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13562 R:      Steven Rostedt <rostedt@goodmis.org>
13563 S:      Maintained
13564 F:      kernel/printk/
13565 F:      include/linux/printk.h
13566
13567 PRISM54 WIRELESS DRIVER
13568 M:      Luis Chamberlain <mcgrof@kernel.org>
13569 L:      linux-wireless@vger.kernel.org
13570 W:      http://wireless.kernel.org/en/users/Drivers/p54
13571 S:      Obsolete
13572 F:      drivers/net/wireless/intersil/prism54/
13573
13574 PROC FILESYSTEM
13575 R:      Alexey Dobriyan <adobriyan@gmail.com>
13576 L:      linux-kernel@vger.kernel.org
13577 L:      linux-fsdevel@vger.kernel.org
13578 S:      Maintained
13579 F:      fs/proc/
13580 F:      include/linux/proc_fs.h
13581 F:      tools/testing/selftests/proc/
13582 F:      Documentation/filesystems/proc.rst
13583
13584 PROC SYSCTL
13585 M:      Luis Chamberlain <mcgrof@kernel.org>
13586 M:      Kees Cook <keescook@chromium.org>
13587 M:      Iurii Zaikin <yzaikin@google.com>
13588 L:      linux-kernel@vger.kernel.org
13589 L:      linux-fsdevel@vger.kernel.org
13590 S:      Maintained
13591 F:      fs/proc/proc_sysctl.c
13592 F:      include/linux/sysctl.h
13593 F:      kernel/sysctl.c
13594 F:      kernel/sysctl-test.c
13595 F:      tools/testing/selftests/sysctl/
13596
13597 PS3 NETWORK SUPPORT
13598 M:      Geoff Levand <geoff@infradead.org>
13599 L:      netdev@vger.kernel.org
13600 L:      linuxppc-dev@lists.ozlabs.org
13601 S:      Maintained
13602 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13603
13604 PS3 PLATFORM SUPPORT
13605 M:      Geoff Levand <geoff@infradead.org>
13606 L:      linuxppc-dev@lists.ozlabs.org
13607 S:      Maintained
13608 F:      arch/powerpc/boot/ps3*
13609 F:      arch/powerpc/include/asm/lv1call.h
13610 F:      arch/powerpc/include/asm/ps3*.h
13611 F:      arch/powerpc/platforms/ps3/
13612 F:      drivers/*/ps3*
13613 F:      drivers/ps3/
13614 F:      drivers/rtc/rtc-ps3.c
13615 F:      drivers/usb/host/*ps3.c
13616 F:      sound/ppc/snd_ps3*
13617
13618 PS3VRAM DRIVER
13619 M:      Jim Paris <jim@jtan.com>
13620 M:      Geoff Levand <geoff@infradead.org>
13621 L:      linuxppc-dev@lists.ozlabs.org
13622 S:      Maintained
13623 F:      drivers/block/ps3vram.c
13624
13625 PSAMPLE PACKET SAMPLING SUPPORT
13626 M:      Yotam Gigi <yotam.gi@gmail.com>
13627 S:      Maintained
13628 F:      net/psample
13629 F:      include/net/psample.h
13630 F:      include/uapi/linux/psample.h
13631
13632 PRESSURE STALL INFORMATION (PSI)
13633 M:      Johannes Weiner <hannes@cmpxchg.org>
13634 S:      Maintained
13635 F:      kernel/sched/psi.c
13636 F:      include/linux/psi*
13637
13638 PSTORE FILESYSTEM
13639 M:      Kees Cook <keescook@chromium.org>
13640 M:      Anton Vorontsov <anton@enomsg.org>
13641 M:      Colin Cross <ccross@android.com>
13642 M:      Tony Luck <tony.luck@intel.com>
13643 S:      Maintained
13644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13645 F:      fs/pstore/
13646 F:      include/linux/pstore*
13647 F:      drivers/firmware/efi/efi-pstore.c
13648 F:      drivers/acpi/apei/erst.c
13649 F:      Documentation/admin-guide/ramoops.rst
13650 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13651 K:      \b(pstore|ramoops)
13652
13653 PTP HARDWARE CLOCK SUPPORT
13654 M:      Richard Cochran <richardcochran@gmail.com>
13655 L:      netdev@vger.kernel.org
13656 S:      Maintained
13657 W:      http://linuxptp.sourceforge.net/
13658 F:      Documentation/ABI/testing/sysfs-ptp
13659 F:      Documentation/driver-api/ptp.rst
13660 F:      drivers/net/phy/dp83640*
13661 F:      drivers/ptp/*
13662 F:      include/linux/ptp_cl*
13663
13664 PTRACE SUPPORT
13665 M:      Oleg Nesterov <oleg@redhat.com>
13666 S:      Maintained
13667 F:      include/asm-generic/syscall.h
13668 F:      include/linux/ptrace.h
13669 F:      include/linux/regset.h
13670 F:      include/linux/tracehook.h
13671 F:      include/uapi/linux/ptrace.h
13672 F:      include/uapi/linux/ptrace.h
13673 F:      kernel/ptrace.c
13674 F:      arch/*/ptrace*.c
13675 F:      arch/*/*/ptrace*.c
13676 F:      arch/*/include/asm/ptrace*.h
13677
13678 PULSE8-CEC DRIVER
13679 M:      Hans Verkuil <hverkuil@xs4all.nl>
13680 L:      linux-media@vger.kernel.org
13681 T:      git git://linuxtv.org/media_tree.git
13682 S:      Maintained
13683 F:      drivers/media/usb/pulse8-cec/*
13684 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13685
13686 PVRUSB2 VIDEO4LINUX DRIVER
13687 M:      Mike Isely <isely@pobox.com>
13688 L:      pvrusb2@isely.net       (subscribers-only)
13689 L:      linux-media@vger.kernel.org
13690 W:      http://www.isely.net/pvrusb2/
13691 T:      git git://linuxtv.org/media_tree.git
13692 S:      Maintained
13693 F:      Documentation/media/v4l-drivers/pvrusb2*
13694 F:      drivers/media/usb/pvrusb2/
13695
13696 PWC WEBCAM DRIVER
13697 M:      Hans Verkuil <hverkuil@xs4all.nl>
13698 L:      linux-media@vger.kernel.org
13699 T:      git git://linuxtv.org/media_tree.git
13700 S:      Odd Fixes
13701 F:      drivers/media/usb/pwc/*
13702 F:      include/trace/events/pwc.h
13703
13704 PWM FAN DRIVER
13705 M:      Kamil Debski <kamil@wypas.org>
13706 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13707 L:      linux-hwmon@vger.kernel.org
13708 S:      Supported
13709 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13710 F:      Documentation/hwmon/pwm-fan.rst
13711 F:      drivers/hwmon/pwm-fan.c
13712
13713 PWM IR Transmitter
13714 M:      Sean Young <sean@mess.org>
13715 L:      linux-media@vger.kernel.org
13716 S:      Maintained
13717 F:      drivers/media/rc/pwm-ir-tx.c
13718
13719 PWM SUBSYSTEM
13720 M:      Thierry Reding <thierry.reding@gmail.com>
13721 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13722 L:      linux-pwm@vger.kernel.org
13723 S:      Maintained
13724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13725 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13726 F:      Documentation/driver-api/pwm.rst
13727 F:      Documentation/devicetree/bindings/pwm/
13728 F:      include/linux/pwm.h
13729 F:      drivers/pwm/
13730 F:      drivers/video/backlight/pwm_bl.c
13731 F:      include/linux/pwm_backlight.h
13732 F:      drivers/gpio/gpio-mvebu.c
13733 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13734 K:      pwm_(config|apply_state|ops)
13735
13736 PXA GPIO DRIVER
13737 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13738 L:      linux-gpio@vger.kernel.org
13739 S:      Maintained
13740 F:      drivers/gpio/gpio-pxa.c
13741
13742 PXA MMCI DRIVER
13743 S:      Orphan
13744
13745 PXA RTC DRIVER
13746 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13747 L:      linux-rtc@vger.kernel.org
13748 S:      Maintained
13749
13750 PXA2xx/PXA3xx SUPPORT
13751 M:      Daniel Mack <daniel@zonque.org>
13752 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13753 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13755 T:      git git://github.com/hzhuang1/linux.git
13756 T:      git git://github.com/rjarzmik/linux.git
13757 S:      Maintained
13758 F:      arch/arm/boot/dts/pxa*
13759 F:      arch/arm/mach-pxa/
13760 F:      drivers/dma/pxa*
13761 F:      drivers/pcmcia/pxa2xx*
13762 F:      drivers/pinctrl/pxa/
13763 F:      drivers/spi/spi-pxa2xx*
13764 F:      drivers/usb/gadget/udc/pxa2*
13765 F:      include/sound/pxa2xx-lib.h
13766 F:      sound/arm/pxa*
13767 F:      sound/soc/pxa/
13768
13769 QAT DRIVER
13770 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13771 L:      qat-linux@intel.com
13772 S:      Supported
13773 F:      drivers/crypto/qat/
13774
13775 QCOM AUDIO (ASoC) DRIVERS
13776 M:      Patrick Lai <plai@codeaurora.org>
13777 M:      Banajit Goswami <bgoswami@codeaurora.org>
13778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13779 S:      Supported
13780 F:      sound/soc/qcom/
13781
13782 QCOM IPA DRIVER
13783 M:      Alex Elder <elder@kernel.org>
13784 L:      netdev@vger.kernel.org
13785 S:      Supported
13786 F:      drivers/net/ipa/
13787
13788 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13789 M:      Gabriel Somlo <somlo@cmu.edu>
13790 M:      "Michael S. Tsirkin" <mst@redhat.com>
13791 L:      qemu-devel@nongnu.org
13792 S:      Maintained
13793 F:      drivers/firmware/qemu_fw_cfg.c
13794 F:      include/uapi/linux/qemu_fw_cfg.h
13795
13796 QIB DRIVER
13797 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13798 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13799 L:      linux-rdma@vger.kernel.org
13800 S:      Supported
13801 F:      drivers/infiniband/hw/qib/
13802
13803 QLOGIC QL41xxx FCOE DRIVER
13804 M:      QLogic-Storage-Upstream@cavium.com
13805 L:      linux-scsi@vger.kernel.org
13806 S:      Supported
13807 F:      drivers/scsi/qedf/
13808
13809 QLOGIC QL41xxx ISCSI DRIVER
13810 M:      QLogic-Storage-Upstream@cavium.com
13811 L:      linux-scsi@vger.kernel.org
13812 S:      Supported
13813 F:      drivers/scsi/qedi/
13814
13815 QLOGIC QL4xxx ETHERNET DRIVER
13816 M:      Ariel Elior <aelior@marvell.com>
13817 M:      GR-everest-linux-l2@marvell.com
13818 L:      netdev@vger.kernel.org
13819 S:      Supported
13820 F:      drivers/net/ethernet/qlogic/qed/
13821 F:      include/linux/qed/
13822 F:      drivers/net/ethernet/qlogic/qede/
13823
13824 QLOGIC QL4xxx RDMA DRIVER
13825 M:      Michal Kalderon <mkalderon@marvell.com>
13826 M:      Ariel Elior <aelior@marvell.com>
13827 L:      linux-rdma@vger.kernel.org
13828 S:      Supported
13829 F:      drivers/infiniband/hw/qedr/
13830 F:      include/uapi/rdma/qedr-abi.h
13831
13832 QLOGIC QLA1280 SCSI DRIVER
13833 M:      Michael Reed <mdr@sgi.com>
13834 L:      linux-scsi@vger.kernel.org
13835 S:      Maintained
13836 F:      drivers/scsi/qla1280.[ch]
13837
13838 QLOGIC QLA2XXX FC-SCSI DRIVER
13839 M:      hmadhani@marvell.com
13840 L:      linux-scsi@vger.kernel.org
13841 S:      Supported
13842 F:      Documentation/scsi/LICENSE.qla2xxx
13843 F:      drivers/scsi/qla2xxx/
13844
13845 QLOGIC QLA3XXX NETWORK DRIVER
13846 M:      GR-Linux-NIC-Dev@marvell.com
13847 L:      netdev@vger.kernel.org
13848 S:      Supported
13849 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13850 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13851
13852 QLOGIC QLA4XXX iSCSI DRIVER
13853 M:      QLogic-Storage-Upstream@qlogic.com
13854 L:      linux-scsi@vger.kernel.org
13855 S:      Supported
13856 F:      Documentation/scsi/LICENSE.qla4xxx
13857 F:      drivers/scsi/qla4xxx/
13858
13859 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13860 M:      Shahed Shaikh <shshaikh@marvell.com>
13861 M:      Manish Chopra <manishc@marvell.com>
13862 M:      GR-Linux-NIC-Dev@marvell.com
13863 L:      netdev@vger.kernel.org
13864 S:      Supported
13865 F:      drivers/net/ethernet/qlogic/qlcnic/
13866
13867 QLOGIC QLGE 10Gb ETHERNET DRIVER
13868 M:      Manish Chopra <manishc@marvell.com>
13869 M:      GR-Linux-NIC-Dev@marvell.com
13870 L:      netdev@vger.kernel.org
13871 S:      Supported
13872 F:      drivers/staging/qlge/
13873
13874 QM1D1B0004 MEDIA DRIVER
13875 M:      Akihiro Tsukada <tskd08@gmail.com>
13876 L:      linux-media@vger.kernel.org
13877 S:      Odd Fixes
13878 F:      drivers/media/tuners/qm1d1b0004*
13879
13880 QM1D1C0042 MEDIA DRIVER
13881 M:      Akihiro Tsukada <tskd08@gmail.com>
13882 L:      linux-media@vger.kernel.org
13883 S:      Odd Fixes
13884 F:      drivers/media/tuners/qm1d1c0042*
13885
13886 QNX4 FILESYSTEM
13887 M:      Anders Larsen <al@alarsen.net>
13888 W:      http://www.alarsen.net/linux/qnx4fs/
13889 S:      Maintained
13890 F:      fs/qnx4/
13891 F:      include/uapi/linux/qnx4_fs.h
13892 F:      include/uapi/linux/qnxtypes.h
13893
13894 QORIQ DPAA2 FSL-MC BUS DRIVER
13895 M:      Stuart Yoder <stuyoder@gmail.com>
13896 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13897 L:      linux-kernel@vger.kernel.org
13898 S:      Maintained
13899 F:      drivers/bus/fsl-mc/
13900 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13901 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13902
13903 QT1010 MEDIA DRIVER
13904 M:      Antti Palosaari <crope@iki.fi>
13905 L:      linux-media@vger.kernel.org
13906 W:      https://linuxtv.org
13907 W:      http://palosaari.fi/linux/
13908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13909 T:      git git://linuxtv.org/anttip/media_tree.git
13910 S:      Maintained
13911 F:      drivers/media/tuners/qt1010*
13912
13913 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13914 M:      Kalle Valo <kvalo@codeaurora.org>
13915 L:      ath10k@lists.infradead.org
13916 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13918 S:      Supported
13919 F:      drivers/net/wireless/ath/ath10k/
13920
13921 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
13922 M:      Kalle Valo <kvalo@codeaurora.org>
13923 L:      ath11k@lists.infradead.org
13924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13925 S:      Supported
13926 F:      drivers/net/wireless/ath/ath11k/
13927
13928 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13929 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13930 L:      linux-wireless@vger.kernel.org
13931 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13932 S:      Supported
13933 F:      drivers/net/wireless/ath/ath9k/
13934
13935 QUALCOMM CAMERA SUBSYSTEM DRIVER
13936 M:      Todor Tomov <todor.too@gmail.com>
13937 L:      linux-media@vger.kernel.org
13938 S:      Maintained
13939 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13940 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13941 F:      drivers/media/platform/qcom/camss/
13942
13943 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13944 M:      Ilia Lin <ilia.lin@kernel.org>
13945 L:      linux-pm@vger.kernel.org
13946 S:      Maintained
13947 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13948 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13949
13950 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
13951 M:      Niklas Cassel <nks@flawful.org>
13952 L:      linux-pm@vger.kernel.org
13953 L:      linux-arm-msm@vger.kernel.org
13954 S:      Maintained
13955 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
13956 F:      drivers/power/avs/qcom-cpr.c
13957
13958 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13959 M:      Timur Tabi <timur@kernel.org>
13960 L:      netdev@vger.kernel.org
13961 S:      Maintained
13962 F:      drivers/net/ethernet/qualcomm/emac/
13963
13964 QUALCOMM ETHQOS ETHERNET DRIVER
13965 M:      Vinod Koul <vkoul@kernel.org>
13966 L:      netdev@vger.kernel.org
13967 S:      Maintained
13968 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13969 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13970
13971 QUALCOMM GENERIC INTERFACE I2C DRIVER
13972 M:      Alok Chauhan <alokc@codeaurora.org>
13973 L:      linux-i2c@vger.kernel.org
13974 L:      linux-arm-msm@vger.kernel.org
13975 S:      Supported
13976 F:      drivers/i2c/busses/i2c-qcom-geni.c
13977
13978 QUALCOMM HEXAGON ARCHITECTURE
13979 M:      Brian Cain <bcain@codeaurora.org>
13980 L:      linux-hexagon@vger.kernel.org
13981 S:      Supported
13982 F:      arch/hexagon/
13983
13984 QUALCOMM HIDMA DRIVER
13985 M:      Sinan Kaya <okaya@kernel.org>
13986 L:      linux-arm-kernel@lists.infradead.org
13987 L:      linux-arm-msm@vger.kernel.org
13988 L:      dmaengine@vger.kernel.org
13989 S:      Supported
13990 F:      drivers/dma/qcom/hidma*
13991
13992 QUALCOMM IOMMU
13993 M:      Rob Clark <robdclark@gmail.com>
13994 L:      iommu@lists.linux-foundation.org
13995 L:      linux-arm-msm@vger.kernel.org
13996 S:      Maintained
13997 F:      drivers/iommu/qcom_iommu.c
13998
13999 QUALCOMM RMNET DRIVER
14000 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
14001 M:      Sean Tranchetti <stranche@codeaurora.org>
14002 L:      netdev@vger.kernel.org
14003 S:      Maintained
14004 F:      drivers/net/ethernet/qualcomm/rmnet/
14005 F:      Documentation/networking/device_drivers/qualcomm/rmnet.txt
14006 F:      include/linux/if_rmnet.h
14007
14008 QUALCOMM TSENS THERMAL DRIVER
14009 M:      Amit Kucheria <amit.kucheria@linaro.org>
14010 L:      linux-pm@vger.kernel.org
14011 L:      linux-arm-msm@vger.kernel.org
14012 S:      Maintained
14013 F:      drivers/thermal/qcom/
14014 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
14015
14016 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
14017 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
14018 L:      linux-media@vger.kernel.org
14019 L:      linux-arm-msm@vger.kernel.org
14020 T:      git git://linuxtv.org/media_tree.git
14021 S:      Maintained
14022 F:      drivers/media/platform/qcom/venus/
14023 F:      Documentation/devicetree/bindings/media/*venus*
14024
14025 QUALCOMM WCN36XX WIRELESS DRIVER
14026 M:      Kalle Valo <kvalo@codeaurora.org>
14027 L:      wcn36xx@lists.infradead.org
14028 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
14029 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
14030 S:      Supported
14031 F:      drivers/net/wireless/ath/wcn36xx/
14032
14033 QUANTENNA QTNFMAC WIRELESS DRIVER
14034 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
14035 M:      Avinash Patil <avinashp@quantenna.com>
14036 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
14037 L:      linux-wireless@vger.kernel.org
14038 S:      Maintained
14039 F:      drivers/net/wireless/quantenna
14040
14041 RADEON and AMDGPU DRM DRIVERS
14042 M:      Alex Deucher <alexander.deucher@amd.com>
14043 M:      Christian König <christian.koenig@amd.com>
14044 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
14045 L:      amd-gfx@lists.freedesktop.org
14046 T:      git git://people.freedesktop.org/~agd5f/linux
14047 S:      Supported
14048 F:      drivers/gpu/drm/radeon/
14049 F:      include/uapi/drm/radeon_drm.h
14050 F:      drivers/gpu/drm/amd/
14051 F:      include/uapi/drm/amdgpu_drm.h
14052
14053 RADEON FRAMEBUFFER DISPLAY DRIVER
14054 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
14055 L:      linux-fbdev@vger.kernel.org
14056 S:      Maintained
14057 F:      drivers/video/fbdev/aty/radeon*
14058 F:      include/uapi/linux/radeonfb.h
14059
14060 RADIOSHARK RADIO DRIVER
14061 M:      Hans Verkuil <hverkuil@xs4all.nl>
14062 L:      linux-media@vger.kernel.org
14063 T:      git git://linuxtv.org/media_tree.git
14064 S:      Maintained
14065 F:      drivers/media/radio/radio-shark.c
14066
14067 RADIOSHARK2 RADIO DRIVER
14068 M:      Hans Verkuil <hverkuil@xs4all.nl>
14069 L:      linux-media@vger.kernel.org
14070 T:      git git://linuxtv.org/media_tree.git
14071 S:      Maintained
14072 F:      drivers/media/radio/radio-shark2.c
14073 F:      drivers/media/radio/radio-tea5777.c
14074
14075 RADOS BLOCK DEVICE (RBD)
14076 M:      Ilya Dryomov <idryomov@gmail.com>
14077 M:      Sage Weil <sage@redhat.com>
14078 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
14079 L:      ceph-devel@vger.kernel.org
14080 W:      http://ceph.com/
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
14082 T:      git git://github.com/ceph/ceph-client.git
14083 S:      Supported
14084 F:      Documentation/ABI/testing/sysfs-bus-rbd
14085 F:      drivers/block/rbd.c
14086 F:      drivers/block/rbd_types.h
14087
14088 RAGE128 FRAMEBUFFER DISPLAY DRIVER
14089 M:      Paul Mackerras <paulus@samba.org>
14090 L:      linux-fbdev@vger.kernel.org
14091 S:      Maintained
14092 F:      drivers/video/fbdev/aty/aty128fb.c
14093
14094 RAINSHADOW-CEC DRIVER
14095 M:      Hans Verkuil <hverkuil@xs4all.nl>
14096 L:      linux-media@vger.kernel.org
14097 T:      git git://linuxtv.org/media_tree.git
14098 S:      Maintained
14099 F:      drivers/media/usb/rainshadow-cec/*
14100
14101 RALINK MIPS ARCHITECTURE
14102 M:      John Crispin <john@phrozen.org>
14103 L:      linux-mips@vger.kernel.org
14104 S:      Maintained
14105 F:      arch/mips/ralink
14106
14107 RALINK RT2X00 WIRELESS LAN DRIVER
14108 M:      Stanislaw Gruszka <stf_xl@wp.pl>
14109 M:      Helmut Schaa <helmut.schaa@googlemail.com>
14110 L:      linux-wireless@vger.kernel.org
14111 S:      Maintained
14112 F:      drivers/net/wireless/ralink/rt2x00/
14113
14114 RAMDISK RAM BLOCK DEVICE DRIVER
14115 M:      Jens Axboe <axboe@kernel.dk>
14116 S:      Maintained
14117 F:      Documentation/admin-guide/blockdev/ramdisk.rst
14118 F:      drivers/block/brd.c
14119
14120 RANCHU VIRTUAL BOARD FOR MIPS
14121 M:      Miodrag Dinic <miodrag.dinic@mips.com>
14122 L:      linux-mips@vger.kernel.org
14123 S:      Supported
14124 F:      arch/mips/generic/board-ranchu.c
14125 F:      arch/mips/configs/generic/board-ranchu.config
14126
14127 RANDOM NUMBER DRIVER
14128 M:      "Theodore Ts'o" <tytso@mit.edu>
14129 S:      Maintained
14130 F:      drivers/char/random.c
14131
14132 RAPIDIO SUBSYSTEM
14133 M:      Matt Porter <mporter@kernel.crashing.org>
14134 M:      Alexandre Bounine <alex.bou9@gmail.com>
14135 S:      Maintained
14136 F:      drivers/rapidio/
14137
14138 RAS INFRASTRUCTURE
14139 M:      Tony Luck <tony.luck@intel.com>
14140 M:      Borislav Petkov <bp@alien8.de>
14141 L:      linux-edac@vger.kernel.org
14142 S:      Maintained
14143 F:      drivers/ras/
14144 F:      include/linux/ras.h
14145 F:      include/ras/ras_event.h
14146 F:      Documentation/admin-guide/ras.rst
14147
14148 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
14149 L:      linux-wireless@vger.kernel.org
14150 S:      Orphan
14151 F:      drivers/net/wireless/ray*
14152
14153 RCUTORTURE TEST FRAMEWORK
14154 M:      "Paul E. McKenney" <paulmck@kernel.org>
14155 M:      Josh Triplett <josh@joshtriplett.org>
14156 R:      Steven Rostedt <rostedt@goodmis.org>
14157 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14158 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14159 L:      rcu@vger.kernel.org
14160 S:      Supported
14161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14162 F:      tools/testing/selftests/rcutorture
14163
14164 RDC R-321X SoC
14165 M:      Florian Fainelli <florian@openwrt.org>
14166 S:      Maintained
14167
14168 RDC R6040 FAST ETHERNET DRIVER
14169 M:      Florian Fainelli <f.fainelli@gmail.com>
14170 L:      netdev@vger.kernel.org
14171 S:      Maintained
14172 F:      drivers/net/ethernet/rdc/r6040.c
14173
14174 RDMAVT - RDMA verbs software
14175 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
14176 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
14177 L:      linux-rdma@vger.kernel.org
14178 S:      Supported
14179 F:      drivers/infiniband/sw/rdmavt
14180
14181 RDS - RELIABLE DATAGRAM SOCKETS
14182 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
14183 L:      netdev@vger.kernel.org
14184 L:      linux-rdma@vger.kernel.org
14185 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
14186 W:      https://oss.oracle.com/projects/rds/
14187 S:      Supported
14188 F:      net/rds/
14189 F:      Documentation/networking/rds.txt
14190
14191 RDT - RESOURCE ALLOCATION
14192 M:      Fenghua Yu <fenghua.yu@intel.com>
14193 M:      Reinette Chatre <reinette.chatre@intel.com>
14194 L:      linux-kernel@vger.kernel.org
14195 S:      Supported
14196 F:      arch/x86/kernel/cpu/resctrl/
14197 F:      arch/x86/include/asm/resctrl_sched.h
14198 F:      Documentation/x86/resctrl*
14199 F:      tools/testing/selftests/resctrl/
14200
14201 READ-COPY UPDATE (RCU)
14202 M:      "Paul E. McKenney" <paulmck@kernel.org>
14203 M:      Josh Triplett <josh@joshtriplett.org>
14204 R:      Steven Rostedt <rostedt@goodmis.org>
14205 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14206 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14207 R:      Joel Fernandes <joel@joelfernandes.org>
14208 L:      rcu@vger.kernel.org
14209 W:      http://www.rdrop.com/users/paulmck/RCU/
14210 S:      Supported
14211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14212 F:      Documentation/RCU/
14213 X:      Documentation/RCU/torture.txt
14214 F:      include/linux/rcu*
14215 X:      include/linux/srcu*.h
14216 F:      kernel/rcu/
14217 X:      kernel/rcu/srcu*.c
14218
14219 REAL TIME CLOCK (RTC) SUBSYSTEM
14220 M:      Alessandro Zummo <a.zummo@towertech.it>
14221 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14222 L:      linux-rtc@vger.kernel.org
14223 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
14224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
14225 S:      Maintained
14226 F:      Documentation/devicetree/bindings/rtc/
14227 F:      Documentation/admin-guide/rtc.rst
14228 F:      drivers/rtc/
14229 F:      include/linux/rtc.h
14230 F:      include/uapi/linux/rtc.h
14231 F:      include/linux/rtc/
14232 F:      include/linux/platform_data/rtc-*
14233 F:      tools/testing/selftests/rtc/
14234
14235 REALTEK AUDIO CODECS
14236 M:      Oder Chiou <oder_chiou@realtek.com>
14237 S:      Maintained
14238 F:      sound/soc/codecs/rt*
14239 F:      include/sound/rt*.h
14240
14241 REALTEK RTL83xx SMI DSA ROUTER CHIPS
14242 M:      Linus Walleij <linus.walleij@linaro.org>
14243 S:      Maintained
14244 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
14245 F:      drivers/net/dsa/realtek-smi*
14246 F:      drivers/net/dsa/rtl83*
14247
14248 REDPINE WIRELESS DRIVER
14249 M:      Amitkumar Karwar <amitkarwar@gmail.com>
14250 M:      Siva Rebbagondla <siva8118@gmail.com>
14251 L:      linux-wireless@vger.kernel.org
14252 S:      Maintained
14253 F:      drivers/net/wireless/rsi/
14254
14255 REGISTER MAP ABSTRACTION
14256 M:      Mark Brown <broonie@kernel.org>
14257 L:      linux-kernel@vger.kernel.org
14258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
14259 S:      Supported
14260 F:      Documentation/devicetree/bindings/regmap/
14261 F:      drivers/base/regmap/
14262 F:      include/linux/regmap.h
14263
14264 REISERFS FILE SYSTEM
14265 L:      reiserfs-devel@vger.kernel.org
14266 S:      Supported
14267 F:      fs/reiserfs/
14268
14269 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
14270 M:      Ohad Ben-Cohen <ohad@wizery.com>
14271 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14272 L:      linux-remoteproc@vger.kernel.org
14273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
14274 S:      Maintained
14275 F:      Documentation/devicetree/bindings/remoteproc/
14276 F:      Documentation/ABI/testing/sysfs-class-remoteproc
14277 F:      Documentation/remoteproc.txt
14278 F:      drivers/remoteproc/
14279 F:      include/linux/remoteproc.h
14280 F:      include/linux/remoteproc/
14281
14282 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
14283 M:      Ohad Ben-Cohen <ohad@wizery.com>
14284 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14285 L:      linux-remoteproc@vger.kernel.org
14286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
14287 S:      Maintained
14288 F:      drivers/rpmsg/
14289 F:      Documentation/rpmsg.txt
14290 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
14291 F:      include/linux/rpmsg.h
14292 F:      include/linux/rpmsg/
14293 F:      include/uapi/linux/rpmsg.h
14294 F:      samples/rpmsg/
14295
14296 RENESAS CLOCK DRIVERS
14297 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14298 L:      linux-renesas-soc@vger.kernel.org
14299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
14300 S:      Supported
14301 F:      drivers/clk/renesas/
14302
14303 RENESAS EMEV2 I2C DRIVER
14304 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14305 S:      Supported
14306 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
14307 F:      drivers/i2c/busses/i2c-emev2.c
14308
14309 RENESAS ETHERNET DRIVERS
14310 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
14311 L:      netdev@vger.kernel.org
14312 L:      linux-renesas-soc@vger.kernel.org
14313 F:      Documentation/devicetree/bindings/net/renesas,*.txt
14314 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
14315 F:      drivers/net/ethernet/renesas/
14316 F:      include/linux/sh_eth.h
14317
14318 RENESAS R-CAR GYROADC DRIVER
14319 M:      Marek Vasut <marek.vasut@gmail.com>
14320 L:      linux-iio@vger.kernel.org
14321 S:      Supported
14322 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
14323 F:      drivers/iio/adc/rcar-gyroadc.c
14324
14325 RENESAS R-CAR I2C DRIVERS
14326 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14327 S:      Supported
14328 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
14329 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
14330 F:      drivers/i2c/busses/i2c-rcar.c
14331 F:      drivers/i2c/busses/i2c-sh_mobile.c
14332
14333 RENESAS RIIC DRIVER
14334 M:      Chris Brandt <chris.brandt@renesas.com>
14335 S:      Supported
14336 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
14337 F:      drivers/i2c/busses/i2c-riic.c
14338
14339 RENESAS USB PHY DRIVER
14340 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14341 L:      linux-renesas-soc@vger.kernel.org
14342 S:      Maintained
14343 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
14344
14345 RESET CONTROLLER FRAMEWORK
14346 M:      Philipp Zabel <p.zabel@pengutronix.de>
14347 T:      git git://git.pengutronix.de/git/pza/linux
14348 S:      Maintained
14349 F:      drivers/reset/
14350 F:      Documentation/devicetree/bindings/reset/
14351 F:      include/dt-bindings/reset/
14352 F:      include/linux/reset.h
14353 F:      include/linux/reset/
14354 F:      include/linux/reset-controller.h
14355 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
14356
14357 RESTARTABLE SEQUENCES SUPPORT
14358 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14359 M:      Peter Zijlstra <peterz@infradead.org>
14360 M:      "Paul E. McKenney" <paulmck@kernel.org>
14361 M:      Boqun Feng <boqun.feng@gmail.com>
14362 L:      linux-kernel@vger.kernel.org
14363 S:      Supported
14364 F:      kernel/rseq.c
14365 F:      include/uapi/linux/rseq.h
14366 F:      include/trace/events/rseq.h
14367 F:      tools/testing/selftests/rseq/
14368
14369 RFKILL
14370 M:      Johannes Berg <johannes@sipsolutions.net>
14371 L:      linux-wireless@vger.kernel.org
14372 W:      http://wireless.kernel.org/
14373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
14374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
14375 S:      Maintained
14376 F:      Documentation/driver-api/rfkill.rst
14377 F:      Documentation/ABI/stable/sysfs-class-rfkill
14378 F:      net/rfkill/
14379 F:      include/linux/rfkill.h
14380 F:      include/uapi/linux/rfkill.h
14381
14382 RHASHTABLE
14383 M:      Thomas Graf <tgraf@suug.ch>
14384 M:      Herbert Xu <herbert@gondor.apana.org.au>
14385 L:      netdev@vger.kernel.org
14386 S:      Maintained
14387 F:      lib/rhashtable.c
14388 F:      lib/test_rhashtable.c
14389 F:      include/linux/rhashtable.h
14390 F:      include/linux/rhashtable-types.h
14391
14392 RICOH R5C592 MEMORYSTICK DRIVER
14393 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14394 S:      Maintained
14395 F:      drivers/memstick/host/r592.*
14396
14397 RICOH SMARTMEDIA/XD DRIVER
14398 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14399 S:      Maintained
14400 F:      drivers/mtd/nand/raw/r852.c
14401 F:      drivers/mtd/nand/raw/r852.h
14402
14403 RISC-V ARCHITECTURE
14404 M:      Paul Walmsley <paul.walmsley@sifive.com>
14405 M:      Palmer Dabbelt <palmer@dabbelt.com>
14406 M:      Albert Ou <aou@eecs.berkeley.edu>
14407 L:      linux-riscv@lists.infradead.org
14408 P:      Documentation/riscv/patch-acceptance.rst
14409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
14410 S:      Supported
14411 F:      arch/riscv/
14412 K:      riscv
14413 N:      riscv
14414
14415 ROCCAT DRIVERS
14416 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
14417 W:      http://sourceforge.net/projects/roccat/
14418 S:      Maintained
14419 F:      drivers/hid/hid-roccat*
14420 F:      include/linux/hid-roccat*
14421 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
14422
14423 ROCKCHIP ISP V1 DRIVER
14424 M:      Helen Koike <helen.koike@collabora.com>
14425 L:      linux-media@vger.kernel.org
14426 S:      Maintained
14427 F:      drivers/staging/media/rkisp1/
14428
14429 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
14430 M:      Jacob Chen <jacob-chen@iotwrt.com>
14431 M:      Ezequiel Garcia <ezequiel@collabora.com>
14432 L:      linux-media@vger.kernel.org
14433 S:      Maintained
14434 F:      drivers/media/platform/rockchip/rga/
14435 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
14436
14437 HANTRO VPU CODEC DRIVER
14438 M:      Ezequiel Garcia <ezequiel@collabora.com>
14439 M:      Philipp Zabel <p.zabel@pengutronix.de>
14440 L:      linux-media@vger.kernel.org
14441 L:      linux-rockchip@lists.infradead.org
14442 S:      Maintained
14443 F:      drivers/staging/media/hantro/
14444 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
14445 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
14446
14447 ROCKER DRIVER
14448 M:      Jiri Pirko <jiri@resnulli.us>
14449 L:      netdev@vger.kernel.org
14450 S:      Supported
14451 F:      drivers/net/ethernet/rocker/
14452
14453 ROCKETPORT DRIVER
14454 W:      http://www.comtrol.com
14455 S:      Maintained
14456 F:      Documentation/driver-api/serial/rocket.rst
14457 F:      drivers/tty/rocket*
14458
14459 ROCKETPORT EXPRESS/INFINITY DRIVER
14460 M:      Kevin Cernekee <cernekee@gmail.com>
14461 L:      linux-serial@vger.kernel.org
14462 S:      Odd Fixes
14463 F:      drivers/tty/serial/rp2.*
14464
14465 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
14466 M:      Tomasz Duszynski <tduszyns@gmail.com>
14467 S:      Maintained
14468 F:      drivers/iio/light/bh1750.c
14469 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
14470
14471 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
14472 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14473 L:      linux-kernel@vger.kernel.org
14474 L:      linux-renesas-soc@vger.kernel.org
14475 S:      Supported
14476 F:      drivers/mfd/bd9571mwv.c
14477 F:      drivers/regulator/bd9571mwv-regulator.c
14478 F:      drivers/gpio/gpio-bd9571mwv.c
14479 F:      include/linux/mfd/bd9571mwv.h
14480 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14481
14482 ROSE NETWORK LAYER
14483 M:      Ralf Baechle <ralf@linux-mips.org>
14484 L:      linux-hams@vger.kernel.org
14485 W:      http://www.linux-ax25.org/
14486 S:      Maintained
14487 F:      include/net/rose.h
14488 F:      include/uapi/linux/rose.h
14489 F:      net/rose/
14490
14491 ROTATION DRIVER FOR ALLWINNER A83T
14492 M:      Jernej Skrabec <jernej.skrabec@siol.net>
14493 L:      linux-media@vger.kernel.org
14494 T:      git git://linuxtv.org/media_tree.git
14495 S:      Maintained
14496 F:      drivers/media/platform/sunxi/sun8i-rotate/
14497 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
14498
14499 RTL2830 MEDIA DRIVER
14500 M:      Antti Palosaari <crope@iki.fi>
14501 L:      linux-media@vger.kernel.org
14502 W:      https://linuxtv.org
14503 W:      http://palosaari.fi/linux/
14504 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14505 T:      git git://linuxtv.org/anttip/media_tree.git
14506 S:      Maintained
14507 F:      drivers/media/dvb-frontends/rtl2830*
14508
14509 RTL2832 MEDIA DRIVER
14510 M:      Antti Palosaari <crope@iki.fi>
14511 L:      linux-media@vger.kernel.org
14512 W:      https://linuxtv.org
14513 W:      http://palosaari.fi/linux/
14514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14515 T:      git git://linuxtv.org/anttip/media_tree.git
14516 S:      Maintained
14517 F:      drivers/media/dvb-frontends/rtl2832*
14518
14519 RTL2832_SDR MEDIA DRIVER
14520 M:      Antti Palosaari <crope@iki.fi>
14521 L:      linux-media@vger.kernel.org
14522 W:      https://linuxtv.org
14523 W:      http://palosaari.fi/linux/
14524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14525 T:      git git://linuxtv.org/anttip/media_tree.git
14526 S:      Maintained
14527 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14528
14529 RTL8180 WIRELESS DRIVER
14530 L:      linux-wireless@vger.kernel.org
14531 W:      http://wireless.kernel.org/
14532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14533 S:      Orphan
14534 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14535
14536 RTL8187 WIRELESS DRIVER
14537 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14538 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14539 M:      Larry Finger <Larry.Finger@lwfinger.net>
14540 L:      linux-wireless@vger.kernel.org
14541 W:      http://wireless.kernel.org/
14542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14543 S:      Maintained
14544 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14545
14546 REALTEK WIRELESS DRIVER (rtlwifi family)
14547 M:      Ping-Ke Shih <pkshih@realtek.com>
14548 L:      linux-wireless@vger.kernel.org
14549 W:      http://wireless.kernel.org/
14550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14551 S:      Maintained
14552 F:      drivers/net/wireless/realtek/rtlwifi/
14553
14554 REALTEK WIRELESS DRIVER (rtw88)
14555 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14556 L:      linux-wireless@vger.kernel.org
14557 S:      Maintained
14558 F:      drivers/net/wireless/realtek/rtw88/
14559
14560 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14561 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14562 L:      linux-wireless@vger.kernel.org
14563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14564 S:      Maintained
14565 F:      drivers/net/wireless/realtek/rtl8xxxu/
14566
14567 RXRPC SOCKETS (AF_RXRPC)
14568 M:      David Howells <dhowells@redhat.com>
14569 L:      linux-afs@lists.infradead.org
14570 S:      Supported
14571 F:      net/rxrpc/
14572 F:      include/keys/rxrpc-type.h
14573 F:      include/net/af_rxrpc.h
14574 F:      include/trace/events/rxrpc.h
14575 F:      include/uapi/linux/rxrpc.h
14576 F:      Documentation/networking/rxrpc.txt
14577 W:      https://www.infradead.org/~dhowells/kafs/
14578
14579 S3 SAVAGE FRAMEBUFFER DRIVER
14580 M:      Antonino Daplas <adaplas@gmail.com>
14581 L:      linux-fbdev@vger.kernel.org
14582 S:      Maintained
14583 F:      drivers/video/fbdev/savage/
14584
14585 S390
14586 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14587 M:      Vasily Gorbik <gor@linux.ibm.com>
14588 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14589 L:      linux-s390@vger.kernel.org
14590 W:      http://www.ibm.com/developerworks/linux/linux390/
14591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14592 S:      Supported
14593 F:      arch/s390/
14594 F:      drivers/s390/
14595 F:      Documentation/s390/
14596 F:      Documentation/driver-api/s390-drivers.rst
14597
14598 S390 COMMON I/O LAYER
14599 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
14600 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14601 L:      linux-s390@vger.kernel.org
14602 W:      http://www.ibm.com/developerworks/linux/linux390/
14603 S:      Supported
14604 F:      drivers/s390/cio/
14605
14606 S390 DASD DRIVER
14607 M:      Stefan Haberland <sth@linux.ibm.com>
14608 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14609 L:      linux-s390@vger.kernel.org
14610 W:      http://www.ibm.com/developerworks/linux/linux390/
14611 S:      Supported
14612 F:      drivers/s390/block/dasd*
14613 F:      block/partitions/ibm.c
14614
14615 S390 IOMMU (PCI)
14616 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14617 L:      linux-s390@vger.kernel.org
14618 W:      http://www.ibm.com/developerworks/linux/linux390/
14619 S:      Supported
14620 F:      drivers/iommu/s390-iommu.c
14621
14622 S390 IUCV NETWORK LAYER
14623 M:      Julian Wiedmann <jwi@linux.ibm.com>
14624 M:      Ursula Braun <ubraun@linux.ibm.com>
14625 L:      linux-s390@vger.kernel.org
14626 W:      http://www.ibm.com/developerworks/linux/linux390/
14627 S:      Supported
14628 F:      drivers/s390/net/*iucv*
14629 F:      include/net/iucv/
14630 F:      net/iucv/
14631
14632 S390 NETWORK DRIVERS
14633 M:      Julian Wiedmann <jwi@linux.ibm.com>
14634 M:      Ursula Braun <ubraun@linux.ibm.com>
14635 L:      linux-s390@vger.kernel.org
14636 W:      http://www.ibm.com/developerworks/linux/linux390/
14637 S:      Supported
14638 F:      drivers/s390/net/
14639
14640 S390 PCI SUBSYSTEM
14641 M:      Niklas Schnelle <schnelle@linux.ibm.com>
14642 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14643 L:      linux-s390@vger.kernel.org
14644 W:      http://www.ibm.com/developerworks/linux/linux390/
14645 S:      Supported
14646 F:      arch/s390/pci/
14647 F:      drivers/pci/hotplug/s390_pci_hpc.c
14648
14649 S390 VFIO-CCW DRIVER
14650 M:      Cornelia Huck <cohuck@redhat.com>
14651 M:      Eric Farman <farman@linux.ibm.com>
14652 R:      Halil Pasic <pasic@linux.ibm.com>
14653 L:      linux-s390@vger.kernel.org
14654 L:      kvm@vger.kernel.org
14655 S:      Supported
14656 F:      drivers/s390/cio/vfio_ccw*
14657 F:      Documentation/s390/vfio-ccw.rst
14658 F:      include/uapi/linux/vfio_ccw.h
14659
14660 S390 ZCRYPT DRIVER
14661 M:      Harald Freudenberger <freude@linux.ibm.com>
14662 L:      linux-s390@vger.kernel.org
14663 W:      http://www.ibm.com/developerworks/linux/linux390/
14664 S:      Supported
14665 F:      drivers/s390/crypto/
14666
14667 S390 VFIO AP DRIVER
14668 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14669 M:      Pierre Morel <pmorel@linux.ibm.com>
14670 M:      Halil Pasic <pasic@linux.ibm.com>
14671 L:      linux-s390@vger.kernel.org
14672 W:      http://www.ibm.com/developerworks/linux/linux390/
14673 S:      Supported
14674 F:      drivers/s390/crypto/vfio_ap_drv.c
14675 F:      drivers/s390/crypto/vfio_ap_private.h
14676 F:      drivers/s390/crypto/vfio_ap_ops.c
14677 F:      Documentation/s390/vfio-ap.rst
14678
14679 S390 ZFCP DRIVER
14680 M:      Steffen Maier <maier@linux.ibm.com>
14681 M:      Benjamin Block <bblock@linux.ibm.com>
14682 L:      linux-s390@vger.kernel.org
14683 W:      http://www.ibm.com/developerworks/linux/linux390/
14684 S:      Supported
14685 F:      drivers/s390/scsi/zfcp_*
14686
14687 S3C24XX SD/MMC Driver
14688 M:      Ben Dooks <ben-linux@fluff.org>
14689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14690 S:      Supported
14691 F:      drivers/mmc/host/s3cmci.*
14692
14693 SAA6588 RDS RECEIVER DRIVER
14694 M:      Hans Verkuil <hverkuil@xs4all.nl>
14695 L:      linux-media@vger.kernel.org
14696 T:      git git://linuxtv.org/media_tree.git
14697 W:      https://linuxtv.org
14698 S:      Odd Fixes
14699 F:      drivers/media/i2c/saa6588*
14700
14701 SAA7134 VIDEO4LINUX DRIVER
14702 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14703 L:      linux-media@vger.kernel.org
14704 W:      https://linuxtv.org
14705 T:      git git://linuxtv.org/media_tree.git
14706 S:      Odd fixes
14707 F:      Documentation/media/v4l-drivers/saa7134*
14708 F:      drivers/media/pci/saa7134/
14709
14710 SAA7146 VIDEO4LINUX-2 DRIVER
14711 M:      Hans Verkuil <hverkuil@xs4all.nl>
14712 L:      linux-media@vger.kernel.org
14713 T:      git git://linuxtv.org/media_tree.git
14714 S:      Maintained
14715 F:      drivers/media/common/saa7146/
14716 F:      drivers/media/pci/saa7146/
14717 F:      include/media/drv-intf/saa7146*
14718
14719 SAFESETID SECURITY MODULE
14720 M:      Micah Morton <mortonm@chromium.org>
14721 S:      Supported
14722 F:      security/safesetid/
14723 F:      Documentation/admin-guide/LSM/SafeSetID.rst
14724
14725 SAMSUNG AUDIO (ASoC) DRIVERS
14726 M:      Krzysztof Kozlowski <krzk@kernel.org>
14727 M:      Sangbeom Kim <sbkim73@samsung.com>
14728 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14730 S:      Supported
14731 F:      sound/soc/samsung/
14732 F:      Documentation/devicetree/bindings/sound/samsung*
14733
14734 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14735 M:      Krzysztof Kozlowski <krzk@kernel.org>
14736 L:      linux-crypto@vger.kernel.org
14737 L:      linux-samsung-soc@vger.kernel.org
14738 S:      Maintained
14739 F:      drivers/crypto/exynos-rng.c
14740 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
14741
14742 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14743 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14744 L:      linux-samsung-soc@vger.kernel.org
14745 S:      Maintained
14746 F:      drivers/char/hw_random/exynos-trng.c
14747 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14748
14749 SAMSUNG FRAMEBUFFER DRIVER
14750 M:      Jingoo Han <jingoohan1@gmail.com>
14751 L:      linux-fbdev@vger.kernel.org
14752 S:      Maintained
14753 F:      drivers/video/fbdev/s3c-fb.c
14754
14755 SAMSUNG LAPTOP DRIVER
14756 M:      Corentin Chary <corentin.chary@gmail.com>
14757 L:      platform-driver-x86@vger.kernel.org
14758 S:      Maintained
14759 F:      drivers/platform/x86/samsung-laptop.c
14760
14761 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14762 M:      Sangbeom Kim <sbkim73@samsung.com>
14763 M:      Krzysztof Kozlowski <krzk@kernel.org>
14764 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14765 L:      linux-kernel@vger.kernel.org
14766 L:      linux-samsung-soc@vger.kernel.org
14767 S:      Supported
14768 F:      drivers/mfd/sec*.c
14769 F:      drivers/regulator/s2m*.c
14770 F:      drivers/regulator/s5m*.c
14771 F:      drivers/clk/clk-s2mps11.c
14772 F:      drivers/rtc/rtc-s5m.c
14773 F:      include/linux/mfd/samsung/
14774 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14775 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14776 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14777 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14778
14779 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14780 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14781 L:      linux-media@vger.kernel.org
14782 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14783 S:      Maintained
14784 F:      drivers/media/platform/s3c-camif/
14785 F:      include/media/drv-intf/s3c_camif.h
14786
14787 SAMSUNG S3FWRN5 NFC DRIVER
14788 M:      Robert Baldyga <r.baldyga@samsung.com>
14789 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14790 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14791 S:      Supported
14792 F:      drivers/nfc/s3fwrn5
14793
14794 SAMSUNG S5C73M3 CAMERA DRIVER
14795 M:      Kyungmin Park <kyungmin.park@samsung.com>
14796 M:      Andrzej Hajda <a.hajda@samsung.com>
14797 L:      linux-media@vger.kernel.org
14798 S:      Supported
14799 F:      drivers/media/i2c/s5c73m3/*
14800
14801 SAMSUNG S5K5BAF CAMERA DRIVER
14802 M:      Kyungmin Park <kyungmin.park@samsung.com>
14803 M:      Andrzej Hajda <a.hajda@samsung.com>
14804 L:      linux-media@vger.kernel.org
14805 S:      Supported
14806 F:      drivers/media/i2c/s5k5baf.c
14807
14808 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14809 M:      Krzysztof Kozlowski <krzk@kernel.org>
14810 M:      Vladimir Zapolskiy <vz@mleia.com>
14811 M:      Kamil Konieczny <k.konieczny@samsung.com>
14812 L:      linux-crypto@vger.kernel.org
14813 L:      linux-samsung-soc@vger.kernel.org
14814 S:      Maintained
14815 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
14816 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
14817 F:      drivers/crypto/s5p-sss.c
14818
14819 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14820 M:      Kyungmin Park <kyungmin.park@samsung.com>
14821 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14822 L:      linux-media@vger.kernel.org
14823 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14824 S:      Supported
14825 F:      drivers/media/platform/exynos4-is/
14826
14827 SAMSUNG SOC CLOCK DRIVERS
14828 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14829 M:      Tomasz Figa <tomasz.figa@gmail.com>
14830 M:      Chanwoo Choi <cw00.choi@samsung.com>
14831 S:      Supported
14832 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14834 F:      drivers/clk/samsung/
14835 F:      include/dt-bindings/clock/exynos*.h
14836 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14837 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14838 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14839
14840 SAMSUNG SPI DRIVERS
14841 M:      Kukjin Kim <kgene@kernel.org>
14842 M:      Krzysztof Kozlowski <krzk@kernel.org>
14843 M:      Andi Shyti <andi@etezian.org>
14844 L:      linux-spi@vger.kernel.org
14845 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14846 S:      Maintained
14847 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14848 F:      drivers/spi/spi-s3c*
14849 F:      include/linux/platform_data/spi-s3c64xx.h
14850
14851 SAMSUNG SXGBE DRIVERS
14852 M:      Byungho An <bh74.an@samsung.com>
14853 S:      Supported
14854 L:      netdev@vger.kernel.org
14855 F:      drivers/net/ethernet/samsung/sxgbe/
14856
14857 SAMSUNG THERMAL DRIVER
14858 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14859 L:      linux-pm@vger.kernel.org
14860 L:      linux-samsung-soc@vger.kernel.org
14861 S:      Supported
14862 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14863 F:      drivers/thermal/samsung/
14864
14865 SAMSUNG USB2 PHY DRIVER
14866 M:      Kamil Debski <kamil@wypas.org>
14867 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14868 L:      linux-kernel@vger.kernel.org
14869 S:      Supported
14870 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14871 F:      Documentation/driver-api/phy/samsung-usb2.rst
14872 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14873 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14874 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14875 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14876 F:      drivers/phy/samsung/phy-samsung-usb2.c
14877 F:      drivers/phy/samsung/phy-samsung-usb2.h
14878
14879 SC1200 WDT DRIVER
14880 M:      Zwane Mwaikambo <zwanem@gmail.com>
14881 S:      Maintained
14882 F:      drivers/watchdog/sc1200wdt.c
14883
14884 SCHEDULER
14885 M:      Ingo Molnar <mingo@redhat.com>
14886 M:      Peter Zijlstra <peterz@infradead.org>
14887 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14888 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14889 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14890 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14891 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14892 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14893 L:      linux-kernel@vger.kernel.org
14894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14895 S:      Maintained
14896 F:      kernel/sched/
14897 F:      include/linux/sched.h
14898 F:      include/uapi/linux/sched.h
14899 F:      include/linux/wait.h
14900 F:      include/linux/preempt.h
14901
14902 SCR24X CHIP CARD INTERFACE DRIVER
14903 M:      Lubomir Rintel <lkundrak@v3.sk>
14904 S:      Supported
14905 F:      drivers/char/pcmcia/scr24x_cs.c
14906
14907 SCSI CDROM DRIVER
14908 M:      Jens Axboe <axboe@kernel.dk>
14909 L:      linux-scsi@vger.kernel.org
14910 W:      http://www.kernel.dk
14911 S:      Maintained
14912 F:      drivers/scsi/sr*
14913
14914 SCSI RDMA PROTOCOL (SRP) INITIATOR
14915 M:      Bart Van Assche <bvanassche@acm.org>
14916 L:      linux-rdma@vger.kernel.org
14917 S:      Supported
14918 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14919 F:      drivers/infiniband/ulp/srp/
14920 F:      include/scsi/srp.h
14921
14922 SCSI RDMA PROTOCOL (SRP) TARGET
14923 M:      Bart Van Assche <bvanassche@acm.org>
14924 L:      linux-rdma@vger.kernel.org
14925 L:      target-devel@vger.kernel.org
14926 S:      Supported
14927 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14928 F:      drivers/infiniband/ulp/srpt/
14929
14930 SCSI SG DRIVER
14931 M:      Doug Gilbert <dgilbert@interlog.com>
14932 L:      linux-scsi@vger.kernel.org
14933 W:      http://sg.danny.cz/sg
14934 S:      Maintained
14935 F:      Documentation/scsi/scsi-generic.rst
14936 F:      drivers/scsi/sg.c
14937 F:      include/scsi/sg.h
14938
14939 SCSI SUBSYSTEM
14940 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14942 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14944 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14945 L:      linux-scsi@vger.kernel.org
14946 S:      Maintained
14947 F:      Documentation/devicetree/bindings/scsi/
14948 F:      drivers/scsi/
14949 F:      include/scsi/
14950
14951 SCSI TAPE DRIVER
14952 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14953 L:      linux-scsi@vger.kernel.org
14954 S:      Maintained
14955 F:      Documentation/scsi/st.rst
14956 F:      drivers/scsi/st.*
14957 F:      drivers/scsi/st_*.h
14958
14959 SCSI TARGET SUBSYSTEM
14960 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14961 L:      linux-scsi@vger.kernel.org
14962 L:      target-devel@vger.kernel.org
14963 W:      http://www.linux-iscsi.org
14964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14965 Q:      https://patchwork.kernel.org/project/target-devel/list/
14966 S:      Supported
14967 F:      drivers/target/
14968 F:      include/target/
14969 F:      Documentation/target/
14970
14971 SCTP PROTOCOL
14972 M:      Vlad Yasevich <vyasevich@gmail.com>
14973 M:      Neil Horman <nhorman@tuxdriver.com>
14974 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14975 L:      linux-sctp@vger.kernel.org
14976 W:      http://lksctp.sourceforge.net
14977 S:      Maintained
14978 F:      Documentation/networking/sctp.txt
14979 F:      include/linux/sctp.h
14980 F:      include/uapi/linux/sctp.h
14981 F:      include/net/sctp/
14982 F:      net/sctp/
14983
14984 SCx200 CPU SUPPORT
14985 M:      Jim Cromie <jim.cromie@gmail.com>
14986 S:      Odd Fixes
14987 F:      Documentation/i2c/busses/scx200_acb.rst
14988 F:      arch/x86/platform/scx200/
14989 F:      drivers/watchdog/scx200_wdt.c
14990 F:      drivers/i2c/busses/scx200*
14991 F:      drivers/mtd/maps/scx200_docflash.c
14992 F:      include/linux/scx200.h
14993
14994 SCx200 GPIO DRIVER
14995 M:      Jim Cromie <jim.cromie@gmail.com>
14996 S:      Maintained
14997 F:      drivers/char/scx200_gpio.c
14998 F:      include/linux/scx200_gpio.h
14999
15000 SCx200 HRT CLOCKSOURCE DRIVER
15001 M:      Jim Cromie <jim.cromie@gmail.com>
15002 S:      Maintained
15003 F:      drivers/clocksource/scx200_hrt.c
15004
15005 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
15006 M:      Sascha Sommer <saschasommer@freenet.de>
15007 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
15008 S:      Maintained
15009 F:      drivers/mmc/host/sdricoh_cs.c
15010
15011 SECO BOARDS CEC DRIVER
15012 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
15013 S:      Maintained
15014 F:      drivers/media/platform/seco-cec/seco-cec.c
15015 F:      drivers/media/platform/seco-cec/seco-cec.h
15016
15017 SECURE COMPUTING
15018 M:      Kees Cook <keescook@chromium.org>
15019 R:      Andy Lutomirski <luto@amacapital.net>
15020 R:      Will Drewry <wad@chromium.org>
15021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
15022 S:      Supported
15023 F:      kernel/seccomp.c
15024 F:      include/uapi/linux/seccomp.h
15025 F:      include/linux/seccomp.h
15026 F:      tools/testing/selftests/seccomp/*
15027 F:      tools/testing/selftests/kselftest_harness.h
15028 F:      Documentation/userspace-api/seccomp_filter.rst
15029 K:      \bsecure_computing
15030 K:      \bTIF_SECCOMP\b
15031
15032 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
15033 M:      Al Cooper <alcooperx@gmail.com>
15034 L:      linux-mmc@vger.kernel.org
15035 L:      bcm-kernel-feedback-list@broadcom.com
15036 S:      Maintained
15037 F:      drivers/mmc/host/sdhci-brcmstb*
15038
15039 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
15040 M:      Adrian Hunter <adrian.hunter@intel.com>
15041 L:      linux-mmc@vger.kernel.org
15042 S:      Maintained
15043 F:      drivers/mmc/host/sdhci*
15044 F:      include/linux/mmc/sdhci*
15045
15046 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
15047 M:      Adrian Hunter <adrian.hunter@intel.com>
15048 M:      Ritesh Harjani <riteshh@codeaurora.org>
15049 M:      Asutosh Das <asutoshd@codeaurora.org>
15050 L:      linux-mmc@vger.kernel.org
15051 S:      Maintained
15052 F:      drivers/mmc/host/cqhci*
15053
15054 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
15055 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
15056 M:      Manjunath M B <manjumb@synopsys.com>
15057 L:      linux-mmc@vger.kernel.org
15058 S:      Maintained
15059 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
15060
15061 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
15062 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15063 L:      linux-mmc@vger.kernel.org
15064 S:      Supported
15065 F:      drivers/mmc/host/sdhci-of-at91.c
15066
15067 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
15068 M:      Ben Dooks <ben-linux@fluff.org>
15069 M:      Jaehoon Chung <jh80.chung@samsung.com>
15070 L:      linux-mmc@vger.kernel.org
15071 S:      Maintained
15072 F:      drivers/mmc/host/sdhci-s3c*
15073
15074 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
15075 M:      Viresh Kumar <vireshk@kernel.org>
15076 L:      linux-mmc@vger.kernel.org
15077 S:      Maintained
15078 F:      drivers/mmc/host/sdhci-spear.c
15079
15080 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
15081 M:      Kishon Vijay Abraham I <kishon@ti.com>
15082 L:      linux-mmc@vger.kernel.org
15083 S:      Maintained
15084 F:      drivers/mmc/host/sdhci-omap.c
15085
15086 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
15087 M:      Jonathan Derrick <jonathan.derrick@intel.com>
15088 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
15089 L:      linux-block@vger.kernel.org
15090 S:      Supported
15091 F:      block/sed*
15092 F:      block/opal_proto.h
15093 F:      include/linux/sed*
15094 F:      include/uapi/linux/sed*
15095
15096 SECURITY CONTACT
15097 M:      Security Officers <security@kernel.org>
15098 S:      Supported
15099
15100 SECURITY SUBSYSTEM
15101 M:      James Morris <jmorris@namei.org>
15102 M:      "Serge E. Hallyn" <serge@hallyn.com>
15103 L:      linux-security-module@vger.kernel.org (suggested Cc:)
15104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
15105 W:      http://kernsec.org/
15106 S:      Supported
15107 F:      security/
15108 X:      security/selinux/
15109
15110 SELINUX SECURITY MODULE
15111 M:      Paul Moore <paul@paul-moore.com>
15112 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
15113 M:      Eric Paris <eparis@parisplace.org>
15114 L:      selinux@vger.kernel.org
15115 W:      https://selinuxproject.org
15116 W:      https://github.com/SELinuxProject
15117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
15118 S:      Supported
15119 F:      include/uapi/linux/selinux_netlink.h
15120 F:      security/selinux/
15121 F:      scripts/selinux/
15122 F:      Documentation/admin-guide/LSM/SELinux.rst
15123 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
15124 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
15125
15126 SENSABLE PHANTOM
15127 M:      Jiri Slaby <jirislaby@gmail.com>
15128 S:      Maintained
15129 F:      drivers/misc/phantom.c
15130 F:      include/uapi/linux/phantom.h
15131
15132 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
15133 M:      Tomasz Duszynski <tduszyns@gmail.com>
15134 S:      Maintained
15135 F:      drivers/iio/chemical/sps30.c
15136 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
15137
15138 SERIAL DEVICE BUS
15139 M:      Rob Herring <robh@kernel.org>
15140 L:      linux-serial@vger.kernel.org
15141 S:      Maintained
15142 F:      Documentation/devicetree/bindings/serial/serial.yaml
15143 F:      drivers/tty/serdev/
15144 F:      include/linux/serdev.h
15145
15146 SERIAL DRIVERS
15147 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15148 L:      linux-serial@vger.kernel.org
15149 S:      Maintained
15150 F:      Documentation/devicetree/bindings/serial/
15151 F:      drivers/tty/serial/
15152
15153 SERIAL IR RECEIVER
15154 M:      Sean Young <sean@mess.org>
15155 L:      linux-media@vger.kernel.org
15156 S:      Maintained
15157 F:      drivers/media/rc/serial_ir.c
15158
15159 SFC NETWORK DRIVER
15160 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
15161 M:      Edward Cree <ecree@solarflare.com>
15162 M:      Martin Habets <mhabets@solarflare.com>
15163 L:      netdev@vger.kernel.org
15164 S:      Supported
15165 F:      drivers/net/ethernet/sfc/
15166
15167 SFF/SFP/SFP+ MODULE SUPPORT
15168 M:      Russell King <linux@armlinux.org.uk>
15169 L:      netdev@vger.kernel.org
15170 S:      Maintained
15171 F:      drivers/net/phy/phylink.c
15172 F:      drivers/net/phy/sfp*
15173 F:      include/linux/phylink.h
15174 F:      include/linux/sfp.h
15175 K:      phylink
15176
15177 SGI GRU DRIVER
15178 M:      Dimitri Sivanich <sivanich@sgi.com>
15179 S:      Maintained
15180 F:      drivers/misc/sgi-gru/
15181
15182 SGI XP/XPC/XPNET DRIVER
15183 M:      Cliff Whickman <cpw@sgi.com>
15184 M:      Robin Holt <robinmholt@gmail.com>
15185 S:      Maintained
15186 F:      drivers/misc/sgi-xp/
15187
15188 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
15189 M:      Ursula Braun <ubraun@linux.ibm.com>
15190 M:      Karsten Graul <kgraul@linux.ibm.com>
15191 L:      linux-s390@vger.kernel.org
15192 W:      http://www.ibm.com/developerworks/linux/linux390/
15193 S:      Supported
15194 F:      net/smc/
15195
15196 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
15197 M:      Linus Walleij <linus.walleij@linaro.org>
15198 L:      linux-iio@vger.kernel.org
15199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
15200 S:      Maintained
15201 F:      drivers/iio/light/gp2ap002.c
15202 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
15203
15204 SHARP RJ54N1CB0C SENSOR DRIVER
15205 M:      Jacopo Mondi <jacopo@jmondi.org>
15206 L:      linux-media@vger.kernel.org
15207 T:      git git://linuxtv.org/media_tree.git
15208 S:      Odd fixes
15209 F:      drivers/media/i2c/rj54n1cb0c.c
15210 F:      include/media/i2c/rj54n1cb0c.h
15211
15212 SH_VEU V4L2 MEM2MEM DRIVER
15213 L:      linux-media@vger.kernel.org
15214 S:      Orphan
15215 F:      drivers/media/platform/sh_veu.c
15216
15217 SH_VOU V4L2 OUTPUT DRIVER
15218 L:      linux-media@vger.kernel.org
15219 S:      Orphan
15220 F:      drivers/media/platform/sh_vou.c
15221 F:      include/media/drv-intf/sh_vou.h
15222
15223 SI2157 MEDIA DRIVER
15224 M:      Antti Palosaari <crope@iki.fi>
15225 L:      linux-media@vger.kernel.org
15226 W:      https://linuxtv.org
15227 W:      http://palosaari.fi/linux/
15228 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15229 T:      git git://linuxtv.org/anttip/media_tree.git
15230 S:      Maintained
15231 F:      drivers/media/tuners/si2157*
15232
15233 SI2165 MEDIA DRIVER
15234 M:      Matthias Schwarzott <zzam@gentoo.org>
15235 L:      linux-media@vger.kernel.org
15236 W:      https://linuxtv.org
15237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15238 S:      Maintained
15239 F:      drivers/media/dvb-frontends/si2165*
15240
15241 SI2168 MEDIA DRIVER
15242 M:      Antti Palosaari <crope@iki.fi>
15243 L:      linux-media@vger.kernel.org
15244 W:      https://linuxtv.org
15245 W:      http://palosaari.fi/linux/
15246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15247 T:      git git://linuxtv.org/anttip/media_tree.git
15248 S:      Maintained
15249 F:      drivers/media/dvb-frontends/si2168*
15250
15251 SI470X FM RADIO RECEIVER I2C DRIVER
15252 M:      Hans Verkuil <hverkuil@xs4all.nl>
15253 L:      linux-media@vger.kernel.org
15254 T:      git git://linuxtv.org/media_tree.git
15255 W:      https://linuxtv.org
15256 S:      Odd Fixes
15257 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
15258
15259 SI470X FM RADIO RECEIVER USB DRIVER
15260 M:      Hans Verkuil <hverkuil@xs4all.nl>
15261 L:      linux-media@vger.kernel.org
15262 T:      git git://linuxtv.org/media_tree.git
15263 W:      https://linuxtv.org
15264 S:      Maintained
15265 F:      drivers/media/radio/si470x/radio-si470x-common.c
15266 F:      drivers/media/radio/si470x/radio-si470x.h
15267 F:      drivers/media/radio/si470x/radio-si470x-usb.c
15268
15269 SI4713 FM RADIO TRANSMITTER I2C DRIVER
15270 M:      Eduardo Valentin <edubezval@gmail.com>
15271 L:      linux-media@vger.kernel.org
15272 T:      git git://linuxtv.org/media_tree.git
15273 W:      https://linuxtv.org
15274 S:      Odd Fixes
15275 F:      drivers/media/radio/si4713/si4713.?
15276
15277 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
15278 M:      Eduardo Valentin <edubezval@gmail.com>
15279 L:      linux-media@vger.kernel.org
15280 T:      git git://linuxtv.org/media_tree.git
15281 W:      https://linuxtv.org
15282 S:      Odd Fixes
15283 F:      drivers/media/radio/si4713/radio-platform-si4713.c
15284
15285 SI4713 FM RADIO TRANSMITTER USB DRIVER
15286 M:      Hans Verkuil <hverkuil@xs4all.nl>
15287 L:      linux-media@vger.kernel.org
15288 T:      git git://linuxtv.org/media_tree.git
15289 W:      https://linuxtv.org
15290 S:      Maintained
15291 F:      drivers/media/radio/si4713/radio-usb-si4713.c
15292
15293 SIANO DVB DRIVER
15294 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15295 L:      linux-media@vger.kernel.org
15296 W:      https://linuxtv.org
15297 T:      git git://linuxtv.org/media_tree.git
15298 S:      Odd fixes
15299 F:      drivers/media/common/siano/
15300 F:      drivers/media/usb/siano/
15301 F:      drivers/media/usb/siano/
15302 F:      drivers/media/mmc/siano/
15303
15304 SIFIVE PDMA DRIVER
15305 M:      Green Wan <green.wan@sifive.com>
15306 S:      Maintained
15307 F:      drivers/dma/sf-pdma/
15308 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
15309
15310 SIFIVE DRIVERS
15311 M:      Palmer Dabbelt <palmer@dabbelt.com>
15312 M:      Paul Walmsley <paul.walmsley@sifive.com>
15313 L:      linux-riscv@lists.infradead.org
15314 T:      git git://github.com/sifive/riscv-linux.git
15315 S:      Supported
15316 K:      [^@]sifive
15317 N:      sifive
15318
15319 SIFIVE FU540 SYSTEM-ON-CHIP
15320 M:      Paul Walmsley <paul.walmsley@sifive.com>
15321 M:      Palmer Dabbelt <palmer@dabbelt.com>
15322 L:      linux-riscv@lists.infradead.org
15323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
15324 S:      Supported
15325 K:      fu540
15326 N:      fu540
15327
15328 SILEAD TOUCHSCREEN DRIVER
15329 M:      Hans de Goede <hdegoede@redhat.com>
15330 L:      linux-input@vger.kernel.org
15331 L:      platform-driver-x86@vger.kernel.org
15332 S:      Maintained
15333 F:      drivers/input/touchscreen/silead.c
15334 F:      drivers/platform/x86/touchscreen_dmi.c
15335
15336 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
15337 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
15338 S:      Supported
15339 F:      drivers/staging/wfx/
15340
15341 SILICON MOTION SM712 FRAME BUFFER DRIVER
15342 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15343 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15344 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15345 L:      linux-fbdev@vger.kernel.org
15346 S:      Maintained
15347 F:      drivers/video/fbdev/sm712*
15348 F:      Documentation/fb/sm712fb.rst
15349
15350 SIMPLE FIRMWARE INTERFACE (SFI)
15351 W:      http://simplefirmware.org/
15352 S:      Obsolete
15353 F:      arch/x86/platform/sfi/
15354 F:      drivers/sfi/
15355 F:      include/linux/sfi*.h
15356
15357 SIMPLEFB FB DRIVER
15358 M:      Hans de Goede <hdegoede@redhat.com>
15359 L:      linux-fbdev@vger.kernel.org
15360 S:      Maintained
15361 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
15362 F:      drivers/video/fbdev/simplefb.c
15363 F:      include/linux/platform_data/simplefb.h
15364
15365 SIMTEC EB110ATX (Chalice CATS)
15366 M:      Vincent Sanders <vince@simtec.co.uk>
15367 M:      Simtec Linux Team <linux@simtec.co.uk>
15368 W:      http://www.simtec.co.uk/products/EB110ATX/
15369 S:      Supported
15370
15371 SIMTEC EB2410ITX (BAST)
15372 M:      Vincent Sanders <vince@simtec.co.uk>
15373 M:      Simtec Linux Team <linux@simtec.co.uk>
15374 W:      http://www.simtec.co.uk/products/EB2410ITX/
15375 S:      Supported
15376 F:      arch/arm/mach-s3c24xx/mach-bast.c
15377 F:      arch/arm/mach-s3c24xx/bast-ide.c
15378 F:      arch/arm/mach-s3c24xx/bast-irq.c
15379
15380 SIPHASH PRF ROUTINES
15381 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15382 S:      Maintained
15383 F:      lib/siphash.c
15384 F:      lib/test_siphash.c
15385 F:      include/linux/siphash.h
15386
15387 SIOX
15388 M:      Thorsten Scherer <t.scherer@eckelmann.de>
15389 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15390 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15391 S:      Supported
15392 F:      drivers/siox/*
15393 F:      drivers/gpio/gpio-siox.c
15394 F:      include/trace/events/siox.h
15395
15396 SIS 190 ETHERNET DRIVER
15397 M:      Francois Romieu <romieu@fr.zoreil.com>
15398 L:      netdev@vger.kernel.org
15399 S:      Maintained
15400 F:      drivers/net/ethernet/sis/sis190.c
15401
15402 SIS 900/7016 FAST ETHERNET DRIVER
15403 M:      Daniele Venzano <venza@brownhat.org>
15404 W:      http://www.brownhat.org/sis900.html
15405 L:      netdev@vger.kernel.org
15406 S:      Maintained
15407 F:      drivers/net/ethernet/sis/sis900.*
15408
15409 SIS FRAMEBUFFER DRIVER
15410 M:      Thomas Winischhofer <thomas@winischhofer.net>
15411 W:      http://www.winischhofer.net/linuxsisvga.shtml
15412 S:      Maintained
15413 F:      Documentation/fb/sisfb.rst
15414 F:      drivers/video/fbdev/sis/
15415 F:      include/video/sisfb.h
15416
15417 SIS USB2VGA DRIVER
15418 M:      Thomas Winischhofer <thomas@winischhofer.net>
15419 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
15420 S:      Maintained
15421 F:      drivers/usb/misc/sisusbvga/
15422
15423 SLAB ALLOCATOR
15424 M:      Christoph Lameter <cl@linux.com>
15425 M:      Pekka Enberg <penberg@kernel.org>
15426 M:      David Rientjes <rientjes@google.com>
15427 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
15428 M:      Andrew Morton <akpm@linux-foundation.org>
15429 L:      linux-mm@kvack.org
15430 S:      Maintained
15431 F:      include/linux/sl?b*.h
15432 F:      mm/sl?b*
15433
15434 SLEEPABLE READ-COPY UPDATE (SRCU)
15435 M:      Lai Jiangshan <jiangshanlai@gmail.com>
15436 M:      "Paul E. McKenney" <paulmck@kernel.org>
15437 M:      Josh Triplett <josh@joshtriplett.org>
15438 R:      Steven Rostedt <rostedt@goodmis.org>
15439 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15440 L:      rcu@vger.kernel.org
15441 W:      http://www.rdrop.com/users/paulmck/RCU/
15442 S:      Supported
15443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15444 F:      include/linux/srcu*.h
15445 F:      kernel/rcu/srcu*.c
15446
15447 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
15448 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15449 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15450 S:      Maintained
15451 F:      drivers/slimbus/
15452 F:      Documentation/devicetree/bindings/slimbus/
15453 F:      include/linux/slimbus.h
15454
15455 SMACK SECURITY MODULE
15456 M:      Casey Schaufler <casey@schaufler-ca.com>
15457 L:      linux-security-module@vger.kernel.org
15458 W:      http://schaufler-ca.com
15459 T:      git git://github.com/cschaufler/smack-next
15460 S:      Maintained
15461 F:      Documentation/admin-guide/LSM/Smack.rst
15462 F:      security/smack/
15463
15464 SMC91x ETHERNET DRIVER
15465 M:      Nicolas Pitre <nico@fluxnic.net>
15466 S:      Odd Fixes
15467 F:      drivers/net/ethernet/smsc/smc91x.*
15468
15469 SMIA AND SMIA++ IMAGE SENSOR DRIVER
15470 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15471 L:      linux-media@vger.kernel.org
15472 S:      Maintained
15473 F:      drivers/media/i2c/smiapp/
15474 F:      drivers/media/i2c/smiapp-pll.c
15475 F:      drivers/media/i2c/smiapp-pll.h
15476 F:      include/uapi/linux/smiapp.h
15477 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
15478
15479 SMM665 HARDWARE MONITOR DRIVER
15480 M:      Guenter Roeck <linux@roeck-us.net>
15481 L:      linux-hwmon@vger.kernel.org
15482 S:      Maintained
15483 F:      Documentation/hwmon/smm665.rst
15484 F:      drivers/hwmon/smm665.c
15485
15486 SMSC EMC2103 HARDWARE MONITOR DRIVER
15487 M:      Steve Glendinning <steve.glendinning@shawell.net>
15488 L:      linux-hwmon@vger.kernel.org
15489 S:      Maintained
15490 F:      Documentation/hwmon/emc2103.rst
15491 F:      drivers/hwmon/emc2103.c
15492
15493 SMSC SCH5627 HARDWARE MONITOR DRIVER
15494 M:      Hans de Goede <hdegoede@redhat.com>
15495 L:      linux-hwmon@vger.kernel.org
15496 S:      Supported
15497 F:      Documentation/hwmon/sch5627.rst
15498 F:      drivers/hwmon/sch5627.c
15499
15500 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15501 M:      Steve Glendinning <steve.glendinning@shawell.net>
15502 L:      linux-fbdev@vger.kernel.org
15503 S:      Maintained
15504 F:      drivers/video/fbdev/smscufx.c
15505
15506 SMSC47B397 HARDWARE MONITOR DRIVER
15507 M:      Jean Delvare <jdelvare@suse.com>
15508 L:      linux-hwmon@vger.kernel.org
15509 S:      Maintained
15510 F:      Documentation/hwmon/smsc47b397.rst
15511 F:      drivers/hwmon/smsc47b397.c
15512
15513 SMSC911x ETHERNET DRIVER
15514 M:      Steve Glendinning <steve.glendinning@shawell.net>
15515 L:      netdev@vger.kernel.org
15516 S:      Maintained
15517 F:      include/linux/smsc911x.h
15518 F:      drivers/net/ethernet/smsc/smsc911x.*
15519
15520 SMSC9420 PCI ETHERNET DRIVER
15521 M:      Steve Glendinning <steve.glendinning@shawell.net>
15522 L:      netdev@vger.kernel.org
15523 S:      Maintained
15524 F:      drivers/net/ethernet/smsc/smsc9420.*
15525
15526 SOC-CAMERA V4L2 SUBSYSTEM
15527 L:      linux-media@vger.kernel.org
15528 T:      git git://linuxtv.org/media_tree.git
15529 S:      Orphan
15530 F:      include/media/soc_camera.h
15531 F:      drivers/staging/media/soc_camera/
15532
15533 SOCIONEXT SYNQUACER I2C DRIVER
15534 M:      Ard Biesheuvel <ardb@kernel.org>
15535 L:      linux-i2c@vger.kernel.org
15536 S:      Maintained
15537 F:      drivers/i2c/busses/i2c-synquacer.c
15538 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15539
15540 SOCIONEXT UNIPHIER SOUND DRIVER
15541 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15542 S:      Orphan
15543 F:      sound/soc/uniphier/
15544
15545 SOEKRIS NET48XX LED SUPPORT
15546 M:      Chris Boot <bootc@bootc.net>
15547 S:      Maintained
15548 F:      drivers/leds/leds-net48xx.c
15549
15550 SOFT-IWARP DRIVER (siw)
15551 M:      Bernard Metzler <bmt@zurich.ibm.com>
15552 L:      linux-rdma@vger.kernel.org
15553 S:      Supported
15554 F:      drivers/infiniband/sw/siw/
15555 F:      include/uapi/rdma/siw-abi.h
15556
15557 SOFT-ROCE DRIVER (rxe)
15558 M:      Zhu Yanjun <yanjunz@mellanox.com>
15559 L:      linux-rdma@vger.kernel.org
15560 S:      Supported
15561 F:      drivers/infiniband/sw/rxe/
15562 F:      include/uapi/rdma/rdma_user_rxe.h
15563
15564 SOFTLOGIC 6x10 MPEG CODEC
15565 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15566 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15567 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15568 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15569 M:      Ismael Luceno <ismael@iodev.co.uk>
15570 L:      linux-media@vger.kernel.org
15571 S:      Supported
15572 F:      drivers/media/pci/solo6x10/
15573
15574 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15575 M:      James Morse <james.morse@arm.com>
15576 L:      linux-arm-kernel@lists.infradead.org
15577 S:      Maintained
15578 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15579 F:      drivers/firmware/arm_sdei.c
15580 F:      include/linux/arm_sdei.h
15581 F:      include/uapi/linux/arm_sdei.h
15582
15583 SOFTWARE RAID (Multiple Disks) SUPPORT
15584 M:      Song Liu <song@kernel.org>
15585 L:      linux-raid@vger.kernel.org
15586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15587 S:      Supported
15588 F:      drivers/md/Makefile
15589 F:      drivers/md/Kconfig
15590 F:      drivers/md/md*
15591 F:      drivers/md/raid*
15592 F:      include/linux/raid/
15593 F:      include/uapi/linux/raid/
15594
15595 SOCIONEXT (SNI) AVE NETWORK DRIVER
15596 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15597 L:      netdev@vger.kernel.org
15598 S:      Maintained
15599 F:      drivers/net/ethernet/socionext/sni_ave.c
15600 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15601
15602 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15603 M:      Jassi Brar <jaswinder.singh@linaro.org>
15604 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15605 L:      netdev@vger.kernel.org
15606 S:      Maintained
15607 F:      drivers/net/ethernet/socionext/netsec.c
15608 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15609
15610 SOCIONEXT (SNI) Synquacer SPI DRIVER
15611 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15612 M:      Jassi Brar <jaswinder.singh@linaro.org>
15613 L:      linux-spi@vger.kernel.org
15614 S:      Maintained
15615 F:      drivers/spi/spi-synquacer.c
15616 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15617
15618 SOLIDRUN CLEARFOG SUPPORT
15619 M:      Russell King <linux@armlinux.org.uk>
15620 S:      Maintained
15621 F:      arch/arm/boot/dts/armada-388-clearfog*
15622 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15623
15624 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15625 M:      Russell King <linux@armlinux.org.uk>
15626 S:      Maintained
15627 F:      arch/arm/boot/dts/imx6*-cubox-i*
15628 F:      arch/arm/boot/dts/imx6*-hummingboard*
15629 F:      arch/arm/boot/dts/imx6*-sr-*
15630
15631 SONIC NETWORK DRIVER
15632 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15633 L:      netdev@vger.kernel.org
15634 S:      Maintained
15635 F:      drivers/net/ethernet/natsemi/sonic.*
15636
15637 SONICS SILICON BACKPLANE DRIVER (SSB)
15638 M:      Michael Buesch <m@bues.ch>
15639 L:      linux-wireless@vger.kernel.org
15640 S:      Maintained
15641 F:      drivers/ssb/
15642 F:      include/linux/ssb/
15643
15644 SONY IMX214 SENSOR DRIVER
15645 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15646 L:      linux-media@vger.kernel.org
15647 T:      git git://linuxtv.org/media_tree.git
15648 S:      Maintained
15649 F:      drivers/media/i2c/imx214.c
15650 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15651
15652 SONY IMX219 SENSOR DRIVER
15653 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15654 L:      linux-media@vger.kernel.org
15655 T:      git git://linuxtv.org/media_tree.git
15656 S:      Maintained
15657 F:      drivers/media/i2c/imx219.c
15658 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
15659
15660 SONY IMX258 SENSOR DRIVER
15661 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15662 L:      linux-media@vger.kernel.org
15663 T:      git git://linuxtv.org/media_tree.git
15664 S:      Maintained
15665 F:      drivers/media/i2c/imx258.c
15666
15667 SONY IMX274 SENSOR DRIVER
15668 M:      Leon Luo <leonl@leopardimaging.com>
15669 L:      linux-media@vger.kernel.org
15670 T:      git git://linuxtv.org/media_tree.git
15671 S:      Maintained
15672 F:      drivers/media/i2c/imx274.c
15673 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15674
15675 SONY IMX290 SENSOR DRIVER
15676 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15677 L:      linux-media@vger.kernel.org
15678 T:      git git://linuxtv.org/media_tree.git
15679 S:      Maintained
15680 F:      drivers/media/i2c/imx290.c
15681 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
15682
15683 SONY IMX319 SENSOR DRIVER
15684 M:      Bingbu Cao <bingbu.cao@intel.com>
15685 L:      linux-media@vger.kernel.org
15686 T:      git git://linuxtv.org/media_tree.git
15687 S:      Maintained
15688 F:      drivers/media/i2c/imx319.c
15689
15690 SONY IMX355 SENSOR DRIVER
15691 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15692 L:      linux-media@vger.kernel.org
15693 T:      git git://linuxtv.org/media_tree.git
15694 S:      Maintained
15695 F:      drivers/media/i2c/imx355.c
15696
15697 SONY MEMORYSTICK SUBSYSTEM
15698 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15699 M:      Alex Dubov <oakad@yahoo.com>
15700 M:      Ulf Hansson <ulf.hansson@linaro.org>
15701 L:      linux-mmc@vger.kernel.org
15702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15703 S:      Maintained
15704 F:      drivers/memstick/
15705 F:      include/linux/memstick.h
15706
15707 SONY VAIO CONTROL DEVICE DRIVER
15708 M:      Mattia Dongili <malattia@linux.it>
15709 L:      platform-driver-x86@vger.kernel.org
15710 S:      Maintained
15711 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15712 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15713 F:      drivers/char/sonypi.c
15714 F:      drivers/platform/x86/sony-laptop.c
15715 F:      include/linux/sony-laptop.h
15716
15717 SOUND
15718 M:      Jaroslav Kysela <perex@perex.cz>
15719 M:      Takashi Iwai <tiwai@suse.com>
15720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15721 W:      http://www.alsa-project.org/
15722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15723 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15724 S:      Maintained
15725 F:      Documentation/sound/
15726 F:      include/sound/
15727 F:      include/uapi/sound/
15728 F:      sound/
15729
15730 SOUND - COMPRESSED AUDIO
15731 M:      Vinod Koul <vkoul@kernel.org>
15732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15734 S:      Supported
15735 F:      Documentation/sound/designs/compress-offload.rst
15736 F:      include/sound/compress_driver.h
15737 F:      include/uapi/sound/compress_*
15738 F:      sound/core/compress_offload.c
15739 F:      sound/soc/soc-compress.c
15740
15741 SOUND - DMAENGINE HELPERS
15742 M:      Lars-Peter Clausen <lars@metafoo.de>
15743 S:      Supported
15744 F:      include/sound/dmaengine_pcm.h
15745 F:      sound/core/pcm_dmaengine.c
15746 F:      sound/soc/soc-generic-dmaengine-pcm.c
15747
15748 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15749 M:      Liam Girdwood <lgirdwood@gmail.com>
15750 M:      Mark Brown <broonie@kernel.org>
15751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15753 W:      http://alsa-project.org/main/index.php/ASoC
15754 S:      Supported
15755 F:      Documentation/devicetree/bindings/sound/
15756 F:      Documentation/sound/soc/
15757 F:      sound/soc/
15758 F:      include/dt-bindings/sound/
15759 F:      include/sound/soc*
15760
15761 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
15762 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15763 M:      Liam Girdwood <lgirdwood@gmail.com>
15764 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
15765 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
15766 M:      Daniel Baluta <daniel.baluta@nxp.com>
15767 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
15768 W:      https://github.com/thesofproject/linux/
15769 S:      Supported
15770 F:      sound/soc/sof/
15771
15772 SOUNDWIRE SUBSYSTEM
15773 M:      Vinod Koul <vkoul@kernel.org>
15774 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15775 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15777 S:      Supported
15778 F:      Documentation/driver-api/soundwire/
15779 F:      drivers/soundwire/
15780 F:      include/linux/soundwire/
15781
15782 SP2 MEDIA DRIVER
15783 M:      Olli Salonen <olli.salonen@iki.fi>
15784 L:      linux-media@vger.kernel.org
15785 W:      https://linuxtv.org
15786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15787 S:      Maintained
15788 F:      drivers/media/dvb-frontends/sp2*
15789
15790 SPARC + UltraSPARC (sparc/sparc64)
15791 M:      "David S. Miller" <davem@davemloft.net>
15792 L:      sparclinux@vger.kernel.org
15793 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15796 S:      Maintained
15797 F:      arch/sparc/
15798 F:      drivers/sbus/
15799
15800 SPARC SERIAL DRIVERS
15801 M:      "David S. Miller" <davem@davemloft.net>
15802 L:      sparclinux@vger.kernel.org
15803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15805 S:      Maintained
15806 F:      include/linux/sunserialcore.h
15807 F:      drivers/tty/serial/suncore.c
15808 F:      drivers/tty/serial/sunhv.c
15809 F:      drivers/tty/serial/sunsab.c
15810 F:      drivers/tty/serial/sunsab.h
15811 F:      drivers/tty/serial/sunsu.c
15812 F:      drivers/tty/serial/sunzilog.c
15813 F:      drivers/tty/serial/sunzilog.h
15814 F:      drivers/tty/vcc.c
15815
15816 SPARSE CHECKER
15817 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15818 L:      linux-sparse@vger.kernel.org
15819 W:      https://sparse.wiki.kernel.org/
15820 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15821 S:      Maintained
15822 F:      include/linux/compiler.h
15823
15824 SPEAR CLOCK FRAMEWORK SUPPORT
15825 M:      Viresh Kumar <vireshk@kernel.org>
15826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15827 W:      http://www.st.com/spear
15828 S:      Maintained
15829 F:      drivers/clk/spear/
15830
15831 SPEAR PLATFORM SUPPORT
15832 M:      Viresh Kumar <vireshk@kernel.org>
15833 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15835 W:      http://www.st.com/spear
15836 S:      Maintained
15837 F:      arch/arm/boot/dts/spear*
15838 F:      arch/arm/mach-spear/
15839
15840 SPI NOR SUBSYSTEM
15841 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15842 L:      linux-mtd@lists.infradead.org
15843 W:      http://www.linux-mtd.infradead.org/
15844 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15846 C:      irc://irc.oftc.net/mtd
15847 S:      Maintained
15848 F:      drivers/mtd/spi-nor/
15849 F:      include/linux/mtd/spi-nor.h
15850
15851 SPI SUBSYSTEM
15852 M:      Mark Brown <broonie@kernel.org>
15853 L:      linux-spi@vger.kernel.org
15854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15855 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15856 S:      Maintained
15857 F:      Documentation/devicetree/bindings/spi/
15858 F:      Documentation/spi/
15859 F:      drivers/spi/
15860 F:      include/linux/spi/
15861 F:      include/uapi/linux/spi/
15862 F:      tools/spi/
15863
15864 SPIDERNET NETWORK DRIVER for CELL
15865 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15866 L:      netdev@vger.kernel.org
15867 S:      Supported
15868 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15869 F:      drivers/net/ethernet/toshiba/spider_net*
15870
15871 SPMI SUBSYSTEM
15872 R:      Stephen Boyd <sboyd@kernel.org>
15873 L:      linux-arm-msm@vger.kernel.org
15874 F:      Documentation/devicetree/bindings/spmi/
15875 F:      drivers/spmi/
15876 F:      include/dt-bindings/spmi/spmi.h
15877 F:      include/linux/spmi.h
15878 F:      include/trace/events/spmi.h
15879
15880 SPU FILE SYSTEM
15881 M:      Jeremy Kerr <jk@ozlabs.org>
15882 L:      linuxppc-dev@lists.ozlabs.org
15883 W:      http://www.ibm.com/developerworks/power/cell/
15884 S:      Supported
15885 F:      Documentation/filesystems/spufs.txt
15886 F:      arch/powerpc/platforms/cell/spufs/
15887
15888 SQUASHFS FILE SYSTEM
15889 M:      Phillip Lougher <phillip@squashfs.org.uk>
15890 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15891 W:      http://squashfs.org.uk
15892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15893 S:      Maintained
15894 F:      Documentation/filesystems/squashfs.rst
15895 F:      fs/squashfs/
15896
15897 SRM (Alpha) environment access
15898 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15899 S:      Maintained
15900 F:      arch/alpha/kernel/srm_env.c
15901
15902 ST LSM6DSx IMU IIO DRIVER
15903 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15904 L:      linux-iio@vger.kernel.org
15905 W:      http://www.st.com/
15906 S:      Maintained
15907 F:      drivers/iio/imu/st_lsm6dsx/
15908 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15909
15910 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15911 M:      Mickael Guene <mickael.guene@st.com>
15912 L:      linux-media@vger.kernel.org
15913 T:      git git://linuxtv.org/media_tree.git
15914 S:      Maintained
15915 F:      drivers/media/i2c/st-mipid02.c
15916 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15917
15918 ST STM32 I2C/SMBUS DRIVER
15919 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15920 L:      linux-i2c@vger.kernel.org
15921 S:      Maintained
15922 F:      drivers/i2c/busses/i2c-stm32*
15923
15924 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15925 M:      Song Qiang <songqiang1304521@gmail.com>
15926 L:      linux-iio@vger.kernel.org
15927 S:      Maintained
15928 F:      drivers/iio/proximity/vl53l0x-i2c.c
15929 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15930
15931 STABLE BRANCH
15932 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15933 M:      Sasha Levin <sashal@kernel.org>
15934 L:      stable@vger.kernel.org
15935 S:      Supported
15936 F:      Documentation/process/stable-kernel-rules.rst
15937
15938 STAGING - COMEDI
15939 M:      Ian Abbott <abbotti@mev.co.uk>
15940 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15941 S:      Odd Fixes
15942 F:      drivers/staging/comedi/
15943
15944 STAGING - FIELDBUS SUBSYSTEM
15945 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15946 S:      Maintained
15947 F:      drivers/staging/fieldbus/*
15948 F:      drivers/staging/fieldbus/Documentation/
15949
15950 STAGING - HMS ANYBUS-S BUS
15951 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15952 S:      Maintained
15953 F:      drivers/staging/fieldbus/anybuss/
15954
15955 STAGING - INDUSTRIAL IO
15956 M:      Jonathan Cameron <jic23@kernel.org>
15957 L:      linux-iio@vger.kernel.org
15958 S:      Odd Fixes
15959 F:      Documentation/devicetree/bindings/staging/iio/
15960 F:      drivers/staging/iio/
15961
15962 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15963 M:      Marc Dietrich <marvin24@gmx.de>
15964 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15965 L:      linux-tegra@vger.kernel.org
15966 S:      Maintained
15967 F:      drivers/staging/nvec/
15968
15969 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15970 M:      Jens Frederich <jfrederich@gmail.com>
15971 M:      Daniel Drake <dsd@laptop.org>
15972 M:      Jon Nettleton <jon.nettleton@gmail.com>
15973 W:      http://wiki.laptop.org/go/DCON
15974 S:      Maintained
15975 F:      drivers/staging/olpc_dcon/
15976
15977 STAGING - REALTEK RTL8712U DRIVERS
15978 M:      Larry Finger <Larry.Finger@lwfinger.net>
15979 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15980 S:      Odd Fixes
15981 F:      drivers/staging/rtl8712/
15982
15983 STAGING - REALTEK RTL8188EU DRIVERS
15984 M:      Larry Finger <Larry.Finger@lwfinger.net>
15985 S:      Odd Fixes
15986 F:      drivers/staging/rtl8188eu/
15987
15988 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15989 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15990 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15991 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15992 L:      linux-fbdev@vger.kernel.org
15993 S:      Maintained
15994 F:      drivers/staging/sm750fb/
15995
15996 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15997 M:      William Hubbs <w.d.hubbs@gmail.com>
15998 M:      Chris Brannon <chris@the-brannons.com>
15999 M:      Kirk Reiser <kirk@reisers.ca>
16000 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
16001 L:      speakup@linux-speakup.org
16002 W:      http://www.linux-speakup.org/
16003 S:      Odd Fixes
16004 F:      drivers/staging/speakup/
16005
16006 STAGING - VIA VT665X DRIVERS
16007 M:      Forest Bond <forest@alittletooquiet.net>
16008 S:      Odd Fixes
16009 F:      drivers/staging/vt665?/
16010
16011 STAGING - WILC1000 WIFI DRIVER
16012 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
16013 M:      Ajay Singh <ajay.kathat@microchip.com>
16014 L:      linux-wireless@vger.kernel.org
16015 S:      Supported
16016 F:      drivers/staging/wilc1000/
16017
16018 STAGING - SEPS525 LCD CONTROLLER DRIVERS
16019 M:      Michael Hennerich <michael.hennerich@analog.com>
16020 M:      Beniamin Bia <beniamin.bia@analog.com>
16021 L:      linux-fbdev@vger.kernel.org
16022 S:      Supported
16023 F:      drivers/staging/fbtft/fb_seps525.c
16024 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
16025
16026 STAGING SUBSYSTEM
16027 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
16029 L:      devel@driverdev.osuosl.org
16030 S:      Supported
16031 F:      drivers/staging/
16032
16033 STARFIRE/DURALAN NETWORK DRIVER
16034 M:      Ion Badulescu <ionut@badula.org>
16035 S:      Odd Fixes
16036 F:      drivers/net/ethernet/adaptec/starfire*
16037
16038 STEC S1220 SKD DRIVER
16039 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
16040 L:      linux-block@vger.kernel.org
16041 S:      Maintained
16042 F:      drivers/block/skd*[ch]
16043
16044 STI AUDIO (ASoC) DRIVERS
16045 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16046 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16047 S:      Maintained
16048 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
16049 F:      sound/soc/sti/
16050
16051 STI CEC DRIVER
16052 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
16053 S:      Maintained
16054 F:      drivers/media/platform/sti/cec/
16055 F:      Documentation/devicetree/bindings/media/stih-cec.txt
16056
16057 STK1160 USB VIDEO CAPTURE DRIVER
16058 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16059 L:      linux-media@vger.kernel.org
16060 T:      git git://linuxtv.org/media_tree.git
16061 S:      Maintained
16062 F:      drivers/media/usb/stk1160/
16063
16064 STM32 AUDIO (ASoC) DRIVERS
16065 M:      Olivier Moysan <olivier.moysan@st.com>
16066 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
16067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16068 S:      Maintained
16069 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
16070 F:      sound/soc/stm/
16071
16072 STM32 TIMER/LPTIMER DRIVERS
16073 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
16074 S:      Maintained
16075 F:      drivers/*/stm32-*timer*
16076 F:      drivers/pwm/pwm-stm32*
16077 F:      include/linux/*/stm32-*tim*
16078 F:      Documentation/ABI/testing/*timer-stm32
16079 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
16080
16081 STMMAC ETHERNET DRIVER
16082 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
16083 M:      Alexandre Torgue <alexandre.torgue@st.com>
16084 M:      Jose Abreu <joabreu@synopsys.com>
16085 L:      netdev@vger.kernel.org
16086 W:      http://www.stlinux.com
16087 S:      Supported
16088 F:      Documentation/networking/device_drivers/stmicro/
16089 F:      drivers/net/ethernet/stmicro/stmmac/
16090
16091 EXTRA BOOT CONFIG
16092 M:      Masami Hiramatsu <mhiramat@kernel.org>
16093 S:      Maintained
16094 F:      lib/bootconfig.c
16095 F:      fs/proc/bootconfig.c
16096 F:      include/linux/bootconfig.h
16097 F:      tools/bootconfig/*
16098 F:      Documentation/admin-guide/bootconfig.rst
16099
16100 SUN3/3X
16101 M:      Sam Creasey <sammy@sammy.net>
16102 W:      http://sammy.net/sun3/
16103 S:      Maintained
16104 F:      arch/m68k/kernel/*sun3*
16105 F:      arch/m68k/sun3*/
16106 F:      arch/m68k/include/asm/sun3*
16107 F:      drivers/net/ethernet/i825xx/sun3*
16108
16109 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
16110 M:      Hans de Goede <hdegoede@redhat.com>
16111 L:      linux-input@vger.kernel.org
16112 S:      Maintained
16113 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
16114 F:      drivers/input/keyboard/sun4i-lradc-keys.c
16115
16116 SUNDANCE NETWORK DRIVER
16117 M:      Denis Kirjanov <kda@linux-powerpc.org>
16118 L:      netdev@vger.kernel.org
16119 S:      Maintained
16120 F:      drivers/net/ethernet/dlink/sundance.c
16121
16122 SUPERH
16123 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
16124 M:      Rich Felker <dalias@libc.org>
16125 L:      linux-sh@vger.kernel.org
16126 Q:      http://patchwork.kernel.org/project/linux-sh/list/
16127 S:      Maintained
16128 F:      Documentation/sh/
16129 F:      arch/sh/
16130 F:      drivers/sh/
16131
16132 SUSPEND TO RAM
16133 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
16134 M:      Len Brown <len.brown@intel.com>
16135 M:      Pavel Machek <pavel@ucw.cz>
16136 L:      linux-pm@vger.kernel.org
16137 B:      https://bugzilla.kernel.org
16138 S:      Supported
16139 F:      Documentation/power/
16140 F:      arch/x86/kernel/acpi/
16141 F:      drivers/base/power/
16142 F:      kernel/power/
16143 F:      include/linux/suspend.h
16144 F:      include/linux/freezer.h
16145 F:      include/linux/pm.h
16146
16147 SVGA HANDLING
16148 M:      Martin Mares <mj@ucw.cz>
16149 L:      linux-video@atrey.karlin.mff.cuni.cz
16150 S:      Maintained
16151 F:      Documentation/admin-guide/svga.rst
16152 F:      arch/x86/boot/video*
16153
16154 SWIOTLB SUBSYSTEM
16155 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
16156 L:      iommu@lists.linux-foundation.org
16157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
16158 S:      Supported
16159 F:      kernel/dma/swiotlb.c
16160 F:      arch/*/kernel/pci-swiotlb.c
16161 F:      include/linux/swiotlb.h
16162
16163 SWITCHDEV
16164 M:      Jiri Pirko <jiri@resnulli.us>
16165 M:      Ivan Vecera <ivecera@redhat.com>
16166 L:      netdev@vger.kernel.org
16167 S:      Supported
16168 F:      net/switchdev/
16169 F:      include/net/switchdev.h
16170
16171 SY8106A REGULATOR DRIVER
16172 M:      Icenowy Zheng <icenowy@aosc.io>
16173 S:      Maintained
16174 F:      drivers/regulator/sy8106a-regulator.c
16175 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
16176
16177 SYNC FILE FRAMEWORK
16178 M:      Sumit Semwal <sumit.semwal@linaro.org>
16179 R:      Gustavo Padovan <gustavo@padovan.org>
16180 S:      Maintained
16181 L:      linux-media@vger.kernel.org
16182 L:      dri-devel@lists.freedesktop.org
16183 F:      drivers/dma-buf/sync_*
16184 F:      drivers/dma-buf/dma-fence*
16185 F:      drivers/dma-buf/sw_sync.c
16186 F:      include/linux/sync_file.h
16187 F:      include/uapi/linux/sync_file.h
16188 F:      Documentation/driver-api/sync_file.rst
16189 T:      git git://anongit.freedesktop.org/drm/drm-misc
16190
16191 SYNOPSYS ARC ARCHITECTURE
16192 M:      Vineet Gupta <vgupta@synopsys.com>
16193 L:      linux-snps-arc@lists.infradead.org
16194 S:      Supported
16195 F:      arch/arc/
16196 F:      Documentation/devicetree/bindings/arc/*
16197 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
16198 F:      drivers/clocksource/arc_timer.c
16199 F:      drivers/tty/serial/arc_uart.c
16200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
16201
16202 SYNOPSYS ARC HSDK SDP pll clock driver
16203 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16204 S:      Supported
16205 F:      drivers/clk/clk-hsdk-pll.c
16206 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
16207
16208 SYNOPSYS ARC SDP clock driver
16209 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16210 S:      Supported
16211 F:      drivers/clk/axs10x/*
16212 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
16213
16214 SYNOPSYS ARC SDP platform support
16215 M:      Alexey Brodkin <abrodkin@synopsys.com>
16216 S:      Supported
16217 F:      arch/arc/plat-axs10x
16218 F:      arch/arc/boot/dts/ax*
16219 F:      Documentation/devicetree/bindings/arc/axs10*
16220
16221 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
16222 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16223 S:      Supported
16224 F:      drivers/reset/reset-axs10x.c
16225 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
16226
16227 SYNOPSYS CREG GPIO DRIVER
16228 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16229 S:      Maintained
16230 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
16231 F:      drivers/gpio/gpio-creg-snps.c
16232
16233 SYNOPSYS DESIGNWARE 8250 UART DRIVER
16234 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16235 S:      Maintained
16236 F:      drivers/tty/serial/8250/8250_dw.c
16237 F:      drivers/tty/serial/8250/8250_dwlib.*
16238 F:      drivers/tty/serial/8250/8250_lpss.c
16239
16240 SYNOPSYS DESIGNWARE APB GPIO DRIVER
16241 M:      Hoan Tran <hoan@os.amperecomputing.com>
16242 L:      linux-gpio@vger.kernel.org
16243 S:      Maintained
16244 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
16245 F:      drivers/gpio/gpio-dwapb.c
16246
16247 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
16248 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16249 S:      Maintained
16250 F:      drivers/dma/dw-axi-dmac/
16251 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
16252
16253 SYNOPSYS DESIGNWARE DMAC DRIVER
16254 M:      Viresh Kumar <vireshk@kernel.org>
16255 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16256 S:      Maintained
16257 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
16258 F:      drivers/dma/dw/
16259 F:      include/dt-bindings/dma/dw-dmac.h
16260 F:      include/linux/dma/dw.h
16261 F:      include/linux/platform_data/dma-dw.h
16262
16263 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
16264 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16265 L:      netdev@vger.kernel.org
16266 S:      Supported
16267 F:      drivers/net/ethernet/synopsys/
16268
16269 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
16270 M:      Jose Abreu <Jose.Abreu@synopsys.com>
16271 L:      netdev@vger.kernel.org
16272 S:      Supported
16273 F:      drivers/net/phy/mdio-xpcs.c
16274 F:      include/linux/mdio-xpcs.h
16275
16276 SYNOPSYS DESIGNWARE I2C DRIVER
16277 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
16278 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16279 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
16280 L:      linux-i2c@vger.kernel.org
16281 S:      Maintained
16282 F:      drivers/i2c/busses/i2c-designware-*
16283 F:      include/linux/platform_data/i2c-designware.h
16284
16285 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
16286 M:      Jaehoon Chung <jh80.chung@samsung.com>
16287 L:      linux-mmc@vger.kernel.org
16288 S:      Maintained
16289 F:      drivers/mmc/host/dw_mmc*
16290
16291 SYNOPSYS HSDK RESET CONTROLLER DRIVER
16292 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
16293 S:      Supported
16294 F:      drivers/reset/reset-hsdk.c
16295 F:      include/dt-bindings/reset/snps,hsdk-reset.h
16296 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
16297
16298 SYSTEM CONFIGURATION (SYSCON)
16299 M:      Lee Jones <lee.jones@linaro.org>
16300 M:      Arnd Bergmann <arnd@arndb.de>
16301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
16302 S:      Supported
16303 F:      drivers/mfd/syscon.c
16304
16305 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
16306 M:      Sudeep Holla <sudeep.holla@arm.com>
16307 L:      linux-arm-kernel@lists.infradead.org
16308 S:      Maintained
16309 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
16310 F:      drivers/clk/clk-sc[mp]i.c
16311 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
16312 F:      drivers/firmware/arm_scpi.c
16313 F:      drivers/firmware/arm_scmi/
16314 F:      drivers/reset/reset-scmi.c
16315 F:      include/linux/sc[mp]i_protocol.h
16316 F:      include/trace/events/scmi.h
16317
16318 SYSTEM RESET/SHUTDOWN DRIVERS
16319 M:      Sebastian Reichel <sre@kernel.org>
16320 L:      linux-pm@vger.kernel.org
16321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16322 S:      Maintained
16323 F:      Documentation/devicetree/bindings/power/reset/
16324 F:      drivers/power/reset/
16325
16326 SYSTEM TRACE MODULE CLASS
16327 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16328 S:      Maintained
16329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
16330 F:      Documentation/trace/stm.rst
16331 F:      drivers/hwtracing/stm/
16332 F:      include/linux/stm.h
16333 F:      include/uapi/linux/stm.h
16334
16335 SYSTEM76 ACPI DRIVER
16336 M:      Jeremy Soller <jeremy@system76.com>
16337 M:      System76 Product Development <productdev@system76.com>
16338 L:      platform-driver-x86@vger.kernel.org
16339 S:      Maintained
16340 F:      drivers/platform/x86/system76_acpi.c
16341
16342 SYSV FILESYSTEM
16343 M:      Christoph Hellwig <hch@infradead.org>
16344 S:      Maintained
16345 F:      Documentation/filesystems/sysv-fs.rst
16346 F:      fs/sysv/
16347 F:      include/linux/sysv_fs.h
16348
16349 TASKSTATS STATISTICS INTERFACE
16350 M:      Balbir Singh <bsingharora@gmail.com>
16351 S:      Maintained
16352 F:      Documentation/accounting/taskstats*
16353 F:      include/linux/taskstats*
16354 F:      kernel/taskstats.c
16355
16356 TC subsystem
16357 M:      Jamal Hadi Salim <jhs@mojatatu.com>
16358 M:      Cong Wang <xiyou.wangcong@gmail.com>
16359 M:      Jiri Pirko <jiri@resnulli.us>
16360 L:      netdev@vger.kernel.org
16361 S:      Maintained
16362 F:      include/net/pkt_cls.h
16363 F:      include/net/pkt_sched.h
16364 F:      include/net/tc_act/
16365 F:      include/uapi/linux/pkt_cls.h
16366 F:      include/uapi/linux/pkt_sched.h
16367 F:      include/uapi/linux/tc_act/
16368 F:      include/uapi/linux/tc_ematch/
16369 F:      net/sched/
16370
16371 TC90522 MEDIA DRIVER
16372 M:      Akihiro Tsukada <tskd08@gmail.com>
16373 L:      linux-media@vger.kernel.org
16374 S:      Odd Fixes
16375 F:      drivers/media/dvb-frontends/tc90522*
16376
16377 TCP LOW PRIORITY MODULE
16378 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
16379 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
16380 W:      http://tcp-lp-mod.sourceforge.net/
16381 S:      Maintained
16382 F:      net/ipv4/tcp_lp.c
16383
16384 TDA10071 MEDIA DRIVER
16385 M:      Antti Palosaari <crope@iki.fi>
16386 L:      linux-media@vger.kernel.org
16387 W:      https://linuxtv.org
16388 W:      http://palosaari.fi/linux/
16389 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16390 T:      git git://linuxtv.org/anttip/media_tree.git
16391 S:      Maintained
16392 F:      drivers/media/dvb-frontends/tda10071*
16393
16394 TDA18212 MEDIA DRIVER
16395 M:      Antti Palosaari <crope@iki.fi>
16396 L:      linux-media@vger.kernel.org
16397 W:      https://linuxtv.org
16398 W:      http://palosaari.fi/linux/
16399 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16400 T:      git git://linuxtv.org/anttip/media_tree.git
16401 S:      Maintained
16402 F:      drivers/media/tuners/tda18212*
16403
16404 TDA18218 MEDIA DRIVER
16405 M:      Antti Palosaari <crope@iki.fi>
16406 L:      linux-media@vger.kernel.org
16407 W:      https://linuxtv.org
16408 W:      http://palosaari.fi/linux/
16409 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16410 T:      git git://linuxtv.org/anttip/media_tree.git
16411 S:      Maintained
16412 F:      drivers/media/tuners/tda18218*
16413
16414 TDA18250 MEDIA DRIVER
16415 M:      Olli Salonen <olli.salonen@iki.fi>
16416 L:      linux-media@vger.kernel.org
16417 W:      https://linuxtv.org
16418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16419 T:      git git://linuxtv.org/media_tree.git
16420 S:      Maintained
16421 F:      drivers/media/tuners/tda18250*
16422
16423 TDA18271 MEDIA DRIVER
16424 M:      Michael Krufky <mkrufky@linuxtv.org>
16425 L:      linux-media@vger.kernel.org
16426 W:      https://linuxtv.org
16427 W:      http://github.com/mkrufky
16428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16429 T:      git git://linuxtv.org/mkrufky/tuners.git
16430 S:      Maintained
16431 F:      drivers/media/tuners/tda18271*
16432
16433 TDA1997x MEDIA DRIVER
16434 M:      Tim Harvey <tharvey@gateworks.com>
16435 L:      linux-media@vger.kernel.org
16436 W:      https://linuxtv.org
16437 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16438 S:      Maintained
16439 F:      drivers/media/i2c/tda1997x.*
16440
16441 TDA827x MEDIA DRIVER
16442 M:      Michael Krufky <mkrufky@linuxtv.org>
16443 L:      linux-media@vger.kernel.org
16444 W:      https://linuxtv.org
16445 W:      http://github.com/mkrufky
16446 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16447 T:      git git://linuxtv.org/mkrufky/tuners.git
16448 S:      Maintained
16449 F:      drivers/media/tuners/tda8290.*
16450
16451 TDA8290 MEDIA DRIVER
16452 M:      Michael Krufky <mkrufky@linuxtv.org>
16453 L:      linux-media@vger.kernel.org
16454 W:      https://linuxtv.org
16455 W:      http://github.com/mkrufky
16456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16457 T:      git git://linuxtv.org/mkrufky/tuners.git
16458 S:      Maintained
16459 F:      drivers/media/tuners/tda8290.*
16460
16461 TDA9840 MEDIA DRIVER
16462 M:      Hans Verkuil <hverkuil@xs4all.nl>
16463 L:      linux-media@vger.kernel.org
16464 T:      git git://linuxtv.org/media_tree.git
16465 W:      https://linuxtv.org
16466 S:      Maintained
16467 F:      drivers/media/i2c/tda9840*
16468
16469 TEA5761 TUNER DRIVER
16470 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16471 L:      linux-media@vger.kernel.org
16472 W:      https://linuxtv.org
16473 T:      git git://linuxtv.org/media_tree.git
16474 S:      Odd fixes
16475 F:      drivers/media/tuners/tea5761.*
16476
16477 TEA5767 TUNER DRIVER
16478 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16479 L:      linux-media@vger.kernel.org
16480 W:      https://linuxtv.org
16481 T:      git git://linuxtv.org/media_tree.git
16482 S:      Maintained
16483 F:      drivers/media/tuners/tea5767.*
16484
16485 TEA6415C MEDIA DRIVER
16486 M:      Hans Verkuil <hverkuil@xs4all.nl>
16487 L:      linux-media@vger.kernel.org
16488 T:      git git://linuxtv.org/media_tree.git
16489 W:      https://linuxtv.org
16490 S:      Maintained
16491 F:      drivers/media/i2c/tea6415c*
16492
16493 TEA6420 MEDIA DRIVER
16494 M:      Hans Verkuil <hverkuil@xs4all.nl>
16495 L:      linux-media@vger.kernel.org
16496 T:      git git://linuxtv.org/media_tree.git
16497 W:      https://linuxtv.org
16498 S:      Maintained
16499 F:      drivers/media/i2c/tea6420*
16500
16501 TEAM DRIVER
16502 M:      Jiri Pirko <jiri@resnulli.us>
16503 L:      netdev@vger.kernel.org
16504 S:      Supported
16505 F:      drivers/net/team/
16506 F:      include/linux/if_team.h
16507 F:      include/uapi/linux/if_team.h
16508
16509 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
16510 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
16511 S:      Maintained
16512 F:      arch/x86/platform/ts5500/
16513
16514 TECHNOTREND USB IR RECEIVER
16515 M:      Sean Young <sean@mess.org>
16516 L:      linux-media@vger.kernel.org
16517 S:      Maintained
16518 F:      drivers/media/rc/ttusbir.c
16519
16520 TECHWELL TW9910 VIDEO DECODER
16521 L:      linux-media@vger.kernel.org
16522 S:      Orphan
16523 F:      drivers/media/i2c/tw9910.c
16524 F:      include/media/i2c/tw9910.h
16525
16526 TEE SUBSYSTEM
16527 M:      Jens Wiklander <jens.wiklander@linaro.org>
16528 L:      tee-dev@lists.linaro.org
16529 S:      Maintained
16530 F:      include/linux/tee_drv.h
16531 F:      include/uapi/linux/tee.h
16532 F:      drivers/tee/
16533 F:      Documentation/tee.txt
16534
16535 TEGRA ARCHITECTURE SUPPORT
16536 M:      Thierry Reding <thierry.reding@gmail.com>
16537 M:      Jonathan Hunter <jonathanh@nvidia.com>
16538 L:      linux-tegra@vger.kernel.org
16539 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16541 S:      Supported
16542 N:      [^a-z]tegra
16543
16544 TEGRA CLOCK DRIVER
16545 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16546 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16547 S:      Supported
16548 F:      drivers/clk/tegra/
16549
16550 TEGRA DMA DRIVERS
16551 M:      Laxman Dewangan <ldewangan@nvidia.com>
16552 M:      Jon Hunter <jonathanh@nvidia.com>
16553 S:      Supported
16554 F:      drivers/dma/tegra*
16555
16556 TEGRA I2C DRIVER
16557 M:      Laxman Dewangan <ldewangan@nvidia.com>
16558 R:      Dmitry Osipenko <digetx@gmail.com>
16559 S:      Supported
16560 F:      drivers/i2c/busses/i2c-tegra.c
16561
16562 TEGRA IOMMU DRIVERS
16563 M:      Thierry Reding <thierry.reding@gmail.com>
16564 L:      linux-tegra@vger.kernel.org
16565 S:      Supported
16566 F:      drivers/iommu/tegra*
16567
16568 TEGRA KBC DRIVER
16569 M:      Laxman Dewangan <ldewangan@nvidia.com>
16570 S:      Supported
16571 F:      drivers/input/keyboard/tegra-kbc.c
16572
16573 TEGRA NAND DRIVER
16574 M:      Stefan Agner <stefan@agner.ch>
16575 M:      Lucas Stach <dev@lynxeye.de>
16576 S:      Maintained
16577 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16578 F:      drivers/mtd/nand/raw/tegra_nand.c
16579
16580 TEGRA PWM DRIVER
16581 M:      Thierry Reding <thierry.reding@gmail.com>
16582 S:      Supported
16583 F:      drivers/pwm/pwm-tegra.c
16584
16585 TEGRA SERIAL DRIVER
16586 M:      Laxman Dewangan <ldewangan@nvidia.com>
16587 S:      Supported
16588 F:      drivers/tty/serial/serial-tegra.c
16589
16590 TEGRA SPI DRIVER
16591 M:      Laxman Dewangan <ldewangan@nvidia.com>
16592 S:      Supported
16593 F:      drivers/spi/spi-tegra*
16594
16595 TEGRA XUSB PADCTL DRIVER
16596 M:      JC Kuo <jckuo@nvidia.com>
16597 S:      Supported
16598 F:      drivers/phy/tegra/xusb*
16599
16600 TEHUTI ETHERNET DRIVER
16601 M:      Andy Gospodarek <andy@greyhouse.net>
16602 L:      netdev@vger.kernel.org
16603 S:      Supported
16604 F:      drivers/net/ethernet/tehuti/*
16605
16606 Telecom Clock Driver for MCPL0010
16607 M:      Mark Gross <mark.gross@intel.com>
16608 S:      Supported
16609 F:      drivers/char/tlclk.c
16610
16611 TENSILICA XTENSA PORT (xtensa)
16612 M:      Chris Zankel <chris@zankel.net>
16613 M:      Max Filippov <jcmvbkbc@gmail.com>
16614 L:      linux-xtensa@linux-xtensa.org
16615 T:      git git://github.com/czankel/xtensa-linux.git
16616 S:      Maintained
16617 F:      arch/xtensa/
16618 F:      drivers/irqchip/irq-xtensa-*
16619
16620 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16621 M:      Nishanth Menon <nm@ti.com>
16622 M:      Tero Kristo <t-kristo@ti.com>
16623 M:      Santosh Shilimkar <ssantosh@kernel.org>
16624 L:      linux-arm-kernel@lists.infradead.org
16625 S:      Maintained
16626 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16627 F:      drivers/firmware/ti_sci*
16628 F:      include/linux/soc/ti/ti_sci_protocol.h
16629 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16630 F:      drivers/soc/ti/ti_sci_pm_domains.c
16631 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16632 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16633 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16634 F:      drivers/clk/keystone/sci-clk.c
16635 F:      drivers/reset/reset-ti-sci.c
16636 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16637 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16638 F:      drivers/irqchip/irq-ti-sci-intr.c
16639 F:      drivers/irqchip/irq-ti-sci-inta.c
16640 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16641 F:      drivers/soc/ti/ti_sci_inta_msi.c
16642
16643 Texas Instruments ASoC drivers
16644 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16646 S:      Maintained
16647 F:      sound/soc/ti/
16648
16649 Texas Instruments' DAC7612 DAC Driver
16650 M:      Ricardo Ribalda <ricardo@ribalda.com>
16651 L:      linux-iio@vger.kernel.org
16652 S:      Supported
16653 F:      drivers/iio/dac/ti-dac7612.c
16654 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16655
16656 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16657 M:      Hans Verkuil <hverkuil@xs4all.nl>
16658 L:      linux-media@vger.kernel.org
16659 T:      git git://linuxtv.org/media_tree.git
16660 W:      https://linuxtv.org
16661 S:      Maintained
16662 F:      drivers/media/radio/radio-raremono.c
16663
16664 THERMAL
16665 M:      Zhang Rui <rui.zhang@intel.com>
16666 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16667 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16668 L:      linux-pm@vger.kernel.org
16669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
16670 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16671 S:      Supported
16672 F:      drivers/thermal/
16673 F:      include/linux/thermal.h
16674 F:      include/uapi/linux/thermal.h
16675 F:      include/linux/cpu_cooling.h
16676 F:      Documentation/devicetree/bindings/thermal/
16677
16678 THERMAL/CPU_COOLING
16679 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16680 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
16681 M:      Viresh Kumar <viresh.kumar@linaro.org>
16682 M:      Javi Merino <javi.merino@kernel.org>
16683 L:      linux-pm@vger.kernel.org
16684 S:      Supported
16685 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16686 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
16687 F:      drivers/thermal/cpufreq_cooling.c
16688 F:      drivers/thermal/cpuidle_cooling.c
16689 F:      include/linux/cpu_cooling.h
16690
16691 THERMAL DRIVER FOR AMLOGIC SOCS
16692 M:      Guillaume La Roque <glaroque@baylibre.com>
16693 L:      linux-pm@vger.kernel.org
16694 L:      linux-amlogic@lists.infradead.org
16695 W:      http://linux-meson.com/
16696 S:      Supported
16697 F:      drivers/thermal/amlogic_thermal.c
16698 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
16699
16700 THINKPAD ACPI EXTRAS DRIVER
16701 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16702 L:      ibm-acpi-devel@lists.sourceforge.net
16703 L:      platform-driver-x86@vger.kernel.org
16704 S:      Maintained
16705 W:      http://ibm-acpi.sourceforge.net
16706 W:      http://thinkwiki.org/wiki/Ibm-acpi
16707 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16708 F:      drivers/platform/x86/thinkpad_acpi.c
16709
16710 THUNDERBOLT DRIVER
16711 M:      Andreas Noever <andreas.noever@gmail.com>
16712 M:      Michael Jamet <michael.jamet@intel.com>
16713 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16714 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16715 L:      linux-usb@vger.kernel.org
16716 S:      Maintained
16717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16718 F:      Documentation/admin-guide/thunderbolt.rst
16719 F:      drivers/thunderbolt/
16720 F:      include/linux/thunderbolt.h
16721
16722 THUNDERBOLT NETWORK DRIVER
16723 M:      Michael Jamet <michael.jamet@intel.com>
16724 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16725 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16726 L:      netdev@vger.kernel.org
16727 S:      Maintained
16728 F:      drivers/net/thunderbolt.c
16729
16730 THUNDERX GPIO DRIVER
16731 M:      Robert Richter <rrichter@marvell.com>
16732 S:      Maintained
16733 F:      drivers/gpio/gpio-thunderx.c
16734
16735 TI AM437X VPFE DRIVER
16736 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16737 L:      linux-media@vger.kernel.org
16738 W:      https://linuxtv.org
16739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16740 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16741 S:      Maintained
16742 F:      drivers/media/platform/am437x/
16743
16744 TI BANDGAP AND THERMAL DRIVER
16745 M:      Eduardo Valentin <edubezval@gmail.com>
16746 M:      Keerthy <j-keerthy@ti.com>
16747 L:      linux-pm@vger.kernel.org
16748 L:      linux-omap@vger.kernel.org
16749 S:      Maintained
16750 F:      drivers/thermal/ti-soc-thermal/
16751
16752 TI BQ27XXX POWER SUPPLY DRIVER
16753 R:      Andrew F. Davis <afd@ti.com>
16754 F:      include/linux/power/bq27xxx_battery.h
16755 F:      drivers/power/supply/bq27xxx_battery.c
16756 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16757
16758 TI CDCE706 CLOCK DRIVER
16759 M:      Max Filippov <jcmvbkbc@gmail.com>
16760 S:      Maintained
16761 F:      drivers/clk/clk-cdce706.c
16762
16763 TI CLOCK DRIVER
16764 M:      Tero Kristo <t-kristo@ti.com>
16765 L:      linux-omap@vger.kernel.org
16766 S:      Maintained
16767 F:      drivers/clk/ti/
16768 F:      include/linux/clk/ti.h
16769
16770 TI DAVINCI MACHINE SUPPORT
16771 M:      Sekhar Nori <nsekhar@ti.com>
16772 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16775 S:      Supported
16776 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16777 F:      arch/arm/mach-davinci/
16778 F:      drivers/i2c/busses/i2c-davinci.c
16779 F:      arch/arm/boot/dts/da850*
16780
16781 TI DAVINCI SERIES CLOCK DRIVER
16782 M:      David Lechner <david@lechnology.com>
16783 R:      Sekhar Nori <nsekhar@ti.com>
16784 S:      Maintained
16785 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16786 F:      drivers/clk/davinci/
16787
16788 TI DAVINCI SERIES GPIO DRIVER
16789 M:      Keerthy <j-keerthy@ti.com>
16790 L:      linux-gpio@vger.kernel.org
16791 S:      Maintained
16792 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16793 F:      drivers/gpio/gpio-davinci.c
16794
16795 TI DAVINCI SERIES MEDIA DRIVER
16796 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16797 L:      linux-media@vger.kernel.org
16798 W:      https://linuxtv.org
16799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16800 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16801 S:      Maintained
16802 F:      drivers/media/platform/davinci/
16803 F:      include/media/davinci/
16804
16805 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16806 R:      David Lechner <david@lechnology.com>
16807 L:      linux-iio@vger.kernel.org
16808 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16809 F:      drivers/counter/ti-eqep.c
16810
16811 TI ETHERNET SWITCH DRIVER (CPSW)
16812 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16813 L:      linux-omap@vger.kernel.org
16814 L:      netdev@vger.kernel.org
16815 S:      Maintained
16816 F:      drivers/net/ethernet/ti/cpsw*
16817 F:      drivers/net/ethernet/ti/davinci*
16818
16819 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16820 M:      Alex Dubov <oakad@yahoo.com>
16821 S:      Maintained
16822 W:      http://tifmxx.berlios.de/
16823 F:      drivers/memstick/host/tifm_ms.c
16824 F:      drivers/misc/tifm*
16825 F:      drivers/mmc/host/tifm_sd.c
16826 F:      include/linux/tifm.h
16827
16828 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16829 M:      Santosh Shilimkar <ssantosh@kernel.org>
16830 L:      linux-kernel@vger.kernel.org
16831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16832 S:      Maintained
16833 F:      drivers/soc/ti/*
16834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16835
16836 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16837 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16838 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16839 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16840 S:      Maintained
16841 F:      sound/soc/codecs/lm49453*
16842 F:      sound/soc/codecs/isabelle*
16843
16844 TI LP855x BACKLIGHT DRIVER
16845 M:      Milo Kim <milo.kim@ti.com>
16846 S:      Maintained
16847 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16848 F:      drivers/video/backlight/lp855x_bl.c
16849 F:      include/linux/platform_data/lp855x.h
16850
16851 TI LP8727 CHARGER DRIVER
16852 M:      Milo Kim <milo.kim@ti.com>
16853 S:      Maintained
16854 F:      drivers/power/supply/lp8727_charger.c
16855 F:      include/linux/platform_data/lp8727.h
16856
16857 TI LP8788 MFD DRIVER
16858 M:      Milo Kim <milo.kim@ti.com>
16859 S:      Maintained
16860 F:      drivers/iio/adc/lp8788_adc.c
16861 F:      drivers/leds/leds-lp8788.c
16862 F:      drivers/mfd/lp8788*.c
16863 F:      drivers/power/supply/lp8788-charger.c
16864 F:      drivers/regulator/lp8788-*.c
16865 F:      include/linux/mfd/lp8788*.h
16866
16867 TI NETCP ETHERNET DRIVER
16868 M:      Wingman Kwok <w-kwok2@ti.com>
16869 M:      Murali Karicheri <m-karicheri2@ti.com>
16870 L:      netdev@vger.kernel.org
16871 S:      Maintained
16872 F:      drivers/net/ethernet/ti/netcp*
16873
16874 TI PCM3060 ASoC CODEC DRIVER
16875 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16877 S:      Maintained
16878 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16879 F:      sound/soc/codecs/pcm3060*
16880
16881 TI TAS571X FAMILY ASoC CODEC DRIVER
16882 M:      Kevin Cernekee <cernekee@chromium.org>
16883 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16884 S:      Odd Fixes
16885 F:      sound/soc/codecs/tas571x*
16886
16887 TI TCAN4X5X DEVICE DRIVER
16888 M:      Dan Murphy <dmurphy@ti.com>
16889 L:      linux-can@vger.kernel.org
16890 S:      Maintained
16891 F:      Documentation/devicetree/bindings/net/can/tcan4x5x.txt
16892 F:      drivers/net/can/m_can/tcan4x5x.c
16893
16894 TI TRF7970A NFC DRIVER
16895 M:      Mark Greer <mgreer@animalcreek.com>
16896 L:      linux-wireless@vger.kernel.org
16897 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16898 S:      Supported
16899 F:      drivers/nfc/trf7970a.c
16900 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16901
16902 TI TWL4030 SERIES SOC CODEC DRIVER
16903 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16904 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16905 S:      Maintained
16906 F:      sound/soc/codecs/twl4030*
16907
16908 TI VPE/CAL DRIVERS
16909 M:      Benoit Parrot <bparrot@ti.com>
16910 L:      linux-media@vger.kernel.org
16911 S:      Maintained
16912 W:      http://linuxtv.org/
16913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16914 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
16915 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
16916 F:      drivers/media/platform/ti-vpe/
16917
16918 TI WILINK WIRELESS DRIVERS
16919 L:      linux-wireless@vger.kernel.org
16920 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16921 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16923 S:      Orphan
16924 F:      drivers/net/wireless/ti/
16925 F:      include/linux/wl12xx.h
16926
16927 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16928 M:      John Stultz <john.stultz@linaro.org>
16929 M:      Thomas Gleixner <tglx@linutronix.de>
16930 R:      Stephen Boyd <sboyd@kernel.org>
16931 L:      linux-kernel@vger.kernel.org
16932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16933 S:      Supported
16934 F:      include/linux/clocksource.h
16935 F:      include/linux/time.h
16936 F:      include/linux/timex.h
16937 F:      include/uapi/linux/time.h
16938 F:      include/uapi/linux/timex.h
16939 F:      kernel/time/clocksource.c
16940 F:      kernel/time/time*.c
16941 F:      kernel/time/alarmtimer.c
16942 F:      kernel/time/ntp.c
16943 F:      tools/testing/selftests/timers/
16944
16945 TIPC NETWORK LAYER
16946 M:      Jon Maloy <jmaloy@redhat.com>
16947 M:      Ying Xue <ying.xue@windriver.com>
16948 L:      netdev@vger.kernel.org (core kernel code)
16949 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16950 W:      http://tipc.sourceforge.net/
16951 S:      Maintained
16952 F:      include/uapi/linux/tipc*.h
16953 F:      net/tipc/
16954
16955 TLAN NETWORK DRIVER
16956 M:      Samuel Chessman <chessman@tux.org>
16957 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16958 W:      http://sourceforge.net/projects/tlan/
16959 S:      Maintained
16960 F:      Documentation/networking/device_drivers/ti/tlan.txt
16961 F:      drivers/net/ethernet/ti/tlan.*
16962
16963 TM6000 VIDEO4LINUX DRIVER
16964 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16965 L:      linux-media@vger.kernel.org
16966 W:      https://linuxtv.org
16967 T:      git git://linuxtv.org/media_tree.git
16968 S:      Odd fixes
16969 F:      drivers/media/usb/tm6000/
16970 F:      Documentation/media/v4l-drivers/tm6000*
16971
16972 TMIO/SDHI MMC DRIVER
16973 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16974 L:      linux-mmc@vger.kernel.org
16975 S:      Supported
16976 F:      drivers/mmc/host/tmio_mmc*
16977 F:      drivers/mmc/host/renesas_sdhi*
16978 F:      include/linux/mfd/tmio.h
16979
16980 TMP401 HARDWARE MONITOR DRIVER
16981 M:      Guenter Roeck <linux@roeck-us.net>
16982 L:      linux-hwmon@vger.kernel.org
16983 S:      Maintained
16984 F:      Documentation/hwmon/tmp401.rst
16985 F:      drivers/hwmon/tmp401.c
16986
16987 TMP513 HARDWARE MONITOR DRIVER
16988 M:      Eric Tremblay <etremblay@distech-controls.com>
16989 L:      linux-hwmon@vger.kernel.org
16990 S:      Maintained
16991 F:      Documentation/hwmon/tmp513.rst
16992 F:      drivers/hwmon/tmp513.c
16993
16994 TMPFS (SHMEM FILESYSTEM)
16995 M:      Hugh Dickins <hughd@google.com>
16996 L:      linux-mm@kvack.org
16997 S:      Maintained
16998 F:      include/linux/shmem_fs.h
16999 F:      mm/shmem.c
17000
17001 TOMOYO SECURITY MODULE
17002 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
17003 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
17004 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
17005 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
17006 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
17007 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
17008 W:      https://tomoyo.osdn.jp/
17009 S:      Maintained
17010 F:      security/tomoyo/
17011
17012 TOPSTAR LAPTOP EXTRAS DRIVER
17013 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17014 L:      platform-driver-x86@vger.kernel.org
17015 S:      Maintained
17016 F:      drivers/platform/x86/topstar-laptop.c
17017
17018 TORTURE-TEST MODULES
17019 M:      Davidlohr Bueso <dave@stgolabs.net>
17020 M:      "Paul E. McKenney" <paulmck@kernel.org>
17021 M:      Josh Triplett <josh@joshtriplett.org>
17022 L:      linux-kernel@vger.kernel.org
17023 S:      Supported
17024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17025 F:      Documentation/RCU/torture.txt
17026 F:      kernel/torture.c
17027 F:      kernel/rcu/rcutorture.c
17028 F:      kernel/rcu/rcuperf.c
17029 F:      kernel/locking/locktorture.c
17030
17031 TOSHIBA ACPI EXTRAS DRIVER
17032 M:      Azael Avalos <coproscefalo@gmail.com>
17033 L:      platform-driver-x86@vger.kernel.org
17034 S:      Maintained
17035 F:      drivers/platform/x86/toshiba_acpi.c
17036
17037 TOSHIBA BLUETOOTH DRIVER
17038 M:      Azael Avalos <coproscefalo@gmail.com>
17039 L:      platform-driver-x86@vger.kernel.org
17040 S:      Maintained
17041 F:      drivers/platform/x86/toshiba_bluetooth.c
17042
17043 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
17044 M:      Azael Avalos <coproscefalo@gmail.com>
17045 L:      platform-driver-x86@vger.kernel.org
17046 S:      Maintained
17047 F:      drivers/platform/x86/toshiba_haps.c
17048
17049 TOSHIBA SMM DRIVER
17050 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
17051 W:      http://www.buzzard.org.uk/toshiba/
17052 S:      Maintained
17053 F:      drivers/char/toshiba.c
17054 F:      include/linux/toshiba.h
17055 F:      include/uapi/linux/toshiba.h
17056
17057 TOSHIBA TC358743 DRIVER
17058 M:      Mats Randgaard <matrandg@cisco.com>
17059 L:      linux-media@vger.kernel.org
17060 S:      Maintained
17061 F:      drivers/media/i2c/tc358743*
17062 F:      include/media/i2c/tc358743.h
17063
17064 TOSHIBA WMI HOTKEYS DRIVER
17065 M:      Azael Avalos <coproscefalo@gmail.com>
17066 L:      platform-driver-x86@vger.kernel.org
17067 S:      Maintained
17068 F:      drivers/platform/x86/toshiba-wmi.c
17069
17070 TPM DEVICE DRIVER
17071 M:      Peter Huewe <peterhuewe@gmx.de>
17072 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
17073 R:      Jason Gunthorpe <jgg@ziepe.ca>
17074 L:      linux-integrity@vger.kernel.org
17075 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
17076 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
17077 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
17078 S:      Maintained
17079 F:      drivers/char/tpm/
17080
17081 TRACING
17082 M:      Steven Rostedt <rostedt@goodmis.org>
17083 M:      Ingo Molnar <mingo@redhat.com>
17084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
17085 S:      Maintained
17086 F:      Documentation/trace/ftrace.rst
17087 F:      arch/*/*/*/ftrace.h
17088 F:      arch/*/kernel/ftrace.c
17089 F:      include/*/ftrace.h
17090 F:      include/linux/trace*.h
17091 F:      include/trace/
17092 F:      kernel/trace/
17093 F:      tools/testing/selftests/ftrace/
17094
17095 TRACING MMIO ACCESSES (MMIOTRACE)
17096 M:      Steven Rostedt <rostedt@goodmis.org>
17097 M:      Ingo Molnar <mingo@kernel.org>
17098 R:      Karol Herbst <karolherbst@gmail.com>
17099 R:      Pekka Paalanen <ppaalanen@gmail.com>
17100 S:      Maintained
17101 L:      linux-kernel@vger.kernel.org
17102 L:      nouveau@lists.freedesktop.org
17103 F:      kernel/trace/trace_mmiotrace.c
17104 F:      include/linux/mmiotrace.h
17105 F:      arch/x86/mm/kmmio.c
17106 F:      arch/x86/mm/mmio-mod.c
17107 F:      arch/x86/mm/testmmiotrace.c
17108
17109 TRIVIAL PATCHES
17110 M:      Jiri Kosina <trivial@kernel.org>
17111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
17112 S:      Maintained
17113 K:      ^Subject:.*(?i)trivial
17114
17115 TEMPO SEMICONDUCTOR DRIVERS
17116 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
17117 S:      Maintained
17118 F:      sound/soc/codecs/tscs*.c
17119 F:      sound/soc/codecs/tscs*.h
17120 F:      Documentation/devicetree/bindings/sound/tscs*.txt
17121
17122 TTY LAYER
17123 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17124 M:      Jiri Slaby <jslaby@suse.com>
17125 S:      Supported
17126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
17127 F:      Documentation/driver-api/serial/
17128 F:      drivers/tty/
17129 F:      drivers/tty/serial/serial_core.c
17130 F:      include/linux/serial_core.h
17131 F:      include/linux/serial.h
17132 F:      include/linux/tty.h
17133 F:      include/uapi/linux/serial_core.h
17134 F:      include/uapi/linux/serial.h
17135 F:      include/uapi/linux/tty.h
17136
17137 TUA9001 MEDIA DRIVER
17138 M:      Antti Palosaari <crope@iki.fi>
17139 L:      linux-media@vger.kernel.org
17140 W:      https://linuxtv.org
17141 W:      http://palosaari.fi/linux/
17142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17143 T:      git git://linuxtv.org/anttip/media_tree.git
17144 S:      Maintained
17145 F:      drivers/media/tuners/tua9001*
17146
17147 TULIP NETWORK DRIVERS
17148 L:      netdev@vger.kernel.org
17149 L:      linux-parisc@vger.kernel.org
17150 S:      Orphan
17151 F:      drivers/net/ethernet/dec/tulip/
17152
17153 TUN/TAP driver
17154 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
17155 W:      http://vtun.sourceforge.net/tun
17156 S:      Maintained
17157 F:      Documentation/networking/tuntap.txt
17158 F:      arch/um/os-Linux/drivers/
17159
17160 TURBOCHANNEL SUBSYSTEM
17161 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17162 M:      Ralf Baechle <ralf@linux-mips.org>
17163 L:      linux-mips@vger.kernel.org
17164 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
17165 S:      Maintained
17166 F:      drivers/tc/
17167 F:      include/linux/tc.h
17168
17169 TURBOSTAT UTILITY
17170 M:      "Len Brown" <lenb@kernel.org>
17171 L:      linux-pm@vger.kernel.org
17172 B:      https://bugzilla.kernel.org
17173 Q:      https://patchwork.kernel.org/project/linux-pm/list/
17174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
17175 S:      Supported
17176 F:      tools/power/x86/turbostat/
17177
17178 TW5864 VIDEO4LINUX DRIVER
17179 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17180 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17181 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
17182 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17183 L:      linux-media@vger.kernel.org
17184 S:      Supported
17185 F:      drivers/media/pci/tw5864/
17186
17187 TW68 VIDEO4LINUX DRIVER
17188 M:      Hans Verkuil <hverkuil@xs4all.nl>
17189 L:      linux-media@vger.kernel.org
17190 T:      git git://linuxtv.org/media_tree.git
17191 W:      https://linuxtv.org
17192 S:      Odd Fixes
17193 F:      drivers/media/pci/tw68/
17194
17195 TW686X VIDEO4LINUX DRIVER
17196 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17197 L:      linux-media@vger.kernel.org
17198 T:      git git://linuxtv.org/media_tree.git
17199 W:      http://linuxtv.org
17200 S:      Maintained
17201 F:      drivers/media/pci/tw686x/
17202
17203 UACCE ACCELERATOR FRAMEWORK
17204 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
17205 M:      Zhou Wang <wangzhou1@hisilicon.com>
17206 L:      linux-accelerators@lists.ozlabs.org
17207 L:      linux-kernel@vger.kernel.org
17208 S:      Maintained
17209 F:      Documentation/ABI/testing/sysfs-driver-uacce
17210 F:      Documentation/misc-devices/uacce.rst
17211 F:      drivers/misc/uacce/
17212 F:      include/linux/uacce.h
17213 F:      include/uapi/misc/uacce/
17214
17215 UBI FILE SYSTEM (UBIFS)
17216 M:      Richard Weinberger <richard@nod.at>
17217 L:      linux-mtd@lists.infradead.org
17218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17220 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
17221 S:      Supported
17222 F:      Documentation/filesystems/ubifs.rst
17223 F:      fs/ubifs/
17224
17225 UCLINUX (M68KNOMMU AND COLDFIRE)
17226 M:      Greg Ungerer <gerg@linux-m68k.org>
17227 W:      http://www.linux-m68k.org/
17228 W:      http://www.uclinux.org/
17229 L:      linux-m68k@lists.linux-m68k.org
17230 L:      uclinux-dev@uclinux.org  (subscribers-only)
17231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
17232 S:      Maintained
17233 F:      arch/m68k/coldfire/
17234 F:      arch/m68k/68*/
17235 F:      arch/m68k/*/*_no.*
17236 F:      arch/m68k/include/asm/*_no.*
17237
17238 UDF FILESYSTEM
17239 M:      Jan Kara <jack@suse.com>
17240 S:      Maintained
17241 F:      Documentation/filesystems/udf.rst
17242 F:      fs/udf/
17243
17244 UDRAW TABLET
17245 M:      Bastien Nocera <hadess@hadess.net>
17246 L:      linux-input@vger.kernel.org
17247 S:      Maintained
17248 F:      drivers/hid/hid-udraw-ps3.c
17249
17250 UFS FILESYSTEM
17251 M:      Evgeniy Dushistov <dushistov@mail.ru>
17252 S:      Maintained
17253 F:      Documentation/admin-guide/ufs.rst
17254 F:      fs/ufs/
17255
17256 UHID USERSPACE HID IO DRIVER
17257 M:      David Herrmann <dh.herrmann@googlemail.com>
17258 L:      linux-input@vger.kernel.org
17259 S:      Maintained
17260 F:      drivers/hid/uhid.c
17261 F:      include/uapi/linux/uhid.h
17262
17263 ULPI BUS
17264 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17265 L:      linux-usb@vger.kernel.org
17266 S:      Maintained
17267 F:      drivers/usb/common/ulpi.c
17268 F:      include/linux/ulpi/
17269
17270 UNICODE SUBSYSTEM
17271 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
17272 L:      linux-fsdevel@vger.kernel.org
17273 S:      Supported
17274 F:      fs/unicode/
17275
17276 UNICORE32 ARCHITECTURE
17277 M:      Guan Xuetao <gxt@pku.edu.cn>
17278 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
17279 S:      Maintained
17280 T:      git git://github.com/gxt/linux.git
17281 F:      arch/unicore32/
17282
17283 UNIFDEF
17284 M:      Tony Finch <dot@dotat.at>
17285 W:      http://dotat.at/prog/unifdef
17286 S:      Maintained
17287 F:      scripts/unifdef.c
17288
17289 UNIFORM CDROM DRIVER
17290 M:      Jens Axboe <axboe@kernel.dk>
17291 W:      http://www.kernel.dk
17292 S:      Maintained
17293 F:      Documentation/cdrom/
17294 F:      drivers/cdrom/cdrom.c
17295 F:      include/linux/cdrom.h
17296 F:      include/uapi/linux/cdrom.h
17297
17298 UNISYS S-PAR DRIVERS
17299 M:      David Kershner <david.kershner@unisys.com>
17300 L:      sparmaintainer@unisys.com (Unisys internal)
17301 S:      Supported
17302 F:      include/linux/visorbus.h
17303 F:      drivers/visorbus/
17304 F:      drivers/staging/unisys/
17305
17306 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
17307 R:      Alim Akhtar <alim.akhtar@samsung.com>
17308 R:      Avri Altman <avri.altman@wdc.com>
17309 L:      linux-scsi@vger.kernel.org
17310 S:      Supported
17311 F:      Documentation/scsi/ufs.rst
17312 F:      drivers/scsi/ufs/
17313
17314 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
17315 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
17316 L:      linux-scsi@vger.kernel.org
17317 S:      Supported
17318 F:      drivers/scsi/ufs/*dwc*
17319
17320 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
17321 M:      Stanley Chu <stanley.chu@mediatek.com>
17322 L:      linux-scsi@vger.kernel.org
17323 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
17324 S:      Maintained
17325 F:      drivers/scsi/ufs/ufs-mediatek*
17326
17327 UNSORTED BLOCK IMAGES (UBI)
17328 M:      Richard Weinberger <richard@nod.at>
17329 W:      http://www.linux-mtd.infradead.org/
17330 L:      linux-mtd@lists.infradead.org
17331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
17332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
17333 S:      Supported
17334 F:      drivers/mtd/ubi/
17335 F:      include/linux/mtd/ubi.h
17336 F:      include/uapi/mtd/ubi-user.h
17337
17338 USB "USBNET" DRIVER FRAMEWORK
17339 M:      Oliver Neukum <oneukum@suse.com>
17340 L:      netdev@vger.kernel.org
17341 W:      http://www.linux-usb.org/usbnet
17342 S:      Maintained
17343 F:      drivers/net/usb/usbnet.c
17344 F:      include/linux/usb/usbnet.h
17345
17346 USB ACM DRIVER
17347 M:      Oliver Neukum <oneukum@suse.com>
17348 L:      linux-usb@vger.kernel.org
17349 S:      Maintained
17350 F:      Documentation/usb/acm.rst
17351 F:      drivers/usb/class/cdc-acm.*
17352
17353 USB APPLE MFI FASTCHARGE DRIVER
17354 M:      Bastien Nocera <hadess@hadess.net>
17355 L:      linux-usb@vger.kernel.org
17356 S:      Maintained
17357 F:      drivers/usb/misc/apple-mfi-fastcharge.c
17358
17359 USB AR5523 WIRELESS DRIVER
17360 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
17361 L:      linux-wireless@vger.kernel.org
17362 S:      Maintained
17363 F:      drivers/net/wireless/ath/ar5523/
17364
17365 USB ATTACHED SCSI
17366 M:      Oliver Neukum <oneukum@suse.com>
17367 L:      linux-usb@vger.kernel.org
17368 L:      linux-scsi@vger.kernel.org
17369 S:      Maintained
17370 F:      drivers/usb/storage/uas.c
17371
17372 USB CDC ETHERNET DRIVER
17373 M:      Oliver Neukum <oliver@neukum.org>
17374 L:      linux-usb@vger.kernel.org
17375 S:      Maintained
17376 F:      drivers/net/usb/cdc_*.c
17377 F:      include/uapi/linux/usb/cdc.h
17378
17379 USB CHAOSKEY DRIVER
17380 M:      Keith Packard <keithp@keithp.com>
17381 L:      linux-usb@vger.kernel.org
17382 S:      Maintained
17383 F:      drivers/usb/misc/chaoskey.c
17384
17385 USB CYPRESS C67X00 DRIVER
17386 M:      Peter Korsgaard <jacmet@sunsite.dk>
17387 L:      linux-usb@vger.kernel.org
17388 S:      Maintained
17389 F:      drivers/usb/c67x00/
17390
17391 USB DAVICOM DM9601 DRIVER
17392 M:      Peter Korsgaard <jacmet@sunsite.dk>
17393 L:      netdev@vger.kernel.org
17394 W:      http://www.linux-usb.org/usbnet
17395 S:      Maintained
17396 F:      drivers/net/usb/dm9601.c
17397
17398 USB EHCI DRIVER
17399 M:      Alan Stern <stern@rowland.harvard.edu>
17400 L:      linux-usb@vger.kernel.org
17401 S:      Maintained
17402 F:      Documentation/usb/ehci.rst
17403 F:      drivers/usb/host/ehci*
17404
17405 USB GADGET/PERIPHERAL SUBSYSTEM
17406 M:      Felipe Balbi <balbi@kernel.org>
17407 L:      linux-usb@vger.kernel.org
17408 W:      http://www.linux-usb.org/gadget
17409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17410 S:      Maintained
17411 F:      drivers/usb/gadget/
17412 F:      include/linux/usb/gadget*
17413
17414 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
17415 M:      Jiri Kosina <jikos@kernel.org>
17416 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
17417 L:      linux-usb@vger.kernel.org
17418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
17419 S:      Maintained
17420 F:      Documentation/hid/hiddev.rst
17421 F:      drivers/hid/usbhid/
17422
17423 USB INTEL XHCI ROLE MUX DRIVER
17424 M:      Hans de Goede <hdegoede@redhat.com>
17425 L:      linux-usb@vger.kernel.org
17426 S:      Maintained
17427 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
17428
17429 USB IP DRIVER FOR HISILICON KIRIN
17430 M:      Yu Chen <chenyu56@huawei.com>
17431 M:      Binghui Wang <wangbinghui@hisilicon.com>
17432 L:      linux-usb@vger.kernel.org
17433 S:      Maintained
17434 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
17435 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
17436
17437 USB ISP116X DRIVER
17438 M:      Olav Kongas <ok@artecdesign.ee>
17439 L:      linux-usb@vger.kernel.org
17440 S:      Maintained
17441 F:      drivers/usb/host/isp116x*
17442 F:      include/linux/usb/isp116x.h
17443
17444 USB LAN78XX ETHERNET DRIVER
17445 M:      Woojung Huh <woojung.huh@microchip.com>
17446 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17447 L:      netdev@vger.kernel.org
17448 S:      Maintained
17449 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
17450 F:      drivers/net/usb/lan78xx.*
17451 F:      include/dt-bindings/net/microchip-lan78xx.h
17452
17453 USB MASS STORAGE DRIVER
17454 M:      Alan Stern <stern@rowland.harvard.edu>
17455 L:      linux-usb@vger.kernel.org
17456 L:      usb-storage@lists.one-eyed-alien.net
17457 S:      Maintained
17458 F:      drivers/usb/storage/
17459
17460 USB MIDI DRIVER
17461 M:      Clemens Ladisch <clemens@ladisch.de>
17462 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17464 S:      Maintained
17465 F:      sound/usb/midi.*
17466
17467 USB NETWORKING DRIVERS
17468 L:      linux-usb@vger.kernel.org
17469 S:      Odd Fixes
17470 F:      drivers/net/usb/
17471
17472 USB OHCI DRIVER
17473 M:      Alan Stern <stern@rowland.harvard.edu>
17474 L:      linux-usb@vger.kernel.org
17475 S:      Maintained
17476 F:      Documentation/usb/ohci.rst
17477 F:      drivers/usb/host/ohci*
17478
17479 USB OTG FSM (Finite State Machine)
17480 M:      Peter Chen <Peter.Chen@nxp.com>
17481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
17482 L:      linux-usb@vger.kernel.org
17483 S:      Maintained
17484 F:      drivers/usb/common/usb-otg-fsm.c
17485
17486 USB OVER IP DRIVER
17487 M:      Valentina Manea <valentina.manea.m@gmail.com>
17488 M:      Shuah Khan <shuah@kernel.org>
17489 M:      Shuah Khan <skhan@linuxfoundation.org>
17490 L:      linux-usb@vger.kernel.org
17491 S:      Maintained
17492 F:      Documentation/usb/usbip_protocol.rst
17493 F:      drivers/usb/usbip/
17494 F:      tools/usb/usbip/
17495 F:      tools/testing/selftests/drivers/usb/usbip/
17496
17497 USB PEGASUS DRIVER
17498 M:      Petko Manolov <petkan@nucleusys.com>
17499 L:      linux-usb@vger.kernel.org
17500 L:      netdev@vger.kernel.org
17501 T:      git git://github.com/petkan/pegasus.git
17502 W:      https://github.com/petkan/pegasus
17503 S:      Maintained
17504 F:      drivers/net/usb/pegasus.*
17505
17506 USB PHY LAYER
17507 M:      Felipe Balbi <balbi@kernel.org>
17508 L:      linux-usb@vger.kernel.org
17509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
17510 S:      Maintained
17511 F:      drivers/usb/phy/
17512
17513 USB PRINTER DRIVER (usblp)
17514 M:      Pete Zaitcev <zaitcev@redhat.com>
17515 L:      linux-usb@vger.kernel.org
17516 S:      Supported
17517 F:      drivers/usb/class/usblp.c
17518
17519 USB QMI WWAN NETWORK DRIVER
17520 M:      Bjørn Mork <bjorn@mork.no>
17521 L:      netdev@vger.kernel.org
17522 S:      Maintained
17523 F:      Documentation/ABI/testing/sysfs-class-net-qmi
17524 F:      drivers/net/usb/qmi_wwan.c
17525
17526 USB RTL8150 DRIVER
17527 M:      Petko Manolov <petkan@nucleusys.com>
17528 L:      linux-usb@vger.kernel.org
17529 L:      netdev@vger.kernel.org
17530 T:      git git://github.com/petkan/rtl8150.git
17531 W:      https://github.com/petkan/rtl8150
17532 S:      Maintained
17533 F:      drivers/net/usb/rtl8150.c
17534
17535 USB SERIAL SUBSYSTEM
17536 M:      Johan Hovold <johan@kernel.org>
17537 L:      linux-usb@vger.kernel.org
17538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
17539 S:      Maintained
17540 F:      Documentation/usb/usb-serial.rst
17541 F:      drivers/usb/serial/
17542 F:      include/linux/usb/serial.h
17543
17544 USB SMSC75XX ETHERNET DRIVER
17545 M:      Steve Glendinning <steve.glendinning@shawell.net>
17546 L:      netdev@vger.kernel.org
17547 S:      Maintained
17548 F:      drivers/net/usb/smsc75xx.*
17549
17550 USB SMSC95XX ETHERNET DRIVER
17551 M:      Steve Glendinning <steve.glendinning@shawell.net>
17552 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
17553 L:      netdev@vger.kernel.org
17554 S:      Maintained
17555 F:      drivers/net/usb/smsc95xx.*
17556
17557 USB SUBSYSTEM
17558 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17559 L:      linux-usb@vger.kernel.org
17560 W:      http://www.linux-usb.org
17561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
17562 S:      Supported
17563 F:      Documentation/devicetree/bindings/usb/
17564 F:      Documentation/usb/
17565 F:      drivers/usb/
17566 F:      include/linux/usb.h
17567 F:      include/linux/usb/
17568
17569 USB TYPEC BUS FOR ALTERNATE MODES
17570 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17571 L:      linux-usb@vger.kernel.org
17572 S:      Maintained
17573 F:      Documentation/ABI/testing/sysfs-bus-typec
17574 F:      Documentation/driver-api/usb/typec_bus.rst
17575 F:      drivers/usb/typec/altmodes/
17576 F:      include/linux/usb/typec_altmode.h
17577
17578 USB TYPEC CLASS
17579 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17580 L:      linux-usb@vger.kernel.org
17581 S:      Maintained
17582 F:      Documentation/ABI/testing/sysfs-class-typec
17583 F:      Documentation/driver-api/usb/typec.rst
17584 F:      drivers/usb/typec/
17585 F:      include/linux/usb/typec.h
17586
17587 USB TYPEC PI3USB30532 MUX DRIVER
17588 M:      Hans de Goede <hdegoede@redhat.com>
17589 L:      linux-usb@vger.kernel.org
17590 S:      Maintained
17591 F:      drivers/usb/typec/mux/pi3usb30532.c
17592
17593 USB TYPEC PORT CONTROLLER DRIVERS
17594 M:      Guenter Roeck <linux@roeck-us.net>
17595 L:      linux-usb@vger.kernel.org
17596 S:      Maintained
17597 F:      drivers/usb/typec/tcpm/
17598
17599 USB UHCI DRIVER
17600 M:      Alan Stern <stern@rowland.harvard.edu>
17601 L:      linux-usb@vger.kernel.org
17602 S:      Maintained
17603 F:      drivers/usb/host/uhci*
17604
17605 USB VIDEO CLASS
17606 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17607 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17608 L:      linux-media@vger.kernel.org
17609 T:      git git://linuxtv.org/media_tree.git
17610 W:      http://www.ideasonboard.org/uvc/
17611 S:      Maintained
17612 F:      drivers/media/usb/uvc/
17613 F:      include/uapi/linux/uvcvideo.h
17614
17615 USB VISION DRIVER
17616 M:      Hans Verkuil <hverkuil@xs4all.nl>
17617 L:      linux-media@vger.kernel.org
17618 T:      git git://linuxtv.org/media_tree.git
17619 W:      https://linuxtv.org
17620 S:      Odd Fixes
17621 F:      drivers/staging/media/usbvision/
17622
17623 USB WEBCAM GADGET
17624 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17625 L:      linux-usb@vger.kernel.org
17626 S:      Maintained
17627 F:      drivers/usb/gadget/function/*uvc*
17628 F:      drivers/usb/gadget/legacy/webcam.c
17629 F:      include/uapi/linux/usb/g_uvc.h
17630
17631 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17632 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17633 L:      linux-wireless@vger.kernel.org
17634 S:      Maintained
17635 F:      drivers/net/wireless/rndis_wlan.c
17636
17637 USB XHCI DRIVER
17638 M:      Mathias Nyman <mathias.nyman@intel.com>
17639 L:      linux-usb@vger.kernel.org
17640 S:      Supported
17641 F:      drivers/usb/host/xhci*
17642 F:      drivers/usb/host/pci-quirks*
17643
17644 USB ZD1201 DRIVER
17645 L:      linux-wireless@vger.kernel.org
17646 W:      http://linux-lc100020.sourceforge.net
17647 S:      Orphan
17648 F:      drivers/net/wireless/zydas/zd1201.*
17649
17650 USB ZR364XX DRIVER
17651 M:      Antoine Jacquet <royale@zerezo.com>
17652 L:      linux-usb@vger.kernel.org
17653 L:      linux-media@vger.kernel.org
17654 T:      git git://linuxtv.org/media_tree.git
17655 W:      http://royale.zerezo.com/zr364xx/
17656 S:      Maintained
17657 F:      Documentation/media/v4l-drivers/zr364xx*
17658 F:      drivers/media/usb/zr364xx/
17659
17660 USER-MODE LINUX (UML)
17661 M:      Jeff Dike <jdike@addtoit.com>
17662 M:      Richard Weinberger <richard@nod.at>
17663 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17664 L:      linux-um@lists.infradead.org
17665 W:      http://user-mode-linux.sourceforge.net
17666 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17668 S:      Maintained
17669 F:      Documentation/virt/uml/
17670 F:      arch/um/
17671 F:      arch/x86/um/
17672 F:      fs/hostfs/
17673
17674 USERSPACE COPYIN/COPYOUT (UIOVEC)
17675 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17676 S:      Maintained
17677 F:      lib/iov_iter.c
17678 F:      include/linux/uio.h
17679
17680 USERSPACE DMA BUFFER DRIVER
17681 M:      Gerd Hoffmann <kraxel@redhat.com>
17682 S:      Maintained
17683 L:      dri-devel@lists.freedesktop.org
17684 F:      drivers/dma-buf/udmabuf.c
17685 F:      include/uapi/linux/udmabuf.h
17686 T:      git git://anongit.freedesktop.org/drm/drm-misc
17687
17688 USERSPACE I/O (UIO)
17689 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17690 S:      Maintained
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17692 F:      Documentation/driver-api/uio-howto.rst
17693 F:      drivers/uio/
17694 F:      include/linux/uio_driver.h
17695
17696 UTIL-LINUX PACKAGE
17697 M:      Karel Zak <kzak@redhat.com>
17698 L:      util-linux@vger.kernel.org
17699 W:      http://en.wikipedia.org/wiki/Util-linux
17700 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17701 S:      Maintained
17702
17703 UUID HELPERS
17704 M:      Christoph Hellwig <hch@lst.de>
17705 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17706 L:      linux-kernel@vger.kernel.org
17707 T:      git git://git.infradead.org/users/hch/uuid.git
17708 F:      lib/uuid.c
17709 F:      lib/test_uuid.c
17710 F:      include/linux/uuid.h
17711 F:      include/uapi/linux/uuid.h
17712 S:      Maintained
17713
17714 UVESAFB DRIVER
17715 M:      Michal Januszewski <spock@gentoo.org>
17716 L:      linux-fbdev@vger.kernel.org
17717 W:      https://github.com/mjanusz/v86d
17718 S:      Maintained
17719 F:      Documentation/fb/uvesafb.rst
17720 F:      drivers/video/fbdev/uvesafb.*
17721
17722 VF610 NAND DRIVER
17723 M:      Stefan Agner <stefan@agner.ch>
17724 L:      linux-mtd@lists.infradead.org
17725 S:      Supported
17726 F:      drivers/mtd/nand/raw/vf610_nfc.c
17727
17728 VFAT/FAT/MSDOS FILESYSTEM
17729 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17730 S:      Maintained
17731 F:      Documentation/filesystems/vfat.rst
17732 F:      fs/fat/
17733
17734 VFIO DRIVER
17735 M:      Alex Williamson <alex.williamson@redhat.com>
17736 R:      Cornelia Huck <cohuck@redhat.com>
17737 L:      kvm@vger.kernel.org
17738 T:      git git://github.com/awilliam/linux-vfio.git
17739 S:      Maintained
17740 F:      Documentation/driver-api/vfio.rst
17741 F:      drivers/vfio/
17742 F:      include/linux/vfio.h
17743 F:      include/uapi/linux/vfio.h
17744
17745 VFIO MEDIATED DEVICE DRIVERS
17746 M:      Kirti Wankhede <kwankhede@nvidia.com>
17747 L:      kvm@vger.kernel.org
17748 S:      Maintained
17749 F:      Documentation/driver-api/vfio-mediated-device.rst
17750 F:      drivers/vfio/mdev/
17751 F:      include/linux/mdev.h
17752 F:      samples/vfio-mdev/
17753
17754 VFIO PLATFORM DRIVER
17755 M:      Eric Auger <eric.auger@redhat.com>
17756 L:      kvm@vger.kernel.org
17757 S:      Maintained
17758 F:      drivers/vfio/platform/
17759
17760 VGA_SWITCHEROO
17761 R:      Lukas Wunner <lukas@wunner.de>
17762 S:      Maintained
17763 F:      Documentation/gpu/vga-switcheroo.rst
17764 F:      drivers/gpu/vga/vga_switcheroo.c
17765 F:      include/linux/vga_switcheroo.h
17766 T:      git git://anongit.freedesktop.org/drm/drm-misc
17767
17768 VIA RHINE NETWORK DRIVER
17769 S:      Orphan
17770 F:      drivers/net/ethernet/via/via-rhine.c
17771
17772 VIA SD/MMC CARD CONTROLLER DRIVER
17773 M:      Bruce Chang <brucechang@via.com.tw>
17774 M:      Harald Welte <HaraldWelte@viatech.com>
17775 S:      Maintained
17776 F:      drivers/mmc/host/via-sdmmc.c
17777
17778 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17779 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17780 L:      linux-fbdev@vger.kernel.org
17781 S:      Maintained
17782 F:      include/linux/via-core.h
17783 F:      include/linux/via-gpio.h
17784 F:      include/linux/via_i2c.h
17785 F:      drivers/video/fbdev/via/
17786
17787 VIA VELOCITY NETWORK DRIVER
17788 M:      Francois Romieu <romieu@fr.zoreil.com>
17789 L:      netdev@vger.kernel.org
17790 S:      Maintained
17791 F:      drivers/net/ethernet/via/via-velocity.*
17792
17793 VICODEC VIRTUAL CODEC DRIVER
17794 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17795 L:      linux-media@vger.kernel.org
17796 T:      git git://linuxtv.org/media_tree.git
17797 W:      https://linuxtv.org
17798 S:      Maintained
17799 F:      drivers/media/platform/vicodec/*
17800
17801 VIDEO MULTIPLEXER DRIVER
17802 M:      Philipp Zabel <p.zabel@pengutronix.de>
17803 L:      linux-media@vger.kernel.org
17804 S:      Maintained
17805 F:      drivers/media/platform/video-mux.c
17806
17807 VIDEO I2C POLLING DRIVER
17808 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17809 L:      linux-media@vger.kernel.org
17810 S:      Maintained
17811 F:      drivers/media/i2c/video-i2c.c
17812
17813 VIDEOBUF2 FRAMEWORK
17814 M:      Pawel Osciak <pawel@osciak.com>
17815 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17816 M:      Kyungmin Park <kyungmin.park@samsung.com>
17817 R:      Tomasz Figa <tfiga@chromium.org>
17818 L:      linux-media@vger.kernel.org
17819 S:      Maintained
17820 F:      drivers/media/common/videobuf2/*
17821 F:      include/media/videobuf2-*
17822
17823 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17824 M:      Helen Koike <helen.koike@collabora.com>
17825 R:      Shuah Khan <skhan@linuxfoundation.org>
17826 L:      linux-media@vger.kernel.org
17827 T:      git git://linuxtv.org/media_tree.git
17828 W:      https://linuxtv.org
17829 S:      Maintained
17830 F:      drivers/media/platform/vimc/*
17831
17832 VIRT LIB
17833 M:      Alex Williamson <alex.williamson@redhat.com>
17834 M:      Paolo Bonzini <pbonzini@redhat.com>
17835 L:      kvm@vger.kernel.org
17836 S:      Supported
17837 F:      virt/lib/
17838
17839 VIRTIO AND VHOST VSOCK DRIVER
17840 M:      Stefan Hajnoczi <stefanha@redhat.com>
17841 M:      Stefano Garzarella <sgarzare@redhat.com>
17842 L:      kvm@vger.kernel.org
17843 L:      virtualization@lists.linux-foundation.org
17844 L:      netdev@vger.kernel.org
17845 S:      Maintained
17846 F:      include/linux/virtio_vsock.h
17847 F:      include/uapi/linux/virtio_vsock.h
17848 F:      include/uapi/linux/vsockmon.h
17849 F:      include/uapi/linux/vm_sockets_diag.h
17850 F:      net/vmw_vsock/diag.c
17851 F:      net/vmw_vsock/af_vsock_tap.c
17852 F:      net/vmw_vsock/virtio_transport_common.c
17853 F:      net/vmw_vsock/virtio_transport.c
17854 F:      net/vmw_vsock/vsock_loopback.c
17855 F:      drivers/net/vsockmon.c
17856 F:      drivers/vhost/vsock.c
17857 F:      tools/testing/vsock/
17858
17859 VIRTIO CONSOLE DRIVER
17860 M:      Amit Shah <amit@kernel.org>
17861 L:      virtualization@lists.linux-foundation.org
17862 S:      Maintained
17863 F:      drivers/char/virtio_console.c
17864 F:      include/linux/virtio_console.h
17865 F:      include/uapi/linux/virtio_console.h
17866
17867 VIRTIO CORE AND NET DRIVERS
17868 M:      "Michael S. Tsirkin" <mst@redhat.com>
17869 M:      Jason Wang <jasowang@redhat.com>
17870 L:      virtualization@lists.linux-foundation.org
17871 S:      Maintained
17872 F:      Documentation/devicetree/bindings/virtio/
17873 F:      drivers/virtio/
17874 F:      tools/virtio/
17875 F:      drivers/net/virtio_net.c
17876 F:      drivers/block/virtio_blk.c
17877 F:      include/linux/virtio*.h
17878 F:      include/uapi/linux/virtio_*.h
17879 F:      drivers/crypto/virtio/
17880 F:      mm/balloon_compaction.c
17881
17882 VIRTIO BLOCK AND SCSI DRIVERS
17883 M:      "Michael S. Tsirkin" <mst@redhat.com>
17884 M:      Jason Wang <jasowang@redhat.com>
17885 R:      Paolo Bonzini <pbonzini@redhat.com>
17886 R:      Stefan Hajnoczi <stefanha@redhat.com>
17887 L:      virtualization@lists.linux-foundation.org
17888 S:      Maintained
17889 F:      drivers/block/virtio_blk.c
17890 F:      drivers/scsi/virtio_scsi.c
17891 F:      include/uapi/linux/virtio_blk.h
17892 F:      include/uapi/linux/virtio_scsi.h
17893 F:      drivers/vhost/scsi.c
17894
17895 VIRTIO CRYPTO DRIVER
17896 M:      Gonglei <arei.gonglei@huawei.com>
17897 L:      virtualization@lists.linux-foundation.org
17898 L:      linux-crypto@vger.kernel.org
17899 S:      Maintained
17900 F:      drivers/crypto/virtio/
17901 F:      include/uapi/linux/virtio_crypto.h
17902
17903 VIRTIO DRIVERS FOR S390
17904 M:      Cornelia Huck <cohuck@redhat.com>
17905 M:      Halil Pasic <pasic@linux.ibm.com>
17906 L:      linux-s390@vger.kernel.org
17907 L:      virtualization@lists.linux-foundation.org
17908 L:      kvm@vger.kernel.org
17909 S:      Supported
17910 F:      drivers/s390/virtio/
17911 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17912
17913 VIRTIO FILE SYSTEM
17914 M:      Vivek Goyal <vgoyal@redhat.com>
17915 M:      Stefan Hajnoczi <stefanha@redhat.com>
17916 M:      Miklos Szeredi <miklos@szeredi.hu>
17917 L:      virtualization@lists.linux-foundation.org
17918 L:      linux-fsdevel@vger.kernel.org
17919 W:      https://virtio-fs.gitlab.io/
17920 S:      Supported
17921 F:      fs/fuse/virtio_fs.c
17922 F:      include/uapi/linux/virtio_fs.h
17923 F:      Documentation/filesystems/virtiofs.rst
17924
17925 VIRTIO GPU DRIVER
17926 M:      David Airlie <airlied@linux.ie>
17927 M:      Gerd Hoffmann <kraxel@redhat.com>
17928 L:      dri-devel@lists.freedesktop.org
17929 L:      virtualization@lists.linux-foundation.org
17930 T:      git git://anongit.freedesktop.org/drm/drm-misc
17931 S:      Maintained
17932 F:      drivers/gpu/drm/virtio/
17933 F:      include/uapi/linux/virtio_gpu.h
17934
17935 VIRTIO HOST (VHOST)
17936 M:      "Michael S. Tsirkin" <mst@redhat.com>
17937 M:      Jason Wang <jasowang@redhat.com>
17938 L:      kvm@vger.kernel.org
17939 L:      virtualization@lists.linux-foundation.org
17940 L:      netdev@vger.kernel.org
17941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17942 S:      Maintained
17943 F:      drivers/vhost/
17944 F:      include/uapi/linux/vhost.h
17945
17946 VIRTIO INPUT DRIVER
17947 M:      Gerd Hoffmann <kraxel@redhat.com>
17948 S:      Maintained
17949 F:      drivers/virtio/virtio_input.c
17950 F:      include/uapi/linux/virtio_input.h
17951
17952 VIRTIO IOMMU DRIVER
17953 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17954 L:      virtualization@lists.linux-foundation.org
17955 S:      Maintained
17956 F:      drivers/iommu/virtio-iommu.c
17957 F:      include/uapi/linux/virtio_iommu.h
17958
17959 VIRTUAL BOX GUEST DEVICE DRIVER
17960 M:      Hans de Goede <hdegoede@redhat.com>
17961 M:      Arnd Bergmann <arnd@arndb.de>
17962 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17963 S:      Maintained
17964 F:      include/linux/vbox_utils.h
17965 F:      include/uapi/linux/vbox*.h
17966 F:      drivers/virt/vboxguest/
17967
17968 VIRTUAL BOX SHARED FOLDER VFS DRIVER
17969 M:      Hans de Goede <hdegoede@redhat.com>
17970 L:      linux-fsdevel@vger.kernel.org
17971 S:      Maintained
17972 F:      fs/vboxsf/*
17973
17974 VIRTUAL SERIO DEVICE DRIVER
17975 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17976 S:      Maintained
17977 F:      drivers/input/serio/userio.c
17978 F:      include/uapi/linux/userio.h
17979
17980 VITESSE FELIX ETHERNET SWITCH DRIVER
17981 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
17982 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
17983 L:      netdev@vger.kernel.org
17984 S:      Maintained
17985 F:      drivers/net/dsa/ocelot/*
17986 F:      net/dsa/tag_ocelot.c
17987
17988 VIVID VIRTUAL VIDEO DRIVER
17989 M:      Hans Verkuil <hverkuil@xs4all.nl>
17990 L:      linux-media@vger.kernel.org
17991 T:      git git://linuxtv.org/media_tree.git
17992 W:      https://linuxtv.org
17993 S:      Maintained
17994 F:      drivers/media/platform/vivid/*
17995
17996 VLYNQ BUS
17997 M:      Florian Fainelli <f.fainelli@gmail.com>
17998 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17999 S:      Maintained
18000 F:      drivers/vlynq/vlynq.c
18001 F:      include/linux/vlynq.h
18002
18003 VME SUBSYSTEM
18004 M:      Martyn Welch <martyn@welchs.me.uk>
18005 M:      Manohar Vanga <manohar.vanga@gmail.com>
18006 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18007 L:      devel@driverdev.osuosl.org
18008 S:      Maintained
18009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
18010 F:      Documentation/driver-api/vme.rst
18011 F:      drivers/staging/vme/
18012 F:      drivers/vme/
18013 F:      include/linux/vme*
18014
18015 VMWARE BALLOON DRIVER
18016 M:      Nadav Amit <namit@vmware.com>
18017 M:      "VMware, Inc." <pv-drivers@vmware.com>
18018 L:      linux-kernel@vger.kernel.org
18019 S:      Maintained
18020 F:      drivers/misc/vmw_balloon.c
18021
18022 VMWARE HYPERVISOR INTERFACE
18023 M:      Thomas Hellstrom <thellstrom@vmware.com>
18024 M:      "VMware, Inc." <pv-drivers@vmware.com>
18025 L:      virtualization@lists.linux-foundation.org
18026 S:      Supported
18027 F:      arch/x86/kernel/cpu/vmware.c
18028 F:      arch/x86/include/asm/vmware.h
18029
18030 VMWARE VIRTUAL PTP CLOCK DRIVER
18031 M:      Vivek Thampi <vithampi@vmware.com>
18032 M:      "VMware, Inc." <pv-drivers@vmware.com>
18033 L:      netdev@vger.kernel.org
18034 S:      Supported
18035 F:      drivers/ptp/ptp_vmw.c
18036
18037 VMWARE PVRDMA DRIVER
18038 M:      Adit Ranadive <aditr@vmware.com>
18039 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18040 L:      linux-rdma@vger.kernel.org
18041 S:      Maintained
18042 F:      drivers/infiniband/hw/vmw_pvrdma/
18043
18044 VMware PVSCSI driver
18045 M:      Jim Gill <jgill@vmware.com>
18046 M:      VMware PV-Drivers <pv-drivers@vmware.com>
18047 L:      linux-scsi@vger.kernel.org
18048 S:      Maintained
18049 F:      drivers/scsi/vmw_pvscsi.c
18050 F:      drivers/scsi/vmw_pvscsi.h
18051
18052 VMWARE VMMOUSE SUBDRIVER
18053 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
18054 M:      "VMware, Inc." <pv-drivers@vmware.com>
18055 L:      linux-input@vger.kernel.org
18056 S:      Maintained
18057 F:      drivers/input/mouse/vmmouse.c
18058 F:      drivers/input/mouse/vmmouse.h
18059
18060 VMWARE VMXNET3 ETHERNET DRIVER
18061 M:      Ronak Doshi <doshir@vmware.com>
18062 M:      "VMware, Inc." <pv-drivers@vmware.com>
18063 L:      netdev@vger.kernel.org
18064 S:      Maintained
18065 F:      drivers/net/vmxnet3/
18066
18067 VOCORE VOCORE2 BOARD
18068 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
18069 L:      linux-mips@vger.kernel.org
18070 S:      Maintained
18071 F:      arch/mips/boot/dts/ralink/vocore2.dts
18072
18073 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
18074 M:      Liam Girdwood <lgirdwood@gmail.com>
18075 M:      Mark Brown <broonie@kernel.org>
18076 L:      linux-kernel@vger.kernel.org
18077 W:      http://www.slimlogic.co.uk/?p=48
18078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
18079 S:      Supported
18080 F:      Documentation/devicetree/bindings/regulator/
18081 F:      Documentation/power/regulator/
18082 F:      drivers/regulator/
18083 F:      include/dt-bindings/regulator/
18084 F:      include/linux/regulator/
18085 K:      regulator_get_optional
18086
18087 VRF
18088 M:      David Ahern <dsahern@kernel.org>
18089 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
18090 L:      netdev@vger.kernel.org
18091 S:      Maintained
18092 F:      drivers/net/vrf.c
18093 F:      Documentation/networking/vrf.txt
18094
18095 VSPRINTF
18096 M:      Petr Mladek <pmladek@suse.com>
18097 M:      Steven Rostedt <rostedt@goodmis.org>
18098 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
18099 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18100 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
18101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
18102 S:      Maintained
18103 F:      lib/vsprintf.c
18104 F:      lib/test_printf.c
18105 F:      Documentation/core-api/printk-formats.rst
18106
18107 VT1211 HARDWARE MONITOR DRIVER
18108 M:      Juerg Haefliger <juergh@gmail.com>
18109 L:      linux-hwmon@vger.kernel.org
18110 S:      Maintained
18111 F:      Documentation/hwmon/vt1211.rst
18112 F:      drivers/hwmon/vt1211.c
18113
18114 VT8231 HARDWARE MONITOR DRIVER
18115 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
18116 L:      linux-hwmon@vger.kernel.org
18117 S:      Maintained
18118 F:      drivers/hwmon/vt8231.c
18119
18120 VUB300 USB to SDIO/SD/MMC bridge chip
18121 L:      linux-mmc@vger.kernel.org
18122 S:      Orphan
18123 F:      drivers/mmc/host/vub300.c
18124
18125 W1 DALLAS'S 1-WIRE BUS
18126 M:      Evgeniy Polyakov <zbr@ioremap.net>
18127 S:      Maintained
18128 F:      Documentation/devicetree/bindings/w1/
18129 F:      Documentation/w1/
18130 F:      drivers/w1/
18131 F:      include/linux/w1.h
18132
18133 W83791D HARDWARE MONITORING DRIVER
18134 M:      Marc Hulsman <m.hulsman@tudelft.nl>
18135 L:      linux-hwmon@vger.kernel.org
18136 S:      Maintained
18137 F:      Documentation/hwmon/w83791d.rst
18138 F:      drivers/hwmon/w83791d.c
18139
18140 W83793 HARDWARE MONITORING DRIVER
18141 M:      Rudolf Marek <r.marek@assembler.cz>
18142 L:      linux-hwmon@vger.kernel.org
18143 S:      Maintained
18144 F:      Documentation/hwmon/w83793.rst
18145 F:      drivers/hwmon/w83793.c
18146
18147 W83795 HARDWARE MONITORING DRIVER
18148 M:      Jean Delvare <jdelvare@suse.com>
18149 L:      linux-hwmon@vger.kernel.org
18150 S:      Maintained
18151 F:      drivers/hwmon/w83795.c
18152
18153 W83L51xD SD/MMC CARD INTERFACE DRIVER
18154 M:      Pierre Ossman <pierre@ossman.eu>
18155 S:      Maintained
18156 F:      drivers/mmc/host/wbsd.*
18157
18158 WACOM PROTOCOL 4 SERIAL TABLETS
18159 M:      Julian Squires <julian@cipht.net>
18160 M:      Hans de Goede <hdegoede@redhat.com>
18161 L:      linux-input@vger.kernel.org
18162 S:      Maintained
18163 F:      drivers/input/tablet/wacom_serial4.c
18164
18165 WATCHDOG DEVICE DRIVERS
18166 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
18167 M:      Guenter Roeck <linux@roeck-us.net>
18168 L:      linux-watchdog@vger.kernel.org
18169 W:      http://www.linux-watchdog.org/
18170 T:      git git://www.linux-watchdog.org/linux-watchdog.git
18171 S:      Maintained
18172 F:      Documentation/devicetree/bindings/watchdog/
18173 F:      Documentation/watchdog/
18174 F:      drivers/watchdog/
18175 F:      include/linux/watchdog.h
18176 F:      include/uapi/linux/watchdog.h
18177
18178 WHISKEYCOVE PMIC GPIO DRIVER
18179 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
18180 L:      linux-gpio@vger.kernel.org
18181 S:      Maintained
18182 F:      drivers/gpio/gpio-wcove.c
18183
18184 WHWAVE RTC DRIVER
18185 M:      Dianlong Li <long17.cool@163.com>
18186 L:      linux-rtc@vger.kernel.org
18187 S:      Maintained
18188 F:      drivers/rtc/rtc-sd3078.c
18189
18190 WIIMOTE HID DRIVER
18191 M:      David Herrmann <dh.herrmann@googlemail.com>
18192 L:      linux-input@vger.kernel.org
18193 S:      Maintained
18194 F:      drivers/hid/hid-wiimote*
18195
18196 WILOCITY WIL6210 WIRELESS DRIVER
18197 M:      Maya Erez <merez@codeaurora.org>
18198 L:      linux-wireless@vger.kernel.org
18199 L:      wil6210@qti.qualcomm.com
18200 S:      Supported
18201 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
18202 F:      drivers/net/wireless/ath/wil6210/
18203
18204 WIMAX STACK
18205 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
18206 M:      linux-wimax@intel.com
18207 L:      wimax@linuxwimax.org (subscribers-only)
18208 S:      Supported
18209 W:      http://linuxwimax.org
18210 F:      Documentation/admin-guide/wimax/wimax.rst
18211 F:      include/linux/wimax/debug.h
18212 F:      include/net/wimax.h
18213 F:      include/uapi/linux/wimax.h
18214 F:      net/wimax/
18215
18216 WINBOND CIR DRIVER
18217 M:      David Härdeman <david@hardeman.nu>
18218 S:      Maintained
18219 F:      drivers/media/rc/winbond-cir.c
18220
18221 RCMM REMOTE CONTROLS DECODER
18222 M:      Patrick Lerda <patrick9876@free.fr>
18223 S:      Maintained
18224 F:      drivers/media/rc/ir-rcmm-decoder.c
18225
18226 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
18227 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18228 L:      linux-watchdog@vger.kernel.org
18229 S:      Maintained
18230 F:      drivers/watchdog/ebc-c384_wdt.c
18231
18232 WINSYSTEMS WS16C48 GPIO DRIVER
18233 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
18234 L:      linux-gpio@vger.kernel.org
18235 S:      Maintained
18236 F:      drivers/gpio/gpio-ws16c48.c
18237
18238 WIREGUARD SECURE NETWORK TUNNEL
18239 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18240 S:      Maintained
18241 F:      drivers/net/wireguard/
18242 F:      tools/testing/selftests/wireguard/
18243 L:      wireguard@lists.zx2c4.com
18244 L:      netdev@vger.kernel.org
18245
18246 WISTRON LAPTOP BUTTON DRIVER
18247 M:      Miloslav Trmac <mitr@volny.cz>
18248 S:      Maintained
18249 F:      drivers/input/misc/wistron_btns.c
18250
18251 WL3501 WIRELESS PCMCIA CARD DRIVER
18252 L:      linux-wireless@vger.kernel.org
18253 S:      Odd fixes
18254 F:      drivers/net/wireless/wl3501*
18255
18256 WOLFSON MICROELECTRONICS DRIVERS
18257 L:      patches@opensource.cirrus.com
18258 T:      git https://github.com/CirrusLogic/linux-drivers.git
18259 W:      https://github.com/CirrusLogic/linux-drivers/wiki
18260 S:      Supported
18261 F:      Documentation/hwmon/wm83??.rst
18262 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
18263 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
18264 F:      Documentation/devicetree/bindings/mfd/arizona.txt
18265 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
18266 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
18267 F:      arch/arm/mach-s3c64xx/mach-crag6410*
18268 F:      drivers/clk/clk-wm83*.c
18269 F:      drivers/extcon/extcon-arizona.c
18270 F:      drivers/leds/leds-wm83*.c
18271 F:      drivers/gpio/gpio-*wm*.c
18272 F:      drivers/gpio/gpio-arizona.c
18273 F:      drivers/hwmon/wm83??-hwmon.c
18274 F:      drivers/input/misc/wm831x-on.c
18275 F:      drivers/input/touchscreen/wm831x-ts.c
18276 F:      drivers/input/touchscreen/wm97*.c
18277 F:      drivers/mfd/arizona*
18278 F:      drivers/mfd/wm*.c
18279 F:      drivers/mfd/cs47l24*
18280 F:      drivers/power/supply/wm83*.c
18281 F:      drivers/rtc/rtc-wm83*.c
18282 F:      drivers/regulator/wm8*.c
18283 F:      drivers/regulator/arizona*
18284 F:      drivers/video/backlight/wm83*_bl.c
18285 F:      drivers/watchdog/wm83*_wdt.c
18286 F:      include/linux/mfd/arizona/
18287 F:      include/linux/mfd/wm831x/
18288 F:      include/linux/mfd/wm8350/
18289 F:      include/linux/mfd/wm8400*
18290 F:      include/linux/regulator/arizona*
18291 F:      include/linux/wm97xx.h
18292 F:      include/sound/wm????.h
18293 F:      sound/soc/codecs/arizona.?
18294 F:      sound/soc/codecs/wm*
18295 F:      sound/soc/codecs/cs47l24*
18296
18297 WORKQUEUE
18298 M:      Tejun Heo <tj@kernel.org>
18299 R:      Lai Jiangshan <jiangshanlai@gmail.com>
18300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
18301 S:      Maintained
18302 F:      include/linux/workqueue.h
18303 F:      kernel/workqueue.c
18304 F:      Documentation/core-api/workqueue.rst
18305
18306 X-POWERS AXP288 PMIC DRIVERS
18307 M:      Hans de Goede <hdegoede@redhat.com>
18308 S:      Maintained
18309 F:      drivers/acpi/pmic/intel_pmic_xpower.c
18310 N:      axp288
18311
18312 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
18313 M:      Chen-Yu Tsai <wens@csie.org>
18314 L:      linux-kernel@vger.kernel.org
18315 S:      Maintained
18316 N:      axp[128]
18317
18318 X.25 NETWORK LAYER
18319 M:      Andrew Hendry <andrew.hendry@gmail.com>
18320 L:      linux-x25@vger.kernel.org
18321 S:      Odd Fixes
18322 F:      Documentation/networking/x25*
18323 F:      include/net/x25*
18324 F:      net/x25/
18325
18326 X86 ARCHITECTURE (32-BIT AND 64-BIT)
18327 M:      Thomas Gleixner <tglx@linutronix.de>
18328 M:      Ingo Molnar <mingo@redhat.com>
18329 M:      Borislav Petkov <bp@alien8.de>
18330 R:      "H. Peter Anvin" <hpa@zytor.com>
18331 M:      x86@kernel.org
18332 L:      linux-kernel@vger.kernel.org
18333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18334 S:      Maintained
18335 F:      Documentation/devicetree/bindings/x86/
18336 F:      Documentation/x86/
18337 F:      arch/x86/
18338
18339 X86 ENTRY CODE
18340 M:      Andy Lutomirski <luto@kernel.org>
18341 L:      linux-kernel@vger.kernel.org
18342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
18343 S:      Maintained
18344 F:      arch/x86/entry/
18345
18346 X86 MCE INFRASTRUCTURE
18347 M:      Tony Luck <tony.luck@intel.com>
18348 M:      Borislav Petkov <bp@alien8.de>
18349 L:      linux-edac@vger.kernel.org
18350 S:      Maintained
18351 F:      arch/x86/kernel/cpu/mce/*
18352
18353 X86 MICROCODE UPDATE SUPPORT
18354 M:      Borislav Petkov <bp@alien8.de>
18355 S:      Maintained
18356 F:      arch/x86/kernel/cpu/microcode/*
18357
18358 X86 MM
18359 M:      Dave Hansen <dave.hansen@linux.intel.com>
18360 M:      Andy Lutomirski <luto@kernel.org>
18361 M:      Peter Zijlstra <peterz@infradead.org>
18362 L:      linux-kernel@vger.kernel.org
18363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
18364 S:      Maintained
18365 F:      arch/x86/mm/
18366
18367 X86 PLATFORM DRIVERS
18368 M:      Darren Hart <dvhart@infradead.org>
18369 M:      Andy Shevchenko <andy@infradead.org>
18370 L:      platform-driver-x86@vger.kernel.org
18371 S:      Odd Fixes
18372 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
18373 F:      drivers/platform/olpc/
18374 F:      drivers/platform/x86/
18375
18376 X86 PLATFORM DRIVERS - ARCH
18377 R:      Darren Hart <dvhart@infradead.org>
18378 R:      Andy Shevchenko <andy@infradead.org>
18379 L:      platform-driver-x86@vger.kernel.org
18380 L:      x86@kernel.org
18381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
18382 S:      Maintained
18383 F:      arch/x86/platform
18384
18385 X86 VDSO
18386 M:      Andy Lutomirski <luto@kernel.org>
18387 L:      linux-kernel@vger.kernel.org
18388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
18389 S:      Maintained
18390 F:      arch/x86/entry/vdso/
18391
18392 XARRAY
18393 M:      Matthew Wilcox <willy@infradead.org>
18394 L:      linux-fsdevel@vger.kernel.org
18395 S:      Supported
18396 F:      Documentation/core-api/xarray.rst
18397 F:      lib/idr.c
18398 F:      lib/xarray.c
18399 F:      include/linux/idr.h
18400 F:      include/linux/xarray.h
18401 F:      tools/testing/radix-tree
18402
18403 XBOX DVD IR REMOTE
18404 M:      Benjamin Valentin <benpicco@googlemail.com>
18405 S:      Maintained
18406 F:      drivers/media/rc/xbox_remote.c
18407 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
18408
18409 XC2028/3028 TUNER DRIVER
18410 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18411 L:      linux-media@vger.kernel.org
18412 W:      https://linuxtv.org
18413 T:      git git://linuxtv.org/media_tree.git
18414 S:      Maintained
18415 F:      drivers/media/tuners/tuner-xc2028.*
18416
18417 XDP (eXpress Data Path)
18418 M:      Alexei Starovoitov <ast@kernel.org>
18419 M:      Daniel Borkmann <daniel@iogearbox.net>
18420 M:      David S. Miller <davem@davemloft.net>
18421 M:      Jakub Kicinski <kuba@kernel.org>
18422 M:      Jesper Dangaard Brouer <hawk@kernel.org>
18423 M:      John Fastabend <john.fastabend@gmail.com>
18424 L:      netdev@vger.kernel.org
18425 L:      bpf@vger.kernel.org
18426 S:      Supported
18427 F:      net/core/xdp.c
18428 F:      include/net/xdp.h
18429 F:      kernel/bpf/devmap.c
18430 F:      kernel/bpf/cpumap.c
18431 F:      include/trace/events/xdp.h
18432 K:      xdp
18433 N:      xdp
18434
18435 XDP SOCKETS (AF_XDP)
18436 M:      Björn Töpel <bjorn.topel@intel.com>
18437 M:      Magnus Karlsson <magnus.karlsson@intel.com>
18438 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
18439 L:      netdev@vger.kernel.org
18440 L:      bpf@vger.kernel.org
18441 S:      Maintained
18442 F:      kernel/bpf/xskmap.c
18443 F:      net/xdp/
18444
18445 XEN BLOCK SUBSYSTEM
18446 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18447 M:      Roger Pau Monné <roger.pau@citrix.com>
18448 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18449 S:      Supported
18450 F:      drivers/block/xen-blkback/*
18451 F:      drivers/block/xen*
18452
18453 XEN HYPERVISOR ARM
18454 M:      Stefano Stabellini <sstabellini@kernel.org>
18455 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18456 S:      Maintained
18457 F:      arch/arm/xen/
18458 F:      arch/arm/include/asm/xen/
18459
18460 XEN HYPERVISOR ARM64
18461 M:      Stefano Stabellini <sstabellini@kernel.org>
18462 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18463 S:      Maintained
18464 F:      arch/arm64/xen/
18465 F:      arch/arm64/include/asm/xen/
18466
18467 XEN HYPERVISOR INTERFACE
18468 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
18469 M:      Juergen Gross <jgross@suse.com>
18470 R:      Stefano Stabellini <sstabellini@kernel.org>
18471 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
18473 S:      Supported
18474 F:      arch/x86/xen/
18475 F:      arch/x86/platform/pvh/
18476 F:      drivers/*/xen-*front.c
18477 F:      drivers/xen/
18478 F:      arch/x86/include/asm/xen/
18479 F:      arch/x86/include/asm/pvclock-abi.h
18480 F:      include/xen/
18481 F:      include/uapi/xen/
18482 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
18483 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
18484
18485 XEN NETWORK BACKEND DRIVER
18486 M:      Wei Liu <wei.liu@kernel.org>
18487 M:      Paul Durrant <paul@xen.org>
18488 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18489 L:      netdev@vger.kernel.org
18490 S:      Supported
18491 F:      drivers/net/xen-netback/*
18492
18493 XEN PCI SUBSYSTEM
18494 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18495 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18496 S:      Supported
18497 F:      arch/x86/pci/*xen*
18498 F:      drivers/pci/*xen*
18499
18500 XEN PVSCSI DRIVERS
18501 M:      Juergen Gross <jgross@suse.com>
18502 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18503 L:      linux-scsi@vger.kernel.org
18504 S:      Supported
18505 F:      drivers/scsi/xen-scsifront.c
18506 F:      drivers/xen/xen-scsiback.c
18507 F:      include/xen/interface/io/vscsiif.h
18508
18509 XEN SWIOTLB SUBSYSTEM
18510 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
18511 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18512 L:      iommu@lists.linux-foundation.org
18513 S:      Supported
18514 F:      arch/x86/xen/*swiotlb*
18515 F:      drivers/xen/*swiotlb*
18516
18517 XEN SOUND FRONTEND DRIVER
18518 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
18519 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
18520 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18521 S:      Supported
18522 F:      sound/xen/*
18523
18524 XFS FILESYSTEM
18525 M:      Darrick J. Wong <darrick.wong@oracle.com>
18526 M:      linux-xfs@vger.kernel.org
18527 L:      linux-xfs@vger.kernel.org
18528 W:      http://xfs.org/
18529 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
18530 S:      Supported
18531 F:      Documentation/admin-guide/xfs.rst
18532 F:      Documentation/ABI/testing/sysfs-fs-xfs
18533 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
18534 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
18535 F:      fs/xfs/
18536 F:      include/uapi/linux/dqblk_xfs.h
18537 F:      include/uapi/linux/fsmap.h
18538
18539 XILINX AXI ETHERNET DRIVER
18540 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
18541 S:      Maintained
18542 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
18543
18544 XILINX CAN DRIVER
18545 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
18546 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
18547 L:      linux-can@vger.kernel.org
18548 S:      Maintained
18549 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
18550 F:      drivers/net/can/xilinx_can.c
18551
18552 XILINX UARTLITE SERIAL DRIVER
18553 M:      Peter Korsgaard <jacmet@sunsite.dk>
18554 L:      linux-serial@vger.kernel.org
18555 S:      Maintained
18556 F:      drivers/tty/serial/uartlite.c
18557
18558 XILINX VIDEO IP CORES
18559 M:      Hyun Kwon <hyun.kwon@xilinx.com>
18560 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
18561 L:      linux-media@vger.kernel.org
18562 T:      git git://linuxtv.org/media_tree.git
18563 S:      Supported
18564 F:      Documentation/devicetree/bindings/media/xilinx/
18565 F:      drivers/media/platform/xilinx/
18566 F:      include/uapi/linux/xilinx-v4l2-controls.h
18567
18568 XILINX SD-FEC IP CORES
18569 M:      Derek Kiernan <derek.kiernan@xilinx.com>
18570 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
18571 S:      Maintained
18572 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
18573 F:      Documentation/misc-devices/xilinx_sdfec.rst
18574 F:      drivers/misc/xilinx_sdfec.c
18575 F:      drivers/misc/Kconfig
18576 F:      drivers/misc/Makefile
18577 F:      include/uapi/misc/xilinx_sdfec.h
18578
18579 XILLYBUS DRIVER
18580 M:      Eli Billauer <eli.billauer@gmail.com>
18581 L:      linux-kernel@vger.kernel.org
18582 S:      Supported
18583 F:      drivers/char/xillybus/
18584
18585 XLP9XX I2C DRIVER
18586 M:      George Cherian <gcherian@marvell.com>
18587 L:      linux-i2c@vger.kernel.org
18588 W:      http://www.marvell.com
18589 S:      Supported
18590 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
18591 F:      drivers/i2c/busses/i2c-xlp9xx.c
18592
18593 XRA1403 GPIO EXPANDER
18594 M:      Nandor Han <nandor.han@ge.com>
18595 M:      Semi Malinen <semi.malinen@ge.com>
18596 L:      linux-gpio@vger.kernel.org
18597 S:      Maintained
18598 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
18599 F:      drivers/gpio/gpio-xra1403.c
18600
18601 XTENSA XTFPGA PLATFORM SUPPORT
18602 M:      Max Filippov <jcmvbkbc@gmail.com>
18603 L:      linux-xtensa@linux-xtensa.org
18604 S:      Maintained
18605 F:      drivers/spi/spi-xtensa-xtfpga.c
18606 F:      sound/soc/xtensa/xtfpga-i2s.c
18607
18608 YAM DRIVER FOR AX.25
18609 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
18610 L:      linux-hams@vger.kernel.org
18611 S:      Maintained
18612 F:      drivers/net/hamradio/yam*
18613 F:      include/linux/yam.h
18614
18615 YAMA SECURITY MODULE
18616 M:      Kees Cook <keescook@chromium.org>
18617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18618 S:      Supported
18619 F:      security/yama/
18620 F:      Documentation/admin-guide/LSM/Yama.rst
18621
18622 YEALINK PHONE DRIVER
18623 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18624 L:      usbb2k-api-dev@nongnu.org
18625 S:      Maintained
18626 F:      Documentation/input/devices/yealink.rst
18627 F:      drivers/input/misc/yealink.*
18628
18629 Z8530 DRIVER FOR AX.25
18630 M:      Joerg Reuter <jreuter@yaina.de>
18631 W:      http://yaina.de/jreuter/
18632 W:      http://www.qsl.net/dl1bke/
18633 L:      linux-hams@vger.kernel.org
18634 S:      Maintained
18635 F:      Documentation/networking/z8530drv.txt
18636 F:      drivers/net/hamradio/*scc.c
18637 F:      drivers/net/hamradio/z8530.h
18638
18639 ZBUD COMPRESSED PAGE ALLOCATOR
18640 M:      Seth Jennings <sjenning@redhat.com>
18641 M:      Dan Streetman <ddstreet@ieee.org>
18642 L:      linux-mm@kvack.org
18643 S:      Maintained
18644 F:      mm/zbud.c
18645 F:      include/linux/zbud.h
18646
18647 ZD1211RW WIRELESS DRIVER
18648 M:      Daniel Drake <dsd@gentoo.org>
18649 M:      Ulrich Kunitz <kune@deine-taler.de>
18650 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18651 L:      linux-wireless@vger.kernel.org
18652 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18653 S:      Maintained
18654 F:      drivers/net/wireless/zydas/zd1211rw/
18655
18656 ZD1301 MEDIA DRIVER
18657 M:      Antti Palosaari <crope@iki.fi>
18658 L:      linux-media@vger.kernel.org
18659 W:      https://linuxtv.org/
18660 W:      http://palosaari.fi/linux/
18661 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18662 S:      Maintained
18663 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18664
18665 ZD1301_DEMOD MEDIA DRIVER
18666 M:      Antti Palosaari <crope@iki.fi>
18667 L:      linux-media@vger.kernel.org
18668 W:      https://linuxtv.org/
18669 W:      http://palosaari.fi/linux/
18670 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18671 S:      Maintained
18672 F:      drivers/media/dvb-frontends/zd1301_demod*
18673
18674 ZHAOXIN PROCESSOR SUPPORT
18675 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18676 L:      linux-kernel@vger.kernel.org
18677 S:      Maintained
18678 F:      arch/x86/kernel/cpu/zhaoxin.c
18679
18680 ZONEFS FILESYSTEM
18681 M:      Damien Le Moal <damien.lemoal@wdc.com>
18682 M:      Naohiro Aota <naohiro.aota@wdc.com>
18683 R:      Johannes Thumshirn <jth@kernel.org>
18684 L:      linux-fsdevel@vger.kernel.org
18685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
18686 S:      Maintained
18687 F:      fs/zonefs/
18688 F:      Documentation/filesystems/zonefs.rst
18689
18690 ZPOOL COMPRESSED PAGE STORAGE API
18691 M:      Dan Streetman <ddstreet@ieee.org>
18692 L:      linux-mm@kvack.org
18693 S:      Maintained
18694 F:      mm/zpool.c
18695 F:      include/linux/zpool.h
18696
18697 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18698 M:      Minchan Kim <minchan@kernel.org>
18699 M:      Nitin Gupta <ngupta@vflare.org>
18700 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18701 L:      linux-kernel@vger.kernel.org
18702 S:      Maintained
18703 F:      drivers/block/zram/
18704 F:      Documentation/admin-guide/blockdev/zram.rst
18705
18706 ZS DECSTATION Z85C30 SERIAL DRIVER
18707 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18708 S:      Maintained
18709 F:      drivers/tty/serial/zs.*
18710
18711 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18712 M:      Minchan Kim <minchan@kernel.org>
18713 M:      Nitin Gupta <ngupta@vflare.org>
18714 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18715 L:      linux-mm@kvack.org
18716 S:      Maintained
18717 F:      mm/zsmalloc.c
18718 F:      include/linux/zsmalloc.h
18719 F:      Documentation/vm/zsmalloc.rst
18720
18721 ZSWAP COMPRESSED SWAP CACHING
18722 M:      Seth Jennings <sjenning@redhat.com>
18723 M:      Dan Streetman <ddstreet@ieee.org>
18724 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18725 L:      linux-mm@kvack.org
18726 S:      Maintained
18727 F:      mm/zswap.c
18728
18729 THE REST
18730 M:      Linus Torvalds <torvalds@linux-foundation.org>
18731 L:      linux-kernel@vger.kernel.org
18732 Q:      http://patchwork.kernel.org/project/LKML/list/
18733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18734 S:      Buried alive in reporters
18735 F:      *
18736 F:      */