3ef731fc753ba1fe002447b1195bb308b615ea41
[linux-2.6-microblaze.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/process/coding-style.rst for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/process/submitting-patches.rst for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/process/submitting-patches.rst.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond. Please keep in mind that the security team is
66         a small set of people who can be efficient only when working on
67         verified bugs. Please only Cc: this list when you have identified
68         that the bug would present a short-term risk to other users if it
69         were publicly disclosed. For example, reports of address leaks do
70         not represent an immediate threat and are better handled publicly,
71         and ideally, should come with a patch proposal. Please do not send
72         automated reports to this list either. Such bugs will be handled
73         better and faster in the usual public places.
74
75 8.      Happy hacking.
76
77 Descriptions of section entries:
78
79         P: Person (obsolete)
80         M: Mail patches to: FullName <address@domain>
81         R: Designated reviewer: FullName <address@domain>
82            These reviewers should be CCed on patches.
83         L: Mailing list that is relevant to this area
84         W: Web-page with status/info
85         B: URI for where to file bugs. A web-page with detailed bug
86            filing info, a direct bug tracker link, or a mailto: URI.
87         C: URI for chat protocol, server and channel where developers
88            usually hang out, for example irc://server/channel.
89         Q: Patchwork web based patch tracking system site
90         T: SCM tree type and location.
91            Type is one of: git, hg, quilt, stgit, topgit
92         S: Status, one of the following:
93            Supported:   Someone is actually paid to look after this.
94            Maintained:  Someone actually looks after it.
95            Odd Fixes:   It has a maintainer but they don't have time to do
96                         much other than throw the odd patch in. See below..
97            Orphan:      No current maintainer [but maybe you could take the
98                         role as you write your new code].
99            Obsolete:    Old code. Something tagged obsolete generally means
100                         it has been replaced by a better system and you
101                         should be using that.
102         F: Files and directories with wildcard patterns.
103            A trailing slash includes all files and subdirectory files.
104            F:   drivers/net/    all files in and below drivers/net
105            F:   drivers/net/*   all files in drivers/net, but not below
106            F:   */net/*         all files in "any top level directory"/net
107            One pattern per line.  Multiple F: lines acceptable.
108         N: Files and directories with regex patterns.
109            N:   [^a-z]tegra     all files whose path contains the word tegra
110            One pattern per line.  Multiple N: lines acceptable.
111            scripts/get_maintainer.pl has different behavior for files that
112            match F: pattern and matches of N: patterns.  By default,
113            get_maintainer will not look at git log history when an F: pattern
114            match occurs.  When an N: match occurs, git log history is used
115            to also notify the people that have git commit signatures.
116         X: Files and directories that are NOT maintained, same rules as F:
117            Files exclusions are tested before file matches.
118            Can be useful for excluding a specific subdirectory, for instance:
119            F:   net/
120            X:   net/ipv6/
121            matches all files in and below net excluding net/ipv6/
122         K: Keyword perl extended regex pattern to match content in a
123            patch or file.  For instance:
124            K: of_get_profile
125               matches patches or files that contain "of_get_profile"
126            K: \b(printk|pr_(info|err))\b
127               matches patches or files that contain one or more of the words
128               printk, pr_info or pr_err
129            One regex pattern per line.  Multiple K: lines acceptable.
130
131 Note: For the hard of thinking, this list is meant to remain in alphabetical
132 order. If you could add yourselves to it in alphabetical order that would be
133 so much easier [Ed]
134
135 Maintainers List (try to look for most precise areas first)
136
137                 -----------------------------------
138
139 3C59X NETWORK DRIVER
140 M:      Steffen Klassert <klassert@kernel.org>
141 L:      netdev@vger.kernel.org
142 S:      Odd Fixes
143 F:      Documentation/networking/device_drivers/3com/vortex.txt
144 F:      drivers/net/ethernet/3com/3c59x.c
145
146 3CR990 NETWORK DRIVER
147 M:      David Dillow <dave@thedillows.org>
148 L:      netdev@vger.kernel.org
149 S:      Maintained
150 F:      drivers/net/ethernet/3com/typhoon*
151
152 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
153 M:      Adam Radford <aradford@gmail.com>
154 L:      linux-scsi@vger.kernel.org
155 W:      http://www.lsi.com
156 S:      Supported
157 F:      drivers/scsi/3w-*
158
159 53C700 AND 53C700-66 SCSI DRIVER
160 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Maintained
163 F:      drivers/scsi/53c700*
164
165 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
166 M:      Alexander Aring <alex.aring@gmail.com>
167 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
168 L:      linux-bluetooth@vger.kernel.org
169 L:      linux-wpan@vger.kernel.org
170 S:      Maintained
171 F:      net/6lowpan/
172 F:      include/net/6lowpan.h
173 F:      Documentation/networking/6lowpan.txt
174
175 6PACK NETWORK DRIVER FOR AX.25
176 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
177 L:      linux-hams@vger.kernel.org
178 S:      Maintained
179 F:      drivers/net/hamradio/6pack.c
180
181 8169 10/100/1000 GIGABIT ETHERNET DRIVER
182 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
183 M:      Heiner Kallweit <hkallweit1@gmail.com>
184 L:      netdev@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/ethernet/realtek/r8169*
187
188 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
189 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
190 L:      linux-serial@vger.kernel.org
191 S:      Maintained
192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
193 F:      drivers/tty/serial/8250*
194 F:      include/linux/serial_8250.h
195
196 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
197 L:      netdev@vger.kernel.org
198 S:      Orphan / Obsolete
199 F:      drivers/net/ethernet/8390/
200
201 9P FILE SYSTEM
202 M:      Eric Van Hensbergen <ericvh@gmail.com>
203 M:      Latchesar Ionkov <lucho@ionkov.net>
204 M:      Dominique Martinet <asmadeus@codewreck.org>
205 L:      v9fs-developer@lists.sourceforge.net
206 W:      http://swik.net/v9fs
207 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
209 T:      git git://github.com/martinetd/linux.git
210 S:      Maintained
211 F:      Documentation/filesystems/9p.txt
212 F:      fs/9p/
213 F:      net/9p/
214 F:      include/net/9p/
215 F:      include/uapi/linux/virtio_9p.h
216 F:      include/trace/events/9p.h
217
218 A8293 MEDIA DRIVER
219 M:      Antti Palosaari <crope@iki.fi>
220 L:      linux-media@vger.kernel.org
221 W:      https://linuxtv.org
222 W:      http://palosaari.fi/linux/
223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
224 T:      git git://linuxtv.org/anttip/media_tree.git
225 S:      Maintained
226 F:      drivers/media/dvb-frontends/a8293*
227
228 AACRAID SCSI RAID DRIVER
229 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
230 L:      linux-scsi@vger.kernel.org
231 W:      http://www.adaptec.com/
232 S:      Supported
233 F:      Documentation/scsi/aacraid.txt
234 F:      drivers/scsi/aacraid/
235
236 ABI/API
237 L:      linux-api@vger.kernel.org
238 F:      include/linux/syscalls.h
239 F:      kernel/sys_ni.c
240
241 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
242 M:      Hans de Goede <hdegoede@redhat.com>
243 L:      linux-hwmon@vger.kernel.org
244 S:      Maintained
245 F:      drivers/hwmon/abituguru.c
246
247 ABIT UGURU 3 HARDWARE MONITOR DRIVER
248 M:      Alistair John Strachan <alistair@devzero.co.uk>
249 L:      linux-hwmon@vger.kernel.org
250 S:      Maintained
251 F:      drivers/hwmon/abituguru3.c
252
253 ACCES 104-DIO-48E GPIO DRIVER
254 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
255 L:      linux-gpio@vger.kernel.org
256 S:      Maintained
257 F:      drivers/gpio/gpio-104-dio-48e.c
258
259 ACCES 104-IDI-48 GPIO DRIVER
260 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
261 L:      linux-gpio@vger.kernel.org
262 S:      Maintained
263 F:      drivers/gpio/gpio-104-idi-48.c
264
265 ACCES 104-IDIO-16 GPIO DRIVER
266 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
267 L:      linux-gpio@vger.kernel.org
268 S:      Maintained
269 F:      drivers/gpio/gpio-104-idio-16.c
270
271 ACCES 104-QUAD-8 DRIVER
272 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
273 L:      linux-iio@vger.kernel.org
274 S:      Maintained
275 F:      Documentation/ABI/testing/sysfs-bus-counter-104-quad-8
276 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
277 F:      drivers/counter/104-quad-8.c
278
279 ACCES PCI-IDIO-16 GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-pci-idio-16.c
284
285 ACCES PCIe-IDIO-24 GPIO DRIVER
286 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-pcie-idio-24.c
290
291 ACENIC DRIVER
292 M:      Jes Sorensen <jes@trained-monkey.org>
293 L:      linux-acenic@sunsite.dk
294 S:      Maintained
295 F:      drivers/net/ethernet/alteon/acenic*
296
297 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
298 M:      Peter Feuerer <peter@piie.net>
299 L:      platform-driver-x86@vger.kernel.org
300 W:      http://piie.net/?section=acerhdf
301 S:      Maintained
302 F:      drivers/platform/x86/acerhdf.c
303
304 ACER WMI LAPTOP EXTRAS
305 M:      "Lee, Chun-Yi" <jlee@suse.com>
306 L:      platform-driver-x86@vger.kernel.org
307 S:      Maintained
308 F:      drivers/platform/x86/acer-wmi.c
309
310 ACPI
311 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
312 M:      Len Brown <lenb@kernel.org>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
317 B:      https://bugzilla.kernel.org
318 S:      Supported
319 F:      drivers/acpi/
320 F:      drivers/pnp/pnpacpi/
321 F:      include/linux/acpi.h
322 F:      include/linux/fwnode.h
323 F:      include/acpi/
324 F:      Documentation/firmware-guide/acpi/
325 F:      Documentation/ABI/testing/sysfs-bus-acpi
326 F:      Documentation/ABI/testing/configfs-acpi
327 F:      drivers/pci/*acpi*
328 F:      drivers/pci/*/*acpi*
329 F:      tools/power/acpi/
330
331 ACPI APEI
332 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
333 M:      Len Brown <lenb@kernel.org>
334 L:      linux-acpi@vger.kernel.org
335 R:      James Morse <james.morse@arm.com>
336 R:      Tony Luck <tony.luck@intel.com>
337 R:      Borislav Petkov <bp@alien8.de>
338 F:      drivers/acpi/apei/
339
340 ACPI COMPONENT ARCHITECTURE (ACPICA)
341 M:      Robert Moore <robert.moore@intel.com>
342 M:      Erik Schmauss <erik.schmauss@intel.com>
343 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
344 L:      linux-acpi@vger.kernel.org
345 L:      devel@acpica.org
346 W:      https://acpica.org/
347 W:      https://github.com/acpica/acpica/
348 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
350 B:      https://bugzilla.kernel.org
351 B:      https://bugs.acpica.org
352 S:      Supported
353 F:      drivers/acpi/acpica/
354 F:      include/acpi/
355 F:      tools/power/acpi/
356
357 ACPI FAN DRIVER
358 M:      Zhang Rui <rui.zhang@intel.com>
359 L:      linux-acpi@vger.kernel.org
360 W:      https://01.org/linux-acpi
361 B:      https://bugzilla.kernel.org
362 S:      Supported
363 F:      drivers/acpi/fan.c
364
365 ACPI FOR ARM64 (ACPI/arm64)
366 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
367 M:      Hanjun Guo <guohanjun@huawei.com>
368 M:      Sudeep Holla <sudeep.holla@arm.com>
369 L:      linux-acpi@vger.kernel.org
370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
371 S:      Maintained
372 F:      drivers/acpi/arm64
373
374 ACPI I2C MULTI INSTANTIATE DRIVER
375 M:      Hans de Goede <hdegoede@redhat.com>
376 L:      platform-driver-x86@vger.kernel.org
377 S:      Maintained
378 F:      drivers/platform/x86/i2c-multi-instantiate.c
379
380 ACPI PMIC DRIVERS
381 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
382 M:      Len Brown <lenb@kernel.org>
383 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
384 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
385 L:      linux-acpi@vger.kernel.org
386 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 B:      https://bugzilla.kernel.org
389 S:      Supported
390 F:      drivers/acpi/pmic/
391
392 ACPI THERMAL DRIVER
393 M:      Zhang Rui <rui.zhang@intel.com>
394 L:      linux-acpi@vger.kernel.org
395 W:      https://01.org/linux-acpi
396 B:      https://bugzilla.kernel.org
397 S:      Supported
398 F:      drivers/acpi/*thermal*
399
400 ACPI VIDEO DRIVER
401 M:      Zhang Rui <rui.zhang@intel.com>
402 L:      linux-acpi@vger.kernel.org
403 W:      https://01.org/linux-acpi
404 B:      https://bugzilla.kernel.org
405 S:      Supported
406 F:      drivers/acpi/acpi_video.c
407
408 ACPI WMI DRIVER
409 L:      platform-driver-x86@vger.kernel.org
410 S:      Orphan
411 F:      drivers/platform/x86/wmi.c
412 F:      include/uapi/linux/wmi.h
413
414 AD1889 ALSA SOUND DRIVER
415 W:      https://parisc.wiki.kernel.org/index.php/AD1889
416 L:      linux-parisc@vger.kernel.org
417 S:      Maintained
418 F:      sound/pci/ad1889.*
419
420 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
421 M:      Michael Hennerich <michael.hennerich@analog.com>
422 W:      http://wiki.analog.com/AD5254
423 W:      http://ez.analog.com/community/linux-device-drivers
424 S:      Supported
425 F:      drivers/misc/ad525x_dpot.c
426
427 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
428 M:      Michael Hennerich <michael.hennerich@analog.com>
429 W:      http://wiki.analog.com/AD5398
430 W:      http://ez.analog.com/community/linux-device-drivers
431 S:      Supported
432 F:      drivers/regulator/ad5398.c
433
434 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/AD7142
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/input/misc/ad714x.c
440
441 AD7877 TOUCHSCREEN DRIVER
442 M:      Michael Hennerich <michael.hennerich@analog.com>
443 W:      http://wiki.analog.com/AD7877
444 W:      http://ez.analog.com/community/linux-device-drivers
445 S:      Supported
446 F:      drivers/input/touchscreen/ad7877.c
447
448 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
449 M:      Michael Hennerich <michael.hennerich@analog.com>
450 W:      http://wiki.analog.com/AD7879
451 W:      http://ez.analog.com/community/linux-device-drivers
452 S:      Supported
453 F:      drivers/input/touchscreen/ad7879.c
454
455 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
456 M:      Jiri Kosina <jikos@kernel.org>
457 S:      Maintained
458
459 ADF7242 IEEE 802.15.4 RADIO DRIVER
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      https://wiki.analog.com/ADF7242
462 W:      http://ez.analog.com/community/linux-device-drivers
463 L:      linux-wpan@vger.kernel.org
464 S:      Supported
465 F:      drivers/net/ieee802154/adf7242.c
466 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
467
468 ADM1025 HARDWARE MONITOR DRIVER
469 M:      Jean Delvare <jdelvare@suse.com>
470 L:      linux-hwmon@vger.kernel.org
471 S:      Maintained
472 F:      Documentation/hwmon/adm1025.rst
473 F:      drivers/hwmon/adm1025.c
474
475 ADM1029 HARDWARE MONITOR DRIVER
476 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
477 L:      linux-hwmon@vger.kernel.org
478 S:      Maintained
479 F:      drivers/hwmon/adm1029.c
480
481 ADM8211 WIRELESS DRIVER
482 L:      linux-wireless@vger.kernel.org
483 W:      http://wireless.kernel.org/
484 S:      Orphan
485 F:      drivers/net/wireless/admtek/adm8211.*
486
487 ADP1653 FLASH CONTROLLER DRIVER
488 M:      Sakari Ailus <sakari.ailus@iki.fi>
489 L:      linux-media@vger.kernel.org
490 S:      Maintained
491 F:      drivers/media/i2c/adp1653.c
492 F:      include/media/i2c/adp1653.h
493
494 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 W:      http://wiki.analog.com/ADP5520
497 W:      http://ez.analog.com/community/linux-device-drivers
498 S:      Supported
499 F:      drivers/mfd/adp5520.c
500 F:      drivers/video/backlight/adp5520_bl.c
501 F:      drivers/leds/leds-adp5520.c
502 F:      drivers/gpio/gpio-adp5520.c
503 F:      drivers/input/keyboard/adp5520-keys.c
504
505 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
506 M:      Michael Hennerich <michael.hennerich@analog.com>
507 W:      http://wiki.analog.com/ADP5588
508 W:      http://ez.analog.com/community/linux-device-drivers
509 S:      Supported
510 F:      drivers/input/keyboard/adp5588-keys.c
511 F:      drivers/gpio/gpio-adp5588.c
512
513 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
514 M:      Michael Hennerich <michael.hennerich@analog.com>
515 W:      http://wiki.analog.com/ADP8860
516 W:      http://ez.analog.com/community/linux-device-drivers
517 S:      Supported
518 F:      drivers/video/backlight/adp8860_bl.c
519
520 ADT746X FAN DRIVER
521 M:      Colin Leroy <colin@colino.net>
522 S:      Maintained
523 F:      drivers/macintosh/therm_adt746x.c
524
525 ADT7475 HARDWARE MONITOR DRIVER
526 M:      Jean Delvare <jdelvare@suse.com>
527 L:      linux-hwmon@vger.kernel.org
528 S:      Maintained
529 F:      Documentation/hwmon/adt7475.rst
530 F:      drivers/hwmon/adt7475.c
531
532 ADVANSYS SCSI DRIVER
533 M:      Matthew Wilcox <willy@infradead.org>
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      Documentation/scsi/advansys.txt
538 F:      drivers/scsi/advansys.c
539
540 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 W:      http://wiki.analog.com/ADXL345
543 W:      http://ez.analog.com/community/linux-device-drivers
544 S:      Supported
545 F:      drivers/input/misc/adxl34x.c
546 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
547
548 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
549 M:      Stefan Popa <stefan.popa@analog.com>
550 W:      http://ez.analog.com/community/linux-device-drivers
551 S:      Supported
552 F:      drivers/iio/accel/adxl372.c
553 F:      drivers/iio/accel/adxl372_spi.c
554 F:      drivers/iio/accel/adxl372_i2c.c
555 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
556
557 AF9013 MEDIA DRIVER
558 M:      Antti Palosaari <crope@iki.fi>
559 L:      linux-media@vger.kernel.org
560 W:      https://linuxtv.org
561 W:      http://palosaari.fi/linux/
562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
563 T:      git git://linuxtv.org/anttip/media_tree.git
564 S:      Maintained
565 F:      drivers/media/dvb-frontends/af9013*
566
567 AF9033 MEDIA DRIVER
568 M:      Antti Palosaari <crope@iki.fi>
569 L:      linux-media@vger.kernel.org
570 W:      https://linuxtv.org
571 W:      http://palosaari.fi/linux/
572 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
573 T:      git git://linuxtv.org/anttip/media_tree.git
574 S:      Maintained
575 F:      drivers/media/dvb-frontends/af9033*
576
577 AFFS FILE SYSTEM
578 M:      David Sterba <dsterba@suse.com>
579 L:      linux-fsdevel@vger.kernel.org
580 S:      Odd Fixes
581 F:      Documentation/filesystems/affs.txt
582 F:      fs/affs/
583
584 AFS FILESYSTEM
585 M:      David Howells <dhowells@redhat.com>
586 L:      linux-afs@lists.infradead.org
587 S:      Supported
588 F:      fs/afs/
589 F:      include/trace/events/afs.h
590 F:      Documentation/filesystems/afs.txt
591 W:      https://www.infradead.org/~dhowells/kafs/
592
593 AGPGART DRIVER
594 M:      David Airlie <airlied@linux.ie>
595 T:      git git://anongit.freedesktop.org/drm/drm
596 S:      Maintained
597 F:      drivers/char/agp/
598 F:      include/linux/agp*
599 F:      include/uapi/linux/agp*
600
601 AHA152X SCSI DRIVER
602 M:      "Juergen E. Fischer" <fischer@norbit.de>
603 L:      linux-scsi@vger.kernel.org
604 S:      Maintained
605 F:      drivers/scsi/aha152x*
606 F:      drivers/scsi/pcmcia/aha152x*
607
608 AIC7XXX / AIC79XX SCSI DRIVER
609 M:      Hannes Reinecke <hare@suse.com>
610 L:      linux-scsi@vger.kernel.org
611 S:      Maintained
612 F:      drivers/scsi/aic7xxx/
613
614 AIMSLAB FM RADIO RECEIVER DRIVER
615 M:      Hans Verkuil <hverkuil@xs4all.nl>
616 L:      linux-media@vger.kernel.org
617 T:      git git://linuxtv.org/media_tree.git
618 W:      https://linuxtv.org
619 S:      Maintained
620 F:      drivers/media/radio/radio-aimslab*
621
622 AIO
623 M:      Benjamin LaHaise <bcrl@kvack.org>
624 L:      linux-aio@kvack.org
625 S:      Supported
626 F:      fs/aio.c
627 F:      include/linux/*aio*.h
628
629 AIRSPY MEDIA DRIVER
630 M:      Antti Palosaari <crope@iki.fi>
631 L:      linux-media@vger.kernel.org
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 S:      Maintained
637 F:      drivers/media/usb/airspy/
638
639 ALACRITECH GIGABIT ETHERNET DRIVER
640 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
641 S:      Maintained
642 F:      drivers/net/ethernet/alacritech/*
643
644 FORCEDETH GIGABIT ETHERNET DRIVER
645 M:      Rain River <rain.1986.08.12@gmail.com>
646 M:      Zhu Yanjun <yanjun.zhu@oracle.com>
647 L:      netdev@vger.kernel.org
648 S:      Maintained
649 F:      drivers/net/ethernet/nvidia/*
650
651 ALCATEL SPEEDTOUCH USB DRIVER
652 M:      Duncan Sands <duncan.sands@free.fr>
653 L:      linux-usb@vger.kernel.org
654 W:      http://www.linux-usb.org/SpeedTouch/
655 S:      Maintained
656 F:      drivers/usb/atm/speedtch.c
657 F:      drivers/usb/atm/usbatm.c
658
659 ALCHEMY AU1XX0 MMC DRIVER
660 M:      Manuel Lauss <manuel.lauss@gmail.com>
661 S:      Maintained
662 F:      drivers/mmc/host/au1xmmc.c
663
664 ALI1563 I2C DRIVER
665 M:      Rudolf Marek <r.marek@assembler.cz>
666 L:      linux-i2c@vger.kernel.org
667 S:      Maintained
668 F:      Documentation/i2c/busses/i2c-ali1563.rst
669 F:      drivers/i2c/busses/i2c-ali1563.c
670
671 ALLEGRO DVT VIDEO IP CORE DRIVER
672 M:      Michael Tretter <m.tretter@pengutronix.de>
673 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
674 L:      linux-media@vger.kernel.org
675 S:      Maintained
676 F:      drivers/staging/media/allegro-dvt/
677
678 ALLWINNER CPUFREQ DRIVER
679 M:      Yangtao Li <tiny.windzz@gmail.com>
680 L:      linux-pm@vger.kernel.org
681 S:      Maintained
682 F:      Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
683 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
684
685 ALLWINNER SECURITY SYSTEM
686 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
687 L:      linux-crypto@vger.kernel.org
688 S:      Maintained
689 F:      drivers/crypto/sunxi-ss/
690
691 ALLWINNER VPU DRIVER
692 M:      Maxime Ripard <mripard@kernel.org>
693 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
694 L:      linux-media@vger.kernel.org
695 S:      Maintained
696 F:      drivers/staging/media/sunxi/cedrus/
697
698 ALPHA PORT
699 M:      Richard Henderson <rth@twiddle.net>
700 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
701 M:      Matt Turner <mattst88@gmail.com>
702 S:      Odd Fixes
703 L:      linux-alpha@vger.kernel.org
704 F:      arch/alpha/
705
706 ALPS PS/2 TOUCHPAD DRIVER
707 R:      Pali Rohár <pali.rohar@gmail.com>
708 F:      drivers/input/mouse/alps.*
709
710 ALTERA I2C CONTROLLER DRIVER
711 M:      Thor Thayer <thor.thayer@linux.intel.com>
712 S:      Maintained
713 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
714 F:      drivers/i2c/busses/i2c-altera.c
715
716 ALTERA MAILBOX DRIVER
717 M:      Ley Foon Tan <lftan@altera.com>
718 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
719 S:      Maintained
720 F:      drivers/mailbox/mailbox-altera.c
721
722 ALTERA PIO DRIVER
723 M:      Tien Hock Loh <thloh@altera.com>
724 L:      linux-gpio@vger.kernel.org
725 S:      Maintained
726 F:      drivers/gpio/gpio-altera.c
727
728 ALTERA SYSTEM MANAGER DRIVER
729 M:      Thor Thayer <thor.thayer@linux.intel.com>
730 S:      Maintained
731 F:      drivers/mfd/altera-sysmgr.c
732 F:      include/linux/mfd/altera-sysmgr.h
733
734 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
735 M:      Thor Thayer <thor.thayer@linux.intel.com>
736 S:      Maintained
737 F:      drivers/gpio/gpio-altera-a10sr.c
738 F:      drivers/mfd/altera-a10sr.c
739 F:      drivers/reset/reset-a10sr.c
740 F:      include/linux/mfd/altera-a10sr.h
741 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
742
743 ALTERA TRIPLE SPEED ETHERNET DRIVER
744 M:      Thor Thayer <thor.thayer@linux.intel.com>
745 L:      netdev@vger.kernel.org
746 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
747 S:      Maintained
748 F:      drivers/net/ethernet/altera/
749
750 ALTERA UART/JTAG UART SERIAL DRIVERS
751 M:      Tobias Klauser <tklauser@distanz.ch>
752 L:      linux-serial@vger.kernel.org
753 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
754 S:      Maintained
755 F:      drivers/tty/serial/altera_uart.c
756 F:      drivers/tty/serial/altera_jtaguart.c
757 F:      include/linux/altera_uart.h
758 F:      include/linux/altera_jtaguart.h
759
760 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
761 M:      Talel Shenhar <talel@amazon.com>
762 S:      Maintained
763 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
764 F:      drivers/thermal/thermal_mmio.c
765
766 AMAZON ETHERNET DRIVERS
767 M:      Netanel Belgazal <netanel@amazon.com>
768 R:      Saeed Bishara <saeedb@amazon.com>
769 R:      Zorik Machulsky <zorik@amazon.com>
770 L:      netdev@vger.kernel.org
771 S:      Supported
772 F:      Documentation/networking/device_drivers/amazon/ena.txt
773 F:      drivers/net/ethernet/amazon/
774
775 AMAZON RDMA EFA DRIVER
776 M:      Gal Pressman <galpress@amazon.com>
777 R:      Yossi Leybovich <sleybo@amazon.com>
778 L:      linux-rdma@vger.kernel.org
779 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
780 S:      Supported
781 F:      drivers/infiniband/hw/efa/
782 F:      include/uapi/rdma/efa-abi.h
783
784 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
785 M:      Tom Lendacky <thomas.lendacky@amd.com>
786 M:      Gary Hook <gary.hook@amd.com>
787 L:      linux-crypto@vger.kernel.org
788 S:      Supported
789 F:      drivers/crypto/ccp/
790 F:      include/linux/ccp.h
791
792 AMD DISPLAY CORE
793 M:      Harry Wentland <harry.wentland@amd.com>
794 M:      Leo Li <sunpeng.li@amd.com>
795 L:      amd-gfx@lists.freedesktop.org
796 T:      git git://people.freedesktop.org/~agd5f/linux
797 S:      Supported
798 F:      drivers/gpu/drm/amd/display/
799
800 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
801 M:      Huang Rui <ray.huang@amd.com>
802 L:      linux-hwmon@vger.kernel.org
803 S:      Supported
804 F:      Documentation/hwmon/fam15h_power.rst
805 F:      drivers/hwmon/fam15h_power.c
806
807 AMD FCH GPIO DRIVER
808 M:      Enrico Weigelt, metux IT consult <info@metux.net>
809 L:      linux-gpio@vger.kernel.org
810 S:      Maintained
811 F:      drivers/gpio/gpio-amd-fch.c
812 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
813
814 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
815 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
816 S:      Orphan
817 F:      drivers/usb/gadget/udc/amd5536udc.*
818
819 AMD GEODE PROCESSOR/CHIPSET SUPPORT
820 P:      Andres Salomon <dilinger@queued.net>
821 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
822 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
823 S:      Supported
824 F:      drivers/char/hw_random/geode-rng.c
825 F:      drivers/crypto/geode*
826 F:      drivers/video/fbdev/geode/
827 F:      arch/x86/include/asm/geode.h
828
829 AMD IOMMU (AMD-VI)
830 M:      Joerg Roedel <joro@8bytes.org>
831 L:      iommu@lists.linux-foundation.org
832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
833 S:      Maintained
834 F:      drivers/iommu/amd_iommu*.[ch]
835 F:      include/linux/amd-iommu.h
836
837 AMD KFD
838 M:      Felix Kuehling <Felix.Kuehling@amd.com>
839 L:      amd-gfx@lists.freedesktop.org
840 T:      git git://people.freedesktop.org/~agd5f/linux
841 S:      Supported
842 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
843 F:      drivers/gpu/drm/amd/amdkfd/
844 F:      drivers/gpu/drm/amd/include/cik_structs.h
845 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
846 F:      drivers/gpu/drm/amd/include/vi_structs.h
847 F:      drivers/gpu/drm/amd/include/v9_structs.h
848 F:      include/uapi/linux/kfd_ioctl.h
849
850 AMD MP2 I2C DRIVER
851 M:      Elie Morisse <syniurge@gmail.com>
852 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
853 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
854 L:      linux-i2c@vger.kernel.org
855 S:      Maintained
856 F:      drivers/i2c/busses/i2c-amd-mp2*
857
858 AMD POWERPLAY
859 M:      Rex Zhu <rex.zhu@amd.com>
860 M:      Evan Quan <evan.quan@amd.com>
861 L:      amd-gfx@lists.freedesktop.org
862 S:      Supported
863 F:      drivers/gpu/drm/amd/powerplay/
864 T:      git git://people.freedesktop.org/~agd5f/linux
865
866 AMD SEATTLE DEVICE TREE SUPPORT
867 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
868 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
869 M:      Tom Lendacky <thomas.lendacky@amd.com>
870 S:      Supported
871 F:      arch/arm64/boot/dts/amd/
872
873 AMD XGBE DRIVER
874 M:      Tom Lendacky <thomas.lendacky@amd.com>
875 L:      netdev@vger.kernel.org
876 S:      Supported
877 F:      drivers/net/ethernet/amd/xgbe/
878 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
879
880 ANALOG DEVICES INC AD5686 DRIVER
881 M:      Stefan Popa <stefan.popa@analog.com>
882 L:      linux-pm@vger.kernel.org
883 W:      http://ez.analog.com/community/linux-device-drivers
884 S:      Supported
885 F:      drivers/iio/dac/ad5686*
886 F:      drivers/iio/dac/ad5696*
887
888 ANALOG DEVICES INC AD5758 DRIVER
889 M:      Stefan Popa <stefan.popa@analog.com>
890 L:      linux-iio@vger.kernel.org
891 W:      http://ez.analog.com/community/linux-device-drivers
892 S:      Supported
893 F:      drivers/iio/dac/ad5758.c
894 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
895
896 ANALOG DEVICES INC AD7091R5 DRIVER
897 M:      Beniamin Bia <beniamin.bia@analog.com>
898 L:      linux-iio@vger.kernel.org
899 W:      http://ez.analog.com/community/linux-device-drivers
900 S:      Supported
901 F:      drivers/iio/adc/ad7091r5.c
902 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7091r5.yaml
903
904 ANALOG DEVICES INC AD7124 DRIVER
905 M:      Stefan Popa <stefan.popa@analog.com>
906 L:      linux-iio@vger.kernel.org
907 W:      http://ez.analog.com/community/linux-device-drivers
908 S:      Supported
909 F:      drivers/iio/adc/ad7124.c
910 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.yaml
911
912 ANALOG DEVICES INC AD7292 DRIVER
913 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
914 L:      linux-iio@vger.kernel.org
915 W:      http://ez.analog.com/community/linux-device-drivers
916 S:      Supported
917 F:      drivers/iio/adc/ad7292.c
918 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
919
920 ANALOG DEVICES INC AD7606 DRIVER
921 M:      Stefan Popa <stefan.popa@analog.com>
922 M:      Beniamin Bia <beniamin.bia@analog.com>
923 L:      linux-iio@vger.kernel.org
924 W:      http://ez.analog.com/community/linux-device-drivers
925 S:      Supported
926 F:      drivers/iio/adc/ad7606.c
927 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
928
929 ANALOG DEVICES INC AD7768-1 DRIVER
930 M:      Stefan Popa <stefan.popa@analog.com>
931 L:      linux-iio@vger.kernel.org
932 W:      http://ez.analog.com/community/linux-device-drivers
933 S:      Supported
934 F:      drivers/iio/adc/ad7768-1.c
935 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
936
937 ANALOG DEVICES INC AD7780 DRIVER
938 M:      Michael Hennerich <Michael.Hennerich@analog.com>
939 M:      Renato Lui Geh <renatogeh@gmail.com>
940 L:      linux-iio@vger.kernel.org
941 W:      http://ez.analog.com/community/linux-device-drivers
942 S:      Supported
943 F:      drivers/iio/adc/ad7780.c
944 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
945
946 ANALOG DEVICES INC AD9389B DRIVER
947 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
948 L:      linux-media@vger.kernel.org
949 S:      Maintained
950 F:      drivers/media/i2c/ad9389b*
951
952 ANALOG DEVICES INC ADGS1408 DRIVER
953 M:      Mircea Caprioru <mircea.caprioru@analog.com>
954 S:      Supported
955 F:      drivers/mux/adgs1408.c
956 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
957
958 ANALOG DEVICES INC ADIN DRIVER
959 M:      Alexandru Ardelean <alexaundru.ardelean@analog.com>
960 L:      netdev@vger.kernel.org
961 W:      http://ez.analog.com/community/linux-device-drivers
962 S:      Supported
963 F:      drivers/net/phy/adin.c
964 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
965
966 ANALOG DEVICES INC ADIS DRIVER LIBRARY
967 M:      Alexandru Ardelean <alexandru.ardelean@analog.com>
968 S:      Supported
969 L:      linux-iio@vger.kernel.org
970 F:      include/linux/iio/imu/adis.h
971 F:      drivers/iio/imu/adis.c
972
973 ANALOG DEVICES INC ADIS16460 DRIVER
974 M:      Dragos Bogdan <dragos.bogdan@analog.com>
975 S:      Supported
976 L:      linux-iio@vger.kernel.org
977 W:      http://ez.analog.com/community/linux-device-drivers
978 F:      drivers/iio/imu/adis16460.c
979 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
980
981 ANALOG DEVICES INC ADP5061 DRIVER
982 M:      Stefan Popa <stefan.popa@analog.com>
983 L:      linux-pm@vger.kernel.org
984 W:      http://ez.analog.com/community/linux-device-drivers
985 S:      Supported
986 F:      drivers/power/supply/adp5061.c
987
988 ANALOG DEVICES INC ADV7180 DRIVER
989 M:      Lars-Peter Clausen <lars@metafoo.de>
990 L:      linux-media@vger.kernel.org
991 W:      http://ez.analog.com/community/linux-device-drivers
992 S:      Supported
993 F:      drivers/media/i2c/adv7180.c
994
995 ANALOG DEVICES INC ADV748X DRIVER
996 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
997 L:      linux-media@vger.kernel.org
998 S:      Maintained
999 F:      drivers/media/i2c/adv748x/*
1000
1001 ANALOG DEVICES INC ADV7511 DRIVER
1002 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1003 L:      linux-media@vger.kernel.org
1004 S:      Maintained
1005 F:      drivers/media/i2c/adv7511*
1006
1007 ANALOG DEVICES INC ADV7604 DRIVER
1008 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1009 L:      linux-media@vger.kernel.org
1010 S:      Maintained
1011 F:      drivers/media/i2c/adv7604*
1012
1013 ANALOG DEVICES INC ADV7842 DRIVER
1014 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1015 L:      linux-media@vger.kernel.org
1016 S:      Maintained
1017 F:      drivers/media/i2c/adv7842*
1018
1019 ANALOG DEVICES INC ASOC CODEC DRIVERS
1020 M:      Lars-Peter Clausen <lars@metafoo.de>
1021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1022 W:      http://wiki.analog.com/
1023 W:      http://ez.analog.com/community/linux-device-drivers
1024 S:      Supported
1025 F:      sound/soc/codecs/adau*
1026 F:      sound/soc/codecs/adav*
1027 F:      sound/soc/codecs/ad1*
1028 F:      sound/soc/codecs/ad7*
1029 F:      sound/soc/codecs/ssm*
1030 F:      sound/soc/codecs/sigmadsp.*
1031
1032 ANALOG DEVICES INC DMA DRIVERS
1033 M:      Lars-Peter Clausen <lars@metafoo.de>
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 S:      Supported
1036 F:      drivers/dma/dma-axi-dmac.c
1037
1038 ANALOG DEVICES INC IIO DRIVERS
1039 M:      Lars-Peter Clausen <lars@metafoo.de>
1040 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1041 M:      Stefan Popa <stefan.popa@analog.com>
1042 W:      http://wiki.analog.com/
1043 W:      http://ez.analog.com/community/linux-device-drivers
1044 S:      Supported
1045 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1046 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1047 F:      drivers/iio/*/ad*
1048 F:      drivers/iio/adc/ltc2497*
1049 X:      drivers/iio/*/adjd*
1050 F:      drivers/staging/iio/*/ad*
1051
1052 ANALOGBITS PLL LIBRARIES
1053 M:      Paul Walmsley <paul.walmsley@sifive.com>
1054 S:      Supported
1055 F:      drivers/clk/analogbits/*
1056 F:      include/linux/clk/analogbits*
1057
1058 ANDES ARCHITECTURE
1059 M:      Greentime Hu <green.hu@gmail.com>
1060 M:      Vincent Chen <deanbo422@gmail.com>
1061 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1062 S:      Supported
1063 F:      arch/nds32/
1064 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1065 F:      Documentation/devicetree/bindings/nds32/
1066 K:      nds32
1067 N:      nds32
1068
1069 ANDROID CONFIG FRAGMENTS
1070 M:      Rob Herring <robh@kernel.org>
1071 S:      Supported
1072 F:      kernel/configs/android*
1073
1074 ANDROID DRIVERS
1075 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1076 M:      Arve Hjønnevåg <arve@android.com>
1077 M:      Todd Kjos <tkjos@android.com>
1078 M:      Martijn Coenen <maco@android.com>
1079 M:      Joel Fernandes <joel@joelfernandes.org>
1080 M:      Christian Brauner <christian@brauner.io>
1081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1082 L:      devel@driverdev.osuosl.org
1083 S:      Supported
1084 F:      drivers/android/
1085 F:      drivers/staging/android/
1086
1087 ANDROID GOLDFISH PIC DRIVER
1088 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1089 S:      Supported
1090 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1091 F:      drivers/irqchip/irq-goldfish-pic.c
1092
1093 ANDROID GOLDFISH RTC DRIVER
1094 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1095 S:      Supported
1096 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1097 F:      drivers/rtc/rtc-goldfish.c
1098
1099 ANDROID ION DRIVER
1100 M:      Laura Abbott <labbott@redhat.com>
1101 M:      Sumit Semwal <sumit.semwal@linaro.org>
1102 L:      devel@driverdev.osuosl.org
1103 L:      dri-devel@lists.freedesktop.org
1104 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1105 S:      Supported
1106 F:      drivers/staging/android/ion
1107 F:      drivers/staging/android/uapi/ion.h
1108
1109 AOA (Apple Onboard Audio) ALSA DRIVER
1110 M:      Johannes Berg <johannes@sipsolutions.net>
1111 L:      linuxppc-dev@lists.ozlabs.org
1112 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1113 S:      Maintained
1114 F:      sound/aoa/
1115
1116 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1117 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1118 L:      linux-iio@vger.kernel.org
1119 S:      Maintained
1120 F:      drivers/iio/adc/stx104.c
1121
1122 APM DRIVER
1123 M:      Jiri Kosina <jikos@kernel.org>
1124 S:      Odd fixes
1125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1126 F:      arch/x86/kernel/apm_32.c
1127 F:      include/linux/apm_bios.h
1128 F:      include/uapi/linux/apm_bios.h
1129 F:      drivers/char/apm-emulation.c
1130
1131 APPARMOR SECURITY MODULE
1132 M:      John Johansen <john.johansen@canonical.com>
1133 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1134 W:      wiki.apparmor.net
1135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1136 S:      Supported
1137 F:      security/apparmor/
1138 F:      Documentation/admin-guide/LSM/apparmor.rst
1139
1140 APPLE BCM5974 MULTITOUCH DRIVER
1141 M:      Henrik Rydberg <rydberg@bitmath.org>
1142 L:      linux-input@vger.kernel.org
1143 S:      Odd fixes
1144 F:      drivers/input/mouse/bcm5974.c
1145
1146 APPLE SMC DRIVER
1147 M:      Henrik Rydberg <rydberg@bitmath.org>
1148 L:      linux-hwmon@vger.kernel.org
1149 S:      Odd fixes
1150 F:      drivers/hwmon/applesmc.c
1151
1152 APPLETALK NETWORK LAYER
1153 L:      netdev@vger.kernel.org
1154 S:      Odd fixes
1155 F:      drivers/net/appletalk/
1156 F:      net/appletalk/
1157 F:      include/linux/atalk.h
1158 F:      include/uapi/linux/atalk.h
1159
1160 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1161 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1162 S:      Supported
1163 F:      arch/arm64/boot/dts/apm/
1164
1165 APPLIED MICRO (APM) X-GENE SOC EDAC
1166 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1167 S:      Supported
1168 F:      drivers/edac/xgene_edac.c
1169 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1170
1171 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1172 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1173 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1174 S:      Supported
1175 F:      drivers/net/ethernet/apm/xgene-v2/
1176
1177 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1178 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1179 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1180 M:      Quan Nguyen <quan@os.amperecomputing.com>
1181 S:      Supported
1182 F:      drivers/net/ethernet/apm/xgene/
1183 F:      drivers/net/phy/mdio-xgene.c
1184 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1185 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1186
1187 APPLIED MICRO (APM) X-GENE SOC PMU
1188 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1189 S:      Supported
1190 F:      drivers/perf/xgene_pmu.c
1191 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1192 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1193
1194 APTINA CAMERA SENSOR PLL
1195 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1196 L:      linux-media@vger.kernel.org
1197 S:      Maintained
1198 F:      drivers/media/i2c/aptina-pll.*
1199
1200 AQUANTIA ETHERNET DRIVER (atlantic)
1201 M:      Igor Russkikh <igor.russkikh@aquantia.com>
1202 L:      netdev@vger.kernel.org
1203 S:      Supported
1204 W:      http://www.aquantia.com
1205 Q:      http://patchwork.ozlabs.org/project/netdev/list/
1206 F:      drivers/net/ethernet/aquantia/atlantic/
1207 F:      Documentation/networking/device_drivers/aquantia/atlantic.txt
1208
1209 ARC FRAMEBUFFER DRIVER
1210 M:      Jaya Kumar <jayalk@intworks.biz>
1211 S:      Maintained
1212 F:      drivers/video/fbdev/arcfb.c
1213 F:      drivers/video/fbdev/core/fb_defio.c
1214
1215 ARC PGU DRM DRIVER
1216 M:      Alexey Brodkin <abrodkin@synopsys.com>
1217 S:      Supported
1218 F:      drivers/gpu/drm/arc/
1219 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1220
1221 ARCNET NETWORK LAYER
1222 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1223 L:      netdev@vger.kernel.org
1224 S:      Maintained
1225 F:      drivers/net/arcnet/
1226 F:      include/uapi/linux/if_arcnet.h
1227
1228 ARM ARCHITECTED TIMER DRIVER
1229 M:      Mark Rutland <mark.rutland@arm.com>
1230 M:      Marc Zyngier <maz@kernel.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233 F:      arch/arm/include/asm/arch_timer.h
1234 F:      arch/arm64/include/asm/arch_timer.h
1235 F:      drivers/clocksource/arm_arch_timer.c
1236
1237 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1238 M:      Linus Walleij <linus.walleij@linaro.org>
1239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1240 S:      Maintained
1241 F:      Documentation/devicetree/bindings/arm/arm-boards
1242 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1243 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1244 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1245 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1246 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1247 F:      arch/arm/mach-integrator/
1248 F:      arch/arm/mach-realview/
1249 F:      arch/arm/mach-versatile/
1250 F:      arch/arm/plat-versatile/
1251 F:      arch/arm/boot/dts/arm-realview-*
1252 F:      arch/arm/boot/dts/integrator*
1253 F:      arch/arm/boot/dts/versatile*
1254 F:      drivers/clk/versatile/
1255 F:      drivers/i2c/busses/i2c-versatile.c
1256 F:      drivers/irqchip/irq-versatile-fpga.c
1257 F:      drivers/mtd/maps/physmap_of_versatile.c
1258 F:      drivers/power/reset/arm-versatile-reboot.c
1259 F:      drivers/soc/versatile/
1260
1261 ARM HDLCD DRM DRIVER
1262 M:      Liviu Dudau <liviu.dudau@arm.com>
1263 S:      Supported
1264 F:      drivers/gpu/drm/arm/hdlcd_*
1265 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1266
1267 ARM KOMEDA DRM-KMS DRIVER
1268 M:      James (Qian) Wang <james.qian.wang@arm.com>
1269 M:      Liviu Dudau <liviu.dudau@arm.com>
1270 L:      Mali DP Maintainers <malidp@foss.arm.com>
1271 S:      Supported
1272 T:      git git://anongit.freedesktop.org/drm/drm-misc
1273 F:      drivers/gpu/drm/arm/display/include/
1274 F:      drivers/gpu/drm/arm/display/komeda/
1275 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1276 F:      Documentation/gpu/komeda-kms.rst
1277
1278 ARM MALI-DP DRM DRIVER
1279 M:      Liviu Dudau <liviu.dudau@arm.com>
1280 M:      Brian Starkey <brian.starkey@arm.com>
1281 L:      Mali DP Maintainers <malidp@foss.arm.com>
1282 S:      Supported
1283 T:      git git://anongit.freedesktop.org/drm/drm-misc
1284 F:      drivers/gpu/drm/arm/
1285 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1286 F:      Documentation/gpu/afbc.rst
1287
1288 ARM MALI PANFROST DRM DRIVER
1289 M:      Rob Herring <robh@kernel.org>
1290 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1291 L:      dri-devel@lists.freedesktop.org
1292 S:      Supported
1293 T:      git git://anongit.freedesktop.org/drm/drm-misc
1294 F:      drivers/gpu/drm/panfrost/
1295 F:      include/uapi/drm/panfrost_drm.h
1296
1297 ARM MFM AND FLOPPY DRIVERS
1298 M:      Ian Molton <spyro@f2s.com>
1299 S:      Maintained
1300 F:      arch/arm/mach-rpc/floppydma.S
1301 F:      arch/arm/include/asm/floppy.h
1302
1303 ARM PMU PROFILING AND DEBUGGING
1304 M:      Will Deacon <will@kernel.org>
1305 M:      Mark Rutland <mark.rutland@arm.com>
1306 S:      Maintained
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 F:      arch/arm*/kernel/perf_*
1309 F:      arch/arm/oprofile/common.c
1310 F:      arch/arm*/kernel/hw_breakpoint.c
1311 F:      arch/arm*/include/asm/hw_breakpoint.h
1312 F:      arch/arm*/include/asm/perf_event.h
1313 F:      drivers/perf/*
1314 F:      include/linux/perf/arm_pmu.h
1315 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1316 F:      Documentation/devicetree/bindings/perf/
1317
1318 ARM PORT
1319 M:      Russell King <linux@armlinux.org.uk>
1320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 W:      http://www.armlinux.org.uk/
1322 S:      Odd Fixes
1323 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1324 F:      arch/arm/
1325 X:      arch/arm/boot/dts/
1326
1327 ARM PRIMECELL AACI PL041 DRIVER
1328 M:      Russell King <linux@armlinux.org.uk>
1329 S:      Odd Fixes
1330 F:      sound/arm/aaci.*
1331
1332 ARM PRIMECELL BUS SUPPORT
1333 M:      Russell King <linux@armlinux.org.uk>
1334 S:      Odd Fixes
1335 F:      drivers/amba/
1336 F:      include/linux/amba/bus.h
1337
1338 ARM PRIMECELL CLCD PL110 DRIVER
1339 M:      Russell King <linux@armlinux.org.uk>
1340 S:      Odd Fixes
1341 F:      drivers/video/fbdev/amba-clcd.*
1342
1343 ARM PRIMECELL KMI PL050 DRIVER
1344 M:      Russell King <linux@armlinux.org.uk>
1345 S:      Odd Fixes
1346 F:      drivers/input/serio/ambakmi.*
1347 F:      include/linux/amba/kmi.h
1348
1349 ARM PRIMECELL MMCI PL180/1 DRIVER
1350 M:      Russell King <linux@armlinux.org.uk>
1351 S:      Odd Fixes
1352 F:      drivers/mmc/host/mmci.*
1353 F:      include/linux/amba/mmci.h
1354
1355 ARM PRIMECELL SSP PL022 SPI DRIVER
1356 M:      Linus Walleij <linus.walleij@linaro.org>
1357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 S:      Maintained
1359 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1360 F:      drivers/spi/spi-pl022.c
1361
1362 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1363 M:      Russell King <linux@armlinux.org.uk>
1364 S:      Odd Fixes
1365 F:      drivers/tty/serial/amba-pl01*.c
1366 F:      include/linux/amba/serial.h
1367
1368 ARM PRIMECELL VIC PL190/PL192 DRIVER
1369 M:      Linus Walleij <linus.walleij@linaro.org>
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 S:      Maintained
1372 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1373 F:      drivers/irqchip/irq-vic.c
1374
1375 AMAZON ANNAPURNA LABS FIC DRIVER
1376 M:      Talel Shenhar <talel@amazon.com>
1377 S:      Maintained
1378 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
1379 F:      drivers/irqchip/irq-al-fic.c
1380
1381 ARM SMMU DRIVERS
1382 M:      Will Deacon <will@kernel.org>
1383 R:      Robin Murphy <robin.murphy@arm.com>
1384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 S:      Maintained
1386 F:      drivers/iommu/arm-smmu*
1387 F:      drivers/iommu/io-pgtable-arm.c
1388 F:      drivers/iommu/io-pgtable-arm-v7s.c
1389
1390 ARM SUB-ARCHITECTURES
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/mach-*/
1394 F:      arch/arm/plat-*/
1395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1396
1397 ARM/ACTIONS SEMI ARCHITECTURE
1398 M:      Andreas Färber <afaerber@suse.de>
1399 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 N:      owl
1403 F:      arch/arm/mach-actions/
1404 F:      arch/arm/boot/dts/owl-*
1405 F:      arch/arm64/boot/dts/actions/
1406 F:      drivers/clk/actions/
1407 F:      drivers/clocksource/timer-owl*
1408 F:      drivers/dma/owl-dma.c
1409 F:      drivers/i2c/busses/i2c-owl.c
1410 F:      drivers/pinctrl/actions/*
1411 F:      drivers/soc/actions/
1412 F:      include/dt-bindings/power/owl-*
1413 F:      include/linux/soc/actions/
1414 F:      Documentation/devicetree/bindings/arm/actions.yaml
1415 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1416 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1417 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1418 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1419 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1420 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1421
1422 ARM/ADS SPHERE MACHINE SUPPORT
1423 M:      Lennert Buytenhek <kernel@wantstofly.org>
1424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426
1427 ARM/AFEB9260 MACHINE SUPPORT
1428 M:      Sergey Lapin <slapin@ossfans.org>
1429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1430 S:      Maintained
1431
1432 ARM/AJECO 1ARM MACHINE SUPPORT
1433 M:      Lennert Buytenhek <kernel@wantstofly.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 S:      Maintained
1436
1437 ARM/Allwinner SoC Clock Support
1438 M:      Emilio López <emilio@elopez.com.ar>
1439 S:      Maintained
1440 F:      drivers/clk/sunxi/
1441
1442 ARM/Allwinner sunXi SoC support
1443 M:      Maxime Ripard <mripard@kernel.org>
1444 M:      Chen-Yu Tsai <wens@csie.org>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 S:      Maintained
1447 N:      sun[x456789]i
1448 N:      sun50i
1449 F:      arch/arm/mach-sunxi/
1450 F:      arch/arm64/boot/dts/allwinner/
1451 F:      drivers/clk/sunxi-ng/
1452 F:      drivers/pinctrl/sunxi/
1453 F:      drivers/soc/sunxi/
1454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1455
1456 Allwinner A10 CSI driver
1457 M:      Maxime Ripard <mripard@kernel.org>
1458 L:      linux-media@vger.kernel.org
1459 T:      git git://linuxtv.org/media_tree.git
1460 F:      drivers/media/platform/sunxi/sun4i-csi/
1461 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
1462 S:      Maintained
1463
1464 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1465 M:      Neil Armstrong <narmstrong@baylibre.com>
1466 M:      Jerome Brunet <jbrunet@baylibre.com>
1467 L:      linux-amlogic@lists.infradead.org
1468 S:      Maintained
1469 F:      drivers/clk/meson/
1470 F:      include/dt-bindings/clock/meson*
1471 F:      include/dt-bindings/clock/gxbb*
1472 F:      Documentation/devicetree/bindings/clock/amlogic*
1473
1474 ARM/Amlogic Meson SoC support
1475 M:      Kevin Hilman <khilman@baylibre.com>
1476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1477 L:      linux-amlogic@lists.infradead.org
1478 W:      http://linux-meson.com/
1479 S:      Maintained
1480 F:      arch/arm/mach-meson/
1481 F:      arch/arm/boot/dts/meson*
1482 F:      arch/arm64/boot/dts/amlogic/
1483 F:      drivers/pinctrl/meson/
1484 F:      drivers/mmc/host/meson*
1485 F:      drivers/soc/amlogic/
1486 F:      drivers/rtc/rtc-meson*
1487 N:      meson
1488
1489 ARM/Amlogic Meson SoC Sound Drivers
1490 M:      Jerome Brunet <jbrunet@baylibre.com>
1491 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1492 S:      Maintained
1493 F:      sound/soc/meson/
1494 F:      Documentation/devicetree/bindings/sound/amlogic*
1495
1496 ARM/Annapurna Labs ALPINE ARCHITECTURE
1497 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1498 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      arch/arm/mach-alpine/
1502 F:      arch/arm/boot/dts/alpine*
1503 F:      arch/arm64/boot/dts/al/
1504 F:      drivers/*/*alpine*
1505
1506 ARM/ARTPEC MACHINE SUPPORT
1507 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1508 M:      Lars Persson <lars.persson@axis.com>
1509 S:      Maintained
1510 L:      linux-arm-kernel@axis.com
1511 F:      arch/arm/mach-artpec
1512 F:      arch/arm/boot/dts/artpec6*
1513 F:      drivers/clk/axis
1514 F:      drivers/crypto/axis
1515 F:      drivers/mmc/host/usdhi6rol0.c
1516 F:      drivers/pinctrl/pinctrl-artpec*
1517 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1518
1519 ARM/ASPEED I2C DRIVER
1520 M:      Brendan Higgins <brendanhiggins@google.com>
1521 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1522 R:      Joel Stanley <joel@jms.id.au>
1523 L:      linux-i2c@vger.kernel.org
1524 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1525 S:      Maintained
1526 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1527 F:      drivers/i2c/busses/i2c-aspeed.c
1528 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1529 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1530
1531 ARM/ASPEED MACHINE SUPPORT
1532 M:      Joel Stanley <joel@jms.id.au>
1533 R:      Andrew Jeffery <andrew@aj.id.au>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1536 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1537 S:      Supported
1538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1539 F:      arch/arm/mach-aspeed/
1540 F:      arch/arm/boot/dts/aspeed-*
1541 N:      aspeed
1542
1543 ARM/BITMAIN ARCHITECTURE
1544 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1546 S:      Maintained
1547 F:      arch/arm64/boot/dts/bitmain/
1548 F:      drivers/pinctrl/pinctrl-bm1880.c
1549 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1550 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1551
1552 ARM/CALXEDA HIGHBANK ARCHITECTURE
1553 M:      Rob Herring <robh@kernel.org>
1554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1555 S:      Maintained
1556 F:      arch/arm/mach-highbank/
1557 F:      arch/arm/boot/dts/highbank.dts
1558 F:      arch/arm/boot/dts/ecx-*.dts*
1559
1560 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1561 M:      Krzysztof Halasa <khalasa@piap.pl>
1562 S:      Maintained
1563 F:      arch/arm/mach-cns3xxx/
1564
1565 ARM/CAVIUM THUNDER NETWORK DRIVER
1566 M:      Sunil Goutham <sgoutham@cavium.com>
1567 M:      Robert Richter <rric@kernel.org>
1568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1569 S:      Supported
1570 F:      drivers/net/ethernet/cavium/thunder/
1571
1572 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1573 M:      Lukasz Majewski <lukma@denx.de>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 S:      Maintained
1576 F:      arch/arm/mach-ep93xx/ts72xx.c
1577
1578 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1579 M:      Alexander Shiyan <shc_work@mail.ru>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Odd Fixes
1582 N:      clps711x
1583
1584 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1585 M:      Lennert Buytenhek <kernel@wantstofly.org>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588
1589 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1590 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1591 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1592 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1593 S:      Maintained
1594 F:      arch/arm/mach-ep93xx/
1595 F:      arch/arm/mach-ep93xx/include/mach/
1596
1597 ARM/CLKDEV SUPPORT
1598 M:      Russell King <linux@armlinux.org.uk>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S:      Maintained
1601 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1602 F:      drivers/clk/clkdev.c
1603
1604 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1605 M:      Mike Rapoport <mike@compulab.co.il>
1606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1607 S:      Maintained
1608
1609 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1610 M:      Baruch Siach <baruch@tkos.co.il>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613 F:      arch/arm/boot/dts/cx92755*
1614 N:      digicolor
1615
1616 ARM/CONTEC MICRO9 MACHINE SUPPORT
1617 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1618 S:      Maintained
1619 F:      arch/arm/mach-ep93xx/micro9.c
1620
1621 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1622 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1623 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Maintained
1626 F:      drivers/hwtracing/coresight/*
1627 F:      Documentation/trace/coresight.rst
1628 F:      Documentation/trace/coresight-cpu-debug.rst
1629 F:      Documentation/devicetree/bindings/arm/coresight.txt
1630 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1631 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1632 F:      tools/perf/arch/arm/util/pmu.c
1633 F:      tools/perf/arch/arm/util/auxtrace.c
1634 F:      tools/perf/arch/arm/util/cs-etm.c
1635 F:      tools/perf/arch/arm/util/cs-etm.h
1636 F:      tools/perf/util/cs-etm.*
1637 F:      tools/perf/util/cs-etm-decoder/*
1638
1639 ARM/CORGI MACHINE SUPPORT
1640 M:      Richard Purdie <rpurdie@rpsys.net>
1641 S:      Maintained
1642
1643 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1644 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1645 M:      Linus Walleij <linus.walleij@linaro.org>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 T:      git git://github.com/ulli-kroll/linux.git
1648 S:      Maintained
1649 F:      Documentation/devicetree/bindings/arm/gemini.txt
1650 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1651 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1652 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1653 F:      arch/arm/mach-gemini/
1654 F:      drivers/net/ethernet/cortina/
1655 F:      drivers/pinctrl/pinctrl-gemini.c
1656 F:      drivers/rtc/rtc-ftrtc010.c
1657
1658 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1659 M:      Barry Song <baohua@kernel.org>
1660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1662 S:      Maintained
1663 F:      arch/arm/boot/dts/prima2*
1664 F:      arch/arm/mach-prima2/
1665 F:      drivers/clk/sirf/
1666 F:      drivers/clocksource/timer-prima2.c
1667 F:      drivers/clocksource/timer-atlas7.c
1668 N:      [^a-z]sirf
1669 X:      drivers/gnss
1670
1671 ARM/CZ.NIC TURRIS MOX SUPPORT
1672 M:      Marek Behun <marek.behun@nic.cz>
1673 W:      http://mox.turris.cz
1674 S:      Maintained
1675 F:      Documentation/ABI/testing/debugfs-moxtet
1676 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1677 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1678 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1679 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1680 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1681 F:      include/linux/moxtet.h
1682 F:      drivers/bus/moxtet.c
1683 F:      drivers/firmware/turris-mox-rwtm.c
1684 F:      drivers/gpio/gpio-moxtet.c
1685
1686 ARM/EBSA110 MACHINE SUPPORT
1687 M:      Russell King <linux@armlinux.org.uk>
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 W:      http://www.armlinux.org.uk/
1690 S:      Maintained
1691 F:      arch/arm/mach-ebsa110/
1692 F:      drivers/net/ethernet/amd/am79c961a.*
1693
1694 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1695 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1696 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699 N:      efm32
1700
1701 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1702 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      arch/arm/mach-pxa/ezx.c
1706
1707 ARM/FARADAY FA526 PORT
1708 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 T:      git git://git.berlios.de/gemini-board
1712 F:      arch/arm/mm/*-fa*
1713
1714 ARM/FOOTBRIDGE ARCHITECTURE
1715 M:      Russell King <linux@armlinux.org.uk>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 W:      http://www.armlinux.org.uk/
1718 S:      Maintained
1719 F:      arch/arm/include/asm/hardware/dec21285.h
1720 F:      arch/arm/mach-footbridge/
1721
1722 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1723 M:      Shawn Guo <shawnguo@kernel.org>
1724 M:      Sascha Hauer <s.hauer@pengutronix.de>
1725 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1726 R:      Fabio Estevam <festevam@gmail.com>
1727 R:      NXP Linux Team <linux-imx@nxp.com>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S:      Maintained
1730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1731 N:      imx
1732 N:      mxs
1733 X:      drivers/media/i2c/
1734
1735 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1736 M:      Shawn Guo <shawnguo@kernel.org>
1737 M:      Sascha Hauer <s.hauer@pengutronix.de>
1738 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1739 R:      Stefan Agner <stefan@agner.ch>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1743 F:      arch/arm/mach-imx/*vf610*
1744 F:      arch/arm/boot/dts/vf*
1745
1746 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1747 M:      Shawn Guo <shawnguo@kernel.org>
1748 M:      Li Yang <leoyang.li@nxp.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1752 F:      arch/arm/boot/dts/ls1021a*
1753 F:      arch/arm64/boot/dts/freescale/fsl-*
1754 F:      arch/arm64/boot/dts/freescale/qoriq-*
1755
1756 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1757 M:      Lennert Buytenhek <kernel@wantstofly.org>
1758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1759 S:      Maintained
1760
1761 ARM/GUMSTIX MACHINE SUPPORT
1762 M:      Steve Sakoman <sakoman@gmail.com>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S:      Maintained
1765
1766 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1767 M:      Philipp Zabel <philipp.zabel@gmail.com>
1768 M:      Paul Parsons <lost.distance@yahoo.com>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 S:      Maintained
1771 F:      arch/arm/mach-pxa/hx4700.c
1772 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1773 F:      sound/soc/pxa/hx4700.c
1774
1775 ARM/HISILICON SOC SUPPORT
1776 M:      Wei Xu <xuwei5@hisilicon.com>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 W:      http://www.hisilicon.com
1779 S:      Supported
1780 T:      git git://github.com/hisilicon/linux-hisi.git
1781 F:      arch/arm/mach-hisi/
1782 F:      arch/arm/boot/dts/hi3*
1783 F:      arch/arm/boot/dts/hip*
1784 F:      arch/arm/boot/dts/hisi*
1785 F:      arch/arm64/boot/dts/hisilicon/
1786
1787 ARM/HP JORNADA 7XX MACHINE SUPPORT
1788 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1789 W:      www.jlime.com
1790 S:      Maintained
1791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1792 F:      arch/arm/mach-sa1100/jornada720.c
1793 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1794
1795 ARM/IGEP MACHINE SUPPORT
1796 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1797 M:      Javier Martinez Canillas <javier@dowhile0.org>
1798 L:      linux-omap@vger.kernel.org
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 F:      arch/arm/boot/dts/omap3-igep*
1802
1803 ARM/INCOME PXA270 SUPPORT
1804 M:      Marek Vasut <marek.vasut@gmail.com>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1808
1809 ARM/INTEL IOP32X ARM ARCHITECTURE
1810 M:      Lennert Buytenhek <kernel@wantstofly.org>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813
1814 ARM/INTEL IQ81342EX MACHINE SUPPORT
1815 M:      Lennert Buytenhek <kernel@wantstofly.org>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818
1819 ARM/INTEL IXDP2850 MACHINE SUPPORT
1820 M:      Lennert Buytenhek <kernel@wantstofly.org>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Maintained
1823
1824 ARM/INTEL IXP4XX ARM ARCHITECTURE
1825 M:      Linus Walleij <linusw@kernel.org>
1826 M:      Imre Kaloz <kaloz@openwrt.org>
1827 M:      Krzysztof Halasa <khalasa@piap.pl>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S:      Maintained
1830 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
1831 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
1832 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
1833 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
1834 F:      arch/arm/mach-ixp4xx/
1835 F:      drivers/clocksource/timer-ixp4xx.c
1836 F:      drivers/gpio/gpio-ixp4xx.c
1837 F:      drivers/irqchip/irq-ixp4xx.c
1838 F:      include/linux/irqchip/irq-ixp4xx.h
1839 F:      include/linux/platform_data/timer-ixp4xx.h
1840
1841 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1842 M:      Jonathan Cameron <jic23@cam.ac.uk>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/mach-pxa/stargate2.c
1846 F:      drivers/pcmcia/pxa2xx_stargate2.c
1847
1848 ARM/INTEL XSC3 (MANZANO) ARM CORE
1849 M:      Lennert Buytenhek <kernel@wantstofly.org>
1850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1851 S:      Maintained
1852
1853 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1854 M:      Lennert Buytenhek <kernel@wantstofly.org>
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S:      Maintained
1857
1858 ARM/LG1K ARCHITECTURE
1859 M:      Chanho Min <chanho.min@lge.com>
1860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1861 S:      Maintained
1862 F:      arch/arm64/boot/dts/lg/
1863
1864 ARM/LOGICPD PXA270 MACHINE SUPPORT
1865 M:      Lennert Buytenhek <kernel@wantstofly.org>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868
1869 ARM/LPC18XX ARCHITECTURE
1870 M:      Vladimir Zapolskiy <vz@mleia.com>
1871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1872 S:      Maintained
1873 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
1874 F:      arch/arm/boot/dts/lpc43*
1875 F:      drivers/i2c/busses/i2c-lpc2k.c
1876 F:      drivers/memory/pl172.c
1877 F:      drivers/mtd/spi-nor/nxp-spifi.c
1878 F:      drivers/rtc/rtc-lpc24xx.c
1879 N:      lpc18xx
1880
1881 ARM/LPC32XX SOC SUPPORT
1882 M:      Vladimir Zapolskiy <vz@mleia.com>
1883 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1886 S:      Maintained
1887 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
1888 F:      arch/arm/boot/dts/lpc32*
1889 F:      arch/arm/mach-lpc32xx/
1890 F:      drivers/i2c/busses/i2c-pnx.c
1891 F:      drivers/net/ethernet/nxp/lpc_eth.c
1892 F:      drivers/usb/host/ohci-nxp.c
1893 F:      drivers/watchdog/pnx4008_wdt.c
1894 N:      lpc32xx
1895
1896 ARM/MAGICIAN MACHINE SUPPORT
1897 M:      Philipp Zabel <philipp.zabel@gmail.com>
1898 S:      Maintained
1899
1900 ARM/Marvell Dove/MV78xx0/Orion SOC support
1901 M:      Jason Cooper <jason@lakedaemon.net>
1902 M:      Andrew Lunn <andrew@lunn.ch>
1903 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1904 M:      Gregory Clement <gregory.clement@bootlin.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      Documentation/devicetree/bindings/soc/dove/
1908 F:      arch/arm/mach-dove/
1909 F:      arch/arm/mach-mv78xx0/
1910 F:      arch/arm/mach-orion5x/
1911 F:      arch/arm/plat-orion/
1912 F:      arch/arm/boot/dts/dove*
1913 F:      arch/arm/boot/dts/orion5x*
1914 T:      git git://git.infradead.org/linux-mvebu.git
1915
1916 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1917 M:      Jason Cooper <jason@lakedaemon.net>
1918 M:      Andrew Lunn <andrew@lunn.ch>
1919 M:      Gregory Clement <gregory.clement@bootlin.com>
1920 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/boot/dts/armada*
1924 F:      arch/arm/boot/dts/kirkwood*
1925 F:      arch/arm/configs/mvebu_*_defconfig
1926 F:      arch/arm/mach-mvebu/
1927 F:      arch/arm64/boot/dts/marvell/armada*
1928 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1929 F:      drivers/cpufreq/armada-8k-cpufreq.c
1930 F:      drivers/cpufreq/mvebu-cpufreq.c
1931 F:      drivers/irqchip/irq-armada-370-xp.c
1932 F:      drivers/irqchip/irq-mvebu-*
1933 F:      drivers/pinctrl/mvebu/
1934 F:      drivers/rtc/rtc-armada38x.c
1935 T:      git git://git.infradead.org/linux-mvebu.git
1936
1937 ARM/Mediatek RTC DRIVER
1938 M:      Eddie Huang <eddie.huang@mediatek.com>
1939 M:      Sean Wang <sean.wang@mediatek.com>
1940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1944 F:      drivers/rtc/rtc-mt6397.c
1945 F:      drivers/rtc/rtc-mt7622.c
1946
1947 ARM/Mediatek SoC support
1948 M:      Matthias Brugger <matthias.bgg@gmail.com>
1949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1950 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1951 W:      https://mtk.bcnfs.org/
1952 C:      irc://chat.freenode.net/linux-mediatek
1953 S:      Maintained
1954 F:      arch/arm/boot/dts/mt6*
1955 F:      arch/arm/boot/dts/mt7*
1956 F:      arch/arm/boot/dts/mt8*
1957 F:      arch/arm/mach-mediatek/
1958 F:      arch/arm64/boot/dts/mediatek/
1959 F:      drivers/soc/mediatek/
1960 N:      mtk
1961 N:      mt[678]
1962 K:      mediatek
1963
1964 ARM/Mediatek USB3 PHY DRIVER
1965 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 F:      drivers/phy/mediatek/
1970 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1971
1972 ARM/Microchip (AT91) SoC support
1973 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1974 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1975 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 W:      http://www.linux4sam.org
1978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1979 S:      Supported
1980 N:      at91
1981 N:      atmel
1982 F:      arch/arm/mach-at91/
1983 F:      include/soc/at91/
1984 F:      arch/arm/boot/dts/at91*.dts
1985 F:      arch/arm/boot/dts/at91*.dtsi
1986 F:      arch/arm/boot/dts/sama*.dts
1987 F:      arch/arm/boot/dts/sama*.dtsi
1988 F:      arch/arm/include/debug/at91.S
1989 F:      drivers/memory/atmel*
1990 F:      drivers/watchdog/sama5d4_wdt.c
1991 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1992 X:      drivers/net/wireless/atmel/
1993
1994 ARM/MIOA701 MACHINE SUPPORT
1995 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 F:      arch/arm/mach-pxa/mioa701.c
1998 S:      Maintained
1999
2000 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2001 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2002 S:      Maintained
2003
2004 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
2005 M:      Linus Walleij <linus.walleij@linaro.org>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2009 F:      Documentation/devicetree/bindings/i2c/i2c-stu300.txt
2010 F:      arch/arm/mach-nomadik/
2011 F:      arch/arm/mach-u300/
2012 F:      arch/arm/mach-ux500/
2013 F:      drivers/soc/ux500/
2014 F:      arch/arm/boot/dts/ste-*
2015 F:      drivers/clk/clk-nomadik.c
2016 F:      drivers/clk/clk-u300.c
2017 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2018 F:      drivers/clocksource/timer-u300.c
2019 F:      drivers/dma/coh901318*
2020 F:      drivers/dma/ste_dma40*
2021 F:      drivers/hwspinlock/u8500_hsem.c
2022 F:      drivers/i2c/busses/i2c-nomadik.c
2023 F:      drivers/i2c/busses/i2c-stu300.c
2024 F:      drivers/iio/adc/ab8500-gpadc.c
2025 F:      drivers/mfd/ab3100*
2026 F:      drivers/mfd/ab8500*
2027 F:      drivers/mfd/abx500*
2028 F:      drivers/mfd/dbx500*
2029 F:      drivers/mfd/db8500*
2030 F:      drivers/pinctrl/nomadik/
2031 F:      drivers/pinctrl/pinctrl-coh901*
2032 F:      drivers/pinctrl/pinctrl-u300.c
2033 F:      drivers/rtc/rtc-ab3100.c
2034 F:      drivers/rtc/rtc-ab8500.c
2035 F:      drivers/rtc/rtc-coh901331.c
2036 F:      drivers/rtc/rtc-pl031.c
2037 F:      drivers/watchdog/coh901327_wdt.c
2038 F:      Documentation/devicetree/bindings/arm/ste-*
2039 F:      Documentation/devicetree/bindings/arm/ux500/
2040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2041
2042 ARM/NUVOTON NPCM ARCHITECTURE
2043 M:      Avi Fishman <avifishman70@gmail.com>
2044 M:      Tomer Maimon <tmaimon77@gmail.com>
2045 M:      Tali Perry <tali.perry1@gmail.com>
2046 R:      Patrick Venture <venture@google.com>
2047 R:      Nancy Yuen <yuenn@google.com>
2048 R:      Benjamin Fair <benjaminfair@google.com>
2049 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2050 S:      Supported
2051 F:      arch/arm/mach-npcm/
2052 F:      arch/arm/boot/dts/nuvoton-npcm*
2053 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2054 F:      drivers/*/*npcm*
2055 F:      Documentation/devicetree/bindings/*/*npcm*
2056 F:      Documentation/devicetree/bindings/*/*/*npcm*
2057
2058 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2059 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2060 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2061 S:      Orphan
2062 F:      arch/arm/mach-s3c24xx/mach-gta02.c
2063 F:      arch/arm/mach-s3c24xx/gta02.h
2064
2065 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2066 M:      Alexander Clouter <alex@digriz.org.uk>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 W:      http://www.digriz.org.uk/ts78xx/kernel
2069 S:      Maintained
2070 F:      arch/arm/mach-orion5x/ts78xx-*
2071
2072 ARM/OXNAS platform support
2073 M:      Neil Armstrong <narmstrong@baylibre.com>
2074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2076 S:      Maintained
2077 F:      arch/arm/mach-oxnas/
2078 F:      arch/arm/boot/dts/ox8*.dts*
2079 N:      oxnas
2080
2081 ARM/PALM TREO SUPPORT
2082 M:      Tomas Cech <sleep_walker@suse.com>
2083 L:      linux-arm-kernel@lists.infradead.org
2084 W:      http://hackndev.com
2085 S:      Maintained
2086 F:      arch/arm/mach-pxa/palmtreo.*
2087
2088 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2089 M:      Marek Vasut <marek.vasut@gmail.com>
2090 L:      linux-arm-kernel@lists.infradead.org
2091 W:      http://hackndev.com
2092 S:      Maintained
2093 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2094 F:      arch/arm/mach-pxa/palmtx.c
2095 F:      arch/arm/mach-pxa/palmt5.*
2096 F:      arch/arm/mach-pxa/include/mach/palmld.h
2097 F:      arch/arm/mach-pxa/palmld.c
2098 F:      arch/arm/mach-pxa/palmte2.*
2099 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2100 F:      arch/arm/mach-pxa/palmtc.c
2101
2102 ARM/PALMZ72 SUPPORT
2103 M:      Sergey Lapin <slapin@ossfans.org>
2104 L:      linux-arm-kernel@lists.infradead.org
2105 W:      http://hackndev.com
2106 S:      Maintained
2107 F:      arch/arm/mach-pxa/palmz72.*
2108
2109 ARM/PLEB SUPPORT
2110 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2111 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2112 S:      Maintained
2113
2114 ARM/PT DIGITAL BOARD PORT
2115 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2117 W:      http://www.armlinux.org.uk/
2118 S:      Maintained
2119
2120 ARM/QUALCOMM SUPPORT
2121 M:      Andy Gross <agross@kernel.org>
2122 L:      linux-arm-msm@vger.kernel.org
2123 S:      Maintained
2124 F:      Documentation/devicetree/bindings/soc/qcom/
2125 F:      Documentation/devicetree/bindings/*/qcom*
2126 F:      arch/arm/boot/dts/qcom-*.dts
2127 F:      arch/arm/boot/dts/qcom-*.dtsi
2128 F:      arch/arm/mach-qcom/
2129 F:      arch/arm64/boot/dts/qcom/
2130 F:      drivers/*/qcom/
2131 F:      drivers/*/qcom*
2132 F:      drivers/*/*/qcom/
2133 F:      drivers/*/*/qcom*
2134 F:      drivers/*/pm8???-*
2135 F:      drivers/bluetooth/btqcomsmd.c
2136 F:      drivers/clocksource/timer-qcom.c
2137 F:      drivers/extcon/extcon-qcom*
2138 F:      drivers/iommu/msm*
2139 F:      drivers/i2c/busses/i2c-qup.c
2140 F:      drivers/i2c/busses/i2c-qcom-geni.c
2141 F:      drivers/mfd/ssbi.c
2142 F:      drivers/mmc/host/mmci_qcom*
2143 F:      drivers/mmc/host/sdhci-msm.c
2144 F:      drivers/pci/controller/dwc/pcie-qcom.c
2145 F:      drivers/phy/qualcomm/
2146 F:      drivers/power/*/msm*
2147 F:      drivers/reset/reset-qcom-*
2148 F:      drivers/scsi/ufs/ufs-qcom.*
2149 F:      drivers/spi/spi-qup.c
2150 F:      drivers/spi/spi-geni-qcom.c
2151 F:      drivers/spi/spi-qcom-qspi.c
2152 F:      drivers/tty/serial/msm_serial.c
2153 F:      drivers/usb/dwc3/dwc3-qcom.c
2154 F:      include/dt-bindings/*/qcom*
2155 F:      include/linux/*/qcom*
2156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2157
2158 ARM/RADISYS ENP2611 MACHINE SUPPORT
2159 M:      Lennert Buytenhek <kernel@wantstofly.org>
2160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2161 S:      Maintained
2162
2163 ARM/RDA MICRO ARCHITECTURE
2164 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      arch/arm/boot/dts/rda8810pl-*
2169 F:      drivers/clocksource/timer-rda.c
2170 F:      drivers/irqchip/irq-rda-intc.c
2171 F:      drivers/tty/serial/rda-uart.c
2172 F:      Documentation/devicetree/bindings/arm/rda.yaml
2173 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2174 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2175 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2176
2177 ARM/REALTEK ARCHITECTURE
2178 M:      Andreas Färber <afaerber@suse.de>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 S:      Maintained
2181 F:      arch/arm64/boot/dts/realtek/
2182 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2183
2184 ARM/RENESAS ARM64 ARCHITECTURE
2185 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2186 M:      Magnus Damm <magnus.damm@gmail.com>
2187 L:      linux-renesas-soc@vger.kernel.org
2188 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2190 S:      Supported
2191 F:      arch/arm64/boot/dts/renesas/
2192 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2193 F:      drivers/soc/renesas/
2194 F:      include/linux/soc/renesas/
2195
2196 ARM/RISCPC ARCHITECTURE
2197 M:      Russell King <linux@armlinux.org.uk>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 W:      http://www.armlinux.org.uk/
2200 S:      Maintained
2201 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2202 F:      arch/arm/include/asm/hardware/ioc.h
2203 F:      arch/arm/include/asm/hardware/iomd.h
2204 F:      arch/arm/include/asm/hardware/memc.h
2205 F:      arch/arm/mach-rpc/
2206 F:      drivers/net/ethernet/8390/etherh.c
2207 F:      drivers/net/ethernet/i825xx/ether1*
2208 F:      drivers/net/ethernet/seeq/ether3*
2209 F:      drivers/scsi/arm/
2210
2211 ARM/Rockchip SoC support
2212 M:      Heiko Stuebner <heiko@sntech.de>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 L:      linux-rockchip@lists.infradead.org
2215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2216 S:      Maintained
2217 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.txt
2218 F:      arch/arm/boot/dts/rk3*
2219 F:      arch/arm/boot/dts/rv1108*
2220 F:      arch/arm/mach-rockchip/
2221 F:      drivers/clk/rockchip/
2222 F:      drivers/i2c/busses/i2c-rk3x.c
2223 F:      drivers/*/*rockchip*
2224 F:      drivers/*/*/*rockchip*
2225 F:      sound/soc/rockchip/
2226 N:      rockchip
2227
2228 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2229 M:      Kukjin Kim <kgene@kernel.org>
2230 M:      Krzysztof Kozlowski <krzk@kernel.org>
2231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2232 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2233 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2234 S:      Maintained
2235 F:      arch/arm/boot/dts/s3c*
2236 F:      arch/arm/boot/dts/s5p*
2237 F:      arch/arm/boot/dts/exynos*
2238 F:      arch/arm64/boot/dts/exynos/
2239 F:      arch/arm/plat-samsung/
2240 F:      arch/arm/mach-s3c24*/
2241 F:      arch/arm/mach-s3c64xx/
2242 F:      arch/arm/mach-s5p*/
2243 F:      arch/arm/mach-exynos*/
2244 F:      drivers/*/*s3c24*
2245 F:      drivers/*/*/*s3c24*
2246 F:      drivers/*/*s3c64xx*
2247 F:      drivers/*/*s5pv210*
2248 F:      drivers/memory/samsung/
2249 F:      drivers/soc/samsung/
2250 F:      include/linux/soc/samsung/
2251 F:      Documentation/arm/samsung/
2252 F:      Documentation/devicetree/bindings/arm/samsung/
2253 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2254 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2255 N:      exynos
2256
2257 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2258 M:      Kyungmin Park <kyungmin.park@samsung.com>
2259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260 S:      Maintained
2261 F:      arch/arm/mach-s5pv210/
2262
2263 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2264 M:      Kyungmin Park <kyungmin.park@samsung.com>
2265 M:      Kamil Debski <kamil@wypas.org>
2266 M:      Andrzej Hajda <a.hajda@samsung.com>
2267 L:      linux-arm-kernel@lists.infradead.org
2268 L:      linux-media@vger.kernel.org
2269 S:      Maintained
2270 F:      drivers/media/platform/s5p-g2d/
2271
2272 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2273 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2274 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2275 L:      linux-media@vger.kernel.org
2276 S:      Maintained
2277 F:      drivers/media/platform/s5p-cec/
2278 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2279
2280 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2281 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2282 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2283 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2284 L:      linux-arm-kernel@lists.infradead.org
2285 L:      linux-media@vger.kernel.org
2286 S:      Maintained
2287 F:      drivers/media/platform/s5p-jpeg/
2288
2289 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2290 M:      Kyungmin Park <kyungmin.park@samsung.com>
2291 M:      Kamil Debski <kamil@wypas.org>
2292 M:      Jeongtae Park <jtp.park@samsung.com>
2293 M:      Andrzej Hajda <a.hajda@samsung.com>
2294 L:      linux-arm-kernel@lists.infradead.org
2295 L:      linux-media@vger.kernel.org
2296 S:      Maintained
2297 F:      drivers/media/platform/s5p-mfc/
2298
2299 ARM/SHMOBILE ARM ARCHITECTURE
2300 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2301 M:      Magnus Damm <magnus.damm@gmail.com>
2302 L:      linux-renesas-soc@vger.kernel.org
2303 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2305 S:      Supported
2306 F:      arch/arm/boot/dts/emev2*
2307 F:      arch/arm/boot/dts/gr-peach*
2308 F:      arch/arm/boot/dts/iwg20d-q7*
2309 F:      arch/arm/boot/dts/r7s*
2310 F:      arch/arm/boot/dts/r8a*
2311 F:      arch/arm/boot/dts/r9a*
2312 F:      arch/arm/boot/dts/sh*
2313 F:      arch/arm/configs/shmobile_defconfig
2314 F:      arch/arm/include/debug/renesas-scif.S
2315 F:      arch/arm/mach-shmobile/
2316 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2317 F:      drivers/soc/renesas/
2318 F:      include/linux/soc/renesas/
2319
2320 ARM/SOCFPGA ARCHITECTURE
2321 M:      Dinh Nguyen <dinguyen@kernel.org>
2322 S:      Maintained
2323 F:      arch/arm/mach-socfpga/
2324 F:      arch/arm/boot/dts/socfpga*
2325 F:      arch/arm/configs/socfpga_defconfig
2326 F:      arch/arm64/boot/dts/altera/
2327 F:      arch/arm64/boot/dts/intel/
2328 W:      http://www.rocketboards.org
2329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2330
2331 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2332 M:      Dinh Nguyen <dinguyen@kernel.org>
2333 S:      Maintained
2334 F:      drivers/clk/socfpga/
2335
2336 ARM/SOCFPGA EDAC SUPPORT
2337 M:      Thor Thayer <thor.thayer@linux.intel.com>
2338 S:      Maintained
2339 F:      drivers/edac/altera_edac.
2340
2341 ARM/SPREADTRUM SoC SUPPORT
2342 M:      Orson Zhai <orsonzhai@gmail.com>
2343 M:      Baolin Wang <baolin.wang7@gmail.com>
2344 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2345 S:      Maintained
2346 F:      arch/arm64/boot/dts/sprd
2347 N:      sprd
2348 N:      sc27xx
2349 N:      sc2731
2350
2351 ARM/STI ARCHITECTURE
2352 M:      Patrice Chotard <patrice.chotard@st.com>
2353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2354 W:      http://www.stlinux.com
2355 S:      Maintained
2356 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2357 F:      arch/arm/mach-sti/
2358 F:      arch/arm/boot/dts/sti*
2359 F:      drivers/char/hw_random/st-rng.c
2360 F:      drivers/clocksource/arm_global_timer.c
2361 F:      drivers/clocksource/clksrc_st_lpc.c
2362 F:      drivers/cpufreq/sti-cpufreq.c
2363 F:      drivers/dma/st_fdma*
2364 F:      drivers/i2c/busses/i2c-st.c
2365 F:      drivers/media/rc/st_rc.c
2366 F:      drivers/media/platform/sti/c8sectpfe/
2367 F:      drivers/mmc/host/sdhci-st.c
2368 F:      drivers/phy/st/phy-miphy28lp.c
2369 F:      drivers/phy/st/phy-stih407-usb.c
2370 F:      drivers/pinctrl/pinctrl-st.c
2371 F:      drivers/remoteproc/st_remoteproc.c
2372 F:      drivers/remoteproc/st_slim_rproc.c
2373 F:      drivers/reset/sti/
2374 F:      drivers/rtc/rtc-st-lpc.c
2375 F:      drivers/tty/serial/st-asc.c
2376 F:      drivers/usb/dwc3/dwc3-st.c
2377 F:      drivers/usb/host/ehci-st.c
2378 F:      drivers/usb/host/ohci-st.c
2379 F:      drivers/watchdog/st_lpc_wdt.c
2380 F:      drivers/ata/ahci_st.c
2381 F:      include/linux/remoteproc/st_slim_rproc.h
2382
2383 ARM/STM32 ARCHITECTURE
2384 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2385 M:      Alexandre Torgue <alexandre.torgue@st.com>
2386 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2388 S:      Maintained
2389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2390 N:      stm32
2391 N:      stm
2392 F:      arch/arm/boot/dts/stm32*
2393 F:      arch/arm/mach-stm32/
2394 F:      drivers/clocksource/armv7m_systick.c
2395
2396 ARM/Synaptics SoC support
2397 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2398 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2400 S:      Maintained
2401 F:      arch/arm/mach-berlin/
2402 F:      arch/arm/boot/dts/berlin*
2403 F:      arch/arm64/boot/dts/synaptics/
2404
2405 ARM/TANGO ARCHITECTURE
2406 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2407 M:      Mans Rullgard <mans@mansr.com>
2408 L:      linux-arm-kernel@lists.infradead.org
2409 S:      Odd Fixes
2410 N:      tango
2411
2412 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2413 M:      Lennert Buytenhek <kernel@wantstofly.org>
2414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 S:      Maintained
2416
2417 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2418 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2419 L:      linux-tegra@vger.kernel.org
2420 L:      linux-media@vger.kernel.org
2421 S:      Maintained
2422 F:      drivers/media/platform/tegra-cec/
2423 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2424
2425 ARM/TETON BGA MACHINE SUPPORT
2426 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2428 S:      Maintained
2429
2430 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2431 M:      Santosh Shilimkar <ssantosh@kernel.org>
2432 L:      linux-kernel@vger.kernel.org
2433 S:      Maintained
2434 F:      drivers/memory/*emif*
2435
2436 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2437 M:      Tero Kristo <t-kristo@ti.com>
2438 M:      Nishanth Menon <nm@ti.com>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 S:      Supported
2441 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2442 F:      arch/arm64/boot/dts/ti/Makefile
2443 F:      arch/arm64/boot/dts/ti/k3-*
2444 F:      include/dt-bindings/pinctrl/k3.h
2445
2446 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2447 M:      Santosh Shilimkar <ssantosh@kernel.org>
2448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2449 S:      Maintained
2450 F:      arch/arm/mach-keystone/
2451 F:      arch/arm/boot/dts/keystone-*
2452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2453
2454 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2455 M:      Santosh Shilimkar <ssantosh@kernel.org>
2456 L:      linux-kernel@vger.kernel.org
2457 S:      Maintained
2458 F:      drivers/clk/keystone/
2459
2460 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2461 M:      Santosh Shilimkar <ssantosh@kernel.org>
2462 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2463 L:      linux-kernel@vger.kernel.org
2464 S:      Maintained
2465 F:      drivers/clocksource/timer-keystone.c
2466
2467 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2468 M:      Santosh Shilimkar <ssantosh@kernel.org>
2469 L:      linux-kernel@vger.kernel.org
2470 S:      Maintained
2471 F:      drivers/power/reset/keystone-reset.c
2472
2473 ARM/THECUS N2100 MACHINE SUPPORT
2474 M:      Lennert Buytenhek <kernel@wantstofly.org>
2475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2476 S:      Maintained
2477
2478 ARM/TOSA MACHINE SUPPORT
2479 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2480 M:      Dirk Opfer <dirk@opfer-online.de>
2481 S:      Maintained
2482
2483 ARM/UNIPHIER ARCHITECTURE
2484 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2487 S:      Maintained
2488 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2489 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2490 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2491 F:      arch/arm/boot/dts/uniphier*
2492 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2493 F:      arch/arm/mach-uniphier/
2494 F:      arch/arm/mm/cache-uniphier.c
2495 F:      arch/arm64/boot/dts/socionext/uniphier*
2496 F:      drivers/bus/uniphier-system-bus.c
2497 F:      drivers/clk/uniphier/
2498 F:      drivers/dma/uniphier-mdmac.c
2499 F:      drivers/gpio/gpio-uniphier.c
2500 F:      drivers/i2c/busses/i2c-uniphier*
2501 F:      drivers/irqchip/irq-uniphier-aidet.c
2502 F:      drivers/mmc/host/uniphier-sd.c
2503 F:      drivers/pinctrl/uniphier/
2504 F:      drivers/reset/reset-uniphier.c
2505 F:      drivers/tty/serial/8250/8250_uniphier.c
2506 N:      uniphier
2507
2508 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2509 M:      Ulf Hansson <ulf.hansson@linaro.org>
2510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2511 T:      git git://git.linaro.org/people/ulfh/clk.git
2512 S:      Maintained
2513 F:      drivers/clk/ux500/
2514
2515 ARM/VERSATILE EXPRESS PLATFORM
2516 M:      Liviu Dudau <liviu.dudau@arm.com>
2517 M:      Sudeep Holla <sudeep.holla@arm.com>
2518 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 S:      Maintained
2521 F:      arch/arm/boot/dts/vexpress*
2522 F:      arch/arm64/boot/dts/arm/
2523 F:      arch/arm/mach-vexpress/
2524 F:      */*/vexpress*
2525 F:      */*/*/vexpress*
2526 F:      drivers/clk/versatile/clk-vexpress-osc.c
2527 F:      drivers/clocksource/timer-versatile.c
2528 N:      mps2
2529
2530 ARM/VFP SUPPORT
2531 M:      Russell King <linux@armlinux.org.uk>
2532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2533 W:      http://www.armlinux.org.uk/
2534 S:      Maintained
2535 F:      arch/arm/vfp/
2536
2537 ARM/VOIPAC PXA270 SUPPORT
2538 M:      Marek Vasut <marek.vasut@gmail.com>
2539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2540 S:      Maintained
2541 F:      arch/arm/mach-pxa/vpac270.c
2542 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2543
2544 ARM/VT8500 ARM ARCHITECTURE
2545 M:      Tony Prisk <linux@prisktech.co.nz>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2549 F:      arch/arm/mach-vt8500/
2550 F:      drivers/clocksource/timer-vt8500.c
2551 F:      drivers/i2c/busses/i2c-wmt.c
2552 F:      drivers/mmc/host/wmt-sdmmc.c
2553 F:      drivers/pwm/pwm-vt8500.c
2554 F:      drivers/rtc/rtc-vt8500.c
2555 F:      drivers/tty/serial/vt8500_serial.c
2556 F:      drivers/usb/host/ehci-platform.c
2557 F:      drivers/usb/host/uhci-platform.c
2558 F:      drivers/video/fbdev/vt8500lcdfb.*
2559 F:      drivers/video/fbdev/wm8505fb*
2560 F:      drivers/video/fbdev/wmt_ge_rops.*
2561
2562 ARM/ZIPIT Z2 SUPPORT
2563 M:      Marek Vasut <marek.vasut@gmail.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 S:      Maintained
2566 F:      arch/arm/mach-pxa/z2.c
2567 F:      arch/arm/mach-pxa/include/mach/z2.h
2568
2569 ARM/ZTE ARCHITECTURE
2570 M:      Jun Nie <jun.nie@linaro.org>
2571 M:      Shawn Guo <shawnguo@kernel.org>
2572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2573 S:      Maintained
2574 F:      arch/arm/boot/dts/zx2967*
2575 F:      arch/arm/mach-zx/
2576 F:      arch/arm64/boot/dts/zte/
2577 F:      drivers/clk/zte/
2578 F:      drivers/dma/zx_dma.c
2579 F:      drivers/gpio/gpio-zx.c
2580 F:      drivers/i2c/busses/i2c-zx2967.c
2581 F:      drivers/mmc/host/dw_mmc-zx.*
2582 F:      drivers/pinctrl/zte/
2583 F:      drivers/soc/zte/
2584 F:      drivers/thermal/zx2967_thermal.c
2585 F:      drivers/watchdog/zx2967_wdt.c
2586 F:      Documentation/devicetree/bindings/arm/zte.yaml
2587 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2588 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2589 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2590 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2591 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2592 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2593 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2594 F:      Documentation/devicetree/bindings/soc/zte/
2595 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2596 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2597 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2598 F:      include/dt-bindings/clock/zx2967*.h
2599 F:      include/dt-bindings/soc/zte,*.h
2600 F:      sound/soc/codecs/zx_aud96p22.c
2601 F:      sound/soc/zte/
2602
2603 ARM/ZYNQ ARCHITECTURE
2604 M:      Michal Simek <michal.simek@xilinx.com>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 W:      http://wiki.xilinx.com
2607 T:      git https://github.com/Xilinx/linux-xlnx.git
2608 S:      Supported
2609 F:      arch/arm/mach-zynq/
2610 F:      drivers/cpuidle/cpuidle-zynq.c
2611 F:      drivers/block/xsysace.c
2612 N:      zynq
2613 N:      xilinx
2614 F:      Documentation/devicetree/bindings/i2c/i2c-cadence.txt
2615 F:      Documentation/devicetree/bindings/i2c/i2c-xiic.txt
2616 F:      drivers/clocksource/timer-cadence-ttc.c
2617 F:      drivers/i2c/busses/i2c-cadence.c
2618 F:      drivers/mmc/host/sdhci-of-arasan.c
2619 F:      drivers/edac/synopsys_edac.c
2620 F:      drivers/i2c/busses/i2c-xiic.c
2621
2622 ARM64 PORT (AARCH64 ARCHITECTURE)
2623 M:      Catalin Marinas <catalin.marinas@arm.com>
2624 M:      Will Deacon <will@kernel.org>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2627 S:      Maintained
2628 F:      arch/arm64/
2629 X:      arch/arm64/boot/dts/
2630 F:      Documentation/arm64/
2631
2632 AS3645A LED FLASH CONTROLLER DRIVER
2633 M:      Sakari Ailus <sakari.ailus@iki.fi>
2634 L:      linux-leds@vger.kernel.org
2635 S:      Maintained
2636 F:      drivers/leds/leds-as3645a.c
2637
2638 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2639 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2640 L:      linux-media@vger.kernel.org
2641 T:      git git://linuxtv.org/media_tree.git
2642 S:      Maintained
2643 F:      drivers/media/i2c/ak7375.c
2644 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2645
2646 ASAHI KASEI AK8974 DRIVER
2647 M:      Linus Walleij <linus.walleij@linaro.org>
2648 L:      linux-iio@vger.kernel.org
2649 W:      http://www.akm.com/
2650 S:      Supported
2651 F:      drivers/iio/magnetometer/ak8974.c
2652
2653 ASC7621 HARDWARE MONITOR DRIVER
2654 M:      George Joseph <george.joseph@fairview5.com>
2655 L:      linux-hwmon@vger.kernel.org
2656 S:      Maintained
2657 F:      Documentation/hwmon/asc7621.rst
2658 F:      drivers/hwmon/asc7621.c
2659
2660 ASPEED PINCTRL DRIVERS
2661 M:      Andrew Jeffery <andrew@aj.id.au>
2662 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2663 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2664 L:      linux-gpio@vger.kernel.org
2665 S:      Maintained
2666 F:      drivers/pinctrl/aspeed/
2667 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2668
2669 ASPEED VIDEO ENGINE DRIVER
2670 M:      Eddie James <eajames@linux.ibm.com>
2671 L:      linux-media@vger.kernel.org
2672 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2673 S:      Maintained
2674 F:      drivers/media/platform/aspeed-video.c
2675 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2676
2677 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2678 M:      Corentin Chary <corentin.chary@gmail.com>
2679 L:      acpi4asus-user@lists.sourceforge.net
2680 L:      platform-driver-x86@vger.kernel.org
2681 W:      http://acpi4asus.sf.net
2682 S:      Maintained
2683 F:      drivers/platform/x86/asus*.c
2684 F:      drivers/platform/x86/eeepc*.c
2685
2686 ASUS WIRELESS RADIO CONTROL DRIVER
2687 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2688 L:      platform-driver-x86@vger.kernel.org
2689 S:      Maintained
2690 F:      drivers/platform/x86/asus-wireless.c
2691
2692 ASYMMETRIC KEYS
2693 M:      David Howells <dhowells@redhat.com>
2694 L:      keyrings@vger.kernel.org
2695 S:      Maintained
2696 F:      Documentation/crypto/asymmetric-keys.txt
2697 F:      include/linux/verification.h
2698 F:      include/crypto/public_key.h
2699 F:      include/crypto/pkcs7.h
2700 F:      crypto/asymmetric_keys/
2701
2702 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2703 R:      Dan Williams <dan.j.williams@intel.com>
2704 W:      http://sourceforge.net/projects/xscaleiop
2705 S:      Odd fixes
2706 F:      Documentation/crypto/async-tx-api.txt
2707 F:      crypto/async_tx/
2708 F:      drivers/dma/
2709 F:      include/linux/dmaengine.h
2710 F:      include/linux/async_tx.h
2711
2712 AT24 EEPROM DRIVER
2713 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2714 L:      linux-i2c@vger.kernel.org
2715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2716 S:      Maintained
2717 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2718 F:      drivers/misc/eeprom/at24.c
2719
2720 ATA OVER ETHERNET (AOE) DRIVER
2721 M:      "Justin Sanders" <justin@coraid.com>
2722 W:      http://www.openaoe.org/
2723 S:      Supported
2724 F:      Documentation/admin-guide/aoe/
2725 F:      drivers/block/aoe/
2726
2727 ATHEROS 71XX/9XXX GPIO DRIVER
2728 M:      Alban Bedel <albeu@free.fr>
2729 W:      https://github.com/AlbanBedel/linux
2730 T:      git git://github.com/AlbanBedel/linux
2731 S:      Maintained
2732 F:      drivers/gpio/gpio-ath79.c
2733 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2734
2735 ATHEROS 71XX/9XXX USB PHY DRIVER
2736 M:      Alban Bedel <albeu@free.fr>
2737 W:      https://github.com/AlbanBedel/linux
2738 T:      git git://github.com/AlbanBedel/linux
2739 S:      Maintained
2740 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2741 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2742
2743 ATHEROS ATH GENERIC UTILITIES
2744 M:      Kalle Valo <kvalo@codeaurora.org>
2745 L:      linux-wireless@vger.kernel.org
2746 S:      Supported
2747 F:      drivers/net/wireless/ath/*
2748
2749 ATHEROS ATH5K WIRELESS DRIVER
2750 M:      Jiri Slaby <jirislaby@gmail.com>
2751 M:      Nick Kossifidis <mickflemm@gmail.com>
2752 M:      Luis Chamberlain <mcgrof@kernel.org>
2753 L:      linux-wireless@vger.kernel.org
2754 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2755 S:      Maintained
2756 F:      drivers/net/wireless/ath/ath5k/
2757
2758 ATHEROS ATH6KL WIRELESS DRIVER
2759 M:      Kalle Valo <kvalo@codeaurora.org>
2760 L:      linux-wireless@vger.kernel.org
2761 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2763 S:      Supported
2764 F:      drivers/net/wireless/ath/ath6kl/
2765
2766 ATI_REMOTE2 DRIVER
2767 M:      Ville Syrjala <syrjala@sci.fi>
2768 S:      Maintained
2769 F:      drivers/input/misc/ati_remote2.c
2770
2771 ATK0110 HWMON DRIVER
2772 M:      Luca Tettamanti <kronos.it@gmail.com>
2773 L:      linux-hwmon@vger.kernel.org
2774 S:      Maintained
2775 F:      drivers/hwmon/asus_atk0110.c
2776
2777 ATLX ETHERNET DRIVERS
2778 M:      Jay Cliburn <jcliburn@gmail.com>
2779 M:      Chris Snook <chris.snook@gmail.com>
2780 L:      netdev@vger.kernel.org
2781 W:      http://sourceforge.net/projects/atl1
2782 W:      http://atl1.sourceforge.net
2783 S:      Maintained
2784 F:      drivers/net/ethernet/atheros/
2785
2786 ATM
2787 M:      Chas Williams <3chas3@gmail.com>
2788 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2789 L:      netdev@vger.kernel.org
2790 W:      http://linux-atm.sourceforge.net
2791 S:      Maintained
2792 F:      drivers/atm/
2793 F:      include/linux/atm*
2794 F:      include/uapi/linux/atm*
2795
2796 ATMEL MACB ETHERNET DRIVER
2797 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2798 S:      Supported
2799 F:      drivers/net/ethernet/cadence/
2800
2801 ATMEL MAXTOUCH DRIVER
2802 M:      Nick Dyer <nick@shmanahar.org>
2803 T:      git git://github.com/ndyer/linux.git
2804 S:      Maintained
2805 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2806 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2807
2808 ATMEL WIRELESS DRIVER
2809 M:      Simon Kelley <simon@thekelleys.org.uk>
2810 L:      linux-wireless@vger.kernel.org
2811 W:      http://www.thekelleys.org.uk/atmel
2812 W:      http://atmelwlandriver.sourceforge.net/
2813 S:      Maintained
2814 F:      drivers/net/wireless/atmel/atmel*
2815
2816 ATOMIC INFRASTRUCTURE
2817 M:      Will Deacon <will@kernel.org>
2818 M:      Peter Zijlstra <peterz@infradead.org>
2819 R:      Boqun Feng <boqun.feng@gmail.com>
2820 L:      linux-kernel@vger.kernel.org
2821 S:      Maintained
2822 F:      arch/*/include/asm/atomic*.h
2823 F:      include/*/atomic*.h
2824 F:      scripts/atomic/
2825
2826 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2827 M:      Bradley Grove <linuxdrivers@attotech.com>
2828 L:      linux-scsi@vger.kernel.org
2829 W:      http://www.attotech.com
2830 S:      Supported
2831 F:      drivers/scsi/esas2r
2832
2833 ATUSB IEEE 802.15.4 RADIO DRIVER
2834 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2835 L:      linux-wpan@vger.kernel.org
2836 S:      Maintained
2837 F:      drivers/net/ieee802154/atusb.c
2838 F:      drivers/net/ieee802154/atusb.h
2839 F:      drivers/net/ieee802154/at86rf230.h
2840
2841 AUDIT SUBSYSTEM
2842 M:      Paul Moore <paul@paul-moore.com>
2843 M:      Eric Paris <eparis@redhat.com>
2844 L:      linux-audit@redhat.com (moderated for non-subscribers)
2845 W:      https://github.com/linux-audit
2846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2847 S:      Supported
2848 F:      include/linux/audit.h
2849 F:      include/uapi/linux/audit.h
2850 F:      kernel/audit*
2851
2852 AUXILIARY DISPLAY DRIVERS
2853 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2854 S:      Maintained
2855 F:      drivers/auxdisplay/
2856 F:      include/linux/cfag12864b.h
2857
2858 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2859 M:      Andreas Klinger <ak@it-klinger.de>
2860 L:      linux-iio@vger.kernel.org
2861 S:      Maintained
2862 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
2863 F:      drivers/iio/adc/hx711.c
2864
2865 AX.25 NETWORK LAYER
2866 M:      Ralf Baechle <ralf@linux-mips.org>
2867 L:      linux-hams@vger.kernel.org
2868 W:      http://www.linux-ax25.org/
2869 S:      Maintained
2870 F:      include/uapi/linux/ax25.h
2871 F:      include/net/ax25.h
2872 F:      net/ax25/
2873
2874 AXENTIA ARM DEVICES
2875 M:      Peter Rosin <peda@axentia.se>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Maintained
2878 F:      Documentation/devicetree/bindings/arm/axentia.txt
2879 F:      arch/arm/boot/dts/at91-linea.dtsi
2880 F:      arch/arm/boot/dts/at91-natte.dtsi
2881 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2882 F:      arch/arm/boot/dts/at91-tse850-3.dts
2883
2884 AXENTIA ASOC DRIVERS
2885 M:      Peter Rosin <peda@axentia.se>
2886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/sound/axentia,*
2889 F:      sound/soc/atmel/tse850-pcm5142.c
2890
2891 AXXIA I2C CONTROLLER
2892 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2893 L:      linux-i2c@vger.kernel.org
2894 S:      Maintained
2895 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2896 F:      drivers/i2c/busses/i2c-axxia.c
2897
2898 AZ6007 DVB DRIVER
2899 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2900 L:      linux-media@vger.kernel.org
2901 W:      https://linuxtv.org
2902 T:      git git://linuxtv.org/media_tree.git
2903 S:      Maintained
2904 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2905
2906 AZTECH FM RADIO RECEIVER DRIVER
2907 M:      Hans Verkuil <hverkuil@xs4all.nl>
2908 L:      linux-media@vger.kernel.org
2909 T:      git git://linuxtv.org/media_tree.git
2910 W:      https://linuxtv.org
2911 S:      Maintained
2912 F:      drivers/media/radio/radio-aztech*
2913
2914 B43 WIRELESS DRIVER
2915 L:      linux-wireless@vger.kernel.org
2916 L:      b43-dev@lists.infradead.org
2917 W:      http://wireless.kernel.org/en/users/Drivers/b43
2918 S:      Odd Fixes
2919 F:      drivers/net/wireless/broadcom/b43/
2920
2921 B43LEGACY WIRELESS DRIVER
2922 M:      Larry Finger <Larry.Finger@lwfinger.net>
2923 L:      linux-wireless@vger.kernel.org
2924 L:      b43-dev@lists.infradead.org
2925 W:      http://wireless.kernel.org/en/users/Drivers/b43
2926 S:      Maintained
2927 F:      drivers/net/wireless/broadcom/b43legacy/
2928
2929 BACKLIGHT CLASS/SUBSYSTEM
2930 M:      Lee Jones <lee.jones@linaro.org>
2931 M:      Daniel Thompson <daniel.thompson@linaro.org>
2932 M:      Jingoo Han <jingoohan1@gmail.com>
2933 L:      dri-devel@lists.freedesktop.org
2934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2935 S:      Maintained
2936 F:      drivers/video/backlight/
2937 F:      include/linux/backlight.h
2938 F:      include/linux/pwm_backlight.h
2939 F:      Documentation/devicetree/bindings/leds/backlight
2940 F:      Documentation/ABI/stable/sysfs-class-backlight
2941 F:      Documentation/ABI/testing/sysfs-class-backlight
2942
2943 BATMAN ADVANCED
2944 M:      Marek Lindner <mareklindner@neomailbox.ch>
2945 M:      Simon Wunderlich <sw@simonwunderlich.de>
2946 M:      Antonio Quartulli <a@unstable.cc>
2947 M:      Sven Eckelmann <sven@narfation.org>
2948 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2949 W:      https://www.open-mesh.org/
2950 B:      https://www.open-mesh.org/projects/batman-adv/issues
2951 C:      irc://chat.freenode.net/batman
2952 Q:      https://patchwork.open-mesh.org/project/batman/list/
2953 T:      git https://git.open-mesh.org/linux-merge.git
2954 S:      Maintained
2955 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2956 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2957 F:      Documentation/networking/batman-adv.rst
2958 F:      include/uapi/linux/batadv_packet.h
2959 F:      include/uapi/linux/batman_adv.h
2960 F:      net/batman-adv/
2961
2962 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2963 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2964 L:      linux-hams@vger.kernel.org
2965 W:      http://www.baycom.org/~tom/ham/ham.html
2966 S:      Maintained
2967 F:      drivers/net/hamradio/baycom*
2968
2969 BCACHE (BLOCK LAYER CACHE)
2970 M:      Coly Li <colyli@suse.de>
2971 M:      Kent Overstreet <kent.overstreet@gmail.com>
2972 L:      linux-bcache@vger.kernel.org
2973 W:      http://bcache.evilpiepirate.org
2974 C:      irc://irc.oftc.net/bcache
2975 S:      Maintained
2976 F:      drivers/md/bcache/
2977
2978 BDISP ST MEDIA DRIVER
2979 M:      Fabien Dessenne <fabien.dessenne@st.com>
2980 L:      linux-media@vger.kernel.org
2981 T:      git git://linuxtv.org/media_tree.git
2982 W:      https://linuxtv.org
2983 S:      Supported
2984 F:      drivers/media/platform/sti/bdisp
2985
2986 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2987 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2988 L:      netdev@vger.kernel.org
2989 S:      Maintained
2990 F:      drivers/net/ethernet/ec_bhf.c
2991
2992 BEFS FILE SYSTEM
2993 M:      Luis de Bethencourt <luisbg@kernel.org>
2994 M:      Salah Triki <salah.triki@gmail.com>
2995 S:      Maintained
2996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2997 F:      Documentation/filesystems/befs.txt
2998 F:      fs/befs/
2999
3000 BFQ I/O SCHEDULER
3001 M:      Paolo Valente <paolo.valente@linaro.org>
3002 M:      Jens Axboe <axboe@kernel.dk>
3003 L:      linux-block@vger.kernel.org
3004 S:      Maintained
3005 F:      block/bfq-*
3006 F:      Documentation/block/bfq-iosched.rst
3007
3008 BFS FILE SYSTEM
3009 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3010 S:      Maintained
3011 F:      Documentation/filesystems/bfs.txt
3012 F:      fs/bfs/
3013 F:      include/uapi/linux/bfs_fs.h
3014
3015 BLINKM RGB LED DRIVER
3016 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3017 S:      Maintained
3018 F:      drivers/leds/leds-blinkm.c
3019
3020 BLOCK LAYER
3021 M:      Jens Axboe <axboe@kernel.dk>
3022 L:      linux-block@vger.kernel.org
3023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3024 S:      Maintained
3025 F:      block/
3026 F:      drivers/block/
3027 F:      kernel/trace/blktrace.c
3028 F:      lib/sbitmap.c
3029
3030 BLOCK2MTD DRIVER
3031 M:      Joern Engel <joern@lazybastard.org>
3032 L:      linux-mtd@lists.infradead.org
3033 S:      Maintained
3034 F:      drivers/mtd/devices/block2mtd.c
3035
3036 BLUETOOTH DRIVERS
3037 M:      Marcel Holtmann <marcel@holtmann.org>
3038 M:      Johan Hedberg <johan.hedberg@gmail.com>
3039 L:      linux-bluetooth@vger.kernel.org
3040 W:      http://www.bluez.org/
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3043 S:      Maintained
3044 F:      drivers/bluetooth/
3045
3046 BLUETOOTH SUBSYSTEM
3047 M:      Marcel Holtmann <marcel@holtmann.org>
3048 M:      Johan Hedberg <johan.hedberg@gmail.com>
3049 L:      linux-bluetooth@vger.kernel.org
3050 W:      http://www.bluez.org/
3051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3053 S:      Maintained
3054 F:      net/bluetooth/
3055 F:      include/net/bluetooth/
3056
3057 BONDING DRIVER
3058 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3059 M:      Veaceslav Falico <vfalico@gmail.com>
3060 M:      Andy Gospodarek <andy@greyhouse.net>
3061 L:      netdev@vger.kernel.org
3062 W:      http://sourceforge.net/projects/bonding/
3063 S:      Supported
3064 F:      drivers/net/bonding/
3065 F:      include/uapi/linux/if_bonding.h
3066
3067 BPF (Safe dynamic programs and tools)
3068 M:      Alexei Starovoitov <ast@kernel.org>
3069 M:      Daniel Borkmann <daniel@iogearbox.net>
3070 R:      Martin KaFai Lau <kafai@fb.com>
3071 R:      Song Liu <songliubraving@fb.com>
3072 R:      Yonghong Song <yhs@fb.com>
3073 R:      Andrii Nakryiko <andriin@fb.com>
3074 L:      netdev@vger.kernel.org
3075 L:      bpf@vger.kernel.org
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3078 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
3079 S:      Supported
3080 F:      arch/*/net/*
3081 F:      Documentation/networking/filter.txt
3082 F:      Documentation/bpf/
3083 F:      include/linux/bpf*
3084 F:      include/linux/filter.h
3085 F:      include/trace/events/xdp.h
3086 F:      include/uapi/linux/bpf*
3087 F:      include/uapi/linux/filter.h
3088 F:      kernel/bpf/
3089 F:      kernel/trace/bpf_trace.c
3090 F:      lib/test_bpf.c
3091 F:      net/bpf/
3092 F:      net/core/filter.c
3093 F:      net/sched/act_bpf.c
3094 F:      net/sched/cls_bpf.c
3095 F:      samples/bpf/
3096 F:      tools/bpf/
3097 F:      tools/lib/bpf/
3098 F:      tools/testing/selftests/bpf/
3099 K:      bpf
3100 N:      bpf
3101
3102 BPF JIT for ARM
3103 M:      Shubham Bansal <illusionist.neo@gmail.com>
3104 L:      netdev@vger.kernel.org
3105 L:      bpf@vger.kernel.org
3106 S:      Maintained
3107 F:      arch/arm/net/
3108
3109 BPF JIT for ARM64
3110 M:      Daniel Borkmann <daniel@iogearbox.net>
3111 M:      Alexei Starovoitov <ast@kernel.org>
3112 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3113 L:      netdev@vger.kernel.org
3114 L:      bpf@vger.kernel.org
3115 S:      Supported
3116 F:      arch/arm64/net/
3117
3118 BPF JIT for MIPS (32-BIT AND 64-BIT)
3119 M:      Paul Burton <paulburton@kernel.org>
3120 L:      netdev@vger.kernel.org
3121 L:      bpf@vger.kernel.org
3122 S:      Maintained
3123 F:      arch/mips/net/
3124
3125 BPF JIT for NFP NICs
3126 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3127 L:      netdev@vger.kernel.org
3128 L:      bpf@vger.kernel.org
3129 S:      Supported
3130 F:      drivers/net/ethernet/netronome/nfp/bpf/
3131
3132 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3133 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3134 M:      Sandipan Das <sandipan@linux.ibm.com>
3135 L:      netdev@vger.kernel.org
3136 L:      bpf@vger.kernel.org
3137 S:      Maintained
3138 F:      arch/powerpc/net/
3139
3140 BPF JIT for RISC-V (RV64G)
3141 M:      Björn Töpel <bjorn.topel@gmail.com>
3142 L:      netdev@vger.kernel.org
3143 S:      Maintained
3144 F:      arch/riscv/net/
3145
3146 BPF JIT for S390
3147 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3148 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3149 M:      Vasily Gorbik <gor@linux.ibm.com>
3150 L:      netdev@vger.kernel.org
3151 L:      bpf@vger.kernel.org
3152 S:      Maintained
3153 F:      arch/s390/net/
3154 X:      arch/s390/net/pnet.c
3155
3156 BPF JIT for SPARC (32-BIT AND 64-BIT)
3157 M:      David S. Miller <davem@davemloft.net>
3158 L:      netdev@vger.kernel.org
3159 L:      bpf@vger.kernel.org
3160 S:      Maintained
3161 F:      arch/sparc/net/
3162
3163 BPF JIT for X86 32-BIT
3164 M:      Wang YanQing <udknight@gmail.com>
3165 L:      netdev@vger.kernel.org
3166 L:      bpf@vger.kernel.org
3167 S:      Maintained
3168 F:      arch/x86/net/bpf_jit_comp32.c
3169
3170 BPF JIT for X86 64-BIT
3171 M:      Alexei Starovoitov <ast@kernel.org>
3172 M:      Daniel Borkmann <daniel@iogearbox.net>
3173 L:      netdev@vger.kernel.org
3174 L:      bpf@vger.kernel.org
3175 S:      Supported
3176 F:      arch/x86/net/
3177 X:      arch/x86/net/bpf_jit_comp32.c
3178
3179 BROADCOM B44 10/100 ETHERNET DRIVER
3180 M:      Michael Chan <michael.chan@broadcom.com>
3181 L:      netdev@vger.kernel.org
3182 S:      Supported
3183 F:      drivers/net/ethernet/broadcom/b44.*
3184
3185 BROADCOM B53 ETHERNET SWITCH DRIVER
3186 M:      Florian Fainelli <f.fainelli@gmail.com>
3187 L:      netdev@vger.kernel.org
3188 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3189 S:      Supported
3190 F:      drivers/net/dsa/b53/*
3191 F:      include/linux/platform_data/b53.h
3192
3193 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3194 M:      Florian Fainelli <f.fainelli@gmail.com>
3195 M:      Ray Jui <rjui@broadcom.com>
3196 M:      Scott Branden <sbranden@broadcom.com>
3197 M:      bcm-kernel-feedback-list@broadcom.com
3198 T:      git git://github.com/broadcom/mach-bcm
3199 S:      Maintained
3200 N:      bcm281*
3201 N:      bcm113*
3202 N:      bcm216*
3203 N:      kona
3204 F:      arch/arm/mach-bcm/
3205
3206 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3207 M:      Eric Anholt <eric@anholt.net>
3208 M:      Stefan Wahren <wahrenst@gmx.net>
3209 L:      bcm-kernel-feedback-list@broadcom.com
3210 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3212 T:      git git://github.com/anholt/linux
3213 S:      Maintained
3214 N:      bcm2711
3215 N:      bcm2835
3216 F:      drivers/staging/vc04_services
3217
3218 BROADCOM BCM47XX MIPS ARCHITECTURE
3219 M:      Hauke Mehrtens <hauke@hauke-m.de>
3220 M:      Rafał Miłecki <zajec5@gmail.com>
3221 L:      linux-mips@vger.kernel.org
3222 S:      Maintained
3223 F:      Documentation/devicetree/bindings/mips/brcm/
3224 F:      arch/mips/bcm47xx/*
3225 F:      arch/mips/include/asm/mach-bcm47xx/*
3226
3227 BROADCOM BCM5301X ARM ARCHITECTURE
3228 M:      Hauke Mehrtens <hauke@hauke-m.de>
3229 M:      Rafał Miłecki <zajec5@gmail.com>
3230 M:      bcm-kernel-feedback-list@broadcom.com
3231 L:      linux-arm-kernel@lists.infradead.org
3232 S:      Maintained
3233 F:      arch/arm/mach-bcm/bcm_5301x.c
3234 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3235 F:      arch/arm/boot/dts/bcm470*
3236 F:      arch/arm/boot/dts/bcm953012*
3237
3238 BROADCOM BCM53573 ARM ARCHITECTURE
3239 M:      Rafał Miłecki <rafal@milecki.pl>
3240 L:      bcm-kernel-feedback-list@broadcom.com
3241 L:      linux-arm-kernel@lists.infradead.org
3242 S:      Maintained
3243 F:      arch/arm/boot/dts/bcm53573*
3244 F:      arch/arm/boot/dts/bcm47189*
3245
3246 BROADCOM BCM63XX ARM ARCHITECTURE
3247 M:      Florian Fainelli <f.fainelli@gmail.com>
3248 M:      bcm-kernel-feedback-list@broadcom.com
3249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3250 T:      git git://github.com/broadcom/stblinux.git
3251 S:      Maintained
3252 N:      bcm63xx
3253
3254 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3255 M:      Kevin Cernekee <cernekee@gmail.com>
3256 L:      linux-usb@vger.kernel.org
3257 S:      Maintained
3258 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3259
3260 BROADCOM BCM7XXX ARM ARCHITECTURE
3261 M:      Florian Fainelli <f.fainelli@gmail.com>
3262 M:      bcm-kernel-feedback-list@broadcom.com
3263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3264 T:      git git://github.com/broadcom/stblinux.git
3265 S:      Maintained
3266 F:      arch/arm/mach-bcm/*brcmstb*
3267 F:      arch/arm/boot/dts/bcm7*.dts*
3268 F:      drivers/bus/brcmstb_gisb.c
3269 F:      arch/arm/mm/cache-b15-rac.c
3270 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3271 N:      brcmstb
3272
3273 BROADCOM BMIPS CPUFREQ DRIVER
3274 M:      Markus Mayer <mmayer@broadcom.com>
3275 M:      bcm-kernel-feedback-list@broadcom.com
3276 L:      linux-pm@vger.kernel.org
3277 S:      Maintained
3278 F:      drivers/cpufreq/bmips-cpufreq.c
3279
3280 BROADCOM BMIPS MIPS ARCHITECTURE
3281 M:      Kevin Cernekee <cernekee@gmail.com>
3282 M:      Florian Fainelli <f.fainelli@gmail.com>
3283 L:      bcm-kernel-feedback-list@broadcom.com
3284 L:      linux-mips@vger.kernel.org
3285 T:      git git://github.com/broadcom/stblinux.git
3286 S:      Maintained
3287 F:      arch/mips/bmips/*
3288 F:      arch/mips/include/asm/mach-bmips/*
3289 F:      arch/mips/kernel/*bmips*
3290 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3291 F:      drivers/irqchip/irq-bcm63*
3292 F:      drivers/irqchip/irq-bcm7*
3293 F:      drivers/irqchip/irq-brcmstb*
3294 F:      include/linux/bcm963xx_nvram.h
3295 F:      include/linux/bcm963xx_tag.h
3296
3297 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3298 M:      Rasesh Mody <rmody@marvell.com>
3299 M:      GR-Linux-NIC-Dev@marvell.com
3300 L:      netdev@vger.kernel.org
3301 S:      Supported
3302 F:      drivers/net/ethernet/broadcom/bnx2.*
3303 F:      drivers/net/ethernet/broadcom/bnx2_*
3304
3305 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3306 M:      QLogic-Storage-Upstream@qlogic.com
3307 L:      linux-scsi@vger.kernel.org
3308 S:      Supported
3309 F:      drivers/scsi/bnx2fc/
3310
3311 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3312 M:      QLogic-Storage-Upstream@qlogic.com
3313 L:      linux-scsi@vger.kernel.org
3314 S:      Supported
3315 F:      drivers/scsi/bnx2i/
3316
3317 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3318 M:      Ariel Elior <aelior@marvell.com>
3319 M:      Sudarsana Kalluru <skalluru@marvell.com>
3320 M:      GR-everest-linux-l2@marvell.com
3321 L:      netdev@vger.kernel.org
3322 S:      Supported
3323 F:      drivers/net/ethernet/broadcom/bnx2x/
3324
3325 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3326 M:      Michael Chan <michael.chan@broadcom.com>
3327 L:      netdev@vger.kernel.org
3328 S:      Supported
3329 F:      drivers/net/ethernet/broadcom/bnxt/
3330
3331 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3332 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3333 M:      Franky Lin <franky.lin@broadcom.com>
3334 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3335 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3336 M:      Wright Feng <wright.feng@cypress.com>
3337 L:      linux-wireless@vger.kernel.org
3338 L:      brcm80211-dev-list.pdl@broadcom.com
3339 L:      brcm80211-dev-list@cypress.com
3340 S:      Supported
3341 F:      drivers/net/wireless/broadcom/brcm80211/
3342
3343 BROADCOM BRCMSTB GPIO DRIVER
3344 M:      Gregory Fong <gregory.0xf0@gmail.com>
3345 L:      bcm-kernel-feedback-list@broadcom.com
3346 S:      Supported
3347 F:      drivers/gpio/gpio-brcmstb.c
3348 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3349
3350 BROADCOM BRCMSTB I2C DRIVER
3351 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3352 L:      linux-i2c@vger.kernel.org
3353 L:      bcm-kernel-feedback-list@broadcom.com
3354 S:      Supported
3355 F:      drivers/i2c/busses/i2c-brcmstb.c
3356 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3357
3358 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3359 M:      Al Cooper <alcooperx@gmail.com>
3360 L:      linux-kernel@vger.kernel.org
3361 L:      bcm-kernel-feedback-list@broadcom.com
3362 S:      Maintained
3363 F:      drivers/phy/broadcom/phy-brcm-usb*
3364
3365 BROADCOM GENET ETHERNET DRIVER
3366 M:      Doug Berger <opendmb@gmail.com>
3367 M:      Florian Fainelli <f.fainelli@gmail.com>
3368 L:      bcm-kernel-feedback-list@broadcom.com
3369 L:      netdev@vger.kernel.org
3370 S:      Supported
3371 F:      drivers/net/ethernet/broadcom/genet/
3372
3373 BROADCOM IPROC ARM ARCHITECTURE
3374 M:      Ray Jui <rjui@broadcom.com>
3375 M:      Scott Branden <sbranden@broadcom.com>
3376 M:      bcm-kernel-feedback-list@broadcom.com
3377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3378 T:      git git://github.com/broadcom/cygnus-linux.git
3379 S:      Maintained
3380 N:      iproc
3381 N:      cygnus
3382 N:      bcm[-_]nsp
3383 N:      bcm9113*
3384 N:      bcm9583*
3385 N:      bcm9585*
3386 N:      bcm9586*
3387 N:      bcm988312
3388 N:      bcm113*
3389 N:      bcm583*
3390 N:      bcm585*
3391 N:      bcm586*
3392 N:      bcm88312
3393 N:      hr2
3394 N:      stingray
3395 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3396 F:      arch/arm64/boot/dts/broadcom/stingray/*
3397 F:      drivers/clk/bcm/clk-ns*
3398 F:      drivers/clk/bcm/clk-sr*
3399 F:      drivers/pinctrl/bcm/pinctrl-ns*
3400 F:      include/dt-bindings/clock/bcm-sr*
3401
3402 BROADCOM KONA GPIO DRIVER
3403 M:      Ray Jui <rjui@broadcom.com>
3404 L:      bcm-kernel-feedback-list@broadcom.com
3405 S:      Supported
3406 F:      drivers/gpio/gpio-bcm-kona.c
3407 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3408
3409 BROADCOM NETXTREME-E ROCE DRIVER
3410 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3411 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3412 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3413 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3414 L:      linux-rdma@vger.kernel.org
3415 W:      http://www.broadcom.com
3416 S:      Supported
3417 F:      drivers/infiniband/hw/bnxt_re/
3418 F:      include/uapi/rdma/bnxt_re-abi.h
3419
3420 BROADCOM NVRAM DRIVER
3421 M:      Rafał Miłecki <zajec5@gmail.com>
3422 L:      linux-mips@vger.kernel.org
3423 S:      Maintained
3424 F:      drivers/firmware/broadcom/*
3425
3426 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3427 M:      Rafał Miłecki <zajec5@gmail.com>
3428 L:      linux-wireless@vger.kernel.org
3429 S:      Maintained
3430 F:      drivers/bcma/
3431 F:      include/linux/bcma/
3432
3433 BROADCOM STB AVS CPUFREQ DRIVER
3434 M:      Markus Mayer <mmayer@broadcom.com>
3435 M:      bcm-kernel-feedback-list@broadcom.com
3436 L:      linux-pm@vger.kernel.org
3437 S:      Maintained
3438 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3439 F:      drivers/cpufreq/brcmstb*
3440
3441 BROADCOM STB AVS TMON DRIVER
3442 M:      Markus Mayer <mmayer@broadcom.com>
3443 M:      bcm-kernel-feedback-list@broadcom.com
3444 L:      linux-pm@vger.kernel.org
3445 S:      Maintained
3446 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3447 F:      drivers/thermal/broadcom/brcmstb*
3448
3449 BROADCOM STB NAND FLASH DRIVER
3450 M:      Brian Norris <computersforpeace@gmail.com>
3451 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3452 L:      linux-mtd@lists.infradead.org
3453 L:      bcm-kernel-feedback-list@broadcom.com
3454 S:      Maintained
3455 F:      drivers/mtd/nand/raw/brcmnand/
3456
3457 BROADCOM STB DPFE DRIVER
3458 M:      Markus Mayer <mmayer@broadcom.com>
3459 M:      bcm-kernel-feedback-list@broadcom.com
3460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3461 S:      Maintained
3462 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3463 F:      drivers/memory/brcmstb_dpfe.c
3464
3465 BROADCOM SPI DRIVER
3466 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3467 M:      bcm-kernel-feedback-list@broadcom.com
3468 S:      Maintained
3469 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3470 F:      drivers/spi/spi-bcm-qspi.*
3471 F:      drivers/spi/spi-brcmstb-qspi.c
3472 F:      drivers/spi/spi-iproc-qspi.c
3473
3474 BROADCOM SYSTEMPORT ETHERNET DRIVER
3475 M:      Florian Fainelli <f.fainelli@gmail.com>
3476 L:      bcm-kernel-feedback-list@broadcom.com
3477 L:      netdev@vger.kernel.org
3478 S:      Supported
3479 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3480
3481 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3482 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3483 M:      Prashant Sreedharan <prashant@broadcom.com>
3484 M:      Michael Chan <mchan@broadcom.com>
3485 L:      netdev@vger.kernel.org
3486 S:      Supported
3487 F:      drivers/net/ethernet/broadcom/tg3.*
3488
3489 BROCADE BFA FC SCSI DRIVER
3490 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3491 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3492 L:      linux-scsi@vger.kernel.org
3493 S:      Supported
3494 F:      drivers/scsi/bfa/
3495
3496 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3497 M:      Rasesh Mody <rmody@marvell.com>
3498 M:      Sudarsana Kalluru <skalluru@marvell.com>
3499 M:      GR-Linux-NIC-Dev@marvell.com
3500 L:      netdev@vger.kernel.org
3501 S:      Supported
3502 F:      drivers/net/ethernet/brocade/bna/
3503
3504 BSG (block layer generic sg v4 driver)
3505 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3506 L:      linux-scsi@vger.kernel.org
3507 S:      Supported
3508 F:      block/bsg.c
3509 F:      include/linux/bsg.h
3510 F:      include/uapi/linux/bsg.h
3511
3512 BT87X AUDIO DRIVER
3513 M:      Clemens Ladisch <clemens@ladisch.de>
3514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3516 S:      Maintained
3517 F:      Documentation/sound/cards/bt87x.rst
3518 F:      sound/pci/bt87x.c
3519
3520 BT8XXGPIO DRIVER
3521 M:      Michael Buesch <m@bues.ch>
3522 W:      http://bu3sch.de/btgpio.php
3523 S:      Maintained
3524 F:      drivers/gpio/gpio-bt8xx.c
3525
3526 BTRFS FILE SYSTEM
3527 M:      Chris Mason <clm@fb.com>
3528 M:      Josef Bacik <josef@toxicpanda.com>
3529 M:      David Sterba <dsterba@suse.com>
3530 L:      linux-btrfs@vger.kernel.org
3531 W:      http://btrfs.wiki.kernel.org/
3532 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3534 S:      Maintained
3535 F:      Documentation/filesystems/btrfs.txt
3536 F:      fs/btrfs/
3537 F:      include/linux/btrfs*
3538 F:      include/uapi/linux/btrfs*
3539
3540 BTTV VIDEO4LINUX DRIVER
3541 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3542 L:      linux-media@vger.kernel.org
3543 W:      https://linuxtv.org
3544 T:      git git://linuxtv.org/media_tree.git
3545 S:      Odd fixes
3546 F:      Documentation/media/v4l-drivers/bttv*
3547 F:      drivers/media/pci/bt8xx/bttv*
3548
3549 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3550 M:      Chanwoo Choi <cw00.choi@samsung.com>
3551 L:      linux-pm@vger.kernel.org
3552 L:      linux-samsung-soc@vger.kernel.org
3553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3554 S:      Maintained
3555 F:      drivers/devfreq/exynos-bus.c
3556 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3557
3558 BUSLOGIC SCSI DRIVER
3559 M:      Khalid Aziz <khalid@gonehiking.org>
3560 L:      linux-scsi@vger.kernel.org
3561 S:      Maintained
3562 F:      drivers/scsi/BusLogic.*
3563 F:      drivers/scsi/FlashPoint.*
3564
3565 C-MEDIA CMI8788 DRIVER
3566 M:      Clemens Ladisch <clemens@ladisch.de>
3567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3569 S:      Maintained
3570 F:      sound/pci/oxygen/
3571
3572 C-SKY ARCHITECTURE
3573 M:      Guo Ren <guoren@kernel.org>
3574 T:      git https://github.com/c-sky/csky-linux.git
3575 S:      Supported
3576 F:      arch/csky/
3577 F:      Documentation/devicetree/bindings/csky/
3578 F:      drivers/irqchip/irq-csky-*
3579 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3580 F:      drivers/clocksource/timer-gx6605s.c
3581 F:      drivers/clocksource/timer-mp-csky.c
3582 F:      Documentation/devicetree/bindings/timer/csky,*
3583 K:      csky
3584 N:      csky
3585
3586 C6X ARCHITECTURE
3587 M:      Mark Salter <msalter@redhat.com>
3588 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3589 L:      linux-c6x-dev@linux-c6x.org
3590 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3591 S:      Maintained
3592 F:      arch/c6x/
3593
3594 CA8210 IEEE-802.15.4 RADIO DRIVER
3595 M:      Harry Morris <h.morris@cascoda.com>
3596 L:      linux-wpan@vger.kernel.org
3597 W:      https://github.com/Cascoda/ca8210-linux.git
3598 S:      Maintained
3599 F:      drivers/net/ieee802154/ca8210.c
3600 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3601
3602 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3603 M:      David Howells <dhowells@redhat.com>
3604 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3605 S:      Supported
3606 F:      Documentation/filesystems/caching/cachefiles.txt
3607 F:      fs/cachefiles/
3608
3609 CADENCE MIPI-CSI2 BRIDGES
3610 M:      Maxime Ripard <mripard@kernel.org>
3611 L:      linux-media@vger.kernel.org
3612 S:      Maintained
3613 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3614 F:      drivers/media/platform/cadence/cdns-csi2*
3615
3616 CADET FM/AM RADIO RECEIVER DRIVER
3617 M:      Hans Verkuil <hverkuil@xs4all.nl>
3618 L:      linux-media@vger.kernel.org
3619 T:      git git://linuxtv.org/media_tree.git
3620 W:      https://linuxtv.org
3621 S:      Maintained
3622 F:      drivers/media/radio/radio-cadet*
3623
3624 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3625 M:      Jonathan Corbet <corbet@lwn.net>
3626 L:      linux-media@vger.kernel.org
3627 T:      git git://linuxtv.org/media_tree.git
3628 S:      Maintained
3629 F:      Documentation/media/v4l-drivers/cafe_ccic*
3630 F:      drivers/media/platform/marvell-ccic/
3631
3632 CAIF NETWORK LAYER
3633 L:      netdev@vger.kernel.org
3634 S:      Orphan
3635 F:      Documentation/networking/caif/
3636 F:      drivers/net/caif/
3637 F:      include/uapi/linux/caif/
3638 F:      include/net/caif/
3639 F:      net/caif/
3640
3641 CAKE QDISC
3642 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3643 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3644 S:      Maintained
3645 F:      net/sched/sch_cake.c
3646
3647 CALGARY x86-64 IOMMU
3648 M:      Muli Ben-Yehuda <mulix@mulix.org>
3649 M:      Jon Mason <jdmason@kudzu.us>
3650 L:      iommu@lists.linux-foundation.org
3651 S:      Maintained
3652 F:      arch/x86/kernel/pci-calgary_64.c
3653 F:      arch/x86/kernel/tce_64.c
3654 F:      arch/x86/include/asm/calgary.h
3655 F:      arch/x86/include/asm/tce.h
3656
3657 CAN NETWORK DRIVERS
3658 M:      Wolfgang Grandegger <wg@grandegger.com>
3659 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3660 L:      linux-can@vger.kernel.org
3661 W:      https://github.com/linux-can
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3664 S:      Maintained
3665 F:      Documentation/devicetree/bindings/net/can/
3666 F:      drivers/net/can/
3667 F:      include/linux/can/dev.h
3668 F:      include/linux/can/led.h
3669 F:      include/linux/can/rx-offload.h
3670 F:      include/linux/can/platform/
3671 F:      include/uapi/linux/can/error.h
3672 F:      include/uapi/linux/can/netlink.h
3673 F:      include/uapi/linux/can/vxcan.h
3674
3675 CAN NETWORK LAYER
3676 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3677 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3678 L:      linux-can@vger.kernel.org
3679 W:      https://github.com/linux-can
3680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3682 S:      Maintained
3683 F:      Documentation/networking/can.rst
3684 F:      net/can/
3685 F:      include/linux/can/core.h
3686 F:      include/linux/can/skb.h
3687 F:      include/net/netns/can.h
3688 F:      include/uapi/linux/can.h
3689 F:      include/uapi/linux/can/bcm.h
3690 F:      include/uapi/linux/can/raw.h
3691 F:      include/uapi/linux/can/gw.h
3692
3693 CAN-J1939 NETWORK LAYER
3694 M:      Robin van der Gracht <robin@protonic.nl>
3695 M:      Oleksij Rempel <o.rempel@pengutronix.de>
3696 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
3697 L:      linux-can@vger.kernel.org
3698 S:      Maintained
3699 F:      Documentation/networking/j1939.txt
3700 F:      net/can/j1939/
3701 F:      include/uapi/linux/can/j1939.h
3702
3703 CAPABILITIES
3704 M:      Serge Hallyn <serge@hallyn.com>
3705 L:      linux-security-module@vger.kernel.org
3706 S:      Supported
3707 F:      include/linux/capability.h
3708 F:      include/uapi/linux/capability.h
3709 F:      security/commoncap.c
3710 F:      kernel/capability.c
3711
3712 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3713 M:      Kevin Tsai <ktsai@capellamicro.com>
3714 S:      Maintained
3715 F:      drivers/iio/light/cm*
3716
3717 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3718 M:      Christian Lamparter <chunkeey@googlemail.com>
3719 L:      linux-wireless@vger.kernel.org
3720 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3721 S:      Maintained
3722 F:      drivers/net/wireless/ath/carl9170/
3723
3724 CAVIUM I2C DRIVER
3725 M:      Jan Glauber <jglauber@cavium.com>
3726 M:      David Daney <david.daney@cavium.com>
3727 W:      http://www.cavium.com
3728 S:      Supported
3729 F:      drivers/i2c/busses/i2c-octeon*
3730 F:      drivers/i2c/busses/i2c-thunderx*
3731
3732 CAVIUM LIQUIDIO NETWORK DRIVER
3733 M:      Derek Chickles <dchickles@marvell.com>
3734 M:      Satanand Burla <sburla@marvell.com>
3735 M:      Felix Manlunas <fmanlunas@marvell.com>
3736 L:      netdev@vger.kernel.org
3737 W:      http://www.cavium.com
3738 S:      Supported
3739 F:      drivers/net/ethernet/cavium/liquidio/
3740
3741 CAVIUM MMC DRIVER
3742 M:      Jan Glauber <jglauber@cavium.com>
3743 M:      David Daney <david.daney@cavium.com>
3744 M:      Steven J. Hill <Steven.Hill@cavium.com>
3745 W:      http://www.cavium.com
3746 S:      Supported
3747 F:      drivers/mmc/host/cavium*
3748
3749 CAVIUM OCTEON-TX CRYPTO DRIVER
3750 M:      George Cherian <george.cherian@cavium.com>
3751 L:      linux-crypto@vger.kernel.org
3752 W:      http://www.cavium.com
3753 S:      Supported
3754 F:      drivers/crypto/cavium/cpt/
3755
3756 CAVIUM THUNDERX2 ARM64 SOC
3757 M:      Robert Richter <rrichter@cavium.com>
3758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3759 S:      Maintained
3760 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3761 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3762
3763 CC2520 IEEE-802.15.4 RADIO DRIVER
3764 M:      Varka Bhadram <varkabhadram@gmail.com>
3765 L:      linux-wpan@vger.kernel.org
3766 S:      Maintained
3767 F:      drivers/net/ieee802154/cc2520.c
3768 F:      include/linux/spi/cc2520.h
3769 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3770
3771 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3772 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3773 L:      linux-crypto@vger.kernel.org
3774 S:      Supported
3775 F:      drivers/crypto/ccree/
3776 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3777
3778 CEC FRAMEWORK
3779 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3780 L:      linux-media@vger.kernel.org
3781 T:      git git://linuxtv.org/media_tree.git
3782 W:      http://linuxtv.org
3783 S:      Supported
3784 F:      Documentation/media/kapi/cec-core.rst
3785 F:      Documentation/media/uapi/cec
3786 F:      drivers/media/cec/
3787 F:      drivers/media/rc/keymaps/rc-cec.c
3788 F:      include/media/cec.h
3789 F:      include/media/cec-notifier.h
3790 F:      include/uapi/linux/cec.h
3791 F:      include/uapi/linux/cec-funcs.h
3792 F:      Documentation/devicetree/bindings/media/cec.txt
3793 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3794
3795 CEC GPIO DRIVER
3796 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
3797 L:      linux-media@vger.kernel.org
3798 T:      git git://linuxtv.org/media_tree.git
3799 W:      http://linuxtv.org
3800 S:      Supported
3801 F:      drivers/media/platform/cec-gpio/
3802 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3803
3804 CELL BROADBAND ENGINE ARCHITECTURE
3805 M:      Arnd Bergmann <arnd@arndb.de>
3806 L:      linuxppc-dev@lists.ozlabs.org
3807 W:      http://www.ibm.com/developerworks/power/cell/
3808 S:      Supported
3809 F:      arch/powerpc/include/asm/cell*.h
3810 F:      arch/powerpc/include/asm/spu*.h
3811 F:      arch/powerpc/include/uapi/asm/spu*.h
3812 F:      arch/powerpc/oprofile/*cell*
3813 F:      arch/powerpc/platforms/cell/
3814
3815 CEPH COMMON CODE (LIBCEPH)
3816 M:      Ilya Dryomov <idryomov@gmail.com>
3817 M:      Jeff Layton <jlayton@kernel.org>
3818 M:      Sage Weil <sage@redhat.com>
3819 L:      ceph-devel@vger.kernel.org
3820 W:      http://ceph.com/
3821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3822 T:      git git://github.com/ceph/ceph-client.git
3823 S:      Supported
3824 F:      net/ceph/
3825 F:      include/linux/ceph/
3826 F:      include/linux/crush/
3827
3828 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3829 M:      Jeff Layton <jlayton@kernel.org>
3830 M:      Sage Weil <sage@redhat.com>
3831 M:      Ilya Dryomov <idryomov@gmail.com>
3832 L:      ceph-devel@vger.kernel.org
3833 W:      http://ceph.com/
3834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3835 T:      git git://github.com/ceph/ceph-client.git
3836 S:      Supported
3837 F:      Documentation/filesystems/ceph.txt
3838 F:      fs/ceph/
3839
3840 CERTIFICATE HANDLING:
3841 M:      David Howells <dhowells@redhat.com>
3842 M:      David Woodhouse <dwmw2@infradead.org>
3843 L:      keyrings@vger.kernel.org
3844 S:      Maintained
3845 F:      Documentation/admin-guide/module-signing.rst
3846 F:      certs/
3847 F:      scripts/sign-file.c
3848 F:      scripts/extract-cert.c
3849
3850 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3851 L:      devel@driverdev.osuosl.org
3852 S:      Obsolete
3853 F:      drivers/staging/wusbcore/
3854
3855 CFAG12864B LCD DRIVER
3856 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3857 S:      Maintained
3858 F:      drivers/auxdisplay/cfag12864b.c
3859 F:      include/linux/cfag12864b.h
3860
3861 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3862 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3863 S:      Maintained
3864 F:      drivers/auxdisplay/cfag12864bfb.c
3865 F:      include/linux/cfag12864b.h
3866
3867 802.11 (including CFG80211/NL80211)
3868 M:      Johannes Berg <johannes@sipsolutions.net>
3869 L:      linux-wireless@vger.kernel.org
3870 W:      http://wireless.kernel.org/
3871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3873 S:      Maintained
3874 F:      net/wireless/
3875 F:      include/uapi/linux/nl80211.h
3876 F:      include/linux/ieee80211.h
3877 F:      include/net/wext.h
3878 F:      include/net/cfg80211.h
3879 F:      include/net/iw_handler.h
3880 F:      include/net/ieee80211_radiotap.h
3881 F:      Documentation/driver-api/80211/cfg80211.rst
3882 F:      Documentation/networking/regulatory.txt
3883
3884 CHAR and MISC DRIVERS
3885 M:      Arnd Bergmann <arnd@arndb.de>
3886 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3888 S:      Supported
3889 F:      drivers/char/
3890 F:      drivers/misc/
3891 F:      include/linux/miscdevice.h
3892
3893 CHECKPATCH
3894 M:      Andy Whitcroft <apw@canonical.com>
3895 M:      Joe Perches <joe@perches.com>
3896 S:      Maintained
3897 F:      scripts/checkpatch.pl
3898
3899 CHINESE DOCUMENTATION
3900 M:      Harry Wei <harryxiyou@gmail.com>
3901 M:      Alex Shi <alex.shi@linux.alibaba.com>
3902 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3903 S:      Maintained
3904 F:      Documentation/translations/zh_CN/
3905
3906 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3907 M:      Peter Chen <Peter.Chen@nxp.com>
3908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3909 L:      linux-usb@vger.kernel.org
3910 S:      Maintained
3911 F:      drivers/usb/chipidea/
3912
3913 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3914 M:      Hans de Goede <hdegoede@redhat.com>
3915 L:      linux-input@vger.kernel.org
3916 S:      Maintained
3917 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3918 F:      drivers/input/touchscreen/chipone_icn8318.c
3919
3920 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3921 M:      Hans de Goede <hdegoede@redhat.com>
3922 L:      linux-input@vger.kernel.org
3923 S:      Maintained
3924 F:      drivers/input/touchscreen/chipone_icn8505.c
3925
3926 CHROME HARDWARE PLATFORM SUPPORT
3927 M:      Benson Leung <bleung@chromium.org>
3928 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3929 S:      Maintained
3930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3931 F:      drivers/platform/chrome/
3932
3933 CHROMEOS EC SUBDRIVERS
3934 M:      Benson Leung <bleung@chromium.org>
3935 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3936 R:      Guenter Roeck <groeck@chromium.org>
3937 S:      Maintained
3938 N:      cros_ec
3939 N:      cros-ec
3940 F:      drivers/power/supply/cros_usbpd-charger.c
3941
3942 CHROMEOS EC CODEC DRIVER
3943 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3944 S:      Maintained
3945 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3946 R:      Guenter Roeck <groeck@chromium.org>
3947 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3948 F:      sound/soc/codecs/cros_ec_codec.*
3949
3950 CIRRUS LOGIC AUDIO CODEC DRIVERS
3951 M:      Brian Austin <brian.austin@cirrus.com>
3952 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3953 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3954 S:      Maintained
3955 F:      sound/soc/codecs/cs*
3956
3957 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3958 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3959 L:      netdev@vger.kernel.org
3960 S:      Maintained
3961 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3962
3963 CIRRUS LOGIC LOCHNAGAR DRIVER
3964 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3965 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3966 L:      patches@opensource.cirrus.com
3967 S:      Supported
3968 F:      drivers/clk/clk-lochnagar.c
3969 F:      drivers/hwmon/lochnagar-hwmon.c
3970 F:      drivers/mfd/lochnagar-i2c.c
3971 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3972 F:      drivers/regulator/lochnagar-regulator.c
3973 F:      sound/soc/codecs/lochnagar-sc.c
3974 F:      include/dt-bindings/clk/lochnagar.h
3975 F:      include/dt-bindings/pinctrl/lochnagar.h
3976 F:      include/linux/mfd/lochnagar*
3977 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3978 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3979 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3980 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3981 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3982 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3983 F:      Documentation/hwmon/lochnagar.rst
3984
3985 CISCO FCOE HBA DRIVER
3986 M:      Satish Kharat <satishkh@cisco.com>
3987 M:      Sesidhar Baddela <sebaddel@cisco.com>
3988 M:      Karan Tilak Kumar <kartilak@cisco.com>
3989 L:      linux-scsi@vger.kernel.org
3990 S:      Supported
3991 F:      drivers/scsi/fnic/
3992
3993 CISCO SCSI HBA DRIVER
3994 M:      Karan Tilak Kumar <kartilak@cisco.com>
3995 M:      Sesidhar Baddela <sebaddel@cisco.com>
3996 L:      linux-scsi@vger.kernel.org
3997 S:      Supported
3998 F:      drivers/scsi/snic/
3999
4000 CISCO VIC ETHERNET NIC DRIVER
4001 M:      Christian Benvenuti <benve@cisco.com>
4002 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4003 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4004 S:      Supported
4005 F:      drivers/net/ethernet/cisco/enic/
4006
4007 CISCO VIC LOW LATENCY NIC DRIVER
4008 M:      Christian Benvenuti <benve@cisco.com>
4009 M:      Nelson Escobar <neescoba@cisco.com>
4010 M:      Parvi Kaustubhi <pkaustub@cisco.com>
4011 S:      Supported
4012 F:      drivers/infiniband/hw/usnic/
4013
4014 CIRRUS LOGIC MADERA CODEC DRIVERS
4015 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4016 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4017 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4018 L:      patches@opensource.cirrus.com
4019 T:      git https://github.com/CirrusLogic/linux-drivers.git
4020 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4021 S:      Supported
4022 F:      Documentation/devicetree/bindings/mfd/madera.txt
4023 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
4024 F:      Documentation/devicetree/bindings/sound/madera.txt
4025 F:      include/dt-bindings/sound/madera*
4026 F:      include/linux/irqchip/irq-madera*
4027 F:      include/linux/mfd/madera/*
4028 F:      include/sound/madera*
4029 F:      drivers/gpio/gpio-madera*
4030 F:      drivers/irqchip/irq-madera*
4031 F:      drivers/mfd/madera*
4032 F:      drivers/mfd/cs47l*
4033 F:      drivers/pinctrl/cirrus/*
4034 F:      sound/soc/codecs/cs47l*
4035 F:      sound/soc/codecs/madera*
4036
4037 CLANG-FORMAT FILE
4038 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4039 S:      Maintained
4040 F:      .clang-format
4041
4042 CLANG/LLVM BUILD SUPPORT
4043 L:      clang-built-linux@googlegroups.com
4044 W:      https://clangbuiltlinux.github.io/
4045 B:      https://github.com/ClangBuiltLinux/linux/issues
4046 C:      irc://chat.freenode.net/clangbuiltlinux
4047 S:      Supported
4048 K:      \b(?i:clang|llvm)\b
4049
4050 CLEANCACHE API
4051 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4052 L:      linux-kernel@vger.kernel.org
4053 S:      Maintained
4054 F:      mm/cleancache.c
4055 F:      include/linux/cleancache.h
4056
4057 CLK API
4058 M:      Russell King <linux@armlinux.org.uk>
4059 L:      linux-clk@vger.kernel.org
4060 S:      Maintained
4061 F:      include/linux/clk.h
4062
4063 CLOCKSOURCE, CLOCKEVENT DRIVERS
4064 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4065 M:      Thomas Gleixner <tglx@linutronix.de>
4066 L:      linux-kernel@vger.kernel.org
4067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4068 S:      Supported
4069 F:      drivers/clocksource/
4070 F:      Documentation/devicetree/bindings/timer/
4071
4072 CMPC ACPI DRIVER
4073 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4074 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4075 L:      platform-driver-x86@vger.kernel.org
4076 S:      Supported
4077 F:      drivers/platform/x86/classmate-laptop.c
4078
4079 COBALT MEDIA DRIVER
4080 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4081 L:      linux-media@vger.kernel.org
4082 T:      git git://linuxtv.org/media_tree.git
4083 W:      https://linuxtv.org
4084 S:      Supported
4085 F:      drivers/media/pci/cobalt/
4086
4087 COCCINELLE/Semantic Patches (SmPL)
4088 M:      Julia Lawall <Julia.Lawall@lip6.fr>
4089 M:      Gilles Muller <Gilles.Muller@lip6.fr>
4090 M:      Nicolas Palix <nicolas.palix@imag.fr>
4091 M:      Michal Marek <michal.lkml@markovi.net>
4092 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4094 W:      http://coccinelle.lip6.fr/
4095 S:      Supported
4096 F:      Documentation/dev-tools/coccinelle.rst
4097 F:      scripts/coccinelle/
4098 F:      scripts/coccicheck
4099
4100 CODA FILE SYSTEM
4101 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4102 M:      coda@cs.cmu.edu
4103 L:      codalist@coda.cs.cmu.edu
4104 W:      http://www.coda.cs.cmu.edu/
4105 S:      Maintained
4106 F:      Documentation/filesystems/coda.txt
4107 F:      fs/coda/
4108 F:      include/linux/coda*.h
4109 F:      include/uapi/linux/coda*.h
4110
4111 CODA V4L2 MEM2MEM DRIVER
4112 M:      Philipp Zabel <p.zabel@pengutronix.de>
4113 L:      linux-media@vger.kernel.org
4114 S:      Maintained
4115 F:      Documentation/devicetree/bindings/media/coda.txt
4116 F:      drivers/media/platform/coda/
4117
4118 CODE OF CONDUCT
4119 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4120 S:      Supported
4121 F:      Documentation/process/code-of-conduct.rst
4122 F:      Documentation/process/code-of-conduct-interpretation.rst
4123
4124 COMMON CLK FRAMEWORK
4125 M:      Michael Turquette <mturquette@baylibre.com>
4126 M:      Stephen Boyd <sboyd@kernel.org>
4127 L:      linux-clk@vger.kernel.org
4128 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4130 S:      Maintained
4131 F:      Documentation/devicetree/bindings/clock/
4132 F:      drivers/clk/
4133 X:      drivers/clk/clkdev.c
4134 F:      include/linux/clk-pr*
4135 F:      include/linux/clk/
4136 F:      include/linux/of_clk.h
4137
4138 COMMON INTERNET FILE SYSTEM (CIFS)
4139 M:      Steve French <sfrench@samba.org>
4140 L:      linux-cifs@vger.kernel.org
4141 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4142 W:      http://linux-cifs.samba.org/
4143 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4144 S:      Supported
4145 F:      Documentation/admin-guide/cifs/
4146 F:      fs/cifs/
4147
4148 COMPACTPCI HOTPLUG CORE
4149 M:      Scott Murray <scott@spiteful.org>
4150 L:      linux-pci@vger.kernel.org
4151 S:      Maintained
4152 F:      drivers/pci/hotplug/cpci_hotplug*
4153
4154 COMPACTPCI HOTPLUG GENERIC DRIVER
4155 M:      Scott Murray <scott@spiteful.org>
4156 L:      linux-pci@vger.kernel.org
4157 S:      Maintained
4158 F:      drivers/pci/hotplug/cpcihp_generic.c
4159
4160 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4161 M:      Scott Murray <scott@spiteful.org>
4162 L:      linux-pci@vger.kernel.org
4163 S:      Maintained
4164 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4165
4166 COMPAL LAPTOP SUPPORT
4167 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4168 L:      platform-driver-x86@vger.kernel.org
4169 S:      Maintained
4170 F:      drivers/platform/x86/compal-laptop.c
4171
4172 COMPILER ATTRIBUTES
4173 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4174 S:      Maintained
4175 F:      include/linux/compiler_attributes.h
4176
4177 CONEXANT ACCESSRUNNER USB DRIVER
4178 L:      accessrunner-general@lists.sourceforge.net
4179 W:      http://accessrunner.sourceforge.net/
4180 S:      Orphan
4181 F:      drivers/usb/atm/cxacru.c
4182
4183 CONFIGFS
4184 M:      Joel Becker <jlbec@evilplan.org>
4185 M:      Christoph Hellwig <hch@lst.de>
4186 T:      git git://git.infradead.org/users/hch/configfs.git
4187 S:      Supported
4188 F:      fs/configfs/
4189 F:      include/linux/configfs.h
4190
4191 CONNECTOR
4192 M:      Evgeniy Polyakov <zbr@ioremap.net>
4193 L:      netdev@vger.kernel.org
4194 S:      Maintained
4195 F:      drivers/connector/
4196
4197 CONTROL GROUP (CGROUP)
4198 M:      Tejun Heo <tj@kernel.org>
4199 M:      Li Zefan <lizefan@huawei.com>
4200 M:      Johannes Weiner <hannes@cmpxchg.org>
4201 L:      cgroups@vger.kernel.org
4202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4203 S:      Maintained
4204 F:      Documentation/admin-guide/cgroup-v2.rst
4205 F:      Documentation/admin-guide/cgroup-v1/
4206 F:      include/linux/cgroup*
4207 F:      kernel/cgroup/
4208
4209 CONTROL GROUP - CPUSET
4210 M:      Li Zefan <lizefan@huawei.com>
4211 L:      cgroups@vger.kernel.org
4212 W:      http://www.bullopensource.org/cpuset/
4213 W:      http://oss.sgi.com/projects/cpusets/
4214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4215 S:      Maintained
4216 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4217 F:      include/linux/cpuset.h
4218 F:      kernel/cgroup/cpuset.c
4219
4220 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4221 M:      Johannes Weiner <hannes@cmpxchg.org>
4222 M:      Michal Hocko <mhocko@kernel.org>
4223 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4224 L:      cgroups@vger.kernel.org
4225 L:      linux-mm@kvack.org
4226 S:      Maintained
4227 F:      mm/memcontrol.c
4228 F:      mm/swap_cgroup.c
4229
4230 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4231 M:      Tejun Heo <tj@kernel.org>
4232 M:      Jens Axboe <axboe@kernel.dk>
4233 L:      cgroups@vger.kernel.org
4234 L:      linux-block@vger.kernel.org
4235 T:      git git://git.kernel.dk/linux-block
4236 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4237 F:      block/blk-cgroup.c
4238 F:      include/linux/blk-cgroup.h
4239 F:      block/blk-throttle.c
4240 F:      block/blk-iolatency.c
4241 F:      block/bfq-cgroup.c
4242
4243 CORETEMP HARDWARE MONITORING DRIVER
4244 M:      Fenghua Yu <fenghua.yu@intel.com>
4245 L:      linux-hwmon@vger.kernel.org
4246 S:      Maintained
4247 F:      Documentation/hwmon/coretemp.rst
4248 F:      drivers/hwmon/coretemp.c
4249
4250 COSA/SRP SYNC SERIAL DRIVER
4251 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4252 W:      http://www.fi.muni.cz/~kas/cosa/
4253 S:      Maintained
4254 F:      drivers/net/wan/cosa*
4255
4256 COUNTER SUBSYSTEM
4257 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4258 L:      linux-iio@vger.kernel.org
4259 S:      Maintained
4260 F:      Documentation/ABI/testing/sysfs-bus-counter*
4261 F:      Documentation/driver-api/generic-counter.rst
4262 F:      drivers/counter/
4263 F:      include/linux/counter.h
4264 F:      include/linux/counter_enum.h
4265
4266 CPMAC ETHERNET DRIVER
4267 M:      Florian Fainelli <f.fainelli@gmail.com>
4268 L:      netdev@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/net/ethernet/ti/cpmac.c
4271
4272 CPU FREQUENCY SCALING FRAMEWORK
4273 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4274 M:      Viresh Kumar <viresh.kumar@linaro.org>
4275 L:      linux-pm@vger.kernel.org
4276 S:      Maintained
4277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4279 B:      https://bugzilla.kernel.org
4280 F:      Documentation/admin-guide/pm/cpufreq.rst
4281 F:      Documentation/admin-guide/pm/intel_pstate.rst
4282 F:      Documentation/cpu-freq/
4283 F:      Documentation/devicetree/bindings/cpufreq/
4284 F:      drivers/cpufreq/
4285 F:      kernel/sched/cpufreq*.c
4286 F:      include/linux/cpufreq.h
4287 F:      include/linux/sched/cpufreq.h
4288 F:      tools/testing/selftests/cpufreq/
4289
4290 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4291 M:      Viresh Kumar <viresh.kumar@linaro.org>
4292 M:      Sudeep Holla <sudeep.holla@arm.com>
4293 L:      linux-pm@vger.kernel.org
4294 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4295 S:      Maintained
4296 F:      drivers/cpufreq/arm_big_little.h
4297 F:      drivers/cpufreq/arm_big_little.c
4298
4299 CPU POWER MONITORING SUBSYSTEM
4300 M:      Thomas Renninger <trenn@suse.com>
4301 M:      Shuah Khan <shuah@kernel.org>
4302 M:      Shuah Khan <skhan@linuxfoundation.org>
4303 L:      linux-pm@vger.kernel.org
4304 S:      Maintained
4305 F:      tools/power/cpupower/
4306
4307 CPUID/MSR DRIVER
4308 M:      "H. Peter Anvin" <hpa@zytor.com>
4309 S:      Maintained
4310 F:      arch/x86/kernel/cpuid.c
4311 F:      arch/x86/kernel/msr.c
4312
4313 CPUIDLE DRIVER - ARM BIG LITTLE
4314 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4315 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4316 L:      linux-pm@vger.kernel.org
4317 L:      linux-arm-kernel@lists.infradead.org
4318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4319 S:      Maintained
4320 F:      drivers/cpuidle/cpuidle-big_little.c
4321
4322 CPUIDLE DRIVER - ARM EXYNOS
4323 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4324 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4325 M:      Kukjin Kim <kgene@kernel.org>
4326 L:      linux-pm@vger.kernel.org
4327 L:      linux-samsung-soc@vger.kernel.org
4328 S:      Supported
4329 F:      drivers/cpuidle/cpuidle-exynos.c
4330 F:      arch/arm/mach-exynos/pm.c
4331
4332 CPUIDLE DRIVER - ARM PSCI
4333 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4334 M:      Sudeep Holla <sudeep.holla@arm.com>
4335 L:      linux-pm@vger.kernel.org
4336 L:      linux-arm-kernel@lists.infradead.org
4337 S:      Supported
4338 F:      drivers/cpuidle/cpuidle-psci.c
4339
4340 CPU IDLE TIME MANAGEMENT FRAMEWORK
4341 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4342 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4343 L:      linux-pm@vger.kernel.org
4344 S:      Maintained
4345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4346 B:      https://bugzilla.kernel.org
4347 F:      Documentation/admin-guide/pm/cpuidle.rst
4348 F:      Documentation/driver-api/pm/cpuidle.rst
4349 F:      drivers/cpuidle/*
4350 F:      include/linux/cpuidle.h
4351
4352 CRAMFS FILESYSTEM
4353 M:      Nicolas Pitre <nico@fluxnic.net>
4354 S:      Maintained
4355 F:      Documentation/filesystems/cramfs.txt
4356 F:      fs/cramfs/
4357
4358 CREATIVE SB0540
4359 M:      Bastien Nocera <hadess@hadess.net>
4360 L:      linux-input@vger.kernel.org
4361 S:      Maintained
4362 F:      drivers/hid/hid-creative-sb0540.c
4363
4364 CRYPTO API
4365 M:      Herbert Xu <herbert@gondor.apana.org.au>
4366 M:      "David S. Miller" <davem@davemloft.net>
4367 L:      linux-crypto@vger.kernel.org
4368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4370 S:      Maintained
4371 F:      Documentation/crypto/
4372 F:      Documentation/devicetree/bindings/crypto/
4373 F:      arch/*/crypto/
4374 F:      crypto/
4375 F:      drivers/crypto/
4376 F:      include/crypto/
4377 F:      include/linux/crypto*
4378 F:      lib/crypto/
4379
4380 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4381 M:      Neil Horman <nhorman@tuxdriver.com>
4382 L:      linux-crypto@vger.kernel.org
4383 S:      Maintained
4384 F:      crypto/ansi_cprng.c
4385 F:      crypto/rng.c
4386
4387 CS3308 MEDIA DRIVER
4388 M:      Hans Verkuil <hverkuil@xs4all.nl>
4389 L:      linux-media@vger.kernel.org
4390 T:      git git://linuxtv.org/media_tree.git
4391 W:      http://linuxtv.org
4392 S:      Odd Fixes
4393 F:      drivers/media/i2c/cs3308.c
4394
4395 CS5535 Audio ALSA driver
4396 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4397 S:      Maintained
4398 F:      sound/pci/cs5535audio/
4399
4400 CSI DRIVERS FOR ALLWINNER V3s
4401 M:      Yong Deng <yong.deng@magewell.com>
4402 L:      linux-media@vger.kernel.org
4403 T:      git git://linuxtv.org/media_tree.git
4404 S:      Maintained
4405 F:      drivers/media/platform/sunxi/sun6i-csi/
4406 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4407
4408 CW1200 WLAN driver
4409 M:      Solomon Peachy <pizza@shaftnet.org>
4410 S:      Maintained
4411 F:      drivers/net/wireless/st/cw1200/
4412
4413 CX18 VIDEO4LINUX DRIVER
4414 M:      Andy Walls <awalls@md.metrocast.net>
4415 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4416 L:      linux-media@vger.kernel.org
4417 T:      git git://linuxtv.org/media_tree.git
4418 W:      https://linuxtv.org
4419 W:      http://www.ivtvdriver.org/index.php/Cx18
4420 S:      Maintained
4421 F:      Documentation/media/v4l-drivers/cx18*
4422 F:      drivers/media/pci/cx18/
4423 F:      include/uapi/linux/ivtv*
4424
4425 CX2341X MPEG ENCODER HELPER MODULE
4426 M:      Hans Verkuil <hverkuil@xs4all.nl>
4427 L:      linux-media@vger.kernel.org
4428 T:      git git://linuxtv.org/media_tree.git
4429 W:      https://linuxtv.org
4430 S:      Maintained
4431 F:      drivers/media/common/cx2341x*
4432 F:      include/media/drv-intf/cx2341x.h
4433
4434 CX24120 MEDIA DRIVER
4435 M:      Jemma Denson <jdenson@gmail.com>
4436 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4437 L:      linux-media@vger.kernel.org
4438 W:      https://linuxtv.org
4439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4440 S:      Maintained
4441 F:      drivers/media/dvb-frontends/cx24120*
4442
4443 CX88 VIDEO4LINUX DRIVER
4444 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4445 L:      linux-media@vger.kernel.org
4446 W:      https://linuxtv.org
4447 T:      git git://linuxtv.org/media_tree.git
4448 S:      Odd fixes
4449 F:      Documentation/media/v4l-drivers/cx88*
4450 F:      drivers/media/pci/cx88/
4451
4452 CXD2820R MEDIA DRIVER
4453 M:      Antti Palosaari <crope@iki.fi>
4454 L:      linux-media@vger.kernel.org
4455 W:      https://linuxtv.org
4456 W:      http://palosaari.fi/linux/
4457 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4458 T:      git git://linuxtv.org/anttip/media_tree.git
4459 S:      Maintained
4460 F:      drivers/media/dvb-frontends/cxd2820r*
4461
4462 CXGB3 ETHERNET DRIVER (CXGB3)
4463 M:      Vishal Kulkarni <vishal@chelsio.com>
4464 L:      netdev@vger.kernel.org
4465 W:      http://www.chelsio.com
4466 S:      Supported
4467 F:      drivers/net/ethernet/chelsio/cxgb3/
4468
4469 CXGB3 ISCSI DRIVER (CXGB3I)
4470 M:      Karen Xie <kxie@chelsio.com>
4471 L:      linux-scsi@vger.kernel.org
4472 W:      http://www.chelsio.com
4473 S:      Supported
4474 F:      drivers/scsi/cxgbi/cxgb3i
4475
4476 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4477 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4478 L:      linux-rdma@vger.kernel.org
4479 W:      http://www.openfabrics.org
4480 S:      Supported
4481 F:      drivers/infiniband/hw/cxgb3/
4482 F:      include/uapi/rdma/cxgb3-abi.h
4483
4484 CXGB4 CRYPTO DRIVER (chcr)
4485 M:      Atul Gupta <atul.gupta@chelsio.com>
4486 L:      linux-crypto@vger.kernel.org
4487 W:      http://www.chelsio.com
4488 S:      Supported
4489 F:      drivers/crypto/chelsio
4490
4491 CXGB4 ETHERNET DRIVER (CXGB4)
4492 M:      Vishal Kulkarni <vishal@chelsio.com>
4493 L:      netdev@vger.kernel.org
4494 W:      http://www.chelsio.com
4495 S:      Supported
4496 F:      drivers/net/ethernet/chelsio/cxgb4/
4497
4498 CXGB4 ISCSI DRIVER (CXGB4I)
4499 M:      Karen Xie <kxie@chelsio.com>
4500 L:      linux-scsi@vger.kernel.org
4501 W:      http://www.chelsio.com
4502 S:      Supported
4503 F:      drivers/scsi/cxgbi/cxgb4i
4504
4505 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4506 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4507 L:      linux-rdma@vger.kernel.org
4508 W:      http://www.openfabrics.org
4509 S:      Supported
4510 F:      drivers/infiniband/hw/cxgb4/
4511 F:      include/uapi/rdma/cxgb4-abi.h
4512
4513 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4514 M:      Casey Leedom <leedom@chelsio.com>
4515 L:      netdev@vger.kernel.org
4516 W:      http://www.chelsio.com
4517 S:      Supported
4518 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4519
4520 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4521 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4522 M:      Andrew Donnellan <ajd@linux.ibm.com>
4523 L:      linuxppc-dev@lists.ozlabs.org
4524 S:      Supported
4525 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4526 F:      drivers/misc/cxl/
4527 F:      include/misc/cxl*
4528 F:      include/uapi/misc/cxl.h
4529 F:      Documentation/powerpc/cxl.rst
4530 F:      Documentation/ABI/testing/sysfs-class-cxl
4531
4532 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4533 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4534 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4535 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4536 L:      linux-scsi@vger.kernel.org
4537 S:      Supported
4538 F:      drivers/scsi/cxlflash/
4539 F:      include/uapi/scsi/cxlflash_ioctl.h
4540 F:      Documentation/powerpc/cxlflash.rst
4541
4542 CYBERPRO FB DRIVER
4543 M:      Russell King <linux@armlinux.org.uk>
4544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4545 W:      http://www.armlinux.org.uk/
4546 S:      Maintained
4547 F:      drivers/video/fbdev/cyber2000fb.*
4548
4549 CYCLADES ASYNC MUX DRIVER
4550 W:      http://www.cyclades.com/
4551 S:      Orphan
4552 F:      drivers/tty/cyclades.c
4553 F:      include/linux/cyclades.h
4554 F:      include/uapi/linux/cyclades.h
4555
4556 CYCLADES PC300 DRIVER
4557 W:      http://www.cyclades.com/
4558 S:      Orphan
4559 F:      drivers/net/wan/pc300*
4560
4561 CYPRESS_FIRMWARE 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/common/cypress_firmware*
4570
4571 CYTTSP TOUCHSCREEN DRIVER
4572 M:      Ferruh Yigit <fery@cypress.com>
4573 L:      linux-input@vger.kernel.org
4574 S:      Supported
4575 F:      drivers/input/touchscreen/cyttsp*
4576 F:      include/linux/input/cyttsp.h
4577
4578 D-LINK DIR-685 TOUCHKEYS DRIVER
4579 M:      Linus Walleij <linus.walleij@linaro.org>
4580 L:      linux-input@vger.kernel.org
4581 S:      Supported
4582 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4583
4584 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4585 M:      Joshua Kinard <kumba@gentoo.org>
4586 S:      Maintained
4587 F:      drivers/rtc/rtc-ds1685.c
4588 F:      include/linux/rtc/ds1685.h
4589
4590 DAMA SLAVE for AX.25
4591 M:      Joerg Reuter <jreuter@yaina.de>
4592 W:      http://yaina.de/jreuter/
4593 W:      http://www.qsl.net/dl1bke/
4594 L:      linux-hams@vger.kernel.org
4595 S:      Maintained
4596 F:      net/ax25/af_ax25.c
4597 F:      net/ax25/ax25_dev.c
4598 F:      net/ax25/ax25_ds_*
4599 F:      net/ax25/ax25_in.c
4600 F:      net/ax25/ax25_out.c
4601 F:      net/ax25/ax25_timer.c
4602 F:      net/ax25/sysctl_net_ax25.c
4603
4604 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4605 L:      netdev@vger.kernel.org
4606 S:      Orphan
4607 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4608 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4609
4610 DC390/AM53C974 SCSI driver
4611 M:      Hannes Reinecke <hare@suse.com>
4612 L:      linux-scsi@vger.kernel.org
4613 S:      Maintained
4614 F:      drivers/scsi/am53c974.c
4615
4616 DC395x SCSI driver
4617 M:      Oliver Neukum <oliver@neukum.org>
4618 M:      Ali Akcaagac <aliakc@web.de>
4619 M:      Jamie Lenehan <lenehan@twibble.org>
4620 L:      dc395x@twibble.org
4621 W:      http://twibble.org/dist/dc395x/
4622 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4623 S:      Maintained
4624 F:      Documentation/scsi/dc395x.txt
4625 F:      drivers/scsi/dc395x.*
4626
4627 DCCP PROTOCOL
4628 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4629 L:      dccp@vger.kernel.org
4630 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4631 S:      Maintained
4632 F:      include/linux/dccp.h
4633 F:      include/uapi/linux/dccp.h
4634 F:      include/linux/tfrc.h
4635 F:      net/dccp/
4636
4637 DECnet NETWORK LAYER
4638 W:      http://linux-decnet.sourceforge.net
4639 L:      linux-decnet-user@lists.sourceforge.net
4640 S:      Orphan
4641 F:      Documentation/networking/decnet.txt
4642 F:      net/decnet/
4643
4644 DECSTATION PLATFORM SUPPORT
4645 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4646 L:      linux-mips@vger.kernel.org
4647 W:      http://www.linux-mips.org/wiki/DECstation
4648 S:      Maintained
4649 F:      arch/mips/dec/
4650 F:      arch/mips/include/asm/dec/
4651 F:      arch/mips/include/asm/mach-dec/
4652
4653 DEFXX FDDI NETWORK DRIVER
4654 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4655 S:      Maintained
4656 F:      drivers/net/fddi/defxx.*
4657
4658 DELL SMBIOS DRIVER
4659 M:      Pali Rohár <pali.rohar@gmail.com>
4660 M:      Mario Limonciello <mario.limonciello@dell.com>
4661 L:      platform-driver-x86@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/platform/x86/dell-smbios.*
4664
4665 DELL SMBIOS SMM DRIVER
4666 M:      Mario Limonciello <mario.limonciello@dell.com>
4667 L:      platform-driver-x86@vger.kernel.org
4668 S:      Maintained
4669 F:      drivers/platform/x86/dell-smbios-smm.c
4670
4671 DELL SMBIOS WMI DRIVER
4672 M:      Mario Limonciello <mario.limonciello@dell.com>
4673 L:      platform-driver-x86@vger.kernel.org
4674 S:      Maintained
4675 F:      drivers/platform/x86/dell-smbios-wmi.c
4676 F:      tools/wmi/dell-smbios-example.c
4677
4678 DEFZA FDDI NETWORK DRIVER
4679 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4680 S:      Maintained
4681 F:      drivers/net/fddi/defza.*
4682
4683 DELL LAPTOP DRIVER
4684 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4685 M:      Pali Rohár <pali.rohar@gmail.com>
4686 L:      platform-driver-x86@vger.kernel.org
4687 S:      Maintained
4688 F:      drivers/platform/x86/dell-laptop.c
4689
4690 DELL LAPTOP FREEFALL DRIVER
4691 M:      Pali Rohár <pali.rohar@gmail.com>
4692 S:      Maintained
4693 F:      drivers/platform/x86/dell-smo8800.c
4694
4695 DELL LAPTOP RBTN DRIVER
4696 M:      Pali Rohár <pali.rohar@gmail.com>
4697 S:      Maintained
4698 F:      drivers/platform/x86/dell-rbtn.*
4699
4700 DELL REMOTE BIOS UPDATE DRIVER
4701 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4702 L:      platform-driver-x86@vger.kernel.org
4703 S:      Maintained
4704 F:      drivers/platform/x86/dell_rbu.c
4705
4706 DELL LAPTOP SMM DRIVER
4707 M:      Pali Rohár <pali.rohar@gmail.com>
4708 S:      Maintained
4709 F:      drivers/hwmon/dell-smm-hwmon.c
4710 F:      include/uapi/linux/i8k.h
4711
4712 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4713 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4714 L:      platform-driver-x86@vger.kernel.org
4715 S:      Maintained
4716 F:      Documentation/driver-api/dcdbas.rst
4717 F:      drivers/platform/x86/dcdbas.*
4718
4719 DELL WMI NOTIFICATIONS DRIVER
4720 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4721 M:      Pali Rohár <pali.rohar@gmail.com>
4722 S:      Maintained
4723 F:      drivers/platform/x86/dell-wmi.c
4724
4725 DELL WMI DESCRIPTOR DRIVER
4726 M:      Mario Limonciello <mario.limonciello@dell.com>
4727 S:      Maintained
4728 F:      drivers/platform/x86/dell-wmi-descriptor.c
4729
4730 DELTA ST MEDIA DRIVER
4731 M:      Hugues Fruchet <hugues.fruchet@st.com>
4732 L:      linux-media@vger.kernel.org
4733 T:      git git://linuxtv.org/media_tree.git
4734 W:      https://linuxtv.org
4735 S:      Supported
4736 F:      drivers/media/platform/sti/delta
4737
4738 DENALI NAND DRIVER
4739 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4740 L:      linux-mtd@lists.infradead.org
4741 S:      Supported
4742 F:      drivers/mtd/nand/raw/denali*
4743
4744 DESIGNWARE EDMA CORE IP DRIVER
4745 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
4746 L:      dmaengine@vger.kernel.org
4747 S:      Maintained
4748 F:      drivers/dma/dw-edma/
4749 F:      include/linux/dma/edma.h
4750
4751 DESIGNWARE USB2 DRD IP DRIVER
4752 M:      Minas Harutyunyan <hminas@synopsys.com>
4753 L:      linux-usb@vger.kernel.org
4754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4755 S:      Maintained
4756 F:      drivers/usb/dwc2/
4757
4758 DESIGNWARE USB3 DRD IP DRIVER
4759 M:      Felipe Balbi <balbi@kernel.org>
4760 L:      linux-usb@vger.kernel.org
4761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4762 S:      Maintained
4763 F:      drivers/usb/dwc3/
4764
4765 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4766 M:      Andreas Klinger <ak@it-klinger.de>
4767 L:      linux-iio@vger.kernel.org
4768 S:      Maintained
4769 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4770 F:      drivers/iio/proximity/srf*.c
4771
4772 DEVICE COREDUMP (DEV_COREDUMP)
4773 M:      Johannes Berg <johannes@sipsolutions.net>
4774 L:      linux-kernel@vger.kernel.org
4775 S:      Maintained
4776 F:      drivers/base/devcoredump.c
4777 F:      include/linux/devcoredump.h
4778
4779 DEVICE FREQUENCY (DEVFREQ)
4780 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4781 M:      Kyungmin Park <kyungmin.park@samsung.com>
4782 R:      Chanwoo Choi <cw00.choi@samsung.com>
4783 L:      linux-pm@vger.kernel.org
4784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4785 S:      Maintained
4786 F:      drivers/devfreq/
4787 F:      include/linux/devfreq.h
4788 F:      Documentation/devicetree/bindings/devfreq/
4789 F:      include/trace/events/devfreq.h
4790
4791 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4792 M:      Chanwoo Choi <cw00.choi@samsung.com>
4793 L:      linux-pm@vger.kernel.org
4794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4795 S:      Supported
4796 F:      drivers/devfreq/event/
4797 F:      drivers/devfreq/devfreq-event.c
4798 F:      include/linux/devfreq-event.h
4799 F:      Documentation/devicetree/bindings/devfreq/event/
4800
4801 DEVICE NUMBER REGISTRY
4802 M:      Torben Mathiasen <device@lanana.org>
4803 W:      http://lanana.org/docs/device-list/index.html
4804 S:      Maintained
4805
4806 DEVICE-MAPPER  (LVM)
4807 M:      Alasdair Kergon <agk@redhat.com>
4808 M:      Mike Snitzer <snitzer@redhat.com>
4809 M:      dm-devel@redhat.com
4810 L:      dm-devel@redhat.com
4811 W:      http://sources.redhat.com/dm
4812 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4814 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4815 S:      Maintained
4816 F:      Documentation/admin-guide/device-mapper/
4817 F:      drivers/md/Makefile
4818 F:      drivers/md/Kconfig
4819 F:      drivers/md/dm*
4820 F:      drivers/md/persistent-data/
4821 F:      include/linux/device-mapper.h
4822 F:      include/linux/dm-*.h
4823 F:      include/uapi/linux/dm-*.h
4824
4825 DEVLINK
4826 M:      Jiri Pirko <jiri@mellanox.com>
4827 L:      netdev@vger.kernel.org
4828 S:      Supported
4829 F:      net/core/devlink.c
4830 F:      include/net/devlink.h
4831 F:      include/uapi/linux/devlink.h
4832
4833 DIALOG SEMICONDUCTOR DRIVERS
4834 M:      Support Opensource <support.opensource@diasemi.com>
4835 W:      http://www.dialog-semiconductor.com/products
4836 S:      Supported
4837 F:      Documentation/hwmon/da90??.rst
4838 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4839 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4840 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4841 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4842 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
4843 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4844 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4845 F:      drivers/gpio/gpio-da90??.c
4846 F:      drivers/hwmon/da90??-hwmon.c
4847 F:      drivers/iio/adc/da91??-*.c
4848 F:      drivers/input/misc/da90??_onkey.c
4849 F:      drivers/input/touchscreen/da9052_tsi.c
4850 F:      drivers/leds/leds-da90??.c
4851 F:      drivers/mfd/da903x.c
4852 F:      drivers/mfd/da90??-*.c
4853 F:      drivers/mfd/da91??-*.c
4854 F:      drivers/power/supply/da9052-battery.c
4855 F:      drivers/power/supply/da91??-*.c
4856 F:      drivers/regulator/da903x.c
4857 F:      drivers/regulator/da9???-regulator.[ch]
4858 F:      drivers/regulator/slg51000-regulator.[ch]
4859 F:      drivers/thermal/da90??-thermal.c
4860 F:      drivers/rtc/rtc-da90??.c
4861 F:      drivers/video/backlight/da90??_bl.c
4862 F:      drivers/watchdog/da90??_wdt.c
4863 F:      include/linux/mfd/da903x.h
4864 F:      include/linux/mfd/da9052/
4865 F:      include/linux/mfd/da9055/
4866 F:      include/linux/mfd/da9062/
4867 F:      include/linux/mfd/da9063/
4868 F:      include/linux/mfd/da9150/
4869 F:      include/linux/regulator/da9211.h
4870 F:      include/sound/da[79]*.h
4871 F:      sound/soc/codecs/da[79]*.[ch]
4872
4873 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4874 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4875 L:      linux-gpio@vger.kernel.org
4876 S:      Maintained
4877 F:      drivers/gpio/gpio-gpio-mm.c
4878
4879 DIOLAN U2C-12 I2C DRIVER
4880 M:      Guenter Roeck <linux@roeck-us.net>
4881 L:      linux-i2c@vger.kernel.org
4882 S:      Maintained
4883 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4884
4885 FILESYSTEM DIRECT ACCESS (DAX)
4886 M:      Dan Williams <dan.j.williams@intel.com>
4887 R:      Matthew Wilcox <willy@infradead.org>
4888 R:      Jan Kara <jack@suse.cz>
4889 L:      linux-fsdevel@vger.kernel.org
4890 L:      linux-nvdimm@lists.01.org
4891 S:      Supported
4892 F:      fs/dax.c
4893 F:      include/linux/dax.h
4894 F:      include/trace/events/fs_dax.h
4895
4896 DEVICE DIRECT ACCESS (DAX)
4897 M:      Dan Williams <dan.j.williams@intel.com>
4898 M:      Vishal Verma <vishal.l.verma@intel.com>
4899 M:      Keith Busch <keith.busch@intel.com>
4900 M:      Dave Jiang <dave.jiang@intel.com>
4901 L:      linux-nvdimm@lists.01.org
4902 S:      Supported
4903 F:      drivers/dax/
4904
4905 DIRECTORY NOTIFICATION (DNOTIFY)
4906 M:      Jan Kara <jack@suse.cz>
4907 R:      Amir Goldstein <amir73il@gmail.com>
4908 L:      linux-fsdevel@vger.kernel.org
4909 S:      Maintained
4910 F:      Documentation/filesystems/dnotify.txt
4911 F:      fs/notify/dnotify/
4912 F:      include/linux/dnotify.h
4913
4914 DISK GEOMETRY AND PARTITION HANDLING
4915 M:      Andries Brouwer <aeb@cwi.nl>
4916 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4917 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4918 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4919 S:      Maintained
4920
4921 DISKQUOTA
4922 M:      Jan Kara <jack@suse.com>
4923 S:      Maintained
4924 F:      Documentation/filesystems/quota.txt
4925 F:      fs/quota/
4926 F:      include/linux/quota*.h
4927 F:      include/uapi/linux/quota*.h
4928
4929 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4930 M:      Bernie Thompson <bernie@plugable.com>
4931 L:      linux-fbdev@vger.kernel.org
4932 S:      Maintained
4933 W:      http://plugable.com/category/projects/udlfb/
4934 F:      drivers/video/fbdev/udlfb.c
4935 F:      include/video/udlfb.h
4936 F:      Documentation/fb/udlfb.rst
4937
4938 DISTRIBUTED LOCK MANAGER (DLM)
4939 M:      Christine Caulfield <ccaulfie@redhat.com>
4940 M:      David Teigland <teigland@redhat.com>
4941 L:      cluster-devel@redhat.com
4942 W:      http://sources.redhat.com/cluster/
4943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4944 S:      Supported
4945 F:      fs/dlm/
4946
4947 DMA BUFFER SHARING FRAMEWORK
4948 M:      Sumit Semwal <sumit.semwal@linaro.org>
4949 S:      Maintained
4950 L:      linux-media@vger.kernel.org
4951 L:      dri-devel@lists.freedesktop.org
4952 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4953 F:      drivers/dma-buf/
4954 F:      include/linux/dma-buf*
4955 F:      include/linux/reservation.h
4956 F:      include/linux/*fence.h
4957 F:      Documentation/driver-api/dma-buf.rst
4958 T:      git git://anongit.freedesktop.org/drm/drm-misc
4959
4960 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4961 M:      Vinod Koul <vkoul@kernel.org>
4962 L:      dmaengine@vger.kernel.org
4963 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4964 S:      Maintained
4965 F:      drivers/dma/
4966 F:      include/linux/dmaengine.h
4967 F:      include/linux/of_dma.h
4968 F:      Documentation/devicetree/bindings/dma/
4969 F:      Documentation/driver-api/dmaengine/
4970 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4971
4972 DMA MAPPING HELPERS
4973 M:      Christoph Hellwig <hch@lst.de>
4974 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4975 R:      Robin Murphy <robin.murphy@arm.com>
4976 L:      iommu@lists.linux-foundation.org
4977 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4978 W:      http://git.infradead.org/users/hch/dma-mapping.git
4979 S:      Supported
4980 F:      kernel/dma/
4981 F:      include/asm-generic/dma-mapping.h
4982 F:      include/linux/dma-direct.h
4983 F:      include/linux/dma-mapping.h
4984 F:      include/linux/dma-noncoherent.h
4985
4986 DME1737 HARDWARE MONITOR DRIVER
4987 M:      Juerg Haefliger <juergh@gmail.com>
4988 L:      linux-hwmon@vger.kernel.org
4989 S:      Maintained
4990 F:      Documentation/hwmon/dme1737.rst
4991 F:      drivers/hwmon/dme1737.c
4992
4993 DMI/SMBIOS SUPPORT
4994 M:      Jean Delvare <jdelvare@suse.com>
4995 S:      Maintained
4996 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4997 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4998 F:      drivers/firmware/dmi-id.c
4999 F:      drivers/firmware/dmi_scan.c
5000 F:      include/linux/dmi.h
5001
5002 DOCUMENTATION
5003 M:      Jonathan Corbet <corbet@lwn.net>
5004 L:      linux-doc@vger.kernel.org
5005 S:      Maintained
5006 F:      Documentation/
5007 F:      scripts/documentation-file-ref-check
5008 F:      scripts/kernel-doc
5009 F:      scripts/sphinx-pre-install
5010 X:      Documentation/ABI/
5011 X:      Documentation/firmware-guide/acpi/
5012 X:      Documentation/devicetree/
5013 X:      Documentation/i2c/
5014 X:      Documentation/media/
5015 X:      Documentation/power/
5016 X:      Documentation/spi/
5017 T:      git git://git.lwn.net/linux.git docs-next
5018
5019 DOCUMENTATION/ITALIAN
5020 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5021 L:      linux-doc@vger.kernel.org
5022 S:      Maintained
5023 F:      Documentation/translations/it_IT
5024
5025 DOCUMENTATION SCRIPTS
5026 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5027 L:      linux-doc@vger.kernel.org
5028 S:      Maintained
5029 F:      scripts/documentation-file-ref-check
5030 F:      scripts/sphinx-pre-install
5031 F:      Documentation/sphinx/parse-headers.pl
5032
5033 DONGWOON DW9714 LENS VOICE COIL DRIVER
5034 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5035 L:      linux-media@vger.kernel.org
5036 T:      git git://linuxtv.org/media_tree.git
5037 S:      Maintained
5038 F:      drivers/media/i2c/dw9714.c
5039 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5040
5041 DONGWOON DW9807 LENS VOICE COIL DRIVER
5042 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5043 L:      linux-media@vger.kernel.org
5044 T:      git git://linuxtv.org/media_tree.git
5045 S:      Maintained
5046 F:      drivers/media/i2c/dw9807-vcm.c
5047 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5048
5049 DOUBLETALK DRIVER
5050 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5051 L:      blinux-list@redhat.com
5052 S:      Maintained
5053 F:      drivers/char/dtlk.c
5054 F:      include/linux/dtlk.h
5055
5056 DPAA2 DATAPATH I/O (DPIO) DRIVER
5057 M:      Roy Pledge <Roy.Pledge@nxp.com>
5058 L:      linux-kernel@vger.kernel.org
5059 S:      Maintained
5060 F:      drivers/soc/fsl/dpio
5061
5062 DPAA2 ETHERNET DRIVER
5063 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5064 L:      netdev@vger.kernel.org
5065 S:      Maintained
5066 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5067 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5068 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5069 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5070 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5071
5072 DPAA2 ETHERNET SWITCH DRIVER
5073 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
5074 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5075 L:      linux-kernel@vger.kernel.org
5076 S:      Maintained
5077 F:      drivers/staging/fsl-dpaa2/ethsw
5078
5079 DPT_I2O SCSI RAID DRIVER
5080 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5081 L:      linux-scsi@vger.kernel.org
5082 W:      http://www.adaptec.com/
5083 S:      Maintained
5084 F:      drivers/scsi/dpt*
5085 F:      drivers/scsi/dpt/
5086
5087 DRBD DRIVER
5088 M:      Philipp Reisner <philipp.reisner@linbit.com>
5089 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5090 L:      drbd-dev@lists.linbit.com
5091 W:      http://www.drbd.org
5092 T:      git git://git.linbit.com/linux-drbd.git
5093 T:      git git://git.linbit.com/drbd-8.4.git
5094 S:      Supported
5095 F:      drivers/block/drbd/
5096 F:      lib/lru_cache.c
5097 F:      Documentation/admin-guide/blockdev/
5098
5099 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5100 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5101 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5103 S:      Supported
5104 F:      Documentation/kobject.txt
5105 F:      drivers/base/
5106 F:      fs/debugfs/
5107 F:      fs/sysfs/
5108 F:      include/linux/debugfs.h
5109 F:      include/linux/kobj*
5110 F:      lib/kobj*
5111
5112 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
5113 M:      Kevin Hilman <khilman@kernel.org>
5114 M:      Nishanth Menon <nm@ti.com>
5115 S:      Maintained
5116 F:      drivers/power/avs/
5117 F:      include/linux/power/smartreflex.h
5118 L:      linux-pm@vger.kernel.org
5119
5120 DRM DRIVER FOR ARM PL111 CLCD
5121 M:      Eric Anholt <eric@anholt.net>
5122 T:      git git://anongit.freedesktop.org/drm/drm-misc
5123 S:      Supported
5124 F:      drivers/gpu/drm/pl111/
5125
5126 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5127 M:      Linus Walleij <linus.walleij@linaro.org>
5128 T:      git git://anongit.freedesktop.org/drm/drm-misc
5129 S:      Maintained
5130 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5131 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
5132
5133 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5134 M:      Dave Airlie <airlied@redhat.com>
5135 S:      Odd Fixes
5136 F:      drivers/gpu/drm/ast/
5137
5138 DRM DRIVER FOR ASPEED BMC GFX
5139 M:      Joel Stanley <joel@jms.id.au>
5140 L:      linux-aspeed@lists.ozlabs.org
5141 T:      git git://anongit.freedesktop.org/drm/drm-misc
5142 S:      Supported
5143 F:      drivers/gpu/drm/aspeed/
5144 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5145
5146 DRM DRIVER FOR BOCHS VIRTUAL GPU
5147 M:      Gerd Hoffmann <kraxel@redhat.com>
5148 L:      virtualization@lists.linux-foundation.org
5149 T:      git git://anongit.freedesktop.org/drm/drm-misc
5150 S:      Maintained
5151 F:      drivers/gpu/drm/bochs/
5152
5153 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5154 M:      Linus Walleij <linus.walleij@linaro.org>
5155 T:      git git://anongit.freedesktop.org/drm/drm-misc
5156 S:      Maintained
5157 F:      drivers/gpu/drm/tve200/
5158
5159 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5160 M:      Jagan Teki <jagan@amarulasolutions.com>
5161 S:      Maintained
5162 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5163 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
5164
5165 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5166 M:      Hans de Goede <hdegoede@redhat.com>
5167 T:      git git://anongit.freedesktop.org/drm/drm-misc
5168 S:      Maintained
5169 F:      drivers/gpu/drm/tiny/gm12u320.c
5170
5171 DRM DRIVER FOR ILITEK ILI9225 PANELS
5172 M:      David Lechner <david@lechnology.com>
5173 T:      git git://anongit.freedesktop.org/drm/drm-misc
5174 S:      Maintained
5175 F:      drivers/gpu/drm/tiny/ili9225.c
5176 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5177
5178 DRM DRIVER FOR HX8357D PANELS
5179 M:      Eric Anholt <eric@anholt.net>
5180 T:      git git://anongit.freedesktop.org/drm/drm-misc
5181 S:      Maintained
5182 F:      drivers/gpu/drm/tiny/hx8357d.c
5183 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5184
5185 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5186 S:      Orphan / Obsolete
5187 F:      drivers/gpu/drm/i810/
5188 F:      include/uapi/drm/i810_drm.h
5189
5190 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5191 S:      Orphan / Obsolete
5192 F:      drivers/gpu/drm/mga/
5193 F:      include/uapi/drm/mga_drm.h
5194
5195 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5196 M:      Dave Airlie <airlied@redhat.com>
5197 S:      Odd Fixes
5198 F:      drivers/gpu/drm/mgag200/
5199
5200 DRM DRIVER FOR MI0283QT
5201 M:      Noralf Trønnes <noralf@tronnes.org>
5202 T:      git git://anongit.freedesktop.org/drm/drm-misc
5203 S:      Maintained
5204 F:      drivers/gpu/drm/tiny/mi0283qt.c
5205 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5206
5207 DRM DRIVER FOR MSM ADRENO GPU
5208 M:      Rob Clark <robdclark@gmail.com>
5209 M:      Sean Paul <sean@poorly.run>
5210 L:      linux-arm-msm@vger.kernel.org
5211 L:      dri-devel@lists.freedesktop.org
5212 L:      freedreno@lists.freedesktop.org
5213 T:      git https://gitlab.freedesktop.org/drm/msm.git
5214 S:      Maintained
5215 F:      drivers/gpu/drm/msm/
5216 F:      include/uapi/drm/msm_drm.h
5217 F:      Documentation/devicetree/bindings/display/msm/
5218
5219 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5220 M:      Ben Skeggs <bskeggs@redhat.com>
5221 L:      dri-devel@lists.freedesktop.org
5222 L:      nouveau@lists.freedesktop.org
5223 T:      git git://github.com/skeggsb/linux
5224 S:      Supported
5225 F:      drivers/gpu/drm/nouveau/
5226 F:      include/uapi/drm/nouveau_drm.h
5227
5228 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5229 M:      Stefan Mavrodiev <stefan@olimex.com>
5230 S:      Maintained
5231 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5232 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5233
5234 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5235 M:      Noralf Trønnes <noralf@tronnes.org>
5236 T:      git git://anongit.freedesktop.org/drm/drm-misc
5237 S:      Maintained
5238 F:      drivers/gpu/drm/tiny/repaper.c
5239 F:      Documentation/devicetree/bindings/display/repaper.txt
5240
5241 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5242 M:      Dave Airlie <airlied@redhat.com>
5243 M:      Gerd Hoffmann <kraxel@redhat.com>
5244 L:      virtualization@lists.linux-foundation.org
5245 T:      git git://anongit.freedesktop.org/drm/drm-misc
5246 S:      Obsolete
5247 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5248 F:      drivers/gpu/drm/cirrus/
5249
5250 DRM DRIVER FOR QXL VIRTUAL GPU
5251 M:      Dave Airlie <airlied@redhat.com>
5252 M:      Gerd Hoffmann <kraxel@redhat.com>
5253 L:      virtualization@lists.linux-foundation.org
5254 L:      spice-devel@lists.freedesktop.org
5255 T:      git git://anongit.freedesktop.org/drm/drm-misc
5256 S:      Maintained
5257 F:      drivers/gpu/drm/qxl/
5258 F:      include/uapi/drm/qxl_drm.h
5259
5260 DRM DRIVER FOR RAYDIUM RM67191 PANELS
5261 M:      Robert Chiras <robert.chiras@nxp.com>
5262 S:      Maintained
5263 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
5264 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.txt
5265
5266 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5267 S:      Orphan / Obsolete
5268 F:      drivers/gpu/drm/r128/
5269 F:      include/uapi/drm/r128_drm.h
5270
5271 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5272 M:      Guido Günther <agx@sigxcpu.org>
5273 R:      Purism Kernel Team <kernel@puri.sm>
5274 S:      Maintained
5275 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5276 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5277
5278 DRM DRIVER FOR SAVAGE VIDEO CARDS
5279 S:      Orphan / Obsolete
5280 F:      drivers/gpu/drm/savage/
5281 F:      include/uapi/drm/savage_drm.h
5282
5283 DRM DRIVER FOR SIS VIDEO CARDS
5284 S:      Orphan / Obsolete
5285 F:      drivers/gpu/drm/sis/
5286 F:      include/uapi/drm/sis_drm.h
5287
5288 DRM DRIVER FOR SITRONIX ST7701 PANELS
5289 M:      Jagan Teki <jagan@amarulasolutions.com>
5290 S:      Maintained
5291 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5292 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5293
5294 DRM DRIVER FOR SITRONIX ST7586 PANELS
5295 M:      David Lechner <david@lechnology.com>
5296 T:      git git://anongit.freedesktop.org/drm/drm-misc
5297 S:      Maintained
5298 F:      drivers/gpu/drm/tiny/st7586.c
5299 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5300
5301 DRM DRIVER FOR SITRONIX ST7735R PANELS
5302 M:      David Lechner <david@lechnology.com>
5303 T:      git git://anongit.freedesktop.org/drm/drm-misc
5304 S:      Maintained
5305 F:      drivers/gpu/drm/tiny/st7735r.c
5306 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5307
5308 DRM DRIVER FOR ST-ERICSSON MCDE
5309 M:      Linus Walleij <linus.walleij@linaro.org>
5310 T:      git git://anongit.freedesktop.org/drm/drm-misc
5311 S:      Maintained
5312 F:      drivers/gpu/drm/mcde/
5313 F:      Documentation/devicetree/bindings/display/ste,mcde.txt
5314
5315 DRM DRIVER FOR TDFX VIDEO CARDS
5316 S:      Orphan / Obsolete
5317 F:      drivers/gpu/drm/tdfx/
5318
5319 DRM DRIVER FOR TPO TPG110 PANELS
5320 M:      Linus Walleij <linus.walleij@linaro.org>
5321 T:      git git://anongit.freedesktop.org/drm/drm-misc
5322 S:      Maintained
5323 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5324 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
5325
5326 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5327 M:      Dave Airlie <airlied@redhat.com>
5328 R:      Sean Paul <sean@poorly.run>
5329 L:      dri-devel@lists.freedesktop.org
5330 S:      Odd Fixes
5331 F:      drivers/gpu/drm/udl/
5332 T:      git git://anongit.freedesktop.org/drm/drm-misc
5333
5334 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5335 M:      Hans de Goede <hdegoede@redhat.com>
5336 L:      dri-devel@lists.freedesktop.org
5337 S:      Maintained
5338 F:      drivers/gpu/drm/vboxvideo/
5339 T:      git git://anongit.freedesktop.org/drm/drm-misc
5340
5341 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5342 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5343 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5344 R:      Daniel Vetter <daniel@ffwll.ch>
5345 T:      git git://anongit.freedesktop.org/drm/drm-misc
5346 S:      Maintained
5347 L:      dri-devel@lists.freedesktop.org
5348 F:      drivers/gpu/drm/vkms/
5349 F:      Documentation/gpu/vkms.rst
5350
5351 DRM DRIVER FOR VMWARE VIRTUAL GPU
5352 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5353 M:      Thomas Hellstrom <thellstrom@vmware.com>
5354 L:      dri-devel@lists.freedesktop.org
5355 T:      git git://people.freedesktop.org/~thomash/linux
5356 S:      Supported
5357 F:      drivers/gpu/drm/vmwgfx/
5358 F:      include/uapi/drm/vmwgfx_drm.h
5359
5360 DRM DRIVERS
5361 M:      David Airlie <airlied@linux.ie>
5362 M:      Daniel Vetter <daniel@ffwll.ch>
5363 L:      dri-devel@lists.freedesktop.org
5364 T:      git git://anongit.freedesktop.org/drm/drm
5365 B:      https://bugs.freedesktop.org/
5366 C:      irc://chat.freenode.net/dri-devel
5367 S:      Maintained
5368 F:      drivers/gpu/drm/
5369 F:      drivers/gpu/vga/
5370 F:      Documentation/devicetree/bindings/display/
5371 F:      Documentation/devicetree/bindings/gpu/
5372 F:      Documentation/gpu/
5373 F:      include/drm/
5374 F:      include/uapi/drm/
5375 F:      include/linux/vga*
5376
5377 DRM DRIVERS AND MISC GPU PATCHES
5378 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5379 M:      Maxime Ripard <mripard@kernel.org>
5380 M:      Sean Paul <sean@poorly.run>
5381 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5382 S:      Maintained
5383 T:      git git://anongit.freedesktop.org/drm/drm-misc
5384 F:      Documentation/gpu/
5385 F:      drivers/gpu/vga/
5386 F:      drivers/gpu/drm/*
5387 F:      include/drm/drm*
5388 F:      include/uapi/drm/drm*
5389 F:      include/linux/vga*
5390
5391 DRM DRIVERS FOR ALLWINNER A10
5392 M:      Maxime Ripard <mripard@kernel.org>
5393 L:      dri-devel@lists.freedesktop.org
5394 S:      Supported
5395 F:      drivers/gpu/drm/sun4i/
5396 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5397 T:      git git://anongit.freedesktop.org/drm/drm-misc
5398
5399 DRM DRIVERS FOR AMLOGIC SOCS
5400 M:      Neil Armstrong <narmstrong@baylibre.com>
5401 L:      dri-devel@lists.freedesktop.org
5402 L:      linux-amlogic@lists.infradead.org
5403 W:      http://linux-meson.com/
5404 S:      Supported
5405 F:      drivers/gpu/drm/meson/
5406 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
5407 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
5408 F:      Documentation/gpu/meson.rst
5409 T:      git git://anongit.freedesktop.org/drm/drm-misc
5410
5411 DRM DRIVERS FOR ATMEL HLCDC
5412 M:      Sam Ravnborg <sam@ravnborg.org>
5413 M:      Boris Brezillon <bbrezillon@kernel.org>
5414 L:      dri-devel@lists.freedesktop.org
5415 S:      Supported
5416 F:      drivers/gpu/drm/atmel-hlcdc/
5417 F:      Documentation/devicetree/bindings/display/atmel/
5418 T:      git git://anongit.freedesktop.org/drm/drm-misc
5419
5420 DRM DRIVERS FOR BRIDGE CHIPS
5421 M:      Andrzej Hajda <a.hajda@samsung.com>
5422 M:      Neil Armstrong <narmstrong@baylibre.com>
5423 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5424 R:      Jonas Karlman <jonas@kwiboo.se>
5425 R:      Jernej Skrabec <jernej.skrabec@siol.net>
5426 S:      Maintained
5427 T:      git git://anongit.freedesktop.org/drm/drm-misc
5428 F:      drivers/gpu/drm/bridge/
5429
5430 DRM DRIVERS FOR EXYNOS
5431 M:      Inki Dae <inki.dae@samsung.com>
5432 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5433 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5434 M:      Kyungmin Park <kyungmin.park@samsung.com>
5435 L:      dri-devel@lists.freedesktop.org
5436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5437 S:      Supported
5438 F:      drivers/gpu/drm/exynos/
5439 F:      include/uapi/drm/exynos_drm.h
5440 F:      Documentation/devicetree/bindings/display/exynos/
5441
5442 DRM DRIVERS FOR FREESCALE DCU
5443 M:      Stefan Agner <stefan@agner.ch>
5444 M:      Alison Wang <alison.wang@nxp.com>
5445 L:      dri-devel@lists.freedesktop.org
5446 S:      Supported
5447 F:      drivers/gpu/drm/fsl-dcu/
5448 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5449 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5450 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5451 T:      git git://anongit.freedesktop.org/drm/drm-misc
5452
5453 DRM DRIVERS FOR FREESCALE IMX
5454 M:      Philipp Zabel <p.zabel@pengutronix.de>
5455 L:      dri-devel@lists.freedesktop.org
5456 S:      Maintained
5457 F:      drivers/gpu/drm/imx/
5458 F:      drivers/gpu/ipu-v3/
5459 F:      Documentation/devicetree/bindings/display/imx/
5460
5461 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5462 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5463 L:      dri-devel@lists.freedesktop.org
5464 T:      git git://github.com/patjak/drm-gma500
5465 S:      Maintained
5466 F:      drivers/gpu/drm/gma500/
5467
5468 DRM DRIVERS FOR HISILICON
5469 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5470 M:      Rongrong Zou <zourongrong@gmail.com>
5471 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5472 R:      Chen Feng <puck.chen@hisilicon.com>
5473 L:      dri-devel@lists.freedesktop.org
5474 T:      git git://github.com/xin3liang/linux.git
5475 S:      Maintained
5476 F:      drivers/gpu/drm/hisilicon/
5477 F:      Documentation/devicetree/bindings/display/hisilicon/
5478
5479 DRM DRIVERS FOR LIMA
5480 M:      Qiang Yu <yuq825@gmail.com>
5481 L:      dri-devel@lists.freedesktop.org
5482 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5483 S:      Maintained
5484 F:      drivers/gpu/drm/lima/
5485 F:      include/uapi/drm/lima_drm.h
5486 T:      git git://anongit.freedesktop.org/drm/drm-misc
5487
5488 DRM DRIVERS FOR MEDIATEK
5489 M:      CK Hu <ck.hu@mediatek.com>
5490 M:      Philipp Zabel <p.zabel@pengutronix.de>
5491 L:      dri-devel@lists.freedesktop.org
5492 S:      Supported
5493 F:      drivers/gpu/drm/mediatek/
5494 F:      Documentation/devicetree/bindings/display/mediatek/
5495
5496 DRM DRIVERS FOR NVIDIA TEGRA
5497 M:      Thierry Reding <thierry.reding@gmail.com>
5498 L:      dri-devel@lists.freedesktop.org
5499 L:      linux-tegra@vger.kernel.org
5500 T:      git git://anongit.freedesktop.org/tegra/linux.git
5501 S:      Supported
5502 F:      drivers/gpu/drm/tegra/
5503 F:      drivers/gpu/host1x/
5504 F:      include/linux/host1x.h
5505 F:      include/uapi/drm/tegra_drm.h
5506 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5507
5508 DRM DRIVERS FOR RENESAS
5509 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5510 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5511 L:      dri-devel@lists.freedesktop.org
5512 L:      linux-renesas-soc@vger.kernel.org
5513 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5514 S:      Supported
5515 F:      drivers/gpu/drm/rcar-du/
5516 F:      drivers/gpu/drm/shmobile/
5517 F:      include/linux/platform_data/shmob_drm.h
5518 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5519 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5520 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5521
5522 DRM DRIVERS FOR ROCKCHIP
5523 M:      Sandy Huang <hjc@rock-chips.com>
5524 M:      Heiko Stübner <heiko@sntech.de>
5525 L:      dri-devel@lists.freedesktop.org
5526 S:      Maintained
5527 F:      drivers/gpu/drm/rockchip/
5528 F:      Documentation/devicetree/bindings/display/rockchip/
5529 T:      git git://anongit.freedesktop.org/drm/drm-misc
5530
5531 DRM DRIVERS FOR STI
5532 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5533 M:      Vincent Abriou <vincent.abriou@st.com>
5534 L:      dri-devel@lists.freedesktop.org
5535 T:      git git://anongit.freedesktop.org/drm/drm-misc
5536 S:      Maintained
5537 F:      drivers/gpu/drm/sti
5538 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5539
5540 DRM DRIVERS FOR STM
5541 M:      Yannick Fertre <yannick.fertre@st.com>
5542 M:      Philippe Cornu <philippe.cornu@st.com>
5543 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5544 M:      Vincent Abriou <vincent.abriou@st.com>
5545 L:      dri-devel@lists.freedesktop.org
5546 T:      git git://anongit.freedesktop.org/drm/drm-misc
5547 S:      Maintained
5548 F:      drivers/gpu/drm/stm
5549 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5550
5551 DRM DRIVERS FOR TI LCDC
5552 M:      Jyri Sarha <jsarha@ti.com>
5553 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5554 L:      dri-devel@lists.freedesktop.org
5555 S:      Maintained
5556 F:      drivers/gpu/drm/tilcdc/
5557 F:      Documentation/devicetree/bindings/display/tilcdc/
5558
5559 DRM DRIVERS FOR TI OMAP
5560 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5561 L:      dri-devel@lists.freedesktop.org
5562 S:      Maintained
5563 F:      drivers/gpu/drm/omapdrm/
5564 F:      Documentation/devicetree/bindings/display/ti/
5565
5566 DRM DRIVERS FOR V3D
5567 M:      Eric Anholt <eric@anholt.net>
5568 S:      Supported
5569 F:      drivers/gpu/drm/v3d/
5570 F:      include/uapi/drm/v3d_drm.h
5571 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5572 T:      git git://anongit.freedesktop.org/drm/drm-misc
5573
5574 DRM DRIVERS FOR VC4
5575 M:      Eric Anholt <eric@anholt.net>
5576 T:      git git://github.com/anholt/linux
5577 S:      Supported
5578 F:      drivers/gpu/drm/vc4/
5579 F:      include/uapi/drm/vc4_drm.h
5580 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5581 T:      git git://anongit.freedesktop.org/drm/drm-misc
5582
5583 DRM DRIVERS FOR VIVANTE GPU IP
5584 M:      Lucas Stach <l.stach@pengutronix.de>
5585 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5586 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5587 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5588 L:      dri-devel@lists.freedesktop.org
5589 S:      Maintained
5590 F:      drivers/gpu/drm/etnaviv/
5591 F:      include/uapi/drm/etnaviv_drm.h
5592 F:      Documentation/devicetree/bindings/display/etnaviv/
5593
5594 DRM DRIVERS FOR ZTE ZX
5595 M:      Shawn Guo <shawnguo@kernel.org>
5596 L:      dri-devel@lists.freedesktop.org
5597 S:      Maintained
5598 F:      drivers/gpu/drm/zte/
5599 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5600 T:      git git://anongit.freedesktop.org/drm/drm-misc
5601
5602 DRM PANEL DRIVERS
5603 M:      Thierry Reding <thierry.reding@gmail.com>
5604 R:      Sam Ravnborg <sam@ravnborg.org>
5605 L:      dri-devel@lists.freedesktop.org
5606 T:      git git://anongit.freedesktop.org/drm/drm-misc
5607 S:      Maintained
5608 F:      drivers/gpu/drm/drm_panel.c
5609 F:      drivers/gpu/drm/panel/
5610 F:      include/drm/drm_panel.h
5611 F:      Documentation/devicetree/bindings/display/panel/
5612
5613 DRM DRIVERS FOR XEN
5614 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5615 T:      git git://anongit.freedesktop.org/drm/drm-misc
5616 L:      dri-devel@lists.freedesktop.org
5617 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5618 S:      Supported
5619 F:      drivers/gpu/drm/xen/
5620 F:      Documentation/gpu/xen-front.rst
5621
5622 DRM TTM SUBSYSTEM
5623 M:      Christian Koenig <christian.koenig@amd.com>
5624 M:      Huang Rui <ray.huang@amd.com>
5625 T:      git git://people.freedesktop.org/~agd5f/linux
5626 S:      Maintained
5627 L:      dri-devel@lists.freedesktop.org
5628 F:      include/drm/ttm/
5629 F:      drivers/gpu/drm/ttm/
5630
5631 DSBR100 USB FM RADIO DRIVER
5632 M:      Alexey Klimov <klimov.linux@gmail.com>
5633 L:      linux-media@vger.kernel.org
5634 T:      git git://linuxtv.org/media_tree.git
5635 S:      Maintained
5636 F:      drivers/media/radio/dsbr100.c
5637
5638 DT3155 MEDIA DRIVER
5639 M:      Hans Verkuil <hverkuil@xs4all.nl>
5640 L:      linux-media@vger.kernel.org
5641 T:      git git://linuxtv.org/media_tree.git
5642 W:      https://linuxtv.org
5643 S:      Odd Fixes
5644 F:      drivers/media/pci/dt3155/
5645
5646 DVB_USB_AF9015 MEDIA DRIVER
5647 M:      Antti Palosaari <crope@iki.fi>
5648 L:      linux-media@vger.kernel.org
5649 W:      https://linuxtv.org
5650 W:      http://palosaari.fi/linux/
5651 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5652 T:      git git://linuxtv.org/anttip/media_tree.git
5653 S:      Maintained
5654 F:      drivers/media/usb/dvb-usb-v2/af9015*
5655
5656 DVB_USB_AF9035 MEDIA DRIVER
5657 M:      Antti Palosaari <crope@iki.fi>
5658 L:      linux-media@vger.kernel.org
5659 W:      https://linuxtv.org
5660 W:      http://palosaari.fi/linux/
5661 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5662 T:      git git://linuxtv.org/anttip/media_tree.git
5663 S:      Maintained
5664 F:      drivers/media/usb/dvb-usb-v2/af9035*
5665
5666 DVB_USB_ANYSEE MEDIA DRIVER
5667 M:      Antti Palosaari <crope@iki.fi>
5668 L:      linux-media@vger.kernel.org
5669 W:      https://linuxtv.org
5670 W:      http://palosaari.fi/linux/
5671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5672 T:      git git://linuxtv.org/anttip/media_tree.git
5673 S:      Maintained
5674 F:      drivers/media/usb/dvb-usb-v2/anysee*
5675
5676 DVB_USB_AU6610 MEDIA DRIVER
5677 M:      Antti Palosaari <crope@iki.fi>
5678 L:      linux-media@vger.kernel.org
5679 W:      https://linuxtv.org
5680 W:      http://palosaari.fi/linux/
5681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5682 T:      git git://linuxtv.org/anttip/media_tree.git
5683 S:      Maintained
5684 F:      drivers/media/usb/dvb-usb-v2/au6610*
5685
5686 DVB_USB_CE6230 MEDIA DRIVER
5687 M:      Antti Palosaari <crope@iki.fi>
5688 L:      linux-media@vger.kernel.org
5689 W:      https://linuxtv.org
5690 W:      http://palosaari.fi/linux/
5691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5692 T:      git git://linuxtv.org/anttip/media_tree.git
5693 S:      Maintained
5694 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5695
5696 DVB_USB_CXUSB MEDIA DRIVER
5697 M:      Michael Krufky <mkrufky@linuxtv.org>
5698 L:      linux-media@vger.kernel.org
5699 W:      https://linuxtv.org
5700 W:      http://github.com/mkrufky
5701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5702 T:      git git://linuxtv.org/media_tree.git
5703 S:      Maintained
5704 F:      drivers/media/usb/dvb-usb/cxusb*
5705
5706 DVB_USB_EC168 MEDIA DRIVER
5707 M:      Antti Palosaari <crope@iki.fi>
5708 L:      linux-media@vger.kernel.org
5709 W:      https://linuxtv.org
5710 W:      http://palosaari.fi/linux/
5711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5712 T:      git git://linuxtv.org/anttip/media_tree.git
5713 S:      Maintained
5714 F:      drivers/media/usb/dvb-usb-v2/ec168*
5715
5716 DVB_USB_GL861 MEDIA DRIVER
5717 M:      Antti Palosaari <crope@iki.fi>
5718 L:      linux-media@vger.kernel.org
5719 W:      https://linuxtv.org
5720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5721 T:      git git://linuxtv.org/anttip/media_tree.git
5722 S:      Maintained
5723 F:      drivers/media/usb/dvb-usb-v2/gl861*
5724
5725 DVB_USB_MXL111SF MEDIA DRIVER
5726 M:      Michael Krufky <mkrufky@linuxtv.org>
5727 L:      linux-media@vger.kernel.org
5728 W:      https://linuxtv.org
5729 W:      http://github.com/mkrufky
5730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5731 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5732 S:      Maintained
5733 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5734
5735 DVB_USB_RTL28XXU MEDIA DRIVER
5736 M:      Antti Palosaari <crope@iki.fi>
5737 L:      linux-media@vger.kernel.org
5738 W:      https://linuxtv.org
5739 W:      http://palosaari.fi/linux/
5740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5741 T:      git git://linuxtv.org/anttip/media_tree.git
5742 S:      Maintained
5743 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5744
5745 DVB_USB_V2 MEDIA DRIVER
5746 M:      Antti Palosaari <crope@iki.fi>
5747 L:      linux-media@vger.kernel.org
5748 W:      https://linuxtv.org
5749 W:      http://palosaari.fi/linux/
5750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5751 T:      git git://linuxtv.org/anttip/media_tree.git
5752 S:      Maintained
5753 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5754 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5755
5756 DYNAMIC DEBUG
5757 M:      Jason Baron <jbaron@akamai.com>
5758 S:      Maintained
5759 F:      lib/dynamic_debug.c
5760 F:      include/linux/dynamic_debug.h
5761
5762 DYNAMIC INTERRUPT MODERATION
5763 M:      Tal Gilboa <talgi@mellanox.com>
5764 S:      Maintained
5765 F:      include/linux/dim.h
5766 F:      lib/dim/
5767
5768 DZ DECSTATION DZ11 SERIAL DRIVER
5769 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5770 S:      Maintained
5771 F:      drivers/tty/serial/dz.*
5772
5773 E3X0 POWER BUTTON DRIVER
5774 M:      Moritz Fischer <moritz.fischer@ettus.com>
5775 L:      usrp-users@lists.ettus.com
5776 W:      http://www.ettus.com
5777 S:      Supported
5778 F:      drivers/input/misc/e3x0-button.c
5779 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5780
5781 E4000 MEDIA DRIVER
5782 M:      Antti Palosaari <crope@iki.fi>
5783 L:      linux-media@vger.kernel.org
5784 W:      https://linuxtv.org
5785 W:      http://palosaari.fi/linux/
5786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5787 T:      git git://linuxtv.org/anttip/media_tree.git
5788 S:      Maintained
5789 F:      drivers/media/tuners/e4000*
5790
5791 EARTH_PT1 MEDIA DRIVER
5792 M:      Akihiro Tsukada <tskd08@gmail.com>
5793 L:      linux-media@vger.kernel.org
5794 S:      Odd Fixes
5795 F:      drivers/media/pci/pt1/
5796
5797 EARTH_PT3 MEDIA DRIVER
5798 M:      Akihiro Tsukada <tskd08@gmail.com>
5799 L:      linux-media@vger.kernel.org
5800 S:      Odd Fixes
5801 F:      drivers/media/pci/pt3/
5802
5803 EC100 MEDIA DRIVER
5804 M:      Antti Palosaari <crope@iki.fi>
5805 L:      linux-media@vger.kernel.org
5806 W:      https://linuxtv.org
5807 W:      http://palosaari.fi/linux/
5808 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5809 T:      git git://linuxtv.org/anttip/media_tree.git
5810 S:      Maintained
5811 F:      drivers/media/dvb-frontends/ec100*
5812
5813 ECRYPT FILE SYSTEM
5814 M:      Tyler Hicks <tyhicks@canonical.com>
5815 L:      ecryptfs@vger.kernel.org
5816 W:      http://ecryptfs.org
5817 W:      https://launchpad.net/ecryptfs
5818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5819 S:      Supported
5820 F:      Documentation/filesystems/ecryptfs.txt
5821 F:      fs/ecryptfs/
5822
5823 EDAC-AMD64
5824 M:      Borislav Petkov <bp@alien8.de>
5825 L:      linux-edac@vger.kernel.org
5826 S:      Maintained
5827 F:      drivers/edac/amd64_edac*
5828
5829 EDAC-ARMADA
5830 M:      Jan Luebbe <jlu@pengutronix.de>
5831 L:      linux-edac@vger.kernel.org
5832 S:      Maintained
5833 F:      drivers/edac/armada_xp_*
5834
5835 EDAC-AST2500
5836 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5837 S:      Supported
5838 F:      drivers/edac/aspeed_edac.c
5839 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5840
5841 EDAC-BLUEFIELD
5842 M:      Shravan Kumar Ramani <sramani@mellanox.com>
5843 S:      Supported
5844 F:      drivers/edac/bluefield_edac.c
5845
5846 EDAC-CALXEDA
5847 M:      Robert Richter <rric@kernel.org>
5848 L:      linux-edac@vger.kernel.org
5849 S:      Maintained
5850 F:      drivers/edac/highbank*
5851
5852 EDAC-CAVIUM OCTEON
5853 M:      Ralf Baechle <ralf@linux-mips.org>
5854 M:      David Daney <david.daney@cavium.com>
5855 L:      linux-edac@vger.kernel.org
5856 L:      linux-mips@vger.kernel.org
5857 S:      Supported
5858 F:      drivers/edac/octeon_edac*
5859
5860 EDAC-CAVIUM THUNDERX
5861 M:      David Daney <david.daney@cavium.com>
5862 M:      Jan Glauber <jglauber@cavium.com>
5863 L:      linux-edac@vger.kernel.org
5864 S:      Supported
5865 F:      drivers/edac/thunderx_edac*
5866
5867 EDAC-CORE
5868 M:      Borislav Petkov <bp@alien8.de>
5869 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5870 M:      Tony Luck <tony.luck@intel.com>
5871 R:      James Morse <james.morse@arm.com>
5872 R:      Robert Richter <rrichter@marvell.com>
5873 L:      linux-edac@vger.kernel.org
5874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
5875 S:      Supported
5876 F:      Documentation/admin-guide/ras.rst
5877 F:      Documentation/driver-api/edac.rst
5878 F:      drivers/edac/
5879 F:      include/linux/edac.h
5880
5881 EDAC-E752X
5882 M:      Mark Gross <mark.gross@intel.com>
5883 L:      linux-edac@vger.kernel.org
5884 S:      Maintained
5885 F:      drivers/edac/e752x_edac.c
5886
5887 EDAC-E7XXX
5888 L:      linux-edac@vger.kernel.org
5889 S:      Maintained
5890 F:      drivers/edac/e7xxx_edac.c
5891
5892 EDAC-FSL_DDR
5893 M:      York Sun <york.sun@nxp.com>
5894 L:      linux-edac@vger.kernel.org
5895 S:      Maintained
5896 F:      drivers/edac/fsl_ddr_edac.*
5897
5898 EDAC-GHES
5899 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5900 L:      linux-edac@vger.kernel.org
5901 S:      Maintained
5902 F:      drivers/edac/ghes_edac.c
5903
5904 EDAC-I10NM
5905 M:      Tony Luck <tony.luck@intel.com>
5906 L:      linux-edac@vger.kernel.org
5907 S:      Maintained
5908 F:      drivers/edac/i10nm_base.c
5909
5910 EDAC-I3000
5911 L:      linux-edac@vger.kernel.org
5912 S:      Orphan
5913 F:      drivers/edac/i3000_edac.c
5914
5915 EDAC-I5000
5916 L:      linux-edac@vger.kernel.org
5917 S:      Maintained
5918 F:      drivers/edac/i5000_edac.c
5919
5920 EDAC-I5400
5921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5922 L:      linux-edac@vger.kernel.org
5923 S:      Maintained
5924 F:      drivers/edac/i5400_edac.c
5925
5926 EDAC-I7300
5927 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5928 L:      linux-edac@vger.kernel.org
5929 S:      Maintained
5930 F:      drivers/edac/i7300_edac.c
5931
5932 EDAC-I7CORE
5933 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5934 L:      linux-edac@vger.kernel.org
5935 S:      Maintained
5936 F:      drivers/edac/i7core_edac.c
5937
5938 EDAC-I82443BXGX
5939 M:      Tim Small <tim@buttersideup.com>
5940 L:      linux-edac@vger.kernel.org
5941 S:      Maintained
5942 F:      drivers/edac/i82443bxgx_edac.c
5943
5944 EDAC-I82975X
5945 M:      "Arvind R." <arvino55@gmail.com>
5946 L:      linux-edac@vger.kernel.org
5947 S:      Maintained
5948 F:      drivers/edac/i82975x_edac.c
5949
5950 EDAC-IE31200
5951 M:      Jason Baron <jbaron@akamai.com>
5952 L:      linux-edac@vger.kernel.org
5953 S:      Maintained
5954 F:      drivers/edac/ie31200_edac.c
5955
5956 EDAC-MPC85XX
5957 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5958 L:      linux-edac@vger.kernel.org
5959 S:      Maintained
5960 F:      drivers/edac/mpc85xx_edac.[ch]
5961
5962 EDAC-PASEMI
5963 M:      Egor Martovetsky <egor@pasemi.com>
5964 L:      linux-edac@vger.kernel.org
5965 S:      Maintained
5966 F:      drivers/edac/pasemi_edac.c
5967
5968 EDAC-PND2
5969 M:      Tony Luck <tony.luck@intel.com>
5970 L:      linux-edac@vger.kernel.org
5971 S:      Maintained
5972 F:      drivers/edac/pnd2_edac.[ch]
5973
5974 EDAC-R82600
5975 M:      Tim Small <tim@buttersideup.com>
5976 L:      linux-edac@vger.kernel.org
5977 S:      Maintained
5978 F:      drivers/edac/r82600_edac.c
5979
5980 EDAC-SBRIDGE
5981 M:      Tony Luck <tony.luck@intel.com>
5982 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5983 L:      linux-edac@vger.kernel.org
5984 S:      Maintained
5985 F:      drivers/edac/sb_edac.c
5986
5987 EDAC-SIFIVE
5988 M:      Yash Shah <yash.shah@sifive.com>
5989 L:      linux-edac@vger.kernel.org
5990 S:      Supported
5991 F:      drivers/edac/sifive_edac.c
5992
5993 EDAC-SKYLAKE
5994 M:      Tony Luck <tony.luck@intel.com>
5995 L:      linux-edac@vger.kernel.org
5996 S:      Maintained
5997 F:      drivers/edac/skx_*.c
5998
5999 EDAC-TI
6000 M:      Tero Kristo <t-kristo@ti.com>
6001 L:      linux-edac@vger.kernel.org
6002 S:      Maintained
6003 F:      drivers/edac/ti_edac.c
6004
6005 EDAC-QCOM
6006 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6007 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6008 L:      linux-arm-msm@vger.kernel.org
6009 L:      linux-edac@vger.kernel.org
6010 S:      Maintained
6011 F:      drivers/edac/qcom_edac.c
6012
6013 EDIROL UA-101/UA-1000 DRIVER
6014 M:      Clemens Ladisch <clemens@ladisch.de>
6015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6017 S:      Maintained
6018 F:      sound/usb/misc/ua101.c
6019
6020 EFI TEST DRIVER
6021 L:      linux-efi@vger.kernel.org
6022 M:      Ivan Hu <ivan.hu@canonical.com>
6023 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6024 S:      Maintained
6025 F:      drivers/firmware/efi/test/
6026
6027 EFI VARIABLE FILESYSTEM
6028 M:      Matthew Garrett <matthew.garrett@nebula.com>
6029 M:      Jeremy Kerr <jk@ozlabs.org>
6030 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6032 L:      linux-efi@vger.kernel.org
6033 S:      Maintained
6034 F:      fs/efivarfs/
6035
6036 EFIFB FRAMEBUFFER DRIVER
6037 L:      linux-fbdev@vger.kernel.org
6038 M:      Peter Jones <pjones@redhat.com>
6039 S:      Maintained
6040 F:      drivers/video/fbdev/efifb.c
6041
6042 EFS FILESYSTEM
6043 W:      http://aeschi.ch.eu.org/efs/
6044 S:      Orphan
6045 F:      fs/efs/
6046
6047 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6048 M:      Douglas Miller <dougmill@linux.ibm.com>
6049 L:      netdev@vger.kernel.org
6050 S:      Maintained
6051 F:      drivers/net/ethernet/ibm/ehea/
6052
6053 EM28XX VIDEO4LINUX DRIVER
6054 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6055 L:      linux-media@vger.kernel.org
6056 W:      https://linuxtv.org
6057 T:      git git://linuxtv.org/media_tree.git
6058 S:      Maintained
6059 F:      drivers/media/usb/em28xx/
6060 F:      Documentation/media/v4l-drivers/em28xx*
6061
6062 EMBEDDED LINUX
6063 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
6064 M:      Matt Mackall <mpm@selenic.com>
6065 M:      David Woodhouse <dwmw2@infradead.org>
6066 L:      linux-embedded@vger.kernel.org
6067 S:      Maintained
6068
6069 Emulex 10Gbps iSCSI - OneConnect DRIVER
6070 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6071 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6072 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6073 L:      linux-scsi@vger.kernel.org
6074 W:      http://www.broadcom.com
6075 S:      Supported
6076 F:      drivers/scsi/be2iscsi/
6077
6078 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6079 M:      Sathya Perla <sathya.perla@broadcom.com>
6080 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6081 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6082 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6083 L:      netdev@vger.kernel.org
6084 W:      http://www.emulex.com
6085 S:      Supported
6086 F:      drivers/net/ethernet/emulex/benet/
6087
6088 EMULEX ONECONNECT ROCE DRIVER
6089 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6090 M:      Devesh Sharma <devesh.sharma@broadcom.com>
6091 L:      linux-rdma@vger.kernel.org
6092 W:      http://www.broadcom.com
6093 S:      Odd Fixes
6094 F:      drivers/infiniband/hw/ocrdma/
6095 F:      include/uapi/rdma/ocrdma-abi.h
6096
6097 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6098 M:      James Smart <james.smart@broadcom.com>
6099 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6100 L:      linux-scsi@vger.kernel.org
6101 W:      http://www.broadcom.com
6102 S:      Supported
6103 F:      drivers/scsi/lpfc/
6104
6105 ENE CB710 FLASH CARD READER DRIVER
6106 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6107 S:      Maintained
6108 F:      drivers/misc/cb710/
6109 F:      drivers/mmc/host/cb710-mmc.*
6110 F:      include/linux/cb710.h
6111
6112 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6113 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6114 S:      Maintained
6115 F:      drivers/media/rc/ene_ir.*
6116
6117 EPSON S1D13XXX FRAMEBUFFER DRIVER
6118 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6119 S:      Maintained
6120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6121 F:      drivers/video/fbdev/s1d13xxxfb.c
6122 F:      include/video/s1d13xxxfb.h
6123
6124 EROFS FILE SYSTEM
6125 M:      Gao Xiang <gaoxiang25@huawei.com>
6126 M:      Chao Yu <yuchao0@huawei.com>
6127 L:      linux-erofs@lists.ozlabs.org
6128 S:      Maintained
6129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6130 F:      Documentation/filesystems/erofs.txt
6131 F:      fs/erofs/
6132 F:      include/trace/events/erofs.h
6133
6134 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6135 M:      Jeff Layton <jlayton@kernel.org>
6136 S:      Maintained
6137 F:      lib/errseq.c
6138 F:      include/linux/errseq.h
6139
6140 ET131X NETWORK DRIVER
6141 M:      Mark Einon <mark.einon@gmail.com>
6142 S:      Odd Fixes
6143 F:      drivers/net/ethernet/agere/
6144
6145 ETHERNET BRIDGE
6146 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
6147 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
6148 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
6149 L:      netdev@vger.kernel.org
6150 W:      http://www.linuxfoundation.org/en/Net:Bridge
6151 S:      Maintained
6152 F:      include/linux/netfilter_bridge/
6153 F:      net/bridge/
6154
6155 ETHERNET PHY LIBRARY
6156 M:      Andrew Lunn <andrew@lunn.ch>
6157 M:      Florian Fainelli <f.fainelli@gmail.com>
6158 M:      Heiner Kallweit <hkallweit1@gmail.com>
6159 L:      netdev@vger.kernel.org
6160 S:      Maintained
6161 F:      Documentation/ABI/testing/sysfs-class-net-phydev
6162 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
6163 F:      Documentation/devicetree/bindings/net/mdio*
6164 F:      Documentation/networking/phy.rst
6165 F:      drivers/net/phy/
6166 F:      drivers/of/of_mdio.c
6167 F:      drivers/of/of_net.c
6168 F:      include/linux/*mdio*.h
6169 F:      include/linux/of_net.h
6170 F:      include/linux/phy.h
6171 F:      include/linux/phy_fixed.h
6172 F:      include/linux/platform_data/mdio-bcm-unimac.h
6173 F:      include/linux/platform_data/mdio-gpio.h
6174 F:      include/trace/events/mdio.h
6175 F:      include/uapi/linux/mdio.h
6176 F:      include/uapi/linux/mii.h
6177
6178 EXFAT FILE SYSTEM
6179 M:      Valdis Kletnieks <valdis.kletnieks@vt.edu>
6180 L:      linux-fsdevel@vger.kernel.org
6181 S:      Maintained
6182 F:      drivers/staging/exfat/
6183
6184 EXT2 FILE SYSTEM
6185 M:      Jan Kara <jack@suse.com>
6186 L:      linux-ext4@vger.kernel.org
6187 S:      Maintained
6188 F:      Documentation/filesystems/ext2.txt
6189 F:      fs/ext2/
6190 F:      include/linux/ext2*
6191
6192 EXT4 FILE SYSTEM
6193 M:      "Theodore Ts'o" <tytso@mit.edu>
6194 M:      Andreas Dilger <adilger.kernel@dilger.ca>
6195 L:      linux-ext4@vger.kernel.org
6196 W:      http://ext4.wiki.kernel.org
6197 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
6198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
6199 S:      Maintained
6200 F:      Documentation/filesystems/ext4/
6201 F:      fs/ext4/
6202
6203 Extended Verification Module (EVM)
6204 M:      Mimi Zohar <zohar@linux.ibm.com>
6205 L:      linux-integrity@vger.kernel.org
6206 S:      Supported
6207 F:      security/integrity/evm/
6208
6209 EXTENSIBLE FIRMWARE INTERFACE (EFI)
6210 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
6211 L:      linux-efi@vger.kernel.org
6212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6213 S:      Maintained
6214 F:      Documentation/admin-guide/efi-stub.rst
6215 F:      arch/*/kernel/efi.c
6216 F:      arch/x86/boot/compressed/eboot.[ch]
6217 F:      arch/*/include/asm/efi.h
6218 F:      arch/x86/platform/efi/
6219 F:      drivers/firmware/efi/
6220 F:      include/linux/efi*.h
6221 F:      arch/arm/boot/compressed/efi-header.S
6222 F:      arch/arm64/kernel/efi-entry.S
6223
6224 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
6225 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
6226 M:      Chanwoo Choi <cw00.choi@samsung.com>
6227 L:      linux-kernel@vger.kernel.org
6228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6229 S:      Maintained
6230 F:      drivers/extcon/
6231 F:      include/linux/extcon/
6232 F:      include/linux/extcon.h
6233 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
6234 F:      Documentation/devicetree/bindings/extcon/
6235
6236 EXYNOS DP DRIVER
6237 M:      Jingoo Han <jingoohan1@gmail.com>
6238 L:      dri-devel@lists.freedesktop.org
6239 S:      Maintained
6240 F:      drivers/gpu/drm/exynos/exynos_dp*
6241
6242 EXYNOS SYSMMU (IOMMU) driver
6243 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6244 L:      iommu@lists.linux-foundation.org
6245 S:      Maintained
6246 F:      drivers/iommu/exynos-iommu.c
6247
6248 EZchip NPS platform support
6249 M:      Vineet Gupta <vgupta@synopsys.com>
6250 M:      Ofer Levi <oferle@mellanox.com>
6251 S:      Supported
6252 F:      arch/arc/plat-eznps
6253 F:      arch/arc/boot/dts/eznps.dts
6254
6255 F2FS FILE SYSTEM
6256 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6257 M:      Chao Yu <yuchao0@huawei.com>
6258 L:      linux-f2fs-devel@lists.sourceforge.net
6259 W:      https://f2fs.wiki.kernel.org/
6260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6261 S:      Maintained
6262 F:      Documentation/filesystems/f2fs.txt
6263 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6264 F:      fs/f2fs/
6265 F:      include/linux/f2fs_fs.h
6266 F:      include/trace/events/f2fs.h
6267
6268 F71805F HARDWARE MONITORING DRIVER
6269 M:      Jean Delvare <jdelvare@suse.com>
6270 L:      linux-hwmon@vger.kernel.org
6271 S:      Maintained
6272 F:      Documentation/hwmon/f71805f.rst
6273 F:      drivers/hwmon/f71805f.c
6274
6275 FADDR2LINE
6276 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6277 S:      Maintained
6278 F:      scripts/faddr2line
6279
6280 FAILOVER MODULE
6281 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6282 L:      netdev@vger.kernel.org
6283 S:      Supported
6284 F:      net/core/failover.c
6285 F:      include/net/failover.h
6286 F:      Documentation/networking/failover.rst
6287
6288 FANOTIFY
6289 M:      Jan Kara <jack@suse.cz>
6290 R:      Amir Goldstein <amir73il@gmail.com>
6291 L:      linux-fsdevel@vger.kernel.org
6292 S:      Maintained
6293 F:      fs/notify/fanotify/
6294 F:      include/linux/fanotify.h
6295 F:      include/uapi/linux/fanotify.h
6296
6297 FARSYNC SYNCHRONOUS DRIVER
6298 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6299 W:      http://www.farsite.co.uk/
6300 S:      Supported
6301 F:      drivers/net/wan/farsync.*
6302
6303 FAULT INJECTION SUPPORT
6304 M:      Akinobu Mita <akinobu.mita@gmail.com>
6305 S:      Supported
6306 F:      Documentation/fault-injection/
6307 F:      lib/fault-inject.c
6308
6309 FBTFT Framebuffer drivers
6310 S:      Orphan
6311 L:      dri-devel@lists.freedesktop.org
6312 L:      linux-fbdev@vger.kernel.org
6313 F:      drivers/staging/fbtft/
6314
6315 FC0011 TUNER DRIVER
6316 M:      Michael Buesch <m@bues.ch>
6317 L:      linux-media@vger.kernel.org
6318 S:      Maintained
6319 F:      drivers/media/tuners/fc0011.h
6320 F:      drivers/media/tuners/fc0011.c
6321
6322 FC2580 MEDIA DRIVER
6323 M:      Antti Palosaari <crope@iki.fi>
6324 L:      linux-media@vger.kernel.org
6325 W:      https://linuxtv.org
6326 W:      http://palosaari.fi/linux/
6327 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6328 T:      git git://linuxtv.org/anttip/media_tree.git
6329 S:      Maintained
6330 F:      drivers/media/tuners/fc2580*
6331
6332 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6333 M:      Hannes Reinecke <hare@suse.de>
6334 L:      linux-scsi@vger.kernel.org
6335 W:      www.Open-FCoE.org
6336 S:      Supported
6337 F:      drivers/scsi/libfc/
6338 F:      drivers/scsi/fcoe/
6339 F:      include/scsi/fc/
6340 F:      include/scsi/libfc.h
6341 F:      include/scsi/libfcoe.h
6342 F:      include/uapi/scsi/fc/
6343
6344 FILE LOCKING (flock() and fcntl()/lockf())
6345 M:      Jeff Layton <jlayton@kernel.org>
6346 M:      "J. Bruce Fields" <bfields@fieldses.org>
6347 L:      linux-fsdevel@vger.kernel.org
6348 S:      Maintained
6349 F:      include/linux/fcntl.h
6350 F:      include/uapi/linux/fcntl.h
6351 F:      fs/fcntl.c
6352 F:      fs/locks.c
6353
6354 FILESYSTEMS (VFS and infrastructure)
6355 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6356 L:      linux-fsdevel@vger.kernel.org
6357 S:      Maintained
6358 F:      fs/*
6359 F:      include/linux/fs.h
6360 F:      include/linux/fs_types.h
6361 F:      include/uapi/linux/fs.h
6362
6363 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6364 M:      Riku Voipio <riku.voipio@iki.fi>
6365 L:      linux-hwmon@vger.kernel.org
6366 S:      Maintained
6367 F:      drivers/hwmon/f75375s.c
6368 F:      include/linux/f75375s.h
6369
6370 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
6371 M:      Clemens Ladisch <clemens@ladisch.de>
6372 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
6373 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6375 S:      Maintained
6376 F:      sound/firewire/
6377 F:      include/uapi/sound/firewire.h
6378
6379 FIREWIRE MEDIA DRIVERS (firedtv)
6380 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6381 L:      linux-media@vger.kernel.org
6382 L:      linux1394-devel@lists.sourceforge.net
6383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6384 S:      Maintained
6385 F:      drivers/media/firewire/
6386
6387 FIREWIRE SBP-2 TARGET
6388 M:      Chris Boot <bootc@bootc.net>
6389 L:      linux-scsi@vger.kernel.org
6390 L:      target-devel@vger.kernel.org
6391 L:      linux1394-devel@lists.sourceforge.net
6392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6393 S:      Maintained
6394 F:      drivers/target/sbp/
6395
6396 FIREWIRE SUBSYSTEM
6397 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6398 L:      linux1394-devel@lists.sourceforge.net
6399 W:      http://ieee1394.wiki.kernel.org/
6400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6401 S:      Maintained
6402 F:      drivers/firewire/
6403 F:      include/linux/firewire.h
6404 F:      include/uapi/linux/firewire*.h
6405 F:      tools/firewire/
6406
6407 FIRMWARE LOADER (request_firmware)
6408 M:      Luis Chamberlain <mcgrof@kernel.org>
6409 L:      linux-kernel@vger.kernel.org
6410 S:      Maintained
6411 F:      Documentation/firmware_class/
6412 F:      drivers/base/firmware_loader/
6413 F:      include/linux/firmware.h
6414
6415 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6416 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6417 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6418 S:      Maintained
6419 F:      drivers/block/rsxx/
6420
6421 FLEXTIMER FTM-QUADDEC DRIVER
6422 M:      Patrick Havelange <patrick.havelange@essensium.com>
6423 L:      linux-iio@vger.kernel.org
6424 S:      Maintained
6425 F:      Documentation/ABI/testing/sysfs-bus-counter-ftm-quaddec
6426 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
6427 F:      drivers/counter/ftm-quaddec.c
6428
6429 FLOPPY DRIVER
6430 M:      Denis Efremov <efremov@linux.com>
6431 S:      Odd Fixes
6432 L:      linux-block@vger.kernel.org
6433 F:      drivers/block/floppy.c
6434
6435 FPGA MANAGER FRAMEWORK
6436 M:      Moritz Fischer <mdf@kernel.org>
6437 L:      linux-fpga@vger.kernel.org
6438 S:      Maintained
6439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
6440 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6441 F:      Documentation/fpga/
6442 F:      Documentation/driver-api/fpga/
6443 F:      Documentation/devicetree/bindings/fpga/
6444 F:      drivers/fpga/
6445 F:      include/linux/fpga/
6446 W:      http://www.rocketboards.org
6447
6448 FPGA DFL DRIVERS
6449 M:      Wu Hao <hao.wu@intel.com>
6450 L:      linux-fpga@vger.kernel.org
6451 S:      Maintained
6452 F:      Documentation/fpga/dfl.rst
6453 F:      include/uapi/linux/fpga-dfl.h
6454 F:      drivers/fpga/dfl*
6455
6456 FPU EMULATOR
6457 M:      Bill Metzenthen <billm@melbpc.org.au>
6458 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6459 S:      Maintained
6460 F:      arch/x86/math-emu/
6461
6462 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6463 L:      netdev@vger.kernel.org
6464 S:      Orphan
6465 F:      drivers/net/wan/dlci.c
6466 F:      drivers/net/wan/sdla.c
6467
6468 FRAMEBUFFER LAYER
6469 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6470 L:      dri-devel@lists.freedesktop.org
6471 L:      linux-fbdev@vger.kernel.org
6472 T:      git git://anongit.freedesktop.org/drm/drm-misc
6473 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6474 S:      Maintained
6475 F:      Documentation/fb/
6476 F:      drivers/video/
6477 F:      include/video/
6478 F:      include/linux/fb.h
6479 F:      include/uapi/video/
6480 F:      include/uapi/linux/fb.h
6481
6482 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6483 M:      Horia Geantă <horia.geanta@nxp.com>
6484 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6485 L:      linux-crypto@vger.kernel.org
6486 S:      Maintained
6487 F:      drivers/crypto/caam/
6488 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6489
6490 FREESCALE DIU FRAMEBUFFER DRIVER
6491 M:      Timur Tabi <timur@kernel.org>
6492 L:      linux-fbdev@vger.kernel.org
6493 S:      Maintained
6494 F:      drivers/video/fbdev/fsl-diu-fb.*
6495
6496 FREESCALE DMA DRIVER
6497 M:      Li Yang <leoyang.li@nxp.com>
6498 M:      Zhang Wei <zw@zh-kernel.org>
6499 L:      linuxppc-dev@lists.ozlabs.org
6500 S:      Maintained
6501 F:      drivers/dma/fsldma.*
6502
6503 FREESCALE ENETC ETHERNET DRIVERS
6504 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6505 L:      netdev@vger.kernel.org
6506 S:      Maintained
6507 F:      drivers/net/ethernet/freescale/enetc/
6508
6509 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6510 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6511 L:      netdev@vger.kernel.org
6512 S:      Maintained
6513 F:      drivers/net/ethernet/freescale/gianfar*
6514 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6515
6516 FREESCALE GPMI NAND DRIVER
6517 M:      Han Xu <han.xu@nxp.com>
6518 L:      linux-mtd@lists.infradead.org
6519 S:      Maintained
6520 F:      drivers/mtd/nand/raw/gpmi-nand/*
6521
6522 FREESCALE I2C CPM DRIVER
6523 M:      Jochen Friedrich <jochen@scram.de>
6524 L:      linuxppc-dev@lists.ozlabs.org
6525 L:      linux-i2c@vger.kernel.org
6526 S:      Maintained
6527 F:      drivers/i2c/busses/i2c-cpm.c
6528
6529 FREESCALE IMX DDR PMU DRIVER
6530 M:      Frank Li <Frank.li@nxp.com>
6531 L:      linux-arm-kernel@lists.infradead.org
6532 S:      Maintained
6533 F:      drivers/perf/fsl_imx8_ddr_perf.c
6534 F:      Documentation/admin-guide/perf/imx-ddr.rst
6535 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.txt
6536
6537 FREESCALE IMX I2C DRIVER
6538 M:      Oleksij Rempel <o.rempel@pengutronix.de>
6539 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6540 L:      linux-i2c@vger.kernel.org
6541 S:      Maintained
6542 F:      drivers/i2c/busses/i2c-imx.c
6543 F:      Documentation/devicetree/bindings/i2c/i2c-imx.txt
6544
6545 FREESCALE IMX LPI2C DRIVER
6546 M:      Dong Aisheng <aisheng.dong@nxp.com>
6547 L:      linux-i2c@vger.kernel.org
6548 L:      linux-imx@nxp.com
6549 S:      Maintained
6550 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6551 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6552
6553 FREESCALE IMX / MXC FEC DRIVER
6554 M:      Fugang Duan <fugang.duan@nxp.com>
6555 L:      netdev@vger.kernel.org
6556 S:      Maintained
6557 F:      drivers/net/ethernet/freescale/fec_main.c
6558 F:      drivers/net/ethernet/freescale/fec_ptp.c
6559 F:      drivers/net/ethernet/freescale/fec.h
6560 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6561
6562 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6563 M:      Sascha Hauer <s.hauer@pengutronix.de>
6564 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6565 L:      linux-fbdev@vger.kernel.org
6566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6567 S:      Maintained
6568 F:      include/linux/platform_data/video-imxfb.h
6569 F:      drivers/video/fbdev/imxfb.c
6570
6571 FREESCALE QORIQ DPAA ETHERNET DRIVER
6572 M:      Madalin Bucur <madalin.bucur@nxp.com>
6573 L:      netdev@vger.kernel.org
6574 S:      Maintained
6575 F:      drivers/net/ethernet/freescale/dpaa
6576
6577 FREESCALE QORIQ DPAA FMAN DRIVER
6578 M:      Madalin Bucur <madalin.bucur@nxp.com>
6579 L:      netdev@vger.kernel.org
6580 S:      Maintained
6581 F:      drivers/net/ethernet/freescale/fman
6582 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6583
6584 FREESCALE QORIQ PTP CLOCK DRIVER
6585 M:      Yangbo Lu <yangbo.lu@nxp.com>
6586 L:      netdev@vger.kernel.org
6587 S:      Maintained
6588 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
6589 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
6590 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6591 F:      drivers/ptp/ptp_qoriq.c
6592 F:      drivers/ptp/ptp_qoriq_debugfs.c
6593 F:      include/linux/fsl/ptp_qoriq.h
6594 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6595
6596 FREESCALE QUAD SPI DRIVER
6597 M:      Han Xu <han.xu@nxp.com>
6598 L:      linux-spi@vger.kernel.org
6599 S:      Maintained
6600 F:      drivers/spi/spi-fsl-qspi.c
6601
6602 FREESCALE QUICC ENGINE LIBRARY
6603 M:      Qiang Zhao <qiang.zhao@nxp.com>
6604 L:      linuxppc-dev@lists.ozlabs.org
6605 S:      Maintained
6606 F:      drivers/soc/fsl/qe/
6607 F:      include/soc/fsl/*qe*.h
6608 F:      include/soc/fsl/*ucc*.h
6609
6610 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6611 M:      Li Yang <leoyang.li@nxp.com>
6612 L:      netdev@vger.kernel.org
6613 L:      linuxppc-dev@lists.ozlabs.org
6614 S:      Maintained
6615 F:      drivers/net/ethernet/freescale/ucc_geth*
6616
6617 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6618 M:      Zhao Qiang <qiang.zhao@nxp.com>
6619 L:      netdev@vger.kernel.org
6620 L:      linuxppc-dev@lists.ozlabs.org
6621 S:      Maintained
6622 F:      drivers/net/wan/fsl_ucc_hdlc*
6623
6624 FREESCALE QUICC ENGINE UCC UART DRIVER
6625 M:      Timur Tabi <timur@kernel.org>
6626 L:      linuxppc-dev@lists.ozlabs.org
6627 S:      Maintained
6628 F:      drivers/tty/serial/ucc_uart.c
6629
6630 FREESCALE SOC DRIVERS
6631 M:      Li Yang <leoyang.li@nxp.com>
6632 L:      linuxppc-dev@lists.ozlabs.org
6633 L:      linux-arm-kernel@lists.infradead.org
6634 S:      Maintained
6635 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.txt
6636 F:      Documentation/devicetree/bindings/soc/fsl/
6637 F:      drivers/soc/fsl/
6638 F:      include/linux/fsl/
6639
6640 FREESCALE SOC FS_ENET DRIVER
6641 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6642 L:      linuxppc-dev@lists.ozlabs.org
6643 L:      netdev@vger.kernel.org
6644 S:      Maintained
6645 F:      drivers/net/ethernet/freescale/fs_enet/
6646 F:      include/linux/fs_enet_pd.h
6647
6648 FREESCALE SOC SOUND DRIVERS
6649 M:      Timur Tabi <timur@kernel.org>
6650 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6651 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6652 R:      Fabio Estevam <festevam@gmail.com>
6653 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6654 L:      linuxppc-dev@lists.ozlabs.org
6655 S:      Maintained
6656 F:      sound/soc/fsl/fsl*
6657 F:      sound/soc/fsl/imx*
6658 F:      sound/soc/fsl/mpc8610_hpcd.c
6659
6660 FREESCALE USB PERIPHERAL DRIVERS
6661 M:      Li Yang <leoyang.li@nxp.com>
6662 L:      linux-usb@vger.kernel.org
6663 L:      linuxppc-dev@lists.ozlabs.org
6664 S:      Maintained
6665 F:      drivers/usb/gadget/udc/fsl*
6666
6667 FREEVXFS FILESYSTEM
6668 M:      Christoph Hellwig <hch@infradead.org>
6669 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6670 S:      Maintained
6671 F:      fs/freevxfs/
6672
6673 FREEZER
6674 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6675 M:      Pavel Machek <pavel@ucw.cz>
6676 L:      linux-pm@vger.kernel.org
6677 S:      Supported
6678 F:      Documentation/power/freezing-of-tasks.rst
6679 F:      include/linux/freezer.h
6680 F:      kernel/freezer.c
6681
6682 FRONTSWAP API
6683 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6684 L:      linux-kernel@vger.kernel.org
6685 S:      Maintained
6686 F:      mm/frontswap.c
6687 F:      include/linux/frontswap.h
6688
6689 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6690 M:      David Howells <dhowells@redhat.com>
6691 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6692 S:      Supported
6693 F:      Documentation/filesystems/caching/
6694 F:      fs/fscache/
6695 F:      include/linux/fscache*.h
6696
6697 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6698 M:      Theodore Y. Ts'o <tytso@mit.edu>
6699 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6700 M:      Eric Biggers <ebiggers@kernel.org>
6701 L:      linux-fscrypt@vger.kernel.org
6702 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6703 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6704 S:      Supported
6705 F:      fs/crypto/
6706 F:      include/linux/fscrypt*.h
6707 F:      include/uapi/linux/fscrypt.h
6708 F:      Documentation/filesystems/fscrypt.rst
6709
6710 FSI SUBSYSTEM
6711 M:      Jeremy Kerr <jk@ozlabs.org>
6712 M:      Joel Stanley <joel@jms.id.au>
6713 R:      Alistar Popple <alistair@popple.id.au>
6714 R:      Eddie James <eajames@linux.ibm.com>
6715 L:      linux-fsi@lists.ozlabs.org
6716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
6717 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
6718 S:      Supported
6719 F:      drivers/fsi/
6720 F:      include/linux/fsi*.h
6721 F:      include/trace/events/fsi*.h
6722
6723 FSI-ATTACHED I2C DRIVER
6724 M:      Eddie James <eajames@linux.ibm.com>
6725 L:      linux-i2c@vger.kernel.org
6726 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6727 S:      Maintained
6728 F:      drivers/i2c/busses/i2c-fsi.c
6729 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6730
6731 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6732 M:      Jan Kara <jack@suse.cz>
6733 R:      Amir Goldstein <amir73il@gmail.com>
6734 L:      linux-fsdevel@vger.kernel.org
6735 S:      Maintained
6736 F:      fs/notify/
6737 F:      include/linux/fsnotify*.h
6738
6739 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
6740 M:      Eric Biggers <ebiggers@kernel.org>
6741 M:      Theodore Y. Ts'o <tytso@mit.edu>
6742 L:      linux-fscrypt@vger.kernel.org
6743 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6744 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
6745 S:      Supported
6746 F:      fs/verity/
6747 F:      include/linux/fsverity.h
6748 F:      include/uapi/linux/fsverity.h
6749 F:      Documentation/filesystems/fsverity.rst
6750
6751 FUJITSU LAPTOP EXTRAS
6752 M:      Jonathan Woithe <jwoithe@just42.net>
6753 L:      platform-driver-x86@vger.kernel.org
6754 S:      Maintained
6755 F:      drivers/platform/x86/fujitsu-laptop.c
6756
6757 FUJITSU M-5MO LS CAMERA ISP DRIVER
6758 M:      Kyungmin Park <kyungmin.park@samsung.com>
6759 M:      Heungjun Kim <riverful.kim@samsung.com>
6760 L:      linux-media@vger.kernel.org
6761 S:      Maintained
6762 F:      drivers/media/i2c/m5mols/
6763 F:      include/media/i2c/m5mols.h
6764
6765 FUJITSU TABLET EXTRAS
6766 M:      Robert Gerlach <khnz@gmx.de>
6767 L:      platform-driver-x86@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/platform/x86/fujitsu-tablet.c
6770
6771 FUSE: FILESYSTEM IN USERSPACE
6772 M:      Miklos Szeredi <miklos@szeredi.hu>
6773 L:      linux-fsdevel@vger.kernel.org
6774 W:      http://fuse.sourceforge.net/
6775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6776 S:      Maintained
6777 F:      fs/fuse/
6778 F:      include/uapi/linux/fuse.h
6779 F:      Documentation/filesystems/fuse.txt
6780
6781 FUTEX SUBSYSTEM
6782 M:      Thomas Gleixner <tglx@linutronix.de>
6783 M:      Ingo Molnar <mingo@redhat.com>
6784 R:      Peter Zijlstra <peterz@infradead.org>
6785 R:      Darren Hart <dvhart@infradead.org>
6786 L:      linux-kernel@vger.kernel.org
6787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6788 S:      Maintained
6789 F:      kernel/futex.c
6790 F:      include/asm-generic/futex.h
6791 F:      include/linux/futex.h
6792 F:      include/uapi/linux/futex.h
6793 F:      tools/testing/selftests/futex/
6794 F:      tools/perf/bench/futex*
6795 F:      Documentation/*futex*
6796
6797 GCC PLUGINS
6798 M:      Kees Cook <keescook@chromium.org>
6799 R:      Emese Revfy <re.emese@gmail.com>
6800 L:      kernel-hardening@lists.openwall.com
6801 S:      Maintained
6802 F:      scripts/gcc-plugins/
6803 F:      scripts/gcc-plugin.sh
6804 F:      scripts/Makefile.gcc-plugins
6805 F:      Documentation/core-api/gcc-plugins.rst
6806
6807 GASKET DRIVER FRAMEWORK
6808 M:      Rob Springer <rspringer@google.com>
6809 M:      Todd Poynor <toddpoynor@google.com>
6810 M:      Ben Chan <benchan@chromium.org>
6811 S:      Maintained
6812 F:      drivers/staging/gasket/
6813
6814 GCOV BASED KERNEL PROFILING
6815 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6816 S:      Maintained
6817 F:      kernel/gcov/
6818 F:      Documentation/dev-tools/gcov.rst
6819
6820 GDB KERNEL DEBUGGING HELPER SCRIPTS
6821 M:      Jan Kiszka <jan.kiszka@siemens.com>
6822 M:      Kieran Bingham <kbingham@kernel.org>
6823 S:      Supported
6824 F:      scripts/gdb/
6825
6826 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6827 M:      Achim Leubner <achim_leubner@adaptec.com>
6828 L:      linux-scsi@vger.kernel.org
6829 W:      http://www.icp-vortex.com/
6830 S:      Supported
6831 F:      drivers/scsi/gdt*
6832
6833 GEMTEK FM RADIO RECEIVER DRIVER
6834 M:      Hans Verkuil <hverkuil@xs4all.nl>
6835 L:      linux-media@vger.kernel.org
6836 T:      git git://linuxtv.org/media_tree.git
6837 W:      https://linuxtv.org
6838 S:      Maintained
6839 F:      drivers/media/radio/radio-gemtek*
6840
6841 GENERIC ARCHITECTURE TOPOLOGY
6842 M:      Sudeep Holla <sudeep.holla@arm.com>
6843 L:      linux-kernel@vger.kernel.org
6844 S:      Maintained
6845 F:      drivers/base/arch_topology.c
6846 F:      include/linux/arch_topology.h
6847
6848 GENERIC GPIO I2C DRIVER
6849 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6850 S:      Supported
6851 F:      drivers/i2c/busses/i2c-gpio.c
6852 F:      include/linux/platform_data/i2c-gpio.h
6853
6854 GENERIC GPIO I2C MULTIPLEXER DRIVER
6855 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6856 L:      linux-i2c@vger.kernel.org
6857 S:      Supported
6858 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6859 F:      include/linux/platform_data/i2c-mux-gpio.h
6860 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
6861
6862 GENERIC HDLC (WAN) DRIVERS
6863 M:      Krzysztof Halasa <khc@pm.waw.pl>
6864 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6865 S:      Maintained
6866 F:      drivers/net/wan/c101.c
6867 F:      drivers/net/wan/hd6457*
6868 F:      drivers/net/wan/hdlc*
6869 F:      drivers/net/wan/n2.c
6870 F:      drivers/net/wan/pc300too.c
6871 F:      drivers/net/wan/pci200syn.c
6872 F:      drivers/net/wan/wanxl*
6873
6874 GENERIC INCLUDE/ASM HEADER FILES
6875 M:      Arnd Bergmann <arnd@arndb.de>
6876 L:      linux-arch@vger.kernel.org
6877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6878 S:      Maintained
6879 F:      include/asm-generic/
6880 F:      include/uapi/asm-generic/
6881
6882 GENERIC PHY FRAMEWORK
6883 M:      Kishon Vijay Abraham I <kishon@ti.com>
6884 L:      linux-kernel@vger.kernel.org
6885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6886 S:      Supported
6887 F:      drivers/phy/
6888 F:      include/linux/phy/
6889 F:      Documentation/devicetree/bindings/phy/
6890
6891 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6892 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6893 S:      Supported
6894 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6895
6896 GENERIC PM DOMAINS
6897 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6898 M:      Kevin Hilman <khilman@kernel.org>
6899 M:      Ulf Hansson <ulf.hansson@linaro.org>
6900 L:      linux-pm@vger.kernel.org
6901 S:      Supported
6902 F:      drivers/base/power/domain*.c
6903 F:      include/linux/pm_domain.h
6904 F:      Documentation/devicetree/bindings/power/power_domain.txt
6905
6906 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6907 M:      Eugen Hristev <eugen.hristev@microchip.com>
6908 L:      linux-input@vger.kernel.org
6909 S:      Maintained
6910 F:      drivers/input/touchscreen/resistive-adc-touch.c
6911
6912 GENERIC UIO DRIVER FOR PCI DEVICES
6913 M:      "Michael S. Tsirkin" <mst@redhat.com>
6914 L:      kvm@vger.kernel.org
6915 S:      Supported
6916 F:      drivers/uio/uio_pci_generic.c
6917
6918 GENERIC VDSO LIBRARY:
6919 M:      Andy Lutomirski <luto@kernel.org>
6920 M:      Thomas Gleixner <tglx@linutronix.de>
6921 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
6922 L:      linux-kernel@vger.kernel.org
6923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
6924 S:      Maintained
6925 F:      lib/vdso/
6926 F:      kernel/time/vsyscall.c
6927 F:      include/vdso/
6928 F:      include/asm-generic/vdso/vsyscall.h
6929
6930 GENWQE (IBM Generic Workqueue Card)
6931 M:      Frank Haverkamp <haver@linux.ibm.com>
6932 S:      Supported
6933 F:      drivers/misc/genwqe/
6934
6935 GET_MAINTAINER SCRIPT
6936 M:      Joe Perches <joe@perches.com>
6937 S:      Maintained
6938 F:      scripts/get_maintainer.pl
6939
6940 GFS2 FILE SYSTEM
6941 M:      Bob Peterson <rpeterso@redhat.com>
6942 M:      Andreas Gruenbacher <agruenba@redhat.com>
6943 L:      cluster-devel@redhat.com
6944 W:      http://sources.redhat.com/cluster/
6945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6946 S:      Supported
6947 F:      Documentation/filesystems/gfs2*.txt
6948 F:      fs/gfs2/
6949 F:      include/uapi/linux/gfs2_ondisk.h
6950
6951 GNSS SUBSYSTEM
6952 M:      Johan Hovold <johan@kernel.org>
6953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6954 S:      Maintained
6955 F:      Documentation/ABI/testing/sysfs-class-gnss
6956 F:      Documentation/devicetree/bindings/gnss/
6957 F:      drivers/gnss/
6958 F:      include/linux/gnss.h
6959
6960 GO7007 MPEG CODEC
6961 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
6962 L:      linux-media@vger.kernel.org
6963 S:      Maintained
6964 F:      drivers/media/usb/go7007/
6965
6966 GOODIX TOUCHSCREEN
6967 M:      Bastien Nocera <hadess@hadess.net>
6968 L:      linux-input@vger.kernel.org
6969 S:      Maintained
6970 F:      drivers/input/touchscreen/goodix.c
6971
6972 GOOGLE ETHERNET DRIVERS
6973 M:      Catherine Sullivan <csully@google.com>
6974 R:      Sagi Shahar <sagis@google.com>
6975 R:      Jon Olson <jonolson@google.com>
6976 L:      netdev@vger.kernel.org
6977 S:      Supported
6978 F:      Documentation/networking/device_drivers/google/gve.rst
6979 F:      drivers/net/ethernet/google
6980
6981 GPD POCKET FAN DRIVER
6982 M:      Hans de Goede <hdegoede@redhat.com>
6983 L:      platform-driver-x86@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/platform/x86/gpd-pocket-fan.c
6986
6987 GPIO ACPI SUPPORT
6988 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6989 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6990 L:      linux-gpio@vger.kernel.org
6991 L:      linux-acpi@vger.kernel.org
6992 S:      Maintained
6993 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6994 F:      drivers/gpio/gpiolib-acpi.c
6995
6996 GPIO IR Transmitter
6997 M:      Sean Young <sean@mess.org>
6998 L:      linux-media@vger.kernel.org
6999 S:      Maintained
7000 F:      drivers/media/rc/gpio-ir-tx.c
7001
7002 GPIO MOCKUP DRIVER
7003 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
7004 L:      linux-gpio@vger.kernel.org
7005 S:      Maintained
7006 F:      drivers/gpio/gpio-mockup.c
7007 F:      tools/testing/selftests/gpio/
7008
7009 GPIO SUBSYSTEM
7010 M:      Linus Walleij <linus.walleij@linaro.org>
7011 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
7012 L:      linux-gpio@vger.kernel.org
7013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
7014 S:      Maintained
7015 F:      Documentation/devicetree/bindings/gpio/
7016 F:      Documentation/driver-api/gpio/
7017 F:      Documentation/admin-guide/gpio/
7018 F:      Documentation/ABI/testing/gpio-cdev
7019 F:      Documentation/ABI/obsolete/sysfs-gpio
7020 F:      drivers/gpio/
7021 F:      include/linux/gpio/
7022 F:      include/linux/gpio.h
7023 F:      include/linux/of_gpio.h
7024 F:      include/asm-generic/gpio.h
7025 F:      include/uapi/linux/gpio.h
7026 F:      tools/gpio/
7027
7028 GRE DEMULTIPLEXER DRIVER
7029 M:      Dmitry Kozlov <xeb@mail.ru>
7030 L:      netdev@vger.kernel.org
7031 S:      Maintained
7032 F:      net/ipv4/gre_demux.c
7033 F:      net/ipv4/gre_offload.c
7034 F:      include/net/gre.h
7035
7036 GRETH 10/100/1G Ethernet MAC device driver
7037 M:      Andreas Larsson <andreas@gaisler.com>
7038 L:      netdev@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/net/ethernet/aeroflex/
7041
7042 GREYBUS AUDIO PROTOCOLS DRIVERS
7043 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
7044 M:      Mark Greer <mgreer@animalcreek.com>
7045 S:      Maintained
7046 F:      drivers/staging/greybus/audio_apbridgea.c
7047 F:      drivers/staging/greybus/audio_apbridgea.h
7048 F:      drivers/staging/greybus/audio_codec.c
7049 F:      drivers/staging/greybus/audio_codec.h
7050 F:      drivers/staging/greybus/audio_gb.c
7051 F:      drivers/staging/greybus/audio_manager.c
7052 F:      drivers/staging/greybus/audio_manager.h
7053 F:      drivers/staging/greybus/audio_manager_module.c
7054 F:      drivers/staging/greybus/audio_manager_private.h
7055 F:      drivers/staging/greybus/audio_manager_sysfs.c
7056 F:      drivers/staging/greybus/audio_module.c
7057 F:      drivers/staging/greybus/audio_topology.c
7058
7059 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
7060 M:      Viresh Kumar <vireshk@kernel.org>
7061 S:      Maintained
7062 F:      drivers/staging/greybus/authentication.c
7063 F:      drivers/staging/greybus/bootrom.c
7064 F:      drivers/staging/greybus/firmware.h
7065 F:      drivers/staging/greybus/fw-core.c
7066 F:      drivers/staging/greybus/fw-download.c
7067 F:      drivers/staging/greybus/fw-management.c
7068 F:      drivers/staging/greybus/greybus_authentication.h
7069 F:      drivers/staging/greybus/greybus_firmware.h
7070 F:      drivers/staging/greybus/hid.c
7071 F:      drivers/staging/greybus/i2c.c
7072 F:      drivers/staging/greybus/spi.c
7073 F:      drivers/staging/greybus/spilib.c
7074 F:      drivers/staging/greybus/spilib.h
7075
7076 GREYBUS LOOPBACK DRIVER
7077 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
7078 S:      Maintained
7079 F:      drivers/staging/greybus/loopback.c
7080
7081 GREYBUS PLATFORM DRIVERS
7082 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
7083 S:      Maintained
7084 F:      drivers/staging/greybus/arche-platform.c
7085 F:      drivers/staging/greybus/arche-apb-ctrl.c
7086 F:      drivers/staging/greybus/arche_platform.h
7087
7088 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
7089 M:      Rui Miguel Silva <rmfrfs@gmail.com>
7090 S:      Maintained
7091 F:      drivers/staging/greybus/sdio.c
7092 F:      drivers/staging/greybus/light.c
7093 F:      drivers/staging/greybus/gpio.c
7094 F:      drivers/staging/greybus/power_supply.c
7095 F:      drivers/staging/greybus/spi.c
7096 F:      drivers/staging/greybus/spilib.c
7097
7098 GREYBUS SUBSYSTEM
7099 M:      Johan Hovold <johan@kernel.org>
7100 M:      Alex Elder <elder@kernel.org>
7101 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7102 S:      Maintained
7103 F:      drivers/staging/greybus/
7104 F:      drivers/greybus/
7105 F:      include/linux/greybus.h
7106 F:      include/linux/greybus/
7107 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
7108
7109 GREYBUS UART PROTOCOLS DRIVERS
7110 M:      David Lin <dtwlin@gmail.com>
7111 S:      Maintained
7112 F:      drivers/staging/greybus/uart.c
7113 F:      drivers/staging/greybus/log.c
7114
7115 GS1662 VIDEO SERIALIZER
7116 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
7117 L:      linux-media@vger.kernel.org
7118 T:      git git://linuxtv.org/media_tree.git
7119 S:      Maintained
7120 F:      drivers/media/spi/gs1662.c
7121
7122 GSPCA FINEPIX SUBDRIVER
7123 M:      Frank Zago <frank@zago.net>
7124 L:      linux-media@vger.kernel.org
7125 T:      git git://linuxtv.org/media_tree.git
7126 S:      Maintained
7127 F:      drivers/media/usb/gspca/finepix.c
7128
7129 GSPCA GL860 SUBDRIVER
7130 M:      Olivier Lorin <o.lorin@laposte.net>
7131 L:      linux-media@vger.kernel.org
7132 T:      git git://linuxtv.org/media_tree.git
7133 S:      Maintained
7134 F:      drivers/media/usb/gspca/gl860/
7135
7136 GSPCA M5602 SUBDRIVER
7137 M:      Erik Andren <erik.andren@gmail.com>
7138 L:      linux-media@vger.kernel.org
7139 T:      git git://linuxtv.org/media_tree.git
7140 S:      Maintained
7141 F:      drivers/media/usb/gspca/m5602/
7142
7143 GSPCA PAC207 SONIXB SUBDRIVER
7144 M:      Hans Verkuil <hverkuil@xs4all.nl>
7145 L:      linux-media@vger.kernel.org
7146 T:      git git://linuxtv.org/media_tree.git
7147 S:      Odd Fixes
7148 F:      drivers/media/usb/gspca/pac207.c
7149
7150 GSPCA SN9C20X SUBDRIVER
7151 M:      Brian Johnson <brijohn@gmail.com>
7152 L:      linux-media@vger.kernel.org
7153 T:      git git://linuxtv.org/media_tree.git
7154 S:      Maintained
7155 F:      drivers/media/usb/gspca/sn9c20x.c
7156
7157 GSPCA T613 SUBDRIVER
7158 M:      Leandro Costantino <lcostantino@gmail.com>
7159 L:      linux-media@vger.kernel.org
7160 T:      git git://linuxtv.org/media_tree.git
7161 S:      Maintained
7162 F:      drivers/media/usb/gspca/t613.c
7163
7164 GSPCA USB WEBCAM DRIVER
7165 M:      Hans Verkuil <hverkuil@xs4all.nl>
7166 L:      linux-media@vger.kernel.org
7167 T:      git git://linuxtv.org/media_tree.git
7168 S:      Odd Fixes
7169 F:      drivers/media/usb/gspca/
7170
7171 GTP (GPRS Tunneling Protocol)
7172 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7173 M:      Harald Welte <laforge@gnumonks.org>
7174 L:      osmocom-net-gprs@lists.osmocom.org
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
7176 S:      Maintained
7177 F:      drivers/net/gtp.c
7178
7179 GUID PARTITION TABLE (GPT)
7180 M:      Davidlohr Bueso <dave@stgolabs.net>
7181 L:      linux-efi@vger.kernel.org
7182 S:      Maintained
7183 F:      block/partitions/efi.*
7184
7185 H8/300 ARCHITECTURE
7186 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
7187 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
7188 W:      http://uclinux-h8.sourceforge.jp
7189 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
7190 S:      Maintained
7191 F:      arch/h8300/
7192 F:      drivers/clocksource/h8300_*.c
7193 F:      drivers/clk/h8300/
7194 F:      drivers/irqchip/irq-renesas-h8*.c
7195
7196 HABANALABS PCI DRIVER
7197 M:      Oded Gabbay <oded.gabbay@gmail.com>
7198 T:      git https://github.com/HabanaAI/linux.git
7199 S:      Supported
7200 F:      drivers/misc/habanalabs/
7201 F:      include/uapi/misc/habanalabs.h
7202 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
7203 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
7204
7205 HACKRF MEDIA DRIVER
7206 M:      Antti Palosaari <crope@iki.fi>
7207 L:      linux-media@vger.kernel.org
7208 W:      https://linuxtv.org
7209 W:      http://palosaari.fi/linux/
7210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7211 T:      git git://linuxtv.org/anttip/media_tree.git
7212 S:      Maintained
7213 F:      drivers/media/usb/hackrf/
7214
7215 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
7216 M:      Frank Seidel <frank@f-seidel.de>
7217 L:      platform-driver-x86@vger.kernel.org
7218 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
7219 S:      Maintained
7220 F:      drivers/platform/x86/hdaps.c
7221
7222 HARDWARE MONITORING
7223 M:      Jean Delvare <jdelvare@suse.com>
7224 M:      Guenter Roeck <linux@roeck-us.net>
7225 L:      linux-hwmon@vger.kernel.org
7226 W:      http://hwmon.wiki.kernel.org/
7227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
7228 S:      Maintained
7229 F:      Documentation/devicetree/bindings/hwmon/
7230 F:      Documentation/hwmon/
7231 F:      drivers/hwmon/
7232 F:      include/linux/hwmon*.h
7233 F:      include/trace/events/hwmon*.h
7234
7235 HARDWARE RANDOM NUMBER GENERATOR CORE
7236 M:      Matt Mackall <mpm@selenic.com>
7237 M:      Herbert Xu <herbert@gondor.apana.org.au>
7238 L:      linux-crypto@vger.kernel.org
7239 S:      Odd fixes
7240 F:      Documentation/devicetree/bindings/rng/
7241 F:      Documentation/admin-guide/hw_random.rst
7242 F:      drivers/char/hw_random/
7243 F:      include/linux/hw_random.h
7244
7245 HARDWARE TRACING FACILITIES
7246 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7247 S:      Maintained
7248 F:      drivers/hwtracing/
7249
7250 HARDWARE SPINLOCK CORE
7251 M:      Ohad Ben-Cohen <ohad@wizery.com>
7252 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
7253 L:      linux-remoteproc@vger.kernel.org
7254 S:      Maintained
7255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
7256 F:      Documentation/devicetree/bindings/hwlock/
7257 F:      Documentation/hwspinlock.txt
7258 F:      drivers/hwspinlock/
7259 F:      include/linux/hwspinlock.h
7260
7261 HARMONY SOUND DRIVER
7262 L:      linux-parisc@vger.kernel.org
7263 S:      Maintained
7264 F:      sound/parisc/harmony.*
7265
7266 HDPVR USB VIDEO ENCODER DRIVER
7267 M:      Hans Verkuil <hverkuil@xs4all.nl>
7268 L:      linux-media@vger.kernel.org
7269 T:      git git://linuxtv.org/media_tree.git
7270 W:      https://linuxtv.org
7271 S:      Odd Fixes
7272 F:      drivers/media/usb/hdpvr/
7273
7274 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
7275 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
7276 S:      Supported
7277 F:      Documentation/watchdog/hpwdt.rst
7278 F:      drivers/watchdog/hpwdt.c
7279
7280 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
7281 M:      Don Brace <don.brace@microsemi.com>
7282 L:      esc.storagedev@microsemi.com
7283 L:      linux-scsi@vger.kernel.org
7284 S:      Supported
7285 F:      Documentation/scsi/hpsa.txt
7286 F:      drivers/scsi/hpsa*.[ch]
7287 F:      include/linux/cciss*.h
7288 F:      include/uapi/linux/cciss*.h
7289
7290 HFI1 DRIVER
7291 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
7292 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
7293 L:      linux-rdma@vger.kernel.org
7294 S:      Supported
7295 F:      drivers/infiniband/hw/hfi1
7296
7297 HFS FILESYSTEM
7298 L:      linux-fsdevel@vger.kernel.org
7299 S:      Orphan
7300 F:      Documentation/filesystems/hfs.txt
7301 F:      fs/hfs/
7302
7303 HFSPLUS FILESYSTEM
7304 L:      linux-fsdevel@vger.kernel.org
7305 S:      Orphan
7306 F:      Documentation/filesystems/hfsplus.txt
7307 F:      fs/hfsplus/
7308
7309 HGA FRAMEBUFFER DRIVER
7310 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7311 L:      linux-nvidia@lists.surfsouth.com
7312 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7313 S:      Maintained
7314 F:      drivers/video/fbdev/hgafb.c
7315
7316 HIBERNATION (aka Software Suspend, aka swsusp)
7317 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7318 M:      Pavel Machek <pavel@ucw.cz>
7319 L:      linux-pm@vger.kernel.org
7320 B:      https://bugzilla.kernel.org
7321 S:      Supported
7322 F:      arch/x86/power/
7323 F:      drivers/base/power/
7324 F:      kernel/power/
7325 F:      include/linux/suspend.h
7326 F:      include/linux/freezer.h
7327 F:      include/linux/pm.h
7328 F:      arch/*/include/asm/suspend*.h
7329
7330 HID CORE LAYER
7331 M:      Jiri Kosina <jikos@kernel.org>
7332 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7333 L:      linux-input@vger.kernel.org
7334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7335 S:      Maintained
7336 F:      drivers/hid/
7337 F:      include/linux/hid*
7338 F:      include/uapi/linux/hid*
7339
7340 HID SENSOR HUB DRIVERS
7341 M:      Jiri Kosina <jikos@kernel.org>
7342 M:      Jonathan Cameron <jic23@kernel.org>
7343 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7344 L:      linux-input@vger.kernel.org
7345 L:      linux-iio@vger.kernel.org
7346 S:      Maintained
7347 F:      Documentation/hid/hid-sensor*
7348 F:      drivers/hid/hid-sensor-*
7349 F:      drivers/iio/*/hid-*
7350 F:      include/linux/hid-sensor-*
7351
7352 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7353 M:      Thomas Gleixner <tglx@linutronix.de>
7354 L:      linux-kernel@vger.kernel.org
7355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7356 S:      Maintained
7357 F:      Documentation/timers/
7358 F:      kernel/time/hrtimer.c
7359 F:      kernel/time/clockevents.c
7360 F:      kernel/time/timer_*.c
7361 F:      include/linux/clockchips.h
7362 F:      include/linux/hrtimer.h
7363
7364 HIGH-SPEED SCC DRIVER FOR AX.25
7365 L:      linux-hams@vger.kernel.org
7366 S:      Orphan
7367 F:      drivers/net/hamradio/dmascc.c
7368 F:      drivers/net/hamradio/scc.c
7369
7370 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7371 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7372 W:      http://www.highpoint-tech.com
7373 S:      Supported
7374 F:      Documentation/scsi/hptiop.txt
7375 F:      drivers/scsi/hptiop.c
7376
7377 HIPPI
7378 M:      Jes Sorensen <jes@trained-monkey.org>
7379 L:      linux-hippi@sunsite.dk
7380 S:      Maintained
7381 F:      include/linux/hippidevice.h
7382 F:      include/uapi/linux/if_hippi.h
7383 F:      net/802/hippi.c
7384 F:      drivers/net/hippi/
7385
7386 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7387 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7388 M:      Salil Mehta <salil.mehta@huawei.com>
7389 L:      netdev@vger.kernel.org
7390 W:      http://www.hisilicon.com
7391 S:      Maintained
7392 F:      drivers/net/ethernet/hisilicon/hns3/
7393
7394 HISILICON LPC BUS DRIVER
7395 M:      john.garry@huawei.com
7396 W:      http://www.hisilicon.com
7397 S:      Maintained
7398 F:      drivers/bus/hisi_lpc.c
7399 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7400
7401 HISILICON NETWORK SUBSYSTEM DRIVER
7402 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7403 M:      Salil Mehta <salil.mehta@huawei.com>
7404 L:      netdev@vger.kernel.org
7405 W:      http://www.hisilicon.com
7406 S:      Maintained
7407 F:      drivers/net/ethernet/hisilicon/
7408 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7409
7410 HISILICON PMU DRIVER
7411 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7412 W:      http://www.hisilicon.com
7413 S:      Supported
7414 F:      drivers/perf/hisilicon
7415 F:      Documentation/admin-guide/perf/hisi-pmu.rst
7416
7417 HISILICON ROCE DRIVER
7418 M:      Lijun Ou <oulijun@huawei.com>
7419 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7420 L:      linux-rdma@vger.kernel.org
7421 S:      Maintained
7422 F:      drivers/infiniband/hw/hns/
7423 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7424
7425 HISILICON SAS Controller
7426 M:      John Garry <john.garry@huawei.com>
7427 W:      http://www.hisilicon.com
7428 S:      Supported
7429 F:      drivers/scsi/hisi_sas/
7430 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7431
7432 HISILICON QM AND ZIP Controller DRIVER
7433 M:      Zhou Wang <wangzhou1@hisilicon.com>
7434 L:      linux-crypto@vger.kernel.org
7435 S:      Maintained
7436 F:      drivers/crypto/hisilicon/qm.c
7437 F:      drivers/crypto/hisilicon/qm.h
7438 F:      drivers/crypto/hisilicon/sgl.c
7439 F:      drivers/crypto/hisilicon/sgl.h
7440 F:      drivers/crypto/hisilicon/zip/
7441 F:      Documentation/ABI/testing/debugfs-hisi-zip
7442
7443 HMM - Heterogeneous Memory Management
7444 M:      Jérôme Glisse <jglisse@redhat.com>
7445 L:      linux-mm@kvack.org
7446 S:      Maintained
7447 F:      mm/hmm*
7448 F:      include/linux/hmm*
7449 F:      Documentation/vm/hmm.rst
7450
7451 HOST AP DRIVER
7452 M:      Jouni Malinen <j@w1.fi>
7453 L:      linux-wireless@vger.kernel.org
7454 W:      http://w1.fi/hostap-driver.html
7455 S:      Obsolete
7456 F:      drivers/net/wireless/intersil/hostap/
7457
7458 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7459 L:      platform-driver-x86@vger.kernel.org
7460 S:      Orphan
7461 F:      drivers/platform/x86/tc1100-wmi.c
7462
7463 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7464 M:      Jaroslav Kysela <perex@perex.cz>
7465 S:      Maintained
7466 F:      drivers/net/ethernet/hp/hp100.*
7467
7468 HPET:   High Precision Event Timers driver
7469 M:      Clemens Ladisch <clemens@ladisch.de>
7470 S:      Maintained
7471 F:      Documentation/timers/hpet.rst
7472 F:      drivers/char/hpet.c
7473 F:      include/linux/hpet.h
7474 F:      include/uapi/linux/hpet.h
7475
7476 HPET:   x86
7477 S:      Orphan
7478 F:      arch/x86/kernel/hpet.c
7479 F:      arch/x86/include/asm/hpet.h
7480
7481 HPFS FILESYSTEM
7482 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7483 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7484 S:      Maintained
7485 F:      fs/hpfs/
7486
7487 HSI SUBSYSTEM
7488 M:      Sebastian Reichel <sre@kernel.org>
7489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7490 S:      Maintained
7491 F:      Documentation/ABI/testing/sysfs-bus-hsi
7492 F:      Documentation/driver-api/hsi.rst
7493 F:      drivers/hsi/
7494 F:      include/linux/hsi/
7495 F:      include/uapi/linux/hsi/
7496
7497 HSO 3G MODEM DRIVER
7498 L:      linux-usb@vger.kernel.org
7499 S:      Orphan
7500 F:      drivers/net/usb/hso.c
7501
7502 HSR NETWORK PROTOCOL
7503 M:      Arvid Brodin <arvid.brodin@alten.se>
7504 L:      netdev@vger.kernel.org
7505 S:      Maintained
7506 F:      net/hsr/
7507
7508 HT16K33 LED CONTROLLER DRIVER
7509 M:      Robin van der Gracht <robin@protonic.nl>
7510 S:      Maintained
7511 F:      drivers/auxdisplay/ht16k33.c
7512 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7513
7514 HTCPEN TOUCHSCREEN DRIVER
7515 M:      Pau Oliva Fora <pof@eslack.org>
7516 L:      linux-input@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/input/touchscreen/htcpen.c
7519
7520 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7521 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7522 L:      linux-iio@vger.kernel.org
7523 W:      http://www.st.com/
7524 S:      Maintained
7525 F:      drivers/iio/humidity/hts221*
7526 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7527
7528 HUAWEI ETHERNET DRIVER
7529 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7530 L:      netdev@vger.kernel.org
7531 S:      Supported
7532 F:      Documentation/networking/hinic.txt
7533 F:      drivers/net/ethernet/huawei/hinic/
7534
7535 HUGETLB FILESYSTEM
7536 M:      Mike Kravetz <mike.kravetz@oracle.com>
7537 L:      linux-mm@kvack.org
7538 S:      Maintained
7539 F:      fs/hugetlbfs/
7540 F:      mm/hugetlb.c
7541 F:      include/linux/hugetlb.h
7542 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7543 F:      Documentation/vm/hugetlbfs_reserv.rst
7544 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7545
7546 HVA ST MEDIA DRIVER
7547 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7548 L:      linux-media@vger.kernel.org
7549 T:      git git://linuxtv.org/media_tree.git
7550 W:      https://linuxtv.org
7551 S:      Supported
7552 F:      drivers/media/platform/sti/hva
7553
7554 HWPOISON MEMORY FAILURE HANDLING
7555 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7556 L:      linux-mm@kvack.org
7557 S:      Maintained
7558 F:      mm/memory-failure.c
7559 F:      mm/hwpoison-inject.c
7560
7561 HYGON PROCESSOR SUPPORT
7562 M:      Pu Wen <puwen@hygon.cn>
7563 L:      linux-kernel@vger.kernel.org
7564 S:      Maintained
7565 F:      arch/x86/kernel/cpu/hygon.c
7566
7567 Hyper-V CORE AND DRIVERS
7568 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7569 M:      Haiyang Zhang <haiyangz@microsoft.com>
7570 M:      Stephen Hemminger <sthemmin@microsoft.com>
7571 M:      Sasha Levin <sashal@kernel.org>
7572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7573 L:      linux-hyperv@vger.kernel.org
7574 S:      Supported
7575 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7576 F:      arch/x86/include/asm/mshyperv.h
7577 F:      arch/x86/include/asm/trace/hyperv.h
7578 F:      arch/x86/include/asm/hyperv-tlfs.h
7579 F:      arch/x86/kernel/cpu/mshyperv.c
7580 F:      arch/x86/hyperv
7581 F:      drivers/clocksource/hyperv_timer.c
7582 F:      drivers/hid/hid-hyperv.c
7583 F:      drivers/hv/
7584 F:      drivers/input/serio/hyperv-keyboard.c
7585 F:      drivers/pci/controller/pci-hyperv.c
7586 F:      drivers/pci/controller/pci-hyperv-intf.c
7587 F:      drivers/net/hyperv/
7588 F:      drivers/scsi/storvsc_drv.c
7589 F:      drivers/uio/uio_hv_generic.c
7590 F:      drivers/video/fbdev/hyperv_fb.c
7591 F:      drivers/iommu/hyperv-iommu.c
7592 F:      net/vmw_vsock/hyperv_transport.c
7593 F:      include/clocksource/hyperv_timer.h
7594 F:      include/linux/hyperv.h
7595 F:      include/uapi/linux/hyperv.h
7596 F:      include/asm-generic/mshyperv.h
7597 F:      tools/hv/
7598 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7599
7600 HYPERBUS SUPPORT
7601 M:      Vignesh Raghavendra <vigneshr@ti.com>
7602 S:      Supported
7603 F:      drivers/mtd/hyperbus/
7604 F:      include/linux/mtd/hyperbus.h
7605 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
7606 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
7607
7608 HYPERVISOR VIRTUAL CONSOLE DRIVER
7609 L:      linuxppc-dev@lists.ozlabs.org
7610 S:      Odd Fixes
7611 F:      drivers/tty/hvc/
7612
7613 I2C ACPI SUPPORT
7614 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7615 L:      linux-i2c@vger.kernel.org
7616 L:      linux-acpi@vger.kernel.org
7617 S:      Maintained
7618 F:      drivers/i2c/i2c-core-acpi.c
7619
7620 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7621 M:      Ajay Gupta <ajayg@nvidia.com>
7622 L:      linux-i2c@vger.kernel.org
7623 S:      Maintained
7624 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
7625 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7626
7627 I2C MUXES
7628 M:      Peter Rosin <peda@axentia.se>
7629 L:      linux-i2c@vger.kernel.org
7630 S:      Maintained
7631 F:      Documentation/i2c/i2c-topology.rst
7632 F:      Documentation/i2c/muxes/
7633 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7634 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7635 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7636 F:      drivers/i2c/i2c-mux.c
7637 F:      drivers/i2c/muxes/
7638 F:      include/linux/i2c-mux.h
7639
7640 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7641 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7642 L:      linux-i2c@vger.kernel.org
7643 S:      Maintained
7644 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
7645 F:      drivers/i2c/busses/i2c-mv64xxx.c
7646
7647 I2C OVER PARALLEL PORT
7648 M:      Jean Delvare <jdelvare@suse.com>
7649 L:      linux-i2c@vger.kernel.org
7650 S:      Maintained
7651 F:      Documentation/i2c/busses/i2c-parport.rst
7652 F:      Documentation/i2c/busses/i2c-parport-light.rst
7653 F:      drivers/i2c/busses/i2c-parport.c
7654 F:      drivers/i2c/busses/i2c-parport-light.c
7655
7656 I2C SUBSYSTEM
7657 M:      Wolfram Sang <wsa@the-dreams.de>
7658 L:      linux-i2c@vger.kernel.org
7659 W:      https://i2c.wiki.kernel.org/
7660 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7662 S:      Maintained
7663 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7664 F:      Documentation/i2c/
7665 F:      drivers/i2c/*
7666 F:      include/linux/i2c.h
7667 F:      include/linux/i2c-dev.h
7668 F:      include/linux/i2c-smbus.h
7669 F:      include/uapi/linux/i2c.h
7670 F:      include/uapi/linux/i2c-*.h
7671
7672 I2C SUBSYSTEM HOST DRIVERS
7673 L:      linux-i2c@vger.kernel.org
7674 W:      https://i2c.wiki.kernel.org/
7675 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7677 S:      Odd Fixes
7678 F:      Documentation/devicetree/bindings/i2c/
7679 F:      drivers/i2c/algos/
7680 F:      drivers/i2c/busses/
7681
7682 I2C-TAOS-EVM DRIVER
7683 M:      Jean Delvare <jdelvare@suse.com>
7684 L:      linux-i2c@vger.kernel.org
7685 S:      Maintained
7686 F:      Documentation/i2c/busses/i2c-taos-evm.rst
7687 F:      drivers/i2c/busses/i2c-taos-evm.c
7688
7689 I2C-TINY-USB DRIVER
7690 M:      Till Harbaum <till@harbaum.org>
7691 L:      linux-i2c@vger.kernel.org
7692 W:      http://www.harbaum.org/till/i2c_tiny_usb
7693 S:      Maintained
7694 F:      drivers/i2c/busses/i2c-tiny-usb.c
7695
7696 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7697 M:      Jean Delvare <jdelvare@suse.com>
7698 L:      linux-i2c@vger.kernel.org
7699 S:      Maintained
7700 F:      Documentation/i2c/busses/i2c-ali1535.rst
7701 F:      Documentation/i2c/busses/i2c-ali1563.rst
7702 F:      Documentation/i2c/busses/i2c-ali15x3.rst
7703 F:      Documentation/i2c/busses/i2c-amd756.rst
7704 F:      Documentation/i2c/busses/i2c-amd8111.rst
7705 F:      Documentation/i2c/busses/i2c-i801.rst
7706 F:      Documentation/i2c/busses/i2c-nforce2.rst
7707 F:      Documentation/i2c/busses/i2c-piix4.rst
7708 F:      Documentation/i2c/busses/i2c-sis5595.rst
7709 F:      Documentation/i2c/busses/i2c-sis630.rst
7710 F:      Documentation/i2c/busses/i2c-sis96x.rst
7711 F:      Documentation/i2c/busses/i2c-via.rst
7712 F:      Documentation/i2c/busses/i2c-viapro.rst
7713 F:      drivers/i2c/busses/i2c-ali1535.c
7714 F:      drivers/i2c/busses/i2c-ali1563.c
7715 F:      drivers/i2c/busses/i2c-ali15x3.c
7716 F:      drivers/i2c/busses/i2c-amd756.c
7717 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7718 F:      drivers/i2c/busses/i2c-amd8111.c
7719 F:      drivers/i2c/busses/i2c-i801.c
7720 F:      drivers/i2c/busses/i2c-isch.c
7721 F:      drivers/i2c/busses/i2c-nforce2.c
7722 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7723 F:      drivers/i2c/busses/i2c-piix4.c
7724 F:      drivers/i2c/busses/i2c-sis5595.c
7725 F:      drivers/i2c/busses/i2c-sis630.c
7726 F:      drivers/i2c/busses/i2c-sis96x.c
7727 F:      drivers/i2c/busses/i2c-via.c
7728 F:      drivers/i2c/busses/i2c-viapro.c
7729
7730 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7731 M:      Hans de Goede <hdegoede@redhat.com>
7732 L:      linux-i2c@vger.kernel.org
7733 S:      Maintained
7734 F:      drivers/i2c/busses/i2c-cht-wc.c
7735
7736 I2C/SMBUS ISMT DRIVER
7737 M:      Seth Heasley <seth.heasley@intel.com>
7738 M:      Neil Horman <nhorman@tuxdriver.com>
7739 L:      linux-i2c@vger.kernel.org
7740 F:      drivers/i2c/busses/i2c-ismt.c
7741 F:      Documentation/i2c/busses/i2c-ismt.rst
7742
7743 I2C/SMBUS STUB DRIVER
7744 M:      Jean Delvare <jdelvare@suse.com>
7745 L:      linux-i2c@vger.kernel.org
7746 S:      Maintained
7747 F:      drivers/i2c/i2c-stub.c
7748
7749 I3C SUBSYSTEM
7750 M:      Boris Brezillon <bbrezillon@kernel.org>
7751 L:      linux-i3c@lists.infradead.org
7752 C:      irc://chat.freenode.net/linux-i3c
7753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7754 S:      Maintained
7755 F:      Documentation/ABI/testing/sysfs-bus-i3c
7756 F:      Documentation/devicetree/bindings/i3c/
7757 F:      Documentation/driver-api/i3c
7758 F:      drivers/i3c/
7759 F:      include/linux/i3c/
7760
7761 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7762 M:      Vitor Soares <vitor.soares@synopsys.com>
7763 S:      Maintained
7764 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7765 F:      drivers/i3c/master/dw*
7766
7767 IA64 (Itanium) PLATFORM
7768 M:      Tony Luck <tony.luck@intel.com>
7769 M:      Fenghua Yu <fenghua.yu@intel.com>
7770 L:      linux-ia64@vger.kernel.org
7771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7772 S:      Maintained
7773 F:      arch/ia64/
7774
7775 IBM Power 842 compression accelerator
7776 M:      Haren Myneni <haren@us.ibm.com>
7777 S:      Supported
7778 F:      drivers/crypto/nx/Makefile
7779 F:      drivers/crypto/nx/Kconfig
7780 F:      drivers/crypto/nx/nx-842*
7781 F:      include/linux/sw842.h
7782 F:      crypto/842.c
7783 F:      lib/842/
7784
7785 IBM Power in-Nest Crypto Acceleration
7786 M:      Breno Leitão <leitao@debian.org>
7787 M:      Nayna Jain <nayna@linux.ibm.com>
7788 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7789 L:      linux-crypto@vger.kernel.org
7790 S:      Supported
7791 F:      drivers/crypto/nx/Makefile
7792 F:      drivers/crypto/nx/Kconfig
7793 F:      drivers/crypto/nx/nx-aes*
7794 F:      drivers/crypto/nx/nx-sha*
7795 F:      drivers/crypto/nx/nx.*
7796 F:      drivers/crypto/nx/nx_csbcpb.h
7797 F:      drivers/crypto/nx/nx_debugfs.c
7798
7799 IBM Power Linux RAID adapter
7800 M:      Brian King <brking@us.ibm.com>
7801 S:      Supported
7802 F:      drivers/scsi/ipr.*
7803
7804 IBM Power SRIOV Virtual NIC Device Driver
7805 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7806 M:      John Allen <jallen@linux.ibm.com>
7807 L:      netdev@vger.kernel.org
7808 S:      Supported
7809 F:      drivers/net/ethernet/ibm/ibmvnic.*
7810
7811 IBM Power Virtual Accelerator Switchboard
7812 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7813 L:      linuxppc-dev@lists.ozlabs.org
7814 S:      Supported
7815 F:      arch/powerpc/platforms/powernv/vas*
7816 F:      arch/powerpc/platforms/powernv/copy-paste.h
7817 F:      arch/powerpc/include/asm/vas.h
7818
7819 IBM Power Virtual Ethernet Device Driver
7820 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7821 L:      netdev@vger.kernel.org
7822 S:      Supported
7823 F:      drivers/net/ethernet/ibm/ibmveth.*
7824
7825 IBM Power Virtual FC Device Drivers
7826 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7827 L:      linux-scsi@vger.kernel.org
7828 S:      Supported
7829 F:      drivers/scsi/ibmvscsi/ibmvfc*
7830
7831 IBM Power Virtual Management Channel Driver
7832 M:      Steven Royer <seroyer@linux.ibm.com>
7833 S:      Supported
7834 F:      drivers/misc/ibmvmc.*
7835
7836 IBM Power Virtual SCSI Device Drivers
7837 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7838 L:      linux-scsi@vger.kernel.org
7839 S:      Supported
7840 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7841 F:      include/scsi/viosrp.h
7842
7843 IBM Power Virtual SCSI Device Target Driver
7844 M:      Michael Cyr <mikecyr@linux.ibm.com>
7845 L:      linux-scsi@vger.kernel.org
7846 L:      target-devel@vger.kernel.org
7847 S:      Supported
7848 F:      drivers/scsi/ibmvscsi_tgt/
7849
7850 IBM Power VMX Cryptographic instructions
7851 M:      Breno Leitão <leitao@debian.org>
7852 M:      Nayna Jain <nayna@linux.ibm.com>
7853 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7854 L:      linux-crypto@vger.kernel.org
7855 S:      Supported
7856 F:      drivers/crypto/vmx/Makefile
7857 F:      drivers/crypto/vmx/Kconfig
7858 F:      drivers/crypto/vmx/vmx.c
7859 F:      drivers/crypto/vmx/aes*
7860 F:      drivers/crypto/vmx/ghash*
7861 F:      drivers/crypto/vmx/ppc-xlate.pl
7862
7863 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7864 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7865 L:      linux-pci@vger.kernel.org
7866 L:      linuxppc-dev@lists.ozlabs.org
7867 S:      Supported
7868 F:      drivers/pci/hotplug/rpaphp*
7869
7870 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7871 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7872 L:      linux-pci@vger.kernel.org
7873 L:      linuxppc-dev@lists.ozlabs.org
7874 S:      Supported
7875 F:      drivers/pci/hotplug/rpadlpar*
7876
7877 IBM ServeRAID RAID DRIVER
7878 S:      Orphan
7879 F:      drivers/scsi/ips.*
7880
7881 ICH LPC AND GPIO DRIVER
7882 M:      Peter Tyser <ptyser@xes-inc.com>
7883 S:      Maintained
7884 F:      drivers/mfd/lpc_ich.c
7885 F:      drivers/gpio/gpio-ich.c
7886
7887 ICY I2C DRIVER
7888 M:      Max Staudt <max@enpas.org>
7889 L:      linux-i2c@vger.kernel.org
7890 S:      Maintained
7891 F:      drivers/i2c/busses/i2c-icy.c
7892
7893 IDE SUBSYSTEM
7894 M:      "David S. Miller" <davem@davemloft.net>
7895 L:      linux-ide@vger.kernel.org
7896 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7898 S:      Maintained
7899 F:      Documentation/ide/
7900 F:      drivers/ide/
7901 F:      include/linux/ide.h
7902
7903 IDE/ATAPI DRIVERS
7904 M:      Borislav Petkov <bp@alien8.de>
7905 L:      linux-ide@vger.kernel.org
7906 S:      Maintained
7907 F:      Documentation/cdrom/ide-cd.rst
7908 F:      drivers/ide/ide-cd*
7909
7910 IDEAPAD LAPTOP EXTRAS DRIVER
7911 M:      Ike Panhc <ike.pan@canonical.com>
7912 L:      platform-driver-x86@vger.kernel.org
7913 W:      http://launchpad.net/ideapad-laptop
7914 S:      Maintained
7915 F:      drivers/platform/x86/ideapad-laptop.c
7916
7917 IDEAPAD LAPTOP SLIDEBAR DRIVER
7918 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7919 L:      linux-input@vger.kernel.org
7920 W:      https://github.com/o2genum/ideapad-slidebar
7921 S:      Maintained
7922 F:      drivers/input/misc/ideapad_slidebar.c
7923
7924 IDT VersaClock 5 CLOCK DRIVER
7925 M:      Marek Vasut <marek.vasut@gmail.com>
7926 S:      Maintained
7927 F:      drivers/clk/clk-versaclock5.c
7928
7929 IEEE 802.15.4 SUBSYSTEM
7930 M:      Alexander Aring <alex.aring@gmail.com>
7931 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7932 L:      linux-wpan@vger.kernel.org
7933 W:      http://wpan.cakelab.org/
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7936 S:      Maintained
7937 F:      net/ieee802154/
7938 F:      net/mac802154/
7939 F:      drivers/net/ieee802154/
7940 F:      include/linux/nl802154.h
7941 F:      include/linux/ieee802154.h
7942 F:      include/net/nl802154.h
7943 F:      include/net/mac802154.h
7944 F:      include/net/af_ieee802154.h
7945 F:      include/net/cfg802154.h
7946 F:      include/net/ieee802154_netdev.h
7947 F:      Documentation/networking/ieee802154.rst
7948
7949 IFE PROTOCOL
7950 M:      Yotam Gigi <yotam.gi@gmail.com>
7951 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7952 F:      net/ife
7953 F:      include/net/ife.h
7954 F:      include/uapi/linux/ife.h
7955
7956 IGORPLUG-USB IR RECEIVER
7957 M:      Sean Young <sean@mess.org>
7958 L:      linux-media@vger.kernel.org
7959 S:      Maintained
7960 F:      drivers/media/rc/igorplugusb.c
7961
7962 IGUANAWORKS USB IR TRANSCEIVER
7963 M:      Sean Young <sean@mess.org>
7964 L:      linux-media@vger.kernel.org
7965 S:      Maintained
7966 F:      drivers/media/rc/iguanair.c
7967
7968 IIO DIGITAL POTENTIOMETER DAC
7969 M:      Peter Rosin <peda@axentia.se>
7970 L:      linux-iio@vger.kernel.org
7971 S:      Maintained
7972 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7973 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7974 F:      drivers/iio/dac/dpot-dac.c
7975
7976 IIO ENVELOPE DETECTOR
7977 M:      Peter Rosin <peda@axentia.se>
7978 L:      linux-iio@vger.kernel.org
7979 S:      Maintained
7980 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7981 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7982 F:      drivers/iio/adc/envelope-detector.c
7983
7984 IIO MULTIPLEXER
7985 M:      Peter Rosin <peda@axentia.se>
7986 L:      linux-iio@vger.kernel.org
7987 S:      Maintained
7988 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7989 F:      drivers/iio/multiplexer/iio-mux.c
7990
7991 IIO SUBSYSTEM AND DRIVERS
7992 M:      Jonathan Cameron <jic23@kernel.org>
7993 R:      Hartmut Knaack <knaack.h@gmx.de>
7994 R:      Lars-Peter Clausen <lars@metafoo.de>
7995 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7996 L:      linux-iio@vger.kernel.org
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7998 S:      Maintained
7999 F:      Documentation/ABI/testing/configfs-iio*
8000 F:      Documentation/ABI/testing/sysfs-bus-iio*
8001 F:      Documentation/devicetree/bindings/iio/
8002 F:      drivers/iio/
8003 F:      drivers/staging/iio/
8004 F:      include/linux/iio/
8005 F:      tools/iio/
8006
8007 IIO UNIT CONVERTER
8008 M:      Peter Rosin <peda@axentia.se>
8009 L:      linux-iio@vger.kernel.org
8010 S:      Maintained
8011 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
8012 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
8013 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
8014 F:      drivers/iio/afe/iio-rescale.c
8015
8016 IKANOS/ADI EAGLE ADSL USB DRIVER
8017 M:      Matthieu Castet <castet.matthieu@free.fr>
8018 M:      Stanislaw Gruszka <stf_xl@wp.pl>
8019 S:      Maintained
8020 F:      drivers/usb/atm/ueagle-atm.c
8021
8022 IMGTEC ASCII LCD DRIVER
8023 M:      Paul Burton <paulburton@kernel.org>
8024 S:      Maintained
8025 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
8026 F:      drivers/auxdisplay/img-ascii-lcd.c
8027
8028 IMGTEC IR DECODER DRIVER
8029 M:      James Hogan <jhogan@kernel.org>
8030 S:      Maintained
8031 F:      drivers/media/rc/img-ir/
8032
8033 IMON SOUNDGRAPH USB IR RECEIVER
8034 M:      Sean Young <sean@mess.org>
8035 L:      linux-media@vger.kernel.org
8036 S:      Maintained
8037 F:      drivers/media/rc/imon_raw.c
8038 F:      drivers/media/rc/imon.c
8039
8040 IMS TWINTURBO FRAMEBUFFER DRIVER
8041 L:      linux-fbdev@vger.kernel.org
8042 S:      Orphan
8043 F:      drivers/video/fbdev/imsttfb.c
8044
8045 INA209 HARDWARE MONITOR DRIVER
8046 M:      Guenter Roeck <linux@roeck-us.net>
8047 L:      linux-hwmon@vger.kernel.org
8048 S:      Maintained
8049 F:      Documentation/hwmon/ina209.rst
8050 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
8051 F:      drivers/hwmon/ina209.c
8052
8053 INA2XX HARDWARE MONITOR DRIVER
8054 M:      Guenter Roeck <linux@roeck-us.net>
8055 L:      linux-hwmon@vger.kernel.org
8056 S:      Maintained
8057 F:      Documentation/hwmon/ina2xx.rst
8058 F:      drivers/hwmon/ina2xx.c
8059 F:      include/linux/platform_data/ina2xx.h
8060
8061 INDUSTRY PACK SUBSYSTEM (IPACK)
8062 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
8063 M:      Jens Taprogge <jens.taprogge@taprogge.org>
8064 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8065 L:      industrypack-devel@lists.sourceforge.net
8066 W:      http://industrypack.sourceforge.net
8067 S:      Maintained
8068 F:      drivers/ipack/
8069
8070 INFINEON DPS310 Driver
8071 M:      Eddie James <eajames@linux.ibm.com>
8072 L:      linux-iio@vger.kernel.org
8073 F:      drivers/iio/pressure/dps310.c
8074 S:      Maintained
8075
8076 INFINIBAND SUBSYSTEM
8077 M:      Doug Ledford <dledford@redhat.com>
8078 M:      Jason Gunthorpe <jgg@mellanox.com>
8079 L:      linux-rdma@vger.kernel.org
8080 W:      https://github.com/linux-rdma/rdma-core
8081 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
8083 S:      Supported
8084 F:      Documentation/devicetree/bindings/infiniband/
8085 F:      Documentation/infiniband/
8086 F:      drivers/infiniband/
8087 F:      include/uapi/linux/if_infiniband.h
8088 F:      include/uapi/rdma/
8089 F:      include/rdma/
8090 F:      include/trace/events/ib_mad.h
8091 F:      include/trace/events/ib_umad.h
8092 F:      samples/bpf/ibumad_kern.c
8093 F:      samples/bpf/ibumad_user.c
8094
8095 INGENIC JZ4780 DMA Driver
8096 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
8097 S:      Maintained
8098 F:      drivers/dma/dma-jz4780.c
8099
8100 INGENIC JZ4780 NAND DRIVER
8101 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
8102 L:      linux-mtd@lists.infradead.org
8103 S:      Maintained
8104 F:      drivers/mtd/nand/raw/ingenic/
8105
8106 INGENIC JZ47xx SoCs
8107 M:      Paul Cercueil <paul@crapouillou.net>
8108 S:      Maintained
8109 F:      arch/mips/boot/dts/ingenic/
8110 F:      arch/mips/include/asm/mach-jz4740/
8111 F:      arch/mips/jz4740/
8112 F:      drivers/clk/ingenic/
8113 F:      drivers/dma/dma-jz4780.c
8114 F:      drivers/gpu/drm/ingenic/
8115 F:      drivers/i2c/busses/i2c-jz4780.c
8116 F:      drivers/iio/adc/ingenic-adc.c
8117 F:      drivers/irqchip/irq-ingenic.c
8118 F:      drivers/memory/jz4780-nemc.c
8119 F:      drivers/mmc/host/jz4740_mmc.c
8120 F:      drivers/mtd/nand/raw/ingenic/
8121 F:      drivers/pinctrl/pinctrl-ingenic.c
8122 F:      drivers/power/supply/ingenic-battery.c
8123 F:      drivers/pwm/pwm-jz4740.c
8124 F:      drivers/rtc/rtc-jz4740.c
8125 F:      drivers/tty/serial/8250/8250_ingenic.c
8126 F:      drivers/usb/musb/jz4740.c
8127 F:      drivers/watchdog/jz4740_wdt.c
8128 F:      include/dt-bindings/iio/adc/ingenic,adc.h
8129 F:      include/linux/mfd/ingenic-tcu.h
8130 F:      sound/soc/jz4740/
8131 F:      sound/soc/codecs/jz47*
8132
8133 INOTIFY
8134 M:      Jan Kara <jack@suse.cz>
8135 R:      Amir Goldstein <amir73il@gmail.com>
8136 L:      linux-fsdevel@vger.kernel.org
8137 S:      Maintained
8138 F:      Documentation/filesystems/inotify.txt
8139 F:      fs/notify/inotify/
8140 F:      include/linux/inotify.h
8141 F:      include/uapi/linux/inotify.h
8142
8143 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
8144 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
8145 L:      linux-input@vger.kernel.org
8146 Q:      http://patchwork.kernel.org/project/linux-input/list/
8147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
8148 S:      Maintained
8149 F:      drivers/input/
8150 F:      include/linux/input.h
8151 F:      include/uapi/linux/input.h
8152 F:      include/uapi/linux/input-event-codes.h
8153 F:      include/linux/input/
8154 F:      Documentation/devicetree/bindings/input/
8155 F:      Documentation/devicetree/bindings/serio/
8156 F:      Documentation/input/
8157
8158 INPUT MULTITOUCH (MT) PROTOCOL
8159 M:      Henrik Rydberg <rydberg@bitmath.org>
8160 L:      linux-input@vger.kernel.org
8161 S:      Odd fixes
8162 F:      Documentation/input/multi-touch-protocol.rst
8163 F:      drivers/input/input-mt.c
8164 K:      \b(ABS|SYN)_MT_
8165
8166 INSIDE SECURE CRYPTO DRIVER
8167 M:      Antoine Tenart <antoine.tenart@bootlin.com>
8168 F:      drivers/crypto/inside-secure/
8169 S:      Maintained
8170 L:      linux-crypto@vger.kernel.org
8171
8172 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
8173 M:      Mimi Zohar <zohar@linux.ibm.com>
8174 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
8175 L:      linux-integrity@vger.kernel.org
8176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
8177 S:      Supported
8178 F:      security/integrity/ima/
8179
8180 INTEL 810/815 FRAMEBUFFER DRIVER
8181 M:      Antonino Daplas <adaplas@gmail.com>
8182 L:      linux-fbdev@vger.kernel.org
8183 S:      Maintained
8184 F:      drivers/video/fbdev/i810/
8185
8186 INTEL ASoC DRIVERS
8187 M:      Cezary Rojewski <cezary.rojewski@intel.com>
8188 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
8189 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
8190 M:      Jie Yang <yang.jie@linux.intel.com>
8191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8192 S:      Supported
8193 F:      sound/soc/intel/
8194
8195 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
8196 M:      Hans de Goede <hdegoede@redhat.com>
8197 L:      platform-driver-x86@vger.kernel.org
8198 S:      Maintained
8199 F:      drivers/platform/x86/intel_atomisp2_pm.c
8200
8201 INTEL C600 SERIES SAS CONTROLLER DRIVER
8202 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
8203 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
8204 L:      linux-scsi@vger.kernel.org
8205 T:      git git://git.code.sf.net/p/intel-sas/isci
8206 S:      Supported
8207 F:      drivers/scsi/isci/
8208
8209 INTEL CPU family model numbers
8210 M:      Tony Luck <tony.luck@intel.com>
8211 M:      x86@kernel.org
8212 L:      linux-kernel@vger.kernel.org
8213 S:      Supported
8214 F:      arch/x86/include/asm/intel-family.h
8215
8216 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
8217 M:      Jani Nikula <jani.nikula@linux.intel.com>
8218 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
8219 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
8220 L:      intel-gfx@lists.freedesktop.org
8221 W:      https://01.org/linuxgraphics/
8222 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
8223 C:      irc://chat.freenode.net/intel-gfx
8224 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
8225 T:      git git://anongit.freedesktop.org/drm-intel
8226 S:      Supported
8227 F:      drivers/gpu/drm/i915/
8228 F:      include/drm/i915*
8229 F:      include/uapi/drm/i915_drm.h
8230 F:      Documentation/gpu/i915.rst
8231
8232 INTEL ETHERNET DRIVERS
8233 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
8234 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
8235 W:      http://www.intel.com/support/feedback.htm
8236 W:      http://e1000.sourceforge.net/
8237 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
8238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
8239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
8240 S:      Supported
8241 F:      Documentation/networking/device_drivers/intel/e100.rst
8242 F:      Documentation/networking/device_drivers/intel/e1000.rst
8243 F:      Documentation/networking/device_drivers/intel/e1000e.rst
8244 F:      Documentation/networking/device_drivers/intel/fm10k.rst
8245 F:      Documentation/networking/device_drivers/intel/igb.rst
8246 F:      Documentation/networking/device_drivers/intel/igbvf.rst
8247 F:      Documentation/networking/device_drivers/intel/ixgb.rst
8248 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
8249 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
8250 F:      Documentation/networking/device_drivers/intel/i40e.rst
8251 F:      Documentation/networking/device_drivers/intel/iavf.rst
8252 F:      Documentation/networking/device_drivers/intel/ice.rst
8253 F:      drivers/net/ethernet/intel/
8254 F:      drivers/net/ethernet/intel/*/
8255 F:      include/linux/avf/virtchnl.h
8256
8257 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
8258 M:      Maik Broemme <mbroemme@libmpq.org>
8259 L:      linux-fbdev@vger.kernel.org
8260 S:      Maintained
8261 F:      Documentation/fb/intelfb.rst
8262 F:      drivers/video/fbdev/intelfb/
8263
8264 INTEL GPIO DRIVERS
8265 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8266 L:      linux-gpio@vger.kernel.org
8267 S:      Maintained
8268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8269 F:      drivers/gpio/gpio-ich.c
8270 F:      drivers/gpio/gpio-intel-mid.c
8271 F:      drivers/gpio/gpio-lynxpoint.c
8272 F:      drivers/gpio/gpio-merrifield.c
8273 F:      drivers/gpio/gpio-ml-ioh.c
8274 F:      drivers/gpio/gpio-pch.c
8275 F:      drivers/gpio/gpio-sch.c
8276 F:      drivers/gpio/gpio-sodaville.c
8277
8278 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
8279 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
8280 M:      Zhi Wang <zhi.a.wang@intel.com>
8281 L:      intel-gvt-dev@lists.freedesktop.org
8282 L:      intel-gfx@lists.freedesktop.org
8283 W:      https://01.org/igvt-g
8284 T:      git https://github.com/intel/gvt-linux.git
8285 S:      Supported
8286 F:      drivers/gpu/drm/i915/gvt/
8287
8288 INTEL HID EVENT DRIVER
8289 M:      Alex Hung <alex.hung@canonical.com>
8290 L:      platform-driver-x86@vger.kernel.org
8291 S:      Maintained
8292 F:      drivers/platform/x86/intel-hid.c
8293
8294 INTEL I/OAT DMA DRIVER
8295 M:      Dave Jiang <dave.jiang@intel.com>
8296 R:      Dan Williams <dan.j.williams@intel.com>
8297 L:      dmaengine@vger.kernel.org
8298 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
8299 S:      Supported
8300 F:      drivers/dma/ioat*
8301
8302 INTEL IDLE DRIVER
8303 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
8304 M:      Len Brown <lenb@kernel.org>
8305 L:      linux-pm@vger.kernel.org
8306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
8307 B:      https://bugzilla.kernel.org
8308 S:      Supported
8309 F:      drivers/idle/intel_idle.c
8310
8311 INTEL INTEGRATED SENSOR HUB DRIVER
8312 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8313 M:      Jiri Kosina <jikos@kernel.org>
8314 L:      linux-input@vger.kernel.org
8315 S:      Maintained
8316 F:      drivers/hid/intel-ish-hid/
8317
8318 INTEL IOMMU (VT-d)
8319 M:      David Woodhouse <dwmw2@infradead.org>
8320 L:      iommu@lists.linux-foundation.org
8321 T:      git git://git.infradead.org/iommu-2.6.git
8322 S:      Supported
8323 F:      drivers/iommu/intel-iommu.c
8324 F:      include/linux/intel-iommu.h
8325
8326 INTEL IOP-ADMA DMA DRIVER
8327 R:      Dan Williams <dan.j.williams@intel.com>
8328 S:      Odd fixes
8329 F:      drivers/dma/iop-adma.c
8330
8331 INTEL IPU3 CSI-2 CIO2 DRIVER
8332 M:      Yong Zhi <yong.zhi@intel.com>
8333 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8334 M:      Bingbu Cao <bingbu.cao@intel.com>
8335 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
8336 L:      linux-media@vger.kernel.org
8337 S:      Maintained
8338 F:      drivers/media/pci/intel/ipu3/
8339 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
8340
8341 INTEL IPU3 CSI-2 IMGU DRIVER
8342 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
8343 L:      linux-media@vger.kernel.org
8344 S:      Maintained
8345 F:      drivers/staging/media/ipu3/
8346 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
8347 F:      Documentation/media/v4l-drivers/ipu3.rst
8348
8349 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
8350 M:      Krzysztof Halasa <khalasa@piap.pl>
8351 S:      Maintained
8352 F:      include/linux/soc/ixp4xx/qmgr.h
8353 F:      include/linux/soc/ixp4xx/npe.h
8354 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
8355 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
8356 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
8357 F:      drivers/net/wan/ixp4xx_hss.c
8358
8359 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
8360 M:      Deepak Saxena <dsaxena@plexity.net>
8361 S:      Maintained
8362 F:      drivers/char/hw_random/ixp4xx-rng.c
8363
8364 INTEL MANAGEMENT ENGINE (mei)
8365 M:      Tomas Winkler <tomas.winkler@intel.com>
8366 L:      linux-kernel@vger.kernel.org
8367 S:      Supported
8368 F:      include/uapi/linux/mei.h
8369 F:      include/linux/mei_cl_bus.h
8370 F:      drivers/misc/mei/*
8371 F:      drivers/watchdog/mei_wdt.c
8372 F:      Documentation/driver-api/mei/*
8373 F:      samples/mei/*
8374
8375 INTEL MENLOW THERMAL DRIVER
8376 M:      Sujith Thomas <sujith.thomas@intel.com>
8377 L:      platform-driver-x86@vger.kernel.org
8378 W:      https://01.org/linux-acpi
8379 S:      Supported
8380 F:      drivers/platform/x86/intel_menlow.c
8381
8382 INTEL MIC DRIVERS (mic)
8383 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8384 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8385 S:      Supported
8386 W:      https://github.com/sudeepdutt/mic
8387 W:      http://software.intel.com/en-us/mic-developer
8388 F:      include/linux/mic_bus.h
8389 F:      include/linux/scif.h
8390 F:      include/uapi/linux/mic_common.h
8391 F:      include/uapi/linux/mic_ioctl.h
8392 F:      include/uapi/linux/scif_ioctl.h
8393 F:      drivers/misc/mic/
8394 F:      drivers/dma/mic_x100_dma.c
8395 F:      drivers/dma/mic_x100_dma.h
8396 F:      Documentation/mic/
8397
8398 INTEL PMC CORE DRIVER
8399 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8400 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8401 L:      platform-driver-x86@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/platform/x86/intel_pmc_core*
8404
8405 INTEL PMC/P-Unit IPC DRIVER
8406 M:      Zha Qipeng<qipeng.zha@intel.com>
8407 L:      platform-driver-x86@vger.kernel.org
8408 S:      Maintained
8409 F:      drivers/platform/x86/intel_pmc_ipc.c
8410 F:      drivers/platform/x86/intel_punit_ipc.c
8411 F:      arch/x86/include/asm/intel_pmc_ipc.h
8412 F:      arch/x86/include/asm/intel_punit_ipc.h
8413
8414 INTEL PMIC GPIO DRIVERS
8415 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8416 S:      Maintained
8417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8418 F:      drivers/gpio/gpio-*cove.c
8419 F:      drivers/gpio/gpio-msic.c
8420
8421 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
8422 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8423 S:      Maintained
8424 F:      drivers/mfd/intel_msic.c
8425 F:      drivers/mfd/intel_soc_pmic*
8426 F:      include/linux/mfd/intel_msic.h
8427 F:      include/linux/mfd/intel_soc_pmic*
8428
8429 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8430 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8431 L:      linux-wireless@vger.kernel.org
8432 S:      Maintained
8433 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8434 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8435 F:      drivers/net/wireless/intel/ipw2x00/
8436
8437 INTEL PSTATE DRIVER
8438 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8439 M:      Len Brown <lenb@kernel.org>
8440 L:      linux-pm@vger.kernel.org
8441 S:      Supported
8442 F:      drivers/cpufreq/intel_pstate.c
8443
8444 INTEL RDMA RNIC DRIVER
8445 M:      Faisal Latif <faisal.latif@intel.com>
8446 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8447 L:      linux-rdma@vger.kernel.org
8448 S:      Supported
8449 F:      drivers/infiniband/hw/i40iw/
8450 F:      include/uapi/rdma/i40iw-abi.h
8451
8452 INTEL SPEED SELECT TECHNOLOGY
8453 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8454 L:      platform-driver-x86@vger.kernel.org
8455 S:      Maintained
8456 F:      drivers/platform/x86/intel_speed_select_if/
8457 F:      tools/power/x86/intel-speed-select/
8458 F:      include/uapi/linux/isst_if.h
8459
8460 INTEL STRATIX10 FIRMWARE DRIVERS
8461 M:      Richard Gong <richard.gong@linux.intel.com>
8462 L:      linux-kernel@vger.kernel.org
8463 S:      Maintained
8464 F:      drivers/firmware/stratix10-rsu.c
8465 F:      drivers/firmware/stratix10-svc.c
8466 F:      include/linux/firmware/intel/stratix10-smc.h
8467 F:      include/linux/firmware/intel/stratix10-svc-client.h
8468 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
8469 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
8470
8471 INTEL TELEMETRY DRIVER
8472 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8473 M:      "David E. Box" <david.e.box@linux.intel.com>
8474 L:      platform-driver-x86@vger.kernel.org
8475 S:      Maintained
8476 F:      arch/x86/include/asm/intel_telemetry.h
8477 F:      drivers/platform/x86/intel_telemetry*
8478
8479 INTEL VIRTUAL BUTTON DRIVER
8480 M:      AceLan Kao <acelan.kao@canonical.com>
8481 L:      platform-driver-x86@vger.kernel.org
8482 S:      Maintained
8483 F:      drivers/platform/x86/intel-vbtn.c
8484
8485 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8486 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8487 L:      linux-wireless@vger.kernel.org
8488 S:      Supported
8489 F:      drivers/net/wireless/intel/iwlegacy/
8490
8491 INTEL WIRELESS WIFI LINK (iwlwifi)
8492 M:      Johannes Berg <johannes.berg@intel.com>
8493 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8494 M:      Luca Coelho <luciano.coelho@intel.com>
8495 M:      Intel Linux Wireless <linuxwifi@intel.com>
8496 L:      linux-wireless@vger.kernel.org
8497 W:      http://intellinuxwireless.org
8498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8499 S:      Supported
8500 F:      drivers/net/wireless/intel/iwlwifi/
8501
8502 INTEL WIRELESS WIMAX CONNECTION 2400
8503 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8504 M:      linux-wimax@intel.com
8505 L:      wimax@linuxwimax.org (subscribers-only)
8506 S:      Supported
8507 W:      http://linuxwimax.org
8508 F:      Documentation/admin-guide/wimax/i2400m.rst
8509 F:      drivers/net/wimax/i2400m/
8510 F:      include/uapi/linux/wimax/i2400m.h
8511
8512 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8513 M:      Mario Limonciello <mario.limonciello@dell.com>
8514 S:      Maintained
8515 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8516
8517 INTEL(R) TRACE HUB
8518 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8519 S:      Supported
8520 F:      Documentation/trace/intel_th.rst
8521 F:      drivers/hwtracing/intel_th/
8522 F:      include/linux/intel_th.h
8523
8524 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8525 M:      Ning Sun <ning.sun@intel.com>
8526 L:      tboot-devel@lists.sourceforge.net
8527 W:      http://tboot.sourceforge.net
8528 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8529 S:      Supported
8530 F:      Documentation/x86/intel_txt.rst
8531 F:      include/linux/tboot.h
8532 F:      arch/x86/kernel/tboot.c
8533
8534 INTERCONNECT API
8535 M:      Georgi Djakov <georgi.djakov@linaro.org>
8536 L:      linux-pm@vger.kernel.org
8537 S:      Maintained
8538 F:      Documentation/driver-api/interconnect.rst
8539 F:      Documentation/devicetree/bindings/interconnect/
8540 F:      drivers/interconnect/
8541 F:      include/dt-bindings/interconnect/
8542 F:      include/linux/interconnect-provider.h
8543 F:      include/linux/interconnect.h
8544
8545 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8546 M:      Linus Walleij <linus.walleij@linaro.org>
8547 L:      linux-iio@vger.kernel.org
8548 S:      Maintained
8549 F:      drivers/iio/gyro/mpu3050*
8550 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8551
8552 IOC3 ETHERNET DRIVER
8553 M:      Ralf Baechle <ralf@linux-mips.org>
8554 L:      linux-mips@vger.kernel.org
8555 S:      Maintained
8556 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8557
8558 IOMAP FILESYSTEM LIBRARY
8559 M:      Christoph Hellwig <hch@infradead.org>
8560 M:      Darrick J. Wong <darrick.wong@oracle.com>
8561 M:      linux-xfs@vger.kernel.org
8562 M:      linux-fsdevel@vger.kernel.org
8563 L:      linux-xfs@vger.kernel.org
8564 L:      linux-fsdevel@vger.kernel.org
8565 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8566 S:      Supported
8567 F:      fs/iomap/
8568 F:      include/linux/iomap.h
8569
8570 IOMMU DRIVERS
8571 M:      Joerg Roedel <joro@8bytes.org>
8572 L:      iommu@lists.linux-foundation.org
8573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8574 S:      Maintained
8575 F:      Documentation/devicetree/bindings/iommu/
8576 F:      drivers/iommu/
8577 F:      include/linux/iommu.h
8578 F:      include/linux/of_iommu.h
8579 F:      include/linux/iova.h
8580
8581 IO_URING
8582 M:      Jens Axboe <axboe@kernel.dk>
8583 L:      linux-block@vger.kernel.org
8584 L:      linux-fsdevel@vger.kernel.org
8585 T:      git git://git.kernel.dk/linux-block
8586 T:      git git://git.kernel.dk/liburing
8587 S:      Maintained
8588 F:      fs/io_uring.c
8589 F:      include/uapi/linux/io_uring.h
8590
8591 IPMI SUBSYSTEM
8592 M:      Corey Minyard <minyard@acm.org>
8593 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8594 W:      http://openipmi.sourceforge.net/
8595 S:      Supported
8596 F:      Documentation/devicetree/bindings/ipmi/
8597 F:      Documentation/IPMI.txt
8598 F:      drivers/char/ipmi/
8599 F:      include/linux/ipmi*
8600 F:      include/uapi/linux/ipmi*
8601
8602 IPS SCSI RAID DRIVER
8603 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8604 L:      linux-scsi@vger.kernel.org
8605 W:      http://www.adaptec.com/
8606 S:      Maintained
8607 F:      drivers/scsi/ips*
8608
8609 IPVS
8610 M:      Wensong Zhang <wensong@linux-vs.org>
8611 M:      Simon Horman <horms@verge.net.au>
8612 M:      Julian Anastasov <ja@ssi.bg>
8613 L:      netdev@vger.kernel.org
8614 L:      lvs-devel@vger.kernel.org
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8618 F:      Documentation/networking/ipvs-sysctl.txt
8619 F:      include/net/ip_vs.h
8620 F:      include/uapi/linux/ip_vs.h
8621 F:      net/netfilter/ipvs/
8622
8623 IPWIRELESS DRIVER
8624 M:      Jiri Kosina <jikos@kernel.org>
8625 M:      David Sterba <dsterba@suse.com>
8626 S:      Odd Fixes
8627 F:      drivers/tty/ipwireless/
8628
8629 IPX NETWORK LAYER
8630 L:      netdev@vger.kernel.org
8631 S:      Obsolete
8632 F:      include/uapi/linux/ipx.h
8633
8634 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8635 M:      Marc Zyngier <maz@kernel.org>
8636 S:      Maintained
8637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8638 F:      Documentation/IRQ-domain.txt
8639 F:      include/linux/irqdomain.h
8640 F:      kernel/irq/irqdomain.c
8641 F:      kernel/irq/msi.c
8642
8643 IRQ SUBSYSTEM
8644 M:      Thomas Gleixner <tglx@linutronix.de>
8645 L:      linux-kernel@vger.kernel.org
8646 S:      Maintained
8647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8648 F:      kernel/irq/
8649
8650 IRQCHIP DRIVERS
8651 M:      Thomas Gleixner <tglx@linutronix.de>
8652 M:      Jason Cooper <jason@lakedaemon.net>
8653 M:      Marc Zyngier <maz@kernel.org>
8654 L:      linux-kernel@vger.kernel.org
8655 S:      Maintained
8656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8657 F:      Documentation/devicetree/bindings/interrupt-controller/
8658 F:      drivers/irqchip/
8659
8660 ISA
8661 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8662 S:      Maintained
8663 F:      Documentation/driver-api/isa.rst
8664 F:      drivers/base/isa.c
8665 F:      include/linux/isa.h
8666
8667 ISA RADIO MODULE
8668 M:      Hans Verkuil <hverkuil@xs4all.nl>
8669 L:      linux-media@vger.kernel.org
8670 T:      git git://linuxtv.org/media_tree.git
8671 W:      https://linuxtv.org
8672 S:      Maintained
8673 F:      drivers/media/radio/radio-isa*
8674
8675 ISAPNP
8676 M:      Jaroslav Kysela <perex@perex.cz>
8677 S:      Maintained
8678 F:      Documentation/driver-api/isapnp.rst
8679 F:      drivers/pnp/isapnp/
8680 F:      include/linux/isapnp.h
8681
8682 ISCSI
8683 M:      Lee Duncan <lduncan@suse.com>
8684 M:      Chris Leech <cleech@redhat.com>
8685 L:      open-iscsi@googlegroups.com
8686 W:      www.open-iscsi.com
8687 S:      Maintained
8688 F:      drivers/scsi/*iscsi*
8689 F:      include/scsi/*iscsi*
8690
8691 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8692 M:      Peter Jones <pjones@redhat.com>
8693 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8694 S:      Maintained
8695 F:      drivers/firmware/iscsi_ibft*
8696
8697 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8698 M:      Sagi Grimberg <sagi@grimberg.me>
8699 M:      Max Gurtovoy <maxg@mellanox.com>
8700 L:      linux-rdma@vger.kernel.org
8701 S:      Supported
8702 W:      http://www.openfabrics.org
8703 W:      www.open-iscsi.org
8704 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8705 F:      drivers/infiniband/ulp/iser/
8706
8707 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8708 M:      Sagi Grimberg <sagi@grimberg.me>
8709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8710 L:      linux-rdma@vger.kernel.org
8711 L:      target-devel@vger.kernel.org
8712 S:      Supported
8713 W:      http://www.linux-iscsi.org
8714 F:      drivers/infiniband/ulp/isert
8715
8716 ISDN/mISDN SUBSYSTEM
8717 M:      Karsten Keil <isdn@linux-pingi.de>
8718 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8719 L:      netdev@vger.kernel.org
8720 W:      http://www.isdn4linux.de
8721 S:      Maintained
8722 F:      drivers/isdn/mISDN
8723 F:      drivers/isdn/hardware
8724
8725 ISDN/CAPI SUBSYSTEM
8726 M:      Karsten Keil <isdn@linux-pingi.de>
8727 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8728 L:      netdev@vger.kernel.org
8729 W:      http://www.isdn4linux.de
8730 S:      Odd Fixes
8731 F:      Documentation/isdn/
8732 F:      drivers/isdn/capi/
8733 F:      drivers/staging/isdn/
8734 F:      net/bluetooth/cmtp/
8735 F:      include/linux/isdn/
8736 F:      include/uapi/linux/isdn/
8737
8738 IT87 HARDWARE MONITORING DRIVER
8739 M:      Jean Delvare <jdelvare@suse.com>
8740 L:      linux-hwmon@vger.kernel.org
8741 S:      Maintained
8742 F:      Documentation/hwmon/it87.rst
8743 F:      drivers/hwmon/it87.c
8744
8745 IT913X MEDIA DRIVER
8746 M:      Antti Palosaari <crope@iki.fi>
8747 L:      linux-media@vger.kernel.org
8748 W:      https://linuxtv.org
8749 W:      http://palosaari.fi/linux/
8750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8751 T:      git git://linuxtv.org/anttip/media_tree.git
8752 S:      Maintained
8753 F:      drivers/media/tuners/it913x*
8754
8755 IVTV VIDEO4LINUX DRIVER
8756 M:      Andy Walls <awalls@md.metrocast.net>
8757 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8758 L:      linux-media@vger.kernel.org
8759 T:      git git://linuxtv.org/media_tree.git
8760 W:      http://www.ivtvdriver.org
8761 S:      Maintained
8762 F:      Documentation/media/v4l-drivers/ivtv*
8763 F:      drivers/media/pci/ivtv/
8764 F:      include/uapi/linux/ivtv*
8765
8766 IX2505V MEDIA DRIVER
8767 M:      Malcolm Priestley <tvboxspy@gmail.com>
8768 L:      linux-media@vger.kernel.org
8769 W:      https://linuxtv.org
8770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8771 S:      Maintained
8772 F:      drivers/media/dvb-frontends/ix2505v*
8773
8774 JAILHOUSE HYPERVISOR INTERFACE
8775 M:      Jan Kiszka <jan.kiszka@siemens.com>
8776 L:      jailhouse-dev@googlegroups.com
8777 S:      Maintained
8778 F:      arch/x86/kernel/jailhouse.c
8779 F:      arch/x86/include/asm/jailhouse_para.h
8780
8781 JC42.4 TEMPERATURE SENSOR DRIVER
8782 M:      Guenter Roeck <linux@roeck-us.net>
8783 L:      linux-hwmon@vger.kernel.org
8784 S:      Maintained
8785 F:      drivers/hwmon/jc42.c
8786 F:      Documentation/hwmon/jc42.rst
8787
8788 JFS FILESYSTEM
8789 M:      Dave Kleikamp <shaggy@kernel.org>
8790 L:      jfs-discussion@lists.sourceforge.net
8791 W:      http://jfs.sourceforge.net/
8792 T:      git git://github.com/kleikamp/linux-shaggy.git
8793 S:      Maintained
8794 F:      Documentation/admin-guide/jfs.rst
8795 F:      fs/jfs/
8796
8797 JME NETWORK DRIVER
8798 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8799 L:      netdev@vger.kernel.org
8800 S:      Maintained
8801 F:      drivers/net/ethernet/jme.*
8802
8803 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8804 M:      David Woodhouse <dwmw2@infradead.org>
8805 M:      Richard Weinberger <richard@nod.at>
8806 L:      linux-mtd@lists.infradead.org
8807 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8808 T:      git git://git.infradead.org/ubifs-2.6.git
8809 S:      Odd Fixes
8810 F:      fs/jffs2/
8811 F:      include/uapi/linux/jffs2.h
8812
8813 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8814 M:      "Theodore Ts'o" <tytso@mit.edu>
8815 M:      Jan Kara <jack@suse.com>
8816 L:      linux-ext4@vger.kernel.org
8817 S:      Maintained
8818 F:      fs/jbd2/
8819 F:      include/linux/jbd2.h
8820
8821 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8822 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8823 L:      linux-media@vger.kernel.org
8824 S:      Maintained
8825 F:      drivers/media/platform/rcar_jpu.c
8826
8827 JSM Neo PCI based serial card
8828 L:      linux-serial@vger.kernel.org
8829 S:      Orphan
8830 F:      drivers/tty/serial/jsm/
8831
8832 K10TEMP HARDWARE MONITORING DRIVER
8833 M:      Clemens Ladisch <clemens@ladisch.de>
8834 L:      linux-hwmon@vger.kernel.org
8835 S:      Maintained
8836 F:      Documentation/hwmon/k10temp.rst
8837 F:      drivers/hwmon/k10temp.c
8838
8839 K8TEMP HARDWARE MONITORING DRIVER
8840 M:      Rudolf Marek <r.marek@assembler.cz>
8841 L:      linux-hwmon@vger.kernel.org
8842 S:      Maintained
8843 F:      Documentation/hwmon/k8temp.rst
8844 F:      drivers/hwmon/k8temp.c
8845
8846 KASAN
8847 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8848 R:      Alexander Potapenko <glider@google.com>
8849 R:      Dmitry Vyukov <dvyukov@google.com>
8850 L:      kasan-dev@googlegroups.com
8851 S:      Maintained
8852 F:      arch/*/include/asm/kasan.h
8853 F:      arch/*/mm/kasan_init*
8854 F:      Documentation/dev-tools/kasan.rst
8855 F:      include/linux/kasan*.h
8856 F:      lib/test_kasan.c
8857 F:      mm/kasan/
8858 F:      scripts/Makefile.kasan
8859
8860 KCONFIG
8861 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8863 L:      linux-kbuild@vger.kernel.org
8864 S:      Maintained
8865 F:      Documentation/kbuild/kconfig*
8866 F:      scripts/kconfig/
8867 F:      scripts/Kconfig.include
8868
8869 KDUMP
8870 M:      Dave Young <dyoung@redhat.com>
8871 M:      Baoquan He <bhe@redhat.com>
8872 R:      Vivek Goyal <vgoyal@redhat.com>
8873 L:      kexec@lists.infradead.org
8874 W:      http://lse.sourceforge.net/kdump/
8875 S:      Maintained
8876 F:      Documentation/admin-guide/kdump/
8877
8878 KEENE FM RADIO TRANSMITTER DRIVER
8879 M:      Hans Verkuil <hverkuil@xs4all.nl>
8880 L:      linux-media@vger.kernel.org
8881 T:      git git://linuxtv.org/media_tree.git
8882 W:      https://linuxtv.org
8883 S:      Maintained
8884 F:      drivers/media/radio/radio-keene*
8885
8886 KERNEL AUTOMOUNTER
8887 M:      Ian Kent <raven@themaw.net>
8888 L:      autofs@vger.kernel.org
8889 S:      Maintained
8890 F:      fs/autofs/
8891
8892 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8893 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8894 M:      Michal Marek <michal.lkml@markovi.net>
8895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8896 L:      linux-kbuild@vger.kernel.org
8897 S:      Maintained
8898 F:      Documentation/kbuild/
8899 F:      Makefile
8900 F:      scripts/Kbuild*
8901 F:      scripts/Makefile*
8902 F:      scripts/basic/
8903 F:      scripts/mk*
8904 F:      scripts/*vmlinux*
8905 F:      scripts/mod/
8906 F:      scripts/package/
8907
8908 KERNEL JANITORS
8909 L:      kernel-janitors@vger.kernel.org
8910 W:      http://kernelnewbies.org/KernelJanitors
8911 S:      Odd Fixes
8912
8913 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8914 M:      "J. Bruce Fields" <bfields@fieldses.org>
8915 M:      Chuck Lever <chuck.lever@oracle.com>
8916 L:      linux-nfs@vger.kernel.org
8917 W:      http://nfs.sourceforge.net/
8918 T:      git git://linux-nfs.org/~bfields/linux.git
8919 S:      Supported
8920 F:      fs/nfsd/
8921 F:      include/uapi/linux/nfsd/
8922 F:      fs/lockd/
8923 F:      fs/nfs_common/
8924 F:      net/sunrpc/
8925 F:      include/linux/lockd/
8926 F:      include/linux/sunrpc/
8927 F:      include/uapi/linux/sunrpc/
8928
8929 KERNEL SELFTEST FRAMEWORK
8930 M:      Shuah Khan <shuah@kernel.org>
8931 M:      Shuah Khan <skhan@linuxfoundation.org>
8932 L:      linux-kselftest@vger.kernel.org
8933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8934 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8935 S:      Maintained
8936 F:      tools/testing/selftests/
8937 F:      Documentation/dev-tools/kselftest*
8938
8939 KERNEL USERMODE HELPER
8940 M:      Luis Chamberlain <mcgrof@kernel.org>
8941 L:      linux-kernel@vger.kernel.org
8942 S:      Maintained
8943 F:      kernel/umh.c
8944 F:      include/linux/umh.h
8945
8946 KERNEL VIRTUAL MACHINE (KVM)
8947 M:      Paolo Bonzini <pbonzini@redhat.com>
8948 M:      Radim Krčmář <rkrcmar@redhat.com>
8949 L:      kvm@vger.kernel.org
8950 W:      http://www.linux-kvm.org
8951 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8952 S:      Supported
8953 F:      Documentation/virt/kvm/
8954 F:      include/trace/events/kvm.h
8955 F:      include/uapi/asm-generic/kvm*
8956 F:      include/uapi/linux/kvm*
8957 F:      include/asm-generic/kvm*
8958 F:      include/linux/kvm*
8959 F:      include/kvm/iodev.h
8960 F:      virt/kvm/*
8961 F:      tools/kvm/
8962 F:      tools/testing/selftests/kvm/
8963
8964 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8965 M:      Marc Zyngier <maz@kernel.org>
8966 R:      James Morse <james.morse@arm.com>
8967 R:      Julien Thierry <julien.thierry.kdev@gmail.com>
8968 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
8969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8970 L:      kvmarm@lists.cs.columbia.edu
8971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8972 S:      Maintained
8973 F:      arch/arm/include/uapi/asm/kvm*
8974 F:      arch/arm/include/asm/kvm*
8975 F:      arch/arm/kvm/
8976 F:      arch/arm64/include/uapi/asm/kvm*
8977 F:      arch/arm64/include/asm/kvm*
8978 F:      arch/arm64/kvm/
8979 F:      virt/kvm/arm/
8980 F:      include/kvm/arm_*
8981
8982 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8983 M:      James Hogan <jhogan@kernel.org>
8984 L:      linux-mips@vger.kernel.org
8985 S:      Supported
8986 F:      arch/mips/include/uapi/asm/kvm*
8987 F:      arch/mips/include/asm/kvm*
8988 F:      arch/mips/kvm/
8989
8990 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8991 M:      Paul Mackerras <paulus@ozlabs.org>
8992 L:      kvm-ppc@vger.kernel.org
8993 W:      http://www.linux-kvm.org/
8994 T:      git git://github.com/agraf/linux-2.6.git
8995 S:      Supported
8996 F:      arch/powerpc/include/uapi/asm/kvm*
8997 F:      arch/powerpc/include/asm/kvm*
8998 F:      arch/powerpc/kvm/
8999 F:      arch/powerpc/kernel/kvm*
9000
9001 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
9002 M:      Christian Borntraeger <borntraeger@de.ibm.com>
9003 M:      Janosch Frank <frankja@linux.ibm.com>
9004 R:      David Hildenbrand <david@redhat.com>
9005 R:      Cornelia Huck <cohuck@redhat.com>
9006 L:      kvm@vger.kernel.org
9007 W:      http://www.ibm.com/developerworks/linux/linux390/
9008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
9009 S:      Supported
9010 F:      arch/s390/include/uapi/asm/kvm*
9011 F:      arch/s390/include/asm/gmap.h
9012 F:      arch/s390/include/asm/kvm*
9013 F:      arch/s390/kvm/
9014 F:      arch/s390/mm/gmap.c
9015 F:      tools/testing/selftests/kvm/s390x/
9016 F:      tools/testing/selftests/kvm/*/s390x/
9017
9018 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
9019 M:      Paolo Bonzini <pbonzini@redhat.com>
9020 M:      Radim Krčmář <rkrcmar@redhat.com>
9021 R:      Sean Christopherson <sean.j.christopherson@intel.com>
9022 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
9023 R:      Wanpeng Li <wanpengli@tencent.com>
9024 R:      Jim Mattson <jmattson@google.com>
9025 R:      Joerg Roedel <joro@8bytes.org>
9026 L:      kvm@vger.kernel.org
9027 W:      http://www.linux-kvm.org
9028 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
9029 S:      Supported
9030 F:      arch/x86/kvm/
9031 F:      arch/x86/kvm/*/
9032 F:      arch/x86/include/uapi/asm/kvm*
9033 F:      arch/x86/include/uapi/asm/vmx.h
9034 F:      arch/x86/include/uapi/asm/svm.h
9035 F:      arch/x86/include/asm/kvm*
9036 F:      arch/x86/include/asm/pvclock-abi.h
9037 F:      arch/x86/include/asm/svm.h
9038 F:      arch/x86/include/asm/vmx.h
9039 F:      arch/x86/kernel/kvm.c
9040 F:      arch/x86/kernel/kvmclock.c
9041
9042 KERNFS
9043 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9044 M:      Tejun Heo <tj@kernel.org>
9045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9046 S:      Supported
9047 F:      include/linux/kernfs.h
9048 F:      fs/kernfs/
9049
9050 KEXEC
9051 M:      Eric Biederman <ebiederm@xmission.com>
9052 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
9053 L:      kexec@lists.infradead.org
9054 S:      Maintained
9055 F:      include/linux/kexec.h
9056 F:      include/uapi/linux/kexec.h
9057 F:      kernel/kexec*
9058
9059 KEYS-ENCRYPTED
9060 M:      Mimi Zohar <zohar@linux.ibm.com>
9061 L:      linux-integrity@vger.kernel.org
9062 L:      keyrings@vger.kernel.org
9063 S:      Supported
9064 F:      Documentation/security/keys/trusted-encrypted.rst
9065 F:      include/keys/encrypted-type.h
9066 F:      security/keys/encrypted-keys/
9067
9068 KEYS-TRUSTED
9069 M:      James Bottomley <jejb@linux.ibm.com>
9070 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9071 M:      Mimi Zohar <zohar@linux.ibm.com>
9072 L:      linux-integrity@vger.kernel.org
9073 L:      keyrings@vger.kernel.org
9074 S:      Supported
9075 F:      Documentation/security/keys/trusted-encrypted.rst
9076 F:      include/keys/trusted-type.h
9077 F:      security/keys/trusted.c
9078 F:      include/keys/trusted.h
9079
9080 KEYS/KEYRINGS:
9081 M:      David Howells <dhowells@redhat.com>
9082 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
9083 L:      keyrings@vger.kernel.org
9084 S:      Maintained
9085 F:      Documentation/security/keys/core.rst
9086 F:      include/linux/key.h
9087 F:      include/linux/key-type.h
9088 F:      include/linux/keyctl.h
9089 F:      include/uapi/linux/keyctl.h
9090 F:      include/keys/
9091 F:      security/keys/
9092
9093 KGDB / KDB /debug_core
9094 M:      Jason Wessel <jason.wessel@windriver.com>
9095 M:      Daniel Thompson <daniel.thompson@linaro.org>
9096 R:      Douglas Anderson <dianders@chromium.org>
9097 W:      http://kgdb.wiki.kernel.org/
9098 L:      kgdb-bugreport@lists.sourceforge.net
9099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
9100 S:      Maintained
9101 F:      Documentation/dev-tools/kgdb.rst
9102 F:      drivers/misc/kgdbts.c
9103 F:      drivers/tty/serial/kgdboc.c
9104 F:      include/linux/kdb.h
9105 F:      include/linux/kgdb.h
9106 F:      kernel/debug/
9107
9108 KMEMLEAK
9109 M:      Catalin Marinas <catalin.marinas@arm.com>
9110 S:      Maintained
9111 F:      Documentation/dev-tools/kmemleak.rst
9112 F:      include/linux/kmemleak.h
9113 F:      mm/kmemleak.c
9114 F:      mm/kmemleak-test.c
9115
9116 KMOD KERNEL MODULE LOADER - USERMODE HELPER
9117 M:      Luis Chamberlain <mcgrof@kernel.org>
9118 L:      linux-kernel@vger.kernel.org
9119 S:      Maintained
9120 F:      kernel/kmod.c
9121 F:      include/linux/kmod.h
9122 F:      lib/test_kmod.c
9123 F:      tools/testing/selftests/kmod/
9124
9125 KPROBES
9126 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
9127 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
9128 M:      "David S. Miller" <davem@davemloft.net>
9129 M:      Masami Hiramatsu <mhiramat@kernel.org>
9130 S:      Maintained
9131 F:      Documentation/kprobes.txt
9132 F:      include/linux/kprobes.h
9133 F:      include/asm-generic/kprobes.h
9134 F:      kernel/kprobes.c
9135
9136 KS0108 LCD CONTROLLER DRIVER
9137 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
9138 S:      Maintained
9139 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
9140 F:      drivers/auxdisplay/ks0108.c
9141 F:      include/linux/ks0108.h
9142
9143 L3MDEV
9144 M:      David Ahern <dsahern@kernel.org>
9145 L:      netdev@vger.kernel.org
9146 S:      Maintained
9147 F:      net/l3mdev
9148 F:      include/net/l3mdev.h
9149
9150 L7 BPF FRAMEWORK
9151 M:      John Fastabend <john.fastabend@gmail.com>
9152 M:      Daniel Borkmann <daniel@iogearbox.net>
9153 L:      netdev@vger.kernel.org
9154 L:      bpf@vger.kernel.org
9155 S:      Maintained
9156 F:      include/linux/skmsg.h
9157 F:      net/core/skmsg.c
9158 F:      net/core/sock_map.c
9159 F:      net/ipv4/tcp_bpf.c
9160
9161 LANTIQ / INTEL Ethernet drivers
9162 M:      Hauke Mehrtens <hauke@hauke-m.de>
9163 L:      netdev@vger.kernel.org
9164 S:      Maintained
9165 F:      net/dsa/tag_gswip.c
9166 F:      drivers/net/ethernet/lantiq_xrx200.c
9167 F:      drivers/net/dsa/lantiq_pce.h
9168 F:      drivers/net/dsa/lantiq_gswip.c
9169
9170 LANTIQ MIPS ARCHITECTURE
9171 M:      John Crispin <john@phrozen.org>
9172 L:      linux-mips@vger.kernel.org
9173 S:      Maintained
9174 F:      arch/mips/lantiq
9175 F:      drivers/soc/lantiq
9176
9177 LAPB module
9178 L:      linux-x25@vger.kernel.org
9179 S:      Orphan
9180 F:      Documentation/networking/lapb-module.txt
9181 F:      include/*/lapb.h
9182 F:      net/lapb/
9183
9184 LASI 53c700 driver for PARISC
9185 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9186 L:      linux-scsi@vger.kernel.org
9187 S:      Maintained
9188 F:      Documentation/scsi/53c700.txt
9189 F:      drivers/scsi/53c700*
9190
9191 LEAKING_ADDRESSES
9192 M:      Tobin C. Harding <me@tobin.cc>
9193 M:      Tycho Andersen <tycho@tycho.ws>
9194 L:      kernel-hardening@lists.openwall.com
9195 S:      Maintained
9196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
9197 F:      scripts/leaking_addresses.pl
9198
9199 LED SUBSYSTEM
9200 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
9201 M:      Pavel Machek <pavel@ucw.cz>
9202 R:      Dan Murphy <dmurphy@ti.com>
9203 L:      linux-leds@vger.kernel.org
9204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
9205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
9206 S:      Maintained
9207 F:      Documentation/devicetree/bindings/leds/
9208 F:      drivers/leds/
9209 F:      include/linux/leds.h
9210
9211 LEGACY EEPROM DRIVER
9212 M:      Jean Delvare <jdelvare@suse.com>
9213 S:      Maintained
9214 F:      Documentation/misc-devices/eeprom.rst
9215 F:      drivers/misc/eeprom/eeprom.c
9216
9217 LEGO MINDSTORMS EV3
9218 R:      David Lechner <david@lechnology.com>
9219 S:      Maintained
9220 F:      arch/arm/boot/dts/da850-lego-ev3.dts
9221 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
9222 F:      drivers/power/supply/lego_ev3_battery.c
9223
9224 LEGO USB Tower driver
9225 M:      Juergen Stuber <starblue@users.sourceforge.net>
9226 L:      legousb-devel@lists.sourceforge.net
9227 W:      http://legousb.sourceforge.net/
9228 S:      Maintained
9229 F:      drivers/usb/misc/legousbtower.c
9230
9231 LG LAPTOP EXTRAS
9232 M:      Matan Ziv-Av <matan@svgalib.org>
9233 L:      platform-driver-x86@vger.kernel.org
9234 S:      Maintained
9235 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
9236 F:      Documentation/admin-guide/laptops/lg-laptop.rst
9237 F:      drivers/platform/x86/lg-laptop.c
9238
9239 LG2160 MEDIA DRIVER
9240 M:      Michael Krufky <mkrufky@linuxtv.org>
9241 L:      linux-media@vger.kernel.org
9242 W:      https://linuxtv.org
9243 W:      http://github.com/mkrufky
9244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9245 T:      git git://linuxtv.org/mkrufky/tuners.git
9246 S:      Maintained
9247 F:      drivers/media/dvb-frontends/lg2160.*
9248
9249 LGDT3305 MEDIA DRIVER
9250 M:      Michael Krufky <mkrufky@linuxtv.org>
9251 L:      linux-media@vger.kernel.org
9252 W:      https://linuxtv.org
9253 W:      http://github.com/mkrufky
9254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9255 T:      git git://linuxtv.org/mkrufky/tuners.git
9256 S:      Maintained
9257 F:      drivers/media/dvb-frontends/lgdt3305.*
9258
9259 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
9260 M:      Viresh Kumar <vireshk@kernel.org>
9261 L:      linux-ide@vger.kernel.org
9262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9263 S:      Maintained
9264 F:      include/linux/pata_arasan_cf_data.h
9265 F:      drivers/ata/pata_arasan_cf.c
9266
9267 LIBATA PATA DRIVERS
9268 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9269 M:      Jens Axboe <axboe@kernel.dk>
9270 L:      linux-ide@vger.kernel.org
9271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9272 S:      Maintained
9273 F:      drivers/ata/pata_*.c
9274 F:      drivers/ata/ata_generic.c
9275
9276 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
9277 M:      Linus Walleij <linus.walleij@linaro.org>
9278 L:      linux-ide@vger.kernel.org
9279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9280 S:      Maintained
9281 F:      drivers/ata/pata_ftide010.c
9282 F:      drivers/ata/sata_gemini.c
9283 F:      drivers/ata/sata_gemini.h
9284
9285 LIBATA SATA AHCI PLATFORM devices support
9286 M:      Hans de Goede <hdegoede@redhat.com>
9287 M:      Jens Axboe <axboe@kernel.dk>
9288 L:      linux-ide@vger.kernel.org
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9290 S:      Maintained
9291 F:      drivers/ata/ahci_platform.c
9292 F:      drivers/ata/libahci_platform.c
9293 F:      include/linux/ahci_platform.h
9294
9295 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
9296 M:      Mikael Pettersson <mikpelinux@gmail.com>
9297 L:      linux-ide@vger.kernel.org
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9299 S:      Maintained
9300 F:      drivers/ata/sata_promise.*
9301
9302 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
9303 M:      Jens Axboe <axboe@kernel.dk>
9304 L:      linux-ide@vger.kernel.org
9305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
9306 S:      Maintained
9307 F:      drivers/ata/
9308 F:      include/linux/ata.h
9309 F:      include/linux/libata.h
9310 F:      Documentation/devicetree/bindings/ata/
9311
9312 LIBLOCKDEP
9313 M:      Sasha Levin <alexander.levin@microsoft.com>
9314 S:      Maintained
9315 F:      tools/lib/lockdep/
9316
9317 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
9318 M:      Dan Williams <dan.j.williams@intel.com>
9319 M:      Vishal Verma <vishal.l.verma@intel.com>
9320 M:      Dave Jiang <dave.jiang@intel.com>
9321 L:      linux-nvdimm@lists.01.org
9322 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9323 S:      Supported
9324 F:      drivers/nvdimm/blk.c
9325 F:      drivers/nvdimm/region_devs.c
9326
9327 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
9328 M:      Vishal Verma <vishal.l.verma@intel.com>
9329 M:      Dan Williams <dan.j.williams@intel.com>
9330 M:      Dave Jiang <dave.jiang@intel.com>
9331 L:      linux-nvdimm@lists.01.org
9332 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9333 S:      Supported
9334 F:      drivers/nvdimm/btt*
9335
9336 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
9337 M:      Dan Williams <dan.j.williams@intel.com>
9338 M:      Vishal Verma <vishal.l.verma@intel.com>
9339 M:      Dave Jiang <dave.jiang@intel.com>
9340 L:      linux-nvdimm@lists.01.org
9341 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9342 S:      Supported
9343 F:      drivers/nvdimm/pmem*
9344
9345 LIBNVDIMM: DEVICETREE BINDINGS
9346 M:      Oliver O'Halloran <oohall@gmail.com>
9347 L:      linux-nvdimm@lists.01.org
9348 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9349 S:      Supported
9350 F:      drivers/nvdimm/of_pmem.c
9351 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
9352
9353 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
9354 M:      Dan Williams <dan.j.williams@intel.com>
9355 M:      Vishal Verma <vishal.l.verma@intel.com>
9356 M:      Dave Jiang <dave.jiang@intel.com>
9357 M:      Keith Busch <keith.busch@intel.com>
9358 M:      Ira Weiny <ira.weiny@intel.com>
9359 L:      linux-nvdimm@lists.01.org
9360 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
9361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
9362 S:      Supported
9363 F:      drivers/nvdimm/*
9364 F:      drivers/acpi/nfit/*
9365 F:      include/linux/nd.h
9366 F:      include/linux/libnvdimm.h
9367 F:      include/uapi/linux/ndctl.h
9368
9369 LICENSES and SPDX stuff
9370 M:      Thomas Gleixner <tglx@linutronix.de>
9371 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9372 L:      linux-spdx@vger.kernel.org
9373 S:      Maintained
9374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
9375 F:      COPYING
9376 F:      Documentation/process/license-rules.rst
9377 F:      LICENSES/
9378 F:      scripts/spdxcheck-test.sh
9379 F:      scripts/spdxcheck.py
9380
9381 LIGHTNVM PLATFORM SUPPORT
9382 M:      Matias Bjorling <mb@lightnvm.io>
9383 W:      http://github/OpenChannelSSD
9384 L:      linux-block@vger.kernel.org
9385 S:      Maintained
9386 F:      drivers/lightnvm/
9387 F:      include/linux/lightnvm.h
9388 F:      include/uapi/linux/lightnvm.h
9389
9390 LINUX FOR POWER MACINTOSH
9391 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9392 W:      http://www.penguinppc.org/
9393 L:      linuxppc-dev@lists.ozlabs.org
9394 S:      Maintained
9395 F:      arch/powerpc/platforms/powermac/
9396 F:      drivers/macintosh/
9397
9398 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9399 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9400 M:      Paul Mackerras <paulus@samba.org>
9401 M:      Michael Ellerman <mpe@ellerman.id.au>
9402 W:      https://github.com/linuxppc/linux/wiki
9403 L:      linuxppc-dev@lists.ozlabs.org
9404 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9406 S:      Supported
9407 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9408 F:      Documentation/devicetree/bindings/powerpc/
9409 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9410 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9411 F:      Documentation/powerpc/
9412 F:      arch/powerpc/
9413 F:      drivers/char/tpm/tpm_ibmvtpm*
9414 F:      drivers/crypto/nx/
9415 F:      drivers/crypto/vmx/
9416 F:      drivers/i2c/busses/i2c-opal.c
9417 F:      drivers/net/ethernet/ibm/ibmveth.*
9418 F:      drivers/net/ethernet/ibm/ibmvnic.*
9419 F:      drivers/pci/hotplug/pnv_php.c
9420 F:      drivers/pci/hotplug/rpa*
9421 F:      drivers/rtc/rtc-opal.c
9422 F:      drivers/scsi/ibmvscsi/
9423 F:      drivers/tty/hvc/hvc_opal.c
9424 F:      drivers/watchdog/wdrtas.c
9425 F:      tools/testing/selftests/powerpc
9426 N:      /pmac
9427 N:      powermac
9428 N:      powernv
9429 N:      [^a-z0-9]ps3
9430 N:      pseries
9431
9432 LINUX FOR POWERPC EMBEDDED MPC5XXX
9433 M:      Anatolij Gustschin <agust@denx.de>
9434 L:      linuxppc-dev@lists.ozlabs.org
9435 T:      git git://git.denx.de/linux-denx-agust.git
9436 S:      Maintained
9437 F:      arch/powerpc/platforms/512x/
9438 F:      arch/powerpc/platforms/52xx/
9439
9440 LINUX FOR POWERPC EMBEDDED PPC4XX
9441 M:      Alistair Popple <alistair@popple.id.au>
9442 M:      Matt Porter <mporter@kernel.crashing.org>
9443 W:      http://www.penguinppc.org/
9444 L:      linuxppc-dev@lists.ozlabs.org
9445 S:      Maintained
9446 F:      arch/powerpc/platforms/40x/
9447 F:      arch/powerpc/platforms/44x/
9448
9449 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9450 M:      Scott Wood <oss@buserror.net>
9451 M:      Kumar Gala <galak@kernel.crashing.org>
9452 W:      http://www.penguinppc.org/
9453 L:      linuxppc-dev@lists.ozlabs.org
9454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9455 S:      Maintained
9456 F:      arch/powerpc/platforms/83xx/
9457 F:      arch/powerpc/platforms/85xx/
9458 F:      Documentation/devicetree/bindings/powerpc/fsl/
9459
9460 LINUX FOR POWERPC EMBEDDED PPC8XX
9461 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9462 W:      http://www.penguinppc.org/
9463 L:      linuxppc-dev@lists.ozlabs.org
9464 S:      Maintained
9465 F:      arch/powerpc/platforms/8xx/
9466
9467 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9468 L:      linuxppc-dev@lists.ozlabs.org
9469 S:      Orphan
9470 F:      arch/powerpc/*/*virtex*
9471 F:      arch/powerpc/*/*/*virtex*
9472
9473 LINUX FOR POWERPC PA SEMI PWRFICIENT
9474 L:      linuxppc-dev@lists.ozlabs.org
9475 S:      Orphan
9476 F:      arch/powerpc/platforms/pasemi/
9477 F:      drivers/*/*pasemi*
9478 F:      drivers/*/*/*pasemi*
9479
9480 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9481 M:      Kees Cook <keescook@chromium.org>
9482 S:      Maintained
9483 F:      drivers/misc/lkdtm/*
9484
9485 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9486 M:      Alan Stern <stern@rowland.harvard.edu>
9487 M:      Andrea Parri <parri.andrea@gmail.com>
9488 M:      Will Deacon <will@kernel.org>
9489 M:      Peter Zijlstra <peterz@infradead.org>
9490 M:      Boqun Feng <boqun.feng@gmail.com>
9491 M:      Nicholas Piggin <npiggin@gmail.com>
9492 M:      David Howells <dhowells@redhat.com>
9493 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9494 M:      Luc Maranget <luc.maranget@inria.fr>
9495 M:      "Paul E. McKenney" <paulmck@kernel.org>
9496 R:      Akira Yokosawa <akiyks@gmail.com>
9497 R:      Daniel Lustig <dlustig@nvidia.com>
9498 L:      linux-kernel@vger.kernel.org
9499 L:      linux-arch@vger.kernel.org
9500 S:      Supported
9501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9502 F:      tools/memory-model/
9503 F:      Documentation/atomic_bitops.txt
9504 F:      Documentation/atomic_t.txt
9505 F:      Documentation/core-api/atomic_ops.rst
9506 F:      Documentation/core-api/refcount-vs-atomic.rst
9507 F:      Documentation/memory-barriers.txt
9508
9509 LIS3LV02D ACCELEROMETER DRIVER
9510 M:      Eric Piel <eric.piel@tremplin-utc.net>
9511 S:      Maintained
9512 F:      Documentation/misc-devices/lis3lv02d.rst
9513 F:      drivers/misc/lis3lv02d/
9514 F:      drivers/platform/x86/hp_accel.c
9515
9516 LIVE PATCHING
9517 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9518 M:      Jiri Kosina <jikos@kernel.org>
9519 M:      Miroslav Benes <mbenes@suse.cz>
9520 M:      Petr Mladek <pmladek@suse.com>
9521 R:      Joe Lawrence <joe.lawrence@redhat.com>
9522 S:      Maintained
9523 F:      kernel/livepatch/
9524 F:      include/linux/livepatch.h
9525 F:      arch/x86/include/asm/livepatch.h
9526 F:      arch/x86/kernel/livepatch.c
9527 F:      Documentation/livepatch/
9528 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9529 F:      samples/livepatch/
9530 F:      tools/testing/selftests/livepatch/
9531 L:      live-patching@vger.kernel.org
9532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9533
9534 LLC (802.2)
9535 L:      netdev@vger.kernel.org
9536 S:      Odd fixes
9537 F:      include/linux/llc.h
9538 F:      include/uapi/linux/llc.h
9539 F:      include/net/llc*
9540 F:      net/llc/
9541
9542 LM73 HARDWARE MONITOR DRIVER
9543 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9544 L:      linux-hwmon@vger.kernel.org
9545 S:      Maintained
9546 F:      drivers/hwmon/lm73.c
9547
9548 LM78 HARDWARE MONITOR DRIVER
9549 M:      Jean Delvare <jdelvare@suse.com>
9550 L:      linux-hwmon@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/hwmon/lm78.rst
9553 F:      drivers/hwmon/lm78.c
9554
9555 LM83 HARDWARE MONITOR DRIVER
9556 M:      Jean Delvare <jdelvare@suse.com>
9557 L:      linux-hwmon@vger.kernel.org
9558 S:      Maintained
9559 F:      Documentation/hwmon/lm83.rst
9560 F:      drivers/hwmon/lm83.c
9561
9562 LM90 HARDWARE MONITOR DRIVER
9563 M:      Jean Delvare <jdelvare@suse.com>
9564 L:      linux-hwmon@vger.kernel.org
9565 S:      Maintained
9566 F:      Documentation/hwmon/lm90.rst
9567 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9568 F:      drivers/hwmon/lm90.c
9569 F:      include/dt-bindings/thermal/lm90.h
9570
9571 LM95234 HARDWARE MONITOR DRIVER
9572 M:      Guenter Roeck <linux@roeck-us.net>
9573 L:      linux-hwmon@vger.kernel.org
9574 S:      Maintained
9575 F:      Documentation/hwmon/lm95234.rst
9576 F:      drivers/hwmon/lm95234.c
9577
9578 LME2510 MEDIA DRIVER
9579 M:      Malcolm Priestley <tvboxspy@gmail.com>
9580 L:      linux-media@vger.kernel.org
9581 W:      https://linuxtv.org
9582 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9583 S:      Maintained
9584 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9585
9586 LOADPIN SECURITY MODULE
9587 M:      Kees Cook <keescook@chromium.org>
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9589 S:      Supported
9590 F:      security/loadpin/
9591 F:      Documentation/admin-guide/LSM/LoadPin.rst
9592
9593 LOCKING PRIMITIVES
9594 M:      Peter Zijlstra <peterz@infradead.org>
9595 M:      Ingo Molnar <mingo@redhat.com>
9596 M:      Will Deacon <will@kernel.org>
9597 L:      linux-kernel@vger.kernel.org
9598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9599 S:      Maintained
9600 F:      Documentation/locking/
9601 F:      include/linux/lockdep.h
9602 F:      include/linux/spinlock*.h
9603 F:      arch/*/include/asm/spinlock*.h
9604 F:      include/linux/rwlock*.h
9605 F:      include/linux/mutex*.h
9606 F:      include/linux/rwsem*.h
9607 F:      include/linux/seqlock.h
9608 F:      lib/locking*.[ch]
9609 F:      kernel/locking/
9610 X:      kernel/locking/locktorture.c
9611
9612 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9613 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9614 L:      linux-ntfs-dev@lists.sourceforge.net
9615 W:      http://www.linux-ntfs.org/content/view/19/37/
9616 S:      Maintained
9617 F:      Documentation/admin-guide/ldm.rst
9618 F:      block/partitions/ldm.*
9619
9620 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9621 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9622 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9623 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9624 L:      MPT-FusionLinux.pdl@broadcom.com
9625 L:      linux-scsi@vger.kernel.org
9626 W:      http://www.avagotech.com/support/
9627 S:      Supported
9628 F:      drivers/message/fusion/
9629 F:      drivers/scsi/mpt3sas/
9630
9631 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9632 M:      Matthew Wilcox <willy@infradead.org>
9633 L:      linux-scsi@vger.kernel.org
9634 S:      Maintained
9635 F:      drivers/scsi/sym53c8xx_2/
9636
9637 LTC1660 DAC DRIVER
9638 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9639 L:      linux-iio@vger.kernel.org
9640 S:      Maintained
9641 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
9642 F:      drivers/iio/dac/ltc1660.c
9643
9644 LTC2983 IIO TEMPERATURE DRIVER
9645 M:      Nuno Sá <nuno.sa@analog.com>
9646 W:      http://ez.analog.com/community/linux-device-drivers
9647 L:      linux-iio@vger.kernel.org
9648 S:      Supported
9649 F:      drivers/iio/temperature/ltc2983.c
9650 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
9651
9652 LTC4261 HARDWARE MONITOR DRIVER
9653 M:      Guenter Roeck <linux@roeck-us.net>
9654 L:      linux-hwmon@vger.kernel.org
9655 S:      Maintained
9656 F:      Documentation/hwmon/ltc4261.rst
9657 F:      drivers/hwmon/ltc4261.c
9658
9659 LTC4306 I2C MULTIPLEXER DRIVER
9660 M:      Michael Hennerich <michael.hennerich@analog.com>
9661 W:      http://ez.analog.com/community/linux-device-drivers
9662 L:      linux-i2c@vger.kernel.org
9663 S:      Supported
9664 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9665 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9666
9667 LTP (Linux Test Project)
9668 M:      Mike Frysinger <vapier@gentoo.org>
9669 M:      Cyril Hrubis <chrubis@suse.cz>
9670 M:      Wanlong Gao <wanlong.gao@gmail.com>
9671 M:      Jan Stancek <jstancek@redhat.com>
9672 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9673 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9674 L:      ltp@lists.linux.it (subscribers-only)
9675 W:      http://linux-test-project.github.io/
9676 T:      git git://github.com/linux-test-project/ltp.git
9677 S:      Maintained
9678
9679 M68K ARCHITECTURE
9680 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9681 L:      linux-m68k@lists.linux-m68k.org
9682 W:      http://www.linux-m68k.org/
9683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9684 S:      Maintained
9685 F:      arch/m68k/
9686 F:      drivers/zorro/
9687
9688 M68K ON APPLE MACINTOSH
9689 M:      Joshua Thompson <funaho@jurai.org>
9690 W:      http://www.mac.linux-m68k.org/
9691 L:      linux-m68k@lists.linux-m68k.org
9692 S:      Maintained
9693 F:      arch/m68k/mac/
9694
9695 M68K ON HP9000/300
9696 M:      Philip Blundell <philb@gnu.org>
9697 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9698 S:      Maintained
9699 F:      arch/m68k/hp300/
9700
9701 M88DS3103 MEDIA DRIVER
9702 M:      Antti Palosaari <crope@iki.fi>
9703 L:      linux-media@vger.kernel.org
9704 W:      https://linuxtv.org
9705 W:      http://palosaari.fi/linux/
9706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9707 T:      git git://linuxtv.org/anttip/media_tree.git
9708 S:      Maintained
9709 F:      drivers/media/dvb-frontends/m88ds3103*
9710
9711 M88RS2000 MEDIA DRIVER
9712 M:      Malcolm Priestley <tvboxspy@gmail.com>
9713 L:      linux-media@vger.kernel.org
9714 W:      https://linuxtv.org
9715 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9716 S:      Maintained
9717 F:      drivers/media/dvb-frontends/m88rs2000*
9718
9719 MA901 MASTERKIT USB FM RADIO DRIVER
9720 M:      Alexey Klimov <klimov.linux@gmail.com>
9721 L:      linux-media@vger.kernel.org
9722 T:      git git://linuxtv.org/media_tree.git
9723 S:      Maintained
9724 F:      drivers/media/radio/radio-ma901.c
9725
9726 MAC80211
9727 M:      Johannes Berg <johannes@sipsolutions.net>
9728 L:      linux-wireless@vger.kernel.org
9729 W:      http://wireless.kernel.org/
9730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9732 S:      Maintained
9733 F:      Documentation/networking/mac80211-injection.txt
9734 F:      include/net/mac80211.h
9735 F:      net/mac80211/
9736 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9737 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
9738
9739 MAILBOX API
9740 M:      Jassi Brar <jassisinghbrar@gmail.com>
9741 L:      linux-kernel@vger.kernel.org
9742 S:      Maintained
9743 F:      drivers/mailbox/
9744 F:      include/linux/mailbox_client.h
9745 F:      include/linux/mailbox_controller.h
9746
9747 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9748 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9749 W:      http://www.kernel.org/doc/man-pages
9750 L:      linux-man@vger.kernel.org
9751 S:      Maintained
9752
9753 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9754 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9755 L:      linux-mips@vger.kernel.org
9756 S:      Maintained
9757 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9758
9759 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9760 M:      Andrew Lunn <andrew@lunn.ch>
9761 M:      Vivien Didelot <vivien.didelot@gmail.com>
9762 L:      netdev@vger.kernel.org
9763 S:      Maintained
9764 F:      drivers/net/dsa/mv88e6xxx/
9765 F:      include/linux/platform_data/mv88e6xxx.h
9766 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9767
9768 MARVELL ARMADA DRM SUPPORT
9769 M:      Russell King <linux@armlinux.org.uk>
9770 S:      Maintained
9771 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9772 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9773 F:      drivers/gpu/drm/armada/
9774 F:      include/uapi/drm/armada_drm.h
9775 F:      Documentation/devicetree/bindings/display/armada/
9776
9777 MARVELL ARMADA 3700 PHY DRIVERS
9778 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9779 S:      Maintained
9780 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9781 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9782 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9783 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9784
9785 MARVELL CRYPTO DRIVER
9786 M:      Boris Brezillon <bbrezillon@kernel.org>
9787 M:      Arnaud Ebalard <arno@natisbad.org>
9788 F:      drivers/crypto/marvell/
9789 S:      Maintained
9790 L:      linux-crypto@vger.kernel.org
9791
9792 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9793 M:      Mirko Lindner <mlindner@marvell.com>
9794 M:      Stephen Hemminger <stephen@networkplumber.org>
9795 L:      netdev@vger.kernel.org
9796 S:      Maintained
9797 F:      drivers/net/ethernet/marvell/sk*
9798
9799 MARVELL LIBERTAS WIRELESS DRIVER
9800 L:      libertas-dev@lists.infradead.org
9801 S:      Orphan
9802 F:      drivers/net/wireless/marvell/libertas/
9803
9804 MARVELL MACCHIATOBIN SUPPORT
9805 M:      Russell King <linux@armlinux.org.uk>
9806 L:      linux-arm-kernel@lists.infradead.org
9807 S:      Maintained
9808 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9809
9810 MARVELL MV643XX ETHERNET DRIVER
9811 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9812 L:      netdev@vger.kernel.org
9813 S:      Maintained
9814 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9815 F:      include/linux/mv643xx.h
9816
9817 MARVELL MV88X3310 PHY DRIVER
9818 M:      Russell King <linux@armlinux.org.uk>
9819 L:      netdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/net/phy/marvell10g.c
9822
9823 MARVELL MVEBU THERMAL DRIVER
9824 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9825 S:      Maintained
9826 F:      drivers/thermal/armada_thermal.c
9827
9828 MARVELL MVNETA ETHERNET DRIVER
9829 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9830 L:      netdev@vger.kernel.org
9831 S:      Maintained
9832 F:      drivers/net/ethernet/marvell/mvneta.*
9833
9834 MARVELL MWIFIEX WIRELESS DRIVER
9835 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9836 M:      Nishant Sarmukadam <nishants@marvell.com>
9837 M:      Ganapathi Bhat <gbhat@marvell.com>
9838 M:      Xinming Hu <huxinming820@gmail.com>
9839 L:      linux-wireless@vger.kernel.org
9840 S:      Maintained
9841 F:      drivers/net/wireless/marvell/mwifiex/
9842
9843 MARVELL MWL8K WIRELESS DRIVER
9844 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9845 L:      linux-wireless@vger.kernel.org
9846 S:      Odd Fixes
9847 F:      drivers/net/wireless/marvell/mwl8k.c
9848
9849 MARVELL NAND CONTROLLER DRIVER
9850 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9851 L:      linux-mtd@lists.infradead.org
9852 S:      Maintained
9853 F:      drivers/mtd/nand/raw/marvell_nand.c
9854 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9855
9856 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9857 M:      Nicolas Pitre <nico@fluxnic.net>
9858 S:      Odd Fixes
9859 F:      drivers/mmc/host/mvsdio.*
9860
9861 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9862 M:      Hu Ziji <huziji@marvell.com>
9863 L:      linux-mmc@vger.kernel.org
9864 S:      Supported
9865 F:      drivers/mmc/host/sdhci-xenon*
9866 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9867
9868 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9869 M:      Sunil Goutham <sgoutham@marvell.com>
9870 M:      Linu Cherian <lcherian@marvell.com>
9871 M:      Geetha sowjanya <gakula@marvell.com>
9872 M:      Jerin Jacob <jerinj@marvell.com>
9873 L:      netdev@vger.kernel.org
9874 S:      Supported
9875 F:      drivers/net/ethernet/marvell/octeontx2/af/
9876
9877 MATROX FRAMEBUFFER DRIVER
9878 L:      linux-fbdev@vger.kernel.org
9879 S:      Orphan
9880 F:      drivers/video/fbdev/matrox/matroxfb_*
9881 F:      include/uapi/linux/matroxfb.h
9882
9883 MAX16065 HARDWARE MONITOR DRIVER
9884 M:      Guenter Roeck <linux@roeck-us.net>
9885 L:      linux-hwmon@vger.kernel.org
9886 S:      Maintained
9887 F:      Documentation/hwmon/max16065.rst
9888 F:      drivers/hwmon/max16065.c
9889
9890 MAX2175 SDR TUNER DRIVER
9891 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9892 L:      linux-media@vger.kernel.org
9893 T:      git git://linuxtv.org/media_tree.git
9894 S:      Maintained
9895 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9896 F:      Documentation/media/v4l-drivers/max2175.rst
9897 F:      drivers/media/i2c/max2175*
9898 F:      include/uapi/linux/max2175.h
9899
9900 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9901 L:      linux-hwmon@vger.kernel.org
9902 S:      Orphan
9903 F:      Documentation/hwmon/max6650.rst
9904 F:      drivers/hwmon/max6650.c
9905
9906 MAX6697 HARDWARE MONITOR DRIVER
9907 M:      Guenter Roeck <linux@roeck-us.net>
9908 L:      linux-hwmon@vger.kernel.org
9909 S:      Maintained
9910 F:      Documentation/hwmon/max6697.rst
9911 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9912 F:      drivers/hwmon/max6697.c
9913 F:      include/linux/platform_data/max6697.h
9914
9915 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9916 M:      Peter Rosin <peda@axentia.se>
9917 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9918 S:      Maintained
9919 F:      Documentation/devicetree/bindings/sound/max9860.txt
9920 F:      sound/soc/codecs/max9860.*
9921
9922 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9923 M:      Andreas Klinger <ak@it-klinger.de>
9924 L:      linux-iio@vger.kernel.org
9925 S:      Maintained
9926 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9927 F:      drivers/iio/proximity/mb1232.c
9928
9929 MAXIM MAX77650 PMIC MFD DRIVER
9930 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9931 L:      linux-kernel@vger.kernel.org
9932 S:      Maintained
9933 F:      Documentation/devicetree/bindings/*/*max77650.txt
9934 F:      Documentation/devicetree/bindings/*/max77650*.txt
9935 F:      include/linux/mfd/max77650.h
9936 F:      drivers/mfd/max77650.c
9937 F:      drivers/regulator/max77650-regulator.c
9938 F:      drivers/power/supply/max77650-charger.c
9939 F:      drivers/input/misc/max77650-onkey.c
9940 F:      drivers/leds/leds-max77650.c
9941 F:      drivers/gpio/gpio-max77650.c
9942
9943 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9944 M:      Javier Martinez Canillas <javier@dowhile0.org>
9945 L:      linux-kernel@vger.kernel.org
9946 S:      Supported
9947 F:      drivers/regulator/max77802-regulator.c
9948 F:      Documentation/devicetree/bindings/*/*max77802.txt
9949 F:      include/dt-bindings/*/*max77802.h
9950
9951 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9952 M:      Krzysztof Kozlowski <krzk@kernel.org>
9953 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9954 L:      linux-pm@vger.kernel.org
9955 S:      Supported
9956 F:      drivers/power/supply/max14577_charger.c
9957 F:      drivers/power/supply/max77693_charger.c
9958
9959 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9960 M:      Chanwoo Choi <cw00.choi@samsung.com>
9961 M:      Krzysztof Kozlowski <krzk@kernel.org>
9962 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9963 L:      linux-kernel@vger.kernel.org
9964 S:      Supported
9965 F:      drivers/*/max14577*.c
9966 F:      drivers/*/max77686*.c
9967 F:      drivers/*/max77693*.c
9968 F:      drivers/extcon/extcon-max14577.c
9969 F:      drivers/extcon/extcon-max77693.c
9970 F:      drivers/rtc/rtc-max77686.c
9971 F:      drivers/clk/clk-max77686.c
9972 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9973 F:      Documentation/devicetree/bindings/*/max77686.txt
9974 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9975 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9976 F:      include/linux/mfd/max14577*.h
9977 F:      include/linux/mfd/max77686*.h
9978 F:      include/linux/mfd/max77693*.h
9979
9980 MAXIRADIO FM RADIO RECEIVER DRIVER
9981 M:      Hans Verkuil <hverkuil@xs4all.nl>
9982 L:      linux-media@vger.kernel.org
9983 T:      git git://linuxtv.org/media_tree.git
9984 W:      https://linuxtv.org
9985 S:      Maintained
9986 F:      drivers/media/radio/radio-maxiradio*
9987
9988 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9989 M:      Peter Rosin <peda@axentia.se>
9990 L:      linux-iio@vger.kernel.org
9991 S:      Maintained
9992 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9993 F:      drivers/iio/potentiometer/mcp4018.c
9994 F:      drivers/iio/potentiometer/mcp4531.c
9995
9996 MCR20A IEEE-802.15.4 RADIO DRIVER
9997 M:      Xue Liu <liuxuenetmail@gmail.com>
9998 L:      linux-wpan@vger.kernel.org
9999 W:      https://github.com/xueliu/mcr20a-linux
10000 S:      Maintained
10001 F:      drivers/net/ieee802154/mcr20a.c
10002 F:      drivers/net/ieee802154/mcr20a.h
10003 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
10004
10005 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
10006 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10007 L:      linux-iio@vger.kernel.org
10008 S:      Maintained
10009 F:      drivers/iio/dac/cio-dac.c
10010
10011 MEDIA CONTROLLER FRAMEWORK
10012 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10013 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10014 L:      linux-media@vger.kernel.org
10015 W:      https://www.linuxtv.org
10016 T:      git git://linuxtv.org/media_tree.git
10017 S:      Supported
10018 F:      drivers/media/mc/
10019 F:      include/media/media-*.h
10020 F:      include/uapi/linux/media.h
10021
10022 MEDIA DRIVERS FOR ASCOT2E
10023 M:      Sergey Kozlov <serjk@netup.ru>
10024 M:      Abylay Ospan <aospan@netup.ru>
10025 L:      linux-media@vger.kernel.org
10026 W:      https://linuxtv.org
10027 W:      http://netup.tv/
10028 T:      git git://linuxtv.org/media_tree.git
10029 S:      Supported
10030 F:      drivers/media/dvb-frontends/ascot2e*
10031
10032 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
10033 M:      Jasmin Jessich <jasmin@anw.at>
10034 L:      linux-media@vger.kernel.org
10035 W:      https://linuxtv.org
10036 T:      git git://linuxtv.org/media_tree.git
10037 S:      Maintained
10038 F:      drivers/media/dvb-frontends/cxd2099*
10039
10040 MEDIA DRIVERS FOR CXD2841ER
10041 M:      Sergey Kozlov <serjk@netup.ru>
10042 M:      Abylay Ospan <aospan@netup.ru>
10043 L:      linux-media@vger.kernel.org
10044 W:      https://linuxtv.org
10045 W:      http://netup.tv/
10046 T:      git git://linuxtv.org/media_tree.git
10047 S:      Supported
10048 F:      drivers/media/dvb-frontends/cxd2841er*
10049
10050 MEDIA DRIVERS FOR CXD2880
10051 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
10052 L:      linux-media@vger.kernel.org
10053 W:      http://linuxtv.org/
10054 T:      git git://linuxtv.org/media_tree.git
10055 S:      Supported
10056 F:      drivers/media/dvb-frontends/cxd2880/*
10057 F:      drivers/media/spi/cxd2880*
10058
10059 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
10060 L:      linux-media@vger.kernel.org
10061 W:      https://linuxtv.org
10062 T:      git git://linuxtv.org/media_tree.git
10063 S:      Orphan
10064 F:      drivers/media/pci/ddbridge/*
10065
10066 MEDIA DRIVERS FOR FREESCALE IMX
10067 M:      Steve Longerbeam <slongerbeam@gmail.com>
10068 M:      Philipp Zabel <p.zabel@pengutronix.de>
10069 L:      linux-media@vger.kernel.org
10070 T:      git git://linuxtv.org/media_tree.git
10071 S:      Maintained
10072 F:      Documentation/devicetree/bindings/media/imx.txt
10073 F:      Documentation/media/v4l-drivers/imx.rst
10074 F:      drivers/staging/media/imx/
10075 F:      include/linux/imx-media.h
10076 F:      include/media/imx.h
10077
10078 MEDIA DRIVER FOR FREESCALE IMX PXP
10079 M:      Philipp Zabel <p.zabel@pengutronix.de>
10080 L:      linux-media@vger.kernel.org
10081 T:      git git://linuxtv.org/media_tree.git
10082 S:      Maintained
10083 F:      drivers/media/platform/imx-pxp.[ch]
10084
10085 MEDIA DRIVERS FOR FREESCALE IMX7
10086 M:      Rui Miguel Silva <rmfrfs@gmail.com>
10087 L:      linux-media@vger.kernel.org
10088 T:      git git://linuxtv.org/media_tree.git
10089 S:      Maintained
10090 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
10091 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
10092 F:      Documentation/media/v4l-drivers/imx7.rst
10093 F:      drivers/staging/media/imx/imx7-media-csi.c
10094 F:      drivers/staging/media/imx/imx7-mipi-csis.c
10095
10096 MEDIA DRIVERS FOR HELENE
10097 M:      Abylay Ospan <aospan@netup.ru>
10098 L:      linux-media@vger.kernel.org
10099 W:      https://linuxtv.org
10100 W:      http://netup.tv/
10101 T:      git git://linuxtv.org/media_tree.git
10102 S:      Supported
10103 F:      drivers/media/dvb-frontends/helene*
10104
10105 MEDIA DRIVERS FOR HORUS3A
10106 M:      Sergey Kozlov <serjk@netup.ru>
10107 M:      Abylay Ospan <aospan@netup.ru>
10108 L:      linux-media@vger.kernel.org
10109 W:      https://linuxtv.org
10110 W:      http://netup.tv/
10111 T:      git git://linuxtv.org/media_tree.git
10112 S:      Supported
10113 F:      drivers/media/dvb-frontends/horus3a*
10114
10115 MEDIA DRIVERS FOR LNBH25
10116 M:      Sergey Kozlov <serjk@netup.ru>
10117 M:      Abylay Ospan <aospan@netup.ru>
10118 L:      linux-media@vger.kernel.org
10119 W:      https://linuxtv.org
10120 W:      http://netup.tv/
10121 T:      git git://linuxtv.org/media_tree.git
10122 S:      Supported
10123 F:      drivers/media/dvb-frontends/lnbh25*
10124
10125 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
10126 L:      linux-media@vger.kernel.org
10127 W:      https://linuxtv.org
10128 T:      git git://linuxtv.org/media_tree.git
10129 S:      Orphan
10130 F:      drivers/media/dvb-frontends/mxl5xx*
10131
10132 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
10133 M:      Sergey Kozlov <serjk@netup.ru>
10134 M:      Abylay Ospan <aospan@netup.ru>
10135 L:      linux-media@vger.kernel.org
10136 W:      https://linuxtv.org
10137 W:      http://netup.tv/
10138 T:      git git://linuxtv.org/media_tree.git
10139 S:      Supported
10140 F:      drivers/media/pci/netup_unidvb/*
10141
10142 MEDIA DRIVERS FOR RENESAS - CEU
10143 M:      Jacopo Mondi <jacopo@jmondi.org>
10144 L:      linux-media@vger.kernel.org
10145 L:      linux-renesas-soc@vger.kernel.org
10146 T:      git git://linuxtv.org/media_tree.git
10147 S:      Supported
10148 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
10149 F:      drivers/media/platform/renesas-ceu.c
10150 F:      include/media/drv-intf/renesas-ceu.h
10151
10152 MEDIA DRIVERS FOR RENESAS - DRIF
10153 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
10154 L:      linux-media@vger.kernel.org
10155 L:      linux-renesas-soc@vger.kernel.org
10156 T:      git git://linuxtv.org/media_tree.git
10157 S:      Supported
10158 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
10159 F:      drivers/media/platform/rcar_drif.c
10160
10161 MEDIA DRIVERS FOR RENESAS - FCP
10162 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10163 L:      linux-media@vger.kernel.org
10164 L:      linux-renesas-soc@vger.kernel.org
10165 T:      git git://linuxtv.org/media_tree.git
10166 S:      Supported
10167 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
10168 F:      drivers/media/platform/rcar-fcp.c
10169 F:      include/media/rcar-fcp.h
10170
10171 MEDIA DRIVERS FOR RENESAS - FDP1
10172 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10173 L:      linux-media@vger.kernel.org
10174 L:      linux-renesas-soc@vger.kernel.org
10175 T:      git git://linuxtv.org/media_tree.git
10176 S:      Supported
10177 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
10178 F:      drivers/media/platform/rcar_fdp1.c
10179
10180 MEDIA DRIVERS FOR RENESAS - VIN
10181 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
10182 L:      linux-media@vger.kernel.org
10183 L:      linux-renesas-soc@vger.kernel.org
10184 T:      git git://linuxtv.org/media_tree.git
10185 S:      Supported
10186 F:      Documentation/devicetree/bindings/media/renesas,csi2.txt
10187 F:      Documentation/devicetree/bindings/media/renesas,vin.txt
10188 F:      drivers/media/platform/rcar-vin/
10189
10190 MEDIA DRIVERS FOR RENESAS - VSP1
10191 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10192 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
10193 L:      linux-media@vger.kernel.org
10194 L:      linux-renesas-soc@vger.kernel.org
10195 T:      git git://linuxtv.org/media_tree.git
10196 S:      Supported
10197 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
10198 F:      drivers/media/platform/vsp1/
10199
10200 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
10201 L:      linux-media@vger.kernel.org
10202 W:      https://linuxtv.org
10203 T:      git git://linuxtv.org/media_tree.git
10204 S:      Orphan
10205 F:      drivers/media/dvb-frontends/stv0910*
10206
10207 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
10208 L:      linux-media@vger.kernel.org
10209 W:      https://linuxtv.org
10210 T:      git git://linuxtv.org/media_tree.git
10211 S:      Orphan
10212 F:      drivers/media/dvb-frontends/stv6111*
10213
10214 MEDIA DRIVERS FOR STM32 - DCMI
10215 M:      Hugues Fruchet <hugues.fruchet@st.com>
10216 L:      linux-media@vger.kernel.org
10217 T:      git git://linuxtv.org/media_tree.git
10218 S:      Supported
10219 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
10220 F:      drivers/media/platform/stm32/stm32-dcmi.c
10221
10222 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
10223 M:      Dmitry Osipenko <digetx@gmail.com>
10224 L:      linux-media@vger.kernel.org
10225 L:      linux-tegra@vger.kernel.org
10226 T:      git git://linuxtv.org/media_tree.git
10227 S:      Maintained
10228 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
10229 F:      drivers/staging/media/tegra-vde/
10230
10231 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
10232 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10233 P:      LinuxTV.org Project
10234 L:      linux-media@vger.kernel.org
10235 W:      https://linuxtv.org
10236 Q:      http://patchwork.kernel.org/project/linux-media/list/
10237 T:      git git://linuxtv.org/media_tree.git
10238 S:      Maintained
10239 F:      Documentation/devicetree/bindings/media/
10240 F:      Documentation/media/
10241 F:      drivers/media/
10242 F:      drivers/staging/media/
10243 F:      include/linux/platform_data/media/
10244 F:      include/media/
10245 F:      include/uapi/linux/dvb/
10246 F:      include/uapi/linux/videodev2.h
10247 F:      include/uapi/linux/media.h
10248 F:      include/uapi/linux/v4l2-*
10249 F:      include/uapi/linux/meye.h
10250 F:      include/uapi/linux/ivtv*
10251 F:      include/uapi/linux/uvcvideo.h
10252
10253 MEDIATEK BLUETOOTH DRIVER
10254 M:      Sean Wang <sean.wang@mediatek.com>
10255 L:      linux-bluetooth@vger.kernel.org
10256 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10257 S:      Maintained
10258 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
10259 F:      drivers/bluetooth/btmtkuart.c
10260
10261 MEDIATEK CIR DRIVER
10262 M:      Sean Wang <sean.wang@mediatek.com>
10263 S:      Maintained
10264 F:      drivers/media/rc/mtk-cir.c
10265
10266 MEDIATEK DMA DRIVER
10267 M:      Sean Wang <sean.wang@mediatek.com>
10268 L:      dmaengine@vger.kernel.org
10269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10270 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10271 S:      Maintained
10272 F:      Documentation/devicetree/bindings/dma/mtk-*
10273 F:      drivers/dma/mediatek/
10274
10275 MEDIATEK PMIC LED DRIVER
10276 M:      Sean Wang <sean.wang@mediatek.com>
10277 S:      Maintained
10278 F:      drivers/leds/leds-mt6323.c
10279 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
10280
10281 MEDIATEK ETHERNET DRIVER
10282 M:      Felix Fietkau <nbd@openwrt.org>
10283 M:      John Crispin <john@phrozen.org>
10284 M:      Sean Wang <sean.wang@mediatek.com>
10285 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
10286 L:      netdev@vger.kernel.org
10287 S:      Maintained
10288 F:      drivers/net/ethernet/mediatek/
10289
10290 MEDIATEK SWITCH DRIVER
10291 M:      Sean Wang <sean.wang@mediatek.com>
10292 L:      netdev@vger.kernel.org
10293 S:      Maintained
10294 F:      drivers/net/dsa/mt7530.*
10295 F:      net/dsa/tag_mtk.c
10296
10297 MEDIATEK JPEG DRIVER
10298 M:      Rick Chang <rick.chang@mediatek.com>
10299 M:      Bin Liu <bin.liu@mediatek.com>
10300 S:      Supported
10301 F:      drivers/media/platform/mtk-jpeg/
10302 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
10303
10304 MEDIATEK MDP DRIVER
10305 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
10306 M:      Houlong Wei <houlong.wei@mediatek.com>
10307 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10308 S:      Supported
10309 F:      drivers/media/platform/mtk-mdp/
10310 F:      drivers/media/platform/mtk-vpu/
10311 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
10312
10313 MEDIATEK MEDIA DRIVER
10314 M:      Tiffany Lin <tiffany.lin@mediatek.com>
10315 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
10316 S:      Supported
10317 F:      drivers/media/platform/mtk-vcodec/
10318 F:      drivers/media/platform/mtk-vpu/
10319 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
10320 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
10321
10322 MEDIATEK MMC/SD/SDIO DRIVER
10323 M:      Chaotian Jing <chaotian.jing@mediatek.com>
10324 S:      Maintained
10325 F:      drivers/mmc/host/mtk-sd.c
10326 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
10327
10328 MEDIATEK MT76 WIRELESS LAN DRIVER
10329 M:      Felix Fietkau <nbd@nbd.name>
10330 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
10331 R:      Ryder Lee <ryder.lee@mediatek.com>
10332 R:      Roy Luo <royluo@google.com>
10333 L:      linux-wireless@vger.kernel.org
10334 S:      Maintained
10335 F:      drivers/net/wireless/mediatek/mt76/
10336
10337 MEDIATEK MT7601U WIRELESS LAN DRIVER
10338 M:      Jakub Kicinski <kubakici@wp.pl>
10339 L:      linux-wireless@vger.kernel.org
10340 S:      Maintained
10341 F:      drivers/net/wireless/mediatek/mt7601u/
10342
10343 MEDIATEK MT7621/28/88 I2C DRIVER
10344 M:      Stefan Roese <sr@denx.de>
10345 L:      linux-i2c@vger.kernel.org
10346 S:      Maintained
10347 F:      drivers/i2c/busses/i2c-mt7621.c
10348 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
10349
10350 MEDIATEK NAND CONTROLLER DRIVER
10351 M:      Xiaolei Li <xiaolei.li@mediatek.com>
10352 L:      linux-mtd@lists.infradead.org
10353 S:      Maintained
10354 F:      drivers/mtd/nand/raw/mtk_*
10355 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
10356
10357 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
10358 M:      Sean Wang <sean.wang@mediatek.com>
10359 S:      Maintained
10360 F:      drivers/char/hw_random/mtk-rng.c
10361
10362 MEDIATEK USB3 DRD IP DRIVER
10363 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
10364 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
10365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10366 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10367 S:      Maintained
10368 F:      drivers/usb/mtu3/
10369
10370 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
10371 M:      Peter Senna Tschudin <peter.senna@gmail.com>
10372 M:      Martin Donnelly <martin.donnelly@ge.com>
10373 M:      Martyn Welch <martyn.welch@collabora.co.uk>
10374 S:      Maintained
10375 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
10376 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
10377
10378 MEGARAID SCSI/SAS DRIVERS
10379 M:      Kashyap Desai <kashyap.desai@broadcom.com>
10380 M:      Sumit Saxena <sumit.saxena@broadcom.com>
10381 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
10382 L:      megaraidlinux.pdl@broadcom.com
10383 L:      linux-scsi@vger.kernel.org
10384 W:      http://www.avagotech.com/support/
10385 S:      Maintained
10386 F:      Documentation/scsi/megaraid.txt
10387 F:      drivers/scsi/megaraid.*
10388 F:      drivers/scsi/megaraid/
10389
10390 MELEXIS MLX90614 DRIVER
10391 M:      Crt Mori <cmo@melexis.com>
10392 L:      linux-iio@vger.kernel.org
10393 W:      http://www.melexis.com
10394 S:      Supported
10395 F:      drivers/iio/temperature/mlx90614.c
10396
10397 MELEXIS MLX90632 DRIVER
10398 M:      Crt Mori <cmo@melexis.com>
10399 L:      linux-iio@vger.kernel.org
10400 W:      http://www.melexis.com
10401 S:      Supported
10402 F:      drivers/iio/temperature/mlx90632.c
10403
10404 MELFAS MIP4 TOUCHSCREEN DRIVER
10405 M:      Sangwon Jee <jeesw@melfas.com>
10406 W:      http://www.melfas.com
10407 S:      Supported
10408 F:      drivers/input/touchscreen/melfas_mip4.c
10409 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
10410
10411 MELLANOX ETHERNET DRIVER (mlx4_en)
10412 M:      Tariq Toukan <tariqt@mellanox.com>
10413 L:      netdev@vger.kernel.org
10414 S:      Supported
10415 W:      http://www.mellanox.com
10416 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10417 F:      drivers/net/ethernet/mellanox/mlx4/en_*
10418
10419 MELLANOX ETHERNET DRIVER (mlx5e)
10420 M:      Saeed Mahameed <saeedm@mellanox.com>
10421 L:      netdev@vger.kernel.org
10422 S:      Supported
10423 W:      http://www.mellanox.com
10424 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10425 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10426
10427 MELLANOX ETHERNET INNOVA DRIVERS
10428 R:      Boris Pismenny <borisp@mellanox.com>
10429 L:      netdev@vger.kernel.org
10430 S:      Supported
10431 W:      http://www.mellanox.com
10432 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10433 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10434 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10435 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10436 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10437
10438 MELLANOX ETHERNET SWITCH DRIVERS
10439 M:      Jiri Pirko <jiri@mellanox.com>
10440 M:      Ido Schimmel <idosch@mellanox.com>
10441 L:      netdev@vger.kernel.org
10442 S:      Supported
10443 W:      http://www.mellanox.com
10444 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10445 F:      drivers/net/ethernet/mellanox/mlxsw/
10446 F:      tools/testing/selftests/drivers/net/mlxsw/
10447
10448 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10449 M:      mlxsw@mellanox.com
10450 L:      netdev@vger.kernel.org
10451 S:      Supported
10452 W:      http://www.mellanox.com
10453 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10454 F:      drivers/net/ethernet/mellanox/mlxfw/
10455
10456 MELLANOX HARDWARE PLATFORM SUPPORT
10457 M:      Andy Shevchenko <andy@infradead.org>
10458 M:      Darren Hart <dvhart@infradead.org>
10459 M:      Vadim Pasternak <vadimp@mellanox.com>
10460 L:      platform-driver-x86@vger.kernel.org
10461 S:      Supported
10462 F:      drivers/platform/mellanox/
10463 F:      include/linux/platform_data/mlxreg.h
10464
10465 MELLANOX MLX4 core VPI driver
10466 M:      Tariq Toukan <tariqt@mellanox.com>
10467 L:      netdev@vger.kernel.org
10468 L:      linux-rdma@vger.kernel.org
10469 W:      http://www.mellanox.com
10470 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10471 S:      Supported
10472 F:      drivers/net/ethernet/mellanox/mlx4/
10473 F:      include/linux/mlx4/
10474
10475 MELLANOX MLX4 IB driver
10476 M:      Yishai Hadas <yishaih@mellanox.com>
10477 L:      linux-rdma@vger.kernel.org
10478 W:      http://www.mellanox.com
10479 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10480 S:      Supported
10481 F:      drivers/infiniband/hw/mlx4/
10482 F:      include/linux/mlx4/
10483 F:      include/uapi/rdma/mlx4-abi.h
10484
10485 MELLANOX MLX5 core VPI driver
10486 M:      Saeed Mahameed <saeedm@mellanox.com>
10487 M:      Leon Romanovsky <leonro@mellanox.com>
10488 L:      netdev@vger.kernel.org
10489 L:      linux-rdma@vger.kernel.org
10490 W:      http://www.mellanox.com
10491 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10492 S:      Supported
10493 F:      drivers/net/ethernet/mellanox/mlx5/core/
10494 F:      include/linux/mlx5/
10495 F:      Documentation/networking/device_drivers/mellanox/
10496
10497 MELLANOX MLX5 IB driver
10498 M:      Leon Romanovsky <leonro@mellanox.com>
10499 L:      linux-rdma@vger.kernel.org
10500 W:      http://www.mellanox.com
10501 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10502 S:      Supported
10503 F:      drivers/infiniband/hw/mlx5/
10504 F:      include/linux/mlx5/
10505 F:      include/uapi/rdma/mlx5-abi.h
10506
10507 MELLANOX MLXCPLD I2C AND MUX DRIVER
10508 M:      Vadim Pasternak <vadimp@mellanox.com>
10509 M:      Michael Shych <michaelsh@mellanox.com>
10510 L:      linux-i2c@vger.kernel.org
10511 S:      Supported
10512 F:      drivers/i2c/busses/i2c-mlxcpld.c
10513 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10514 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
10515
10516 MELLANOX MLXCPLD LED DRIVER
10517 M:      Vadim Pasternak <vadimp@mellanox.com>
10518 L:      linux-leds@vger.kernel.org
10519 S:      Supported
10520 F:      drivers/leds/leds-mlxcpld.c
10521 F:      drivers/leds/leds-mlxreg.c
10522 F:      Documentation/leds/leds-mlxcpld.rst
10523
10524 MELLANOX PLATFORM DRIVER
10525 M:      Vadim Pasternak <vadimp@mellanox.com>
10526 L:      platform-driver-x86@vger.kernel.org
10527 S:      Supported
10528 F:      drivers/platform/x86/mlx-platform.c
10529
10530 MEMBARRIER SUPPORT
10531 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10532 M:      "Paul E. McKenney" <paulmck@kernel.org>
10533 L:      linux-kernel@vger.kernel.org
10534 S:      Supported
10535 F:      kernel/sched/membarrier.c
10536 F:      include/uapi/linux/membarrier.h
10537 F:      arch/powerpc/include/asm/membarrier.h
10538
10539 MEMBLOCK
10540 M:      Mike Rapoport <rppt@linux.ibm.com>
10541 L:      linux-mm@kvack.org
10542 S:      Maintained
10543 F:      include/linux/memblock.h
10544 F:      mm/memblock.c
10545 F:      Documentation/core-api/boot-time-mm.rst
10546
10547 MEMORY MANAGEMENT
10548 M:      Andrew Morton <akpm@linux-foundation.org>
10549 L:      linux-mm@kvack.org
10550 W:      http://www.linux-mm.org
10551 T:      quilt https://ozlabs.org/~akpm/mmotm/
10552 T:      quilt https://ozlabs.org/~akpm/mmots/
10553 T:      git git://github.com/hnaz/linux-mm.git
10554 S:      Maintained
10555 F:      include/linux/mm.h
10556 F:      include/linux/gfp.h
10557 F:      include/linux/mmzone.h
10558 F:      include/linux/memory_hotplug.h
10559 F:      include/linux/vmalloc.h
10560 F:      mm/
10561
10562 MEMORY TECHNOLOGY DEVICES (MTD)
10563 M:      David Woodhouse <dwmw2@infradead.org>
10564 M:      Brian Norris <computersforpeace@gmail.com>
10565 M:      Marek Vasut <marek.vasut@gmail.com>
10566 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10567 M:      Richard Weinberger <richard@nod.at>
10568 M:      Vignesh Raghavendra <vigneshr@ti.com>
10569 L:      linux-mtd@lists.infradead.org
10570 W:      http://www.linux-mtd.infradead.org/
10571 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10574 S:      Maintained
10575 F:      Documentation/devicetree/bindings/mtd/
10576 F:      drivers/mtd/
10577 F:      include/linux/mtd/
10578 F:      include/uapi/mtd/
10579
10580 MEN A21 WATCHDOG DRIVER
10581 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10582 L:      linux-watchdog@vger.kernel.org
10583 S:      Maintained
10584 F:      drivers/watchdog/mena21_wdt.c
10585
10586 MEN CHAMELEON BUS (mcb)
10587 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10588 S:      Maintained
10589 F:      drivers/mcb/
10590 F:      include/linux/mcb.h
10591 F:      Documentation/driver-api/men-chameleon-bus.rst
10592
10593 MEN F21BMC (Board Management Controller)
10594 M:      Andreas Werner <andreas.werner@men.de>
10595 S:      Supported
10596 F:      drivers/mfd/menf21bmc.c
10597 F:      drivers/watchdog/menf21bmc_wdt.c
10598 F:      drivers/leds/leds-menf21bmc.c
10599 F:      drivers/hwmon/menf21bmc_hwmon.c
10600 F:      Documentation/hwmon/menf21bmc.rst
10601
10602 MEN Z069 WATCHDOG DRIVER
10603 M:      Johannes Thumshirn <jth@kernel.org>
10604 L:      linux-watchdog@vger.kernel.org
10605 S:      Maintained
10606 F:      drivers/watchdog/menz69_wdt.c
10607
10608 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10609 M:      Neil Armstrong <narmstrong@baylibre.com>
10610 L:      linux-media@vger.kernel.org
10611 L:      linux-amlogic@lists.infradead.org
10612 W:      http://linux-meson.com/
10613 S:      Supported
10614 F:      drivers/media/platform/meson/ao-cec.c
10615 F:      drivers/media/platform/meson/ao-cec-g12a.c
10616 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10617 T:      git git://linuxtv.org/media_tree.git
10618
10619 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10620 M:      Liang Yang <liang.yang@amlogic.com>
10621 L:      linux-mtd@lists.infradead.org
10622 S:      Maintained
10623 F:      drivers/mtd/nand/raw/meson_*
10624 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10625
10626 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
10627 M:      Maxime Jourdan <mjourdan@baylibre.com>
10628 L:      linux-media@vger.kernel.org
10629 L:      linux-amlogic@lists.infradead.org
10630 S:      Supported
10631 F:      drivers/staging/media/meson/vdec/
10632 T:      git git://linuxtv.org/media_tree.git
10633
10634 METHODE UDPU SUPPORT
10635 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10636 S:      Maintained
10637 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10638
10639 MICROBLAZE ARCHITECTURE
10640 M:      Michal Simek <monstr@monstr.eu>
10641 W:      http://www.monstr.eu/fdt/
10642 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10643 S:      Supported
10644 F:      arch/microblaze/
10645
10646 MICROCHIP AT91 SERIAL DRIVER
10647 M:      Richard Genoud <richard.genoud@gmail.com>
10648 S:      Maintained
10649 F:      drivers/tty/serial/atmel_serial.c
10650 F:      drivers/tty/serial/atmel_serial.h
10651 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10652
10653 MICROCHIP AUDIO ASOC DRIVERS
10654 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10655 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10656 S:      Supported
10657 F:      sound/soc/atmel
10658
10659 MICROCHIP DMA DRIVER
10660 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10662 L:      dmaengine@vger.kernel.org
10663 S:      Supported
10664 F:      drivers/dma/at_hdmac.c
10665 F:      drivers/dma/at_hdmac_regs.h
10666 F:      include/linux/platform_data/dma-atmel.h
10667 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10668 F:      include/dt-bindings/dma/at91.h
10669
10670 MICROCHIP ECC DRIVER
10671 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10672 L:      linux-crypto@vger.kernel.org
10673 S:      Maintained
10674 F:      drivers/crypto/atmel-ecc.*
10675
10676 MICROCHIP I2C DRIVER
10677 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10678 L:      linux-i2c@vger.kernel.org
10679 S:      Supported
10680 F:      drivers/i2c/busses/i2c-at91.h
10681 F:      drivers/i2c/busses/i2c-at91-*.c
10682
10683 MICROCHIP ISC DRIVER
10684 M:      Eugen Hristev <eugen.hristev@microchip.com>
10685 L:      linux-media@vger.kernel.org
10686 S:      Supported
10687 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
10688 F:      drivers/media/platform/atmel/atmel-isc.h
10689 F:      drivers/media/platform/atmel/atmel-isc-base.c
10690 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10691 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10692
10693 MICROCHIP ISI DRIVER
10694 M:      Eugen Hristev <eugen.hristev@microchip.com>
10695 L:      linux-media@vger.kernel.org
10696 S:      Supported
10697 F:      drivers/media/platform/atmel/atmel-isi.c
10698 F:      drivers/media/platform/atmel/atmel-isi.h
10699
10700 MICROCHIP AT91 USART MFD DRIVER
10701 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10702 L:      linux-kernel@vger.kernel.org
10703 S:      Supported
10704 F:      drivers/mfd/at91-usart.c
10705 F:      include/dt-bindings/mfd/at91-usart.h
10706 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10707
10708 MICROCHIP AT91 USART SPI DRIVER
10709 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10710 L:      linux-spi@vger.kernel.org
10711 S:      Supported
10712 F:      drivers/spi/spi-at91-usart.c
10713 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10714
10715 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10716 M:      Woojung Huh <woojung.huh@microchip.com>
10717 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10718 L:      netdev@vger.kernel.org
10719 S:      Maintained
10720 F:      net/dsa/tag_ksz.c
10721 F:      drivers/net/dsa/microchip/*
10722 F:      include/linux/platform_data/microchip-ksz.h
10723 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10724
10725 MICROCHIP LAN743X ETHERNET DRIVER
10726 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10727 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10728 L:      netdev@vger.kernel.org
10729 S:      Maintained
10730 F:      drivers/net/ethernet/microchip/lan743x_*
10731
10732 MICROCHIP LCDFB DRIVER
10733 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10734 L:      linux-fbdev@vger.kernel.org
10735 S:      Maintained
10736 F:      drivers/video/fbdev/atmel_lcdfb.c
10737 F:      include/video/atmel_lcdc.h
10738
10739 MICROCHIP MMC/SD/SDIO MCI DRIVER
10740 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10741 S:      Maintained
10742 F:      drivers/mmc/host/atmel-mci.c
10743
10744 MICROCHIP MCP16502 PMIC DRIVER
10745 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10747 S:      Maintained
10748 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10749 F:      drivers/regulator/mcp16502.c
10750
10751 MICROCHIP MCP3911 ADC DRIVER
10752 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10753 M:      Kent Gustavsson <kent@minoris.se>
10754 L:      linux-iio@vger.kernel.org
10755 S:      Supported
10756 F:      drivers/iio/adc/mcp3911.c
10757 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
10758
10759 MICROCHIP NAND DRIVER
10760 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10761 L:      linux-mtd@lists.infradead.org
10762 S:      Supported
10763 F:      drivers/mtd/nand/raw/atmel/*
10764 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10765
10766 MICROCHIP PWM DRIVER
10767 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10769 L:      linux-pwm@vger.kernel.org
10770 S:      Supported
10771 F:      drivers/pwm/pwm-atmel.c
10772 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10773
10774 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10775 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10776 M:      Eugen Hristev <eugen.hristev@microchip.com>
10777 L:      linux-iio@vger.kernel.org
10778 S:      Supported
10779 F:      drivers/iio/adc/at91-sama5d2_adc.c
10780 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10781 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10782
10783 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10784 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10785 S:      Supported
10786 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10787
10788 MICROCHIP SPI DRIVER
10789 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10790 S:      Supported
10791 F:      drivers/spi/spi-atmel.*
10792
10793 MICROCHIP SSC DRIVER
10794 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10796 S:      Supported
10797 F:      drivers/misc/atmel-ssc.c
10798 F:      include/linux/atmel-ssc.h
10799
10800 MICROCHIP USBA UDC DRIVER
10801 M:      Cristian Birsan <cristian.birsan@microchip.com>
10802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10803 S:      Supported
10804 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10805
10806 MICROCHIP USB251XB DRIVER
10807 M:      Richard Leitner <richard.leitner@skidata.com>
10808 L:      linux-usb@vger.kernel.org
10809 S:      Maintained
10810 F:      drivers/usb/misc/usb251xb.c
10811 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10812
10813 MICROCHIP XDMA DRIVER
10814 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10815 L:      linux-arm-kernel@lists.infradead.org
10816 L:      dmaengine@vger.kernel.org
10817 S:      Supported
10818 F:      drivers/dma/at_xdmac.c
10819
10820 MICROSEMI MIPS SOCS
10821 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10822 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10823 L:      linux-mips@vger.kernel.org
10824 S:      Supported
10825 F:      arch/mips/generic/board-ocelot.c
10826 F:      arch/mips/configs/generic/board-ocelot.config
10827 F:      arch/mips/boot/dts/mscc/
10828 F:      Documentation/devicetree/bindings/mips/mscc.txt
10829
10830 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10831 M:      Don Brace <don.brace@microsemi.com>
10832 L:      esc.storagedev@microsemi.com
10833 L:      linux-scsi@vger.kernel.org
10834 S:      Supported
10835 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10836 F:      drivers/scsi/smartpqi/Kconfig
10837 F:      drivers/scsi/smartpqi/Makefile
10838 F:      include/linux/cciss*.h
10839 F:      include/uapi/linux/cciss*.h
10840 F:      Documentation/scsi/smartpqi.txt
10841
10842 MICROSEMI ETHERNET SWITCH DRIVER
10843 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10844 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10845 L:      netdev@vger.kernel.org
10846 S:      Supported
10847 F:      drivers/net/ethernet/mscc/
10848
10849 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10850 M:      Chen Yu <yu.c.chen@intel.com>
10851 L:      platform-driver-x86@vger.kernel.org
10852 S:      Supported
10853 F:      drivers/platform/x86/surfacepro3_button.c
10854
10855 MICROTEK X6 SCANNER
10856 M:      Oliver Neukum <oliver@neukum.org>
10857 S:      Maintained
10858 F:      drivers/usb/image/microtek.*
10859
10860 MIPS
10861 M:      Ralf Baechle <ralf@linux-mips.org>
10862 M:      Paul Burton <paulburton@kernel.org>
10863 M:      James Hogan <jhogan@kernel.org>
10864 L:      linux-mips@vger.kernel.org
10865 W:      http://www.linux-mips.org/
10866 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10868 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10869 S:      Supported
10870 F:      Documentation/devicetree/bindings/mips/
10871 F:      Documentation/mips/
10872 F:      arch/mips/
10873 F:      drivers/platform/mips/
10874
10875 MIPS BOSTON DEVELOPMENT BOARD
10876 M:      Paul Burton <paulburton@kernel.org>
10877 L:      linux-mips@vger.kernel.org
10878 S:      Maintained
10879 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10880 F:      arch/mips/boot/dts/img/boston.dts
10881 F:      arch/mips/configs/generic/board-boston.config
10882 F:      drivers/clk/imgtec/clk-boston.c
10883 F:      include/dt-bindings/clock/boston-clock.h
10884
10885 MIPS GENERIC PLATFORM
10886 M:      Paul Burton <paulburton@kernel.org>
10887 L:      linux-mips@vger.kernel.org
10888 S:      Supported
10889 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10890 F:      arch/mips/generic/
10891 F:      arch/mips/tools/generic-board-config.sh
10892
10893 MIPS/LOONGSON1 ARCHITECTURE
10894 M:      Keguang Zhang <keguang.zhang@gmail.com>
10895 L:      linux-mips@vger.kernel.org
10896 S:      Maintained
10897 F:      arch/mips/loongson32/
10898 F:      arch/mips/include/asm/mach-loongson32/
10899 F:      drivers/*/*loongson1*
10900 F:      drivers/*/*/*loongson1*
10901
10902 MIPS/LOONGSON2 ARCHITECTURE
10903 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10904 L:      linux-mips@vger.kernel.org
10905 S:      Maintained
10906 F:      arch/mips/loongson64/fuloong-2e/
10907 F:      arch/mips/loongson64/lemote-2f/
10908 F:      arch/mips/include/asm/mach-loongson64/
10909 F:      drivers/*/*loongson2*
10910 F:      drivers/*/*/*loongson2*
10911
10912 MIPS/LOONGSON3 ARCHITECTURE
10913 M:      Huacai Chen <chenhc@lemote.com>
10914 L:      linux-mips@vger.kernel.org
10915 S:      Maintained
10916 F:      arch/mips/loongson64/
10917 F:      arch/mips/include/asm/mach-loongson64/
10918 F:      drivers/platform/mips/cpu_hwmon.c
10919 F:      drivers/*/*loongson3*
10920 F:      drivers/*/*/*loongson3*
10921
10922 MIPS RINT INSTRUCTION EMULATION
10923 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10924 L:      linux-mips@vger.kernel.org
10925 S:      Supported
10926 F:      arch/mips/math-emu/sp_rint.c
10927 F:      arch/mips/math-emu/dp_rint.c
10928
10929 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10930 M:      Hans Verkuil <hverkuil@xs4all.nl>
10931 L:      linux-media@vger.kernel.org
10932 T:      git git://linuxtv.org/media_tree.git
10933 W:      https://linuxtv.org
10934 S:      Odd Fixes
10935 F:      drivers/media/radio/radio-miropcm20*
10936
10937 MMP SUPPORT
10938 R:      Lubomir Rintel <lkundrak@v3.sk>
10939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10940 S:      Odd Fixes
10941 F:      arch/arm/boot/dts/mmp*
10942 F:      arch/arm/mach-mmp/
10943
10944 MMU GATHER AND TLB INVALIDATION
10945 M:      Will Deacon <will@kernel.org>
10946 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10947 M:      Andrew Morton <akpm@linux-foundation.org>
10948 M:      Nick Piggin <npiggin@gmail.com>
10949 M:      Peter Zijlstra <peterz@infradead.org>
10950 L:      linux-arch@vger.kernel.org
10951 L:      linux-mm@kvack.org
10952 S:      Maintained
10953 F:      arch/*/include/asm/tlb.h
10954 F:      include/asm-generic/tlb.h
10955 F:      mm/mmu_gather.c
10956
10957 MN88472 MEDIA DRIVER
10958 M:      Antti Palosaari <crope@iki.fi>
10959 L:      linux-media@vger.kernel.org
10960 W:      https://linuxtv.org
10961 W:      http://palosaari.fi/linux/
10962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10963 S:      Maintained
10964 F:      drivers/media/dvb-frontends/mn88472*
10965
10966 MN88473 MEDIA DRIVER
10967 M:      Antti Palosaari <crope@iki.fi>
10968 L:      linux-media@vger.kernel.org
10969 W:      https://linuxtv.org
10970 W:      http://palosaari.fi/linux/
10971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10972 S:      Maintained
10973 F:      drivers/media/dvb-frontends/mn88473*
10974
10975 MODULE SUPPORT
10976 M:      Jessica Yu <jeyu@kernel.org>
10977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10978 S:      Maintained
10979 F:      include/linux/module.h
10980 F:      kernel/module.c
10981
10982 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10983 W:      http://popies.net/meye/
10984 S:      Orphan
10985 F:      Documentation/media/v4l-drivers/meye*
10986 F:      drivers/media/pci/meye/
10987 F:      include/uapi/linux/meye.h
10988
10989 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10990 M:      Jiri Slaby <jirislaby@gmail.com>
10991 S:      Maintained
10992 F:      Documentation/driver-api/serial/moxa-smartio.rst
10993 F:      drivers/tty/mxser.*
10994
10995 MR800 AVERMEDIA USB FM RADIO DRIVER
10996 M:      Alexey Klimov <klimov.linux@gmail.com>
10997 L:      linux-media@vger.kernel.org
10998 T:      git git://linuxtv.org/media_tree.git
10999 S:      Maintained
11000 F:      drivers/media/radio/radio-mr800.c
11001
11002 MRF24J40 IEEE 802.15.4 RADIO DRIVER
11003 M:      Alan Ott <alan@signal11.us>
11004 L:      linux-wpan@vger.kernel.org
11005 S:      Maintained
11006 F:      drivers/net/ieee802154/mrf24j40.c
11007 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
11008
11009 MSI LAPTOP SUPPORT
11010 M:      "Lee, Chun-Yi" <jlee@suse.com>
11011 L:      platform-driver-x86@vger.kernel.org
11012 S:      Maintained
11013 F:      drivers/platform/x86/msi-laptop.c
11014
11015 MSI WMI SUPPORT
11016 L:      platform-driver-x86@vger.kernel.org
11017 S:      Orphan
11018 F:      drivers/platform/x86/msi-wmi.c
11019
11020 MSI001 MEDIA DRIVER
11021 M:      Antti Palosaari <crope@iki.fi>
11022 L:      linux-media@vger.kernel.org
11023 W:      https://linuxtv.org
11024 W:      http://palosaari.fi/linux/
11025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11026 T:      git git://linuxtv.org/anttip/media_tree.git
11027 S:      Maintained
11028 F:      drivers/media/tuners/msi001*
11029
11030 MSI2500 MEDIA DRIVER
11031 M:      Antti Palosaari <crope@iki.fi>
11032 L:      linux-media@vger.kernel.org
11033 W:      https://linuxtv.org
11034 W:      http://palosaari.fi/linux/
11035 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11036 T:      git git://linuxtv.org/anttip/media_tree.git
11037 S:      Maintained
11038 F:      drivers/media/usb/msi2500/
11039
11040 MSYSTEMS DISKONCHIP G3 MTD DRIVER
11041 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11042 L:      linux-mtd@lists.infradead.org
11043 S:      Maintained
11044 F:      drivers/mtd/devices/docg3*
11045
11046 MT9M032 APTINA SENSOR DRIVER
11047 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11048 L:      linux-media@vger.kernel.org
11049 T:      git git://linuxtv.org/media_tree.git
11050 S:      Maintained
11051 F:      drivers/media/i2c/mt9m032.c
11052 F:      include/media/i2c/mt9m032.h
11053
11054 MT9P031 APTINA CAMERA SENSOR
11055 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11056 L:      linux-media@vger.kernel.org
11057 T:      git git://linuxtv.org/media_tree.git
11058 S:      Maintained
11059 F:      drivers/media/i2c/mt9p031.c
11060 F:      include/media/i2c/mt9p031.h
11061
11062 MT9T001 APTINA CAMERA SENSOR
11063 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11064 L:      linux-media@vger.kernel.org
11065 T:      git git://linuxtv.org/media_tree.git
11066 S:      Maintained
11067 F:      drivers/media/i2c/mt9t001.c
11068 F:      include/media/i2c/mt9t001.h
11069
11070 MT9T112 APTINA CAMERA SENSOR
11071 M:      Jacopo Mondi <jacopo@jmondi.org>
11072 L:      linux-media@vger.kernel.org
11073 T:      git git://linuxtv.org/media_tree.git
11074 S:      Odd Fixes
11075 F:      drivers/media/i2c/mt9t112.c
11076 F:      include/media/i2c/mt9t112.h
11077
11078 MT9V032 APTINA CAMERA SENSOR
11079 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11080 L:      linux-media@vger.kernel.org
11081 T:      git git://linuxtv.org/media_tree.git
11082 S:      Maintained
11083 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
11084 F:      drivers/media/i2c/mt9v032.c
11085 F:      include/media/i2c/mt9v032.h
11086
11087 MT9V111 APTINA CAMERA SENSOR
11088 M:      Jacopo Mondi <jacopo@jmondi.org>
11089 L:      linux-media@vger.kernel.org
11090 T:      git git://linuxtv.org/media_tree.git
11091 S:      Maintained
11092 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
11093 F:      drivers/media/i2c/mt9v111.c
11094
11095 MULTIFUNCTION DEVICES (MFD)
11096 M:      Lee Jones <lee.jones@linaro.org>
11097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11098 S:      Supported
11099 F:      Documentation/devicetree/bindings/mfd/
11100 F:      drivers/mfd/
11101 F:      include/linux/mfd/
11102 F:      include/dt-bindings/mfd/
11103
11104 MULTIMEDIA CARD (MMC) ETC. OVER SPI
11105 S:      Orphan
11106 F:      drivers/mmc/host/mmc_spi.c
11107 F:      include/linux/spi/mmc_spi.h
11108
11109 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
11110 M:      Ulf Hansson <ulf.hansson@linaro.org>
11111 L:      linux-mmc@vger.kernel.org
11112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
11113 S:      Maintained
11114 F:      Documentation/devicetree/bindings/mmc/
11115 F:      drivers/mmc/
11116 F:      include/linux/mmc/
11117 F:      include/uapi/linux/mmc/
11118
11119 MULTIPLEXER SUBSYSTEM
11120 M:      Peter Rosin <peda@axentia.se>
11121 S:      Maintained
11122 F:      Documentation/ABI/testing/sysfs-class-mux*
11123 F:      Documentation/devicetree/bindings/mux/
11124 F:      include/dt-bindings/mux/
11125 F:      include/linux/mux/
11126 F:      drivers/mux/
11127
11128 MULTITECH MULTIPORT CARD (ISICOM)
11129 S:      Orphan
11130 F:      drivers/tty/isicom.c
11131 F:      include/linux/isicom.h
11132
11133 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
11134 M:      Bin Liu <b-liu@ti.com>
11135 L:      linux-usb@vger.kernel.org
11136 S:      Maintained
11137 F:      drivers/usb/musb/
11138
11139 MXL301RF MEDIA DRIVER
11140 M:      Akihiro Tsukada <tskd08@gmail.com>
11141 L:      linux-media@vger.kernel.org
11142 S:      Odd Fixes
11143 F:      drivers/media/tuners/mxl301rf*
11144
11145 MXL5007T MEDIA DRIVER
11146 M:      Michael Krufky <mkrufky@linuxtv.org>
11147 L:      linux-media@vger.kernel.org
11148 W:      https://linuxtv.org
11149 W:      http://github.com/mkrufky
11150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11151 T:      git git://linuxtv.org/mkrufky/tuners.git
11152 S:      Maintained
11153 F:      drivers/media/tuners/mxl5007t.*
11154
11155 MXSFB DRM DRIVER
11156 M:      Marek Vasut <marex@denx.de>
11157 M:      Stefan Agner <stefan@agner.ch>
11158 L:      dri-devel@lists.freedesktop.org
11159 S:      Supported
11160 F:      drivers/gpu/drm/mxsfb/
11161 F:      Documentation/devicetree/bindings/display/mxsfb.txt
11162 T:      git git://anongit.freedesktop.org/drm/drm-misc
11163
11164 MYLEX DAC960 PCI RAID Controller
11165 M:      Hannes Reinecke <hare@kernel.org>
11166 L:      linux-scsi@vger.kernel.org
11167 S:      Supported
11168 F:      drivers/scsi/myrb.*
11169 F:      drivers/scsi/myrs.*
11170
11171 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
11172 M:      Chris Lee <christopher.lee@cspi.com>
11173 L:      netdev@vger.kernel.org
11174 W:      https://www.cspi.com/ethernet-products/support/downloads/
11175 S:      Supported
11176 F:      drivers/net/ethernet/myricom/myri10ge/
11177
11178 NAND FLASH SUBSYSTEM
11179 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11180 R:      Richard Weinberger <richard@nod.at>
11181 L:      linux-mtd@lists.infradead.org
11182 W:      http://www.linux-mtd.infradead.org/
11183 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
11185 S:      Maintained
11186 F:      drivers/mtd/nand/
11187 F:      include/linux/mtd/*nand*.h
11188
11189 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
11190 M:      Daniel Mack <zonque@gmail.com>
11191 S:      Maintained
11192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11193 W:      http://www.native-instruments.com
11194 F:      sound/usb/caiaq/
11195
11196 NATSEMI ETHERNET DRIVER (DP8381x)
11197 S:      Orphan
11198 F:      drivers/net/ethernet/natsemi/natsemi.c
11199
11200 NCR 5380 SCSI DRIVERS
11201 M:      Finn Thain <fthain@telegraphics.com.au>
11202 M:      Michael Schmitz <schmitzmic@gmail.com>
11203 L:      linux-scsi@vger.kernel.org
11204 S:      Maintained
11205 F:      Documentation/scsi/g_NCR5380.txt
11206 F:      drivers/scsi/NCR5380.*
11207 F:      drivers/scsi/arm/cumana_1.c
11208 F:      drivers/scsi/arm/oak.c
11209 F:      drivers/scsi/atari_scsi.*
11210 F:      drivers/scsi/dmx3191d.c
11211 F:      drivers/scsi/g_NCR5380.*
11212 F:      drivers/scsi/mac_scsi.*
11213 F:      drivers/scsi/sun3_scsi.*
11214 F:      drivers/scsi/sun3_scsi_vme.c
11215
11216 NCSI LIBRARY:
11217 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
11218 S:      Maintained
11219 F:      net/ncsi/
11220
11221 NCT6775 HARDWARE MONITOR DRIVER
11222 M:      Guenter Roeck <linux@roeck-us.net>
11223 L:      linux-hwmon@vger.kernel.org
11224 S:      Maintained
11225 F:      Documentation/hwmon/nct6775.rst
11226 F:      drivers/hwmon/nct6775.c
11227
11228 NET_FAILOVER MODULE
11229 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
11230 L:      netdev@vger.kernel.org
11231 S:      Supported
11232 F:      drivers/net/net_failover.c
11233 F:      include/net/net_failover.h
11234 F:      Documentation/networking/net_failover.rst
11235
11236 NETEM NETWORK EMULATOR
11237 M:      Stephen Hemminger <stephen@networkplumber.org>
11238 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
11239 S:      Maintained
11240 F:      net/sched/sch_netem.c
11241
11242 NETERION 10GbE DRIVERS (s2io/vxge)
11243 M:      Jon Mason <jdmason@kudzu.us>
11244 L:      netdev@vger.kernel.org
11245 S:      Supported
11246 F:      Documentation/networking/device_drivers/neterion/s2io.txt
11247 F:      Documentation/networking/device_drivers/neterion/vxge.txt
11248 F:      drivers/net/ethernet/neterion/
11249
11250 NETFILTER
11251 M:      Pablo Neira Ayuso <pablo@netfilter.org>
11252 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
11253 M:      Florian Westphal <fw@strlen.de>
11254 L:      netfilter-devel@vger.kernel.org
11255 L:      coreteam@netfilter.org
11256 W:      http://www.netfilter.org/
11257 W:      http://www.iptables.org/
11258 W:      http://www.nftables.org/
11259 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
11260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
11261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
11262 S:      Maintained
11263 F:      include/linux/netfilter*
11264 F:      include/linux/netfilter/
11265 F:      include/net/netfilter/
11266 F:      include/uapi/linux/netfilter*
11267 F:      include/uapi/linux/netfilter/
11268 F:      net/*/netfilter.c
11269 F:      net/*/netfilter/
11270 F:      net/netfilter/
11271 F:      net/bridge/br_netfilter*.c
11272
11273 NETROM NETWORK LAYER
11274 M:      Ralf Baechle <ralf@linux-mips.org>
11275 L:      linux-hams@vger.kernel.org
11276 W:      http://www.linux-ax25.org/
11277 S:      Maintained
11278 F:      include/net/netrom.h
11279 F:      include/uapi/linux/netrom.h
11280 F:      net/netrom/
11281
11282 NETRONOME ETHERNET DRIVERS
11283 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11284 L:      oss-drivers@netronome.com
11285 S:      Maintained
11286 F:      drivers/net/ethernet/netronome/
11287
11288 NETWORK BLOCK DEVICE (NBD)
11289 M:      Josef Bacik <josef@toxicpanda.com>
11290 S:      Maintained
11291 L:      linux-block@vger.kernel.org
11292 L:      nbd@other.debian.org
11293 F:      Documentation/admin-guide/blockdev/nbd.rst
11294 F:      drivers/block/nbd.c
11295 F:      include/trace/events/nbd.h
11296 F:      include/uapi/linux/nbd.h
11297
11298 NETWORK DROP MONITOR
11299 M:      Neil Horman <nhorman@tuxdriver.com>
11300 L:      netdev@vger.kernel.org
11301 S:      Maintained
11302 W:      https://fedorahosted.org/dropwatch/
11303 F:      net/core/drop_monitor.c
11304 F:      include/uapi/linux/net_dropmon.h
11305 F:      include/net/drop_monitor.h
11306
11307 NETWORKING DRIVERS
11308 M:      "David S. Miller" <davem@davemloft.net>
11309 L:      netdev@vger.kernel.org
11310 W:      http://www.linuxfoundation.org/en/Net
11311 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11314 S:      Odd Fixes
11315 F:      Documentation/devicetree/bindings/net/
11316 F:      drivers/net/
11317 F:      include/linux/if_*
11318 F:      include/linux/netdevice.h
11319 F:      include/linux/etherdevice.h
11320 F:      include/linux/fcdevice.h
11321 F:      include/linux/fddidevice.h
11322 F:      include/linux/hippidevice.h
11323 F:      include/linux/inetdevice.h
11324 F:      include/uapi/linux/if_*
11325 F:      include/uapi/linux/netdevice.h
11326
11327 NETWORKING DRIVERS (WIRELESS)
11328 M:      Kalle Valo <kvalo@codeaurora.org>
11329 L:      linux-wireless@vger.kernel.org
11330 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
11332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
11333 S:      Maintained
11334 F:      Documentation/devicetree/bindings/net/wireless/
11335 F:      drivers/net/wireless/
11336
11337 NETWORKING [DSA]
11338 M:      Andrew Lunn <andrew@lunn.ch>
11339 M:      Vivien Didelot <vivien.didelot@gmail.com>
11340 M:      Florian Fainelli <f.fainelli@gmail.com>
11341 S:      Maintained
11342 F:      Documentation/devicetree/bindings/net/dsa/
11343 F:      net/dsa/
11344 F:      include/net/dsa.h
11345 F:      include/linux/dsa/
11346 F:      include/linux/platform_data/dsa.h
11347 F:      drivers/net/dsa/
11348
11349 NETWORKING [GENERAL]
11350 M:      "David S. Miller" <davem@davemloft.net>
11351 L:      netdev@vger.kernel.org
11352 W:      http://www.linuxfoundation.org/en/Net
11353 Q:      http://patchwork.ozlabs.org/project/netdev/list/
11354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
11356 B:      mailto:netdev@vger.kernel.org
11357 S:      Maintained
11358 F:      net/
11359 F:      include/net/
11360 F:      include/linux/in.h
11361 F:      include/linux/net.h
11362 F:      include/linux/netdevice.h
11363 F:      include/uapi/linux/in.h
11364 F:      include/uapi/linux/net.h
11365 F:      include/uapi/linux/netdevice.h
11366 F:      include/uapi/linux/net_namespace.h
11367 F:      tools/testing/selftests/net/
11368 F:      lib/net_utils.c
11369 F:      lib/random32.c
11370 F:      Documentation/networking/
11371
11372 NETWORKING [IPSEC]
11373 M:      Steffen Klassert <steffen.klassert@secunet.com>
11374 M:      Herbert Xu <herbert@gondor.apana.org.au>
11375 M:      "David S. Miller" <davem@davemloft.net>
11376 L:      netdev@vger.kernel.org
11377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
11378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
11379 S:      Maintained
11380 F:      net/xfrm/
11381 F:      net/key/
11382 F:      net/ipv4/xfrm*
11383 F:      net/ipv4/esp4*
11384 F:      net/ipv4/ah4.c
11385 F:      net/ipv4/ipcomp.c
11386 F:      net/ipv4/ip_vti.c
11387 F:      net/ipv6/xfrm*
11388 F:      net/ipv6/esp6*
11389 F:      net/ipv6/ah6.c
11390 F:      net/ipv6/ipcomp6.c
11391 F:      net/ipv6/ip6_vti.c
11392 F:      include/uapi/linux/xfrm.h
11393 F:      include/net/xfrm.h
11394
11395 NETWORKING [IPv4/IPv6]
11396 M:      "David S. Miller" <davem@davemloft.net>
11397 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
11398 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
11399 L:      netdev@vger.kernel.org
11400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
11401 S:      Maintained
11402 F:      net/ipv4/
11403 F:      net/ipv6/
11404 F:      include/net/ip*
11405 F:      arch/x86/net/*
11406
11407 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
11408 M:      Paul Moore <paul@paul-moore.com>
11409 W:      https://github.com/netlabel
11410 L:      netdev@vger.kernel.org
11411 L:      linux-security-module@vger.kernel.org
11412 S:      Maintained
11413 F:      Documentation/netlabel/
11414 F:      include/net/calipso.h
11415 F:      include/net/cipso_ipv4.h
11416 F:      include/net/netlabel.h
11417 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11418 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11419 F:      net/netlabel/
11420 F:      net/ipv4/cipso_ipv4.c
11421 F:      net/ipv6/calipso.c
11422 F:      net/netfilter/xt_CONNSECMARK.c
11423 F:      net/netfilter/xt_SECMARK.c
11424
11425 NETWORKING [TCP]
11426 M:      Eric Dumazet <edumazet@google.com>
11427 L:      netdev@vger.kernel.org
11428 S:      Maintained
11429 F:      net/ipv4/tcp*.c
11430 F:      net/ipv4/syncookies.c
11431 F:      net/ipv6/tcp*.c
11432 F:      net/ipv6/syncookies.c
11433 F:      include/uapi/linux/tcp.h
11434 F:      include/net/tcp.h
11435 F:      include/linux/tcp.h
11436 F:      include/trace/events/tcp.h
11437
11438 NETWORKING [TLS]
11439 M:      Boris Pismenny <borisp@mellanox.com>
11440 M:      Aviad Yehezkel <aviadye@mellanox.com>
11441 M:      John Fastabend <john.fastabend@gmail.com>
11442 M:      Daniel Borkmann <daniel@iogearbox.net>
11443 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11444 L:      netdev@vger.kernel.org
11445 S:      Maintained
11446 F:      net/tls/*
11447 F:      include/uapi/linux/tls.h
11448 F:      include/net/tls.h
11449
11450 NETWORKING [WIRELESS]
11451 L:      linux-wireless@vger.kernel.org
11452 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11453
11454 NETDEVSIM
11455 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11456 S:      Maintained
11457 F:      drivers/net/netdevsim/*
11458
11459 NETXEN (1/10) GbE SUPPORT
11460 M:      Manish Chopra <manishc@marvell.com>
11461 M:      Rahul Verma <rahulv@marvell.com>
11462 M:      GR-Linux-NIC-Dev@marvell.com
11463 L:      netdev@vger.kernel.org
11464 S:      Supported
11465 F:      drivers/net/ethernet/qlogic/netxen/
11466
11467 NEXTHOP
11468 M:      David Ahern <dsahern@kernel.org>
11469 L:      netdev@vger.kernel.org
11470 S:      Maintained
11471 F:      include/net/nexthop.h
11472 F:      include/uapi/linux/nexthop.h
11473 F:      include/net/netns/nexthop.h
11474 F:      net/ipv4/nexthop.c
11475
11476 NFC SUBSYSTEM
11477 L:      netdev@vger.kernel.org
11478 S:      Orphan
11479 F:      net/nfc/
11480 F:      include/net/nfc/
11481 F:      include/uapi/linux/nfc.h
11482 F:      drivers/nfc/
11483 F:      include/linux/platform_data/nfcmrvl.h
11484 F:      Documentation/devicetree/bindings/net/nfc/
11485
11486 NFS, SUNRPC, AND LOCKD CLIENTS
11487 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11488 M:      Anna Schumaker <anna.schumaker@netapp.com>
11489 L:      linux-nfs@vger.kernel.org
11490 W:      http://client.linux-nfs.org
11491 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11492 S:      Maintained
11493 F:      fs/lockd/
11494 F:      fs/nfs/
11495 F:      fs/nfs_common/
11496 F:      net/sunrpc/
11497 F:      include/linux/lockd/
11498 F:      include/linux/nfs*
11499 F:      include/linux/sunrpc/
11500 F:      include/uapi/linux/nfs*
11501 F:      include/uapi/linux/sunrpc/
11502
11503 NILFS2 FILESYSTEM
11504 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
11505 L:      linux-nilfs@vger.kernel.org
11506 W:      https://nilfs.sourceforge.io/
11507 W:      https://nilfs.osdn.jp/
11508 T:      git git://github.com/konis/nilfs2.git
11509 S:      Supported
11510 F:      Documentation/filesystems/nilfs2.txt
11511 F:      fs/nilfs2/
11512 F:      include/trace/events/nilfs2.h
11513 F:      include/uapi/linux/nilfs2_api.h
11514 F:      include/uapi/linux/nilfs2_ondisk.h
11515
11516 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11517 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11518 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11519 S:      Maintained
11520 F:      Documentation/scsi/NinjaSCSI.txt
11521 F:      drivers/scsi/pcmcia/nsp_*
11522
11523 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11524 M:      GOTO Masanori <gotom@debian.or.jp>
11525 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11526 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11527 S:      Maintained
11528 F:      Documentation/scsi/NinjaSCSI.txt
11529 F:      drivers/scsi/nsp32*
11530
11531 NIOS2 ARCHITECTURE
11532 M:      Ley Foon Tan <lftan@altera.com>
11533 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11535 S:      Maintained
11536 F:      arch/nios2/
11537
11538 NOHZ, DYNTICKS SUPPORT
11539 M:      Frederic Weisbecker <fweisbec@gmail.com>
11540 M:      Thomas Gleixner <tglx@linutronix.de>
11541 M:      Ingo Molnar <mingo@kernel.org>
11542 L:      linux-kernel@vger.kernel.org
11543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11544 S:      Maintained
11545 F:      kernel/time/tick*.*
11546 F:      include/linux/tick.h
11547 F:      include/linux/sched/nohz.h
11548
11549 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11550 M:      Pavel Machek <pavel@ucw.cz>
11551 M:      Sakari Ailus <sakari.ailus@iki.fi>
11552 L:      linux-media@vger.kernel.org
11553 S:      Maintained
11554 F:      drivers/media/i2c/et8ek8
11555 F:      drivers/media/i2c/ad5820.c
11556
11557 NOKIA N900 POWER SUPPLY DRIVERS
11558 R:      Pali Rohár <pali.rohar@gmail.com>
11559 F:      include/linux/power/bq2415x_charger.h
11560 F:      include/linux/power/bq27xxx_battery.h
11561 F:      drivers/power/supply/bq2415x_charger.c
11562 F:      drivers/power/supply/bq27xxx_battery.c
11563 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11564 F:      drivers/power/supply/isp1704_charger.c
11565 F:      drivers/power/supply/rx51_battery.c
11566
11567 NOLIBC HEADER FILE
11568 M:      Willy Tarreau <w@1wt.eu>
11569 S:      Maintained
11570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11571 F:      tools/include/nolibc/
11572
11573 NSDEPS
11574 M:      Matthias Maennich <maennich@google.com>
11575 S:      Maintained
11576 F:      scripts/nsdeps
11577 F:      Documentation/core-api/symbol-namespaces.rst
11578
11579 NTB AMD DRIVER
11580 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11581 L:      linux-ntb@googlegroups.com
11582 S:      Supported
11583 F:      drivers/ntb/hw/amd/
11584
11585 NTB DRIVER CORE
11586 M:      Jon Mason <jdmason@kudzu.us>
11587 M:      Dave Jiang <dave.jiang@intel.com>
11588 M:      Allen Hubbe <allenbh@gmail.com>
11589 L:      linux-ntb@googlegroups.com
11590 S:      Supported
11591 W:      https://github.com/jonmason/ntb/wiki
11592 T:      git git://github.com/jonmason/ntb.git
11593 F:      drivers/ntb/
11594 F:      drivers/net/ntb_netdev.c
11595 F:      include/linux/ntb.h
11596 F:      include/linux/ntb_transport.h
11597 F:      tools/testing/selftests/ntb/
11598
11599 NTB IDT DRIVER
11600 M:      Serge Semin <fancer.lancer@gmail.com>
11601 L:      linux-ntb@googlegroups.com
11602 S:      Supported
11603 F:      drivers/ntb/hw/idt/
11604
11605 NTB INTEL DRIVER
11606 M:      Dave Jiang <dave.jiang@intel.com>
11607 L:      linux-ntb@googlegroups.com
11608 S:      Supported
11609 W:      https://github.com/davejiang/linux/wiki
11610 T:      git https://github.com/davejiang/linux.git
11611 F:      drivers/ntb/hw/intel/
11612
11613 NTFS FILESYSTEM
11614 M:      Anton Altaparmakov <anton@tuxera.com>
11615 L:      linux-ntfs-dev@lists.sourceforge.net
11616 W:      http://www.tuxera.com/
11617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11618 S:      Supported
11619 F:      Documentation/filesystems/ntfs.txt
11620 F:      fs/ntfs/
11621
11622 NUBUS SUBSYSTEM
11623 M:      Finn Thain <fthain@telegraphics.com.au>
11624 L:      linux-m68k@lists.linux-m68k.org
11625 S:      Maintained
11626 F:      arch/*/include/asm/nubus.h
11627 F:      drivers/nubus/
11628 F:      include/linux/nubus.h
11629 F:      include/uapi/linux/nubus.h
11630
11631 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11632 M:      Antonino Daplas <adaplas@gmail.com>
11633 L:      linux-fbdev@vger.kernel.org
11634 S:      Maintained
11635 F:      drivers/video/fbdev/riva/
11636 F:      drivers/video/fbdev/nvidia/
11637
11638 NVM EXPRESS DRIVER
11639 M:      Keith Busch <kbusch@kernel.org>
11640 M:      Jens Axboe <axboe@fb.com>
11641 M:      Christoph Hellwig <hch@lst.de>
11642 M:      Sagi Grimberg <sagi@grimberg.me>
11643 L:      linux-nvme@lists.infradead.org
11644 T:      git://git.infradead.org/nvme.git
11645 W:      http://git.infradead.org/nvme.git
11646 S:      Supported
11647 F:      drivers/nvme/host/
11648 F:      include/linux/nvme.h
11649 F:      include/uapi/linux/nvme_ioctl.h
11650
11651 NVM EXPRESS FC TRANSPORT DRIVERS
11652 M:      James Smart <james.smart@broadcom.com>
11653 L:      linux-nvme@lists.infradead.org
11654 S:      Supported
11655 F:      include/linux/nvme-fc.h
11656 F:      include/linux/nvme-fc-driver.h
11657 F:      drivers/nvme/host/fc.c
11658 F:      drivers/nvme/target/fc.c
11659 F:      drivers/nvme/target/fcloop.c
11660
11661 NVM EXPRESS TARGET DRIVER
11662 M:      Christoph Hellwig <hch@lst.de>
11663 M:      Sagi Grimberg <sagi@grimberg.me>
11664 L:      linux-nvme@lists.infradead.org
11665 T:      git://git.infradead.org/nvme.git
11666 W:      http://git.infradead.org/nvme.git
11667 S:      Supported
11668 F:      drivers/nvme/target/
11669
11670 NVMEM FRAMEWORK
11671 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11672 S:      Maintained
11673 F:      drivers/nvmem/
11674 F:      Documentation/devicetree/bindings/nvmem/
11675 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11676 F:      include/linux/nvmem-consumer.h
11677 F:      include/linux/nvmem-provider.h
11678
11679 NXP FXAS21002C DRIVER
11680 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11681 L:      linux-iio@vger.kernel.org
11682 S:      Maintained
11683 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.txt
11684 F:      drivers/iio/gyro/fxas21002c_core.c
11685 F:      drivers/iio/gyro/fxas21002c.h
11686 F:      drivers/iio/gyro/fxas21002c_i2c.c
11687 F:      drivers/iio/gyro/fxas21002c_spi.c
11688
11689 NXP SGTL5000 DRIVER
11690 M:      Fabio Estevam <festevam@gmail.com>
11691 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11692 S:      Maintained
11693 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11694 F:      sound/soc/codecs/sgtl5000*
11695
11696 NXP SJA1105 ETHERNET SWITCH DRIVER
11697 M:      Vladimir Oltean <olteanv@gmail.com>
11698 L:      linux-kernel@vger.kernel.org
11699 S:      Maintained
11700 F:      drivers/net/dsa/sja1105
11701
11702 NXP TDA998X DRM DRIVER
11703 M:      Russell King <linux@armlinux.org.uk>
11704 S:      Maintained
11705 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11706 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11707 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11708 F:      include/drm/i2c/tda998x.h
11709 F:      include/dt-bindings/display/tda998x.h
11710 K:      "nxp,tda998x"
11711
11712 NXP TFA9879 DRIVER
11713 M:      Peter Rosin <peda@axentia.se>
11714 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11715 S:      Maintained
11716 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11717 F:      sound/soc/codecs/tfa9879*
11718
11719 NXP-NCI NFC DRIVER
11720 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11721 R:      Charles Gorand <charles.gorand@effinnov.com>
11722 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11723 S:      Supported
11724 F:      drivers/nfc/nxp-nci
11725
11726 OBJAGG
11727 M:      Jiri Pirko <jiri@mellanox.com>
11728 L:      netdev@vger.kernel.org
11729 S:      Supported
11730 F:      lib/objagg.c
11731 F:      lib/test_objagg.c
11732 F:      include/linux/objagg.h
11733
11734 NXP FSPI DRIVER
11735 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11736 M:      Ashish Kumar <ashish.kumar@nxp.com>
11737 L:      linux-spi@vger.kernel.org
11738 S:      Maintained
11739 F:      drivers/spi/spi-nxp-fspi.c
11740 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11741
11742 OBJTOOL
11743 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11744 M:      Peter Zijlstra <peterz@infradead.org>
11745 S:      Supported
11746 F:      tools/objtool/
11747
11748 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11749 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11750 M:      Andrew Donnellan <ajd@linux.ibm.com>
11751 L:      linuxppc-dev@lists.ozlabs.org
11752 S:      Supported
11753 F:      arch/powerpc/platforms/powernv/ocxl.c
11754 F:      arch/powerpc/include/asm/pnv-ocxl.h
11755 F:      drivers/misc/ocxl/
11756 F:      include/misc/ocxl*
11757 F:      include/uapi/misc/ocxl.h
11758 F:      Documentation/userspace-api/accelerators/ocxl.rst
11759
11760 OMAP AUDIO SUPPORT
11761 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11762 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11763 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11764 L:      linux-omap@vger.kernel.org
11765 S:      Maintained
11766 F:      sound/soc/ti/omap*
11767 F:      sound/soc/ti/rx51.c
11768 F:      sound/soc/ti/n810.c
11769 F:      sound/soc/ti/sdma-pcm.*
11770
11771 OMAP CLOCK FRAMEWORK SUPPORT
11772 M:      Paul Walmsley <paul@pwsan.com>
11773 L:      linux-omap@vger.kernel.org
11774 S:      Maintained
11775 F:      arch/arm/*omap*/*clock*
11776
11777 OMAP DEVICE TREE SUPPORT
11778 M:      Benoît Cousson <bcousson@baylibre.com>
11779 M:      Tony Lindgren <tony@atomide.com>
11780 L:      linux-omap@vger.kernel.org
11781 L:      devicetree@vger.kernel.org
11782 S:      Maintained
11783 F:      arch/arm/boot/dts/*omap*
11784 F:      arch/arm/boot/dts/*am3*
11785 F:      arch/arm/boot/dts/*am4*
11786 F:      arch/arm/boot/dts/*am5*
11787 F:      arch/arm/boot/dts/*dra7*
11788
11789 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11790 L:      linux-omap@vger.kernel.org
11791 L:      linux-fbdev@vger.kernel.org
11792 S:      Orphan
11793 F:      drivers/video/fbdev/omap2/
11794 F:      Documentation/arm/omap/dss.rst
11795
11796 OMAP FRAMEBUFFER SUPPORT
11797 L:      linux-fbdev@vger.kernel.org
11798 L:      linux-omap@vger.kernel.org
11799 S:      Orphan
11800 F:      drivers/video/fbdev/omap/
11801
11802 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11803 M:      Roger Quadros <rogerq@ti.com>
11804 M:      Tony Lindgren <tony@atomide.com>
11805 L:      linux-omap@vger.kernel.org
11806 S:      Maintained
11807 F:      drivers/memory/omap-gpmc.c
11808 F:      arch/arm/mach-omap2/*gpmc*
11809
11810 OMAP GPIO DRIVER
11811 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11812 M:      Santosh Shilimkar <ssantosh@kernel.org>
11813 M:      Kevin Hilman <khilman@kernel.org>
11814 L:      linux-omap@vger.kernel.org
11815 S:      Maintained
11816 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11817 F:      drivers/gpio/gpio-omap.c
11818
11819 OMAP HARDWARE SPINLOCK SUPPORT
11820 M:      Ohad Ben-Cohen <ohad@wizery.com>
11821 L:      linux-omap@vger.kernel.org
11822 S:      Maintained
11823 F:      drivers/hwspinlock/omap_hwspinlock.c
11824
11825 OMAP HS MMC SUPPORT
11826 L:      linux-mmc@vger.kernel.org
11827 L:      linux-omap@vger.kernel.org
11828 S:      Orphan
11829 F:      drivers/mmc/host/omap_hsmmc.c
11830
11831 OMAP HWMOD DATA
11832 M:      Paul Walmsley <paul@pwsan.com>
11833 L:      linux-omap@vger.kernel.org
11834 S:      Maintained
11835 F:      arch/arm/mach-omap2/omap_hwmod*data*
11836
11837 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11838 M:      Benoît Cousson <bcousson@baylibre.com>
11839 L:      linux-omap@vger.kernel.org
11840 S:      Maintained
11841 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11842
11843 OMAP HWMOD SUPPORT
11844 M:      Benoît Cousson <bcousson@baylibre.com>
11845 M:      Paul Walmsley <paul@pwsan.com>
11846 L:      linux-omap@vger.kernel.org
11847 S:      Maintained
11848 F:      arch/arm/mach-omap2/omap_hwmod.*
11849
11850 OMAP I2C DRIVER
11851 M:      Vignesh R <vigneshr@ti.com>
11852 L:      linux-omap@vger.kernel.org
11853 L:      linux-i2c@vger.kernel.org
11854 S:      Maintained
11855 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11856 F:      drivers/i2c/busses/i2c-omap.c
11857
11858 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11859 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11860 L:      linux-media@vger.kernel.org
11861 S:      Maintained
11862 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11863 F:      drivers/media/platform/omap3isp/
11864 F:      drivers/staging/media/omap4iss/
11865
11866 OMAP MMC SUPPORT
11867 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11868 L:      linux-omap@vger.kernel.org
11869 S:      Odd Fixes
11870 F:      drivers/mmc/host/omap.c
11871
11872 OMAP POWER MANAGEMENT SUPPORT
11873 M:      Kevin Hilman <khilman@kernel.org>
11874 L:      linux-omap@vger.kernel.org
11875 S:      Maintained
11876 F:      arch/arm/*omap*/*pm*
11877 F:      drivers/cpufreq/omap-cpufreq.c
11878
11879 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11880 M:      Rajendra Nayak <rnayak@codeaurora.org>
11881 M:      Paul Walmsley <paul@pwsan.com>
11882 L:      linux-omap@vger.kernel.org
11883 S:      Maintained
11884 F:      arch/arm/mach-omap2/prm*
11885
11886 OMAP RANDOM NUMBER GENERATOR SUPPORT
11887 M:      Deepak Saxena <dsaxena@plexity.net>
11888 S:      Maintained
11889 F:      drivers/char/hw_random/omap-rng.c
11890
11891 OMAP USB SUPPORT
11892 L:      linux-usb@vger.kernel.org
11893 L:      linux-omap@vger.kernel.org
11894 S:      Orphan
11895 F:      drivers/usb/*/*omap*
11896 F:      arch/arm/*omap*/usb*
11897
11898 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11899 M:      Mark Jackson <mpfj@newflow.co.uk>
11900 L:      linux-omap@vger.kernel.org
11901 S:      Maintained
11902 F:      arch/arm/boot/dts/am335x-nano.dts
11903
11904 OMAP1 SUPPORT
11905 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11906 M:      Tony Lindgren <tony@atomide.com>
11907 L:      linux-omap@vger.kernel.org
11908 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11910 S:      Maintained
11911 F:      arch/arm/mach-omap1/
11912 F:      arch/arm/plat-omap/
11913 F:      arch/arm/configs/omap1_defconfig
11914 F:      drivers/i2c/busses/i2c-omap.c
11915 F:      include/linux/platform_data/i2c-omap.h
11916 F:      include/linux/platform_data/ams-delta-fiq.h
11917
11918 OMAP2+ SUPPORT
11919 M:      Tony Lindgren <tony@atomide.com>
11920 L:      linux-omap@vger.kernel.org
11921 W:      http://www.muru.com/linux/omap/
11922 W:      http://linux.omap.com/
11923 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11925 S:      Maintained
11926 F:      arch/arm/mach-omap2/
11927 F:      arch/arm/plat-omap/
11928 F:      arch/arm/configs/omap2plus_defconfig
11929 F:      drivers/bus/ti-sysc.c
11930 F:      drivers/i2c/busses/i2c-omap.c
11931 F:      drivers/irqchip/irq-omap-intc.c
11932 F:      drivers/mfd/*omap*.c
11933 F:      drivers/mfd/menelaus.c
11934 F:      drivers/mfd/palmas.c
11935 F:      drivers/mfd/tps65217.c
11936 F:      drivers/mfd/tps65218.c
11937 F:      drivers/mfd/tps65910.c
11938 F:      drivers/mfd/twl-core.[ch]
11939 F:      drivers/mfd/twl4030*.c
11940 F:      drivers/mfd/twl6030*.c
11941 F:      drivers/mfd/twl6040*.c
11942 F:      drivers/regulator/palmas-regulator*.c
11943 F:      drivers/regulator/pbias-regulator.c
11944 F:      drivers/regulator/tps65217-regulator.c
11945 F:      drivers/regulator/tps65218-regulator.c
11946 F:      drivers/regulator/tps65910-regulator.c
11947 F:      drivers/regulator/twl-regulator.c
11948 F:      drivers/regulator/twl6030-regulator.c
11949 F:      include/linux/platform_data/i2c-omap.h
11950 F:      include/linux/platform_data/ti-sysc.h
11951
11952 ONION OMEGA2+ BOARD
11953 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11954 L:      linux-mips@vger.kernel.org
11955 S:      Maintained
11956 F:      arch/mips/boot/dts/ralink/omega2p.dts
11957
11958 OMFS FILESYSTEM
11959 M:      Bob Copeland <me@bobcopeland.com>
11960 L:      linux-karma-devel@lists.sourceforge.net
11961 S:      Maintained
11962 F:      Documentation/filesystems/omfs.txt
11963 F:      fs/omfs/
11964
11965 OMNIKEY CARDMAN 4000 DRIVER
11966 M:      Harald Welte <laforge@gnumonks.org>
11967 S:      Maintained
11968 F:      drivers/char/pcmcia/cm4000_cs.c
11969 F:      include/linux/cm4000_cs.h
11970 F:      include/uapi/linux/cm4000_cs.h
11971
11972 OMNIKEY CARDMAN 4040 DRIVER
11973 M:      Harald Welte <laforge@gnumonks.org>
11974 S:      Maintained
11975 F:      drivers/char/pcmcia/cm4040_cs.*
11976
11977 OMNIVISION OV13858 SENSOR DRIVER
11978 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11979 L:      linux-media@vger.kernel.org
11980 T:      git git://linuxtv.org/media_tree.git
11981 S:      Maintained
11982 F:      drivers/media/i2c/ov13858.c
11983
11984 OMNIVISION OV2680 SENSOR DRIVER
11985 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11986 L:      linux-media@vger.kernel.org
11987 T:      git git://linuxtv.org/media_tree.git
11988 S:      Maintained
11989 F:      drivers/media/i2c/ov2680.c
11990 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11991
11992 OMNIVISION OV2685 SENSOR DRIVER
11993 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11994 L:      linux-media@vger.kernel.org
11995 T:      git git://linuxtv.org/media_tree.git
11996 S:      Maintained
11997 F:      drivers/media/i2c/ov2685.c
11998
11999 OMNIVISION OV5640 SENSOR DRIVER
12000 M:      Steve Longerbeam <slongerbeam@gmail.com>
12001 L:      linux-media@vger.kernel.org
12002 T:      git git://linuxtv.org/media_tree.git
12003 S:      Maintained
12004 F:      drivers/media/i2c/ov5640.c
12005
12006 OMNIVISION OV5647 SENSOR DRIVER
12007 M:      Luis Oliveira <lolivei@synopsys.com>
12008 L:      linux-media@vger.kernel.org
12009 T:      git git://linuxtv.org/media_tree.git
12010 S:      Maintained
12011 F:      drivers/media/i2c/ov5647.c
12012
12013 OMNIVISION OV5670 SENSOR DRIVER
12014 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
12015 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
12016 L:      linux-media@vger.kernel.org
12017 T:      git git://linuxtv.org/media_tree.git
12018 S:      Maintained
12019 F:      drivers/media/i2c/ov5670.c
12020
12021 OMNIVISION OV5675 SENSOR DRIVER
12022 M:      Shawn Tu <shawnx.tu@intel.com>
12023 L:      linux-media@vger.kernel.org
12024 T:      git git://linuxtv.org/media_tree.git
12025 S:      Maintained
12026 F:      drivers/media/i2c/ov5675.c
12027
12028 OMNIVISION OV5695 SENSOR DRIVER
12029 M:      Shunqian Zheng <zhengsq@rock-chips.com>
12030 L:      linux-media@vger.kernel.org
12031 T:      git git://linuxtv.org/media_tree.git
12032 S:      Maintained
12033 F:      drivers/media/i2c/ov5695.c
12034
12035 OMNIVISION OV7670 SENSOR DRIVER
12036 M:      Jonathan Corbet <corbet@lwn.net>
12037 L:      linux-media@vger.kernel.org
12038 T:      git git://linuxtv.org/media_tree.git
12039 S:      Maintained
12040 F:      drivers/media/i2c/ov7670.c
12041 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
12042
12043 OMNIVISION OV772x SENSOR DRIVER
12044 M:      Jacopo Mondi <jacopo@jmondi.org>
12045 L:      linux-media@vger.kernel.org
12046 T:      git git://linuxtv.org/media_tree.git
12047 S:      Odd fixes
12048 F:      drivers/media/i2c/ov772x.c
12049 F:      include/media/i2c/ov772x.h
12050 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
12051
12052 OMNIVISION OV7740 SENSOR DRIVER
12053 M:      Wenyou Yang <wenyou.yang@microchip.com>
12054 L:      linux-media@vger.kernel.org
12055 T:      git git://linuxtv.org/media_tree.git
12056 S:      Maintained
12057 F:      drivers/media/i2c/ov7740.c
12058 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
12059
12060 OMNIVISION OV9640 SENSOR DRIVER
12061 M:      Petr Cvek <petrcvekcz@gmail.com>
12062 L:      linux-media@vger.kernel.org
12063 S:      Maintained
12064 F:      drivers/media/i2c/ov9640.*
12065
12066 OMNIVISION OV8856 SENSOR DRIVER
12067 M:      Ben Kao <ben.kao@intel.com>
12068 L:      linux-media@vger.kernel.org
12069 T:      git git://linuxtv.org/media_tree.git
12070 S:      Maintained
12071 F:      drivers/media/i2c/ov8856.c
12072
12073 OMNIVISION OV9650 SENSOR DRIVER
12074 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12075 R:      Akinobu Mita <akinobu.mita@gmail.com>
12076 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12077 L:      linux-media@vger.kernel.org
12078 T:      git git://linuxtv.org/media_tree.git
12079 S:      Maintained
12080 F:      drivers/media/i2c/ov9650.c
12081 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
12082
12083 ONENAND FLASH DRIVER
12084 M:      Kyungmin Park <kyungmin.park@samsung.com>
12085 L:      linux-mtd@lists.infradead.org
12086 S:      Maintained
12087 F:      drivers/mtd/nand/onenand/
12088 F:      include/linux/mtd/onenand*.h
12089
12090 OP-TEE DRIVER
12091 M:      Jens Wiklander <jens.wiklander@linaro.org>
12092 L:      tee-dev@lists.linaro.org
12093 S:      Maintained
12094 F:      drivers/tee/optee/
12095
12096 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
12097 M:      Sumit Garg <sumit.garg@linaro.org>
12098 L:      tee-dev@lists.linaro.org
12099 S:      Maintained
12100 F:      drivers/char/hw_random/optee-rng.c
12101
12102 OPA-VNIC DRIVER
12103 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12104 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
12105 L:      linux-rdma@vger.kernel.org
12106 S:      Supported
12107 F:      drivers/infiniband/ulp/opa_vnic
12108
12109 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
12110 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
12111 M:      Frank Rowand <frowand.list@gmail.com>
12112 L:      devicetree@vger.kernel.org
12113 S:      Maintained
12114 F:      Documentation/devicetree/dynamic-resolution-notes.txt
12115 F:      Documentation/devicetree/overlay-notes.txt
12116 F:      drivers/of/overlay.c
12117 F:      drivers/of/resolver.c
12118 K:      of_overlay_notifier_
12119
12120 OPEN FIRMWARE AND FLATTENED DEVICE TREE
12121 M:      Rob Herring <robh+dt@kernel.org>
12122 M:      Frank Rowand <frowand.list@gmail.com>
12123 L:      devicetree@vger.kernel.org
12124 W:      http://www.devicetree.org/
12125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12126 S:      Maintained
12127 F:      drivers/of/
12128 F:      include/linux/of*.h
12129 F:      scripts/dtc/
12130 F:      Documentation/ABI/testing/sysfs-firmware-ofw
12131
12132 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
12133 M:      Rob Herring <robh+dt@kernel.org>
12134 M:      Mark Rutland <mark.rutland@arm.com>
12135 L:      devicetree@vger.kernel.org
12136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
12137 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
12138 S:      Maintained
12139 F:      Documentation/devicetree/
12140 F:      arch/*/boot/dts/
12141 F:      include/dt-bindings/
12142
12143 OPENCORES I2C BUS DRIVER
12144 M:      Peter Korsgaard <peter@korsgaard.com>
12145 M:      Andrew Lunn <andrew@lunn.ch>
12146 L:      linux-i2c@vger.kernel.org
12147 S:      Maintained
12148 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
12149 F:      Documentation/i2c/busses/i2c-ocores.rst
12150 F:      drivers/i2c/busses/i2c-ocores.c
12151 F:      include/linux/platform_data/i2c-ocores.h
12152
12153 OPENRISC ARCHITECTURE
12154 M:      Jonas Bonn <jonas@southpole.se>
12155 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
12156 M:      Stafford Horne <shorne@gmail.com>
12157 T:      git git://github.com/openrisc/linux.git
12158 L:      openrisc@lists.librecores.org
12159 W:      http://openrisc.io
12160 S:      Maintained
12161 F:      Documentation/devicetree/bindings/openrisc/
12162 F:      Documentation/openrisc/
12163 F:      arch/openrisc/
12164 F:      drivers/irqchip/irq-ompic.c
12165 F:      drivers/irqchip/irq-or1k-*
12166
12167 OPENVSWITCH
12168 M:      Pravin B Shelar <pshelar@ovn.org>
12169 L:      netdev@vger.kernel.org
12170 L:      dev@openvswitch.org
12171 W:      http://openvswitch.org
12172 S:      Maintained
12173 F:      net/openvswitch/
12174 F:      include/uapi/linux/openvswitch.h
12175
12176 OPERATING PERFORMANCE POINTS (OPP)
12177 M:      Viresh Kumar <vireshk@kernel.org>
12178 M:      Nishanth Menon <nm@ti.com>
12179 M:      Stephen Boyd <sboyd@kernel.org>
12180 L:      linux-pm@vger.kernel.org
12181 S:      Maintained
12182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
12183 F:      drivers/opp/
12184 F:      include/linux/pm_opp.h
12185 F:      Documentation/power/opp.rst
12186 F:      Documentation/devicetree/bindings/opp/
12187
12188 OPL4 DRIVER
12189 M:      Clemens Ladisch <clemens@ladisch.de>
12190 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12192 S:      Maintained
12193 F:      sound/drivers/opl4/
12194
12195 OPROFILE
12196 M:      Robert Richter <rric@kernel.org>
12197 L:      oprofile-list@lists.sf.net
12198 S:      Maintained
12199 F:      arch/*/include/asm/oprofile*.h
12200 F:      arch/*/oprofile/
12201 F:      drivers/oprofile/
12202 F:      include/linux/oprofile.h
12203
12204 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
12205 M:      Mark Fasheh <mark@fasheh.com>
12206 M:      Joel Becker <jlbec@evilplan.org>
12207 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
12208 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
12209 W:      http://ocfs2.wiki.kernel.org
12210 S:      Supported
12211 F:      Documentation/filesystems/ocfs2.txt
12212 F:      Documentation/filesystems/dlmfs.txt
12213 F:      fs/ocfs2/
12214
12215 ORANGEFS FILESYSTEM
12216 M:      Mike Marshall <hubcap@omnibond.com>
12217 R:      Martin Brandenburg <martin@omnibond.com>
12218 L:      devel@lists.orangefs.org
12219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
12220 S:      Supported
12221 F:      fs/orangefs/
12222 F:      Documentation/filesystems/orangefs.txt
12223
12224 ORINOCO DRIVER
12225 L:      linux-wireless@vger.kernel.org
12226 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
12227 W:      http://www.nongnu.org/orinoco/
12228 S:      Orphan
12229 F:      drivers/net/wireless/intersil/orinoco/
12230
12231 OV2659 OMNIVISION SENSOR DRIVER
12232 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12233 L:      linux-media@vger.kernel.org
12234 W:      https://linuxtv.org
12235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12236 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12237 S:      Maintained
12238 F:      drivers/media/i2c/ov2659.c
12239 F:      include/media/i2c/ov2659.h
12240
12241 OVERLAY FILESYSTEM
12242 M:      Miklos Szeredi <miklos@szeredi.hu>
12243 L:      linux-unionfs@vger.kernel.org
12244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
12245 S:      Supported
12246 F:      fs/overlayfs/
12247 F:      Documentation/filesystems/overlayfs.txt
12248
12249 P54 WIRELESS DRIVER
12250 M:      Christian Lamparter <chunkeey@googlemail.com>
12251 L:      linux-wireless@vger.kernel.org
12252 W:      http://wireless.kernel.org/en/users/Drivers/p54
12253 S:      Maintained
12254 F:      drivers/net/wireless/intersil/p54/
12255
12256 PA SEMI ETHERNET DRIVER
12257 L:      netdev@vger.kernel.org
12258 S:      Orphan
12259 F:      drivers/net/ethernet/pasemi/*
12260
12261 PA SEMI SMBUS DRIVER
12262 L:      linux-i2c@vger.kernel.org
12263 S:      Orphan
12264 F:      drivers/i2c/busses/i2c-pasemi.c
12265
12266 PACKING
12267 M:      Vladimir Oltean <olteanv@gmail.com>
12268 L:      netdev@vger.kernel.org
12269 S:      Supported
12270 F:      lib/packing.c
12271 F:      include/linux/packing.h
12272 F:      Documentation/core-api/packing.rst
12273
12274 PADATA PARALLEL EXECUTION MECHANISM
12275 M:      Steffen Klassert <steffen.klassert@secunet.com>
12276 L:      linux-crypto@vger.kernel.org
12277 S:      Maintained
12278 F:      kernel/padata.c
12279 F:      include/linux/padata.h
12280 F:      Documentation/padata.txt
12281
12282 PAGE POOL
12283 M:      Jesper Dangaard Brouer <hawk@kernel.org>
12284 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
12285 L:      netdev@vger.kernel.org
12286 S:      Supported
12287 F:      net/core/page_pool.c
12288 F:      include/net/page_pool.h
12289
12290 PANASONIC LAPTOP ACPI EXTRAS DRIVER
12291 M:      Harald Welte <laforge@gnumonks.org>
12292 L:      platform-driver-x86@vger.kernel.org
12293 S:      Maintained
12294 F:      drivers/platform/x86/panasonic-laptop.c
12295
12296 PARALLEL LCD/KEYPAD PANEL DRIVER
12297 M:      Willy Tarreau <willy@haproxy.com>
12298 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
12299 S:      Odd Fixes
12300 F:      Documentation/admin-guide/lcd-panel-cgram.rst
12301 F:      drivers/auxdisplay/panel.c
12302
12303 PARALLEL PORT SUBSYSTEM
12304 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12305 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12306 L:      linux-parport@lists.infradead.org (subscribers-only)
12307 S:      Maintained
12308 F:      drivers/parport/
12309 F:      include/linux/parport*.h
12310 F:      drivers/char/ppdev.c
12311 F:      include/uapi/linux/ppdev.h
12312 F:      Documentation/driver-api/parport*.rst
12313
12314 PARAVIRT_OPS INTERFACE
12315 M:      Juergen Gross <jgross@suse.com>
12316 M:      Thomas Hellstrom <thellstrom@vmware.com>
12317 M:      "VMware, Inc." <pv-drivers@vmware.com>
12318 L:      virtualization@lists.linux-foundation.org
12319 S:      Supported
12320 F:      Documentation/virt/paravirt_ops.rst
12321 F:      arch/*/kernel/paravirt*
12322 F:      arch/*/include/asm/paravirt*.h
12323 F:      include/linux/hypervisor.h
12324
12325 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
12326 M:      Tim Waugh <tim@cyberelk.net>
12327 L:      linux-parport@lists.infradead.org (subscribers-only)
12328 S:      Maintained
12329 F:      Documentation/admin-guide/blockdev/paride.rst
12330 F:      drivers/block/paride/
12331
12332 PARISC ARCHITECTURE
12333 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
12334 M:      Helge Deller <deller@gmx.de>
12335 L:      linux-parisc@vger.kernel.org
12336 W:      http://www.parisc-linux.org/
12337 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
12338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
12339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
12340 S:      Maintained
12341 F:      arch/parisc/
12342 F:      Documentation/parisc/
12343 F:      drivers/parisc/
12344 F:      drivers/char/agp/parisc-agp.c
12345 F:      drivers/input/misc/hp_sdc_rtc.c
12346 F:      drivers/input/serio/gscps2.c
12347 F:      drivers/input/serio/hp_sdc*
12348 F:      drivers/parport/parport_gsc.*
12349 F:      drivers/tty/serial/8250/8250_gsc.c
12350 F:      drivers/video/fbdev/sti*
12351 F:      drivers/video/console/sti*
12352 F:      drivers/video/logo/logo_parisc*
12353 F:      include/linux/hp_sdc.h
12354
12355 PARMAN
12356 M:      Jiri Pirko <jiri@mellanox.com>
12357 L:      netdev@vger.kernel.org
12358 S:      Supported
12359 F:      lib/parman.c
12360 F:      lib/test_parman.c
12361 F:      include/linux/parman.h
12362
12363 PC ENGINES APU BOARD DRIVER
12364 M:      Enrico Weigelt, metux IT consult <info@metux.net>
12365 S:      Maintained
12366 F:      drivers/platform/x86/pcengines-apuv2.c
12367
12368 PC87360 HARDWARE MONITORING DRIVER
12369 M:      Jim Cromie <jim.cromie@gmail.com>
12370 L:      linux-hwmon@vger.kernel.org
12371 S:      Maintained
12372 F:      Documentation/hwmon/pc87360.rst
12373 F:      drivers/hwmon/pc87360.c
12374
12375 PC8736x GPIO DRIVER
12376 M:      Jim Cromie <jim.cromie@gmail.com>
12377 S:      Maintained
12378 F:      drivers/char/pc8736x_gpio.c
12379
12380 PC87427 HARDWARE MONITORING DRIVER
12381 M:      Jean Delvare <jdelvare@suse.com>
12382 L:      linux-hwmon@vger.kernel.org
12383 S:      Maintained
12384 F:      Documentation/hwmon/pc87427.rst
12385 F:      drivers/hwmon/pc87427.c
12386
12387 PCA9532 LED DRIVER
12388 M:      Riku Voipio <riku.voipio@iki.fi>
12389 S:      Maintained
12390 F:      drivers/leds/leds-pca9532.c
12391 F:      include/linux/leds-pca9532.h
12392
12393 PCA9541 I2C BUS MASTER SELECTOR DRIVER
12394 M:      Guenter Roeck <linux@roeck-us.net>
12395 L:      linux-i2c@vger.kernel.org
12396 S:      Maintained
12397 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
12398
12399 PCDP - PRIMARY CONSOLE AND DEBUG PORT
12400 M:      Khalid Aziz <khalid@gonehiking.org>
12401 S:      Maintained
12402 F:      drivers/firmware/pcdp.*
12403
12404 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
12405 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12406 L:      linux-pci@vger.kernel.org
12407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12408 S:      Maintained
12409 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
12410 F:      drivers/pci/controller/pci-aardvark.c
12411
12412 PCI DRIVER FOR ALTERA PCIE IP
12413 M:      Ley Foon Tan <lftan@altera.com>
12414 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12415 L:      linux-pci@vger.kernel.org
12416 S:      Supported
12417 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
12418 F:      drivers/pci/controller/pcie-altera.c
12419
12420 PCI DRIVER FOR APPLIEDMICRO XGENE
12421 M:      Toan Le <toan@os.amperecomputing.com>
12422 L:      linux-pci@vger.kernel.org
12423 L:      linux-arm-kernel@lists.infradead.org
12424 S:      Maintained
12425 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
12426 F:      drivers/pci/controller/pci-xgene.c
12427
12428 PCI DRIVER FOR ARM VERSATILE PLATFORM
12429 M:      Rob Herring <robh@kernel.org>
12430 L:      linux-pci@vger.kernel.org
12431 L:      linux-arm-kernel@lists.infradead.org
12432 S:      Maintained
12433 F:      Documentation/devicetree/bindings/pci/versatile.txt
12434 F:      drivers/pci/controller/pci-versatile.c
12435
12436 PCI DRIVER FOR ARMADA 8K
12437 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12438 L:      linux-pci@vger.kernel.org
12439 L:      linux-arm-kernel@lists.infradead.org
12440 S:      Maintained
12441 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
12442 F:      drivers/pci/controller/dwc/pcie-armada8k.c
12443
12444 PCI DRIVER FOR CADENCE PCIE IP
12445 M:      Tom Joseph <tjoseph@cadence.com>
12446 L:      linux-pci@vger.kernel.org
12447 S:      Maintained
12448 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
12449 F:      drivers/pci/controller/pcie-cadence*
12450
12451 PCI DRIVER FOR FREESCALE LAYERSCAPE
12452 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12453 M:      Mingkai Hu <mingkai.hu@nxp.com>
12454 M:      Roy Zang <roy.zang@nxp.com>
12455 L:      linuxppc-dev@lists.ozlabs.org
12456 L:      linux-pci@vger.kernel.org
12457 L:      linux-arm-kernel@lists.infradead.org
12458 S:      Maintained
12459 F:      drivers/pci/controller/dwc/*layerscape*
12460
12461 PCI DRIVER FOR GENERIC OF HOSTS
12462 M:      Will Deacon <will@kernel.org>
12463 L:      linux-pci@vger.kernel.org
12464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12465 S:      Maintained
12466 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12467 F:      drivers/pci/controller/pci-host-common.c
12468 F:      drivers/pci/controller/pci-host-generic.c
12469
12470 PCI DRIVER FOR IMX6
12471 M:      Richard Zhu <hongxing.zhu@nxp.com>
12472 M:      Lucas Stach <l.stach@pengutronix.de>
12473 L:      linux-pci@vger.kernel.org
12474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12475 S:      Maintained
12476 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12477 F:      drivers/pci/controller/dwc/*imx6*
12478
12479 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12480 M:      Keith Busch <keith.busch@intel.com>
12481 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12482 L:      linux-pci@vger.kernel.org
12483 S:      Supported
12484 F:      drivers/pci/controller/vmd.c
12485
12486 PCI DRIVER FOR MICROSEMI SWITCHTEC
12487 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12488 M:      Logan Gunthorpe <logang@deltatee.com>
12489 L:      linux-pci@vger.kernel.org
12490 S:      Maintained
12491 F:      Documentation/driver-api/switchtec.rst
12492 F:      Documentation/ABI/testing/sysfs-class-switchtec
12493 F:      drivers/pci/switch/switchtec*
12494 F:      include/uapi/linux/switchtec_ioctl.h
12495 F:      include/linux/switchtec.h
12496 F:      drivers/ntb/hw/mscc/
12497
12498 PCI DRIVER FOR MOBIVEIL PCIE IP
12499 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12500 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12501 L:      linux-pci@vger.kernel.org
12502 S:      Supported
12503 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12504 F:      drivers/pci/controller/pcie-mobiveil.c
12505
12506 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12507 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12508 M:      Jason Cooper <jason@lakedaemon.net>
12509 L:      linux-pci@vger.kernel.org
12510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12511 S:      Maintained
12512 F:      drivers/pci/controller/*mvebu*
12513
12514 PCI DRIVER FOR NVIDIA TEGRA
12515 M:      Thierry Reding <thierry.reding@gmail.com>
12516 L:      linux-tegra@vger.kernel.org
12517 L:      linux-pci@vger.kernel.org
12518 S:      Supported
12519 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12520 F:      drivers/pci/controller/pci-tegra.c
12521
12522 PCI DRIVER FOR RENESAS R-CAR
12523 M:      Simon Horman <horms@verge.net.au>
12524 L:      linux-pci@vger.kernel.org
12525 L:      linux-renesas-soc@vger.kernel.org
12526 S:      Maintained
12527 F:      drivers/pci/controller/*rcar*
12528
12529 PCI DRIVER FOR SAMSUNG EXYNOS
12530 M:      Jingoo Han <jingoohan1@gmail.com>
12531 L:      linux-pci@vger.kernel.org
12532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12533 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12534 S:      Maintained
12535 F:      drivers/pci/controller/dwc/pci-exynos.c
12536
12537 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12538 M:      Jingoo Han <jingoohan1@gmail.com>
12539 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12540 L:      linux-pci@vger.kernel.org
12541 S:      Maintained
12542 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12543 F:      drivers/pci/controller/dwc/*designware*
12544
12545 PCI DRIVER FOR TI DRA7XX
12546 M:      Kishon Vijay Abraham I <kishon@ti.com>
12547 L:      linux-omap@vger.kernel.org
12548 L:      linux-pci@vger.kernel.org
12549 S:      Supported
12550 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12551 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12552
12553 PCI DRIVER FOR TI KEYSTONE
12554 M:      Murali Karicheri <m-karicheri2@ti.com>
12555 L:      linux-pci@vger.kernel.org
12556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12557 S:      Maintained
12558 F:      drivers/pci/controller/dwc/pci-keystone.c
12559
12560 PCI ENDPOINT SUBSYSTEM
12561 M:      Kishon Vijay Abraham I <kishon@ti.com>
12562 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12563 L:      linux-pci@vger.kernel.org
12564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12565 S:      Supported
12566 F:      drivers/pci/endpoint/
12567 F:      drivers/misc/pci_endpoint_test.c
12568 F:      tools/pci/
12569
12570 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12571 M:      Russell Currey <ruscur@russell.cc>
12572 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12573 M:      Oliver O'Halloran <oohall@gmail.com>
12574 L:      linuxppc-dev@lists.ozlabs.org
12575 S:      Supported
12576 F:      Documentation/PCI/pci-error-recovery.rst
12577 F:      drivers/pci/pcie/aer.c
12578 F:      drivers/pci/pcie/dpc.c
12579 F:      drivers/pci/pcie/err.c
12580 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
12581 F:      arch/powerpc/kernel/eeh*.c
12582 F:      arch/powerpc/platforms/*/eeh*.c
12583 F:      arch/powerpc/include/*/eeh*.h
12584
12585 PCI ERROR RECOVERY
12586 M:      Linas Vepstas <linasvepstas@gmail.com>
12587 L:      linux-pci@vger.kernel.org
12588 S:      Supported
12589 F:      Documentation/PCI/pci-error-recovery.rst
12590
12591 PCI MSI DRIVER FOR ALTERA MSI IP
12592 M:      Ley Foon Tan <lftan@altera.com>
12593 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12594 L:      linux-pci@vger.kernel.org
12595 S:      Supported
12596 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12597 F:      drivers/pci/controller/pcie-altera-msi.c
12598
12599 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12600 M:      Toan Le <toan@os.amperecomputing.com>
12601 L:      linux-pci@vger.kernel.org
12602 L:      linux-arm-kernel@lists.infradead.org
12603 S:      Maintained
12604 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12605 F:      drivers/pci/controller/pci-xgene-msi.c
12606
12607 PCI SUBSYSTEM
12608 M:      Bjorn Helgaas <bhelgaas@google.com>
12609 L:      linux-pci@vger.kernel.org
12610 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12612 S:      Supported
12613 F:      Documentation/devicetree/bindings/pci/
12614 F:      Documentation/PCI/
12615 F:      drivers/acpi/pci*
12616 F:      drivers/pci/
12617 F:      include/asm-generic/pci*
12618 F:      include/linux/pci*
12619 F:      include/linux/of_pci.h
12620 F:      include/uapi/linux/pci*
12621 F:      lib/pci*
12622 F:      arch/x86/pci/
12623 F:      arch/x86/kernel/quirks.c
12624 F:      arch/x86/kernel/early-quirks.c
12625
12626 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12627 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12628 R:      Andrew Murray <andrew.murray@arm.com>
12629 L:      linux-pci@vger.kernel.org
12630 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12632 S:      Supported
12633 F:      drivers/pci/controller/
12634
12635 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
12636 M:      Jonathan Chocron <jonnyc@amazon.com>
12637 L:      linux-pci@vger.kernel.org
12638 S:      Maintained
12639 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
12640 F:      drivers/pci/controller/dwc/pcie-al.c
12641
12642 PCIE DRIVER FOR AMLOGIC MESON
12643 M:      Yue Wang <yue.wang@Amlogic.com>
12644 L:      linux-pci@vger.kernel.org
12645 L:      linux-amlogic@lists.infradead.org
12646 S:      Maintained
12647 F:      drivers/pci/controller/dwc/pci-meson.c
12648
12649 PCIE DRIVER FOR AXIS ARTPEC
12650 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12651 L:      linux-arm-kernel@axis.com
12652 L:      linux-pci@vger.kernel.org
12653 S:      Maintained
12654 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12655 F:      drivers/pci/controller/dwc/*artpec*
12656
12657 PCIE DRIVER FOR CAVIUM THUNDERX
12658 M:      David Daney <david.daney@cavium.com>
12659 L:      linux-pci@vger.kernel.org
12660 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12661 S:      Supported
12662 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12663 F:      drivers/pci/controller/pci-thunder-*
12664
12665 PCIE DRIVER FOR HISILICON
12666 M:      Zhou Wang <wangzhou1@hisilicon.com>
12667 L:      linux-pci@vger.kernel.org
12668 S:      Maintained
12669 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12670 F:      drivers/pci/controller/dwc/pcie-hisi.c
12671
12672 PCIE DRIVER FOR HISILICON KIRIN
12673 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12674 M:      Binghui Wang <wangbinghui@hisilicon.com>
12675 L:      linux-pci@vger.kernel.org
12676 S:      Maintained
12677 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12678 F:      drivers/pci/controller/dwc/pcie-kirin.c
12679
12680 PCIE DRIVER FOR HISILICON STB
12681 M:      Shawn Guo <shawn.guo@linaro.org>
12682 L:      linux-pci@vger.kernel.org
12683 S:      Maintained
12684 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12685 F:      drivers/pci/controller/dwc/pcie-histb.c
12686
12687 PCIE DRIVER FOR MEDIATEK
12688 M:      Ryder Lee <ryder.lee@mediatek.com>
12689 L:      linux-pci@vger.kernel.org
12690 L:      linux-mediatek@lists.infradead.org
12691 S:      Supported
12692 F:      Documentation/devicetree/bindings/pci/mediatek*
12693 F:      drivers/pci/controller/*mediatek*
12694
12695 PCIE DRIVER FOR QUALCOMM MSM
12696 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12697 L:      linux-pci@vger.kernel.org
12698 L:      linux-arm-msm@vger.kernel.org
12699 S:      Maintained
12700 F:      drivers/pci/controller/dwc/*qcom*
12701
12702 PCIE DRIVER FOR ROCKCHIP
12703 M:      Shawn Lin <shawn.lin@rock-chips.com>
12704 L:      linux-pci@vger.kernel.org
12705 L:      linux-rockchip@lists.infradead.org
12706 S:      Maintained
12707 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12708 F:      drivers/pci/controller/pcie-rockchip*
12709
12710 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12711 M:      Linus Walleij <linus.walleij@linaro.org>
12712 L:      linux-pci@vger.kernel.org
12713 S:      Maintained
12714 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12715 F:      drivers/pci/controller/pci-v3-semi.c
12716
12717 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12718 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12719 L:      linux-pci@vger.kernel.org
12720 S:      Maintained
12721 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12722 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12723
12724 PCIE DRIVER FOR ST SPEAR13XX
12725 M:      Pratyush Anand <pratyush.anand@gmail.com>
12726 L:      linux-pci@vger.kernel.org
12727 S:      Maintained
12728 F:      drivers/pci/controller/dwc/*spear*
12729
12730 PCMCIA SUBSYSTEM
12731 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12733 S:      Odd Fixes
12734 F:      Documentation/pcmcia/
12735 F:      tools/pcmcia/
12736 F:      drivers/pcmcia/
12737 F:      include/pcmcia/
12738
12739 PCNET32 NETWORK DRIVER
12740 M:      Don Fry <pcnet32@frontier.com>
12741 L:      netdev@vger.kernel.org
12742 S:      Maintained
12743 F:      drivers/net/ethernet/amd/pcnet32.c
12744
12745 PCRYPT PARALLEL CRYPTO ENGINE
12746 M:      Steffen Klassert <steffen.klassert@secunet.com>
12747 L:      linux-crypto@vger.kernel.org
12748 S:      Maintained
12749 F:      crypto/pcrypt.c
12750 F:      include/crypto/pcrypt.h
12751
12752 PEAQ WMI HOTKEYS DRIVER
12753 M:      Hans de Goede <hdegoede@redhat.com>
12754 L:      platform-driver-x86@vger.kernel.org
12755 S:      Maintained
12756 F:      drivers/platform/x86/peaq-wmi.c
12757
12758 PENSANDO ETHERNET DRIVERS
12759 M:      Shannon Nelson <snelson@pensando.io>
12760 M:      Pensando Drivers <drivers@pensando.io>
12761 L:      netdev@vger.kernel.org
12762 S:      Supported
12763 F:      Documentation/networking/device_drivers/pensando/ionic.rst
12764 F:      drivers/net/ethernet/pensando/
12765
12766 PER-CPU MEMORY ALLOCATOR
12767 M:      Dennis Zhou <dennis@kernel.org>
12768 M:      Tejun Heo <tj@kernel.org>
12769 M:      Christoph Lameter <cl@linux.com>
12770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12771 S:      Maintained
12772 F:      include/linux/percpu*.h
12773 F:      mm/percpu*.c
12774 F:      arch/*/include/asm/percpu.h
12775
12776 PER-TASK DELAY ACCOUNTING
12777 M:      Balbir Singh <bsingharora@gmail.com>
12778 S:      Maintained
12779 F:      include/linux/delayacct.h
12780 F:      kernel/delayacct.c
12781
12782 PERFORMANCE EVENTS SUBSYSTEM
12783 M:      Peter Zijlstra <peterz@infradead.org>
12784 M:      Ingo Molnar <mingo@redhat.com>
12785 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12786 R:      Mark Rutland <mark.rutland@arm.com>
12787 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12788 R:      Jiri Olsa <jolsa@redhat.com>
12789 R:      Namhyung Kim <namhyung@kernel.org>
12790 L:      linux-kernel@vger.kernel.org
12791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12792 S:      Supported
12793 F:      kernel/events/*
12794 F:      include/linux/perf_event.h
12795 F:      include/uapi/linux/perf_event.h
12796 F:      arch/*/kernel/perf_event*.c
12797 F:      arch/*/kernel/*/perf_event*.c
12798 F:      arch/*/kernel/*/*/perf_event*.c
12799 F:      arch/*/include/asm/perf_event.h
12800 F:      arch/*/kernel/perf_callchain.c
12801 F:      arch/*/events/*
12802 F:      arch/*/events/*/*
12803 F:      tools/perf/
12804
12805 PERSONALITY HANDLING
12806 M:      Christoph Hellwig <hch@infradead.org>
12807 L:      linux-abi-devel@lists.sourceforge.net
12808 S:      Maintained
12809 F:      include/linux/personality.h
12810 F:      include/uapi/linux/personality.h
12811
12812 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12813 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12814 L:      linux-input@vger.kernel.org
12815 S:      Maintained
12816 F:      Documentation/input/devices/pxrc.rst
12817 F:      drivers/input/joystick/pxrc.c
12818
12819 FLYSKY FSIA6B RC RECEIVER
12820 M:      Markus Koch <markus@notsyncing.net>
12821 L:      linux-input@vger.kernel.org
12822 S:      Maintained
12823 F:      drivers/input/joystick/fsia6b.c
12824
12825 PHONET PROTOCOL
12826 M:      Remi Denis-Courmont <courmisch@gmail.com>
12827 S:      Supported
12828 F:      Documentation/networking/phonet.txt
12829 F:      include/linux/phonet.h
12830 F:      include/net/phonet/
12831 F:      include/uapi/linux/phonet.h
12832 F:      net/phonet/
12833
12834 PHRAM MTD DRIVER
12835 M:      Joern Engel <joern@lazybastard.org>
12836 L:      linux-mtd@lists.infradead.org
12837 S:      Maintained
12838 F:      drivers/mtd/devices/phram.c
12839
12840 PICOLCD HID DRIVER
12841 M:      Bruno Prémont <bonbons@linux-vserver.org>
12842 L:      linux-input@vger.kernel.org
12843 S:      Maintained
12844 F:      drivers/hid/hid-picolcd*
12845
12846 PICOXCELL SUPPORT
12847 M:      Jamie Iles <jamie@jamieiles.com>
12848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12849 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12850 S:      Supported
12851 F:      arch/arm/boot/dts/picoxcell*
12852 F:      arch/arm/mach-picoxcell/
12853 F:      drivers/crypto/picoxcell*
12854
12855 PIDFD API
12856 M:      Christian Brauner <christian@brauner.io>
12857 L:      linux-kernel@vger.kernel.org
12858 S:      Maintained
12859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
12860 F:      samples/pidfd/
12861 F:      tools/testing/selftests/pidfd/
12862 K:      (?i)pidfd
12863 K:      (?i)clone3
12864 K:      \b(clone_args|kernel_clone_args)\b
12865
12866 PIN CONTROL SUBSYSTEM
12867 M:      Linus Walleij <linus.walleij@linaro.org>
12868 L:      linux-gpio@vger.kernel.org
12869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12870 S:      Maintained
12871 F:      Documentation/devicetree/bindings/pinctrl/
12872 F:      Documentation/driver-api/pinctl.rst
12873 F:      drivers/pinctrl/
12874 F:      include/linux/pinctrl/
12875
12876 PIN CONTROLLER - MICROCHIP AT91
12877 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12879 L:      linux-gpio@vger.kernel.org
12880 S:      Supported
12881 F:      drivers/pinctrl/pinctrl-at91*
12882 F:      drivers/gpio/gpio-sama5d2-piobu.c
12883
12884 PIN CONTROLLER - FREESCALE
12885 M:      Dong Aisheng <aisheng.dong@nxp.com>
12886 M:      Fabio Estevam <festevam@gmail.com>
12887 M:      Shawn Guo <shawnguo@kernel.org>
12888 M:      Stefan Agner <stefan@agner.ch>
12889 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12890 L:      linux-gpio@vger.kernel.org
12891 S:      Maintained
12892 F:      drivers/pinctrl/freescale/
12893 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12894
12895 PIN CONTROLLER - INTEL
12896 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12897 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12899 S:      Maintained
12900 F:      drivers/pinctrl/intel/
12901
12902 PIN CONTROLLER - MEDIATEK
12903 M:      Sean Wang <sean.wang@kernel.org>
12904 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12905 S:      Maintained
12906 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12907 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12908 F:      drivers/pinctrl/mediatek/
12909
12910 PIN CONTROLLER - QUALCOMM
12911 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12912 S:      Maintained
12913 L:      linux-arm-msm@vger.kernel.org
12914 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12915 F:      drivers/pinctrl/qcom/
12916
12917 PIN CONTROLLER - RENESAS
12918 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12919 L:      linux-renesas-soc@vger.kernel.org
12920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12921 S:      Maintained
12922 F:      drivers/pinctrl/pinctrl-rz*
12923 F:      drivers/pinctrl/sh-pfc/
12924
12925 PIN CONTROLLER - SAMSUNG
12926 M:      Tomasz Figa <tomasz.figa@gmail.com>
12927 M:      Krzysztof Kozlowski <krzk@kernel.org>
12928 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12930 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12931 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12933 S:      Maintained
12934 F:      drivers/pinctrl/samsung/
12935 F:      include/dt-bindings/pinctrl/samsung.h
12936 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12937
12938 PIN CONTROLLER - SINGLE
12939 M:      Tony Lindgren <tony@atomide.com>
12940 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12942 L:      linux-omap@vger.kernel.org
12943 S:      Maintained
12944 F:      drivers/pinctrl/pinctrl-single.c
12945
12946 PIN CONTROLLER - ST SPEAR
12947 M:      Viresh Kumar <vireshk@kernel.org>
12948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12949 W:      http://www.st.com/spear
12950 S:      Maintained
12951 F:      drivers/pinctrl/spear/
12952
12953 PISTACHIO SOC SUPPORT
12954 M:      James Hartley <james.hartley@sondrel.com>
12955 L:      linux-mips@vger.kernel.org
12956 S:      Odd Fixes
12957 F:      arch/mips/pistachio/
12958 F:      arch/mips/include/asm/mach-pistachio/
12959 F:      arch/mips/boot/dts/img/pistachio*
12960 F:      arch/mips/configs/pistachio*_defconfig
12961
12962 PKTCDVD DRIVER
12963 S:      Orphan
12964 M:      linux-block@vger.kernel.org
12965 F:      drivers/block/pktcdvd.c
12966 F:      include/linux/pktcdvd.h
12967 F:      include/uapi/linux/pktcdvd.h
12968
12969 PKUNITY SOC DRIVERS
12970 M:      Guan Xuetao <gxt@pku.edu.cn>
12971 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12972 S:      Maintained
12973 T:      git git://github.com/gxt/linux.git
12974 F:      drivers/input/serio/i8042-unicore32io.h
12975 F:      drivers/i2c/busses/i2c-puv3.c
12976 F:      drivers/video/fbdev/fb-puv3.c
12977 F:      drivers/rtc/rtc-puv3.c
12978
12979 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
12980 M:      Tomasz Duszynski <tduszyns@gmail.com>
12981 S:      Maintained
12982 F:      drivers/iio/chemical/pms7003.c
12983 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
12984
12985 PMBUS HARDWARE MONITORING DRIVERS
12986 M:      Guenter Roeck <linux@roeck-us.net>
12987 L:      linux-hwmon@vger.kernel.org
12988 W:      http://hwmon.wiki.kernel.org/
12989 W:      http://www.roeck-us.net/linux/drivers/
12990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12991 S:      Maintained
12992 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12993 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12994 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12995 F:      Documentation/hwmon/adm1275.rst
12996 F:      Documentation/hwmon/ibm-cffps.rst
12997 F:      Documentation/hwmon/ir35221.rst
12998 F:      Documentation/hwmon/lm25066.rst
12999 F:      Documentation/hwmon/ltc2978.rst
13000 F:      Documentation/hwmon/ltc3815.rst
13001 F:      Documentation/hwmon/max16064.rst
13002 F:      Documentation/hwmon/max20751.rst
13003 F:      Documentation/hwmon/max31785.rst
13004 F:      Documentation/hwmon/max34440.rst
13005 F:      Documentation/hwmon/max8688.rst
13006 F:      Documentation/hwmon/pmbus.rst
13007 F:      Documentation/hwmon/pmbus-core.rst
13008 F:      Documentation/hwmon/tps40422.rst
13009 F:      Documentation/hwmon/ucd9000.rst
13010 F:      Documentation/hwmon/ucd9200.rst
13011 F:      Documentation/hwmon/zl6100.rst
13012 F:      drivers/hwmon/pmbus/
13013 F:      include/linux/pmbus.h
13014
13015 PMC SIERRA MaxRAID DRIVER
13016 L:      linux-scsi@vger.kernel.org
13017 W:      http://www.pmc-sierra.com/
13018 S:      Orphan
13019 F:      drivers/scsi/pmcraid.*
13020
13021 PMC SIERRA PM8001 DRIVER
13022 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
13023 L:      linux-scsi@vger.kernel.org
13024 S:      Supported
13025 F:      drivers/scsi/pm8001/
13026
13027 PNP SUPPORT
13028 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
13029 S:      Maintained
13030 F:      drivers/pnp/
13031
13032 PNI RM3100 IIO DRIVER
13033 M:      Song Qiang <songqiang1304521@gmail.com>
13034 L:      linux-iio@vger.kernel.org
13035 S:      Maintained
13036 F:      drivers/iio/magnetometer/rm3100*
13037 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
13038
13039 POSIX CLOCKS and TIMERS
13040 M:      Thomas Gleixner <tglx@linutronix.de>
13041 L:      linux-kernel@vger.kernel.org
13042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13043 S:      Maintained
13044 F:      fs/timerfd.c
13045 F:      include/linux/timer*
13046 F:      kernel/time/*timer*
13047
13048 POWER MANAGEMENT CORE
13049 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13050 L:      linux-pm@vger.kernel.org
13051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
13052 B:      https://bugzilla.kernel.org
13053 S:      Supported
13054 F:      drivers/base/power/
13055 F:      include/linux/pm.h
13056 F:      include/linux/pm_*
13057 F:      include/linux/powercap.h
13058 F:      include/linux/intel_rapl.h
13059 F:      drivers/powercap/
13060 F:      kernel/configs/nopm.config
13061
13062 POWER STATE COORDINATION INTERFACE (PSCI)
13063 M:      Mark Rutland <mark.rutland@arm.com>
13064 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
13065 L:      linux-arm-kernel@lists.infradead.org
13066 S:      Maintained
13067 F:      drivers/firmware/psci/
13068 F:      include/linux/psci.h
13069 F:      include/uapi/linux/psci.h
13070
13071 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
13072 M:      Sebastian Reichel <sre@kernel.org>
13073 L:      linux-pm@vger.kernel.org
13074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13075 S:      Maintained
13076 F:      Documentation/ABI/testing/sysfs-class-power
13077 F:      Documentation/devicetree/bindings/power/supply/
13078 F:      include/linux/power_supply.h
13079 F:      drivers/power/supply/
13080
13081 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
13082 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
13083 L:      linuxppc-dev@lists.ozlabs.org
13084 S:      Maintained
13085 F:      drivers/char/powernv-op-panel.c
13086
13087 PPP OVER ATM (RFC 2364)
13088 M:      Mitchell Blank Jr <mitch@sfgoth.com>
13089 S:      Maintained
13090 F:      net/atm/pppoatm.c
13091 F:      include/uapi/linux/atmppp.h
13092
13093 PPP OVER ETHERNET
13094 M:      Michal Ostrowski <mostrows@earthlink.net>
13095 S:      Maintained
13096 F:      drivers/net/ppp/pppoe.c
13097 F:      drivers/net/ppp/pppox.c
13098
13099 PPP OVER L2TP
13100 M:      James Chapman <jchapman@katalix.com>
13101 S:      Maintained
13102 F:      net/l2tp/l2tp_ppp.c
13103 F:      include/linux/if_pppol2tp.h
13104 F:      include/uapi/linux/if_pppol2tp.h
13105
13106 PPP PROTOCOL DRIVERS AND COMPRESSORS
13107 M:      Paul Mackerras <paulus@samba.org>
13108 L:      linux-ppp@vger.kernel.org
13109 S:      Maintained
13110 F:      drivers/net/ppp/ppp_*
13111
13112 PPS SUPPORT
13113 M:      Rodolfo Giometti <giometti@enneenne.com>
13114 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
13115 L:      linuxpps@ml.enneenne.com (subscribers-only)
13116 S:      Maintained
13117 F:      Documentation/driver-api/pps.rst
13118 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
13119 F:      Documentation/ABI/testing/sysfs-pps
13120 F:      drivers/pps/
13121 F:      include/linux/pps*.h
13122 F:      include/uapi/linux/pps.h
13123
13124 PPTP DRIVER
13125 M:      Dmitry Kozlov <xeb@mail.ru>
13126 L:      netdev@vger.kernel.org
13127 S:      Maintained
13128 F:      drivers/net/ppp/pptp.c
13129 W:      http://sourceforge.net/projects/accel-pptp
13130
13131 PRINTK
13132 M:      Petr Mladek <pmladek@suse.com>
13133 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
13134 R:      Steven Rostedt <rostedt@goodmis.org>
13135 S:      Maintained
13136 F:      kernel/printk/
13137 F:      include/linux/printk.h
13138
13139 PRISM54 WIRELESS DRIVER
13140 M:      Luis Chamberlain <mcgrof@kernel.org>
13141 L:      linux-wireless@vger.kernel.org
13142 W:      http://wireless.kernel.org/en/users/Drivers/p54
13143 S:      Obsolete
13144 F:      drivers/net/wireless/intersil/prism54/
13145
13146 PROC FILESYSTEM
13147 R:      Alexey Dobriyan <adobriyan@gmail.com>
13148 L:      linux-kernel@vger.kernel.org
13149 L:      linux-fsdevel@vger.kernel.org
13150 S:      Maintained
13151 F:      fs/proc/
13152 F:      include/linux/proc_fs.h
13153 F:      tools/testing/selftests/proc/
13154 F:      Documentation/filesystems/proc.txt
13155
13156 PROC SYSCTL
13157 M:      Luis Chamberlain <mcgrof@kernel.org>
13158 M:      Kees Cook <keescook@chromium.org>
13159 L:      linux-kernel@vger.kernel.org
13160 L:      linux-fsdevel@vger.kernel.org
13161 S:      Maintained
13162 F:      fs/proc/proc_sysctl.c
13163 F:      include/linux/sysctl.h
13164 F:      kernel/sysctl.c
13165 F:      tools/testing/selftests/sysctl/
13166
13167 PS3 NETWORK SUPPORT
13168 M:      Geoff Levand <geoff@infradead.org>
13169 L:      netdev@vger.kernel.org
13170 L:      linuxppc-dev@lists.ozlabs.org
13171 S:      Maintained
13172 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
13173
13174 PS3 PLATFORM SUPPORT
13175 M:      Geoff Levand <geoff@infradead.org>
13176 L:      linuxppc-dev@lists.ozlabs.org
13177 S:      Maintained
13178 F:      arch/powerpc/boot/ps3*
13179 F:      arch/powerpc/include/asm/lv1call.h
13180 F:      arch/powerpc/include/asm/ps3*.h
13181 F:      arch/powerpc/platforms/ps3/
13182 F:      drivers/*/ps3*
13183 F:      drivers/ps3/
13184 F:      drivers/rtc/rtc-ps3.c
13185 F:      drivers/usb/host/*ps3.c
13186 F:      sound/ppc/snd_ps3*
13187
13188 PS3VRAM DRIVER
13189 M:      Jim Paris <jim@jtan.com>
13190 M:      Geoff Levand <geoff@infradead.org>
13191 L:      linuxppc-dev@lists.ozlabs.org
13192 S:      Maintained
13193 F:      drivers/block/ps3vram.c
13194
13195 PSAMPLE PACKET SAMPLING SUPPORT:
13196 M:      Yotam Gigi <yotam.gi@gmail.com>
13197 S:      Maintained
13198 F:      net/psample
13199 F:      include/net/psample.h
13200 F:      include/uapi/linux/psample.h
13201
13202 PSTORE FILESYSTEM
13203 M:      Kees Cook <keescook@chromium.org>
13204 M:      Anton Vorontsov <anton@enomsg.org>
13205 M:      Colin Cross <ccross@android.com>
13206 M:      Tony Luck <tony.luck@intel.com>
13207 S:      Maintained
13208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
13209 F:      fs/pstore/
13210 F:      include/linux/pstore*
13211 F:      drivers/firmware/efi/efi-pstore.c
13212 F:      drivers/acpi/apei/erst.c
13213 F:      Documentation/admin-guide/ramoops.rst
13214 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
13215 K:      \b(pstore|ramoops)
13216
13217 PTP HARDWARE CLOCK SUPPORT
13218 M:      Richard Cochran <richardcochran@gmail.com>
13219 L:      netdev@vger.kernel.org
13220 S:      Maintained
13221 W:      http://linuxptp.sourceforge.net/
13222 F:      Documentation/ABI/testing/sysfs-ptp
13223 F:      Documentation/driver-api/ptp.rst
13224 F:      drivers/net/phy/dp83640*
13225 F:      drivers/ptp/*
13226 F:      include/linux/ptp_cl*
13227
13228 PTRACE SUPPORT
13229 M:      Oleg Nesterov <oleg@redhat.com>
13230 S:      Maintained
13231 F:      include/asm-generic/syscall.h
13232 F:      include/linux/ptrace.h
13233 F:      include/linux/regset.h
13234 F:      include/linux/tracehook.h
13235 F:      include/uapi/linux/ptrace.h
13236 F:      include/uapi/linux/ptrace.h
13237 F:      kernel/ptrace.c
13238 F:      arch/*/ptrace*.c
13239 F:      arch/*/*/ptrace*.c
13240 F:      arch/*/include/asm/ptrace*.h
13241
13242 PULSE8-CEC DRIVER
13243 M:      Hans Verkuil <hverkuil@xs4all.nl>
13244 L:      linux-media@vger.kernel.org
13245 T:      git git://linuxtv.org/media_tree.git
13246 S:      Maintained
13247 F:      drivers/media/usb/pulse8-cec/*
13248 F:      Documentation/media/cec-drivers/pulse8-cec.rst
13249
13250 PVRUSB2 VIDEO4LINUX DRIVER
13251 M:      Mike Isely <isely@pobox.com>
13252 L:      pvrusb2@isely.net       (subscribers-only)
13253 L:      linux-media@vger.kernel.org
13254 W:      http://www.isely.net/pvrusb2/
13255 T:      git git://linuxtv.org/media_tree.git
13256 S:      Maintained
13257 F:      Documentation/media/v4l-drivers/pvrusb2*
13258 F:      drivers/media/usb/pvrusb2/
13259
13260 PWC WEBCAM DRIVER
13261 M:      Hans Verkuil <hverkuil@xs4all.nl>
13262 L:      linux-media@vger.kernel.org
13263 T:      git git://linuxtv.org/media_tree.git
13264 S:      Odd Fixes
13265 F:      drivers/media/usb/pwc/*
13266 F:      include/trace/events/pwc.h
13267
13268 PWM FAN DRIVER
13269 M:      Kamil Debski <kamil@wypas.org>
13270 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13271 L:      linux-hwmon@vger.kernel.org
13272 S:      Supported
13273 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
13274 F:      Documentation/hwmon/pwm-fan.rst
13275 F:      drivers/hwmon/pwm-fan.c
13276
13277 PWM IR Transmitter
13278 M:      Sean Young <sean@mess.org>
13279 L:      linux-media@vger.kernel.org
13280 S:      Maintained
13281 F:      drivers/media/rc/pwm-ir-tx.c
13282
13283 PWM SUBSYSTEM
13284 M:      Thierry Reding <thierry.reding@gmail.com>
13285 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
13286 L:      linux-pwm@vger.kernel.org
13287 S:      Maintained
13288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
13289 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
13290 F:      Documentation/driver-api/pwm.rst
13291 F:      Documentation/devicetree/bindings/pwm/
13292 F:      include/linux/pwm.h
13293 F:      drivers/pwm/
13294 F:      drivers/video/backlight/pwm_bl.c
13295 F:      include/linux/pwm_backlight.h
13296 F:      drivers/gpio/gpio-mvebu.c
13297 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
13298 K:      pwm_(config|apply_state|ops)
13299
13300 PXA GPIO DRIVER
13301 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13302 L:      linux-gpio@vger.kernel.org
13303 S:      Maintained
13304 F:      drivers/gpio/gpio-pxa.c
13305
13306 PXA MMCI DRIVER
13307 S:      Orphan
13308
13309 PXA RTC DRIVER
13310 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13311 L:      linux-rtc@vger.kernel.org
13312 S:      Maintained
13313
13314 PXA2xx/PXA3xx SUPPORT
13315 M:      Daniel Mack <daniel@zonque.org>
13316 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
13317 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13319 T:      git git://github.com/hzhuang1/linux.git
13320 T:      git git://github.com/rjarzmik/linux.git
13321 S:      Maintained
13322 F:      arch/arm/boot/dts/pxa*
13323 F:      arch/arm/mach-pxa/
13324 F:      drivers/dma/pxa*
13325 F:      drivers/pcmcia/pxa2xx*
13326 F:      drivers/pinctrl/pxa/
13327 F:      drivers/spi/spi-pxa2xx*
13328 F:      drivers/usb/gadget/udc/pxa2*
13329 F:      include/sound/pxa2xx-lib.h
13330 F:      sound/arm/pxa*
13331 F:      sound/soc/pxa/
13332
13333 QAT DRIVER
13334 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
13335 L:      qat-linux@intel.com
13336 S:      Supported
13337 F:      drivers/crypto/qat/
13338
13339 QCOM AUDIO (ASoC) DRIVERS
13340 M:      Patrick Lai <plai@codeaurora.org>
13341 M:      Banajit Goswami <bgoswami@codeaurora.org>
13342 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13343 S:      Supported
13344 F:      sound/soc/qcom/
13345
13346 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
13347 M:      Gabriel Somlo <somlo@cmu.edu>
13348 M:      "Michael S. Tsirkin" <mst@redhat.com>
13349 L:      qemu-devel@nongnu.org
13350 S:      Maintained
13351 F:      drivers/firmware/qemu_fw_cfg.c
13352 F:      include/uapi/linux/qemu_fw_cfg.h
13353
13354 QIB DRIVER
13355 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13356 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13357 L:      linux-rdma@vger.kernel.org
13358 S:      Supported
13359 F:      drivers/infiniband/hw/qib/
13360
13361 QLOGIC QL41xxx FCOE DRIVER
13362 M:      QLogic-Storage-Upstream@cavium.com
13363 L:      linux-scsi@vger.kernel.org
13364 S:      Supported
13365 F:      drivers/scsi/qedf/
13366
13367 QLOGIC QL41xxx ISCSI DRIVER
13368 M:      QLogic-Storage-Upstream@cavium.com
13369 L:      linux-scsi@vger.kernel.org
13370 S:      Supported
13371 F:      drivers/scsi/qedi/
13372
13373 QLOGIC QL4xxx ETHERNET DRIVER
13374 M:      Ariel Elior <aelior@marvell.com>
13375 M:      GR-everest-linux-l2@marvell.com
13376 L:      netdev@vger.kernel.org
13377 S:      Supported
13378 F:      drivers/net/ethernet/qlogic/qed/
13379 F:      include/linux/qed/
13380 F:      drivers/net/ethernet/qlogic/qede/
13381
13382 QLOGIC QL4xxx RDMA DRIVER
13383 M:      Michal Kalderon <mkalderon@marvell.com>
13384 M:      Ariel Elior <aelior@marvell.com>
13385 L:      linux-rdma@vger.kernel.org
13386 S:      Supported
13387 F:      drivers/infiniband/hw/qedr/
13388 F:      include/uapi/rdma/qedr-abi.h
13389
13390 QLOGIC QLA1280 SCSI DRIVER
13391 M:      Michael Reed <mdr@sgi.com>
13392 L:      linux-scsi@vger.kernel.org
13393 S:      Maintained
13394 F:      drivers/scsi/qla1280.[ch]
13395
13396 QLOGIC QLA2XXX FC-SCSI DRIVER
13397 M:      hmadhani@marvell.com
13398 L:      linux-scsi@vger.kernel.org
13399 S:      Supported
13400 F:      Documentation/scsi/LICENSE.qla2xxx
13401 F:      drivers/scsi/qla2xxx/
13402
13403 QLOGIC QLA3XXX NETWORK DRIVER
13404 M:      GR-Linux-NIC-Dev@marvell.com
13405 L:      netdev@vger.kernel.org
13406 S:      Supported
13407 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
13408 F:      drivers/net/ethernet/qlogic/qla3xxx.*
13409
13410 QLOGIC QLA4XXX iSCSI DRIVER
13411 M:      QLogic-Storage-Upstream@qlogic.com
13412 L:      linux-scsi@vger.kernel.org
13413 S:      Supported
13414 F:      Documentation/scsi/LICENSE.qla4xxx
13415 F:      drivers/scsi/qla4xxx/
13416
13417 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
13418 M:      Shahed Shaikh <shshaikh@marvell.com>
13419 M:      Manish Chopra <manishc@marvell.com>
13420 M:      GR-Linux-NIC-Dev@marvell.com
13421 L:      netdev@vger.kernel.org
13422 S:      Supported
13423 F:      drivers/net/ethernet/qlogic/qlcnic/
13424
13425 QLOGIC QLGE 10Gb ETHERNET DRIVER
13426 M:      Manish Chopra <manishc@marvell.com>
13427 M:      GR-Linux-NIC-Dev@marvell.com
13428 L:      netdev@vger.kernel.org
13429 S:      Supported
13430 F:      drivers/staging/qlge/
13431
13432 QM1D1B0004 MEDIA DRIVER
13433 M:      Akihiro Tsukada <tskd08@gmail.com>
13434 L:      linux-media@vger.kernel.org
13435 S:      Odd Fixes
13436 F:      drivers/media/tuners/qm1d1b0004*
13437
13438 QM1D1C0042 MEDIA DRIVER
13439 M:      Akihiro Tsukada <tskd08@gmail.com>
13440 L:      linux-media@vger.kernel.org
13441 S:      Odd Fixes
13442 F:      drivers/media/tuners/qm1d1c0042*
13443
13444 QNX4 FILESYSTEM
13445 M:      Anders Larsen <al@alarsen.net>
13446 W:      http://www.alarsen.net/linux/qnx4fs/
13447 S:      Maintained
13448 F:      fs/qnx4/
13449 F:      include/uapi/linux/qnx4_fs.h
13450 F:      include/uapi/linux/qnxtypes.h
13451
13452 QORIQ DPAA2 FSL-MC BUS DRIVER
13453 M:      Stuart Yoder <stuyoder@gmail.com>
13454 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
13455 L:      linux-kernel@vger.kernel.org
13456 S:      Maintained
13457 F:      drivers/bus/fsl-mc/
13458 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
13459 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
13460
13461 QT1010 MEDIA DRIVER
13462 M:      Antti Palosaari <crope@iki.fi>
13463 L:      linux-media@vger.kernel.org
13464 W:      https://linuxtv.org
13465 W:      http://palosaari.fi/linux/
13466 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13467 T:      git git://linuxtv.org/anttip/media_tree.git
13468 S:      Maintained
13469 F:      drivers/media/tuners/qt1010*
13470
13471 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
13472 M:      Kalle Valo <kvalo@codeaurora.org>
13473 L:      ath10k@lists.infradead.org
13474 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
13475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
13476 S:      Supported
13477 F:      drivers/net/wireless/ath/ath10k/
13478
13479 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
13480 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
13481 L:      linux-wireless@vger.kernel.org
13482 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
13483 S:      Supported
13484 F:      drivers/net/wireless/ath/ath9k/
13485
13486 QUALCOMM CAMERA SUBSYSTEM DRIVER
13487 M:      Todor Tomov <todor.too@gmail.com>
13488 L:      linux-media@vger.kernel.org
13489 S:      Maintained
13490 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13491 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13492 F:      drivers/media/platform/qcom/camss/
13493
13494 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13495 M:      Ilia Lin <ilia.lin@kernel.org>
13496 L:      linux-pm@vger.kernel.org
13497 S:      Maintained
13498 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
13499 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
13500
13501 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13502 M:      Timur Tabi <timur@kernel.org>
13503 L:      netdev@vger.kernel.org
13504 S:      Maintained
13505 F:      drivers/net/ethernet/qualcomm/emac/
13506
13507 QUALCOMM ETHQOS ETHERNET DRIVER
13508 M:      Vinod Koul <vkoul@kernel.org>
13509 M:      Niklas Cassel <niklas.cassel@linaro.org>
13510 L:      netdev@vger.kernel.org
13511 S:      Maintained
13512 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13513 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
13514
13515 QUALCOMM GENERIC INTERFACE I2C DRIVER
13516 M:      Alok Chauhan <alokc@codeaurora.org>
13517 L:      linux-i2c@vger.kernel.org
13518 L:      linux-arm-msm@vger.kernel.org
13519 S:      Supported
13520 F:      drivers/i2c/busses/i2c-qcom-geni.c
13521
13522 QUALCOMM HEXAGON ARCHITECTURE
13523 M:      Brian Cain <bcain@codeaurora.org>
13524 L:      linux-hexagon@vger.kernel.org
13525 S:      Supported
13526 F:      arch/hexagon/
13527
13528 QUALCOMM HIDMA DRIVER
13529 M:      Sinan Kaya <okaya@kernel.org>
13530 L:      linux-arm-kernel@lists.infradead.org
13531 L:      linux-arm-msm@vger.kernel.org
13532 L:      dmaengine@vger.kernel.org
13533 S:      Supported
13534 F:      drivers/dma/qcom/hidma*
13535
13536 QUALCOMM IOMMU
13537 M:      Rob Clark <robdclark@gmail.com>
13538 L:      iommu@lists.linux-foundation.org
13539 L:      linux-arm-msm@vger.kernel.org
13540 S:      Maintained
13541 F:      drivers/iommu/qcom_iommu.c
13542
13543 QUALCOMM TSENS THERMAL DRIVER
13544 M:      Amit Kucheria <amit.kucheria@linaro.org>
13545 L:      linux-pm@vger.kernel.org
13546 L:      linux-arm-msm@vger.kernel.org
13547 S:      Maintained
13548 F:      drivers/thermal/qcom/
13549
13550 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13551 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13552 L:      linux-media@vger.kernel.org
13553 L:      linux-arm-msm@vger.kernel.org
13554 T:      git git://linuxtv.org/media_tree.git
13555 S:      Maintained
13556 F:      drivers/media/platform/qcom/venus/
13557
13558 QUALCOMM WCN36XX WIRELESS DRIVER
13559 M:      Kalle Valo <kvalo@codeaurora.org>
13560 L:      wcn36xx@lists.infradead.org
13561 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13562 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13563 S:      Supported
13564 F:      drivers/net/wireless/ath/wcn36xx/
13565
13566 QUANTENNA QTNFMAC WIRELESS DRIVER
13567 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13568 M:      Avinash Patil <avinashp@quantenna.com>
13569 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13570 L:      linux-wireless@vger.kernel.org
13571 S:      Maintained
13572 F:      drivers/net/wireless/quantenna
13573
13574 RADEON and AMDGPU DRM DRIVERS
13575 M:      Alex Deucher <alexander.deucher@amd.com>
13576 M:      Christian König <christian.koenig@amd.com>
13577 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13578 L:      amd-gfx@lists.freedesktop.org
13579 T:      git git://people.freedesktop.org/~agd5f/linux
13580 S:      Supported
13581 F:      drivers/gpu/drm/radeon/
13582 F:      include/uapi/drm/radeon_drm.h
13583 F:      drivers/gpu/drm/amd/
13584 F:      include/uapi/drm/amdgpu_drm.h
13585
13586 RADEON FRAMEBUFFER DISPLAY DRIVER
13587 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13588 L:      linux-fbdev@vger.kernel.org
13589 S:      Maintained
13590 F:      drivers/video/fbdev/aty/radeon*
13591 F:      include/uapi/linux/radeonfb.h
13592
13593 RADIOSHARK RADIO DRIVER
13594 M:      Hans Verkuil <hverkuil@xs4all.nl>
13595 L:      linux-media@vger.kernel.org
13596 T:      git git://linuxtv.org/media_tree.git
13597 S:      Maintained
13598 F:      drivers/media/radio/radio-shark.c
13599
13600 RADIOSHARK2 RADIO DRIVER
13601 M:      Hans Verkuil <hverkuil@xs4all.nl>
13602 L:      linux-media@vger.kernel.org
13603 T:      git git://linuxtv.org/media_tree.git
13604 S:      Maintained
13605 F:      drivers/media/radio/radio-shark2.c
13606 F:      drivers/media/radio/radio-tea5777.c
13607
13608 RADOS BLOCK DEVICE (RBD)
13609 M:      Ilya Dryomov <idryomov@gmail.com>
13610 M:      Sage Weil <sage@redhat.com>
13611 M:      Alex Elder <elder@kernel.org>
13612 L:      ceph-devel@vger.kernel.org
13613 W:      http://ceph.com/
13614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13615 T:      git git://github.com/ceph/ceph-client.git
13616 S:      Supported
13617 F:      Documentation/ABI/testing/sysfs-bus-rbd
13618 F:      drivers/block/rbd.c
13619 F:      drivers/block/rbd_types.h
13620
13621 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13622 M:      Paul Mackerras <paulus@samba.org>
13623 L:      linux-fbdev@vger.kernel.org
13624 S:      Maintained
13625 F:      drivers/video/fbdev/aty/aty128fb.c
13626
13627 RAINSHADOW-CEC DRIVER
13628 M:      Hans Verkuil <hverkuil@xs4all.nl>
13629 L:      linux-media@vger.kernel.org
13630 T:      git git://linuxtv.org/media_tree.git
13631 S:      Maintained
13632 F:      drivers/media/usb/rainshadow-cec/*
13633
13634 RALINK MIPS ARCHITECTURE
13635 M:      John Crispin <john@phrozen.org>
13636 L:      linux-mips@vger.kernel.org
13637 S:      Maintained
13638 F:      arch/mips/ralink
13639
13640 RALINK RT2X00 WIRELESS LAN DRIVER
13641 P:      rt2x00 project
13642 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13643 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13644 L:      linux-wireless@vger.kernel.org
13645 S:      Maintained
13646 F:      drivers/net/wireless/ralink/rt2x00/
13647
13648 RAMDISK RAM BLOCK DEVICE DRIVER
13649 M:      Jens Axboe <axboe@kernel.dk>
13650 S:      Maintained
13651 F:      Documentation/admin-guide/blockdev/ramdisk.rst
13652 F:      drivers/block/brd.c
13653
13654 RANCHU VIRTUAL BOARD FOR MIPS
13655 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13656 L:      linux-mips@vger.kernel.org
13657 S:      Supported
13658 F:      arch/mips/generic/board-ranchu.c
13659 F:      arch/mips/configs/generic/board-ranchu.config
13660
13661 RANDOM NUMBER DRIVER
13662 M:      "Theodore Ts'o" <tytso@mit.edu>
13663 S:      Maintained
13664 F:      drivers/char/random.c
13665
13666 RAPIDIO SUBSYSTEM
13667 M:      Matt Porter <mporter@kernel.crashing.org>
13668 M:      Alexandre Bounine <alex.bou9@gmail.com>
13669 S:      Maintained
13670 F:      drivers/rapidio/
13671
13672 RAS INFRASTRUCTURE
13673 M:      Tony Luck <tony.luck@intel.com>
13674 M:      Borislav Petkov <bp@alien8.de>
13675 L:      linux-edac@vger.kernel.org
13676 S:      Maintained
13677 F:      drivers/ras/
13678 F:      include/linux/ras.h
13679 F:      include/ras/ras_event.h
13680 F:      Documentation/admin-guide/ras.rst
13681
13682 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13683 L:      linux-wireless@vger.kernel.org
13684 S:      Orphan
13685 F:      drivers/net/wireless/ray*
13686
13687 RCUTORTURE TEST FRAMEWORK
13688 M:      "Paul E. McKenney" <paulmck@kernel.org>
13689 M:      Josh Triplett <josh@joshtriplett.org>
13690 R:      Steven Rostedt <rostedt@goodmis.org>
13691 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13692 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13693 L:      rcu@vger.kernel.org
13694 S:      Supported
13695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13696 F:      tools/testing/selftests/rcutorture
13697
13698 RDC R-321X SoC
13699 M:      Florian Fainelli <florian@openwrt.org>
13700 S:      Maintained
13701
13702 RDC R6040 FAST ETHERNET DRIVER
13703 M:      Florian Fainelli <f.fainelli@gmail.com>
13704 L:      netdev@vger.kernel.org
13705 S:      Maintained
13706 F:      drivers/net/ethernet/rdc/r6040.c
13707
13708 RDMAVT - RDMA verbs software
13709 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13710 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13711 L:      linux-rdma@vger.kernel.org
13712 S:      Supported
13713 F:      drivers/infiniband/sw/rdmavt
13714
13715 RDS - RELIABLE DATAGRAM SOCKETS
13716 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13717 L:      netdev@vger.kernel.org
13718 L:      linux-rdma@vger.kernel.org
13719 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13720 W:      https://oss.oracle.com/projects/rds/
13721 S:      Supported
13722 F:      net/rds/
13723 F:      Documentation/networking/rds.txt
13724
13725 RDT - RESOURCE ALLOCATION
13726 M:      Fenghua Yu <fenghua.yu@intel.com>
13727 M:      Reinette Chatre <reinette.chatre@intel.com>
13728 L:      linux-kernel@vger.kernel.org
13729 S:      Supported
13730 F:      arch/x86/kernel/cpu/resctrl/
13731 F:      arch/x86/include/asm/resctrl_sched.h
13732 F:      Documentation/x86/resctrl*
13733
13734 READ-COPY UPDATE (RCU)
13735 M:      "Paul E. McKenney" <paulmck@kernel.org>
13736 M:      Josh Triplett <josh@joshtriplett.org>
13737 R:      Steven Rostedt <rostedt@goodmis.org>
13738 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13739 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13740 R:      Joel Fernandes <joel@joelfernandes.org>
13741 L:      rcu@vger.kernel.org
13742 W:      http://www.rdrop.com/users/paulmck/RCU/
13743 S:      Supported
13744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13745 F:      Documentation/RCU/
13746 X:      Documentation/RCU/torture.txt
13747 F:      include/linux/rcu*
13748 X:      include/linux/srcu*.h
13749 F:      kernel/rcu/
13750 X:      kernel/rcu/srcu*.c
13751
13752 REAL TIME CLOCK (RTC) SUBSYSTEM
13753 M:      Alessandro Zummo <a.zummo@towertech.it>
13754 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13755 L:      linux-rtc@vger.kernel.org
13756 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13758 S:      Maintained
13759 F:      Documentation/devicetree/bindings/rtc/
13760 F:      Documentation/admin-guide/rtc.rst
13761 F:      drivers/rtc/
13762 F:      include/linux/rtc.h
13763 F:      include/uapi/linux/rtc.h
13764 F:      include/linux/rtc/
13765 F:      include/linux/platform_data/rtc-*
13766 F:      tools/testing/selftests/rtc/
13767
13768 REALTEK AUDIO CODECS
13769 M:      Bard Liao <bardliao@realtek.com>
13770 M:      Oder Chiou <oder_chiou@realtek.com>
13771 S:      Maintained
13772 F:      sound/soc/codecs/rt*
13773 F:      include/sound/rt*.h
13774
13775 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13776 M:      Linus Walleij <linus.walleij@linaro.org>
13777 S:      Maintained
13778 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13779 F:      drivers/net/dsa/realtek-smi*
13780 F:      drivers/net/dsa/rtl83*
13781
13782 REDPINE WIRELESS DRIVER
13783 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13784 M:      Siva Rebbagondla <siva8118@gmail.com>
13785 L:      linux-wireless@vger.kernel.org
13786 S:      Maintained
13787 F:      drivers/net/wireless/rsi/
13788
13789 REGISTER MAP ABSTRACTION
13790 M:      Mark Brown <broonie@kernel.org>
13791 L:      linux-kernel@vger.kernel.org
13792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13793 S:      Supported
13794 F:      Documentation/devicetree/bindings/regmap/
13795 F:      drivers/base/regmap/
13796 F:      include/linux/regmap.h
13797
13798 REISERFS FILE SYSTEM
13799 L:      reiserfs-devel@vger.kernel.org
13800 S:      Supported
13801 F:      fs/reiserfs/
13802
13803 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13804 M:      Ohad Ben-Cohen <ohad@wizery.com>
13805 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13806 L:      linux-remoteproc@vger.kernel.org
13807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
13808 S:      Maintained
13809 F:      Documentation/devicetree/bindings/remoteproc/
13810 F:      Documentation/ABI/testing/sysfs-class-remoteproc
13811 F:      Documentation/remoteproc.txt
13812 F:      drivers/remoteproc/
13813 F:      include/linux/remoteproc.h
13814 F:      include/linux/remoteproc/
13815
13816 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13817 M:      Ohad Ben-Cohen <ohad@wizery.com>
13818 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13819 L:      linux-remoteproc@vger.kernel.org
13820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
13821 S:      Maintained
13822 F:      drivers/rpmsg/
13823 F:      Documentation/rpmsg.txt
13824 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
13825 F:      include/linux/rpmsg.h
13826 F:      include/linux/rpmsg/
13827 F:      include/uapi/linux/rpmsg.h
13828 F:      samples/rpmsg/
13829
13830 RENESAS CLOCK DRIVERS
13831 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13832 L:      linux-renesas-soc@vger.kernel.org
13833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13834 S:      Supported
13835 F:      drivers/clk/renesas/
13836
13837 RENESAS EMEV2 I2C DRIVER
13838 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13839 S:      Supported
13840 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.txt
13841 F:      drivers/i2c/busses/i2c-emev2.c
13842
13843 RENESAS ETHERNET DRIVERS
13844 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13845 L:      netdev@vger.kernel.org
13846 L:      linux-renesas-soc@vger.kernel.org
13847 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13848 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13849 F:      drivers/net/ethernet/renesas/
13850 F:      include/linux/sh_eth.h
13851
13852 RENESAS R-CAR GYROADC DRIVER
13853 M:      Marek Vasut <marek.vasut@gmail.com>
13854 L:      linux-iio@vger.kernel.org
13855 S:      Supported
13856 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13857 F:      drivers/iio/adc/rcar-gyroadc.c
13858
13859 RENESAS R-CAR I2C DRIVERS
13860 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13861 S:      Supported
13862 F:      Documentation/devicetree/bindings/i2c/renesas,i2c.txt
13863 F:      Documentation/devicetree/bindings/i2c/renesas,iic.txt
13864 F:      drivers/i2c/busses/i2c-rcar.c
13865 F:      drivers/i2c/busses/i2c-sh_mobile.c
13866
13867 RENESAS RIIC DRIVER
13868 M:      Chris Brandt <chris.brandt@renesas.com>
13869 S:      Supported
13870 F:      Documentation/devicetree/bindings/i2c/renesas,riic.txt
13871 F:      drivers/i2c/busses/i2c-riic.c
13872
13873 RENESAS USB PHY DRIVER
13874 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13875 L:      linux-renesas-soc@vger.kernel.org
13876 S:      Maintained
13877 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13878
13879 RESET CONTROLLER FRAMEWORK
13880 M:      Philipp Zabel <p.zabel@pengutronix.de>
13881 T:      git git://git.pengutronix.de/git/pza/linux
13882 S:      Maintained
13883 F:      drivers/reset/
13884 F:      Documentation/devicetree/bindings/reset/
13885 F:      include/dt-bindings/reset/
13886 F:      include/linux/reset.h
13887 F:      include/linux/reset/
13888 F:      include/linux/reset-controller.h
13889
13890 RESTARTABLE SEQUENCES SUPPORT
13891 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13892 M:      Peter Zijlstra <peterz@infradead.org>
13893 M:      "Paul E. McKenney" <paulmck@kernel.org>
13894 M:      Boqun Feng <boqun.feng@gmail.com>
13895 L:      linux-kernel@vger.kernel.org
13896 S:      Supported
13897 F:      kernel/rseq.c
13898 F:      include/uapi/linux/rseq.h
13899 F:      include/trace/events/rseq.h
13900 F:      tools/testing/selftests/rseq/
13901
13902 RFKILL
13903 M:      Johannes Berg <johannes@sipsolutions.net>
13904 L:      linux-wireless@vger.kernel.org
13905 W:      http://wireless.kernel.org/
13906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13908 S:      Maintained
13909 F:      Documentation/driver-api/rfkill.rst
13910 F:      Documentation/ABI/stable/sysfs-class-rfkill
13911 F:      net/rfkill/
13912 F:      include/linux/rfkill.h
13913 F:      include/uapi/linux/rfkill.h
13914
13915 RHASHTABLE
13916 M:      Thomas Graf <tgraf@suug.ch>
13917 M:      Herbert Xu <herbert@gondor.apana.org.au>
13918 L:      netdev@vger.kernel.org
13919 S:      Maintained
13920 F:      lib/rhashtable.c
13921 F:      lib/test_rhashtable.c
13922 F:      include/linux/rhashtable.h
13923 F:      include/linux/rhashtable-types.h
13924
13925 RICOH R5C592 MEMORYSTICK DRIVER
13926 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13927 S:      Maintained
13928 F:      drivers/memstick/host/r592.*
13929
13930 RICOH SMARTMEDIA/XD DRIVER
13931 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13932 S:      Maintained
13933 F:      drivers/mtd/nand/raw/r852.c
13934 F:      drivers/mtd/nand/raw/r852.h
13935
13936 RISC-V ARCHITECTURE
13937 M:      Paul Walmsley <paul.walmsley@sifive.com>
13938 M:      Palmer Dabbelt <palmer@dabbelt.com>
13939 M:      Albert Ou <aou@eecs.berkeley.edu>
13940 L:      linux-riscv@lists.infradead.org
13941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
13942 S:      Supported
13943 F:      arch/riscv/
13944 K:      riscv
13945 N:      riscv
13946
13947 ROCCAT DRIVERS
13948 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
13949 W:      http://sourceforge.net/projects/roccat/
13950 S:      Maintained
13951 F:      drivers/hid/hid-roccat*
13952 F:      include/linux/hid-roccat*
13953 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13954
13955 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13956 M:      Jacob Chen <jacob-chen@iotwrt.com>
13957 M:      Ezequiel Garcia <ezequiel@collabora.com>
13958 L:      linux-media@vger.kernel.org
13959 S:      Maintained
13960 F:      drivers/media/platform/rockchip/rga/
13961 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13962
13963 HANTRO VPU CODEC DRIVER
13964 M:      Ezequiel Garcia <ezequiel@collabora.com>
13965 L:      linux-media@vger.kernel.org
13966 S:      Maintained
13967 F:      drivers/staging/media/hantro/
13968 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13969
13970 ROCKER DRIVER
13971 M:      Jiri Pirko <jiri@resnulli.us>
13972 L:      netdev@vger.kernel.org
13973 S:      Supported
13974 F:      drivers/net/ethernet/rocker/
13975
13976 ROCKETPORT DRIVER
13977 P:      Comtrol Corp.
13978 W:      http://www.comtrol.com
13979 S:      Maintained
13980 F:      Documentation/driver-api/serial/rocket.rst
13981 F:      drivers/tty/rocket*
13982
13983 ROCKETPORT EXPRESS/INFINITY DRIVER
13984 M:      Kevin Cernekee <cernekee@gmail.com>
13985 L:      linux-serial@vger.kernel.org
13986 S:      Odd Fixes
13987 F:      drivers/tty/serial/rp2.*
13988
13989 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
13990 M:      Tomasz Duszynski <tduszyns@gmail.com>
13991 S:      Maintained
13992 F:      drivers/iio/light/bh1750.c
13993 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
13994
13995 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13996 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13997 L:      linux-kernel@vger.kernel.org
13998 L:      linux-renesas-soc@vger.kernel.org
13999 S:      Supported
14000 F:      drivers/mfd/bd9571mwv.c
14001 F:      drivers/regulator/bd9571mwv-regulator.c
14002 F:      drivers/gpio/gpio-bd9571mwv.c
14003 F:      include/linux/mfd/bd9571mwv.h
14004 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
14005
14006 ROSE NETWORK LAYER
14007 M:      Ralf Baechle <ralf@linux-mips.org>
14008 L:      linux-hams@vger.kernel.org
14009 W:      http://www.linux-ax25.org/
14010 S:      Maintained
14011 F:      include/net/rose.h
14012 F:      include/uapi/linux/rose.h
14013 F:      net/rose/
14014
14015 RTL2830 MEDIA DRIVER
14016 M:      Antti Palosaari <crope@iki.fi>
14017 L:      linux-media@vger.kernel.org
14018 W:      https://linuxtv.org
14019 W:      http://palosaari.fi/linux/
14020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14021 T:      git git://linuxtv.org/anttip/media_tree.git
14022 S:      Maintained
14023 F:      drivers/media/dvb-frontends/rtl2830*
14024
14025 RTL2832 MEDIA DRIVER
14026 M:      Antti Palosaari <crope@iki.fi>
14027 L:      linux-media@vger.kernel.org
14028 W:      https://linuxtv.org
14029 W:      http://palosaari.fi/linux/
14030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14031 T:      git git://linuxtv.org/anttip/media_tree.git
14032 S:      Maintained
14033 F:      drivers/media/dvb-frontends/rtl2832*
14034
14035 RTL2832_SDR MEDIA DRIVER
14036 M:      Antti Palosaari <crope@iki.fi>
14037 L:      linux-media@vger.kernel.org
14038 W:      https://linuxtv.org
14039 W:      http://palosaari.fi/linux/
14040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14041 T:      git git://linuxtv.org/anttip/media_tree.git
14042 S:      Maintained
14043 F:      drivers/media/dvb-frontends/rtl2832_sdr*
14044
14045 RTL8180 WIRELESS DRIVER
14046 L:      linux-wireless@vger.kernel.org
14047 W:      http://wireless.kernel.org/
14048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14049 S:      Orphan
14050 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
14051
14052 RTL8187 WIRELESS DRIVER
14053 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14054 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
14055 M:      Larry Finger <Larry.Finger@lwfinger.net>
14056 L:      linux-wireless@vger.kernel.org
14057 W:      http://wireless.kernel.org/
14058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14059 S:      Maintained
14060 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
14061
14062 REALTEK WIRELESS DRIVER (rtlwifi family)
14063 M:      Ping-Ke Shih <pkshih@realtek.com>
14064 L:      linux-wireless@vger.kernel.org
14065 W:      http://wireless.kernel.org/
14066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
14067 S:      Maintained
14068 F:      drivers/net/wireless/realtek/rtlwifi/
14069
14070 REALTEK WIRELESS DRIVER (rtw88)
14071 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
14072 L:      linux-wireless@vger.kernel.org
14073 S:      Maintained
14074 F:      drivers/net/wireless/realtek/rtw88/
14075
14076 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
14077 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
14078 L:      linux-wireless@vger.kernel.org
14079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
14080 S:      Maintained
14081 F:      drivers/net/wireless/realtek/rtl8xxxu/
14082
14083 RXRPC SOCKETS (AF_RXRPC)
14084 M:      David Howells <dhowells@redhat.com>
14085 L:      linux-afs@lists.infradead.org
14086 S:      Supported
14087 F:      net/rxrpc/
14088 F:      include/keys/rxrpc-type.h
14089 F:      include/net/af_rxrpc.h
14090 F:      include/trace/events/rxrpc.h
14091 F:      include/uapi/linux/rxrpc.h
14092 F:      Documentation/networking/rxrpc.txt
14093 W:      https://www.infradead.org/~dhowells/kafs/
14094
14095 S3 SAVAGE FRAMEBUFFER DRIVER
14096 M:      Antonino Daplas <adaplas@gmail.com>
14097 L:      linux-fbdev@vger.kernel.org
14098 S:      Maintained
14099 F:      drivers/video/fbdev/savage/
14100
14101 S390
14102 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
14103 M:      Vasily Gorbik <gor@linux.ibm.com>
14104 M:      Christian Borntraeger <borntraeger@de.ibm.com>
14105 L:      linux-s390@vger.kernel.org
14106 W:      http://www.ibm.com/developerworks/linux/linux390/
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
14108 S:      Supported
14109 F:      arch/s390/
14110 F:      drivers/s390/
14111 F:      Documentation/s390/
14112 F:      Documentation/driver-api/s390-drivers.rst
14113
14114 S390 COMMON I/O LAYER
14115 M:      Sebastian Ott <sebott@linux.ibm.com>
14116 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
14117 L:      linux-s390@vger.kernel.org
14118 W:      http://www.ibm.com/developerworks/linux/linux390/
14119 S:      Supported
14120 F:      drivers/s390/cio/
14121
14122 S390 DASD DRIVER
14123 M:      Stefan Haberland <sth@linux.ibm.com>
14124 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
14125 L:      linux-s390@vger.kernel.org
14126 W:      http://www.ibm.com/developerworks/linux/linux390/
14127 S:      Supported
14128 F:      drivers/s390/block/dasd*
14129 F:      block/partitions/ibm.c
14130
14131 S390 IOMMU (PCI)
14132 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14133 L:      linux-s390@vger.kernel.org
14134 W:      http://www.ibm.com/developerworks/linux/linux390/
14135 S:      Supported
14136 F:      drivers/iommu/s390-iommu.c
14137
14138 S390 IUCV NETWORK LAYER
14139 M:      Julian Wiedmann <jwi@linux.ibm.com>
14140 M:      Ursula Braun <ubraun@linux.ibm.com>
14141 L:      linux-s390@vger.kernel.org
14142 W:      http://www.ibm.com/developerworks/linux/linux390/
14143 S:      Supported
14144 F:      drivers/s390/net/*iucv*
14145 F:      include/net/iucv/
14146 F:      net/iucv/
14147
14148 S390 NETWORK DRIVERS
14149 M:      Julian Wiedmann <jwi@linux.ibm.com>
14150 M:      Ursula Braun <ubraun@linux.ibm.com>
14151 L:      linux-s390@vger.kernel.org
14152 W:      http://www.ibm.com/developerworks/linux/linux390/
14153 S:      Supported
14154 F:      drivers/s390/net/
14155
14156 S390 PCI SUBSYSTEM
14157 M:      Sebastian Ott <sebott@linux.ibm.com>
14158 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
14159 L:      linux-s390@vger.kernel.org
14160 W:      http://www.ibm.com/developerworks/linux/linux390/
14161 S:      Supported
14162 F:      arch/s390/pci/
14163 F:      drivers/pci/hotplug/s390_pci_hpc.c
14164
14165 S390 VFIO-CCW DRIVER
14166 M:      Cornelia Huck <cohuck@redhat.com>
14167 M:      Eric Farman <farman@linux.ibm.com>
14168 R:      Halil Pasic <pasic@linux.ibm.com>
14169 L:      linux-s390@vger.kernel.org
14170 L:      kvm@vger.kernel.org
14171 S:      Supported
14172 F:      drivers/s390/cio/vfio_ccw*
14173 F:      Documentation/s390/vfio-ccw.rst
14174 F:      include/uapi/linux/vfio_ccw.h
14175
14176 S390 ZCRYPT DRIVER
14177 M:      Harald Freudenberger <freude@linux.ibm.com>
14178 L:      linux-s390@vger.kernel.org
14179 W:      http://www.ibm.com/developerworks/linux/linux390/
14180 S:      Supported
14181 F:      drivers/s390/crypto/
14182
14183 S390 VFIO AP DRIVER
14184 M:      Tony Krowiak <akrowiak@linux.ibm.com>
14185 M:      Pierre Morel <pmorel@linux.ibm.com>
14186 M:      Halil Pasic <pasic@linux.ibm.com>
14187 L:      linux-s390@vger.kernel.org
14188 W:      http://www.ibm.com/developerworks/linux/linux390/
14189 S:      Supported
14190 F:      drivers/s390/crypto/vfio_ap_drv.c
14191 F:      drivers/s390/crypto/vfio_ap_private.h
14192 F:      drivers/s390/crypto/vfio_ap_ops.c
14193 F:      Documentation/s390/vfio-ap.rst
14194
14195 S390 ZFCP DRIVER
14196 M:      Steffen Maier <maier@linux.ibm.com>
14197 M:      Benjamin Block <bblock@linux.ibm.com>
14198 L:      linux-s390@vger.kernel.org
14199 W:      http://www.ibm.com/developerworks/linux/linux390/
14200 S:      Supported
14201 F:      drivers/s390/scsi/zfcp_*
14202
14203 S3C24XX SD/MMC Driver
14204 M:      Ben Dooks <ben-linux@fluff.org>
14205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14206 S:      Supported
14207 F:      drivers/mmc/host/s3cmci.*
14208
14209 SAA6588 RDS RECEIVER DRIVER
14210 M:      Hans Verkuil <hverkuil@xs4all.nl>
14211 L:      linux-media@vger.kernel.org
14212 T:      git git://linuxtv.org/media_tree.git
14213 W:      https://linuxtv.org
14214 S:      Odd Fixes
14215 F:      drivers/media/i2c/saa6588*
14216
14217 SAA7134 VIDEO4LINUX DRIVER
14218 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14219 L:      linux-media@vger.kernel.org
14220 W:      https://linuxtv.org
14221 T:      git git://linuxtv.org/media_tree.git
14222 S:      Odd fixes
14223 F:      Documentation/media/v4l-drivers/saa7134*
14224 F:      drivers/media/pci/saa7134/
14225
14226 SAA7146 VIDEO4LINUX-2 DRIVER
14227 M:      Hans Verkuil <hverkuil@xs4all.nl>
14228 L:      linux-media@vger.kernel.org
14229 T:      git git://linuxtv.org/media_tree.git
14230 S:      Maintained
14231 F:      drivers/media/common/saa7146/
14232 F:      drivers/media/pci/saa7146/
14233 F:      include/media/drv-intf/saa7146*
14234
14235 SAFESETID SECURITY MODULE
14236 M:     Micah Morton <mortonm@chromium.org>
14237 S:     Supported
14238 F:     security/safesetid/
14239 F:     Documentation/admin-guide/LSM/SafeSetID.rst
14240
14241 SAMSUNG AUDIO (ASoC) DRIVERS
14242 M:      Krzysztof Kozlowski <krzk@kernel.org>
14243 M:      Sangbeom Kim <sbkim73@samsung.com>
14244 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14246 S:      Supported
14247 F:      sound/soc/samsung/
14248 F:      Documentation/devicetree/bindings/sound/samsung*
14249
14250 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
14251 M:      Krzysztof Kozlowski <krzk@kernel.org>
14252 L:      linux-crypto@vger.kernel.org
14253 L:      linux-samsung-soc@vger.kernel.org
14254 S:      Maintained
14255 F:      drivers/crypto/exynos-rng.c
14256 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
14257
14258 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
14259 M:      Łukasz Stelmach <l.stelmach@samsung.com>
14260 L:      linux-samsung-soc@vger.kernel.org
14261 S:      Maintained
14262 F:      drivers/char/hw_random/exynos-trng.c
14263 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
14264
14265 SAMSUNG FRAMEBUFFER DRIVER
14266 M:      Jingoo Han <jingoohan1@gmail.com>
14267 L:      linux-fbdev@vger.kernel.org
14268 S:      Maintained
14269 F:      drivers/video/fbdev/s3c-fb.c
14270
14271 SAMSUNG LAPTOP DRIVER
14272 M:      Corentin Chary <corentin.chary@gmail.com>
14273 L:      platform-driver-x86@vger.kernel.org
14274 S:      Maintained
14275 F:      drivers/platform/x86/samsung-laptop.c
14276
14277 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
14278 M:      Sangbeom Kim <sbkim73@samsung.com>
14279 M:      Krzysztof Kozlowski <krzk@kernel.org>
14280 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14281 L:      linux-kernel@vger.kernel.org
14282 L:      linux-samsung-soc@vger.kernel.org
14283 S:      Supported
14284 F:      drivers/mfd/sec*.c
14285 F:      drivers/regulator/s2m*.c
14286 F:      drivers/regulator/s5m*.c
14287 F:      drivers/clk/clk-s2mps11.c
14288 F:      drivers/rtc/rtc-s5m.c
14289 F:      include/linux/mfd/samsung/
14290 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
14291 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
14292 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
14293 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
14294
14295 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
14296 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
14297 L:      linux-media@vger.kernel.org
14298 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14299 S:      Maintained
14300 F:      drivers/media/platform/s3c-camif/
14301 F:      include/media/drv-intf/s3c_camif.h
14302
14303 SAMSUNG S3FWRN5 NFC DRIVER
14304 M:      Robert Baldyga <r.baldyga@samsung.com>
14305 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
14306 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
14307 S:      Supported
14308 F:      drivers/nfc/s3fwrn5
14309
14310 SAMSUNG S5C73M3 CAMERA DRIVER
14311 M:      Kyungmin Park <kyungmin.park@samsung.com>
14312 M:      Andrzej Hajda <a.hajda@samsung.com>
14313 L:      linux-media@vger.kernel.org
14314 S:      Supported
14315 F:      drivers/media/i2c/s5c73m3/*
14316
14317 SAMSUNG S5K5BAF CAMERA DRIVER
14318 M:      Kyungmin Park <kyungmin.park@samsung.com>
14319 M:      Andrzej Hajda <a.hajda@samsung.com>
14320 L:      linux-media@vger.kernel.org
14321 S:      Supported
14322 F:      drivers/media/i2c/s5k5baf.c
14323
14324 SAMSUNG S5P Security SubSystem (SSS) DRIVER
14325 M:      Krzysztof Kozlowski <krzk@kernel.org>
14326 M:      Vladimir Zapolskiy <vz@mleia.com>
14327 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
14328 L:      linux-crypto@vger.kernel.org
14329 L:      linux-samsung-soc@vger.kernel.org
14330 S:      Maintained
14331 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.txt
14332 F:      Documentation/devicetree/bindings/crypto/samsung-sss.txt
14333 F:      drivers/crypto/s5p-sss.c
14334
14335 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
14336 M:      Kyungmin Park <kyungmin.park@samsung.com>
14337 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14338 L:      linux-media@vger.kernel.org
14339 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14340 S:      Supported
14341 F:      drivers/media/platform/exynos4-is/
14342
14343 SAMSUNG SOC CLOCK DRIVERS
14344 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14345 M:      Tomasz Figa <tomasz.figa@gmail.com>
14346 M:      Chanwoo Choi <cw00.choi@samsung.com>
14347 S:      Supported
14348 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
14350 F:      drivers/clk/samsung/
14351 F:      include/dt-bindings/clock/exynos*.h
14352 F:      Documentation/devicetree/bindings/clock/exynos*.txt
14353 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
14354 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
14355
14356 SAMSUNG SPI DRIVERS
14357 M:      Kukjin Kim <kgene@kernel.org>
14358 M:      Krzysztof Kozlowski <krzk@kernel.org>
14359 M:      Andi Shyti <andi@etezian.org>
14360 L:      linux-spi@vger.kernel.org
14361 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
14362 S:      Maintained
14363 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
14364 F:      drivers/spi/spi-s3c*
14365 F:      include/linux/platform_data/spi-s3c64xx.h
14366
14367 SAMSUNG SXGBE DRIVERS
14368 M:      Byungho An <bh74.an@samsung.com>
14369 M:      Girish K S <ks.giri@samsung.com>
14370 M:      Vipul Pandya <vipul.pandya@samsung.com>
14371 S:      Supported
14372 L:      netdev@vger.kernel.org
14373 F:      drivers/net/ethernet/samsung/sxgbe/
14374
14375 SAMSUNG THERMAL DRIVER
14376 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
14377 L:      linux-pm@vger.kernel.org
14378 L:      linux-samsung-soc@vger.kernel.org
14379 S:      Supported
14380 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
14381 F:      drivers/thermal/samsung/
14382
14383 SAMSUNG USB2 PHY DRIVER
14384 M:      Kamil Debski <kamil@wypas.org>
14385 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14386 L:      linux-kernel@vger.kernel.org
14387 S:      Supported
14388 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
14389 F:      Documentation/driver-api/phy/samsung-usb2.rst
14390 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
14391 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
14392 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
14393 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
14394 F:      drivers/phy/samsung/phy-samsung-usb2.c
14395 F:      drivers/phy/samsung/phy-samsung-usb2.h
14396
14397 SC1200 WDT DRIVER
14398 M:      Zwane Mwaikambo <zwanem@gmail.com>
14399 S:      Maintained
14400 F:      drivers/watchdog/sc1200wdt.c
14401
14402 SCHEDULER
14403 M:      Ingo Molnar <mingo@redhat.com>
14404 M:      Peter Zijlstra <peterz@infradead.org>
14405 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
14406 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
14407 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
14408 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
14409 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
14410 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
14411 L:      linux-kernel@vger.kernel.org
14412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
14413 S:      Maintained
14414 F:      kernel/sched/
14415 F:      include/linux/sched.h
14416 F:      include/uapi/linux/sched.h
14417 F:      include/linux/wait.h
14418 F:      include/linux/preempt.h
14419
14420 SCR24X CHIP CARD INTERFACE DRIVER
14421 M:      Lubomir Rintel <lkundrak@v3.sk>
14422 S:      Supported
14423 F:      drivers/char/pcmcia/scr24x_cs.c
14424
14425 SCSI CDROM DRIVER
14426 M:      Jens Axboe <axboe@kernel.dk>
14427 L:      linux-scsi@vger.kernel.org
14428 W:      http://www.kernel.dk
14429 S:      Maintained
14430 F:      drivers/scsi/sr*
14431
14432 SCSI RDMA PROTOCOL (SRP) INITIATOR
14433 M:      Bart Van Assche <bvanassche@acm.org>
14434 L:      linux-rdma@vger.kernel.org
14435 S:      Supported
14436 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14437 F:      drivers/infiniband/ulp/srp/
14438 F:      include/scsi/srp.h
14439
14440 SCSI RDMA PROTOCOL (SRP) TARGET
14441 M:      Bart Van Assche <bvanassche@acm.org>
14442 L:      linux-rdma@vger.kernel.org
14443 L:      target-devel@vger.kernel.org
14444 S:      Supported
14445 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14446 F:      drivers/infiniband/ulp/srpt/
14447
14448 SCSI SG DRIVER
14449 M:      Doug Gilbert <dgilbert@interlog.com>
14450 L:      linux-scsi@vger.kernel.org
14451 W:      http://sg.danny.cz/sg
14452 S:      Maintained
14453 F:      Documentation/scsi/scsi-generic.txt
14454 F:      drivers/scsi/sg.c
14455 F:      include/scsi/sg.h
14456
14457 SCSI SUBSYSTEM
14458 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
14459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
14460 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14462 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
14463 L:      linux-scsi@vger.kernel.org
14464 S:      Maintained
14465 F:      Documentation/devicetree/bindings/scsi/
14466 F:      drivers/scsi/
14467 F:      include/scsi/
14468
14469 SCSI TAPE DRIVER
14470 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
14471 L:      linux-scsi@vger.kernel.org
14472 S:      Maintained
14473 F:      Documentation/scsi/st.txt
14474 F:      drivers/scsi/st.*
14475 F:      drivers/scsi/st_*.h
14476
14477 SCSI TARGET SUBSYSTEM
14478 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
14479 L:      linux-scsi@vger.kernel.org
14480 L:      target-devel@vger.kernel.org
14481 W:      http://www.linux-iscsi.org
14482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
14483 Q:      https://patchwork.kernel.org/project/target-devel/list/
14484 S:      Supported
14485 F:      drivers/target/
14486 F:      include/target/
14487 F:      Documentation/target/
14488
14489 SCTP PROTOCOL
14490 M:      Vlad Yasevich <vyasevich@gmail.com>
14491 M:      Neil Horman <nhorman@tuxdriver.com>
14492 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
14493 L:      linux-sctp@vger.kernel.org
14494 W:      http://lksctp.sourceforge.net
14495 S:      Maintained
14496 F:      Documentation/networking/sctp.txt
14497 F:      include/linux/sctp.h
14498 F:      include/uapi/linux/sctp.h
14499 F:      include/net/sctp/
14500 F:      net/sctp/
14501
14502 SCx200 CPU SUPPORT
14503 M:      Jim Cromie <jim.cromie@gmail.com>
14504 S:      Odd Fixes
14505 F:      Documentation/i2c/busses/scx200_acb.rst
14506 F:      arch/x86/platform/scx200/
14507 F:      drivers/watchdog/scx200_wdt.c
14508 F:      drivers/i2c/busses/scx200*
14509 F:      drivers/mtd/maps/scx200_docflash.c
14510 F:      include/linux/scx200.h
14511
14512 SCx200 GPIO DRIVER
14513 M:      Jim Cromie <jim.cromie@gmail.com>
14514 S:      Maintained
14515 F:      drivers/char/scx200_gpio.c
14516 F:      include/linux/scx200_gpio.h
14517
14518 SCx200 HRT CLOCKSOURCE DRIVER
14519 M:      Jim Cromie <jim.cromie@gmail.com>
14520 S:      Maintained
14521 F:      drivers/clocksource/scx200_hrt.c
14522
14523 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14524 M:      Sascha Sommer <saschasommer@freenet.de>
14525 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14526 S:      Maintained
14527 F:      drivers/mmc/host/sdricoh_cs.c
14528
14529 SECO BOARDS CEC DRIVER
14530 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14531 S:      Maintained
14532 F:      drivers/media/platform/seco-cec/seco-cec.c
14533 F:      drivers/media/platform/seco-cec/seco-cec.h
14534
14535 SECURE COMPUTING
14536 M:      Kees Cook <keescook@chromium.org>
14537 R:      Andy Lutomirski <luto@amacapital.net>
14538 R:      Will Drewry <wad@chromium.org>
14539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14540 S:      Supported
14541 F:      kernel/seccomp.c
14542 F:      include/uapi/linux/seccomp.h
14543 F:      include/linux/seccomp.h
14544 F:      tools/testing/selftests/seccomp/*
14545 F:      tools/testing/selftests/kselftest_harness.h
14546 F:      Documentation/userspace-api/seccomp_filter.rst
14547 K:      \bsecure_computing
14548 K:      \bTIF_SECCOMP\b
14549
14550 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14551 M:      Al Cooper <alcooperx@gmail.com>
14552 L:      linux-mmc@vger.kernel.org
14553 L:      bcm-kernel-feedback-list@broadcom.com
14554 S:      Maintained
14555 F:      drivers/mmc/host/sdhci-brcmstb*
14556
14557 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14558 M:      Adrian Hunter <adrian.hunter@intel.com>
14559 L:      linux-mmc@vger.kernel.org
14560 S:      Maintained
14561 F:      drivers/mmc/host/sdhci*
14562 F:      include/linux/mmc/sdhci*
14563
14564 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14565 M:      Adrian Hunter <adrian.hunter@intel.com>
14566 M:      Ritesh Harjani <riteshh@codeaurora.org>
14567 M:      Asutosh Das <asutoshd@codeaurora.org>
14568 L:      linux-mmc@vger.kernel.org
14569 S:      Maintained
14570 F:      drivers/mmc/host/cqhci*
14571
14572 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14573 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14574 M:      Manjunath M B <manjumb@synopsys.com>
14575 L:      linux-mmc@vger.kernel.org
14576 S:      Maintained
14577 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14578
14579 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14580 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14581 L:      linux-mmc@vger.kernel.org
14582 S:      Supported
14583 F:      drivers/mmc/host/sdhci-of-at91.c
14584
14585 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14586 M:      Ben Dooks <ben-linux@fluff.org>
14587 M:      Jaehoon Chung <jh80.chung@samsung.com>
14588 L:      linux-mmc@vger.kernel.org
14589 S:      Maintained
14590 F:      drivers/mmc/host/sdhci-s3c*
14591
14592 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14593 M:      Viresh Kumar <vireshk@kernel.org>
14594 L:      linux-mmc@vger.kernel.org
14595 S:      Maintained
14596 F:      drivers/mmc/host/sdhci-spear.c
14597
14598 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14599 M:      Kishon Vijay Abraham I <kishon@ti.com>
14600 L:      linux-mmc@vger.kernel.org
14601 S:      Maintained
14602 F:      drivers/mmc/host/sdhci-omap.c
14603
14604 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14605 M:      Scott Bauer <scott.bauer@intel.com>
14606 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14607 L:      linux-block@vger.kernel.org
14608 S:      Supported
14609 F:      block/sed*
14610 F:      block/opal_proto.h
14611 F:      include/linux/sed*
14612 F:      include/uapi/linux/sed*
14613
14614 SECURITY CONTACT
14615 M:      Security Officers <security@kernel.org>
14616 S:      Supported
14617
14618 SECURITY SUBSYSTEM
14619 M:      James Morris <jmorris@namei.org>
14620 M:      "Serge E. Hallyn" <serge@hallyn.com>
14621 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14623 W:      http://kernsec.org/
14624 S:      Supported
14625 F:      security/
14626 X:      security/selinux/
14627
14628 SELINUX SECURITY MODULE
14629 M:      Paul Moore <paul@paul-moore.com>
14630 M:      Stephen Smalley <sds@tycho.nsa.gov>
14631 M:      Eric Paris <eparis@parisplace.org>
14632 L:      selinux@vger.kernel.org
14633 W:      https://selinuxproject.org
14634 W:      https://github.com/SELinuxProject
14635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14636 S:      Supported
14637 F:      include/uapi/linux/selinux_netlink.h
14638 F:      security/selinux/
14639 F:      scripts/selinux/
14640 F:      Documentation/admin-guide/LSM/SELinux.rst
14641
14642 SENSABLE PHANTOM
14643 M:      Jiri Slaby <jirislaby@gmail.com>
14644 S:      Maintained
14645 F:      drivers/misc/phantom.c
14646 F:      include/uapi/linux/phantom.h
14647
14648 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
14649 M:      Tomasz Duszynski <tduszyns@gmail.com>
14650 S:      Maintained
14651 F:      drivers/iio/chemical/sps30.c
14652 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
14653
14654 SERIAL DEVICE BUS
14655 M:      Rob Herring <robh@kernel.org>
14656 L:      linux-serial@vger.kernel.org
14657 S:      Maintained
14658 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14659 F:      drivers/tty/serdev/
14660 F:      include/linux/serdev.h
14661
14662 SERIAL DRIVERS
14663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14664 L:      linux-serial@vger.kernel.org
14665 S:      Maintained
14666 F:      Documentation/devicetree/bindings/serial/
14667 F:      drivers/tty/serial/
14668
14669 SERIAL IR RECEIVER
14670 M:      Sean Young <sean@mess.org>
14671 L:      linux-media@vger.kernel.org
14672 S:      Maintained
14673 F:      drivers/media/rc/serial_ir.c
14674
14675 SFC NETWORK DRIVER
14676 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14677 M:      Edward Cree <ecree@solarflare.com>
14678 M:      Martin Habets <mhabets@solarflare.com>
14679 L:      netdev@vger.kernel.org
14680 S:      Supported
14681 F:      drivers/net/ethernet/sfc/
14682
14683 SFF/SFP/SFP+ MODULE SUPPORT
14684 M:      Russell King <linux@armlinux.org.uk>
14685 L:      netdev@vger.kernel.org
14686 S:      Maintained
14687 F:      drivers/net/phy/phylink.c
14688 F:      drivers/net/phy/sfp*
14689 F:      include/linux/phylink.h
14690 F:      include/linux/sfp.h
14691 K:      phylink
14692
14693 SGI GRU DRIVER
14694 M:      Dimitri Sivanich <sivanich@sgi.com>
14695 S:      Maintained
14696 F:      drivers/misc/sgi-gru/
14697
14698 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14699 M:      Pat Gefre <pfg@sgi.com>
14700 L:      linux-ia64@vger.kernel.org
14701 S:      Supported
14702 F:      Documentation/ia64/serial.rst
14703 F:      drivers/tty/serial/ioc?_serial.c
14704 F:      include/linux/ioc?.h
14705
14706 SGI XP/XPC/XPNET DRIVER
14707 M:      Cliff Whickman <cpw@sgi.com>
14708 M:      Robin Holt <robinmholt@gmail.com>
14709 S:      Maintained
14710 F:      drivers/misc/sgi-xp/
14711
14712 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14713 M:      Ursula Braun <ubraun@linux.ibm.com>
14714 M:      Karsten Graul <kgraul@linux.ibm.com>
14715 L:      linux-s390@vger.kernel.org
14716 W:      http://www.ibm.com/developerworks/linux/linux390/
14717 S:      Supported
14718 F:      net/smc/
14719
14720 SHARP RJ54N1CB0C SENSOR DRIVER
14721 M:      Jacopo Mondi <jacopo@jmondi.org>
14722 L:      linux-media@vger.kernel.org
14723 T:      git git://linuxtv.org/media_tree.git
14724 S:      Odd fixes
14725 F:      drivers/media/i2c/rj54n1cb0c.c
14726 F:      include/media/i2c/rj54n1cb0c.h
14727
14728 SH_VEU V4L2 MEM2MEM DRIVER
14729 L:      linux-media@vger.kernel.org
14730 S:      Orphan
14731 F:      drivers/media/platform/sh_veu.c
14732
14733 SH_VOU V4L2 OUTPUT DRIVER
14734 L:      linux-media@vger.kernel.org
14735 S:      Orphan
14736 F:      drivers/media/platform/sh_vou.c
14737 F:      include/media/drv-intf/sh_vou.h
14738
14739 SI2157 MEDIA DRIVER
14740 M:      Antti Palosaari <crope@iki.fi>
14741 L:      linux-media@vger.kernel.org
14742 W:      https://linuxtv.org
14743 W:      http://palosaari.fi/linux/
14744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14745 T:      git git://linuxtv.org/anttip/media_tree.git
14746 S:      Maintained
14747 F:      drivers/media/tuners/si2157*
14748
14749 SI2165 MEDIA DRIVER
14750 M:      Matthias Schwarzott <zzam@gentoo.org>
14751 L:      linux-media@vger.kernel.org
14752 W:      https://linuxtv.org
14753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14754 S:      Maintained
14755 F:      drivers/media/dvb-frontends/si2165*
14756
14757 SI2168 MEDIA DRIVER
14758 M:      Antti Palosaari <crope@iki.fi>
14759 L:      linux-media@vger.kernel.org
14760 W:      https://linuxtv.org
14761 W:      http://palosaari.fi/linux/
14762 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14763 T:      git git://linuxtv.org/anttip/media_tree.git
14764 S:      Maintained
14765 F:      drivers/media/dvb-frontends/si2168*
14766
14767 SI470X FM RADIO RECEIVER I2C DRIVER
14768 M:      Hans Verkuil <hverkuil@xs4all.nl>
14769 L:      linux-media@vger.kernel.org
14770 T:      git git://linuxtv.org/media_tree.git
14771 W:      https://linuxtv.org
14772 S:      Odd Fixes
14773 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14774
14775 SI470X FM RADIO RECEIVER USB DRIVER
14776 M:      Hans Verkuil <hverkuil@xs4all.nl>
14777 L:      linux-media@vger.kernel.org
14778 T:      git git://linuxtv.org/media_tree.git
14779 W:      https://linuxtv.org
14780 S:      Maintained
14781 F:      drivers/media/radio/si470x/radio-si470x-common.c
14782 F:      drivers/media/radio/si470x/radio-si470x.h
14783 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14784
14785 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14786 M:      Eduardo Valentin <edubezval@gmail.com>
14787 L:      linux-media@vger.kernel.org
14788 T:      git git://linuxtv.org/media_tree.git
14789 W:      https://linuxtv.org
14790 S:      Odd Fixes
14791 F:      drivers/media/radio/si4713/si4713.?
14792
14793 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14794 M:      Eduardo Valentin <edubezval@gmail.com>
14795 L:      linux-media@vger.kernel.org
14796 T:      git git://linuxtv.org/media_tree.git
14797 W:      https://linuxtv.org
14798 S:      Odd Fixes
14799 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14800
14801 SI4713 FM RADIO TRANSMITTER USB DRIVER
14802 M:      Hans Verkuil <hverkuil@xs4all.nl>
14803 L:      linux-media@vger.kernel.org
14804 T:      git git://linuxtv.org/media_tree.git
14805 W:      https://linuxtv.org
14806 S:      Maintained
14807 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14808
14809 SIANO DVB DRIVER
14810 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14811 L:      linux-media@vger.kernel.org
14812 W:      https://linuxtv.org
14813 T:      git git://linuxtv.org/media_tree.git
14814 S:      Odd fixes
14815 F:      drivers/media/common/siano/
14816 F:      drivers/media/usb/siano/
14817 F:      drivers/media/usb/siano/
14818 F:      drivers/media/mmc/siano/
14819
14820 SIFIVE DRIVERS
14821 M:      Palmer Dabbelt <palmer@dabbelt.com>
14822 M:      Paul Walmsley <paul.walmsley@sifive.com>
14823 L:      linux-riscv@lists.infradead.org
14824 T:      git git://github.com/sifive/riscv-linux.git
14825 S:      Supported
14826 K:      [^@]sifive
14827 N:      sifive
14828
14829 SIFIVE FU540 SYSTEM-ON-CHIP
14830 M:      Paul Walmsley <paul.walmsley@sifive.com>
14831 M:      Palmer Dabbelt <palmer@dabbelt.com>
14832 L:      linux-riscv@lists.infradead.org
14833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
14834 S:      Supported
14835 K:      fu540
14836 N:      fu540
14837
14838 SILEAD TOUCHSCREEN DRIVER
14839 M:      Hans de Goede <hdegoede@redhat.com>
14840 L:      linux-input@vger.kernel.org
14841 L:      platform-driver-x86@vger.kernel.org
14842 S:      Maintained
14843 F:      drivers/input/touchscreen/silead.c
14844 F:      drivers/platform/x86/touchscreen_dmi.c
14845
14846 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
14847 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
14848 S:      Supported
14849 F:      drivers/staging/wfx/
14850
14851 SILICON MOTION SM712 FRAME BUFFER DRIVER
14852 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14853 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14854 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14855 L:      linux-fbdev@vger.kernel.org
14856 S:      Maintained
14857 F:      drivers/video/fbdev/sm712*
14858 F:      Documentation/fb/sm712fb.rst
14859
14860 SIMPLE FIRMWARE INTERFACE (SFI)
14861 M:      Len Brown <lenb@kernel.org>
14862 L:      sfi-devel@simplefirmware.org
14863 W:      http://simplefirmware.org/
14864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14865 S:      Supported
14866 F:      arch/x86/platform/sfi/
14867 F:      drivers/sfi/
14868 F:      include/linux/sfi*.h
14869
14870 SIMPLEFB FB DRIVER
14871 M:      Hans de Goede <hdegoede@redhat.com>
14872 L:      linux-fbdev@vger.kernel.org
14873 S:      Maintained
14874 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
14875 F:      drivers/video/fbdev/simplefb.c
14876 F:      include/linux/platform_data/simplefb.h
14877
14878 SIMTEC EB110ATX (Chalice CATS)
14879 P:      Ben Dooks
14880 P:      Vincent Sanders <vince@simtec.co.uk>
14881 M:      Simtec Linux Team <linux@simtec.co.uk>
14882 W:      http://www.simtec.co.uk/products/EB110ATX/
14883 S:      Supported
14884
14885 SIMTEC EB2410ITX (BAST)
14886 P:      Ben Dooks
14887 P:      Vincent Sanders <vince@simtec.co.uk>
14888 M:      Simtec Linux Team <linux@simtec.co.uk>
14889 W:      http://www.simtec.co.uk/products/EB2410ITX/
14890 S:      Supported
14891 F:      arch/arm/mach-s3c24xx/mach-bast.c
14892 F:      arch/arm/mach-s3c24xx/bast-ide.c
14893 F:      arch/arm/mach-s3c24xx/bast-irq.c
14894
14895 SIPHASH PRF ROUTINES
14896 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14897 S:      Maintained
14898 F:      lib/siphash.c
14899 F:      lib/test_siphash.c
14900 F:      include/linux/siphash.h
14901
14902 SIOX
14903 M:      Thorsten Scherer <t.scherer@eckelmann.de>
14904 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14905 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14906 S:      Supported
14907 F:      drivers/siox/*
14908 F:      drivers/gpio/gpio-siox.c
14909 F:      include/trace/events/siox.h
14910
14911 SIS 190 ETHERNET DRIVER
14912 M:      Francois Romieu <romieu@fr.zoreil.com>
14913 L:      netdev@vger.kernel.org
14914 S:      Maintained
14915 F:      drivers/net/ethernet/sis/sis190.c
14916
14917 SIS 900/7016 FAST ETHERNET DRIVER
14918 M:      Daniele Venzano <venza@brownhat.org>
14919 W:      http://www.brownhat.org/sis900.html
14920 L:      netdev@vger.kernel.org
14921 S:      Maintained
14922 F:      drivers/net/ethernet/sis/sis900.*
14923
14924 SIS FRAMEBUFFER DRIVER
14925 M:      Thomas Winischhofer <thomas@winischhofer.net>
14926 W:      http://www.winischhofer.net/linuxsisvga.shtml
14927 S:      Maintained
14928 F:      Documentation/fb/sisfb.rst
14929 F:      drivers/video/fbdev/sis/
14930 F:      include/video/sisfb.h
14931
14932 SIS USB2VGA DRIVER
14933 M:      Thomas Winischhofer <thomas@winischhofer.net>
14934 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14935 S:      Maintained
14936 F:      drivers/usb/misc/sisusbvga/
14937
14938 SLAB ALLOCATOR
14939 M:      Christoph Lameter <cl@linux.com>
14940 M:      Pekka Enberg <penberg@kernel.org>
14941 M:      David Rientjes <rientjes@google.com>
14942 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14943 M:      Andrew Morton <akpm@linux-foundation.org>
14944 L:      linux-mm@kvack.org
14945 S:      Maintained
14946 F:      include/linux/sl?b*.h
14947 F:      mm/sl?b*
14948
14949 SLEEPABLE READ-COPY UPDATE (SRCU)
14950 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14951 M:      "Paul E. McKenney" <paulmck@kernel.org>
14952 M:      Josh Triplett <josh@joshtriplett.org>
14953 R:      Steven Rostedt <rostedt@goodmis.org>
14954 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14955 L:      rcu@vger.kernel.org
14956 W:      http://www.rdrop.com/users/paulmck/RCU/
14957 S:      Supported
14958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14959 F:      include/linux/srcu*.h
14960 F:      kernel/rcu/srcu*.c
14961
14962 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14963 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14965 S:      Maintained
14966 F:      drivers/slimbus/
14967 F:      Documentation/devicetree/bindings/slimbus/
14968 F:      include/linux/slimbus.h
14969
14970 SMACK SECURITY MODULE
14971 M:      Casey Schaufler <casey@schaufler-ca.com>
14972 L:      linux-security-module@vger.kernel.org
14973 W:      http://schaufler-ca.com
14974 T:      git git://github.com/cschaufler/smack-next
14975 S:      Maintained
14976 F:      Documentation/admin-guide/LSM/Smack.rst
14977 F:      security/smack/
14978
14979 SMC91x ETHERNET DRIVER
14980 M:      Nicolas Pitre <nico@fluxnic.net>
14981 S:      Odd Fixes
14982 F:      drivers/net/ethernet/smsc/smc91x.*
14983
14984 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14985 M:      Sakari Ailus <sakari.ailus@iki.fi>
14986 L:      linux-media@vger.kernel.org
14987 S:      Maintained
14988 F:      drivers/media/i2c/smiapp/
14989 F:      include/media/i2c/smiapp.h
14990 F:      drivers/media/i2c/smiapp-pll.c
14991 F:      drivers/media/i2c/smiapp-pll.h
14992 F:      include/uapi/linux/smiapp.h
14993 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14994
14995 SMM665 HARDWARE MONITOR DRIVER
14996 M:      Guenter Roeck <linux@roeck-us.net>
14997 L:      linux-hwmon@vger.kernel.org
14998 S:      Maintained
14999 F:      Documentation/hwmon/smm665.rst
15000 F:      drivers/hwmon/smm665.c
15001
15002 SMSC EMC2103 HARDWARE MONITOR DRIVER
15003 M:      Steve Glendinning <steve.glendinning@shawell.net>
15004 L:      linux-hwmon@vger.kernel.org
15005 S:      Maintained
15006 F:      Documentation/hwmon/emc2103.rst
15007 F:      drivers/hwmon/emc2103.c
15008
15009 SMSC SCH5627 HARDWARE MONITOR DRIVER
15010 M:      Hans de Goede <hdegoede@redhat.com>
15011 L:      linux-hwmon@vger.kernel.org
15012 S:      Supported
15013 F:      Documentation/hwmon/sch5627.rst
15014 F:      drivers/hwmon/sch5627.c
15015
15016 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
15017 M:      Steve Glendinning <steve.glendinning@shawell.net>
15018 L:      linux-fbdev@vger.kernel.org
15019 S:      Maintained
15020 F:      drivers/video/fbdev/smscufx.c
15021
15022 SMSC47B397 HARDWARE MONITOR DRIVER
15023 M:      Jean Delvare <jdelvare@suse.com>
15024 L:      linux-hwmon@vger.kernel.org
15025 S:      Maintained
15026 F:      Documentation/hwmon/smsc47b397.rst
15027 F:      drivers/hwmon/smsc47b397.c
15028
15029 SMSC911x ETHERNET DRIVER
15030 M:      Steve Glendinning <steve.glendinning@shawell.net>
15031 L:      netdev@vger.kernel.org
15032 S:      Maintained
15033 F:      include/linux/smsc911x.h
15034 F:      drivers/net/ethernet/smsc/smsc911x.*
15035
15036 SMSC9420 PCI ETHERNET DRIVER
15037 M:      Steve Glendinning <steve.glendinning@shawell.net>
15038 L:      netdev@vger.kernel.org
15039 S:      Maintained
15040 F:      drivers/net/ethernet/smsc/smsc9420.*
15041
15042 SOC-CAMERA V4L2 SUBSYSTEM
15043 L:      linux-media@vger.kernel.org
15044 T:      git git://linuxtv.org/media_tree.git
15045 S:      Orphan
15046 F:      include/media/soc_camera.h
15047 F:      drivers/staging/media/soc_camera/
15048
15049 SOCIONEXT SYNQUACER I2C DRIVER
15050 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
15051 L:      linux-i2c@vger.kernel.org
15052 S:      Maintained
15053 F:      drivers/i2c/busses/i2c-synquacer.c
15054 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
15055
15056 SOCIONEXT UNIPHIER SOUND DRIVER
15057 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15058 S:      Orphan
15059 F:      sound/soc/uniphier/
15060
15061 SOEKRIS NET48XX LED SUPPORT
15062 M:      Chris Boot <bootc@bootc.net>
15063 S:      Maintained
15064 F:      drivers/leds/leds-net48xx.c
15065
15066 SOFT-IWARP DRIVER (siw)
15067 M:      Bernard Metzler <bmt@zurich.ibm.com>
15068 L:      linux-rdma@vger.kernel.org
15069 S:      Supported
15070 F:      drivers/infiniband/sw/siw/
15071 F:      include/uapi/rdma/siw-abi.h
15072
15073 SOFT-ROCE DRIVER (rxe)
15074 M:      Moni Shoua <monis@mellanox.com>
15075 L:      linux-rdma@vger.kernel.org
15076 S:      Supported
15077 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
15078 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
15079 F:      drivers/infiniband/sw/rxe/
15080 F:      include/uapi/rdma/rdma_user_rxe.h
15081
15082 SOFTLOGIC 6x10 MPEG CODEC
15083 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
15084 M:      Anton Sviridenko <anton@corp.bluecherry.net>
15085 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
15086 M:      Andrey Utkin <andrey_utkin@fastmail.com>
15087 M:      Ismael Luceno <ismael@iodev.co.uk>
15088 L:      linux-media@vger.kernel.org
15089 S:      Supported
15090 F:      drivers/media/pci/solo6x10/
15091
15092 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
15093 M:      James Morse <james.morse@arm.com>
15094 L:      linux-arm-kernel@lists.infradead.org
15095 S:      Maintained
15096 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
15097 F:      drivers/firmware/arm_sdei.c
15098 F:      include/linux/arm_sdei.h
15099 F:      include/uapi/linux/arm_sdei.h
15100
15101 SOFTWARE RAID (Multiple Disks) SUPPORT
15102 M:      Song Liu <song@kernel.org>
15103 L:      linux-raid@vger.kernel.org
15104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
15105 S:      Supported
15106 F:      drivers/md/Makefile
15107 F:      drivers/md/Kconfig
15108 F:      drivers/md/md*
15109 F:      drivers/md/raid*
15110 F:      include/linux/raid/
15111 F:      include/uapi/linux/raid/
15112
15113 SOCIONEXT (SNI) AVE NETWORK DRIVER
15114 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15115 L:      netdev@vger.kernel.org
15116 S:      Maintained
15117 F:      drivers/net/ethernet/socionext/sni_ave.c
15118 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
15119
15120 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
15121 M:      Jassi Brar <jaswinder.singh@linaro.org>
15122 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15123 L:      netdev@vger.kernel.org
15124 S:      Maintained
15125 F:      drivers/net/ethernet/socionext/netsec.c
15126 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
15127
15128 SOCIONEXT (SNI) Synquacer SPI DRIVER
15129 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
15130 M:      Jassi Brar <jaswinder.singh@linaro.org>
15131 L:      linux-spi@vger.kernel.org
15132 S:      Maintained
15133 F:      drivers/spi/spi-synquacer.c
15134 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
15135
15136 SOLIDRUN CLEARFOG SUPPORT
15137 M:      Russell King <linux@armlinux.org.uk>
15138 S:      Maintained
15139 F:      arch/arm/boot/dts/armada-388-clearfog*
15140 F:      arch/arm/boot/dts/armada-38x-solidrun-*
15141
15142 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
15143 M:      Russell King <linux@armlinux.org.uk>
15144 S:      Maintained
15145 F:      arch/arm/boot/dts/imx6*-cubox-i*
15146 F:      arch/arm/boot/dts/imx6*-hummingboard*
15147 F:      arch/arm/boot/dts/imx6*-sr-*
15148
15149 SONIC NETWORK DRIVER
15150 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
15151 L:      netdev@vger.kernel.org
15152 S:      Maintained
15153 F:      drivers/net/ethernet/natsemi/sonic.*
15154
15155 SONICS SILICON BACKPLANE DRIVER (SSB)
15156 M:      Michael Buesch <m@bues.ch>
15157 L:      linux-wireless@vger.kernel.org
15158 S:      Maintained
15159 F:      drivers/ssb/
15160 F:      include/linux/ssb/
15161
15162 SONY IMX214 SENSOR DRIVER
15163 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
15164 L:      linux-media@vger.kernel.org
15165 T:      git git://linuxtv.org/media_tree.git
15166 S:      Maintained
15167 F:      drivers/media/i2c/imx214.c
15168 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
15169
15170 SONY IMX258 SENSOR DRIVER
15171 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15172 L:      linux-media@vger.kernel.org
15173 T:      git git://linuxtv.org/media_tree.git
15174 S:      Maintained
15175 F:      drivers/media/i2c/imx258.c
15176
15177 SONY IMX274 SENSOR DRIVER
15178 M:      Leon Luo <leonl@leopardimaging.com>
15179 L:      linux-media@vger.kernel.org
15180 T:      git git://linuxtv.org/media_tree.git
15181 S:      Maintained
15182 F:      drivers/media/i2c/imx274.c
15183 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
15184
15185 SONY IMX319 SENSOR DRIVER
15186 M:      Bingbu Cao <bingbu.cao@intel.com>
15187 L:      linux-media@vger.kernel.org
15188 T:      git git://linuxtv.org/media_tree.git
15189 S:      Maintained
15190 F:      drivers/media/i2c/imx319.c
15191
15192 SONY IMX355 SENSOR DRIVER
15193 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15194 L:      linux-media@vger.kernel.org
15195 T:      git git://linuxtv.org/media_tree.git
15196 S:      Maintained
15197 F:      drivers/media/i2c/imx355.c
15198
15199 SONY MEMORYSTICK SUBSYSTEM
15200 M:      Maxim Levitsky <maximlevitsky@gmail.com>
15201 M:      Alex Dubov <oakad@yahoo.com>
15202 M:      Ulf Hansson <ulf.hansson@linaro.org>
15203 L:      linux-mmc@vger.kernel.org
15204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
15205 S:      Maintained
15206 F:      drivers/memstick/
15207 F:      include/linux/memstick.h
15208
15209 SONY VAIO CONTROL DEVICE DRIVER
15210 M:      Mattia Dongili <malattia@linux.it>
15211 L:      platform-driver-x86@vger.kernel.org
15212 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
15213 S:      Maintained
15214 F:      Documentation/admin-guide/laptops/sony-laptop.rst
15215 F:      drivers/char/sonypi.c
15216 F:      drivers/platform/x86/sony-laptop.c
15217 F:      include/linux/sony-laptop.h
15218
15219 SOUND
15220 M:      Jaroslav Kysela <perex@perex.cz>
15221 M:      Takashi Iwai <tiwai@suse.com>
15222 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15223 W:      http://www.alsa-project.org/
15224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15225 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
15226 S:      Maintained
15227 F:      Documentation/sound/
15228 F:      include/sound/
15229 F:      include/uapi/sound/
15230 F:      sound/
15231
15232 SOUND - COMPRESSED AUDIO
15233 M:      Vinod Koul <vkoul@kernel.org>
15234 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15236 S:      Supported
15237 F:      Documentation/sound/designs/compress-offload.rst
15238 F:      include/sound/compress_driver.h
15239 F:      include/uapi/sound/compress_*
15240 F:      sound/core/compress_offload.c
15241 F:      sound/soc/soc-compress.c
15242
15243 SOUND - DMAENGINE HELPERS
15244 M:      Lars-Peter Clausen <lars@metafoo.de>
15245 S:      Supported
15246 F:      include/sound/dmaengine_pcm.h
15247 F:      sound/core/pcm_dmaengine.c
15248 F:      sound/soc/soc-generic-dmaengine-pcm.c
15249
15250 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
15251 M:      Liam Girdwood <lgirdwood@gmail.com>
15252 M:      Mark Brown <broonie@kernel.org>
15253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
15254 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15255 W:      http://alsa-project.org/main/index.php/ASoC
15256 S:      Supported
15257 F:      Documentation/devicetree/bindings/sound/
15258 F:      Documentation/sound/soc/
15259 F:      sound/soc/
15260 F:      include/dt-bindings/sound/
15261 F:      include/sound/soc*
15262
15263 SOUNDWIRE SUBSYSTEM
15264 M:      Vinod Koul <vkoul@kernel.org>
15265 M:      Sanyog Kale <sanyog.r.kale@intel.com>
15266 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
15267 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15268 S:      Supported
15269 F:      Documentation/driver-api/soundwire/
15270 F:      drivers/soundwire/
15271 F:      include/linux/soundwire/
15272
15273 SP2 MEDIA DRIVER
15274 M:      Olli Salonen <olli.salonen@iki.fi>
15275 L:      linux-media@vger.kernel.org
15276 W:      https://linuxtv.org
15277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15278 S:      Maintained
15279 F:      drivers/media/dvb-frontends/sp2*
15280
15281 SPARC + UltraSPARC (sparc/sparc64)
15282 M:      "David S. Miller" <davem@davemloft.net>
15283 L:      sparclinux@vger.kernel.org
15284 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
15285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15287 S:      Maintained
15288 F:      arch/sparc/
15289 F:      drivers/sbus/
15290
15291 SPARC SERIAL DRIVERS
15292 M:      "David S. Miller" <davem@davemloft.net>
15293 L:      sparclinux@vger.kernel.org
15294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
15295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
15296 S:      Maintained
15297 F:      include/linux/sunserialcore.h
15298 F:      drivers/tty/serial/suncore.c
15299 F:      drivers/tty/serial/sunhv.c
15300 F:      drivers/tty/serial/sunsab.c
15301 F:      drivers/tty/serial/sunsab.h
15302 F:      drivers/tty/serial/sunsu.c
15303 F:      drivers/tty/serial/sunzilog.c
15304 F:      drivers/tty/serial/sunzilog.h
15305 F:      drivers/tty/vcc.c
15306
15307 SPARSE CHECKER
15308 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
15309 L:      linux-sparse@vger.kernel.org
15310 W:      https://sparse.wiki.kernel.org/
15311 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
15312 S:      Maintained
15313 F:      include/linux/compiler.h
15314
15315 SPEAR CLOCK FRAMEWORK SUPPORT
15316 M:      Viresh Kumar <vireshk@kernel.org>
15317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15318 W:      http://www.st.com/spear
15319 S:      Maintained
15320 F:      drivers/clk/spear/
15321
15322 SPEAR PLATFORM SUPPORT
15323 M:      Viresh Kumar <vireshk@kernel.org>
15324 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
15325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15326 W:      http://www.st.com/spear
15327 S:      Maintained
15328 F:      arch/arm/boot/dts/spear*
15329 F:      arch/arm/mach-spear/
15330
15331 SPI NOR SUBSYSTEM
15332 M:      Marek Vasut <marek.vasut@gmail.com>
15333 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
15334 L:      linux-mtd@lists.infradead.org
15335 W:      http://www.linux-mtd.infradead.org/
15336 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
15337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
15338 S:      Maintained
15339 F:      drivers/mtd/spi-nor/
15340 F:      include/linux/mtd/spi-nor.h
15341
15342 SPI SUBSYSTEM
15343 M:      Mark Brown <broonie@kernel.org>
15344 L:      linux-spi@vger.kernel.org
15345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
15346 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
15347 S:      Maintained
15348 F:      Documentation/devicetree/bindings/spi/
15349 F:      Documentation/spi/
15350 F:      drivers/spi/
15351 F:      include/linux/spi/
15352 F:      include/uapi/linux/spi/
15353 F:      tools/spi/
15354
15355 SPIDERNET NETWORK DRIVER for CELL
15356 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
15357 L:      netdev@vger.kernel.org
15358 S:      Supported
15359 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
15360 F:      drivers/net/ethernet/toshiba/spider_net*
15361
15362 SPMI SUBSYSTEM
15363 R:      Stephen Boyd <sboyd@kernel.org>
15364 L:      linux-arm-msm@vger.kernel.org
15365 F:      Documentation/devicetree/bindings/spmi/
15366 F:      drivers/spmi/
15367 F:      include/dt-bindings/spmi/spmi.h
15368 F:      include/linux/spmi.h
15369 F:      include/trace/events/spmi.h
15370
15371 SPU FILE SYSTEM
15372 M:      Jeremy Kerr <jk@ozlabs.org>
15373 L:      linuxppc-dev@lists.ozlabs.org
15374 W:      http://www.ibm.com/developerworks/power/cell/
15375 S:      Supported
15376 F:      Documentation/filesystems/spufs.txt
15377 F:      arch/powerpc/platforms/cell/spufs/
15378
15379 SQUASHFS FILE SYSTEM
15380 M:      Phillip Lougher <phillip@squashfs.org.uk>
15381 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
15382 W:      http://squashfs.org.uk
15383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
15384 S:      Maintained
15385 F:      Documentation/filesystems/squashfs.txt
15386 F:      fs/squashfs/
15387
15388 SRM (Alpha) environment access
15389 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
15390 S:      Maintained
15391 F:      arch/alpha/kernel/srm_env.c
15392
15393 ST LSM6DSx IMU IIO DRIVER
15394 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
15395 L:      linux-iio@vger.kernel.org
15396 W:      http://www.st.com/
15397 S:      Maintained
15398 F:      drivers/iio/imu/st_lsm6dsx/
15399 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
15400
15401 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
15402 M:      Mickael Guene <mickael.guene@st.com>
15403 L:      linux-media@vger.kernel.org
15404 T:      git git://linuxtv.org/media_tree.git
15405 S:      Maintained
15406 F:      drivers/media/i2c/st-mipid02.c
15407 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
15408
15409 ST STM32 I2C/SMBUS DRIVER
15410 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
15411 L:      linux-i2c@vger.kernel.org
15412 S:      Maintained
15413 F:      drivers/i2c/busses/i2c-stm32*
15414
15415 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
15416 M:      Song Qiang <songqiang1304521@gmail.com>
15417 L:      linux-iio@vger.kernel.org
15418 S:      Maintained
15419 F:      drivers/iio/proximity/vl53l0x-i2c.c
15420 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
15421
15422 STABLE BRANCH
15423 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15424 M:      Sasha Levin <sashal@kernel.org>
15425 L:      stable@vger.kernel.org
15426 S:      Supported
15427 F:      Documentation/process/stable-kernel-rules.rst
15428
15429 STAGING - COMEDI
15430 M:      Ian Abbott <abbotti@mev.co.uk>
15431 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
15432 S:      Odd Fixes
15433 F:      drivers/staging/comedi/
15434
15435 STAGING - FIELDBUS SUBSYSTEM
15436 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15437 S:      Maintained
15438 F:      drivers/staging/fieldbus/*
15439 F:      drivers/staging/fieldbus/Documentation/
15440
15441 STAGING - HMS ANYBUS-S BUS
15442 M:      Sven Van Asbroeck <TheSven73@gmail.com>
15443 S:      Maintained
15444 F:      drivers/staging/fieldbus/anybuss/
15445
15446 STAGING - INDUSTRIAL IO
15447 M:      Jonathan Cameron <jic23@kernel.org>
15448 L:      linux-iio@vger.kernel.org
15449 S:      Odd Fixes
15450 F:      Documentation/devicetree/bindings/staging/iio/
15451 F:      drivers/staging/iio/
15452
15453 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
15454 M:      Marc Dietrich <marvin24@gmx.de>
15455 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
15456 L:      linux-tegra@vger.kernel.org
15457 S:      Maintained
15458 F:      drivers/staging/nvec/
15459
15460 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
15461 M:      Jens Frederich <jfrederich@gmail.com>
15462 M:      Daniel Drake <dsd@laptop.org>
15463 M:      Jon Nettleton <jon.nettleton@gmail.com>
15464 W:      http://wiki.laptop.org/go/DCON
15465 S:      Maintained
15466 F:      drivers/staging/olpc_dcon/
15467
15468 STAGING - REALTEK RTL8712U DRIVERS
15469 M:      Larry Finger <Larry.Finger@lwfinger.net>
15470 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
15471 S:      Odd Fixes
15472 F:      drivers/staging/rtl8712/
15473
15474 STAGING - REALTEK RTL8188EU DRIVERS
15475 M:      Larry Finger <Larry.Finger@lwfinger.net>
15476 S:      Odd Fixes
15477 F:      drivers/staging/rtl8188eu/
15478
15479 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
15480 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15481 M:      Teddy Wang <teddy.wang@siliconmotion.com>
15482 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15483 L:      linux-fbdev@vger.kernel.org
15484 S:      Maintained
15485 F:      drivers/staging/sm750fb/
15486
15487 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
15488 M:      William Hubbs <w.d.hubbs@gmail.com>
15489 M:      Chris Brannon <chris@the-brannons.com>
15490 M:      Kirk Reiser <kirk@reisers.ca>
15491 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
15492 L:      speakup@linux-speakup.org
15493 W:      http://www.linux-speakup.org/
15494 S:      Odd Fixes
15495 F:      drivers/staging/speakup/
15496
15497 STAGING - VIA VT665X DRIVERS
15498 M:      Forest Bond <forest@alittletooquiet.net>
15499 S:      Odd Fixes
15500 F:      drivers/staging/vt665?/
15501
15502 STAGING - WILC1000 WIFI DRIVER
15503 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
15504 M:      Ajay Singh <ajay.kathat@microchip.com>
15505 L:      linux-wireless@vger.kernel.org
15506 S:      Supported
15507 F:      drivers/staging/wilc1000/
15508
15509 STAGING - SEPS525 LCD CONTROLLER DRIVERS
15510 M:      Michael Hennerich <michael.hennerich@analog.com>
15511 M:      Beniamin Bia <beniamin.bia@analog.com>
15512 L:      linux-fbdev@vger.kernel.org
15513 S:      Supported
15514 F:      drivers/staging/fbtft/fb_seps525.c
15515 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
15516
15517 STAGING SUBSYSTEM
15518 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
15520 L:      devel@driverdev.osuosl.org
15521 S:      Supported
15522 F:      drivers/staging/
15523
15524 STARFIRE/DURALAN NETWORK DRIVER
15525 M:      Ion Badulescu <ionut@badula.org>
15526 S:      Odd Fixes
15527 F:      drivers/net/ethernet/adaptec/starfire*
15528
15529 STEC S1220 SKD DRIVER
15530 M:      Damien Le Moal <Damien.LeMoal@wdc.com>
15531 L:      linux-block@vger.kernel.org
15532 S:      Maintained
15533 F:      drivers/block/skd*[ch]
15534
15535 STI AUDIO (ASoC) DRIVERS
15536 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15538 S:      Maintained
15539 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
15540 F:      sound/soc/sti/
15541
15542 STI CEC DRIVER
15543 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
15544 S:      Maintained
15545 F:      drivers/media/platform/sti/cec/
15546 F:      Documentation/devicetree/bindings/media/stih-cec.txt
15547
15548 STK1160 USB VIDEO CAPTURE DRIVER
15549 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
15550 L:      linux-media@vger.kernel.org
15551 T:      git git://linuxtv.org/media_tree.git
15552 S:      Maintained
15553 F:      drivers/media/usb/stk1160/
15554
15555 STM32 AUDIO (ASoC) DRIVERS
15556 M:      Olivier Moysan <olivier.moysan@st.com>
15557 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
15558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15559 S:      Maintained
15560 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
15561 F:      sound/soc/stm/
15562
15563 STM32 TIMER/LPTIMER DRIVERS
15564 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
15565 S:      Maintained
15566 F:      drivers/*/stm32-*timer*
15567 F:      drivers/pwm/pwm-stm32*
15568 F:      include/linux/*/stm32-*tim*
15569 F:      Documentation/ABI/testing/*timer-stm32
15570 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15571 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15572
15573 STMMAC ETHERNET DRIVER
15574 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15575 M:      Alexandre Torgue <alexandre.torgue@st.com>
15576 M:      Jose Abreu <joabreu@synopsys.com>
15577 L:      netdev@vger.kernel.org
15578 W:      http://www.stlinux.com
15579 S:      Supported
15580 F:      drivers/net/ethernet/stmicro/stmmac/
15581
15582 SUN3/3X
15583 M:      Sam Creasey <sammy@sammy.net>
15584 W:      http://sammy.net/sun3/
15585 S:      Maintained
15586 F:      arch/m68k/kernel/*sun3*
15587 F:      arch/m68k/sun3*/
15588 F:      arch/m68k/include/asm/sun3*
15589 F:      drivers/net/ethernet/i825xx/sun3*
15590
15591 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15592 M:      Hans de Goede <hdegoede@redhat.com>
15593 L:      linux-input@vger.kernel.org
15594 S:      Maintained
15595 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15596 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15597
15598 SUNDANCE NETWORK DRIVER
15599 M:      Denis Kirjanov <kda@linux-powerpc.org>
15600 L:      netdev@vger.kernel.org
15601 S:      Maintained
15602 F:      drivers/net/ethernet/dlink/sundance.c
15603
15604 SUPERH
15605 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15606 M:      Rich Felker <dalias@libc.org>
15607 L:      linux-sh@vger.kernel.org
15608 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15609 S:      Maintained
15610 F:      Documentation/sh/
15611 F:      arch/sh/
15612 F:      drivers/sh/
15613
15614 SUSPEND TO RAM
15615 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15616 M:      Len Brown <len.brown@intel.com>
15617 M:      Pavel Machek <pavel@ucw.cz>
15618 L:      linux-pm@vger.kernel.org
15619 B:      https://bugzilla.kernel.org
15620 S:      Supported
15621 F:      Documentation/power/
15622 F:      arch/x86/kernel/acpi/
15623 F:      drivers/base/power/
15624 F:      kernel/power/
15625 F:      include/linux/suspend.h
15626 F:      include/linux/freezer.h
15627 F:      include/linux/pm.h
15628
15629 SVGA HANDLING
15630 M:      Martin Mares <mj@ucw.cz>
15631 L:      linux-video@atrey.karlin.mff.cuni.cz
15632 S:      Maintained
15633 F:      Documentation/admin-guide/svga.rst
15634 F:      arch/x86/boot/video*
15635
15636 SWIOTLB SUBSYSTEM
15637 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15638 L:      iommu@lists.linux-foundation.org
15639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15640 S:      Supported
15641 F:      kernel/dma/swiotlb.c
15642 F:      arch/*/kernel/pci-swiotlb.c
15643 F:      include/linux/swiotlb.h
15644
15645 SWITCHDEV
15646 M:      Jiri Pirko <jiri@resnulli.us>
15647 M:      Ivan Vecera <ivecera@redhat.com>
15648 L:      netdev@vger.kernel.org
15649 S:      Supported
15650 F:      net/switchdev/
15651 F:      include/net/switchdev.h
15652
15653 SY8106A REGULATOR DRIVER
15654 M:      Icenowy Zheng <icenowy@aosc.io>
15655 S:      Maintained
15656 F:      drivers/regulator/sy8106a-regulator.c
15657 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15658
15659 SYNC FILE FRAMEWORK
15660 M:      Sumit Semwal <sumit.semwal@linaro.org>
15661 R:      Gustavo Padovan <gustavo@padovan.org>
15662 S:      Maintained
15663 L:      linux-media@vger.kernel.org
15664 L:      dri-devel@lists.freedesktop.org
15665 F:      drivers/dma-buf/sync_*
15666 F:      drivers/dma-buf/dma-fence*
15667 F:      drivers/dma-buf/sw_sync.c
15668 F:      include/linux/sync_file.h
15669 F:      include/uapi/linux/sync_file.h
15670 F:      Documentation/driver-api/sync_file.rst
15671 T:      git git://anongit.freedesktop.org/drm/drm-misc
15672
15673 SYNOPSYS ARC ARCHITECTURE
15674 M:      Vineet Gupta <vgupta@synopsys.com>
15675 L:      linux-snps-arc@lists.infradead.org
15676 S:      Supported
15677 F:      arch/arc/
15678 F:      Documentation/devicetree/bindings/arc/*
15679 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15680 F:      drivers/clocksource/arc_timer.c
15681 F:      drivers/tty/serial/arc_uart.c
15682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15683
15684 SYNOPSYS ARC HSDK SDP pll clock driver
15685 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15686 S:      Supported
15687 F:      drivers/clk/clk-hsdk-pll.c
15688 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15689
15690 SYNOPSYS ARC SDP clock driver
15691 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15692 S:      Supported
15693 F:      drivers/clk/axs10x/*
15694 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15695
15696 SYNOPSYS ARC SDP platform support
15697 M:      Alexey Brodkin <abrodkin@synopsys.com>
15698 S:      Supported
15699 F:      arch/arc/plat-axs10x
15700 F:      arch/arc/boot/dts/ax*
15701 F:      Documentation/devicetree/bindings/arc/axs10*
15702
15703 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15704 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15705 S:      Supported
15706 F:      drivers/reset/reset-axs10x.c
15707 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15708
15709 SYNOPSYS CREG GPIO DRIVER
15710 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15711 S:      Maintained
15712 F:      drivers/gpio/gpio-creg-snps.c
15713 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15714
15715 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15716 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15717 S:      Maintained
15718 F:      drivers/tty/serial/8250/8250_dw.c
15719
15720 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15721 M:      Hoan Tran <hoan@os.amperecomputing.com>
15722 L:      linux-gpio@vger.kernel.org
15723 S:      Maintained
15724 F:      drivers/gpio/gpio-dwapb.c
15725 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15726
15727 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15728 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15729 S:      Maintained
15730 F:      drivers/dma/dw-axi-dmac/
15731 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15732
15733 SYNOPSYS DESIGNWARE DMAC DRIVER
15734 M:      Viresh Kumar <vireshk@kernel.org>
15735 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15736 S:      Maintained
15737 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15738 F:      drivers/dma/dw/
15739 F:      include/dt-bindings/dma/dw-dmac.h
15740 F:      include/linux/dma/dw.h
15741 F:      include/linux/platform_data/dma-dw.h
15742
15743 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15744 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15745 L:      netdev@vger.kernel.org
15746 S:      Supported
15747 F:      drivers/net/ethernet/synopsys/
15748
15749 SYNOPSYS DESIGNWARE I2C DRIVER
15750 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15751 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15752 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15753 L:      linux-i2c@vger.kernel.org
15754 S:      Maintained
15755 F:      drivers/i2c/busses/i2c-designware-*
15756 F:      include/linux/platform_data/i2c-designware.h
15757
15758 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15759 M:      Jaehoon Chung <jh80.chung@samsung.com>
15760 L:      linux-mmc@vger.kernel.org
15761 S:      Maintained
15762 F:      drivers/mmc/host/dw_mmc*
15763
15764 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15765 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15766 S:      Supported
15767 F:      drivers/reset/reset-hsdk.c
15768 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15769 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15770
15771 SYSTEM CONFIGURATION (SYSCON)
15772 M:      Lee Jones <lee.jones@linaro.org>
15773 M:      Arnd Bergmann <arnd@arndb.de>
15774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15775 S:      Supported
15776 F:      drivers/mfd/syscon.c
15777
15778 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15779 M:      Sudeep Holla <sudeep.holla@arm.com>
15780 L:      linux-arm-kernel@lists.infradead.org
15781 S:      Maintained
15782 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15783 F:      drivers/clk/clk-sc[mp]i.c
15784 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15785 F:      drivers/firmware/arm_scpi.c
15786 F:      drivers/firmware/arm_scmi/
15787 F:      drivers/reset/reset-scmi.c
15788 F:      include/linux/sc[mp]i_protocol.h
15789
15790 SYSTEM RESET/SHUTDOWN DRIVERS
15791 M:      Sebastian Reichel <sre@kernel.org>
15792 L:      linux-pm@vger.kernel.org
15793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15794 S:      Maintained
15795 F:      Documentation/devicetree/bindings/power/reset/
15796 F:      drivers/power/reset/
15797
15798 SYSTEM TRACE MODULE CLASS
15799 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15800 S:      Maintained
15801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15802 F:      Documentation/trace/stm.rst
15803 F:      drivers/hwtracing/stm/
15804 F:      include/linux/stm.h
15805 F:      include/uapi/linux/stm.h
15806
15807 SYSV FILESYSTEM
15808 M:      Christoph Hellwig <hch@infradead.org>
15809 S:      Maintained
15810 F:      Documentation/filesystems/sysv-fs.txt
15811 F:      fs/sysv/
15812 F:      include/linux/sysv_fs.h
15813
15814 TASKSTATS STATISTICS INTERFACE
15815 M:      Balbir Singh <bsingharora@gmail.com>
15816 S:      Maintained
15817 F:      Documentation/accounting/taskstats*
15818 F:      include/linux/taskstats*
15819 F:      kernel/taskstats.c
15820
15821 TC subsystem
15822 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15823 M:      Cong Wang <xiyou.wangcong@gmail.com>
15824 M:      Jiri Pirko <jiri@resnulli.us>
15825 L:      netdev@vger.kernel.org
15826 S:      Maintained
15827 F:      include/net/pkt_cls.h
15828 F:      include/net/pkt_sched.h
15829 F:      include/net/tc_act/
15830 F:      include/uapi/linux/pkt_cls.h
15831 F:      include/uapi/linux/pkt_sched.h
15832 F:      include/uapi/linux/tc_act/
15833 F:      include/uapi/linux/tc_ematch/
15834 F:      net/sched/
15835
15836 TC90522 MEDIA DRIVER
15837 M:      Akihiro Tsukada <tskd08@gmail.com>
15838 L:      linux-media@vger.kernel.org
15839 S:      Odd Fixes
15840 F:      drivers/media/dvb-frontends/tc90522*
15841
15842 TCP LOW PRIORITY MODULE
15843 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15844 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15845 W:      http://tcp-lp-mod.sourceforge.net/
15846 S:      Maintained
15847 F:      net/ipv4/tcp_lp.c
15848
15849 TDA10071 MEDIA DRIVER
15850 M:      Antti Palosaari <crope@iki.fi>
15851 L:      linux-media@vger.kernel.org
15852 W:      https://linuxtv.org
15853 W:      http://palosaari.fi/linux/
15854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15855 T:      git git://linuxtv.org/anttip/media_tree.git
15856 S:      Maintained
15857 F:      drivers/media/dvb-frontends/tda10071*
15858
15859 TDA18212 MEDIA DRIVER
15860 M:      Antti Palosaari <crope@iki.fi>
15861 L:      linux-media@vger.kernel.org
15862 W:      https://linuxtv.org
15863 W:      http://palosaari.fi/linux/
15864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15865 T:      git git://linuxtv.org/anttip/media_tree.git
15866 S:      Maintained
15867 F:      drivers/media/tuners/tda18212*
15868
15869 TDA18218 MEDIA DRIVER
15870 M:      Antti Palosaari <crope@iki.fi>
15871 L:      linux-media@vger.kernel.org
15872 W:      https://linuxtv.org
15873 W:      http://palosaari.fi/linux/
15874 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15875 T:      git git://linuxtv.org/anttip/media_tree.git
15876 S:      Maintained
15877 F:      drivers/media/tuners/tda18218*
15878
15879 TDA18250 MEDIA DRIVER
15880 M:      Olli Salonen <olli.salonen@iki.fi>
15881 L:      linux-media@vger.kernel.org
15882 W:      https://linuxtv.org
15883 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15884 T:      git git://linuxtv.org/media_tree.git
15885 S:      Maintained
15886 F:      drivers/media/tuners/tda18250*
15887
15888 TDA18271 MEDIA DRIVER
15889 M:      Michael Krufky <mkrufky@linuxtv.org>
15890 L:      linux-media@vger.kernel.org
15891 W:      https://linuxtv.org
15892 W:      http://github.com/mkrufky
15893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15894 T:      git git://linuxtv.org/mkrufky/tuners.git
15895 S:      Maintained
15896 F:      drivers/media/tuners/tda18271*
15897
15898 TDA1997x MEDIA DRIVER
15899 M:      Tim Harvey <tharvey@gateworks.com>
15900 L:      linux-media@vger.kernel.org
15901 W:      https://linuxtv.org
15902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15903 S:      Maintained
15904 F:      drivers/media/i2c/tda1997x.*
15905
15906 TDA827x MEDIA DRIVER
15907 M:      Michael Krufky <mkrufky@linuxtv.org>
15908 L:      linux-media@vger.kernel.org
15909 W:      https://linuxtv.org
15910 W:      http://github.com/mkrufky
15911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15912 T:      git git://linuxtv.org/mkrufky/tuners.git
15913 S:      Maintained
15914 F:      drivers/media/tuners/tda8290.*
15915
15916 TDA8290 MEDIA DRIVER
15917 M:      Michael Krufky <mkrufky@linuxtv.org>
15918 L:      linux-media@vger.kernel.org
15919 W:      https://linuxtv.org
15920 W:      http://github.com/mkrufky
15921 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15922 T:      git git://linuxtv.org/mkrufky/tuners.git
15923 S:      Maintained
15924 F:      drivers/media/tuners/tda8290.*
15925
15926 TDA9840 MEDIA DRIVER
15927 M:      Hans Verkuil <hverkuil@xs4all.nl>
15928 L:      linux-media@vger.kernel.org
15929 T:      git git://linuxtv.org/media_tree.git
15930 W:      https://linuxtv.org
15931 S:      Maintained
15932 F:      drivers/media/i2c/tda9840*
15933
15934 TEA5761 TUNER DRIVER
15935 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15936 L:      linux-media@vger.kernel.org
15937 W:      https://linuxtv.org
15938 T:      git git://linuxtv.org/media_tree.git
15939 S:      Odd fixes
15940 F:      drivers/media/tuners/tea5761.*
15941
15942 TEA5767 TUNER DRIVER
15943 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15944 L:      linux-media@vger.kernel.org
15945 W:      https://linuxtv.org
15946 T:      git git://linuxtv.org/media_tree.git
15947 S:      Maintained
15948 F:      drivers/media/tuners/tea5767.*
15949
15950 TEA6415C MEDIA DRIVER
15951 M:      Hans Verkuil <hverkuil@xs4all.nl>
15952 L:      linux-media@vger.kernel.org
15953 T:      git git://linuxtv.org/media_tree.git
15954 W:      https://linuxtv.org
15955 S:      Maintained
15956 F:      drivers/media/i2c/tea6415c*
15957
15958 TEA6420 MEDIA DRIVER
15959 M:      Hans Verkuil <hverkuil@xs4all.nl>
15960 L:      linux-media@vger.kernel.org
15961 T:      git git://linuxtv.org/media_tree.git
15962 W:      https://linuxtv.org
15963 S:      Maintained
15964 F:      drivers/media/i2c/tea6420*
15965
15966 TEAM DRIVER
15967 M:      Jiri Pirko <jiri@resnulli.us>
15968 L:      netdev@vger.kernel.org
15969 S:      Supported
15970 F:      drivers/net/team/
15971 F:      include/linux/if_team.h
15972 F:      include/uapi/linux/if_team.h
15973
15974 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15975 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
15976 S:      Maintained
15977 F:      arch/x86/platform/ts5500/
15978
15979 TECHNOTREND USB IR RECEIVER
15980 M:      Sean Young <sean@mess.org>
15981 L:      linux-media@vger.kernel.org
15982 S:      Maintained
15983 F:      drivers/media/rc/ttusbir.c
15984
15985 TECHWELL TW9910 VIDEO DECODER
15986 L:      linux-media@vger.kernel.org
15987 S:      Orphan
15988 F:      drivers/media/i2c/tw9910.c
15989 F:      include/media/i2c/tw9910.h
15990
15991 TEE SUBSYSTEM
15992 M:      Jens Wiklander <jens.wiklander@linaro.org>
15993 L:      tee-dev@lists.linaro.org
15994 S:      Maintained
15995 F:      include/linux/tee_drv.h
15996 F:      include/uapi/linux/tee.h
15997 F:      drivers/tee/
15998 F:      Documentation/tee.txt
15999
16000 TEGRA ARCHITECTURE SUPPORT
16001 M:      Thierry Reding <thierry.reding@gmail.com>
16002 M:      Jonathan Hunter <jonathanh@nvidia.com>
16003 L:      linux-tegra@vger.kernel.org
16004 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
16005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
16006 S:      Supported
16007 N:      [^a-z]tegra
16008
16009 TEGRA CLOCK DRIVER
16010 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
16011 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
16012 S:      Supported
16013 F:      drivers/clk/tegra/
16014
16015 TEGRA DMA DRIVERS
16016 M:      Laxman Dewangan <ldewangan@nvidia.com>
16017 M:      Jon Hunter <jonathanh@nvidia.com>
16018 S:      Supported
16019 F:      drivers/dma/tegra*
16020
16021 TEGRA I2C DRIVER
16022 M:      Laxman Dewangan <ldewangan@nvidia.com>
16023 R:      Dmitry Osipenko <digetx@gmail.com>
16024 S:      Supported
16025 F:      drivers/i2c/busses/i2c-tegra.c
16026
16027 TEGRA IOMMU DRIVERS
16028 M:      Thierry Reding <thierry.reding@gmail.com>
16029 L:      linux-tegra@vger.kernel.org
16030 S:      Supported
16031 F:      drivers/iommu/tegra*
16032
16033 TEGRA KBC DRIVER
16034 M:      Laxman Dewangan <ldewangan@nvidia.com>
16035 S:      Supported
16036 F:      drivers/input/keyboard/tegra-kbc.c
16037
16038 TEGRA NAND DRIVER
16039 M:      Stefan Agner <stefan@agner.ch>
16040 M:      Lucas Stach <dev@lynxeye.de>
16041 S:      Maintained
16042 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
16043 F:      drivers/mtd/nand/raw/tegra_nand.c
16044
16045 TEGRA PWM DRIVER
16046 M:      Thierry Reding <thierry.reding@gmail.com>
16047 S:      Supported
16048 F:      drivers/pwm/pwm-tegra.c
16049
16050 TEGRA SERIAL DRIVER
16051 M:      Laxman Dewangan <ldewangan@nvidia.com>
16052 S:      Supported
16053 F:      drivers/tty/serial/serial-tegra.c
16054
16055 TEGRA SPI DRIVER
16056 M:      Laxman Dewangan <ldewangan@nvidia.com>
16057 S:      Supported
16058 F:      drivers/spi/spi-tegra*
16059
16060 TEGRA XUSB PADCTL DRIVER
16061 M:      JC Kuo <jckuo@nvidia.com>
16062 S:      Supported
16063 F:      drivers/phy/tegra/xusb*
16064
16065 TEHUTI ETHERNET DRIVER
16066 M:      Andy Gospodarek <andy@greyhouse.net>
16067 L:      netdev@vger.kernel.org
16068 S:      Supported
16069 F:      drivers/net/ethernet/tehuti/*
16070
16071 Telecom Clock Driver for MCPL0010
16072 M:      Mark Gross <mark.gross@intel.com>
16073 S:      Supported
16074 F:      drivers/char/tlclk.c
16075
16076 TENSILICA XTENSA PORT (xtensa)
16077 M:      Chris Zankel <chris@zankel.net>
16078 M:      Max Filippov <jcmvbkbc@gmail.com>
16079 L:      linux-xtensa@linux-xtensa.org
16080 T:      git git://github.com/czankel/xtensa-linux.git
16081 S:      Maintained
16082 F:      arch/xtensa/
16083 F:      drivers/irqchip/irq-xtensa-*
16084
16085 Texas Instruments' System Control Interface (TISCI) Protocol Driver
16086 M:      Nishanth Menon <nm@ti.com>
16087 M:      Tero Kristo <t-kristo@ti.com>
16088 M:      Santosh Shilimkar <ssantosh@kernel.org>
16089 L:      linux-arm-kernel@lists.infradead.org
16090 S:      Maintained
16091 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
16092 F:      drivers/firmware/ti_sci*
16093 F:      include/linux/soc/ti/ti_sci_protocol.h
16094 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
16095 F:      drivers/soc/ti/ti_sci_pm_domains.c
16096 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
16097 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
16098 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
16099 F:      drivers/clk/keystone/sci-clk.c
16100 F:      drivers/reset/reset-ti-sci.c
16101 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.txt
16102 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.txt
16103 F:      drivers/irqchip/irq-ti-sci-intr.c
16104 F:      drivers/irqchip/irq-ti-sci-inta.c
16105 F:      include/linux/soc/ti/ti_sci_inta_msi.h
16106 F:      drivers/soc/ti/ti_sci_inta_msi.c
16107
16108 Texas Instruments ASoC drivers
16109 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16110 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16111 S:      Maintained
16112 F:      sound/soc/ti/
16113
16114 Texas Instruments' DAC7612 DAC Driver
16115 M:      Ricardo Ribalda <ricardo@ribalda.com>
16116 L:      linux-iio@vger.kernel.org
16117 S:      Supported
16118 F:      drivers/iio/dac/ti-dac7612.c
16119 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
16120
16121 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
16122 M:      Hans Verkuil <hverkuil@xs4all.nl>
16123 L:      linux-media@vger.kernel.org
16124 T:      git git://linuxtv.org/media_tree.git
16125 W:      https://linuxtv.org
16126 S:      Maintained
16127 F:      drivers/media/radio/radio-raremono.c
16128
16129 THERMAL
16130 M:      Zhang Rui <rui.zhang@intel.com>
16131 M:      Eduardo Valentin <edubezval@gmail.com>
16132 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
16133 R:      Amit Kucheria <amit.kucheria@verdurent.com>
16134 L:      linux-pm@vger.kernel.org
16135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
16136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
16137 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16138 S:      Supported
16139 F:      drivers/thermal/
16140 F:      include/linux/thermal.h
16141 F:      include/uapi/linux/thermal.h
16142 F:      include/linux/cpu_cooling.h
16143 F:      Documentation/devicetree/bindings/thermal/
16144
16145 THERMAL/CPU_COOLING
16146 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
16147 M:      Viresh Kumar <viresh.kumar@linaro.org>
16148 M:      Javi Merino <javi.merino@kernel.org>
16149 L:      linux-pm@vger.kernel.org
16150 S:      Supported
16151 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
16152 F:      drivers/thermal/cpu_cooling.c
16153 F:      include/linux/cpu_cooling.h
16154
16155 THINKPAD ACPI EXTRAS DRIVER
16156 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
16157 L:      ibm-acpi-devel@lists.sourceforge.net
16158 L:      platform-driver-x86@vger.kernel.org
16159 W:      http://ibm-acpi.sourceforge.net
16160 W:      http://thinkwiki.org/wiki/Ibm-acpi
16161 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
16162 S:      Maintained
16163 F:      drivers/platform/x86/thinkpad_acpi.c
16164
16165 THUNDERBOLT DRIVER
16166 M:      Andreas Noever <andreas.noever@gmail.com>
16167 M:      Michael Jamet <michael.jamet@intel.com>
16168 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16169 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
16171 S:      Maintained
16172 F:      Documentation/admin-guide/thunderbolt.rst
16173 F:      drivers/thunderbolt/
16174 F:      include/linux/thunderbolt.h
16175
16176 THUNDERBOLT NETWORK DRIVER
16177 M:      Michael Jamet <michael.jamet@intel.com>
16178 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16179 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
16180 L:      netdev@vger.kernel.org
16181 S:      Maintained
16182 F:      drivers/net/thunderbolt.c
16183
16184 THUNDERX GPIO DRIVER
16185 M:      David Daney <david.daney@cavium.com>
16186 S:      Maintained
16187 F:      drivers/gpio/gpio-thunderx.c
16188
16189 TI AM437X VPFE DRIVER
16190 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16191 L:      linux-media@vger.kernel.org
16192 W:      https://linuxtv.org
16193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16194 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16195 S:      Maintained
16196 F:      drivers/media/platform/am437x/
16197
16198 TI BANDGAP AND THERMAL DRIVER
16199 M:      Eduardo Valentin <edubezval@gmail.com>
16200 M:      Keerthy <j-keerthy@ti.com>
16201 L:      linux-pm@vger.kernel.org
16202 L:      linux-omap@vger.kernel.org
16203 S:      Maintained
16204 F:      drivers/thermal/ti-soc-thermal/
16205
16206 TI BQ27XXX POWER SUPPLY DRIVER
16207 R:      Andrew F. Davis <afd@ti.com>
16208 F:      include/linux/power/bq27xxx_battery.h
16209 F:      drivers/power/supply/bq27xxx_battery.c
16210 F:      drivers/power/supply/bq27xxx_battery_i2c.c
16211
16212 TI CDCE706 CLOCK DRIVER
16213 M:      Max Filippov <jcmvbkbc@gmail.com>
16214 S:      Maintained
16215 F:      drivers/clk/clk-cdce706.c
16216
16217 TI CLOCK DRIVER
16218 M:      Tero Kristo <t-kristo@ti.com>
16219 L:      linux-omap@vger.kernel.org
16220 S:      Maintained
16221 F:      drivers/clk/ti/
16222 F:      include/linux/clk/ti.h
16223
16224 TI DAVINCI MACHINE SUPPORT
16225 M:      Sekhar Nori <nsekhar@ti.com>
16226 R:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
16227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
16229 S:      Supported
16230 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
16231 F:      arch/arm/mach-davinci/
16232 F:      drivers/i2c/busses/i2c-davinci.c
16233 F:      arch/arm/boot/dts/da850*
16234
16235 TI DAVINCI SERIES CLOCK DRIVER
16236 M:      David Lechner <david@lechnology.com>
16237 R:      Sekhar Nori <nsekhar@ti.com>
16238 S:      Maintained
16239 F:      Documentation/devicetree/bindings/clock/ti/davinci/
16240 F:      drivers/clk/davinci/
16241
16242 TI DAVINCI SERIES GPIO DRIVER
16243 M:      Keerthy <j-keerthy@ti.com>
16244 L:      linux-gpio@vger.kernel.org
16245 S:      Maintained
16246 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
16247 F:      drivers/gpio/gpio-davinci.c
16248
16249 TI DAVINCI SERIES MEDIA DRIVER
16250 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
16251 L:      linux-media@vger.kernel.org
16252 W:      https://linuxtv.org
16253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16254 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
16255 S:      Maintained
16256 F:      drivers/media/platform/davinci/
16257 F:      include/media/davinci/
16258
16259 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
16260 R:      David Lechner <david@lechnology.com>
16261 L:      linux-iio@vger.kernel.org
16262 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
16263 F:      drivers/counter/ti-eqep.c
16264
16265 TI ETHERNET SWITCH DRIVER (CPSW)
16266 R:      Grygorii Strashko <grygorii.strashko@ti.com>
16267 L:      linux-omap@vger.kernel.org
16268 L:      netdev@vger.kernel.org
16269 S:      Maintained
16270 F:      drivers/net/ethernet/ti/cpsw*
16271 F:      drivers/net/ethernet/ti/davinci*
16272
16273 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
16274 M:      Alex Dubov <oakad@yahoo.com>
16275 S:      Maintained
16276 W:      http://tifmxx.berlios.de/
16277 F:      drivers/memstick/host/tifm_ms.c
16278 F:      drivers/misc/tifm*
16279 F:      drivers/mmc/host/tifm_sd.c
16280 F:      include/linux/tifm.h
16281
16282 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
16283 M:      Santosh Shilimkar <ssantosh@kernel.org>
16284 L:      linux-kernel@vger.kernel.org
16285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16286 S:      Maintained
16287 F:      drivers/soc/ti/*
16288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
16289
16290 TI LM49xxx FAMILY ASoC CODEC DRIVERS
16291 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
16292 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
16293 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16294 S:      Maintained
16295 F:      sound/soc/codecs/lm49453*
16296 F:      sound/soc/codecs/isabelle*
16297
16298 TI LP855x BACKLIGHT DRIVER
16299 M:      Milo Kim <milo.kim@ti.com>
16300 S:      Maintained
16301 F:      Documentation/driver-api/backlight/lp855x-driver.rst
16302 F:      drivers/video/backlight/lp855x_bl.c
16303 F:      include/linux/platform_data/lp855x.h
16304
16305 TI LP8727 CHARGER DRIVER
16306 M:      Milo Kim <milo.kim@ti.com>
16307 S:      Maintained
16308 F:      drivers/power/supply/lp8727_charger.c
16309 F:      include/linux/platform_data/lp8727.h
16310
16311 TI LP8788 MFD DRIVER
16312 M:      Milo Kim <milo.kim@ti.com>
16313 S:      Maintained
16314 F:      drivers/iio/adc/lp8788_adc.c
16315 F:      drivers/leds/leds-lp8788.c
16316 F:      drivers/mfd/lp8788*.c
16317 F:      drivers/power/supply/lp8788-charger.c
16318 F:      drivers/regulator/lp8788-*.c
16319 F:      include/linux/mfd/lp8788*.h
16320
16321 TI NETCP ETHERNET DRIVER
16322 M:      Wingman Kwok <w-kwok2@ti.com>
16323 M:      Murali Karicheri <m-karicheri2@ti.com>
16324 L:      netdev@vger.kernel.org
16325 S:      Maintained
16326 F:      drivers/net/ethernet/ti/netcp*
16327
16328 TI PCM3060 ASoC CODEC DRIVER
16329 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
16330 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16331 S:      Maintained
16332 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
16333 F:      sound/soc/codecs/pcm3060*
16334
16335 TI TAS571X FAMILY ASoC CODEC DRIVER
16336 M:      Kevin Cernekee <cernekee@chromium.org>
16337 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16338 S:      Odd Fixes
16339 F:      sound/soc/codecs/tas571x*
16340
16341 TI TRF7970A NFC DRIVER
16342 M:      Mark Greer <mgreer@animalcreek.com>
16343 L:      linux-wireless@vger.kernel.org
16344 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
16345 S:      Supported
16346 F:      drivers/nfc/trf7970a.c
16347 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
16348
16349 TI TWL4030 SERIES SOC CODEC DRIVER
16350 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
16351 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16352 S:      Maintained
16353 F:      sound/soc/codecs/twl4030*
16354
16355 TI VPE/CAL DRIVERS
16356 M:      Benoit Parrot <bparrot@ti.com>
16357 L:      linux-media@vger.kernel.org
16358 W:      http://linuxtv.org/
16359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16360 S:      Maintained
16361 F:      drivers/media/platform/ti-vpe/
16362
16363 TI WILINK WIRELESS DRIVERS
16364 L:      linux-wireless@vger.kernel.org
16365 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
16366 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
16367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
16368 S:      Orphan
16369 F:      drivers/net/wireless/ti/
16370 F:      include/linux/wl12xx.h
16371
16372 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
16373 M:      John Stultz <john.stultz@linaro.org>
16374 M:      Thomas Gleixner <tglx@linutronix.de>
16375 R:      Stephen Boyd <sboyd@kernel.org>
16376 L:      linux-kernel@vger.kernel.org
16377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16378 S:      Supported
16379 F:      include/linux/clocksource.h
16380 F:      include/linux/time.h
16381 F:      include/linux/timex.h
16382 F:      include/uapi/linux/time.h
16383 F:      include/uapi/linux/timex.h
16384 F:      kernel/time/clocksource.c
16385 F:      kernel/time/time*.c
16386 F:      kernel/time/alarmtimer.c
16387 F:      kernel/time/ntp.c
16388 F:      tools/testing/selftests/timers/
16389
16390 TIPC NETWORK LAYER
16391 M:      Jon Maloy <jon.maloy@ericsson.com>
16392 M:      Ying Xue <ying.xue@windriver.com>
16393 L:      netdev@vger.kernel.org (core kernel code)
16394 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
16395 W:      http://tipc.sourceforge.net/
16396 S:      Maintained
16397 F:      include/uapi/linux/tipc*.h
16398 F:      net/tipc/
16399
16400 TLAN NETWORK DRIVER
16401 M:      Samuel Chessman <chessman@tux.org>
16402 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
16403 W:      http://sourceforge.net/projects/tlan/
16404 S:      Maintained
16405 F:      Documentation/networking/device_drivers/ti/tlan.txt
16406 F:      drivers/net/ethernet/ti/tlan.*
16407
16408 TM6000 VIDEO4LINUX DRIVER
16409 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16410 L:      linux-media@vger.kernel.org
16411 W:      https://linuxtv.org
16412 T:      git git://linuxtv.org/media_tree.git
16413 S:      Odd fixes
16414 F:      drivers/media/usb/tm6000/
16415 F:      Documentation/media/v4l-drivers/tm6000*
16416
16417 TMIO/SDHI MMC DRIVER
16418 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16419 L:      linux-mmc@vger.kernel.org
16420 S:      Supported
16421 F:      drivers/mmc/host/tmio_mmc*
16422 F:      drivers/mmc/host/renesas_sdhi*
16423 F:      include/linux/mfd/tmio.h
16424
16425 TMP401 HARDWARE MONITOR DRIVER
16426 M:      Guenter Roeck <linux@roeck-us.net>
16427 L:      linux-hwmon@vger.kernel.org
16428 S:      Maintained
16429 F:      Documentation/hwmon/tmp401.rst
16430 F:      drivers/hwmon/tmp401.c
16431
16432 TMPFS (SHMEM FILESYSTEM)
16433 M:      Hugh Dickins <hughd@google.com>
16434 L:      linux-mm@kvack.org
16435 S:      Maintained
16436 F:      include/linux/shmem_fs.h
16437 F:      mm/shmem.c
16438
16439 TOMOYO SECURITY MODULE
16440 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
16441 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
16442 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
16443 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
16444 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
16445 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
16446 W:      https://tomoyo.osdn.jp/
16447 S:      Maintained
16448 F:      security/tomoyo/
16449
16450 TOPSTAR LAPTOP EXTRAS DRIVER
16451 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16452 L:      platform-driver-x86@vger.kernel.org
16453 S:      Maintained
16454 F:      drivers/platform/x86/topstar-laptop.c
16455
16456 TORTURE-TEST MODULES
16457 M:      Davidlohr Bueso <dave@stgolabs.net>
16458 M:      "Paul E. McKenney" <paulmck@kernel.org>
16459 M:      Josh Triplett <josh@joshtriplett.org>
16460 L:      linux-kernel@vger.kernel.org
16461 S:      Supported
16462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16463 F:      Documentation/RCU/torture.txt
16464 F:      kernel/torture.c
16465 F:      kernel/rcu/rcutorture.c
16466 F:      kernel/rcu/rcuperf.c
16467 F:      kernel/locking/locktorture.c
16468
16469 TOSHIBA ACPI EXTRAS DRIVER
16470 M:      Azael Avalos <coproscefalo@gmail.com>
16471 L:      platform-driver-x86@vger.kernel.org
16472 S:      Maintained
16473 F:      drivers/platform/x86/toshiba_acpi.c
16474
16475 TOSHIBA BLUETOOTH DRIVER
16476 M:      Azael Avalos <coproscefalo@gmail.com>
16477 L:      platform-driver-x86@vger.kernel.org
16478 S:      Maintained
16479 F:      drivers/platform/x86/toshiba_bluetooth.c
16480
16481 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
16482 M:      Azael Avalos <coproscefalo@gmail.com>
16483 L:      platform-driver-x86@vger.kernel.org
16484 S:      Maintained
16485 F:      drivers/platform/x86/toshiba_haps.c
16486
16487 TOSHIBA SMM DRIVER
16488 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
16489 W:      http://www.buzzard.org.uk/toshiba/
16490 S:      Maintained
16491 F:      drivers/char/toshiba.c
16492 F:      include/linux/toshiba.h
16493 F:      include/uapi/linux/toshiba.h
16494
16495 TOSHIBA TC358743 DRIVER
16496 M:      Mats Randgaard <matrandg@cisco.com>
16497 L:      linux-media@vger.kernel.org
16498 S:      Maintained
16499 F:      drivers/media/i2c/tc358743*
16500 F:      include/media/i2c/tc358743.h
16501
16502 TOSHIBA WMI HOTKEYS DRIVER
16503 M:      Azael Avalos <coproscefalo@gmail.com>
16504 L:      platform-driver-x86@vger.kernel.org
16505 S:      Maintained
16506 F:      drivers/platform/x86/toshiba-wmi.c
16507
16508 TPM DEVICE DRIVER
16509 M:      Peter Huewe <peterhuewe@gmx.de>
16510 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
16511 R:      Jason Gunthorpe <jgg@ziepe.ca>
16512 L:      linux-integrity@vger.kernel.org
16513 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
16514 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
16515 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
16516 S:      Maintained
16517 F:      drivers/char/tpm/
16518
16519 TRACING
16520 M:      Steven Rostedt <rostedt@goodmis.org>
16521 M:      Ingo Molnar <mingo@redhat.com>
16522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16523 S:      Maintained
16524 F:      Documentation/trace/ftrace.rst
16525 F:      arch/*/*/*/ftrace.h
16526 F:      arch/*/kernel/ftrace.c
16527 F:      include/*/ftrace.h
16528 F:      include/linux/trace*.h
16529 F:      include/trace/
16530 F:      kernel/trace/
16531 F:      tools/testing/selftests/ftrace/
16532
16533 TRACING MMIO ACCESSES (MMIOTRACE)
16534 M:      Steven Rostedt <rostedt@goodmis.org>
16535 M:      Ingo Molnar <mingo@kernel.org>
16536 R:      Karol Herbst <karolherbst@gmail.com>
16537 R:      Pekka Paalanen <ppaalanen@gmail.com>
16538 S:      Maintained
16539 L:      linux-kernel@vger.kernel.org
16540 L:      nouveau@lists.freedesktop.org
16541 F:      kernel/trace/trace_mmiotrace.c
16542 F:      include/linux/mmiotrace.h
16543 F:      arch/x86/mm/kmmio.c
16544 F:      arch/x86/mm/mmio-mod.c
16545 F:      arch/x86/mm/testmmiotrace.c
16546
16547 TRIVIAL PATCHES
16548 M:      Jiri Kosina <trivial@kernel.org>
16549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
16550 S:      Maintained
16551 K:      ^Subject:.*(?i)trivial
16552
16553 TEMPO SEMICONDUCTOR DRIVERS
16554 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
16555 S:      Maintained
16556 F:      sound/soc/codecs/tscs*.c
16557 F:      sound/soc/codecs/tscs*.h
16558 F:      Documentation/devicetree/bindings/sound/tscs*.txt
16559
16560 TTY LAYER
16561 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16562 M:      Jiri Slaby <jslaby@suse.com>
16563 S:      Supported
16564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
16565 F:      Documentation/driver-api/serial/
16566 F:      drivers/tty/
16567 F:      drivers/tty/serial/serial_core.c
16568 F:      include/linux/serial_core.h
16569 F:      include/linux/serial.h
16570 F:      include/linux/tty.h
16571 F:      include/uapi/linux/serial_core.h
16572 F:      include/uapi/linux/serial.h
16573 F:      include/uapi/linux/tty.h
16574
16575 TUA9001 MEDIA DRIVER
16576 M:      Antti Palosaari <crope@iki.fi>
16577 L:      linux-media@vger.kernel.org
16578 W:      https://linuxtv.org
16579 W:      http://palosaari.fi/linux/
16580 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16581 T:      git git://linuxtv.org/anttip/media_tree.git
16582 S:      Maintained
16583 F:      drivers/media/tuners/tua9001*
16584
16585 TULIP NETWORK DRIVERS
16586 L:      netdev@vger.kernel.org
16587 L:      linux-parisc@vger.kernel.org
16588 S:      Orphan
16589 F:      drivers/net/ethernet/dec/tulip/
16590
16591 TUN/TAP driver
16592 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16593 W:      http://vtun.sourceforge.net/tun
16594 S:      Maintained
16595 F:      Documentation/networking/tuntap.txt
16596 F:      arch/um/os-Linux/drivers/
16597
16598 TURBOCHANNEL SUBSYSTEM
16599 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16600 M:      Ralf Baechle <ralf@linux-mips.org>
16601 L:      linux-mips@vger.kernel.org
16602 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16603 S:      Maintained
16604 F:      drivers/tc/
16605 F:      include/linux/tc.h
16606
16607 TURBOSTAT UTILITY
16608 M:      "Len Brown" <lenb@kernel.org>
16609 L:      linux-pm@vger.kernel.org
16610 B:      https://bugzilla.kernel.org
16611 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16613 S:      Supported
16614 F:      tools/power/x86/turbostat/
16615
16616 TW5864 VIDEO4LINUX DRIVER
16617 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16618 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16619 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16620 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16621 L:      linux-media@vger.kernel.org
16622 S:      Supported
16623 F:      drivers/media/pci/tw5864/
16624
16625 TW68 VIDEO4LINUX DRIVER
16626 M:      Hans Verkuil <hverkuil@xs4all.nl>
16627 L:      linux-media@vger.kernel.org
16628 T:      git git://linuxtv.org/media_tree.git
16629 W:      https://linuxtv.org
16630 S:      Odd Fixes
16631 F:      drivers/media/pci/tw68/
16632
16633 TW686X VIDEO4LINUX DRIVER
16634 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16635 L:      linux-media@vger.kernel.org
16636 T:      git git://linuxtv.org/media_tree.git
16637 W:      http://linuxtv.org
16638 S:      Maintained
16639 F:      drivers/media/pci/tw686x/
16640
16641 UBI FILE SYSTEM (UBIFS)
16642 M:      Richard Weinberger <richard@nod.at>
16643 M:      Artem Bityutskiy <dedekind1@gmail.com>
16644 M:      Adrian Hunter <adrian.hunter@intel.com>
16645 L:      linux-mtd@lists.infradead.org
16646 T:      git git://git.infradead.org/ubifs-2.6.git
16647 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16648 S:      Supported
16649 F:      Documentation/filesystems/ubifs.txt
16650 F:      fs/ubifs/
16651
16652 UCLINUX (M68KNOMMU AND COLDFIRE)
16653 M:      Greg Ungerer <gerg@linux-m68k.org>
16654 W:      http://www.linux-m68k.org/
16655 W:      http://www.uclinux.org/
16656 L:      linux-m68k@lists.linux-m68k.org
16657 L:      uclinux-dev@uclinux.org  (subscribers-only)
16658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16659 S:      Maintained
16660 F:      arch/m68k/coldfire/
16661 F:      arch/m68k/68*/
16662 F:      arch/m68k/*/*_no.*
16663 F:      arch/m68k/include/asm/*_no.*
16664
16665 UDF FILESYSTEM
16666 M:      Jan Kara <jack@suse.com>
16667 S:      Maintained
16668 F:      Documentation/filesystems/udf.txt
16669 F:      fs/udf/
16670
16671 UDRAW TABLET
16672 M:      Bastien Nocera <hadess@hadess.net>
16673 L:      linux-input@vger.kernel.org
16674 S:      Maintained
16675 F:      drivers/hid/hid-udraw-ps3.c
16676
16677 UFS FILESYSTEM
16678 M:      Evgeniy Dushistov <dushistov@mail.ru>
16679 S:      Maintained
16680 F:      Documentation/admin-guide/ufs.rst
16681 F:      fs/ufs/
16682
16683 UHID USERSPACE HID IO DRIVER:
16684 M:      David Herrmann <dh.herrmann@googlemail.com>
16685 L:      linux-input@vger.kernel.org
16686 S:      Maintained
16687 F:      drivers/hid/uhid.c
16688 F:      include/uapi/linux/uhid.h
16689
16690 ULPI BUS
16691 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16692 L:      linux-usb@vger.kernel.org
16693 S:      Maintained
16694 F:      drivers/usb/common/ulpi.c
16695 F:      include/linux/ulpi/
16696
16697 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16698 L:      devel@driverdev.osuosl.org
16699 S:      Obsolete
16700 F:      drivers/staging/uwb/
16701
16702 UNICODE SUBSYSTEM:
16703 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16704 L:      linux-fsdevel@vger.kernel.org
16705 S:      Supported
16706 F:      fs/unicode/
16707
16708 UNICORE32 ARCHITECTURE:
16709 M:      Guan Xuetao <gxt@pku.edu.cn>
16710 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16711 S:      Maintained
16712 T:      git git://github.com/gxt/linux.git
16713 F:      arch/unicore32/
16714
16715 UNIFDEF
16716 M:      Tony Finch <dot@dotat.at>
16717 W:      http://dotat.at/prog/unifdef
16718 S:      Maintained
16719 F:      scripts/unifdef.c
16720
16721 UNIFORM CDROM DRIVER
16722 M:      Jens Axboe <axboe@kernel.dk>
16723 W:      http://www.kernel.dk
16724 S:      Maintained
16725 F:      Documentation/cdrom/
16726 F:      drivers/cdrom/cdrom.c
16727 F:      include/linux/cdrom.h
16728 F:      include/uapi/linux/cdrom.h
16729
16730 UNISYS S-PAR DRIVERS
16731 M:      David Kershner <david.kershner@unisys.com>
16732 L:      sparmaintainer@unisys.com (Unisys internal)
16733 S:      Supported
16734 F:      include/linux/visorbus.h
16735 F:      drivers/visorbus/
16736 F:      drivers/staging/unisys/
16737
16738 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16739 R:      Alim Akhtar <alim.akhtar@samsung.com>
16740 R:      Avri Altman <avri.altman@wdc.com>
16741 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16742 L:      linux-scsi@vger.kernel.org
16743 S:      Supported
16744 F:      Documentation/scsi/ufs.txt
16745 F:      drivers/scsi/ufs/
16746
16747 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16748 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16749 L:      linux-scsi@vger.kernel.org
16750 S:      Supported
16751 F:      drivers/scsi/ufs/*dwc*
16752
16753 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16754 M:      Stanley Chu <stanley.chu@mediatek.com>
16755 L:      linux-scsi@vger.kernel.org
16756 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16757 S:      Maintained
16758 F:      drivers/scsi/ufs/ufs-mediatek*
16759
16760 UNSORTED BLOCK IMAGES (UBI)
16761 M:      Artem Bityutskiy <dedekind1@gmail.com>
16762 M:      Richard Weinberger <richard@nod.at>
16763 W:      http://www.linux-mtd.infradead.org/
16764 L:      linux-mtd@lists.infradead.org
16765 T:      git git://git.infradead.org/ubifs-2.6.git
16766 S:      Supported
16767 F:      drivers/mtd/ubi/
16768 F:      include/linux/mtd/ubi.h
16769 F:      include/uapi/mtd/ubi-user.h
16770
16771 USB "USBNET" DRIVER FRAMEWORK
16772 M:      Oliver Neukum <oneukum@suse.com>
16773 L:      netdev@vger.kernel.org
16774 W:      http://www.linux-usb.org/usbnet
16775 S:      Maintained
16776 F:      drivers/net/usb/usbnet.c
16777 F:      include/linux/usb/usbnet.h
16778
16779 USB ACM DRIVER
16780 M:      Oliver Neukum <oneukum@suse.com>
16781 L:      linux-usb@vger.kernel.org
16782 S:      Maintained
16783 F:      Documentation/usb/acm.rst
16784 F:      drivers/usb/class/cdc-acm.*
16785
16786 USB AR5523 WIRELESS DRIVER
16787 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16788 L:      linux-wireless@vger.kernel.org
16789 S:      Maintained
16790 F:      drivers/net/wireless/ath/ar5523/
16791
16792 USB ATTACHED SCSI
16793 M:      Oliver Neukum <oneukum@suse.com>
16794 L:      linux-usb@vger.kernel.org
16795 L:      linux-scsi@vger.kernel.org
16796 S:      Maintained
16797 F:      drivers/usb/storage/uas.c
16798
16799 USB CDC ETHERNET DRIVER
16800 M:      Oliver Neukum <oliver@neukum.org>
16801 L:      linux-usb@vger.kernel.org
16802 S:      Maintained
16803 F:      drivers/net/usb/cdc_*.c
16804 F:      include/uapi/linux/usb/cdc.h
16805
16806 USB CHAOSKEY DRIVER
16807 M:      Keith Packard <keithp@keithp.com>
16808 L:      linux-usb@vger.kernel.org
16809 S:      Maintained
16810 F:      drivers/usb/misc/chaoskey.c
16811
16812 USB CYPRESS C67X00 DRIVER
16813 M:      Peter Korsgaard <jacmet@sunsite.dk>
16814 L:      linux-usb@vger.kernel.org
16815 S:      Maintained
16816 F:      drivers/usb/c67x00/
16817
16818 USB DAVICOM DM9601 DRIVER
16819 M:      Peter Korsgaard <jacmet@sunsite.dk>
16820 L:      netdev@vger.kernel.org
16821 W:      http://www.linux-usb.org/usbnet
16822 S:      Maintained
16823 F:      drivers/net/usb/dm9601.c
16824
16825 USB EHCI DRIVER
16826 M:      Alan Stern <stern@rowland.harvard.edu>
16827 L:      linux-usb@vger.kernel.org
16828 S:      Maintained
16829 F:      Documentation/usb/ehci.rst
16830 F:      drivers/usb/host/ehci*
16831
16832 USB GADGET/PERIPHERAL SUBSYSTEM
16833 M:      Felipe Balbi <balbi@kernel.org>
16834 L:      linux-usb@vger.kernel.org
16835 W:      http://www.linux-usb.org/gadget
16836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16837 S:      Maintained
16838 F:      drivers/usb/gadget/
16839 F:      include/linux/usb/gadget*
16840
16841 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16842 M:      Jiri Kosina <jikos@kernel.org>
16843 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16844 L:      linux-usb@vger.kernel.org
16845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16846 S:      Maintained
16847 F:      Documentation/hid/hiddev.rst
16848 F:      drivers/hid/usbhid/
16849
16850 USB INTEL XHCI ROLE MUX DRIVER
16851 M:      Hans de Goede <hdegoede@redhat.com>
16852 L:      linux-usb@vger.kernel.org
16853 S:      Maintained
16854 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16855
16856 USB IP DRIVER FOR HISILICON KIRIN
16857 M:      Yu Chen <chenyu56@huawei.com>
16858 M:      Binghui Wang <wangbinghui@hisilicon.com>
16859 L:      linux-usb@vger.kernel.org
16860 S:      Maintained
16861 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16862 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16863
16864 USB ISP116X DRIVER
16865 M:      Olav Kongas <ok@artecdesign.ee>
16866 L:      linux-usb@vger.kernel.org
16867 S:      Maintained
16868 F:      drivers/usb/host/isp116x*
16869 F:      include/linux/usb/isp116x.h
16870
16871 USB LAN78XX ETHERNET DRIVER
16872 M:      Woojung Huh <woojung.huh@microchip.com>
16873 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16874 L:      netdev@vger.kernel.org
16875 S:      Maintained
16876 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16877 F:      drivers/net/usb/lan78xx.*
16878 F:      include/dt-bindings/net/microchip-lan78xx.h
16879
16880 USB MASS STORAGE DRIVER
16881 M:      Alan Stern <stern@rowland.harvard.edu>
16882 L:      linux-usb@vger.kernel.org
16883 L:      usb-storage@lists.one-eyed-alien.net
16884 S:      Maintained
16885 F:      drivers/usb/storage/
16886
16887 USB MIDI DRIVER
16888 M:      Clemens Ladisch <clemens@ladisch.de>
16889 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16891 S:      Maintained
16892 F:      sound/usb/midi.*
16893
16894 USB NETWORKING DRIVERS
16895 L:      linux-usb@vger.kernel.org
16896 S:      Odd Fixes
16897 F:      drivers/net/usb/
16898
16899 USB OHCI DRIVER
16900 M:      Alan Stern <stern@rowland.harvard.edu>
16901 L:      linux-usb@vger.kernel.org
16902 S:      Maintained
16903 F:      Documentation/usb/ohci.rst
16904 F:      drivers/usb/host/ohci*
16905
16906 USB OTG FSM (Finite State Machine)
16907 M:      Peter Chen <Peter.Chen@nxp.com>
16908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16909 L:      linux-usb@vger.kernel.org
16910 S:      Maintained
16911 F:      drivers/usb/common/usb-otg-fsm.c
16912
16913 USB OVER IP DRIVER
16914 M:      Valentina Manea <valentina.manea.m@gmail.com>
16915 M:      Shuah Khan <shuah@kernel.org>
16916 M:      Shuah Khan <skhan@linuxfoundation.org>
16917 L:      linux-usb@vger.kernel.org
16918 S:      Maintained
16919 F:      Documentation/usb/usbip_protocol.rst
16920 F:      drivers/usb/usbip/
16921 F:      tools/usb/usbip/
16922 F:      tools/testing/selftests/drivers/usb/usbip/
16923
16924 USB PEGASUS DRIVER
16925 M:      Petko Manolov <petkan@nucleusys.com>
16926 L:      linux-usb@vger.kernel.org
16927 L:      netdev@vger.kernel.org
16928 T:      git git://github.com/petkan/pegasus.git
16929 W:      https://github.com/petkan/pegasus
16930 S:      Maintained
16931 F:      drivers/net/usb/pegasus.*
16932
16933 USB PHY LAYER
16934 M:      Felipe Balbi <balbi@kernel.org>
16935 L:      linux-usb@vger.kernel.org
16936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16937 S:      Maintained
16938 F:      drivers/usb/phy/
16939
16940 USB PRINTER DRIVER (usblp)
16941 M:      Pete Zaitcev <zaitcev@redhat.com>
16942 L:      linux-usb@vger.kernel.org
16943 S:      Supported
16944 F:      drivers/usb/class/usblp.c
16945
16946 USB QMI WWAN NETWORK DRIVER
16947 M:      Bjørn Mork <bjorn@mork.no>
16948 L:      netdev@vger.kernel.org
16949 S:      Maintained
16950 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16951 F:      drivers/net/usb/qmi_wwan.c
16952
16953 USB RTL8150 DRIVER
16954 M:      Petko Manolov <petkan@nucleusys.com>
16955 L:      linux-usb@vger.kernel.org
16956 L:      netdev@vger.kernel.org
16957 T:      git git://github.com/petkan/rtl8150.git
16958 W:      https://github.com/petkan/rtl8150
16959 S:      Maintained
16960 F:      drivers/net/usb/rtl8150.c
16961
16962 USB SERIAL SUBSYSTEM
16963 M:      Johan Hovold <johan@kernel.org>
16964 L:      linux-usb@vger.kernel.org
16965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16966 S:      Maintained
16967 F:      Documentation/usb/usb-serial.rst
16968 F:      drivers/usb/serial/
16969 F:      include/linux/usb/serial.h
16970
16971 USB SMSC75XX ETHERNET DRIVER
16972 M:      Steve Glendinning <steve.glendinning@shawell.net>
16973 L:      netdev@vger.kernel.org
16974 S:      Maintained
16975 F:      drivers/net/usb/smsc75xx.*
16976
16977 USB SMSC95XX ETHERNET DRIVER
16978 M:      Steve Glendinning <steve.glendinning@shawell.net>
16979 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16980 L:      netdev@vger.kernel.org
16981 S:      Maintained
16982 F:      drivers/net/usb/smsc95xx.*
16983
16984 USB SUBSYSTEM
16985 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16986 L:      linux-usb@vger.kernel.org
16987 W:      http://www.linux-usb.org
16988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16989 S:      Supported
16990 F:      Documentation/devicetree/bindings/usb/
16991 F:      Documentation/usb/
16992 F:      drivers/usb/
16993 F:      include/linux/usb.h
16994 F:      include/linux/usb/
16995
16996 USB TYPEC PI3USB30532 MUX DRIVER
16997 M:      Hans de Goede <hdegoede@redhat.com>
16998 L:      linux-usb@vger.kernel.org
16999 S:      Maintained
17000 F:      drivers/usb/typec/mux/pi3usb30532.c
17001
17002 USB TYPEC CLASS
17003 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17004 L:      linux-usb@vger.kernel.org
17005 S:      Maintained
17006 F:      Documentation/ABI/testing/sysfs-class-typec
17007 F:      Documentation/driver-api/usb/typec.rst
17008 F:      drivers/usb/typec/
17009 F:      include/linux/usb/typec.h
17010
17011 USB TYPEC BUS FOR ALTERNATE MODES
17012 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17013 L:      linux-usb@vger.kernel.org
17014 S:      Maintained
17015 F:      Documentation/ABI/testing/sysfs-bus-typec
17016 F:      Documentation/driver-api/usb/typec_bus.rst
17017 F:      drivers/usb/typec/altmodes/
17018 F:      include/linux/usb/typec_altmode.h
17019
17020 USB TYPEC PORT CONTROLLER DRIVERS
17021 M:      Guenter Roeck <linux@roeck-us.net>
17022 L:      linux-usb@vger.kernel.org
17023 S:      Maintained
17024 F:      drivers/usb/typec/tcpm/
17025
17026 USB UHCI DRIVER
17027 M:      Alan Stern <stern@rowland.harvard.edu>
17028 L:      linux-usb@vger.kernel.org
17029 S:      Maintained
17030 F:      drivers/usb/host/uhci*
17031
17032 USB VIDEO CLASS
17033 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17034 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
17035 L:      linux-media@vger.kernel.org
17036 T:      git git://linuxtv.org/media_tree.git
17037 W:      http://www.ideasonboard.org/uvc/
17038 S:      Maintained
17039 F:      drivers/media/usb/uvc/
17040 F:      include/uapi/linux/uvcvideo.h
17041
17042 USB VISION DRIVER
17043 M:      Hans Verkuil <hverkuil@xs4all.nl>
17044 L:      linux-media@vger.kernel.org
17045 T:      git git://linuxtv.org/media_tree.git
17046 W:      https://linuxtv.org
17047 S:      Odd Fixes
17048 F:      drivers/media/usb/usbvision/
17049
17050 USB WEBCAM GADGET
17051 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17052 L:      linux-usb@vger.kernel.org
17053 S:      Maintained
17054 F:      drivers/usb/gadget/function/*uvc*
17055 F:      drivers/usb/gadget/legacy/webcam.c
17056 F:      include/uapi/linux/usb/g_uvc.h
17057
17058 USB WIRELESS RNDIS DRIVER (rndis_wlan)
17059 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
17060 L:      linux-wireless@vger.kernel.org
17061 S:      Maintained
17062 F:      drivers/net/wireless/rndis_wlan.c
17063
17064 USB XHCI DRIVER
17065 M:      Mathias Nyman <mathias.nyman@intel.com>
17066 L:      linux-usb@vger.kernel.org
17067 S:      Supported
17068 F:      drivers/usb/host/xhci*
17069 F:      drivers/usb/host/pci-quirks*
17070
17071 USB ZD1201 DRIVER
17072 L:      linux-wireless@vger.kernel.org
17073 W:      http://linux-lc100020.sourceforge.net
17074 S:      Orphan
17075 F:      drivers/net/wireless/zydas/zd1201.*
17076
17077 USB ZR364XX DRIVER
17078 M:      Antoine Jacquet <royale@zerezo.com>
17079 L:      linux-usb@vger.kernel.org
17080 L:      linux-media@vger.kernel.org
17081 T:      git git://linuxtv.org/media_tree.git
17082 W:      http://royale.zerezo.com/zr364xx/
17083 S:      Maintained
17084 F:      Documentation/media/v4l-drivers/zr364xx*
17085 F:      drivers/media/usb/zr364xx/
17086
17087 USER-MODE LINUX (UML)
17088 M:      Jeff Dike <jdike@addtoit.com>
17089 M:      Richard Weinberger <richard@nod.at>
17090 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
17091 L:      linux-um@lists.infradead.org
17092 W:      http://user-mode-linux.sourceforge.net
17093 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
17094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
17095 S:      Maintained
17096 F:      Documentation/virt/uml/
17097 F:      arch/um/
17098 F:      arch/x86/um/
17099 F:      fs/hostfs/
17100
17101 USERSPACE COPYIN/COPYOUT (UIOVEC)
17102 M:      Alexander Viro <viro@zeniv.linux.org.uk>
17103 S:      Maintained
17104 F:      lib/iov_iter.c
17105 F:      include/linux/uio.h
17106
17107 USERSPACE DMA BUFFER DRIVER
17108 M:      Gerd Hoffmann <kraxel@redhat.com>
17109 S:      Maintained
17110 L:      dri-devel@lists.freedesktop.org
17111 F:      drivers/dma-buf/udmabuf.c
17112 F:      include/uapi/linux/udmabuf.h
17113 T:      git git://anongit.freedesktop.org/drm/drm-misc
17114
17115 USERSPACE I/O (UIO)
17116 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17117 S:      Maintained
17118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17119 F:      Documentation/driver-api/uio-howto.rst
17120 F:      drivers/uio/
17121 F:      include/linux/uio_driver.h
17122
17123 UTIL-LINUX PACKAGE
17124 M:      Karel Zak <kzak@redhat.com>
17125 L:      util-linux@vger.kernel.org
17126 W:      http://en.wikipedia.org/wiki/Util-linux
17127 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
17128 S:      Maintained
17129
17130 UUID HELPERS
17131 M:      Christoph Hellwig <hch@lst.de>
17132 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17133 L:      linux-kernel@vger.kernel.org
17134 T:      git git://git.infradead.org/users/hch/uuid.git
17135 F:      lib/uuid.c
17136 F:      lib/test_uuid.c
17137 F:      include/linux/uuid.h
17138 F:      include/uapi/linux/uuid.h
17139 S:      Maintained
17140
17141 UVESAFB DRIVER
17142 M:      Michal Januszewski <spock@gentoo.org>
17143 L:      linux-fbdev@vger.kernel.org
17144 W:      https://github.com/mjanusz/v86d
17145 S:      Maintained
17146 F:      Documentation/fb/uvesafb.rst
17147 F:      drivers/video/fbdev/uvesafb.*
17148
17149 VF610 NAND DRIVER
17150 M:      Stefan Agner <stefan@agner.ch>
17151 L:      linux-mtd@lists.infradead.org
17152 S:      Supported
17153 F:      drivers/mtd/nand/raw/vf610_nfc.c
17154
17155 VFAT/FAT/MSDOS FILESYSTEM
17156 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
17157 S:      Maintained
17158 F:      Documentation/filesystems/vfat.txt
17159 F:      fs/fat/
17160
17161 VFIO DRIVER
17162 M:      Alex Williamson <alex.williamson@redhat.com>
17163 R:      Cornelia Huck <cohuck@redhat.com>
17164 L:      kvm@vger.kernel.org
17165 T:      git git://github.com/awilliam/linux-vfio.git
17166 S:      Maintained
17167 F:      Documentation/driver-api/vfio.rst
17168 F:      drivers/vfio/
17169 F:      include/linux/vfio.h
17170 F:      include/uapi/linux/vfio.h
17171
17172 VFIO MEDIATED DEVICE DRIVERS
17173 M:      Kirti Wankhede <kwankhede@nvidia.com>
17174 L:      kvm@vger.kernel.org
17175 S:      Maintained
17176 F:      Documentation/driver-api/vfio-mediated-device.rst
17177 F:      drivers/vfio/mdev/
17178 F:      include/linux/mdev.h
17179 F:      samples/vfio-mdev/
17180
17181 VFIO PLATFORM DRIVER
17182 M:      Eric Auger <eric.auger@redhat.com>
17183 L:      kvm@vger.kernel.org
17184 S:      Maintained
17185 F:      drivers/vfio/platform/
17186
17187 VGA_SWITCHEROO
17188 R:      Lukas Wunner <lukas@wunner.de>
17189 S:      Maintained
17190 F:      Documentation/gpu/vga-switcheroo.rst
17191 F:      drivers/gpu/vga/vga_switcheroo.c
17192 F:      include/linux/vga_switcheroo.h
17193 T:      git git://anongit.freedesktop.org/drm/drm-misc
17194
17195 VIA RHINE NETWORK DRIVER
17196 S:      Orphan
17197 F:      drivers/net/ethernet/via/via-rhine.c
17198
17199 VIA SD/MMC CARD CONTROLLER DRIVER
17200 M:      Bruce Chang <brucechang@via.com.tw>
17201 M:      Harald Welte <HaraldWelte@viatech.com>
17202 S:      Maintained
17203 F:      drivers/mmc/host/via-sdmmc.c
17204
17205 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
17206 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
17207 L:      linux-fbdev@vger.kernel.org
17208 S:      Maintained
17209 F:      include/linux/via-core.h
17210 F:      include/linux/via-gpio.h
17211 F:      include/linux/via_i2c.h
17212 F:      drivers/video/fbdev/via/
17213
17214 VIA VELOCITY NETWORK DRIVER
17215 M:      Francois Romieu <romieu@fr.zoreil.com>
17216 L:      netdev@vger.kernel.org
17217 S:      Maintained
17218 F:      drivers/net/ethernet/via/via-velocity.*
17219
17220 VICODEC VIRTUAL CODEC DRIVER
17221 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
17222 L:      linux-media@vger.kernel.org
17223 T:      git git://linuxtv.org/media_tree.git
17224 W:      https://linuxtv.org
17225 S:      Maintained
17226 F:      drivers/media/platform/vicodec/*
17227
17228 VIDEO MULTIPLEXER DRIVER
17229 M:      Philipp Zabel <p.zabel@pengutronix.de>
17230 L:      linux-media@vger.kernel.org
17231 S:      Maintained
17232 F:      drivers/media/platform/video-mux.c
17233
17234 VIDEO I2C POLLING DRIVER
17235 M:      Matt Ranostay <matt.ranostay@konsulko.com>
17236 L:      linux-media@vger.kernel.org
17237 S:      Maintained
17238 F:      drivers/media/i2c/video-i2c.c
17239
17240 VIDEOBUF2 FRAMEWORK
17241 M:      Pawel Osciak <pawel@osciak.com>
17242 M:      Marek Szyprowski <m.szyprowski@samsung.com>
17243 M:      Kyungmin Park <kyungmin.park@samsung.com>
17244 R:      Tomasz Figa <tfiga@chromium.org>
17245 L:      linux-media@vger.kernel.org
17246 S:      Maintained
17247 F:      drivers/media/common/videobuf2/*
17248 F:      include/media/videobuf2-*
17249
17250 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
17251 M:      Helen Koike <helen.koike@collabora.com>
17252 L:      linux-media@vger.kernel.org
17253 T:      git git://linuxtv.org/media_tree.git
17254 W:      https://linuxtv.org
17255 S:      Maintained
17256 F:      drivers/media/platform/vimc/*
17257
17258 VIRT LIB
17259 M:      Alex Williamson <alex.williamson@redhat.com>
17260 M:      Paolo Bonzini <pbonzini@redhat.com>
17261 L:      kvm@vger.kernel.org
17262 S:      Supported
17263 F:      virt/lib/
17264
17265 VIRTIO AND VHOST VSOCK DRIVER
17266 M:      Stefan Hajnoczi <stefanha@redhat.com>
17267 L:      kvm@vger.kernel.org
17268 L:      virtualization@lists.linux-foundation.org
17269 L:      netdev@vger.kernel.org
17270 S:      Maintained
17271 F:      include/linux/virtio_vsock.h
17272 F:      include/uapi/linux/virtio_vsock.h
17273 F:      include/uapi/linux/vsockmon.h
17274 F:      include/uapi/linux/vm_sockets_diag.h
17275 F:      net/vmw_vsock/diag.c
17276 F:      net/vmw_vsock/af_vsock_tap.c
17277 F:      net/vmw_vsock/virtio_transport_common.c
17278 F:      net/vmw_vsock/virtio_transport.c
17279 F:      drivers/net/vsockmon.c
17280 F:      drivers/vhost/vsock.c
17281 F:      tools/testing/vsock/
17282
17283 VIRTIO CONSOLE DRIVER
17284 M:      Amit Shah <amit@kernel.org>
17285 L:      virtualization@lists.linux-foundation.org
17286 S:      Maintained
17287 F:      drivers/char/virtio_console.c
17288 F:      include/linux/virtio_console.h
17289 F:      include/uapi/linux/virtio_console.h
17290
17291 VIRTIO CORE AND NET DRIVERS
17292 M:      "Michael S. Tsirkin" <mst@redhat.com>
17293 M:      Jason Wang <jasowang@redhat.com>
17294 L:      virtualization@lists.linux-foundation.org
17295 S:      Maintained
17296 F:      Documentation/devicetree/bindings/virtio/
17297 F:      drivers/virtio/
17298 F:      tools/virtio/
17299 F:      drivers/net/virtio_net.c
17300 F:      drivers/block/virtio_blk.c
17301 F:      include/linux/virtio*.h
17302 F:      include/uapi/linux/virtio_*.h
17303 F:      drivers/crypto/virtio/
17304 F:      mm/balloon_compaction.c
17305
17306 VIRTIO BLOCK AND SCSI DRIVERS
17307 M:      "Michael S. Tsirkin" <mst@redhat.com>
17308 M:      Jason Wang <jasowang@redhat.com>
17309 R:      Paolo Bonzini <pbonzini@redhat.com>
17310 R:      Stefan Hajnoczi <stefanha@redhat.com>
17311 L:      virtualization@lists.linux-foundation.org
17312 S:      Maintained
17313 F:      drivers/block/virtio_blk.c
17314 F:      drivers/scsi/virtio_scsi.c
17315 F:      include/uapi/linux/virtio_blk.h
17316 F:      include/uapi/linux/virtio_scsi.h
17317 F:      drivers/vhost/scsi.c
17318
17319 VIRTIO CRYPTO DRIVER
17320 M:      Gonglei <arei.gonglei@huawei.com>
17321 L:      virtualization@lists.linux-foundation.org
17322 L:      linux-crypto@vger.kernel.org
17323 S:      Maintained
17324 F:      drivers/crypto/virtio/
17325 F:      include/uapi/linux/virtio_crypto.h
17326
17327 VIRTIO DRIVERS FOR S390
17328 M:      Cornelia Huck <cohuck@redhat.com>
17329 M:      Halil Pasic <pasic@linux.ibm.com>
17330 L:      linux-s390@vger.kernel.org
17331 L:      virtualization@lists.linux-foundation.org
17332 L:      kvm@vger.kernel.org
17333 S:      Supported
17334 F:      drivers/s390/virtio/
17335 F:      arch/s390/include/uapi/asm/virtio-ccw.h
17336
17337 VIRTIO FILE SYSTEM
17338 M:      Vivek Goyal <vgoyal@redhat.com>
17339 M:      Stefan Hajnoczi <stefanha@redhat.com>
17340 M:      Miklos Szeredi <miklos@szeredi.hu>
17341 L:      virtualization@lists.linux-foundation.org
17342 L:      linux-fsdevel@vger.kernel.org
17343 W:      https://virtio-fs.gitlab.io/
17344 S:      Supported
17345 F:      fs/fuse/virtio_fs.c
17346 F:      include/uapi/linux/virtio_fs.h
17347 F:      Documentation/filesystems/virtiofs.rst
17348
17349 VIRTIO GPU DRIVER
17350 M:      David Airlie <airlied@linux.ie>
17351 M:      Gerd Hoffmann <kraxel@redhat.com>
17352 L:      dri-devel@lists.freedesktop.org
17353 L:      virtualization@lists.linux-foundation.org
17354 T:      git git://anongit.freedesktop.org/drm/drm-misc
17355 S:      Maintained
17356 F:      drivers/gpu/drm/virtio/
17357 F:      include/uapi/linux/virtio_gpu.h
17358
17359 VIRTIO HOST (VHOST)
17360 M:      "Michael S. Tsirkin" <mst@redhat.com>
17361 M:      Jason Wang <jasowang@redhat.com>
17362 L:      kvm@vger.kernel.org
17363 L:      virtualization@lists.linux-foundation.org
17364 L:      netdev@vger.kernel.org
17365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
17366 S:      Maintained
17367 F:      drivers/vhost/
17368 F:      include/uapi/linux/vhost.h
17369
17370 VIRTIO INPUT DRIVER
17371 M:      Gerd Hoffmann <kraxel@redhat.com>
17372 S:      Maintained
17373 F:      drivers/virtio/virtio_input.c
17374 F:      include/uapi/linux/virtio_input.h
17375
17376 VIRTIO IOMMU DRIVER
17377 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
17378 L:      virtualization@lists.linux-foundation.org
17379 S:      Maintained
17380 F:      drivers/iommu/virtio-iommu.c
17381 F:      include/uapi/linux/virtio_iommu.h
17382
17383 VIRTUAL BOX GUEST DEVICE DRIVER
17384 M:      Hans de Goede <hdegoede@redhat.com>
17385 M:      Arnd Bergmann <arnd@arndb.de>
17386 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17387 S:      Maintained
17388 F:      include/linux/vbox_utils.h
17389 F:      include/uapi/linux/vbox*.h
17390 F:      drivers/virt/vboxguest/
17391
17392 VIRTUAL BOX SHARED FOLDER VFS DRIVER:
17393 M:      Hans de Goede <hdegoede@redhat.com>
17394 L:      linux-fsdevel@vger.kernel.org
17395 S:      Maintained
17396 F:      drivers/staging/vboxsf/*
17397
17398 VIRTUAL SERIO DEVICE DRIVER
17399 M:      Stephen Chandler Paul <thatslyude@gmail.com>
17400 S:      Maintained
17401 F:      drivers/input/serio/userio.c
17402 F:      include/uapi/linux/userio.h
17403
17404 VIVID VIRTUAL VIDEO DRIVER
17405 M:      Hans Verkuil <hverkuil@xs4all.nl>
17406 L:      linux-media@vger.kernel.org
17407 T:      git git://linuxtv.org/media_tree.git
17408 W:      https://linuxtv.org
17409 S:      Maintained
17410 F:      drivers/media/platform/vivid/*
17411
17412 VLYNQ BUS
17413 M:      Florian Fainelli <f.fainelli@gmail.com>
17414 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
17415 S:      Maintained
17416 F:      drivers/vlynq/vlynq.c
17417 F:      include/linux/vlynq.h
17418
17419 VME SUBSYSTEM
17420 M:      Martyn Welch <martyn@welchs.me.uk>
17421 M:      Manohar Vanga <manohar.vanga@gmail.com>
17422 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17423 L:      devel@driverdev.osuosl.org
17424 S:      Maintained
17425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
17426 F:      Documentation/driver-api/vme.rst
17427 F:      drivers/staging/vme/
17428 F:      drivers/vme/
17429 F:      include/linux/vme*
17430
17431 VMWARE BALLOON DRIVER
17432 M:      Nadav Amit <namit@vmware.com>
17433 M:      "VMware, Inc." <pv-drivers@vmware.com>
17434 L:      linux-kernel@vger.kernel.org
17435 S:      Maintained
17436 F:      drivers/misc/vmw_balloon.c
17437
17438 VMWARE HYPERVISOR INTERFACE
17439 M:      Thomas Hellstrom <thellstrom@vmware.com>
17440 M:      "VMware, Inc." <pv-drivers@vmware.com>
17441 L:      virtualization@lists.linux-foundation.org
17442 S:      Supported
17443 F:      arch/x86/kernel/cpu/vmware.c
17444 F:      arch/x86/include/asm/vmware.h
17445
17446 VMWARE PVRDMA DRIVER
17447 M:      Adit Ranadive <aditr@vmware.com>
17448 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17449 L:      linux-rdma@vger.kernel.org
17450 S:      Maintained
17451 F:      drivers/infiniband/hw/vmw_pvrdma/
17452
17453 VMware PVSCSI driver
17454 M:      Jim Gill <jgill@vmware.com>
17455 M:      VMware PV-Drivers <pv-drivers@vmware.com>
17456 L:      linux-scsi@vger.kernel.org
17457 S:      Maintained
17458 F:      drivers/scsi/vmw_pvscsi.c
17459 F:      drivers/scsi/vmw_pvscsi.h
17460
17461 VMWARE VMMOUSE SUBDRIVER
17462 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
17463 M:      "VMware, Inc." <pv-drivers@vmware.com>
17464 L:      linux-input@vger.kernel.org
17465 S:      Maintained
17466 F:      drivers/input/mouse/vmmouse.c
17467 F:      drivers/input/mouse/vmmouse.h
17468
17469 VMWARE VMXNET3 ETHERNET DRIVER
17470 M:      Ronak Doshi <doshir@vmware.com>
17471 M:      "VMware, Inc." <pv-drivers@vmware.com>
17472 L:      netdev@vger.kernel.org
17473 S:      Maintained
17474 F:      drivers/net/vmxnet3/
17475
17476 VOCORE VOCORE2 BOARD
17477 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
17478 L:      linux-mips@vger.kernel.org
17479 S:      Maintained
17480 F:      arch/mips/boot/dts/ralink/vocore2.dts
17481
17482 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
17483 M:      Liam Girdwood <lgirdwood@gmail.com>
17484 M:      Mark Brown <broonie@kernel.org>
17485 L:      linux-kernel@vger.kernel.org
17486 W:      http://www.slimlogic.co.uk/?p=48
17487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
17488 S:      Supported
17489 F:      Documentation/devicetree/bindings/regulator/
17490 F:      Documentation/power/regulator/
17491 F:      drivers/regulator/
17492 F:      include/dt-bindings/regulator/
17493 F:      include/linux/regulator/
17494 K:      regulator_get_optional
17495
17496 VRF
17497 M:      David Ahern <dsahern@kernel.org>
17498 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
17499 L:      netdev@vger.kernel.org
17500 S:      Maintained
17501 F:      drivers/net/vrf.c
17502 F:      Documentation/networking/vrf.txt
17503
17504 VT1211 HARDWARE MONITOR DRIVER
17505 M:      Juerg Haefliger <juergh@gmail.com>
17506 L:      linux-hwmon@vger.kernel.org
17507 S:      Maintained
17508 F:      Documentation/hwmon/vt1211.rst
17509 F:      drivers/hwmon/vt1211.c
17510
17511 VT8231 HARDWARE MONITOR DRIVER
17512 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
17513 L:      linux-hwmon@vger.kernel.org
17514 S:      Maintained
17515 F:      drivers/hwmon/vt8231.c
17516
17517 VUB300 USB to SDIO/SD/MMC bridge chip
17518 M:      Tony Olech <tony.olech@elandigitalsystems.com>
17519 L:      linux-mmc@vger.kernel.org
17520 L:      linux-usb@vger.kernel.org
17521 S:      Supported
17522 F:      drivers/mmc/host/vub300.c
17523
17524 W1 DALLAS'S 1-WIRE BUS
17525 M:      Evgeniy Polyakov <zbr@ioremap.net>
17526 S:      Maintained
17527 F:      Documentation/devicetree/bindings/w1/
17528 F:      Documentation/w1/
17529 F:      drivers/w1/
17530 F:      include/linux/w1.h
17531
17532 W83791D HARDWARE MONITORING DRIVER
17533 M:      Marc Hulsman <m.hulsman@tudelft.nl>
17534 L:      linux-hwmon@vger.kernel.org
17535 S:      Maintained
17536 F:      Documentation/hwmon/w83791d.rst
17537 F:      drivers/hwmon/w83791d.c
17538
17539 W83793 HARDWARE MONITORING DRIVER
17540 M:      Rudolf Marek <r.marek@assembler.cz>
17541 L:      linux-hwmon@vger.kernel.org
17542 S:      Maintained
17543 F:      Documentation/hwmon/w83793.rst
17544 F:      drivers/hwmon/w83793.c
17545
17546 W83795 HARDWARE MONITORING DRIVER
17547 M:      Jean Delvare <jdelvare@suse.com>
17548 L:      linux-hwmon@vger.kernel.org
17549 S:      Maintained
17550 F:      drivers/hwmon/w83795.c
17551
17552 W83L51xD SD/MMC CARD INTERFACE DRIVER
17553 M:      Pierre Ossman <pierre@ossman.eu>
17554 S:      Maintained
17555 F:      drivers/mmc/host/wbsd.*
17556
17557 WACOM PROTOCOL 4 SERIAL TABLETS
17558 M:      Julian Squires <julian@cipht.net>
17559 M:      Hans de Goede <hdegoede@redhat.com>
17560 L:      linux-input@vger.kernel.org
17561 S:      Maintained
17562 F:      drivers/input/tablet/wacom_serial4.c
17563
17564 WATCHDOG DEVICE DRIVERS
17565 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
17566 M:      Guenter Roeck <linux@roeck-us.net>
17567 L:      linux-watchdog@vger.kernel.org
17568 W:      http://www.linux-watchdog.org/
17569 T:      git git://www.linux-watchdog.org/linux-watchdog.git
17570 S:      Maintained
17571 F:      Documentation/devicetree/bindings/watchdog/
17572 F:      Documentation/watchdog/
17573 F:      drivers/watchdog/
17574 F:      include/linux/watchdog.h
17575 F:      include/uapi/linux/watchdog.h
17576
17577 WHISKEYCOVE PMIC GPIO DRIVER
17578 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
17579 L:      linux-gpio@vger.kernel.org
17580 S:      Maintained
17581 F:      drivers/gpio/gpio-wcove.c
17582
17583 WHWAVE RTC DRIVER
17584 M:      Dianlong Li <long17.cool@163.com>
17585 L:      linux-rtc@vger.kernel.org
17586 S:      Maintained
17587 F:      drivers/rtc/rtc-sd3078.c
17588
17589 WIIMOTE HID DRIVER
17590 M:      David Herrmann <dh.herrmann@googlemail.com>
17591 L:      linux-input@vger.kernel.org
17592 S:      Maintained
17593 F:      drivers/hid/hid-wiimote*
17594
17595 WILOCITY WIL6210 WIRELESS DRIVER
17596 M:      Maya Erez <merez@codeaurora.org>
17597 L:      linux-wireless@vger.kernel.org
17598 L:      wil6210@qti.qualcomm.com
17599 S:      Supported
17600 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
17601 F:      drivers/net/wireless/ath/wil6210/
17602
17603 WIMAX STACK
17604 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17605 M:      linux-wimax@intel.com
17606 L:      wimax@linuxwimax.org (subscribers-only)
17607 S:      Supported
17608 W:      http://linuxwimax.org
17609 F:      Documentation/admin-guide/wimax/wimax.rst
17610 F:      include/linux/wimax/debug.h
17611 F:      include/net/wimax.h
17612 F:      include/uapi/linux/wimax.h
17613 F:      net/wimax/
17614
17615 WINBOND CIR DRIVER
17616 M:      David Härdeman <david@hardeman.nu>
17617 S:      Maintained
17618 F:      drivers/media/rc/winbond-cir.c
17619
17620 RCMM REMOTE CONTROLS DECODER
17621 M:      Patrick Lerda <patrick9876@free.fr>
17622 S:      Maintained
17623 F:      drivers/media/rc/ir-rcmm-decoder.c
17624
17625 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17626 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17627 L:      linux-watchdog@vger.kernel.org
17628 S:      Maintained
17629 F:      drivers/watchdog/ebc-c384_wdt.c
17630
17631 WINSYSTEMS WS16C48 GPIO DRIVER
17632 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17633 L:      linux-gpio@vger.kernel.org
17634 S:      Maintained
17635 F:      drivers/gpio/gpio-ws16c48.c
17636
17637 WISTRON LAPTOP BUTTON DRIVER
17638 M:      Miloslav Trmac <mitr@volny.cz>
17639 S:      Maintained
17640 F:      drivers/input/misc/wistron_btns.c
17641
17642 WL3501 WIRELESS PCMCIA CARD DRIVER
17643 L:      linux-wireless@vger.kernel.org
17644 S:      Odd fixes
17645 F:      drivers/net/wireless/wl3501*
17646
17647 WOLFSON MICROELECTRONICS DRIVERS
17648 L:      patches@opensource.cirrus.com
17649 T:      git https://github.com/CirrusLogic/linux-drivers.git
17650 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17651 S:      Supported
17652 F:      Documentation/hwmon/wm83??.rst
17653 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17654 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17655 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17656 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17657 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17658 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17659 F:      drivers/clk/clk-wm83*.c
17660 F:      drivers/extcon/extcon-arizona.c
17661 F:      drivers/leds/leds-wm83*.c
17662 F:      drivers/gpio/gpio-*wm*.c
17663 F:      drivers/gpio/gpio-arizona.c
17664 F:      drivers/hwmon/wm83??-hwmon.c
17665 F:      drivers/input/misc/wm831x-on.c
17666 F:      drivers/input/touchscreen/wm831x-ts.c
17667 F:      drivers/input/touchscreen/wm97*.c
17668 F:      drivers/mfd/arizona*
17669 F:      drivers/mfd/wm*.c
17670 F:      drivers/mfd/cs47l24*
17671 F:      drivers/power/supply/wm83*.c
17672 F:      drivers/rtc/rtc-wm83*.c
17673 F:      drivers/regulator/wm8*.c
17674 F:      drivers/regulator/arizona*
17675 F:      drivers/video/backlight/wm83*_bl.c
17676 F:      drivers/watchdog/wm83*_wdt.c
17677 F:      include/linux/mfd/arizona/
17678 F:      include/linux/mfd/wm831x/
17679 F:      include/linux/mfd/wm8350/
17680 F:      include/linux/mfd/wm8400*
17681 F:      include/linux/regulator/arizona*
17682 F:      include/linux/wm97xx.h
17683 F:      include/sound/wm????.h
17684 F:      sound/soc/codecs/arizona.?
17685 F:      sound/soc/codecs/wm*
17686 F:      sound/soc/codecs/cs47l24*
17687
17688 WORKQUEUE
17689 M:      Tejun Heo <tj@kernel.org>
17690 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17692 S:      Maintained
17693 F:      include/linux/workqueue.h
17694 F:      kernel/workqueue.c
17695 F:      Documentation/core-api/workqueue.rst
17696
17697 X-POWERS AXP288 PMIC DRIVERS
17698 M:      Hans de Goede <hdegoede@redhat.com>
17699 S:      Maintained
17700 N:      axp288
17701 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17702
17703 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17704 M:      Chen-Yu Tsai <wens@csie.org>
17705 L:      linux-kernel@vger.kernel.org
17706 S:      Maintained
17707 N:      axp[128]
17708
17709 X.25 NETWORK LAYER
17710 M:      Andrew Hendry <andrew.hendry@gmail.com>
17711 L:      linux-x25@vger.kernel.org
17712 S:      Odd Fixes
17713 F:      Documentation/networking/x25*
17714 F:      include/net/x25*
17715 F:      net/x25/
17716
17717 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17718 M:      Thomas Gleixner <tglx@linutronix.de>
17719 M:      Ingo Molnar <mingo@redhat.com>
17720 M:      Borislav Petkov <bp@alien8.de>
17721 R:      "H. Peter Anvin" <hpa@zytor.com>
17722 M:      x86@kernel.org
17723 L:      linux-kernel@vger.kernel.org
17724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17725 S:      Maintained
17726 F:      Documentation/devicetree/bindings/x86/
17727 F:      Documentation/x86/
17728 F:      arch/x86/
17729
17730 X86 ENTRY CODE
17731 M:      Andy Lutomirski <luto@kernel.org>
17732 L:      linux-kernel@vger.kernel.org
17733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17734 S:      Maintained
17735 F:      arch/x86/entry/
17736
17737 X86 MCE INFRASTRUCTURE
17738 M:      Tony Luck <tony.luck@intel.com>
17739 M:      Borislav Petkov <bp@alien8.de>
17740 L:      linux-edac@vger.kernel.org
17741 S:      Maintained
17742 F:      arch/x86/kernel/cpu/mce/*
17743
17744 X86 MICROCODE UPDATE SUPPORT
17745 M:      Borislav Petkov <bp@alien8.de>
17746 S:      Maintained
17747 F:      arch/x86/kernel/cpu/microcode/*
17748
17749 X86 MM
17750 M:      Dave Hansen <dave.hansen@linux.intel.com>
17751 M:      Andy Lutomirski <luto@kernel.org>
17752 M:      Peter Zijlstra <peterz@infradead.org>
17753 L:      linux-kernel@vger.kernel.org
17754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17755 S:      Maintained
17756 F:      arch/x86/mm/
17757
17758 X86 PLATFORM DRIVERS
17759 M:      Darren Hart <dvhart@infradead.org>
17760 M:      Andy Shevchenko <andy@infradead.org>
17761 L:      platform-driver-x86@vger.kernel.org
17762 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17763 S:      Odd Fixes
17764 F:      drivers/platform/x86/
17765 F:      drivers/platform/olpc/
17766
17767 X86 PLATFORM DRIVERS - ARCH
17768 R:      Darren Hart <dvhart@infradead.org>
17769 R:      Andy Shevchenko <andy@infradead.org>
17770 L:      platform-driver-x86@vger.kernel.org
17771 L:      x86@kernel.org
17772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17773 S:      Maintained
17774 F:      arch/x86/platform
17775
17776 X86 VDSO
17777 M:      Andy Lutomirski <luto@kernel.org>
17778 L:      linux-kernel@vger.kernel.org
17779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17780 S:      Maintained
17781 F:      arch/x86/entry/vdso/
17782
17783 XARRAY
17784 M:      Matthew Wilcox <willy@infradead.org>
17785 L:      linux-fsdevel@vger.kernel.org
17786 S:      Supported
17787 F:      Documentation/core-api/xarray.rst
17788 F:      lib/idr.c
17789 F:      lib/xarray.c
17790 F:      include/linux/idr.h
17791 F:      include/linux/xarray.h
17792 F:      tools/testing/radix-tree
17793
17794 XBOX DVD IR REMOTE
17795 M:      Benjamin Valentin <benpicco@googlemail.com>
17796 S:      Maintained
17797 F:      drivers/media/rc/xbox_remote.c
17798 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17799
17800 XC2028/3028 TUNER DRIVER
17801 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17802 L:      linux-media@vger.kernel.org
17803 W:      https://linuxtv.org
17804 T:      git git://linuxtv.org/media_tree.git
17805 S:      Maintained
17806 F:      drivers/media/tuners/tuner-xc2028.*
17807
17808 XDP (eXpress Data Path)
17809 M:      Alexei Starovoitov <ast@kernel.org>
17810 M:      Daniel Borkmann <daniel@iogearbox.net>
17811 M:      David S. Miller <davem@davemloft.net>
17812 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17813 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17814 M:      John Fastabend <john.fastabend@gmail.com>
17815 L:      netdev@vger.kernel.org
17816 L:      bpf@vger.kernel.org
17817 S:      Supported
17818 F:      net/core/xdp.c
17819 F:      include/net/xdp.h
17820 F:      kernel/bpf/devmap.c
17821 F:      kernel/bpf/cpumap.c
17822 F:      include/trace/events/xdp.h
17823 K:      xdp
17824 N:      xdp
17825
17826 XDP SOCKETS (AF_XDP)
17827 M:      Björn Töpel <bjorn.topel@intel.com>
17828 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17829 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
17830 L:      netdev@vger.kernel.org
17831 L:      bpf@vger.kernel.org
17832 S:      Maintained
17833 F:      kernel/bpf/xskmap.c
17834 F:      net/xdp/
17835
17836 XEN BLOCK SUBSYSTEM
17837 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17838 M:      Roger Pau Monné <roger.pau@citrix.com>
17839 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17840 S:      Supported
17841 F:      drivers/block/xen-blkback/*
17842 F:      drivers/block/xen*
17843
17844 XEN HYPERVISOR ARM
17845 M:      Stefano Stabellini <sstabellini@kernel.org>
17846 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17847 S:      Maintained
17848 F:      arch/arm/xen/
17849 F:      arch/arm/include/asm/xen/
17850
17851 XEN HYPERVISOR ARM64
17852 M:      Stefano Stabellini <sstabellini@kernel.org>
17853 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17854 S:      Maintained
17855 F:      arch/arm64/xen/
17856 F:      arch/arm64/include/asm/xen/
17857
17858 XEN HYPERVISOR INTERFACE
17859 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17860 M:      Juergen Gross <jgross@suse.com>
17861 R:      Stefano Stabellini <sstabellini@kernel.org>
17862 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17864 S:      Supported
17865 F:      arch/x86/xen/
17866 F:      arch/x86/platform/pvh/
17867 F:      drivers/*/xen-*front.c
17868 F:      drivers/xen/
17869 F:      arch/x86/include/asm/xen/
17870 F:      arch/x86/include/asm/pvclock-abi.h
17871 F:      include/xen/
17872 F:      include/uapi/xen/
17873 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17874 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17875
17876 XEN NETWORK BACKEND DRIVER
17877 M:      Wei Liu <wei.liu@kernel.org>
17878 M:      Paul Durrant <paul@xen.org>
17879 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17880 L:      netdev@vger.kernel.org
17881 S:      Supported
17882 F:      drivers/net/xen-netback/*
17883
17884 XEN PCI SUBSYSTEM
17885 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17886 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17887 S:      Supported
17888 F:      arch/x86/pci/*xen*
17889 F:      drivers/pci/*xen*
17890
17891 XEN PVSCSI DRIVERS
17892 M:      Juergen Gross <jgross@suse.com>
17893 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17894 L:      linux-scsi@vger.kernel.org
17895 S:      Supported
17896 F:      drivers/scsi/xen-scsifront.c
17897 F:      drivers/xen/xen-scsiback.c
17898 F:      include/xen/interface/io/vscsiif.h
17899
17900 XEN SWIOTLB SUBSYSTEM
17901 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17902 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17903 L:      iommu@lists.linux-foundation.org
17904 S:      Supported
17905 F:      arch/x86/xen/*swiotlb*
17906 F:      drivers/xen/*swiotlb*
17907
17908 XEN SOUND FRONTEND DRIVER
17909 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17910 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17911 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17912 S:      Supported
17913 F:      sound/xen/*
17914
17915 XFS FILESYSTEM
17916 M:      Darrick J. Wong <darrick.wong@oracle.com>
17917 M:      linux-xfs@vger.kernel.org
17918 L:      linux-xfs@vger.kernel.org
17919 W:      http://xfs.org/
17920 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17921 S:      Supported
17922 F:      Documentation/admin-guide/xfs.rst
17923 F:      Documentation/ABI/testing/sysfs-fs-xfs
17924 F:      Documentation/filesystems/xfs-delayed-logging-design.txt
17925 F:      Documentation/filesystems/xfs-self-describing-metadata.txt
17926 F:      fs/xfs/
17927 F:      include/uapi/linux/dqblk_xfs.h
17928 F:      include/uapi/linux/fsmap.h
17929
17930 XILINX AXI ETHERNET DRIVER
17931 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
17932 S:      Maintained
17933 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17934
17935 XILINX UARTLITE SERIAL DRIVER
17936 M:      Peter Korsgaard <jacmet@sunsite.dk>
17937 L:      linux-serial@vger.kernel.org
17938 S:      Maintained
17939 F:      drivers/tty/serial/uartlite.c
17940
17941 XILINX VIDEO IP CORES
17942 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17943 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17944 L:      linux-media@vger.kernel.org
17945 T:      git git://linuxtv.org/media_tree.git
17946 S:      Supported
17947 F:      Documentation/devicetree/bindings/media/xilinx/
17948 F:      drivers/media/platform/xilinx/
17949 F:      include/uapi/linux/xilinx-v4l2-controls.h
17950
17951 XILINX SD-FEC IP CORES
17952 M:      Derek Kiernan <derek.kiernan@xilinx.com>
17953 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
17954 S:      Maintained
17955 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
17956 F:      Documentation/misc-devices/xilinx_sdfec.rst
17957 F:      drivers/misc/xilinx_sdfec.c
17958 F:      drivers/misc/Kconfig
17959 F:      drivers/misc/Makefile
17960 F:      include/uapi/misc/xilinx_sdfec.h
17961
17962 XILLYBUS DRIVER
17963 M:      Eli Billauer <eli.billauer@gmail.com>
17964 L:      linux-kernel@vger.kernel.org
17965 S:      Supported
17966 F:      drivers/char/xillybus/
17967
17968 XLP9XX I2C DRIVER
17969 M:      George Cherian <george.cherian@cavium.com>
17970 M:      Jan Glauber <jglauber@cavium.com>
17971 L:      linux-i2c@vger.kernel.org
17972 W:      http://www.cavium.com
17973 S:      Supported
17974 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
17975 F:      drivers/i2c/busses/i2c-xlp9xx.c
17976
17977 XRA1403 GPIO EXPANDER
17978 M:      Nandor Han <nandor.han@ge.com>
17979 M:      Semi Malinen <semi.malinen@ge.com>
17980 L:      linux-gpio@vger.kernel.org
17981 S:      Maintained
17982 F:      drivers/gpio/gpio-xra1403.c
17983 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17984
17985 XTENSA XTFPGA PLATFORM SUPPORT
17986 M:      Max Filippov <jcmvbkbc@gmail.com>
17987 L:      linux-xtensa@linux-xtensa.org
17988 S:      Maintained
17989 F:      drivers/spi/spi-xtensa-xtfpga.c
17990 F:      sound/soc/xtensa/xtfpga-i2s.c
17991
17992 YAM DRIVER FOR AX.25
17993 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
17994 L:      linux-hams@vger.kernel.org
17995 S:      Maintained
17996 F:      drivers/net/hamradio/yam*
17997 F:      include/linux/yam.h
17998
17999 YAMA SECURITY MODULE
18000 M:      Kees Cook <keescook@chromium.org>
18001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
18002 S:      Supported
18003 F:      security/yama/
18004 F:      Documentation/admin-guide/LSM/Yama.rst
18005
18006 YEALINK PHONE DRIVER
18007 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
18008 L:      usbb2k-api-dev@nongnu.org
18009 S:      Maintained
18010 F:      Documentation/input/devices/yealink.rst
18011 F:      drivers/input/misc/yealink.*
18012
18013 Z8530 DRIVER FOR AX.25
18014 M:      Joerg Reuter <jreuter@yaina.de>
18015 W:      http://yaina.de/jreuter/
18016 W:      http://www.qsl.net/dl1bke/
18017 L:      linux-hams@vger.kernel.org
18018 S:      Maintained
18019 F:      Documentation/networking/z8530drv.txt
18020 F:      drivers/net/hamradio/*scc.c
18021 F:      drivers/net/hamradio/z8530.h
18022
18023 ZBUD COMPRESSED PAGE ALLOCATOR
18024 M:      Seth Jennings <sjenning@redhat.com>
18025 M:      Dan Streetman <ddstreet@ieee.org>
18026 L:      linux-mm@kvack.org
18027 S:      Maintained
18028 F:      mm/zbud.c
18029 F:      include/linux/zbud.h
18030
18031 ZD1211RW WIRELESS DRIVER
18032 M:      Daniel Drake <dsd@gentoo.org>
18033 M:      Ulrich Kunitz <kune@deine-taler.de>
18034 W:      http://zd1211.ath.cx/wiki/DriverRewrite
18035 L:      linux-wireless@vger.kernel.org
18036 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
18037 S:      Maintained
18038 F:      drivers/net/wireless/zydas/zd1211rw/
18039
18040 ZD1301 MEDIA DRIVER
18041 M:      Antti Palosaari <crope@iki.fi>
18042 L:      linux-media@vger.kernel.org
18043 W:      https://linuxtv.org/
18044 W:      http://palosaari.fi/linux/
18045 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18046 S:      Maintained
18047 F:      drivers/media/usb/dvb-usb-v2/zd1301*
18048
18049 ZD1301_DEMOD MEDIA DRIVER
18050 M:      Antti Palosaari <crope@iki.fi>
18051 L:      linux-media@vger.kernel.org
18052 W:      https://linuxtv.org/
18053 W:      http://palosaari.fi/linux/
18054 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18055 S:      Maintained
18056 F:      drivers/media/dvb-frontends/zd1301_demod*
18057
18058 ZHAOXIN PROCESSOR SUPPORT
18059 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
18060 L:      linux-kernel@vger.kernel.org
18061 S:      Maintained
18062 F:      arch/x86/kernel/cpu/zhaoxin.c
18063
18064 ZPOOL COMPRESSED PAGE STORAGE API
18065 M:      Dan Streetman <ddstreet@ieee.org>
18066 L:      linux-mm@kvack.org
18067 S:      Maintained
18068 F:      mm/zpool.c
18069 F:      include/linux/zpool.h
18070
18071 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
18072 M:      Minchan Kim <minchan@kernel.org>
18073 M:      Nitin Gupta <ngupta@vflare.org>
18074 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18075 L:      linux-kernel@vger.kernel.org
18076 S:      Maintained
18077 F:      drivers/block/zram/
18078 F:      Documentation/admin-guide/blockdev/zram.rst
18079
18080 ZS DECSTATION Z85C30 SERIAL DRIVER
18081 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
18082 S:      Maintained
18083 F:      drivers/tty/serial/zs.*
18084
18085 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
18086 M:      Minchan Kim <minchan@kernel.org>
18087 M:      Nitin Gupta <ngupta@vflare.org>
18088 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
18089 L:      linux-mm@kvack.org
18090 S:      Maintained
18091 F:      mm/zsmalloc.c
18092 F:      include/linux/zsmalloc.h
18093 F:      Documentation/vm/zsmalloc.rst
18094
18095 ZSWAP COMPRESSED SWAP CACHING
18096 M:      Seth Jennings <sjenning@redhat.com>
18097 M:      Dan Streetman <ddstreet@ieee.org>
18098 M:      Vitaly Wool <vitaly.wool@konsulko.com>
18099 L:      linux-mm@kvack.org
18100 S:      Maintained
18101 F:      mm/zswap.c
18102
18103 THE REST
18104 M:      Linus Torvalds <torvalds@linux-foundation.org>
18105 L:      linux-kernel@vger.kernel.org
18106 Q:      http://patchwork.kernel.org/project/LKML/list/
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
18108 S:      Buried alive in reporters
18109 F:      *
18110 F:      */