NFC: Orphan the subsystem
[platform/kernel/linux-rpi.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.c
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/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 <hanjun.guo@linaro.org>
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 ADS1015 HARDWARE MONITOR DRIVER
521 M:      Dirk Eibach <eibach@gdsys.de>
522 L:      linux-hwmon@vger.kernel.org
523 S:      Maintained
524 F:      Documentation/hwmon/ads1015.rst
525 F:      drivers/hwmon/ads1015.c
526 F:      include/linux/platform_data/ads1015.h
527
528 ADT746X FAN DRIVER
529 M:      Colin Leroy <colin@colino.net>
530 S:      Maintained
531 F:      drivers/macintosh/therm_adt746x.c
532
533 ADT7475 HARDWARE MONITOR DRIVER
534 M:      Jean Delvare <jdelvare@suse.com>
535 L:      linux-hwmon@vger.kernel.org
536 S:      Maintained
537 F:      Documentation/hwmon/adt7475.rst
538 F:      drivers/hwmon/adt7475.c
539
540 ADVANSYS SCSI DRIVER
541 M:      Matthew Wilcox <willy@infradead.org>
542 M:      Hannes Reinecke <hare@suse.com>
543 L:      linux-scsi@vger.kernel.org
544 S:      Maintained
545 F:      Documentation/scsi/advansys.txt
546 F:      drivers/scsi/advansys.c
547
548 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
549 M:      Michael Hennerich <michael.hennerich@analog.com>
550 W:      http://wiki.analog.com/ADXL345
551 W:      http://ez.analog.com/community/linux-device-drivers
552 S:      Supported
553 F:      drivers/input/misc/adxl34x.c
554
555 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
556 M:      Stefan Popa <stefan.popa@analog.com>
557 W:      http://ez.analog.com/community/linux-device-drivers
558 S:      Supported
559 F:      drivers/iio/accel/adxl372.c
560 F:      drivers/iio/accel/adxl372_spi.c
561 F:      drivers/iio/accel/adxl372_i2c.c
562 F:      Documentation/devicetree/bindings/iio/accel/adxl372.txt
563
564 AF9013 MEDIA DRIVER
565 M:      Antti Palosaari <crope@iki.fi>
566 L:      linux-media@vger.kernel.org
567 W:      https://linuxtv.org
568 W:      http://palosaari.fi/linux/
569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
570 T:      git git://linuxtv.org/anttip/media_tree.git
571 S:      Maintained
572 F:      drivers/media/dvb-frontends/af9013*
573
574 AF9033 MEDIA DRIVER
575 M:      Antti Palosaari <crope@iki.fi>
576 L:      linux-media@vger.kernel.org
577 W:      https://linuxtv.org
578 W:      http://palosaari.fi/linux/
579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
580 T:      git git://linuxtv.org/anttip/media_tree.git
581 S:      Maintained
582 F:      drivers/media/dvb-frontends/af9033*
583
584 AFFS FILE SYSTEM
585 M:      David Sterba <dsterba@suse.com>
586 L:      linux-fsdevel@vger.kernel.org
587 S:      Odd Fixes
588 F:      Documentation/filesystems/affs.txt
589 F:      fs/affs/
590
591 AFS FILESYSTEM
592 M:      David Howells <dhowells@redhat.com>
593 L:      linux-afs@lists.infradead.org
594 S:      Supported
595 F:      fs/afs/
596 F:      include/trace/events/afs.h
597 F:      Documentation/filesystems/afs.txt
598 W:      https://www.infradead.org/~dhowells/kafs/
599
600 AGPGART DRIVER
601 M:      David Airlie <airlied@linux.ie>
602 T:      git git://anongit.freedesktop.org/drm/drm
603 S:      Maintained
604 F:      drivers/char/agp/
605 F:      include/linux/agp*
606 F:      include/uapi/linux/agp*
607
608 AHA152X SCSI DRIVER
609 M:      "Juergen E. Fischer" <fischer@norbit.de>
610 L:      linux-scsi@vger.kernel.org
611 S:      Maintained
612 F:      drivers/scsi/aha152x*
613 F:      drivers/scsi/pcmcia/aha152x*
614
615 AIC7XXX / AIC79XX SCSI DRIVER
616 M:      Hannes Reinecke <hare@suse.com>
617 L:      linux-scsi@vger.kernel.org
618 S:      Maintained
619 F:      drivers/scsi/aic7xxx/
620
621 AIMSLAB FM RADIO RECEIVER DRIVER
622 M:      Hans Verkuil <hverkuil@xs4all.nl>
623 L:      linux-media@vger.kernel.org
624 T:      git git://linuxtv.org/media_tree.git
625 W:      https://linuxtv.org
626 S:      Maintained
627 F:      drivers/media/radio/radio-aimslab*
628
629 AIO
630 M:      Benjamin LaHaise <bcrl@kvack.org>
631 L:      linux-aio@kvack.org
632 S:      Supported
633 F:      fs/aio.c
634 F:      include/linux/*aio*.h
635
636 AIRSPY MEDIA DRIVER
637 M:      Antti Palosaari <crope@iki.fi>
638 L:      linux-media@vger.kernel.org
639 W:      https://linuxtv.org
640 W:      http://palosaari.fi/linux/
641 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
642 T:      git git://linuxtv.org/anttip/media_tree.git
643 S:      Maintained
644 F:      drivers/media/usb/airspy/
645
646 ALACRITECH GIGABIT ETHERNET DRIVER
647 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
648 S:      Maintained
649 F:      drivers/net/ethernet/alacritech/*
650
651 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
669 F:      drivers/i2c/busses/i2c-ali1563.c
670
671 ALLWINNER SECURITY SYSTEM
672 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
673 L:      linux-crypto@vger.kernel.org
674 S:      Maintained
675 F:      drivers/crypto/sunxi-ss/
676
677 ALLWINNER VPU DRIVER
678 M:      Maxime Ripard <maxime.ripard@bootlin.com>
679 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
680 L:      linux-media@vger.kernel.org
681 S:      Maintained
682 F:      drivers/staging/media/sunxi/cedrus/
683
684 ALPHA PORT
685 M:      Richard Henderson <rth@twiddle.net>
686 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
687 M:      Matt Turner <mattst88@gmail.com>
688 S:      Odd Fixes
689 L:      linux-alpha@vger.kernel.org
690 F:      arch/alpha/
691
692 ALPS PS/2 TOUCHPAD DRIVER
693 R:      Pali Rohár <pali.rohar@gmail.com>
694 F:      drivers/input/mouse/alps.*
695
696 ALTERA I2C CONTROLLER DRIVER
697 M:      Thor Thayer <thor.thayer@linux.intel.com>
698 S:      Maintained
699 F:      drivers/i2c/busses/i2c-altera.c
700
701 ALTERA MAILBOX DRIVER
702 M:      Ley Foon Tan <lftan@altera.com>
703 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
704 S:      Maintained
705 F:      drivers/mailbox/mailbox-altera.c
706
707 ALTERA PIO DRIVER
708 M:      Tien Hock Loh <thloh@altera.com>
709 L:      linux-gpio@vger.kernel.org
710 S:      Maintained
711 F:      drivers/gpio/gpio-altera.c
712
713 ALTERA SYSTEM MANAGER DRIVER
714 M:      Thor Thayer <thor.thayer@linux.intel.com>
715 S:      Maintained
716 F:      drivers/mfd/altera-sysmgr.c
717 F:      include/linux/mfd/altera-sysgmr.h
718
719 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
720 M:      Thor Thayer <thor.thayer@linux.intel.com>
721 S:      Maintained
722 F:      drivers/gpio/gpio-altera-a10sr.c
723 F:      drivers/mfd/altera-a10sr.c
724 F:      drivers/reset/reset-a10sr.c
725 F:      include/linux/mfd/altera-a10sr.h
726 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
727
728 ALTERA TRIPLE SPEED ETHERNET DRIVER
729 M:      Thor Thayer <thor.thayer@linux.intel.com>
730 L:      netdev@vger.kernel.org
731 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
732 S:      Maintained
733 F:      drivers/net/ethernet/altera/
734
735 ALTERA UART/JTAG UART SERIAL DRIVERS
736 M:      Tobias Klauser <tklauser@distanz.ch>
737 L:      linux-serial@vger.kernel.org
738 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
739 S:      Maintained
740 F:      drivers/tty/serial/altera_uart.c
741 F:      drivers/tty/serial/altera_jtaguart.c
742 F:      include/linux/altera_uart.h
743 F:      include/linux/altera_jtaguart.h
744
745 AMAZON ETHERNET DRIVERS
746 M:      Netanel Belgazal <netanel@amazon.com>
747 R:      Saeed Bishara <saeedb@amazon.com>
748 R:      Zorik Machulsky <zorik@amazon.com>
749 L:      netdev@vger.kernel.org
750 S:      Supported
751 F:      Documentation/networking/device_drivers/amazon/ena.txt
752 F:      drivers/net/ethernet/amazon/
753
754 AMAZON RDMA EFA DRIVER
755 M:      Gal Pressman <galpress@amazon.com>
756 R:      Yossi Leybovich <sleybo@amazon.com>
757 L:      linux-rdma@vger.kernel.org
758 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
759 S:      Supported
760 F:      drivers/infiniband/hw/efa/
761 F:      include/uapi/rdma/efa-abi.h
762
763 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
764 M:      Tom Lendacky <thomas.lendacky@amd.com>
765 M:      Gary Hook <gary.hook@amd.com>
766 L:      linux-crypto@vger.kernel.org
767 S:      Supported
768 F:      drivers/crypto/ccp/
769 F:      include/linux/ccp.h
770
771 AMD DISPLAY CORE
772 M:      Harry Wentland <harry.wentland@amd.com>
773 M:      Leo Li <sunpeng.li@amd.com>
774 L:      amd-gfx@lists.freedesktop.org
775 T:      git git://people.freedesktop.org/~agd5f/linux
776 S:      Supported
777 F:      drivers/gpu/drm/amd/display/
778
779 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
780 M:      Huang Rui <ray.huang@amd.com>
781 L:      linux-hwmon@vger.kernel.org
782 S:      Supported
783 F:      Documentation/hwmon/fam15h_power.rst
784 F:      drivers/hwmon/fam15h_power.c
785
786 AMD FCH GPIO DRIVER
787 M:      Enrico Weigelt, metux IT consult <info@metux.net>
788 L:      linux-gpio@vger.kernel.org
789 S:      Maintained
790 F:      drivers/gpio/gpio-amd-fch.c
791 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
792
793 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
794 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
795 S:      Orphan
796 F:      drivers/usb/gadget/udc/amd5536udc.*
797
798 AMD GEODE PROCESSOR/CHIPSET SUPPORT
799 P:      Andres Salomon <dilinger@queued.net>
800 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
801 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
802 S:      Supported
803 F:      drivers/char/hw_random/geode-rng.c
804 F:      drivers/crypto/geode*
805 F:      drivers/video/fbdev/geode/
806 F:      arch/x86/include/asm/geode.h
807
808 AMD IOMMU (AMD-VI)
809 M:      Joerg Roedel <joro@8bytes.org>
810 L:      iommu@lists.linux-foundation.org
811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
812 S:      Maintained
813 F:      drivers/iommu/amd_iommu*.[ch]
814 F:      include/linux/amd-iommu.h
815
816 AMD KFD
817 M:      Oded Gabbay <oded.gabbay@gmail.com>
818 L:      dri-devel@lists.freedesktop.org
819 T:      git git://people.freedesktop.org/~gabbayo/linux.git
820 S:      Supported
821 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
822 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
823 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
824 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
825 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.c
826 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
827 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
828 F:      drivers/gpu/drm/amd/amdkfd/
829 F:      drivers/gpu/drm/amd/include/cik_structs.h
830 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
831 F:      drivers/gpu/drm/amd/include/vi_structs.h
832 F:      drivers/gpu/drm/amd/include/v9_structs.h
833 F:      include/uapi/linux/kfd_ioctl.h
834
835 AMD MP2 I2C DRIVER
836 M:      Elie Morisse <syniurge@gmail.com>
837 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
838 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
839 L:      linux-i2c@vger.kernel.org
840 S:      Maintained
841 F:      drivers/i2c/busses/i2c-amd-mp2*
842
843 AMD POWERPLAY
844 M:      Rex Zhu <rex.zhu@amd.com>
845 M:      Evan Quan <evan.quan@amd.com>
846 L:      amd-gfx@lists.freedesktop.org
847 S:      Supported
848 F:      drivers/gpu/drm/amd/powerplay/
849 T:      git git://people.freedesktop.org/~agd5f/linux
850
851 AMD SEATTLE DEVICE TREE SUPPORT
852 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
853 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
854 M:      Tom Lendacky <thomas.lendacky@amd.com>
855 S:      Supported
856 F:      arch/arm64/boot/dts/amd/
857
858 AMD XGBE DRIVER
859 M:      Tom Lendacky <thomas.lendacky@amd.com>
860 L:      netdev@vger.kernel.org
861 S:      Supported
862 F:      drivers/net/ethernet/amd/xgbe/
863 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
864
865 ANALOG DEVICES INC AD5686 DRIVER
866 M:      Stefan Popa <stefan.popa@analog.com>
867 L:      linux-pm@vger.kernel.org
868 W:      http://ez.analog.com/community/linux-device-drivers
869 S:      Supported
870 F:      drivers/iio/dac/ad5686*
871 F:      drivers/iio/dac/ad5696*
872
873 ANALOG DEVICES INC AD5758 DRIVER
874 M:      Stefan Popa <stefan.popa@analog.com>
875 L:      linux-iio@vger.kernel.org
876 W:      http://ez.analog.com/community/linux-device-drivers
877 S:      Supported
878 F:      drivers/iio/dac/ad5758.c
879 F:      Documentation/devicetree/bindings/iio/dac/ad5758.txt
880
881 ANALOG DEVICES INC AD7124 DRIVER
882 M:      Stefan Popa <stefan.popa@analog.com>
883 L:      linux-iio@vger.kernel.org
884 W:      http://ez.analog.com/community/linux-device-drivers
885 S:      Supported
886 F:      drivers/iio/adc/ad7124.c
887 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
888
889 ANALOG DEVICES INC AD7606 DRIVER
890 M:      Stefan Popa <stefan.popa@analog.com>
891 L:      linux-iio@vger.kernel.org
892 W:      http://ez.analog.com/community/linux-device-drivers
893 S:      Supported
894 F:      drivers/iio/adc/ad7606.c
895 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.txt
896
897 ANALOG DEVICES INC AD7768-1 DRIVER
898 M:      Stefan Popa <stefan.popa@analog.com>
899 L:      linux-iio@vger.kernel.org
900 W:      http://ez.analog.com/community/linux-device-drivers
901 S:      Supported
902 F:      drivers/iio/adc/ad7768-1.c
903 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.txt
904
905 ANALOG DEVICES INC AD9389B DRIVER
906 M:      Hans Verkuil <hans.verkuil@cisco.com>
907 L:      linux-media@vger.kernel.org
908 S:      Maintained
909 F:      drivers/media/i2c/ad9389b*
910
911 ANALOG DEVICES INC ADGS1408 DRIVER
912 M:      Mircea Caprioru <mircea.caprioru@analog.com>
913 S:      Supported
914 F:      drivers/mux/adgs1408.c
915 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
916
917 ANALOG DEVICES INC ADP5061 DRIVER
918 M:      Stefan Popa <stefan.popa@analog.com>
919 L:      linux-pm@vger.kernel.org
920 W:      http://ez.analog.com/community/linux-device-drivers
921 S:      Supported
922 F:      drivers/power/supply/adp5061.c
923
924 ANALOG DEVICES INC ADV7180 DRIVER
925 M:      Lars-Peter Clausen <lars@metafoo.de>
926 L:      linux-media@vger.kernel.org
927 W:      http://ez.analog.com/community/linux-device-drivers
928 S:      Supported
929 F:      drivers/media/i2c/adv7180.c
930
931 ANALOG DEVICES INC ADV748X DRIVER
932 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
933 L:      linux-media@vger.kernel.org
934 S:      Maintained
935 F:      drivers/media/i2c/adv748x/*
936
937 ANALOG DEVICES INC ADV7511 DRIVER
938 M:      Hans Verkuil <hans.verkuil@cisco.com>
939 L:      linux-media@vger.kernel.org
940 S:      Maintained
941 F:      drivers/media/i2c/adv7511*
942
943 ANALOG DEVICES INC ADV7604 DRIVER
944 M:      Hans Verkuil <hans.verkuil@cisco.com>
945 L:      linux-media@vger.kernel.org
946 S:      Maintained
947 F:      drivers/media/i2c/adv7604*
948
949 ANALOG DEVICES INC ADV7842 DRIVER
950 M:      Hans Verkuil <hans.verkuil@cisco.com>
951 L:      linux-media@vger.kernel.org
952 S:      Maintained
953 F:      drivers/media/i2c/adv7842*
954
955 ANALOG DEVICES INC ASOC CODEC DRIVERS
956 M:      Lars-Peter Clausen <lars@metafoo.de>
957 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
958 W:      http://wiki.analog.com/
959 W:      http://ez.analog.com/community/linux-device-drivers
960 S:      Supported
961 F:      sound/soc/codecs/adau*
962 F:      sound/soc/codecs/adav*
963 F:      sound/soc/codecs/ad1*
964 F:      sound/soc/codecs/ad7*
965 F:      sound/soc/codecs/ssm*
966 F:      sound/soc/codecs/sigmadsp.*
967
968 ANALOG DEVICES INC DMA DRIVERS
969 M:      Lars-Peter Clausen <lars@metafoo.de>
970 W:      http://ez.analog.com/community/linux-device-drivers
971 S:      Supported
972 F:      drivers/dma/dma-axi-dmac.c
973
974 ANALOG DEVICES INC IIO DRIVERS
975 M:      Lars-Peter Clausen <lars@metafoo.de>
976 M:      Michael Hennerich <Michael.Hennerich@analog.com>
977 M:      Stefan Popa <stefan.popa@analog.com>
978 W:      http://wiki.analog.com/
979 W:      http://ez.analog.com/community/linux-device-drivers
980 S:      Supported
981 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
982 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
983 F:      drivers/iio/*/ad*
984 F:      drivers/iio/adc/ltc2497*
985 X:      drivers/iio/*/adjd*
986 F:      drivers/staging/iio/*/ad*
987
988 ANALOGBITS PLL LIBRARIES
989 M:      Paul Walmsley <paul.walmsley@sifive.com>
990 S:      Supported
991 F:      drivers/clk/analogbits/*
992 F:      include/linux/clk/analogbits*
993
994 ANDES ARCHITECTURE
995 M:      Greentime Hu <green.hu@gmail.com>
996 M:      Vincent Chen <deanbo422@gmail.com>
997 T:      git https://github.com/andestech/linux.git
998 S:      Supported
999 F:      arch/nds32/
1000 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1001 F:      Documentation/devicetree/bindings/nds32/
1002 K:      nds32
1003 N:      nds32
1004
1005 ANDROID CONFIG FRAGMENTS
1006 M:      Rob Herring <robh@kernel.org>
1007 S:      Supported
1008 F:      kernel/configs/android*
1009
1010 ANDROID DRIVERS
1011 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1012 M:      Arve Hjønnevåg <arve@android.com>
1013 M:      Todd Kjos <tkjos@android.com>
1014 M:      Martijn Coenen <maco@android.com>
1015 M:      Joel Fernandes <joel@joelfernandes.org>
1016 M:      Christian Brauner <christian@brauner.io>
1017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1018 L:      devel@driverdev.osuosl.org
1019 S:      Supported
1020 F:      drivers/android/
1021 F:      drivers/staging/android/
1022
1023 ANDROID GOLDFISH PIC DRIVER
1024 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1025 S:      Supported
1026 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1027 F:      drivers/irqchip/irq-goldfish-pic.c
1028
1029 ANDROID GOLDFISH RTC DRIVER
1030 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1031 S:      Supported
1032 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1033 F:      drivers/rtc/rtc-goldfish.c
1034
1035 ANDROID ION DRIVER
1036 M:      Laura Abbott <labbott@redhat.com>
1037 M:      Sumit Semwal <sumit.semwal@linaro.org>
1038 L:      devel@driverdev.osuosl.org
1039 L:      dri-devel@lists.freedesktop.org
1040 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
1041 S:      Supported
1042 F:      drivers/staging/android/ion
1043 F:      drivers/staging/android/uapi/ion.h
1044
1045 AOA (Apple Onboard Audio) ALSA DRIVER
1046 M:      Johannes Berg <johannes@sipsolutions.net>
1047 L:      linuxppc-dev@lists.ozlabs.org
1048 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1049 S:      Maintained
1050 F:      sound/aoa/
1051
1052 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1053 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1054 L:      linux-iio@vger.kernel.org
1055 S:      Maintained
1056 F:      drivers/iio/adc/stx104.c
1057
1058 APM DRIVER
1059 M:      Jiri Kosina <jikos@kernel.org>
1060 S:      Odd fixes
1061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1062 F:      arch/x86/kernel/apm_32.c
1063 F:      include/linux/apm_bios.h
1064 F:      include/uapi/linux/apm_bios.h
1065 F:      drivers/char/apm-emulation.c
1066
1067 APPARMOR SECURITY MODULE
1068 M:      John Johansen <john.johansen@canonical.com>
1069 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1070 W:      wiki.apparmor.net
1071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1072 S:      Supported
1073 F:      security/apparmor/
1074 F:      Documentation/admin-guide/LSM/apparmor.rst
1075
1076 APPLE BCM5974 MULTITOUCH DRIVER
1077 M:      Henrik Rydberg <rydberg@bitmath.org>
1078 L:      linux-input@vger.kernel.org
1079 S:      Odd fixes
1080 F:      drivers/input/mouse/bcm5974.c
1081
1082 APPLE SMC DRIVER
1083 M:      Henrik Rydberg <rydberg@bitmath.org>
1084 L:      linux-hwmon@vger.kernel.org
1085 S:      Odd fixes
1086 F:      drivers/hwmon/applesmc.c
1087
1088 APPLETALK NETWORK LAYER
1089 L:      netdev@vger.kernel.org
1090 S:      Odd fixes
1091 F:      drivers/net/appletalk/
1092 F:      net/appletalk/
1093 F:      include/linux/atalk.h
1094 F:      include/uapi/linux/atalk.h
1095
1096 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1097 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1098 S:      Supported
1099 F:      arch/arm64/boot/dts/apm/
1100
1101 APPLIED MICRO (APM) X-GENE SOC EDAC
1102 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1103 S:      Supported
1104 F:      drivers/edac/xgene_edac.c
1105 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1106
1107 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1108 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1109 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1110 S:      Supported
1111 F:      drivers/net/ethernet/apm/xgene-v2/
1112
1113 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1114 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1115 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1116 M:      Quan Nguyen <quan@os.amperecomputing.com>
1117 S:      Supported
1118 F:      drivers/net/ethernet/apm/xgene/
1119 F:      drivers/net/phy/mdio-xgene.c
1120 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1121 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1122
1123 APPLIED MICRO (APM) X-GENE SOC PMU
1124 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1125 S:      Supported
1126 F:      drivers/perf/xgene_pmu.c
1127 F:      Documentation/perf/xgene-pmu.txt
1128 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1129
1130 APTINA CAMERA SENSOR PLL
1131 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1132 L:      linux-media@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/media/i2c/aptina-pll.*
1135
1136 ARC FRAMEBUFFER DRIVER
1137 M:      Jaya Kumar <jayalk@intworks.biz>
1138 S:      Maintained
1139 F:      drivers/video/fbdev/arcfb.c
1140 F:      drivers/video/fbdev/core/fb_defio.c
1141
1142 ARC PGU DRM DRIVER
1143 M:      Alexey Brodkin <abrodkin@synopsys.com>
1144 S:      Supported
1145 F:      drivers/gpu/drm/arc/
1146 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1147
1148 ARCNET NETWORK LAYER
1149 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1150 L:      netdev@vger.kernel.org
1151 S:      Maintained
1152 F:      drivers/net/arcnet/
1153 F:      include/uapi/linux/if_arcnet.h
1154
1155 ARM ARCHITECTED TIMER DRIVER
1156 M:      Mark Rutland <mark.rutland@arm.com>
1157 M:      Marc Zyngier <marc.zyngier@arm.com>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Maintained
1160 F:      arch/arm/include/asm/arch_timer.h
1161 F:      arch/arm64/include/asm/arch_timer.h
1162 F:      drivers/clocksource/arm_arch_timer.c
1163
1164 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1165 M:      Linus Walleij <linus.walleij@linaro.org>
1166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 S:      Maintained
1168 F:      Documentation/devicetree/bindings/arm/arm-boards
1169 F:      Documentation/devicetree/bindings/auxdisplay/arm-charlcd.txt
1170 F:      Documentation/devicetree/bindings/clock/arm-integrator.txt
1171 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1172 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1173 F:      arch/arm/mach-integrator/
1174 F:      arch/arm/mach-realview/
1175 F:      arch/arm/mach-versatile/
1176 F:      arch/arm/plat-versatile/
1177 F:      arch/arm/boot/dts/arm-realview-*
1178 F:      arch/arm/boot/dts/integrator*
1179 F:      arch/arm/boot/dts/versatile*
1180 F:      drivers/clk/versatile/
1181 F:      drivers/i2c/busses/i2c-versatile.c
1182 F:      drivers/irqchip/irq-versatile-fpga.c
1183 F:      drivers/mtd/maps/physmap_of_versatile.c
1184 F:      drivers/power/reset/arm-versatile-reboot.c
1185 F:      drivers/soc/versatile/
1186
1187 ARM HDLCD DRM DRIVER
1188 M:      Liviu Dudau <liviu.dudau@arm.com>
1189 S:      Supported
1190 F:      drivers/gpu/drm/arm/hdlcd_*
1191 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1192
1193 ARM KOMEDA DRM-KMS DRIVER
1194 M:      James (Qian) Wang <james.qian.wang@arm.com>
1195 M:      Liviu Dudau <liviu.dudau@arm.com>
1196 L:      Mali DP Maintainers <malidp@foss.arm.com>
1197 S:      Supported
1198 T:      git git://linux-arm.org/linux-ld.git for-upstream/mali-dp
1199 F:      drivers/gpu/drm/arm/display/include/
1200 F:      drivers/gpu/drm/arm/display/komeda/
1201 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1202 F:      Documentation/gpu/komeda-kms.rst
1203
1204 ARM MALI-DP DRM DRIVER
1205 M:      Liviu Dudau <liviu.dudau@arm.com>
1206 M:      Brian Starkey <brian.starkey@arm.com>
1207 L:      Mali DP Maintainers <malidp@foss.arm.com>
1208 S:      Supported
1209 T:      git git://linux-arm.org/linux-ld.git for-upstream/mali-dp
1210 F:      drivers/gpu/drm/arm/
1211 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1212 F:      Documentation/gpu/afbc.rst
1213
1214 ARM MALI PANFROST DRM DRIVER
1215 M:      Rob Herring <robh@kernel.org>
1216 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1217 L:      dri-devel@lists.freedesktop.org
1218 S:      Supported
1219 T:      git git://anongit.freedesktop.org/drm/drm-misc
1220 F:      drivers/gpu/drm/panfrost/
1221 F:      include/uapi/drm/panfrost_drm.h
1222
1223 ARM MFM AND FLOPPY DRIVERS
1224 M:      Ian Molton <spyro@f2s.com>
1225 S:      Maintained
1226 F:      arch/arm/lib/floppydma.S
1227 F:      arch/arm/include/asm/floppy.h
1228
1229 ARM PMU PROFILING AND DEBUGGING
1230 M:      Will Deacon <will.deacon@arm.com>
1231 M:      Mark Rutland <mark.rutland@arm.com>
1232 S:      Maintained
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 F:      arch/arm*/kernel/perf_*
1235 F:      arch/arm/oprofile/common.c
1236 F:      arch/arm*/kernel/hw_breakpoint.c
1237 F:      arch/arm*/include/asm/hw_breakpoint.h
1238 F:      arch/arm*/include/asm/perf_event.h
1239 F:      drivers/perf/*
1240 F:      include/linux/perf/arm_pmu.h
1241 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1242 F:      Documentation/devicetree/bindings/perf/
1243
1244 ARM PORT
1245 M:      Russell King <linux@armlinux.org.uk>
1246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247 W:      http://www.armlinux.org.uk/
1248 S:      Odd Fixes
1249 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1250 F:      arch/arm/
1251 X:      arch/arm/boot/dts/
1252
1253 ARM PRIMECELL AACI PL041 DRIVER
1254 M:      Russell King <linux@armlinux.org.uk>
1255 S:      Odd Fixes
1256 F:      sound/arm/aaci.*
1257
1258 ARM PRIMECELL BUS SUPPORT
1259 M:      Russell King <linux@armlinux.org.uk>
1260 S:      Odd Fixes
1261 F:      drivers/amba/
1262 F:      include/linux/amba/bus.h
1263
1264 ARM PRIMECELL CLCD PL110 DRIVER
1265 M:      Russell King <linux@armlinux.org.uk>
1266 S:      Odd Fixes
1267 F:      drivers/video/fbdev/amba-clcd.*
1268
1269 ARM PRIMECELL KMI PL050 DRIVER
1270 M:      Russell King <linux@armlinux.org.uk>
1271 S:      Odd Fixes
1272 F:      drivers/input/serio/ambakmi.*
1273 F:      include/linux/amba/kmi.h
1274
1275 ARM PRIMECELL MMCI PL180/1 DRIVER
1276 M:      Russell King <linux@armlinux.org.uk>
1277 S:      Odd Fixes
1278 F:      drivers/mmc/host/mmci.*
1279 F:      include/linux/amba/mmci.h
1280
1281 ARM PRIMECELL SSP PL022 SPI DRIVER
1282 M:      Linus Walleij <linus.walleij@linaro.org>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285 F:      Documentation/devicetree/bindings/spi/spi_pl022.txt
1286 F:      drivers/spi/spi-pl022.c
1287
1288 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1289 M:      Russell King <linux@armlinux.org.uk>
1290 S:      Odd Fixes
1291 F:      drivers/tty/serial/amba-pl01*.c
1292 F:      include/linux/amba/serial.h
1293
1294 ARM PRIMECELL VIC PL190/PL192 DRIVER
1295 M:      Linus Walleij <linus.walleij@linaro.org>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 S:      Maintained
1298 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1299 F:      drivers/irqchip/irq-vic.c
1300
1301 ARM SMMU DRIVERS
1302 M:      Will Deacon <will.deacon@arm.com>
1303 R:      Robin Murphy <robin.murphy@arm.com>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 S:      Maintained
1306 F:      drivers/iommu/arm-smmu.c
1307 F:      drivers/iommu/arm-smmu-v3.c
1308 F:      drivers/iommu/io-pgtable-arm.c
1309 F:      drivers/iommu/io-pgtable-arm-v7s.c
1310
1311 ARM SUB-ARCHITECTURES
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      arch/arm/mach-*/
1315 F:      arch/arm/plat-*/
1316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1317
1318 ARM/ACTIONS SEMI ARCHITECTURE
1319 M:      Andreas Färber <afaerber@suse.de>
1320 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 S:      Maintained
1323 N:      owl
1324 F:      arch/arm/mach-actions/
1325 F:      arch/arm/boot/dts/owl-*
1326 F:      arch/arm64/boot/dts/actions/
1327 F:      drivers/clk/actions/
1328 F:      drivers/clocksource/timer-owl*
1329 F:      drivers/dma/owl-dma.c
1330 F:      drivers/i2c/busses/i2c-owl.c
1331 F:      drivers/pinctrl/actions/*
1332 F:      drivers/soc/actions/
1333 F:      include/dt-bindings/power/owl-*
1334 F:      include/linux/soc/actions/
1335 F:      Documentation/devicetree/bindings/arm/actions.txt
1336 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1337 F:      Documentation/devicetree/bindings/dma/owl-dma.txt
1338 F:      Documentation/devicetree/bindings/i2c/i2c-owl.txt
1339 F:      Documentation/devicetree/bindings/pinctrl/actions,s900-pinctrl.txt
1340 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1341 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1342
1343 ARM/ADS SPHERE MACHINE SUPPORT
1344 M:      Lennert Buytenhek <kernel@wantstofly.org>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 S:      Maintained
1347
1348 ARM/AFEB9260 MACHINE SUPPORT
1349 M:      Sergey Lapin <slapin@ossfans.org>
1350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1351 S:      Maintained
1352
1353 ARM/AJECO 1ARM MACHINE SUPPORT
1354 M:      Lennert Buytenhek <kernel@wantstofly.org>
1355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1356 S:      Maintained
1357
1358 ARM/Allwinner SoC Clock Support
1359 M:      Emilio López <emilio@elopez.com.ar>
1360 S:      Maintained
1361 F:      drivers/clk/sunxi/
1362
1363 ARM/Allwinner sunXi SoC support
1364 M:      Maxime Ripard <maxime.ripard@bootlin.com>
1365 M:      Chen-Yu Tsai <wens@csie.org>
1366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1367 S:      Maintained
1368 N:      sun[x456789]i
1369 N:      sun50i
1370 F:      arch/arm/mach-sunxi/
1371 F:      arch/arm64/boot/dts/allwinner/
1372 F:      drivers/clk/sunxi-ng/
1373 F:      drivers/pinctrl/sunxi/
1374 F:      drivers/soc/sunxi/
1375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1376
1377 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1378 M:      Neil Armstrong <narmstrong@baylibre.com>
1379 M:      Jerome Brunet <jbrunet@baylibre.com>
1380 L:      linux-amlogic@lists.infradead.org
1381 S:      Maintained
1382 F:      drivers/clk/meson/
1383 F:      include/dt-bindings/clock/meson*
1384 F:      include/dt-bindings/clock/gxbb*
1385 F:      Documentation/devicetree/bindings/clock/amlogic*
1386
1387 ARM/Amlogic Meson SoC support
1388 M:      Kevin Hilman <khilman@baylibre.com>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 L:      linux-amlogic@lists.infradead.org
1391 W:      http://linux-meson.com/
1392 S:      Maintained
1393 F:      arch/arm/mach-meson/
1394 F:      arch/arm/boot/dts/meson*
1395 F:      arch/arm64/boot/dts/amlogic/
1396 F:      drivers/pinctrl/meson/
1397 F:      drivers/mmc/host/meson*
1398 F:      drivers/soc/amlogic/
1399 N:      meson
1400
1401 ARM/Amlogic Meson SoC Sound Drivers
1402 M:      Jerome Brunet <jbrunet@baylibre.com>
1403 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1404 S:      Maintained
1405 F:      sound/soc/meson/
1406 F:      Documentation/devicetree/bindings/sound/amlogic*
1407
1408 ARM/Annapurna Labs ALPINE ARCHITECTURE
1409 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1410 M:      Antoine Tenart <antoine.tenart@bootlin.com>
1411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 S:      Maintained
1413 F:      arch/arm/mach-alpine/
1414 F:      arch/arm/boot/dts/alpine*
1415 F:      arch/arm64/boot/dts/al/
1416 F:      drivers/*/*alpine*
1417
1418 ARM/ARTPEC MACHINE SUPPORT
1419 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1420 M:      Lars Persson <lars.persson@axis.com>
1421 S:      Maintained
1422 L:      linux-arm-kernel@axis.com
1423 F:      arch/arm/mach-artpec
1424 F:      arch/arm/boot/dts/artpec6*
1425 F:      drivers/clk/axis
1426 F:      drivers/crypto/axis
1427 F:      drivers/pinctrl/pinctrl-artpec*
1428 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1429
1430 ARM/ASPEED I2C DRIVER
1431 M:      Brendan Higgins <brendanhiggins@google.com>
1432 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1433 R:      Joel Stanley <joel@jms.id.au>
1434 L:      linux-i2c@vger.kernel.org
1435 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1436 S:      Maintained
1437 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1438 F:      drivers/i2c/busses/i2c-aspeed.c
1439 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1440 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1441
1442 ARM/ASPEED MACHINE SUPPORT
1443 M:      Joel Stanley <joel@jms.id.au>
1444 R:      Andrew Jeffery <andrew@aj.id.au>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1447 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1448 S:      Supported
1449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1450 F:      arch/arm/mach-aspeed/
1451 F:      arch/arm/boot/dts/aspeed-*
1452 N:      aspeed
1453
1454 ARM/BITMAIN ARCHITECTURE
1455 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1457 S:      Maintained
1458 F:      arch/arm64/boot/dts/bitmain/
1459 F:      drivers/pinctrl/pinctrl-bm1880.c
1460 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1461 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1462
1463 ARM/CALXEDA HIGHBANK ARCHITECTURE
1464 M:      Rob Herring <robh@kernel.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      arch/arm/mach-highbank/
1468 F:      arch/arm/boot/dts/highbank.dts
1469 F:      arch/arm/boot/dts/ecx-*.dts*
1470
1471 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1472 M:      Krzysztof Halasa <khalasa@piap.pl>
1473 S:      Maintained
1474 F:      arch/arm/mach-cns3xxx/
1475
1476 ARM/CAVIUM THUNDER NETWORK DRIVER
1477 M:      Sunil Goutham <sgoutham@cavium.com>
1478 M:      Robert Richter <rric@kernel.org>
1479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1480 S:      Supported
1481 F:      drivers/net/ethernet/cavium/thunder/
1482
1483 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1484 M:      Lukasz Majewski <lukma@denx.de>
1485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 S:      Maintained
1487 F:      arch/arm/mach-ep93xx/ts72xx.c
1488
1489 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1490 M:      Alexander Shiyan <shc_work@mail.ru>
1491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1492 S:      Odd Fixes
1493 N:      clps711x
1494
1495 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1496 M:      Lennert Buytenhek <kernel@wantstofly.org>
1497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1498 S:      Maintained
1499
1500 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1501 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1502 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 S:      Maintained
1505 F:      arch/arm/mach-ep93xx/
1506 F:      arch/arm/mach-ep93xx/include/mach/
1507
1508 ARM/CLKDEV SUPPORT
1509 M:      Russell King <linux@armlinux.org.uk>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1513 F:      drivers/clk/clkdev.c
1514
1515 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1516 M:      Mike Rapoport <mike@compulab.co.il>
1517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1518 S:      Maintained
1519
1520 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1521 M:      Baruch Siach <baruch@tkos.co.il>
1522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1523 S:      Maintained
1524 F:      arch/arm/boot/dts/cx92755*
1525 N:      digicolor
1526
1527 ARM/CONTEC MICRO9 MACHINE SUPPORT
1528 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1529 S:      Maintained
1530 F:      arch/arm/mach-ep93xx/micro9.c
1531
1532 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1533 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1534 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      drivers/hwtracing/coresight/*
1538 F:      Documentation/trace/coresight.txt
1539 F:      Documentation/trace/coresight-cpu-debug.txt
1540 F:      Documentation/devicetree/bindings/arm/coresight.txt
1541 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1542 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1543 F:      tools/perf/arch/arm/util/pmu.c
1544 F:      tools/perf/arch/arm/util/auxtrace.c
1545 F:      tools/perf/arch/arm/util/cs-etm.c
1546 F:      tools/perf/arch/arm/util/cs-etm.h
1547 F:      tools/perf/util/cs-etm.*
1548 F:      tools/perf/util/cs-etm-decoder/*
1549
1550 ARM/CORGI MACHINE SUPPORT
1551 M:      Richard Purdie <rpurdie@rpsys.net>
1552 S:      Maintained
1553
1554 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1555 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1556 M:      Linus Walleij <linus.walleij@linaro.org>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 T:      git git://github.com/ulli-kroll/linux.git
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/arm/gemini.txt
1561 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1562 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1563 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1564 F:      arch/arm/mach-gemini/
1565 F:      drivers/net/ethernet/cortina/
1566 F:      drivers/pinctrl/pinctrl-gemini.c
1567 F:      drivers/rtc/rtc-ftrtc010.c
1568
1569 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1570 M:      Barry Song <baohua@kernel.org>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1573 S:      Maintained
1574 F:      arch/arm/boot/dts/prima2*
1575 F:      arch/arm/mach-prima2/
1576 F:      drivers/clk/sirf/
1577 F:      drivers/clocksource/timer-prima2.c
1578 F:      drivers/clocksource/timer-atlas7.c
1579 N:      [^a-z]sirf
1580 X:      drivers/gnss
1581
1582 ARM/EBSA110 MACHINE SUPPORT
1583 M:      Russell King <linux@armlinux.org.uk>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 W:      http://www.armlinux.org.uk/
1586 S:      Maintained
1587 F:      arch/arm/mach-ebsa110/
1588 F:      drivers/net/ethernet/amd/am79c961a.*
1589
1590 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1591 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
1592 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Maintained
1595 N:      efm32
1596
1597 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1598 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S:      Maintained
1601 F:      arch/arm/mach-pxa/ezx.c
1602
1603 ARM/FARADAY FA526 PORT
1604 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1606 S:      Maintained
1607 T:      git git://git.berlios.de/gemini-board
1608 F:      arch/arm/mm/*-fa*
1609
1610 ARM/FOOTBRIDGE ARCHITECTURE
1611 M:      Russell King <linux@armlinux.org.uk>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 W:      http://www.armlinux.org.uk/
1614 S:      Maintained
1615 F:      arch/arm/include/asm/hardware/dec21285.h
1616 F:      arch/arm/mach-footbridge/
1617
1618 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1619 M:      Shawn Guo <shawnguo@kernel.org>
1620 M:      Sascha Hauer <s.hauer@pengutronix.de>
1621 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1622 R:      Fabio Estevam <festevam@gmail.com>
1623 R:      NXP Linux Team <linux-imx@nxp.com>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Maintained
1626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1627 N:      imx
1628 N:      mxs
1629 X:      drivers/media/i2c/
1630
1631 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1632 M:      Shawn Guo <shawnguo@kernel.org>
1633 M:      Sascha Hauer <s.hauer@pengutronix.de>
1634 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1635 R:      Stefan Agner <stefan@agner.ch>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 S:      Maintained
1638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1639 F:      arch/arm/mach-imx/*vf610*
1640 F:      arch/arm/boot/dts/vf*
1641
1642 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1643 M:      Shawn Guo <shawnguo@kernel.org>
1644 M:      Li Yang <leoyang.li@nxp.com>
1645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1646 S:      Maintained
1647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1648 F:      arch/arm/boot/dts/ls1021a*
1649 F:      arch/arm64/boot/dts/freescale/fsl-*
1650 F:      arch/arm64/boot/dts/freescale/qoriq-*
1651
1652 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1653 M:      Lennert Buytenhek <kernel@wantstofly.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656
1657 ARM/GUMSTIX MACHINE SUPPORT
1658 M:      Steve Sakoman <sakoman@gmail.com>
1659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 S:      Maintained
1661
1662 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1663 M:      Philipp Zabel <philipp.zabel@gmail.com>
1664 M:      Paul Parsons <lost.distance@yahoo.com>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      arch/arm/mach-pxa/hx4700.c
1668 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1669 F:      sound/soc/pxa/hx4700.c
1670
1671 ARM/HISILICON SOC SUPPORT
1672 M:      Wei Xu <xuwei5@hisilicon.com>
1673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1674 W:      http://www.hisilicon.com
1675 S:      Supported
1676 T:      git git://github.com/hisilicon/linux-hisi.git
1677 F:      arch/arm/mach-hisi/
1678 F:      arch/arm/boot/dts/hi3*
1679 F:      arch/arm/boot/dts/hip*
1680 F:      arch/arm/boot/dts/hisi*
1681 F:      arch/arm64/boot/dts/hisilicon/
1682
1683 ARM/HP JORNADA 7XX MACHINE SUPPORT
1684 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1685 W:      www.jlime.com
1686 S:      Maintained
1687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1688 F:      arch/arm/mach-sa1100/jornada720.c
1689 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1690
1691 ARM/IGEP MACHINE SUPPORT
1692 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1693 M:      Javier Martinez Canillas <javier@dowhile0.org>
1694 L:      linux-omap@vger.kernel.org
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697 F:      arch/arm/boot/dts/omap3-igep*
1698
1699 ARM/INCOME PXA270 SUPPORT
1700 M:      Marek Vasut <marek.vasut@gmail.com>
1701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1702 S:      Maintained
1703 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1704
1705 ARM/INTEL IOP13XX ARM ARCHITECTURE
1706 M:      Lennert Buytenhek <kernel@wantstofly.org>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709
1710 ARM/INTEL IOP32X ARM ARCHITECTURE
1711 M:      Lennert Buytenhek <kernel@wantstofly.org>
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714
1715 ARM/INTEL IOP33X ARM ARCHITECTURE
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 S:      Orphan
1718
1719 ARM/INTEL IQ81342EX MACHINE SUPPORT
1720 M:      Lennert Buytenhek <kernel@wantstofly.org>
1721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1722 S:      Maintained
1723
1724 ARM/INTEL IXDP2850 MACHINE SUPPORT
1725 M:      Lennert Buytenhek <kernel@wantstofly.org>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728
1729 ARM/INTEL IXP4XX ARM ARCHITECTURE
1730 M:      Imre Kaloz <kaloz@openwrt.org>
1731 M:      Krzysztof Halasa <khalasa@piap.pl>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 S:      Maintained
1734 F:      arch/arm/mach-ixp4xx/
1735
1736 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1737 M:      Jonathan Cameron <jic23@cam.ac.uk>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 F:      arch/arm/mach-pxa/stargate2.c
1741 F:      drivers/pcmcia/pxa2xx_stargate2.c
1742
1743 ARM/INTEL XSC3 (MANZANO) ARM CORE
1744 M:      Lennert Buytenhek <kernel@wantstofly.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1749 M:      Lennert Buytenhek <kernel@wantstofly.org>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752
1753 ARM/LG1K ARCHITECTURE
1754 M:      Chanho Min <chanho.min@lge.com>
1755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1756 S:      Maintained
1757 F:      arch/arm64/boot/dts/lg/
1758
1759 ARM/LOGICPD PXA270 MACHINE SUPPORT
1760 M:      Lennert Buytenhek <kernel@wantstofly.org>
1761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 S:      Maintained
1763
1764 ARM/LPC18XX ARCHITECTURE
1765 M:      Vladimir Zapolskiy <vz@mleia.com>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Maintained
1768 F:      arch/arm/boot/dts/lpc43*
1769 F:      drivers/i2c/busses/i2c-lpc2k.c
1770 F:      drivers/memory/pl172.c
1771 F:      drivers/mtd/spi-nor/nxp-spifi.c
1772 F:      drivers/rtc/rtc-lpc24xx.c
1773 N:      lpc18xx
1774
1775 ARM/LPC32XX SOC SUPPORT
1776 M:      Vladimir Zapolskiy <vz@mleia.com>
1777 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1780 S:      Maintained
1781 F:      arch/arm/boot/dts/lpc32*
1782 F:      arch/arm/mach-lpc32xx/
1783 F:      drivers/i2c/busses/i2c-pnx.c
1784 F:      drivers/net/ethernet/nxp/lpc_eth.c
1785 F:      drivers/usb/host/ohci-nxp.c
1786 F:      drivers/watchdog/pnx4008_wdt.c
1787 N:      lpc32xx
1788
1789 ARM/MAGICIAN MACHINE SUPPORT
1790 M:      Philipp Zabel <philipp.zabel@gmail.com>
1791 S:      Maintained
1792
1793 ARM/Marvell Dove/MV78xx0/Orion SOC support
1794 M:      Jason Cooper <jason@lakedaemon.net>
1795 M:      Andrew Lunn <andrew@lunn.ch>
1796 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1797 M:      Gregory Clement <gregory.clement@bootlin.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      Documentation/devicetree/bindings/soc/dove/
1801 F:      arch/arm/mach-dove/
1802 F:      arch/arm/mach-mv78xx0/
1803 F:      arch/arm/mach-orion5x/
1804 F:      arch/arm/plat-orion/
1805 F:      arch/arm/boot/dts/dove*
1806 F:      arch/arm/boot/dts/orion5x*
1807
1808 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1809 M:      Jason Cooper <jason@lakedaemon.net>
1810 M:      Andrew Lunn <andrew@lunn.ch>
1811 M:      Gregory Clement <gregory.clement@bootlin.com>
1812 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Maintained
1815 F:      arch/arm/boot/dts/armada*
1816 F:      arch/arm/boot/dts/kirkwood*
1817 F:      arch/arm/configs/mvebu_*_defconfig
1818 F:      arch/arm/mach-mvebu/
1819 F:      arch/arm64/boot/dts/marvell/armada*
1820 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1821 F:      drivers/cpufreq/armada-8k-cpufreq.c
1822 F:      drivers/cpufreq/mvebu-cpufreq.c
1823 F:      drivers/irqchip/irq-armada-370-xp.c
1824 F:      drivers/irqchip/irq-mvebu-*
1825 F:      drivers/pinctrl/mvebu/
1826 F:      drivers/rtc/rtc-armada38x.c
1827
1828 ARM/Mediatek RTC DRIVER
1829 M:      Eddie Huang <eddie.huang@mediatek.com>
1830 M:      Sean Wang <sean.wang@mediatek.com>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1835 F:      drivers/rtc/rtc-mt6397.c
1836 F:      drivers/rtc/rtc-mt7622.c
1837
1838 ARM/Mediatek SoC support
1839 M:      Matthias Brugger <matthias.bgg@gmail.com>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1842 W:      https://mtk.bcnfs.org/
1843 C:      irc://chat.freenode.net/linux-mediatek
1844 S:      Maintained
1845 F:      arch/arm/boot/dts/mt6*
1846 F:      arch/arm/boot/dts/mt7*
1847 F:      arch/arm/boot/dts/mt8*
1848 F:      arch/arm/mach-mediatek/
1849 F:      arch/arm64/boot/dts/mediatek/
1850 F:      drivers/soc/mediatek/
1851 N:      mtk
1852 N:      mt[678]
1853 K:      mediatek
1854
1855 ARM/Mediatek USB3 PHY DRIVER
1856 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1858 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 F:      drivers/phy/mediatek/
1861 F:      Documentation/devicetree/bindings/phy/phy-mtk-*
1862
1863 ARM/MICREL KS8695 ARCHITECTURE
1864 M:      Greg Ungerer <gerg@uclinux.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 F:      arch/arm/mach-ks8695/
1867 S:      Odd Fixes
1868
1869 ARM/Microchip (AT91) SoC support
1870 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1871 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1872 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 W:      http://www.linux4sam.org
1875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
1876 S:      Supported
1877 N:      at91
1878 N:      atmel
1879 F:      arch/arm/mach-at91/
1880 F:      include/soc/at91/
1881 F:      arch/arm/boot/dts/at91*.dts
1882 F:      arch/arm/boot/dts/at91*.dtsi
1883 F:      arch/arm/boot/dts/sama*.dts
1884 F:      arch/arm/boot/dts/sama*.dtsi
1885 F:      arch/arm/include/debug/at91.S
1886 F:      drivers/memory/atmel*
1887 F:      drivers/watchdog/sama5d4_wdt.c
1888 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1889 X:      drivers/net/wireless/atmel/
1890
1891 ARM/MIOA701 MACHINE SUPPORT
1892 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 F:      arch/arm/mach-pxa/mioa701.c
1895 S:      Maintained
1896
1897 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1898 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1899 S:      Maintained
1900
1901 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1902 M:      Linus Walleij <linus.walleij@linaro.org>
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 S:      Maintained
1905 F:      arch/arm/mach-nomadik/
1906 F:      arch/arm/mach-u300/
1907 F:      arch/arm/mach-ux500/
1908 F:      arch/arm/boot/dts/ste-*
1909 F:      drivers/clk/clk-nomadik.c
1910 F:      drivers/clk/clk-u300.c
1911 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1912 F:      drivers/clocksource/timer-u300.c
1913 F:      drivers/dma/coh901318*
1914 F:      drivers/dma/ste_dma40*
1915 F:      drivers/hwspinlock/u8500_hsem.c
1916 F:      drivers/i2c/busses/i2c-nomadik.c
1917 F:      drivers/i2c/busses/i2c-stu300.c
1918 F:      drivers/mfd/ab3100*
1919 F:      drivers/mfd/ab8500*
1920 F:      drivers/mfd/abx500*
1921 F:      drivers/mfd/dbx500*
1922 F:      drivers/mfd/db8500*
1923 F:      drivers/pinctrl/nomadik/
1924 F:      drivers/pinctrl/pinctrl-coh901*
1925 F:      drivers/pinctrl/pinctrl-u300.c
1926 F:      drivers/rtc/rtc-ab3100.c
1927 F:      drivers/rtc/rtc-ab8500.c
1928 F:      drivers/rtc/rtc-coh901331.c
1929 F:      drivers/rtc/rtc-pl031.c
1930 F:      drivers/watchdog/coh901327_wdt.c
1931 F:      Documentation/devicetree/bindings/arm/ste-*
1932 F:      Documentation/devicetree/bindings/arm/ux500/
1933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1934
1935 ARM/NUVOTON NPCM ARCHITECTURE
1936 M:      Avi Fishman <avifishman70@gmail.com>
1937 M:      Tomer Maimon <tmaimon77@gmail.com>
1938 M:      Tali Perry <tali.perry1@gmail.com>
1939 R:      Patrick Venture <venture@google.com>
1940 R:      Nancy Yuen <yuenn@google.com>
1941 R:      Benjamin Fair <benjaminfair@google.com>
1942 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1943 S:      Supported
1944 F:      arch/arm/mach-npcm/
1945 F:      arch/arm/boot/dts/nuvoton-npcm*
1946 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
1947 F:      drivers/*/*npcm*
1948 F:      Documentation/devicetree/bindings/*/*npcm*
1949 F:      Documentation/devicetree/bindings/*/*/*npcm*
1950
1951 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1952 M:      Wan ZongShun <mcuos.com@gmail.com>
1953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1954 W:      http://www.mcuos.com
1955 S:      Maintained
1956 F:      arch/arm/mach-w90x900/
1957 F:      drivers/input/keyboard/w90p910_keypad.c
1958 F:      drivers/input/touchscreen/w90p910_ts.c
1959 F:      drivers/watchdog/nuc900_wdt.c
1960 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1961 F:      drivers/mtd/nand/raw/nuc900_nand.c
1962 F:      drivers/rtc/rtc-nuc900.c
1963 F:      drivers/spi/spi-nuc900.c
1964 F:      drivers/usb/host/ehci-w90x900.c
1965 F:      drivers/video/fbdev/nuc900fb.c
1966
1967 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1968 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1969 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1970 S:      Orphan
1971 F:      arch/arm/mach-s3c24xx/mach-gta02.c
1972 F:      arch/arm/mach-s3c24xx/gta02.h
1973
1974 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1975 M:      Alexander Clouter <alex@digriz.org.uk>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 W:      http://www.digriz.org.uk/ts78xx/kernel
1978 S:      Maintained
1979 F:      arch/arm/mach-orion5x/ts78xx-*
1980
1981 ARM/OXNAS platform support
1982 M:      Neil Armstrong <narmstrong@baylibre.com>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 L:      linux-oxnas@groups.io (moderated for non-subscribers)
1985 S:      Maintained
1986 F:      arch/arm/mach-oxnas/
1987 F:      arch/arm/boot/dts/ox8*.dts*
1988 N:      oxnas
1989
1990 ARM/PALM TREO SUPPORT
1991 M:      Tomas Cech <sleep_walker@suse.com>
1992 L:      linux-arm-kernel@lists.infradead.org
1993 W:      http://hackndev.com
1994 S:      Maintained
1995 F:      arch/arm/mach-pxa/palmtreo.*
1996
1997 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1998 M:      Marek Vasut <marek.vasut@gmail.com>
1999 L:      linux-arm-kernel@lists.infradead.org
2000 W:      http://hackndev.com
2001 S:      Maintained
2002 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2003 F:      arch/arm/mach-pxa/palmtx.c
2004 F:      arch/arm/mach-pxa/palmt5.*
2005 F:      arch/arm/mach-pxa/include/mach/palmld.h
2006 F:      arch/arm/mach-pxa/palmld.c
2007 F:      arch/arm/mach-pxa/palmte2.*
2008 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2009 F:      arch/arm/mach-pxa/palmtc.c
2010
2011 ARM/PALMZ72 SUPPORT
2012 M:      Sergey Lapin <slapin@ossfans.org>
2013 L:      linux-arm-kernel@lists.infradead.org
2014 W:      http://hackndev.com
2015 S:      Maintained
2016 F:      arch/arm/mach-pxa/palmz72.*
2017
2018 ARM/PLEB SUPPORT
2019 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2020 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2021 S:      Maintained
2022
2023 ARM/PT DIGITAL BOARD PORT
2024 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2026 W:      http://www.armlinux.org.uk/
2027 S:      Maintained
2028
2029 ARM/QUALCOMM SUPPORT
2030 M:      Andy Gross <andy.gross@linaro.org>
2031 M:      David Brown <david.brown@linaro.org>
2032 L:      linux-arm-msm@vger.kernel.org
2033 S:      Maintained
2034 F:      Documentation/devicetree/bindings/soc/qcom/
2035 F:      Documentation/devicetree/bindings/*/qcom*
2036 F:      arch/arm/boot/dts/qcom-*.dts
2037 F:      arch/arm/boot/dts/qcom-*.dtsi
2038 F:      arch/arm/mach-qcom/
2039 F:      arch/arm64/boot/dts/qcom/
2040 F:      drivers/*/qcom/
2041 F:      drivers/*/qcom*
2042 F:      drivers/*/*/qcom/
2043 F:      drivers/*/*/qcom*
2044 F:      drivers/*/pm8???-*
2045 F:      drivers/bluetooth/btqcomsmd.c
2046 F:      drivers/clocksource/timer-qcom.c
2047 F:      drivers/extcon/extcon-qcom*
2048 F:      drivers/iommu/msm*
2049 F:      drivers/i2c/busses/i2c-qup.c
2050 F:      drivers/i2c/busses/i2c-qcom-geni.c
2051 F:      drivers/mfd/ssbi.c
2052 F:      drivers/mmc/host/mmci_qcom*
2053 F:      drivers/mmc/host/sdhci_msm.c
2054 F:      drivers/pci/controller/dwc/pcie-qcom.c
2055 F:      drivers/phy/qualcomm/
2056 F:      drivers/power/*/msm*
2057 F:      drivers/reset/reset-qcom-*
2058 F:      drivers/scsi/ufs/ufs-qcom.*
2059 F:      drivers/spi/spi-qup.c
2060 F:      drivers/spi/spi-geni-qcom.c
2061 F:      drivers/spi/spi-qcom-qspi.c
2062 F:      drivers/tty/serial/msm_serial.c
2063 F:      drivers/usb/dwc3/dwc3-qcom.c
2064 F:      include/dt-bindings/*/qcom*
2065 F:      include/linux/*/qcom*
2066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
2067
2068 ARM/RADISYS ENP2611 MACHINE SUPPORT
2069 M:      Lennert Buytenhek <kernel@wantstofly.org>
2070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2071 S:      Maintained
2072
2073 ARM/RDA MICRO ARCHITECTURE
2074 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 F:      arch/arm/boot/dts/rda8810pl-*
2079 F:      drivers/clocksource/timer-rda.c
2080 F:      drivers/irqchip/irq-rda-intc.c
2081 F:      drivers/tty/serial/rda-uart.c
2082 F:      Documentation/devicetree/bindings/arm/rda.txt
2083 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2084 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2085 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2086
2087 ARM/REALTEK ARCHITECTURE
2088 M:      Andreas Färber <afaerber@suse.de>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 F:      arch/arm64/boot/dts/realtek/
2092 F:      Documentation/devicetree/bindings/arm/realtek.txt
2093
2094 ARM/RENESAS ARM64 ARCHITECTURE
2095 M:      Simon Horman <horms@verge.net.au>
2096 M:      Magnus Damm <magnus.damm@gmail.com>
2097 L:      linux-renesas-soc@vger.kernel.org
2098 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2100 S:      Supported
2101 F:      arch/arm64/boot/dts/renesas/
2102 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2103 F:      drivers/soc/renesas/
2104 F:      include/linux/soc/renesas/
2105
2106 ARM/RISCPC ARCHITECTURE
2107 M:      Russell King <linux@armlinux.org.uk>
2108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2109 W:      http://www.armlinux.org.uk/
2110 S:      Maintained
2111 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2112 F:      arch/arm/include/asm/hardware/ioc.h
2113 F:      arch/arm/include/asm/hardware/iomd.h
2114 F:      arch/arm/include/asm/hardware/memc.h
2115 F:      arch/arm/mach-rpc/
2116 F:      drivers/net/ethernet/8390/etherh.c
2117 F:      drivers/net/ethernet/i825xx/ether1*
2118 F:      drivers/net/ethernet/seeq/ether3*
2119 F:      drivers/scsi/arm/
2120
2121 ARM/Rockchip SoC support
2122 M:      Heiko Stuebner <heiko@sntech.de>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 L:      linux-rockchip@lists.infradead.org
2125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2126 S:      Maintained
2127 F:      arch/arm/boot/dts/rk3*
2128 F:      arch/arm/boot/dts/rv1108*
2129 F:      arch/arm/mach-rockchip/
2130 F:      drivers/clk/rockchip/
2131 F:      drivers/i2c/busses/i2c-rk3x.c
2132 F:      drivers/*/*rockchip*
2133 F:      drivers/*/*/*rockchip*
2134 F:      sound/soc/rockchip/
2135 N:      rockchip
2136
2137 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
2138 M:      Kukjin Kim <kgene@kernel.org>
2139 M:      Krzysztof Kozlowski <krzk@kernel.org>
2140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2141 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2142 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2143 S:      Maintained
2144 F:      arch/arm/boot/dts/s3c*
2145 F:      arch/arm/boot/dts/s5p*
2146 F:      arch/arm/boot/dts/exynos*
2147 F:      arch/arm64/boot/dts/exynos/
2148 F:      arch/arm/plat-samsung/
2149 F:      arch/arm/mach-s3c24*/
2150 F:      arch/arm/mach-s3c64xx/
2151 F:      arch/arm/mach-s5p*/
2152 F:      arch/arm/mach-exynos*/
2153 F:      drivers/*/*s3c24*
2154 F:      drivers/*/*/*s3c24*
2155 F:      drivers/*/*s3c64xx*
2156 F:      drivers/*/*s5pv210*
2157 F:      drivers/memory/samsung/*
2158 F:      drivers/soc/samsung/*
2159 F:      Documentation/arm/Samsung/
2160 F:      Documentation/devicetree/bindings/arm/samsung/
2161 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
2162 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
2163 N:      exynos
2164
2165 ARM/SAMSUNG MOBILE MACHINE SUPPORT
2166 M:      Kyungmin Park <kyungmin.park@samsung.com>
2167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2168 S:      Maintained
2169 F:      arch/arm/mach-s5pv210/
2170
2171 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2172 M:      Kyungmin Park <kyungmin.park@samsung.com>
2173 M:      Kamil Debski <kamil@wypas.org>
2174 M:      Andrzej Hajda <a.hajda@samsung.com>
2175 L:      linux-arm-kernel@lists.infradead.org
2176 L:      linux-media@vger.kernel.org
2177 S:      Maintained
2178 F:      drivers/media/platform/s5p-g2d/
2179
2180 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2181 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2182 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
2183 L:      linux-media@vger.kernel.org
2184 S:      Maintained
2185 F:      drivers/media/platform/s5p-cec/
2186 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2187
2188 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2189 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2190 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2191 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2192 L:      linux-arm-kernel@lists.infradead.org
2193 L:      linux-media@vger.kernel.org
2194 S:      Maintained
2195 F:      drivers/media/platform/s5p-jpeg/
2196
2197 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2198 M:      Kyungmin Park <kyungmin.park@samsung.com>
2199 M:      Kamil Debski <kamil@wypas.org>
2200 M:      Jeongtae Park <jtp.park@samsung.com>
2201 M:      Andrzej Hajda <a.hajda@samsung.com>
2202 L:      linux-arm-kernel@lists.infradead.org
2203 L:      linux-media@vger.kernel.org
2204 S:      Maintained
2205 F:      drivers/media/platform/s5p-mfc/
2206
2207 ARM/SHMOBILE ARM ARCHITECTURE
2208 M:      Simon Horman <horms@verge.net.au>
2209 M:      Magnus Damm <magnus.damm@gmail.com>
2210 L:      linux-renesas-soc@vger.kernel.org
2211 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
2213 S:      Supported
2214 F:      arch/arm/boot/dts/emev2*
2215 F:      arch/arm/boot/dts/gr-peach*
2216 F:      arch/arm/boot/dts/iwg20d-q7*
2217 F:      arch/arm/boot/dts/r7s*
2218 F:      arch/arm/boot/dts/r8a*
2219 F:      arch/arm/boot/dts/r9a*
2220 F:      arch/arm/boot/dts/sh*
2221 F:      arch/arm/configs/shmobile_defconfig
2222 F:      arch/arm/include/debug/renesas-scif.S
2223 F:      arch/arm/mach-shmobile/
2224 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2225 F:      drivers/soc/renesas/
2226 F:      include/linux/soc/renesas/
2227
2228 ARM/SOCFPGA ARCHITECTURE
2229 M:      Dinh Nguyen <dinguyen@kernel.org>
2230 S:      Maintained
2231 F:      arch/arm/mach-socfpga/
2232 F:      arch/arm/boot/dts/socfpga*
2233 F:      arch/arm/configs/socfpga_defconfig
2234 F:      arch/arm64/boot/dts/altera/
2235 W:      http://www.rocketboards.org
2236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2237
2238 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2239 M:      Dinh Nguyen <dinguyen@kernel.org>
2240 S:      Maintained
2241 F:      drivers/clk/socfpga/
2242
2243 ARM/SOCFPGA EDAC SUPPORT
2244 M:      Thor Thayer <thor.thayer@linux.intel.com>
2245 S:      Maintained
2246 F:      drivers/edac/altera_edac.
2247
2248 ARM/SPREADTRUM SoC SUPPORT
2249 M:      Orson Zhai <orsonzhai@gmail.com>
2250 M:      Baolin Wang <baolin.wang@linaro.org>
2251 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2252 S:      Maintained
2253 F:      arch/arm64/boot/dts/sprd
2254 N:      sprd
2255
2256 ARM/STI ARCHITECTURE
2257 M:      Patrice Chotard <patrice.chotard@st.com>
2258 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2259 W:      http://www.stlinux.com
2260 S:      Maintained
2261 F:      arch/arm/mach-sti/
2262 F:      arch/arm/boot/dts/sti*
2263 F:      drivers/char/hw_random/st-rng.c
2264 F:      drivers/clocksource/arm_global_timer.c
2265 F:      drivers/clocksource/clksrc_st_lpc.c
2266 F:      drivers/cpufreq/sti-cpufreq.c
2267 F:      drivers/dma/st_fdma*
2268 F:      drivers/i2c/busses/i2c-st.c
2269 F:      drivers/media/rc/st_rc.c
2270 F:      drivers/media/platform/sti/c8sectpfe/
2271 F:      drivers/mmc/host/sdhci-st.c
2272 F:      drivers/phy/st/phy-miphy28lp.c
2273 F:      drivers/phy/st/phy-stih407-usb.c
2274 F:      drivers/pinctrl/pinctrl-st.c
2275 F:      drivers/remoteproc/st_remoteproc.c
2276 F:      drivers/remoteproc/st_slim_rproc.c
2277 F:      drivers/reset/sti/
2278 F:      drivers/rtc/rtc-st-lpc.c
2279 F:      drivers/tty/serial/st-asc.c
2280 F:      drivers/usb/dwc3/dwc3-st.c
2281 F:      drivers/usb/host/ehci-st.c
2282 F:      drivers/usb/host/ohci-st.c
2283 F:      drivers/watchdog/st_lpc_wdt.c
2284 F:      drivers/ata/ahci_st.c
2285 F:      include/linux/remoteproc/st_slim_rproc.h
2286
2287 ARM/STM32 ARCHITECTURE
2288 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2289 M:      Alexandre Torgue <alexandre.torgue@st.com>
2290 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2294 N:      stm32
2295 N:      stm
2296 F:      arch/arm/boot/dts/stm32*
2297 F:      arch/arm/mach-stm32/
2298 F:      drivers/clocksource/armv7m_systick.c
2299
2300 ARM/Synaptics SoC support
2301 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2302 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2304 S:      Maintained
2305 F:      arch/arm/mach-berlin/
2306 F:      arch/arm/boot/dts/berlin*
2307 F:      arch/arm64/boot/dts/synaptics/
2308
2309 ARM/TANGO ARCHITECTURE
2310 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2311 M:      Mans Rullgard <mans@mansr.com>
2312 L:      linux-arm-kernel@lists.infradead.org
2313 S:      Odd Fixes
2314 N:      tango
2315
2316 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2317 M:      Lennert Buytenhek <kernel@wantstofly.org>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320
2321 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2322 M:      Hans Verkuil <hans.verkuil@cisco.com>
2323 L:      linux-tegra@vger.kernel.org
2324 L:      linux-media@vger.kernel.org
2325 S:      Maintained
2326 F:      drivers/media/platform/tegra-cec/
2327 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2328
2329 ARM/TETON BGA MACHINE SUPPORT
2330 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333
2334 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2335 M:      Santosh Shilimkar <ssantosh@kernel.org>
2336 L:      linux-kernel@vger.kernel.org
2337 S:      Maintained
2338 F:      drivers/memory/*emif*
2339
2340 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2341 M:      Tero Kristo <t-kristo@ti.com>
2342 M:      Nishanth Menon <nm@ti.com>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S:      Supported
2345 F:      Documentation/devicetree/bindings/arm/ti/k3.txt
2346 F:      arch/arm64/boot/dts/ti/Makefile
2347 F:      arch/arm64/boot/dts/ti/k3-*
2348 F:      include/dt-bindings/pinctrl/k3.h
2349
2350 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2351 M:      Santosh Shilimkar <ssantosh@kernel.org>
2352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2353 S:      Maintained
2354 F:      arch/arm/mach-keystone/
2355 F:      arch/arm/boot/dts/keystone-*
2356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2357
2358 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2359 M:      Santosh Shilimkar <ssantosh@kernel.org>
2360 L:      linux-kernel@vger.kernel.org
2361 S:      Maintained
2362 F:      drivers/clk/keystone/
2363
2364 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2365 M:      Santosh Shilimkar <ssantosh@kernel.org>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 L:      linux-kernel@vger.kernel.org
2368 S:      Maintained
2369 F:      drivers/clocksource/timer-keystone.c
2370
2371 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2372 M:      Santosh Shilimkar <ssantosh@kernel.org>
2373 L:      linux-kernel@vger.kernel.org
2374 S:      Maintained
2375 F:      drivers/power/reset/keystone-reset.c
2376
2377 ARM/THECUS N2100 MACHINE SUPPORT
2378 M:      Lennert Buytenhek <kernel@wantstofly.org>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381
2382 ARM/TOSA MACHINE SUPPORT
2383 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2384 M:      Dirk Opfer <dirk@opfer-online.de>
2385 S:      Maintained
2386
2387 ARM/UNIPHIER ARCHITECTURE
2388 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2391 S:      Maintained
2392 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.txt
2393 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2394 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2395 F:      arch/arm/boot/dts/uniphier*
2396 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2397 F:      arch/arm/mach-uniphier/
2398 F:      arch/arm/mm/cache-uniphier.c
2399 F:      arch/arm64/boot/dts/socionext/uniphier*
2400 F:      drivers/bus/uniphier-system-bus.c
2401 F:      drivers/clk/uniphier/
2402 F:      drivers/dma/uniphier-mdmac.c
2403 F:      drivers/gpio/gpio-uniphier.c
2404 F:      drivers/i2c/busses/i2c-uniphier*
2405 F:      drivers/irqchip/irq-uniphier-aidet.c
2406 F:      drivers/mmc/host/uniphier-sd.c
2407 F:      drivers/pinctrl/uniphier/
2408 F:      drivers/reset/reset-uniphier.c
2409 F:      drivers/tty/serial/8250/8250_uniphier.c
2410 N:      uniphier
2411
2412 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2413 M:      Ulf Hansson <ulf.hansson@linaro.org>
2414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 T:      git git://git.linaro.org/people/ulfh/clk.git
2416 S:      Maintained
2417 F:      drivers/clk/ux500/
2418
2419 ARM/VERSATILE EXPRESS PLATFORM
2420 M:      Liviu Dudau <liviu.dudau@arm.com>
2421 M:      Sudeep Holla <sudeep.holla@arm.com>
2422 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2424 S:      Maintained
2425 F:      arch/arm/boot/dts/vexpress*
2426 F:      arch/arm64/boot/dts/arm/
2427 F:      arch/arm/mach-vexpress/
2428 F:      */*/vexpress*
2429 F:      */*/*/vexpress*
2430 F:      drivers/clk/versatile/clk-vexpress-osc.c
2431 F:      drivers/clocksource/timer-versatile.c
2432 N:      mps2
2433
2434 ARM/VFP SUPPORT
2435 M:      Russell King <linux@armlinux.org.uk>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 W:      http://www.armlinux.org.uk/
2438 S:      Maintained
2439 F:      arch/arm/vfp/
2440
2441 ARM/VOIPAC PXA270 SUPPORT
2442 M:      Marek Vasut <marek.vasut@gmail.com>
2443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2444 S:      Maintained
2445 F:      arch/arm/mach-pxa/vpac270.c
2446 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2447
2448 ARM/VT8500 ARM ARCHITECTURE
2449 M:      Tony Prisk <linux@prisktech.co.nz>
2450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2451 S:      Maintained
2452 F:      arch/arm/mach-vt8500/
2453 F:      drivers/clocksource/timer-vt8500.c
2454 F:      drivers/i2c/busses/i2c-wmt.c
2455 F:      drivers/mmc/host/wmt-sdmmc.c
2456 F:      drivers/pwm/pwm-vt8500.c
2457 F:      drivers/rtc/rtc-vt8500.c
2458 F:      drivers/tty/serial/vt8500_serial.c
2459 F:      drivers/usb/host/ehci-platform.c
2460 F:      drivers/usb/host/uhci-platform.c
2461 F:      drivers/video/fbdev/vt8500lcdfb.*
2462 F:      drivers/video/fbdev/wm8505fb*
2463 F:      drivers/video/fbdev/wmt_ge_rops.*
2464
2465 ARM/ZIPIT Z2 SUPPORT
2466 M:      Marek Vasut <marek.vasut@gmail.com>
2467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2468 S:      Maintained
2469 F:      arch/arm/mach-pxa/z2.c
2470 F:      arch/arm/mach-pxa/include/mach/z2.h
2471
2472 ARM/ZTE ARCHITECTURE
2473 M:      Jun Nie <jun.nie@linaro.org>
2474 M:      Shawn Guo <shawnguo@kernel.org>
2475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2476 S:      Maintained
2477 F:      arch/arm/boot/dts/zx2967*
2478 F:      arch/arm/mach-zx/
2479 F:      arch/arm64/boot/dts/zte/
2480 F:      drivers/clk/zte/
2481 F:      drivers/dma/zx_dma.c
2482 F:      drivers/gpio/gpio-zx.c
2483 F:      drivers/i2c/busses/i2c-zx2967.c
2484 F:      drivers/mmc/host/dw_mmc-zx.*
2485 F:      drivers/pinctrl/zte/
2486 F:      drivers/soc/zte/
2487 F:      drivers/thermal/zx2967_thermal.c
2488 F:      drivers/watchdog/zx2967_wdt.c
2489 F:      Documentation/devicetree/bindings/arm/zte.yaml
2490 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2491 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2492 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2493 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2494 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2495 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2496 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2497 F:      Documentation/devicetree/bindings/soc/zte/
2498 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2499 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2500 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2501 F:      include/dt-bindings/clock/zx2967*.h
2502 F:      include/dt-bindings/soc/zte,*.h
2503 F:      sound/soc/codecs/zx_aud96p22.c
2504 F:      sound/soc/zte/
2505
2506 ARM/ZYNQ ARCHITECTURE
2507 M:      Michal Simek <michal.simek@xilinx.com>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 W:      http://wiki.xilinx.com
2510 T:      git https://github.com/Xilinx/linux-xlnx.git
2511 S:      Supported
2512 F:      arch/arm/mach-zynq/
2513 F:      drivers/cpuidle/cpuidle-zynq.c
2514 F:      drivers/block/xsysace.c
2515 N:      zynq
2516 N:      xilinx
2517 F:      drivers/clocksource/timer-cadence-ttc.c
2518 F:      drivers/i2c/busses/i2c-cadence.c
2519 F:      drivers/mmc/host/sdhci-of-arasan.c
2520 F:      drivers/edac/synopsys_edac.c
2521 F:      drivers/i2c/busses/i2c-xiic.c
2522
2523 ARM64 PORT (AARCH64 ARCHITECTURE)
2524 M:      Catalin Marinas <catalin.marinas@arm.com>
2525 M:      Will Deacon <will.deacon@arm.com>
2526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2528 S:      Maintained
2529 F:      arch/arm64/
2530 X:      arch/arm64/boot/dts/
2531 F:      Documentation/arm64/
2532
2533 AS3645A LED FLASH CONTROLLER DRIVER
2534 M:      Sakari Ailus <sakari.ailus@iki.fi>
2535 L:      linux-leds@vger.kernel.org
2536 S:      Maintained
2537 F:      drivers/leds/leds-as3645a.c
2538
2539 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2540 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2541 L:      linux-media@vger.kernel.org
2542 T:      git git://linuxtv.org/media_tree.git
2543 S:      Maintained
2544 F:      drivers/media/i2c/ak7375.c
2545 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2546
2547 ASAHI KASEI AK8974 DRIVER
2548 M:      Linus Walleij <linus.walleij@linaro.org>
2549 L:      linux-iio@vger.kernel.org
2550 W:      http://www.akm.com/
2551 S:      Supported
2552 F:      drivers/iio/magnetometer/ak8974.c
2553
2554 ASC7621 HARDWARE MONITOR DRIVER
2555 M:      George Joseph <george.joseph@fairview5.com>
2556 L:      linux-hwmon@vger.kernel.org
2557 S:      Maintained
2558 F:      Documentation/hwmon/asc7621.rst
2559 F:      drivers/hwmon/asc7621.c
2560
2561 ASPEED VIDEO ENGINE DRIVER
2562 M:      Eddie James <eajames@linux.ibm.com>
2563 L:      linux-media@vger.kernel.org
2564 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2565 S:      Maintained
2566 F:      drivers/media/platform/aspeed-video.c
2567 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2568
2569 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2570 M:      Corentin Chary <corentin.chary@gmail.com>
2571 L:      acpi4asus-user@lists.sourceforge.net
2572 L:      platform-driver-x86@vger.kernel.org
2573 W:      http://acpi4asus.sf.net
2574 S:      Maintained
2575 F:      drivers/platform/x86/asus*.c
2576 F:      drivers/platform/x86/eeepc*.c
2577
2578 ASUS WIRELESS RADIO CONTROL DRIVER
2579 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2580 L:      platform-driver-x86@vger.kernel.org
2581 S:      Maintained
2582 F:      drivers/platform/x86/asus-wireless.c
2583
2584 ASYMMETRIC KEYS
2585 M:      David Howells <dhowells@redhat.com>
2586 L:      keyrings@vger.kernel.org
2587 S:      Maintained
2588 F:      Documentation/crypto/asymmetric-keys.txt
2589 F:      include/linux/verification.h
2590 F:      include/crypto/public_key.h
2591 F:      include/crypto/pkcs7.h
2592 F:      crypto/asymmetric_keys/
2593
2594 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2595 R:      Dan Williams <dan.j.williams@intel.com>
2596 W:      http://sourceforge.net/projects/xscaleiop
2597 S:      Odd fixes
2598 F:      Documentation/crypto/async-tx-api.txt
2599 F:      crypto/async_tx/
2600 F:      drivers/dma/
2601 F:      include/linux/dmaengine.h
2602 F:      include/linux/async_tx.h
2603
2604 AT24 EEPROM DRIVER
2605 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
2606 L:      linux-i2c@vger.kernel.org
2607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2608 S:      Maintained
2609 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2610 F:      drivers/misc/eeprom/at24.c
2611
2612 ATA OVER ETHERNET (AOE) DRIVER
2613 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2614 W:      http://www.openaoe.org/
2615 S:      Supported
2616 F:      Documentation/aoe/
2617 F:      drivers/block/aoe/
2618
2619 ATHEROS 71XX/9XXX GPIO DRIVER
2620 M:      Alban Bedel <albeu@free.fr>
2621 W:      https://github.com/AlbanBedel/linux
2622 T:      git git://github.com/AlbanBedel/linux
2623 S:      Maintained
2624 F:      drivers/gpio/gpio-ath79.c
2625 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2626
2627 ATHEROS 71XX/9XXX USB PHY DRIVER
2628 M:      Alban Bedel <albeu@free.fr>
2629 W:      https://github.com/AlbanBedel/linux
2630 T:      git git://github.com/AlbanBedel/linux
2631 S:      Maintained
2632 F:      drivers/phy/qualcomm/phy-ath79-usb.c
2633 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
2634
2635 ATHEROS ATH GENERIC UTILITIES
2636 M:      Kalle Valo <kvalo@codeaurora.org>
2637 L:      linux-wireless@vger.kernel.org
2638 S:      Supported
2639 F:      drivers/net/wireless/ath/*
2640
2641 ATHEROS ATH5K WIRELESS DRIVER
2642 M:      Jiri Slaby <jirislaby@gmail.com>
2643 M:      Nick Kossifidis <mickflemm@gmail.com>
2644 M:      Luis Chamberlain <mcgrof@kernel.org>
2645 L:      linux-wireless@vger.kernel.org
2646 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2647 S:      Maintained
2648 F:      drivers/net/wireless/ath/ath5k/
2649
2650 ATHEROS ATH6KL WIRELESS DRIVER
2651 M:      Kalle Valo <kvalo@codeaurora.org>
2652 L:      linux-wireless@vger.kernel.org
2653 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2655 S:      Supported
2656 F:      drivers/net/wireless/ath/ath6kl/
2657
2658 ATI_REMOTE2 DRIVER
2659 M:      Ville Syrjala <syrjala@sci.fi>
2660 S:      Maintained
2661 F:      drivers/input/misc/ati_remote2.c
2662
2663 ATK0110 HWMON DRIVER
2664 M:      Luca Tettamanti <kronos.it@gmail.com>
2665 L:      linux-hwmon@vger.kernel.org
2666 S:      Maintained
2667 F:      drivers/hwmon/asus_atk0110.c
2668
2669 ATLX ETHERNET DRIVERS
2670 M:      Jay Cliburn <jcliburn@gmail.com>
2671 M:      Chris Snook <chris.snook@gmail.com>
2672 L:      netdev@vger.kernel.org
2673 W:      http://sourceforge.net/projects/atl1
2674 W:      http://atl1.sourceforge.net
2675 S:      Maintained
2676 F:      drivers/net/ethernet/atheros/
2677
2678 ATM
2679 M:      Chas Williams <3chas3@gmail.com>
2680 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2681 L:      netdev@vger.kernel.org
2682 W:      http://linux-atm.sourceforge.net
2683 S:      Maintained
2684 F:      drivers/atm/
2685 F:      include/linux/atm*
2686 F:      include/uapi/linux/atm*
2687
2688 ATMEL MACB ETHERNET DRIVER
2689 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2690 S:      Supported
2691 F:      drivers/net/ethernet/cadence/
2692
2693 ATMEL MAXTOUCH DRIVER
2694 M:      Nick Dyer <nick@shmanahar.org>
2695 T:      git git://github.com/ndyer/linux.git
2696 S:      Maintained
2697 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2698 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2699
2700 ATMEL WIRELESS DRIVER
2701 M:      Simon Kelley <simon@thekelleys.org.uk>
2702 L:      linux-wireless@vger.kernel.org
2703 W:      http://www.thekelleys.org.uk/atmel
2704 W:      http://atmelwlandriver.sourceforge.net/
2705 S:      Maintained
2706 F:      drivers/net/wireless/atmel/atmel*
2707
2708 ATOMIC INFRASTRUCTURE
2709 M:      Will Deacon <will.deacon@arm.com>
2710 M:      Peter Zijlstra <peterz@infradead.org>
2711 R:      Boqun Feng <boqun.feng@gmail.com>
2712 L:      linux-kernel@vger.kernel.org
2713 S:      Maintained
2714 F:      arch/*/include/asm/atomic*.h
2715 F:      include/*/atomic*.h
2716 F:      scripts/atomic/
2717
2718 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2719 M:      Bradley Grove <linuxdrivers@attotech.com>
2720 L:      linux-scsi@vger.kernel.org
2721 W:      http://www.attotech.com
2722 S:      Supported
2723 F:      drivers/scsi/esas2r
2724
2725 ATUSB IEEE 802.15.4 RADIO DRIVER
2726 M:      Stefan Schmidt <stefan@datenfreihafen.org>
2727 L:      linux-wpan@vger.kernel.org
2728 S:      Maintained
2729 F:      drivers/net/ieee802154/atusb.c
2730 F:      drivers/net/ieee802154/atusb.h
2731 F:      drivers/net/ieee802154/at86rf230.h
2732
2733 AUDIT SUBSYSTEM
2734 M:      Paul Moore <paul@paul-moore.com>
2735 M:      Eric Paris <eparis@redhat.com>
2736 L:      linux-audit@redhat.com (moderated for non-subscribers)
2737 W:      https://github.com/linux-audit
2738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2739 S:      Supported
2740 F:      include/linux/audit.h
2741 F:      include/uapi/linux/audit.h
2742 F:      kernel/audit*
2743
2744 AUXILIARY DISPLAY DRIVERS
2745 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2746 S:      Maintained
2747 F:      drivers/auxdisplay/
2748 F:      include/linux/cfag12864b.h
2749
2750 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
2751 M:      Andreas Klinger <ak@it-klinger.de>
2752 L:      linux-iio@vger.kernel.org
2753 S:      Maintained
2754 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.txt
2755 F:      drivers/iio/adc/hx711.c
2756
2757 AX.25 NETWORK LAYER
2758 M:      Ralf Baechle <ralf@linux-mips.org>
2759 L:      linux-hams@vger.kernel.org
2760 W:      http://www.linux-ax25.org/
2761 S:      Maintained
2762 F:      include/uapi/linux/ax25.h
2763 F:      include/net/ax25.h
2764 F:      net/ax25/
2765
2766 AXENTIA ARM DEVICES
2767 M:      Peter Rosin <peda@axentia.se>
2768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2769 S:      Maintained
2770 F:      Documentation/devicetree/bindings/arm/axentia.txt
2771 F:      arch/arm/boot/dts/at91-linea.dtsi
2772 F:      arch/arm/boot/dts/at91-natte.dtsi
2773 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2774 F:      arch/arm/boot/dts/at91-tse850-3.dts
2775
2776 AXENTIA ASOC DRIVERS
2777 M:      Peter Rosin <peda@axentia.se>
2778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2779 S:      Maintained
2780 F:      Documentation/devicetree/bindings/sound/axentia,*
2781 F:      sound/soc/atmel/tse850-pcm5142.c
2782
2783 AXXIA I2C CONTROLLER
2784 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
2785 L:      linux-i2c@vger.kernel.org
2786 S:      Maintained
2787 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
2788 F:      drivers/i2c/busses/i2c-axxia.c
2789
2790 AZ6007 DVB DRIVER
2791 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2792 L:      linux-media@vger.kernel.org
2793 W:      https://linuxtv.org
2794 T:      git git://linuxtv.org/media_tree.git
2795 S:      Maintained
2796 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2797
2798 AZTECH FM RADIO RECEIVER DRIVER
2799 M:      Hans Verkuil <hverkuil@xs4all.nl>
2800 L:      linux-media@vger.kernel.org
2801 T:      git git://linuxtv.org/media_tree.git
2802 W:      https://linuxtv.org
2803 S:      Maintained
2804 F:      drivers/media/radio/radio-aztech*
2805
2806 B43 WIRELESS DRIVER
2807 L:      linux-wireless@vger.kernel.org
2808 L:      b43-dev@lists.infradead.org
2809 W:      http://wireless.kernel.org/en/users/Drivers/b43
2810 S:      Odd Fixes
2811 F:      drivers/net/wireless/broadcom/b43/
2812
2813 B43LEGACY WIRELESS DRIVER
2814 M:      Larry Finger <Larry.Finger@lwfinger.net>
2815 L:      linux-wireless@vger.kernel.org
2816 L:      b43-dev@lists.infradead.org
2817 W:      http://wireless.kernel.org/en/users/Drivers/b43
2818 S:      Maintained
2819 F:      drivers/net/wireless/broadcom/b43legacy/
2820
2821 BACKLIGHT CLASS/SUBSYSTEM
2822 M:      Lee Jones <lee.jones@linaro.org>
2823 M:      Daniel Thompson <daniel.thompson@linaro.org>
2824 M:      Jingoo Han <jingoohan1@gmail.com>
2825 L:      dri-devel@lists.freedesktop.org
2826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2827 S:      Maintained
2828 F:      drivers/video/backlight/
2829 F:      include/linux/backlight.h
2830 F:      include/linux/pwm_backlight.h
2831 F:      Documentation/devicetree/bindings/leds/backlight
2832
2833 BATMAN ADVANCED
2834 M:      Marek Lindner <mareklindner@neomailbox.ch>
2835 M:      Simon Wunderlich <sw@simonwunderlich.de>
2836 M:      Antonio Quartulli <a@unstable.cc>
2837 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2838 W:      https://www.open-mesh.org/
2839 B:      https://www.open-mesh.org/projects/batman-adv/issues
2840 C:      irc://chat.freenode.net/batman
2841 Q:      https://patchwork.open-mesh.org/project/batman/list/
2842 T:      git https://git.open-mesh.org/linux-merge.git
2843 S:      Maintained
2844 F:      Documentation/ABI/obsolete/sysfs-class-net-batman-adv
2845 F:      Documentation/ABI/obsolete/sysfs-class-net-mesh
2846 F:      Documentation/networking/batman-adv.rst
2847 F:      include/uapi/linux/batadv_packet.h
2848 F:      include/uapi/linux/batman_adv.h
2849 F:      net/batman-adv/
2850
2851 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2852 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2853 L:      linux-hams@vger.kernel.org
2854 W:      http://www.baycom.org/~tom/ham/ham.html
2855 S:      Maintained
2856 F:      drivers/net/hamradio/baycom*
2857
2858 BCACHE (BLOCK LAYER CACHE)
2859 M:      Coly Li <colyli@suse.de>
2860 M:      Kent Overstreet <kent.overstreet@gmail.com>
2861 L:      linux-bcache@vger.kernel.org
2862 W:      http://bcache.evilpiepirate.org
2863 C:      irc://irc.oftc.net/bcache
2864 S:      Maintained
2865 F:      drivers/md/bcache/
2866
2867 BDISP ST MEDIA DRIVER
2868 M:      Fabien Dessenne <fabien.dessenne@st.com>
2869 L:      linux-media@vger.kernel.org
2870 T:      git git://linuxtv.org/media_tree.git
2871 W:      https://linuxtv.org
2872 S:      Supported
2873 F:      drivers/media/platform/sti/bdisp
2874
2875 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2876 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2877 L:      netdev@vger.kernel.org
2878 S:      Maintained
2879 F:      drivers/net/ethernet/ec_bhf.c
2880
2881 BEFS FILE SYSTEM
2882 M:      Luis de Bethencourt <luisbg@kernel.org>
2883 M:      Salah Triki <salah.triki@gmail.com>
2884 S:      Maintained
2885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2886 F:      Documentation/filesystems/befs.txt
2887 F:      fs/befs/
2888
2889 BFQ I/O SCHEDULER
2890 M:      Paolo Valente <paolo.valente@linaro.org>
2891 M:      Jens Axboe <axboe@kernel.dk>
2892 L:      linux-block@vger.kernel.org
2893 S:      Maintained
2894 F:      block/bfq-*
2895 F:      Documentation/block/bfq-iosched.txt
2896
2897 BFS FILE SYSTEM
2898 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2899 S:      Maintained
2900 F:      Documentation/filesystems/bfs.txt
2901 F:      fs/bfs/
2902 F:      include/uapi/linux/bfs_fs.h
2903
2904 BLINKM RGB LED DRIVER
2905 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2906 S:      Maintained
2907 F:      drivers/leds/leds-blinkm.c
2908
2909 BLOCK LAYER
2910 M:      Jens Axboe <axboe@kernel.dk>
2911 L:      linux-block@vger.kernel.org
2912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2913 S:      Maintained
2914 F:      block/
2915 F:      drivers/block/
2916 F:      kernel/trace/blktrace.c
2917 F:      lib/sbitmap.c
2918
2919 BLOCK2MTD DRIVER
2920 M:      Joern Engel <joern@lazybastard.org>
2921 L:      linux-mtd@lists.infradead.org
2922 S:      Maintained
2923 F:      drivers/mtd/devices/block2mtd.c
2924
2925 BLUETOOTH DRIVERS
2926 M:      Marcel Holtmann <marcel@holtmann.org>
2927 M:      Johan Hedberg <johan.hedberg@gmail.com>
2928 L:      linux-bluetooth@vger.kernel.org
2929 W:      http://www.bluez.org/
2930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2932 S:      Maintained
2933 F:      drivers/bluetooth/
2934
2935 BLUETOOTH SUBSYSTEM
2936 M:      Marcel Holtmann <marcel@holtmann.org>
2937 M:      Johan Hedberg <johan.hedberg@gmail.com>
2938 L:      linux-bluetooth@vger.kernel.org
2939 W:      http://www.bluez.org/
2940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2942 S:      Maintained
2943 F:      net/bluetooth/
2944 F:      include/net/bluetooth/
2945
2946 BONDING DRIVER
2947 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2948 M:      Veaceslav Falico <vfalico@gmail.com>
2949 M:      Andy Gospodarek <andy@greyhouse.net>
2950 L:      netdev@vger.kernel.org
2951 W:      http://sourceforge.net/projects/bonding/
2952 S:      Supported
2953 F:      drivers/net/bonding/
2954 F:      include/uapi/linux/if_bonding.h
2955
2956 BPF (Safe dynamic programs and tools)
2957 M:      Alexei Starovoitov <ast@kernel.org>
2958 M:      Daniel Borkmann <daniel@iogearbox.net>
2959 R:      Martin KaFai Lau <kafai@fb.com>
2960 R:      Song Liu <songliubraving@fb.com>
2961 R:      Yonghong Song <yhs@fb.com>
2962 L:      netdev@vger.kernel.org
2963 L:      bpf@vger.kernel.org
2964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2966 Q:      https://patchwork.ozlabs.org/project/netdev/list/?delegate=77147
2967 S:      Supported
2968 F:      arch/*/net/*
2969 F:      Documentation/networking/filter.txt
2970 F:      Documentation/bpf/
2971 F:      include/linux/bpf*
2972 F:      include/linux/filter.h
2973 F:      include/trace/events/xdp.h
2974 F:      include/uapi/linux/bpf*
2975 F:      include/uapi/linux/filter.h
2976 F:      kernel/bpf/
2977 F:      kernel/trace/bpf_trace.c
2978 F:      lib/test_bpf.c
2979 F:      net/bpf/
2980 F:      net/core/filter.c
2981 F:      net/sched/act_bpf.c
2982 F:      net/sched/cls_bpf.c
2983 F:      samples/bpf/
2984 F:      tools/bpf/
2985 F:      tools/lib/bpf/
2986 F:      tools/testing/selftests/bpf/
2987 K:      bpf
2988 N:      bpf
2989
2990 BPF JIT for ARM
2991 M:      Shubham Bansal <illusionist.neo@gmail.com>
2992 L:      netdev@vger.kernel.org
2993 L:      bpf@vger.kernel.org
2994 S:      Maintained
2995 F:      arch/arm/net/
2996
2997 BPF JIT for ARM64
2998 M:      Daniel Borkmann <daniel@iogearbox.net>
2999 M:      Alexei Starovoitov <ast@kernel.org>
3000 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3001 L:      netdev@vger.kernel.org
3002 L:      bpf@vger.kernel.org
3003 S:      Supported
3004 F:      arch/arm64/net/
3005
3006 BPF JIT for MIPS (32-BIT AND 64-BIT)
3007 M:      Paul Burton <paul.burton@mips.com>
3008 L:      netdev@vger.kernel.org
3009 L:      bpf@vger.kernel.org
3010 S:      Maintained
3011 F:      arch/mips/net/
3012
3013 BPF JIT for NFP NICs
3014 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
3015 L:      netdev@vger.kernel.org
3016 L:      bpf@vger.kernel.org
3017 S:      Supported
3018 F:      drivers/net/ethernet/netronome/nfp/bpf/
3019
3020 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3021 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3022 M:      Sandipan Das <sandipan@linux.ibm.com>
3023 L:      netdev@vger.kernel.org
3024 L:      bpf@vger.kernel.org
3025 S:      Maintained
3026 F:      arch/powerpc/net/
3027
3028 BPF JIT for RISC-V (RV64G)
3029 M:      Björn Töpel <bjorn.topel@gmail.com>
3030 L:      netdev@vger.kernel.org
3031 S:      Maintained
3032 F:      arch/riscv/net/
3033
3034 BPF JIT for S390
3035 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
3036 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
3037 L:      netdev@vger.kernel.org
3038 L:      bpf@vger.kernel.org
3039 S:      Maintained
3040 F:      arch/s390/net/
3041 X:      arch/s390/net/pnet.c
3042
3043 BPF JIT for SPARC (32-BIT AND 64-BIT)
3044 M:      David S. Miller <davem@davemloft.net>
3045 L:      netdev@vger.kernel.org
3046 L:      bpf@vger.kernel.org
3047 S:      Maintained
3048 F:      arch/sparc/net/
3049
3050 BPF JIT for X86 32-BIT
3051 M:      Wang YanQing <udknight@gmail.com>
3052 L:      netdev@vger.kernel.org
3053 L:      bpf@vger.kernel.org
3054 S:      Maintained
3055 F:      arch/x86/net/bpf_jit_comp32.c
3056
3057 BPF JIT for X86 64-BIT
3058 M:      Alexei Starovoitov <ast@kernel.org>
3059 M:      Daniel Borkmann <daniel@iogearbox.net>
3060 L:      netdev@vger.kernel.org
3061 L:      bpf@vger.kernel.org
3062 S:      Supported
3063 F:      arch/x86/net/
3064 X:      arch/x86/net/bpf_jit_comp32.c
3065
3066 BROADCOM B44 10/100 ETHERNET DRIVER
3067 M:      Michael Chan <michael.chan@broadcom.com>
3068 L:      netdev@vger.kernel.org
3069 S:      Supported
3070 F:      drivers/net/ethernet/broadcom/b44.*
3071
3072 BROADCOM B53 ETHERNET SWITCH DRIVER
3073 M:      Florian Fainelli <f.fainelli@gmail.com>
3074 L:      netdev@vger.kernel.org
3075 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3076 S:      Supported
3077 F:      drivers/net/dsa/b53/*
3078 F:      include/linux/platform_data/b53.h
3079
3080 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3081 M:      Florian Fainelli <f.fainelli@gmail.com>
3082 M:      Ray Jui <rjui@broadcom.com>
3083 M:      Scott Branden <sbranden@broadcom.com>
3084 M:      bcm-kernel-feedback-list@broadcom.com
3085 T:      git git://github.com/broadcom/mach-bcm
3086 S:      Maintained
3087 N:      bcm281*
3088 N:      bcm113*
3089 N:      bcm216*
3090 N:      kona
3091 F:      arch/arm/mach-bcm/
3092
3093 BROADCOM BCM2835 ARM ARCHITECTURE
3094 M:      Eric Anholt <eric@anholt.net>
3095 M:      Stefan Wahren <stefan.wahren@i2se.com>
3096 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3098 T:      git git://github.com/anholt/linux
3099 S:      Maintained
3100 N:      bcm2835
3101 F:      drivers/staging/vc04_services
3102
3103 BROADCOM BCM47XX MIPS ARCHITECTURE
3104 M:      Hauke Mehrtens <hauke@hauke-m.de>
3105 M:      Rafał Miłecki <zajec5@gmail.com>
3106 L:      linux-mips@vger.kernel.org
3107 S:      Maintained
3108 F:      Documentation/devicetree/bindings/mips/brcm/
3109 F:      arch/mips/bcm47xx/*
3110 F:      arch/mips/include/asm/mach-bcm47xx/*
3111
3112 BROADCOM BCM5301X ARM ARCHITECTURE
3113 M:      Hauke Mehrtens <hauke@hauke-m.de>
3114 M:      Rafał Miłecki <zajec5@gmail.com>
3115 M:      bcm-kernel-feedback-list@broadcom.com
3116 L:      linux-arm-kernel@lists.infradead.org
3117 S:      Maintained
3118 F:      arch/arm/mach-bcm/bcm_5301x.c
3119 F:      arch/arm/boot/dts/bcm5301x*.dtsi
3120 F:      arch/arm/boot/dts/bcm470*
3121 F:      arch/arm/boot/dts/bcm953012*
3122
3123 BROADCOM BCM53573 ARM ARCHITECTURE
3124 M:      Rafał Miłecki <rafal@milecki.pl>
3125 L:      linux-arm-kernel@lists.infradead.org
3126 S:      Maintained
3127 F:      arch/arm/boot/dts/bcm53573*
3128 F:      arch/arm/boot/dts/bcm47189*
3129
3130 BROADCOM BCM63XX ARM ARCHITECTURE
3131 M:      Florian Fainelli <f.fainelli@gmail.com>
3132 M:      bcm-kernel-feedback-list@broadcom.com
3133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3134 T:      git git://github.com/broadcom/stblinux.git
3135 S:      Maintained
3136 N:      bcm63xx
3137
3138 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3139 M:      Kevin Cernekee <cernekee@gmail.com>
3140 L:      linux-usb@vger.kernel.org
3141 S:      Maintained
3142 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3143
3144 BROADCOM BCM7XXX ARM ARCHITECTURE
3145 M:      Brian Norris <computersforpeace@gmail.com>
3146 M:      Gregory Fong <gregory.0xf0@gmail.com>
3147 M:      Florian Fainelli <f.fainelli@gmail.com>
3148 M:      bcm-kernel-feedback-list@broadcom.com
3149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3150 T:      git git://github.com/broadcom/stblinux.git
3151 S:      Maintained
3152 F:      arch/arm/mach-bcm/*brcmstb*
3153 F:      arch/arm/boot/dts/bcm7*.dts*
3154 F:      drivers/bus/brcmstb_gisb.c
3155 F:      arch/arm/mm/cache-b15-rac.c
3156 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3157 N:      brcmstb
3158
3159 BROADCOM BMIPS CPUFREQ DRIVER
3160 M:      Markus Mayer <mmayer@broadcom.com>
3161 M:      bcm-kernel-feedback-list@broadcom.com
3162 L:      linux-pm@vger.kernel.org
3163 S:      Maintained
3164 F:      drivers/cpufreq/bmips-cpufreq.c
3165
3166 BROADCOM BMIPS MIPS ARCHITECTURE
3167 M:      Kevin Cernekee <cernekee@gmail.com>
3168 M:      Florian Fainelli <f.fainelli@gmail.com>
3169 L:      bcm-kernel-feedback-list@broadcom.com
3170 L:      linux-mips@vger.kernel.org
3171 T:      git git://github.com/broadcom/stblinux.git
3172 S:      Maintained
3173 F:      arch/mips/bmips/*
3174 F:      arch/mips/include/asm/mach-bmips/*
3175 F:      arch/mips/kernel/*bmips*
3176 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3177 F:      drivers/irqchip/irq-bcm63*
3178 F:      drivers/irqchip/irq-bcm7*
3179 F:      drivers/irqchip/irq-brcmstb*
3180 F:      include/linux/bcm963xx_nvram.h
3181 F:      include/linux/bcm963xx_tag.h
3182
3183 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3184 M:      Rasesh Mody <rmody@marvell.com>
3185 M:      GR-Linux-NIC-Dev@marvell.com
3186 L:      netdev@vger.kernel.org
3187 S:      Supported
3188 F:      drivers/net/ethernet/broadcom/bnx2.*
3189 F:      drivers/net/ethernet/broadcom/bnx2_*
3190
3191 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3192 M:      QLogic-Storage-Upstream@qlogic.com
3193 L:      linux-scsi@vger.kernel.org
3194 S:      Supported
3195 F:      drivers/scsi/bnx2fc/
3196
3197 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3198 M:      QLogic-Storage-Upstream@qlogic.com
3199 L:      linux-scsi@vger.kernel.org
3200 S:      Supported
3201 F:      drivers/scsi/bnx2i/
3202
3203 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3204 M:      Ariel Elior <aelior@marvell.com>
3205 M:      Sudarsana Kalluru <skalluru@marvell.com>
3206 M:      GR-everest-linux-l2@marvell.com
3207 L:      netdev@vger.kernel.org
3208 S:      Supported
3209 F:      drivers/net/ethernet/broadcom/bnx2x/
3210
3211 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3212 M:      Michael Chan <michael.chan@broadcom.com>
3213 L:      netdev@vger.kernel.org
3214 S:      Supported
3215 F:      drivers/net/ethernet/broadcom/bnxt/
3216
3217 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3218 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
3219 M:      Franky Lin <franky.lin@broadcom.com>
3220 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3221 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
3222 M:      Wright Feng <wright.feng@cypress.com>
3223 L:      linux-wireless@vger.kernel.org
3224 L:      brcm80211-dev-list.pdl@broadcom.com
3225 L:      brcm80211-dev-list@cypress.com
3226 S:      Supported
3227 F:      drivers/net/wireless/broadcom/brcm80211/
3228
3229 BROADCOM BRCMSTB GPIO DRIVER
3230 M:      Gregory Fong <gregory.0xf0@gmail.com>
3231 L:      bcm-kernel-feedback-list@broadcom.com
3232 S:      Supported
3233 F:      drivers/gpio/gpio-brcmstb.c
3234 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3235
3236 BROADCOM BRCMSTB I2C DRIVER
3237 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3238 L:      linux-i2c@vger.kernel.org
3239 L:      bcm-kernel-feedback-list@broadcom.com
3240 S:      Supported
3241 F:      drivers/i2c/busses/i2c-brcmstb.c
3242 F:      Documentation/devicetree/bindings/i2c/i2c-brcmstb.txt
3243
3244 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3245 M:      Al Cooper <alcooperx@gmail.com>
3246 L:      linux-kernel@vger.kernel.org
3247 L:      bcm-kernel-feedback-list@broadcom.com
3248 S:      Maintained
3249 F:      drivers/phy/broadcom/phy-brcm-usb*
3250
3251 BROADCOM GENET ETHERNET DRIVER
3252 M:      Doug Berger <opendmb@gmail.com>
3253 M:      Florian Fainelli <f.fainelli@gmail.com>
3254 L:      bcm-kernel-feedback-list@broadcom.com
3255 L:      netdev@vger.kernel.org
3256 S:      Supported
3257 F:      drivers/net/ethernet/broadcom/genet/
3258
3259 BROADCOM IPROC ARM ARCHITECTURE
3260 M:      Ray Jui <rjui@broadcom.com>
3261 M:      Scott Branden <sbranden@broadcom.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/cygnus-linux.git
3265 S:      Maintained
3266 N:      iproc
3267 N:      cygnus
3268 N:      bcm[-_]nsp
3269 N:      bcm9113*
3270 N:      bcm9583*
3271 N:      bcm9585*
3272 N:      bcm9586*
3273 N:      bcm988312
3274 N:      bcm113*
3275 N:      bcm583*
3276 N:      bcm585*
3277 N:      bcm586*
3278 N:      bcm88312
3279 N:      hr2
3280 N:      stingray
3281 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3282 F:      arch/arm64/boot/dts/broadcom/stingray/*
3283 F:      drivers/clk/bcm/clk-ns*
3284 F:      drivers/clk/bcm/clk-sr*
3285 F:      drivers/pinctrl/bcm/pinctrl-ns*
3286 F:      include/dt-bindings/clock/bcm-sr*
3287
3288 BROADCOM KONA GPIO DRIVER
3289 M:      Ray Jui <rjui@broadcom.com>
3290 L:      bcm-kernel-feedback-list@broadcom.com
3291 S:      Supported
3292 F:      drivers/gpio/gpio-bcm-kona.c
3293 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3294
3295 BROADCOM NETXTREME-E ROCE DRIVER
3296 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3297 M:      Devesh Sharma <devesh.sharma@broadcom.com>
3298 M:      Somnath Kotur <somnath.kotur@broadcom.com>
3299 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
3300 L:      linux-rdma@vger.kernel.org
3301 W:      http://www.broadcom.com
3302 S:      Supported
3303 F:      drivers/infiniband/hw/bnxt_re/
3304 F:      include/uapi/rdma/bnxt_re-abi.h
3305
3306 BROADCOM NVRAM DRIVER
3307 M:      Rafał Miłecki <zajec5@gmail.com>
3308 L:      linux-mips@vger.kernel.org
3309 S:      Maintained
3310 F:      drivers/firmware/broadcom/*
3311
3312 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3313 M:      Rafał Miłecki <zajec5@gmail.com>
3314 L:      linux-wireless@vger.kernel.org
3315 S:      Maintained
3316 F:      drivers/bcma/
3317 F:      include/linux/bcma/
3318
3319 BROADCOM STB AVS CPUFREQ DRIVER
3320 M:      Markus Mayer <mmayer@broadcom.com>
3321 M:      bcm-kernel-feedback-list@broadcom.com
3322 L:      linux-pm@vger.kernel.org
3323 S:      Maintained
3324 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3325 F:      drivers/cpufreq/brcmstb*
3326
3327 BROADCOM STB AVS TMON DRIVER
3328 M:      Markus Mayer <mmayer@broadcom.com>
3329 M:      bcm-kernel-feedback-list@broadcom.com
3330 L:      linux-pm@vger.kernel.org
3331 S:      Maintained
3332 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3333 F:      drivers/thermal/broadcom/brcmstb*
3334
3335 BROADCOM STB NAND FLASH DRIVER
3336 M:      Brian Norris <computersforpeace@gmail.com>
3337 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3338 L:      linux-mtd@lists.infradead.org
3339 L:      bcm-kernel-feedback-list@broadcom.com
3340 S:      Maintained
3341 F:      drivers/mtd/nand/raw/brcmnand/
3342
3343 BROADCOM STB DPFE DRIVER
3344 M:      Markus Mayer <mmayer@broadcom.com>
3345 M:      bcm-kernel-feedback-list@broadcom.com
3346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3347 S:      Maintained
3348 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3349 F:      drivers/memory/brcmstb_dpfe.c
3350
3351 BROADCOM SPI DRIVER
3352 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3353 M:      bcm-kernel-feedback-list@broadcom.com
3354 S:      Maintained
3355 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.txt
3356 F:      drivers/spi/spi-bcm-qspi.*
3357 F:      drivers/spi/spi-brcmstb-qspi.c
3358 F:      drivers/spi/spi-iproc-qspi.c
3359
3360 BROADCOM SYSTEMPORT ETHERNET DRIVER
3361 M:      Florian Fainelli <f.fainelli@gmail.com>
3362 L:      bcm-kernel-feedback-list@broadcom.com
3363 L:      netdev@vger.kernel.org
3364 S:      Supported
3365 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3366
3367 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3368 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3369 M:      Prashant Sreedharan <prashant@broadcom.com>
3370 M:      Michael Chan <mchan@broadcom.com>
3371 L:      netdev@vger.kernel.org
3372 S:      Supported
3373 F:      drivers/net/ethernet/broadcom/tg3.*
3374
3375 BROCADE BFA FC SCSI DRIVER
3376 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3377 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3378 L:      linux-scsi@vger.kernel.org
3379 S:      Supported
3380 F:      drivers/scsi/bfa/
3381
3382 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3383 M:      Rasesh Mody <rmody@marvell.com>
3384 M:      Sudarsana Kalluru <skalluru@marvell.com>
3385 M:      GR-Linux-NIC-Dev@marvell.com
3386 L:      netdev@vger.kernel.org
3387 S:      Supported
3388 F:      drivers/net/ethernet/brocade/bna/
3389
3390 BSG (block layer generic sg v4 driver)
3391 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3392 L:      linux-scsi@vger.kernel.org
3393 S:      Supported
3394 F:      block/bsg.c
3395 F:      include/linux/bsg.h
3396 F:      include/uapi/linux/bsg.h
3397
3398 BT87X AUDIO DRIVER
3399 M:      Clemens Ladisch <clemens@ladisch.de>
3400 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3402 S:      Maintained
3403 F:      Documentation/sound/cards/bt87x.rst
3404 F:      sound/pci/bt87x.c
3405
3406 BT8XXGPIO DRIVER
3407 M:      Michael Buesch <m@bues.ch>
3408 W:      http://bu3sch.de/btgpio.php
3409 S:      Maintained
3410 F:      drivers/gpio/gpio-bt8xx.c
3411
3412 BTRFS FILE SYSTEM
3413 M:      Chris Mason <clm@fb.com>
3414 M:      Josef Bacik <josef@toxicpanda.com>
3415 M:      David Sterba <dsterba@suse.com>
3416 L:      linux-btrfs@vger.kernel.org
3417 W:      http://btrfs.wiki.kernel.org/
3418 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3420 S:      Maintained
3421 F:      Documentation/filesystems/btrfs.txt
3422 F:      fs/btrfs/
3423 F:      include/linux/btrfs*
3424 F:      include/uapi/linux/btrfs*
3425
3426 BTTV VIDEO4LINUX DRIVER
3427 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3428 L:      linux-media@vger.kernel.org
3429 W:      https://linuxtv.org
3430 T:      git git://linuxtv.org/media_tree.git
3431 S:      Odd fixes
3432 F:      Documentation/media/v4l-drivers/bttv*
3433 F:      drivers/media/pci/bt8xx/bttv*
3434
3435 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3436 M:      Chanwoo Choi <cw00.choi@samsung.com>
3437 L:      linux-pm@vger.kernel.org
3438 L:      linux-samsung-soc@vger.kernel.org
3439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3440 S:      Maintained
3441 F:      drivers/devfreq/exynos-bus.c
3442 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3443
3444 BUSLOGIC SCSI DRIVER
3445 M:      Khalid Aziz <khalid@gonehiking.org>
3446 L:      linux-scsi@vger.kernel.org
3447 S:      Maintained
3448 F:      drivers/scsi/BusLogic.*
3449 F:      drivers/scsi/FlashPoint.*
3450
3451 C-MEDIA CMI8788 DRIVER
3452 M:      Clemens Ladisch <clemens@ladisch.de>
3453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3455 S:      Maintained
3456 F:      sound/pci/oxygen/
3457
3458 C-SKY ARCHITECTURE
3459 M:      Guo Ren <guoren@kernel.org>
3460 T:      git https://github.com/c-sky/csky-linux.git
3461 S:      Supported
3462 F:      arch/csky/
3463 F:      Documentation/devicetree/bindings/csky/
3464 F:      drivers/irqchip/irq-csky-*
3465 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
3466 F:      drivers/clocksource/timer-gx6605s.c
3467 F:      drivers/clocksource/timer-mp-csky.c
3468 F:      Documentation/devicetree/bindings/timer/csky,*
3469 K:      csky
3470 N:      csky
3471
3472 C6X ARCHITECTURE
3473 M:      Mark Salter <msalter@redhat.com>
3474 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3475 L:      linux-c6x-dev@linux-c6x.org
3476 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3477 S:      Maintained
3478 F:      arch/c6x/
3479
3480 CA8210 IEEE-802.15.4 RADIO DRIVER
3481 M:      Harry Morris <h.morris@cascoda.com>
3482 L:      linux-wpan@vger.kernel.org
3483 W:      https://github.com/Cascoda/ca8210-linux.git
3484 S:      Maintained
3485 F:      drivers/net/ieee802154/ca8210.c
3486 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3487
3488 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3489 M:      David Howells <dhowells@redhat.com>
3490 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3491 S:      Supported
3492 F:      Documentation/filesystems/caching/cachefiles.txt
3493 F:      fs/cachefiles/
3494
3495 CADENCE MIPI-CSI2 BRIDGES
3496 M:      Maxime Ripard <maxime.ripard@bootlin.com>
3497 L:      linux-media@vger.kernel.org
3498 S:      Maintained
3499 F:      Documentation/devicetree/bindings/media/cdns,*.txt
3500 F:      drivers/media/platform/cadence/cdns-csi2*
3501
3502 CADET FM/AM RADIO RECEIVER DRIVER
3503 M:      Hans Verkuil <hverkuil@xs4all.nl>
3504 L:      linux-media@vger.kernel.org
3505 T:      git git://linuxtv.org/media_tree.git
3506 W:      https://linuxtv.org
3507 S:      Maintained
3508 F:      drivers/media/radio/radio-cadet*
3509
3510 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3511 M:      Jonathan Corbet <corbet@lwn.net>
3512 L:      linux-media@vger.kernel.org
3513 T:      git git://linuxtv.org/media_tree.git
3514 S:      Maintained
3515 F:      Documentation/media/v4l-drivers/cafe_ccic*
3516 F:      drivers/media/platform/marvell-ccic/
3517
3518 CAIF NETWORK LAYER
3519 L:      netdev@vger.kernel.org
3520 S:      Orphan
3521 F:      Documentation/networking/caif/
3522 F:      drivers/net/caif/
3523 F:      include/uapi/linux/caif/
3524 F:      include/net/caif/
3525 F:      net/caif/
3526
3527 CAKE QDISC
3528 M:      Toke Høiland-Jørgensen <toke@toke.dk>
3529 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
3530 S:      Maintained
3531 F:      net/sched/sch_cake.c
3532
3533 CALGARY x86-64 IOMMU
3534 M:      Muli Ben-Yehuda <mulix@mulix.org>
3535 M:      Jon Mason <jdmason@kudzu.us>
3536 L:      iommu@lists.linux-foundation.org
3537 S:      Maintained
3538 F:      arch/x86/kernel/pci-calgary_64.c
3539 F:      arch/x86/kernel/tce_64.c
3540 F:      arch/x86/include/asm/calgary.h
3541 F:      arch/x86/include/asm/tce.h
3542
3543 CAN NETWORK DRIVERS
3544 M:      Wolfgang Grandegger <wg@grandegger.com>
3545 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3546 L:      linux-can@vger.kernel.org
3547 W:      https://github.com/linux-can
3548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3550 S:      Maintained
3551 F:      Documentation/devicetree/bindings/net/can/
3552 F:      drivers/net/can/
3553 F:      include/linux/can/dev.h
3554 F:      include/linux/can/platform/
3555 F:      include/uapi/linux/can/error.h
3556 F:      include/uapi/linux/can/netlink.h
3557
3558 CAN NETWORK LAYER
3559 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3560 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3561 L:      linux-can@vger.kernel.org
3562 W:      https://github.com/linux-can
3563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3565 S:      Maintained
3566 F:      Documentation/networking/can.rst
3567 F:      net/can/
3568 F:      include/linux/can/core.h
3569 F:      include/uapi/linux/can.h
3570 F:      include/uapi/linux/can/bcm.h
3571 F:      include/uapi/linux/can/raw.h
3572 F:      include/uapi/linux/can/gw.h
3573
3574 CAPABILITIES
3575 M:      Serge Hallyn <serge@hallyn.com>
3576 L:      linux-security-module@vger.kernel.org
3577 S:      Supported
3578 F:      include/linux/capability.h
3579 F:      include/uapi/linux/capability.h
3580 F:      security/commoncap.c
3581 F:      kernel/capability.c
3582
3583 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3584 M:      Kevin Tsai <ktsai@capellamicro.com>
3585 S:      Maintained
3586 F:      drivers/iio/light/cm*
3587
3588 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3589 M:      Christian Lamparter <chunkeey@googlemail.com>
3590 L:      linux-wireless@vger.kernel.org
3591 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3592 S:      Maintained
3593 F:      drivers/net/wireless/ath/carl9170/
3594
3595 CAVIUM I2C DRIVER
3596 M:      Jan Glauber <jglauber@cavium.com>
3597 M:      David Daney <david.daney@cavium.com>
3598 W:      http://www.cavium.com
3599 S:      Supported
3600 F:      drivers/i2c/busses/i2c-octeon*
3601 F:      drivers/i2c/busses/i2c-thunderx*
3602
3603 CAVIUM LIQUIDIO NETWORK DRIVER
3604 M:      Derek Chickles <dchickles@marvell.com>
3605 M:      Satanand Burla <sburla@marvell.com>
3606 M:      Felix Manlunas <fmanlunas@marvell.com>
3607 L:      netdev@vger.kernel.org
3608 W:      http://www.cavium.com
3609 S:      Supported
3610 F:      drivers/net/ethernet/cavium/liquidio/
3611
3612 CAVIUM MMC DRIVER
3613 M:      Jan Glauber <jglauber@cavium.com>
3614 M:      David Daney <david.daney@cavium.com>
3615 M:      Steven J. Hill <Steven.Hill@cavium.com>
3616 W:      http://www.cavium.com
3617 S:      Supported
3618 F:      drivers/mmc/host/cavium*
3619
3620 CAVIUM OCTEON-TX CRYPTO DRIVER
3621 M:      George Cherian <george.cherian@cavium.com>
3622 L:      linux-crypto@vger.kernel.org
3623 W:      http://www.cavium.com
3624 S:      Supported
3625 F:      drivers/crypto/cavium/cpt/
3626
3627 CAVIUM THUNDERX2 ARM64 SOC
3628 M:      Robert Richter <rrichter@cavium.com>
3629 M:      Jayachandran C <jnair@caviumnetworks.com>
3630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3631 S:      Maintained
3632 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3633 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3634
3635 CC2520 IEEE-802.15.4 RADIO DRIVER
3636 M:      Varka Bhadram <varkabhadram@gmail.com>
3637 L:      linux-wpan@vger.kernel.org
3638 S:      Maintained
3639 F:      drivers/net/ieee802154/cc2520.c
3640 F:      include/linux/spi/cc2520.h
3641 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3642
3643 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
3644 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3645 L:      linux-crypto@vger.kernel.org
3646 S:      Supported
3647 F:      drivers/crypto/ccree/
3648 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3649
3650 CEC FRAMEWORK
3651 M:      Hans Verkuil <hans.verkuil@cisco.com>
3652 L:      linux-media@vger.kernel.org
3653 T:      git git://linuxtv.org/media_tree.git
3654 W:      http://linuxtv.org
3655 S:      Supported
3656 F:      Documentation/media/kapi/cec-core.rst
3657 F:      Documentation/media/uapi/cec
3658 F:      drivers/media/cec/
3659 F:      drivers/media/rc/keymaps/rc-cec.c
3660 F:      include/media/cec.h
3661 F:      include/media/cec-notifier.h
3662 F:      include/uapi/linux/cec.h
3663 F:      include/uapi/linux/cec-funcs.h
3664 F:      Documentation/devicetree/bindings/media/cec.txt
3665 F:      Documentation/ABI/testing/debugfs-cec-error-inj
3666
3667 CEC GPIO DRIVER
3668 M:      Hans Verkuil <hans.verkuil@cisco.com>
3669 L:      linux-media@vger.kernel.org
3670 T:      git git://linuxtv.org/media_tree.git
3671 W:      http://linuxtv.org
3672 S:      Supported
3673 F:      drivers/media/platform/cec-gpio/
3674 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3675
3676 CELL BROADBAND ENGINE ARCHITECTURE
3677 M:      Arnd Bergmann <arnd@arndb.de>
3678 L:      linuxppc-dev@lists.ozlabs.org
3679 W:      http://www.ibm.com/developerworks/power/cell/
3680 S:      Supported
3681 F:      arch/powerpc/include/asm/cell*.h
3682 F:      arch/powerpc/include/asm/spu*.h
3683 F:      arch/powerpc/include/uapi/asm/spu*.h
3684 F:      arch/powerpc/oprofile/*cell*
3685 F:      arch/powerpc/platforms/cell/
3686
3687 CEPH COMMON CODE (LIBCEPH)
3688 M:      Ilya Dryomov <idryomov@gmail.com>
3689 M:      "Yan, Zheng" <zyan@redhat.com>
3690 M:      Sage Weil <sage@redhat.com>
3691 L:      ceph-devel@vger.kernel.org
3692 W:      http://ceph.com/
3693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3694 T:      git git://github.com/ceph/ceph-client.git
3695 S:      Supported
3696 F:      net/ceph/
3697 F:      include/linux/ceph/
3698 F:      include/linux/crush/
3699
3700 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3701 M:      "Yan, Zheng" <zyan@redhat.com>
3702 M:      Sage Weil <sage@redhat.com>
3703 M:      Ilya Dryomov <idryomov@gmail.com>
3704 L:      ceph-devel@vger.kernel.org
3705 W:      http://ceph.com/
3706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3707 T:      git git://github.com/ceph/ceph-client.git
3708 S:      Supported
3709 F:      Documentation/filesystems/ceph.txt
3710 F:      fs/ceph/
3711
3712 CERTIFICATE HANDLING:
3713 M:      David Howells <dhowells@redhat.com>
3714 M:      David Woodhouse <dwmw2@infradead.org>
3715 L:      keyrings@vger.kernel.org
3716 S:      Maintained
3717 F:      Documentation/admin-guide/module-signing.rst
3718 F:      certs/
3719 F:      scripts/sign-file.c
3720 F:      scripts/extract-cert.c
3721
3722 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3723 L:      linux-usb@vger.kernel.org
3724 S:      Orphan
3725 F:      Documentation/usb/WUSB-Design-overview.txt
3726 F:      Documentation/usb/wusb-cbaf
3727 F:      drivers/usb/host/hwa-hc.c
3728 F:      drivers/usb/host/whci/
3729 F:      drivers/usb/wusbcore/
3730 F:      include/linux/usb/wusb*
3731
3732 CFAG12864B LCD DRIVER
3733 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3734 S:      Maintained
3735 F:      drivers/auxdisplay/cfag12864b.c
3736 F:      include/linux/cfag12864b.h
3737
3738 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3739 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3740 S:      Maintained
3741 F:      drivers/auxdisplay/cfag12864bfb.c
3742 F:      include/linux/cfag12864b.h
3743
3744 802.11 (including CFG80211/NL80211)
3745 M:      Johannes Berg <johannes@sipsolutions.net>
3746 L:      linux-wireless@vger.kernel.org
3747 W:      http://wireless.kernel.org/
3748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3750 S:      Maintained
3751 F:      net/wireless/
3752 F:      include/uapi/linux/nl80211.h
3753 F:      include/linux/ieee80211.h
3754 F:      include/net/wext.h
3755 F:      include/net/cfg80211.h
3756 F:      include/net/iw_handler.h
3757 F:      include/net/ieee80211_radiotap.h
3758 F:      Documentation/driver-api/80211/cfg80211.rst
3759 F:      Documentation/networking/regulatory.txt
3760
3761 CHAR and MISC DRIVERS
3762 M:      Arnd Bergmann <arnd@arndb.de>
3763 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3765 S:      Supported
3766 F:      drivers/char/
3767 F:      drivers/misc/
3768 F:      include/linux/miscdevice.h
3769
3770 CHECKPATCH
3771 M:      Andy Whitcroft <apw@canonical.com>
3772 M:      Joe Perches <joe@perches.com>
3773 S:      Maintained
3774 F:      scripts/checkpatch.pl
3775
3776 CHINESE DOCUMENTATION
3777 M:      Harry Wei <harryxiyou@gmail.com>
3778 M:      Alex Shi <alex.shi@linux.alibaba.com>
3779 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3780 S:      Maintained
3781 F:      Documentation/translations/zh_CN/
3782
3783 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3784 M:      Peter Chen <Peter.Chen@nxp.com>
3785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3786 L:      linux-usb@vger.kernel.org
3787 S:      Maintained
3788 F:      drivers/usb/chipidea/
3789
3790 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3791 M:      Hans de Goede <hdegoede@redhat.com>
3792 L:      linux-input@vger.kernel.org
3793 S:      Maintained
3794 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3795 F:      drivers/input/touchscreen/chipone_icn8318.c
3796
3797 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
3798 M:      Hans de Goede <hdegoede@redhat.com>
3799 L:      linux-input@vger.kernel.org
3800 S:      Maintained
3801 F:      drivers/input/touchscreen/chipone_icn8505.c
3802
3803 CHROME HARDWARE PLATFORM SUPPORT
3804 M:      Benson Leung <bleung@chromium.org>
3805 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3806 S:      Maintained
3807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
3808 F:      drivers/platform/chrome/
3809
3810 CHROMEOS EC SUBDRIVERS
3811 M:      Benson Leung <bleung@chromium.org>
3812 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3813 R:      Guenter Roeck <groeck@chromium.org>
3814 S:      Maintained
3815 N:      cros_ec
3816 N:      cros-ec
3817 F:      drivers/power/supply/cros_usbpd-charger.c
3818
3819 CHROMEOS EC CODEC DRIVER
3820 M:      Cheng-Yi Chiang <cychiang@chromium.org>
3821 S:      Maintained
3822 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
3823 R:      Guenter Roeck <groeck@chromium.org>
3824 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.txt
3825 F:      sound/soc/codecs/cros_ec_codec.*
3826
3827 CIRRUS LOGIC AUDIO CODEC DRIVERS
3828 M:      Brian Austin <brian.austin@cirrus.com>
3829 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3830 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3831 S:      Maintained
3832 F:      sound/soc/codecs/cs*
3833
3834 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3835 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3836 L:      netdev@vger.kernel.org
3837 S:      Maintained
3838 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3839
3840 CIRRUS LOGIC LOCHNAGAR DRIVER
3841 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3842 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3843 L:      patches@opensource.cirrus.com
3844 S:      Supported
3845 F:      drivers/clk/clk-lochnagar.c
3846 F:      drivers/hwmon/lochnagar-hwmon.c
3847 F:      drivers/mfd/lochnagar-i2c.c
3848 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
3849 F:      drivers/regulator/lochnagar-regulator.c
3850 F:      sound/soc/codecs/lochnagar-sc.c
3851 F:      include/dt-bindings/clk/lochnagar.h
3852 F:      include/dt-bindings/pinctrl/lochnagar.h
3853 F:      include/linux/mfd/lochnagar*
3854 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
3855 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.txt
3856 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.txt
3857 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.txt
3858 F:      Documentation/devicetree/bindings/regulator/cirrus,lochnagar.txt
3859 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.txt
3860 F:      Documentation/hwmon/lochnagar
3861
3862 CISCO FCOE HBA DRIVER
3863 M:      Satish Kharat <satishkh@cisco.com>
3864 M:      Sesidhar Baddela <sebaddel@cisco.com>
3865 M:      Karan Tilak Kumar <kartilak@cisco.com>
3866 L:      linux-scsi@vger.kernel.org
3867 S:      Supported
3868 F:      drivers/scsi/fnic/
3869
3870 CISCO SCSI HBA DRIVER
3871 M:      Karan Tilak Kumar <kartilak@cisco.com>
3872 M:      Sesidhar Baddela <sebaddel@cisco.com>
3873 L:      linux-scsi@vger.kernel.org
3874 S:      Supported
3875 F:      drivers/scsi/snic/
3876
3877 CISCO VIC ETHERNET NIC DRIVER
3878 M:      Christian Benvenuti <benve@cisco.com>
3879 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3880 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3881 S:      Supported
3882 F:      drivers/net/ethernet/cisco/enic/
3883
3884 CISCO VIC LOW LATENCY NIC DRIVER
3885 M:      Christian Benvenuti <benve@cisco.com>
3886 M:      Nelson Escobar <neescoba@cisco.com>
3887 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3888 S:      Supported
3889 F:      drivers/infiniband/hw/usnic/
3890
3891 CIRRUS LOGIC MADERA CODEC DRIVERS
3892 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
3893 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
3894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3895 L:      patches@opensource.cirrus.com
3896 T:      git https://github.com/CirrusLogic/linux-drivers.git
3897 W:      https://github.com/CirrusLogic/linux-drivers/wiki
3898 S:      Supported
3899 F:      Documentation/devicetree/bindings/mfd/madera.txt
3900 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera-pinctrl.txt
3901 F:      include/linux/irqchip/irq-madera*
3902 F:      include/linux/mfd/madera/*
3903 F:      drivers/gpio/gpio-madera*
3904 F:      drivers/irqchip/irq-madera*
3905 F:      drivers/mfd/madera*
3906 F:      drivers/mfd/cs47l*
3907 F:      drivers/pinctrl/cirrus/*
3908
3909 CLANG-FORMAT FILE
3910 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
3911 S:      Maintained
3912 F:      .clang-format
3913
3914 CLEANCACHE API
3915 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3916 L:      linux-kernel@vger.kernel.org
3917 S:      Maintained
3918 F:      mm/cleancache.c
3919 F:      include/linux/cleancache.h
3920
3921 CLK API
3922 M:      Russell King <linux@armlinux.org.uk>
3923 L:      linux-clk@vger.kernel.org
3924 S:      Maintained
3925 F:      include/linux/clk.h
3926
3927 CLOCKSOURCE, CLOCKEVENT DRIVERS
3928 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3929 M:      Thomas Gleixner <tglx@linutronix.de>
3930 L:      linux-kernel@vger.kernel.org
3931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3932 S:      Supported
3933 F:      drivers/clocksource/
3934 F:      Documentation/devicetree/bindings/timer/
3935
3936 CMPC ACPI DRIVER
3937 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3938 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3939 L:      platform-driver-x86@vger.kernel.org
3940 S:      Supported
3941 F:      drivers/platform/x86/classmate-laptop.c
3942
3943 COBALT MEDIA DRIVER
3944 M:      Hans Verkuil <hans.verkuil@cisco.com>
3945 L:      linux-media@vger.kernel.org
3946 T:      git git://linuxtv.org/media_tree.git
3947 W:      https://linuxtv.org
3948 S:      Supported
3949 F:      drivers/media/pci/cobalt/
3950
3951 COCCINELLE/Semantic Patches (SmPL)
3952 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3953 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3954 M:      Nicolas Palix <nicolas.palix@imag.fr>
3955 M:      Michal Marek <michal.lkml@markovi.net>
3956 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3958 W:      http://coccinelle.lip6.fr/
3959 S:      Supported
3960 F:      Documentation/dev-tools/coccinelle.rst
3961 F:      scripts/coccinelle/
3962 F:      scripts/coccicheck
3963
3964 CODA FILE SYSTEM
3965 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3966 M:      coda@cs.cmu.edu
3967 L:      codalist@coda.cs.cmu.edu
3968 W:      http://www.coda.cs.cmu.edu/
3969 S:      Maintained
3970 F:      Documentation/filesystems/coda.txt
3971 F:      fs/coda/
3972 F:      include/linux/coda*.h
3973 F:      include/uapi/linux/coda*.h
3974
3975 CODA V4L2 MEM2MEM DRIVER
3976 M:      Philipp Zabel <p.zabel@pengutronix.de>
3977 L:      linux-media@vger.kernel.org
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/media/coda.txt
3980 F:      drivers/media/platform/coda/
3981
3982 CODE OF CONDUCT
3983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3984 S:      Supported
3985 F:      Documentation/process/code-of-conduct.rst
3986 F:      Documentation/process/code-of-conduct-interpretation.rst
3987
3988 COMMON CLK FRAMEWORK
3989 M:      Michael Turquette <mturquette@baylibre.com>
3990 M:      Stephen Boyd <sboyd@kernel.org>
3991 L:      linux-clk@vger.kernel.org
3992 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3994 S:      Maintained
3995 F:      Documentation/devicetree/bindings/clock/
3996 F:      drivers/clk/
3997 X:      drivers/clk/clkdev.c
3998 F:      include/linux/clk-pr*
3999 F:      include/linux/clk/
4000 F:      include/linux/of_clk.h
4001
4002 COMMON INTERNET FILE SYSTEM (CIFS)
4003 M:      Steve French <sfrench@samba.org>
4004 L:      linux-cifs@vger.kernel.org
4005 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4006 W:      http://linux-cifs.samba.org/
4007 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4008 S:      Supported
4009 F:      Documentation/filesystems/cifs/
4010 F:      fs/cifs/
4011
4012 COMPACTPCI HOTPLUG CORE
4013 M:      Scott Murray <scott@spiteful.org>
4014 L:      linux-pci@vger.kernel.org
4015 S:      Maintained
4016 F:      drivers/pci/hotplug/cpci_hotplug*
4017
4018 COMPACTPCI HOTPLUG GENERIC DRIVER
4019 M:      Scott Murray <scott@spiteful.org>
4020 L:      linux-pci@vger.kernel.org
4021 S:      Maintained
4022 F:      drivers/pci/hotplug/cpcihp_generic.c
4023
4024 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4025 M:      Scott Murray <scott@spiteful.org>
4026 L:      linux-pci@vger.kernel.org
4027 S:      Maintained
4028 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4029
4030 COMPAL LAPTOP SUPPORT
4031 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4032 L:      platform-driver-x86@vger.kernel.org
4033 S:      Maintained
4034 F:      drivers/platform/x86/compal-laptop.c
4035
4036 COMPILER ATTRIBUTES
4037 M:      Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>
4038 S:      Maintained
4039 F:      include/linux/compiler_attributes.h
4040
4041 CONEXANT ACCESSRUNNER USB DRIVER
4042 L:      accessrunner-general@lists.sourceforge.net
4043 W:      http://accessrunner.sourceforge.net/
4044 S:      Orphan
4045 F:      drivers/usb/atm/cxacru.c
4046
4047 CONFIGFS
4048 M:      Joel Becker <jlbec@evilplan.org>
4049 M:      Christoph Hellwig <hch@lst.de>
4050 T:      git git://git.infradead.org/users/hch/configfs.git
4051 S:      Supported
4052 F:      fs/configfs/
4053 F:      include/linux/configfs.h
4054
4055 CONNECTOR
4056 M:      Evgeniy Polyakov <zbr@ioremap.net>
4057 L:      netdev@vger.kernel.org
4058 S:      Maintained
4059 F:      drivers/connector/
4060
4061 CONTROL GROUP (CGROUP)
4062 M:      Tejun Heo <tj@kernel.org>
4063 M:      Li Zefan <lizefan@huawei.com>
4064 M:      Johannes Weiner <hannes@cmpxchg.org>
4065 L:      cgroups@vger.kernel.org
4066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4067 S:      Maintained
4068 F:      Documentation/admin-guide/cgroup-v2.rst
4069 F:      Documentation/cgroup-v1/
4070 F:      include/linux/cgroup*
4071 F:      kernel/cgroup/
4072
4073 CONTROL GROUP - CPUSET
4074 M:      Li Zefan <lizefan@huawei.com>
4075 L:      cgroups@vger.kernel.org
4076 W:      http://www.bullopensource.org/cpuset/
4077 W:      http://oss.sgi.com/projects/cpusets/
4078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4079 S:      Maintained
4080 F:      Documentation/cgroup-v1/cpusets.txt
4081 F:      include/linux/cpuset.h
4082 F:      kernel/cgroup/cpuset.c
4083
4084 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4085 M:      Johannes Weiner <hannes@cmpxchg.org>
4086 M:      Michal Hocko <mhocko@kernel.org>
4087 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4088 L:      cgroups@vger.kernel.org
4089 L:      linux-mm@kvack.org
4090 S:      Maintained
4091 F:      mm/memcontrol.c
4092 F:      mm/swap_cgroup.c
4093
4094 CORETEMP HARDWARE MONITORING DRIVER
4095 M:      Fenghua Yu <fenghua.yu@intel.com>
4096 L:      linux-hwmon@vger.kernel.org
4097 S:      Maintained
4098 F:      Documentation/hwmon/coretemp.rst
4099 F:      drivers/hwmon/coretemp.c
4100
4101 COSA/SRP SYNC SERIAL DRIVER
4102 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4103 W:      http://www.fi.muni.cz/~kas/cosa/
4104 S:      Maintained
4105 F:      drivers/net/wan/cosa*
4106
4107 COUNTER SUBSYSTEM
4108 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4109 L:      linux-iio@vger.kernel.org
4110 S:      Maintained
4111 F:      Documentation/ABI/testing/sysfs-bus-counter*
4112 F:      Documentation/driver-api/generic-counter.rst
4113 F:      drivers/counter/
4114 F:      include/linux/counter.h
4115 F:      include/linux/counter_enum.h
4116
4117 CPMAC ETHERNET DRIVER
4118 M:      Florian Fainelli <f.fainelli@gmail.com>
4119 L:      netdev@vger.kernel.org
4120 S:      Maintained
4121 F:      drivers/net/ethernet/ti/cpmac.c
4122
4123 CPU FREQUENCY SCALING FRAMEWORK
4124 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4125 M:      Viresh Kumar <viresh.kumar@linaro.org>
4126 L:      linux-pm@vger.kernel.org
4127 S:      Maintained
4128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4130 B:      https://bugzilla.kernel.org
4131 F:      Documentation/admin-guide/pm/cpufreq.rst
4132 F:      Documentation/admin-guide/pm/intel_pstate.rst
4133 F:      Documentation/cpu-freq/
4134 F:      Documentation/devicetree/bindings/cpufreq/
4135 F:      drivers/cpufreq/
4136 F:      include/linux/cpufreq.h
4137 F:      tools/testing/selftests/cpufreq/
4138
4139 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
4140 M:      Viresh Kumar <viresh.kumar@linaro.org>
4141 M:      Sudeep Holla <sudeep.holla@arm.com>
4142 L:      linux-pm@vger.kernel.org
4143 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4144 S:      Maintained
4145 F:      drivers/cpufreq/arm_big_little.h
4146 F:      drivers/cpufreq/arm_big_little.c
4147
4148 CPU POWER MONITORING SUBSYSTEM
4149 M:      Thomas Renninger <trenn@suse.com>
4150 M:      Shuah Khan <shuah@kernel.org>
4151 M:      Shuah Khan <skhan@linuxfoundation.org>
4152 L:      linux-pm@vger.kernel.org
4153 S:      Maintained
4154 F:      tools/power/cpupower/
4155
4156 CPUID/MSR DRIVER
4157 M:      "H. Peter Anvin" <hpa@zytor.com>
4158 S:      Maintained
4159 F:      arch/x86/kernel/cpuid.c
4160 F:      arch/x86/kernel/msr.c
4161
4162 CPUIDLE DRIVER - ARM BIG LITTLE
4163 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4164 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4165 L:      linux-pm@vger.kernel.org
4166 L:      linux-arm-kernel@lists.infradead.org
4167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4168 S:      Maintained
4169 F:      drivers/cpuidle/cpuidle-big_little.c
4170
4171 CPUIDLE DRIVER - ARM EXYNOS
4172 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4173 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4174 M:      Kukjin Kim <kgene@kernel.org>
4175 L:      linux-pm@vger.kernel.org
4176 L:      linux-samsung-soc@vger.kernel.org
4177 S:      Supported
4178 F:      drivers/cpuidle/cpuidle-exynos.c
4179 F:      arch/arm/mach-exynos/pm.c
4180
4181 CPU IDLE TIME MANAGEMENT FRAMEWORK
4182 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4183 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4184 L:      linux-pm@vger.kernel.org
4185 S:      Maintained
4186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4187 B:      https://bugzilla.kernel.org
4188 F:      Documentation/admin-guide/pm/cpuidle.rst
4189 F:      Documentation/driver-api/pm/cpuidle.rst
4190 F:      drivers/cpuidle/*
4191 F:      include/linux/cpuidle.h
4192
4193 CRAMFS FILESYSTEM
4194 M:      Nicolas Pitre <nico@fluxnic.net>
4195 S:      Maintained
4196 F:      Documentation/filesystems/cramfs.txt
4197 F:      fs/cramfs/
4198
4199 CRYPTO API
4200 M:      Herbert Xu <herbert@gondor.apana.org.au>
4201 M:      "David S. Miller" <davem@davemloft.net>
4202 L:      linux-crypto@vger.kernel.org
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4205 S:      Maintained
4206 F:      Documentation/crypto/
4207 F:      Documentation/devicetree/bindings/crypto/
4208 F:      arch/*/crypto/
4209 F:      crypto/
4210 F:      drivers/crypto/
4211 F:      include/crypto/
4212 F:      include/linux/crypto*
4213
4214 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4215 M:      Neil Horman <nhorman@tuxdriver.com>
4216 L:      linux-crypto@vger.kernel.org
4217 S:      Maintained
4218 F:      crypto/ansi_cprng.c
4219 F:      crypto/rng.c
4220
4221 CS3308 MEDIA DRIVER
4222 M:      Hans Verkuil <hverkuil@xs4all.nl>
4223 L:      linux-media@vger.kernel.org
4224 T:      git git://linuxtv.org/media_tree.git
4225 W:      http://linuxtv.org
4226 S:      Odd Fixes
4227 F:      drivers/media/i2c/cs3308.c
4228
4229 CS5535 Audio ALSA driver
4230 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4231 S:      Maintained
4232 F:      sound/pci/cs5535audio/
4233
4234 CSI DRIVERS FOR ALLWINNER V3s
4235 M:      Yong Deng <yong.deng@magewell.com>
4236 L:      linux-media@vger.kernel.org
4237 T:      git git://linuxtv.org/media_tree.git
4238 S:      Maintained
4239 F:      drivers/media/platform/sunxi/sun6i-csi/
4240 F:      Documentation/devicetree/bindings/media/sun6i-csi.txt
4241
4242 CW1200 WLAN driver
4243 M:      Solomon Peachy <pizza@shaftnet.org>
4244 S:      Maintained
4245 F:      drivers/net/wireless/st/cw1200/
4246
4247 CX18 VIDEO4LINUX DRIVER
4248 M:      Andy Walls <awalls@md.metrocast.net>
4249 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
4250 L:      linux-media@vger.kernel.org
4251 T:      git git://linuxtv.org/media_tree.git
4252 W:      https://linuxtv.org
4253 W:      http://www.ivtvdriver.org/index.php/Cx18
4254 S:      Maintained
4255 F:      Documentation/media/v4l-drivers/cx18*
4256 F:      drivers/media/pci/cx18/
4257 F:      include/uapi/linux/ivtv*
4258
4259 CX2341X MPEG ENCODER HELPER MODULE
4260 M:      Hans Verkuil <hverkuil@xs4all.nl>
4261 L:      linux-media@vger.kernel.org
4262 T:      git git://linuxtv.org/media_tree.git
4263 W:      https://linuxtv.org
4264 S:      Maintained
4265 F:      drivers/media/common/cx2341x*
4266 F:      include/media/drv-intf/cx2341x.h
4267
4268 CX24120 MEDIA DRIVER
4269 M:      Jemma Denson <jdenson@gmail.com>
4270 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4271 L:      linux-media@vger.kernel.org
4272 W:      https://linuxtv.org
4273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4274 S:      Maintained
4275 F:      drivers/media/dvb-frontends/cx24120*
4276
4277 CX88 VIDEO4LINUX DRIVER
4278 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4279 L:      linux-media@vger.kernel.org
4280 W:      https://linuxtv.org
4281 T:      git git://linuxtv.org/media_tree.git
4282 S:      Odd fixes
4283 F:      Documentation/media/v4l-drivers/cx88*
4284 F:      drivers/media/pci/cx88/
4285
4286 CXD2820R MEDIA DRIVER
4287 M:      Antti Palosaari <crope@iki.fi>
4288 L:      linux-media@vger.kernel.org
4289 W:      https://linuxtv.org
4290 W:      http://palosaari.fi/linux/
4291 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4292 T:      git git://linuxtv.org/anttip/media_tree.git
4293 S:      Maintained
4294 F:      drivers/media/dvb-frontends/cxd2820r*
4295
4296 CXGB3 ETHERNET DRIVER (CXGB3)
4297 M:      Vishal Kulkarni <vishal@chelsio.com>
4298 L:      netdev@vger.kernel.org
4299 W:      http://www.chelsio.com
4300 S:      Supported
4301 F:      drivers/net/ethernet/chelsio/cxgb3/
4302
4303 CXGB3 ISCSI DRIVER (CXGB3I)
4304 M:      Karen Xie <kxie@chelsio.com>
4305 L:      linux-scsi@vger.kernel.org
4306 W:      http://www.chelsio.com
4307 S:      Supported
4308 F:      drivers/scsi/cxgbi/cxgb3i
4309
4310 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
4311 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4312 L:      linux-rdma@vger.kernel.org
4313 W:      http://www.openfabrics.org
4314 S:      Supported
4315 F:      drivers/infiniband/hw/cxgb3/
4316 F:      include/uapi/rdma/cxgb3-abi.h
4317
4318 CXGB4 CRYPTO DRIVER (chcr)
4319 M:      Harsh Jain <harsh@chelsio.com>
4320 L:      linux-crypto@vger.kernel.org
4321 W:      http://www.chelsio.com
4322 S:      Supported
4323 F:      drivers/crypto/chelsio
4324
4325 CXGB4 ETHERNET DRIVER (CXGB4)
4326 M:      Vishal Kulkarni <vishal@chelsio.com>
4327 L:      netdev@vger.kernel.org
4328 W:      http://www.chelsio.com
4329 S:      Supported
4330 F:      drivers/net/ethernet/chelsio/cxgb4/
4331
4332 CXGB4 ISCSI DRIVER (CXGB4I)
4333 M:      Karen Xie <kxie@chelsio.com>
4334 L:      linux-scsi@vger.kernel.org
4335 W:      http://www.chelsio.com
4336 S:      Supported
4337 F:      drivers/scsi/cxgbi/cxgb4i
4338
4339 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
4340 M:      Potnuri Bharat Teja <bharat@chelsio.com>
4341 L:      linux-rdma@vger.kernel.org
4342 W:      http://www.openfabrics.org
4343 S:      Supported
4344 F:      drivers/infiniband/hw/cxgb4/
4345 F:      include/uapi/rdma/cxgb4-abi.h
4346
4347 CXGB4VF ETHERNET DRIVER (CXGB4VF)
4348 M:      Casey Leedom <leedom@chelsio.com>
4349 L:      netdev@vger.kernel.org
4350 W:      http://www.chelsio.com
4351 S:      Supported
4352 F:      drivers/net/ethernet/chelsio/cxgb4vf/
4353
4354 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
4355 M:      Frederic Barrat <fbarrat@linux.ibm.com>
4356 M:      Andrew Donnellan <ajd@linux.ibm.com>
4357 L:      linuxppc-dev@lists.ozlabs.org
4358 S:      Supported
4359 F:      arch/powerpc/platforms/powernv/pci-cxl.c
4360 F:      drivers/misc/cxl/
4361 F:      include/misc/cxl*
4362 F:      include/uapi/misc/cxl.h
4363 F:      Documentation/powerpc/cxl.txt
4364 F:      Documentation/ABI/testing/sysfs-class-cxl
4365
4366 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
4367 M:      Manoj N. Kumar <manoj@linux.ibm.com>
4368 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
4369 M:      Uma Krishnan <ukrishn@linux.ibm.com>
4370 L:      linux-scsi@vger.kernel.org
4371 S:      Supported
4372 F:      drivers/scsi/cxlflash/
4373 F:      include/uapi/scsi/cxlflash_ioctl.h
4374 F:      Documentation/powerpc/cxlflash.txt
4375
4376 CYBERPRO FB DRIVER
4377 M:      Russell King <linux@armlinux.org.uk>
4378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4379 W:      http://www.armlinux.org.uk/
4380 S:      Maintained
4381 F:      drivers/video/fbdev/cyber2000fb.*
4382
4383 CYCLADES ASYNC MUX DRIVER
4384 W:      http://www.cyclades.com/
4385 S:      Orphan
4386 F:      drivers/tty/cyclades.c
4387 F:      include/linux/cyclades.h
4388 F:      include/uapi/linux/cyclades.h
4389
4390 CYCLADES PC300 DRIVER
4391 W:      http://www.cyclades.com/
4392 S:      Orphan
4393 F:      drivers/net/wan/pc300*
4394
4395 CYPRESS_FIRMWARE MEDIA DRIVER
4396 M:      Antti Palosaari <crope@iki.fi>
4397 L:      linux-media@vger.kernel.org
4398 W:      https://linuxtv.org
4399 W:      http://palosaari.fi/linux/
4400 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4401 T:      git git://linuxtv.org/anttip/media_tree.git
4402 S:      Maintained
4403 F:      drivers/media/common/cypress_firmware*
4404
4405 CYTTSP TOUCHSCREEN DRIVER
4406 M:      Ferruh Yigit <fery@cypress.com>
4407 L:      linux-input@vger.kernel.org
4408 S:      Supported
4409 F:      drivers/input/touchscreen/cyttsp*
4410 F:      include/linux/input/cyttsp.h
4411
4412 D-LINK DIR-685 TOUCHKEYS DRIVER
4413 M:      Linus Walleij <linus.walleij@linaro.org>
4414 L:      linux-input@vger.kernel.org
4415 S:      Supported
4416 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
4417
4418 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
4419 M:      Joshua Kinard <kumba@gentoo.org>
4420 S:      Maintained
4421 F:      drivers/rtc/rtc-ds1685.c
4422 F:      include/linux/rtc/ds1685.h
4423
4424 DAMA SLAVE for AX.25
4425 M:      Joerg Reuter <jreuter@yaina.de>
4426 W:      http://yaina.de/jreuter/
4427 W:      http://www.qsl.net/dl1bke/
4428 L:      linux-hams@vger.kernel.org
4429 S:      Maintained
4430 F:      net/ax25/af_ax25.c
4431 F:      net/ax25/ax25_dev.c
4432 F:      net/ax25/ax25_ds_*
4433 F:      net/ax25/ax25_in.c
4434 F:      net/ax25/ax25_out.c
4435 F:      net/ax25/ax25_timer.c
4436 F:      net/ax25/sysctl_net_ax25.c
4437
4438 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
4439 L:      netdev@vger.kernel.org
4440 S:      Orphan
4441 F:      Documentation/networking/device_drivers/dec/dmfe.txt
4442 F:      drivers/net/ethernet/dec/tulip/dmfe.c
4443
4444 DC390/AM53C974 SCSI driver
4445 M:      Hannes Reinecke <hare@suse.com>
4446 L:      linux-scsi@vger.kernel.org
4447 S:      Maintained
4448 F:      drivers/scsi/am53c974.c
4449
4450 DC395x SCSI driver
4451 M:      Oliver Neukum <oliver@neukum.org>
4452 M:      Ali Akcaagac <aliakc@web.de>
4453 M:      Jamie Lenehan <lenehan@twibble.org>
4454 L:      dc395x@twibble.org
4455 W:      http://twibble.org/dist/dc395x/
4456 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4457 S:      Maintained
4458 F:      Documentation/scsi/dc395x.txt
4459 F:      drivers/scsi/dc395x.*
4460
4461 DCCP PROTOCOL
4462 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4463 L:      dccp@vger.kernel.org
4464 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4465 S:      Maintained
4466 F:      include/linux/dccp.h
4467 F:      include/uapi/linux/dccp.h
4468 F:      include/linux/tfrc.h
4469 F:      net/dccp/
4470
4471 DECnet NETWORK LAYER
4472 W:      http://linux-decnet.sourceforge.net
4473 L:      linux-decnet-user@lists.sourceforge.net
4474 S:      Orphan
4475 F:      Documentation/networking/decnet.txt
4476 F:      net/decnet/
4477
4478 DECSTATION PLATFORM SUPPORT
4479 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4480 L:      linux-mips@vger.kernel.org
4481 W:      http://www.linux-mips.org/wiki/DECstation
4482 S:      Maintained
4483 F:      arch/mips/dec/
4484 F:      arch/mips/include/asm/dec/
4485 F:      arch/mips/include/asm/mach-dec/
4486
4487 DEFXX FDDI NETWORK DRIVER
4488 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4489 S:      Maintained
4490 F:      drivers/net/fddi/defxx.*
4491
4492 DELL SMBIOS DRIVER
4493 M:      Pali Rohár <pali.rohar@gmail.com>
4494 M:      Mario Limonciello <mario.limonciello@dell.com>
4495 L:      platform-driver-x86@vger.kernel.org
4496 S:      Maintained
4497 F:      drivers/platform/x86/dell-smbios.*
4498
4499 DELL SMBIOS SMM DRIVER
4500 M:      Mario Limonciello <mario.limonciello@dell.com>
4501 L:      platform-driver-x86@vger.kernel.org
4502 S:      Maintained
4503 F:      drivers/platform/x86/dell-smbios-smm.c
4504
4505 DELL SMBIOS WMI DRIVER
4506 M:      Mario Limonciello <mario.limonciello@dell.com>
4507 L:      platform-driver-x86@vger.kernel.org
4508 S:      Maintained
4509 F:      drivers/platform/x86/dell-smbios-wmi.c
4510 F:      tools/wmi/dell-smbios-example.c
4511
4512 DEFZA FDDI NETWORK DRIVER
4513 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4514 S:      Maintained
4515 F:      drivers/net/fddi/defza.*
4516
4517 DELL LAPTOP DRIVER
4518 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4519 M:      Pali Rohár <pali.rohar@gmail.com>
4520 L:      platform-driver-x86@vger.kernel.org
4521 S:      Maintained
4522 F:      drivers/platform/x86/dell-laptop.c
4523
4524 DELL LAPTOP FREEFALL DRIVER
4525 M:      Pali Rohár <pali.rohar@gmail.com>
4526 S:      Maintained
4527 F:      drivers/platform/x86/dell-smo8800.c
4528
4529 DELL LAPTOP RBTN DRIVER
4530 M:      Pali Rohár <pali.rohar@gmail.com>
4531 S:      Maintained
4532 F:      drivers/platform/x86/dell-rbtn.*
4533
4534 DELL REMOTE BIOS UPDATE DRIVER
4535 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4536 L:      platform-driver-x86@vger.kernel.org
4537 S:      Maintained
4538 F:      drivers/platform/x86/dell_rbu.c
4539
4540 DELL LAPTOP SMM DRIVER
4541 M:      Pali Rohár <pali.rohar@gmail.com>
4542 S:      Maintained
4543 F:      drivers/hwmon/dell-smm-hwmon.c
4544 F:      include/uapi/linux/i8k.h
4545
4546 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4547 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
4548 L:      platform-driver-x86@vger.kernel.org
4549 S:      Maintained
4550 F:      Documentation/dcdbas.txt
4551 F:      drivers/platform/x86/dcdbas.*
4552
4553 DELL WMI NOTIFICATIONS DRIVER
4554 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4555 M:      Pali Rohár <pali.rohar@gmail.com>
4556 S:      Maintained
4557 F:      drivers/platform/x86/dell-wmi.c
4558
4559 DELL WMI DESCRIPTOR DRIVER
4560 M:      Mario Limonciello <mario.limonciello@dell.com>
4561 S:      Maintained
4562 F:      drivers/platform/x86/dell-wmi-descriptor.c
4563
4564 DELTA ST MEDIA DRIVER
4565 M:      Hugues Fruchet <hugues.fruchet@st.com>
4566 L:      linux-media@vger.kernel.org
4567 T:      git git://linuxtv.org/media_tree.git
4568 W:      https://linuxtv.org
4569 S:      Supported
4570 F:      drivers/media/platform/sti/delta
4571
4572 DENALI NAND DRIVER
4573 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4574 L:      linux-mtd@lists.infradead.org
4575 S:      Supported
4576 F:      drivers/mtd/nand/raw/denali*
4577
4578 DESIGNWARE USB2 DRD IP DRIVER
4579 M:      Minas Harutyunyan <hminas@synopsys.com>
4580 L:      linux-usb@vger.kernel.org
4581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4582 S:      Maintained
4583 F:      drivers/usb/dwc2/
4584
4585 DESIGNWARE USB3 DRD IP DRIVER
4586 M:      Felipe Balbi <balbi@kernel.org>
4587 L:      linux-usb@vger.kernel.org
4588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4589 S:      Maintained
4590 F:      drivers/usb/dwc3/
4591
4592 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4593 M:      Andreas Klinger <ak@it-klinger.de>
4594 L:      linux-iio@vger.kernel.org
4595 S:      Maintained
4596 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4597 F:      drivers/iio/proximity/srf*.c
4598
4599 DEVICE COREDUMP (DEV_COREDUMP)
4600 M:      Johannes Berg <johannes@sipsolutions.net>
4601 L:      linux-kernel@vger.kernel.org
4602 S:      Maintained
4603 F:      drivers/base/devcoredump.c
4604 F:      include/linux/devcoredump.h
4605
4606 DEVICE FREQUENCY (DEVFREQ)
4607 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4608 M:      Kyungmin Park <kyungmin.park@samsung.com>
4609 R:      Chanwoo Choi <cw00.choi@samsung.com>
4610 L:      linux-pm@vger.kernel.org
4611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4612 S:      Maintained
4613 F:      drivers/devfreq/
4614 F:      include/linux/devfreq.h
4615 F:      Documentation/devicetree/bindings/devfreq/
4616 F:      include/trace/events/devfreq.h
4617
4618 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4619 M:      Chanwoo Choi <cw00.choi@samsung.com>
4620 L:      linux-pm@vger.kernel.org
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4622 S:      Supported
4623 F:      drivers/devfreq/event/
4624 F:      drivers/devfreq/devfreq-event.c
4625 F:      include/linux/devfreq-event.h
4626 F:      Documentation/devicetree/bindings/devfreq/event/
4627
4628 DEVICE NUMBER REGISTRY
4629 M:      Torben Mathiasen <device@lanana.org>
4630 W:      http://lanana.org/docs/device-list/index.html
4631 S:      Maintained
4632
4633 DEVICE-MAPPER  (LVM)
4634 M:      Alasdair Kergon <agk@redhat.com>
4635 M:      Mike Snitzer <snitzer@redhat.com>
4636 M:      dm-devel@redhat.com
4637 L:      dm-devel@redhat.com
4638 W:      http://sources.redhat.com/dm
4639 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4641 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4642 S:      Maintained
4643 F:      Documentation/device-mapper/
4644 F:      drivers/md/Makefile
4645 F:      drivers/md/Kconfig
4646 F:      drivers/md/dm*
4647 F:      drivers/md/persistent-data/
4648 F:      include/linux/device-mapper.h
4649 F:      include/linux/dm-*.h
4650 F:      include/uapi/linux/dm-*.h
4651
4652 DEVLINK
4653 M:      Jiri Pirko <jiri@mellanox.com>
4654 L:      netdev@vger.kernel.org
4655 S:      Supported
4656 F:      net/core/devlink.c
4657 F:      include/net/devlink.h
4658 F:      include/uapi/linux/devlink.h
4659
4660 DIALOG SEMICONDUCTOR DRIVERS
4661 M:      Support Opensource <support.opensource@diasemi.com>
4662 W:      http://www.dialog-semiconductor.com/products
4663 S:      Supported
4664 F:      Documentation/hwmon/da90??.rst
4665 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4666 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4667 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4668 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4669 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4670 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4671 F:      drivers/gpio/gpio-da90??.c
4672 F:      drivers/hwmon/da90??-hwmon.c
4673 F:      drivers/iio/adc/da91??-*.c
4674 F:      drivers/input/misc/da90??_onkey.c
4675 F:      drivers/input/touchscreen/da9052_tsi.c
4676 F:      drivers/leds/leds-da90??.c
4677 F:      drivers/mfd/da903x.c
4678 F:      drivers/mfd/da90??-*.c
4679 F:      drivers/mfd/da91??-*.c
4680 F:      drivers/power/supply/da9052-battery.c
4681 F:      drivers/power/supply/da91??-*.c
4682 F:      drivers/regulator/da903x.c
4683 F:      drivers/regulator/da9???-regulator.[ch]
4684 F:      drivers/thermal/da90??-thermal.c
4685 F:      drivers/rtc/rtc-da90??.c
4686 F:      drivers/video/backlight/da90??_bl.c
4687 F:      drivers/watchdog/da90??_wdt.c
4688 F:      include/linux/mfd/da903x.h
4689 F:      include/linux/mfd/da9052/
4690 F:      include/linux/mfd/da9055/
4691 F:      include/linux/mfd/da9062/
4692 F:      include/linux/mfd/da9063/
4693 F:      include/linux/mfd/da9150/
4694 F:      include/linux/regulator/da9211.h
4695 F:      include/sound/da[79]*.h
4696 F:      sound/soc/codecs/da[79]*.[ch]
4697
4698 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4699 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4700 L:      linux-gpio@vger.kernel.org
4701 S:      Maintained
4702 F:      drivers/gpio/gpio-gpio-mm.c
4703
4704 DIOLAN U2C-12 I2C DRIVER
4705 M:      Guenter Roeck <linux@roeck-us.net>
4706 L:      linux-i2c@vger.kernel.org
4707 S:      Maintained
4708 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4709
4710 FILESYSTEM DIRECT ACCESS (DAX)
4711 M:      Dan Williams <dan.j.williams@intel.com>
4712 R:      Matthew Wilcox <willy@infradead.org>
4713 R:      Jan Kara <jack@suse.cz>
4714 L:      linux-fsdevel@vger.kernel.org
4715 L:      linux-nvdimm@lists.01.org
4716 S:      Supported
4717 F:      fs/dax.c
4718 F:      include/linux/dax.h
4719 F:      include/trace/events/fs_dax.h
4720
4721 DEVICE DIRECT ACCESS (DAX)
4722 M:      Dan Williams <dan.j.williams@intel.com>
4723 M:      Vishal Verma <vishal.l.verma@intel.com>
4724 M:      Keith Busch <keith.busch@intel.com>
4725 M:      Dave Jiang <dave.jiang@intel.com>
4726 L:      linux-nvdimm@lists.01.org
4727 S:      Supported
4728 F:      drivers/dax/
4729
4730 DIRECTORY NOTIFICATION (DNOTIFY)
4731 M:      Jan Kara <jack@suse.cz>
4732 R:      Amir Goldstein <amir73il@gmail.com>
4733 L:      linux-fsdevel@vger.kernel.org
4734 S:      Maintained
4735 F:      Documentation/filesystems/dnotify.txt
4736 F:      fs/notify/dnotify/
4737 F:      include/linux/dnotify.h
4738
4739 DISK GEOMETRY AND PARTITION HANDLING
4740 M:      Andries Brouwer <aeb@cwi.nl>
4741 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4742 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4743 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4744 S:      Maintained
4745
4746 DISKQUOTA
4747 M:      Jan Kara <jack@suse.com>
4748 S:      Maintained
4749 F:      Documentation/filesystems/quota.txt
4750 F:      fs/quota/
4751 F:      include/linux/quota*.h
4752 F:      include/uapi/linux/quota*.h
4753
4754 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4755 M:      Bernie Thompson <bernie@plugable.com>
4756 L:      linux-fbdev@vger.kernel.org
4757 S:      Maintained
4758 W:      http://plugable.com/category/projects/udlfb/
4759 F:      drivers/video/fbdev/udlfb.c
4760 F:      include/video/udlfb.h
4761 F:      Documentation/fb/udlfb.txt
4762
4763 DISTRIBUTED LOCK MANAGER (DLM)
4764 M:      Christine Caulfield <ccaulfie@redhat.com>
4765 M:      David Teigland <teigland@redhat.com>
4766 L:      cluster-devel@redhat.com
4767 W:      http://sources.redhat.com/cluster/
4768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4769 S:      Supported
4770 F:      fs/dlm/
4771
4772 DMA BUFFER SHARING FRAMEWORK
4773 M:      Sumit Semwal <sumit.semwal@linaro.org>
4774 S:      Maintained
4775 L:      linux-media@vger.kernel.org
4776 L:      dri-devel@lists.freedesktop.org
4777 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4778 F:      drivers/dma-buf/
4779 F:      include/linux/dma-buf*
4780 F:      include/linux/reservation.h
4781 F:      include/linux/*fence.h
4782 F:      Documentation/driver-api/dma-buf.rst
4783 T:      git git://anongit.freedesktop.org/drm/drm-misc
4784
4785 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4786 M:      Vinod Koul <vkoul@kernel.org>
4787 L:      dmaengine@vger.kernel.org
4788 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4789 S:      Maintained
4790 F:      drivers/dma/
4791 F:      include/linux/dmaengine.h
4792 F:      include/linux/of_dma.h
4793 F:      Documentation/devicetree/bindings/dma/
4794 F:      Documentation/driver-api/dmaengine/
4795 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4796
4797 DMA MAPPING HELPERS
4798 M:      Christoph Hellwig <hch@lst.de>
4799 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4800 R:      Robin Murphy <robin.murphy@arm.com>
4801 L:      iommu@lists.linux-foundation.org
4802 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4803 W:      http://git.infradead.org/users/hch/dma-mapping.git
4804 S:      Supported
4805 F:      kernel/dma/
4806 F:      include/asm-generic/dma-mapping.h
4807 F:      include/linux/dma-direct.h
4808 F:      include/linux/dma-mapping.h
4809 F:      include/linux/dma-noncoherent.h
4810
4811 DME1737 HARDWARE MONITOR DRIVER
4812 M:      Juerg Haefliger <juergh@gmail.com>
4813 L:      linux-hwmon@vger.kernel.org
4814 S:      Maintained
4815 F:      Documentation/hwmon/dme1737.rst
4816 F:      drivers/hwmon/dme1737.c
4817
4818 DMI/SMBIOS SUPPORT
4819 M:      Jean Delvare <jdelvare@suse.com>
4820 S:      Maintained
4821 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4822 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4823 F:      drivers/firmware/dmi-id.c
4824 F:      drivers/firmware/dmi_scan.c
4825 F:      include/linux/dmi.h
4826
4827 DOCUMENTATION
4828 M:      Jonathan Corbet <corbet@lwn.net>
4829 L:      linux-doc@vger.kernel.org
4830 S:      Maintained
4831 F:      Documentation/
4832 F:      scripts/kernel-doc
4833 X:      Documentation/ABI/
4834 X:      Documentation/acpi/
4835 X:      Documentation/devicetree/
4836 X:      Documentation/i2c/
4837 X:      Documentation/media/
4838 X:      Documentation/power/
4839 X:      Documentation/spi/
4840 T:      git git://git.lwn.net/linux.git docs-next
4841
4842 DOCUMENTATION/ITALIAN
4843 M:      Federico Vaga <federico.vaga@vaga.pv.it>
4844 L:      linux-doc@vger.kernel.org
4845 S:      Maintained
4846 F:      Documentation/translations/it_IT
4847
4848 DONGWOON DW9714 LENS VOICE COIL DRIVER
4849 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4850 L:      linux-media@vger.kernel.org
4851 T:      git git://linuxtv.org/media_tree.git
4852 S:      Maintained
4853 F:      drivers/media/i2c/dw9714.c
4854 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
4855
4856 DONGWOON DW9807 LENS VOICE COIL DRIVER
4857 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4858 L:      linux-media@vger.kernel.org
4859 T:      git git://linuxtv.org/media_tree.git
4860 S:      Maintained
4861 F:      drivers/media/i2c/dw9807-vcm.c
4862 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
4863
4864 DOUBLETALK DRIVER
4865 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4866 L:      blinux-list@redhat.com
4867 S:      Maintained
4868 F:      drivers/char/dtlk.c
4869 F:      include/linux/dtlk.h
4870
4871 DPAA2 DATAPATH I/O (DPIO) DRIVER
4872 M:      Roy Pledge <Roy.Pledge@nxp.com>
4873 L:      linux-kernel@vger.kernel.org
4874 S:      Maintained
4875 F:      drivers/soc/fsl/dpio
4876
4877 DPAA2 ETHERNET DRIVER
4878 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4879 L:      netdev@vger.kernel.org
4880 S:      Maintained
4881 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
4882 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
4883 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
4884 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
4885 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
4886
4887 DPAA2 ETHERNET SWITCH DRIVER
4888 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4889 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
4890 L:      linux-kernel@vger.kernel.org
4891 S:      Maintained
4892 F:      drivers/staging/fsl-dpaa2/ethsw
4893
4894 DPAA2 PTP CLOCK DRIVER
4895 M:      Yangbo Lu <yangbo.lu@nxp.com>
4896 L:      netdev@vger.kernel.org
4897 S:      Maintained
4898 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
4899 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
4900
4901 DPT_I2O SCSI RAID DRIVER
4902 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
4903 L:      linux-scsi@vger.kernel.org
4904 W:      http://www.adaptec.com/
4905 S:      Maintained
4906 F:      drivers/scsi/dpt*
4907 F:      drivers/scsi/dpt/
4908
4909 DRBD DRIVER
4910 M:      Philipp Reisner <philipp.reisner@linbit.com>
4911 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4912 L:      drbd-dev@lists.linbit.com
4913 W:      http://www.drbd.org
4914 T:      git git://git.linbit.com/linux-drbd.git
4915 T:      git git://git.linbit.com/drbd-8.4.git
4916 S:      Supported
4917 F:      drivers/block/drbd/
4918 F:      lib/lru_cache.c
4919 F:      Documentation/blockdev/drbd/
4920
4921 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4922 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4923 R:      "Rafael J. Wysocki" <rafael@kernel.org>
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4925 S:      Supported
4926 F:      Documentation/kobject.txt
4927 F:      drivers/base/
4928 F:      fs/debugfs/
4929 F:      fs/sysfs/
4930 F:      include/linux/debugfs.h
4931 F:      include/linux/kobj*
4932 F:      lib/kobj*
4933
4934 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4935 M:      Kevin Hilman <khilman@kernel.org>
4936 M:      Nishanth Menon <nm@ti.com>
4937 S:      Maintained
4938 F:      drivers/power/avs/
4939 F:      include/linux/power/smartreflex.h
4940 L:      linux-pm@vger.kernel.org
4941
4942 DRM DRIVER FOR ARM PL111 CLCD
4943 M:      Eric Anholt <eric@anholt.net>
4944 T:      git git://anongit.freedesktop.org/drm/drm-misc
4945 S:      Supported
4946 F:      drivers/gpu/drm/pl111/
4947
4948 DRM DRIVER FOR ARM VERSATILE TFT PANELS
4949 M:      Linus Walleij <linus.walleij@linaro.org>
4950 T:      git git://anongit.freedesktop.org/drm/drm-misc
4951 S:      Maintained
4952 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
4953 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
4954
4955 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4956 M:      Dave Airlie <airlied@redhat.com>
4957 S:      Odd Fixes
4958 F:      drivers/gpu/drm/ast/
4959
4960 DRM DRIVER FOR ASPEED BMC GFX
4961 M:      Joel Stanley <joel@jms.id.au>
4962 L:      linux-aspeed@lists.ozlabs.org
4963 T:      git git://anongit.freedesktop.org/drm/drm-misc
4964 S:      Supported
4965 F:      drivers/gpu/drm/aspeed/
4966 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
4967
4968 DRM DRIVER FOR BOCHS VIRTUAL GPU
4969 M:      Gerd Hoffmann <kraxel@redhat.com>
4970 L:      virtualization@lists.linux-foundation.org
4971 T:      git git://anongit.freedesktop.org/drm/drm-misc
4972 S:      Maintained
4973 F:      drivers/gpu/drm/bochs/
4974
4975 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4976 M:      Linus Walleij <linus.walleij@linaro.org>
4977 T:      git git://anongit.freedesktop.org/drm/drm-misc
4978 S:      Maintained
4979 F:      drivers/gpu/drm/tve200/
4980
4981 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
4982 M:      Jagan Teki <jagan@amarulasolutions.com>
4983 S:      Maintained
4984 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
4985 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.txt
4986
4987 DRM DRIVER FOR ILITEK ILI9225 PANELS
4988 M:      David Lechner <david@lechnology.com>
4989 S:      Maintained
4990 F:      drivers/gpu/drm/tinydrm/ili9225.c
4991 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
4992
4993 DRM DRIVER FOR HX8357D PANELS
4994 M:      Eric Anholt <eric@anholt.net>
4995 T:      git git://anongit.freedesktop.org/drm/drm-misc
4996 S:      Maintained
4997 F:      drivers/gpu/drm/tinydrm/hx8357d.c
4998 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
4999
5000 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5001 S:      Orphan / Obsolete
5002 F:      drivers/gpu/drm/i810/
5003 F:      include/uapi/drm/i810_drm.h
5004
5005 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5006 S:      Orphan / Obsolete
5007 F:      drivers/gpu/drm/mga/
5008 F:      include/uapi/drm/mga_drm.h
5009
5010 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
5011 M:      Dave Airlie <airlied@redhat.com>
5012 S:      Odd Fixes
5013 F:      drivers/gpu/drm/mgag200/
5014
5015 DRM DRIVER FOR MI0283QT
5016 M:      Noralf Trønnes <noralf@tronnes.org>
5017 S:      Maintained
5018 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
5019 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5020
5021 DRM DRIVER FOR MSM ADRENO GPU
5022 M:      Rob Clark <robdclark@gmail.com>
5023 M:      Sean Paul <sean@poorly.run>
5024 L:      linux-arm-msm@vger.kernel.org
5025 L:      dri-devel@lists.freedesktop.org
5026 L:      freedreno@lists.freedesktop.org
5027 T:      git https://gitlab.freedesktop.org/drm/msm.git
5028 S:      Maintained
5029 F:      drivers/gpu/drm/msm/
5030 F:      include/uapi/drm/msm_drm.h
5031 F:      Documentation/devicetree/bindings/display/msm/
5032
5033 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5034 M:      Ben Skeggs <bskeggs@redhat.com>
5035 L:      dri-devel@lists.freedesktop.org
5036 L:      nouveau@lists.freedesktop.org
5037 T:      git git://github.com/skeggsb/linux
5038 S:      Supported
5039 F:      drivers/gpu/drm/nouveau/
5040 F:      include/uapi/drm/nouveau_drm.h
5041
5042 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5043 M:      Stefan Mavrodiev <stefan@olimex.com>
5044 S:      Maintained
5045 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5046 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.txt
5047
5048 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
5049 M:      Noralf Trønnes <noralf@tronnes.org>
5050 S:      Maintained
5051 F:      drivers/gpu/drm/tinydrm/repaper.c
5052 F:      Documentation/devicetree/bindings/display/repaper.txt
5053
5054 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
5055 M:      Dave Airlie <airlied@redhat.com>
5056 M:      Gerd Hoffmann <kraxel@redhat.com>
5057 L:      virtualization@lists.linux-foundation.org
5058 T:      git git://anongit.freedesktop.org/drm/drm-misc
5059 S:      Obsolete
5060 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
5061 F:      drivers/gpu/drm/cirrus/
5062
5063 DRM DRIVER FOR QXL VIRTUAL GPU
5064 M:      Dave Airlie <airlied@redhat.com>
5065 M:      Gerd Hoffmann <kraxel@redhat.com>
5066 L:      virtualization@lists.linux-foundation.org
5067 L:      spice-devel@lists.freedesktop.org
5068 T:      git git://anongit.freedesktop.org/drm/drm-misc
5069 S:      Maintained
5070 F:      drivers/gpu/drm/qxl/
5071 F:      include/uapi/drm/qxl_drm.h
5072
5073 DRM DRIVER FOR RAGE 128 VIDEO CARDS
5074 S:      Orphan / Obsolete
5075 F:      drivers/gpu/drm/r128/
5076 F:      include/uapi/drm/r128_drm.h
5077
5078 DRM DRIVER FOR ROCKTECH JH057N00900 PANELS
5079 M:      Guido Günther <agx@sigxcpu.org>
5080 S:      Maintained
5081 F:      drivers/gpu/drm/panel/panel-rocktech-jh057n00900.c
5082 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.txt
5083
5084 DRM DRIVER FOR SAVAGE VIDEO CARDS
5085 S:      Orphan / Obsolete
5086 F:      drivers/gpu/drm/savage/
5087 F:      include/uapi/drm/savage_drm.h
5088
5089 DRM DRIVER FOR SIS VIDEO CARDS
5090 S:      Orphan / Obsolete
5091 F:      drivers/gpu/drm/sis/
5092 F:      include/uapi/drm/sis_drm.h
5093
5094 DRM DRIVER FOR SITRONIX ST7701 PANELS
5095 M:      Jagan Teki <jagan@amarulasolutions.com>
5096 S:      Maintained
5097 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
5098 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.txt
5099
5100 DRM DRIVER FOR SITRONIX ST7586 PANELS
5101 M:      David Lechner <david@lechnology.com>
5102 S:      Maintained
5103 F:      drivers/gpu/drm/tinydrm/st7586.c
5104 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
5105
5106 DRM DRIVER FOR SITRONIX ST7735R PANELS
5107 M:      David Lechner <david@lechnology.com>
5108 S:      Maintained
5109 F:      drivers/gpu/drm/tinydrm/st7735r.c
5110 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.txt
5111
5112 DRM DRIVER FOR TDFX VIDEO CARDS
5113 S:      Orphan / Obsolete
5114 F:      drivers/gpu/drm/tdfx/
5115
5116 DRM DRIVER FOR TPO TPG110 PANELS
5117 M:      Linus Walleij <linus.walleij@linaro.org>
5118 T:      git git://anongit.freedesktop.org/drm/drm-misc
5119 S:      Maintained
5120 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
5121 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.txt
5122
5123 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
5124 M:      Dave Airlie <airlied@redhat.com>
5125 R:      Sean Paul <sean@poorly.run>
5126 L:      dri-devel@lists.freedesktop.org
5127 S:      Odd Fixes
5128 F:      drivers/gpu/drm/udl/
5129 T:      git git://anongit.freedesktop.org/drm/drm-misc
5130
5131 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
5132 M:      Hans de Goede <hdegoede@redhat.com>
5133 L:      dri-devel@lists.freedesktop.org
5134 S:      Maintained
5135 F:      drivers/gpu/drm/vboxvideo/
5136 T:      git git://anongit.freedesktop.org/drm/drm-misc
5137
5138 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
5139 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
5140 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
5141 R:      Daniel Vetter <daniel@ffwll.ch>
5142 T:      git git://anongit.freedesktop.org/drm/drm-misc
5143 S:      Maintained
5144 L:      dri-devel@lists.freedesktop.org
5145 F:      drivers/gpu/drm/vkms/
5146 F:      Documentation/gpu/vkms.rst
5147
5148 DRM DRIVER FOR VMWARE VIRTUAL GPU
5149 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
5150 M:      Thomas Hellstrom <thellstrom@vmware.com>
5151 L:      dri-devel@lists.freedesktop.org
5152 T:      git git://people.freedesktop.org/~thomash/linux
5153 S:      Supported
5154 F:      drivers/gpu/drm/vmwgfx/
5155 F:      include/uapi/drm/vmwgfx_drm.h
5156
5157 DRM DRIVERS
5158 M:      David Airlie <airlied@linux.ie>
5159 M:      Daniel Vetter <daniel@ffwll.ch>
5160 L:      dri-devel@lists.freedesktop.org
5161 T:      git git://anongit.freedesktop.org/drm/drm
5162 B:      https://bugs.freedesktop.org/
5163 C:      irc://chat.freenode.net/dri-devel
5164 S:      Maintained
5165 F:      drivers/gpu/drm/
5166 F:      drivers/gpu/vga/
5167 F:      Documentation/devicetree/bindings/display/
5168 F:      Documentation/devicetree/bindings/gpu/
5169 F:      Documentation/gpu/
5170 F:      include/drm/
5171 F:      include/uapi/drm/
5172 F:      include/linux/vga*
5173
5174 DRM DRIVERS AND MISC GPU PATCHES
5175 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
5176 M:      Maxime Ripard <maxime.ripard@bootlin.com>
5177 M:      Sean Paul <sean@poorly.run>
5178 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
5179 S:      Maintained
5180 T:      git git://anongit.freedesktop.org/drm/drm-misc
5181 F:      Documentation/gpu/
5182 F:      drivers/gpu/vga/
5183 F:      drivers/gpu/drm/*
5184 F:      include/drm/drm*
5185 F:      include/uapi/drm/drm*
5186 F:      include/linux/vga*
5187
5188 DRM DRIVERS FOR ALLWINNER A10
5189 M:      Maxime Ripard  <maxime.ripard@bootlin.com>
5190 L:      dri-devel@lists.freedesktop.org
5191 S:      Supported
5192 F:      drivers/gpu/drm/sun4i/
5193 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
5194 T:      git git://anongit.freedesktop.org/drm/drm-misc
5195
5196 DRM DRIVERS FOR AMLOGIC SOCS
5197 M:      Neil Armstrong <narmstrong@baylibre.com>
5198 L:      dri-devel@lists.freedesktop.org
5199 L:      linux-amlogic@lists.infradead.org
5200 W:      http://linux-meson.com/
5201 S:      Supported
5202 F:      drivers/gpu/drm/meson/
5203 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
5204 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
5205 F:      Documentation/gpu/meson.rst
5206 T:      git git://anongit.freedesktop.org/drm/drm-misc
5207
5208 DRM DRIVERS FOR ATMEL HLCDC
5209 M:      Boris Brezillon <bbrezillon@kernel.org>
5210 L:      dri-devel@lists.freedesktop.org
5211 S:      Supported
5212 F:      drivers/gpu/drm/atmel-hlcdc/
5213 F:      Documentation/devicetree/bindings/display/atmel/
5214 T:      git git://anongit.freedesktop.org/drm/drm-misc
5215
5216 DRM DRIVERS FOR BRIDGE CHIPS
5217 M:      Andrzej Hajda <a.hajda@samsung.com>
5218 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
5219 S:      Maintained
5220 T:      git git://anongit.freedesktop.org/drm/drm-misc
5221 F:      drivers/gpu/drm/bridge/
5222
5223 DRM DRIVERS FOR EXYNOS
5224 M:      Inki Dae <inki.dae@samsung.com>
5225 M:      Joonyoung Shim <jy0922.shim@samsung.com>
5226 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
5227 M:      Kyungmin Park <kyungmin.park@samsung.com>
5228 L:      dri-devel@lists.freedesktop.org
5229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
5230 S:      Supported
5231 F:      drivers/gpu/drm/exynos/
5232 F:      include/uapi/drm/exynos_drm.h
5233 F:      Documentation/devicetree/bindings/display/exynos/
5234
5235 DRM DRIVERS FOR FREESCALE DCU
5236 M:      Stefan Agner <stefan@agner.ch>
5237 M:      Alison Wang <alison.wang@nxp.com>
5238 L:      dri-devel@lists.freedesktop.org
5239 S:      Supported
5240 F:      drivers/gpu/drm/fsl-dcu/
5241 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
5242 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
5243 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19-05b.txt
5244 T:      git git://anongit.freedesktop.org/drm/drm-misc
5245
5246 DRM DRIVERS FOR FREESCALE IMX
5247 M:      Philipp Zabel <p.zabel@pengutronix.de>
5248 L:      dri-devel@lists.freedesktop.org
5249 S:      Maintained
5250 F:      drivers/gpu/drm/imx/
5251 F:      drivers/gpu/ipu-v3/
5252 F:      Documentation/devicetree/bindings/display/imx/
5253
5254 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
5255 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
5256 L:      dri-devel@lists.freedesktop.org
5257 T:      git git://github.com/patjak/drm-gma500
5258 S:      Maintained
5259 F:      drivers/gpu/drm/gma500/
5260
5261 DRM DRIVERS FOR HISILICON
5262 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
5263 M:      Rongrong Zou <zourongrong@gmail.com>
5264 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
5265 R:      Chen Feng <puck.chen@hisilicon.com>
5266 L:      dri-devel@lists.freedesktop.org
5267 T:      git git://github.com/xin3liang/linux.git
5268 S:      Maintained
5269 F:      drivers/gpu/drm/hisilicon/
5270 F:      Documentation/devicetree/bindings/display/hisilicon/
5271
5272 DRM DRIVERS FOR LIMA
5273 M:      Qiang Yu <yuq825@gmail.com>
5274 L:      dri-devel@lists.freedesktop.org
5275 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
5276 S:      Maintained
5277 F:      drivers/gpu/drm/lima/
5278 F:      include/uapi/drm/lima_drm.h
5279 T:      git git://anongit.freedesktop.org/drm/drm-misc
5280
5281 DRM DRIVERS FOR MEDIATEK
5282 M:      CK Hu <ck.hu@mediatek.com>
5283 M:      Philipp Zabel <p.zabel@pengutronix.de>
5284 L:      dri-devel@lists.freedesktop.org
5285 S:      Supported
5286 F:      drivers/gpu/drm/mediatek/
5287 F:      Documentation/devicetree/bindings/display/mediatek/
5288
5289 DRM DRIVERS FOR NVIDIA TEGRA
5290 M:      Thierry Reding <thierry.reding@gmail.com>
5291 L:      dri-devel@lists.freedesktop.org
5292 L:      linux-tegra@vger.kernel.org
5293 T:      git git://anongit.freedesktop.org/tegra/linux.git
5294 S:      Supported
5295 F:      drivers/gpu/drm/tegra/
5296 F:      drivers/gpu/host1x/
5297 F:      include/linux/host1x.h
5298 F:      include/uapi/drm/tegra_drm.h
5299 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
5300
5301 DRM DRIVERS FOR RENESAS
5302 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5303 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
5304 L:      dri-devel@lists.freedesktop.org
5305 L:      linux-renesas-soc@vger.kernel.org
5306 T:      git git://linuxtv.org/pinchartl/media drm/du/next
5307 S:      Supported
5308 F:      drivers/gpu/drm/rcar-du/
5309 F:      drivers/gpu/drm/shmobile/
5310 F:      include/linux/platform_data/shmob_drm.h
5311 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
5312 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
5313 F:      Documentation/devicetree/bindings/display/renesas,du.txt
5314
5315 DRM DRIVERS FOR ROCKCHIP
5316 M:      Sandy Huang <hjc@rock-chips.com>
5317 M:      Heiko Stübner <heiko@sntech.de>
5318 L:      dri-devel@lists.freedesktop.org
5319 S:      Maintained
5320 F:      drivers/gpu/drm/rockchip/
5321 F:      Documentation/devicetree/bindings/display/rockchip/
5322 T:      git git://anongit.freedesktop.org/drm/drm-misc
5323
5324 DRM DRIVERS FOR STI
5325 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5326 M:      Vincent Abriou <vincent.abriou@st.com>
5327 L:      dri-devel@lists.freedesktop.org
5328 T:      git git://anongit.freedesktop.org/drm/drm-misc
5329 S:      Maintained
5330 F:      drivers/gpu/drm/sti
5331 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
5332
5333 DRM DRIVERS FOR STM
5334 M:      Yannick Fertre <yannick.fertre@st.com>
5335 M:      Philippe Cornu <philippe.cornu@st.com>
5336 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5337 M:      Vincent Abriou <vincent.abriou@st.com>
5338 L:      dri-devel@lists.freedesktop.org
5339 T:      git git://anongit.freedesktop.org/drm/drm-misc
5340 S:      Maintained
5341 F:      drivers/gpu/drm/stm
5342 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
5343
5344 DRM DRIVERS FOR TI LCDC
5345 M:      Jyri Sarha <jsarha@ti.com>
5346 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5347 L:      dri-devel@lists.freedesktop.org
5348 S:      Maintained
5349 F:      drivers/gpu/drm/tilcdc/
5350 F:      Documentation/devicetree/bindings/display/tilcdc/
5351
5352 DRM DRIVERS FOR TI OMAP
5353 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5354 L:      dri-devel@lists.freedesktop.org
5355 S:      Maintained
5356 F:      drivers/gpu/drm/omapdrm/
5357 F:      Documentation/devicetree/bindings/display/ti/
5358
5359 DRM DRIVERS FOR V3D
5360 M:      Eric Anholt <eric@anholt.net>
5361 S:      Supported
5362 F:      drivers/gpu/drm/v3d/
5363 F:      include/uapi/drm/v3d_drm.h
5364 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.txt
5365 T:      git git://anongit.freedesktop.org/drm/drm-misc
5366
5367 DRM DRIVERS FOR VC4
5368 M:      Eric Anholt <eric@anholt.net>
5369 T:      git git://github.com/anholt/linux
5370 S:      Supported
5371 F:      drivers/gpu/drm/vc4/
5372 F:      include/uapi/drm/vc4_drm.h
5373 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
5374 T:      git git://anongit.freedesktop.org/drm/drm-misc
5375
5376 DRM DRIVERS FOR VIVANTE GPU IP
5377 M:      Lucas Stach <l.stach@pengutronix.de>
5378 R:      Russell King <linux+etnaviv@armlinux.org.uk>
5379 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
5380 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
5381 L:      dri-devel@lists.freedesktop.org
5382 S:      Maintained
5383 F:      drivers/gpu/drm/etnaviv/
5384 F:      include/uapi/drm/etnaviv_drm.h
5385 F:      Documentation/devicetree/bindings/display/etnaviv/
5386
5387 DRM DRIVERS FOR ZTE ZX
5388 M:      Shawn Guo <shawnguo@kernel.org>
5389 L:      dri-devel@lists.freedesktop.org
5390 S:      Maintained
5391 F:      drivers/gpu/drm/zte/
5392 F:      Documentation/devicetree/bindings/display/zte,vou.txt
5393 T:      git git://anongit.freedesktop.org/drm/drm-misc
5394
5395 DRM PANEL DRIVERS
5396 M:      Thierry Reding <thierry.reding@gmail.com>
5397 L:      dri-devel@lists.freedesktop.org
5398 T:      git git://anongit.freedesktop.org/drm/drm-misc
5399 S:      Maintained
5400 F:      drivers/gpu/drm/drm_panel.c
5401 F:      drivers/gpu/drm/panel/
5402 F:      include/drm/drm_panel.h
5403 F:      Documentation/devicetree/bindings/display/panel/
5404
5405 DRM TINYDRM DRIVERS
5406 M:      Noralf Trønnes <noralf@tronnes.org>
5407 W:      https://github.com/notro/tinydrm/wiki/Development
5408 T:      git git://anongit.freedesktop.org/drm/drm-misc
5409 S:      Maintained
5410 F:      drivers/gpu/drm/tinydrm/
5411 F:      include/drm/tinydrm/
5412
5413 DRM DRIVERS FOR XEN
5414 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
5415 T:      git git://anongit.freedesktop.org/drm/drm-misc
5416 L:      dri-devel@lists.freedesktop.org
5417 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
5418 S:      Supported
5419 F:      drivers/gpu/drm/xen/
5420 F:      Documentation/gpu/xen-front.rst
5421
5422 DRM TTM SUBSYSTEM
5423 M:      Christian Koenig <christian.koenig@amd.com>
5424 M:      Huang Rui <ray.huang@amd.com>
5425 M:      Junwei Zhang <Jerry.Zhang@amd.com>
5426 T:      git git://people.freedesktop.org/~agd5f/linux
5427 S:      Maintained
5428 L:      dri-devel@lists.freedesktop.org
5429 F:      include/drm/ttm/
5430 F:      drivers/gpu/drm/ttm/
5431
5432 DSBR100 USB FM RADIO DRIVER
5433 M:      Alexey Klimov <klimov.linux@gmail.com>
5434 L:      linux-media@vger.kernel.org
5435 T:      git git://linuxtv.org/media_tree.git
5436 S:      Maintained
5437 F:      drivers/media/radio/dsbr100.c
5438
5439 DSCC4 DRIVER
5440 M:      Francois Romieu <romieu@fr.zoreil.com>
5441 L:      netdev@vger.kernel.org
5442 S:      Maintained
5443 F:      drivers/net/wan/dscc4.c
5444
5445 DT3155 MEDIA DRIVER
5446 M:      Hans Verkuil <hverkuil@xs4all.nl>
5447 L:      linux-media@vger.kernel.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 W:      https://linuxtv.org
5450 S:      Odd Fixes
5451 F:      drivers/media/pci/dt3155/
5452
5453 DVB_USB_AF9015 MEDIA DRIVER
5454 M:      Antti Palosaari <crope@iki.fi>
5455 L:      linux-media@vger.kernel.org
5456 W:      https://linuxtv.org
5457 W:      http://palosaari.fi/linux/
5458 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5459 T:      git git://linuxtv.org/anttip/media_tree.git
5460 S:      Maintained
5461 F:      drivers/media/usb/dvb-usb-v2/af9015*
5462
5463 DVB_USB_AF9035 MEDIA DRIVER
5464 M:      Antti Palosaari <crope@iki.fi>
5465 L:      linux-media@vger.kernel.org
5466 W:      https://linuxtv.org
5467 W:      http://palosaari.fi/linux/
5468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5469 T:      git git://linuxtv.org/anttip/media_tree.git
5470 S:      Maintained
5471 F:      drivers/media/usb/dvb-usb-v2/af9035*
5472
5473 DVB_USB_ANYSEE MEDIA DRIVER
5474 M:      Antti Palosaari <crope@iki.fi>
5475 L:      linux-media@vger.kernel.org
5476 W:      https://linuxtv.org
5477 W:      http://palosaari.fi/linux/
5478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5479 T:      git git://linuxtv.org/anttip/media_tree.git
5480 S:      Maintained
5481 F:      drivers/media/usb/dvb-usb-v2/anysee*
5482
5483 DVB_USB_AU6610 MEDIA DRIVER
5484 M:      Antti Palosaari <crope@iki.fi>
5485 L:      linux-media@vger.kernel.org
5486 W:      https://linuxtv.org
5487 W:      http://palosaari.fi/linux/
5488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5489 T:      git git://linuxtv.org/anttip/media_tree.git
5490 S:      Maintained
5491 F:      drivers/media/usb/dvb-usb-v2/au6610*
5492
5493 DVB_USB_CE6230 MEDIA DRIVER
5494 M:      Antti Palosaari <crope@iki.fi>
5495 L:      linux-media@vger.kernel.org
5496 W:      https://linuxtv.org
5497 W:      http://palosaari.fi/linux/
5498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5499 T:      git git://linuxtv.org/anttip/media_tree.git
5500 S:      Maintained
5501 F:      drivers/media/usb/dvb-usb-v2/ce6230*
5502
5503 DVB_USB_CXUSB MEDIA DRIVER
5504 M:      Michael Krufky <mkrufky@linuxtv.org>
5505 L:      linux-media@vger.kernel.org
5506 W:      https://linuxtv.org
5507 W:      http://github.com/mkrufky
5508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5509 T:      git git://linuxtv.org/media_tree.git
5510 S:      Maintained
5511 F:      drivers/media/usb/dvb-usb/cxusb*
5512
5513 DVB_USB_EC168 MEDIA DRIVER
5514 M:      Antti Palosaari <crope@iki.fi>
5515 L:      linux-media@vger.kernel.org
5516 W:      https://linuxtv.org
5517 W:      http://palosaari.fi/linux/
5518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5519 T:      git git://linuxtv.org/anttip/media_tree.git
5520 S:      Maintained
5521 F:      drivers/media/usb/dvb-usb-v2/ec168*
5522
5523 DVB_USB_GL861 MEDIA DRIVER
5524 M:      Antti Palosaari <crope@iki.fi>
5525 L:      linux-media@vger.kernel.org
5526 W:      https://linuxtv.org
5527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5528 T:      git git://linuxtv.org/anttip/media_tree.git
5529 S:      Maintained
5530 F:      drivers/media/usb/dvb-usb-v2/gl861*
5531
5532 DVB_USB_MXL111SF MEDIA DRIVER
5533 M:      Michael Krufky <mkrufky@linuxtv.org>
5534 L:      linux-media@vger.kernel.org
5535 W:      https://linuxtv.org
5536 W:      http://github.com/mkrufky
5537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5538 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
5539 S:      Maintained
5540 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
5541
5542 DVB_USB_RTL28XXU MEDIA DRIVER
5543 M:      Antti Palosaari <crope@iki.fi>
5544 L:      linux-media@vger.kernel.org
5545 W:      https://linuxtv.org
5546 W:      http://palosaari.fi/linux/
5547 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5548 T:      git git://linuxtv.org/anttip/media_tree.git
5549 S:      Maintained
5550 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
5551
5552 DVB_USB_V2 MEDIA DRIVER
5553 M:      Antti Palosaari <crope@iki.fi>
5554 L:      linux-media@vger.kernel.org
5555 W:      https://linuxtv.org
5556 W:      http://palosaari.fi/linux/
5557 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5558 T:      git git://linuxtv.org/anttip/media_tree.git
5559 S:      Maintained
5560 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
5561 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
5562
5563 DYNAMIC DEBUG
5564 M:      Jason Baron <jbaron@akamai.com>
5565 S:      Maintained
5566 F:      lib/dynamic_debug.c
5567 F:      include/linux/dynamic_debug.h
5568
5569 DYNAMIC INTERRUPT MODERATION
5570 M:      Tal Gilboa <talgi@mellanox.com>
5571 S:      Maintained
5572 F:      include/linux/net_dim.h
5573
5574 DZ DECSTATION DZ11 SERIAL DRIVER
5575 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
5576 S:      Maintained
5577 F:      drivers/tty/serial/dz.*
5578
5579 E3X0 POWER BUTTON DRIVER
5580 M:      Moritz Fischer <moritz.fischer@ettus.com>
5581 L:      usrp-users@lists.ettus.com
5582 W:      http://www.ettus.com
5583 S:      Supported
5584 F:      drivers/input/misc/e3x0-button.c
5585 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
5586
5587 E4000 MEDIA DRIVER
5588 M:      Antti Palosaari <crope@iki.fi>
5589 L:      linux-media@vger.kernel.org
5590 W:      https://linuxtv.org
5591 W:      http://palosaari.fi/linux/
5592 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5593 T:      git git://linuxtv.org/anttip/media_tree.git
5594 S:      Maintained
5595 F:      drivers/media/tuners/e4000*
5596
5597 EARTH_PT1 MEDIA DRIVER
5598 M:      Akihiro Tsukada <tskd08@gmail.com>
5599 L:      linux-media@vger.kernel.org
5600 S:      Odd Fixes
5601 F:      drivers/media/pci/pt1/
5602
5603 EARTH_PT3 MEDIA DRIVER
5604 M:      Akihiro Tsukada <tskd08@gmail.com>
5605 L:      linux-media@vger.kernel.org
5606 S:      Odd Fixes
5607 F:      drivers/media/pci/pt3/
5608
5609 EC100 MEDIA DRIVER
5610 M:      Antti Palosaari <crope@iki.fi>
5611 L:      linux-media@vger.kernel.org
5612 W:      https://linuxtv.org
5613 W:      http://palosaari.fi/linux/
5614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5615 T:      git git://linuxtv.org/anttip/media_tree.git
5616 S:      Maintained
5617 F:      drivers/media/dvb-frontends/ec100*
5618
5619 ECRYPT FILE SYSTEM
5620 M:      Tyler Hicks <tyhicks@canonical.com>
5621 L:      ecryptfs@vger.kernel.org
5622 W:      http://ecryptfs.org
5623 W:      https://launchpad.net/ecryptfs
5624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5625 S:      Supported
5626 F:      Documentation/filesystems/ecryptfs.txt
5627 F:      fs/ecryptfs/
5628
5629 EDAC-AMD64
5630 M:      Borislav Petkov <bp@alien8.de>
5631 L:      linux-edac@vger.kernel.org
5632 S:      Maintained
5633 F:      drivers/edac/amd64_edac*
5634
5635 EDAC-AST2500
5636 M:      Stefan Schaeckeler <sschaeck@cisco.com>
5637 S:      Supported
5638 F:      drivers/edac/aspeed_edac.c
5639 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
5640
5641 EDAC-CALXEDA
5642 M:      Robert Richter <rric@kernel.org>
5643 L:      linux-edac@vger.kernel.org
5644 S:      Maintained
5645 F:      drivers/edac/highbank*
5646
5647 EDAC-CAVIUM OCTEON
5648 M:      Ralf Baechle <ralf@linux-mips.org>
5649 M:      David Daney <david.daney@cavium.com>
5650 L:      linux-edac@vger.kernel.org
5651 L:      linux-mips@vger.kernel.org
5652 S:      Supported
5653 F:      drivers/edac/octeon_edac*
5654
5655 EDAC-CAVIUM THUNDERX
5656 M:      David Daney <david.daney@cavium.com>
5657 M:      Jan Glauber <jglauber@cavium.com>
5658 L:      linux-edac@vger.kernel.org
5659 S:      Supported
5660 F:      drivers/edac/thunderx_edac*
5661
5662 EDAC-CORE
5663 M:      Borislav Petkov <bp@alien8.de>
5664 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5665 R:      James Morse <james.morse@arm.com>
5666 L:      linux-edac@vger.kernel.org
5667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5669 S:      Supported
5670 F:      Documentation/admin-guide/ras.rst
5671 F:      Documentation/driver-api/edac.rst
5672 F:      drivers/edac/
5673 F:      include/linux/edac.h
5674
5675 EDAC-E752X
5676 M:      Mark Gross <mark.gross@intel.com>
5677 L:      linux-edac@vger.kernel.org
5678 S:      Maintained
5679 F:      drivers/edac/e752x_edac.c
5680
5681 EDAC-E7XXX
5682 L:      linux-edac@vger.kernel.org
5683 S:      Maintained
5684 F:      drivers/edac/e7xxx_edac.c
5685
5686 EDAC-FSL_DDR
5687 M:      York Sun <york.sun@nxp.com>
5688 L:      linux-edac@vger.kernel.org
5689 S:      Maintained
5690 F:      drivers/edac/fsl_ddr_edac.*
5691
5692 EDAC-GHES
5693 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5694 L:      linux-edac@vger.kernel.org
5695 S:      Maintained
5696 F:      drivers/edac/ghes_edac.c
5697
5698 EDAC-I10NM
5699 M:      Tony Luck <tony.luck@intel.com>
5700 L:      linux-edac@vger.kernel.org
5701 S:      Maintained
5702 F:      drivers/edac/i10nm_base.c
5703
5704 EDAC-I3000
5705 L:      linux-edac@vger.kernel.org
5706 S:      Orphan
5707 F:      drivers/edac/i3000_edac.c
5708
5709 EDAC-I5000
5710 L:      linux-edac@vger.kernel.org
5711 S:      Maintained
5712 F:      drivers/edac/i5000_edac.c
5713
5714 EDAC-I5400
5715 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5716 L:      linux-edac@vger.kernel.org
5717 S:      Maintained
5718 F:      drivers/edac/i5400_edac.c
5719
5720 EDAC-I7300
5721 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5722 L:      linux-edac@vger.kernel.org
5723 S:      Maintained
5724 F:      drivers/edac/i7300_edac.c
5725
5726 EDAC-I7CORE
5727 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5728 L:      linux-edac@vger.kernel.org
5729 S:      Maintained
5730 F:      drivers/edac/i7core_edac.c
5731
5732 EDAC-I82443BXGX
5733 M:      Tim Small <tim@buttersideup.com>
5734 L:      linux-edac@vger.kernel.org
5735 S:      Maintained
5736 F:      drivers/edac/i82443bxgx_edac.c
5737
5738 EDAC-I82975X
5739 M:      "Arvind R." <arvino55@gmail.com>
5740 L:      linux-edac@vger.kernel.org
5741 S:      Maintained
5742 F:      drivers/edac/i82975x_edac.c
5743
5744 EDAC-IE31200
5745 M:      Jason Baron <jbaron@akamai.com>
5746 L:      linux-edac@vger.kernel.org
5747 S:      Maintained
5748 F:      drivers/edac/ie31200_edac.c
5749
5750 EDAC-MPC85XX
5751 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5752 L:      linux-edac@vger.kernel.org
5753 S:      Maintained
5754 F:      drivers/edac/mpc85xx_edac.[ch]
5755
5756 EDAC-PASEMI
5757 M:      Egor Martovetsky <egor@pasemi.com>
5758 L:      linux-edac@vger.kernel.org
5759 S:      Maintained
5760 F:      drivers/edac/pasemi_edac.c
5761
5762 EDAC-PND2
5763 M:      Tony Luck <tony.luck@intel.com>
5764 L:      linux-edac@vger.kernel.org
5765 S:      Maintained
5766 F:      drivers/edac/pnd2_edac.[ch]
5767
5768 EDAC-R82600
5769 M:      Tim Small <tim@buttersideup.com>
5770 L:      linux-edac@vger.kernel.org
5771 S:      Maintained
5772 F:      drivers/edac/r82600_edac.c
5773
5774 EDAC-SBRIDGE
5775 M:      Tony Luck <tony.luck@intel.com>
5776 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
5777 L:      linux-edac@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/edac/sb_edac.c
5780
5781 EDAC-SKYLAKE
5782 M:      Tony Luck <tony.luck@intel.com>
5783 L:      linux-edac@vger.kernel.org
5784 S:      Maintained
5785 F:      drivers/edac/skx_*.c
5786
5787 EDAC-TI
5788 M:      Tero Kristo <t-kristo@ti.com>
5789 L:      linux-edac@vger.kernel.org
5790 S:      Maintained
5791 F:      drivers/edac/ti_edac.c
5792
5793 EDAC-QCOM
5794 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
5795 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
5796 L:      linux-arm-msm@vger.kernel.org
5797 L:      linux-edac@vger.kernel.org
5798 S:      Maintained
5799 F:      drivers/edac/qcom_edac.c
5800
5801 EDIROL UA-101/UA-1000 DRIVER
5802 M:      Clemens Ladisch <clemens@ladisch.de>
5803 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
5805 S:      Maintained
5806 F:      sound/usb/misc/ua101.c
5807
5808 EFI TEST DRIVER
5809 L:      linux-efi@vger.kernel.org
5810 M:      Ivan Hu <ivan.hu@canonical.com>
5811 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5812 S:      Maintained
5813 F:      drivers/firmware/efi/test/
5814
5815 EFI VARIABLE FILESYSTEM
5816 M:      Matthew Garrett <matthew.garrett@nebula.com>
5817 M:      Jeremy Kerr <jk@ozlabs.org>
5818 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5820 L:      linux-efi@vger.kernel.org
5821 S:      Maintained
5822 F:      fs/efivarfs/
5823
5824 EFIFB FRAMEBUFFER DRIVER
5825 L:      linux-fbdev@vger.kernel.org
5826 M:      Peter Jones <pjones@redhat.com>
5827 S:      Maintained
5828 F:      drivers/video/fbdev/efifb.c
5829
5830 EFS FILESYSTEM
5831 W:      http://aeschi.ch.eu.org/efs/
5832 S:      Orphan
5833 F:      fs/efs/
5834
5835 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5836 M:      Douglas Miller <dougmill@linux.ibm.com>
5837 L:      netdev@vger.kernel.org
5838 S:      Maintained
5839 F:      drivers/net/ethernet/ibm/ehea/
5840
5841 EM28XX VIDEO4LINUX DRIVER
5842 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5843 L:      linux-media@vger.kernel.org
5844 W:      https://linuxtv.org
5845 T:      git git://linuxtv.org/media_tree.git
5846 S:      Maintained
5847 F:      drivers/media/usb/em28xx/
5848 F:      Documentation/media/v4l-drivers/em28xx*
5849
5850 EMBEDDED LINUX
5851 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5852 M:      Matt Mackall <mpm@selenic.com>
5853 M:      David Woodhouse <dwmw2@infradead.org>
5854 L:      linux-embedded@vger.kernel.org
5855 S:      Maintained
5856
5857 Emulex 10Gbps iSCSI - OneConnect DRIVER
5858 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5859 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5860 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5861 L:      linux-scsi@vger.kernel.org
5862 W:      http://www.broadcom.com
5863 S:      Supported
5864 F:      drivers/scsi/be2iscsi/
5865
5866 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5867 M:      Sathya Perla <sathya.perla@broadcom.com>
5868 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5869 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5870 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5871 L:      netdev@vger.kernel.org
5872 W:      http://www.emulex.com
5873 S:      Supported
5874 F:      drivers/net/ethernet/emulex/benet/
5875
5876 EMULEX ONECONNECT ROCE DRIVER
5877 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5878 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5879 L:      linux-rdma@vger.kernel.org
5880 W:      http://www.broadcom.com
5881 S:      Odd Fixes
5882 F:      drivers/infiniband/hw/ocrdma/
5883 F:      include/uapi/rdma/ocrdma-abi.h
5884
5885 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5886 M:      James Smart <james.smart@broadcom.com>
5887 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5888 L:      linux-scsi@vger.kernel.org
5889 W:      http://www.broadcom.com
5890 S:      Supported
5891 F:      drivers/scsi/lpfc/
5892
5893 ENE CB710 FLASH CARD READER DRIVER
5894 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5895 S:      Maintained
5896 F:      drivers/misc/cb710/
5897 F:      drivers/mmc/host/cb710-mmc.*
5898 F:      include/linux/cb710.h
5899
5900 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5901 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5902 S:      Maintained
5903 F:      drivers/media/rc/ene_ir.*
5904
5905 EPSON S1D13XXX FRAMEBUFFER DRIVER
5906 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5907 S:      Maintained
5908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5909 F:      drivers/video/fbdev/s1d13xxxfb.c
5910 F:      include/video/s1d13xxxfb.h
5911
5912 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5913 M:      Jeff Layton <jlayton@kernel.org>
5914 S:      Maintained
5915 F:      lib/errseq.c
5916 F:      include/linux/errseq.h
5917
5918 ET131X NETWORK DRIVER
5919 M:      Mark Einon <mark.einon@gmail.com>
5920 S:      Odd Fixes
5921 F:      drivers/net/ethernet/agere/
5922
5923 ETHERNET BRIDGE
5924 M:      Roopa Prabhu <roopa@cumulusnetworks.com>
5925 M:      Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
5926 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5927 L:      netdev@vger.kernel.org
5928 W:      http://www.linuxfoundation.org/en/Net:Bridge
5929 S:      Maintained
5930 F:      include/linux/netfilter_bridge/
5931 F:      net/bridge/
5932
5933 ETHERNET PHY LIBRARY
5934 M:      Andrew Lunn <andrew@lunn.ch>
5935 M:      Florian Fainelli <f.fainelli@gmail.com>
5936 M:      Heiner Kallweit <hkallweit1@gmail.com>
5937 L:      netdev@vger.kernel.org
5938 S:      Maintained
5939 F:      Documentation/ABI/testing/sysfs-bus-mdio
5940 F:      Documentation/devicetree/bindings/net/mdio*
5941 F:      Documentation/networking/phy.rst
5942 F:      drivers/net/phy/
5943 F:      drivers/of/of_mdio.c
5944 F:      drivers/of/of_net.c
5945 F:      include/linux/*mdio*.h
5946 F:      include/linux/of_net.h
5947 F:      include/linux/phy.h
5948 F:      include/linux/phy_fixed.h
5949 F:      include/linux/platform_data/mdio-bcm-unimac.h
5950 F:      include/linux/platform_data/mdio-gpio.h
5951 F:      include/trace/events/mdio.h
5952 F:      include/uapi/linux/mdio.h
5953 F:      include/uapi/linux/mii.h
5954
5955 EXT2 FILE SYSTEM
5956 M:      Jan Kara <jack@suse.com>
5957 L:      linux-ext4@vger.kernel.org
5958 S:      Maintained
5959 F:      Documentation/filesystems/ext2.txt
5960 F:      fs/ext2/
5961 F:      include/linux/ext2*
5962
5963 EXT4 FILE SYSTEM
5964 M:      "Theodore Ts'o" <tytso@mit.edu>
5965 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5966 L:      linux-ext4@vger.kernel.org
5967 W:      http://ext4.wiki.kernel.org
5968 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5970 S:      Maintained
5971 F:      Documentation/filesystems/ext4/
5972 F:      fs/ext4/
5973
5974 Extended Verification Module (EVM)
5975 M:      Mimi Zohar <zohar@linux.ibm.com>
5976 L:      linux-integrity@vger.kernel.org
5977 S:      Supported
5978 F:      security/integrity/evm/
5979
5980 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5981 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5982 L:      linux-efi@vger.kernel.org
5983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5984 S:      Maintained
5985 F:      Documentation/efi-stub.txt
5986 F:      arch/*/kernel/efi.c
5987 F:      arch/x86/boot/compressed/eboot.[ch]
5988 F:      arch/*/include/asm/efi.h
5989 F:      arch/x86/platform/efi/
5990 F:      drivers/firmware/efi/
5991 F:      include/linux/efi*.h
5992 F:      arch/arm/boot/compressed/efi-header.S
5993 F:      arch/arm64/kernel/efi-entry.S
5994
5995 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5996 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5997 M:      Chanwoo Choi <cw00.choi@samsung.com>
5998 L:      linux-kernel@vger.kernel.org
5999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
6000 S:      Maintained
6001 F:      drivers/extcon/
6002 F:      include/linux/extcon/
6003 F:      include/linux/extcon.h
6004 F:      Documentation/extcon/
6005 F:      Documentation/devicetree/bindings/extcon/
6006
6007 EXYNOS DP DRIVER
6008 M:      Jingoo Han <jingoohan1@gmail.com>
6009 L:      dri-devel@lists.freedesktop.org
6010 S:      Maintained
6011 F:      drivers/gpu/drm/exynos/exynos_dp*
6012
6013 EXYNOS SYSMMU (IOMMU) driver
6014 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6015 L:      iommu@lists.linux-foundation.org
6016 S:      Maintained
6017 F:      drivers/iommu/exynos-iommu.c
6018
6019 EZchip NPS platform support
6020 M:      Vineet Gupta <vgupta@synopsys.com>
6021 M:      Ofer Levi <oferle@mellanox.com>
6022 S:      Supported
6023 F:      arch/arc/plat-eznps
6024 F:      arch/arc/boot/dts/eznps.dts
6025
6026 F2FS FILE SYSTEM
6027 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6028 M:      Chao Yu <yuchao0@huawei.com>
6029 L:      linux-f2fs-devel@lists.sourceforge.net
6030 W:      https://f2fs.wiki.kernel.org/
6031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
6032 S:      Maintained
6033 F:      Documentation/filesystems/f2fs.txt
6034 F:      Documentation/ABI/testing/sysfs-fs-f2fs
6035 F:      fs/f2fs/
6036 F:      include/linux/f2fs_fs.h
6037 F:      include/trace/events/f2fs.h
6038
6039 F71805F HARDWARE MONITORING DRIVER
6040 M:      Jean Delvare <jdelvare@suse.com>
6041 L:      linux-hwmon@vger.kernel.org
6042 S:      Maintained
6043 F:      Documentation/hwmon/f71805f.rst
6044 F:      drivers/hwmon/f71805f.c
6045
6046 FADDR2LINE
6047 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6048 S:      Maintained
6049 F:      scripts/faddr2line
6050
6051 FAILOVER MODULE
6052 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
6053 L:      netdev@vger.kernel.org
6054 S:      Supported
6055 F:      net/core/failover.c
6056 F:      include/net/failover.h
6057 F:      Documentation/networking/failover.rst
6058
6059 FANOTIFY
6060 M:      Jan Kara <jack@suse.cz>
6061 R:      Amir Goldstein <amir73il@gmail.com>
6062 L:      linux-fsdevel@vger.kernel.org
6063 S:      Maintained
6064 F:      fs/notify/fanotify/
6065 F:      include/linux/fanotify.h
6066 F:      include/uapi/linux/fanotify.h
6067
6068 FARSYNC SYNCHRONOUS DRIVER
6069 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
6070 W:      http://www.farsite.co.uk/
6071 S:      Supported
6072 F:      drivers/net/wan/farsync.*
6073
6074 FAULT INJECTION SUPPORT
6075 M:      Akinobu Mita <akinobu.mita@gmail.com>
6076 S:      Supported
6077 F:      Documentation/fault-injection/
6078 F:      lib/fault-inject.c
6079
6080 FBTFT Framebuffer drivers
6081 S:      Orphan
6082 L:      dri-devel@lists.freedesktop.org
6083 L:      linux-fbdev@vger.kernel.org
6084 F:      drivers/staging/fbtft/
6085
6086 FC0011 TUNER DRIVER
6087 M:      Michael Buesch <m@bues.ch>
6088 L:      linux-media@vger.kernel.org
6089 S:      Maintained
6090 F:      drivers/media/tuners/fc0011.h
6091 F:      drivers/media/tuners/fc0011.c
6092
6093 FC2580 MEDIA DRIVER
6094 M:      Antti Palosaari <crope@iki.fi>
6095 L:      linux-media@vger.kernel.org
6096 W:      https://linuxtv.org
6097 W:      http://palosaari.fi/linux/
6098 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6099 T:      git git://linuxtv.org/anttip/media_tree.git
6100 S:      Maintained
6101 F:      drivers/media/tuners/fc2580*
6102
6103 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
6104 M:      Hannes Reinecke <hare@suse.de>
6105 L:      linux-scsi@vger.kernel.org
6106 W:      www.Open-FCoE.org
6107 S:      Supported
6108 F:      drivers/scsi/libfc/
6109 F:      drivers/scsi/fcoe/
6110 F:      include/scsi/fc/
6111 F:      include/scsi/libfc.h
6112 F:      include/scsi/libfcoe.h
6113 F:      include/uapi/scsi/fc/
6114
6115 FILE LOCKING (flock() and fcntl()/lockf())
6116 M:      Jeff Layton <jlayton@kernel.org>
6117 M:      "J. Bruce Fields" <bfields@fieldses.org>
6118 L:      linux-fsdevel@vger.kernel.org
6119 S:      Maintained
6120 F:      include/linux/fcntl.h
6121 F:      include/uapi/linux/fcntl.h
6122 F:      fs/fcntl.c
6123 F:      fs/locks.c
6124
6125 FILESYSTEMS (VFS and infrastructure)
6126 M:      Alexander Viro <viro@zeniv.linux.org.uk>
6127 L:      linux-fsdevel@vger.kernel.org
6128 S:      Maintained
6129 F:      fs/*
6130 F:      include/linux/fs.h
6131 F:      include/linux/fs_types.h
6132 F:      include/uapi/linux/fs.h
6133
6134 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6135 M:      Riku Voipio <riku.voipio@iki.fi>
6136 L:      linux-hwmon@vger.kernel.org
6137 S:      Maintained
6138 F:      drivers/hwmon/f75375s.c
6139 F:      include/linux/f75375s.h
6140
6141 FIREWIRE AUDIO DRIVERS
6142 M:      Clemens Ladisch <clemens@ladisch.de>
6143 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6145 S:      Maintained
6146 F:      sound/firewire/
6147
6148 FIREWIRE MEDIA DRIVERS (firedtv)
6149 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6150 L:      linux-media@vger.kernel.org
6151 L:      linux1394-devel@lists.sourceforge.net
6152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
6153 S:      Maintained
6154 F:      drivers/media/firewire/
6155
6156 FIREWIRE SBP-2 TARGET
6157 M:      Chris Boot <bootc@bootc.net>
6158 L:      linux-scsi@vger.kernel.org
6159 L:      target-devel@vger.kernel.org
6160 L:      linux1394-devel@lists.sourceforge.net
6161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
6162 S:      Maintained
6163 F:      drivers/target/sbp/
6164
6165 FIREWIRE SUBSYSTEM
6166 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
6167 L:      linux1394-devel@lists.sourceforge.net
6168 W:      http://ieee1394.wiki.kernel.org/
6169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
6170 S:      Maintained
6171 F:      drivers/firewire/
6172 F:      include/linux/firewire.h
6173 F:      include/uapi/linux/firewire*.h
6174 F:      tools/firewire/
6175
6176 FIRMWARE LOADER (request_firmware)
6177 M:      Luis Chamberlain <mcgrof@kernel.org>
6178 L:      linux-kernel@vger.kernel.org
6179 S:      Maintained
6180 F:      Documentation/firmware_class/
6181 F:      drivers/base/firmware_loader/
6182 F:      include/linux/firmware.h
6183
6184 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
6185 M:      Joshua Morris <josh.h.morris@us.ibm.com>
6186 M:      Philip Kelleher <pjk1939@linux.ibm.com>
6187 S:      Maintained
6188 F:      drivers/block/rsxx/
6189
6190 FLOPPY DRIVER
6191 M:      Jiri Kosina <jikos@kernel.org>
6192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
6193 S:      Odd fixes
6194 F:      drivers/block/floppy.c
6195
6196 FMC SUBSYSTEM
6197 M:      Alessandro Rubini <rubini@gnudd.com>
6198 W:      http://www.ohwr.org/projects/fmc-bus
6199 S:      Supported
6200 F:      drivers/fmc/
6201 F:      include/linux/fmc*.h
6202 F:      include/linux/ipmi-fru.h
6203 K:      fmc_d.*register
6204
6205 FPGA MANAGER FRAMEWORK
6206 M:      Alan Tull <atull@kernel.org>
6207 M:      Moritz Fischer <mdf@kernel.org>
6208 L:      linux-fpga@vger.kernel.org
6209 S:      Maintained
6210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
6211 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
6212 F:      Documentation/fpga/
6213 F:      Documentation/driver-api/fpga/
6214 F:      Documentation/devicetree/bindings/fpga/
6215 F:      drivers/fpga/
6216 F:      include/linux/fpga/
6217 W:      http://www.rocketboards.org
6218
6219 FPGA DFL DRIVERS
6220 M:      Wu Hao <hao.wu@intel.com>
6221 L:      linux-fpga@vger.kernel.org
6222 S:      Maintained
6223 F:      Documentation/fpga/dfl.txt
6224 F:      include/uapi/linux/fpga-dfl.h
6225 F:      drivers/fpga/dfl*
6226
6227 FPU EMULATOR
6228 M:      Bill Metzenthen <billm@melbpc.org.au>
6229 W:      http://floatingpoint.sourceforge.net/emulator/index.html
6230 S:      Maintained
6231 F:      arch/x86/math-emu/
6232
6233 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
6234 L:      netdev@vger.kernel.org
6235 S:      Orphan
6236 F:      drivers/net/wan/dlci.c
6237 F:      drivers/net/wan/sdla.c
6238
6239 FRAMEBUFFER LAYER
6240 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6241 L:      dri-devel@lists.freedesktop.org
6242 L:      linux-fbdev@vger.kernel.org
6243 T:      git git://github.com/bzolnier/linux.git
6244 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
6245 S:      Maintained
6246 F:      Documentation/fb/
6247 F:      drivers/video/
6248 F:      include/video/
6249 F:      include/linux/fb.h
6250 F:      include/uapi/video/
6251 F:      include/uapi/linux/fb.h
6252
6253 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
6254 M:      Horia Geantă <horia.geanta@nxp.com>
6255 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
6256 L:      linux-crypto@vger.kernel.org
6257 S:      Maintained
6258 F:      drivers/crypto/caam/
6259 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
6260
6261 FREESCALE DIU FRAMEBUFFER DRIVER
6262 M:      Timur Tabi <timur@kernel.org>
6263 L:      linux-fbdev@vger.kernel.org
6264 S:      Maintained
6265 F:      drivers/video/fbdev/fsl-diu-fb.*
6266
6267 FREESCALE DMA DRIVER
6268 M:      Li Yang <leoyang.li@nxp.com>
6269 M:      Zhang Wei <zw@zh-kernel.org>
6270 L:      linuxppc-dev@lists.ozlabs.org
6271 S:      Maintained
6272 F:      drivers/dma/fsldma.*
6273
6274 FREESCALE ENETC ETHERNET DRIVERS
6275 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6276 L:      netdev@vger.kernel.org
6277 S:      Maintained
6278 F:      drivers/net/ethernet/freescale/enetc/
6279
6280 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
6281 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
6282 L:      netdev@vger.kernel.org
6283 S:      Maintained
6284 F:      drivers/net/ethernet/freescale/gianfar*
6285 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
6286
6287 FREESCALE GPMI NAND DRIVER
6288 M:      Han Xu <han.xu@nxp.com>
6289 L:      linux-mtd@lists.infradead.org
6290 S:      Maintained
6291 F:      drivers/mtd/nand/raw/gpmi-nand/*
6292
6293 FREESCALE I2C CPM DRIVER
6294 M:      Jochen Friedrich <jochen@scram.de>
6295 L:      linuxppc-dev@lists.ozlabs.org
6296 L:      linux-i2c@vger.kernel.org
6297 S:      Maintained
6298 F:      drivers/i2c/busses/i2c-cpm.c
6299
6300 FREESCALE IMX LPI2C DRIVER
6301 M:      Dong Aisheng <aisheng.dong@nxp.com>
6302 L:      linux-i2c@vger.kernel.org
6303 L:      linux-imx@nxp.com
6304 S:      Maintained
6305 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
6306 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.txt
6307
6308 FREESCALE IMX / MXC FEC DRIVER
6309 M:      Fugang Duan <fugang.duan@nxp.com>
6310 L:      netdev@vger.kernel.org
6311 S:      Maintained
6312 F:      drivers/net/ethernet/freescale/fec_main.c
6313 F:      drivers/net/ethernet/freescale/fec_ptp.c
6314 F:      drivers/net/ethernet/freescale/fec.h
6315 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
6316
6317 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
6318 M:      Sascha Hauer <s.hauer@pengutronix.de>
6319 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
6320 L:      linux-fbdev@vger.kernel.org
6321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6322 S:      Maintained
6323 F:      include/linux/platform_data/video-imxfb.h
6324 F:      drivers/video/fbdev/imxfb.c
6325
6326 FREESCALE QORIQ DPAA ETHERNET DRIVER
6327 M:      Madalin Bucur <madalin.bucur@nxp.com>
6328 L:      netdev@vger.kernel.org
6329 S:      Maintained
6330 F:      drivers/net/ethernet/freescale/dpaa
6331
6332 FREESCALE QORIQ DPAA FMAN DRIVER
6333 M:      Madalin Bucur <madalin.bucur@nxp.com>
6334 L:      netdev@vger.kernel.org
6335 S:      Maintained
6336 F:      drivers/net/ethernet/freescale/fman
6337 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
6338
6339 FREESCALE QORIQ PTP CLOCK DRIVER
6340 M:      Yangbo Lu <yangbo.lu@nxp.com>
6341 L:      netdev@vger.kernel.org
6342 S:      Maintained
6343 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
6344 F:      drivers/ptp/ptp_qoriq.c
6345 F:      drivers/ptp/ptp_qoriq_debugfs.c
6346 F:      include/linux/fsl/ptp_qoriq.h
6347 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
6348
6349 FREESCALE QUAD SPI DRIVER
6350 M:      Han Xu <han.xu@nxp.com>
6351 L:      linux-spi@vger.kernel.org
6352 S:      Maintained
6353 F:      drivers/spi/spi-fsl-qspi.c
6354
6355 FREESCALE QUICC ENGINE LIBRARY
6356 M:      Qiang Zhao <qiang.zhao@nxp.com>
6357 L:      linuxppc-dev@lists.ozlabs.org
6358 S:      Maintained
6359 F:      drivers/soc/fsl/qe/
6360 F:      include/soc/fsl/*qe*.h
6361 F:      include/soc/fsl/*ucc*.h
6362
6363 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
6364 M:      Li Yang <leoyang.li@nxp.com>
6365 L:      netdev@vger.kernel.org
6366 L:      linuxppc-dev@lists.ozlabs.org
6367 S:      Maintained
6368 F:      drivers/net/ethernet/freescale/ucc_geth*
6369
6370 FREESCALE QUICC ENGINE UCC HDLC DRIVER
6371 M:      Zhao Qiang <qiang.zhao@nxp.com>
6372 L:      netdev@vger.kernel.org
6373 L:      linuxppc-dev@lists.ozlabs.org
6374 S:      Maintained
6375 F:      drivers/net/wan/fsl_ucc_hdlc*
6376
6377 FREESCALE QUICC ENGINE UCC UART DRIVER
6378 M:      Timur Tabi <timur@kernel.org>
6379 L:      linuxppc-dev@lists.ozlabs.org
6380 S:      Maintained
6381 F:      drivers/tty/serial/ucc_uart.c
6382
6383 FREESCALE SOC DRIVERS
6384 M:      Li Yang <leoyang.li@nxp.com>
6385 L:      linuxppc-dev@lists.ozlabs.org
6386 L:      linux-arm-kernel@lists.infradead.org
6387 S:      Maintained
6388 F:      Documentation/devicetree/bindings/soc/fsl/
6389 F:      drivers/soc/fsl/
6390 F:      include/linux/fsl/
6391
6392 FREESCALE SOC FS_ENET DRIVER
6393 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
6394 L:      linuxppc-dev@lists.ozlabs.org
6395 L:      netdev@vger.kernel.org
6396 S:      Maintained
6397 F:      drivers/net/ethernet/freescale/fs_enet/
6398 F:      include/linux/fs_enet_pd.h
6399
6400 FREESCALE SOC SOUND DRIVERS
6401 M:      Timur Tabi <timur@kernel.org>
6402 M:      Nicolin Chen <nicoleotsuka@gmail.com>
6403 M:      Xiubo Li <Xiubo.Lee@gmail.com>
6404 R:      Fabio Estevam <festevam@gmail.com>
6405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6406 L:      linuxppc-dev@lists.ozlabs.org
6407 S:      Maintained
6408 F:      sound/soc/fsl/fsl*
6409 F:      sound/soc/fsl/imx*
6410 F:      sound/soc/fsl/mpc8610_hpcd.c
6411
6412 FREESCALE USB PERIPHERAL DRIVERS
6413 M:      Li Yang <leoyang.li@nxp.com>
6414 L:      linux-usb@vger.kernel.org
6415 L:      linuxppc-dev@lists.ozlabs.org
6416 S:      Maintained
6417 F:      drivers/usb/gadget/udc/fsl*
6418
6419 FREEVXFS FILESYSTEM
6420 M:      Christoph Hellwig <hch@infradead.org>
6421 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
6422 S:      Maintained
6423 F:      fs/freevxfs/
6424
6425 FREEZER
6426 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6427 M:      Pavel Machek <pavel@ucw.cz>
6428 L:      linux-pm@vger.kernel.org
6429 S:      Supported
6430 F:      Documentation/power/freezing-of-tasks.txt
6431 F:      include/linux/freezer.h
6432 F:      kernel/freezer.c
6433
6434 FRONTSWAP API
6435 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
6436 L:      linux-kernel@vger.kernel.org
6437 S:      Maintained
6438 F:      mm/frontswap.c
6439 F:      include/linux/frontswap.h
6440
6441 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
6442 M:      David Howells <dhowells@redhat.com>
6443 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
6444 S:      Supported
6445 F:      Documentation/filesystems/caching/
6446 F:      fs/fscache/
6447 F:      include/linux/fscache*.h
6448
6449 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
6450 M:      Theodore Y. Ts'o <tytso@mit.edu>
6451 M:      Jaegeuk Kim <jaegeuk@kernel.org>
6452 M:      Eric Biggers <ebiggers@kernel.org>
6453 L:      linux-fscrypt@vger.kernel.org
6454 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
6455 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
6456 S:      Supported
6457 F:      fs/crypto/
6458 F:      include/linux/fscrypt*.h
6459 F:      Documentation/filesystems/fscrypt.rst
6460
6461 FSI-ATTACHED I2C DRIVER
6462 M:      Eddie James <eajames@linux.ibm.com>
6463 L:      linux-i2c@vger.kernel.org
6464 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
6465 S:      Maintained
6466 F:      drivers/i2c/busses/i2c-fsi.c
6467 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
6468
6469 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
6470 M:      Jan Kara <jack@suse.cz>
6471 R:      Amir Goldstein <amir73il@gmail.com>
6472 L:      linux-fsdevel@vger.kernel.org
6473 S:      Maintained
6474 F:      fs/notify/
6475 F:      include/linux/fsnotify*.h
6476
6477 FUJITSU LAPTOP EXTRAS
6478 M:      Jonathan Woithe <jwoithe@just42.net>
6479 L:      platform-driver-x86@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/platform/x86/fujitsu-laptop.c
6482
6483 FUJITSU M-5MO LS CAMERA ISP DRIVER
6484 M:      Kyungmin Park <kyungmin.park@samsung.com>
6485 M:      Heungjun Kim <riverful.kim@samsung.com>
6486 L:      linux-media@vger.kernel.org
6487 S:      Maintained
6488 F:      drivers/media/i2c/m5mols/
6489 F:      include/media/i2c/m5mols.h
6490
6491 FUJITSU TABLET EXTRAS
6492 M:      Robert Gerlach <khnz@gmx.de>
6493 L:      platform-driver-x86@vger.kernel.org
6494 S:      Maintained
6495 F:      drivers/platform/x86/fujitsu-tablet.c
6496
6497 FUSE: FILESYSTEM IN USERSPACE
6498 M:      Miklos Szeredi <miklos@szeredi.hu>
6499 L:      linux-fsdevel@vger.kernel.org
6500 W:      http://fuse.sourceforge.net/
6501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
6502 S:      Maintained
6503 F:      fs/fuse/
6504 F:      include/uapi/linux/fuse.h
6505 F:      Documentation/filesystems/fuse.txt
6506
6507 FUTEX SUBSYSTEM
6508 M:      Thomas Gleixner <tglx@linutronix.de>
6509 M:      Ingo Molnar <mingo@redhat.com>
6510 R:      Peter Zijlstra <peterz@infradead.org>
6511 R:      Darren Hart <dvhart@infradead.org>
6512 L:      linux-kernel@vger.kernel.org
6513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
6514 S:      Maintained
6515 F:      kernel/futex.c
6516 F:      include/asm-generic/futex.h
6517 F:      include/linux/futex.h
6518 F:      include/uapi/linux/futex.h
6519 F:      tools/testing/selftests/futex/
6520 F:      tools/perf/bench/futex*
6521 F:      Documentation/*futex*
6522
6523 GCC PLUGINS
6524 M:      Kees Cook <keescook@chromium.org>
6525 R:      Emese Revfy <re.emese@gmail.com>
6526 L:      kernel-hardening@lists.openwall.com
6527 S:      Maintained
6528 F:      scripts/gcc-plugins/
6529 F:      scripts/gcc-plugin.sh
6530 F:      scripts/Makefile.gcc-plugins
6531 F:      Documentation/gcc-plugins.txt
6532
6533 GASKET DRIVER FRAMEWORK
6534 M:      Rob Springer <rspringer@google.com>
6535 M:      Todd Poynor <toddpoynor@google.com>
6536 M:      Ben Chan <benchan@chromium.org>
6537 S:      Maintained
6538 F:      drivers/staging/gasket/
6539
6540 GCOV BASED KERNEL PROFILING
6541 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
6542 S:      Maintained
6543 F:      kernel/gcov/
6544 F:      Documentation/dev-tools/gcov.rst
6545
6546 GDB KERNEL DEBUGGING HELPER SCRIPTS
6547 M:      Jan Kiszka <jan.kiszka@siemens.com>
6548 M:      Kieran Bingham <kbingham@kernel.org>
6549 S:      Supported
6550 F:      scripts/gdb/
6551
6552 GDT SCSI DISK ARRAY CONTROLLER DRIVER
6553 M:      Achim Leubner <achim_leubner@adaptec.com>
6554 L:      linux-scsi@vger.kernel.org
6555 W:      http://www.icp-vortex.com/
6556 S:      Supported
6557 F:      drivers/scsi/gdt*
6558
6559 GEMTEK FM RADIO RECEIVER DRIVER
6560 M:      Hans Verkuil <hverkuil@xs4all.nl>
6561 L:      linux-media@vger.kernel.org
6562 T:      git git://linuxtv.org/media_tree.git
6563 W:      https://linuxtv.org
6564 S:      Maintained
6565 F:      drivers/media/radio/radio-gemtek*
6566
6567 GENERIC GPIO I2C DRIVER
6568 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6569 S:      Supported
6570 F:      drivers/i2c/busses/i2c-gpio.c
6571 F:      include/linux/platform_data/i2c-gpio.h
6572
6573 GENERIC GPIO I2C MULTIPLEXER DRIVER
6574 M:      Peter Korsgaard <peter.korsgaard@barco.com>
6575 L:      linux-i2c@vger.kernel.org
6576 S:      Supported
6577 F:      drivers/i2c/muxes/i2c-mux-gpio.c
6578 F:      include/linux/platform_data/i2c-mux-gpio.h
6579 F:      Documentation/i2c/muxes/i2c-mux-gpio
6580
6581 GENERIC HDLC (WAN) DRIVERS
6582 M:      Krzysztof Halasa <khc@pm.waw.pl>
6583 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
6584 S:      Maintained
6585 F:      drivers/net/wan/c101.c
6586 F:      drivers/net/wan/hd6457*
6587 F:      drivers/net/wan/hdlc*
6588 F:      drivers/net/wan/n2.c
6589 F:      drivers/net/wan/pc300too.c
6590 F:      drivers/net/wan/pci200syn.c
6591 F:      drivers/net/wan/wanxl*
6592
6593 GENERIC INCLUDE/ASM HEADER FILES
6594 M:      Arnd Bergmann <arnd@arndb.de>
6595 L:      linux-arch@vger.kernel.org
6596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
6597 S:      Maintained
6598 F:      include/asm-generic/
6599 F:      include/uapi/asm-generic/
6600
6601 GENERIC PHY FRAMEWORK
6602 M:      Kishon Vijay Abraham I <kishon@ti.com>
6603 L:      linux-kernel@vger.kernel.org
6604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
6605 S:      Supported
6606 F:      drivers/phy/
6607 F:      include/linux/phy/
6608 F:      Documentation/devicetree/bindings/phy/
6609
6610 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
6611 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
6612 S:      Supported
6613 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
6614
6615 GENERIC PM DOMAINS
6616 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6617 M:      Kevin Hilman <khilman@kernel.org>
6618 M:      Ulf Hansson <ulf.hansson@linaro.org>
6619 L:      linux-pm@vger.kernel.org
6620 S:      Supported
6621 F:      drivers/base/power/domain*.c
6622 F:      include/linux/pm_domain.h
6623 F:      Documentation/devicetree/bindings/power/power_domain.txt
6624
6625 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
6626 M:      Eugen Hristev <eugen.hristev@microchip.com>
6627 L:      linux-input@vger.kernel.org
6628 S:      Maintained
6629 F:      drivers/input/touchscreen/resistive-adc-touch.c
6630
6631 GENERIC UIO DRIVER FOR PCI DEVICES
6632 M:      "Michael S. Tsirkin" <mst@redhat.com>
6633 L:      kvm@vger.kernel.org
6634 S:      Supported
6635 F:      drivers/uio/uio_pci_generic.c
6636
6637 GENWQE (IBM Generic Workqueue Card)
6638 M:      Frank Haverkamp <haver@linux.ibm.com>
6639 S:      Supported
6640 F:      drivers/misc/genwqe/
6641
6642 GET_MAINTAINER SCRIPT
6643 M:      Joe Perches <joe@perches.com>
6644 S:      Maintained
6645 F:      scripts/get_maintainer.pl
6646
6647 GFS2 FILE SYSTEM
6648 M:      Bob Peterson <rpeterso@redhat.com>
6649 M:      Andreas Gruenbacher <agruenba@redhat.com>
6650 L:      cluster-devel@redhat.com
6651 W:      http://sources.redhat.com/cluster/
6652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
6653 S:      Supported
6654 F:      Documentation/filesystems/gfs2*.txt
6655 F:      fs/gfs2/
6656 F:      include/uapi/linux/gfs2_ondisk.h
6657
6658 GIGASET ISDN DRIVERS
6659 M:      Paul Bolle <pebolle@tiscali.nl>
6660 L:      gigaset307x-common@lists.sourceforge.net
6661 W:      http://gigaset307x.sourceforge.net/
6662 S:      Odd Fixes
6663 F:      Documentation/isdn/README.gigaset
6664 F:      drivers/isdn/gigaset/
6665 F:      include/uapi/linux/gigaset_dev.h
6666
6667 GNSS SUBSYSTEM
6668 M:      Johan Hovold <johan@kernel.org>
6669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
6670 S:      Maintained
6671 F:      Documentation/ABI/testing/sysfs-class-gnss
6672 F:      Documentation/devicetree/bindings/gnss/
6673 F:      drivers/gnss/
6674 F:      include/linux/gnss.h
6675
6676 GO7007 MPEG CODEC
6677 M:      Hans Verkuil <hans.verkuil@cisco.com>
6678 L:      linux-media@vger.kernel.org
6679 S:      Maintained
6680 F:      drivers/media/usb/go7007/
6681
6682 GOODIX TOUCHSCREEN
6683 M:      Bastien Nocera <hadess@hadess.net>
6684 L:      linux-input@vger.kernel.org
6685 S:      Maintained
6686 F:      drivers/input/touchscreen/goodix.c
6687
6688 GPD POCKET FAN DRIVER
6689 M:      Hans de Goede <hdegoede@redhat.com>
6690 L:      platform-driver-x86@vger.kernel.org
6691 S:      Maintained
6692 F:      drivers/platform/x86/gpd-pocket-fan.c
6693
6694 GPIO ACPI SUPPORT
6695 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6696 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6697 L:      linux-gpio@vger.kernel.org
6698 L:      linux-acpi@vger.kernel.org
6699 S:      Maintained
6700 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
6701 F:      drivers/gpio/gpiolib-acpi.c
6702
6703 GPIO IR Transmitter
6704 M:      Sean Young <sean@mess.org>
6705 L:      linux-media@vger.kernel.org
6706 S:      Maintained
6707 F:      drivers/media/rc/gpio-ir-tx.c
6708
6709 GPIO MOCKUP DRIVER
6710 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
6711 L:      linux-gpio@vger.kernel.org
6712 S:      Maintained
6713 F:      drivers/gpio/gpio-mockup.c
6714 F:      tools/testing/selftests/gpio/
6715
6716 GPIO SUBSYSTEM
6717 M:      Linus Walleij <linus.walleij@linaro.org>
6718 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
6719 L:      linux-gpio@vger.kernel.org
6720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6721 S:      Maintained
6722 F:      Documentation/devicetree/bindings/gpio/
6723 F:      Documentation/driver-api/gpio/
6724 F:      Documentation/gpio/
6725 F:      Documentation/ABI/testing/gpio-cdev
6726 F:      Documentation/ABI/obsolete/sysfs-gpio
6727 F:      drivers/gpio/
6728 F:      include/linux/gpio/
6729 F:      include/linux/gpio.h
6730 F:      include/linux/of_gpio.h
6731 F:      include/asm-generic/gpio.h
6732 F:      include/uapi/linux/gpio.h
6733 F:      tools/gpio/
6734
6735 GRE DEMULTIPLEXER DRIVER
6736 M:      Dmitry Kozlov <xeb@mail.ru>
6737 L:      netdev@vger.kernel.org
6738 S:      Maintained
6739 F:      net/ipv4/gre_demux.c
6740 F:      net/ipv4/gre_offload.c
6741 F:      include/net/gre.h
6742
6743 GRETH 10/100/1G Ethernet MAC device driver
6744 M:      Andreas Larsson <andreas@gaisler.com>
6745 L:      netdev@vger.kernel.org
6746 S:      Maintained
6747 F:      drivers/net/ethernet/aeroflex/
6748
6749 GREYBUS AUDIO PROTOCOLS DRIVERS
6750 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6751 M:      Mark Greer <mgreer@animalcreek.com>
6752 S:      Maintained
6753 F:      drivers/staging/greybus/audio_apbridgea.c
6754 F:      drivers/staging/greybus/audio_apbridgea.h
6755 F:      drivers/staging/greybus/audio_codec.c
6756 F:      drivers/staging/greybus/audio_codec.h
6757 F:      drivers/staging/greybus/audio_gb.c
6758 F:      drivers/staging/greybus/audio_manager.c
6759 F:      drivers/staging/greybus/audio_manager.h
6760 F:      drivers/staging/greybus/audio_manager_module.c
6761 F:      drivers/staging/greybus/audio_manager_private.h
6762 F:      drivers/staging/greybus/audio_manager_sysfs.c
6763 F:      drivers/staging/greybus/audio_module.c
6764 F:      drivers/staging/greybus/audio_topology.c
6765
6766 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6767 M:      Viresh Kumar <vireshk@kernel.org>
6768 S:      Maintained
6769 F:      drivers/staging/greybus/authentication.c
6770 F:      drivers/staging/greybus/bootrom.c
6771 F:      drivers/staging/greybus/firmware.h
6772 F:      drivers/staging/greybus/fw-core.c
6773 F:      drivers/staging/greybus/fw-download.c
6774 F:      drivers/staging/greybus/fw-management.c
6775 F:      drivers/staging/greybus/greybus_authentication.h
6776 F:      drivers/staging/greybus/greybus_firmware.h
6777 F:      drivers/staging/greybus/hid.c
6778 F:      drivers/staging/greybus/i2c.c
6779 F:      drivers/staging/greybus/spi.c
6780 F:      drivers/staging/greybus/spilib.c
6781 F:      drivers/staging/greybus/spilib.h
6782
6783 GREYBUS LOOPBACK DRIVER
6784 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6785 S:      Maintained
6786 F:      drivers/staging/greybus/loopback.c
6787
6788 GREYBUS PLATFORM DRIVERS
6789 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6790 S:      Maintained
6791 F:      drivers/staging/greybus/arche-platform.c
6792 F:      drivers/staging/greybus/arche-apb-ctrl.c
6793 F:      drivers/staging/greybus/arche_platform.h
6794
6795 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6796 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6797 S:      Maintained
6798 F:      drivers/staging/greybus/sdio.c
6799 F:      drivers/staging/greybus/light.c
6800 F:      drivers/staging/greybus/gpio.c
6801 F:      drivers/staging/greybus/power_supply.c
6802 F:      drivers/staging/greybus/spi.c
6803 F:      drivers/staging/greybus/spilib.c
6804
6805 GREYBUS SUBSYSTEM
6806 M:      Johan Hovold <johan@kernel.org>
6807 M:      Alex Elder <elder@kernel.org>
6808 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6809 S:      Maintained
6810 F:      drivers/staging/greybus/
6811 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6812
6813 GREYBUS UART PROTOCOLS DRIVERS
6814 M:      David Lin <dtwlin@gmail.com>
6815 S:      Maintained
6816 F:      drivers/staging/greybus/uart.c
6817 F:      drivers/staging/greybus/log.c
6818
6819 GS1662 VIDEO SERIALIZER
6820 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6821 L:      linux-media@vger.kernel.org
6822 T:      git git://linuxtv.org/media_tree.git
6823 S:      Maintained
6824 F:      drivers/media/spi/gs1662.c
6825
6826 GSPCA FINEPIX SUBDRIVER
6827 M:      Frank Zago <frank@zago.net>
6828 L:      linux-media@vger.kernel.org
6829 T:      git git://linuxtv.org/media_tree.git
6830 S:      Maintained
6831 F:      drivers/media/usb/gspca/finepix.c
6832
6833 GSPCA GL860 SUBDRIVER
6834 M:      Olivier Lorin <o.lorin@laposte.net>
6835 L:      linux-media@vger.kernel.org
6836 T:      git git://linuxtv.org/media_tree.git
6837 S:      Maintained
6838 F:      drivers/media/usb/gspca/gl860/
6839
6840 GSPCA M5602 SUBDRIVER
6841 M:      Erik Andren <erik.andren@gmail.com>
6842 L:      linux-media@vger.kernel.org
6843 T:      git git://linuxtv.org/media_tree.git
6844 S:      Maintained
6845 F:      drivers/media/usb/gspca/m5602/
6846
6847 GSPCA PAC207 SONIXB SUBDRIVER
6848 M:      Hans Verkuil <hverkuil@xs4all.nl>
6849 L:      linux-media@vger.kernel.org
6850 T:      git git://linuxtv.org/media_tree.git
6851 S:      Odd Fixes
6852 F:      drivers/media/usb/gspca/pac207.c
6853
6854 GSPCA SN9C20X SUBDRIVER
6855 M:      Brian Johnson <brijohn@gmail.com>
6856 L:      linux-media@vger.kernel.org
6857 T:      git git://linuxtv.org/media_tree.git
6858 S:      Maintained
6859 F:      drivers/media/usb/gspca/sn9c20x.c
6860
6861 GSPCA T613 SUBDRIVER
6862 M:      Leandro Costantino <lcostantino@gmail.com>
6863 L:      linux-media@vger.kernel.org
6864 T:      git git://linuxtv.org/media_tree.git
6865 S:      Maintained
6866 F:      drivers/media/usb/gspca/t613.c
6867
6868 GSPCA USB WEBCAM DRIVER
6869 M:      Hans Verkuil <hverkuil@xs4all.nl>
6870 L:      linux-media@vger.kernel.org
6871 T:      git git://linuxtv.org/media_tree.git
6872 S:      Odd Fixes
6873 F:      drivers/media/usb/gspca/
6874
6875 GTP (GPRS Tunneling Protocol)
6876 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6877 M:      Harald Welte <laforge@gnumonks.org>
6878 L:      osmocom-net-gprs@lists.osmocom.org
6879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6880 S:      Maintained
6881 F:      drivers/net/gtp.c
6882
6883 GUID PARTITION TABLE (GPT)
6884 M:      Davidlohr Bueso <dave@stgolabs.net>
6885 L:      linux-efi@vger.kernel.org
6886 S:      Maintained
6887 F:      block/partitions/efi.*
6888
6889 H8/300 ARCHITECTURE
6890 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6891 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6892 W:      http://uclinux-h8.sourceforge.jp
6893 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6894 S:      Maintained
6895 F:      arch/h8300/
6896 F:      drivers/clocksource/h8300_*.c
6897 F:      drivers/clk/h8300/
6898 F:      drivers/irqchip/irq-renesas-h8*.c
6899
6900 HABANALABS PCI DRIVER
6901 M:      Oded Gabbay <oded.gabbay@gmail.com>
6902 T:      git https://github.com/HabanaAI/linux.git
6903 S:      Supported
6904 F:      drivers/misc/habanalabs/
6905 F:      include/uapi/misc/habanalabs.h
6906 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
6907 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
6908
6909 HACKRF MEDIA DRIVER
6910 M:      Antti Palosaari <crope@iki.fi>
6911 L:      linux-media@vger.kernel.org
6912 W:      https://linuxtv.org
6913 W:      http://palosaari.fi/linux/
6914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6915 T:      git git://linuxtv.org/anttip/media_tree.git
6916 S:      Maintained
6917 F:      drivers/media/usb/hackrf/
6918
6919 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6920 M:      Frank Seidel <frank@f-seidel.de>
6921 L:      platform-driver-x86@vger.kernel.org
6922 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6923 S:      Maintained
6924 F:      drivers/platform/x86/hdaps.c
6925
6926 HARDWARE MONITORING
6927 M:      Jean Delvare <jdelvare@suse.com>
6928 M:      Guenter Roeck <linux@roeck-us.net>
6929 L:      linux-hwmon@vger.kernel.org
6930 W:      http://hwmon.wiki.kernel.org/
6931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6932 S:      Maintained
6933 F:      Documentation/devicetree/bindings/hwmon/
6934 F:      Documentation/hwmon/
6935 F:      drivers/hwmon/
6936 F:      include/linux/hwmon*.h
6937 F:      include/trace/events/hwmon*.h
6938
6939 HARDWARE RANDOM NUMBER GENERATOR CORE
6940 M:      Matt Mackall <mpm@selenic.com>
6941 M:      Herbert Xu <herbert@gondor.apana.org.au>
6942 L:      linux-crypto@vger.kernel.org
6943 S:      Odd fixes
6944 F:      Documentation/devicetree/bindings/rng/
6945 F:      Documentation/hw_random.txt
6946 F:      drivers/char/hw_random/
6947 F:      include/linux/hw_random.h
6948
6949 HARDWARE TRACING FACILITIES
6950 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6951 S:      Maintained
6952 F:      drivers/hwtracing/
6953
6954 HARDWARE SPINLOCK CORE
6955 M:      Ohad Ben-Cohen <ohad@wizery.com>
6956 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6957 L:      linux-remoteproc@vger.kernel.org
6958 S:      Maintained
6959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6960 F:      Documentation/devicetree/bindings/hwlock/
6961 F:      Documentation/hwspinlock.txt
6962 F:      drivers/hwspinlock/
6963 F:      include/linux/hwspinlock.h
6964
6965 HARMONY SOUND DRIVER
6966 L:      linux-parisc@vger.kernel.org
6967 S:      Maintained
6968 F:      sound/parisc/harmony.*
6969
6970 HDPVR USB VIDEO ENCODER DRIVER
6971 M:      Hans Verkuil <hverkuil@xs4all.nl>
6972 L:      linux-media@vger.kernel.org
6973 T:      git git://linuxtv.org/media_tree.git
6974 W:      https://linuxtv.org
6975 S:      Odd Fixes
6976 F:      drivers/media/usb/hdpvr/
6977
6978 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6979 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
6980 S:      Supported
6981 F:      Documentation/watchdog/hpwdt.txt
6982 F:      drivers/watchdog/hpwdt.c
6983
6984 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6985 M:      Don Brace <don.brace@microsemi.com>
6986 L:      esc.storagedev@microsemi.com
6987 L:      linux-scsi@vger.kernel.org
6988 S:      Supported
6989 F:      Documentation/scsi/hpsa.txt
6990 F:      drivers/scsi/hpsa*.[ch]
6991 F:      include/linux/cciss*.h
6992 F:      include/uapi/linux/cciss*.h
6993
6994 HFI1 DRIVER
6995 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6996 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6997 L:      linux-rdma@vger.kernel.org
6998 S:      Supported
6999 F:      drivers/infiniband/hw/hfi1
7000
7001 HFS FILESYSTEM
7002 L:      linux-fsdevel@vger.kernel.org
7003 S:      Orphan
7004 F:      Documentation/filesystems/hfs.txt
7005 F:      fs/hfs/
7006
7007 HFSPLUS FILESYSTEM
7008 L:      linux-fsdevel@vger.kernel.org
7009 S:      Orphan
7010 F:      Documentation/filesystems/hfsplus.txt
7011 F:      fs/hfsplus/
7012
7013 HGA FRAMEBUFFER DRIVER
7014 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
7015 L:      linux-nvidia@lists.surfsouth.com
7016 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
7017 S:      Maintained
7018 F:      drivers/video/fbdev/hgafb.c
7019
7020 HIBERNATION (aka Software Suspend, aka swsusp)
7021 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
7022 M:      Pavel Machek <pavel@ucw.cz>
7023 L:      linux-pm@vger.kernel.org
7024 B:      https://bugzilla.kernel.org
7025 S:      Supported
7026 F:      arch/x86/power/
7027 F:      drivers/base/power/
7028 F:      kernel/power/
7029 F:      include/linux/suspend.h
7030 F:      include/linux/freezer.h
7031 F:      include/linux/pm.h
7032 F:      arch/*/include/asm/suspend*.h
7033
7034 HID CORE LAYER
7035 M:      Jiri Kosina <jikos@kernel.org>
7036 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
7037 L:      linux-input@vger.kernel.org
7038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
7039 S:      Maintained
7040 F:      drivers/hid/
7041 F:      include/linux/hid*
7042 F:      include/uapi/linux/hid*
7043
7044 HID SENSOR HUB DRIVERS
7045 M:      Jiri Kosina <jikos@kernel.org>
7046 M:      Jonathan Cameron <jic23@kernel.org>
7047 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7048 L:      linux-input@vger.kernel.org
7049 L:      linux-iio@vger.kernel.org
7050 S:      Maintained
7051 F:      Documentation/hid/hid-sensor*
7052 F:      drivers/hid/hid-sensor-*
7053 F:      drivers/iio/*/hid-*
7054 F:      include/linux/hid-sensor-*
7055
7056 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
7057 M:      Thomas Gleixner <tglx@linutronix.de>
7058 L:      linux-kernel@vger.kernel.org
7059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7060 S:      Maintained
7061 F:      Documentation/timers/
7062 F:      kernel/time/hrtimer.c
7063 F:      kernel/time/clockevents.c
7064 F:      kernel/time/timer_*.c
7065 F:      include/linux/clockchips.h
7066 F:      include/linux/hrtimer.h
7067
7068 HIGH-SPEED SCC DRIVER FOR AX.25
7069 L:      linux-hams@vger.kernel.org
7070 S:      Orphan
7071 F:      drivers/net/hamradio/dmascc.c
7072 F:      drivers/net/hamradio/scc.c
7073
7074 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
7075 M:      HighPoint Linux Team <linux@highpoint-tech.com>
7076 W:      http://www.highpoint-tech.com
7077 S:      Supported
7078 F:      Documentation/scsi/hptiop.txt
7079 F:      drivers/scsi/hptiop.c
7080
7081 HIPPI
7082 M:      Jes Sorensen <jes@trained-monkey.org>
7083 L:      linux-hippi@sunsite.dk
7084 S:      Maintained
7085 F:      include/linux/hippidevice.h
7086 F:      include/uapi/linux/if_hippi.h
7087 F:      net/802/hippi.c
7088 F:      drivers/net/hippi/
7089
7090 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
7091 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7092 M:      Salil Mehta <salil.mehta@huawei.com>
7093 L:      netdev@vger.kernel.org
7094 W:      http://www.hisilicon.com
7095 S:      Maintained
7096 F:      drivers/net/ethernet/hisilicon/hns3/
7097
7098 HISILICON LPC BUS DRIVER
7099 M:      john.garry@huawei.com
7100 W:      http://www.hisilicon.com
7101 S:      Maintained
7102 F:      drivers/bus/hisi_lpc.c
7103 F:      Documentation/devicetree/bindings/arm/hisilicon/hisilicon-low-pin-count.txt
7104
7105 HISILICON NETWORK SUBSYSTEM DRIVER
7106 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
7107 M:      Salil Mehta <salil.mehta@huawei.com>
7108 L:      netdev@vger.kernel.org
7109 W:      http://www.hisilicon.com
7110 S:      Maintained
7111 F:      drivers/net/ethernet/hisilicon/
7112 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
7113
7114 HISILICON PMU DRIVER
7115 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
7116 W:      http://www.hisilicon.com
7117 S:      Supported
7118 F:      drivers/perf/hisilicon
7119 F:      Documentation/perf/hisi-pmu.txt
7120
7121 HISILICON ROCE DRIVER
7122 M:      Lijun Ou <oulijun@huawei.com>
7123 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
7124 L:      linux-rdma@vger.kernel.org
7125 S:      Maintained
7126 F:      drivers/infiniband/hw/hns/
7127 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
7128
7129 HISILICON SAS Controller
7130 M:      John Garry <john.garry@huawei.com>
7131 W:      http://www.hisilicon.com
7132 S:      Supported
7133 F:      drivers/scsi/hisi_sas/
7134 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
7135
7136 HMM - Heterogeneous Memory Management
7137 M:      Jérôme Glisse <jglisse@redhat.com>
7138 L:      linux-mm@kvack.org
7139 S:      Maintained
7140 F:      mm/hmm*
7141 F:      include/linux/hmm*
7142 F:      Documentation/vm/hmm.rst
7143
7144 HOST AP DRIVER
7145 M:      Jouni Malinen <j@w1.fi>
7146 L:      linux-wireless@vger.kernel.org
7147 W:      http://w1.fi/hostap-driver.html
7148 S:      Obsolete
7149 F:      drivers/net/wireless/intersil/hostap/
7150
7151 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
7152 L:      platform-driver-x86@vger.kernel.org
7153 S:      Orphan
7154 F:      drivers/platform/x86/tc1100-wmi.c
7155
7156 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
7157 M:      Jaroslav Kysela <perex@perex.cz>
7158 S:      Maintained
7159 F:      drivers/net/ethernet/hp/hp100.*
7160
7161 HPET:   High Precision Event Timers driver
7162 M:      Clemens Ladisch <clemens@ladisch.de>
7163 S:      Maintained
7164 F:      Documentation/timers/hpet.txt
7165 F:      drivers/char/hpet.c
7166 F:      include/linux/hpet.h
7167 F:      include/uapi/linux/hpet.h
7168
7169 HPET:   x86
7170 S:      Orphan
7171 F:      arch/x86/kernel/hpet.c
7172 F:      arch/x86/include/asm/hpet.h
7173
7174 HPFS FILESYSTEM
7175 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
7176 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
7177 S:      Maintained
7178 F:      fs/hpfs/
7179
7180 HSI SUBSYSTEM
7181 M:      Sebastian Reichel <sre@kernel.org>
7182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
7183 S:      Maintained
7184 F:      Documentation/ABI/testing/sysfs-bus-hsi
7185 F:      Documentation/driver-api/hsi.rst
7186 F:      drivers/hsi/
7187 F:      include/linux/hsi/
7188 F:      include/uapi/linux/hsi/
7189
7190 HSO 3G MODEM DRIVER
7191 L:      linux-usb@vger.kernel.org
7192 S:      Orphan
7193 F:      drivers/net/usb/hso.c
7194
7195 HSR NETWORK PROTOCOL
7196 M:      Arvid Brodin <arvid.brodin@alten.se>
7197 L:      netdev@vger.kernel.org
7198 S:      Maintained
7199 F:      net/hsr/
7200
7201 HT16K33 LED CONTROLLER DRIVER
7202 M:      Robin van der Gracht <robin@protonic.nl>
7203 S:      Maintained
7204 F:      drivers/auxdisplay/ht16k33.c
7205 F:      Documentation/devicetree/bindings/display/ht16k33.txt
7206
7207 HTCPEN TOUCHSCREEN DRIVER
7208 M:      Pau Oliva Fora <pof@eslack.org>
7209 L:      linux-input@vger.kernel.org
7210 S:      Maintained
7211 F:      drivers/input/touchscreen/htcpen.c
7212
7213 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
7214 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
7215 L:      linux-iio@vger.kernel.org
7216 W:      http://www.st.com/
7217 S:      Maintained
7218 F:      drivers/iio/humidity/hts221*
7219 F:      Documentation/devicetree/bindings/iio/humidity/hts221.txt
7220
7221 HUAWEI ETHERNET DRIVER
7222 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
7223 L:      netdev@vger.kernel.org
7224 S:      Supported
7225 F:      Documentation/networking/hinic.txt
7226 F:      drivers/net/ethernet/huawei/hinic/
7227
7228 HUGETLB FILESYSTEM
7229 M:      Mike Kravetz <mike.kravetz@oracle.com>
7230 L:      linux-mm@kvack.org
7231 S:      Maintained
7232 F:      fs/hugetlbfs/
7233 F:      mm/hugetlb.c
7234 F:      include/linux/hugetlb.h
7235 F:      Documentation/admin-guide/mm/hugetlbpage.rst
7236 F:      Documentation/vm/hugetlbfs_reserv.rst
7237 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
7238
7239 HVA ST MEDIA DRIVER
7240 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
7241 L:      linux-media@vger.kernel.org
7242 T:      git git://linuxtv.org/media_tree.git
7243 W:      https://linuxtv.org
7244 S:      Supported
7245 F:      drivers/media/platform/sti/hva
7246
7247 HWPOISON MEMORY FAILURE HANDLING
7248 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
7249 L:      linux-mm@kvack.org
7250 S:      Maintained
7251 F:      mm/memory-failure.c
7252 F:      mm/hwpoison-inject.c
7253
7254 HYGON PROCESSOR SUPPORT
7255 M:      Pu Wen <puwen@hygon.cn>
7256 L:      linux-kernel@vger.kernel.org
7257 S:      Maintained
7258 F:      arch/x86/kernel/cpu/hygon.c
7259
7260 Hyper-V CORE AND DRIVERS
7261 M:      "K. Y. Srinivasan" <kys@microsoft.com>
7262 M:      Haiyang Zhang <haiyangz@microsoft.com>
7263 M:      Stephen Hemminger <sthemmin@microsoft.com>
7264 M:      Sasha Levin <sashal@kernel.org>
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
7266 L:      linux-hyperv@vger.kernel.org
7267 S:      Supported
7268 F:      Documentation/networking/device_drivers/microsoft/netvsc.txt
7269 F:      arch/x86/include/asm/mshyperv.h
7270 F:      arch/x86/include/asm/trace/hyperv.h
7271 F:      arch/x86/include/asm/hyperv-tlfs.h
7272 F:      arch/x86/kernel/cpu/mshyperv.c
7273 F:      arch/x86/hyperv
7274 F:      drivers/hid/hid-hyperv.c
7275 F:      drivers/hv/
7276 F:      drivers/input/serio/hyperv-keyboard.c
7277 F:      drivers/pci/controller/pci-hyperv.c
7278 F:      drivers/net/hyperv/
7279 F:      drivers/scsi/storvsc_drv.c
7280 F:      drivers/uio/uio_hv_generic.c
7281 F:      drivers/video/fbdev/hyperv_fb.c
7282 F:      drivers/iommu/hyperv_iommu.c
7283 F:      net/vmw_vsock/hyperv_transport.c
7284 F:      include/linux/hyperv.h
7285 F:      include/uapi/linux/hyperv.h
7286 F:      tools/hv/
7287 F:      Documentation/ABI/stable/sysfs-bus-vmbus
7288
7289 HYPERVISOR VIRTUAL CONSOLE DRIVER
7290 L:      linuxppc-dev@lists.ozlabs.org
7291 S:      Odd Fixes
7292 F:      drivers/tty/hvc/
7293
7294 I2C ACPI SUPPORT
7295 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7296 L:      linux-i2c@vger.kernel.org
7297 L:      linux-acpi@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/i2c/i2c-core-acpi.c
7300
7301 I2C CONTROLLER DRIVER FOR NVIDIA GPU
7302 M:      Ajay Gupta <ajayg@nvidia.com>
7303 L:      linux-i2c@vger.kernel.org
7304 S:      Maintained
7305 F:      Documentation/i2c/busses/i2c-nvidia-gpu
7306 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
7307
7308 I2C MUXES
7309 M:      Peter Rosin <peda@axentia.se>
7310 L:      linux-i2c@vger.kernel.org
7311 S:      Maintained
7312 F:      Documentation/i2c/i2c-topology
7313 F:      Documentation/i2c/muxes/
7314 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
7315 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
7316 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
7317 F:      drivers/i2c/i2c-mux.c
7318 F:      drivers/i2c/muxes/
7319 F:      include/linux/i2c-mux.h
7320
7321 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
7322 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
7323 L:      linux-i2c@vger.kernel.org
7324 S:      Maintained
7325 F:      drivers/i2c/busses/i2c-mv64xxx.c
7326
7327 I2C OVER PARALLEL PORT
7328 M:      Jean Delvare <jdelvare@suse.com>
7329 L:      linux-i2c@vger.kernel.org
7330 S:      Maintained
7331 F:      Documentation/i2c/busses/i2c-parport
7332 F:      Documentation/i2c/busses/i2c-parport-light
7333 F:      drivers/i2c/busses/i2c-parport.c
7334 F:      drivers/i2c/busses/i2c-parport-light.c
7335
7336 I2C SUBSYSTEM
7337 M:      Wolfram Sang <wsa@the-dreams.de>
7338 L:      linux-i2c@vger.kernel.org
7339 W:      https://i2c.wiki.kernel.org/
7340 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7342 S:      Maintained
7343 F:      Documentation/devicetree/bindings/i2c/i2c.txt
7344 F:      Documentation/i2c/
7345 F:      drivers/i2c/*
7346 F:      include/linux/i2c.h
7347 F:      include/linux/i2c-dev.h
7348 F:      include/linux/i2c-smbus.h
7349 F:      include/uapi/linux/i2c.h
7350 F:      include/uapi/linux/i2c-*.h
7351
7352 I2C SUBSYSTEM HOST DRIVERS
7353 L:      linux-i2c@vger.kernel.org
7354 W:      https://i2c.wiki.kernel.org/
7355 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
7356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
7357 S:      Odd Fixes
7358 F:      Documentation/devicetree/bindings/i2c/
7359 F:      drivers/i2c/algos/
7360 F:      drivers/i2c/busses/
7361
7362 I2C-TAOS-EVM DRIVER
7363 M:      Jean Delvare <jdelvare@suse.com>
7364 L:      linux-i2c@vger.kernel.org
7365 S:      Maintained
7366 F:      Documentation/i2c/busses/i2c-taos-evm
7367 F:      drivers/i2c/busses/i2c-taos-evm.c
7368
7369 I2C-TINY-USB DRIVER
7370 M:      Till Harbaum <till@harbaum.org>
7371 L:      linux-i2c@vger.kernel.org
7372 W:      http://www.harbaum.org/till/i2c_tiny_usb
7373 S:      Maintained
7374 F:      drivers/i2c/busses/i2c-tiny-usb.c
7375
7376 I2C/SMBUS CONTROLLER DRIVERS FOR PC
7377 M:      Jean Delvare <jdelvare@suse.com>
7378 L:      linux-i2c@vger.kernel.org
7379 S:      Maintained
7380 F:      Documentation/i2c/busses/i2c-ali1535
7381 F:      Documentation/i2c/busses/i2c-ali1563
7382 F:      Documentation/i2c/busses/i2c-ali15x3
7383 F:      Documentation/i2c/busses/i2c-amd756
7384 F:      Documentation/i2c/busses/i2c-amd8111
7385 F:      Documentation/i2c/busses/i2c-i801
7386 F:      Documentation/i2c/busses/i2c-nforce2
7387 F:      Documentation/i2c/busses/i2c-piix4
7388 F:      Documentation/i2c/busses/i2c-sis5595
7389 F:      Documentation/i2c/busses/i2c-sis630
7390 F:      Documentation/i2c/busses/i2c-sis96x
7391 F:      Documentation/i2c/busses/i2c-via
7392 F:      Documentation/i2c/busses/i2c-viapro
7393 F:      drivers/i2c/busses/i2c-ali1535.c
7394 F:      drivers/i2c/busses/i2c-ali1563.c
7395 F:      drivers/i2c/busses/i2c-ali15x3.c
7396 F:      drivers/i2c/busses/i2c-amd756.c
7397 F:      drivers/i2c/busses/i2c-amd756-s4882.c
7398 F:      drivers/i2c/busses/i2c-amd8111.c
7399 F:      drivers/i2c/busses/i2c-i801.c
7400 F:      drivers/i2c/busses/i2c-isch.c
7401 F:      drivers/i2c/busses/i2c-nforce2.c
7402 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
7403 F:      drivers/i2c/busses/i2c-piix4.c
7404 F:      drivers/i2c/busses/i2c-sis5595.c
7405 F:      drivers/i2c/busses/i2c-sis630.c
7406 F:      drivers/i2c/busses/i2c-sis96x.c
7407 F:      drivers/i2c/busses/i2c-via.c
7408 F:      drivers/i2c/busses/i2c-viapro.c
7409
7410 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
7411 M:      Hans de Goede <hdegoede@redhat.com>
7412 L:      linux-i2c@vger.kernel.org
7413 S:      Maintained
7414 F:      drivers/i2c/busses/i2c-cht-wc.c
7415
7416 I2C/SMBUS ISMT DRIVER
7417 M:      Seth Heasley <seth.heasley@intel.com>
7418 M:      Neil Horman <nhorman@tuxdriver.com>
7419 L:      linux-i2c@vger.kernel.org
7420 F:      drivers/i2c/busses/i2c-ismt.c
7421 F:      Documentation/i2c/busses/i2c-ismt
7422
7423 I2C/SMBUS STUB DRIVER
7424 M:      Jean Delvare <jdelvare@suse.com>
7425 L:      linux-i2c@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/i2c/i2c-stub.c
7428
7429 I3C SUBSYSTEM
7430 M:      Boris Brezillon <bbrezillon@kernel.org>
7431 L:      linux-i3c@lists.infradead.org
7432 C:      irc://chat.freenode.net/linux-i3c
7433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
7434 S:      Maintained
7435 F:      Documentation/ABI/testing/sysfs-bus-i3c
7436 F:      Documentation/devicetree/bindings/i3c/
7437 F:      Documentation/driver-api/i3c
7438 F:      drivers/i3c/
7439 F:      include/linux/i3c/
7440
7441 I3C DRIVER FOR SYNOPSYS DESIGNWARE
7442 M:      Vitor Soares <vitor.soares@synopsys.com>
7443 S:      Maintained
7444 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
7445 F:      drivers/i3c/master/dw*
7446
7447 IA64 (Itanium) PLATFORM
7448 M:      Tony Luck <tony.luck@intel.com>
7449 M:      Fenghua Yu <fenghua.yu@intel.com>
7450 L:      linux-ia64@vger.kernel.org
7451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
7452 S:      Maintained
7453 F:      arch/ia64/
7454
7455 IBM Power 842 compression accelerator
7456 M:      Haren Myneni <haren@us.ibm.com>
7457 S:      Supported
7458 F:      drivers/crypto/nx/Makefile
7459 F:      drivers/crypto/nx/Kconfig
7460 F:      drivers/crypto/nx/nx-842*
7461 F:      include/linux/sw842.h
7462 F:      crypto/842.c
7463 F:      lib/842/
7464
7465 IBM Power in-Nest Crypto Acceleration
7466 M:      Breno Leitão <leitao@debian.org>
7467 M:      Nayna Jain <nayna@linux.ibm.com>
7468 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7469 L:      linux-crypto@vger.kernel.org
7470 S:      Supported
7471 F:      drivers/crypto/nx/Makefile
7472 F:      drivers/crypto/nx/Kconfig
7473 F:      drivers/crypto/nx/nx-aes*
7474 F:      drivers/crypto/nx/nx-sha*
7475 F:      drivers/crypto/nx/nx.*
7476 F:      drivers/crypto/nx/nx_csbcpb.h
7477 F:      drivers/crypto/nx/nx_debugfs.h
7478
7479 IBM Power Linux RAID adapter
7480 M:      Brian King <brking@us.ibm.com>
7481 S:      Supported
7482 F:      drivers/scsi/ipr.*
7483
7484 IBM Power SRIOV Virtual NIC Device Driver
7485 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7486 M:      John Allen <jallen@linux.ibm.com>
7487 L:      netdev@vger.kernel.org
7488 S:      Supported
7489 F:      drivers/net/ethernet/ibm/ibmvnic.*
7490
7491 IBM Power Virtual Accelerator Switchboard
7492 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
7493 L:      linuxppc-dev@lists.ozlabs.org
7494 S:      Supported
7495 F:      arch/powerpc/platforms/powernv/vas*
7496 F:      arch/powerpc/platforms/powernv/copy-paste.h
7497 F:      arch/powerpc/include/asm/vas.h
7498
7499 IBM Power Virtual Ethernet Device Driver
7500 M:      Thomas Falcon <tlfalcon@linux.ibm.com>
7501 L:      netdev@vger.kernel.org
7502 S:      Supported
7503 F:      drivers/net/ethernet/ibm/ibmveth.*
7504
7505 IBM Power Virtual FC Device Drivers
7506 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7507 L:      linux-scsi@vger.kernel.org
7508 S:      Supported
7509 F:      drivers/scsi/ibmvscsi/ibmvfc*
7510
7511 IBM Power Virtual Management Channel Driver
7512 M:      Steven Royer <seroyer@linux.ibm.com>
7513 S:      Supported
7514 F:      drivers/misc/ibmvmc.*
7515
7516 IBM Power Virtual SCSI Device Drivers
7517 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7518 L:      linux-scsi@vger.kernel.org
7519 S:      Supported
7520 F:      drivers/scsi/ibmvscsi/ibmvscsi*
7521 F:      include/scsi/viosrp.h
7522
7523 IBM Power Virtual SCSI Device Target Driver
7524 M:      Michael Cyr <mikecyr@linux.ibm.com>
7525 L:      linux-scsi@vger.kernel.org
7526 L:      target-devel@vger.kernel.org
7527 S:      Supported
7528 F:      drivers/scsi/ibmvscsi_tgt/
7529
7530 IBM Power VMX Cryptographic instructions
7531 M:      Breno Leitão <leitao@debian.org>
7532 M:      Nayna Jain <nayna@linux.ibm.com>
7533 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
7534 L:      linux-crypto@vger.kernel.org
7535 S:      Supported
7536 F:      drivers/crypto/vmx/Makefile
7537 F:      drivers/crypto/vmx/Kconfig
7538 F:      drivers/crypto/vmx/vmx.c
7539 F:      drivers/crypto/vmx/aes*
7540 F:      drivers/crypto/vmx/ghash*
7541 F:      drivers/crypto/vmx/ppc-xlate.pl
7542
7543 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
7544 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7545 L:      linux-pci@vger.kernel.org
7546 L:      linuxppc-dev@lists.ozlabs.org
7547 S:      Supported
7548 F:      drivers/pci/hotplug/rpaphp*
7549
7550 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
7551 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
7552 L:      linux-pci@vger.kernel.org
7553 L:      linuxppc-dev@lists.ozlabs.org
7554 S:      Supported
7555 F:      drivers/pci/hotplug/rpadlpar*
7556
7557 IBM ServeRAID RAID DRIVER
7558 S:      Orphan
7559 F:      drivers/scsi/ips.*
7560
7561 ICH LPC AND GPIO DRIVER
7562 M:      Peter Tyser <ptyser@xes-inc.com>
7563 S:      Maintained
7564 F:      drivers/mfd/lpc_ich.c
7565 F:      drivers/gpio/gpio-ich.c
7566
7567 IDE SUBSYSTEM
7568 M:      "David S. Miller" <davem@davemloft.net>
7569 L:      linux-ide@vger.kernel.org
7570 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
7571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
7572 S:      Maintained
7573 F:      Documentation/ide/
7574 F:      drivers/ide/
7575 F:      include/linux/ide.h
7576
7577 IDE/ATAPI DRIVERS
7578 M:      Borislav Petkov <bp@alien8.de>
7579 L:      linux-ide@vger.kernel.org
7580 S:      Maintained
7581 F:      Documentation/cdrom/ide-cd
7582 F:      drivers/ide/ide-cd*
7583
7584 IDEAPAD LAPTOP EXTRAS DRIVER
7585 M:      Ike Panhc <ike.pan@canonical.com>
7586 L:      platform-driver-x86@vger.kernel.org
7587 W:      http://launchpad.net/ideapad-laptop
7588 S:      Maintained
7589 F:      drivers/platform/x86/ideapad-laptop.c
7590
7591 IDEAPAD LAPTOP SLIDEBAR DRIVER
7592 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
7593 L:      linux-input@vger.kernel.org
7594 W:      https://github.com/o2genum/ideapad-slidebar
7595 S:      Maintained
7596 F:      drivers/input/misc/ideapad_slidebar.c
7597
7598 IDT VersaClock 5 CLOCK DRIVER
7599 M:      Marek Vasut <marek.vasut@gmail.com>
7600 S:      Maintained
7601 F:      drivers/clk/clk-versaclock5.c
7602
7603 IEEE 802.15.4 SUBSYSTEM
7604 M:      Alexander Aring <alex.aring@gmail.com>
7605 M:      Stefan Schmidt <stefan@datenfreihafen.org>
7606 L:      linux-wpan@vger.kernel.org
7607 W:      http://wpan.cakelab.org/
7608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
7610 S:      Maintained
7611 F:      net/ieee802154/
7612 F:      net/mac802154/
7613 F:      drivers/net/ieee802154/
7614 F:      include/linux/nl802154.h
7615 F:      include/linux/ieee802154.h
7616 F:      include/net/nl802154.h
7617 F:      include/net/mac802154.h
7618 F:      include/net/af_ieee802154.h
7619 F:      include/net/cfg802154.h
7620 F:      include/net/ieee802154_netdev.h
7621 F:      Documentation/networking/ieee802154.rst
7622
7623 IFE PROTOCOL
7624 M:      Yotam Gigi <yotam.gi@gmail.com>
7625 M:      Jamal Hadi Salim <jhs@mojatatu.com>
7626 F:      net/ife
7627 F:      include/net/ife.h
7628 F:      include/uapi/linux/ife.h
7629
7630 IGORPLUG-USB IR RECEIVER
7631 M:      Sean Young <sean@mess.org>
7632 L:      linux-media@vger.kernel.org
7633 S:      Maintained
7634 F:      drivers/media/rc/igorplugusb.c
7635
7636 IGUANAWORKS USB IR TRANSCEIVER
7637 M:      Sean Young <sean@mess.org>
7638 L:      linux-media@vger.kernel.org
7639 S:      Maintained
7640 F:      drivers/media/rc/iguanair.c
7641
7642 IIO DIGITAL POTENTIOMETER DAC
7643 M:      Peter Rosin <peda@axentia.se>
7644 L:      linux-iio@vger.kernel.org
7645 S:      Maintained
7646 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
7647 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
7648 F:      drivers/iio/dac/dpot-dac.c
7649
7650 IIO ENVELOPE DETECTOR
7651 M:      Peter Rosin <peda@axentia.se>
7652 L:      linux-iio@vger.kernel.org
7653 S:      Maintained
7654 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
7655 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
7656 F:      drivers/iio/adc/envelope-detector.c
7657
7658 IIO MULTIPLEXER
7659 M:      Peter Rosin <peda@axentia.se>
7660 L:      linux-iio@vger.kernel.org
7661 S:      Maintained
7662 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt
7663 F:      drivers/iio/multiplexer/iio-mux.c
7664
7665 IIO SUBSYSTEM AND DRIVERS
7666 M:      Jonathan Cameron <jic23@kernel.org>
7667 R:      Hartmut Knaack <knaack.h@gmx.de>
7668 R:      Lars-Peter Clausen <lars@metafoo.de>
7669 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
7670 L:      linux-iio@vger.kernel.org
7671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
7672 S:      Maintained
7673 F:      Documentation/ABI/testing/configfs-iio*
7674 F:      Documentation/ABI/testing/sysfs-bus-iio*
7675 F:      Documentation/devicetree/bindings/iio/
7676 F:      drivers/iio/
7677 F:      drivers/staging/iio/
7678 F:      include/linux/iio/
7679 F:      tools/iio/
7680
7681 IIO UNIT CONVERTER
7682 M:      Peter Rosin <peda@axentia.se>
7683 L:      linux-iio@vger.kernel.org
7684 S:      Maintained
7685 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.txt
7686 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.txt
7687 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.txt
7688 F:      drivers/iio/afe/iio-rescale.c
7689
7690 IKANOS/ADI EAGLE ADSL USB DRIVER
7691 M:      Matthieu Castet <castet.matthieu@free.fr>
7692 M:      Stanislaw Gruszka <stf_xl@wp.pl>
7693 S:      Maintained
7694 F:      drivers/usb/atm/ueagle-atm.c
7695
7696 IMGTEC ASCII LCD DRIVER
7697 M:      Paul Burton <paul.burton@mips.com>
7698 S:      Maintained
7699 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
7700 F:      drivers/auxdisplay/img-ascii-lcd.c
7701
7702 IMGTEC IR DECODER DRIVER
7703 M:      James Hogan <jhogan@kernel.org>
7704 S:      Maintained
7705 F:      drivers/media/rc/img-ir/
7706
7707 IMON SOUNDGRAPH USB IR RECEIVER
7708 M:      Sean Young <sean@mess.org>
7709 L:      linux-media@vger.kernel.org
7710 S:      Maintained
7711 F:      drivers/media/rc/imon_raw.c
7712 F:      drivers/media/rc/imon.c
7713
7714 IMS TWINTURBO FRAMEBUFFER DRIVER
7715 L:      linux-fbdev@vger.kernel.org
7716 S:      Orphan
7717 F:      drivers/video/fbdev/imsttfb.c
7718
7719 INA209 HARDWARE MONITOR DRIVER
7720 M:      Guenter Roeck <linux@roeck-us.net>
7721 L:      linux-hwmon@vger.kernel.org
7722 S:      Maintained
7723 F:      Documentation/hwmon/ina209.rst
7724 F:      Documentation/devicetree/bindings/hwmon/ina2xx.txt
7725 F:      drivers/hwmon/ina209.c
7726
7727 INA2XX HARDWARE MONITOR DRIVER
7728 M:      Guenter Roeck <linux@roeck-us.net>
7729 L:      linux-hwmon@vger.kernel.org
7730 S:      Maintained
7731 F:      Documentation/hwmon/ina2xx.rst
7732 F:      drivers/hwmon/ina2xx.c
7733 F:      include/linux/platform_data/ina2xx.h
7734
7735 INDUSTRY PACK SUBSYSTEM (IPACK)
7736 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
7737 M:      Jens Taprogge <jens.taprogge@taprogge.org>
7738 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7739 L:      industrypack-devel@lists.sourceforge.net
7740 W:      http://industrypack.sourceforge.net
7741 S:      Maintained
7742 F:      drivers/ipack/
7743
7744 INFINIBAND SUBSYSTEM
7745 M:      Doug Ledford <dledford@redhat.com>
7746 M:      Jason Gunthorpe <jgg@mellanox.com>
7747 L:      linux-rdma@vger.kernel.org
7748 W:      https://github.com/linux-rdma/rdma-core
7749 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
7751 S:      Supported
7752 F:      Documentation/devicetree/bindings/infiniband/
7753 F:      Documentation/infiniband/
7754 F:      drivers/infiniband/
7755 F:      include/uapi/linux/if_infiniband.h
7756 F:      include/uapi/rdma/
7757 F:      include/rdma/
7758 F:      include/trace/events/ib_mad.h
7759 F:      include/trace/events/ib_umad.h
7760 F:      samples/bpf/ibumad_kern.c
7761 F:      samples/bpf/ibumad_user.c
7762
7763 INGENIC JZ4780 DMA Driver
7764 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
7765 S:      Maintained
7766 F:      drivers/dma/dma-jz4780.c
7767
7768 INGENIC JZ4780 NAND DRIVER
7769 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
7770 L:      linux-mtd@lists.infradead.org
7771 S:      Maintained
7772 F:      drivers/mtd/nand/raw/jz4780_*
7773
7774 INOTIFY
7775 M:      Jan Kara <jack@suse.cz>
7776 R:      Amir Goldstein <amir73il@gmail.com>
7777 L:      linux-fsdevel@vger.kernel.org
7778 S:      Maintained
7779 F:      Documentation/filesystems/inotify.txt
7780 F:      fs/notify/inotify/
7781 F:      include/linux/inotify.h
7782 F:      include/uapi/linux/inotify.h
7783
7784 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
7785 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
7786 L:      linux-input@vger.kernel.org
7787 Q:      http://patchwork.kernel.org/project/linux-input/list/
7788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
7789 S:      Maintained
7790 F:      drivers/input/
7791 F:      include/linux/input.h
7792 F:      include/uapi/linux/input.h
7793 F:      include/uapi/linux/input-event-codes.h
7794 F:      include/linux/input/
7795 F:      Documentation/devicetree/bindings/input/
7796 F:      Documentation/devicetree/bindings/serio/
7797 F:      Documentation/input/
7798
7799 INPUT MULTITOUCH (MT) PROTOCOL
7800 M:      Henrik Rydberg <rydberg@bitmath.org>
7801 L:      linux-input@vger.kernel.org
7802 S:      Odd fixes
7803 F:      Documentation/input/multi-touch-protocol.rst
7804 F:      drivers/input/input-mt.c
7805 K:      \b(ABS|SYN)_MT_
7806
7807 INSIDE SECURE CRYPTO DRIVER
7808 M:      Antoine Tenart <antoine.tenart@bootlin.com>
7809 F:      drivers/crypto/inside-secure/
7810 S:      Maintained
7811 L:      linux-crypto@vger.kernel.org
7812
7813 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
7814 M:      Mimi Zohar <zohar@linux.ibm.com>
7815 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
7816 L:      linux-integrity@vger.kernel.org
7817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7818 S:      Supported
7819 F:      security/integrity/ima/
7820
7821 INTEL 810/815 FRAMEBUFFER DRIVER
7822 M:      Antonino Daplas <adaplas@gmail.com>
7823 L:      linux-fbdev@vger.kernel.org
7824 S:      Maintained
7825 F:      drivers/video/fbdev/i810/
7826
7827 INTEL ASoC DRIVERS
7828 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
7829 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
7830 M:      Jie Yang <yang.jie@linux.intel.com>
7831 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7832 S:      Supported
7833 F:      sound/soc/intel/
7834
7835 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
7836 M:      Hans de Goede <hdegoede@redhat.com>
7837 L:      platform-driver-x86@vger.kernel.org
7838 S:      Maintained
7839 F:      drivers/platform/x86/intel_atomisp2_pm.c
7840
7841 INTEL C600 SERIES SAS CONTROLLER DRIVER
7842 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
7843 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7844 L:      linux-scsi@vger.kernel.org
7845 T:      git git://git.code.sf.net/p/intel-sas/isci
7846 S:      Supported
7847 F:      drivers/scsi/isci/
7848
7849 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7850 M:      Jani Nikula <jani.nikula@linux.intel.com>
7851 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7852 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
7853 L:      intel-gfx@lists.freedesktop.org
7854 W:      https://01.org/linuxgraphics/
7855 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
7856 C:      irc://chat.freenode.net/intel-gfx
7857 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
7858 T:      git git://anongit.freedesktop.org/drm-intel
7859 S:      Supported
7860 F:      drivers/gpu/drm/i915/
7861 F:      include/drm/i915*
7862 F:      include/uapi/drm/i915_drm.h
7863 F:      Documentation/gpu/i915.rst
7864
7865 INTEL ETHERNET DRIVERS
7866 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7867 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7868 W:      http://www.intel.com/support/feedback.htm
7869 W:      http://e1000.sourceforge.net/
7870 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7873 S:      Supported
7874 F:      Documentation/networking/device_drivers/intel/e100.rst
7875 F:      Documentation/networking/device_drivers/intel/e1000.rst
7876 F:      Documentation/networking/device_drivers/intel/e1000e.rst
7877 F:      Documentation/networking/device_drivers/intel/fm10k.rst
7878 F:      Documentation/networking/device_drivers/intel/igb.rst
7879 F:      Documentation/networking/device_drivers/intel/igbvf.rst
7880 F:      Documentation/networking/device_drivers/intel/ixgb.rst
7881 F:      Documentation/networking/device_drivers/intel/ixgbe.rst
7882 F:      Documentation/networking/device_drivers/intel/ixgbevf.rst
7883 F:      Documentation/networking/device_drivers/intel/i40e.rst
7884 F:      Documentation/networking/device_drivers/intel/iavf.rst
7885 F:      Documentation/networking/device_drivers/intel/ice.rst
7886 F:      drivers/net/ethernet/intel/
7887 F:      drivers/net/ethernet/intel/*/
7888 F:      include/linux/avf/virtchnl.h
7889
7890 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7891 M:      Maik Broemme <mbroemme@libmpq.org>
7892 L:      linux-fbdev@vger.kernel.org
7893 S:      Maintained
7894 F:      Documentation/fb/intelfb.txt
7895 F:      drivers/video/fbdev/intelfb/
7896
7897 INTEL GPIO DRIVERS
7898 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7899 L:      linux-gpio@vger.kernel.org
7900 S:      Maintained
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7902 F:      drivers/gpio/gpio-ich.c
7903 F:      drivers/gpio/gpio-intel-mid.c
7904 F:      drivers/gpio/gpio-lynxpoint.c
7905 F:      drivers/gpio/gpio-merrifield.c
7906 F:      drivers/gpio/gpio-ml-ioh.c
7907 F:      drivers/gpio/gpio-pch.c
7908 F:      drivers/gpio/gpio-sch.c
7909 F:      drivers/gpio/gpio-sodaville.c
7910
7911 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7912 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7913 M:      Zhi Wang <zhi.a.wang@intel.com>
7914 L:      intel-gvt-dev@lists.freedesktop.org
7915 L:      intel-gfx@lists.freedesktop.org
7916 W:      https://01.org/igvt-g
7917 T:      git https://github.com/intel/gvt-linux.git
7918 S:      Supported
7919 F:      drivers/gpu/drm/i915/gvt/
7920
7921 INTEL HID EVENT DRIVER
7922 M:      Alex Hung <alex.hung@canonical.com>
7923 L:      platform-driver-x86@vger.kernel.org
7924 S:      Maintained
7925 F:      drivers/platform/x86/intel-hid.c
7926
7927 INTEL I/OAT DMA DRIVER
7928 M:      Dave Jiang <dave.jiang@intel.com>
7929 R:      Dan Williams <dan.j.williams@intel.com>
7930 L:      dmaengine@vger.kernel.org
7931 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7932 S:      Supported
7933 F:      drivers/dma/ioat*
7934
7935 INTEL IDLE DRIVER
7936 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7937 M:      Len Brown <lenb@kernel.org>
7938 L:      linux-pm@vger.kernel.org
7939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7940 B:      https://bugzilla.kernel.org
7941 S:      Supported
7942 F:      drivers/idle/intel_idle.c
7943
7944 INTEL INTEGRATED SENSOR HUB DRIVER
7945 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7946 M:      Jiri Kosina <jikos@kernel.org>
7947 L:      linux-input@vger.kernel.org
7948 S:      Maintained
7949 F:      drivers/hid/intel-ish-hid/
7950
7951 INTEL IOMMU (VT-d)
7952 M:      David Woodhouse <dwmw2@infradead.org>
7953 L:      iommu@lists.linux-foundation.org
7954 T:      git git://git.infradead.org/iommu-2.6.git
7955 S:      Supported
7956 F:      drivers/iommu/intel-iommu.c
7957 F:      include/linux/intel-iommu.h
7958
7959 INTEL IOP-ADMA DMA DRIVER
7960 R:      Dan Williams <dan.j.williams@intel.com>
7961 S:      Odd fixes
7962 F:      drivers/dma/iop-adma.c
7963
7964 INTEL IPU3 CSI-2 CIO2 DRIVER
7965 M:      Yong Zhi <yong.zhi@intel.com>
7966 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7967 M:      Bingbu Cao <bingbu.cao@intel.com>
7968 R:      Tian Shu Qiu <tian.shu.qiu@intel.com>
7969 L:      linux-media@vger.kernel.org
7970 S:      Maintained
7971 F:      drivers/media/pci/intel/ipu3/
7972 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7973
7974 INTEL IPU3 CSI-2 IMGU DRIVER
7975 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7976 L:      linux-media@vger.kernel.org
7977 S:      Maintained
7978 F:      drivers/staging/media/ipu3/
7979 F:      Documentation/media/uapi/v4l/pixfmt-meta-intel-ipu3.rst
7980 F:      Documentation/media/v4l-drivers/ipu3.rst
7981
7982 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7983 M:      Krzysztof Halasa <khalasa@piap.pl>
7984 S:      Maintained
7985 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7986 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7987 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7988 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7989 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7990 F:      drivers/net/wan/ixp4xx_hss.c
7991
7992 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7993 M:      Deepak Saxena <dsaxena@plexity.net>
7994 S:      Maintained
7995 F:      drivers/char/hw_random/ixp4xx-rng.c
7996
7997 INTEL MANAGEMENT ENGINE (mei)
7998 M:      Tomas Winkler <tomas.winkler@intel.com>
7999 L:      linux-kernel@vger.kernel.org
8000 S:      Supported
8001 F:      include/uapi/linux/mei.h
8002 F:      include/linux/mei_cl_bus.h
8003 F:      drivers/misc/mei/*
8004 F:      drivers/watchdog/mei_wdt.c
8005 F:      Documentation/misc-devices/mei/*
8006 F:      samples/mei/*
8007
8008 INTEL MENLOW THERMAL DRIVER
8009 M:      Sujith Thomas <sujith.thomas@intel.com>
8010 L:      platform-driver-x86@vger.kernel.org
8011 W:      https://01.org/linux-acpi
8012 S:      Supported
8013 F:      drivers/platform/x86/intel_menlow.c
8014
8015 INTEL MIC DRIVERS (mic)
8016 M:      Sudeep Dutt <sudeep.dutt@intel.com>
8017 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
8018 S:      Supported
8019 W:      https://github.com/sudeepdutt/mic
8020 W:      http://software.intel.com/en-us/mic-developer
8021 F:      include/linux/mic_bus.h
8022 F:      include/linux/scif.h
8023 F:      include/uapi/linux/mic_common.h
8024 F:      include/uapi/linux/mic_ioctl.h
8025 F:      include/uapi/linux/scif_ioctl.h
8026 F:      drivers/misc/mic/
8027 F:      drivers/dma/mic_x100_dma.c
8028 F:      drivers/dma/mic_x100_dma.h
8029 F:      Documentation/mic/
8030
8031 INTEL PMC CORE DRIVER
8032 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8033 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
8034 L:      platform-driver-x86@vger.kernel.org
8035 S:      Maintained
8036 F:      drivers/platform/x86/intel_pmc_core*
8037
8038 INTEL PMC/P-Unit IPC DRIVER
8039 M:      Zha Qipeng<qipeng.zha@intel.com>
8040 L:      platform-driver-x86@vger.kernel.org
8041 S:      Maintained
8042 F:      drivers/platform/x86/intel_pmc_ipc.c
8043 F:      drivers/platform/x86/intel_punit_ipc.c
8044 F:      arch/x86/include/asm/intel_pmc_ipc.h
8045 F:      arch/x86/include/asm/intel_punit_ipc.h
8046
8047 INTEL PMIC GPIO DRIVERS
8048 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8049 S:      Maintained
8050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8051 F:      drivers/gpio/gpio-*cove.c
8052 F:      drivers/gpio/gpio-msic.c
8053
8054 INTEL MULTIFUNCTION PMIC DEVICE DRIVERS
8055 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8056 S:      Maintained
8057 F:      drivers/mfd/intel_msic.c
8058 F:      drivers/mfd/intel_soc_pmic*
8059 F:      include/linux/mfd/intel_msic.h
8060 F:      include/linux/mfd/intel_soc_pmic*
8061
8062 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
8063 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
8064 L:      linux-wireless@vger.kernel.org
8065 S:      Maintained
8066 F:      Documentation/networking/device_drivers/intel/ipw2100.txt
8067 F:      Documentation/networking/device_drivers/intel/ipw2200.txt
8068 F:      drivers/net/wireless/intel/ipw2x00/
8069
8070 INTEL PSTATE DRIVER
8071 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8072 M:      Len Brown <lenb@kernel.org>
8073 L:      linux-pm@vger.kernel.org
8074 S:      Supported
8075 F:      drivers/cpufreq/intel_pstate.c
8076
8077 INTEL RDMA RNIC DRIVER
8078 M:      Faisal Latif <faisal.latif@intel.com>
8079 M:      Shiraz Saleem <shiraz.saleem@intel.com>
8080 L:      linux-rdma@vger.kernel.org
8081 S:      Supported
8082 F:      drivers/infiniband/hw/i40iw/
8083 F:      include/uapi/rdma/i40iw-abi.h
8084
8085 INTEL TELEMETRY DRIVER
8086 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@linux.intel.com>
8087 M:      "David E. Box" <david.e.box@linux.intel.com>
8088 L:      platform-driver-x86@vger.kernel.org
8089 S:      Maintained
8090 F:      arch/x86/include/asm/intel_telemetry.h
8091 F:      drivers/platform/x86/intel_telemetry*
8092
8093 INTEL VIRTUAL BUTTON DRIVER
8094 M:      AceLan Kao <acelan.kao@canonical.com>
8095 L:      platform-driver-x86@vger.kernel.org
8096 S:      Maintained
8097 F:      drivers/platform/x86/intel-vbtn.c
8098
8099 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
8100 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8101 L:      linux-wireless@vger.kernel.org
8102 S:      Supported
8103 F:      drivers/net/wireless/intel/iwlegacy/
8104
8105 INTEL WIRELESS WIFI LINK (iwlwifi)
8106 M:      Johannes Berg <johannes.berg@intel.com>
8107 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
8108 M:      Luca Coelho <luciano.coelho@intel.com>
8109 M:      Intel Linux Wireless <linuxwifi@intel.com>
8110 L:      linux-wireless@vger.kernel.org
8111 W:      http://intellinuxwireless.org
8112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
8113 S:      Supported
8114 F:      drivers/net/wireless/intel/iwlwifi/
8115
8116 INTEL WIRELESS WIMAX CONNECTION 2400
8117 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8118 M:      linux-wimax@intel.com
8119 L:      wimax@linuxwimax.org (subscribers-only)
8120 S:      Supported
8121 W:      http://linuxwimax.org
8122 F:      Documentation/wimax/README.i2400m
8123 F:      drivers/net/wimax/i2400m/
8124 F:      include/uapi/linux/wimax/i2400m.h
8125
8126 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
8127 M:      Mario Limonciello <mario.limonciello@dell.com>
8128 S:      Maintained
8129 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
8130
8131 INTEL(R) TRACE HUB
8132 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8133 S:      Supported
8134 F:      Documentation/trace/intel_th.rst
8135 F:      drivers/hwtracing/intel_th/
8136
8137 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
8138 M:      Ning Sun <ning.sun@intel.com>
8139 L:      tboot-devel@lists.sourceforge.net
8140 W:      http://tboot.sourceforge.net
8141 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
8142 S:      Supported
8143 F:      Documentation/intel_txt.txt
8144 F:      include/linux/tboot.h
8145 F:      arch/x86/kernel/tboot.c
8146
8147 INTEL-MID GPIO DRIVER
8148 M:      David Cohen <david.a.cohen@linux.intel.com>
8149 L:      linux-gpio@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/gpio/gpio-intel-mid.c
8152
8153 INTERCONNECT API
8154 M:      Georgi Djakov <georgi.djakov@linaro.org>
8155 L:      linux-pm@vger.kernel.org
8156 S:      Maintained
8157 F:      Documentation/interconnect/
8158 F:      Documentation/devicetree/bindings/interconnect/
8159 F:      drivers/interconnect/
8160 F:      include/dt-bindings/interconnect/
8161 F:      include/linux/interconnect-provider.h
8162 F:      include/linux/interconnect.h
8163
8164 INVENSENSE MPU-3050 GYROSCOPE DRIVER
8165 M:      Linus Walleij <linus.walleij@linaro.org>
8166 L:      linux-iio@vger.kernel.org
8167 S:      Maintained
8168 F:      drivers/iio/gyro/mpu3050*
8169 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.txt
8170
8171 IOC3 ETHERNET DRIVER
8172 M:      Ralf Baechle <ralf@linux-mips.org>
8173 L:      linux-mips@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/net/ethernet/sgi/ioc3-eth.c
8176
8177 IOC3 SERIAL DRIVER
8178 M:      Pat Gefre <pfg@sgi.com>
8179 L:      linux-serial@vger.kernel.org
8180 S:      Maintained
8181 F:      drivers/tty/serial/ioc3_serial.c
8182
8183 IOMAP FILESYSTEM LIBRARY
8184 M:      Christoph Hellwig <hch@infradead.org>
8185 M:      Darrick J. Wong <darrick.wong@oracle.com>
8186 M:      linux-xfs@vger.kernel.org
8187 M:      linux-fsdevel@vger.kernel.org
8188 L:      linux-xfs@vger.kernel.org
8189 L:      linux-fsdevel@vger.kernel.org
8190 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
8191 S:      Supported
8192 F:      fs/iomap.c
8193 F:      include/linux/iomap.h
8194
8195 IOMMU DRIVERS
8196 M:      Joerg Roedel <joro@8bytes.org>
8197 L:      iommu@lists.linux-foundation.org
8198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
8199 S:      Maintained
8200 F:      Documentation/devicetree/bindings/iommu/
8201 F:      drivers/iommu/
8202 F:      include/linux/iommu.h
8203 F:      include/linux/of_iommu.h
8204 F:      include/linux/iova.h
8205
8206 IO_URING
8207 M:      Jens Axboe <axboe@kernel.dk>
8208 L:      linux-block@vger.kernel.org
8209 L:      linux-fsdevel@vger.kernel.org
8210 T:      git git://git.kernel.dk/linux-block
8211 T:      git git://git.kernel.dk/liburing
8212 S:      Maintained
8213 F:      fs/io_uring.c
8214 F:      include/uapi/linux/io_uring.h
8215
8216 IP MASQUERADING
8217 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
8218 S:      Maintained
8219 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
8220
8221 IPMI SUBSYSTEM
8222 M:      Corey Minyard <minyard@acm.org>
8223 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
8224 W:      http://openipmi.sourceforge.net/
8225 S:      Supported
8226 F:      Documentation/devicetree/bindings/ipmi/
8227 F:      Documentation/IPMI.txt
8228 F:      drivers/char/ipmi/
8229 F:      include/linux/ipmi*
8230 F:      include/uapi/linux/ipmi*
8231
8232 IPS SCSI RAID DRIVER
8233 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
8234 L:      linux-scsi@vger.kernel.org
8235 W:      http://www.adaptec.com/
8236 S:      Maintained
8237 F:      drivers/scsi/ips*
8238
8239 IPVS
8240 M:      Wensong Zhang <wensong@linux-vs.org>
8241 M:      Simon Horman <horms@verge.net.au>
8242 M:      Julian Anastasov <ja@ssi.bg>
8243 L:      netdev@vger.kernel.org
8244 L:      lvs-devel@vger.kernel.org
8245 S:      Maintained
8246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
8247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
8248 F:      Documentation/networking/ipvs-sysctl.txt
8249 F:      include/net/ip_vs.h
8250 F:      include/uapi/linux/ip_vs.h
8251 F:      net/netfilter/ipvs/
8252
8253 IPWIRELESS DRIVER
8254 M:      Jiri Kosina <jikos@kernel.org>
8255 M:      David Sterba <dsterba@suse.com>
8256 S:      Odd Fixes
8257 F:      drivers/tty/ipwireless/
8258
8259 IPX NETWORK LAYER
8260 L:      netdev@vger.kernel.org
8261 S:      Obsolete
8262 F:      include/uapi/linux/ipx.h
8263
8264 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
8265 M:      Marc Zyngier <marc.zyngier@arm.com>
8266 S:      Maintained
8267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8268 F:      Documentation/IRQ-domain.txt
8269 F:      include/linux/irqdomain.h
8270 F:      kernel/irq/irqdomain.c
8271 F:      kernel/irq/msi.c
8272
8273 IRQ SUBSYSTEM
8274 M:      Thomas Gleixner <tglx@linutronix.de>
8275 L:      linux-kernel@vger.kernel.org
8276 S:      Maintained
8277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8278 F:      kernel/irq/
8279
8280 IRQCHIP DRIVERS
8281 M:      Thomas Gleixner <tglx@linutronix.de>
8282 M:      Jason Cooper <jason@lakedaemon.net>
8283 M:      Marc Zyngier <marc.zyngier@arm.com>
8284 L:      linux-kernel@vger.kernel.org
8285 S:      Maintained
8286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
8287 F:      Documentation/devicetree/bindings/interrupt-controller/
8288 F:      drivers/irqchip/
8289
8290 ISA
8291 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8292 S:      Maintained
8293 F:      Documentation/isa.txt
8294 F:      drivers/base/isa.c
8295 F:      include/linux/isa.h
8296
8297 ISA RADIO MODULE
8298 M:      Hans Verkuil <hverkuil@xs4all.nl>
8299 L:      linux-media@vger.kernel.org
8300 T:      git git://linuxtv.org/media_tree.git
8301 W:      https://linuxtv.org
8302 S:      Maintained
8303 F:      drivers/media/radio/radio-isa*
8304
8305 ISAPNP
8306 M:      Jaroslav Kysela <perex@perex.cz>
8307 S:      Maintained
8308 F:      Documentation/isapnp.txt
8309 F:      drivers/pnp/isapnp/
8310 F:      include/linux/isapnp.h
8311
8312 ISCSI
8313 M:      Lee Duncan <lduncan@suse.com>
8314 M:      Chris Leech <cleech@redhat.com>
8315 L:      open-iscsi@googlegroups.com
8316 W:      www.open-iscsi.com
8317 S:      Maintained
8318 F:      drivers/scsi/*iscsi*
8319 F:      include/scsi/*iscsi*
8320
8321 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
8322 M:      Peter Jones <pjones@redhat.com>
8323 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
8324 S:      Maintained
8325 F:      drivers/firmware/iscsi_ibft*
8326
8327 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
8328 M:      Sagi Grimberg <sagi@grimberg.me>
8329 M:      Max Gurtovoy <maxg@mellanox.com>
8330 L:      linux-rdma@vger.kernel.org
8331 S:      Supported
8332 W:      http://www.openfabrics.org
8333 W:      www.open-iscsi.org
8334 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8335 F:      drivers/infiniband/ulp/iser/
8336
8337 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
8338 M:      Sagi Grimberg <sagi@grimberg.me>
8339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8340 L:      linux-rdma@vger.kernel.org
8341 L:      target-devel@vger.kernel.org
8342 S:      Supported
8343 W:      http://www.linux-iscsi.org
8344 F:      drivers/infiniband/ulp/isert
8345
8346 ISDN SUBSYSTEM
8347 M:      Karsten Keil <isdn@linux-pingi.de>
8348 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
8349 L:      netdev@vger.kernel.org
8350 W:      http://www.isdn4linux.de
8351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
8352 S:      Maintained
8353 F:      Documentation/isdn/
8354 F:      drivers/isdn/
8355 F:      include/linux/isdn.h
8356 F:      include/linux/isdn/
8357 F:      include/uapi/linux/isdn.h
8358 F:      include/uapi/linux/isdn/
8359
8360 IT87 HARDWARE MONITORING DRIVER
8361 M:      Jean Delvare <jdelvare@suse.com>
8362 L:      linux-hwmon@vger.kernel.org
8363 S:      Maintained
8364 F:      Documentation/hwmon/it87.rst
8365 F:      drivers/hwmon/it87.c
8366
8367 IT913X MEDIA DRIVER
8368 M:      Antti Palosaari <crope@iki.fi>
8369 L:      linux-media@vger.kernel.org
8370 W:      https://linuxtv.org
8371 W:      http://palosaari.fi/linux/
8372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8373 T:      git git://linuxtv.org/anttip/media_tree.git
8374 S:      Maintained
8375 F:      drivers/media/tuners/it913x*
8376
8377 IVTV VIDEO4LINUX DRIVER
8378 M:      Andy Walls <awalls@md.metrocast.net>
8379 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
8380 L:      linux-media@vger.kernel.org
8381 T:      git git://linuxtv.org/media_tree.git
8382 W:      http://www.ivtvdriver.org
8383 S:      Maintained
8384 F:      Documentation/media/v4l-drivers/ivtv*
8385 F:      drivers/media/pci/ivtv/
8386 F:      include/uapi/linux/ivtv*
8387
8388 IX2505V MEDIA DRIVER
8389 M:      Malcolm Priestley <tvboxspy@gmail.com>
8390 L:      linux-media@vger.kernel.org
8391 W:      https://linuxtv.org
8392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8393 S:      Maintained
8394 F:      drivers/media/dvb-frontends/ix2505v*
8395
8396 JAILHOUSE HYPERVISOR INTERFACE
8397 M:      Jan Kiszka <jan.kiszka@siemens.com>
8398 L:      jailhouse-dev@googlegroups.com
8399 S:      Maintained
8400 F:      arch/x86/kernel/jailhouse.c
8401 F:      arch/x86/include/asm/jailhouse_para.h
8402
8403 JC42.4 TEMPERATURE SENSOR DRIVER
8404 M:      Guenter Roeck <linux@roeck-us.net>
8405 L:      linux-hwmon@vger.kernel.org
8406 S:      Maintained
8407 F:      drivers/hwmon/jc42.c
8408 F:      Documentation/hwmon/jc42.rst
8409
8410 JFS FILESYSTEM
8411 M:      Dave Kleikamp <shaggy@kernel.org>
8412 L:      jfs-discussion@lists.sourceforge.net
8413 W:      http://jfs.sourceforge.net/
8414 T:      git git://github.com/kleikamp/linux-shaggy.git
8415 S:      Maintained
8416 F:      Documentation/filesystems/jfs.txt
8417 F:      fs/jfs/
8418
8419 JME NETWORK DRIVER
8420 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
8421 L:      netdev@vger.kernel.org
8422 S:      Maintained
8423 F:      drivers/net/ethernet/jme.*
8424
8425 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
8426 M:      David Woodhouse <dwmw2@infradead.org>
8427 M:      Richard Weinberger <richard@nod.at>
8428 L:      linux-mtd@lists.infradead.org
8429 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
8430 T:      git git://git.infradead.org/ubifs-2.6.git
8431 S:      Odd Fixes
8432 F:      fs/jffs2/
8433 F:      include/uapi/linux/jffs2.h
8434
8435 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
8436 M:      "Theodore Ts'o" <tytso@mit.edu>
8437 M:      Jan Kara <jack@suse.com>
8438 L:      linux-ext4@vger.kernel.org
8439 S:      Maintained
8440 F:      fs/jbd2/
8441 F:      include/linux/jbd2.h
8442
8443 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
8444 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
8445 L:      linux-media@vger.kernel.org
8446 S:      Maintained
8447 F:      drivers/media/platform/rcar_jpu.c
8448
8449 JSM Neo PCI based serial card
8450 L:      linux-serial@vger.kernel.org
8451 S:      Orphan
8452 F:      drivers/tty/serial/jsm/
8453
8454 K10TEMP HARDWARE MONITORING DRIVER
8455 M:      Clemens Ladisch <clemens@ladisch.de>
8456 L:      linux-hwmon@vger.kernel.org
8457 S:      Maintained
8458 F:      Documentation/hwmon/k10temp.rst
8459 F:      drivers/hwmon/k10temp.c
8460
8461 K8TEMP HARDWARE MONITORING DRIVER
8462 M:      Rudolf Marek <r.marek@assembler.cz>
8463 L:      linux-hwmon@vger.kernel.org
8464 S:      Maintained
8465 F:      Documentation/hwmon/k8temp.rst
8466 F:      drivers/hwmon/k8temp.c
8467
8468 KASAN
8469 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
8470 R:      Alexander Potapenko <glider@google.com>
8471 R:      Dmitry Vyukov <dvyukov@google.com>
8472 L:      kasan-dev@googlegroups.com
8473 S:      Maintained
8474 F:      arch/*/include/asm/kasan.h
8475 F:      arch/*/mm/kasan_init*
8476 F:      Documentation/dev-tools/kasan.rst
8477 F:      include/linux/kasan*.h
8478 F:      lib/test_kasan.c
8479 F:      mm/kasan/
8480 F:      scripts/Makefile.kasan
8481
8482 KCONFIG
8483 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
8485 L:      linux-kbuild@vger.kernel.org
8486 S:      Maintained
8487 F:      Documentation/kbuild/kconfig*
8488 F:      scripts/kconfig/
8489 F:      scripts/Kconfig.include
8490
8491 KDUMP
8492 M:      Dave Young <dyoung@redhat.com>
8493 M:      Baoquan He <bhe@redhat.com>
8494 R:      Vivek Goyal <vgoyal@redhat.com>
8495 L:      kexec@lists.infradead.org
8496 W:      http://lse.sourceforge.net/kdump/
8497 S:      Maintained
8498 F:      Documentation/kdump/
8499
8500 KEENE FM RADIO TRANSMITTER DRIVER
8501 M:      Hans Verkuil <hverkuil@xs4all.nl>
8502 L:      linux-media@vger.kernel.org
8503 T:      git git://linuxtv.org/media_tree.git
8504 W:      https://linuxtv.org
8505 S:      Maintained
8506 F:      drivers/media/radio/radio-keene*
8507
8508 KERNEL AUTOMOUNTER
8509 M:      Ian Kent <raven@themaw.net>
8510 L:      autofs@vger.kernel.org
8511 S:      Maintained
8512 F:      fs/autofs/
8513
8514 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
8515 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
8516 M:      Michal Marek <michal.lkml@markovi.net>
8517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
8518 L:      linux-kbuild@vger.kernel.org
8519 S:      Maintained
8520 F:      Documentation/kbuild/
8521 F:      Makefile
8522 F:      scripts/Kbuild*
8523 F:      scripts/Makefile*
8524 F:      scripts/basic/
8525 F:      scripts/mk*
8526 F:      scripts/mod/
8527 F:      scripts/package/
8528
8529 KERNEL JANITORS
8530 L:      kernel-janitors@vger.kernel.org
8531 W:      http://kernelnewbies.org/KernelJanitors
8532 S:      Odd Fixes
8533
8534 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
8535 M:      "J. Bruce Fields" <bfields@fieldses.org>
8536 M:      Jeff Layton <jlayton@kernel.org>
8537 L:      linux-nfs@vger.kernel.org
8538 W:      http://nfs.sourceforge.net/
8539 T:      git git://linux-nfs.org/~bfields/linux.git
8540 S:      Supported
8541 F:      fs/nfsd/
8542 F:      include/uapi/linux/nfsd/
8543 F:      fs/lockd/
8544 F:      fs/nfs_common/
8545 F:      net/sunrpc/
8546 F:      include/linux/lockd/
8547 F:      include/linux/sunrpc/
8548 F:      include/uapi/linux/sunrpc/
8549
8550 KERNEL SELFTEST FRAMEWORK
8551 M:      Shuah Khan <shuah@kernel.org>
8552 M:      Shuah Khan <skhan@linuxfoundation.org>
8553 L:      linux-kselftest@vger.kernel.org
8554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
8555 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
8556 S:      Maintained
8557 F:      tools/testing/selftests/
8558 F:      Documentation/dev-tools/kselftest*
8559
8560 KERNEL USERMODE HELPER
8561 M:      Luis Chamberlain <mcgrof@kernel.org>
8562 L:      linux-kernel@vger.kernel.org
8563 S:      Maintained
8564 F:      kernel/umh.c
8565 F:      include/linux/umh.h
8566
8567 KERNEL VIRTUAL MACHINE (KVM)
8568 M:      Paolo Bonzini <pbonzini@redhat.com>
8569 M:      Radim Krčmář <rkrcmar@redhat.com>
8570 L:      kvm@vger.kernel.org
8571 W:      http://www.linux-kvm.org
8572 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8573 S:      Supported
8574 F:      Documentation/virtual/kvm/
8575 F:      include/trace/events/kvm.h
8576 F:      include/uapi/asm-generic/kvm*
8577 F:      include/uapi/linux/kvm*
8578 F:      include/asm-generic/kvm*
8579 F:      include/linux/kvm*
8580 F:      include/kvm/iodev.h
8581 F:      virt/kvm/*
8582 F:      tools/kvm/
8583 F:      tools/testing/selftests/kvm/
8584
8585 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
8586 M:      Joerg Roedel <joro@8bytes.org>
8587 L:      kvm@vger.kernel.org
8588 W:      http://www.linux-kvm.org/
8589 S:      Maintained
8590 F:      arch/x86/include/asm/svm.h
8591 F:      arch/x86/kvm/svm.c
8592
8593 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
8594 M:      Christoffer Dall <christoffer.dall@arm.com>
8595 M:      Marc Zyngier <marc.zyngier@arm.com>
8596 R:      James Morse <james.morse@arm.com>
8597 R:      Julien Thierry <julien.thierry@arm.com>
8598 R:      Suzuki K Pouloze <suzuki.poulose@arm.com>
8599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8600 L:      kvmarm@lists.cs.columbia.edu
8601 W:      http://systems.cs.columbia.edu/projects/kvm-arm
8602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
8603 S:      Maintained
8604 F:      arch/arm/include/uapi/asm/kvm*
8605 F:      arch/arm/include/asm/kvm*
8606 F:      arch/arm/kvm/
8607 F:      arch/arm64/include/uapi/asm/kvm*
8608 F:      arch/arm64/include/asm/kvm*
8609 F:      arch/arm64/kvm/
8610 F:      virt/kvm/arm/
8611 F:      include/kvm/arm_*
8612
8613 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
8614 M:      James Hogan <jhogan@kernel.org>
8615 L:      linux-mips@vger.kernel.org
8616 S:      Supported
8617 F:      arch/mips/include/uapi/asm/kvm*
8618 F:      arch/mips/include/asm/kvm*
8619 F:      arch/mips/kvm/
8620
8621 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
8622 M:      Paul Mackerras <paulus@ozlabs.org>
8623 L:      kvm-ppc@vger.kernel.org
8624 W:      http://www.linux-kvm.org/
8625 T:      git git://github.com/agraf/linux-2.6.git
8626 S:      Supported
8627 F:      arch/powerpc/include/uapi/asm/kvm*
8628 F:      arch/powerpc/include/asm/kvm*
8629 F:      arch/powerpc/kvm/
8630 F:      arch/powerpc/kernel/kvm*
8631
8632 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
8633 M:      Christian Borntraeger <borntraeger@de.ibm.com>
8634 M:      Janosch Frank <frankja@linux.ibm.com>
8635 R:      David Hildenbrand <david@redhat.com>
8636 R:      Cornelia Huck <cohuck@redhat.com>
8637 L:      linux-s390@vger.kernel.org
8638 W:      http://www.ibm.com/developerworks/linux/linux390/
8639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
8640 S:      Supported
8641 F:      arch/s390/include/uapi/asm/kvm*
8642 F:      arch/s390/include/asm/gmap.h
8643 F:      arch/s390/include/asm/kvm*
8644 F:      arch/s390/kvm/
8645 F:      arch/s390/mm/gmap.c
8646
8647 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
8648 M:      Paolo Bonzini <pbonzini@redhat.com>
8649 M:      Radim Krčmář <rkrcmar@redhat.com>
8650 L:      kvm@vger.kernel.org
8651 W:      http://www.linux-kvm.org
8652 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
8653 S:      Supported
8654 F:      arch/x86/kvm/
8655 F:      arch/x86/kvm/*/
8656 F:      arch/x86/include/uapi/asm/kvm*
8657 F:      arch/x86/include/asm/kvm*
8658 F:      arch/x86/include/asm/pvclock-abi.h
8659 F:      arch/x86/kernel/kvm.c
8660 F:      arch/x86/kernel/kvmclock.c
8661
8662 KERNFS
8663 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8664 M:      Tejun Heo <tj@kernel.org>
8665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8666 S:      Supported
8667 F:      include/linux/kernfs.h
8668 F:      fs/kernfs/
8669
8670 KEXEC
8671 M:      Eric Biederman <ebiederm@xmission.com>
8672 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
8673 L:      kexec@lists.infradead.org
8674 S:      Maintained
8675 F:      include/linux/kexec.h
8676 F:      include/uapi/linux/kexec.h
8677 F:      kernel/kexec*
8678
8679 KEYS-ENCRYPTED
8680 M:      Mimi Zohar <zohar@linux.ibm.com>
8681 L:      linux-integrity@vger.kernel.org
8682 L:      keyrings@vger.kernel.org
8683 S:      Supported
8684 F:      Documentation/security/keys/trusted-encrypted.rst
8685 F:      include/keys/encrypted-type.h
8686 F:      security/keys/encrypted-keys/
8687
8688 KEYS-TRUSTED
8689 M:      James Bottomley <jejb@linux.ibm.com>
8690 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
8691 M:      Mimi Zohar <zohar@linux.ibm.com>
8692 L:      linux-integrity@vger.kernel.org
8693 L:      keyrings@vger.kernel.org
8694 S:      Supported
8695 F:      Documentation/security/keys/trusted-encrypted.rst
8696 F:      include/keys/trusted-type.h
8697 F:      security/keys/trusted.c
8698 F:      security/keys/trusted.h
8699
8700 KEYS/KEYRINGS:
8701 M:      David Howells <dhowells@redhat.com>
8702 L:      keyrings@vger.kernel.org
8703 S:      Maintained
8704 F:      Documentation/security/keys/core.rst
8705 F:      include/linux/key.h
8706 F:      include/linux/key-type.h
8707 F:      include/linux/keyctl.h
8708 F:      include/uapi/linux/keyctl.h
8709 F:      include/keys/
8710 F:      security/keys/
8711
8712 KGDB / KDB /debug_core
8713 M:      Jason Wessel <jason.wessel@windriver.com>
8714 M:      Daniel Thompson <daniel.thompson@linaro.org>
8715 W:      http://kgdb.wiki.kernel.org/
8716 L:      kgdb-bugreport@lists.sourceforge.net
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
8718 S:      Maintained
8719 F:      Documentation/dev-tools/kgdb.rst
8720 F:      drivers/misc/kgdbts.c
8721 F:      drivers/tty/serial/kgdboc.c
8722 F:      include/linux/kdb.h
8723 F:      include/linux/kgdb.h
8724 F:      kernel/debug/
8725
8726 KMEMLEAK
8727 M:      Catalin Marinas <catalin.marinas@arm.com>
8728 S:      Maintained
8729 F:      Documentation/dev-tools/kmemleak.rst
8730 F:      include/linux/kmemleak.h
8731 F:      mm/kmemleak.c
8732 F:      mm/kmemleak-test.c
8733
8734 KMOD KERNEL MODULE LOADER - USERMODE HELPER
8735 M:      Luis Chamberlain <mcgrof@kernel.org>
8736 L:      linux-kernel@vger.kernel.org
8737 S:      Maintained
8738 F:      kernel/kmod.c
8739 F:      include/linux/kmod.h
8740 F:      lib/test_kmod.c
8741 F:      tools/testing/selftests/kmod/
8742
8743 KPROBES
8744 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
8745 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8746 M:      "David S. Miller" <davem@davemloft.net>
8747 M:      Masami Hiramatsu <mhiramat@kernel.org>
8748 S:      Maintained
8749 F:      Documentation/kprobes.txt
8750 F:      include/linux/kprobes.h
8751 F:      include/asm-generic/kprobes.h
8752 F:      kernel/kprobes.c
8753
8754 KS0108 LCD CONTROLLER DRIVER
8755 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
8756 S:      Maintained
8757 F:      Documentation/auxdisplay/ks0108
8758 F:      drivers/auxdisplay/ks0108.c
8759 F:      include/linux/ks0108.h
8760
8761 L3MDEV
8762 M:      David Ahern <dsa@cumulusnetworks.com>
8763 L:      netdev@vger.kernel.org
8764 S:      Maintained
8765 F:      net/l3mdev
8766 F:      include/net/l3mdev.h
8767
8768 L7 BPF FRAMEWORK
8769 M:      John Fastabend <john.fastabend@gmail.com>
8770 M:      Daniel Borkmann <daniel@iogearbox.net>
8771 L:      netdev@vger.kernel.org
8772 L:      bpf@vger.kernel.org
8773 S:      Maintained
8774 F:      include/linux/skmsg.h
8775 F:      net/core/skmsg.c
8776 F:      net/core/sock_map.c
8777 F:      net/ipv4/tcp_bpf.c
8778
8779 LANTIQ / INTEL Ethernet drivers
8780 M:      Hauke Mehrtens <hauke@hauke-m.de>
8781 L:      netdev@vger.kernel.org
8782 S:      Maintained
8783 F:      net/dsa/tag_gswip.c
8784 F:      drivers/net/ethernet/lantiq_xrx200.c
8785 F:      drivers/net/dsa/lantiq_pce.h
8786 F:      drivers/net/dsa/lantiq_gswip.c
8787
8788 LANTIQ MIPS ARCHITECTURE
8789 M:      John Crispin <john@phrozen.org>
8790 L:      linux-mips@vger.kernel.org
8791 S:      Maintained
8792 F:      arch/mips/lantiq
8793 F:      drivers/soc/lantiq
8794
8795 LAPB module
8796 L:      linux-x25@vger.kernel.org
8797 S:      Orphan
8798 F:      Documentation/networking/lapb-module.txt
8799 F:      include/*/lapb.h
8800 F:      net/lapb/
8801
8802 LASI 53c700 driver for PARISC
8803 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8804 L:      linux-scsi@vger.kernel.org
8805 S:      Maintained
8806 F:      Documentation/scsi/53c700.txt
8807 F:      drivers/scsi/53c700*
8808
8809 LEAKING_ADDRESSES
8810 M:      Tobin C. Harding <me@tobin.cc>
8811 M:      Tycho Andersen <tycho@tycho.ws>
8812 L:      kernel-hardening@lists.openwall.com
8813 S:      Maintained
8814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
8815 F:      scripts/leaking_addresses.pl
8816
8817 LED SUBSYSTEM
8818 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
8819 M:      Pavel Machek <pavel@ucw.cz>
8820 R:      Dan Murphy <dmurphy@ti.com>
8821 L:      linux-leds@vger.kernel.org
8822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
8823 S:      Maintained
8824 F:      Documentation/devicetree/bindings/leds/
8825 F:      drivers/leds/
8826 F:      include/linux/leds.h
8827
8828 LEGACY EEPROM DRIVER
8829 M:      Jean Delvare <jdelvare@suse.com>
8830 S:      Maintained
8831 F:      Documentation/misc-devices/eeprom
8832 F:      drivers/misc/eeprom/eeprom.c
8833
8834 LEGO MINDSTORMS EV3
8835 R:      David Lechner <david@lechnology.com>
8836 S:      Maintained
8837 F:      arch/arm/boot/dts/da850-lego-ev3.dts
8838 F:      Documentation/devicetree/bindings/power/supply/lego_ev3_battery.txt
8839 F:      drivers/power/supply/lego_ev3_battery.c
8840
8841 LEGO USB Tower driver
8842 M:      Juergen Stuber <starblue@users.sourceforge.net>
8843 L:      legousb-devel@lists.sourceforge.net
8844 W:      http://legousb.sourceforge.net/
8845 S:      Maintained
8846 F:      drivers/usb/misc/legousbtower.c
8847
8848 LG LAPTOP EXTRAS
8849 M:      Matan Ziv-Av <matan@svgalib.org>
8850 L:      platform-driver-x86@vger.kernel.org
8851 S:      Maintained
8852 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
8853 F:      Documentation/laptops/lg-laptop.rst
8854 F:      drivers/platform/x86/lg-laptop.c
8855
8856 LG2160 MEDIA DRIVER
8857 M:      Michael Krufky <mkrufky@linuxtv.org>
8858 L:      linux-media@vger.kernel.org
8859 W:      https://linuxtv.org
8860 W:      http://github.com/mkrufky
8861 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8862 T:      git git://linuxtv.org/mkrufky/tuners.git
8863 S:      Maintained
8864 F:      drivers/media/dvb-frontends/lg2160.*
8865
8866 LGDT3305 MEDIA DRIVER
8867 M:      Michael Krufky <mkrufky@linuxtv.org>
8868 L:      linux-media@vger.kernel.org
8869 W:      https://linuxtv.org
8870 W:      http://github.com/mkrufky
8871 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8872 T:      git git://linuxtv.org/mkrufky/tuners.git
8873 S:      Maintained
8874 F:      drivers/media/dvb-frontends/lgdt3305.*
8875
8876 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
8877 M:      Viresh Kumar <vireshk@kernel.org>
8878 L:      linux-ide@vger.kernel.org
8879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8880 S:      Maintained
8881 F:      include/linux/pata_arasan_cf_data.h
8882 F:      drivers/ata/pata_arasan_cf.c
8883
8884 LIBATA PATA DRIVERS
8885 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8886 M:      Jens Axboe <axboe@kernel.dk>
8887 L:      linux-ide@vger.kernel.org
8888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8889 S:      Maintained
8890 F:      drivers/ata/pata_*.c
8891 F:      drivers/ata/ata_generic.c
8892
8893 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
8894 M:      Linus Walleij <linus.walleij@linaro.org>
8895 L:      linux-ide@vger.kernel.org
8896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8897 S:      Maintained
8898 F:      drivers/ata/pata_ftide010.c
8899 F:      drivers/ata/sata_gemini.c
8900 F:      drivers/ata/sata_gemini.h
8901
8902 LIBATA SATA AHCI PLATFORM devices support
8903 M:      Hans de Goede <hdegoede@redhat.com>
8904 M:      Jens Axboe <axboe@kernel.dk>
8905 L:      linux-ide@vger.kernel.org
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8907 S:      Maintained
8908 F:      drivers/ata/ahci_platform.c
8909 F:      drivers/ata/libahci_platform.c
8910 F:      include/linux/ahci_platform.h
8911
8912 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
8913 M:      Mikael Pettersson <mikpelinux@gmail.com>
8914 L:      linux-ide@vger.kernel.org
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8916 S:      Maintained
8917 F:      drivers/ata/sata_promise.*
8918
8919 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
8920 M:      Jens Axboe <axboe@kernel.dk>
8921 L:      linux-ide@vger.kernel.org
8922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8923 S:      Maintained
8924 F:      drivers/ata/
8925 F:      include/linux/ata.h
8926 F:      include/linux/libata.h
8927 F:      Documentation/devicetree/bindings/ata/
8928
8929 LIBLOCKDEP
8930 M:      Sasha Levin <alexander.levin@microsoft.com>
8931 S:      Maintained
8932 F:      tools/lib/lockdep/
8933
8934 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8935 M:      Dan Williams <dan.j.williams@intel.com>
8936 M:      Vishal Verma <vishal.l.verma@intel.com>
8937 M:      Dave Jiang <dave.jiang@intel.com>
8938 L:      linux-nvdimm@lists.01.org
8939 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8940 S:      Supported
8941 F:      drivers/nvdimm/blk.c
8942 F:      drivers/nvdimm/region_devs.c
8943
8944 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8945 M:      Vishal Verma <vishal.l.verma@intel.com>
8946 M:      Dan Williams <dan.j.williams@intel.com>
8947 M:      Dave Jiang <dave.jiang@intel.com>
8948 L:      linux-nvdimm@lists.01.org
8949 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8950 S:      Supported
8951 F:      drivers/nvdimm/btt*
8952
8953 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8954 M:      Dan Williams <dan.j.williams@intel.com>
8955 M:      Vishal Verma <vishal.l.verma@intel.com>
8956 M:      Dave Jiang <dave.jiang@intel.com>
8957 L:      linux-nvdimm@lists.01.org
8958 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8959 S:      Supported
8960 F:      drivers/nvdimm/pmem*
8961
8962 LIBNVDIMM: DEVICETREE BINDINGS
8963 M:      Oliver O'Halloran <oohall@gmail.com>
8964 L:      linux-nvdimm@lists.01.org
8965 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8966 S:      Supported
8967 F:      drivers/nvdimm/of_pmem.c
8968 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
8969
8970 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8971 M:      Dan Williams <dan.j.williams@intel.com>
8972 M:      Vishal Verma <vishal.l.verma@intel.com>
8973 M:      Dave Jiang <dave.jiang@intel.com>
8974 M:      Keith Busch <keith.busch@intel.com>
8975 M:      Ira Weiny <ira.weiny@intel.com>
8976 L:      linux-nvdimm@lists.01.org
8977 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8979 S:      Supported
8980 F:      drivers/nvdimm/*
8981 F:      drivers/acpi/nfit/*
8982 F:      include/linux/nd.h
8983 F:      include/linux/libnvdimm.h
8984 F:      include/uapi/linux/ndctl.h
8985
8986 LIGHTNVM PLATFORM SUPPORT
8987 M:      Matias Bjorling <mb@lightnvm.io>
8988 W:      http://github/OpenChannelSSD
8989 L:      linux-block@vger.kernel.org
8990 S:      Maintained
8991 F:      drivers/lightnvm/
8992 F:      include/linux/lightnvm.h
8993 F:      include/uapi/linux/lightnvm.h
8994
8995 LINUX FOR POWER MACINTOSH
8996 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8997 W:      http://www.penguinppc.org/
8998 L:      linuxppc-dev@lists.ozlabs.org
8999 S:      Maintained
9000 F:      arch/powerpc/platforms/powermac/
9001 F:      drivers/macintosh/
9002
9003 LINUX FOR POWERPC (32-BIT AND 64-BIT)
9004 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9005 M:      Paul Mackerras <paulus@samba.org>
9006 M:      Michael Ellerman <mpe@ellerman.id.au>
9007 W:      https://github.com/linuxppc/linux/wiki
9008 L:      linuxppc-dev@lists.ozlabs.org
9009 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
9010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
9011 S:      Supported
9012 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
9013 F:      Documentation/devicetree/bindings/powerpc/
9014 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
9015 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
9016 F:      Documentation/powerpc/
9017 F:      arch/powerpc/
9018 F:      drivers/char/tpm/tpm_ibmvtpm*
9019 F:      drivers/crypto/nx/
9020 F:      drivers/crypto/vmx/
9021 F:      drivers/i2c/busses/i2c-opal.c
9022 F:      drivers/net/ethernet/ibm/ibmveth.*
9023 F:      drivers/net/ethernet/ibm/ibmvnic.*
9024 F:      drivers/pci/hotplug/pnv_php.c
9025 F:      drivers/pci/hotplug/rpa*
9026 F:      drivers/rtc/rtc-opal.c
9027 F:      drivers/scsi/ibmvscsi/
9028 F:      drivers/tty/hvc/hvc_opal.c
9029 F:      drivers/watchdog/wdrtas.c
9030 F:      tools/testing/selftests/powerpc
9031 N:      /pmac
9032 N:      powermac
9033 N:      powernv
9034 N:      [^a-z0-9]ps3
9035 N:      pseries
9036
9037 LINUX FOR POWERPC EMBEDDED MPC5XXX
9038 M:      Anatolij Gustschin <agust@denx.de>
9039 L:      linuxppc-dev@lists.ozlabs.org
9040 T:      git git://git.denx.de/linux-denx-agust.git
9041 S:      Maintained
9042 F:      arch/powerpc/platforms/512x/
9043 F:      arch/powerpc/platforms/52xx/
9044
9045 LINUX FOR POWERPC EMBEDDED PPC4XX
9046 M:      Alistair Popple <alistair@popple.id.au>
9047 M:      Matt Porter <mporter@kernel.crashing.org>
9048 W:      http://www.penguinppc.org/
9049 L:      linuxppc-dev@lists.ozlabs.org
9050 S:      Maintained
9051 F:      arch/powerpc/platforms/40x/
9052 F:      arch/powerpc/platforms/44x/
9053
9054 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
9055 M:      Scott Wood <oss@buserror.net>
9056 M:      Kumar Gala <galak@kernel.crashing.org>
9057 W:      http://www.penguinppc.org/
9058 L:      linuxppc-dev@lists.ozlabs.org
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
9060 S:      Maintained
9061 F:      arch/powerpc/platforms/83xx/
9062 F:      arch/powerpc/platforms/85xx/
9063 F:      Documentation/devicetree/bindings/powerpc/fsl/
9064
9065 LINUX FOR POWERPC EMBEDDED PPC8XX
9066 M:      Vitaly Bordug <vitb@kernel.crashing.org>
9067 W:      http://www.penguinppc.org/
9068 L:      linuxppc-dev@lists.ozlabs.org
9069 S:      Maintained
9070 F:      arch/powerpc/platforms/8xx/
9071
9072 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
9073 L:      linuxppc-dev@lists.ozlabs.org
9074 S:      Orphan
9075 F:      arch/powerpc/*/*virtex*
9076 F:      arch/powerpc/*/*/*virtex*
9077
9078 LINUX FOR POWERPC PA SEMI PWRFICIENT
9079 L:      linuxppc-dev@lists.ozlabs.org
9080 S:      Orphan
9081 F:      arch/powerpc/platforms/pasemi/
9082 F:      drivers/*/*pasemi*
9083 F:      drivers/*/*/*pasemi*
9084
9085 LINUX KERNEL DUMP TEST MODULE (LKDTM)
9086 M:      Kees Cook <keescook@chromium.org>
9087 S:      Maintained
9088 F:      drivers/misc/lkdtm/*
9089
9090 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
9091 M:      Alan Stern <stern@rowland.harvard.edu>
9092 M:      Andrea Parri <andrea.parri@amarulasolutions.com>
9093 M:      Will Deacon <will.deacon@arm.com>
9094 M:      Peter Zijlstra <peterz@infradead.org>
9095 M:      Boqun Feng <boqun.feng@gmail.com>
9096 M:      Nicholas Piggin <npiggin@gmail.com>
9097 M:      David Howells <dhowells@redhat.com>
9098 M:      Jade Alglave <j.alglave@ucl.ac.uk>
9099 M:      Luc Maranget <luc.maranget@inria.fr>
9100 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
9101 R:      Akira Yokosawa <akiyks@gmail.com>
9102 R:      Daniel Lustig <dlustig@nvidia.com>
9103 L:      linux-kernel@vger.kernel.org
9104 L:      linux-arch@vger.kernel.org
9105 S:      Supported
9106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
9107 F:      tools/memory-model/
9108 F:      Documentation/atomic_bitops.txt
9109 F:      Documentation/atomic_t.txt
9110 F:      Documentation/core-api/atomic_ops.rst
9111 F:      Documentation/core-api/refcount-vs-atomic.rst
9112 F:      Documentation/memory-barriers.txt
9113
9114 LIS3LV02D ACCELEROMETER DRIVER
9115 M:      Eric Piel <eric.piel@tremplin-utc.net>
9116 S:      Maintained
9117 F:      Documentation/misc-devices/lis3lv02d
9118 F:      drivers/misc/lis3lv02d/
9119 F:      drivers/platform/x86/hp_accel.c
9120
9121 LIVE PATCHING
9122 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9123 M:      Jiri Kosina <jikos@kernel.org>
9124 M:      Miroslav Benes <mbenes@suse.cz>
9125 M:      Petr Mladek <pmladek@suse.com>
9126 R:      Joe Lawrence <joe.lawrence@redhat.com>
9127 S:      Maintained
9128 F:      kernel/livepatch/
9129 F:      include/linux/livepatch.h
9130 F:      arch/x86/include/asm/livepatch.h
9131 F:      arch/x86/kernel/livepatch.c
9132 F:      Documentation/livepatch/
9133 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
9134 F:      samples/livepatch/
9135 F:      tools/testing/selftests/livepatch/
9136 L:      live-patching@vger.kernel.org
9137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
9138
9139 LLC (802.2)
9140 L:      netdev@vger.kernel.org
9141 S:      Odd fixes
9142 F:      include/linux/llc.h
9143 F:      include/uapi/linux/llc.h
9144 F:      include/net/llc*
9145 F:      net/llc/
9146
9147 LM73 HARDWARE MONITOR DRIVER
9148 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
9149 L:      linux-hwmon@vger.kernel.org
9150 S:      Maintained
9151 F:      drivers/hwmon/lm73.c
9152
9153 LM78 HARDWARE MONITOR DRIVER
9154 M:      Jean Delvare <jdelvare@suse.com>
9155 L:      linux-hwmon@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/hwmon/lm78.rst
9158 F:      drivers/hwmon/lm78.c
9159
9160 LM83 HARDWARE MONITOR DRIVER
9161 M:      Jean Delvare <jdelvare@suse.com>
9162 L:      linux-hwmon@vger.kernel.org
9163 S:      Maintained
9164 F:      Documentation/hwmon/lm83.rst
9165 F:      drivers/hwmon/lm83.c
9166
9167 LM90 HARDWARE MONITOR DRIVER
9168 M:      Jean Delvare <jdelvare@suse.com>
9169 L:      linux-hwmon@vger.kernel.org
9170 S:      Maintained
9171 F:      Documentation/hwmon/lm90.rst
9172 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
9173 F:      drivers/hwmon/lm90.c
9174 F:      include/dt-bindings/thermal/lm90.h
9175
9176 LM95234 HARDWARE MONITOR DRIVER
9177 M:      Guenter Roeck <linux@roeck-us.net>
9178 L:      linux-hwmon@vger.kernel.org
9179 S:      Maintained
9180 F:      Documentation/hwmon/lm95234.rst
9181 F:      drivers/hwmon/lm95234.c
9182
9183 LME2510 MEDIA DRIVER
9184 M:      Malcolm Priestley <tvboxspy@gmail.com>
9185 L:      linux-media@vger.kernel.org
9186 W:      https://linuxtv.org
9187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9188 S:      Maintained
9189 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
9190
9191 LOADPIN SECURITY MODULE
9192 M:      Kees Cook <keescook@chromium.org>
9193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
9194 S:      Supported
9195 F:      security/loadpin/
9196 F:      Documentation/admin-guide/LSM/LoadPin.rst
9197
9198 LOCKING PRIMITIVES
9199 M:      Peter Zijlstra <peterz@infradead.org>
9200 M:      Ingo Molnar <mingo@redhat.com>
9201 M:      Will Deacon <will.deacon@arm.com>
9202 L:      linux-kernel@vger.kernel.org
9203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
9204 S:      Maintained
9205 F:      Documentation/locking/
9206 F:      include/linux/lockdep.h
9207 F:      include/linux/spinlock*.h
9208 F:      arch/*/include/asm/spinlock*.h
9209 F:      include/linux/rwlock*.h
9210 F:      include/linux/mutex*.h
9211 F:      include/linux/rwsem*.h
9212 F:      include/linux/seqlock.h
9213 F:      lib/locking*.[ch]
9214 F:      kernel/locking/
9215 X:      kernel/locking/locktorture.c
9216
9217 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
9218 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
9219 L:      linux-ntfs-dev@lists.sourceforge.net
9220 W:      http://www.linux-ntfs.org/content/view/19/37/
9221 S:      Maintained
9222 F:      Documentation/ldm.txt
9223 F:      block/partitions/ldm.*
9224
9225 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
9226 M:      Sathya Prakash <sathya.prakash@broadcom.com>
9227 M:      Chaitra P B <chaitra.basappa@broadcom.com>
9228 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
9229 L:      MPT-FusionLinux.pdl@broadcom.com
9230 L:      linux-scsi@vger.kernel.org
9231 W:      http://www.avagotech.com/support/
9232 S:      Supported
9233 F:      drivers/message/fusion/
9234 F:      drivers/scsi/mpt3sas/
9235
9236 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
9237 M:      Matthew Wilcox <willy@infradead.org>
9238 L:      linux-scsi@vger.kernel.org
9239 S:      Maintained
9240 F:      drivers/scsi/sym53c8xx_2/
9241
9242 LTC1660 DAC DRIVER
9243 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9244 L:      linux-iio@vger.kernel.org
9245 S:      Maintained
9246 F:      Documentation/devicetree/bindings/iio/dac/ltc1660.txt
9247 F:      drivers/iio/dac/ltc1660.c
9248
9249 LTC4261 HARDWARE MONITOR DRIVER
9250 M:      Guenter Roeck <linux@roeck-us.net>
9251 L:      linux-hwmon@vger.kernel.org
9252 S:      Maintained
9253 F:      Documentation/hwmon/ltc4261.rst
9254 F:      drivers/hwmon/ltc4261.c
9255
9256 LTC4306 I2C MULTIPLEXER DRIVER
9257 M:      Michael Hennerich <michael.hennerich@analog.com>
9258 W:      http://ez.analog.com/community/linux-device-drivers
9259 L:      linux-i2c@vger.kernel.org
9260 S:      Supported
9261 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
9262 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
9263
9264 LTP (Linux Test Project)
9265 M:      Mike Frysinger <vapier@gentoo.org>
9266 M:      Cyril Hrubis <chrubis@suse.cz>
9267 M:      Wanlong Gao <wanlong.gao@gmail.com>
9268 M:      Jan Stancek <jstancek@redhat.com>
9269 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
9270 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
9271 L:      ltp@lists.linux.it (subscribers-only)
9272 W:      http://linux-test-project.github.io/
9273 T:      git git://github.com/linux-test-project/ltp.git
9274 S:      Maintained
9275
9276 M68K ARCHITECTURE
9277 M:      Geert Uytterhoeven <geert@linux-m68k.org>
9278 L:      linux-m68k@lists.linux-m68k.org
9279 W:      http://www.linux-m68k.org/
9280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
9281 S:      Maintained
9282 F:      arch/m68k/
9283 F:      drivers/zorro/
9284
9285 M68K ON APPLE MACINTOSH
9286 M:      Joshua Thompson <funaho@jurai.org>
9287 W:      http://www.mac.linux-m68k.org/
9288 L:      linux-m68k@lists.linux-m68k.org
9289 S:      Maintained
9290 F:      arch/m68k/mac/
9291
9292 M68K ON HP9000/300
9293 M:      Philip Blundell <philb@gnu.org>
9294 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
9295 S:      Maintained
9296 F:      arch/m68k/hp300/
9297
9298 M88DS3103 MEDIA DRIVER
9299 M:      Antti Palosaari <crope@iki.fi>
9300 L:      linux-media@vger.kernel.org
9301 W:      https://linuxtv.org
9302 W:      http://palosaari.fi/linux/
9303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9304 T:      git git://linuxtv.org/anttip/media_tree.git
9305 S:      Maintained
9306 F:      drivers/media/dvb-frontends/m88ds3103*
9307
9308 M88RS2000 MEDIA DRIVER
9309 M:      Malcolm Priestley <tvboxspy@gmail.com>
9310 L:      linux-media@vger.kernel.org
9311 W:      https://linuxtv.org
9312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9313 S:      Maintained
9314 F:      drivers/media/dvb-frontends/m88rs2000*
9315
9316 MA901 MASTERKIT USB FM RADIO DRIVER
9317 M:      Alexey Klimov <klimov.linux@gmail.com>
9318 L:      linux-media@vger.kernel.org
9319 T:      git git://linuxtv.org/media_tree.git
9320 S:      Maintained
9321 F:      drivers/media/radio/radio-ma901.c
9322
9323 MAC80211
9324 M:      Johannes Berg <johannes@sipsolutions.net>
9325 L:      linux-wireless@vger.kernel.org
9326 W:      http://wireless.kernel.org/
9327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9329 S:      Maintained
9330 F:      Documentation/networking/mac80211-injection.txt
9331 F:      include/net/mac80211.h
9332 F:      net/mac80211/
9333 F:      drivers/net/wireless/mac80211_hwsim.[ch]
9334 F:      Documentation/networking/mac80211_hwsim/README
9335
9336 MAILBOX API
9337 M:      Jassi Brar <jassisinghbrar@gmail.com>
9338 L:      linux-kernel@vger.kernel.org
9339 S:      Maintained
9340 F:      drivers/mailbox/
9341 F:      include/linux/mailbox_client.h
9342 F:      include/linux/mailbox_controller.h
9343
9344 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
9345 M:      Michael Kerrisk <mtk.manpages@gmail.com>
9346 W:      http://www.kernel.org/doc/man-pages
9347 L:      linux-man@vger.kernel.org
9348 S:      Maintained
9349
9350 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
9351 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
9352 L:      linux-mips@vger.kernel.org
9353 S:      Maintained
9354 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
9355
9356 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
9357 M:      Andrew Lunn <andrew@lunn.ch>
9358 M:      Vivien Didelot <vivien.didelot@gmail.com>
9359 L:      netdev@vger.kernel.org
9360 S:      Maintained
9361 F:      drivers/net/dsa/mv88e6xxx/
9362 F:      include/linux/platform_data/mv88e6xxx.h
9363 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
9364
9365 MARVELL ARMADA DRM SUPPORT
9366 M:      Russell King <linux@armlinux.org.uk>
9367 S:      Maintained
9368 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
9369 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
9370 F:      drivers/gpu/drm/armada/
9371 F:      include/uapi/drm/armada_drm.h
9372 F:      Documentation/devicetree/bindings/display/armada/
9373
9374 MARVELL ARMADA 3700 PHY DRIVERS
9375 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9376 S:      Maintained
9377 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
9378 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
9379 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
9380 F:      Documentation/devicetree/bindings/phy/phy-mvebu-utmi.txt
9381
9382 MARVELL CRYPTO DRIVER
9383 M:      Boris Brezillon <bbrezillon@kernel.org>
9384 M:      Arnaud Ebalard <arno@natisbad.org>
9385 F:      drivers/crypto/marvell/
9386 S:      Maintained
9387 L:      linux-crypto@vger.kernel.org
9388
9389 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
9390 M:      Mirko Lindner <mlindner@marvell.com>
9391 M:      Stephen Hemminger <stephen@networkplumber.org>
9392 L:      netdev@vger.kernel.org
9393 S:      Maintained
9394 F:      drivers/net/ethernet/marvell/sk*
9395
9396 MARVELL LIBERTAS WIRELESS DRIVER
9397 L:      libertas-dev@lists.infradead.org
9398 S:      Orphan
9399 F:      drivers/net/wireless/marvell/libertas/
9400
9401 MARVELL MACCHIATOBIN SUPPORT
9402 M:      Russell King <linux@armlinux.org.uk>
9403 L:      linux-arm-kernel@lists.infradead.org
9404 S:      Maintained
9405 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
9406
9407 MARVELL MV643XX ETHERNET DRIVER
9408 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
9409 L:      netdev@vger.kernel.org
9410 S:      Maintained
9411 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
9412 F:      include/linux/mv643xx.h
9413
9414 MARVELL MV88X3310 PHY DRIVER
9415 M:      Russell King <linux@armlinux.org.uk>
9416 L:      netdev@vger.kernel.org
9417 S:      Maintained
9418 F:      drivers/net/phy/marvell10g.c
9419
9420 MARVELL MVEBU THERMAL DRIVER
9421 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9422 S:      Maintained
9423 F:      drivers/thermal/armada_thermal.c
9424
9425 MARVELL MVNETA ETHERNET DRIVER
9426 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9427 L:      netdev@vger.kernel.org
9428 S:      Maintained
9429 F:      drivers/net/ethernet/marvell/mvneta.*
9430
9431 MARVELL MWIFIEX WIRELESS DRIVER
9432 M:      Amitkumar Karwar <amitkarwar@gmail.com>
9433 M:      Nishant Sarmukadam <nishants@marvell.com>
9434 M:      Ganapathi Bhat <gbhat@marvell.com>
9435 M:      Xinming Hu <huxinming820@gmail.com>
9436 L:      linux-wireless@vger.kernel.org
9437 S:      Maintained
9438 F:      drivers/net/wireless/marvell/mwifiex/
9439
9440 MARVELL MWL8K WIRELESS DRIVER
9441 M:      Lennert Buytenhek <buytenh@wantstofly.org>
9442 L:      linux-wireless@vger.kernel.org
9443 S:      Odd Fixes
9444 F:      drivers/net/wireless/marvell/mwl8k.c
9445
9446 MARVELL NAND CONTROLLER DRIVER
9447 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9448 L:      linux-mtd@lists.infradead.org
9449 S:      Maintained
9450 F:      drivers/mtd/nand/raw/marvell_nand.c
9451 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
9452
9453 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
9454 M:      Nicolas Pitre <nico@fluxnic.net>
9455 S:      Odd Fixes
9456 F:      drivers/mmc/host/mvsdio.*
9457
9458 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
9459 M:      Hu Ziji <huziji@marvell.com>
9460 L:      linux-mmc@vger.kernel.org
9461 S:      Supported
9462 F:      drivers/mmc/host/sdhci-xenon*
9463 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
9464
9465 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
9466 M:      Sunil Goutham <sgoutham@marvell.com>
9467 M:      Linu Cherian <lcherian@marvell.com>
9468 M:      Geetha sowjanya <gakula@marvell.com>
9469 M:      Jerin Jacob <jerinj@marvell.com>
9470 L:      netdev@vger.kernel.org
9471 S:      Supported
9472 F:      drivers/net/ethernet/marvell/octeontx2/af/
9473
9474 MATROX FRAMEBUFFER DRIVER
9475 L:      linux-fbdev@vger.kernel.org
9476 S:      Orphan
9477 F:      drivers/video/fbdev/matrox/matroxfb_*
9478 F:      include/uapi/linux/matroxfb.h
9479
9480 MAX16065 HARDWARE MONITOR DRIVER
9481 M:      Guenter Roeck <linux@roeck-us.net>
9482 L:      linux-hwmon@vger.kernel.org
9483 S:      Maintained
9484 F:      Documentation/hwmon/max16065.rst
9485 F:      drivers/hwmon/max16065.c
9486
9487 MAX2175 SDR TUNER DRIVER
9488 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9489 L:      linux-media@vger.kernel.org
9490 T:      git git://linuxtv.org/media_tree.git
9491 S:      Maintained
9492 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
9493 F:      Documentation/media/v4l-drivers/max2175.rst
9494 F:      drivers/media/i2c/max2175*
9495 F:      include/uapi/linux/max2175.h
9496
9497 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
9498 L:      linux-hwmon@vger.kernel.org
9499 S:      Orphan
9500 F:      Documentation/hwmon/max6650.rst
9501 F:      drivers/hwmon/max6650.c
9502
9503 MAX6697 HARDWARE MONITOR DRIVER
9504 M:      Guenter Roeck <linux@roeck-us.net>
9505 L:      linux-hwmon@vger.kernel.org
9506 S:      Maintained
9507 F:      Documentation/hwmon/max6697.rst
9508 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
9509 F:      drivers/hwmon/max6697.c
9510 F:      include/linux/platform_data/max6697.h
9511
9512 MAX9860 MONO AUDIO VOICE CODEC DRIVER
9513 M:      Peter Rosin <peda@axentia.se>
9514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9515 S:      Maintained
9516 F:      Documentation/devicetree/bindings/sound/max9860.txt
9517 F:      sound/soc/codecs/max9860.*
9518
9519 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
9520 M:      Andreas Klinger <ak@it-klinger.de>
9521 L:      linux-iio@vger.kernel.org
9522 S:      Maintained
9523 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.txt
9524 F:      drivers/iio/proximity/mb1232.c
9525
9526 MAXIM MAX77650 PMIC MFD DRIVER
9527 M:      Bartosz Golaszewski <bgolaszewski@baylibre.com>
9528 L:      linux-kernel@vger.kernel.org
9529 S:      Maintained
9530 F:      Documentation/devicetree/bindings/*/*max77650.txt
9531 F:      Documentation/devicetree/bindings/*/max77650*.txt
9532 F:      include/linux/mfd/max77650.h
9533 F:      drivers/mfd/max77650.c
9534 F:      drivers/regulator/max77650-regulator.c
9535 F:      drivers/power/supply/max77650-charger.c
9536 F:      drivers/input/misc/max77650-onkey.c
9537 F:      drivers/leds/leds-max77650.c
9538 F:      drivers/gpio/gpio-max77650.c
9539
9540 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
9541 M:      Javier Martinez Canillas <javier@dowhile0.org>
9542 L:      linux-kernel@vger.kernel.org
9543 S:      Supported
9544 F:      drivers/regulator/max77802-regulator.c
9545 F:      Documentation/devicetree/bindings/*/*max77802.txt
9546 F:      include/dt-bindings/*/*max77802.h
9547
9548 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
9549 M:      Krzysztof Kozlowski <krzk@kernel.org>
9550 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9551 L:      linux-pm@vger.kernel.org
9552 S:      Supported
9553 F:      drivers/power/supply/max14577_charger.c
9554 F:      drivers/power/supply/max77693_charger.c
9555
9556 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
9557 M:      Chanwoo Choi <cw00.choi@samsung.com>
9558 M:      Krzysztof Kozlowski <krzk@kernel.org>
9559 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9560 L:      linux-kernel@vger.kernel.org
9561 S:      Supported
9562 F:      drivers/*/max14577*.c
9563 F:      drivers/*/max77686*.c
9564 F:      drivers/*/max77693*.c
9565 F:      drivers/extcon/extcon-max14577.c
9566 F:      drivers/extcon/extcon-max77693.c
9567 F:      drivers/rtc/rtc-max77686.c
9568 F:      drivers/clk/clk-max77686.c
9569 F:      Documentation/devicetree/bindings/mfd/max14577.txt
9570 F:      Documentation/devicetree/bindings/*/max77686.txt
9571 F:      Documentation/devicetree/bindings/mfd/max77693.txt
9572 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
9573 F:      include/linux/mfd/max14577*.h
9574 F:      include/linux/mfd/max77686*.h
9575 F:      include/linux/mfd/max77693*.h
9576
9577 MAXIRADIO FM RADIO RECEIVER DRIVER
9578 M:      Hans Verkuil <hverkuil@xs4all.nl>
9579 L:      linux-media@vger.kernel.org
9580 T:      git git://linuxtv.org/media_tree.git
9581 W:      https://linuxtv.org
9582 S:      Maintained
9583 F:      drivers/media/radio/radio-maxiradio*
9584
9585 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
9586 M:      Peter Rosin <peda@axentia.se>
9587 L:      linux-iio@vger.kernel.org
9588 S:      Maintained
9589 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
9590 F:      drivers/iio/potentiometer/mcp4018.c
9591 F:      drivers/iio/potentiometer/mcp4531.c
9592
9593 MCR20A IEEE-802.15.4 RADIO DRIVER
9594 M:      Xue Liu <liuxuenetmail@gmail.com>
9595 L:      linux-wpan@vger.kernel.org
9596 W:      https://github.com/xueliu/mcr20a-linux
9597 S:      Maintained
9598 F:      drivers/net/ieee802154/mcr20a.c
9599 F:      drivers/net/ieee802154/mcr20a.h
9600 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
9601
9602 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
9603 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9604 L:      linux-iio@vger.kernel.org
9605 S:      Maintained
9606 F:      drivers/iio/dac/cio-dac.c
9607
9608 MEDIA DRIVERS FOR ASCOT2E
9609 M:      Sergey Kozlov <serjk@netup.ru>
9610 M:      Abylay Ospan <aospan@netup.ru>
9611 L:      linux-media@vger.kernel.org
9612 W:      https://linuxtv.org
9613 W:      http://netup.tv/
9614 T:      git git://linuxtv.org/media_tree.git
9615 S:      Supported
9616 F:      drivers/media/dvb-frontends/ascot2e*
9617
9618 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
9619 M:      Jasmin Jessich <jasmin@anw.at>
9620 L:      linux-media@vger.kernel.org
9621 W:      https://linuxtv.org
9622 T:      git git://linuxtv.org/media_tree.git
9623 S:      Maintained
9624 F:      drivers/media/dvb-frontends/cxd2099*
9625
9626 MEDIA DRIVERS FOR CXD2841ER
9627 M:      Sergey Kozlov <serjk@netup.ru>
9628 M:      Abylay Ospan <aospan@netup.ru>
9629 L:      linux-media@vger.kernel.org
9630 W:      https://linuxtv.org
9631 W:      http://netup.tv/
9632 T:      git git://linuxtv.org/media_tree.git
9633 S:      Supported
9634 F:      drivers/media/dvb-frontends/cxd2841er*
9635
9636 MEDIA DRIVERS FOR CXD2880
9637 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
9638 L:      linux-media@vger.kernel.org
9639 W:      http://linuxtv.org/
9640 T:      git git://linuxtv.org/media_tree.git
9641 S:      Supported
9642 F:      drivers/media/dvb-frontends/cxd2880/*
9643 F:      drivers/media/spi/cxd2880*
9644
9645 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
9646 L:      linux-media@vger.kernel.org
9647 W:      https://linuxtv.org
9648 T:      git git://linuxtv.org/media_tree.git
9649 S:      Orphan
9650 F:      drivers/media/pci/ddbridge/*
9651
9652 MEDIA DRIVERS FOR FREESCALE IMX
9653 M:      Steve Longerbeam <slongerbeam@gmail.com>
9654 M:      Philipp Zabel <p.zabel@pengutronix.de>
9655 L:      linux-media@vger.kernel.org
9656 T:      git git://linuxtv.org/media_tree.git
9657 S:      Maintained
9658 F:      Documentation/devicetree/bindings/media/imx.txt
9659 F:      Documentation/media/v4l-drivers/imx.rst
9660 F:      drivers/staging/media/imx/
9661 F:      include/linux/imx-media.h
9662 F:      include/media/imx.h
9663
9664 MEDIA DRIVER FOR FREESCALE IMX PXP
9665 M:      Philipp Zabel <p.zabel@pengutronix.de>
9666 L:      linux-media@vger.kernel.org
9667 T:      git git://linuxtv.org/media_tree.git
9668 S:      Maintained
9669 F:      drivers/media/platform/imx-pxp.[ch]
9670
9671 MEDIA DRIVERS FOR FREESCALE IMX7
9672 M:      Rui Miguel Silva <rmfrfs@gmail.com>
9673 L:      linux-media@vger.kernel.org
9674 T:      git git://linuxtv.org/media_tree.git
9675 S:      Maintained
9676 F:      Documentation/devicetree/bindings/media/imx7-csi.txt
9677 F:      Documentation/devicetree/bindings/media/imx7-mipi-csi2.txt
9678 F:      Documentation/media/v4l-drivers/imx7.rst
9679 F:      drivers/staging/media/imx/imx7-media-csi.c
9680 F:      drivers/staging/media/imx/imx7-mipi-csis.c
9681
9682 MEDIA DRIVERS FOR HELENE
9683 M:      Abylay Ospan <aospan@netup.ru>
9684 L:      linux-media@vger.kernel.org
9685 W:      https://linuxtv.org
9686 W:      http://netup.tv/
9687 T:      git git://linuxtv.org/media_tree.git
9688 S:      Supported
9689 F:      drivers/media/dvb-frontends/helene*
9690
9691 MEDIA DRIVERS FOR HORUS3A
9692 M:      Sergey Kozlov <serjk@netup.ru>
9693 M:      Abylay Ospan <aospan@netup.ru>
9694 L:      linux-media@vger.kernel.org
9695 W:      https://linuxtv.org
9696 W:      http://netup.tv/
9697 T:      git git://linuxtv.org/media_tree.git
9698 S:      Supported
9699 F:      drivers/media/dvb-frontends/horus3a*
9700
9701 MEDIA DRIVERS FOR LNBH25
9702 M:      Sergey Kozlov <serjk@netup.ru>
9703 M:      Abylay Ospan <aospan@netup.ru>
9704 L:      linux-media@vger.kernel.org
9705 W:      https://linuxtv.org
9706 W:      http://netup.tv/
9707 T:      git git://linuxtv.org/media_tree.git
9708 S:      Supported
9709 F:      drivers/media/dvb-frontends/lnbh25*
9710
9711 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
9712 L:      linux-media@vger.kernel.org
9713 W:      https://linuxtv.org
9714 T:      git git://linuxtv.org/media_tree.git
9715 S:      Orphan
9716 F:      drivers/media/dvb-frontends/mxl5xx*
9717
9718 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
9719 M:      Sergey Kozlov <serjk@netup.ru>
9720 M:      Abylay Ospan <aospan@netup.ru>
9721 L:      linux-media@vger.kernel.org
9722 W:      https://linuxtv.org
9723 W:      http://netup.tv/
9724 T:      git git://linuxtv.org/media_tree.git
9725 S:      Supported
9726 F:      drivers/media/pci/netup_unidvb/*
9727
9728 MEDIA DRIVERS FOR RENESAS - CEU
9729 M:      Jacopo Mondi <jacopo@jmondi.org>
9730 L:      linux-media@vger.kernel.org
9731 L:      linux-renesas-soc@vger.kernel.org
9732 T:      git git://linuxtv.org/media_tree.git
9733 S:      Supported
9734 F:      Documentation/devicetree/bindings/media/renesas,ceu.txt
9735 F:      drivers/media/platform/renesas-ceu.c
9736 F:      include/media/drv-intf/renesas-ceu.h
9737
9738 MEDIA DRIVERS FOR RENESAS - DRIF
9739 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
9740 L:      linux-media@vger.kernel.org
9741 L:      linux-renesas-soc@vger.kernel.org
9742 T:      git git://linuxtv.org/media_tree.git
9743 S:      Supported
9744 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
9745 F:      drivers/media/platform/rcar_drif.c
9746
9747 MEDIA DRIVERS FOR RENESAS - FCP
9748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9749 L:      linux-media@vger.kernel.org
9750 L:      linux-renesas-soc@vger.kernel.org
9751 T:      git git://linuxtv.org/media_tree.git
9752 S:      Supported
9753 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
9754 F:      drivers/media/platform/rcar-fcp.c
9755 F:      include/media/rcar-fcp.h
9756
9757 MEDIA DRIVERS FOR RENESAS - FDP1
9758 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
9759 L:      linux-media@vger.kernel.org
9760 L:      linux-renesas-soc@vger.kernel.org
9761 T:      git git://linuxtv.org/media_tree.git
9762 S:      Supported
9763 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
9764 F:      drivers/media/platform/rcar_fdp1.c
9765
9766 MEDIA DRIVERS FOR RENESAS - VIN
9767 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
9768 L:      linux-media@vger.kernel.org
9769 L:      linux-renesas-soc@vger.kernel.org
9770 T:      git git://linuxtv.org/media_tree.git
9771 S:      Supported
9772 F:      Documentation/devicetree/bindings/media/renesas,rcar-csi2.txt
9773 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
9774 F:      drivers/media/platform/rcar-vin/
9775
9776 MEDIA DRIVERS FOR RENESAS - VSP1
9777 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9778 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
9779 L:      linux-media@vger.kernel.org
9780 L:      linux-renesas-soc@vger.kernel.org
9781 T:      git git://linuxtv.org/media_tree.git
9782 S:      Supported
9783 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
9784 F:      drivers/media/platform/vsp1/
9785
9786 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
9787 L:      linux-media@vger.kernel.org
9788 W:      https://linuxtv.org
9789 T:      git git://linuxtv.org/media_tree.git
9790 S:      Orphan
9791 F:      drivers/media/dvb-frontends/stv0910*
9792
9793 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
9794 L:      linux-media@vger.kernel.org
9795 W:      https://linuxtv.org
9796 T:      git git://linuxtv.org/media_tree.git
9797 S:      Orphan
9798 F:      drivers/media/dvb-frontends/stv6111*
9799
9800 MEDIA DRIVERS FOR STM32 - DCMI
9801 M:      Hugues Fruchet <hugues.fruchet@st.com>
9802 L:      linux-media@vger.kernel.org
9803 T:      git git://linuxtv.org/media_tree.git
9804 S:      Supported
9805 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.txt
9806 F:      drivers/media/platform/stm32/stm32-dcmi.c
9807
9808 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
9809 M:      Dmitry Osipenko <digetx@gmail.com>
9810 L:      linux-media@vger.kernel.org
9811 L:      linux-tegra@vger.kernel.org
9812 T:      git git://linuxtv.org/media_tree.git
9813 S:      Maintained
9814 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
9815 F:      drivers/staging/media/tegra-vde/
9816
9817 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
9818 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
9819 P:      LinuxTV.org Project
9820 L:      linux-media@vger.kernel.org
9821 W:      https://linuxtv.org
9822 Q:      http://patchwork.kernel.org/project/linux-media/list/
9823 T:      git git://linuxtv.org/media_tree.git
9824 S:      Maintained
9825 F:      Documentation/devicetree/bindings/media/
9826 F:      Documentation/media/
9827 F:      drivers/media/
9828 F:      drivers/staging/media/
9829 F:      include/linux/platform_data/media/
9830 F:      include/media/
9831 F:      include/uapi/linux/dvb/
9832 F:      include/uapi/linux/videodev2.h
9833 F:      include/uapi/linux/media.h
9834 F:      include/uapi/linux/v4l2-*
9835 F:      include/uapi/linux/meye.h
9836 F:      include/uapi/linux/ivtv*
9837 F:      include/uapi/linux/uvcvideo.h
9838
9839 MEDIATEK BLUETOOTH DRIVER
9840 M:      Sean Wang <sean.wang@mediatek.com>
9841 L:      linux-bluetooth@vger.kernel.org
9842 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9843 S:      Maintained
9844 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
9845 F:      drivers/bluetooth/btmtkuart.c
9846
9847 MEDIATEK CIR DRIVER
9848 M:      Sean Wang <sean.wang@mediatek.com>
9849 S:      Maintained
9850 F:      drivers/media/rc/mtk-cir.c
9851
9852 MEDIATEK DMA DRIVER
9853 M:      Sean Wang <sean.wang@mediatek.com>
9854 L:      dmaengine@vger.kernel.org
9855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9856 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9857 S:      Maintained
9858 F:      Documentation/devicetree/bindings/dma/mtk-*
9859 F:      drivers/dma/mediatek/
9860
9861 MEDIATEK PMIC LED DRIVER
9862 M:      Sean Wang <sean.wang@mediatek.com>
9863 S:      Maintained
9864 F:      drivers/leds/leds-mt6323.c
9865 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
9866
9867 MEDIATEK ETHERNET DRIVER
9868 M:      Felix Fietkau <nbd@openwrt.org>
9869 M:      John Crispin <john@phrozen.org>
9870 M:      Sean Wang <sean.wang@mediatek.com>
9871 M:      Nelson Chang <nelson.chang@mediatek.com>
9872 L:      netdev@vger.kernel.org
9873 S:      Maintained
9874 F:      drivers/net/ethernet/mediatek/
9875
9876 MEDIATEK SWITCH DRIVER
9877 M:      Sean Wang <sean.wang@mediatek.com>
9878 L:      netdev@vger.kernel.org
9879 S:      Maintained
9880 F:      drivers/net/dsa/mt7530.*
9881 F:      net/dsa/tag_mtk.c
9882
9883 MEDIATEK JPEG DRIVER
9884 M:      Rick Chang <rick.chang@mediatek.com>
9885 M:      Bin Liu <bin.liu@mediatek.com>
9886 S:      Supported
9887 F:      drivers/media/platform/mtk-jpeg/
9888 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
9889
9890 MEDIATEK MDP DRIVER
9891 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
9892 M:      Houlong Wei <houlong.wei@mediatek.com>
9893 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9894 S:      Supported
9895 F:      drivers/media/platform/mtk-mdp/
9896 F:      drivers/media/platform/mtk-vpu/
9897 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
9898
9899 MEDIATEK MEDIA DRIVER
9900 M:      Tiffany Lin <tiffany.lin@mediatek.com>
9901 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
9902 S:      Supported
9903 F:      drivers/media/platform/mtk-vcodec/
9904 F:      drivers/media/platform/mtk-vpu/
9905 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
9906 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
9907
9908 MEDIATEK MMC/SD/SDIO DRIVER
9909 M:      Chaotian Jing <chaotian.jing@mediatek.com>
9910 S:      Maintained
9911 F:      drivers/mmc/host/mtk-sd.c
9912 F:      Documentation/devicetree/bindings/mmc/mtk-sd.txt
9913
9914 MEDIATEK MT76 WIRELESS LAN DRIVER
9915 M:      Felix Fietkau <nbd@nbd.name>
9916 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
9917 R:      Ryder Lee <ryder.lee@mediatek.com>
9918 R:      Roy Luo <royluo@google.com>
9919 L:      linux-wireless@vger.kernel.org
9920 S:      Maintained
9921 F:      drivers/net/wireless/mediatek/mt76/
9922
9923 MEDIATEK MT7601U WIRELESS LAN DRIVER
9924 M:      Jakub Kicinski <kubakici@wp.pl>
9925 L:      linux-wireless@vger.kernel.org
9926 S:      Maintained
9927 F:      drivers/net/wireless/mediatek/mt7601u/
9928
9929 MEDIATEK NAND CONTROLLER DRIVER
9930 M:      Xiaolei Li <xiaolei.li@mediatek.com>
9931 L:      linux-mtd@lists.infradead.org
9932 S:      Maintained
9933 F:      drivers/mtd/nand/raw/mtk_*
9934 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
9935
9936 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
9937 M:      Sean Wang <sean.wang@mediatek.com>
9938 S:      Maintained
9939 F:      drivers/char/hw_random/mtk-rng.c
9940
9941 MEDIATEK USB3 DRD IP DRIVER
9942 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
9943 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
9944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9945 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
9946 S:      Maintained
9947 F:      drivers/usb/mtu3/
9948
9949 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
9950 M:      Peter Senna Tschudin <peter.senna@gmail.com>
9951 M:      Martin Donnelly <martin.donnelly@ge.com>
9952 M:      Martyn Welch <martyn.welch@collabora.co.uk>
9953 S:      Maintained
9954 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
9955 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
9956
9957 MEGARAID SCSI/SAS DRIVERS
9958 M:      Kashyap Desai <kashyap.desai@broadcom.com>
9959 M:      Sumit Saxena <sumit.saxena@broadcom.com>
9960 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
9961 L:      megaraidlinux.pdl@broadcom.com
9962 L:      linux-scsi@vger.kernel.org
9963 W:      http://www.avagotech.com/support/
9964 S:      Maintained
9965 F:      Documentation/scsi/megaraid.txt
9966 F:      drivers/scsi/megaraid.*
9967 F:      drivers/scsi/megaraid/
9968
9969 MELEXIS MLX90614 DRIVER
9970 M:      Crt Mori <cmo@melexis.com>
9971 L:      linux-iio@vger.kernel.org
9972 W:      http://www.melexis.com
9973 S:      Supported
9974 F:      drivers/iio/temperature/mlx90614.c
9975
9976 MELEXIS MLX90632 DRIVER
9977 M:      Crt Mori <cmo@melexis.com>
9978 L:      linux-iio@vger.kernel.org
9979 W:      http://www.melexis.com
9980 S:      Supported
9981 F:      drivers/iio/temperature/mlx90632.c
9982
9983 MELFAS MIP4 TOUCHSCREEN DRIVER
9984 M:      Sangwon Jee <jeesw@melfas.com>
9985 W:      http://www.melfas.com
9986 S:      Supported
9987 F:      drivers/input/touchscreen/melfas_mip4.c
9988 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
9989
9990 MELLANOX ETHERNET DRIVER (mlx4_en)
9991 M:      Tariq Toukan <tariqt@mellanox.com>
9992 L:      netdev@vger.kernel.org
9993 S:      Supported
9994 W:      http://www.mellanox.com
9995 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9996 F:      drivers/net/ethernet/mellanox/mlx4/en_*
9997
9998 MELLANOX ETHERNET DRIVER (mlx5e)
9999 M:      Saeed Mahameed <saeedm@mellanox.com>
10000 L:      netdev@vger.kernel.org
10001 S:      Supported
10002 W:      http://www.mellanox.com
10003 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10004 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
10005
10006 MELLANOX ETHERNET INNOVA DRIVERS
10007 R:      Boris Pismenny <borisp@mellanox.com>
10008 L:      netdev@vger.kernel.org
10009 S:      Supported
10010 W:      http://www.mellanox.com
10011 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10012 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
10013 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
10014 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
10015 F:      include/linux/mlx5/mlx5_ifc_fpga.h
10016
10017 MELLANOX ETHERNET SWITCH DRIVERS
10018 M:      Jiri Pirko <jiri@mellanox.com>
10019 M:      Ido Schimmel <idosch@mellanox.com>
10020 L:      netdev@vger.kernel.org
10021 S:      Supported
10022 W:      http://www.mellanox.com
10023 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10024 F:      drivers/net/ethernet/mellanox/mlxsw/
10025 F:      tools/testing/selftests/drivers/net/mlxsw/
10026
10027 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
10028 M:      mlxsw@mellanox.com
10029 L:      netdev@vger.kernel.org
10030 S:      Supported
10031 W:      http://www.mellanox.com
10032 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10033 F:      drivers/net/ethernet/mellanox/mlxfw/
10034
10035 MELLANOX HARDWARE PLATFORM SUPPORT
10036 M:      Andy Shevchenko <andy@infradead.org>
10037 M:      Darren Hart <dvhart@infradead.org>
10038 M:      Vadim Pasternak <vadimp@mellanox.com>
10039 L:      platform-driver-x86@vger.kernel.org
10040 S:      Supported
10041 F:      drivers/platform/mellanox/
10042 F:      include/linux/platform_data/mlxreg.h
10043
10044 MELLANOX MLX4 core VPI driver
10045 M:      Tariq Toukan <tariqt@mellanox.com>
10046 L:      netdev@vger.kernel.org
10047 L:      linux-rdma@vger.kernel.org
10048 W:      http://www.mellanox.com
10049 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10050 S:      Supported
10051 F:      drivers/net/ethernet/mellanox/mlx4/
10052 F:      include/linux/mlx4/
10053
10054 MELLANOX MLX4 IB driver
10055 M:      Yishai Hadas <yishaih@mellanox.com>
10056 L:      linux-rdma@vger.kernel.org
10057 W:      http://www.mellanox.com
10058 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10059 S:      Supported
10060 F:      drivers/infiniband/hw/mlx4/
10061 F:      include/linux/mlx4/
10062 F:      include/uapi/rdma/mlx4-abi.h
10063
10064 MELLANOX MLX5 core VPI driver
10065 M:      Saeed Mahameed <saeedm@mellanox.com>
10066 M:      Leon Romanovsky <leonro@mellanox.com>
10067 L:      netdev@vger.kernel.org
10068 L:      linux-rdma@vger.kernel.org
10069 W:      http://www.mellanox.com
10070 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10071 S:      Supported
10072 F:      drivers/net/ethernet/mellanox/mlx5/core/
10073 F:      include/linux/mlx5/
10074
10075 MELLANOX MLX5 IB driver
10076 M:      Leon Romanovsky <leonro@mellanox.com>
10077 L:      linux-rdma@vger.kernel.org
10078 W:      http://www.mellanox.com
10079 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10080 S:      Supported
10081 F:      drivers/infiniband/hw/mlx5/
10082 F:      include/linux/mlx5/
10083 F:      include/uapi/rdma/mlx5-abi.h
10084
10085 MELLANOX MLXCPLD I2C AND MUX DRIVER
10086 M:      Vadim Pasternak <vadimp@mellanox.com>
10087 M:      Michael Shych <michaelsh@mellanox.com>
10088 L:      linux-i2c@vger.kernel.org
10089 S:      Supported
10090 F:      drivers/i2c/busses/i2c-mlxcpld.c
10091 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
10092 F:      Documentation/i2c/busses/i2c-mlxcpld
10093
10094 MELLANOX MLXCPLD LED DRIVER
10095 M:      Vadim Pasternak <vadimp@mellanox.com>
10096 L:      linux-leds@vger.kernel.org
10097 S:      Supported
10098 F:      drivers/leds/leds-mlxcpld.c
10099 F:      drivers/leds/leds-mlxreg.c
10100 F:      Documentation/leds/leds-mlxcpld.txt
10101
10102 MELLANOX PLATFORM DRIVER
10103 M:      Vadim Pasternak <vadimp@mellanox.com>
10104 L:      platform-driver-x86@vger.kernel.org
10105 S:      Supported
10106 F:      drivers/platform/x86/mlx-platform.c
10107
10108 MEMBARRIER SUPPORT
10109 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10110 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
10111 L:      linux-kernel@vger.kernel.org
10112 S:      Supported
10113 F:      kernel/sched/membarrier.c
10114 F:      include/uapi/linux/membarrier.h
10115 F:      arch/powerpc/include/asm/membarrier.h
10116
10117 MEMBLOCK
10118 M:      Mike Rapoport <rppt@linux.ibm.com>
10119 L:      linux-mm@kvack.org
10120 S:      Maintained
10121 F:      include/linux/memblock.h
10122 F:      mm/memblock.c
10123 F:      Documentation/core-api/boot-time-mm.rst
10124
10125 MEMORY MANAGEMENT
10126 L:      linux-mm@kvack.org
10127 W:      http://www.linux-mm.org
10128 S:      Maintained
10129 F:      include/linux/mm.h
10130 F:      include/linux/gfp.h
10131 F:      include/linux/mmzone.h
10132 F:      include/linux/memory_hotplug.h
10133 F:      include/linux/vmalloc.h
10134 F:      mm/
10135
10136 MEMORY TECHNOLOGY DEVICES (MTD)
10137 M:      David Woodhouse <dwmw2@infradead.org>
10138 M:      Brian Norris <computersforpeace@gmail.com>
10139 M:      Marek Vasut <marek.vasut@gmail.com>
10140 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10141 M:      Richard Weinberger <richard@nod.at>
10142 M:      Vignesh Raghavendra <vigneshr@ti.com>
10143 L:      linux-mtd@lists.infradead.org
10144 W:      http://www.linux-mtd.infradead.org/
10145 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
10147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
10148 S:      Maintained
10149 F:      Documentation/devicetree/bindings/mtd/
10150 F:      drivers/mtd/
10151 F:      include/linux/mtd/
10152 F:      include/uapi/mtd/
10153
10154 MEN A21 WATCHDOG DRIVER
10155 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10156 L:      linux-watchdog@vger.kernel.org
10157 S:      Maintained
10158 F:      drivers/watchdog/mena21_wdt.c
10159
10160 MEN CHAMELEON BUS (mcb)
10161 M:      Johannes Thumshirn <morbidrsa@gmail.com>
10162 S:      Maintained
10163 F:      drivers/mcb/
10164 F:      include/linux/mcb.h
10165 F:      Documentation/men-chameleon-bus.txt
10166
10167 MEN F21BMC (Board Management Controller)
10168 M:      Andreas Werner <andreas.werner@men.de>
10169 S:      Supported
10170 F:      drivers/mfd/menf21bmc.c
10171 F:      drivers/watchdog/menf21bmc_wdt.c
10172 F:      drivers/leds/leds-menf21bmc.c
10173 F:      drivers/hwmon/menf21bmc_hwmon.c
10174 F:      Documentation/hwmon/menf21bmc.rst
10175
10176 MEN Z069 WATCHDOG DRIVER
10177 M:      Johannes Thumshirn <jth@kernel.org>
10178 L:      linux-watchdog@vger.kernel.org
10179 S:      Maintained
10180 F:      drivers/watchdog/menz69_wdt.c
10181
10182 MESON AO CEC DRIVER FOR AMLOGIC SOCS
10183 M:      Neil Armstrong <narmstrong@baylibre.com>
10184 L:      linux-media@lists.freedesktop.org
10185 L:      linux-amlogic@lists.infradead.org
10186 W:      http://linux-meson.com/
10187 S:      Supported
10188 F:      drivers/media/platform/meson/ao-cec.c
10189 F:      drivers/media/platform/meson/ao-cec-g12a.c
10190 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
10191 T:      git git://linuxtv.org/media_tree.git
10192
10193 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
10194 M:      Liang Yang <liang.yang@amlogic.com>
10195 L:      linux-mtd@lists.infradead.org
10196 S:      Maintained
10197 F:      drivers/mtd/nand/raw/meson_*
10198 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
10199
10200 METHODE UDPU SUPPORT
10201 M:      Vladimir Vid <vladimir.vid@sartura.hr>
10202 S:      Maintained
10203 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
10204
10205 MICROBLAZE ARCHITECTURE
10206 M:      Michal Simek <monstr@monstr.eu>
10207 W:      http://www.monstr.eu/fdt/
10208 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
10209 S:      Supported
10210 F:      arch/microblaze/
10211
10212 MICROCHIP AT91 SERIAL DRIVER
10213 M:      Richard Genoud <richard.genoud@gmail.com>
10214 S:      Maintained
10215 F:      drivers/tty/serial/atmel_serial.c
10216 F:      drivers/tty/serial/atmel_serial.h
10217 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10218
10219 MICROCHIP AUDIO ASOC DRIVERS
10220 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
10221 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10222 S:      Supported
10223 F:      sound/soc/atmel
10224
10225 MICROCHIP DMA DRIVER
10226 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10228 L:      dmaengine@vger.kernel.org
10229 S:      Supported
10230 F:      drivers/dma/at_hdmac.c
10231 F:      drivers/dma/at_hdmac_regs.h
10232 F:      include/linux/platform_data/dma-atmel.h
10233 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
10234 F:      include/dt-bindings/dma/at91.h
10235
10236 MICROCHIP ECC DRIVER
10237 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10238 L:      linux-crypto@vger.kernel.org
10239 S:      Maintained
10240 F:      drivers/crypto/atmel-ecc.*
10241
10242 MICROCHIP I2C DRIVER
10243 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10244 L:      linux-i2c@vger.kernel.org
10245 S:      Supported
10246 F:      drivers/i2c/busses/i2c-at91.h
10247 F:      drivers/i2c/busses/i2c-at91-*.c
10248
10249 MICROCHIP ISC DRIVER
10250 M:      Eugen Hristev <eugen.hristev@microchip.com>
10251 L:      linux-media@vger.kernel.org
10252 S:      Supported
10253 F:      drivers/media/platform/atmel/atmel-isc.c
10254 F:      drivers/media/platform/atmel/atmel-isc-regs.h
10255 F:      Documentation/devicetree/bindings/media/atmel-isc.txt
10256
10257 MICROCHIP ISI DRIVER
10258 M:      Eugen Hristev <eugen.hristev@microchip.com>
10259 L:      linux-media@vger.kernel.org
10260 S:      Supported
10261 F:      drivers/media/platform/atmel/atmel-isi.c
10262 F:      drivers/media/platform/atmel/atmel-isi.h
10263
10264 MICROCHIP AT91 USART MFD DRIVER
10265 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10266 L:      linux-kernel@vger.kernel.org
10267 S:      Supported
10268 F:      drivers/mfd/at91-usart.c
10269 F:      include/dt-bindings/mfd/at91-usart.h
10270 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10271
10272 MICROCHIP AT91 USART SPI DRIVER
10273 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
10274 L:      linux-spi@vger.kernel.org
10275 S:      Supported
10276 F:      drivers/spi/spi-at91-usart.c
10277 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
10278
10279 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
10280 M:      Woojung Huh <woojung.huh@microchip.com>
10281 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10282 L:      netdev@vger.kernel.org
10283 S:      Maintained
10284 F:      net/dsa/tag_ksz.c
10285 F:      drivers/net/dsa/microchip/*
10286 F:      include/linux/platform_data/microchip-ksz.h
10287 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
10288
10289 MICROCHIP LAN743X ETHERNET DRIVER
10290 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
10291 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10292 L:      netdev@vger.kernel.org
10293 S:      Maintained
10294 F:      drivers/net/ethernet/microchip/lan743x_*
10295
10296 MICROCHIP LCDFB DRIVER
10297 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10298 L:      linux-fbdev@vger.kernel.org
10299 S:      Maintained
10300 F:      drivers/video/fbdev/atmel_lcdfb.c
10301 F:      include/video/atmel_lcdc.h
10302
10303 MICROCHIP MMC/SD/SDIO MCI DRIVER
10304 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10305 S:      Maintained
10306 F:      drivers/mmc/host/atmel-mci.c
10307
10308 MICROCHIP MCP16502 PMIC DRIVER
10309 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10311 S:      Maintained
10312 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
10313 F:      drivers/regulator/mcp16502.c
10314
10315 MICROCHIP MCP3911 ADC DRIVER
10316 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
10317 M:      Kent Gustavsson <kent@minoris.se>
10318 L:      linux-iio@vger.kernel.org
10319 S:      Supported
10320 F:      drivers/iio/adc/mcp3911.c
10321 F:      Documentation/devicetree/bindings/iio/adc/mcp3911.txt
10322
10323 MICROCHIP NAND DRIVER
10324 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
10325 L:      linux-mtd@lists.infradead.org
10326 S:      Supported
10327 F:      drivers/mtd/nand/raw/atmel/*
10328 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
10329
10330 MICROCHIP PWM DRIVER
10331 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
10332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10333 L:      linux-pwm@vger.kernel.org
10334 S:      Supported
10335 F:      drivers/pwm/pwm-atmel.c
10336 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
10337
10338 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
10339 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10340 M:      Eugen Hristev <eugen.hristev@microchip.com>
10341 L:      linux-iio@vger.kernel.org
10342 S:      Supported
10343 F:      drivers/iio/adc/at91-sama5d2_adc.c
10344 F:      Documentation/devicetree/bindings/iio/adc/at91-sama5d2_adc.txt
10345 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
10346
10347 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
10348 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10349 S:      Supported
10350 F:      drivers/power/reset/at91-sama5d2_shdwc.c
10351
10352 MICROCHIP SAMA5D2-COMPATIBLE PIOBU GPIO
10353 M:      Andrei Stefanescu <andrei.stefanescu@microchip.com>
10354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10355 L:      linux-gpio@vger.kernel.org
10356 F:      drivers/gpio/gpio-sama5d2-piobu.c
10357
10358 MICROCHIP SPI DRIVER
10359 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10360 S:      Supported
10361 F:      drivers/spi/spi-atmel.*
10362
10363 MICROCHIP SSC DRIVER
10364 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10366 S:      Supported
10367 F:      drivers/misc/atmel-ssc.c
10368 F:      include/linux/atmel-ssc.h
10369
10370 MICROCHIP TIMER COUNTER (TC) AND CLOCKSOURCE DRIVERS
10371 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
10372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10373 S:      Supported
10374 F:      drivers/misc/atmel_tclib.c
10375 F:      drivers/clocksource/tcb_clksrc.c
10376
10377 MICROCHIP USBA UDC DRIVER
10378 M:      Cristian Birsan <cristian.birsan@microchip.com>
10379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10380 S:      Supported
10381 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
10382
10383 MICROCHIP USB251XB DRIVER
10384 M:      Richard Leitner <richard.leitner@skidata.com>
10385 L:      linux-usb@vger.kernel.org
10386 S:      Maintained
10387 F:      drivers/usb/misc/usb251xb.c
10388 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
10389
10390 MICROCHIP XDMA DRIVER
10391 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10392 L:      linux-arm-kernel@lists.infradead.org
10393 L:      dmaengine@vger.kernel.org
10394 S:      Supported
10395 F:      drivers/dma/at_xdmac.c
10396
10397 MICROSEMI MIPS SOCS
10398 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10399 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10400 L:      linux-mips@vger.kernel.org
10401 S:      Supported
10402 F:      arch/mips/generic/board-ocelot.c
10403 F:      arch/mips/configs/generic/board-ocelot.config
10404 F:      arch/mips/boot/dts/mscc/
10405 F:      Documentation/devicetree/bindings/mips/mscc.txt
10406
10407 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
10408 M:      Don Brace <don.brace@microsemi.com>
10409 L:      esc.storagedev@microsemi.com
10410 L:      linux-scsi@vger.kernel.org
10411 S:      Supported
10412 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
10413 F:      drivers/scsi/smartpqi/Kconfig
10414 F:      drivers/scsi/smartpqi/Makefile
10415 F:      include/linux/cciss*.h
10416 F:      include/uapi/linux/cciss*.h
10417 F:      Documentation/scsi/smartpqi.txt
10418
10419 MICROSEMI ETHERNET SWITCH DRIVER
10420 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
10421 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
10422 L:      netdev@vger.kernel.org
10423 S:      Supported
10424 F:      drivers/net/ethernet/mscc/
10425
10426 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
10427 M:      Chen Yu <yu.c.chen@intel.com>
10428 L:      platform-driver-x86@vger.kernel.org
10429 S:      Supported
10430 F:      drivers/platform/x86/surfacepro3_button.c
10431
10432 MICROTEK X6 SCANNER
10433 M:      Oliver Neukum <oliver@neukum.org>
10434 S:      Maintained
10435 F:      drivers/usb/image/microtek.*
10436
10437 MIPS
10438 M:      Ralf Baechle <ralf@linux-mips.org>
10439 M:      Paul Burton <paul.burton@mips.com>
10440 M:      James Hogan <jhogan@kernel.org>
10441 L:      linux-mips@vger.kernel.org
10442 W:      http://www.linux-mips.org/
10443 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
10444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
10445 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
10446 S:      Supported
10447 F:      Documentation/devicetree/bindings/mips/
10448 F:      Documentation/mips/
10449 F:      arch/mips/
10450 F:      drivers/platform/mips/
10451
10452 MIPS BOSTON DEVELOPMENT BOARD
10453 M:      Paul Burton <paul.burton@mips.com>
10454 L:      linux-mips@vger.kernel.org
10455 S:      Maintained
10456 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
10457 F:      arch/mips/boot/dts/img/boston.dts
10458 F:      arch/mips/configs/generic/board-boston.config
10459 F:      drivers/clk/imgtec/clk-boston.c
10460 F:      include/dt-bindings/clock/boston-clock.h
10461
10462 MIPS GENERIC PLATFORM
10463 M:      Paul Burton <paul.burton@mips.com>
10464 L:      linux-mips@vger.kernel.org
10465 S:      Supported
10466 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
10467 F:      arch/mips/generic/
10468 F:      arch/mips/tools/generic-board-config.sh
10469
10470 MIPS/LOONGSON1 ARCHITECTURE
10471 M:      Keguang Zhang <keguang.zhang@gmail.com>
10472 L:      linux-mips@vger.kernel.org
10473 S:      Maintained
10474 F:      arch/mips/loongson32/
10475 F:      arch/mips/include/asm/mach-loongson32/
10476 F:      drivers/*/*loongson1*
10477 F:      drivers/*/*/*loongson1*
10478
10479 MIPS/LOONGSON2 ARCHITECTURE
10480 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
10481 L:      linux-mips@vger.kernel.org
10482 S:      Maintained
10483 F:      arch/mips/loongson64/fuloong-2e/
10484 F:      arch/mips/loongson64/lemote-2f/
10485 F:      arch/mips/include/asm/mach-loongson64/
10486 F:      drivers/*/*loongson2*
10487 F:      drivers/*/*/*loongson2*
10488
10489 MIPS/LOONGSON3 ARCHITECTURE
10490 M:      Huacai Chen <chenhc@lemote.com>
10491 L:      linux-mips@vger.kernel.org
10492 S:      Maintained
10493 F:      arch/mips/loongson64/
10494 F:      arch/mips/include/asm/mach-loongson64/
10495 F:      drivers/platform/mips/cpu_hwmon.c
10496 F:      drivers/*/*loongson3*
10497 F:      drivers/*/*/*loongson3*
10498
10499 MIPS RINT INSTRUCTION EMULATION
10500 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
10501 L:      linux-mips@vger.kernel.org
10502 S:      Supported
10503 F:      arch/mips/math-emu/sp_rint.c
10504 F:      arch/mips/math-emu/dp_rint.c
10505
10506 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
10507 M:      Hans Verkuil <hverkuil@xs4all.nl>
10508 L:      linux-media@vger.kernel.org
10509 T:      git git://linuxtv.org/media_tree.git
10510 W:      https://linuxtv.org
10511 S:      Odd Fixes
10512 F:      drivers/media/radio/radio-miropcm20*
10513
10514 MMP SUPPORT
10515 R:      Lubomir Rintel <lkundrak@v3.sk>
10516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10517 S:      Odd Fixes
10518 F:      arch/arm/boot/dts/mmp*
10519 F:      arch/arm/mach-mmp/
10520
10521 MMU GATHER AND TLB INVALIDATION
10522 M:      Will Deacon <will.deacon@arm.com>
10523 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
10524 M:      Andrew Morton <akpm@linux-foundation.org>
10525 M:      Nick Piggin <npiggin@gmail.com>
10526 M:      Peter Zijlstra <peterz@infradead.org>
10527 L:      linux-arch@vger.kernel.org
10528 L:      linux-mm@kvack.org
10529 S:      Maintained
10530 F:      arch/*/include/asm/tlb.h
10531 F:      include/asm-generic/tlb.h
10532 F:      mm/mmu_gather.c
10533
10534 MN88472 MEDIA DRIVER
10535 M:      Antti Palosaari <crope@iki.fi>
10536 L:      linux-media@vger.kernel.org
10537 W:      https://linuxtv.org
10538 W:      http://palosaari.fi/linux/
10539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10540 S:      Maintained
10541 F:      drivers/media/dvb-frontends/mn88472*
10542
10543 MN88473 MEDIA DRIVER
10544 M:      Antti Palosaari <crope@iki.fi>
10545 L:      linux-media@vger.kernel.org
10546 W:      https://linuxtv.org
10547 W:      http://palosaari.fi/linux/
10548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10549 S:      Maintained
10550 F:      drivers/media/dvb-frontends/mn88473*
10551
10552 MODULE SUPPORT
10553 M:      Jessica Yu <jeyu@kernel.org>
10554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
10555 S:      Maintained
10556 F:      include/linux/module.h
10557 F:      kernel/module.c
10558
10559 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
10560 W:      http://popies.net/meye/
10561 S:      Orphan
10562 F:      Documentation/media/v4l-drivers/meye*
10563 F:      drivers/media/pci/meye/
10564 F:      include/uapi/linux/meye.h
10565
10566 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
10567 M:      Jiri Slaby <jirislaby@gmail.com>
10568 S:      Maintained
10569 F:      Documentation/serial/moxa-smartio.rst
10570 F:      drivers/tty/mxser.*
10571
10572 MR800 AVERMEDIA USB FM RADIO DRIVER
10573 M:      Alexey Klimov <klimov.linux@gmail.com>
10574 L:      linux-media@vger.kernel.org
10575 T:      git git://linuxtv.org/media_tree.git
10576 S:      Maintained
10577 F:      drivers/media/radio/radio-mr800.c
10578
10579 MRF24J40 IEEE 802.15.4 RADIO DRIVER
10580 M:      Alan Ott <alan@signal11.us>
10581 L:      linux-wpan@vger.kernel.org
10582 S:      Maintained
10583 F:      drivers/net/ieee802154/mrf24j40.c
10584 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
10585
10586 MSI LAPTOP SUPPORT
10587 M:      "Lee, Chun-Yi" <jlee@suse.com>
10588 L:      platform-driver-x86@vger.kernel.org
10589 S:      Maintained
10590 F:      drivers/platform/x86/msi-laptop.c
10591
10592 MSI WMI SUPPORT
10593 L:      platform-driver-x86@vger.kernel.org
10594 S:      Orphan
10595 F:      drivers/platform/x86/msi-wmi.c
10596
10597 MSI001 MEDIA DRIVER
10598 M:      Antti Palosaari <crope@iki.fi>
10599 L:      linux-media@vger.kernel.org
10600 W:      https://linuxtv.org
10601 W:      http://palosaari.fi/linux/
10602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10603 T:      git git://linuxtv.org/anttip/media_tree.git
10604 S:      Maintained
10605 F:      drivers/media/tuners/msi001*
10606
10607 MSI2500 MEDIA DRIVER
10608 M:      Antti Palosaari <crope@iki.fi>
10609 L:      linux-media@vger.kernel.org
10610 W:      https://linuxtv.org
10611 W:      http://palosaari.fi/linux/
10612 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10613 T:      git git://linuxtv.org/anttip/media_tree.git
10614 S:      Maintained
10615 F:      drivers/media/usb/msi2500/
10616
10617 MSYSTEMS DISKONCHIP G3 MTD DRIVER
10618 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10619 L:      linux-mtd@lists.infradead.org
10620 S:      Maintained
10621 F:      drivers/mtd/devices/docg3*
10622
10623 MT9M032 APTINA SENSOR DRIVER
10624 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10625 L:      linux-media@vger.kernel.org
10626 T:      git git://linuxtv.org/media_tree.git
10627 S:      Maintained
10628 F:      drivers/media/i2c/mt9m032.c
10629 F:      include/media/i2c/mt9m032.h
10630
10631 MT9P031 APTINA CAMERA SENSOR
10632 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10633 L:      linux-media@vger.kernel.org
10634 T:      git git://linuxtv.org/media_tree.git
10635 S:      Maintained
10636 F:      drivers/media/i2c/mt9p031.c
10637 F:      include/media/i2c/mt9p031.h
10638
10639 MT9T001 APTINA CAMERA SENSOR
10640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10641 L:      linux-media@vger.kernel.org
10642 T:      git git://linuxtv.org/media_tree.git
10643 S:      Maintained
10644 F:      drivers/media/i2c/mt9t001.c
10645 F:      include/media/i2c/mt9t001.h
10646
10647 MT9T112 APTINA CAMERA SENSOR
10648 M:      Jacopo Mondi <jacopo@jmondi.org>
10649 L:      linux-media@vger.kernel.org
10650 T:      git git://linuxtv.org/media_tree.git
10651 S:      Odd Fixes
10652 F:      drivers/media/i2c/mt9t112.c
10653 F:      include/media/i2c/mt9t112.h
10654
10655 MT9V032 APTINA CAMERA SENSOR
10656 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10657 L:      linux-media@vger.kernel.org
10658 T:      git git://linuxtv.org/media_tree.git
10659 S:      Maintained
10660 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
10661 F:      drivers/media/i2c/mt9v032.c
10662 F:      include/media/i2c/mt9v032.h
10663
10664 MT9V111 APTINA CAMERA SENSOR
10665 M:      Jacopo Mondi <jacopo@jmondi.org>
10666 L:      linux-media@vger.kernel.org
10667 T:      git git://linuxtv.org/media_tree.git
10668 S:      Maintained
10669 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.txt
10670 F:      drivers/media/i2c/mt9v111.c
10671
10672 MULTIFUNCTION DEVICES (MFD)
10673 M:      Lee Jones <lee.jones@linaro.org>
10674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10675 S:      Supported
10676 F:      Documentation/devicetree/bindings/mfd/
10677 F:      drivers/mfd/
10678 F:      include/linux/mfd/
10679 F:      include/dt-bindings/mfd/
10680
10681 MULTIMEDIA CARD (MMC) ETC. OVER SPI
10682 S:      Orphan
10683 F:      drivers/mmc/host/mmc_spi.c
10684 F:      include/linux/spi/mmc_spi.h
10685
10686 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
10687 M:      Ulf Hansson <ulf.hansson@linaro.org>
10688 L:      linux-mmc@vger.kernel.org
10689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
10690 S:      Maintained
10691 F:      Documentation/devicetree/bindings/mmc/
10692 F:      drivers/mmc/
10693 F:      include/linux/mmc/
10694 F:      include/uapi/linux/mmc/
10695
10696 MULTIPLEXER SUBSYSTEM
10697 M:      Peter Rosin <peda@axentia.se>
10698 S:      Maintained
10699 F:      Documentation/ABI/testing/sysfs-class-mux*
10700 F:      Documentation/devicetree/bindings/mux/
10701 F:      include/dt-bindings/mux/
10702 F:      include/linux/mux/
10703 F:      drivers/mux/
10704
10705 MULTITECH MULTIPORT CARD (ISICOM)
10706 S:      Orphan
10707 F:      drivers/tty/isicom.c
10708 F:      include/linux/isicom.h
10709
10710 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
10711 M:      Bin Liu <b-liu@ti.com>
10712 L:      linux-usb@vger.kernel.org
10713 S:      Maintained
10714 F:      drivers/usb/musb/
10715
10716 MXL301RF MEDIA DRIVER
10717 M:      Akihiro Tsukada <tskd08@gmail.com>
10718 L:      linux-media@vger.kernel.org
10719 S:      Odd Fixes
10720 F:      drivers/media/tuners/mxl301rf*
10721
10722 MXL5007T MEDIA DRIVER
10723 M:      Michael Krufky <mkrufky@linuxtv.org>
10724 L:      linux-media@vger.kernel.org
10725 W:      https://linuxtv.org
10726 W:      http://github.com/mkrufky
10727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10728 T:      git git://linuxtv.org/mkrufky/tuners.git
10729 S:      Maintained
10730 F:      drivers/media/tuners/mxl5007t.*
10731
10732 MXSFB DRM DRIVER
10733 M:      Marek Vasut <marex@denx.de>
10734 M:      Stefan Agner <stefan@agner.ch>
10735 L:      dri-devel@lists.freedesktop.org
10736 S:      Supported
10737 F:      drivers/gpu/drm/mxsfb/
10738 F:      Documentation/devicetree/bindings/display/mxsfb.txt
10739 T:      git git://anongit.freedesktop.org/drm/drm-misc
10740
10741 MYLEX DAC960 PCI RAID Controller
10742 M:      Hannes Reinecke <hare@kernel.org>
10743 L:      linux-scsi@vger.kernel.org
10744 S:      Supported
10745 F:      drivers/scsi/myrb.*
10746 F:      drivers/scsi/myrs.*
10747
10748 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
10749 M:      Chris Lee <christopher.lee@cspi.com>
10750 L:      netdev@vger.kernel.org
10751 W:      https://www.cspi.com/ethernet-products/support/downloads/
10752 S:      Supported
10753 F:      drivers/net/ethernet/myricom/myri10ge/
10754
10755 NAND FLASH SUBSYSTEM
10756 M:      Miquel Raynal <miquel.raynal@bootlin.com>
10757 R:      Richard Weinberger <richard@nod.at>
10758 L:      linux-mtd@lists.infradead.org
10759 W:      http://www.linux-mtd.infradead.org/
10760 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
10761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
10762 S:      Maintained
10763 F:      drivers/mtd/nand/
10764 F:      include/linux/mtd/*nand*.h
10765
10766 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
10767 M:      Daniel Mack <zonque@gmail.com>
10768 S:      Maintained
10769 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10770 W:      http://www.native-instruments.com
10771 F:      sound/usb/caiaq/
10772
10773 NATSEMI ETHERNET DRIVER (DP8381x)
10774 S:      Orphan
10775 F:      drivers/net/ethernet/natsemi/natsemi.c
10776
10777 NCR 5380 SCSI DRIVERS
10778 M:      Finn Thain <fthain@telegraphics.com.au>
10779 M:      Michael Schmitz <schmitzmic@gmail.com>
10780 L:      linux-scsi@vger.kernel.org
10781 S:      Maintained
10782 F:      Documentation/scsi/g_NCR5380.txt
10783 F:      drivers/scsi/NCR5380.*
10784 F:      drivers/scsi/arm/cumana_1.c
10785 F:      drivers/scsi/arm/oak.c
10786 F:      drivers/scsi/atari_scsi.*
10787 F:      drivers/scsi/dmx3191d.c
10788 F:      drivers/scsi/g_NCR5380.*
10789 F:      drivers/scsi/mac_scsi.*
10790 F:      drivers/scsi/sun3_scsi.*
10791 F:      drivers/scsi/sun3_scsi_vme.c
10792
10793 NCSI LIBRARY:
10794 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
10795 S:      Maintained
10796 F:      net/ncsi/
10797
10798 NCT6775 HARDWARE MONITOR DRIVER
10799 M:      Guenter Roeck <linux@roeck-us.net>
10800 L:      linux-hwmon@vger.kernel.org
10801 S:      Maintained
10802 F:      Documentation/hwmon/nct6775.rst
10803 F:      drivers/hwmon/nct6775.c
10804
10805 NET_FAILOVER MODULE
10806 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
10807 L:      netdev@vger.kernel.org
10808 S:      Supported
10809 F:      driver/net/net_failover.c
10810 F:      include/net/net_failover.h
10811 F:      Documentation/networking/net_failover.rst
10812
10813 NETEFFECT IWARP RNIC DRIVER (IW_NES)
10814 M:      Faisal Latif <faisal.latif@intel.com>
10815 L:      linux-rdma@vger.kernel.org
10816 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
10817 S:      Supported
10818 F:      drivers/infiniband/hw/nes/
10819 F:      include/uapi/rdma/nes-abi.h
10820
10821 NETEM NETWORK EMULATOR
10822 M:      Stephen Hemminger <stephen@networkplumber.org>
10823 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
10824 S:      Maintained
10825 F:      net/sched/sch_netem.c
10826
10827 NETERION 10GbE DRIVERS (s2io/vxge)
10828 M:      Jon Mason <jdmason@kudzu.us>
10829 L:      netdev@vger.kernel.org
10830 S:      Supported
10831 F:      Documentation/networking/device_drivers/neterion/s2io.txt
10832 F:      Documentation/networking/device_drivers/neterion/vxge.txt
10833 F:      drivers/net/ethernet/neterion/
10834
10835 NETFILTER
10836 M:      Pablo Neira Ayuso <pablo@netfilter.org>
10837 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
10838 M:      Florian Westphal <fw@strlen.de>
10839 L:      netfilter-devel@vger.kernel.org
10840 L:      coreteam@netfilter.org
10841 W:      http://www.netfilter.org/
10842 W:      http://www.iptables.org/
10843 W:      http://www.nftables.org/
10844 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
10845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
10847 S:      Maintained
10848 F:      include/linux/netfilter*
10849 F:      include/linux/netfilter/
10850 F:      include/net/netfilter/
10851 F:      include/uapi/linux/netfilter*
10852 F:      include/uapi/linux/netfilter/
10853 F:      net/*/netfilter.c
10854 F:      net/*/netfilter/
10855 F:      net/netfilter/
10856 F:      net/bridge/br_netfilter*.c
10857
10858 NETROM NETWORK LAYER
10859 M:      Ralf Baechle <ralf@linux-mips.org>
10860 L:      linux-hams@vger.kernel.org
10861 W:      http://www.linux-ax25.org/
10862 S:      Maintained
10863 F:      include/net/netrom.h
10864 F:      include/uapi/linux/netrom.h
10865 F:      net/netrom/
10866
10867 NETRONOME ETHERNET DRIVERS
10868 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
10869 L:      oss-drivers@netronome.com
10870 S:      Maintained
10871 F:      drivers/net/ethernet/netronome/
10872
10873 NETWORK BLOCK DEVICE (NBD)
10874 M:      Josef Bacik <josef@toxicpanda.com>
10875 S:      Maintained
10876 L:      linux-block@vger.kernel.org
10877 L:      nbd@other.debian.org
10878 F:      Documentation/blockdev/nbd.txt
10879 F:      drivers/block/nbd.c
10880 F:      include/trace/events/nbd.h
10881 F:      include/uapi/linux/nbd.h
10882
10883 NETWORK DROP MONITOR
10884 M:      Neil Horman <nhorman@tuxdriver.com>
10885 L:      netdev@vger.kernel.org
10886 S:      Maintained
10887 W:      https://fedorahosted.org/dropwatch/
10888 F:      net/core/drop_monitor.c
10889
10890 NETWORKING DRIVERS
10891 M:      "David S. Miller" <davem@davemloft.net>
10892 L:      netdev@vger.kernel.org
10893 W:      http://www.linuxfoundation.org/en/Net
10894 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10897 S:      Odd Fixes
10898 F:      Documentation/devicetree/bindings/net/
10899 F:      drivers/net/
10900 F:      include/linux/if_*
10901 F:      include/linux/netdevice.h
10902 F:      include/linux/etherdevice.h
10903 F:      include/linux/fcdevice.h
10904 F:      include/linux/fddidevice.h
10905 F:      include/linux/hippidevice.h
10906 F:      include/linux/inetdevice.h
10907 F:      include/uapi/linux/if_*
10908 F:      include/uapi/linux/netdevice.h
10909
10910 NETWORKING DRIVERS (WIRELESS)
10911 M:      Kalle Valo <kvalo@codeaurora.org>
10912 L:      linux-wireless@vger.kernel.org
10913 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
10915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
10916 S:      Maintained
10917 F:      Documentation/devicetree/bindings/net/wireless/
10918 F:      drivers/net/wireless/
10919
10920 NETWORKING [DSA]
10921 M:      Andrew Lunn <andrew@lunn.ch>
10922 M:      Vivien Didelot <vivien.didelot@gmail.com>
10923 M:      Florian Fainelli <f.fainelli@gmail.com>
10924 S:      Maintained
10925 F:      Documentation/devicetree/bindings/net/dsa/
10926 F:      net/dsa/
10927 F:      include/net/dsa.h
10928 F:      include/linux/dsa/
10929 F:      include/linux/platform_data/dsa.h
10930 F:      drivers/net/dsa/
10931
10932 NETWORKING [GENERAL]
10933 M:      "David S. Miller" <davem@davemloft.net>
10934 L:      netdev@vger.kernel.org
10935 W:      http://www.linuxfoundation.org/en/Net
10936 Q:      http://patchwork.ozlabs.org/project/netdev/list/
10937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
10939 B:      mailto:netdev@vger.kernel.org
10940 S:      Maintained
10941 F:      net/
10942 F:      include/net/
10943 F:      include/linux/in.h
10944 F:      include/linux/net.h
10945 F:      include/linux/netdevice.h
10946 F:      include/uapi/linux/in.h
10947 F:      include/uapi/linux/net.h
10948 F:      include/uapi/linux/netdevice.h
10949 F:      include/uapi/linux/net_namespace.h
10950 F:      tools/testing/selftests/net/
10951 F:      lib/net_utils.c
10952 F:      lib/random32.c
10953 F:      Documentation/networking/
10954
10955 NETWORKING [IPSEC]
10956 M:      Steffen Klassert <steffen.klassert@secunet.com>
10957 M:      Herbert Xu <herbert@gondor.apana.org.au>
10958 M:      "David S. Miller" <davem@davemloft.net>
10959 L:      netdev@vger.kernel.org
10960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
10961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
10962 S:      Maintained
10963 F:      net/xfrm/
10964 F:      net/key/
10965 F:      net/ipv4/xfrm*
10966 F:      net/ipv4/esp4*
10967 F:      net/ipv4/ah4.c
10968 F:      net/ipv4/ipcomp.c
10969 F:      net/ipv4/ip_vti.c
10970 F:      net/ipv6/xfrm*
10971 F:      net/ipv6/esp6*
10972 F:      net/ipv6/ah6.c
10973 F:      net/ipv6/ipcomp6.c
10974 F:      net/ipv6/ip6_vti.c
10975 F:      include/uapi/linux/xfrm.h
10976 F:      include/net/xfrm.h
10977
10978 NETWORKING [IPv4/IPv6]
10979 M:      "David S. Miller" <davem@davemloft.net>
10980 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
10981 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
10982 L:      netdev@vger.kernel.org
10983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
10984 S:      Maintained
10985 F:      net/ipv4/
10986 F:      net/ipv6/
10987 F:      include/net/ip*
10988 F:      arch/x86/net/*
10989
10990 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
10991 M:      Paul Moore <paul@paul-moore.com>
10992 W:      https://github.com/netlabel
10993 L:      netdev@vger.kernel.org
10994 L:      linux-security-module@vger.kernel.org
10995 S:      Maintained
10996 F:      Documentation/netlabel/
10997 F:      include/net/calipso.h
10998 F:      include/net/cipso_ipv4.h
10999 F:      include/net/netlabel.h
11000 F:      include/uapi/linux/netfilter/xt_SECMARK.h
11001 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
11002 F:      net/netlabel/
11003 F:      net/ipv4/cipso_ipv4.c
11004 F:      net/ipv6/calipso.c
11005 F:      net/netfilter/xt_CONNSECMARK.c
11006 F:      net/netfilter/xt_SECMARK.c
11007
11008 NETWORKING [TCP]
11009 M:      Eric Dumazet <edumazet@google.com>
11010 L:      netdev@vger.kernel.org
11011 S:      Maintained
11012 F:      net/ipv4/tcp*.c
11013 F:      net/ipv4/syncookies.c
11014 F:      net/ipv6/tcp*.c
11015 F:      net/ipv6/syncookies.c
11016 F:      include/uapi/linux/tcp.h
11017 F:      include/net/tcp.h
11018 F:      include/linux/tcp.h
11019 F:      include/trace/events/tcp.h
11020
11021 NETWORKING [TLS]
11022 M:      Boris Pismenny <borisp@mellanox.com>
11023 M:      Aviad Yehezkel <aviadye@mellanox.com>
11024 M:      Dave Watson <davejwatson@fb.com>
11025 M:      John Fastabend <john.fastabend@gmail.com>
11026 M:      Daniel Borkmann <daniel@iogearbox.net>
11027 L:      netdev@vger.kernel.org
11028 S:      Maintained
11029 F:      net/tls/*
11030 F:      include/uapi/linux/tls.h
11031 F:      include/net/tls.h
11032
11033 NETWORKING [WIRELESS]
11034 L:      linux-wireless@vger.kernel.org
11035 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
11036
11037 NETDEVSIM
11038 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
11039 S:      Maintained
11040 F:      drivers/net/netdevsim/*
11041
11042 NETXEN (1/10) GbE SUPPORT
11043 M:      Manish Chopra <manishc@marvell.com>
11044 M:      Rahul Verma <rahulv@marvell.com>
11045 M:      GR-Linux-NIC-Dev@marvell.com
11046 L:      netdev@vger.kernel.org
11047 S:      Supported
11048 F:      drivers/net/ethernet/qlogic/netxen/
11049
11050 NFC SUBSYSTEM
11051 L:      netdev@vger.kernel.org
11052 S:      Orphan
11053 F:      net/nfc/
11054 F:      include/net/nfc/
11055 F:      include/uapi/linux/nfc.h
11056 F:      drivers/nfc/
11057 F:      include/linux/platform_data/nfcmrvl.h
11058 F:      include/linux/platform_data/nxp-nci.h
11059 F:      Documentation/devicetree/bindings/net/nfc/
11060
11061 NFS, SUNRPC, AND LOCKD CLIENTS
11062 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
11063 M:      Anna Schumaker <anna.schumaker@netapp.com>
11064 L:      linux-nfs@vger.kernel.org
11065 W:      http://client.linux-nfs.org
11066 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
11067 S:      Maintained
11068 F:      fs/lockd/
11069 F:      fs/nfs/
11070 F:      fs/nfs_common/
11071 F:      net/sunrpc/
11072 F:      include/linux/lockd/
11073 F:      include/linux/nfs*
11074 F:      include/linux/sunrpc/
11075 F:      include/uapi/linux/nfs*
11076 F:      include/uapi/linux/sunrpc/
11077
11078 NILFS2 FILESYSTEM
11079 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
11080 L:      linux-nilfs@vger.kernel.org
11081 W:      https://nilfs.sourceforge.io/
11082 W:      https://nilfs.osdn.jp/
11083 T:      git git://github.com/konis/nilfs2.git
11084 S:      Supported
11085 F:      Documentation/filesystems/nilfs2.txt
11086 F:      fs/nilfs2/
11087 F:      include/trace/events/nilfs2.h
11088 F:      include/uapi/linux/nilfs2_api.h
11089 F:      include/uapi/linux/nilfs2_ondisk.h
11090
11091 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
11092 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11093 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11094 S:      Maintained
11095 F:      Documentation/scsi/NinjaSCSI.txt
11096 F:      drivers/scsi/pcmcia/nsp_*
11097
11098 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
11099 M:      GOTO Masanori <gotom@debian.or.jp>
11100 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
11101 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
11102 S:      Maintained
11103 F:      Documentation/scsi/NinjaSCSI.txt
11104 F:      drivers/scsi/nsp32*
11105
11106 NIOS2 ARCHITECTURE
11107 M:      Ley Foon Tan <lftan@altera.com>
11108 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
11109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
11110 S:      Maintained
11111 F:      arch/nios2/
11112
11113 NOHZ, DYNTICKS SUPPORT
11114 M:      Frederic Weisbecker <fweisbec@gmail.com>
11115 M:      Thomas Gleixner <tglx@linutronix.de>
11116 M:      Ingo Molnar <mingo@kernel.org>
11117 L:      linux-kernel@vger.kernel.org
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
11119 S:      Maintained
11120 F:      kernel/time/tick*.*
11121 F:      include/linux/tick.h
11122 F:      include/linux/sched/nohz.h
11123
11124 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
11125 M:      Pavel Machek <pavel@ucw.cz>
11126 M:      Sakari Ailus <sakari.ailus@iki.fi>
11127 L:      linux-media@vger.kernel.org
11128 S:      Maintained
11129 F:      drivers/media/i2c/et8ek8
11130 F:      drivers/media/i2c/ad5820.c
11131
11132 NOKIA N900 POWER SUPPLY DRIVERS
11133 R:      Pali Rohár <pali.rohar@gmail.com>
11134 F:      include/linux/power/bq2415x_charger.h
11135 F:      include/linux/power/bq27xxx_battery.h
11136 F:      include/linux/power/isp1704_charger.h
11137 F:      drivers/power/supply/bq2415x_charger.c
11138 F:      drivers/power/supply/bq27xxx_battery.c
11139 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11140 F:      drivers/power/supply/isp1704_charger.c
11141 F:      drivers/power/supply/rx51_battery.c
11142
11143 NOLIBC HEADER FILE
11144 M:      Willy Tarreau <w@1wt.eu>
11145 S:      Maintained
11146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
11147 F:      tools/include/nolibc/
11148
11149 NTB AMD DRIVER
11150 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
11151 L:      linux-ntb@googlegroups.com
11152 S:      Supported
11153 F:      drivers/ntb/hw/amd/
11154
11155 NTB DRIVER CORE
11156 M:      Jon Mason <jdmason@kudzu.us>
11157 M:      Dave Jiang <dave.jiang@intel.com>
11158 M:      Allen Hubbe <allenbh@gmail.com>
11159 L:      linux-ntb@googlegroups.com
11160 S:      Supported
11161 W:      https://github.com/jonmason/ntb/wiki
11162 T:      git git://github.com/jonmason/ntb.git
11163 F:      drivers/ntb/
11164 F:      drivers/net/ntb_netdev.c
11165 F:      include/linux/ntb.h
11166 F:      include/linux/ntb_transport.h
11167 F:      tools/testing/selftests/ntb/
11168
11169 NTB IDT DRIVER
11170 M:      Serge Semin <fancer.lancer@gmail.com>
11171 L:      linux-ntb@googlegroups.com
11172 S:      Supported
11173 F:      drivers/ntb/hw/idt/
11174
11175 NTB INTEL DRIVER
11176 M:      Dave Jiang <dave.jiang@intel.com>
11177 L:      linux-ntb@googlegroups.com
11178 S:      Supported
11179 W:      https://github.com/davejiang/linux/wiki
11180 T:      git https://github.com/davejiang/linux.git
11181 F:      drivers/ntb/hw/intel/
11182
11183 NTFS FILESYSTEM
11184 M:      Anton Altaparmakov <anton@tuxera.com>
11185 L:      linux-ntfs-dev@lists.sourceforge.net
11186 W:      http://www.tuxera.com/
11187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
11188 S:      Supported
11189 F:      Documentation/filesystems/ntfs.txt
11190 F:      fs/ntfs/
11191
11192 NUBUS SUBSYSTEM
11193 M:      Finn Thain <fthain@telegraphics.com.au>
11194 L:      linux-m68k@lists.linux-m68k.org
11195 S:      Maintained
11196 F:      arch/*/include/asm/nubus.h
11197 F:      drivers/nubus/
11198 F:      include/linux/nubus.h
11199 F:      include/uapi/linux/nubus.h
11200
11201 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
11202 M:      Antonino Daplas <adaplas@gmail.com>
11203 L:      linux-fbdev@vger.kernel.org
11204 S:      Maintained
11205 F:      drivers/video/fbdev/riva/
11206 F:      drivers/video/fbdev/nvidia/
11207
11208 NVM EXPRESS DRIVER
11209 M:      Keith Busch <keith.busch@intel.com>
11210 M:      Jens Axboe <axboe@fb.com>
11211 M:      Christoph Hellwig <hch@lst.de>
11212 M:      Sagi Grimberg <sagi@grimberg.me>
11213 L:      linux-nvme@lists.infradead.org
11214 T:      git://git.infradead.org/nvme.git
11215 W:      http://git.infradead.org/nvme.git
11216 S:      Supported
11217 F:      drivers/nvme/host/
11218 F:      include/linux/nvme.h
11219 F:      include/uapi/linux/nvme_ioctl.h
11220
11221 NVM EXPRESS FC TRANSPORT DRIVERS
11222 M:      James Smart <james.smart@broadcom.com>
11223 L:      linux-nvme@lists.infradead.org
11224 S:      Supported
11225 F:      include/linux/nvme-fc.h
11226 F:      include/linux/nvme-fc-driver.h
11227 F:      drivers/nvme/host/fc.c
11228 F:      drivers/nvme/target/fc.c
11229 F:      drivers/nvme/target/fcloop.c
11230
11231 NVM EXPRESS TARGET DRIVER
11232 M:      Christoph Hellwig <hch@lst.de>
11233 M:      Sagi Grimberg <sagi@grimberg.me>
11234 L:      linux-nvme@lists.infradead.org
11235 T:      git://git.infradead.org/nvme.git
11236 W:      http://git.infradead.org/nvme.git
11237 S:      Supported
11238 F:      drivers/nvme/target/
11239
11240 NVMEM FRAMEWORK
11241 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11242 S:      Maintained
11243 F:      drivers/nvmem/
11244 F:      Documentation/devicetree/bindings/nvmem/
11245 F:      Documentation/ABI/stable/sysfs-bus-nvmem
11246 F:      include/linux/nvmem-consumer.h
11247 F:      include/linux/nvmem-provider.h
11248
11249 NXP FXAS21002C DRIVER
11250 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11251 L:      linux-iio@vger.kernel.org
11252 S:      Maintained
11253 F:      Documentation/devicetree/bindings/iio/gyroscope/fxas21002c.txt
11254 F:      drivers/iio/gyro/fxas21002c_core.c
11255 F:      drivers/iio/gyro/fxas21002c.h
11256 F:      drivers/iio/gyro/fxas21002c_i2c.c
11257 F:      drivers/iio/gyro/fxas21002c_spi.c
11258
11259 NXP SGTL5000 DRIVER
11260 M:      Fabio Estevam <festevam@gmail.com>
11261 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11262 S:      Maintained
11263 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
11264 F:      sound/soc/codecs/sgtl5000*
11265
11266 NXP SJA1105 ETHERNET SWITCH DRIVER
11267 M:      Vladimir Oltean <olteanv@gmail.com>
11268 L:      linux-kernel@vger.kernel.org
11269 S:      Maintained
11270 F:      drivers/net/dsa/sja1105
11271
11272 NXP TDA998X DRM DRIVER
11273 M:      Russell King <linux@armlinux.org.uk>
11274 S:      Maintained
11275 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
11276 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
11277 F:      drivers/gpu/drm/i2c/tda998x_drv.c
11278 F:      include/drm/i2c/tda998x.h
11279 F:      include/dt-bindings/display/tda998x.h
11280 K:      "nxp,tda998x"
11281
11282 NXP TFA9879 DRIVER
11283 M:      Peter Rosin <peda@axentia.se>
11284 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11285 S:      Maintained
11286 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
11287 F:      sound/soc/codecs/tfa9879*
11288
11289 NXP-NCI NFC DRIVER
11290 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
11291 R:      Charles Gorand <charles.gorand@effinnov.com>
11292 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11293 S:      Supported
11294 F:      drivers/nfc/nxp-nci
11295
11296 OBJAGG
11297 M:      Jiri Pirko <jiri@mellanox.com>
11298 L:      netdev@vger.kernel.org
11299 S:      Supported
11300 F:      lib/objagg.c
11301 F:      lib/test_objagg.c
11302 F:      include/linux/objagg.h
11303
11304 NXP FSPI DRIVER
11305 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
11306 M:      Ashish Kumar <ashish.kumar@nxp.com>
11307 L:      linux-spi@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/spi/spi-nxp-fspi.c
11310 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
11311
11312 OBJTOOL
11313 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11314 M:      Peter Zijlstra <peterz@infradead.org>
11315 S:      Supported
11316 F:      tools/objtool/
11317
11318 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
11319 M:      Frederic Barrat <fbarrat@linux.ibm.com>
11320 M:      Andrew Donnellan <ajd@linux.ibm.com>
11321 L:      linuxppc-dev@lists.ozlabs.org
11322 S:      Supported
11323 F:      arch/powerpc/platforms/powernv/ocxl.c
11324 F:      arch/powerpc/include/asm/pnv-ocxl.h
11325 F:      drivers/misc/ocxl/
11326 F:      include/misc/ocxl*
11327 F:      include/uapi/misc/ocxl.h
11328 F:      Documentation/accelerators/ocxl.rst
11329
11330 OMAP AUDIO SUPPORT
11331 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11332 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
11333 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11334 L:      linux-omap@vger.kernel.org
11335 S:      Maintained
11336 F:      sound/soc/ti/omap*
11337 F:      sound/soc/ti/rx51.c
11338 F:      sound/soc/ti/n810.c
11339 F:      sound/soc/ti/sdma-pcm.*
11340
11341 OMAP CLOCK FRAMEWORK SUPPORT
11342 M:      Paul Walmsley <paul@pwsan.com>
11343 L:      linux-omap@vger.kernel.org
11344 S:      Maintained
11345 F:      arch/arm/*omap*/*clock*
11346
11347 OMAP DEVICE TREE SUPPORT
11348 M:      Benoît Cousson <bcousson@baylibre.com>
11349 M:      Tony Lindgren <tony@atomide.com>
11350 L:      linux-omap@vger.kernel.org
11351 L:      devicetree@vger.kernel.org
11352 S:      Maintained
11353 F:      arch/arm/boot/dts/*omap*
11354 F:      arch/arm/boot/dts/*am3*
11355 F:      arch/arm/boot/dts/*am4*
11356 F:      arch/arm/boot/dts/*am5*
11357 F:      arch/arm/boot/dts/*dra7*
11358
11359 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
11360 L:      linux-omap@vger.kernel.org
11361 L:      linux-fbdev@vger.kernel.org
11362 S:      Orphan
11363 F:      drivers/video/fbdev/omap2/
11364 F:      Documentation/arm/OMAP/DSS
11365
11366 OMAP FRAMEBUFFER SUPPORT
11367 L:      linux-fbdev@vger.kernel.org
11368 L:      linux-omap@vger.kernel.org
11369 S:      Orphan
11370 F:      drivers/video/fbdev/omap/
11371
11372 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
11373 M:      Roger Quadros <rogerq@ti.com>
11374 M:      Tony Lindgren <tony@atomide.com>
11375 L:      linux-omap@vger.kernel.org
11376 S:      Maintained
11377 F:      drivers/memory/omap-gpmc.c
11378 F:      arch/arm/mach-omap2/*gpmc*
11379
11380 OMAP GPIO DRIVER
11381 M:      Grygorii Strashko <grygorii.strashko@ti.com>
11382 M:      Santosh Shilimkar <ssantosh@kernel.org>
11383 M:      Kevin Hilman <khilman@kernel.org>
11384 L:      linux-omap@vger.kernel.org
11385 S:      Maintained
11386 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
11387 F:      drivers/gpio/gpio-omap.c
11388
11389 OMAP HARDWARE SPINLOCK SUPPORT
11390 M:      Ohad Ben-Cohen <ohad@wizery.com>
11391 L:      linux-omap@vger.kernel.org
11392 S:      Maintained
11393 F:      drivers/hwspinlock/omap_hwspinlock.c
11394
11395 OMAP HS MMC SUPPORT
11396 L:      linux-mmc@vger.kernel.org
11397 L:      linux-omap@vger.kernel.org
11398 S:      Orphan
11399 F:      drivers/mmc/host/omap_hsmmc.c
11400
11401 OMAP HWMOD DATA
11402 M:      Paul Walmsley <paul@pwsan.com>
11403 L:      linux-omap@vger.kernel.org
11404 S:      Maintained
11405 F:      arch/arm/mach-omap2/omap_hwmod*data*
11406
11407 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
11408 M:      Benoît Cousson <bcousson@baylibre.com>
11409 L:      linux-omap@vger.kernel.org
11410 S:      Maintained
11411 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
11412
11413 OMAP HWMOD SUPPORT
11414 M:      Benoît Cousson <bcousson@baylibre.com>
11415 M:      Paul Walmsley <paul@pwsan.com>
11416 L:      linux-omap@vger.kernel.org
11417 S:      Maintained
11418 F:      arch/arm/mach-omap2/omap_hwmod.*
11419
11420 OMAP I2C DRIVER
11421 M:      Vignesh R <vigneshr@ti.com>
11422 L:      linux-omap@vger.kernel.org
11423 L:      linux-i2c@vger.kernel.org
11424 S:      Maintained
11425 F:      Documentation/devicetree/bindings/i2c/i2c-omap.txt
11426 F:      drivers/i2c/busses/i2c-omap.c
11427
11428 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
11429 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11430 L:      linux-media@vger.kernel.org
11431 S:      Maintained
11432 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
11433 F:      drivers/media/platform/omap3isp/
11434 F:      drivers/staging/media/omap4iss/
11435
11436 OMAP MMC SUPPORT
11437 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11438 L:      linux-omap@vger.kernel.org
11439 S:      Odd Fixes
11440 F:      drivers/mmc/host/omap.c
11441
11442 OMAP POWER MANAGEMENT SUPPORT
11443 M:      Kevin Hilman <khilman@kernel.org>
11444 L:      linux-omap@vger.kernel.org
11445 S:      Maintained
11446 F:      arch/arm/*omap*/*pm*
11447 F:      drivers/cpufreq/omap-cpufreq.c
11448
11449 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
11450 M:      Rajendra Nayak <rnayak@codeaurora.org>
11451 M:      Paul Walmsley <paul@pwsan.com>
11452 L:      linux-omap@vger.kernel.org
11453 S:      Maintained
11454 F:      arch/arm/mach-omap2/prm*
11455
11456 OMAP RANDOM NUMBER GENERATOR SUPPORT
11457 M:      Deepak Saxena <dsaxena@plexity.net>
11458 S:      Maintained
11459 F:      drivers/char/hw_random/omap-rng.c
11460
11461 OMAP USB SUPPORT
11462 L:      linux-usb@vger.kernel.org
11463 L:      linux-omap@vger.kernel.org
11464 S:      Orphan
11465 F:      drivers/usb/*/*omap*
11466 F:      arch/arm/*omap*/usb*
11467
11468 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
11469 M:      Mark Jackson <mpfj@newflow.co.uk>
11470 L:      linux-omap@vger.kernel.org
11471 S:      Maintained
11472 F:      arch/arm/boot/dts/am335x-nano.dts
11473
11474 OMAP1 SUPPORT
11475 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
11476 M:      Tony Lindgren <tony@atomide.com>
11477 L:      linux-omap@vger.kernel.org
11478 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11480 S:      Maintained
11481 F:      arch/arm/mach-omap1/
11482 F:      arch/arm/plat-omap/
11483 F:      arch/arm/configs/omap1_defconfig
11484 F:      drivers/i2c/busses/i2c-omap.c
11485 F:      include/linux/platform_data/i2c-omap.h
11486 F:      include/linux/platform_data/ams-delta-fiq.h
11487
11488 OMAP2+ SUPPORT
11489 M:      Tony Lindgren <tony@atomide.com>
11490 L:      linux-omap@vger.kernel.org
11491 W:      http://www.muru.com/linux/omap/
11492 W:      http://linux.omap.com/
11493 Q:      http://patchwork.kernel.org/project/linux-omap/list/
11494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
11495 S:      Maintained
11496 F:      arch/arm/mach-omap2/
11497 F:      arch/arm/plat-omap/
11498 F:      arch/arm/configs/omap2plus_defconfig
11499 F:      drivers/i2c/busses/i2c-omap.c
11500 F:      drivers/irqchip/irq-omap-intc.c
11501 F:      drivers/mfd/*omap*.c
11502 F:      drivers/mfd/menelaus.c
11503 F:      drivers/mfd/palmas.c
11504 F:      drivers/mfd/tps65217.c
11505 F:      drivers/mfd/tps65218.c
11506 F:      drivers/mfd/tps65910.c
11507 F:      drivers/mfd/twl-core.[ch]
11508 F:      drivers/mfd/twl4030*.c
11509 F:      drivers/mfd/twl6030*.c
11510 F:      drivers/mfd/twl6040*.c
11511 F:      drivers/regulator/palmas-regulator*.c
11512 F:      drivers/regulator/pbias-regulator.c
11513 F:      drivers/regulator/tps65217-regulator.c
11514 F:      drivers/regulator/tps65218-regulator.c
11515 F:      drivers/regulator/tps65910-regulator.c
11516 F:      drivers/regulator/twl-regulator.c
11517 F:      drivers/regulator/twl6030-regulator.c
11518 F:      include/linux/platform_data/i2c-omap.h
11519
11520 ONION OMEGA2+ BOARD
11521 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
11522 L:      linux-mips@vger.kernel.org
11523 S:      Maintained
11524 F:      arch/mips/boot/dts/ralink/omega2p.dts
11525
11526 OMFS FILESYSTEM
11527 M:      Bob Copeland <me@bobcopeland.com>
11528 L:      linux-karma-devel@lists.sourceforge.net
11529 S:      Maintained
11530 F:      Documentation/filesystems/omfs.txt
11531 F:      fs/omfs/
11532
11533 OMNIKEY CARDMAN 4000 DRIVER
11534 M:      Harald Welte <laforge@gnumonks.org>
11535 S:      Maintained
11536 F:      drivers/char/pcmcia/cm4000_cs.c
11537 F:      include/linux/cm4000_cs.h
11538 F:      include/uapi/linux/cm4000_cs.h
11539
11540 OMNIKEY CARDMAN 4040 DRIVER
11541 M:      Harald Welte <laforge@gnumonks.org>
11542 S:      Maintained
11543 F:      drivers/char/pcmcia/cm4040_cs.*
11544
11545 OMNIVISION OV13858 SENSOR DRIVER
11546 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11547 L:      linux-media@vger.kernel.org
11548 T:      git git://linuxtv.org/media_tree.git
11549 S:      Maintained
11550 F:      drivers/media/i2c/ov13858.c
11551
11552 OMNIVISION OV2680 SENSOR DRIVER
11553 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11554 L:      linux-media@vger.kernel.org
11555 T:      git git://linuxtv.org/media_tree.git
11556 S:      Maintained
11557 F:      drivers/media/i2c/ov2680.c
11558 F:      Documentation/devicetree/bindings/media/i2c/ov2680.txt
11559
11560 OMNIVISION OV2685 SENSOR DRIVER
11561 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11562 L:      linux-media@vger.kernel.org
11563 T:      git git://linuxtv.org/media_tree.git
11564 S:      Maintained
11565 F:      drivers/media/i2c/ov2685.c
11566
11567 OMNIVISION OV5640 SENSOR DRIVER
11568 M:      Steve Longerbeam <slongerbeam@gmail.com>
11569 L:      linux-media@vger.kernel.org
11570 T:      git git://linuxtv.org/media_tree.git
11571 S:      Maintained
11572 F:      drivers/media/i2c/ov5640.c
11573
11574 OMNIVISION OV5647 SENSOR DRIVER
11575 M:      Luis Oliveira <lolivei@synopsys.com>
11576 L:      linux-media@vger.kernel.org
11577 T:      git git://linuxtv.org/media_tree.git
11578 S:      Maintained
11579 F:      drivers/media/i2c/ov5647.c
11580
11581 OMNIVISION OV5695 SENSOR DRIVER
11582 M:      Shunqian Zheng <zhengsq@rock-chips.com>
11583 L:      linux-media@vger.kernel.org
11584 T:      git git://linuxtv.org/media_tree.git
11585 S:      Maintained
11586 F:      drivers/media/i2c/ov5695.c
11587
11588 OMNIVISION OV7670 SENSOR DRIVER
11589 M:      Jonathan Corbet <corbet@lwn.net>
11590 L:      linux-media@vger.kernel.org
11591 T:      git git://linuxtv.org/media_tree.git
11592 S:      Maintained
11593 F:      drivers/media/i2c/ov7670.c
11594 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
11595
11596 OMNIVISION OV772x SENSOR DRIVER
11597 M:      Jacopo Mondi <jacopo@jmondi.org>
11598 L:      linux-media@vger.kernel.org
11599 T:      git git://linuxtv.org/media_tree.git
11600 S:      Odd fixes
11601 F:      drivers/media/i2c/ov772x.c
11602 F:      include/media/i2c/ov772x.h
11603 F:      Documentation/devicetree/bindings/media/i2c/ov772x.txt
11604
11605 OMNIVISION OV7740 SENSOR DRIVER
11606 M:      Wenyou Yang <wenyou.yang@microchip.com>
11607 L:      linux-media@vger.kernel.org
11608 T:      git git://linuxtv.org/media_tree.git
11609 S:      Maintained
11610 F:      drivers/media/i2c/ov7740.c
11611 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
11612
11613 OMNIVISION OV9640 SENSOR DRIVER
11614 M:      Petr Cvek <petrcvekcz@gmail.com>
11615 L:      linux-media@vger.kernel.org
11616 S:      Maintained
11617 F:      drivers/media/i2c/ov9640.*
11618
11619 OMNIVISION OV8856 SENSOR DRIVER
11620 M:      Ben Kao <ben.kao@intel.com>
11621 L:      linux-media@vger.kernel.org
11622 T:      git git://linuxtv.org/media_tree.git
11623 S:      Maintained
11624 F:      drivers/media/i2c/ov8856.c
11625
11626 OMNIVISION OV9650 SENSOR DRIVER
11627 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11628 R:      Akinobu Mita <akinobu.mita@gmail.com>
11629 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11630 L:      linux-media@vger.kernel.org
11631 T:      git git://linuxtv.org/media_tree.git
11632 S:      Maintained
11633 F:      drivers/media/i2c/ov9650.c
11634 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
11635
11636 ONENAND FLASH DRIVER
11637 M:      Kyungmin Park <kyungmin.park@samsung.com>
11638 L:      linux-mtd@lists.infradead.org
11639 S:      Maintained
11640 F:      drivers/mtd/nand/onenand/
11641 F:      include/linux/mtd/onenand*.h
11642
11643 ONSTREAM SCSI TAPE DRIVER
11644 M:      Willem Riede <osst@riede.org>
11645 L:      osst-users@lists.sourceforge.net
11646 L:      linux-scsi@vger.kernel.org
11647 S:      Maintained
11648 F:      Documentation/scsi/osst.txt
11649 F:      drivers/scsi/osst.*
11650 F:      drivers/scsi/osst_*.h
11651 F:      drivers/scsi/st.h
11652
11653 OP-TEE DRIVER
11654 M:      Jens Wiklander <jens.wiklander@linaro.org>
11655 S:      Maintained
11656 F:      drivers/tee/optee/
11657
11658 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
11659 M:      Sumit Garg <sumit.garg@linaro.org>
11660 S:      Maintained
11661 F:      drivers/char/hw_random/optee-rng.c
11662
11663 OPA-VNIC DRIVER
11664 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11665 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
11666 L:      linux-rdma@vger.kernel.org
11667 S:      Supported
11668 F:      drivers/infiniband/ulp/opa_vnic
11669
11670 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
11671 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
11672 M:      Frank Rowand <frowand.list@gmail.com>
11673 L:      devicetree@vger.kernel.org
11674 S:      Maintained
11675 F:      Documentation/devicetree/dynamic-resolution-notes.txt
11676 F:      Documentation/devicetree/overlay-notes.txt
11677 F:      drivers/of/overlay.c
11678 F:      drivers/of/resolver.c
11679 K:      of_overlay_notifier_
11680
11681 OPEN FIRMWARE AND FLATTENED DEVICE TREE
11682 M:      Rob Herring <robh+dt@kernel.org>
11683 M:      Frank Rowand <frowand.list@gmail.com>
11684 L:      devicetree@vger.kernel.org
11685 W:      http://www.devicetree.org/
11686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
11687 S:      Maintained
11688 F:      drivers/of/
11689 F:      include/linux/of*.h
11690 F:      scripts/dtc/
11691 F:      Documentation/ABI/testing/sysfs-firmware-ofw
11692
11693 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
11694 M:      Rob Herring <robh+dt@kernel.org>
11695 M:      Mark Rutland <mark.rutland@arm.com>
11696 L:      devicetree@vger.kernel.org
11697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
11698 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
11699 S:      Maintained
11700 F:      Documentation/devicetree/
11701 F:      arch/*/boot/dts/
11702 F:      include/dt-bindings/
11703
11704 OPENCORES I2C BUS DRIVER
11705 M:      Peter Korsgaard <peter@korsgaard.com>
11706 M:      Andrew Lunn <andrew@lunn.ch>
11707 L:      linux-i2c@vger.kernel.org
11708 S:      Maintained
11709 F:      Documentation/i2c/busses/i2c-ocores
11710 F:      drivers/i2c/busses/i2c-ocores.c
11711 F:      include/linux/platform_data/i2c-ocores.h
11712
11713 OPENRISC ARCHITECTURE
11714 M:      Jonas Bonn <jonas@southpole.se>
11715 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
11716 M:      Stafford Horne <shorne@gmail.com>
11717 T:      git git://github.com/openrisc/linux.git
11718 L:      openrisc@lists.librecores.org
11719 W:      http://openrisc.io
11720 S:      Maintained
11721 F:      Documentation/devicetree/bindings/openrisc/
11722 F:      Documentation/openrisc/
11723 F:      arch/openrisc/
11724 F:      drivers/irqchip/irq-ompic.c
11725 F:      drivers/irqchip/irq-or1k-*
11726
11727 OPENVSWITCH
11728 M:      Pravin B Shelar <pshelar@ovn.org>
11729 L:      netdev@vger.kernel.org
11730 L:      dev@openvswitch.org
11731 W:      http://openvswitch.org
11732 S:      Maintained
11733 F:      net/openvswitch/
11734 F:      include/uapi/linux/openvswitch.h
11735
11736 OPERATING PERFORMANCE POINTS (OPP)
11737 M:      Viresh Kumar <vireshk@kernel.org>
11738 M:      Nishanth Menon <nm@ti.com>
11739 M:      Stephen Boyd <sboyd@kernel.org>
11740 L:      linux-pm@vger.kernel.org
11741 S:      Maintained
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
11743 F:      drivers/opp/
11744 F:      include/linux/pm_opp.h
11745 F:      Documentation/power/opp.txt
11746 F:      Documentation/devicetree/bindings/opp/
11747
11748 OPL4 DRIVER
11749 M:      Clemens Ladisch <clemens@ladisch.de>
11750 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11752 S:      Maintained
11753 F:      sound/drivers/opl4/
11754
11755 OPROFILE
11756 M:      Robert Richter <rric@kernel.org>
11757 L:      oprofile-list@lists.sf.net
11758 S:      Maintained
11759 F:      arch/*/include/asm/oprofile*.h
11760 F:      arch/*/oprofile/
11761 F:      drivers/oprofile/
11762 F:      include/linux/oprofile.h
11763
11764 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
11765 M:      Mark Fasheh <mark@fasheh.com>
11766 M:      Joel Becker <jlbec@evilplan.org>
11767 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
11768 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
11769 W:      http://ocfs2.wiki.kernel.org
11770 S:      Supported
11771 F:      Documentation/filesystems/ocfs2.txt
11772 F:      Documentation/filesystems/dlmfs.txt
11773 F:      fs/ocfs2/
11774
11775 ORANGEFS FILESYSTEM
11776 M:      Mike Marshall <hubcap@omnibond.com>
11777 R:      Martin Brandenburg <martin@omnibond.com>
11778 L:      devel@lists.orangefs.org
11779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
11780 S:      Supported
11781 F:      fs/orangefs/
11782 F:      Documentation/filesystems/orangefs.txt
11783
11784 ORINOCO DRIVER
11785 L:      linux-wireless@vger.kernel.org
11786 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
11787 W:      http://www.nongnu.org/orinoco/
11788 S:      Orphan
11789 F:      drivers/net/wireless/intersil/orinoco/
11790
11791 OV2659 OMNIVISION SENSOR DRIVER
11792 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
11793 L:      linux-media@vger.kernel.org
11794 W:      https://linuxtv.org
11795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11796 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11797 S:      Maintained
11798 F:      drivers/media/i2c/ov2659.c
11799 F:      include/media/i2c/ov2659.h
11800
11801 OVERLAY FILESYSTEM
11802 M:      Miklos Szeredi <miklos@szeredi.hu>
11803 L:      linux-unionfs@vger.kernel.org
11804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
11805 S:      Supported
11806 F:      fs/overlayfs/
11807 F:      Documentation/filesystems/overlayfs.txt
11808
11809 P54 WIRELESS DRIVER
11810 M:      Christian Lamparter <chunkeey@googlemail.com>
11811 L:      linux-wireless@vger.kernel.org
11812 W:      http://wireless.kernel.org/en/users/Drivers/p54
11813 S:      Maintained
11814 F:      drivers/net/wireless/intersil/p54/
11815
11816 PA SEMI ETHERNET DRIVER
11817 L:      netdev@vger.kernel.org
11818 S:      Orphan
11819 F:      drivers/net/ethernet/pasemi/*
11820
11821 PA SEMI SMBUS DRIVER
11822 L:      linux-i2c@vger.kernel.org
11823 S:      Orphan
11824 F:      drivers/i2c/busses/i2c-pasemi.c
11825
11826 PACKING
11827 M:      Vladimir Oltean <olteanv@gmail.com>
11828 L:      netdev@vger.kernel.org
11829 S:      Supported
11830 F:      lib/packing.c
11831 F:      include/linux/packing.h
11832 F:      Documentation/packing.txt
11833
11834 PADATA PARALLEL EXECUTION MECHANISM
11835 M:      Steffen Klassert <steffen.klassert@secunet.com>
11836 L:      linux-crypto@vger.kernel.org
11837 S:      Maintained
11838 F:      kernel/padata.c
11839 F:      include/linux/padata.h
11840 F:      Documentation/padata.txt
11841
11842 PANASONIC LAPTOP ACPI EXTRAS DRIVER
11843 M:      Harald Welte <laforge@gnumonks.org>
11844 L:      platform-driver-x86@vger.kernel.org
11845 S:      Maintained
11846 F:      drivers/platform/x86/panasonic-laptop.c
11847
11848 PARALLEL LCD/KEYPAD PANEL DRIVER
11849 M:      Willy Tarreau <willy@haproxy.com>
11850 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
11851 S:      Odd Fixes
11852 F:      Documentation/auxdisplay/lcd-panel-cgram.txt
11853 F:      drivers/auxdisplay/panel.c
11854
11855 PARALLEL PORT SUBSYSTEM
11856 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11857 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
11858 L:      linux-parport@lists.infradead.org (subscribers-only)
11859 S:      Maintained
11860 F:      drivers/parport/
11861 F:      include/linux/parport*.h
11862 F:      drivers/char/ppdev.c
11863 F:      include/uapi/linux/ppdev.h
11864 F:      Documentation/parport*.txt
11865
11866 PARAVIRT_OPS INTERFACE
11867 M:      Juergen Gross <jgross@suse.com>
11868 M:      Alok Kataria <akataria@vmware.com>
11869 L:      virtualization@lists.linux-foundation.org
11870 S:      Supported
11871 F:      Documentation/virtual/paravirt_ops.txt
11872 F:      arch/*/kernel/paravirt*
11873 F:      arch/*/include/asm/paravirt*.h
11874 F:      include/linux/hypervisor.h
11875
11876 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
11877 M:      Tim Waugh <tim@cyberelk.net>
11878 L:      linux-parport@lists.infradead.org (subscribers-only)
11879 S:      Maintained
11880 F:      Documentation/blockdev/paride.txt
11881 F:      drivers/block/paride/
11882
11883 PARISC ARCHITECTURE
11884 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11885 M:      Helge Deller <deller@gmx.de>
11886 L:      linux-parisc@vger.kernel.org
11887 W:      http://www.parisc-linux.org/
11888 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
11890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
11891 S:      Maintained
11892 F:      arch/parisc/
11893 F:      Documentation/parisc/
11894 F:      drivers/parisc/
11895 F:      drivers/char/agp/parisc-agp.c
11896 F:      drivers/input/serio/gscps2.c
11897 F:      drivers/parport/parport_gsc.*
11898 F:      drivers/tty/serial/8250/8250_gsc.c
11899 F:      drivers/video/fbdev/sti*
11900 F:      drivers/video/console/sti*
11901 F:      drivers/video/logo/logo_parisc*
11902
11903 PARMAN
11904 M:      Jiri Pirko <jiri@mellanox.com>
11905 L:      netdev@vger.kernel.org
11906 S:      Supported
11907 F:      lib/parman.c
11908 F:      lib/test_parman.c
11909 F:      include/linux/parman.h
11910
11911 PC ENGINES APU BOARD DRIVER
11912 M:      Enrico Weigelt, metux IT consult <info@metux.net>
11913 S:      Maintained
11914 F:      drivers/platform/x86/pcengines-apuv2.c
11915
11916 PC87360 HARDWARE MONITORING DRIVER
11917 M:      Jim Cromie <jim.cromie@gmail.com>
11918 L:      linux-hwmon@vger.kernel.org
11919 S:      Maintained
11920 F:      Documentation/hwmon/pc87360.rst
11921 F:      drivers/hwmon/pc87360.c
11922
11923 PC8736x GPIO DRIVER
11924 M:      Jim Cromie <jim.cromie@gmail.com>
11925 S:      Maintained
11926 F:      drivers/char/pc8736x_gpio.c
11927
11928 PC87427 HARDWARE MONITORING DRIVER
11929 M:      Jean Delvare <jdelvare@suse.com>
11930 L:      linux-hwmon@vger.kernel.org
11931 S:      Maintained
11932 F:      Documentation/hwmon/pc87427.rst
11933 F:      drivers/hwmon/pc87427.c
11934
11935 PCA9532 LED DRIVER
11936 M:      Riku Voipio <riku.voipio@iki.fi>
11937 S:      Maintained
11938 F:      drivers/leds/leds-pca9532.c
11939 F:      include/linux/leds-pca9532.h
11940
11941 PCA9541 I2C BUS MASTER SELECTOR DRIVER
11942 M:      Guenter Roeck <linux@roeck-us.net>
11943 L:      linux-i2c@vger.kernel.org
11944 S:      Maintained
11945 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
11946
11947 PCDP - PRIMARY CONSOLE AND DEBUG PORT
11948 M:      Khalid Aziz <khalid@gonehiking.org>
11949 S:      Maintained
11950 F:      drivers/firmware/pcdp.*
11951
11952 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
11953 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11954 L:      linux-pci@vger.kernel.org
11955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11956 S:      Maintained
11957 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
11958 F:      drivers/pci/controller/pci-aardvark.c
11959
11960 PCI DRIVER FOR ALTERA PCIE IP
11961 M:      Ley Foon Tan <lftan@altera.com>
11962 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
11963 L:      linux-pci@vger.kernel.org
11964 S:      Supported
11965 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
11966 F:      drivers/pci/controller/pcie-altera.c
11967
11968 PCI DRIVER FOR APPLIEDMICRO XGENE
11969 M:      Toan Le <toan@os.amperecomputing.com>
11970 L:      linux-pci@vger.kernel.org
11971 L:      linux-arm-kernel@lists.infradead.org
11972 S:      Maintained
11973 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
11974 F:      drivers/pci/controller/pci-xgene.c
11975
11976 PCI DRIVER FOR ARM VERSATILE PLATFORM
11977 M:      Rob Herring <robh@kernel.org>
11978 L:      linux-pci@vger.kernel.org
11979 L:      linux-arm-kernel@lists.infradead.org
11980 S:      Maintained
11981 F:      Documentation/devicetree/bindings/pci/versatile.txt
11982 F:      drivers/pci/controller/pci-versatile.c
11983
11984 PCI DRIVER FOR ARMADA 8K
11985 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11986 L:      linux-pci@vger.kernel.org
11987 L:      linux-arm-kernel@lists.infradead.org
11988 S:      Maintained
11989 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
11990 F:      drivers/pci/controller/dwc/pcie-armada8k.c
11991
11992 PCI DRIVER FOR CADENCE PCIE IP
11993 M:      Tom Joseph <tjoseph@cadence.com>
11994 L:      linux-pci@vger.kernel.org
11995 S:      Maintained
11996 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
11997 F:      drivers/pci/controller/pcie-cadence*
11998
11999 PCI DRIVER FOR FREESCALE LAYERSCAPE
12000 M:      Minghuan Lian <minghuan.Lian@nxp.com>
12001 M:      Mingkai Hu <mingkai.hu@nxp.com>
12002 M:      Roy Zang <roy.zang@nxp.com>
12003 L:      linuxppc-dev@lists.ozlabs.org
12004 L:      linux-pci@vger.kernel.org
12005 L:      linux-arm-kernel@lists.infradead.org
12006 S:      Maintained
12007 F:      drivers/pci/controller/dwc/*layerscape*
12008
12009 PCI DRIVER FOR GENERIC OF HOSTS
12010 M:      Will Deacon <will.deacon@arm.com>
12011 L:      linux-pci@vger.kernel.org
12012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12013 S:      Maintained
12014 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
12015 F:      drivers/pci/controller/pci-host-common.c
12016 F:      drivers/pci/controller/pci-host-generic.c
12017
12018 PCI DRIVER FOR IMX6
12019 M:      Richard Zhu <hongxing.zhu@nxp.com>
12020 M:      Lucas Stach <l.stach@pengutronix.de>
12021 L:      linux-pci@vger.kernel.org
12022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12023 S:      Maintained
12024 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
12025 F:      drivers/pci/controller/dwc/*imx6*
12026
12027 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
12028 M:      Keith Busch <keith.busch@intel.com>
12029 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12030 L:      linux-pci@vger.kernel.org
12031 S:      Supported
12032 F:      drivers/pci/controller/vmd.c
12033
12034 PCI DRIVER FOR MICROSEMI SWITCHTEC
12035 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
12036 M:      Logan Gunthorpe <logang@deltatee.com>
12037 L:      linux-pci@vger.kernel.org
12038 S:      Maintained
12039 F:      Documentation/switchtec.txt
12040 F:      Documentation/ABI/testing/sysfs-class-switchtec
12041 F:      drivers/pci/switch/switchtec*
12042 F:      include/uapi/linux/switchtec_ioctl.h
12043 F:      include/linux/switchtec.h
12044 F:      drivers/ntb/hw/mscc/
12045
12046 PCI DRIVER FOR MOBIVEIL PCIE IP
12047 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
12048 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
12049 L:      linux-pci@vger.kernel.org
12050 S:      Supported
12051 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
12052 F:      drivers/pci/controller/pcie-mobiveil.c
12053
12054 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
12055 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12056 M:      Jason Cooper <jason@lakedaemon.net>
12057 L:      linux-pci@vger.kernel.org
12058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12059 S:      Maintained
12060 F:      drivers/pci/controller/*mvebu*
12061
12062 PCI DRIVER FOR NVIDIA TEGRA
12063 M:      Thierry Reding <thierry.reding@gmail.com>
12064 L:      linux-tegra@vger.kernel.org
12065 L:      linux-pci@vger.kernel.org
12066 S:      Supported
12067 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
12068 F:      drivers/pci/controller/pci-tegra.c
12069
12070 PCI DRIVER FOR RENESAS R-CAR
12071 M:      Simon Horman <horms@verge.net.au>
12072 L:      linux-pci@vger.kernel.org
12073 L:      linux-renesas-soc@vger.kernel.org
12074 S:      Maintained
12075 F:      drivers/pci/controller/*rcar*
12076
12077 PCI DRIVER FOR SAMSUNG EXYNOS
12078 M:      Jingoo Han <jingoohan1@gmail.com>
12079 L:      linux-pci@vger.kernel.org
12080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12081 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12082 S:      Maintained
12083 F:      drivers/pci/controller/dwc/pci-exynos.c
12084
12085 PCI DRIVER FOR SYNOPSYS DESIGNWARE
12086 M:      Jingoo Han <jingoohan1@gmail.com>
12087 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
12088 L:      linux-pci@vger.kernel.org
12089 S:      Maintained
12090 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
12091 F:      drivers/pci/controller/dwc/*designware*
12092
12093 PCI DRIVER FOR TI DRA7XX
12094 M:      Kishon Vijay Abraham I <kishon@ti.com>
12095 L:      linux-omap@vger.kernel.org
12096 L:      linux-pci@vger.kernel.org
12097 S:      Supported
12098 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
12099 F:      drivers/pci/controller/dwc/pci-dra7xx.c
12100
12101 PCI DRIVER FOR TI KEYSTONE
12102 M:      Murali Karicheri <m-karicheri2@ti.com>
12103 L:      linux-pci@vger.kernel.org
12104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12105 S:      Maintained
12106 F:      drivers/pci/controller/dwc/pci-keystone.c
12107
12108 PCI ENDPOINT SUBSYSTEM
12109 M:      Kishon Vijay Abraham I <kishon@ti.com>
12110 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12111 L:      linux-pci@vger.kernel.org
12112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
12113 S:      Supported
12114 F:      drivers/pci/endpoint/
12115 F:      drivers/misc/pci_endpoint_test.c
12116 F:      tools/pci/
12117
12118 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
12119 M:      Russell Currey <ruscur@russell.cc>
12120 M:      Sam Bobroff <sbobroff@linux.ibm.com>
12121 M:      Oliver O'Halloran <oohall@gmail.com>
12122 L:      linuxppc-dev@lists.ozlabs.org
12123 S:      Supported
12124 F:      Documentation/PCI/pci-error-recovery.txt
12125 F:      drivers/pci/pcie/aer.c
12126 F:      drivers/pci/pcie/dpc.c
12127 F:      drivers/pci/pcie/err.c
12128 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
12129 F:      arch/powerpc/kernel/eeh*.c
12130 F:      arch/powerpc/platforms/*/eeh*.c
12131 F:      arch/powerpc/include/*/eeh*.h
12132
12133 PCI ERROR RECOVERY
12134 M:      Linas Vepstas <linasvepstas@gmail.com>
12135 L:      linux-pci@vger.kernel.org
12136 S:      Supported
12137 F:      Documentation/PCI/pci-error-recovery.txt
12138
12139 PCI MSI DRIVER FOR ALTERA MSI IP
12140 M:      Ley Foon Tan <lftan@altera.com>
12141 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
12142 L:      linux-pci@vger.kernel.org
12143 S:      Supported
12144 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
12145 F:      drivers/pci/controller/pcie-altera-msi.c
12146
12147 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
12148 M:      Toan Le <toan@os.amperecomputing.com>
12149 L:      linux-pci@vger.kernel.org
12150 L:      linux-arm-kernel@lists.infradead.org
12151 S:      Maintained
12152 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
12153 F:      drivers/pci/controller/pci-xgene-msi.c
12154
12155 PCI SUBSYSTEM
12156 M:      Bjorn Helgaas <bhelgaas@google.com>
12157 L:      linux-pci@vger.kernel.org
12158 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
12160 S:      Supported
12161 F:      Documentation/devicetree/bindings/pci/
12162 F:      Documentation/PCI/
12163 F:      drivers/acpi/pci*
12164 F:      drivers/pci/
12165 F:      include/asm-generic/pci*
12166 F:      include/linux/pci*
12167 F:      include/linux/of_pci.h
12168 F:      include/uapi/linux/pci*
12169 F:      lib/pci*
12170 F:      arch/x86/pci/
12171 F:      arch/x86/kernel/quirks.c
12172 F:      arch/x86/kernel/early-quirks.c
12173
12174 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
12175 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12176 L:      linux-pci@vger.kernel.org
12177 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
12178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
12179 S:      Supported
12180 F:      drivers/pci/controller/
12181
12182 PCIE DRIVER FOR ANNAPURNA LABS
12183 M:      Jonathan Chocron <jonnyc@amazon.com>
12184 L:      linux-pci@vger.kernel.org
12185 S:      Maintained
12186 F:      drivers/pci/controller/dwc/pcie-al.c
12187
12188 PCIE DRIVER FOR AMLOGIC MESON
12189 M:      Yue Wang <yue.wang@Amlogic.com>
12190 L:      linux-pci@vger.kernel.org
12191 L:      linux-amlogic@lists.infradead.org
12192 S:      Maintained
12193 F:      drivers/pci/controller/dwc/pci-meson.c
12194
12195 PCIE DRIVER FOR AXIS ARTPEC
12196 M:      Jesper Nilsson <jesper.nilsson@axis.com>
12197 L:      linux-arm-kernel@axis.com
12198 L:      linux-pci@vger.kernel.org
12199 S:      Maintained
12200 F:      Documentation/devicetree/bindings/pci/axis,artpec*
12201 F:      drivers/pci/controller/dwc/*artpec*
12202
12203 PCIE DRIVER FOR CAVIUM THUNDERX
12204 M:      David Daney <david.daney@cavium.com>
12205 L:      linux-pci@vger.kernel.org
12206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12207 S:      Supported
12208 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
12209 F:      drivers/pci/controller/pci-thunder-*
12210
12211 PCIE DRIVER FOR HISILICON
12212 M:      Zhou Wang <wangzhou1@hisilicon.com>
12213 L:      linux-pci@vger.kernel.org
12214 S:      Maintained
12215 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
12216 F:      drivers/pci/controller/dwc/pcie-hisi.c
12217
12218 PCIE DRIVER FOR HISILICON KIRIN
12219 M:      Xiaowei Song <songxiaowei@hisilicon.com>
12220 M:      Binghui Wang <wangbinghui@hisilicon.com>
12221 L:      linux-pci@vger.kernel.org
12222 S:      Maintained
12223 F:      Documentation/devicetree/bindings/pci/kirin-pcie.txt
12224 F:      drivers/pci/controller/dwc/pcie-kirin.c
12225
12226 PCIE DRIVER FOR HISILICON STB
12227 M:      Shawn Guo <shawn.guo@linaro.org>
12228 L:      linux-pci@vger.kernel.org
12229 S:      Maintained
12230 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
12231 F:      drivers/pci/controller/dwc/pcie-histb.c
12232
12233 PCIE DRIVER FOR MEDIATEK
12234 M:      Ryder Lee <ryder.lee@mediatek.com>
12235 L:      linux-pci@vger.kernel.org
12236 L:      linux-mediatek@lists.infradead.org
12237 S:      Supported
12238 F:      Documentation/devicetree/bindings/pci/mediatek*
12239 F:      drivers/pci/controller/*mediatek*
12240
12241 PCIE DRIVER FOR QUALCOMM MSM
12242 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
12243 L:      linux-pci@vger.kernel.org
12244 L:      linux-arm-msm@vger.kernel.org
12245 S:      Maintained
12246 F:      drivers/pci/controller/dwc/*qcom*
12247
12248 PCIE DRIVER FOR ROCKCHIP
12249 M:      Shawn Lin <shawn.lin@rock-chips.com>
12250 L:      linux-pci@vger.kernel.org
12251 L:      linux-rockchip@lists.infradead.org
12252 S:      Maintained
12253 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
12254 F:      drivers/pci/controller/pcie-rockchip*
12255
12256 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
12257 M:      Linus Walleij <linus.walleij@linaro.org>
12258 L:      linux-pci@vger.kernel.org
12259 S:      Maintained
12260 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
12261 F:      drivers/pci/controller/pci-v3-semi.c
12262
12263 PCIE DRIVER FOR SOCIONEXT UNIPHIER
12264 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
12265 L:      linux-pci@vger.kernel.org
12266 S:      Maintained
12267 F:      Documentation/devicetree/bindings/pci/uniphier-pcie.txt
12268 F:      drivers/pci/controller/dwc/pcie-uniphier.c
12269
12270 PCIE DRIVER FOR ST SPEAR13XX
12271 M:      Pratyush Anand <pratyush.anand@gmail.com>
12272 L:      linux-pci@vger.kernel.org
12273 S:      Maintained
12274 F:      drivers/pci/controller/dwc/*spear*
12275
12276 PCMCIA SUBSYSTEM
12277 M:      Dominik Brodowski <linux@dominikbrodowski.net>
12278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
12279 S:      Odd Fixes
12280 F:      Documentation/pcmcia/
12281 F:      tools/pcmcia/
12282 F:      drivers/pcmcia/
12283 F:      include/pcmcia/
12284
12285 PCNET32 NETWORK DRIVER
12286 M:      Don Fry <pcnet32@frontier.com>
12287 L:      netdev@vger.kernel.org
12288 S:      Maintained
12289 F:      drivers/net/ethernet/amd/pcnet32.c
12290
12291 PCRYPT PARALLEL CRYPTO ENGINE
12292 M:      Steffen Klassert <steffen.klassert@secunet.com>
12293 L:      linux-crypto@vger.kernel.org
12294 S:      Maintained
12295 F:      crypto/pcrypt.c
12296 F:      include/crypto/pcrypt.h
12297
12298 PEAQ WMI HOTKEYS DRIVER
12299 M:      Hans de Goede <hdegoede@redhat.com>
12300 L:      platform-driver-x86@vger.kernel.org
12301 S:      Maintained
12302 F:      drivers/platform/x86/peaq-wmi.c
12303
12304 PER-CPU MEMORY ALLOCATOR
12305 M:      Dennis Zhou <dennis@kernel.org>
12306 M:      Tejun Heo <tj@kernel.org>
12307 M:      Christoph Lameter <cl@linux.com>
12308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
12309 S:      Maintained
12310 F:      include/linux/percpu*.h
12311 F:      mm/percpu*.c
12312 F:      arch/*/include/asm/percpu.h
12313
12314 PER-TASK DELAY ACCOUNTING
12315 M:      Balbir Singh <bsingharora@gmail.com>
12316 S:      Maintained
12317 F:      include/linux/delayacct.h
12318 F:      kernel/delayacct.c
12319
12320 PERFORMANCE EVENTS SUBSYSTEM
12321 M:      Peter Zijlstra <peterz@infradead.org>
12322 M:      Ingo Molnar <mingo@redhat.com>
12323 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
12324 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
12325 R:      Jiri Olsa <jolsa@redhat.com>
12326 R:      Namhyung Kim <namhyung@kernel.org>
12327 L:      linux-kernel@vger.kernel.org
12328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12329 S:      Supported
12330 F:      kernel/events/*
12331 F:      include/linux/perf_event.h
12332 F:      include/uapi/linux/perf_event.h
12333 F:      arch/*/kernel/perf_event*.c
12334 F:      arch/*/kernel/*/perf_event*.c
12335 F:      arch/*/kernel/*/*/perf_event*.c
12336 F:      arch/*/include/asm/perf_event.h
12337 F:      arch/*/kernel/perf_callchain.c
12338 F:      arch/*/events/*
12339 F:      arch/*/events/*/*
12340 F:      tools/perf/
12341
12342 PERSONALITY HANDLING
12343 M:      Christoph Hellwig <hch@infradead.org>
12344 L:      linux-abi-devel@lists.sourceforge.net
12345 S:      Maintained
12346 F:      include/linux/personality.h
12347 F:      include/uapi/linux/personality.h
12348
12349 PHOENIX RC FLIGHT CONTROLLER ADAPTER
12350 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12351 L:      linux-input@vger.kernel.org
12352 S:      Maintained
12353 F:      Documentation/input/devices/pxrc.rst
12354 F:      drivers/input/joystick/pxrc.c
12355
12356 PHONET PROTOCOL
12357 M:      Remi Denis-Courmont <courmisch@gmail.com>
12358 S:      Supported
12359 F:      Documentation/networking/phonet.txt
12360 F:      include/linux/phonet.h
12361 F:      include/net/phonet/
12362 F:      include/uapi/linux/phonet.h
12363 F:      net/phonet/
12364
12365 PHRAM MTD DRIVER
12366 M:      Joern Engel <joern@lazybastard.org>
12367 L:      linux-mtd@lists.infradead.org
12368 S:      Maintained
12369 F:      drivers/mtd/devices/phram.c
12370
12371 PICOLCD HID DRIVER
12372 M:      Bruno Prémont <bonbons@linux-vserver.org>
12373 L:      linux-input@vger.kernel.org
12374 S:      Maintained
12375 F:      drivers/hid/hid-picolcd*
12376
12377 PICOXCELL SUPPORT
12378 M:      Jamie Iles <jamie@jamieiles.com>
12379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12380 T:      git git://github.com/jamieiles/linux-2.6-ji.git
12381 S:      Supported
12382 F:      arch/arm/boot/dts/picoxcell*
12383 F:      arch/arm/mach-picoxcell/
12384 F:      drivers/crypto/picoxcell*
12385
12386 PIN CONTROL SUBSYSTEM
12387 M:      Linus Walleij <linus.walleij@linaro.org>
12388 L:      linux-gpio@vger.kernel.org
12389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
12390 S:      Maintained
12391 F:      Documentation/devicetree/bindings/pinctrl/
12392 F:      Documentation/driver-api/pinctl.rst
12393 F:      drivers/pinctrl/
12394 F:      include/linux/pinctrl/
12395
12396 PIN CONTROLLER - MICROCHIP AT91
12397 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12399 L:      linux-gpio@vger.kernel.org
12400 S:      Supported
12401 F:      drivers/pinctrl/pinctrl-at91*
12402
12403 PIN CONTROLLER - FREESCALE
12404 M:      Dong Aisheng <aisheng.dong@nxp.com>
12405 M:      Fabio Estevam <festevam@gmail.com>
12406 M:      Shawn Guo <shawnguo@kernel.org>
12407 M:      Stefan Agner <stefan@agner.ch>
12408 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
12409 L:      linux-gpio@vger.kernel.org
12410 S:      Maintained
12411 F:      drivers/pinctrl/freescale/
12412 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
12413
12414 PIN CONTROLLER - INTEL
12415 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
12416 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
12417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
12418 S:      Maintained
12419 F:      drivers/pinctrl/intel/
12420
12421 PIN CONTROLLER - MEDIATEK
12422 M:      Sean Wang <sean.wang@kernel.org>
12423 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12424 S:      Maintained
12425 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
12426 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
12427 F:      drivers/pinctrl/mediatek/
12428
12429 PIN CONTROLLER - QUALCOMM
12430 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
12431 S:      Maintained
12432 L:      linux-arm-msm@vger.kernel.org
12433 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
12434 F:      drivers/pinctrl/qcom/
12435
12436 PIN CONTROLLER - RENESAS
12437 M:      Geert Uytterhoeven <geert+renesas@glider.be>
12438 L:      linux-renesas-soc@vger.kernel.org
12439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
12440 S:      Maintained
12441 F:      drivers/pinctrl/pinctrl-rz*
12442 F:      drivers/pinctrl/sh-pfc/
12443
12444 PIN CONTROLLER - SAMSUNG
12445 M:      Tomasz Figa <tomasz.figa@gmail.com>
12446 M:      Krzysztof Kozlowski <krzk@kernel.org>
12447 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12449 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12450 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
12451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
12452 S:      Maintained
12453 F:      drivers/pinctrl/samsung/
12454 F:      include/dt-bindings/pinctrl/samsung.h
12455 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
12456
12457 PIN CONTROLLER - SINGLE
12458 M:      Tony Lindgren <tony@atomide.com>
12459 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
12460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12461 L:      linux-omap@vger.kernel.org
12462 S:      Maintained
12463 F:      drivers/pinctrl/pinctrl-single.c
12464
12465 PIN CONTROLLER - ST SPEAR
12466 M:      Viresh Kumar <vireshk@kernel.org>
12467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12468 W:      http://www.st.com/spear
12469 S:      Maintained
12470 F:      drivers/pinctrl/spear/
12471
12472 PISTACHIO SOC SUPPORT
12473 M:      James Hartley <james.hartley@sondrel.com>
12474 L:      linux-mips@vger.kernel.org
12475 S:      Odd Fixes
12476 F:      arch/mips/pistachio/
12477 F:      arch/mips/include/asm/mach-pistachio/
12478 F:      arch/mips/boot/dts/img/pistachio*
12479 F:      arch/mips/configs/pistachio*_defconfig
12480
12481 PKTCDVD DRIVER
12482 S:      Orphan
12483 M:      linux-block@vger.kernel.org
12484 F:      drivers/block/pktcdvd.c
12485 F:      include/linux/pktcdvd.h
12486 F:      include/uapi/linux/pktcdvd.h
12487
12488 PKUNITY SOC DRIVERS
12489 M:      Guan Xuetao <gxt@pku.edu.cn>
12490 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12491 S:      Maintained
12492 T:      git git://github.com/gxt/linux.git
12493 F:      drivers/input/serio/i8042-unicore32io.h
12494 F:      drivers/i2c/busses/i2c-puv3.c
12495 F:      drivers/video/fbdev/fb-puv3.c
12496 F:      drivers/rtc/rtc-puv3.c
12497
12498 PMBUS HARDWARE MONITORING DRIVERS
12499 M:      Guenter Roeck <linux@roeck-us.net>
12500 L:      linux-hwmon@vger.kernel.org
12501 W:      http://hwmon.wiki.kernel.org/
12502 W:      http://www.roeck-us.net/linux/drivers/
12503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
12504 S:      Maintained
12505 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
12506 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
12507 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
12508 F:      Documentation/hwmon/adm1275.rst
12509 F:      Documentation/hwmon/ibm-cffps.rst
12510 F:      Documentation/hwmon/ir35221.rst
12511 F:      Documentation/hwmon/lm25066.rst
12512 F:      Documentation/hwmon/ltc2978.rst
12513 F:      Documentation/hwmon/ltc3815.rst
12514 F:      Documentation/hwmon/max16064.rst
12515 F:      Documentation/hwmon/max20751.rst
12516 F:      Documentation/hwmon/max31785.rst
12517 F:      Documentation/hwmon/max34440.rst
12518 F:      Documentation/hwmon/max8688.rst
12519 F:      Documentation/hwmon/pmbus.rst
12520 F:      Documentation/hwmon/pmbus-core.rst
12521 F:      Documentation/hwmon/tps40422.rst
12522 F:      Documentation/hwmon/ucd9000.rst
12523 F:      Documentation/hwmon/ucd9200.rst
12524 F:      Documentation/hwmon/zl6100.rst
12525 F:      drivers/hwmon/pmbus/
12526 F:      include/linux/pmbus.h
12527
12528 PMC SIERRA MaxRAID DRIVER
12529 L:      linux-scsi@vger.kernel.org
12530 W:      http://www.pmc-sierra.com/
12531 S:      Orphan
12532 F:      drivers/scsi/pmcraid.*
12533
12534 PMC SIERRA PM8001 DRIVER
12535 M:      Jack Wang <jinpu.wang@profitbricks.com>
12536 M:      lindar_liu@usish.com
12537 L:      linux-scsi@vger.kernel.org
12538 S:      Supported
12539 F:      drivers/scsi/pm8001/
12540
12541 PNP SUPPORT
12542 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
12543 S:      Maintained
12544 F:      drivers/pnp/
12545
12546 PNI RM3100 IIO DRIVER
12547 M:      Song Qiang <songqiang1304521@gmail.com>
12548 L:      linux-iio@vger.kernel.org
12549 S:      Maintained
12550 F:      drivers/iio/magnetometer/rm3100*
12551 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.txt
12552
12553 POSIX CLOCKS and TIMERS
12554 M:      Thomas Gleixner <tglx@linutronix.de>
12555 L:      linux-kernel@vger.kernel.org
12556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
12557 S:      Maintained
12558 F:      fs/timerfd.c
12559 F:      include/linux/timer*
12560 F:      kernel/time/*timer*
12561
12562 POWER MANAGEMENT CORE
12563 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
12564 L:      linux-pm@vger.kernel.org
12565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
12566 B:      https://bugzilla.kernel.org
12567 S:      Supported
12568 F:      drivers/base/power/
12569 F:      include/linux/pm.h
12570 F:      include/linux/pm_*
12571 F:      include/linux/powercap.h
12572 F:      drivers/powercap/
12573 F:      kernel/configs/nopm.config
12574
12575 POWER STATE COORDINATION INTERFACE (PSCI)
12576 M:      Mark Rutland <mark.rutland@arm.com>
12577 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
12578 L:      linux-arm-kernel@lists.infradead.org
12579 S:      Maintained
12580 F:      drivers/firmware/psci/
12581 F:      include/linux/psci.h
12582 F:      include/uapi/linux/psci.h
12583
12584 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
12585 M:      Sebastian Reichel <sre@kernel.org>
12586 L:      linux-pm@vger.kernel.org
12587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12588 S:      Maintained
12589 F:      Documentation/ABI/testing/sysfs-class-power
12590 F:      Documentation/devicetree/bindings/power/supply/
12591 F:      include/linux/power_supply.h
12592 F:      drivers/power/supply/
12593
12594 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
12595 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
12596 L:      linuxppc-dev@lists.ozlabs.org
12597 S:      Maintained
12598 F:      drivers/char/powernv-op-panel.c
12599
12600 PPP OVER ATM (RFC 2364)
12601 M:      Mitchell Blank Jr <mitch@sfgoth.com>
12602 S:      Maintained
12603 F:      net/atm/pppoatm.c
12604 F:      include/uapi/linux/atmppp.h
12605
12606 PPP OVER ETHERNET
12607 M:      Michal Ostrowski <mostrows@earthlink.net>
12608 S:      Maintained
12609 F:      drivers/net/ppp/pppoe.c
12610 F:      drivers/net/ppp/pppox.c
12611
12612 PPP OVER L2TP
12613 M:      James Chapman <jchapman@katalix.com>
12614 S:      Maintained
12615 F:      net/l2tp/l2tp_ppp.c
12616 F:      include/linux/if_pppol2tp.h
12617 F:      include/uapi/linux/if_pppol2tp.h
12618
12619 PPP PROTOCOL DRIVERS AND COMPRESSORS
12620 M:      Paul Mackerras <paulus@samba.org>
12621 L:      linux-ppp@vger.kernel.org
12622 S:      Maintained
12623 F:      drivers/net/ppp/ppp_*
12624
12625 PPS SUPPORT
12626 M:      Rodolfo Giometti <giometti@enneenne.com>
12627 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
12628 L:      linuxpps@ml.enneenne.com (subscribers-only)
12629 S:      Maintained
12630 F:      Documentation/pps/
12631 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
12632 F:      Documentation/ABI/testing/sysfs-pps
12633 F:      drivers/pps/
12634 F:      include/linux/pps*.h
12635 F:      include/uapi/linux/pps.h
12636
12637 PPTP DRIVER
12638 M:      Dmitry Kozlov <xeb@mail.ru>
12639 L:      netdev@vger.kernel.org
12640 S:      Maintained
12641 F:      drivers/net/ppp/pptp.c
12642 W:      http://sourceforge.net/projects/accel-pptp
12643
12644 PRINTK
12645 M:      Petr Mladek <pmladek@suse.com>
12646 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
12647 R:      Steven Rostedt <rostedt@goodmis.org>
12648 S:      Maintained
12649 F:      kernel/printk/
12650 F:      include/linux/printk.h
12651
12652 PRISM54 WIRELESS DRIVER
12653 M:      Luis Chamberlain <mcgrof@kernel.org>
12654 L:      linux-wireless@vger.kernel.org
12655 W:      http://wireless.kernel.org/en/users/Drivers/p54
12656 S:      Obsolete
12657 F:      drivers/net/wireless/intersil/prism54/
12658
12659 PROC FILESYSTEM
12660 R:      Alexey Dobriyan <adobriyan@gmail.com>
12661 L:      linux-kernel@vger.kernel.org
12662 L:      linux-fsdevel@vger.kernel.org
12663 S:      Maintained
12664 F:      fs/proc/
12665 F:      include/linux/proc_fs.h
12666 F:      tools/testing/selftests/proc/
12667 F:      Documentation/filesystems/proc.txt
12668
12669 PROC SYSCTL
12670 M:      Luis Chamberlain <mcgrof@kernel.org>
12671 M:      Kees Cook <keescook@chromium.org>
12672 L:      linux-kernel@vger.kernel.org
12673 L:      linux-fsdevel@vger.kernel.org
12674 S:      Maintained
12675 F:      fs/proc/proc_sysctl.c
12676 F:      include/linux/sysctl.h
12677 F:      kernel/sysctl.c
12678 F:      tools/testing/selftests/sysctl/
12679
12680 PS3 NETWORK SUPPORT
12681 M:      Geoff Levand <geoff@infradead.org>
12682 L:      netdev@vger.kernel.org
12683 L:      linuxppc-dev@lists.ozlabs.org
12684 S:      Maintained
12685 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
12686
12687 PS3 PLATFORM SUPPORT
12688 M:      Geoff Levand <geoff@infradead.org>
12689 L:      linuxppc-dev@lists.ozlabs.org
12690 S:      Maintained
12691 F:      arch/powerpc/boot/ps3*
12692 F:      arch/powerpc/include/asm/lv1call.h
12693 F:      arch/powerpc/include/asm/ps3*.h
12694 F:      arch/powerpc/platforms/ps3/
12695 F:      drivers/*/ps3*
12696 F:      drivers/ps3/
12697 F:      drivers/rtc/rtc-ps3.c
12698 F:      drivers/usb/host/*ps3.c
12699 F:      sound/ppc/snd_ps3*
12700
12701 PS3VRAM DRIVER
12702 M:      Jim Paris <jim@jtan.com>
12703 M:      Geoff Levand <geoff@infradead.org>
12704 L:      linuxppc-dev@lists.ozlabs.org
12705 S:      Maintained
12706 F:      drivers/block/ps3vram.c
12707
12708 PSAMPLE PACKET SAMPLING SUPPORT:
12709 M:      Yotam Gigi <yotam.gi@gmail.com>
12710 S:      Maintained
12711 F:      net/psample
12712 F:      include/net/psample.h
12713 F:      include/uapi/linux/psample.h
12714
12715 PSTORE FILESYSTEM
12716 M:      Kees Cook <keescook@chromium.org>
12717 M:      Anton Vorontsov <anton@enomsg.org>
12718 M:      Colin Cross <ccross@android.com>
12719 M:      Tony Luck <tony.luck@intel.com>
12720 S:      Maintained
12721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
12722 F:      fs/pstore/
12723 F:      include/linux/pstore*
12724 F:      drivers/firmware/efi/efi-pstore.c
12725 F:      drivers/acpi/apei/erst.c
12726 F:      Documentation/admin-guide/ramoops.rst
12727 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
12728 K:      \b(pstore|ramoops)
12729
12730 PTP HARDWARE CLOCK SUPPORT
12731 M:      Richard Cochran <richardcochran@gmail.com>
12732 L:      netdev@vger.kernel.org
12733 S:      Maintained
12734 W:      http://linuxptp.sourceforge.net/
12735 F:      Documentation/ABI/testing/sysfs-ptp
12736 F:      Documentation/ptp/*
12737 F:      drivers/net/phy/dp83640*
12738 F:      drivers/ptp/*
12739 F:      include/linux/ptp_cl*
12740
12741 PTRACE SUPPORT
12742 M:      Oleg Nesterov <oleg@redhat.com>
12743 S:      Maintained
12744 F:      include/asm-generic/syscall.h
12745 F:      include/linux/ptrace.h
12746 F:      include/linux/regset.h
12747 F:      include/linux/tracehook.h
12748 F:      include/uapi/linux/ptrace.h
12749 F:      include/uapi/linux/ptrace.h
12750 F:      include/asm-generic/ptrace.h
12751 F:      kernel/ptrace.c
12752 F:      arch/*/ptrace*.c
12753 F:      arch/*/*/ptrace*.c
12754 F:      arch/*/include/asm/ptrace*.h
12755
12756 PULSE8-CEC DRIVER
12757 M:      Hans Verkuil <hverkuil@xs4all.nl>
12758 L:      linux-media@vger.kernel.org
12759 T:      git git://linuxtv.org/media_tree.git
12760 S:      Maintained
12761 F:      drivers/media/usb/pulse8-cec/*
12762 F:      Documentation/media/cec-drivers/pulse8-cec.rst
12763
12764 PVRUSB2 VIDEO4LINUX DRIVER
12765 M:      Mike Isely <isely@pobox.com>
12766 L:      pvrusb2@isely.net       (subscribers-only)
12767 L:      linux-media@vger.kernel.org
12768 W:      http://www.isely.net/pvrusb2/
12769 T:      git git://linuxtv.org/media_tree.git
12770 S:      Maintained
12771 F:      Documentation/media/v4l-drivers/pvrusb2*
12772 F:      drivers/media/usb/pvrusb2/
12773
12774 PWC WEBCAM DRIVER
12775 M:      Hans Verkuil <hverkuil@xs4all.nl>
12776 L:      linux-media@vger.kernel.org
12777 T:      git git://linuxtv.org/media_tree.git
12778 S:      Odd Fixes
12779 F:      drivers/media/usb/pwc/*
12780 F:      include/trace/events/pwc.h
12781
12782 PWM FAN DRIVER
12783 M:      Kamil Debski <kamil@wypas.org>
12784 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12785 L:      linux-hwmon@vger.kernel.org
12786 S:      Supported
12787 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
12788 F:      Documentation/hwmon/pwm-fan.rst
12789 F:      drivers/hwmon/pwm-fan.c
12790
12791 PWM IR Transmitter
12792 M:      Sean Young <sean@mess.org>
12793 L:      linux-media@vger.kernel.org
12794 S:      Maintained
12795 F:      drivers/media/rc/pwm-ir-tx.c
12796
12797 PWM SUBSYSTEM
12798 M:      Thierry Reding <thierry.reding@gmail.com>
12799 L:      linux-pwm@vger.kernel.org
12800 S:      Maintained
12801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
12802 F:      Documentation/pwm.txt
12803 F:      Documentation/devicetree/bindings/pwm/
12804 F:      include/linux/pwm.h
12805 F:      drivers/pwm/
12806 F:      drivers/video/backlight/pwm_bl.c
12807 F:      include/linux/pwm_backlight.h
12808 F:      drivers/gpio/gpio-mvebu.c
12809 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
12810
12811 PXA GPIO DRIVER
12812 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12813 L:      linux-gpio@vger.kernel.org
12814 S:      Maintained
12815 F:      drivers/gpio/gpio-pxa.c
12816
12817 PXA MMCI DRIVER
12818 S:      Orphan
12819
12820 PXA RTC DRIVER
12821 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12822 L:      linux-rtc@vger.kernel.org
12823 S:      Maintained
12824
12825 PXA2xx/PXA3xx SUPPORT
12826 M:      Daniel Mack <daniel@zonque.org>
12827 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
12828 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12830 T:      git git://github.com/hzhuang1/linux.git
12831 T:      git git://github.com/rjarzmik/linux.git
12832 S:      Maintained
12833 F:      arch/arm/boot/dts/pxa*
12834 F:      arch/arm/mach-pxa/
12835 F:      drivers/dma/pxa*
12836 F:      drivers/pcmcia/pxa2xx*
12837 F:      drivers/pinctrl/pxa/
12838 F:      drivers/spi/spi-pxa2xx*
12839 F:      drivers/usb/gadget/udc/pxa2*
12840 F:      include/sound/pxa2xx-lib.h
12841 F:      sound/arm/pxa*
12842 F:      sound/soc/pxa/
12843
12844 QAT DRIVER
12845 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
12846 L:      qat-linux@intel.com
12847 S:      Supported
12848 F:      drivers/crypto/qat/
12849
12850 QCOM AUDIO (ASoC) DRIVERS
12851 M:      Patrick Lai <plai@codeaurora.org>
12852 M:      Banajit Goswami <bgoswami@codeaurora.org>
12853 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12854 S:      Supported
12855 F:      sound/soc/qcom/
12856
12857 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
12858 M:      Gabriel Somlo <somlo@cmu.edu>
12859 M:      "Michael S. Tsirkin" <mst@redhat.com>
12860 L:      qemu-devel@nongnu.org
12861 S:      Maintained
12862 F:      drivers/firmware/qemu_fw_cfg.c
12863 F:      include/uapi/linux/qemu_fw_cfg.h
12864
12865 QIB DRIVER
12866 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
12867 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
12868 L:      linux-rdma@vger.kernel.org
12869 S:      Supported
12870 F:      drivers/infiniband/hw/qib/
12871
12872 QLOGIC QL41xxx FCOE DRIVER
12873 M:      QLogic-Storage-Upstream@cavium.com
12874 L:      linux-scsi@vger.kernel.org
12875 S:      Supported
12876 F:      drivers/scsi/qedf/
12877
12878 QLOGIC QL41xxx ISCSI DRIVER
12879 M:      QLogic-Storage-Upstream@cavium.com
12880 L:      linux-scsi@vger.kernel.org
12881 S:      Supported
12882 F:      drivers/scsi/qedi/
12883
12884 QLOGIC QL4xxx ETHERNET DRIVER
12885 M:      Ariel Elior <aelior@marvell.com>
12886 M:      GR-everest-linux-l2@marvell.com
12887 L:      netdev@vger.kernel.org
12888 S:      Supported
12889 F:      drivers/net/ethernet/qlogic/qed/
12890 F:      include/linux/qed/
12891 F:      drivers/net/ethernet/qlogic/qede/
12892
12893 QLOGIC QL4xxx RDMA DRIVER
12894 M:      Michal Kalderon <mkalderon@marvell.com>
12895 M:      Ariel Elior <aelior@marvell.com>
12896 L:      linux-rdma@vger.kernel.org
12897 S:      Supported
12898 F:      drivers/infiniband/hw/qedr/
12899 F:      include/uapi/rdma/qedr-abi.h
12900
12901 QLOGIC QLA1280 SCSI DRIVER
12902 M:      Michael Reed <mdr@sgi.com>
12903 L:      linux-scsi@vger.kernel.org
12904 S:      Maintained
12905 F:      drivers/scsi/qla1280.[ch]
12906
12907 QLOGIC QLA2XXX FC-SCSI DRIVER
12908 M:      qla2xxx-upstream@qlogic.com
12909 L:      linux-scsi@vger.kernel.org
12910 S:      Supported
12911 F:      Documentation/scsi/LICENSE.qla2xxx
12912 F:      drivers/scsi/qla2xxx/
12913
12914 QLOGIC QLA3XXX NETWORK DRIVER
12915 M:      GR-Linux-NIC-Dev@marvell.com
12916 L:      netdev@vger.kernel.org
12917 S:      Supported
12918 F:      Documentation/networking/device_drivers/qlogic/LICENSE.qla3xxx
12919 F:      drivers/net/ethernet/qlogic/qla3xxx.*
12920
12921 QLOGIC QLA4XXX iSCSI DRIVER
12922 M:      QLogic-Storage-Upstream@qlogic.com
12923 L:      linux-scsi@vger.kernel.org
12924 S:      Supported
12925 F:      Documentation/scsi/LICENSE.qla4xxx
12926 F:      drivers/scsi/qla4xxx/
12927
12928 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
12929 M:      Shahed Shaikh <shshaikh@marvell.com>
12930 M:      Manish Chopra <manishc@marvell.com>
12931 M:      GR-Linux-NIC-Dev@marvell.com
12932 L:      netdev@vger.kernel.org
12933 S:      Supported
12934 F:      drivers/net/ethernet/qlogic/qlcnic/
12935
12936 QLOGIC QLGE 10Gb ETHERNET DRIVER
12937 M:      Manish Chopra <manishc@marvell.com>
12938 M:      GR-Linux-NIC-Dev@marvell.com
12939 L:      netdev@vger.kernel.org
12940 S:      Supported
12941 F:      drivers/net/ethernet/qlogic/qlge/
12942
12943 QM1D1B0004 MEDIA DRIVER
12944 M:      Akihiro Tsukada <tskd08@gmail.com>
12945 L:      linux-media@vger.kernel.org
12946 S:      Odd Fixes
12947 F:      drivers/media/tuners/qm1d1b0004*
12948
12949 QM1D1C0042 MEDIA DRIVER
12950 M:      Akihiro Tsukada <tskd08@gmail.com>
12951 L:      linux-media@vger.kernel.org
12952 S:      Odd Fixes
12953 F:      drivers/media/tuners/qm1d1c0042*
12954
12955 QNX4 FILESYSTEM
12956 M:      Anders Larsen <al@alarsen.net>
12957 W:      http://www.alarsen.net/linux/qnx4fs/
12958 S:      Maintained
12959 F:      fs/qnx4/
12960 F:      include/uapi/linux/qnx4_fs.h
12961 F:      include/uapi/linux/qnxtypes.h
12962
12963 QORIQ DPAA2 FSL-MC BUS DRIVER
12964 M:      Stuart Yoder <stuyoder@gmail.com>
12965 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
12966 L:      linux-kernel@vger.kernel.org
12967 S:      Maintained
12968 F:      drivers/bus/fsl-mc/
12969 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
12970 F:      Documentation/networking/device_drivers/freescale/dpaa2/overview.rst
12971
12972 QT1010 MEDIA DRIVER
12973 M:      Antti Palosaari <crope@iki.fi>
12974 L:      linux-media@vger.kernel.org
12975 W:      https://linuxtv.org
12976 W:      http://palosaari.fi/linux/
12977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12978 T:      git git://linuxtv.org/anttip/media_tree.git
12979 S:      Maintained
12980 F:      drivers/media/tuners/qt1010*
12981
12982 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
12983 M:      Kalle Valo <kvalo@codeaurora.org>
12984 L:      ath10k@lists.infradead.org
12985 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
12986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
12987 S:      Supported
12988 F:      drivers/net/wireless/ath/ath10k/
12989
12990 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
12991 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
12992 L:      linux-wireless@vger.kernel.org
12993 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
12994 S:      Supported
12995 F:      drivers/net/wireless/ath/ath9k/
12996
12997 QUALCOMM CAMERA SUBSYSTEM DRIVER
12998 M:      Todor Tomov <todor.too@gmail.com>
12999 L:      linux-media@vger.kernel.org
13000 S:      Maintained
13001 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
13002 F:      Documentation/media/v4l-drivers/qcom_camss.rst
13003 F:      drivers/media/platform/qcom/camss/
13004
13005 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
13006 M:      Ilia Lin <ilia.lin@kernel.org>
13007 L:      linux-pm@vger.kernel.org
13008 S:      Maintained
13009 F:      Documentation/devicetree/bindings/opp/kryo-cpufreq.txt
13010 F:      drivers/cpufreq/qcom-cpufreq-kryo.c
13011
13012 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
13013 M:      Timur Tabi <timur@kernel.org>
13014 L:      netdev@vger.kernel.org
13015 S:      Maintained
13016 F:      drivers/net/ethernet/qualcomm/emac/
13017
13018 QUALCOMM ETHQOS ETHERNET DRIVER
13019 M:      Vinod Koul <vkoul@kernel.org>
13020 M:      Niklas Cassel <niklas.cassel@linaro.org>
13021 L:      netdev@vger.kernel.org
13022 S:      Maintained
13023 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
13024 F:      Documentation/devicetree/bindings/net/qcom,dwmac.txt
13025
13026 QUALCOMM GENERIC INTERFACE I2C DRIVER
13027 M:      Alok Chauhan <alokc@codeaurora.org>
13028 M:      Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
13029 L:      linux-i2c@vger.kernel.org
13030 L:      linux-arm-msm@vger.kernel.org
13031 S:      Supported
13032 F:      drivers/i2c/busses/i2c-qcom-geni.c
13033
13034 QUALCOMM HEXAGON ARCHITECTURE
13035 M:      Richard Kuo <rkuo@codeaurora.org>
13036 L:      linux-hexagon@vger.kernel.org
13037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
13038 S:      Supported
13039 F:      arch/hexagon/
13040
13041 QUALCOMM HIDMA DRIVER
13042 M:      Sinan Kaya <okaya@kernel.org>
13043 L:      linux-arm-kernel@lists.infradead.org
13044 L:      linux-arm-msm@vger.kernel.org
13045 L:      dmaengine@vger.kernel.org
13046 S:      Supported
13047 F:      drivers/dma/qcom/hidma*
13048
13049 QUALCOMM IOMMU
13050 M:      Rob Clark <robdclark@gmail.com>
13051 L:      iommu@lists.linux-foundation.org
13052 L:      linux-arm-msm@vger.kernel.org
13053 S:      Maintained
13054 F:      drivers/iommu/qcom_iommu.c
13055
13056 QUALCOMM TSENS THERMAL DRIVER
13057 M:      Amit Kucheria <amit.kucheria@linaro.org>
13058 L:      linux-pm@vger.kernel.org
13059 L:      linux-arm-msm@vger.kernel.org
13060 S:      Maintained
13061 F:      drivers/thermal/qcom/
13062
13063 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
13064 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
13065 L:      linux-media@vger.kernel.org
13066 L:      linux-arm-msm@vger.kernel.org
13067 T:      git git://linuxtv.org/media_tree.git
13068 S:      Maintained
13069 F:      drivers/media/platform/qcom/venus/
13070
13071 QUALCOMM WCN36XX WIRELESS DRIVER
13072 M:      Kalle Valo <kvalo@codeaurora.org>
13073 L:      wcn36xx@lists.infradead.org
13074 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
13075 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
13076 S:      Supported
13077 F:      drivers/net/wireless/ath/wcn36xx/
13078
13079 QUANTENNA QTNFMAC WIRELESS DRIVER
13080 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
13081 M:      Avinash Patil <avinashp@quantenna.com>
13082 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
13083 L:      linux-wireless@vger.kernel.org
13084 S:      Maintained
13085 F:      drivers/net/wireless/quantenna
13086
13087 RADEON and AMDGPU DRM DRIVERS
13088 M:      Alex Deucher <alexander.deucher@amd.com>
13089 M:      Christian König <christian.koenig@amd.com>
13090 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
13091 L:      amd-gfx@lists.freedesktop.org
13092 T:      git git://people.freedesktop.org/~agd5f/linux
13093 S:      Supported
13094 F:      drivers/gpu/drm/radeon/
13095 F:      include/uapi/drm/radeon_drm.h
13096 F:      drivers/gpu/drm/amd/
13097 F:      include/uapi/drm/amdgpu_drm.h
13098
13099 RADEON FRAMEBUFFER DISPLAY DRIVER
13100 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
13101 L:      linux-fbdev@vger.kernel.org
13102 S:      Maintained
13103 F:      drivers/video/fbdev/aty/radeon*
13104 F:      include/uapi/linux/radeonfb.h
13105
13106 RADIOSHARK RADIO DRIVER
13107 M:      Hans Verkuil <hverkuil@xs4all.nl>
13108 L:      linux-media@vger.kernel.org
13109 T:      git git://linuxtv.org/media_tree.git
13110 S:      Maintained
13111 F:      drivers/media/radio/radio-shark.c
13112
13113 RADIOSHARK2 RADIO DRIVER
13114 M:      Hans Verkuil <hverkuil@xs4all.nl>
13115 L:      linux-media@vger.kernel.org
13116 T:      git git://linuxtv.org/media_tree.git
13117 S:      Maintained
13118 F:      drivers/media/radio/radio-shark2.c
13119 F:      drivers/media/radio/radio-tea5777.c
13120
13121 RADOS BLOCK DEVICE (RBD)
13122 M:      Ilya Dryomov <idryomov@gmail.com>
13123 M:      Sage Weil <sage@redhat.com>
13124 M:      Alex Elder <elder@kernel.org>
13125 L:      ceph-devel@vger.kernel.org
13126 W:      http://ceph.com/
13127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
13128 T:      git git://github.com/ceph/ceph-client.git
13129 S:      Supported
13130 F:      Documentation/ABI/testing/sysfs-bus-rbd
13131 F:      drivers/block/rbd.c
13132 F:      drivers/block/rbd_types.h
13133
13134 RAGE128 FRAMEBUFFER DISPLAY DRIVER
13135 M:      Paul Mackerras <paulus@samba.org>
13136 L:      linux-fbdev@vger.kernel.org
13137 S:      Maintained
13138 F:      drivers/video/fbdev/aty/aty128fb.c
13139
13140 RAINSHADOW-CEC DRIVER
13141 M:      Hans Verkuil <hverkuil@xs4all.nl>
13142 L:      linux-media@vger.kernel.org
13143 T:      git git://linuxtv.org/media_tree.git
13144 S:      Maintained
13145 F:      drivers/media/usb/rainshadow-cec/*
13146
13147 RALINK MIPS ARCHITECTURE
13148 M:      John Crispin <john@phrozen.org>
13149 L:      linux-mips@vger.kernel.org
13150 S:      Maintained
13151 F:      arch/mips/ralink
13152
13153 RALINK RT2X00 WIRELESS LAN DRIVER
13154 P:      rt2x00 project
13155 M:      Stanislaw Gruszka <sgruszka@redhat.com>
13156 M:      Helmut Schaa <helmut.schaa@googlemail.com>
13157 L:      linux-wireless@vger.kernel.org
13158 S:      Maintained
13159 F:      drivers/net/wireless/ralink/rt2x00/
13160
13161 RAMDISK RAM BLOCK DEVICE DRIVER
13162 M:      Jens Axboe <axboe@kernel.dk>
13163 S:      Maintained
13164 F:      Documentation/blockdev/ramdisk.txt
13165 F:      drivers/block/brd.c
13166
13167 RANCHU VIRTUAL BOARD FOR MIPS
13168 M:      Miodrag Dinic <miodrag.dinic@mips.com>
13169 L:      linux-mips@vger.kernel.org
13170 S:      Supported
13171 F:      arch/mips/generic/board-ranchu.c
13172 F:      arch/mips/configs/generic/board-ranchu.config
13173
13174 RANDOM NUMBER DRIVER
13175 M:      "Theodore Ts'o" <tytso@mit.edu>
13176 S:      Maintained
13177 F:      drivers/char/random.c
13178
13179 RAPIDIO SUBSYSTEM
13180 M:      Matt Porter <mporter@kernel.crashing.org>
13181 M:      Alexandre Bounine <alex.bou9@gmail.com>
13182 S:      Maintained
13183 F:      drivers/rapidio/
13184
13185 RAS INFRASTRUCTURE
13186 M:      Tony Luck <tony.luck@intel.com>
13187 M:      Borislav Petkov <bp@alien8.de>
13188 L:      linux-edac@vger.kernel.org
13189 S:      Maintained
13190 F:      drivers/ras/
13191 F:      include/linux/ras.h
13192 F:      include/ras/ras_event.h
13193 F:      Documentation/admin-guide/ras.rst
13194
13195 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
13196 L:      linux-wireless@vger.kernel.org
13197 S:      Orphan
13198 F:      drivers/net/wireless/ray*
13199
13200 RCUTORTURE TEST FRAMEWORK
13201 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
13202 M:      Josh Triplett <josh@joshtriplett.org>
13203 R:      Steven Rostedt <rostedt@goodmis.org>
13204 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13205 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13206 L:      rcu@vger.kernel.org
13207 S:      Supported
13208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13209 F:      tools/testing/selftests/rcutorture
13210
13211 RDC R-321X SoC
13212 M:      Florian Fainelli <florian@openwrt.org>
13213 S:      Maintained
13214
13215 RDC R6040 FAST ETHERNET DRIVER
13216 M:      Florian Fainelli <f.fainelli@gmail.com>
13217 L:      netdev@vger.kernel.org
13218 S:      Maintained
13219 F:      drivers/net/ethernet/rdc/r6040.c
13220
13221 RDMAVT - RDMA verbs software
13222 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
13223 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
13224 L:      linux-rdma@vger.kernel.org
13225 S:      Supported
13226 F:      drivers/infiniband/sw/rdmavt
13227
13228 RDS - RELIABLE DATAGRAM SOCKETS
13229 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
13230 L:      netdev@vger.kernel.org
13231 L:      linux-rdma@vger.kernel.org
13232 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
13233 W:      https://oss.oracle.com/projects/rds/
13234 S:      Supported
13235 F:      net/rds/
13236 F:      Documentation/networking/rds.txt
13237
13238 RDT - RESOURCE ALLOCATION
13239 M:      Fenghua Yu <fenghua.yu@intel.com>
13240 M:      Reinette Chatre <reinette.chatre@intel.com>
13241 L:      linux-kernel@vger.kernel.org
13242 S:      Supported
13243 F:      arch/x86/kernel/cpu/resctrl/
13244 F:      arch/x86/include/asm/resctrl_sched.h
13245 F:      Documentation/x86/resctrl*
13246
13247 READ-COPY UPDATE (RCU)
13248 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
13249 M:      Josh Triplett <josh@joshtriplett.org>
13250 R:      Steven Rostedt <rostedt@goodmis.org>
13251 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13252 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13253 R:      Joel Fernandes <joel@joelfernandes.org>
13254 L:      rcu@vger.kernel.org
13255 W:      http://www.rdrop.com/users/paulmck/RCU/
13256 S:      Supported
13257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
13258 F:      Documentation/RCU/
13259 X:      Documentation/RCU/torture.txt
13260 F:      include/linux/rcu*
13261 X:      include/linux/srcu*.h
13262 F:      kernel/rcu/
13263 X:      kernel/rcu/srcu*.c
13264
13265 REAL TIME CLOCK (RTC) SUBSYSTEM
13266 M:      Alessandro Zummo <a.zummo@towertech.it>
13267 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13268 L:      linux-rtc@vger.kernel.org
13269 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
13270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
13271 S:      Maintained
13272 F:      Documentation/devicetree/bindings/rtc/
13273 F:      Documentation/rtc.txt
13274 F:      drivers/rtc/
13275 F:      include/linux/rtc.h
13276 F:      include/uapi/linux/rtc.h
13277 F:      include/linux/rtc/
13278 F:      include/linux/platform_data/rtc-*
13279 F:      tools/testing/selftests/rtc/
13280
13281 REALTEK AUDIO CODECS
13282 M:      Bard Liao <bardliao@realtek.com>
13283 M:      Oder Chiou <oder_chiou@realtek.com>
13284 S:      Maintained
13285 F:      sound/soc/codecs/rt*
13286 F:      include/sound/rt*.h
13287
13288 REALTEK RTL83xx SMI DSA ROUTER CHIPS
13289 M:      Linus Walleij <linus.walleij@linaro.org>
13290 S:      Maintained
13291 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
13292 F:      drivers/net/dsa/realtek-smi*
13293 F:      drivers/net/dsa/rtl83*
13294
13295 REDPINE WIRELESS DRIVER
13296 M:      Amitkumar Karwar <amitkarwar@gmail.com>
13297 M:      Siva Rebbagondla <siva8118@gmail.com>
13298 L:      linux-wireless@vger.kernel.org
13299 S:      Maintained
13300 F:      drivers/net/wireless/rsi/
13301
13302 REGISTER MAP ABSTRACTION
13303 M:      Mark Brown <broonie@kernel.org>
13304 L:      linux-kernel@vger.kernel.org
13305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
13306 S:      Supported
13307 F:      Documentation/devicetree/bindings/regmap/
13308 F:      drivers/base/regmap/
13309 F:      include/linux/regmap.h
13310
13311 REISERFS FILE SYSTEM
13312 L:      reiserfs-devel@vger.kernel.org
13313 S:      Supported
13314 F:      fs/reiserfs/
13315
13316 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
13317 M:      Ohad Ben-Cohen <ohad@wizery.com>
13318 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13319 L:      linux-remoteproc@vger.kernel.org
13320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
13321 S:      Maintained
13322 F:      Documentation/devicetree/bindings/remoteproc/
13323 F:      Documentation/remoteproc.txt
13324 F:      drivers/remoteproc/
13325 F:      include/linux/remoteproc.h
13326
13327 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
13328 M:      Ohad Ben-Cohen <ohad@wizery.com>
13329 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
13330 L:      linux-remoteproc@vger.kernel.org
13331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
13332 S:      Maintained
13333 F:      drivers/rpmsg/
13334 F:      Documentation/rpmsg.txt
13335 F:      include/linux/rpmsg.h
13336 F:      include/linux/rpmsg/
13337
13338 RENESAS CLOCK DRIVERS
13339 M:      Geert Uytterhoeven <geert+renesas@glider.be>
13340 L:      linux-renesas-soc@vger.kernel.org
13341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
13342 S:      Supported
13343 F:      drivers/clk/renesas/
13344
13345 RENESAS EMEV2 I2C DRIVER
13346 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13347 S:      Supported
13348 F:      drivers/i2c/busses/i2c-emev2.c
13349
13350 RENESAS ETHERNET DRIVERS
13351 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
13352 L:      netdev@vger.kernel.org
13353 L:      linux-renesas-soc@vger.kernel.org
13354 F:      Documentation/devicetree/bindings/net/renesas,*.txt
13355 F:      Documentation/devicetree/bindings/net/sh_eth.txt
13356 F:      drivers/net/ethernet/renesas/
13357 F:      include/linux/sh_eth.h
13358
13359 RENESAS R-CAR GYROADC DRIVER
13360 M:      Marek Vasut <marek.vasut@gmail.com>
13361 L:      linux-iio@vger.kernel.org
13362 S:      Supported
13363 F:      Documentation/devicetree/bindings/iio/adc/renesas,gyroadc.txt
13364 F:      drivers/iio/adc/rcar-gyroadc.c
13365
13366 RENESAS R-CAR I2C DRIVERS
13367 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13368 S:      Supported
13369 F:      drivers/i2c/busses/i2c-rcar.c
13370 F:      drivers/i2c/busses/i2c-sh_mobile.c
13371
13372 RENESAS RIIC DRIVER
13373 M:      Chris Brandt <chris.brandt@renesas.com>
13374 S:      Supported
13375 F:      Documentation/devicetree/bindings/i2c/i2c-riic.txt
13376 F:      drivers/i2c/busses/i2c-riic.c
13377
13378 RENESAS USB PHY DRIVER
13379 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
13380 L:      linux-renesas-soc@vger.kernel.org
13381 S:      Maintained
13382 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
13383
13384 RESET CONTROLLER FRAMEWORK
13385 M:      Philipp Zabel <p.zabel@pengutronix.de>
13386 T:      git git://git.pengutronix.de/git/pza/linux
13387 S:      Maintained
13388 F:      drivers/reset/
13389 F:      Documentation/devicetree/bindings/reset/
13390 F:      include/dt-bindings/reset/
13391 F:      include/linux/reset.h
13392 F:      include/linux/reset/
13393 F:      include/linux/reset-controller.h
13394
13395 RESTARTABLE SEQUENCES SUPPORT
13396 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13397 M:      Peter Zijlstra <peterz@infradead.org>
13398 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
13399 M:      Boqun Feng <boqun.feng@gmail.com>
13400 L:      linux-kernel@vger.kernel.org
13401 S:      Supported
13402 F:      kernel/rseq.c
13403 F:      include/uapi/linux/rseq.h
13404 F:      include/trace/events/rseq.h
13405 F:      tools/testing/selftests/rseq/
13406
13407 RFKILL
13408 M:      Johannes Berg <johannes@sipsolutions.net>
13409 L:      linux-wireless@vger.kernel.org
13410 W:      http://wireless.kernel.org/
13411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
13412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
13413 S:      Maintained
13414 F:      Documentation/rfkill.txt
13415 F:      Documentation/ABI/stable/sysfs-class-rfkill
13416 F:      net/rfkill/
13417 F:      include/linux/rfkill.h
13418 F:      include/uapi/linux/rfkill.h
13419
13420 RHASHTABLE
13421 M:      Thomas Graf <tgraf@suug.ch>
13422 M:      Herbert Xu <herbert@gondor.apana.org.au>
13423 L:      netdev@vger.kernel.org
13424 S:      Maintained
13425 F:      lib/rhashtable.c
13426 F:      lib/test_rhashtable.c
13427 F:      include/linux/rhashtable.h
13428 F:      include/linux/rhashtable-types.h
13429
13430 RICOH R5C592 MEMORYSTICK DRIVER
13431 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13432 S:      Maintained
13433 F:      drivers/memstick/host/r592.*
13434
13435 RICOH SMARTMEDIA/XD DRIVER
13436 M:      Maxim Levitsky <maximlevitsky@gmail.com>
13437 S:      Maintained
13438 F:      drivers/mtd/nand/raw/r852.c
13439 F:      drivers/mtd/nand/raw/r852.h
13440
13441 RISC-V ARCHITECTURE
13442 M:      Palmer Dabbelt <palmer@sifive.com>
13443 M:      Albert Ou <aou@eecs.berkeley.edu>
13444 L:      linux-riscv@lists.infradead.org
13445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
13446 S:      Supported
13447 F:      arch/riscv/
13448 K:      riscv
13449 N:      riscv
13450
13451 ROCCAT DRIVERS
13452 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
13453 W:      http://sourceforge.net/projects/roccat/
13454 S:      Maintained
13455 F:      drivers/hid/hid-roccat*
13456 F:      include/linux/hid-roccat*
13457 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
13458
13459 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
13460 M:      Jacob chen <jacob2.chen@rock-chips.com>
13461 L:      linux-media@vger.kernel.org
13462 S:      Maintained
13463 F:      drivers/media/platform/rockchip/rga/
13464 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
13465
13466 ROCKCHIP VPU CODEC DRIVER
13467 M:      Ezequiel Garcia <ezequiel@collabora.com>
13468 L:      linux-media@vger.kernel.org
13469 S:      Maintained
13470 F:      drivers/staging/media/platform/rockchip/vpu/
13471 F:      Documentation/devicetree/bindings/media/rockchip-vpu.txt
13472
13473 ROCKER DRIVER
13474 M:      Jiri Pirko <jiri@resnulli.us>
13475 L:      netdev@vger.kernel.org
13476 S:      Supported
13477 F:      drivers/net/ethernet/rocker/
13478
13479 ROCKETPORT DRIVER
13480 P:      Comtrol Corp.
13481 W:      http://www.comtrol.com
13482 S:      Maintained
13483 F:      Documentation/serial/rocket.rst
13484 F:      drivers/tty/rocket*
13485
13486 ROCKETPORT EXPRESS/INFINITY DRIVER
13487 M:      Kevin Cernekee <cernekee@gmail.com>
13488 L:      linux-serial@vger.kernel.org
13489 S:      Odd Fixes
13490 F:      drivers/tty/serial/rp2.*
13491
13492 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
13493 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
13494 L:      linux-kernel@vger.kernel.org
13495 L:      linux-renesas-soc@vger.kernel.org
13496 S:      Supported
13497 F:      drivers/mfd/bd9571mwv.c
13498 F:      drivers/regulator/bd9571mwv-regulator.c
13499 F:      drivers/gpio/gpio-bd9571mwv.c
13500 F:      include/linux/mfd/bd9571mwv.h
13501 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
13502
13503 ROSE NETWORK LAYER
13504 M:      Ralf Baechle <ralf@linux-mips.org>
13505 L:      linux-hams@vger.kernel.org
13506 W:      http://www.linux-ax25.org/
13507 S:      Maintained
13508 F:      include/net/rose.h
13509 F:      include/uapi/linux/rose.h
13510 F:      net/rose/
13511
13512 RTL2830 MEDIA DRIVER
13513 M:      Antti Palosaari <crope@iki.fi>
13514 L:      linux-media@vger.kernel.org
13515 W:      https://linuxtv.org
13516 W:      http://palosaari.fi/linux/
13517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13518 T:      git git://linuxtv.org/anttip/media_tree.git
13519 S:      Maintained
13520 F:      drivers/media/dvb-frontends/rtl2830*
13521
13522 RTL2832 MEDIA DRIVER
13523 M:      Antti Palosaari <crope@iki.fi>
13524 L:      linux-media@vger.kernel.org
13525 W:      https://linuxtv.org
13526 W:      http://palosaari.fi/linux/
13527 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13528 T:      git git://linuxtv.org/anttip/media_tree.git
13529 S:      Maintained
13530 F:      drivers/media/dvb-frontends/rtl2832*
13531
13532 RTL2832_SDR MEDIA DRIVER
13533 M:      Antti Palosaari <crope@iki.fi>
13534 L:      linux-media@vger.kernel.org
13535 W:      https://linuxtv.org
13536 W:      http://palosaari.fi/linux/
13537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13538 T:      git git://linuxtv.org/anttip/media_tree.git
13539 S:      Maintained
13540 F:      drivers/media/dvb-frontends/rtl2832_sdr*
13541
13542 RTL8180 WIRELESS DRIVER
13543 L:      linux-wireless@vger.kernel.org
13544 W:      http://wireless.kernel.org/
13545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13546 S:      Orphan
13547 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
13548
13549 RTL8187 WIRELESS DRIVER
13550 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13551 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
13552 M:      Larry Finger <Larry.Finger@lwfinger.net>
13553 L:      linux-wireless@vger.kernel.org
13554 W:      http://wireless.kernel.org/
13555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13556 S:      Maintained
13557 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
13558
13559 REALTEK WIRELESS DRIVER (rtlwifi family)
13560 M:      Ping-Ke Shih <pkshih@realtek.com>
13561 L:      linux-wireless@vger.kernel.org
13562 W:      http://wireless.kernel.org/
13563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
13564 S:      Maintained
13565 F:      drivers/net/wireless/realtek/rtlwifi/
13566
13567 REALTEK WIRELESS DRIVER (rtw88)
13568 M:      Yan-Hsuan Chuang <yhchuang@realtek.com>
13569 L:      linux-wireless@vger.kernel.org
13570 S:      Maintained
13571 F:      drivers/net/wireless/realtek/rtw88/
13572
13573 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
13574 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
13575 L:      linux-wireless@vger.kernel.org
13576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
13577 S:      Maintained
13578 F:      drivers/net/wireless/realtek/rtl8xxxu/
13579
13580 RXRPC SOCKETS (AF_RXRPC)
13581 M:      David Howells <dhowells@redhat.com>
13582 L:      linux-afs@lists.infradead.org
13583 S:      Supported
13584 F:      net/rxrpc/
13585 F:      include/keys/rxrpc-type.h
13586 F:      include/net/af_rxrpc.h
13587 F:      include/trace/events/rxrpc.h
13588 F:      include/uapi/linux/rxrpc.h
13589 F:      Documentation/networking/rxrpc.txt
13590 W:      https://www.infradead.org/~dhowells/kafs/
13591
13592 S3 SAVAGE FRAMEBUFFER DRIVER
13593 M:      Antonino Daplas <adaplas@gmail.com>
13594 L:      linux-fbdev@vger.kernel.org
13595 S:      Maintained
13596 F:      drivers/video/fbdev/savage/
13597
13598 S390
13599 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
13600 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
13601 L:      linux-s390@vger.kernel.org
13602 W:      http://www.ibm.com/developerworks/linux/linux390/
13603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
13604 S:      Supported
13605 F:      arch/s390/
13606 F:      drivers/s390/
13607 F:      Documentation/s390/
13608 F:      Documentation/driver-api/s390-drivers.rst
13609
13610 S390 COMMON I/O LAYER
13611 M:      Sebastian Ott <sebott@linux.ibm.com>
13612 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
13613 L:      linux-s390@vger.kernel.org
13614 W:      http://www.ibm.com/developerworks/linux/linux390/
13615 S:      Supported
13616 F:      drivers/s390/cio/
13617
13618 S390 DASD DRIVER
13619 M:      Stefan Haberland <sth@linux.ibm.com>
13620 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
13621 L:      linux-s390@vger.kernel.org
13622 W:      http://www.ibm.com/developerworks/linux/linux390/
13623 S:      Supported
13624 F:      drivers/s390/block/dasd*
13625 F:      block/partitions/ibm.c
13626
13627 S390 IOMMU (PCI)
13628 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
13629 L:      linux-s390@vger.kernel.org
13630 W:      http://www.ibm.com/developerworks/linux/linux390/
13631 S:      Supported
13632 F:      drivers/iommu/s390-iommu.c
13633
13634 S390 IUCV NETWORK LAYER
13635 M:      Julian Wiedmann <jwi@linux.ibm.com>
13636 M:      Ursula Braun <ubraun@linux.ibm.com>
13637 L:      linux-s390@vger.kernel.org
13638 W:      http://www.ibm.com/developerworks/linux/linux390/
13639 S:      Supported
13640 F:      drivers/s390/net/*iucv*
13641 F:      include/net/iucv/
13642 F:      net/iucv/
13643
13644 S390 NETWORK DRIVERS
13645 M:      Julian Wiedmann <jwi@linux.ibm.com>
13646 M:      Ursula Braun <ubraun@linux.ibm.com>
13647 L:      linux-s390@vger.kernel.org
13648 W:      http://www.ibm.com/developerworks/linux/linux390/
13649 S:      Supported
13650 F:      drivers/s390/net/
13651
13652 S390 PCI SUBSYSTEM
13653 M:      Sebastian Ott <sebott@linux.ibm.com>
13654 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
13655 L:      linux-s390@vger.kernel.org
13656 W:      http://www.ibm.com/developerworks/linux/linux390/
13657 S:      Supported
13658 F:      arch/s390/pci/
13659 F:      drivers/pci/hotplug/s390_pci_hpc.c
13660
13661 S390 VFIO-CCW DRIVER
13662 M:      Cornelia Huck <cohuck@redhat.com>
13663 M:      Farhan Ali <alifm@linux.ibm.com>
13664 M:      Eric Farman <farman@linux.ibm.com>
13665 R:      Halil Pasic <pasic@linux.ibm.com>
13666 L:      linux-s390@vger.kernel.org
13667 L:      kvm@vger.kernel.org
13668 S:      Supported
13669 F:      drivers/s390/cio/vfio_ccw*
13670 F:      Documentation/s390/vfio-ccw.txt
13671 F:      include/uapi/linux/vfio_ccw.h
13672
13673 S390 ZCRYPT DRIVER
13674 M:      Harald Freudenberger <freude@linux.ibm.com>
13675 L:      linux-s390@vger.kernel.org
13676 W:      http://www.ibm.com/developerworks/linux/linux390/
13677 S:      Supported
13678 F:      drivers/s390/crypto/
13679
13680 S390 VFIO AP DRIVER
13681 M:      Tony Krowiak <akrowiak@linux.ibm.com>
13682 M:      Pierre Morel <pmorel@linux.ibm.com>
13683 M:      Halil Pasic <pasic@linux.ibm.com>
13684 L:      linux-s390@vger.kernel.org
13685 W:      http://www.ibm.com/developerworks/linux/linux390/
13686 S:      Supported
13687 F:      drivers/s390/crypto/vfio_ap_drv.c
13688 F:      drivers/s390/crypto/vfio_ap_private.h
13689 F:      drivers/s390/crypto/vfio_ap_ops.c
13690 F:      Documentation/s390/vfio-ap.txt
13691
13692 S390 ZFCP DRIVER
13693 M:      Steffen Maier <maier@linux.ibm.com>
13694 M:      Benjamin Block <bblock@linux.ibm.com>
13695 L:      linux-s390@vger.kernel.org
13696 W:      http://www.ibm.com/developerworks/linux/linux390/
13697 S:      Supported
13698 F:      drivers/s390/scsi/zfcp_*
13699
13700 S3C24XX SD/MMC Driver
13701 M:      Ben Dooks <ben-linux@fluff.org>
13702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13703 S:      Supported
13704 F:      drivers/mmc/host/s3cmci.*
13705
13706 SAA6588 RDS RECEIVER DRIVER
13707 M:      Hans Verkuil <hverkuil@xs4all.nl>
13708 L:      linux-media@vger.kernel.org
13709 T:      git git://linuxtv.org/media_tree.git
13710 W:      https://linuxtv.org
13711 S:      Odd Fixes
13712 F:      drivers/media/i2c/saa6588*
13713
13714 SAA7134 VIDEO4LINUX DRIVER
13715 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13716 L:      linux-media@vger.kernel.org
13717 W:      https://linuxtv.org
13718 T:      git git://linuxtv.org/media_tree.git
13719 S:      Odd fixes
13720 F:      Documentation/media/v4l-drivers/saa7134*
13721 F:      drivers/media/pci/saa7134/
13722
13723 SAA7146 VIDEO4LINUX-2 DRIVER
13724 M:      Hans Verkuil <hverkuil@xs4all.nl>
13725 L:      linux-media@vger.kernel.org
13726 T:      git git://linuxtv.org/media_tree.git
13727 S:      Maintained
13728 F:      drivers/media/common/saa7146/
13729 F:      drivers/media/pci/saa7146/
13730 F:      include/media/drv-intf/saa7146*
13731
13732 SAMSUNG AUDIO (ASoC) DRIVERS
13733 M:      Krzysztof Kozlowski <krzk@kernel.org>
13734 M:      Sangbeom Kim <sbkim73@samsung.com>
13735 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13737 S:      Supported
13738 F:      sound/soc/samsung/
13739 F:      Documentation/devicetree/bindings/sound/samsung*
13740
13741 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
13742 M:      Krzysztof Kozlowski <krzk@kernel.org>
13743 L:      linux-crypto@vger.kernel.org
13744 L:      linux-samsung-soc@vger.kernel.org
13745 S:      Maintained
13746 F:      drivers/crypto/exynos-rng.c
13747 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.txt
13748
13749 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
13750 M:      Łukasz Stelmach <l.stelmach@samsung.com>
13751 L:      linux-samsung-soc@vger.kernel.org
13752 S:      Maintained
13753 F:      drivers/char/hw_random/exynos-trng.c
13754 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
13755
13756 SAMSUNG FRAMEBUFFER DRIVER
13757 M:      Jingoo Han <jingoohan1@gmail.com>
13758 L:      linux-fbdev@vger.kernel.org
13759 S:      Maintained
13760 F:      drivers/video/fbdev/s3c-fb.c
13761
13762 SAMSUNG LAPTOP DRIVER
13763 M:      Corentin Chary <corentin.chary@gmail.com>
13764 L:      platform-driver-x86@vger.kernel.org
13765 S:      Maintained
13766 F:      drivers/platform/x86/samsung-laptop.c
13767
13768 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
13769 M:      Sangbeom Kim <sbkim73@samsung.com>
13770 M:      Krzysztof Kozlowski <krzk@kernel.org>
13771 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13772 L:      linux-kernel@vger.kernel.org
13773 L:      linux-samsung-soc@vger.kernel.org
13774 S:      Supported
13775 F:      drivers/mfd/sec*.c
13776 F:      drivers/regulator/s2m*.c
13777 F:      drivers/regulator/s5m*.c
13778 F:      drivers/clk/clk-s2mps11.c
13779 F:      drivers/rtc/rtc-s5m.c
13780 F:      include/linux/mfd/samsung/
13781 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
13782 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
13783 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
13784 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
13785
13786 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
13787 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
13788 L:      linux-media@vger.kernel.org
13789 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13790 S:      Maintained
13791 F:      drivers/media/platform/s3c-camif/
13792 F:      include/media/drv-intf/s3c_camif.h
13793
13794 SAMSUNG S3FWRN5 NFC DRIVER
13795 M:      Robert Baldyga <r.baldyga@samsung.com>
13796 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
13797 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13798 S:      Supported
13799 F:      drivers/nfc/s3fwrn5
13800
13801 SAMSUNG S5C73M3 CAMERA DRIVER
13802 M:      Kyungmin Park <kyungmin.park@samsung.com>
13803 M:      Andrzej Hajda <a.hajda@samsung.com>
13804 L:      linux-media@vger.kernel.org
13805 S:      Supported
13806 F:      drivers/media/i2c/s5c73m3/*
13807
13808 SAMSUNG S5K5BAF CAMERA DRIVER
13809 M:      Kyungmin Park <kyungmin.park@samsung.com>
13810 M:      Andrzej Hajda <a.hajda@samsung.com>
13811 L:      linux-media@vger.kernel.org
13812 S:      Supported
13813 F:      drivers/media/i2c/s5k5baf.c
13814
13815 SAMSUNG S5P Security SubSystem (SSS) DRIVER
13816 M:      Krzysztof Kozlowski <krzk@kernel.org>
13817 M:      Vladimir Zapolskiy <vz@mleia.com>
13818 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
13819 L:      linux-crypto@vger.kernel.org
13820 L:      linux-samsung-soc@vger.kernel.org
13821 S:      Maintained
13822 F:      drivers/crypto/s5p-sss.c
13823
13824 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
13825 M:      Kyungmin Park <kyungmin.park@samsung.com>
13826 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13827 L:      linux-media@vger.kernel.org
13828 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
13829 S:      Supported
13830 F:      drivers/media/platform/exynos4-is/
13831
13832 SAMSUNG SOC CLOCK DRIVERS
13833 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13834 M:      Tomasz Figa <tomasz.figa@gmail.com>
13835 M:      Chanwoo Choi <cw00.choi@samsung.com>
13836 S:      Supported
13837 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
13839 F:      drivers/clk/samsung/
13840 F:      include/dt-bindings/clock/exynos*.h
13841 F:      Documentation/devicetree/bindings/clock/exynos*.txt
13842
13843 SAMSUNG SPI DRIVERS
13844 M:      Kukjin Kim <kgene@kernel.org>
13845 M:      Krzysztof Kozlowski <krzk@kernel.org>
13846 M:      Andi Shyti <andi@etezian.org>
13847 L:      linux-spi@vger.kernel.org
13848 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
13849 S:      Maintained
13850 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
13851 F:      drivers/spi/spi-s3c*
13852 F:      include/linux/platform_data/spi-s3c64xx.h
13853
13854 SAMSUNG SXGBE DRIVERS
13855 M:      Byungho An <bh74.an@samsung.com>
13856 M:      Girish K S <ks.giri@samsung.com>
13857 M:      Vipul Pandya <vipul.pandya@samsung.com>
13858 S:      Supported
13859 L:      netdev@vger.kernel.org
13860 F:      drivers/net/ethernet/samsung/sxgbe/
13861
13862 SAMSUNG THERMAL DRIVER
13863 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
13864 L:      linux-pm@vger.kernel.org
13865 L:      linux-samsung-soc@vger.kernel.org
13866 S:      Supported
13867 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
13868 F:      drivers/thermal/samsung/
13869
13870 SAMSUNG USB2 PHY DRIVER
13871 M:      Kamil Debski <kamil@wypas.org>
13872 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13873 L:      linux-kernel@vger.kernel.org
13874 S:      Supported
13875 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
13876 F:      Documentation/phy/samsung-usb2.txt
13877 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
13878 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
13879 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
13880 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
13881 F:      drivers/phy/samsung/phy-samsung-usb2.c
13882 F:      drivers/phy/samsung/phy-samsung-usb2.h
13883
13884 SC1200 WDT DRIVER
13885 M:      Zwane Mwaikambo <zwanem@gmail.com>
13886 S:      Maintained
13887 F:      drivers/watchdog/sc1200wdt.c
13888
13889 SCHEDULER
13890 M:      Ingo Molnar <mingo@redhat.com>
13891 M:      Peter Zijlstra <peterz@infradead.org>
13892 L:      linux-kernel@vger.kernel.org
13893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
13894 S:      Maintained
13895 F:      kernel/sched/
13896 F:      include/linux/sched.h
13897 F:      include/uapi/linux/sched.h
13898 F:      include/linux/wait.h
13899 F:      include/linux/preempt.h
13900
13901 SCR24X CHIP CARD INTERFACE DRIVER
13902 M:      Lubomir Rintel <lkundrak@v3.sk>
13903 S:      Supported
13904 F:      drivers/char/pcmcia/scr24x_cs.c
13905
13906 SCSI CDROM DRIVER
13907 M:      Jens Axboe <axboe@kernel.dk>
13908 L:      linux-scsi@vger.kernel.org
13909 W:      http://www.kernel.dk
13910 S:      Maintained
13911 F:      drivers/scsi/sr*
13912
13913 SCSI RDMA PROTOCOL (SRP) INITIATOR
13914 M:      Bart Van Assche <bvanassche@acm.org>
13915 L:      linux-rdma@vger.kernel.org
13916 S:      Supported
13917 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13918 F:      drivers/infiniband/ulp/srp/
13919 F:      include/scsi/srp.h
13920
13921 SCSI RDMA PROTOCOL (SRP) TARGET
13922 M:      Bart Van Assche <bvanassche@acm.org>
13923 L:      linux-rdma@vger.kernel.org
13924 L:      target-devel@vger.kernel.org
13925 S:      Supported
13926 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13927 F:      drivers/infiniband/ulp/srpt/
13928
13929 SCSI SG DRIVER
13930 M:      Doug Gilbert <dgilbert@interlog.com>
13931 L:      linux-scsi@vger.kernel.org
13932 W:      http://sg.danny.cz/sg
13933 S:      Maintained
13934 F:      Documentation/scsi/scsi-generic.txt
13935 F:      drivers/scsi/sg.c
13936 F:      include/scsi/sg.h
13937
13938 SCSI SUBSYSTEM
13939 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
13941 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
13942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
13943 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
13944 L:      linux-scsi@vger.kernel.org
13945 S:      Maintained
13946 F:      Documentation/devicetree/bindings/scsi/
13947 F:      drivers/scsi/
13948 F:      include/scsi/
13949
13950 SCSI TAPE DRIVER
13951 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
13952 L:      linux-scsi@vger.kernel.org
13953 S:      Maintained
13954 F:      Documentation/scsi/st.txt
13955 F:      drivers/scsi/st.*
13956 F:      drivers/scsi/st_*.h
13957
13958 SCSI TARGET SUBSYSTEM
13959 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
13960 L:      linux-scsi@vger.kernel.org
13961 L:      target-devel@vger.kernel.org
13962 W:      http://www.linux-iscsi.org
13963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
13964 Q:      https://patchwork.kernel.org/project/target-devel/list/
13965 S:      Supported
13966 F:      drivers/target/
13967 F:      include/target/
13968 F:      Documentation/target/
13969
13970 SCTP PROTOCOL
13971 M:      Vlad Yasevich <vyasevich@gmail.com>
13972 M:      Neil Horman <nhorman@tuxdriver.com>
13973 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
13974 L:      linux-sctp@vger.kernel.org
13975 W:      http://lksctp.sourceforge.net
13976 S:      Maintained
13977 F:      Documentation/networking/sctp.txt
13978 F:      include/linux/sctp.h
13979 F:      include/uapi/linux/sctp.h
13980 F:      include/net/sctp/
13981 F:      net/sctp/
13982
13983 SCx200 CPU SUPPORT
13984 M:      Jim Cromie <jim.cromie@gmail.com>
13985 S:      Odd Fixes
13986 F:      Documentation/i2c/busses/scx200_acb
13987 F:      arch/x86/platform/scx200/
13988 F:      drivers/watchdog/scx200_wdt.c
13989 F:      drivers/i2c/busses/scx200*
13990 F:      drivers/mtd/maps/scx200_docflash.c
13991 F:      include/linux/scx200.h
13992
13993 SCx200 GPIO DRIVER
13994 M:      Jim Cromie <jim.cromie@gmail.com>
13995 S:      Maintained
13996 F:      drivers/char/scx200_gpio.c
13997 F:      include/linux/scx200_gpio.h
13998
13999 SCx200 HRT CLOCKSOURCE DRIVER
14000 M:      Jim Cromie <jim.cromie@gmail.com>
14001 S:      Maintained
14002 F:      drivers/clocksource/scx200_hrt.c
14003
14004 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
14005 M:      Sascha Sommer <saschasommer@freenet.de>
14006 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
14007 S:      Maintained
14008 F:      drivers/mmc/host/sdricoh_cs.c
14009
14010 SECO BOARDS CEC DRIVER
14011 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
14012 S:      Maintained
14013 F:      drivers/media/platform/seco-cec/seco-cec.c
14014 F:      drivers/media/platform/seco-cec/seco-cec.h
14015
14016 SECURE COMPUTING
14017 M:      Kees Cook <keescook@chromium.org>
14018 R:      Andy Lutomirski <luto@amacapital.net>
14019 R:      Will Drewry <wad@chromium.org>
14020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
14021 S:      Supported
14022 F:      kernel/seccomp.c
14023 F:      include/uapi/linux/seccomp.h
14024 F:      include/linux/seccomp.h
14025 F:      tools/testing/selftests/seccomp/*
14026 F:      tools/testing/selftests/kselftest_harness.h
14027 F:      Documentation/userspace-api/seccomp_filter.rst
14028 K:      \bsecure_computing
14029 K:      \bTIF_SECCOMP\b
14030
14031 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
14032 M:      Al Cooper <alcooperx@gmail.com>
14033 L:      linux-mmc@vger.kernel.org
14034 L:      bcm-kernel-feedback-list@broadcom.com
14035 S:      Maintained
14036 F:      drivers/mmc/host/sdhci-brcmstb*
14037
14038 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
14039 M:      Adrian Hunter <adrian.hunter@intel.com>
14040 L:      linux-mmc@vger.kernel.org
14041 S:      Maintained
14042 F:      drivers/mmc/host/sdhci*
14043 F:      include/linux/mmc/sdhci*
14044
14045 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
14046 M:      Adrian Hunter <adrian.hunter@intel.com>
14047 M:      Ritesh Harjani <riteshh@codeaurora.org>
14048 M:      Asutosh Das <asutoshd@codeaurora.org>
14049 L:      linux-mmc@vger.kernel.org
14050 S:      Maintained
14051 F:      drivers/mmc/host/cqhci*
14052
14053 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
14054 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
14055 M:      Manjunath M B <manjumb@synopsys.com>
14056 L:      linux-mmc@vger.kernel.org
14057 S:      Maintained
14058 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
14059
14060 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
14061 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14062 L:      linux-mmc@vger.kernel.org
14063 S:      Supported
14064 F:      drivers/mmc/host/sdhci-of-at91.c
14065
14066 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
14067 M:      Ben Dooks <ben-linux@fluff.org>
14068 M:      Jaehoon Chung <jh80.chung@samsung.com>
14069 L:      linux-mmc@vger.kernel.org
14070 S:      Maintained
14071 F:      drivers/mmc/host/sdhci-s3c*
14072
14073 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
14074 M:      Viresh Kumar <vireshk@kernel.org>
14075 L:      linux-mmc@vger.kernel.org
14076 S:      Maintained
14077 F:      drivers/mmc/host/sdhci-spear.c
14078
14079 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
14080 M:      Kishon Vijay Abraham I <kishon@ti.com>
14081 L:      linux-mmc@vger.kernel.org
14082 S:      Maintained
14083 F:      drivers/mmc/host/sdhci-omap.c
14084
14085 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
14086 M:      Scott Bauer <scott.bauer@intel.com>
14087 M:      Jonathan Derrick <jonathan.derrick@intel.com>
14088 L:      linux-block@vger.kernel.org
14089 S:      Supported
14090 F:      block/sed*
14091 F:      block/opal_proto.h
14092 F:      include/linux/sed*
14093 F:      include/uapi/linux/sed*
14094
14095 SECURITY CONTACT
14096 M:      Security Officers <security@kernel.org>
14097 S:      Supported
14098
14099 SECURITY SUBSYSTEM
14100 M:      James Morris <jmorris@namei.org>
14101 M:      "Serge E. Hallyn" <serge@hallyn.com>
14102 L:      linux-security-module@vger.kernel.org (suggested Cc:)
14103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
14104 W:      http://kernsec.org/
14105 S:      Supported
14106 F:      security/
14107 X:      security/selinux/
14108
14109 SELINUX SECURITY MODULE
14110 M:      Paul Moore <paul@paul-moore.com>
14111 M:      Stephen Smalley <sds@tycho.nsa.gov>
14112 M:      Eric Paris <eparis@parisplace.org>
14113 L:      selinux@vger.kernel.org
14114 W:      https://selinuxproject.org
14115 W:      https://github.com/SELinuxProject
14116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
14117 S:      Supported
14118 F:      include/uapi/linux/selinux_netlink.h
14119 F:      security/selinux/
14120 F:      scripts/selinux/
14121 F:      Documentation/admin-guide/LSM/SELinux.rst
14122
14123 SENSABLE PHANTOM
14124 M:      Jiri Slaby <jirislaby@gmail.com>
14125 S:      Maintained
14126 F:      drivers/misc/phantom.c
14127 F:      include/uapi/linux/phantom.h
14128
14129 SERIAL DEVICE BUS
14130 M:      Rob Herring <robh@kernel.org>
14131 L:      linux-serial@vger.kernel.org
14132 S:      Maintained
14133 F:      Documentation/devicetree/bindings/serial/slave-device.txt
14134 F:      drivers/tty/serdev/
14135 F:      include/linux/serdev.h
14136
14137 SERIAL DRIVERS
14138 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14139 L:      linux-serial@vger.kernel.org
14140 S:      Maintained
14141 F:      Documentation/devicetree/bindings/serial/
14142 F:      drivers/tty/serial/
14143
14144 SERIAL IR RECEIVER
14145 M:      Sean Young <sean@mess.org>
14146 L:      linux-media@vger.kernel.org
14147 S:      Maintained
14148 F:      drivers/media/rc/serial_ir.c
14149
14150 SFC NETWORK DRIVER
14151 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
14152 M:      Edward Cree <ecree@solarflare.com>
14153 M:      Martin Habets <mhabets@solarflare.com>
14154 L:      netdev@vger.kernel.org
14155 S:      Supported
14156 F:      drivers/net/ethernet/sfc/
14157
14158 SFF/SFP/SFP+ MODULE SUPPORT
14159 M:      Russell King <linux@armlinux.org.uk>
14160 L:      netdev@vger.kernel.org
14161 S:      Maintained
14162 F:      drivers/net/phy/phylink.c
14163 F:      drivers/net/phy/sfp*
14164 F:      include/linux/phylink.h
14165 F:      include/linux/sfp.h
14166
14167 SGI GRU DRIVER
14168 M:      Dimitri Sivanich <sivanich@sgi.com>
14169 S:      Maintained
14170 F:      drivers/misc/sgi-gru/
14171
14172 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
14173 M:      Pat Gefre <pfg@sgi.com>
14174 L:      linux-ia64@vger.kernel.org
14175 S:      Supported
14176 F:      Documentation/ia64/serial.txt
14177 F:      drivers/tty/serial/ioc?_serial.c
14178 F:      include/linux/ioc?.h
14179
14180 SGI XP/XPC/XPNET DRIVER
14181 M:      Cliff Whickman <cpw@sgi.com>
14182 M:      Robin Holt <robinmholt@gmail.com>
14183 S:      Maintained
14184 F:      drivers/misc/sgi-xp/
14185
14186 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
14187 M:      Ursula Braun <ubraun@linux.ibm.com>
14188 M:      Karsten Graul <kgraul@linux.ibm.com>
14189 L:      linux-s390@vger.kernel.org
14190 W:      http://www.ibm.com/developerworks/linux/linux390/
14191 S:      Supported
14192 F:      net/smc/
14193
14194 SHARP RJ54N1CB0C SENSOR DRIVER
14195 M:      Jacopo Mondi <jacopo@jmondi.org>
14196 L:      linux-media@vger.kernel.org
14197 T:      git git://linuxtv.org/media_tree.git
14198 S:      Odd fixes
14199 F:      drivers/media/i2c/rj54n1cb0c.c
14200 F:      include/media/i2c/rj54n1cb0c.h
14201
14202 SH_VEU V4L2 MEM2MEM DRIVER
14203 L:      linux-media@vger.kernel.org
14204 S:      Orphan
14205 F:      drivers/media/platform/sh_veu.c
14206
14207 SH_VOU V4L2 OUTPUT DRIVER
14208 L:      linux-media@vger.kernel.org
14209 S:      Orphan
14210 F:      drivers/media/platform/sh_vou.c
14211 F:      include/media/drv-intf/sh_vou.h
14212
14213 SI2157 MEDIA DRIVER
14214 M:      Antti Palosaari <crope@iki.fi>
14215 L:      linux-media@vger.kernel.org
14216 W:      https://linuxtv.org
14217 W:      http://palosaari.fi/linux/
14218 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14219 T:      git git://linuxtv.org/anttip/media_tree.git
14220 S:      Maintained
14221 F:      drivers/media/tuners/si2157*
14222
14223 SI2165 MEDIA DRIVER
14224 M:      Matthias Schwarzott <zzam@gentoo.org>
14225 L:      linux-media@vger.kernel.org
14226 W:      https://linuxtv.org
14227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14228 S:      Maintained
14229 F:      drivers/media/dvb-frontends/si2165*
14230
14231 SI2168 MEDIA DRIVER
14232 M:      Antti Palosaari <crope@iki.fi>
14233 L:      linux-media@vger.kernel.org
14234 W:      https://linuxtv.org
14235 W:      http://palosaari.fi/linux/
14236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14237 T:      git git://linuxtv.org/anttip/media_tree.git
14238 S:      Maintained
14239 F:      drivers/media/dvb-frontends/si2168*
14240
14241 SI470X FM RADIO RECEIVER I2C DRIVER
14242 M:      Hans Verkuil <hverkuil@xs4all.nl>
14243 L:      linux-media@vger.kernel.org
14244 T:      git git://linuxtv.org/media_tree.git
14245 W:      https://linuxtv.org
14246 S:      Odd Fixes
14247 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
14248
14249 SI470X FM RADIO RECEIVER USB DRIVER
14250 M:      Hans Verkuil <hverkuil@xs4all.nl>
14251 L:      linux-media@vger.kernel.org
14252 T:      git git://linuxtv.org/media_tree.git
14253 W:      https://linuxtv.org
14254 S:      Maintained
14255 F:      drivers/media/radio/si470x/radio-si470x-common.c
14256 F:      drivers/media/radio/si470x/radio-si470x.h
14257 F:      drivers/media/radio/si470x/radio-si470x-usb.c
14258
14259 SI4713 FM RADIO TRANSMITTER I2C DRIVER
14260 M:      Eduardo Valentin <edubezval@gmail.com>
14261 L:      linux-media@vger.kernel.org
14262 T:      git git://linuxtv.org/media_tree.git
14263 W:      https://linuxtv.org
14264 S:      Odd Fixes
14265 F:      drivers/media/radio/si4713/si4713.?
14266
14267 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
14268 M:      Eduardo Valentin <edubezval@gmail.com>
14269 L:      linux-media@vger.kernel.org
14270 T:      git git://linuxtv.org/media_tree.git
14271 W:      https://linuxtv.org
14272 S:      Odd Fixes
14273 F:      drivers/media/radio/si4713/radio-platform-si4713.c
14274
14275 SI4713 FM RADIO TRANSMITTER USB DRIVER
14276 M:      Hans Verkuil <hverkuil@xs4all.nl>
14277 L:      linux-media@vger.kernel.org
14278 T:      git git://linuxtv.org/media_tree.git
14279 W:      https://linuxtv.org
14280 S:      Maintained
14281 F:      drivers/media/radio/si4713/radio-usb-si4713.c
14282
14283 SIANO DVB DRIVER
14284 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14285 L:      linux-media@vger.kernel.org
14286 W:      https://linuxtv.org
14287 T:      git git://linuxtv.org/media_tree.git
14288 S:      Odd fixes
14289 F:      drivers/media/common/siano/
14290 F:      drivers/media/usb/siano/
14291 F:      drivers/media/usb/siano/
14292 F:      drivers/media/mmc/siano/
14293
14294 SIFIVE DRIVERS
14295 M:      Palmer Dabbelt <palmer@sifive.com>
14296 M:      Paul Walmsley <paul.walmsley@sifive.com>
14297 L:      linux-riscv@lists.infradead.org
14298 T:      git git://github.com/sifive/riscv-linux.git
14299 S:      Supported
14300 K:      sifive
14301 N:      sifive
14302
14303 SILEAD TOUCHSCREEN DRIVER
14304 M:      Hans de Goede <hdegoede@redhat.com>
14305 L:      linux-input@vger.kernel.org
14306 L:      platform-driver-x86@vger.kernel.org
14307 S:      Maintained
14308 F:      drivers/input/touchscreen/silead.c
14309 F:      drivers/platform/x86/touchscreen_dmi.c
14310
14311 SILICON MOTION SM712 FRAME BUFFER DRIVER
14312 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14313 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14314 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14315 L:      linux-fbdev@vger.kernel.org
14316 S:      Maintained
14317 F:      drivers/video/fbdev/sm712*
14318 F:      Documentation/fb/sm712fb.txt
14319
14320 SIMPLE FIRMWARE INTERFACE (SFI)
14321 M:      Len Brown <lenb@kernel.org>
14322 L:      sfi-devel@simplefirmware.org
14323 W:      http://simplefirmware.org/
14324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
14325 S:      Supported
14326 F:      arch/x86/platform/sfi/
14327 F:      drivers/sfi/
14328 F:      include/linux/sfi*.h
14329
14330 SIMPLEFB FB DRIVER
14331 M:      Hans de Goede <hdegoede@redhat.com>
14332 L:      linux-fbdev@vger.kernel.org
14333 S:      Maintained
14334 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
14335 F:      drivers/video/fbdev/simplefb.c
14336 F:      include/linux/platform_data/simplefb.h
14337
14338 SIMTEC EB110ATX (Chalice CATS)
14339 P:      Ben Dooks
14340 P:      Vincent Sanders <vince@simtec.co.uk>
14341 M:      Simtec Linux Team <linux@simtec.co.uk>
14342 W:      http://www.simtec.co.uk/products/EB110ATX/
14343 S:      Supported
14344
14345 SIMTEC EB2410ITX (BAST)
14346 P:      Ben Dooks
14347 P:      Vincent Sanders <vince@simtec.co.uk>
14348 M:      Simtec Linux Team <linux@simtec.co.uk>
14349 W:      http://www.simtec.co.uk/products/EB2410ITX/
14350 S:      Supported
14351 F:      arch/arm/mach-s3c24xx/mach-bast.c
14352 F:      arch/arm/mach-s3c24xx/bast-ide.c
14353 F:      arch/arm/mach-s3c24xx/bast-irq.c
14354
14355 SIPHASH PRF ROUTINES
14356 M:      Jason A. Donenfeld <Jason@zx2c4.com>
14357 S:      Maintained
14358 F:      lib/siphash.c
14359 F:      lib/test_siphash.c
14360 F:      include/linux/siphash.h
14361
14362 SIOX
14363 M:      Gavin Schenk <g.schenk@eckelmann.de>
14364 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
14365 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14366 S:      Supported
14367 F:      drivers/siox/*
14368 F:      drivers/gpio/gpio-siox.c
14369 F:      include/trace/events/siox.h
14370
14371 SIS 190 ETHERNET DRIVER
14372 M:      Francois Romieu <romieu@fr.zoreil.com>
14373 L:      netdev@vger.kernel.org
14374 S:      Maintained
14375 F:      drivers/net/ethernet/sis/sis190.c
14376
14377 SIS 900/7016 FAST ETHERNET DRIVER
14378 M:      Daniele Venzano <venza@brownhat.org>
14379 W:      http://www.brownhat.org/sis900.html
14380 L:      netdev@vger.kernel.org
14381 S:      Maintained
14382 F:      drivers/net/ethernet/sis/sis900.*
14383
14384 SIS FRAMEBUFFER DRIVER
14385 M:      Thomas Winischhofer <thomas@winischhofer.net>
14386 W:      http://www.winischhofer.net/linuxsisvga.shtml
14387 S:      Maintained
14388 F:      Documentation/fb/sisfb.txt
14389 F:      drivers/video/fbdev/sis/
14390 F:      include/video/sisfb.h
14391
14392 SIS USB2VGA DRIVER
14393 M:      Thomas Winischhofer <thomas@winischhofer.net>
14394 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
14395 S:      Maintained
14396 F:      drivers/usb/misc/sisusbvga/
14397
14398 SLAB ALLOCATOR
14399 M:      Christoph Lameter <cl@linux.com>
14400 M:      Pekka Enberg <penberg@kernel.org>
14401 M:      David Rientjes <rientjes@google.com>
14402 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
14403 M:      Andrew Morton <akpm@linux-foundation.org>
14404 L:      linux-mm@kvack.org
14405 S:      Maintained
14406 F:      include/linux/sl?b*.h
14407 F:      mm/sl?b*
14408
14409 SLEEPABLE READ-COPY UPDATE (SRCU)
14410 M:      Lai Jiangshan <jiangshanlai@gmail.com>
14411 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
14412 M:      Josh Triplett <josh@joshtriplett.org>
14413 R:      Steven Rostedt <rostedt@goodmis.org>
14414 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
14415 L:      rcu@vger.kernel.org
14416 W:      http://www.rdrop.com/users/paulmck/RCU/
14417 S:      Supported
14418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
14419 F:      include/linux/srcu*.h
14420 F:      kernel/rcu/srcu*.c
14421
14422 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
14423 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14424 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14425 S:      Maintained
14426 F:      drivers/slimbus/
14427 F:      Documentation/devicetree/bindings/slimbus/
14428 F:      include/linux/slimbus.h
14429
14430 SMACK SECURITY MODULE
14431 M:      Casey Schaufler <casey@schaufler-ca.com>
14432 L:      linux-security-module@vger.kernel.org
14433 W:      http://schaufler-ca.com
14434 T:      git git://github.com/cschaufler/smack-next
14435 S:      Maintained
14436 F:      Documentation/admin-guide/LSM/Smack.rst
14437 F:      security/smack/
14438
14439 SMC91x ETHERNET DRIVER
14440 M:      Nicolas Pitre <nico@fluxnic.net>
14441 S:      Odd Fixes
14442 F:      drivers/net/ethernet/smsc/smc91x.*
14443
14444 SMIA AND SMIA++ IMAGE SENSOR DRIVER
14445 M:      Sakari Ailus <sakari.ailus@iki.fi>
14446 L:      linux-media@vger.kernel.org
14447 S:      Maintained
14448 F:      drivers/media/i2c/smiapp/
14449 F:      include/media/i2c/smiapp.h
14450 F:      drivers/media/i2c/smiapp-pll.c
14451 F:      drivers/media/i2c/smiapp-pll.h
14452 F:      include/uapi/linux/smiapp.h
14453 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
14454
14455 SMM665 HARDWARE MONITOR DRIVER
14456 M:      Guenter Roeck <linux@roeck-us.net>
14457 L:      linux-hwmon@vger.kernel.org
14458 S:      Maintained
14459 F:      Documentation/hwmon/smm665.rst
14460 F:      drivers/hwmon/smm665.c
14461
14462 SMSC EMC2103 HARDWARE MONITOR DRIVER
14463 M:      Steve Glendinning <steve.glendinning@shawell.net>
14464 L:      linux-hwmon@vger.kernel.org
14465 S:      Maintained
14466 F:      Documentation/hwmon/emc2103.rst
14467 F:      drivers/hwmon/emc2103.c
14468
14469 SMSC SCH5627 HARDWARE MONITOR DRIVER
14470 M:      Hans de Goede <hdegoede@redhat.com>
14471 L:      linux-hwmon@vger.kernel.org
14472 S:      Supported
14473 F:      Documentation/hwmon/sch5627.rst
14474 F:      drivers/hwmon/sch5627.c
14475
14476 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
14477 M:      Steve Glendinning <steve.glendinning@shawell.net>
14478 L:      linux-fbdev@vger.kernel.org
14479 S:      Maintained
14480 F:      drivers/video/fbdev/smscufx.c
14481
14482 SMSC47B397 HARDWARE MONITOR DRIVER
14483 M:      Jean Delvare <jdelvare@suse.com>
14484 L:      linux-hwmon@vger.kernel.org
14485 S:      Maintained
14486 F:      Documentation/hwmon/smsc47b397.rst
14487 F:      drivers/hwmon/smsc47b397.c
14488
14489 SMSC911x ETHERNET DRIVER
14490 M:      Steve Glendinning <steve.glendinning@shawell.net>
14491 L:      netdev@vger.kernel.org
14492 S:      Maintained
14493 F:      include/linux/smsc911x.h
14494 F:      drivers/net/ethernet/smsc/smsc911x.*
14495
14496 SMSC9420 PCI ETHERNET DRIVER
14497 M:      Steve Glendinning <steve.glendinning@shawell.net>
14498 L:      netdev@vger.kernel.org
14499 S:      Maintained
14500 F:      drivers/net/ethernet/smsc/smsc9420.*
14501
14502 SOC-CAMERA V4L2 SUBSYSTEM
14503 L:      linux-media@vger.kernel.org
14504 T:      git git://linuxtv.org/media_tree.git
14505 S:      Orphan
14506 F:      include/media/soc_camera.h
14507 F:      drivers/staging/media/soc_camera/
14508
14509 SOCIONEXT SYNQUACER I2C DRIVER
14510 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
14511 L:      linux-i2c@vger.kernel.org
14512 S:      Maintained
14513 F:      drivers/i2c/busses/i2c-synquacer.c
14514 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
14515
14516 SOCIONEXT UNIPHIER SOUND DRIVER
14517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14518 S:      Orphan
14519 F:      sound/soc/uniphier/
14520
14521 SOEKRIS NET48XX LED SUPPORT
14522 M:      Chris Boot <bootc@bootc.net>
14523 S:      Maintained
14524 F:      drivers/leds/leds-net48xx.c
14525
14526 SOFT-ROCE DRIVER (rxe)
14527 M:      Moni Shoua <monis@mellanox.com>
14528 L:      linux-rdma@vger.kernel.org
14529 S:      Supported
14530 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
14531 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
14532 F:      drivers/infiniband/sw/rxe/
14533 F:      include/uapi/rdma/rdma_user_rxe.h
14534
14535 SOFTLOGIC 6x10 MPEG CODEC
14536 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14537 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14538 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14539 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14540 M:      Ismael Luceno <ismael@iodev.co.uk>
14541 L:      linux-media@vger.kernel.org
14542 S:      Supported
14543 F:      drivers/media/pci/solo6x10/
14544
14545 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
14546 M:      James Morse <james.morse@arm.com>
14547 L:      linux-arm-kernel@lists.infradead.org
14548 S:      Maintained
14549 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
14550 F:      drivers/firmware/arm_sdei.c
14551 F:      include/linux/arm_sdei.h
14552 F:      include/uapi/linux/arm_sdei.h
14553
14554 SOFTWARE RAID (Multiple Disks) SUPPORT
14555 M:      Shaohua Li <shli@kernel.org>
14556 L:      linux-raid@vger.kernel.org
14557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
14558 S:      Supported
14559 F:      drivers/md/Makefile
14560 F:      drivers/md/Kconfig
14561 F:      drivers/md/md*
14562 F:      drivers/md/raid*
14563 F:      include/linux/raid/
14564 F:      include/uapi/linux/raid/
14565
14566 SOCIONEXT (SNI) AVE NETWORK DRIVER
14567 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14568 L:      netdev@vger.kernel.org
14569 S:      Maintained
14570 F:      drivers/net/ethernet/socionext/sni_ave.c
14571 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.txt
14572
14573 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
14574 M:      Jassi Brar <jaswinder.singh@linaro.org>
14575 L:      netdev@vger.kernel.org
14576 S:      Maintained
14577 F:      drivers/net/ethernet/socionext/netsec.c
14578 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
14579
14580 SOLIDRUN CLEARFOG SUPPORT
14581 M:      Russell King <linux@armlinux.org.uk>
14582 S:      Maintained
14583 F:      arch/arm/boot/dts/armada-388-clearfog*
14584 F:      arch/arm/boot/dts/armada-38x-solidrun-*
14585
14586 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
14587 M:      Russell King <linux@armlinux.org.uk>
14588 S:      Maintained
14589 F:      arch/arm/boot/dts/imx6*-cubox-i*
14590 F:      arch/arm/boot/dts/imx6*-hummingboard*
14591 F:      arch/arm/boot/dts/imx6*-sr-*
14592
14593 SONIC NETWORK DRIVER
14594 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14595 L:      netdev@vger.kernel.org
14596 S:      Maintained
14597 F:      drivers/net/ethernet/natsemi/sonic.*
14598
14599 SONICS SILICON BACKPLANE DRIVER (SSB)
14600 M:      Michael Buesch <m@bues.ch>
14601 L:      linux-wireless@vger.kernel.org
14602 S:      Maintained
14603 F:      drivers/ssb/
14604 F:      include/linux/ssb/
14605
14606 SONY IMX214 SENSOR DRIVER
14607 M:      Ricardo Ribalda <ricardo.ribalda@gmail.com>
14608 L:      linux-media@vger.kernel.org
14609 T:      git git://linuxtv.org/media_tree.git
14610 S:      Maintained
14611 F:      drivers/media/i2c/imx214.c
14612 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.txt
14613
14614 SONY IMX258 SENSOR DRIVER
14615 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14616 L:      linux-media@vger.kernel.org
14617 T:      git git://linuxtv.org/media_tree.git
14618 S:      Maintained
14619 F:      drivers/media/i2c/imx258.c
14620
14621 SONY IMX274 SENSOR DRIVER
14622 M:      Leon Luo <leonl@leopardimaging.com>
14623 L:      linux-media@vger.kernel.org
14624 T:      git git://linuxtv.org/media_tree.git
14625 S:      Maintained
14626 F:      drivers/media/i2c/imx274.c
14627 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
14628
14629 SONY IMX319 SENSOR DRIVER
14630 M:      Bingbu Cao <bingbu.cao@intel.com>
14631 L:      linux-media@vger.kernel.org
14632 T:      git git://linuxtv.org/media_tree.git
14633 S:      Maintained
14634 F:      drivers/media/i2c/imx319.c
14635
14636 SONY IMX355 SENSOR DRIVER
14637 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14638 L:      linux-media@vger.kernel.org
14639 T:      git git://linuxtv.org/media_tree.git
14640 S:      Maintained
14641 F:      drivers/media/i2c/imx355.c
14642
14643 SONY MEMORYSTICK SUBSYSTEM
14644 M:      Maxim Levitsky <maximlevitsky@gmail.com>
14645 M:      Alex Dubov <oakad@yahoo.com>
14646 M:      Ulf Hansson <ulf.hansson@linaro.org>
14647 L:      linux-mmc@vger.kernel.org
14648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14649 S:      Maintained
14650 F:      drivers/memstick/
14651 F:      include/linux/memstick.h
14652
14653 SONY VAIO CONTROL DEVICE DRIVER
14654 M:      Mattia Dongili <malattia@linux.it>
14655 L:      platform-driver-x86@vger.kernel.org
14656 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
14657 S:      Maintained
14658 F:      Documentation/laptops/sony-laptop.txt
14659 F:      drivers/char/sonypi.c
14660 F:      drivers/platform/x86/sony-laptop.c
14661 F:      include/linux/sony-laptop.h
14662
14663 SOUND
14664 M:      Jaroslav Kysela <perex@perex.cz>
14665 M:      Takashi Iwai <tiwai@suse.com>
14666 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14667 W:      http://www.alsa-project.org/
14668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14669 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
14670 S:      Maintained
14671 F:      Documentation/sound/
14672 F:      include/sound/
14673 F:      include/uapi/sound/
14674 F:      sound/
14675
14676 SOUND - COMPRESSED AUDIO
14677 M:      Vinod Koul <vkoul@kernel.org>
14678 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14680 S:      Supported
14681 F:      Documentation/sound/designs/compress-offload.rst
14682 F:      include/sound/compress_driver.h
14683 F:      include/uapi/sound/compress_*
14684 F:      sound/core/compress_offload.c
14685 F:      sound/soc/soc-compress.c
14686
14687 SOUND - DMAENGINE HELPERS
14688 M:      Lars-Peter Clausen <lars@metafoo.de>
14689 S:      Supported
14690 F:      include/sound/dmaengine_pcm.h
14691 F:      sound/core/pcm_dmaengine.c
14692 F:      sound/soc/soc-generic-dmaengine-pcm.c
14693
14694 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
14695 M:      Liam Girdwood <lgirdwood@gmail.com>
14696 M:      Mark Brown <broonie@kernel.org>
14697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
14698 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14699 W:      http://alsa-project.org/main/index.php/ASoC
14700 S:      Supported
14701 F:      Documentation/devicetree/bindings/sound/
14702 F:      Documentation/sound/soc/
14703 F:      sound/soc/
14704 F:      include/dt-bindings/sound/
14705 F:      include/sound/soc*
14706
14707 SOUNDWIRE SUBSYSTEM
14708 M:      Vinod Koul <vkoul@kernel.org>
14709 M:      Sanyog Kale <sanyog.r.kale@intel.com>
14710 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
14711 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14712 S:      Supported
14713 F:      Documentation/driver-api/soundwire/
14714 F:      drivers/soundwire/
14715 F:      include/linux/soundwire/
14716
14717 SP2 MEDIA DRIVER
14718 M:      Olli Salonen <olli.salonen@iki.fi>
14719 L:      linux-media@vger.kernel.org
14720 W:      https://linuxtv.org
14721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14722 S:      Maintained
14723 F:      drivers/media/dvb-frontends/sp2*
14724
14725 SPARC + UltraSPARC (sparc/sparc64)
14726 M:      "David S. Miller" <davem@davemloft.net>
14727 L:      sparclinux@vger.kernel.org
14728 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
14729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
14730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
14731 S:      Maintained
14732 F:      arch/sparc/
14733 F:      drivers/sbus/
14734
14735 SPARC SERIAL DRIVERS
14736 M:      "David S. Miller" <davem@davemloft.net>
14737 L:      sparclinux@vger.kernel.org
14738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
14739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
14740 S:      Maintained
14741 F:      include/linux/sunserialcore.h
14742 F:      drivers/tty/serial/suncore.c
14743 F:      drivers/tty/serial/sunhv.c
14744 F:      drivers/tty/serial/sunsab.c
14745 F:      drivers/tty/serial/sunsab.h
14746 F:      drivers/tty/serial/sunsu.c
14747 F:      drivers/tty/serial/sunzilog.c
14748 F:      drivers/tty/serial/sunzilog.h
14749 F:      drivers/tty/vcc.c
14750
14751 SPARSE CHECKER
14752 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
14753 L:      linux-sparse@vger.kernel.org
14754 W:      https://sparse.wiki.kernel.org/
14755 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
14756 S:      Maintained
14757 F:      include/linux/compiler.h
14758
14759 SPEAR CLOCK FRAMEWORK SUPPORT
14760 M:      Viresh Kumar <vireshk@kernel.org>
14761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14762 W:      http://www.st.com/spear
14763 S:      Maintained
14764 F:      drivers/clk/spear/
14765
14766 SPEAR PLATFORM SUPPORT
14767 M:      Viresh Kumar <vireshk@kernel.org>
14768 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
14769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14770 W:      http://www.st.com/spear
14771 S:      Maintained
14772 F:      arch/arm/boot/dts/spear*
14773 F:      arch/arm/mach-spear/
14774
14775 SPI NOR SUBSYSTEM
14776 M:      Marek Vasut <marek.vasut@gmail.com>
14777 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
14778 L:      linux-mtd@lists.infradead.org
14779 W:      http://www.linux-mtd.infradead.org/
14780 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
14782 S:      Maintained
14783 F:      drivers/mtd/spi-nor/
14784 F:      include/linux/mtd/spi-nor.h
14785
14786 SPI SUBSYSTEM
14787 M:      Mark Brown <broonie@kernel.org>
14788 L:      linux-spi@vger.kernel.org
14789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
14790 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
14791 S:      Maintained
14792 F:      Documentation/devicetree/bindings/spi/
14793 F:      Documentation/spi/
14794 F:      drivers/spi/
14795 F:      include/linux/spi/
14796 F:      include/uapi/linux/spi/
14797 F:      tools/spi/
14798
14799 SPIDERNET NETWORK DRIVER for CELL
14800 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
14801 L:      netdev@vger.kernel.org
14802 S:      Supported
14803 F:      Documentation/networking/device_drivers/toshiba/spider_net.txt
14804 F:      drivers/net/ethernet/toshiba/spider_net*
14805
14806 SPMI SUBSYSTEM
14807 R:      Stephen Boyd <sboyd@kernel.org>
14808 L:      linux-arm-msm@vger.kernel.org
14809 F:      Documentation/devicetree/bindings/spmi/
14810 F:      drivers/spmi/
14811 F:      include/dt-bindings/spmi/spmi.h
14812 F:      include/linux/spmi.h
14813 F:      include/trace/events/spmi.h
14814
14815 SPU FILE SYSTEM
14816 M:      Jeremy Kerr <jk@ozlabs.org>
14817 L:      linuxppc-dev@lists.ozlabs.org
14818 W:      http://www.ibm.com/developerworks/power/cell/
14819 S:      Supported
14820 F:      Documentation/filesystems/spufs.txt
14821 F:      arch/powerpc/platforms/cell/spufs/
14822
14823 SQUASHFS FILE SYSTEM
14824 M:      Phillip Lougher <phillip@squashfs.org.uk>
14825 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
14826 W:      http://squashfs.org.uk
14827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
14828 S:      Maintained
14829 F:      Documentation/filesystems/squashfs.txt
14830 F:      fs/squashfs/
14831
14832 SRM (Alpha) environment access
14833 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
14834 S:      Maintained
14835 F:      arch/alpha/kernel/srm_env.c
14836
14837 ST LSM6DSx IMU IIO DRIVER
14838 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
14839 L:      linux-iio@vger.kernel.org
14840 W:      http://www.st.com/
14841 S:      Maintained
14842 F:      drivers/iio/imu/st_lsm6dsx/
14843 F:      Documentation/devicetree/bindings/iio/imu/st_lsm6dsx.txt
14844
14845 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
14846 M:      Mickael Guene <mickael.guene@st.com>
14847 L:      linux-media@vger.kernel.org
14848 T:      git git://linuxtv.org/media_tree.git
14849 S:      Maintained
14850 F:      drivers/media/i2c/st-mipid02.c
14851 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
14852
14853 ST STM32 I2C/SMBUS DRIVER
14854 M:      Pierre-Yves MORDRET <pierre-yves.mordret@st.com>
14855 L:      linux-i2c@vger.kernel.org
14856 S:      Maintained
14857 F:      drivers/i2c/busses/i2c-stm32*
14858
14859 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
14860 M:      Song Qiang <songqiang1304521@gmail.com>
14861 L:      linux-iio@vger.kernel.org
14862 S:      Maintained
14863 F:      drivers/iio/proximity/vl53l0x-i2c.c
14864 F:      Documentation/devicetree/bindings/iio/proximity/vl53l0x.txt
14865
14866 STABLE BRANCH
14867 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14868 M:      Sasha Levin <sashal@kernel.org>
14869 L:      stable@vger.kernel.org
14870 S:      Supported
14871 F:      Documentation/process/stable-kernel-rules.rst
14872
14873 STAGING - COMEDI
14874 M:      Ian Abbott <abbotti@mev.co.uk>
14875 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
14876 S:      Odd Fixes
14877 F:      drivers/staging/comedi/
14878
14879 STAGING - EROFS FILE SYSTEM
14880 M:      Gao Xiang <gaoxiang25@huawei.com>
14881 M:      Chao Yu <yuchao0@huawei.com>
14882 L:      linux-erofs@lists.ozlabs.org
14883 S:      Maintained
14884 F:      drivers/staging/erofs/
14885
14886 STAGING - INDUSTRIAL IO
14887 M:      Jonathan Cameron <jic23@kernel.org>
14888 L:      linux-iio@vger.kernel.org
14889 S:      Odd Fixes
14890 F:      Documentation/devicetree/bindings/staging/iio/
14891 F:      drivers/staging/iio/
14892
14893 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
14894 M:      Marc Dietrich <marvin24@gmx.de>
14895 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
14896 L:      linux-tegra@vger.kernel.org
14897 S:      Maintained
14898 F:      drivers/staging/nvec/
14899
14900 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
14901 M:      Jens Frederich <jfrederich@gmail.com>
14902 M:      Daniel Drake <dsd@laptop.org>
14903 M:      Jon Nettleton <jon.nettleton@gmail.com>
14904 W:      http://wiki.laptop.org/go/DCON
14905 S:      Maintained
14906 F:      drivers/staging/olpc_dcon/
14907
14908 STAGING - REALTEK RTL8712U DRIVERS
14909 M:      Larry Finger <Larry.Finger@lwfinger.net>
14910 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
14911 S:      Odd Fixes
14912 F:      drivers/staging/rtl8712/
14913
14914 STAGING - REALTEK RTL8188EU DRIVERS
14915 M:      Larry Finger <Larry.Finger@lwfinger.net>
14916 S:      Odd Fixes
14917 F:      drivers/staging/rtl8188eu/
14918
14919 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
14920 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14921 M:      Teddy Wang <teddy.wang@siliconmotion.com>
14922 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14923 L:      linux-fbdev@vger.kernel.org
14924 S:      Maintained
14925 F:      drivers/staging/sm750fb/
14926
14927 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
14928 M:      William Hubbs <w.d.hubbs@gmail.com>
14929 M:      Chris Brannon <chris@the-brannons.com>
14930 M:      Kirk Reiser <kirk@reisers.ca>
14931 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
14932 L:      speakup@linux-speakup.org
14933 W:      http://www.linux-speakup.org/
14934 S:      Odd Fixes
14935 F:      drivers/staging/speakup/
14936
14937 STAGING - VIA VT665X DRIVERS
14938 M:      Forest Bond <forest@alittletooquiet.net>
14939 S:      Odd Fixes
14940 F:      drivers/staging/vt665?/
14941
14942 STAGING - WILC1000 WIFI DRIVER
14943 M:      Adham Abozaeid <adham.abozaeid@microchip.com>
14944 M:      Ajay Singh <ajay.kathat@microchip.com>
14945 L:      linux-wireless@vger.kernel.org
14946 S:      Supported
14947 F:      drivers/staging/wilc1000/
14948
14949 STAGING SUBSYSTEM
14950 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
14952 L:      devel@driverdev.osuosl.org
14953 S:      Supported
14954 F:      drivers/staging/
14955
14956 STARFIRE/DURALAN NETWORK DRIVER
14957 M:      Ion Badulescu <ionut@badula.org>
14958 S:      Odd Fixes
14959 F:      drivers/net/ethernet/adaptec/starfire*
14960
14961 STEC S1220 SKD DRIVER
14962 M:      Bart Van Assche <bart.vanassche@wdc.com>
14963 L:      linux-block@vger.kernel.org
14964 S:      Maintained
14965 F:      drivers/block/skd*[ch]
14966
14967 STI AUDIO (ASoC) DRIVERS
14968 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
14969 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14970 S:      Maintained
14971 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
14972 F:      sound/soc/sti/
14973
14974 STI CEC DRIVER
14975 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
14976 S:      Maintained
14977 F:      drivers/media/platform/sti/cec/
14978 F:      Documentation/devicetree/bindings/media/stih-cec.txt
14979
14980 STK1160 USB VIDEO CAPTURE DRIVER
14981 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14982 L:      linux-media@vger.kernel.org
14983 T:      git git://linuxtv.org/media_tree.git
14984 S:      Maintained
14985 F:      drivers/media/usb/stk1160/
14986
14987 STM32 AUDIO (ASoC) DRIVERS
14988 M:      Olivier Moysan <olivier.moysan@st.com>
14989 M:      Arnaud Pouliquen <arnaud.pouliquen@st.com>
14990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14991 S:      Maintained
14992 F:      Documentation/devicetree/bindings/sound/st,stm32-*.txt
14993 F:      sound/soc/stm/
14994
14995 STM32 TIMER/LPTIMER DRIVERS
14996 M:      Fabrice Gasnier <fabrice.gasnier@st.com>
14997 S:      Maintained
14998 F:      drivers/*/stm32-*timer*
14999 F:      drivers/pwm/pwm-stm32*
15000 F:      include/linux/*/stm32-*tim*
15001 F:      Documentation/ABI/testing/*timer-stm32
15002 F:      Documentation/devicetree/bindings/*/stm32-*timer*
15003 F:      Documentation/devicetree/bindings/pwm/pwm-stm32*
15004
15005 STMMAC ETHERNET DRIVER
15006 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
15007 M:      Alexandre Torgue <alexandre.torgue@st.com>
15008 M:      Jose Abreu <joabreu@synopsys.com>
15009 L:      netdev@vger.kernel.org
15010 W:      http://www.stlinux.com
15011 S:      Supported
15012 F:      drivers/net/ethernet/stmicro/stmmac/
15013
15014 SUN3/3X
15015 M:      Sam Creasey <sammy@sammy.net>
15016 W:      http://sammy.net/sun3/
15017 S:      Maintained
15018 F:      arch/m68k/kernel/*sun3*
15019 F:      arch/m68k/sun3*/
15020 F:      arch/m68k/include/asm/sun3*
15021 F:      drivers/net/ethernet/i825xx/sun3*
15022
15023 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
15024 M:      Hans de Goede <hdegoede@redhat.com>
15025 L:      linux-input@vger.kernel.org
15026 S:      Maintained
15027 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
15028 F:      drivers/input/keyboard/sun4i-lradc-keys.c
15029
15030 SUNDANCE NETWORK DRIVER
15031 M:      Denis Kirjanov <kda@linux-powerpc.org>
15032 L:      netdev@vger.kernel.org
15033 S:      Maintained
15034 F:      drivers/net/ethernet/dlink/sundance.c
15035
15036 SUPERH
15037 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
15038 M:      Rich Felker <dalias@libc.org>
15039 L:      linux-sh@vger.kernel.org
15040 Q:      http://patchwork.kernel.org/project/linux-sh/list/
15041 S:      Maintained
15042 F:      Documentation/sh/
15043 F:      arch/sh/
15044 F:      drivers/sh/
15045
15046 SUSPEND TO RAM
15047 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
15048 M:      Len Brown <len.brown@intel.com>
15049 M:      Pavel Machek <pavel@ucw.cz>
15050 L:      linux-pm@vger.kernel.org
15051 B:      https://bugzilla.kernel.org
15052 S:      Supported
15053 F:      Documentation/power/
15054 F:      arch/x86/kernel/acpi/
15055 F:      drivers/base/power/
15056 F:      kernel/power/
15057 F:      include/linux/suspend.h
15058 F:      include/linux/freezer.h
15059 F:      include/linux/pm.h
15060
15061 SVGA HANDLING
15062 M:      Martin Mares <mj@ucw.cz>
15063 L:      linux-video@atrey.karlin.mff.cuni.cz
15064 S:      Maintained
15065 F:      Documentation/svga.txt
15066 F:      arch/x86/boot/video*
15067
15068 SWIOTLB SUBSYSTEM
15069 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15070 L:      iommu@lists.linux-foundation.org
15071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
15072 S:      Supported
15073 F:      kernel/dma/swiotlb.c
15074 F:      arch/*/kernel/pci-swiotlb.c
15075 F:      include/linux/swiotlb.h
15076
15077 SWITCHDEV
15078 M:      Jiri Pirko <jiri@resnulli.us>
15079 M:      Ivan Vecera <ivecera@redhat.com>
15080 L:      netdev@vger.kernel.org
15081 S:      Supported
15082 F:      net/switchdev/
15083 F:      include/net/switchdev.h
15084
15085 SY8106A REGULATOR DRIVER
15086 M:      Icenowy Zheng <icenowy@aosc.io>
15087 S:      Maintained
15088 F:      drivers/regulator/sy8106a-regulator.c
15089 F:      Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt
15090
15091 SYNC FILE FRAMEWORK
15092 M:      Sumit Semwal <sumit.semwal@linaro.org>
15093 R:      Gustavo Padovan <gustavo@padovan.org>
15094 S:      Maintained
15095 L:      linux-media@vger.kernel.org
15096 L:      dri-devel@lists.freedesktop.org
15097 F:      drivers/dma-buf/sync_*
15098 F:      drivers/dma-buf/dma-fence*
15099 F:      drivers/dma-buf/sw_sync.c
15100 F:      include/linux/sync_file.h
15101 F:      include/uapi/linux/sync_file.h
15102 F:      Documentation/sync_file.txt
15103 T:      git git://anongit.freedesktop.org/drm/drm-misc
15104
15105 SYNOPSYS ARC ARCHITECTURE
15106 M:      Vineet Gupta <vgupta@synopsys.com>
15107 L:      linux-snps-arc@lists.infradead.org
15108 S:      Supported
15109 F:      arch/arc/
15110 F:      Documentation/devicetree/bindings/arc/*
15111 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
15112 F:      drivers/clocksource/arc_timer.c
15113 F:      drivers/tty/serial/arc_uart.c
15114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
15115
15116 SYNOPSYS ARC HSDK SDP pll clock driver
15117 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15118 S:      Supported
15119 F:      drivers/clk/clk-hsdk-pll.c
15120 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
15121
15122 SYNOPSYS ARC SDP clock driver
15123 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15124 S:      Supported
15125 F:      drivers/clk/axs10x/*
15126 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
15127
15128 SYNOPSYS ARC SDP platform support
15129 M:      Alexey Brodkin <abrodkin@synopsys.com>
15130 S:      Supported
15131 F:      arch/arc/plat-axs10x
15132 F:      arch/arc/boot/dts/ax*
15133 F:      Documentation/devicetree/bindings/arc/axs10*
15134
15135 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
15136 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15137 S:      Supported
15138 F:      drivers/reset/reset-axs10x.c
15139 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
15140
15141 SYNOPSYS CREG GPIO DRIVER
15142 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15143 S:      Maintained
15144 F:      drivers/gpio/gpio-creg-snps.c
15145 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
15146
15147 SYNOPSYS DESIGNWARE 8250 UART DRIVER
15148 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15149 S:      Maintained
15150 F:      drivers/tty/serial/8250/8250_dw.c
15151
15152 SYNOPSYS DESIGNWARE APB GPIO DRIVER
15153 M:      Hoan Tran <hoan@os.amperecomputing.com>
15154 L:      linux-gpio@vger.kernel.org
15155 S:      Maintained
15156 F:      drivers/gpio/gpio-dwapb.c
15157 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
15158
15159 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
15160 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15161 S:      Maintained
15162 F:      drivers/dma/dwi-axi-dmac/
15163 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.txt
15164
15165 SYNOPSYS DESIGNWARE DMAC DRIVER
15166 M:      Viresh Kumar <vireshk@kernel.org>
15167 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15168 S:      Maintained
15169 F:      Documentation/devicetree/bindings/dma/snps-dma.txt
15170 F:      drivers/dma/dw/
15171 F:      include/dt-bindings/dma/dw-dmac.h
15172 F:      include/linux/dma/dw.h
15173 F:      include/linux/platform_data/dma-dw.h
15174
15175 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
15176 M:      Jose Abreu <Jose.Abreu@synopsys.com>
15177 L:      netdev@vger.kernel.org
15178 S:      Supported
15179 F:      drivers/net/ethernet/synopsys/
15180
15181 SYNOPSYS DESIGNWARE I2C DRIVER
15182 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
15183 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
15184 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
15185 L:      linux-i2c@vger.kernel.org
15186 S:      Maintained
15187 F:      drivers/i2c/busses/i2c-designware-*
15188 F:      include/linux/platform_data/i2c-designware.h
15189
15190 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
15191 M:      Jaehoon Chung <jh80.chung@samsung.com>
15192 L:      linux-mmc@vger.kernel.org
15193 S:      Maintained
15194 F:      drivers/mmc/host/dw_mmc*
15195
15196 SYNOPSYS HSDK RESET CONTROLLER DRIVER
15197 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
15198 S:      Supported
15199 F:      drivers/reset/reset-hsdk.c
15200 F:      include/dt-bindings/reset/snps,hsdk-reset.h
15201 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
15202
15203 SYSTEM CONFIGURATION (SYSCON)
15204 M:      Lee Jones <lee.jones@linaro.org>
15205 M:      Arnd Bergmann <arnd@arndb.de>
15206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
15207 S:      Supported
15208 F:      drivers/mfd/syscon.c
15209
15210 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
15211 M:      Sudeep Holla <sudeep.holla@arm.com>
15212 L:      linux-arm-kernel@lists.infradead.org
15213 S:      Maintained
15214 F:      Documentation/devicetree/bindings/arm/arm,sc[mp]i.txt
15215 F:      drivers/clk/clk-sc[mp]i.c
15216 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
15217 F:      drivers/firmware/arm_scpi.c
15218 F:      drivers/firmware/arm_scmi/
15219 F:      include/linux/sc[mp]i_protocol.h
15220
15221 SYSTEM RESET/SHUTDOWN DRIVERS
15222 M:      Sebastian Reichel <sre@kernel.org>
15223 L:      linux-pm@vger.kernel.org
15224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15225 S:      Maintained
15226 F:      Documentation/devicetree/bindings/power/reset/
15227 F:      drivers/power/reset/
15228
15229 SYSTEM TRACE MODULE CLASS
15230 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15231 S:      Maintained
15232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
15233 F:      Documentation/trace/stm.rst
15234 F:      drivers/hwtracing/stm/
15235 F:      include/linux/stm.h
15236 F:      include/uapi/linux/stm.h
15237
15238 SYSV FILESYSTEM
15239 M:      Christoph Hellwig <hch@infradead.org>
15240 S:      Maintained
15241 F:      Documentation/filesystems/sysv-fs.txt
15242 F:      fs/sysv/
15243 F:      include/linux/sysv_fs.h
15244
15245 TASKSTATS STATISTICS INTERFACE
15246 M:      Balbir Singh <bsingharora@gmail.com>
15247 S:      Maintained
15248 F:      Documentation/accounting/taskstats*
15249 F:      include/linux/taskstats*
15250 F:      kernel/taskstats.c
15251
15252 TC subsystem
15253 M:      Jamal Hadi Salim <jhs@mojatatu.com>
15254 M:      Cong Wang <xiyou.wangcong@gmail.com>
15255 M:      Jiri Pirko <jiri@resnulli.us>
15256 L:      netdev@vger.kernel.org
15257 S:      Maintained
15258 F:      include/net/pkt_cls.h
15259 F:      include/net/pkt_sched.h
15260 F:      include/net/tc_act/
15261 F:      include/uapi/linux/pkt_cls.h
15262 F:      include/uapi/linux/pkt_sched.h
15263 F:      include/uapi/linux/tc_act/
15264 F:      include/uapi/linux/tc_ematch/
15265 F:      net/sched/
15266
15267 TC90522 MEDIA DRIVER
15268 M:      Akihiro Tsukada <tskd08@gmail.com>
15269 L:      linux-media@vger.kernel.org
15270 S:      Odd Fixes
15271 F:      drivers/media/dvb-frontends/tc90522*
15272
15273 TCP LOW PRIORITY MODULE
15274 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
15275 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
15276 W:      http://tcp-lp-mod.sourceforge.net/
15277 S:      Maintained
15278 F:      net/ipv4/tcp_lp.c
15279
15280 TDA10071 MEDIA DRIVER
15281 M:      Antti Palosaari <crope@iki.fi>
15282 L:      linux-media@vger.kernel.org
15283 W:      https://linuxtv.org
15284 W:      http://palosaari.fi/linux/
15285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15286 T:      git git://linuxtv.org/anttip/media_tree.git
15287 S:      Maintained
15288 F:      drivers/media/dvb-frontends/tda10071*
15289
15290 TDA18212 MEDIA DRIVER
15291 M:      Antti Palosaari <crope@iki.fi>
15292 L:      linux-media@vger.kernel.org
15293 W:      https://linuxtv.org
15294 W:      http://palosaari.fi/linux/
15295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15296 T:      git git://linuxtv.org/anttip/media_tree.git
15297 S:      Maintained
15298 F:      drivers/media/tuners/tda18212*
15299
15300 TDA18218 MEDIA DRIVER
15301 M:      Antti Palosaari <crope@iki.fi>
15302 L:      linux-media@vger.kernel.org
15303 W:      https://linuxtv.org
15304 W:      http://palosaari.fi/linux/
15305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15306 T:      git git://linuxtv.org/anttip/media_tree.git
15307 S:      Maintained
15308 F:      drivers/media/tuners/tda18218*
15309
15310 TDA18250 MEDIA DRIVER
15311 M:      Olli Salonen <olli.salonen@iki.fi>
15312 L:      linux-media@vger.kernel.org
15313 W:      https://linuxtv.org
15314 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15315 T:      git git://linuxtv.org/media_tree.git
15316 S:      Maintained
15317 F:      drivers/media/tuners/tda18250*
15318
15319 TDA18271 MEDIA DRIVER
15320 M:      Michael Krufky <mkrufky@linuxtv.org>
15321 L:      linux-media@vger.kernel.org
15322 W:      https://linuxtv.org
15323 W:      http://github.com/mkrufky
15324 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15325 T:      git git://linuxtv.org/mkrufky/tuners.git
15326 S:      Maintained
15327 F:      drivers/media/tuners/tda18271*
15328
15329 TDA1997x MEDIA DRIVER
15330 M:      Tim Harvey <tharvey@gateworks.com>
15331 L:      linux-media@vger.kernel.org
15332 W:      https://linuxtv.org
15333 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15334 S:      Maintained
15335 F:      drivers/media/i2c/tda1997x.*
15336
15337 TDA827x MEDIA DRIVER
15338 M:      Michael Krufky <mkrufky@linuxtv.org>
15339 L:      linux-media@vger.kernel.org
15340 W:      https://linuxtv.org
15341 W:      http://github.com/mkrufky
15342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15343 T:      git git://linuxtv.org/mkrufky/tuners.git
15344 S:      Maintained
15345 F:      drivers/media/tuners/tda8290.*
15346
15347 TDA8290 MEDIA DRIVER
15348 M:      Michael Krufky <mkrufky@linuxtv.org>
15349 L:      linux-media@vger.kernel.org
15350 W:      https://linuxtv.org
15351 W:      http://github.com/mkrufky
15352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15353 T:      git git://linuxtv.org/mkrufky/tuners.git
15354 S:      Maintained
15355 F:      drivers/media/tuners/tda8290.*
15356
15357 TDA9840 MEDIA DRIVER
15358 M:      Hans Verkuil <hverkuil@xs4all.nl>
15359 L:      linux-media@vger.kernel.org
15360 T:      git git://linuxtv.org/media_tree.git
15361 W:      https://linuxtv.org
15362 S:      Maintained
15363 F:      drivers/media/i2c/tda9840*
15364
15365 TEA5761 TUNER DRIVER
15366 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15367 L:      linux-media@vger.kernel.org
15368 W:      https://linuxtv.org
15369 T:      git git://linuxtv.org/media_tree.git
15370 S:      Odd fixes
15371 F:      drivers/media/tuners/tea5761.*
15372
15373 TEA5767 TUNER DRIVER
15374 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15375 L:      linux-media@vger.kernel.org
15376 W:      https://linuxtv.org
15377 T:      git git://linuxtv.org/media_tree.git
15378 S:      Maintained
15379 F:      drivers/media/tuners/tea5767.*
15380
15381 TEA6415C MEDIA DRIVER
15382 M:      Hans Verkuil <hverkuil@xs4all.nl>
15383 L:      linux-media@vger.kernel.org
15384 T:      git git://linuxtv.org/media_tree.git
15385 W:      https://linuxtv.org
15386 S:      Maintained
15387 F:      drivers/media/i2c/tea6415c*
15388
15389 TEA6420 MEDIA DRIVER
15390 M:      Hans Verkuil <hverkuil@xs4all.nl>
15391 L:      linux-media@vger.kernel.org
15392 T:      git git://linuxtv.org/media_tree.git
15393 W:      https://linuxtv.org
15394 S:      Maintained
15395 F:      drivers/media/i2c/tea6420*
15396
15397 TEAM DRIVER
15398 M:      Jiri Pirko <jiri@resnulli.us>
15399 L:      netdev@vger.kernel.org
15400 S:      Supported
15401 F:      drivers/net/team/
15402 F:      include/linux/if_team.h
15403 F:      include/uapi/linux/if_team.h
15404
15405 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
15406 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
15407 S:      Maintained
15408 F:      arch/x86/platform/ts5500/
15409
15410 TECHNOTREND USB IR RECEIVER
15411 M:      Sean Young <sean@mess.org>
15412 L:      linux-media@vger.kernel.org
15413 S:      Maintained
15414 F:      drivers/media/rc/ttusbir.c
15415
15416 TECHWELL TW9910 VIDEO DECODER
15417 L:      linux-media@vger.kernel.org
15418 S:      Orphan
15419 F:      drivers/media/i2c/tw9910.c
15420 F:      include/media/i2c/tw9910.h
15421
15422 TEE SUBSYSTEM
15423 M:      Jens Wiklander <jens.wiklander@linaro.org>
15424 S:      Maintained
15425 F:      include/linux/tee_drv.h
15426 F:      include/uapi/linux/tee.h
15427 F:      drivers/tee/
15428 F:      Documentation/tee.txt
15429
15430 TEGRA ARCHITECTURE SUPPORT
15431 M:      Thierry Reding <thierry.reding@gmail.com>
15432 M:      Jonathan Hunter <jonathanh@nvidia.com>
15433 L:      linux-tegra@vger.kernel.org
15434 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
15435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
15436 S:      Supported
15437 N:      [^a-z]tegra
15438
15439 TEGRA CLOCK DRIVER
15440 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
15441 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
15442 S:      Supported
15443 F:      drivers/clk/tegra/
15444
15445 TEGRA DMA DRIVERS
15446 M:      Laxman Dewangan <ldewangan@nvidia.com>
15447 M:      Jon Hunter <jonathanh@nvidia.com>
15448 S:      Supported
15449 F:      drivers/dma/tegra*
15450
15451 TEGRA I2C DRIVER
15452 M:      Laxman Dewangan <ldewangan@nvidia.com>
15453 S:      Supported
15454 F:      drivers/i2c/busses/i2c-tegra.c
15455
15456 TEGRA IOMMU DRIVERS
15457 M:      Thierry Reding <thierry.reding@gmail.com>
15458 L:      linux-tegra@vger.kernel.org
15459 S:      Supported
15460 F:      drivers/iommu/tegra*
15461
15462 TEGRA KBC DRIVER
15463 M:      Laxman Dewangan <ldewangan@nvidia.com>
15464 S:      Supported
15465 F:      drivers/input/keyboard/tegra-kbc.c
15466
15467 TEGRA NAND DRIVER
15468 M:      Stefan Agner <stefan@agner.ch>
15469 M:      Lucas Stach <dev@lynxeye.de>
15470 S:      Maintained
15471 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
15472 F:      drivers/mtd/nand/raw/tegra_nand.c
15473
15474 TEGRA PWM DRIVER
15475 M:      Thierry Reding <thierry.reding@gmail.com>
15476 S:      Supported
15477 F:      drivers/pwm/pwm-tegra.c
15478
15479 TEGRA SERIAL DRIVER
15480 M:      Laxman Dewangan <ldewangan@nvidia.com>
15481 S:      Supported
15482 F:      drivers/tty/serial/serial-tegra.c
15483
15484 TEGRA SPI DRIVER
15485 M:      Laxman Dewangan <ldewangan@nvidia.com>
15486 S:      Supported
15487 F:      drivers/spi/spi-tegra*
15488
15489 TEGRA XUSB PADCTL DRIVER
15490 M:      JC Kuo <jckuo@nvidia.com>
15491 S:      Supported
15492 F:      drivers/phy/tegra/xusb*
15493
15494 TEHUTI ETHERNET DRIVER
15495 M:      Andy Gospodarek <andy@greyhouse.net>
15496 L:      netdev@vger.kernel.org
15497 S:      Supported
15498 F:      drivers/net/ethernet/tehuti/*
15499
15500 Telecom Clock Driver for MCPL0010
15501 M:      Mark Gross <mark.gross@intel.com>
15502 S:      Supported
15503 F:      drivers/char/tlclk.c
15504
15505 TENSILICA XTENSA PORT (xtensa)
15506 M:      Chris Zankel <chris@zankel.net>
15507 M:      Max Filippov <jcmvbkbc@gmail.com>
15508 L:      linux-xtensa@linux-xtensa.org
15509 T:      git git://github.com/czankel/xtensa-linux.git
15510 S:      Maintained
15511 F:      arch/xtensa/
15512 F:      drivers/irqchip/irq-xtensa-*
15513
15514 Texas Instruments' System Control Interface (TISCI) Protocol Driver
15515 M:      Nishanth Menon <nm@ti.com>
15516 M:      Tero Kristo <t-kristo@ti.com>
15517 M:      Santosh Shilimkar <ssantosh@kernel.org>
15518 L:      linux-arm-kernel@lists.infradead.org
15519 S:      Maintained
15520 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
15521 F:      drivers/firmware/ti_sci*
15522 F:      include/linux/soc/ti/ti_sci_protocol.h
15523 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
15524 F:      drivers/soc/ti/ti_sci_pm_domains.c
15525 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
15526 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
15527 F:      drivers/clk/keystone/sci-clk.c
15528 F:      drivers/reset/reset-ti-sci.c
15529
15530 Texas Instruments ASoC drivers
15531 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
15532 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15533 S:      Maintained
15534 F:      sound/soc/ti/
15535
15536 Texas Instruments' DAC7612 DAC Driver
15537 M:      Ricardo Ribalda <ricardo@ribalda.com>
15538 L:      linux-iio@vger.kernel.org
15539 S:      Supported
15540 F:      drivers/iio/dac/ti-dac7612.c
15541 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt
15542
15543 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
15544 M:      Hans Verkuil <hverkuil@xs4all.nl>
15545 L:      linux-media@vger.kernel.org
15546 T:      git git://linuxtv.org/media_tree.git
15547 W:      https://linuxtv.org
15548 S:      Maintained
15549 F:      drivers/media/radio/radio-raremono.c
15550
15551 THERMAL
15552 M:      Zhang Rui <rui.zhang@intel.com>
15553 M:      Eduardo Valentin <edubezval@gmail.com>
15554 R:      Daniel Lezcano <daniel.lezcano@linaro.org>
15555 L:      linux-pm@vger.kernel.org
15556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
15557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
15558 Q:      https://patchwork.kernel.org/project/linux-pm/list/
15559 S:      Supported
15560 F:      drivers/thermal/
15561 F:      include/linux/thermal.h
15562 F:      include/uapi/linux/thermal.h
15563 F:      include/linux/cpu_cooling.h
15564 F:      Documentation/devicetree/bindings/thermal/
15565
15566 THERMAL/CPU_COOLING
15567 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
15568 M:      Viresh Kumar <viresh.kumar@linaro.org>
15569 M:      Javi Merino <javi.merino@kernel.org>
15570 L:      linux-pm@vger.kernel.org
15571 S:      Supported
15572 F:      Documentation/thermal/cpu-cooling-api.txt
15573 F:      drivers/thermal/cpu_cooling.c
15574 F:      include/linux/cpu_cooling.h
15575
15576 THINKPAD ACPI EXTRAS DRIVER
15577 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
15578 L:      ibm-acpi-devel@lists.sourceforge.net
15579 L:      platform-driver-x86@vger.kernel.org
15580 W:      http://ibm-acpi.sourceforge.net
15581 W:      http://thinkwiki.org/wiki/Ibm-acpi
15582 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
15583 S:      Maintained
15584 F:      drivers/platform/x86/thinkpad_acpi.c
15585
15586 THUNDERBOLT DRIVER
15587 M:      Andreas Noever <andreas.noever@gmail.com>
15588 M:      Michael Jamet <michael.jamet@intel.com>
15589 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15590 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
15591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
15592 S:      Maintained
15593 F:      Documentation/admin-guide/thunderbolt.rst
15594 F:      drivers/thunderbolt/
15595 F:      include/linux/thunderbolt.h
15596
15597 THUNDERBOLT NETWORK DRIVER
15598 M:      Michael Jamet <michael.jamet@intel.com>
15599 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15600 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
15601 L:      netdev@vger.kernel.org
15602 S:      Maintained
15603 F:      drivers/net/thunderbolt.c
15604
15605 THUNDERX GPIO DRIVER
15606 M:      David Daney <david.daney@cavium.com>
15607 S:      Maintained
15608 F:      drivers/gpio/gpio-thunderx.c
15609
15610 TI AM437X VPFE DRIVER
15611 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15612 L:      linux-media@vger.kernel.org
15613 W:      https://linuxtv.org
15614 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15615 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15616 S:      Maintained
15617 F:      drivers/media/platform/am437x/
15618
15619 TI BANDGAP AND THERMAL DRIVER
15620 M:      Eduardo Valentin <edubezval@gmail.com>
15621 M:      Keerthy <j-keerthy@ti.com>
15622 L:      linux-pm@vger.kernel.org
15623 L:      linux-omap@vger.kernel.org
15624 S:      Maintained
15625 F:      drivers/thermal/ti-soc-thermal/
15626
15627 TI BQ27XXX POWER SUPPLY DRIVER
15628 R:      Andrew F. Davis <afd@ti.com>
15629 F:      include/linux/power/bq27xxx_battery.h
15630 F:      drivers/power/supply/bq27xxx_battery.c
15631 F:      drivers/power/supply/bq27xxx_battery_i2c.c
15632
15633 TI CDCE706 CLOCK DRIVER
15634 M:      Max Filippov <jcmvbkbc@gmail.com>
15635 S:      Maintained
15636 F:      drivers/clk/clk-cdce706.c
15637
15638 TI CLOCK DRIVER
15639 M:      Tero Kristo <t-kristo@ti.com>
15640 L:      linux-omap@vger.kernel.org
15641 S:      Maintained
15642 F:      drivers/clk/ti/
15643 F:      include/linux/clk/ti.h
15644
15645 TI DAVINCI MACHINE SUPPORT
15646 M:      Sekhar Nori <nsekhar@ti.com>
15647 M:      Kevin Hilman <khilman@kernel.org>
15648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
15650 S:      Supported
15651 F:      arch/arm/mach-davinci/
15652 F:      drivers/i2c/busses/i2c-davinci.c
15653 F:      arch/arm/boot/dts/da850*
15654
15655 TI DAVINCI SERIES CLOCK DRIVER
15656 M:      David Lechner <david@lechnology.com>
15657 R:      Sekhar Nori <nsekhar@ti.com>
15658 S:      Maintained
15659 F:      Documentation/devicetree/bindings/clock/ti/davinci/
15660 F:      drivers/clk/davinci/
15661
15662 TI DAVINCI SERIES GPIO DRIVER
15663 M:      Keerthy <j-keerthy@ti.com>
15664 L:      linux-gpio@vger.kernel.org
15665 S:      Maintained
15666 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
15667 F:      drivers/gpio/gpio-davinci.c
15668
15669 TI DAVINCI SERIES MEDIA DRIVER
15670 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15671 L:      linux-media@vger.kernel.org
15672 W:      https://linuxtv.org
15673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15674 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15675 S:      Maintained
15676 F:      drivers/media/platform/davinci/
15677 F:      include/media/davinci/
15678
15679 TI ETHERNET SWITCH DRIVER (CPSW)
15680 R:      Grygorii Strashko <grygorii.strashko@ti.com>
15681 L:      linux-omap@vger.kernel.org
15682 L:      netdev@vger.kernel.org
15683 S:      Maintained
15684 F:      drivers/net/ethernet/ti/cpsw*
15685 F:      drivers/net/ethernet/ti/davinci*
15686
15687 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
15688 M:      Alex Dubov <oakad@yahoo.com>
15689 S:      Maintained
15690 W:      http://tifmxx.berlios.de/
15691 F:      drivers/memstick/host/tifm_ms.c
15692 F:      drivers/misc/tifm*
15693 F:      drivers/mmc/host/tifm_sd.c
15694 F:      include/linux/tifm.h
15695
15696 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
15697 M:      Santosh Shilimkar <ssantosh@kernel.org>
15698 L:      linux-kernel@vger.kernel.org
15699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15700 S:      Maintained
15701 F:      drivers/soc/ti/*
15702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
15703
15704 TI LM49xxx FAMILY ASoC CODEC DRIVERS
15705 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
15706 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
15707 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15708 S:      Maintained
15709 F:      sound/soc/codecs/lm49453*
15710 F:      sound/soc/codecs/isabelle*
15711
15712 TI LP855x BACKLIGHT DRIVER
15713 M:      Milo Kim <milo.kim@ti.com>
15714 S:      Maintained
15715 F:      Documentation/backlight/lp855x-driver.txt
15716 F:      drivers/video/backlight/lp855x_bl.c
15717 F:      include/linux/platform_data/lp855x.h
15718
15719 TI LP8727 CHARGER DRIVER
15720 M:      Milo Kim <milo.kim@ti.com>
15721 S:      Maintained
15722 F:      drivers/power/supply/lp8727_charger.c
15723 F:      include/linux/platform_data/lp8727.h
15724
15725 TI LP8788 MFD DRIVER
15726 M:      Milo Kim <milo.kim@ti.com>
15727 S:      Maintained
15728 F:      drivers/iio/adc/lp8788_adc.c
15729 F:      drivers/leds/leds-lp8788.c
15730 F:      drivers/mfd/lp8788*.c
15731 F:      drivers/power/supply/lp8788-charger.c
15732 F:      drivers/regulator/lp8788-*.c
15733 F:      include/linux/mfd/lp8788*.h
15734
15735 TI NETCP ETHERNET DRIVER
15736 M:      Wingman Kwok <w-kwok2@ti.com>
15737 M:      Murali Karicheri <m-karicheri2@ti.com>
15738 L:      netdev@vger.kernel.org
15739 S:      Maintained
15740 F:      drivers/net/ethernet/ti/netcp*
15741
15742 TI PCM3060 ASoC CODEC DRIVER
15743 M:      Kirill Marinushkin <kmarinushkin@birdec.tech>
15744 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15745 S:      Maintained
15746 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
15747 F:      sound/soc/codecs/pcm3060*
15748
15749 TI TAS571X FAMILY ASoC CODEC DRIVER
15750 M:      Kevin Cernekee <cernekee@chromium.org>
15751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15752 S:      Odd Fixes
15753 F:      sound/soc/codecs/tas571x*
15754
15755 TI TRF7970A NFC DRIVER
15756 M:      Mark Greer <mgreer@animalcreek.com>
15757 L:      linux-wireless@vger.kernel.org
15758 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
15759 S:      Supported
15760 F:      drivers/nfc/trf7970a.c
15761 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
15762
15763 TI TWL4030 SERIES SOC CODEC DRIVER
15764 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
15765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15766 S:      Maintained
15767 F:      sound/soc/codecs/twl4030*
15768
15769 TI VPE/CAL DRIVERS
15770 M:      Benoit Parrot <bparrot@ti.com>
15771 L:      linux-media@vger.kernel.org
15772 W:      http://linuxtv.org/
15773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15774 S:      Maintained
15775 F:      drivers/media/platform/ti-vpe/
15776
15777 TI WILINK WIRELESS DRIVERS
15778 L:      linux-wireless@vger.kernel.org
15779 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
15780 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
15781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
15782 S:      Orphan
15783 F:      drivers/net/wireless/ti/
15784 F:      include/linux/wl12xx.h
15785
15786 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
15787 M:      John Stultz <john.stultz@linaro.org>
15788 M:      Thomas Gleixner <tglx@linutronix.de>
15789 R:      Stephen Boyd <sboyd@kernel.org>
15790 L:      linux-kernel@vger.kernel.org
15791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15792 S:      Supported
15793 F:      include/linux/clocksource.h
15794 F:      include/linux/time.h
15795 F:      include/linux/timex.h
15796 F:      include/uapi/linux/time.h
15797 F:      include/uapi/linux/timex.h
15798 F:      kernel/time/clocksource.c
15799 F:      kernel/time/time*.c
15800 F:      kernel/time/alarmtimer.c
15801 F:      kernel/time/ntp.c
15802 F:      tools/testing/selftests/timers/
15803
15804 TIPC NETWORK LAYER
15805 M:      Jon Maloy <jon.maloy@ericsson.com>
15806 M:      Ying Xue <ying.xue@windriver.com>
15807 L:      netdev@vger.kernel.org (core kernel code)
15808 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
15809 W:      http://tipc.sourceforge.net/
15810 S:      Maintained
15811 F:      include/uapi/linux/tipc*.h
15812 F:      net/tipc/
15813
15814 TLAN NETWORK DRIVER
15815 M:      Samuel Chessman <chessman@tux.org>
15816 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
15817 W:      http://sourceforge.net/projects/tlan/
15818 S:      Maintained
15819 F:      Documentation/networking/device_drivers/ti/tlan.txt
15820 F:      drivers/net/ethernet/ti/tlan.*
15821
15822 TM6000 VIDEO4LINUX DRIVER
15823 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15824 L:      linux-media@vger.kernel.org
15825 W:      https://linuxtv.org
15826 T:      git git://linuxtv.org/media_tree.git
15827 S:      Odd fixes
15828 F:      drivers/media/usb/tm6000/
15829 F:      Documentation/media/v4l-drivers/tm6000*
15830
15831 TMIO/SDHI MMC DRIVER
15832 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15833 L:      linux-mmc@vger.kernel.org
15834 S:      Supported
15835 F:      drivers/mmc/host/tmio_mmc*
15836 F:      drivers/mmc/host/renesas_sdhi*
15837 F:      include/linux/mfd/tmio.h
15838
15839 TMP401 HARDWARE MONITOR DRIVER
15840 M:      Guenter Roeck <linux@roeck-us.net>
15841 L:      linux-hwmon@vger.kernel.org
15842 S:      Maintained
15843 F:      Documentation/hwmon/tmp401.rst
15844 F:      drivers/hwmon/tmp401.c
15845
15846 TMPFS (SHMEM FILESYSTEM)
15847 M:      Hugh Dickins <hughd@google.com>
15848 L:      linux-mm@kvack.org
15849 S:      Maintained
15850 F:      include/linux/shmem_fs.h
15851 F:      mm/shmem.c
15852
15853 TOMOYO SECURITY MODULE
15854 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
15855 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
15856 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
15857 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
15858 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
15859 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
15860 W:      https://tomoyo.osdn.jp/
15861 S:      Maintained
15862 F:      security/tomoyo/
15863
15864 TOPSTAR LAPTOP EXTRAS DRIVER
15865 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
15866 L:      platform-driver-x86@vger.kernel.org
15867 S:      Maintained
15868 F:      drivers/platform/x86/topstar-laptop.c
15869
15870 TORTURE-TEST MODULES
15871 M:      Davidlohr Bueso <dave@stgolabs.net>
15872 M:      "Paul E. McKenney" <paulmck@linux.ibm.com>
15873 M:      Josh Triplett <josh@joshtriplett.org>
15874 L:      linux-kernel@vger.kernel.org
15875 S:      Supported
15876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15877 F:      Documentation/RCU/torture.txt
15878 F:      kernel/torture.c
15879 F:      kernel/rcu/rcutorture.c
15880 F:      kernel/rcu/rcuperf.c
15881 F:      kernel/locking/locktorture.c
15882
15883 TOSHIBA ACPI EXTRAS DRIVER
15884 M:      Azael Avalos <coproscefalo@gmail.com>
15885 L:      platform-driver-x86@vger.kernel.org
15886 S:      Maintained
15887 F:      drivers/platform/x86/toshiba_acpi.c
15888
15889 TOSHIBA BLUETOOTH DRIVER
15890 M:      Azael Avalos <coproscefalo@gmail.com>
15891 L:      platform-driver-x86@vger.kernel.org
15892 S:      Maintained
15893 F:      drivers/platform/x86/toshiba_bluetooth.c
15894
15895 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
15896 M:      Azael Avalos <coproscefalo@gmail.com>
15897 L:      platform-driver-x86@vger.kernel.org
15898 S:      Maintained
15899 F:      drivers/platform/x86/toshiba_haps.c
15900
15901 TOSHIBA SMM DRIVER
15902 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
15903 W:      http://www.buzzard.org.uk/toshiba/
15904 S:      Maintained
15905 F:      drivers/char/toshiba.c
15906 F:      include/linux/toshiba.h
15907 F:      include/uapi/linux/toshiba.h
15908
15909 TOSHIBA TC358743 DRIVER
15910 M:      Mats Randgaard <matrandg@cisco.com>
15911 L:      linux-media@vger.kernel.org
15912 S:      Maintained
15913 F:      drivers/media/i2c/tc358743*
15914 F:      include/media/i2c/tc358743.h
15915
15916 TOSHIBA WMI HOTKEYS DRIVER
15917 M:      Azael Avalos <coproscefalo@gmail.com>
15918 L:      platform-driver-x86@vger.kernel.org
15919 S:      Maintained
15920 F:      drivers/platform/x86/toshiba-wmi.c
15921
15922 TPM DEVICE DRIVER
15923 M:      Peter Huewe <peterhuewe@gmx.de>
15924 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
15925 R:      Jason Gunthorpe <jgg@ziepe.ca>
15926 L:      linux-integrity@vger.kernel.org
15927 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
15928 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
15929 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
15930 S:      Maintained
15931 F:      drivers/char/tpm/
15932
15933 TRACING
15934 M:      Steven Rostedt <rostedt@goodmis.org>
15935 M:      Ingo Molnar <mingo@redhat.com>
15936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15937 S:      Maintained
15938 F:      Documentation/trace/ftrace.rst
15939 F:      arch/*/*/*/ftrace.h
15940 F:      arch/*/kernel/ftrace.c
15941 F:      include/*/ftrace.h
15942 F:      include/linux/trace*.h
15943 F:      include/trace/
15944 F:      kernel/trace/
15945 F:      tools/testing/selftests/ftrace/
15946
15947 TRACING MMIO ACCESSES (MMIOTRACE)
15948 M:      Steven Rostedt <rostedt@goodmis.org>
15949 M:      Ingo Molnar <mingo@kernel.org>
15950 R:      Karol Herbst <karolherbst@gmail.com>
15951 R:      Pekka Paalanen <ppaalanen@gmail.com>
15952 S:      Maintained
15953 L:      linux-kernel@vger.kernel.org
15954 L:      nouveau@lists.freedesktop.org
15955 F:      kernel/trace/trace_mmiotrace.c
15956 F:      include/linux/mmiotrace.h
15957 F:      arch/x86/mm/kmmio.c
15958 F:      arch/x86/mm/mmio-mod.c
15959 F:      arch/x86/mm/testmmiotrace.c
15960
15961 TRIVIAL PATCHES
15962 M:      Jiri Kosina <trivial@kernel.org>
15963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
15964 S:      Maintained
15965 K:      ^Subject:.*(?i)trivial
15966
15967 TEMPO SEMICONDUCTOR DRIVERS
15968 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
15969 S:      Maintained
15970 F:      sound/soc/codecs/tscs*.c
15971 F:      sound/soc/codecs/tscs*.h
15972 F:      Documentation/devicetree/bindings/sound/tscs*.txt
15973
15974 TTY LAYER
15975 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15976 M:      Jiri Slaby <jslaby@suse.com>
15977 S:      Supported
15978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
15979 F:      Documentation/serial/
15980 F:      drivers/tty/
15981 F:      drivers/tty/serial/serial_core.c
15982 F:      include/linux/serial_core.h
15983 F:      include/linux/serial.h
15984 F:      include/linux/tty.h
15985 F:      include/uapi/linux/serial_core.h
15986 F:      include/uapi/linux/serial.h
15987 F:      include/uapi/linux/tty.h
15988
15989 TUA9001 MEDIA DRIVER
15990 M:      Antti Palosaari <crope@iki.fi>
15991 L:      linux-media@vger.kernel.org
15992 W:      https://linuxtv.org
15993 W:      http://palosaari.fi/linux/
15994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15995 T:      git git://linuxtv.org/anttip/media_tree.git
15996 S:      Maintained
15997 F:      drivers/media/tuners/tua9001*
15998
15999 TULIP NETWORK DRIVERS
16000 L:      netdev@vger.kernel.org
16001 L:      linux-parisc@vger.kernel.org
16002 S:      Orphan
16003 F:      drivers/net/ethernet/dec/tulip/
16004
16005 TUN/TAP driver
16006 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
16007 W:      http://vtun.sourceforge.net/tun
16008 S:      Maintained
16009 F:      Documentation/networking/tuntap.txt
16010 F:      arch/um/os-Linux/drivers/
16011
16012 TURBOCHANNEL SUBSYSTEM
16013 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
16014 M:      Ralf Baechle <ralf@linux-mips.org>
16015 L:      linux-mips@vger.kernel.org
16016 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
16017 S:      Maintained
16018 F:      drivers/tc/
16019 F:      include/linux/tc.h
16020
16021 TURBOSTAT UTILITY
16022 M:      "Len Brown" <lenb@kernel.org>
16023 L:      linux-pm@vger.kernel.org
16024 B:      https://bugzilla.kernel.org
16025 Q:      https://patchwork.kernel.org/project/linux-pm/list/
16026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
16027 S:      Supported
16028 F:      tools/power/x86/turbostat/
16029
16030 TW5864 VIDEO4LINUX DRIVER
16031 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
16032 M:      Anton Sviridenko <anton@corp.bluecherry.net>
16033 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
16034 M:      Andrey Utkin <andrey_utkin@fastmail.com>
16035 L:      linux-media@vger.kernel.org
16036 S:      Supported
16037 F:      drivers/media/pci/tw5864/
16038
16039 TW68 VIDEO4LINUX DRIVER
16040 M:      Hans Verkuil <hverkuil@xs4all.nl>
16041 L:      linux-media@vger.kernel.org
16042 T:      git git://linuxtv.org/media_tree.git
16043 W:      https://linuxtv.org
16044 S:      Odd Fixes
16045 F:      drivers/media/pci/tw68/
16046
16047 TW686X VIDEO4LINUX DRIVER
16048 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16049 L:      linux-media@vger.kernel.org
16050 T:      git git://linuxtv.org/media_tree.git
16051 W:      http://linuxtv.org
16052 S:      Maintained
16053 F:      drivers/media/pci/tw686x/
16054
16055 UBI FILE SYSTEM (UBIFS)
16056 M:      Richard Weinberger <richard@nod.at>
16057 M:      Artem Bityutskiy <dedekind1@gmail.com>
16058 M:      Adrian Hunter <adrian.hunter@intel.com>
16059 L:      linux-mtd@lists.infradead.org
16060 T:      git git://git.infradead.org/ubifs-2.6.git
16061 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
16062 S:      Supported
16063 F:      Documentation/filesystems/ubifs.txt
16064 F:      fs/ubifs/
16065
16066 UCLINUX (M68KNOMMU AND COLDFIRE)
16067 M:      Greg Ungerer <gerg@linux-m68k.org>
16068 W:      http://www.linux-m68k.org/
16069 W:      http://www.uclinux.org/
16070 L:      linux-m68k@lists.linux-m68k.org
16071 L:      uclinux-dev@uclinux.org  (subscribers-only)
16072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
16073 S:      Maintained
16074 F:      arch/m68k/coldfire/
16075 F:      arch/m68k/68*/
16076 F:      arch/m68k/*/*_no.*
16077 F:      arch/m68k/include/asm/*_no.*
16078
16079 UDF FILESYSTEM
16080 M:      Jan Kara <jack@suse.com>
16081 S:      Maintained
16082 F:      Documentation/filesystems/udf.txt
16083 F:      fs/udf/
16084
16085 UDRAW TABLET
16086 M:      Bastien Nocera <hadess@hadess.net>
16087 L:      linux-input@vger.kernel.org
16088 S:      Maintained
16089 F:      drivers/hid/hid-udraw-ps3.c
16090
16091 UFS FILESYSTEM
16092 M:      Evgeniy Dushistov <dushistov@mail.ru>
16093 S:      Maintained
16094 F:      Documentation/filesystems/ufs.txt
16095 F:      fs/ufs/
16096
16097 UHID USERSPACE HID IO DRIVER:
16098 M:      David Herrmann <dh.herrmann@googlemail.com>
16099 L:      linux-input@vger.kernel.org
16100 S:      Maintained
16101 F:      drivers/hid/uhid.c
16102 F:      include/uapi/linux/uhid.h
16103
16104 ULPI BUS
16105 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16106 L:      linux-usb@vger.kernel.org
16107 S:      Maintained
16108 F:      drivers/usb/common/ulpi.c
16109 F:      include/linux/ulpi/
16110
16111 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
16112 L:      linux-usb@vger.kernel.org
16113 S:      Orphan
16114 F:      drivers/uwb/
16115 F:      include/linux/uwb.h
16116 F:      include/linux/uwb/
16117
16118 UNICODE SUBSYSTEM:
16119 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
16120 L:      linux-fsdevel@vger.kernel.org
16121 S:      Supported
16122 F:      fs/unicode/
16123
16124 UNICORE32 ARCHITECTURE:
16125 M:      Guan Xuetao <gxt@pku.edu.cn>
16126 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
16127 S:      Maintained
16128 T:      git git://github.com/gxt/linux.git
16129 F:      arch/unicore32/
16130
16131 UNIFDEF
16132 M:      Tony Finch <dot@dotat.at>
16133 W:      http://dotat.at/prog/unifdef
16134 S:      Maintained
16135 F:      scripts/unifdef.c
16136
16137 UNIFORM CDROM DRIVER
16138 M:      Jens Axboe <axboe@kernel.dk>
16139 W:      http://www.kernel.dk
16140 S:      Maintained
16141 F:      Documentation/cdrom/
16142 F:      drivers/cdrom/cdrom.c
16143 F:      include/linux/cdrom.h
16144 F:      include/uapi/linux/cdrom.h
16145
16146 UNISYS S-PAR DRIVERS
16147 M:      David Kershner <david.kershner@unisys.com>
16148 L:      sparmaintainer@unisys.com (Unisys internal)
16149 S:      Supported
16150 F:      include/linux/visorbus.h
16151 F:      drivers/visorbus/
16152 F:      drivers/staging/unisys/
16153
16154 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
16155 R:      Alim Akhtar <alim.akhtar@samsung.com>
16156 R:      Avri Altman <avri.altman@wdc.com>
16157 R:      Pedro Sousa <pedrom.sousa@synopsys.com>
16158 L:      linux-scsi@vger.kernel.org
16159 S:      Supported
16160 F:      Documentation/scsi/ufs.txt
16161 F:      drivers/scsi/ufs/
16162
16163 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
16164 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
16165 L:      linux-scsi@vger.kernel.org
16166 S:      Supported
16167 F:      drivers/scsi/ufs/*dwc*
16168
16169 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
16170 M:      Stanley Chu <stanley.chu@mediatek.com>
16171 L:      linux-scsi@vger.kernel.org
16172 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16173 S:      Maintained
16174 F:      drivers/scsi/ufs/ufs-mediatek*
16175
16176 UNSORTED BLOCK IMAGES (UBI)
16177 M:      Artem Bityutskiy <dedekind1@gmail.com>
16178 M:      Richard Weinberger <richard@nod.at>
16179 W:      http://www.linux-mtd.infradead.org/
16180 L:      linux-mtd@lists.infradead.org
16181 T:      git git://git.infradead.org/ubifs-2.6.git
16182 S:      Supported
16183 F:      drivers/mtd/ubi/
16184 F:      include/linux/mtd/ubi.h
16185 F:      include/uapi/mtd/ubi-user.h
16186
16187 USB "USBNET" DRIVER FRAMEWORK
16188 M:      Oliver Neukum <oneukum@suse.com>
16189 L:      netdev@vger.kernel.org
16190 W:      http://www.linux-usb.org/usbnet
16191 S:      Maintained
16192 F:      drivers/net/usb/usbnet.c
16193 F:      include/linux/usb/usbnet.h
16194
16195 USB ACM DRIVER
16196 M:      Oliver Neukum <oneukum@suse.com>
16197 L:      linux-usb@vger.kernel.org
16198 S:      Maintained
16199 F:      Documentation/usb/acm.txt
16200 F:      drivers/usb/class/cdc-acm.*
16201
16202 USB AR5523 WIRELESS DRIVER
16203 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
16204 L:      linux-wireless@vger.kernel.org
16205 S:      Maintained
16206 F:      drivers/net/wireless/ath/ar5523/
16207
16208 USB ATTACHED SCSI
16209 M:      Oliver Neukum <oneukum@suse.com>
16210 L:      linux-usb@vger.kernel.org
16211 L:      linux-scsi@vger.kernel.org
16212 S:      Maintained
16213 F:      drivers/usb/storage/uas.c
16214
16215 USB CDC ETHERNET DRIVER
16216 M:      Oliver Neukum <oliver@neukum.org>
16217 L:      linux-usb@vger.kernel.org
16218 S:      Maintained
16219 F:      drivers/net/usb/cdc_*.c
16220 F:      include/uapi/linux/usb/cdc.h
16221
16222 USB CHAOSKEY DRIVER
16223 M:      Keith Packard <keithp@keithp.com>
16224 L:      linux-usb@vger.kernel.org
16225 S:      Maintained
16226 F:      drivers/usb/misc/chaoskey.c
16227
16228 USB CYPRESS C67X00 DRIVER
16229 M:      Peter Korsgaard <jacmet@sunsite.dk>
16230 L:      linux-usb@vger.kernel.org
16231 S:      Maintained
16232 F:      drivers/usb/c67x00/
16233
16234 USB DAVICOM DM9601 DRIVER
16235 M:      Peter Korsgaard <jacmet@sunsite.dk>
16236 L:      netdev@vger.kernel.org
16237 W:      http://www.linux-usb.org/usbnet
16238 S:      Maintained
16239 F:      drivers/net/usb/dm9601.c
16240
16241 USB DIAMOND RIO500 DRIVER
16242 M:      Cesar Miquel <miquel@df.uba.ar>
16243 L:      rio500-users@lists.sourceforge.net
16244 W:      http://rio500.sourceforge.net
16245 S:      Maintained
16246 F:      drivers/usb/misc/rio500*
16247
16248 USB EHCI DRIVER
16249 M:      Alan Stern <stern@rowland.harvard.edu>
16250 L:      linux-usb@vger.kernel.org
16251 S:      Maintained
16252 F:      Documentation/usb/ehci.txt
16253 F:      drivers/usb/host/ehci*
16254
16255 USB GADGET/PERIPHERAL SUBSYSTEM
16256 M:      Felipe Balbi <balbi@kernel.org>
16257 L:      linux-usb@vger.kernel.org
16258 W:      http://www.linux-usb.org/gadget
16259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16260 S:      Maintained
16261 F:      drivers/usb/gadget/
16262 F:      include/linux/usb/gadget*
16263
16264 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
16265 M:      Jiri Kosina <jikos@kernel.org>
16266 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
16267 L:      linux-usb@vger.kernel.org
16268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
16269 S:      Maintained
16270 F:      Documentation/hid/hiddev.txt
16271 F:      drivers/hid/usbhid/
16272
16273 USB INTEL XHCI ROLE MUX DRIVER
16274 M:      Hans de Goede <hdegoede@redhat.com>
16275 L:      linux-usb@vger.kernel.org
16276 S:      Maintained
16277 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
16278
16279 USB IP DRIVER FOR HISILICON KIRIN
16280 M:      Yu Chen <chenyu56@huawei.com>
16281 M:      Binghui Wang <wangbinghui@hisilicon.com>
16282 L:      linux-usb@vger.kernel.org
16283 S:      Maintained
16284 F:      Documentation/devicetree/bindings/phy/phy-hi3660-usb3.txt
16285 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
16286
16287 USB ISP116X DRIVER
16288 M:      Olav Kongas <ok@artecdesign.ee>
16289 L:      linux-usb@vger.kernel.org
16290 S:      Maintained
16291 F:      drivers/usb/host/isp116x*
16292 F:      include/linux/usb/isp116x.h
16293
16294 USB LAN78XX ETHERNET DRIVER
16295 M:      Woojung Huh <woojung.huh@microchip.com>
16296 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16297 L:      netdev@vger.kernel.org
16298 S:      Maintained
16299 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
16300 F:      drivers/net/usb/lan78xx.*
16301 F:      include/dt-bindings/net/microchip-lan78xx.h
16302
16303 USB MASS STORAGE DRIVER
16304 M:      Alan Stern <stern@rowland.harvard.edu>
16305 L:      linux-usb@vger.kernel.org
16306 L:      usb-storage@lists.one-eyed-alien.net
16307 S:      Maintained
16308 F:      drivers/usb/storage/
16309
16310 USB MIDI DRIVER
16311 M:      Clemens Ladisch <clemens@ladisch.de>
16312 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
16314 S:      Maintained
16315 F:      sound/usb/midi.*
16316
16317 USB NETWORKING DRIVERS
16318 L:      linux-usb@vger.kernel.org
16319 S:      Odd Fixes
16320 F:      drivers/net/usb/
16321
16322 USB OHCI DRIVER
16323 M:      Alan Stern <stern@rowland.harvard.edu>
16324 L:      linux-usb@vger.kernel.org
16325 S:      Maintained
16326 F:      Documentation/usb/ohci.txt
16327 F:      drivers/usb/host/ohci*
16328
16329 USB OTG FSM (Finite State Machine)
16330 M:      Peter Chen <Peter.Chen@nxp.com>
16331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
16332 L:      linux-usb@vger.kernel.org
16333 S:      Maintained
16334 F:      drivers/usb/common/usb-otg-fsm.c
16335
16336 USB OVER IP DRIVER
16337 M:      Valentina Manea <valentina.manea.m@gmail.com>
16338 M:      Shuah Khan <shuah@kernel.org>
16339 M:      Shuah Khan <skhan@linuxfoundation.org>
16340 L:      linux-usb@vger.kernel.org
16341 S:      Maintained
16342 F:      Documentation/usb/usbip_protocol.txt
16343 F:      drivers/usb/usbip/
16344 F:      tools/usb/usbip/
16345 F:      tools/testing/selftests/drivers/usb/usbip/
16346
16347 USB PEGASUS DRIVER
16348 M:      Petko Manolov <petkan@nucleusys.com>
16349 L:      linux-usb@vger.kernel.org
16350 L:      netdev@vger.kernel.org
16351 T:      git git://github.com/petkan/pegasus.git
16352 W:      https://github.com/petkan/pegasus
16353 S:      Maintained
16354 F:      drivers/net/usb/pegasus.*
16355
16356 USB PHY LAYER
16357 M:      Felipe Balbi <balbi@kernel.org>
16358 L:      linux-usb@vger.kernel.org
16359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
16360 S:      Maintained
16361 F:      drivers/usb/phy/
16362
16363 USB PRINTER DRIVER (usblp)
16364 M:      Pete Zaitcev <zaitcev@redhat.com>
16365 L:      linux-usb@vger.kernel.org
16366 S:      Supported
16367 F:      drivers/usb/class/usblp.c
16368
16369 USB QMI WWAN NETWORK DRIVER
16370 M:      Bjørn Mork <bjorn@mork.no>
16371 L:      netdev@vger.kernel.org
16372 S:      Maintained
16373 F:      Documentation/ABI/testing/sysfs-class-net-qmi
16374 F:      drivers/net/usb/qmi_wwan.c
16375
16376 USB RTL8150 DRIVER
16377 M:      Petko Manolov <petkan@nucleusys.com>
16378 L:      linux-usb@vger.kernel.org
16379 L:      netdev@vger.kernel.org
16380 T:      git git://github.com/petkan/rtl8150.git
16381 W:      https://github.com/petkan/rtl8150
16382 S:      Maintained
16383 F:      drivers/net/usb/rtl8150.c
16384
16385 USB SERIAL SUBSYSTEM
16386 M:      Johan Hovold <johan@kernel.org>
16387 L:      linux-usb@vger.kernel.org
16388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
16389 S:      Maintained
16390 F:      Documentation/usb/usb-serial.txt
16391 F:      drivers/usb/serial/
16392 F:      include/linux/usb/serial.h
16393
16394 USB SMSC75XX ETHERNET DRIVER
16395 M:      Steve Glendinning <steve.glendinning@shawell.net>
16396 L:      netdev@vger.kernel.org
16397 S:      Maintained
16398 F:      drivers/net/usb/smsc75xx.*
16399
16400 USB SMSC95XX ETHERNET DRIVER
16401 M:      Steve Glendinning <steve.glendinning@shawell.net>
16402 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
16403 L:      netdev@vger.kernel.org
16404 S:      Maintained
16405 F:      drivers/net/usb/smsc95xx.*
16406
16407 USB SUBSYSTEM
16408 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16409 L:      linux-usb@vger.kernel.org
16410 W:      http://www.linux-usb.org
16411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
16412 S:      Supported
16413 F:      Documentation/devicetree/bindings/usb/
16414 F:      Documentation/usb/
16415 F:      drivers/usb/
16416 F:      include/linux/usb.h
16417 F:      include/linux/usb/
16418
16419 USB TYPEC PI3USB30532 MUX DRIVER
16420 M:      Hans de Goede <hdegoede@redhat.com>
16421 L:      linux-usb@vger.kernel.org
16422 S:      Maintained
16423 F:      drivers/usb/typec/mux/pi3usb30532.c
16424
16425 USB TYPEC CLASS
16426 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16427 L:      linux-usb@vger.kernel.org
16428 S:      Maintained
16429 F:      Documentation/ABI/testing/sysfs-class-typec
16430 F:      Documentation/driver-api/usb/typec.rst
16431 F:      drivers/usb/typec/
16432 F:      include/linux/usb/typec.h
16433
16434 USB TYPEC BUS FOR ALTERNATE MODES
16435 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
16436 L:      linux-usb@vger.kernel.org
16437 S:      Maintained
16438 F:      Documentation/ABI/testing/sysfs-bus-typec
16439 F:      Documentation/driver-api/usb/typec_bus.rst
16440 F:      drivers/usb/typec/altmodes/
16441 F:      include/linux/usb/typec_altmode.h
16442
16443 USB TYPEC PORT CONTROLLER DRIVERS
16444 M:      Guenter Roeck <linux@roeck-us.net>
16445 L:      linux-usb@vger.kernel.org
16446 S:      Maintained
16447 F:      drivers/usb/typec/tcpm/
16448
16449 USB UHCI DRIVER
16450 M:      Alan Stern <stern@rowland.harvard.edu>
16451 L:      linux-usb@vger.kernel.org
16452 S:      Maintained
16453 F:      drivers/usb/host/uhci*
16454
16455 USB VIDEO CLASS
16456 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16457 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
16458 L:      linux-media@vger.kernel.org
16459 T:      git git://linuxtv.org/media_tree.git
16460 W:      http://www.ideasonboard.org/uvc/
16461 S:      Maintained
16462 F:      drivers/media/usb/uvc/
16463 F:      include/uapi/linux/uvcvideo.h
16464
16465 USB VISION DRIVER
16466 M:      Hans Verkuil <hverkuil@xs4all.nl>
16467 L:      linux-media@vger.kernel.org
16468 T:      git git://linuxtv.org/media_tree.git
16469 W:      https://linuxtv.org
16470 S:      Odd Fixes
16471 F:      drivers/media/usb/usbvision/
16472
16473 USB WEBCAM GADGET
16474 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16475 L:      linux-usb@vger.kernel.org
16476 S:      Maintained
16477 F:      drivers/usb/gadget/function/*uvc*
16478 F:      drivers/usb/gadget/legacy/webcam.c
16479 F:      include/uapi/linux/usb/g_uvc.h
16480
16481 USB WIRELESS RNDIS DRIVER (rndis_wlan)
16482 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
16483 L:      linux-wireless@vger.kernel.org
16484 S:      Maintained
16485 F:      drivers/net/wireless/rndis_wlan.c
16486
16487 USB XHCI DRIVER
16488 M:      Mathias Nyman <mathias.nyman@intel.com>
16489 L:      linux-usb@vger.kernel.org
16490 S:      Supported
16491 F:      drivers/usb/host/xhci*
16492 F:      drivers/usb/host/pci-quirks*
16493
16494 USB ZD1201 DRIVER
16495 L:      linux-wireless@vger.kernel.org
16496 W:      http://linux-lc100020.sourceforge.net
16497 S:      Orphan
16498 F:      drivers/net/wireless/zydas/zd1201.*
16499
16500 USB ZR364XX DRIVER
16501 M:      Antoine Jacquet <royale@zerezo.com>
16502 L:      linux-usb@vger.kernel.org
16503 L:      linux-media@vger.kernel.org
16504 T:      git git://linuxtv.org/media_tree.git
16505 W:      http://royale.zerezo.com/zr364xx/
16506 S:      Maintained
16507 F:      Documentation/media/v4l-drivers/zr364xx*
16508 F:      drivers/media/usb/zr364xx/
16509
16510 USER-MODE LINUX (UML)
16511 M:      Jeff Dike <jdike@addtoit.com>
16512 M:      Richard Weinberger <richard@nod.at>
16513 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
16514 L:      linux-um@lists.infradead.org
16515 W:      http://user-mode-linux.sourceforge.net
16516 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
16517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
16518 S:      Maintained
16519 F:      Documentation/virtual/uml/
16520 F:      arch/um/
16521 F:      arch/x86/um/
16522 F:      fs/hostfs/
16523
16524 USERSPACE COPYIN/COPYOUT (UIOVEC)
16525 M:      Alexander Viro <viro@zeniv.linux.org.uk>
16526 S:      Maintained
16527 F:      lib/iov_iter.c
16528 F:      include/linux/uio.h
16529
16530 USERSPACE DMA BUFFER DRIVER
16531 M:      Gerd Hoffmann <kraxel@redhat.com>
16532 S:      Maintained
16533 L:      dri-devel@lists.freedesktop.org
16534 F:      drivers/dma-buf/udmabuf.c
16535 F:      include/uapi/linux/udmabuf.h
16536 T:      git git://anongit.freedesktop.org/drm/drm-misc
16537
16538 USERSPACE I/O (UIO)
16539 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16540 S:      Maintained
16541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
16542 F:      Documentation/driver-api/uio-howto.rst
16543 F:      drivers/uio/
16544 F:      include/linux/uio_driver.h
16545
16546 UTIL-LINUX PACKAGE
16547 M:      Karel Zak <kzak@redhat.com>
16548 L:      util-linux@vger.kernel.org
16549 W:      http://en.wikipedia.org/wiki/Util-linux
16550 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
16551 S:      Maintained
16552
16553 UUID HELPERS
16554 M:      Christoph Hellwig <hch@lst.de>
16555 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
16556 L:      linux-kernel@vger.kernel.org
16557 T:      git git://git.infradead.org/users/hch/uuid.git
16558 F:      lib/uuid.c
16559 F:      lib/test_uuid.c
16560 F:      include/linux/uuid.h
16561 F:      include/uapi/linux/uuid.h
16562 S:      Maintained
16563
16564 UVESAFB DRIVER
16565 M:      Michal Januszewski <spock@gentoo.org>
16566 L:      linux-fbdev@vger.kernel.org
16567 W:      https://github.com/mjanusz/v86d
16568 S:      Maintained
16569 F:      Documentation/fb/uvesafb.txt
16570 F:      drivers/video/fbdev/uvesafb.*
16571
16572 VF610 NAND DRIVER
16573 M:      Stefan Agner <stefan@agner.ch>
16574 L:      linux-mtd@lists.infradead.org
16575 S:      Supported
16576 F:      drivers/mtd/nand/raw/vf610_nfc.c
16577
16578 VFAT/FAT/MSDOS FILESYSTEM
16579 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
16580 S:      Maintained
16581 F:      Documentation/filesystems/vfat.txt
16582 F:      fs/fat/
16583
16584 VFIO DRIVER
16585 M:      Alex Williamson <alex.williamson@redhat.com>
16586 R:      Cornelia Huck <cohuck@redhat.com>
16587 L:      kvm@vger.kernel.org
16588 T:      git git://github.com/awilliam/linux-vfio.git
16589 S:      Maintained
16590 F:      Documentation/vfio.txt
16591 F:      drivers/vfio/
16592 F:      include/linux/vfio.h
16593 F:      include/uapi/linux/vfio.h
16594
16595 VFIO MEDIATED DEVICE DRIVERS
16596 M:      Kirti Wankhede <kwankhede@nvidia.com>
16597 L:      kvm@vger.kernel.org
16598 S:      Maintained
16599 F:      Documentation/vfio-mediated-device.txt
16600 F:      drivers/vfio/mdev/
16601 F:      include/linux/mdev.h
16602 F:      samples/vfio-mdev/
16603
16604 VFIO PLATFORM DRIVER
16605 M:      Eric Auger <eric.auger@redhat.com>
16606 L:      kvm@vger.kernel.org
16607 S:      Maintained
16608 F:      drivers/vfio/platform/
16609
16610 VGA_SWITCHEROO
16611 R:      Lukas Wunner <lukas@wunner.de>
16612 S:      Maintained
16613 F:      Documentation/gpu/vga-switcheroo.rst
16614 F:      drivers/gpu/vga/vga_switcheroo.c
16615 F:      include/linux/vga_switcheroo.h
16616 T:      git git://anongit.freedesktop.org/drm/drm-misc
16617
16618 VIA RHINE NETWORK DRIVER
16619 S:      Orphan
16620 F:      drivers/net/ethernet/via/via-rhine.c
16621
16622 VIA SD/MMC CARD CONTROLLER DRIVER
16623 M:      Bruce Chang <brucechang@via.com.tw>
16624 M:      Harald Welte <HaraldWelte@viatech.com>
16625 S:      Maintained
16626 F:      drivers/mmc/host/via-sdmmc.c
16627
16628 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
16629 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
16630 L:      linux-fbdev@vger.kernel.org
16631 S:      Maintained
16632 F:      include/linux/via-core.h
16633 F:      include/linux/via-gpio.h
16634 F:      include/linux/via_i2c.h
16635 F:      drivers/video/fbdev/via/
16636
16637 VIA VELOCITY NETWORK DRIVER
16638 M:      Francois Romieu <romieu@fr.zoreil.com>
16639 L:      netdev@vger.kernel.org
16640 S:      Maintained
16641 F:      drivers/net/ethernet/via/via-velocity.*
16642
16643 VICODEC VIRTUAL CODEC DRIVER
16644 M:      Hans Verkuil <hans.verkuil@cisco.com>
16645 L:      linux-media@vger.kernel.org
16646 T:      git git://linuxtv.org/media_tree.git
16647 W:      https://linuxtv.org
16648 S:      Maintained
16649 F:      drivers/media/platform/vicodec/*
16650
16651 VIDEO MULTIPLEXER DRIVER
16652 M:      Philipp Zabel <p.zabel@pengutronix.de>
16653 L:      linux-media@vger.kernel.org
16654 S:      Maintained
16655 F:      drivers/media/platform/video-mux.c
16656
16657 VIDEO I2C POLLING DRIVER
16658 M:      Matt Ranostay <matt.ranostay@konsulko.com>
16659 L:      linux-media@vger.kernel.org
16660 S:      Maintained
16661 F:      drivers/media/i2c/video-i2c.c
16662
16663 VIDEOBUF2 FRAMEWORK
16664 M:      Pawel Osciak <pawel@osciak.com>
16665 M:      Marek Szyprowski <m.szyprowski@samsung.com>
16666 M:      Kyungmin Park <kyungmin.park@samsung.com>
16667 L:      linux-media@vger.kernel.org
16668 S:      Maintained
16669 F:      drivers/media/common/videobuf2/*
16670 F:      include/media/videobuf2-*
16671
16672 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
16673 M:      Helen Koike <helen.koike@collabora.com>
16674 L:      linux-media@vger.kernel.org
16675 T:      git git://linuxtv.org/media_tree.git
16676 W:      https://linuxtv.org
16677 S:      Maintained
16678 F:      drivers/media/platform/vimc/*
16679
16680 VIRT LIB
16681 M:      Alex Williamson <alex.williamson@redhat.com>
16682 M:      Paolo Bonzini <pbonzini@redhat.com>
16683 L:      kvm@vger.kernel.org
16684 S:      Supported
16685 F:      virt/lib/
16686
16687 VIRTIO AND VHOST VSOCK DRIVER
16688 M:      Stefan Hajnoczi <stefanha@redhat.com>
16689 L:      kvm@vger.kernel.org
16690 L:      virtualization@lists.linux-foundation.org
16691 L:      netdev@vger.kernel.org
16692 S:      Maintained
16693 F:      include/linux/virtio_vsock.h
16694 F:      include/uapi/linux/virtio_vsock.h
16695 F:      include/uapi/linux/vsockmon.h
16696 F:      include/uapi/linux/vm_sockets_diag.h
16697 F:      net/vmw_vsock/diag.c
16698 F:      net/vmw_vsock/af_vsock_tap.c
16699 F:      net/vmw_vsock/virtio_transport_common.c
16700 F:      net/vmw_vsock/virtio_transport.c
16701 F:      drivers/net/vsockmon.c
16702 F:      drivers/vhost/vsock.c
16703 F:      tools/testing/vsock/
16704
16705 VIRTIO CONSOLE DRIVER
16706 M:      Amit Shah <amit@kernel.org>
16707 L:      virtualization@lists.linux-foundation.org
16708 S:      Maintained
16709 F:      drivers/char/virtio_console.c
16710 F:      include/linux/virtio_console.h
16711 F:      include/uapi/linux/virtio_console.h
16712
16713 VIRTIO CORE AND NET DRIVERS
16714 M:      "Michael S. Tsirkin" <mst@redhat.com>
16715 M:      Jason Wang <jasowang@redhat.com>
16716 L:      virtualization@lists.linux-foundation.org
16717 S:      Maintained
16718 F:      Documentation/devicetree/bindings/virtio/
16719 F:      drivers/virtio/
16720 F:      tools/virtio/
16721 F:      drivers/net/virtio_net.c
16722 F:      drivers/block/virtio_blk.c
16723 F:      include/linux/virtio*.h
16724 F:      include/uapi/linux/virtio_*.h
16725 F:      drivers/crypto/virtio/
16726 F:      mm/balloon_compaction.c
16727
16728 VIRTIO BLOCK AND SCSI DRIVERS
16729 M:      "Michael S. Tsirkin" <mst@redhat.com>
16730 M:      Jason Wang <jasowang@redhat.com>
16731 R:      Paolo Bonzini <pbonzini@redhat.com>
16732 R:      Stefan Hajnoczi <stefanha@redhat.com>
16733 L:      virtualization@lists.linux-foundation.org
16734 S:      Maintained
16735 F:      drivers/block/virtio_blk.c
16736 F:      drivers/scsi/virtio_scsi.c
16737 F:      include/uapi/linux/virtio_blk.h
16738 F:      include/uapi/linux/virtio_scsi.h
16739 F:      drivers/vhost/scsi.c
16740
16741 VIRTIO CRYPTO DRIVER
16742 M:      Gonglei <arei.gonglei@huawei.com>
16743 L:      virtualization@lists.linux-foundation.org
16744 L:      linux-crypto@vger.kernel.org
16745 S:      Maintained
16746 F:      drivers/crypto/virtio/
16747 F:      include/uapi/linux/virtio_crypto.h
16748
16749 VIRTIO DRIVERS FOR S390
16750 M:      Cornelia Huck <cohuck@redhat.com>
16751 M:      Halil Pasic <pasic@linux.ibm.com>
16752 L:      linux-s390@vger.kernel.org
16753 L:      virtualization@lists.linux-foundation.org
16754 L:      kvm@vger.kernel.org
16755 S:      Supported
16756 F:      drivers/s390/virtio/
16757 F:      arch/s390/include/uapi/asm/virtio-ccw.h
16758
16759 VIRTIO GPU DRIVER
16760 M:      David Airlie <airlied@linux.ie>
16761 M:      Gerd Hoffmann <kraxel@redhat.com>
16762 L:      dri-devel@lists.freedesktop.org
16763 L:      virtualization@lists.linux-foundation.org
16764 T:      git git://anongit.freedesktop.org/drm/drm-misc
16765 S:      Maintained
16766 F:      drivers/gpu/drm/virtio/
16767 F:      include/uapi/linux/virtio_gpu.h
16768
16769 VIRTIO HOST (VHOST)
16770 M:      "Michael S. Tsirkin" <mst@redhat.com>
16771 M:      Jason Wang <jasowang@redhat.com>
16772 L:      kvm@vger.kernel.org
16773 L:      virtualization@lists.linux-foundation.org
16774 L:      netdev@vger.kernel.org
16775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
16776 S:      Maintained
16777 F:      drivers/vhost/
16778 F:      include/uapi/linux/vhost.h
16779
16780 VIRTIO INPUT DRIVER
16781 M:      Gerd Hoffmann <kraxel@redhat.com>
16782 S:      Maintained
16783 F:      drivers/virtio/virtio_input.c
16784 F:      include/uapi/linux/virtio_input.h
16785
16786 VIRTUAL BOX GUEST DEVICE DRIVER
16787 M:      Hans de Goede <hdegoede@redhat.com>
16788 M:      Arnd Bergmann <arnd@arndb.de>
16789 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16790 S:      Maintained
16791 F:      include/linux/vbox_utils.h
16792 F:      include/uapi/linux/vbox*.h
16793 F:      drivers/virt/vboxguest/
16794
16795 VIRTUAL SERIO DEVICE DRIVER
16796 M:      Stephen Chandler Paul <thatslyude@gmail.com>
16797 S:      Maintained
16798 F:      drivers/input/serio/userio.c
16799 F:      include/uapi/linux/userio.h
16800
16801 VIVID VIRTUAL VIDEO DRIVER
16802 M:      Hans Verkuil <hverkuil@xs4all.nl>
16803 L:      linux-media@vger.kernel.org
16804 T:      git git://linuxtv.org/media_tree.git
16805 W:      https://linuxtv.org
16806 S:      Maintained
16807 F:      drivers/media/platform/vivid/*
16808
16809 VLYNQ BUS
16810 M:      Florian Fainelli <f.fainelli@gmail.com>
16811 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
16812 S:      Maintained
16813 F:      drivers/vlynq/vlynq.c
16814 F:      include/linux/vlynq.h
16815
16816 VME SUBSYSTEM
16817 M:      Martyn Welch <martyn@welchs.me.uk>
16818 M:      Manohar Vanga <manohar.vanga@gmail.com>
16819 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16820 L:      devel@driverdev.osuosl.org
16821 S:      Maintained
16822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
16823 F:      Documentation/driver-api/vme.rst
16824 F:      drivers/staging/vme/
16825 F:      drivers/vme/
16826 F:      include/linux/vme*
16827
16828 VMWARE BALLOON DRIVER
16829 M:      Julien Freche <jfreche@vmware.com>
16830 M:      Nadav Amit <namit@vmware.com>
16831 M:      "VMware, Inc." <pv-drivers@vmware.com>
16832 L:      linux-kernel@vger.kernel.org
16833 S:      Maintained
16834 F:      drivers/misc/vmw_balloon.c
16835
16836 VMWARE HYPERVISOR INTERFACE
16837 M:      Alok Kataria <akataria@vmware.com>
16838 L:      virtualization@lists.linux-foundation.org
16839 S:      Supported
16840 F:      arch/x86/kernel/cpu/vmware.c
16841
16842 VMWARE PVRDMA DRIVER
16843 M:      Adit Ranadive <aditr@vmware.com>
16844 M:      VMware PV-Drivers <pv-drivers@vmware.com>
16845 L:      linux-rdma@vger.kernel.org
16846 S:      Maintained
16847 F:      drivers/infiniband/hw/vmw_pvrdma/
16848
16849 VMware PVSCSI driver
16850 M:      Jim Gill <jgill@vmware.com>
16851 M:      VMware PV-Drivers <pv-drivers@vmware.com>
16852 L:      linux-scsi@vger.kernel.org
16853 S:      Maintained
16854 F:      drivers/scsi/vmw_pvscsi.c
16855 F:      drivers/scsi/vmw_pvscsi.h
16856
16857 VMWARE VMMOUSE SUBDRIVER
16858 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
16859 M:      "VMware, Inc." <pv-drivers@vmware.com>
16860 L:      linux-input@vger.kernel.org
16861 S:      Maintained
16862 F:      drivers/input/mouse/vmmouse.c
16863 F:      drivers/input/mouse/vmmouse.h
16864
16865 VMWARE VMXNET3 ETHERNET DRIVER
16866 M:      Ronak Doshi <doshir@vmware.com>
16867 M:      "VMware, Inc." <pv-drivers@vmware.com>
16868 L:      netdev@vger.kernel.org
16869 S:      Maintained
16870 F:      drivers/net/vmxnet3/
16871
16872 VOCORE VOCORE2 BOARD
16873 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
16874 L:      linux-mips@vger.kernel.org
16875 S:      Maintained
16876 F:      arch/mips/boot/dts/ralink/vocore2.dts
16877
16878 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
16879 M:      Liam Girdwood <lgirdwood@gmail.com>
16880 M:      Mark Brown <broonie@kernel.org>
16881 L:      linux-kernel@vger.kernel.org
16882 W:      http://www.slimlogic.co.uk/?p=48
16883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
16884 S:      Supported
16885 F:      Documentation/devicetree/bindings/regulator/
16886 F:      Documentation/power/regulator/
16887 F:      drivers/regulator/
16888 F:      include/dt-bindings/regulator/
16889 F:      include/linux/regulator/
16890
16891 VRF
16892 M:      David Ahern <dsa@cumulusnetworks.com>
16893 M:      Shrijeet Mukherjee <shrijeet@gmail.com>
16894 L:      netdev@vger.kernel.org
16895 S:      Maintained
16896 F:      drivers/net/vrf.c
16897 F:      Documentation/networking/vrf.txt
16898
16899 VT1211 HARDWARE MONITOR DRIVER
16900 M:      Juerg Haefliger <juergh@gmail.com>
16901 L:      linux-hwmon@vger.kernel.org
16902 S:      Maintained
16903 F:      Documentation/hwmon/vt1211.rst
16904 F:      drivers/hwmon/vt1211.c
16905
16906 VT8231 HARDWARE MONITOR DRIVER
16907 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
16908 L:      linux-hwmon@vger.kernel.org
16909 S:      Maintained
16910 F:      drivers/hwmon/vt8231.c
16911
16912 VUB300 USB to SDIO/SD/MMC bridge chip
16913 M:      Tony Olech <tony.olech@elandigitalsystems.com>
16914 L:      linux-mmc@vger.kernel.org
16915 L:      linux-usb@vger.kernel.org
16916 S:      Supported
16917 F:      drivers/mmc/host/vub300.c
16918
16919 W1 DALLAS'S 1-WIRE BUS
16920 M:      Evgeniy Polyakov <zbr@ioremap.net>
16921 S:      Maintained
16922 F:      Documentation/devicetree/bindings/w1/
16923 F:      Documentation/w1/
16924 F:      drivers/w1/
16925 F:      include/linux/w1.h
16926
16927 W83791D HARDWARE MONITORING DRIVER
16928 M:      Marc Hulsman <m.hulsman@tudelft.nl>
16929 L:      linux-hwmon@vger.kernel.org
16930 S:      Maintained
16931 F:      Documentation/hwmon/w83791d.rst
16932 F:      drivers/hwmon/w83791d.c
16933
16934 W83793 HARDWARE MONITORING DRIVER
16935 M:      Rudolf Marek <r.marek@assembler.cz>
16936 L:      linux-hwmon@vger.kernel.org
16937 S:      Maintained
16938 F:      Documentation/hwmon/w83793.rst
16939 F:      drivers/hwmon/w83793.c
16940
16941 W83795 HARDWARE MONITORING DRIVER
16942 M:      Jean Delvare <jdelvare@suse.com>
16943 L:      linux-hwmon@vger.kernel.org
16944 S:      Maintained
16945 F:      drivers/hwmon/w83795.c
16946
16947 W83L51xD SD/MMC CARD INTERFACE DRIVER
16948 M:      Pierre Ossman <pierre@ossman.eu>
16949 S:      Maintained
16950 F:      drivers/mmc/host/wbsd.*
16951
16952 WACOM PROTOCOL 4 SERIAL TABLETS
16953 M:      Julian Squires <julian@cipht.net>
16954 M:      Hans de Goede <hdegoede@redhat.com>
16955 L:      linux-input@vger.kernel.org
16956 S:      Maintained
16957 F:      drivers/input/tablet/wacom_serial4.c
16958
16959 WATCHDOG DEVICE DRIVERS
16960 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
16961 M:      Guenter Roeck <linux@roeck-us.net>
16962 L:      linux-watchdog@vger.kernel.org
16963 W:      http://www.linux-watchdog.org/
16964 T:      git git://www.linux-watchdog.org/linux-watchdog.git
16965 S:      Maintained
16966 F:      Documentation/devicetree/bindings/watchdog/
16967 F:      Documentation/watchdog/
16968 F:      drivers/watchdog/
16969 F:      include/linux/watchdog.h
16970 F:      include/uapi/linux/watchdog.h
16971
16972 WHISKEYCOVE PMIC GPIO DRIVER
16973 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
16974 L:      linux-gpio@vger.kernel.org
16975 S:      Maintained
16976 F:      drivers/gpio/gpio-wcove.c
16977
16978 WHWAVE RTC DRIVER
16979 M:      Dianlong Li <long17.cool@163.com>
16980 L:      linux-rtc@vger.kernel.org
16981 S:      Maintained
16982 F:      drivers/rtc/rtc-sd3078.c
16983
16984 WIIMOTE HID DRIVER
16985 M:      David Herrmann <dh.herrmann@googlemail.com>
16986 L:      linux-input@vger.kernel.org
16987 S:      Maintained
16988 F:      drivers/hid/hid-wiimote*
16989
16990 WILOCITY WIL6210 WIRELESS DRIVER
16991 M:      Maya Erez <merez@codeaurora.org>
16992 L:      linux-wireless@vger.kernel.org
16993 L:      wil6210@qti.qualcomm.com
16994 S:      Supported
16995 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
16996 F:      drivers/net/wireless/ath/wil6210/
16997
16998 WIMAX STACK
16999 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
17000 M:      linux-wimax@intel.com
17001 L:      wimax@linuxwimax.org (subscribers-only)
17002 S:      Supported
17003 W:      http://linuxwimax.org
17004 F:      Documentation/wimax/README.wimax
17005 F:      include/linux/wimax/debug.h
17006 F:      include/net/wimax.h
17007 F:      include/uapi/linux/wimax.h
17008 F:      net/wimax/
17009
17010 WINBOND CIR DRIVER
17011 M:      David Härdeman <david@hardeman.nu>
17012 S:      Maintained
17013 F:      drivers/media/rc/winbond-cir.c
17014
17015 RCMM REMOTE CONTROLS DECODER
17016 M:      Patrick Lerda <patrick9876@free.fr>
17017 S:      Maintained
17018 F:      drivers/media/rc/ir-rcmm-decoder.c
17019
17020 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
17021 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17022 L:      linux-watchdog@vger.kernel.org
17023 S:      Maintained
17024 F:      drivers/watchdog/ebc-c384_wdt.c
17025
17026 WINSYSTEMS WS16C48 GPIO DRIVER
17027 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
17028 L:      linux-gpio@vger.kernel.org
17029 S:      Maintained
17030 F:      drivers/gpio/gpio-ws16c48.c
17031
17032 WISTRON LAPTOP BUTTON DRIVER
17033 M:      Miloslav Trmac <mitr@volny.cz>
17034 S:      Maintained
17035 F:      drivers/input/misc/wistron_btns.c
17036
17037 WL3501 WIRELESS PCMCIA CARD DRIVER
17038 L:      linux-wireless@vger.kernel.org
17039 S:      Odd fixes
17040 F:      drivers/net/wireless/wl3501*
17041
17042 WOLFSON MICROELECTRONICS DRIVERS
17043 L:      patches@opensource.cirrus.com
17044 T:      git https://github.com/CirrusLogic/linux-drivers.git
17045 W:      https://github.com/CirrusLogic/linux-drivers/wiki
17046 S:      Supported
17047 F:      Documentation/hwmon/wm83??.rst
17048 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
17049 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
17050 F:      Documentation/devicetree/bindings/mfd/arizona.txt
17051 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
17052 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
17053 F:      arch/arm/mach-s3c64xx/mach-crag6410*
17054 F:      drivers/clk/clk-wm83*.c
17055 F:      drivers/extcon/extcon-arizona.c
17056 F:      drivers/leds/leds-wm83*.c
17057 F:      drivers/gpio/gpio-*wm*.c
17058 F:      drivers/gpio/gpio-arizona.c
17059 F:      drivers/hwmon/wm83??-hwmon.c
17060 F:      drivers/input/misc/wm831x-on.c
17061 F:      drivers/input/touchscreen/wm831x-ts.c
17062 F:      drivers/input/touchscreen/wm97*.c
17063 F:      drivers/mfd/arizona*
17064 F:      drivers/mfd/wm*.c
17065 F:      drivers/mfd/cs47l24*
17066 F:      drivers/power/supply/wm83*.c
17067 F:      drivers/rtc/rtc-wm83*.c
17068 F:      drivers/regulator/wm8*.c
17069 F:      drivers/regulator/arizona*
17070 F:      drivers/video/backlight/wm83*_bl.c
17071 F:      drivers/watchdog/wm83*_wdt.c
17072 F:      include/linux/mfd/arizona/
17073 F:      include/linux/mfd/wm831x/
17074 F:      include/linux/mfd/wm8350/
17075 F:      include/linux/mfd/wm8400*
17076 F:      include/linux/regulator/arizona*
17077 F:      include/linux/wm97xx.h
17078 F:      include/sound/wm????.h
17079 F:      sound/soc/codecs/arizona.?
17080 F:      sound/soc/codecs/wm*
17081 F:      sound/soc/codecs/cs47l24*
17082
17083 WORKQUEUE
17084 M:      Tejun Heo <tj@kernel.org>
17085 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
17087 S:      Maintained
17088 F:      include/linux/workqueue.h
17089 F:      kernel/workqueue.c
17090 F:      Documentation/core-api/workqueue.rst
17091
17092 X-POWERS AXP288 PMIC DRIVERS
17093 M:      Hans de Goede <hdegoede@redhat.com>
17094 S:      Maintained
17095 N:      axp288
17096 F:      drivers/acpi/pmic/intel_pmic_xpower.c
17097
17098 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
17099 M:      Chen-Yu Tsai <wens@csie.org>
17100 L:      linux-kernel@vger.kernel.org
17101 S:      Maintained
17102 N:      axp[128]
17103
17104 X.25 NETWORK LAYER
17105 M:      Andrew Hendry <andrew.hendry@gmail.com>
17106 L:      linux-x25@vger.kernel.org
17107 S:      Odd Fixes
17108 F:      Documentation/networking/x25*
17109 F:      include/net/x25*
17110 F:      net/x25/
17111
17112 X86 ARCHITECTURE (32-BIT AND 64-BIT)
17113 M:      Thomas Gleixner <tglx@linutronix.de>
17114 M:      Ingo Molnar <mingo@redhat.com>
17115 M:      Borislav Petkov <bp@alien8.de>
17116 R:      "H. Peter Anvin" <hpa@zytor.com>
17117 M:      x86@kernel.org
17118 L:      linux-kernel@vger.kernel.org
17119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17120 S:      Maintained
17121 F:      Documentation/devicetree/bindings/x86/
17122 F:      Documentation/x86/
17123 F:      arch/x86/
17124
17125 X86 ENTRY CODE
17126 M:      Andy Lutomirski <luto@kernel.org>
17127 L:      linux-kernel@vger.kernel.org
17128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
17129 S:      Maintained
17130 F:      arch/x86/entry/
17131
17132 X86 MCE INFRASTRUCTURE
17133 M:      Tony Luck <tony.luck@intel.com>
17134 M:      Borislav Petkov <bp@alien8.de>
17135 L:      linux-edac@vger.kernel.org
17136 S:      Maintained
17137 F:      arch/x86/kernel/cpu/mce/*
17138
17139 X86 MICROCODE UPDATE SUPPORT
17140 M:      Borislav Petkov <bp@alien8.de>
17141 S:      Maintained
17142 F:      arch/x86/kernel/cpu/microcode/*
17143
17144 X86 MM
17145 M:      Dave Hansen <dave.hansen@linux.intel.com>
17146 M:      Andy Lutomirski <luto@kernel.org>
17147 M:      Peter Zijlstra <peterz@infradead.org>
17148 L:      linux-kernel@vger.kernel.org
17149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
17150 S:      Maintained
17151 F:      arch/x86/mm/
17152
17153 X86 PLATFORM DRIVERS
17154 M:      Darren Hart <dvhart@infradead.org>
17155 M:      Andy Shevchenko <andy@infradead.org>
17156 L:      platform-driver-x86@vger.kernel.org
17157 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
17158 S:      Maintained
17159 F:      drivers/platform/x86/
17160 F:      drivers/platform/olpc/
17161
17162 X86 PLATFORM DRIVERS - ARCH
17163 R:      Darren Hart <dvhart@infradead.org>
17164 R:      Andy Shevchenko <andy@infradead.org>
17165 L:      platform-driver-x86@vger.kernel.org
17166 L:      x86@kernel.org
17167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
17168 S:      Maintained
17169 F:      arch/x86/platform
17170
17171 X86 VDSO
17172 M:      Andy Lutomirski <luto@kernel.org>
17173 L:      linux-kernel@vger.kernel.org
17174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
17175 S:      Maintained
17176 F:      arch/x86/entry/vdso/
17177
17178 XARRAY
17179 M:      Matthew Wilcox <willy@infradead.org>
17180 L:      linux-fsdevel@vger.kernel.org
17181 S:      Supported
17182 F:      Documentation/core-api/xarray.rst
17183 F:      lib/idr.c
17184 F:      lib/xarray.c
17185 F:      include/linux/idr.h
17186 F:      include/linux/xarray.h
17187 F:      tools/testing/radix-tree
17188
17189 XBOX DVD IR REMOTE
17190 M:      Benjamin Valentin <benpicco@googlemail.com>
17191 S:      Maintained
17192 F:      drivers/media/rc/xbox_remote.c
17193 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
17194
17195 XC2028/3028 TUNER DRIVER
17196 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17197 L:      linux-media@vger.kernel.org
17198 W:      https://linuxtv.org
17199 T:      git git://linuxtv.org/media_tree.git
17200 S:      Maintained
17201 F:      drivers/media/tuners/tuner-xc2028.*
17202
17203 XDP (eXpress Data Path)
17204 M:      Alexei Starovoitov <ast@kernel.org>
17205 M:      Daniel Borkmann <daniel@iogearbox.net>
17206 M:      David S. Miller <davem@davemloft.net>
17207 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
17208 M:      Jesper Dangaard Brouer <hawk@kernel.org>
17209 M:      John Fastabend <john.fastabend@gmail.com>
17210 L:      netdev@vger.kernel.org
17211 L:      xdp-newbies@vger.kernel.org
17212 L:      bpf@vger.kernel.org
17213 S:      Supported
17214 F:      net/core/xdp.c
17215 F:      include/net/xdp.h
17216 F:      kernel/bpf/devmap.c
17217 F:      kernel/bpf/cpumap.c
17218 F:      include/trace/events/xdp.h
17219 K:      xdp
17220 N:      xdp
17221
17222 XDP SOCKETS (AF_XDP)
17223 M:      Björn Töpel <bjorn.topel@intel.com>
17224 M:      Magnus Karlsson <magnus.karlsson@intel.com>
17225 L:      netdev@vger.kernel.org
17226 L:      bpf@vger.kernel.org
17227 S:      Maintained
17228 F:      kernel/bpf/xskmap.c
17229 F:      net/xdp/
17230
17231 XEN BLOCK SUBSYSTEM
17232 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17233 M:      Roger Pau Monné <roger.pau@citrix.com>
17234 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17235 S:      Supported
17236 F:      drivers/block/xen-blkback/*
17237 F:      drivers/block/xen*
17238
17239 XEN HYPERVISOR ARM
17240 M:      Stefano Stabellini <sstabellini@kernel.org>
17241 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17242 S:      Maintained
17243 F:      arch/arm/xen/
17244 F:      arch/arm/include/asm/xen/
17245
17246 XEN HYPERVISOR ARM64
17247 M:      Stefano Stabellini <sstabellini@kernel.org>
17248 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17249 S:      Maintained
17250 F:      arch/arm64/xen/
17251 F:      arch/arm64/include/asm/xen/
17252
17253 XEN HYPERVISOR INTERFACE
17254 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
17255 M:      Juergen Gross <jgross@suse.com>
17256 R:      Stefano Stabellini <sstabellini@kernel.org>
17257 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
17259 S:      Supported
17260 F:      arch/x86/xen/
17261 F:      arch/x86/platform/pvh/
17262 F:      drivers/*/xen-*front.c
17263 F:      drivers/xen/
17264 F:      arch/x86/include/asm/xen/
17265 F:      arch/x86/include/asm/pvclock-abi.h
17266 F:      include/xen/
17267 F:      include/uapi/xen/
17268 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
17269 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
17270
17271 XEN NETWORK BACKEND DRIVER
17272 M:      Wei Liu <wei.liu2@citrix.com>
17273 M:      Paul Durrant <paul.durrant@citrix.com>
17274 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17275 L:      netdev@vger.kernel.org
17276 S:      Supported
17277 F:      drivers/net/xen-netback/*
17278
17279 XEN PCI SUBSYSTEM
17280 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17281 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17282 S:      Supported
17283 F:      arch/x86/pci/*xen*
17284 F:      drivers/pci/*xen*
17285
17286 XEN PVSCSI DRIVERS
17287 M:      Juergen Gross <jgross@suse.com>
17288 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17289 L:      linux-scsi@vger.kernel.org
17290 S:      Supported
17291 F:      drivers/scsi/xen-scsifront.c
17292 F:      drivers/xen/xen-scsiback.c
17293 F:      include/xen/interface/io/vscsiif.h
17294
17295 XEN SWIOTLB SUBSYSTEM
17296 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
17297 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17298 L:      iommu@lists.linux-foundation.org
17299 S:      Supported
17300 F:      arch/x86/xen/*swiotlb*
17301 F:      drivers/xen/*swiotlb*
17302
17303 XEN SOUND FRONTEND DRIVER
17304 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
17305 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
17306 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17307 S:      Supported
17308 F:      sound/xen/*
17309
17310 XFS FILESYSTEM
17311 M:      Darrick J. Wong <darrick.wong@oracle.com>
17312 M:      linux-xfs@vger.kernel.org
17313 L:      linux-xfs@vger.kernel.org
17314 W:      http://xfs.org/
17315 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
17316 S:      Supported
17317 F:      Documentation/filesystems/xfs.txt
17318 F:      fs/xfs/
17319
17320 XILINX AXI ETHERNET DRIVER
17321 M:      Anirudha Sarangi <anirudh@xilinx.com>
17322 M:      John Linn <John.Linn@xilinx.com>
17323 S:      Maintained
17324 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
17325
17326 XILINX UARTLITE SERIAL DRIVER
17327 M:      Peter Korsgaard <jacmet@sunsite.dk>
17328 L:      linux-serial@vger.kernel.org
17329 S:      Maintained
17330 F:      drivers/tty/serial/uartlite.c
17331
17332 XILINX VIDEO IP CORES
17333 M:      Hyun Kwon <hyun.kwon@xilinx.com>
17334 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17335 L:      linux-media@vger.kernel.org
17336 T:      git git://linuxtv.org/media_tree.git
17337 S:      Supported
17338 F:      Documentation/devicetree/bindings/media/xilinx/
17339 F:      drivers/media/platform/xilinx/
17340 F:      include/uapi/linux/xilinx-v4l2-controls.h
17341
17342 XILLYBUS DRIVER
17343 M:      Eli Billauer <eli.billauer@gmail.com>
17344 L:      linux-kernel@vger.kernel.org
17345 S:      Supported
17346 F:      drivers/char/xillybus/
17347
17348 XLP9XX I2C DRIVER
17349 M:      George Cherian <george.cherian@cavium.com>
17350 M:      Jan Glauber <jglauber@cavium.com>
17351 L:      linux-i2c@vger.kernel.org
17352 W:      http://www.cavium.com
17353 S:      Supported
17354 F:      drivers/i2c/busses/i2c-xlp9xx.c
17355
17356 XRA1403 GPIO EXPANDER
17357 M:      Nandor Han <nandor.han@ge.com>
17358 M:      Semi Malinen <semi.malinen@ge.com>
17359 L:      linux-gpio@vger.kernel.org
17360 S:      Maintained
17361 F:      drivers/gpio/gpio-xra1403.c
17362 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
17363
17364 XTENSA XTFPGA PLATFORM SUPPORT
17365 M:      Max Filippov <jcmvbkbc@gmail.com>
17366 L:      linux-xtensa@linux-xtensa.org
17367 S:      Maintained
17368 F:      drivers/spi/spi-xtensa-xtfpga.c
17369 F:      sound/soc/xtensa/xtfpga-i2s.c
17370
17371 YAM DRIVER FOR AX.25
17372 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
17373 L:      linux-hams@vger.kernel.org
17374 S:      Maintained
17375 F:      drivers/net/hamradio/yam*
17376 F:      include/linux/yam.h
17377
17378 YAMA SECURITY MODULE
17379 M:      Kees Cook <keescook@chromium.org>
17380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
17381 S:      Supported
17382 F:      security/yama/
17383 F:      Documentation/admin-guide/LSM/Yama.rst
17384
17385 YEALINK PHONE DRIVER
17386 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
17387 L:      usbb2k-api-dev@nongnu.org
17388 S:      Maintained
17389 F:      Documentation/input/devices/yealink.rst
17390 F:      drivers/input/misc/yealink.*
17391
17392 Z8530 DRIVER FOR AX.25
17393 M:      Joerg Reuter <jreuter@yaina.de>
17394 W:      http://yaina.de/jreuter/
17395 W:      http://www.qsl.net/dl1bke/
17396 L:      linux-hams@vger.kernel.org
17397 S:      Maintained
17398 F:      Documentation/networking/z8530drv.txt
17399 F:      drivers/net/hamradio/*scc.c
17400 F:      drivers/net/hamradio/z8530.h
17401
17402 ZBUD COMPRESSED PAGE ALLOCATOR
17403 M:      Seth Jennings <sjenning@redhat.com>
17404 M:      Dan Streetman <ddstreet@ieee.org>
17405 L:      linux-mm@kvack.org
17406 S:      Maintained
17407 F:      mm/zbud.c
17408 F:      include/linux/zbud.h
17409
17410 ZD1211RW WIRELESS DRIVER
17411 M:      Daniel Drake <dsd@gentoo.org>
17412 M:      Ulrich Kunitz <kune@deine-taler.de>
17413 W:      http://zd1211.ath.cx/wiki/DriverRewrite
17414 L:      linux-wireless@vger.kernel.org
17415 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
17416 S:      Maintained
17417 F:      drivers/net/wireless/zydas/zd1211rw/
17418
17419 ZD1301 MEDIA DRIVER
17420 M:      Antti Palosaari <crope@iki.fi>
17421 L:      linux-media@vger.kernel.org
17422 W:      https://linuxtv.org/
17423 W:      http://palosaari.fi/linux/
17424 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17425 S:      Maintained
17426 F:      drivers/media/usb/dvb-usb-v2/zd1301*
17427
17428 ZD1301_DEMOD MEDIA DRIVER
17429 M:      Antti Palosaari <crope@iki.fi>
17430 L:      linux-media@vger.kernel.org
17431 W:      https://linuxtv.org/
17432 W:      http://palosaari.fi/linux/
17433 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17434 S:      Maintained
17435 F:      drivers/media/dvb-frontends/zd1301_demod*
17436
17437 ZPOOL COMPRESSED PAGE STORAGE API
17438 M:      Dan Streetman <ddstreet@ieee.org>
17439 L:      linux-mm@kvack.org
17440 S:      Maintained
17441 F:      mm/zpool.c
17442 F:      include/linux/zpool.h
17443
17444 ZR36067 VIDEO FOR LINUX DRIVER
17445 L:      mjpeg-users@lists.sourceforge.net
17446 L:      linux-media@vger.kernel.org
17447 W:      http://mjpeg.sourceforge.net/driver-zoran/
17448 T:      hg https://linuxtv.org/hg/v4l-dvb
17449 S:      Odd Fixes
17450 F:      drivers/staging/media/zoran/
17451
17452 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
17453 M:      Minchan Kim <minchan@kernel.org>
17454 M:      Nitin Gupta <ngupta@vflare.org>
17455 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17456 L:      linux-kernel@vger.kernel.org
17457 S:      Maintained
17458 F:      drivers/block/zram/
17459 F:      Documentation/blockdev/zram.txt
17460
17461 ZS DECSTATION Z85C30 SERIAL DRIVER
17462 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
17463 S:      Maintained
17464 F:      drivers/tty/serial/zs.*
17465
17466 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
17467 M:      Minchan Kim <minchan@kernel.org>
17468 M:      Nitin Gupta <ngupta@vflare.org>
17469 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
17470 L:      linux-mm@kvack.org
17471 S:      Maintained
17472 F:      mm/zsmalloc.c
17473 F:      include/linux/zsmalloc.h
17474 F:      Documentation/vm/zsmalloc.rst
17475
17476 ZSWAP COMPRESSED SWAP CACHING
17477 M:      Seth Jennings <sjenning@redhat.com>
17478 M:      Dan Streetman <ddstreet@ieee.org>
17479 L:      linux-mm@kvack.org
17480 S:      Maintained
17481 F:      mm/zswap.c
17482
17483 THE REST
17484 M:      Linus Torvalds <torvalds@linux-foundation.org>
17485 L:      linux-kernel@vger.kernel.org
17486 Q:      http://patchwork.kernel.org/project/LKML/list/
17487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
17488 S:      Buried alive in reporters
17489 F:      *
17490 F:      */