ASoC: Update email address for Vinod
[linux-block.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@mathematik.tu-chemnitz.de>
141 L:      netdev@vger.kernel.org
142 S:      Maintained
143 F:      Documentation/networking/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 L:      netdev@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/ethernet/realtek/r8169.c
186
187 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
188 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
189 L:      linux-serial@vger.kernel.org
190 S:      Maintained
191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
192 F:      drivers/tty/serial/8250*
193 F:      include/linux/serial_8250.h
194
195 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
196 L:      netdev@vger.kernel.org
197 S:      Orphan / Obsolete
198 F:      drivers/net/ethernet/8390/
199
200 9P FILE SYSTEM
201 M:      Eric Van Hensbergen <ericvh@gmail.com>
202 M:      Ron Minnich <rminnich@sandia.gov>
203 M:      Latchesar Ionkov <lucho@ionkov.net>
204 L:      v9fs-developer@lists.sourceforge.net
205 W:      http://swik.net/v9fs
206 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
208 S:      Maintained
209 F:      Documentation/filesystems/9p.txt
210 F:      fs/9p/
211 F:      net/9p/
212 F:      include/net/9p/
213 F:      include/uapi/linux/virtio_9p.h
214 F:      include/trace/events/9p.h
215
216 A8293 MEDIA DRIVER
217 M:      Antti Palosaari <crope@iki.fi>
218 L:      linux-media@vger.kernel.org
219 W:      https://linuxtv.org
220 W:      http://palosaari.fi/linux/
221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
222 T:      git git://linuxtv.org/anttip/media_tree.git
223 S:      Maintained
224 F:      drivers/media/dvb-frontends/a8293*
225
226 AACRAID SCSI RAID DRIVER
227 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
228 L:      linux-scsi@vger.kernel.org
229 W:      http://www.adaptec.com/
230 S:      Supported
231 F:      Documentation/scsi/aacraid.txt
232 F:      drivers/scsi/aacraid/
233
234 ABI/API
235 L:      linux-api@vger.kernel.org
236 F:      include/linux/syscalls.h
237 F:      kernel/sys_ni.c
238
239 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
240 M:      Hans de Goede <hdegoede@redhat.com>
241 L:      linux-hwmon@vger.kernel.org
242 S:      Maintained
243 F:      drivers/hwmon/abituguru.c
244
245 ABIT UGURU 3 HARDWARE MONITOR DRIVER
246 M:      Alistair John Strachan <alistair@devzero.co.uk>
247 L:      linux-hwmon@vger.kernel.org
248 S:      Maintained
249 F:      drivers/hwmon/abituguru3.c
250
251 ACCES 104-DIO-48E GPIO DRIVER
252 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
253 L:      linux-gpio@vger.kernel.org
254 S:      Maintained
255 F:      drivers/gpio/gpio-104-dio-48e.c
256
257 ACCES 104-IDI-48 GPIO DRIVER
258 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
259 L:      linux-gpio@vger.kernel.org
260 S:      Maintained
261 F:      drivers/gpio/gpio-104-idi-48.c
262
263 ACCES 104-IDIO-16 GPIO DRIVER
264 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
265 L:      linux-gpio@vger.kernel.org
266 S:      Maintained
267 F:      drivers/gpio/gpio-104-idio-16.c
268
269 ACCES 104-QUAD-8 IIO DRIVER
270 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
271 L:      linux-iio@vger.kernel.org
272 S:      Maintained
273 F:      Documentation/ABI/testing/sysfs-bus-iio-counter-104-quad-8
274 F:      drivers/iio/counter/104-quad-8.c
275
276 ACCES PCI-IDIO-16 GPIO DRIVER
277 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
278 L:      linux-gpio@vger.kernel.org
279 S:      Maintained
280 F:      drivers/gpio/gpio-pci-idio-16.c
281
282 ACCES PCIe-IDIO-24 GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-pcie-idio-24.c
287
288 ACENIC DRIVER
289 M:      Jes Sorensen <jes@trained-monkey.org>
290 L:      linux-acenic@sunsite.dk
291 S:      Maintained
292 F:      drivers/net/ethernet/alteon/acenic*
293
294 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
295 M:      Peter Feuerer <peter@piie.net>
296 L:      platform-driver-x86@vger.kernel.org
297 W:      http://piie.net/?section=acerhdf
298 S:      Maintained
299 F:      drivers/platform/x86/acerhdf.c
300
301 ACER WMI LAPTOP EXTRAS
302 M:      "Lee, Chun-Yi" <jlee@suse.com>
303 L:      platform-driver-x86@vger.kernel.org
304 S:      Maintained
305 F:      drivers/platform/x86/acer-wmi.c
306
307 ACPI
308 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
309 M:      Len Brown <lenb@kernel.org>
310 L:      linux-acpi@vger.kernel.org
311 W:      https://01.org/linux-acpi
312 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
314 B:      https://bugzilla.kernel.org
315 S:      Supported
316 F:      drivers/acpi/
317 F:      drivers/pnp/pnpacpi/
318 F:      include/linux/acpi.h
319 F:      include/linux/fwnode.h
320 F:      include/acpi/
321 F:      Documentation/acpi/
322 F:      Documentation/ABI/testing/sysfs-bus-acpi
323 F:      Documentation/ABI/testing/configfs-acpi
324 F:      drivers/pci/*acpi*
325 F:      drivers/pci/*/*acpi*
326 F:      drivers/pci/*/*/*acpi*
327 F:      tools/power/acpi/
328
329 ACPI APEI
330 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
331 M:      Len Brown <lenb@kernel.org>
332 L:      linux-acpi@vger.kernel.org
333 R:      Tony Luck <tony.luck@intel.com>
334 R:      Borislav Petkov <bp@alien8.de>
335 F:      drivers/acpi/apei/
336
337 ACPI COMPONENT ARCHITECTURE (ACPICA)
338 M:      Robert Moore <robert.moore@intel.com>
339 M:      Erik Schmauss <erik.schmauss@intel.com>
340 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
341 L:      linux-acpi@vger.kernel.org
342 L:      devel@acpica.org
343 W:      https://acpica.org/
344 W:      https://github.com/acpica/acpica/
345 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 B:      https://bugzilla.kernel.org
348 B:      https://bugs.acpica.org
349 S:      Supported
350 F:      drivers/acpi/acpica/
351 F:      include/acpi/
352 F:      tools/power/acpi/
353
354 ACPI FAN DRIVER
355 M:      Zhang Rui <rui.zhang@intel.com>
356 L:      linux-acpi@vger.kernel.org
357 W:      https://01.org/linux-acpi
358 B:      https://bugzilla.kernel.org
359 S:      Supported
360 F:      drivers/acpi/fan.c
361
362 ACPI FOR ARM64 (ACPI/arm64)
363 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
364 M:      Hanjun Guo <hanjun.guo@linaro.org>
365 M:      Sudeep Holla <sudeep.holla@arm.com>
366 L:      linux-acpi@vger.kernel.org
367 S:      Maintained
368 F:      drivers/acpi/arm64
369
370 ACPI PMIC DRIVERS
371 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
372 M:      Len Brown <lenb@kernel.org>
373 R:      Andy Shevchenko <andy@infradead.org>
374 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
375 L:      linux-acpi@vger.kernel.org
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
378 B:      https://bugzilla.kernel.org
379 S:      Supported
380 F:      drivers/acpi/pmic/
381
382 ACPI THERMAL DRIVER
383 M:      Zhang Rui <rui.zhang@intel.com>
384 L:      linux-acpi@vger.kernel.org
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 S:      Supported
388 F:      drivers/acpi/*thermal*
389
390 ACPI VIDEO DRIVER
391 M:      Zhang Rui <rui.zhang@intel.com>
392 L:      linux-acpi@vger.kernel.org
393 W:      https://01.org/linux-acpi
394 B:      https://bugzilla.kernel.org
395 S:      Supported
396 F:      drivers/acpi/acpi_video.c
397
398 ACPI WMI DRIVER
399 L:      platform-driver-x86@vger.kernel.org
400 S:      Orphan
401 F:      drivers/platform/x86/wmi.c
402 F:      include/uapi/linux/wmi.h
403
404 AD1889 ALSA SOUND DRIVER
405 M:      Thibaut Varene <T-Bone@parisc-linux.org>
406 W:      http://wiki.parisc-linux.org/AD1889
407 L:      linux-parisc@vger.kernel.org
408 S:      Maintained
409 F:      sound/pci/ad1889.*
410
411 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
412 M:      Michael Hennerich <michael.hennerich@analog.com>
413 W:      http://wiki.analog.com/AD5254
414 W:      http://ez.analog.com/community/linux-device-drivers
415 S:      Supported
416 F:      drivers/misc/ad525x_dpot.c
417
418 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/AD5398
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/regulator/ad5398.c
424
425 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
426 M:      Michael Hennerich <michael.hennerich@analog.com>
427 W:      http://wiki.analog.com/AD7142
428 W:      http://ez.analog.com/community/linux-device-drivers
429 S:      Supported
430 F:      drivers/input/misc/ad714x.c
431
432 AD7877 TOUCHSCREEN DRIVER
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/AD7877
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/input/touchscreen/ad7877.c
438
439 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
440 M:      Michael Hennerich <michael.hennerich@analog.com>
441 W:      http://wiki.analog.com/AD7879
442 W:      http://ez.analog.com/community/linux-device-drivers
443 S:      Supported
444 F:      drivers/input/touchscreen/ad7879.c
445
446 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
447 M:      Jiri Kosina <jikos@kernel.org>
448 S:      Maintained
449
450 ADF7242 IEEE 802.15.4 RADIO DRIVER
451 M:      Michael Hennerich <michael.hennerich@analog.com>
452 W:      https://wiki.analog.com/ADF7242
453 W:      http://ez.analog.com/community/linux-device-drivers
454 L:      linux-wpan@vger.kernel.org
455 S:      Supported
456 F:      drivers/net/ieee802154/adf7242.c
457 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
458
459 ADM1025 HARDWARE MONITOR DRIVER
460 M:      Jean Delvare <jdelvare@suse.com>
461 L:      linux-hwmon@vger.kernel.org
462 S:      Maintained
463 F:      Documentation/hwmon/adm1025
464 F:      drivers/hwmon/adm1025.c
465
466 ADM1029 HARDWARE MONITOR DRIVER
467 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
468 L:      linux-hwmon@vger.kernel.org
469 S:      Maintained
470 F:      drivers/hwmon/adm1029.c
471
472 ADM8211 WIRELESS DRIVER
473 L:      linux-wireless@vger.kernel.org
474 W:      http://wireless.kernel.org/
475 S:      Orphan
476 F:      drivers/net/wireless/admtek/adm8211.*
477
478 ADP1653 FLASH CONTROLLER DRIVER
479 M:      Sakari Ailus <sakari.ailus@iki.fi>
480 L:      linux-media@vger.kernel.org
481 S:      Maintained
482 F:      drivers/media/i2c/adp1653.c
483 F:      include/media/i2c/adp1653.h
484
485 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
486 M:      Michael Hennerich <michael.hennerich@analog.com>
487 W:      http://wiki.analog.com/ADP5520
488 W:      http://ez.analog.com/community/linux-device-drivers
489 S:      Supported
490 F:      drivers/mfd/adp5520.c
491 F:      drivers/video/backlight/adp5520_bl.c
492 F:      drivers/leds/leds-adp5520.c
493 F:      drivers/gpio/gpio-adp5520.c
494 F:      drivers/input/keyboard/adp5520-keys.c
495
496 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
497 M:      Michael Hennerich <michael.hennerich@analog.com>
498 W:      http://wiki.analog.com/ADP5588
499 W:      http://ez.analog.com/community/linux-device-drivers
500 S:      Supported
501 F:      drivers/input/keyboard/adp5588-keys.c
502 F:      drivers/gpio/gpio-adp5588.c
503
504 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
505 M:      Michael Hennerich <michael.hennerich@analog.com>
506 W:      http://wiki.analog.com/ADP8860
507 W:      http://ez.analog.com/community/linux-device-drivers
508 S:      Supported
509 F:      drivers/video/backlight/adp8860_bl.c
510
511 ADS1015 HARDWARE MONITOR DRIVER
512 M:      Dirk Eibach <eibach@gdsys.de>
513 L:      linux-hwmon@vger.kernel.org
514 S:      Maintained
515 F:      Documentation/hwmon/ads1015
516 F:      drivers/hwmon/ads1015.c
517 F:      include/linux/platform_data/ads1015.h
518
519 ADT746X FAN DRIVER
520 M:      Colin Leroy <colin@colino.net>
521 S:      Maintained
522 F:      drivers/macintosh/therm_adt746x.c
523
524 ADT7475 HARDWARE MONITOR DRIVER
525 M:      Jean Delvare <jdelvare@suse.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      Documentation/hwmon/adt7475
529 F:      drivers/hwmon/adt7475.c
530
531 ADVANSYS SCSI DRIVER
532 M:      Matthew Wilcox <matthew@wil.cx>
533 M:      Hannes Reinecke <hare@suse.com>
534 L:      linux-scsi@vger.kernel.org
535 S:      Maintained
536 F:      Documentation/scsi/advansys.txt
537 F:      drivers/scsi/advansys.c
538
539 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
540 M:      Michael Hennerich <michael.hennerich@analog.com>
541 W:      http://wiki.analog.com/ADXL345
542 W:      http://ez.analog.com/community/linux-device-drivers
543 S:      Supported
544 F:      drivers/input/misc/adxl34x.c
545
546 AF9013 MEDIA DRIVER
547 M:      Antti Palosaari <crope@iki.fi>
548 L:      linux-media@vger.kernel.org
549 W:      https://linuxtv.org
550 W:      http://palosaari.fi/linux/
551 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
552 T:      git git://linuxtv.org/anttip/media_tree.git
553 S:      Maintained
554 F:      drivers/media/dvb-frontends/af9013*
555
556 AF9033 MEDIA DRIVER
557 M:      Antti Palosaari <crope@iki.fi>
558 L:      linux-media@vger.kernel.org
559 W:      https://linuxtv.org
560 W:      http://palosaari.fi/linux/
561 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
562 T:      git git://linuxtv.org/anttip/media_tree.git
563 S:      Maintained
564 F:      drivers/media/dvb-frontends/af9033*
565
566 AFFS FILE SYSTEM
567 L:      linux-fsdevel@vger.kernel.org
568 S:      Orphan
569 F:      Documentation/filesystems/affs.txt
570 F:      fs/affs/
571
572 AFS FILESYSTEM
573 M:      David Howells <dhowells@redhat.com>
574 L:      linux-afs@lists.infradead.org
575 S:      Supported
576 F:      fs/afs/
577 F:      include/trace/events/afs.h
578 F:      Documentation/filesystems/afs.txt
579 W:      https://www.infradead.org/~dhowells/kafs/
580
581 AGPGART DRIVER
582 M:      David Airlie <airlied@linux.ie>
583 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
584 S:      Maintained
585 F:      drivers/char/agp/
586 F:      include/linux/agp*
587 F:      include/uapi/linux/agp*
588
589 AHA152X SCSI DRIVER
590 M:      "Juergen E. Fischer" <fischer@norbit.de>
591 L:      linux-scsi@vger.kernel.org
592 S:      Maintained
593 F:      drivers/scsi/aha152x*
594 F:      drivers/scsi/pcmcia/aha152x*
595
596 AIC7XXX / AIC79XX SCSI DRIVER
597 M:      Hannes Reinecke <hare@suse.com>
598 L:      linux-scsi@vger.kernel.org
599 S:      Maintained
600 F:      drivers/scsi/aic7xxx/
601
602 AIMSLAB FM RADIO RECEIVER DRIVER
603 M:      Hans Verkuil <hverkuil@xs4all.nl>
604 L:      linux-media@vger.kernel.org
605 T:      git git://linuxtv.org/media_tree.git
606 W:      https://linuxtv.org
607 S:      Maintained
608 F:      drivers/media/radio/radio-aimslab*
609
610 AIO
611 M:      Benjamin LaHaise <bcrl@kvack.org>
612 L:      linux-aio@kvack.org
613 S:      Supported
614 F:      fs/aio.c
615 F:      include/linux/*aio*.h
616
617 AIRSPY MEDIA DRIVER
618 M:      Antti Palosaari <crope@iki.fi>
619 L:      linux-media@vger.kernel.org
620 W:      https://linuxtv.org
621 W:      http://palosaari.fi/linux/
622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
623 T:      git git://linuxtv.org/anttip/media_tree.git
624 S:      Maintained
625 F:      drivers/media/usb/airspy/
626
627 ALACRITECH GIGABIT ETHERNET DRIVER
628 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
629 S:      Maintained
630 F:      drivers/net/ethernet/alacritech/*
631
632 ALCATEL SPEEDTOUCH USB DRIVER
633 M:      Duncan Sands <duncan.sands@free.fr>
634 L:      linux-usb@vger.kernel.org
635 W:      http://www.linux-usb.org/SpeedTouch/
636 S:      Maintained
637 F:      drivers/usb/atm/speedtch.c
638 F:      drivers/usb/atm/usbatm.c
639
640 ALCHEMY AU1XX0 MMC DRIVER
641 M:      Manuel Lauss <manuel.lauss@gmail.com>
642 S:      Maintained
643 F:      drivers/mmc/host/au1xmmc.c
644
645 ALI1563 I2C DRIVER
646 M:      Rudolf Marek <r.marek@assembler.cz>
647 L:      linux-i2c@vger.kernel.org
648 S:      Maintained
649 F:      Documentation/i2c/busses/i2c-ali1563
650 F:      drivers/i2c/busses/i2c-ali1563.c
651
652 ALLWINNER SECURITY SYSTEM
653 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
654 L:      linux-crypto@vger.kernel.org
655 S:      Maintained
656 F:      drivers/crypto/sunxi-ss/
657
658 ALPHA PORT
659 M:      Richard Henderson <rth@twiddle.net>
660 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
661 M:      Matt Turner <mattst88@gmail.com>
662 S:      Odd Fixes
663 L:      linux-alpha@vger.kernel.org
664 F:      arch/alpha/
665
666 ALPS PS/2 TOUCHPAD DRIVER
667 R:      Pali Rohár <pali.rohar@gmail.com>
668 F:      drivers/input/mouse/alps.*
669
670 ALTERA I2C CONTROLLER DRIVER
671 M:      Thor Thayer <thor.thayer@linux.intel.com>
672 S:      Maintained
673 F:      drivers/i2c/busses/i2c-altera.c
674
675 ALTERA MAILBOX DRIVER
676 M:      Ley Foon Tan <lftan@altera.com>
677 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
678 S:      Maintained
679 F:      drivers/mailbox/mailbox-altera.c
680
681 ALTERA PIO DRIVER
682 M:      Tien Hock Loh <thloh@altera.com>
683 L:      linux-gpio@vger.kernel.org
684 S:      Maintained
685 F:      drivers/gpio/gpio-altera.c
686
687 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
688 M:      Thor Thayer <thor.thayer@linux.intel.com>
689 S:      Maintained
690 F:      drivers/gpio/gpio-altera-a10sr.c
691 F:      drivers/mfd/altera-a10sr.c
692 F:      drivers/reset/reset-a10sr.c
693 F:      include/linux/mfd/altera-a10sr.h
694 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
695
696 ALTERA TRIPLE SPEED ETHERNET DRIVER
697 M:      Vince Bridgers <vbridger@opensource.altera.com>
698 L:      netdev@vger.kernel.org
699 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
700 S:      Maintained
701 F:      drivers/net/ethernet/altera/
702
703 ALTERA UART/JTAG UART SERIAL DRIVERS
704 M:      Tobias Klauser <tklauser@distanz.ch>
705 L:      linux-serial@vger.kernel.org
706 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
707 S:      Maintained
708 F:      drivers/tty/serial/altera_uart.c
709 F:      drivers/tty/serial/altera_jtaguart.c
710 F:      include/linux/altera_uart.h
711 F:      include/linux/altera_jtaguart.h
712
713 AMAZON ETHERNET DRIVERS
714 M:      Netanel Belgazal <netanel@amazon.com>
715 R:      Saeed Bishara <saeedb@amazon.com>
716 R:      Zorik Machulsky <zorik@amazon.com>
717 L:      netdev@vger.kernel.org
718 S:      Supported
719 F:      Documentation/networking/ena.txt
720 F:      drivers/net/ethernet/amazon/
721
722 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
723 M:      Tom Lendacky <thomas.lendacky@amd.com>
724 M:      Gary Hook <gary.hook@amd.com>
725 L:      linux-crypto@vger.kernel.org
726 S:      Supported
727 F:      drivers/crypto/ccp/
728 F:      include/linux/ccp.h
729
730 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
731 M:      Huang Rui <ray.huang@amd.com>
732 L:      linux-hwmon@vger.kernel.org
733 S:      Supported
734 F:      Documentation/hwmon/fam15h_power
735 F:      drivers/hwmon/fam15h_power.c
736
737 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
738 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
739 S:      Orphan
740 F:      drivers/usb/gadget/udc/amd5536udc.*
741
742 AMD GEODE PROCESSOR/CHIPSET SUPPORT
743 P:      Andres Salomon <dilinger@queued.net>
744 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
745 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
746 S:      Supported
747 F:      drivers/char/hw_random/geode-rng.c
748 F:      drivers/crypto/geode*
749 F:      drivers/video/fbdev/geode/
750 F:      arch/x86/include/asm/geode.h
751
752 AMD IOMMU (AMD-VI)
753 M:      Joerg Roedel <joro@8bytes.org>
754 L:      iommu@lists.linux-foundation.org
755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
756 S:      Maintained
757 F:      drivers/iommu/amd_iommu*.[ch]
758 F:      include/linux/amd-iommu.h
759
760 AMD KFD
761 M:      Oded Gabbay <oded.gabbay@gmail.com>
762 L:      dri-devel@lists.freedesktop.org
763 T:      git git://people.freedesktop.org/~gabbayo/linux.git
764 S:      Supported
765 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
766 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
767 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
768 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
769 F:      drivers/gpu/drm/amd/amdkfd/
770 F:      drivers/gpu/drm/amd/include/cik_structs.h
771 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
772 F:      drivers/gpu/drm/amd/include/vi_structs.h
773 F:      include/uapi/linux/kfd_ioctl.h
774
775 AMD SEATTLE DEVICE TREE SUPPORT
776 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
777 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
778 M:      Tom Lendacky <thomas.lendacky@amd.com>
779 S:      Supported
780 F:      arch/arm64/boot/dts/amd/
781
782 AMD XGBE DRIVER
783 M:      Tom Lendacky <thomas.lendacky@amd.com>
784 L:      netdev@vger.kernel.org
785 S:      Supported
786 F:      drivers/net/ethernet/amd/xgbe/
787 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
788
789 AMS (Apple Motion Sensor) DRIVER
790 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
791 S:      Supported
792 F:      drivers/macintosh/ams/
793
794 ANALOG DEVICES INC AD9389B DRIVER
795 M:      Hans Verkuil <hans.verkuil@cisco.com>
796 L:      linux-media@vger.kernel.org
797 S:      Maintained
798 F:      drivers/media/i2c/ad9389b*
799
800 ANALOG DEVICES INC ADV7180 DRIVER
801 M:      Lars-Peter Clausen <lars@metafoo.de>
802 L:      linux-media@vger.kernel.org
803 W:      http://ez.analog.com/community/linux-device-drivers
804 S:      Supported
805 F:      drivers/media/i2c/adv7180.c
806
807 ANALOG DEVICES INC ADV748X DRIVER
808 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
809 L:      linux-media@vger.kernel.org
810 S:      Maintained
811 F:      drivers/media/i2c/adv748x/*
812
813 ANALOG DEVICES INC ADV7511 DRIVER
814 M:      Hans Verkuil <hans.verkuil@cisco.com>
815 L:      linux-media@vger.kernel.org
816 S:      Maintained
817 F:      drivers/media/i2c/adv7511*
818
819 ANALOG DEVICES INC ADV7604 DRIVER
820 M:      Hans Verkuil <hans.verkuil@cisco.com>
821 L:      linux-media@vger.kernel.org
822 S:      Maintained
823 F:      drivers/media/i2c/adv7604*
824
825 ANALOG DEVICES INC ADV7842 DRIVER
826 M:      Hans Verkuil <hans.verkuil@cisco.com>
827 L:      linux-media@vger.kernel.org
828 S:      Maintained
829 F:      drivers/media/i2c/adv7842*
830
831 ANALOG DEVICES INC ASOC CODEC DRIVERS
832 M:      Lars-Peter Clausen <lars@metafoo.de>
833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
834 W:      http://wiki.analog.com/
835 W:      http://ez.analog.com/community/linux-device-drivers
836 S:      Supported
837 F:      sound/soc/codecs/adau*
838 F:      sound/soc/codecs/adav*
839 F:      sound/soc/codecs/ad1*
840 F:      sound/soc/codecs/ad7*
841 F:      sound/soc/codecs/ssm*
842 F:      sound/soc/codecs/sigmadsp.*
843
844 ANALOG DEVICES INC DMA DRIVERS
845 M:      Lars-Peter Clausen <lars@metafoo.de>
846 W:      http://ez.analog.com/community/linux-device-drivers
847 S:      Supported
848 F:      drivers/dma/dma-axi-dmac.c
849
850 ANALOG DEVICES INC IIO DRIVERS
851 M:      Lars-Peter Clausen <lars@metafoo.de>
852 M:      Michael Hennerich <Michael.Hennerich@analog.com>
853 W:      http://wiki.analog.com/
854 W:      http://ez.analog.com/community/linux-device-drivers
855 S:      Supported
856 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
857 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
858 F:      drivers/iio/*/ad*
859 F:      drivers/iio/adc/ltc2497*
860 X:      drivers/iio/*/adjd*
861 F:      drivers/staging/iio/*/ad*
862 F:      drivers/staging/iio/trigger/iio-trig-bfin-timer.c
863
864 ANDROID CONFIG FRAGMENTS
865 M:      Rob Herring <robh@kernel.org>
866 S:      Supported
867 F:      kernel/configs/android*
868
869 ANDROID DRIVERS
870 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
871 M:      Arve Hjønnevåg <arve@android.com>
872 M:      Todd Kjos <tkjos@android.com>
873 M:      Martijn Coenen <maco@android.com>
874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
875 L:      devel@driverdev.osuosl.org
876 S:      Supported
877 F:      drivers/android/
878 F:      drivers/staging/android/
879
880 ANDROID GOLDFISH PIC DRIVER
881 M:      Miodrag Dinic <miodrag.dinic@mips.com>
882 S:      Supported
883 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
884 F:      drivers/irqchip/irq-goldfish-pic.c
885
886 ANDROID GOLDFISH RTC DRIVER
887 M:      Miodrag Dinic <miodrag.dinic@mips.com>
888 S:      Supported
889 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
890 F:      drivers/rtc/rtc-goldfish.c
891
892 ANDROID ION DRIVER
893 M:      Laura Abbott <labbott@redhat.com>
894 M:      Sumit Semwal <sumit.semwal@linaro.org>
895 L:      devel@driverdev.osuosl.org
896 S:      Supported
897 F:      drivers/staging/android/ion
898 F:      drivers/staging/android/uapi/ion.h
899
900 AOA (Apple Onboard Audio) ALSA DRIVER
901 M:      Johannes Berg <johannes@sipsolutions.net>
902 L:      linuxppc-dev@lists.ozlabs.org
903 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
904 S:      Maintained
905 F:      sound/aoa/
906
907 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
908 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
909 L:      linux-iio@vger.kernel.org
910 S:      Maintained
911 F:      drivers/iio/adc/stx104.c
912
913 APM DRIVER
914 M:      Jiri Kosina <jikos@kernel.org>
915 S:      Odd fixes
916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
917 F:      arch/x86/kernel/apm_32.c
918 F:      include/linux/apm_bios.h
919 F:      include/uapi/linux/apm_bios.h
920 F:      drivers/char/apm-emulation.c
921
922 APPARMOR SECURITY MODULE
923 M:      John Johansen <john.johansen@canonical.com>
924 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
925 W:      apparmor.wiki.kernel.org
926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
927 S:      Supported
928 F:      security/apparmor/
929 F:      Documentation/admin-guide/LSM/apparmor.rst
930
931 APPLE BCM5974 MULTITOUCH DRIVER
932 M:      Henrik Rydberg <rydberg@bitmath.org>
933 L:      linux-input@vger.kernel.org
934 S:      Odd fixes
935 F:      drivers/input/mouse/bcm5974.c
936
937 APPLE SMC DRIVER
938 M:      Henrik Rydberg <rydberg@bitmath.org>
939 L:      linux-hwmon@vger.kernel.org
940 S:      Odd fixes
941 F:      drivers/hwmon/applesmc.c
942
943 APPLETALK NETWORK LAYER
944 L:      netdev@vger.kernel.org
945 S:      Odd fixes
946 F:      drivers/net/appletalk/
947 F:      net/appletalk/
948
949 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
950 M:      Duc Dang <dhdang@apm.com>
951 S:      Supported
952 F:      arch/arm64/boot/dts/apm/
953
954 APPLIED MICRO (APM) X-GENE SOC EDAC
955 M:      Loc Ho <lho@apm.com>
956 S:      Supported
957 F:      drivers/edac/xgene_edac.c
958 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
959
960 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
961 M:      Iyappan Subramanian <isubramanian@apm.com>
962 M:      Keyur Chudgar <kchudgar@apm.com>
963 S:      Supported
964 F:      drivers/net/ethernet/apm/xgene-v2/
965
966 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
967 M:      Iyappan Subramanian <isubramanian@apm.com>
968 M:      Keyur Chudgar <kchudgar@apm.com>
969 M:      Quan Nguyen <qnguyen@apm.com>
970 S:      Supported
971 F:      drivers/net/ethernet/apm/xgene/
972 F:      drivers/net/phy/mdio-xgene.c
973 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
974 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
975
976 APPLIED MICRO (APM) X-GENE SOC PMU
977 M:      Tai Nguyen <ttnguyen@apm.com>
978 S:      Supported
979 F:      drivers/perf/xgene_pmu.c
980 F:      Documentation/perf/xgene-pmu.txt
981 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
982
983 APTINA CAMERA SENSOR PLL
984 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
985 L:      linux-media@vger.kernel.org
986 S:      Maintained
987 F:      drivers/media/i2c/aptina-pll.*
988
989 ARC FRAMEBUFFER DRIVER
990 M:      Jaya Kumar <jayalk@intworks.biz>
991 S:      Maintained
992 F:      drivers/video/fbdev/arcfb.c
993 F:      drivers/video/fbdev/core/fb_defio.c
994
995 ARC PGU DRM DRIVER
996 M:      Alexey Brodkin <abrodkin@synopsys.com>
997 S:      Supported
998 F:      drivers/gpu/drm/arc/
999 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1000
1001 ARCNET NETWORK LAYER
1002 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1003 L:      netdev@vger.kernel.org
1004 S:      Maintained
1005 F:      drivers/net/arcnet/
1006 F:      include/uapi/linux/if_arcnet.h
1007
1008 ARM ARCHITECTED TIMER DRIVER
1009 M:      Mark Rutland <mark.rutland@arm.com>
1010 M:      Marc Zyngier <marc.zyngier@arm.com>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 S:      Maintained
1013 F:      arch/arm/include/asm/arch_timer.h
1014 F:      arch/arm64/include/asm/arch_timer.h
1015 F:      drivers/clocksource/arm_arch_timer.c
1016
1017 ARM HDLCD DRM DRIVER
1018 M:      Liviu Dudau <liviu.dudau@arm.com>
1019 S:      Supported
1020 F:      drivers/gpu/drm/arm/hdlcd_*
1021 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1022
1023 ARM MALI-DP DRM DRIVER
1024 M:      Liviu Dudau <liviu.dudau@arm.com>
1025 M:      Brian Starkey <brian.starkey@arm.com>
1026 M:      Mali DP Maintainers <malidp@foss.arm.com>
1027 S:      Supported
1028 F:      drivers/gpu/drm/arm/
1029 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1030
1031 ARM MFM AND FLOPPY DRIVERS
1032 M:      Ian Molton <spyro@f2s.com>
1033 S:      Maintained
1034 F:      arch/arm/lib/floppydma.S
1035 F:      arch/arm/include/asm/floppy.h
1036
1037 ARM PMU PROFILING AND DEBUGGING
1038 M:      Will Deacon <will.deacon@arm.com>
1039 M:      Mark Rutland <mark.rutland@arm.com>
1040 S:      Maintained
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 F:      arch/arm*/kernel/perf_*
1043 F:      arch/arm/oprofile/common.c
1044 F:      arch/arm*/kernel/hw_breakpoint.c
1045 F:      arch/arm*/include/asm/hw_breakpoint.h
1046 F:      arch/arm*/include/asm/perf_event.h
1047 F:      drivers/perf/*
1048 F:      include/linux/perf/arm_pmu.h
1049 F:      Documentation/devicetree/bindings/arm/pmu.txt
1050 F:      Documentation/devicetree/bindings/perf/
1051
1052 ARM PORT
1053 M:      Russell King <linux@armlinux.org.uk>
1054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055 W:      http://www.armlinux.org.uk/
1056 S:      Maintained
1057 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1058 F:      arch/arm/
1059
1060 ARM PRIMECELL AACI PL041 DRIVER
1061 M:      Russell King <linux@armlinux.org.uk>
1062 S:      Maintained
1063 F:      sound/arm/aaci.*
1064
1065 ARM PRIMECELL BUS SUPPORT
1066 M:      Russell King <linux@armlinux.org.uk>
1067 S:      Maintained
1068 F:      drivers/amba/
1069 F:      include/linux/amba/bus.h
1070
1071 ARM PRIMECELL CLCD PL110 DRIVER
1072 M:      Russell King <linux@armlinux.org.uk>
1073 S:      Maintained
1074 F:      drivers/video/fbdev/amba-clcd.*
1075
1076 ARM PRIMECELL KMI PL050 DRIVER
1077 M:      Russell King <linux@armlinux.org.uk>
1078 S:      Maintained
1079 F:      drivers/input/serio/ambakmi.*
1080 F:      include/linux/amba/kmi.h
1081
1082 ARM PRIMECELL MMCI PL180/1 DRIVER
1083 M:      Russell King <linux@armlinux.org.uk>
1084 S:      Maintained
1085 F:      drivers/mmc/host/mmci.*
1086 F:      include/linux/amba/mmci.h
1087
1088 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1089 M:      Russell King <linux@armlinux.org.uk>
1090 S:      Maintained
1091 F:      drivers/tty/serial/amba-pl01*.c
1092 F:      include/linux/amba/serial.h
1093
1094 ARM SMMU DRIVERS
1095 M:      Will Deacon <will.deacon@arm.com>
1096 R:      Robin Murphy <robin.murphy@arm.com>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 S:      Maintained
1099 F:      drivers/iommu/arm-smmu.c
1100 F:      drivers/iommu/arm-smmu-v3.c
1101 F:      drivers/iommu/io-pgtable-arm.c
1102 F:      drivers/iommu/io-pgtable-arm-v7s.c
1103
1104 ARM SUB-ARCHITECTURES
1105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106 S:      Maintained
1107 F:      arch/arm/mach-*/
1108 F:      arch/arm/plat-*/
1109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1110
1111 ARM/ACTIONS SEMI ARCHITECTURE
1112 M:      Andreas Färber <afaerber@suse.de>
1113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1114 S:      Maintained
1115 N:      owl
1116 F:      arch/arm/mach-actions/
1117 F:      arch/arm/boot/dts/owl-*
1118 F:      arch/arm64/boot/dts/actions/
1119 F:      drivers/clocksource/owl-*
1120 F:      drivers/soc/actions/
1121 F:      include/dt-bindings/power/owl-*
1122 F:      include/linux/soc/actions/
1123 F:      Documentation/devicetree/bindings/arm/actions.txt
1124 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1125 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1126
1127 ARM/ADS SPHERE MACHINE SUPPORT
1128 M:      Lennert Buytenhek <kernel@wantstofly.org>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 S:      Maintained
1131
1132 ARM/AFEB9260 MACHINE SUPPORT
1133 M:      Sergey Lapin <slapin@ossfans.org>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136
1137 ARM/AJECO 1ARM MACHINE SUPPORT
1138 M:      Lennert Buytenhek <kernel@wantstofly.org>
1139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 S:      Maintained
1141
1142 ARM/Allwinner SoC Clock Support
1143 M:      Emilio López <emilio@elopez.com.ar>
1144 S:      Maintained
1145 F:      drivers/clk/sunxi/
1146
1147 ARM/Allwinner sunXi SoC support
1148 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
1149 M:      Chen-Yu Tsai <wens@csie.org>
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 S:      Maintained
1152 N:      sun[x456789]i
1153 N:      sun50i
1154 F:      arch/arm/mach-sunxi/
1155 F:      arch/arm64/boot/dts/allwinner/
1156 F:      drivers/clk/sunxi-ng/
1157 F:      drivers/pinctrl/sunxi/
1158 F:      drivers/soc/sunxi/
1159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1160
1161 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1162 M:      Neil Armstrong <narmstrong@baylibre.com>
1163 M:      Jerome Brunet <jbrunet@baylibre.com>
1164 L:      linux-amlogic@lists.infradead.org
1165 S:      Maintained
1166 F:      drivers/clk/meson/
1167 F:      include/dt-bindings/clock/meson*
1168 F:      include/dt-bindings/clock/gxbb*
1169 F:      Documentation/devicetree/bindings/clock/amlogic*
1170
1171 ARM/Amlogic Meson SoC support
1172 M:      Carlo Caione <carlo@caione.org>
1173 M:      Kevin Hilman <khilman@baylibre.com>
1174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 L:      linux-amlogic@lists.infradead.org
1176 W:      http://linux-meson.com/
1177 S:      Maintained
1178 F:      arch/arm/mach-meson/
1179 F:      arch/arm/boot/dts/meson*
1180 F:      arch/arm64/boot/dts/amlogic/
1181 F:      drivers/pinctrl/meson/
1182 F:      drivers/mmc/host/meson*
1183 N:      meson
1184
1185 ARM/Annapurna Labs ALPINE ARCHITECTURE
1186 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1187 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190 F:      arch/arm/mach-alpine/
1191 F:      arch/arm/boot/dts/alpine*
1192 F:      arch/arm64/boot/dts/al/
1193 F:      drivers/*/*alpine*
1194
1195 ARM/ARTPEC MACHINE SUPPORT
1196 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1197 M:      Lars Persson <lars.persson@axis.com>
1198 M:      Niklas Cassel <niklas.cassel@axis.com>
1199 S:      Maintained
1200 L:      linux-arm-kernel@axis.com
1201 F:      arch/arm/mach-artpec
1202 F:      arch/arm/boot/dts/artpec6*
1203 F:      drivers/clk/axis
1204 F:      drivers/crypto/axis
1205 F:      drivers/pinctrl/pinctrl-artpec*
1206 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1207
1208 ARM/ASPEED I2C DRIVER
1209 M:      Brendan Higgins <brendanhiggins@google.com>
1210 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1211 R:      Joel Stanley <joel@jms.id.au>
1212 L:      linux-i2c@vger.kernel.org
1213 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1214 S:      Maintained
1215 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1216 F:      drivers/i2c/busses/i2c-aspeed.c
1217 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1218 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1219
1220 ARM/ASPEED MACHINE SUPPORT
1221 M:      Joel Stanley <joel@jms.id.au>
1222 S:      Maintained
1223 F:      arch/arm/mach-aspeed/
1224 F:      arch/arm/boot/dts/aspeed-*
1225 F:      drivers/*/*aspeed*
1226
1227 ARM/ATMEL AT91 Clock Support
1228 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1229 S:      Maintained
1230 F:      drivers/clk/at91
1231
1232 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1233 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1234 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 W:      http://www.linux4sam.org
1237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1238 S:      Supported
1239 N:      at91
1240 N:      atmel
1241 F:      arch/arm/mach-at91/
1242 F:      include/soc/at91/
1243 F:      arch/arm/boot/dts/at91*.dts
1244 F:      arch/arm/boot/dts/at91*.dtsi
1245 F:      arch/arm/boot/dts/sama*.dts
1246 F:      arch/arm/boot/dts/sama*.dtsi
1247 F:      arch/arm/include/debug/at91.S
1248 F:      drivers/memory/atmel*
1249 F:      drivers/watchdog/sama5d4_wdt.c
1250 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1251 X:      drivers/net/wireless/atmel/
1252
1253 ARM/CALXEDA HIGHBANK ARCHITECTURE
1254 M:      Rob Herring <robh@kernel.org>
1255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256 S:      Maintained
1257 F:      arch/arm/mach-highbank/
1258 F:      arch/arm/boot/dts/highbank.dts
1259 F:      arch/arm/boot/dts/ecx-*.dts*
1260
1261 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1262 M:      Krzysztof Halasa <khalasa@piap.pl>
1263 S:      Maintained
1264 F:      arch/arm/mach-cns3xxx/
1265
1266 ARM/CAVIUM THUNDER NETWORK DRIVER
1267 M:      Sunil Goutham <sgoutham@cavium.com>
1268 M:      Robert Richter <rric@kernel.org>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 S:      Supported
1271 F:      drivers/net/ethernet/cavium/thunder/
1272
1273 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1274 M:      Lukasz Majewski <lukma@denx.de>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 S:      Maintained
1277 F:      arch/arm/mach-ep93xx/ts72xx.c
1278
1279 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1280 M:      Alexander Shiyan <shc_work@mail.ru>
1281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1282 S:      Odd Fixes
1283 N:      clps711x
1284
1285 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1286 M:      Lennert Buytenhek <kernel@wantstofly.org>
1287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1288 S:      Maintained
1289
1290 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1291 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1292 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 S:      Maintained
1295 F:      arch/arm/mach-ep93xx/
1296 F:      arch/arm/mach-ep93xx/include/mach/
1297
1298 ARM/CLKDEV SUPPORT
1299 M:      Russell King <linux@armlinux.org.uk>
1300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 S:      Maintained
1302 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1303 F:      drivers/clk/clkdev.c
1304
1305 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1306 M:      Mike Rapoport <mike@compulab.co.il>
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 S:      Maintained
1309
1310 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1311 M:      Baruch Siach <baruch@tkos.co.il>
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      arch/arm/boot/dts/cx92755*
1315 N:      digicolor
1316
1317 ARM/CONTEC MICRO9 MACHINE SUPPORT
1318 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1319 S:      Maintained
1320 F:      arch/arm/mach-ep93xx/micro9.c
1321
1322 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1323 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 S:      Maintained
1326 F:      drivers/hwtracing/coresight/*
1327 F:      Documentation/trace/coresight.txt
1328 F:      Documentation/trace/coresight-cpu-debug.txt
1329 F:      Documentation/devicetree/bindings/arm/coresight.txt
1330 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1331 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1332 F:      tools/perf/arch/arm/util/pmu.c
1333 F:      tools/perf/arch/arm/util/auxtrace.c
1334 F:      tools/perf/arch/arm/util/cs-etm.c
1335 F:      tools/perf/arch/arm/util/cs-etm.h
1336 F:      tools/perf/util/cs-etm.*
1337 F:      tools/perf/util/cs-etm-decoder/*
1338
1339 ARM/CORGI MACHINE SUPPORT
1340 M:      Richard Purdie <rpurdie@rpsys.net>
1341 S:      Maintained
1342
1343 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1344 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1345 M:      Linus Walleij <linus.walleij@linaro.org>
1346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1347 T:      git git://github.com/ulli-kroll/linux.git
1348 S:      Maintained
1349 F:      Documentation/devicetree/bindings/arm/gemini.txt
1350 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1351 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1352 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1353 F:      arch/arm/mach-gemini/
1354 F:      drivers/net/ethernet/cortina/
1355 F:      drivers/pinctrl/pinctrl-gemini.c
1356 F:      drivers/rtc/rtc-ftrtc010.c
1357
1358 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1359 M:      Barry Song <baohua@kernel.org>
1360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1362 S:      Maintained
1363 F:      arch/arm/boot/dts/prima2*
1364 F:      arch/arm/mach-prima2/
1365 F:      drivers/clk/sirf/
1366 F:      drivers/clocksource/timer-prima2.c
1367 F:      drivers/clocksource/timer-atlas7.c
1368 N:      [^a-z]sirf
1369
1370 ARM/EBSA110 MACHINE SUPPORT
1371 M:      Russell King <linux@armlinux.org.uk>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 W:      http://www.armlinux.org.uk/
1374 S:      Maintained
1375 F:      arch/arm/mach-ebsa110/
1376 F:      drivers/net/ethernet/amd/am79c961a.*
1377
1378 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1379 M:      Uwe Kleine-König <kernel@pengutronix.de>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 S:      Maintained
1382 N:      efm32
1383
1384 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1385 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 S:      Maintained
1388 F:      arch/arm/mach-pxa/ezx.c
1389
1390 ARM/FARADAY FA526 PORT
1391 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394 T:      git git://git.berlios.de/gemini-board
1395 F:      arch/arm/mm/*-fa*
1396
1397 ARM/FOOTBRIDGE ARCHITECTURE
1398 M:      Russell King <linux@armlinux.org.uk>
1399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1400 W:      http://www.armlinux.org.uk/
1401 S:      Maintained
1402 F:      arch/arm/include/asm/hardware/dec21285.h
1403 F:      arch/arm/mach-footbridge/
1404
1405 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1406 M:      Shawn Guo <shawnguo@kernel.org>
1407 M:      Sascha Hauer <kernel@pengutronix.de>
1408 R:      Fabio Estevam <fabio.estevam@nxp.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S:      Maintained
1411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1412 F:      arch/arm/mach-imx/
1413 F:      arch/arm/mach-mxs/
1414 F:      arch/arm/boot/dts/imx*
1415 F:      arch/arm/configs/imx*_defconfig
1416 F:      drivers/clk/imx/
1417 F:      drivers/soc/imx/
1418 F:      include/soc/imx/
1419
1420 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1421 M:      Shawn Guo <shawnguo@kernel.org>
1422 M:      Sascha Hauer <kernel@pengutronix.de>
1423 R:      Stefan Agner <stefan@agner.ch>
1424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1427 F:      arch/arm/mach-imx/*vf610*
1428 F:      arch/arm/boot/dts/vf*
1429
1430 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1431 M:      Lennert Buytenhek <kernel@wantstofly.org>
1432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433 S:      Maintained
1434
1435 ARM/GUMSTIX MACHINE SUPPORT
1436 M:      Steve Sakoman <sakoman@gmail.com>
1437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1438 S:      Maintained
1439
1440 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1441 M:      Philipp Zabel <philipp.zabel@gmail.com>
1442 M:      Paul Parsons <lost.distance@yahoo.com>
1443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1444 S:      Maintained
1445 F:      arch/arm/mach-pxa/hx4700.c
1446 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1447 F:      sound/soc/pxa/hx4700.c
1448
1449 ARM/HISILICON SOC SUPPORT
1450 M:      Wei Xu <xuwei5@hisilicon.com>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 W:      http://www.hisilicon.com
1453 S:      Supported
1454 T:      git git://github.com/hisilicon/linux-hisi.git
1455 F:      arch/arm/mach-hisi/
1456 F:      arch/arm/boot/dts/hi3*
1457 F:      arch/arm/boot/dts/hip*
1458 F:      arch/arm/boot/dts/hisi*
1459 F:      arch/arm64/boot/dts/hisilicon/
1460
1461 ARM/HP JORNADA 7XX MACHINE SUPPORT
1462 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1463 W:      www.jlime.com
1464 S:      Maintained
1465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1466 F:      arch/arm/mach-sa1100/jornada720.c
1467 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1468
1469 ARM/IGEP MACHINE SUPPORT
1470 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1471 M:      Javier Martinez Canillas <javier@dowhile0.org>
1472 L:      linux-omap@vger.kernel.org
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      arch/arm/boot/dts/omap3-igep*
1476
1477 ARM/INCOME PXA270 SUPPORT
1478 M:      Marek Vasut <marek.vasut@gmail.com>
1479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1480 S:      Maintained
1481 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1482
1483 ARM/INTEL IOP13XX ARM ARCHITECTURE
1484 M:      Lennert Buytenhek <kernel@wantstofly.org>
1485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1486 S:      Maintained
1487
1488 ARM/INTEL IOP32X ARM ARCHITECTURE
1489 M:      Lennert Buytenhek <kernel@wantstofly.org>
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 S:      Maintained
1492
1493 ARM/INTEL IOP33X ARM ARCHITECTURE
1494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1495 S:      Orphan
1496
1497 ARM/INTEL IQ81342EX MACHINE SUPPORT
1498 M:      Lennert Buytenhek <kernel@wantstofly.org>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501
1502 ARM/INTEL IXDP2850 MACHINE SUPPORT
1503 M:      Lennert Buytenhek <kernel@wantstofly.org>
1504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1505 S:      Maintained
1506
1507 ARM/INTEL IXP4XX ARM ARCHITECTURE
1508 M:      Imre Kaloz <kaloz@openwrt.org>
1509 M:      Krzysztof Halasa <khalasa@piap.pl>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512 F:      arch/arm/mach-ixp4xx/
1513
1514 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1515 M:      Jonathan Cameron <jic23@cam.ac.uk>
1516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1517 S:      Maintained
1518 F:      arch/arm/mach-pxa/stargate2.c
1519 F:      drivers/pcmcia/pxa2xx_stargate2.c
1520
1521 ARM/INTEL XSC3 (MANZANO) ARM CORE
1522 M:      Lennert Buytenhek <kernel@wantstofly.org>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 S:      Maintained
1525
1526 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1527 M:      Lennert Buytenhek <kernel@wantstofly.org>
1528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1529 S:      Maintained
1530
1531 ARM/LG1K ARCHITECTURE
1532 M:      Chanho Min <chanho.min@lge.com>
1533 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1534 S:      Maintained
1535 F:      arch/arm64/boot/dts/lg/
1536
1537 ARM/LOGICPD PXA270 MACHINE SUPPORT
1538 M:      Lennert Buytenhek <kernel@wantstofly.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541
1542 ARM/LPC18XX ARCHITECTURE
1543 M:      Joachim Eastwood <manabian@gmail.com>
1544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1545 S:      Maintained
1546 F:      arch/arm/boot/dts/lpc43*
1547 F:      drivers/clk/nxp/clk-lpc18xx*
1548 F:      drivers/clocksource/time-lpc32xx.c
1549 F:      drivers/i2c/busses/i2c-lpc2k.c
1550 F:      drivers/memory/pl172.c
1551 F:      drivers/mtd/spi-nor/nxp-spifi.c
1552 F:      drivers/rtc/rtc-lpc24xx.c
1553 N:      lpc18xx
1554
1555 ARM/LPC32XX SOC SUPPORT
1556 M:      Vladimir Zapolskiy <vz@mleia.com>
1557 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1560 S:      Maintained
1561 F:      arch/arm/boot/dts/lpc32*
1562 F:      arch/arm/mach-lpc32xx/
1563 F:      drivers/i2c/busses/i2c-pnx.c
1564 F:      drivers/net/ethernet/nxp/lpc_eth.c
1565 F:      drivers/usb/host/ohci-nxp.c
1566 F:      drivers/watchdog/pnx4008_wdt.c
1567 N:      lpc32xx
1568
1569 ARM/MAGICIAN MACHINE SUPPORT
1570 M:      Philipp Zabel <philipp.zabel@gmail.com>
1571 S:      Maintained
1572
1573 ARM/Marvell Berlin SoC support
1574 M:      Jisheng Zhang <jszhang@marvell.com>
1575 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1576 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1577 S:      Maintained
1578 F:      arch/arm/mach-berlin/
1579 F:      arch/arm/boot/dts/berlin*
1580 F:      arch/arm64/boot/dts/marvell/berlin*
1581
1582 ARM/Marvell Dove/MV78xx0/Orion SOC support
1583 M:      Jason Cooper <jason@lakedaemon.net>
1584 M:      Andrew Lunn <andrew@lunn.ch>
1585 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1586 M:      Gregory Clement <gregory.clement@bootlin.com>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589 F:      Documentation/devicetree/bindings/soc/dove/
1590 F:      arch/arm/mach-dove/
1591 F:      arch/arm/mach-mv78xx0/
1592 F:      arch/arm/mach-orion5x/
1593 F:      arch/arm/plat-orion/
1594 F:      arch/arm/boot/dts/dove*
1595 F:      arch/arm/boot/dts/orion5x*
1596
1597 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1598 M:      Jason Cooper <jason@lakedaemon.net>
1599 M:      Andrew Lunn <andrew@lunn.ch>
1600 M:      Gregory Clement <gregory.clement@bootlin.com>
1601 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1603 S:      Maintained
1604 F:      arch/arm/boot/dts/armada*
1605 F:      arch/arm/boot/dts/kirkwood*
1606 F:      arch/arm/configs/mvebu_*_defconfig
1607 F:      arch/arm/mach-mvebu/
1608 F:      arch/arm64/boot/dts/marvell/armada*
1609 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1610 F:      drivers/cpufreq/mvebu-cpufreq.c
1611 F:      drivers/irqchip/irq-armada-370-xp.c
1612 F:      drivers/irqchip/irq-mvebu-*
1613 F:      drivers/pinctrl/mvebu/
1614 F:      drivers/rtc/rtc-armada38x.c
1615
1616 ARM/Mediatek RTC DRIVER
1617 M:      Eddie Huang <eddie.huang@mediatek.com>
1618 M:      Sean Wang <sean.wang@mediatek.com>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1623 F:      drivers/rtc/rtc-mt6397.c
1624 F:      drivers/rtc/rtc-mt7622.c
1625
1626 ARM/Mediatek SoC support
1627 M:      Matthias Brugger <matthias.bgg@gmail.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1630 S:      Maintained
1631 F:      arch/arm/boot/dts/mt6*
1632 F:      arch/arm/boot/dts/mt7*
1633 F:      arch/arm/boot/dts/mt8*
1634 F:      arch/arm/mach-mediatek/
1635 F:      arch/arm64/boot/dts/mediatek/
1636 N:      mtk
1637 K:      mediatek
1638
1639 ARM/Mediatek USB3 PHY DRIVER
1640 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1642 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      drivers/phy/mediatek/phy-mtk-tphy.c
1645
1646 ARM/MICREL KS8695 ARCHITECTURE
1647 M:      Greg Ungerer <gerg@uclinux.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 F:      arch/arm/mach-ks8695/
1650 S:      Odd Fixes
1651
1652 ARM/MIOA701 MACHINE SUPPORT
1653 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 F:      arch/arm/mach-pxa/mioa701.c
1656 S:      Maintained
1657
1658 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1659 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1660 S:      Maintained
1661
1662 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1663 M:      Linus Walleij <linus.walleij@linaro.org>
1664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1665 S:      Maintained
1666 F:      arch/arm/mach-nomadik/
1667 F:      arch/arm/mach-u300/
1668 F:      arch/arm/mach-ux500/
1669 F:      arch/arm/boot/dts/ste-*
1670 F:      drivers/clk/clk-nomadik.c
1671 F:      drivers/clk/clk-u300.c
1672 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1673 F:      drivers/clocksource/timer-u300.c
1674 F:      drivers/dma/coh901318*
1675 F:      drivers/dma/ste_dma40*
1676 F:      drivers/hwspinlock/u8500_hsem.c
1677 F:      drivers/i2c/busses/i2c-nomadik.c
1678 F:      drivers/i2c/busses/i2c-stu300.c
1679 F:      drivers/mfd/ab3100*
1680 F:      drivers/mfd/ab8500*
1681 F:      drivers/mfd/abx500*
1682 F:      drivers/mfd/dbx500*
1683 F:      drivers/mfd/db8500*
1684 F:      drivers/pinctrl/nomadik/
1685 F:      drivers/pinctrl/pinctrl-coh901*
1686 F:      drivers/pinctrl/pinctrl-u300.c
1687 F:      drivers/rtc/rtc-ab3100.c
1688 F:      drivers/rtc/rtc-ab8500.c
1689 F:      drivers/rtc/rtc-coh901331.c
1690 F:      drivers/rtc/rtc-pl031.c
1691 F:      drivers/watchdog/coh901327_wdt.c
1692 F:      Documentation/devicetree/bindings/arm/ste-*
1693 F:      Documentation/devicetree/bindings/arm/ux500/
1694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1695
1696 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1697 M:      Wan ZongShun <mcuos.com@gmail.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 W:      http://www.mcuos.com
1700 S:      Maintained
1701 F:      arch/arm/mach-w90x900/
1702 F:      drivers/input/keyboard/w90p910_keypad.c
1703 F:      drivers/input/touchscreen/w90p910_ts.c
1704 F:      drivers/watchdog/nuc900_wdt.c
1705 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1706 F:      drivers/mtd/nand/nuc900_nand.c
1707 F:      drivers/rtc/rtc-nuc900.c
1708 F:      drivers/spi/spi-nuc900.c
1709 F:      drivers/usb/host/ehci-w90x900.c
1710 F:      drivers/video/fbdev/nuc900fb.c
1711
1712 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1713 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1714 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1715 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1716 S:      Supported
1717
1718 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1719 M:      Alexander Clouter <alex@digriz.org.uk>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 W:      http://www.digriz.org.uk/ts78xx/kernel
1722 S:      Maintained
1723 F:      arch/arm/mach-orion5x/ts78xx-*
1724
1725 ARM/OXNAS platform support
1726 M:      Neil Armstrong <narmstrong@baylibre.com>
1727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1728 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1729 S:      Maintained
1730 F:      arch/arm/mach-oxnas/
1731 F:      arch/arm/boot/dts/ox8*.dts*
1732 N:      oxnas
1733
1734 ARM/PALM TREO SUPPORT
1735 M:      Tomas Cech <sleep_walker@suse.com>
1736 L:      linux-arm-kernel@lists.infradead.org
1737 W:      http://hackndev.com
1738 S:      Maintained
1739 F:      arch/arm/mach-pxa/palmtreo.*
1740
1741 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1742 M:      Marek Vasut <marek.vasut@gmail.com>
1743 L:      linux-arm-kernel@lists.infradead.org
1744 W:      http://hackndev.com
1745 S:      Maintained
1746 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1747 F:      arch/arm/mach-pxa/palmtx.c
1748 F:      arch/arm/mach-pxa/palmt5.*
1749 F:      arch/arm/mach-pxa/include/mach/palmld.h
1750 F:      arch/arm/mach-pxa/palmld.c
1751 F:      arch/arm/mach-pxa/palmte2.*
1752 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1753 F:      arch/arm/mach-pxa/palmtc.c
1754
1755 ARM/PALMZ72 SUPPORT
1756 M:      Sergey Lapin <slapin@ossfans.org>
1757 L:      linux-arm-kernel@lists.infradead.org
1758 W:      http://hackndev.com
1759 S:      Maintained
1760 F:      arch/arm/mach-pxa/palmz72.*
1761
1762 ARM/PLEB SUPPORT
1763 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1764 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1765 S:      Maintained
1766
1767 ARM/PT DIGITAL BOARD PORT
1768 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 W:      http://www.armlinux.org.uk/
1771 S:      Maintained
1772
1773 ARM/QUALCOMM SUPPORT
1774 M:      Andy Gross <andy.gross@linaro.org>
1775 M:      David Brown <david.brown@linaro.org>
1776 L:      linux-arm-msm@vger.kernel.org
1777 L:      linux-soc@vger.kernel.org
1778 S:      Maintained
1779 F:      Documentation/devicetree/bindings/soc/qcom/
1780 F:      arch/arm/boot/dts/qcom-*.dts
1781 F:      arch/arm/boot/dts/qcom-*.dtsi
1782 F:      arch/arm/mach-qcom/
1783 F:      arch/arm64/boot/dts/qcom/*
1784 F:      drivers/i2c/busses/i2c-qup.c
1785 F:      drivers/clk/qcom/
1786 F:      drivers/dma/qcom/
1787 F:      drivers/soc/qcom/
1788 F:      drivers/spi/spi-qup.c
1789 F:      drivers/tty/serial/msm_serial.c
1790 F:      drivers/*/pm8???-*
1791 F:      drivers/mfd/ssbi.c
1792 F:      drivers/firmware/qcom_scm.c
1793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1794
1795 ARM/RADISYS ENP2611 MACHINE SUPPORT
1796 M:      Lennert Buytenhek <kernel@wantstofly.org>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799
1800 ARM/REALTEK ARCHITECTURE
1801 M:      Andreas Färber <afaerber@suse.de>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Maintained
1804 F:      arch/arm64/boot/dts/realtek/
1805 F:      Documentation/devicetree/bindings/arm/realtek.txt
1806
1807 ARM/RENESAS ARM64 ARCHITECTURE
1808 M:      Simon Horman <horms@verge.net.au>
1809 M:      Magnus Damm <magnus.damm@gmail.com>
1810 L:      linux-renesas-soc@vger.kernel.org
1811 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1813 S:      Supported
1814 F:      arch/arm64/boot/dts/renesas/
1815 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1816 F:      drivers/soc/renesas/
1817 F:      include/linux/soc/renesas/
1818
1819 ARM/RISCPC ARCHITECTURE
1820 M:      Russell King <linux@armlinux.org.uk>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 W:      http://www.armlinux.org.uk/
1823 S:      Maintained
1824 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1825 F:      arch/arm/include/asm/hardware/ioc.h
1826 F:      arch/arm/include/asm/hardware/iomd.h
1827 F:      arch/arm/include/asm/hardware/memc.h
1828 F:      arch/arm/mach-rpc/
1829 F:      drivers/net/ethernet/8390/etherh.c
1830 F:      drivers/net/ethernet/i825xx/ether1*
1831 F:      drivers/net/ethernet/seeq/ether3*
1832 F:      drivers/scsi/arm/
1833
1834 ARM/Rockchip SoC support
1835 M:      Heiko Stuebner <heiko@sntech.de>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 L:      linux-rockchip@lists.infradead.org
1838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1839 S:      Maintained
1840 F:      arch/arm/boot/dts/rk3*
1841 F:      arch/arm/boot/dts/rv1108*
1842 F:      arch/arm/mach-rockchip/
1843 F:      drivers/clk/rockchip/
1844 F:      drivers/i2c/busses/i2c-rk3x.c
1845 F:      drivers/*/*rockchip*
1846 F:      drivers/*/*/*rockchip*
1847 F:      sound/soc/rockchip/
1848 N:      rockchip
1849
1850 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1851 M:      Kukjin Kim <kgene@kernel.org>
1852 M:      Krzysztof Kozlowski <krzk@kernel.org>
1853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1854 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1855 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1856 S:      Maintained
1857 F:      arch/arm/boot/dts/s3c*
1858 F:      arch/arm/boot/dts/s5p*
1859 F:      arch/arm/boot/dts/samsung*
1860 F:      arch/arm/boot/dts/exynos*
1861 F:      arch/arm64/boot/dts/exynos/
1862 F:      arch/arm/plat-samsung/
1863 F:      arch/arm/mach-s3c24*/
1864 F:      arch/arm/mach-s3c64xx/
1865 F:      arch/arm/mach-s5p*/
1866 F:      arch/arm/mach-exynos*/
1867 F:      drivers/*/*s3c24*
1868 F:      drivers/*/*/*s3c24*
1869 F:      drivers/*/*s3c64xx*
1870 F:      drivers/*/*s5pv210*
1871 F:      drivers/memory/samsung/*
1872 F:      drivers/soc/samsung/*
1873 F:      Documentation/arm/Samsung/
1874 F:      Documentation/devicetree/bindings/arm/samsung/
1875 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1876 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1877 N:      exynos
1878
1879 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1880 M:      Kyungmin Park <kyungmin.park@samsung.com>
1881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1882 S:      Maintained
1883 F:      arch/arm/mach-s5pv210/
1884
1885 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1886 M:      Kyungmin Park <kyungmin.park@samsung.com>
1887 M:      Kamil Debski <kamil@wypas.org>
1888 M:      Andrzej Hajda <a.hajda@samsung.com>
1889 L:      linux-arm-kernel@lists.infradead.org
1890 L:      linux-media@vger.kernel.org
1891 S:      Maintained
1892 F:      drivers/media/platform/s5p-g2d/
1893
1894 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1895 M:      Marek Szyprowski <m.szyprowski@samsung.com>
1896 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1897 L:      linux-media@vger.kernel.org
1898 S:      Maintained
1899 F:      drivers/media/platform/s5p-cec/
1900 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
1901
1902 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1903 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1904 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
1905 L:      linux-arm-kernel@lists.infradead.org
1906 L:      linux-media@vger.kernel.org
1907 S:      Maintained
1908 F:      drivers/media/platform/s5p-jpeg/
1909
1910 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1911 M:      Kyungmin Park <kyungmin.park@samsung.com>
1912 M:      Kamil Debski <kamil@wypas.org>
1913 M:      Jeongtae Park <jtp.park@samsung.com>
1914 M:      Andrzej Hajda <a.hajda@samsung.com>
1915 L:      linux-arm-kernel@lists.infradead.org
1916 L:      linux-media@vger.kernel.org
1917 S:      Maintained
1918 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1919 F:      drivers/media/platform/s5p-mfc/
1920
1921 ARM/SHMOBILE ARM ARCHITECTURE
1922 M:      Simon Horman <horms@verge.net.au>
1923 M:      Magnus Damm <magnus.damm@gmail.com>
1924 L:      linux-renesas-soc@vger.kernel.org
1925 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1927 S:      Supported
1928 F:      arch/arm/boot/dts/emev2*
1929 F:      arch/arm/boot/dts/r7s*
1930 F:      arch/arm/boot/dts/r8a*
1931 F:      arch/arm/boot/dts/sh*
1932 F:      arch/arm/configs/shmobile_defconfig
1933 F:      arch/arm/include/debug/renesas-scif.S
1934 F:      arch/arm/mach-shmobile/
1935 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1936 F:      drivers/soc/renesas/
1937 F:      include/linux/soc/renesas/
1938
1939 ARM/SOCFPGA ARCHITECTURE
1940 M:      Dinh Nguyen <dinguyen@kernel.org>
1941 S:      Maintained
1942 F:      arch/arm/mach-socfpga/
1943 F:      arch/arm/boot/dts/socfpga*
1944 F:      arch/arm/configs/socfpga_defconfig
1945 F:      arch/arm64/boot/dts/altera/
1946 W:      http://www.rocketboards.org
1947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1948
1949 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1950 M:      Dinh Nguyen <dinguyen@kernel.org>
1951 S:      Maintained
1952 F:      drivers/clk/socfpga/
1953
1954 ARM/SOCFPGA EDAC SUPPORT
1955 M:      Thor Thayer <thor.thayer@linux.intel.com>
1956 S:      Maintained
1957 F:      drivers/edac/altera_edac.
1958
1959 ARM/STI ARCHITECTURE
1960 M:      Patrice Chotard <patrice.chotard@st.com>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 W:      http://www.stlinux.com
1963 S:      Maintained
1964 F:      arch/arm/mach-sti/
1965 F:      arch/arm/boot/dts/sti*
1966 F:      drivers/char/hw_random/st-rng.c
1967 F:      drivers/clocksource/arm_global_timer.c
1968 F:      drivers/clocksource/clksrc_st_lpc.c
1969 F:      drivers/cpufreq/sti-cpufreq.c
1970 F:      drivers/dma/st_fdma*
1971 F:      drivers/i2c/busses/i2c-st.c
1972 F:      drivers/media/rc/st_rc.c
1973 F:      drivers/media/platform/sti/c8sectpfe/
1974 F:      drivers/mmc/host/sdhci-st.c
1975 F:      drivers/phy/st/phy-miphy28lp.c
1976 F:      drivers/phy/st/phy-stih407-usb.c
1977 F:      drivers/pinctrl/pinctrl-st.c
1978 F:      drivers/remoteproc/st_remoteproc.c
1979 F:      drivers/remoteproc/st_slim_rproc.c
1980 F:      drivers/reset/sti/
1981 F:      drivers/rtc/rtc-st-lpc.c
1982 F:      drivers/tty/serial/st-asc.c
1983 F:      drivers/usb/dwc3/dwc3-st.c
1984 F:      drivers/usb/host/ehci-st.c
1985 F:      drivers/usb/host/ohci-st.c
1986 F:      drivers/watchdog/st_lpc_wdt.c
1987 F:      drivers/ata/ahci_st.c
1988 F:      include/linux/remoteproc/st_slim_rproc.h
1989
1990 ARM/STM32 ARCHITECTURE
1991 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1992 M:      Alexandre Torgue <alexandre.torgue@st.com>
1993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1994 S:      Maintained
1995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
1996 N:      stm32
1997 F:      arch/arm/boot/dts/stm32*
1998 F:      arch/arm/mach-stm32/
1999 F:      drivers/clocksource/armv7m_systick.c
2000
2001 ARM/TANGO ARCHITECTURE
2002 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2003 M:      Mans Rullgard <mans@mansr.com>
2004 L:      linux-arm-kernel@lists.infradead.org
2005 S:      Odd Fixes
2006 N:      tango
2007
2008 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2009 M:      Lennert Buytenhek <kernel@wantstofly.org>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012
2013 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2014 M:      Hans Verkuil <hans.verkuil@cisco.com>
2015 L:      linux-tegra@vger.kernel.org
2016 L:      linux-media@vger.kernel.org
2017 S:      Maintained
2018 F:      drivers/media/platform/tegra-cec/
2019 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2020
2021 ARM/TETON BGA MACHINE SUPPORT
2022 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025
2026 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2027 M:      Santosh Shilimkar <ssantosh@kernel.org>
2028 L:      linux-kernel@vger.kernel.org
2029 S:      Maintained
2030 F:      drivers/memory/*emif*
2031
2032 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2033 M:      Santosh Shilimkar <ssantosh@kernel.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/mach-keystone/
2037 F:      arch/arm/boot/dts/keystone-*
2038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2039
2040 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2041 M:      Santosh Shilimkar <ssantosh@kernel.org>
2042 L:      linux-kernel@vger.kernel.org
2043 S:      Maintained
2044 F:      drivers/clk/keystone/
2045
2046 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2047 M:      Santosh Shilimkar <ssantosh@kernel.org>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 L:      linux-kernel@vger.kernel.org
2050 S:      Maintained
2051 F:      drivers/clocksource/timer-keystone.c
2052
2053 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2054 M:      Santosh Shilimkar <ssantosh@kernel.org>
2055 L:      linux-kernel@vger.kernel.org
2056 S:      Maintained
2057 F:      drivers/power/reset/keystone-reset.c
2058
2059 ARM/THECUS N2100 MACHINE SUPPORT
2060 M:      Lennert Buytenhek <kernel@wantstofly.org>
2061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2062 S:      Maintained
2063
2064 ARM/TOSA MACHINE SUPPORT
2065 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2066 M:      Dirk Opfer <dirk@opfer-online.de>
2067 S:      Maintained
2068
2069 ARM/UNIPHIER ARCHITECTURE
2070 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2073 S:      Maintained
2074 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2075 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2076 F:      arch/arm/boot/dts/uniphier*
2077 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2078 F:      arch/arm/mach-uniphier/
2079 F:      arch/arm/mm/cache-uniphier.c
2080 F:      arch/arm64/boot/dts/socionext/uniphier*
2081 F:      drivers/bus/uniphier-system-bus.c
2082 F:      drivers/clk/uniphier/
2083 F:      drivers/gpio/gpio-uniphier.c
2084 F:      drivers/i2c/busses/i2c-uniphier*
2085 F:      drivers/irqchip/irq-uniphier-aidet.c
2086 F:      drivers/pinctrl/uniphier/
2087 F:      drivers/reset/reset-uniphier.c
2088 F:      drivers/tty/serial/8250/8250_uniphier.c
2089 N:      uniphier
2090
2091 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2092 M:      Ulf Hansson <ulf.hansson@linaro.org>
2093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 T:      git git://git.linaro.org/people/ulfh/clk.git
2095 S:      Maintained
2096 F:      drivers/clk/ux500/
2097
2098 ARM/VERSATILE EXPRESS PLATFORM
2099 M:      Liviu Dudau <liviu.dudau@arm.com>
2100 M:      Sudeep Holla <sudeep.holla@arm.com>
2101 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 F:      arch/arm/boot/dts/vexpress*
2105 F:      arch/arm64/boot/dts/arm/
2106 F:      arch/arm/mach-vexpress/
2107 F:      */*/vexpress*
2108 F:      */*/*/vexpress*
2109 F:      drivers/clk/versatile/clk-vexpress-osc.c
2110 F:      drivers/clocksource/versatile.c
2111 N:      mps2
2112
2113 ARM/VFP SUPPORT
2114 M:      Russell King <linux@armlinux.org.uk>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 W:      http://www.armlinux.org.uk/
2117 S:      Maintained
2118 F:      arch/arm/vfp/
2119
2120 ARM/VOIPAC PXA270 SUPPORT
2121 M:      Marek Vasut <marek.vasut@gmail.com>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Maintained
2124 F:      arch/arm/mach-pxa/vpac270.c
2125 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2126
2127 ARM/VT8500 ARM ARCHITECTURE
2128 M:      Tony Prisk <linux@prisktech.co.nz>
2129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2130 S:      Maintained
2131 F:      arch/arm/mach-vt8500/
2132 F:      drivers/clocksource/vt8500_timer.c
2133 F:      drivers/i2c/busses/i2c-wmt.c
2134 F:      drivers/mmc/host/wmt-sdmmc.c
2135 F:      drivers/pwm/pwm-vt8500.c
2136 F:      drivers/rtc/rtc-vt8500.c
2137 F:      drivers/tty/serial/vt8500_serial.c
2138 F:      drivers/usb/host/ehci-platform.c
2139 F:      drivers/usb/host/uhci-platform.c
2140 F:      drivers/video/fbdev/vt8500lcdfb.*
2141 F:      drivers/video/fbdev/wm8505fb*
2142 F:      drivers/video/fbdev/wmt_ge_rops.*
2143
2144 ARM/ZIPIT Z2 SUPPORT
2145 M:      Marek Vasut <marek.vasut@gmail.com>
2146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2147 S:      Maintained
2148 F:      arch/arm/mach-pxa/z2.c
2149 F:      arch/arm/mach-pxa/include/mach/z2.h
2150
2151 ARM/ZTE ARCHITECTURE
2152 M:      Jun Nie <jun.nie@linaro.org>
2153 M:      Baoyou Xie <baoyou.xie@linaro.org>
2154 M:      Shawn Guo <shawnguo@kernel.org>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 F:      arch/arm/boot/dts/zx2967*
2158 F:      arch/arm/mach-zx/
2159 F:      arch/arm64/boot/dts/zte/
2160 F:      drivers/clk/zte/
2161 F:      drivers/dma/zx_dma.c
2162 F:      drivers/gpio/gpio-zx.c
2163 F:      drivers/i2c/busses/i2c-zx2967.c
2164 F:      drivers/mmc/host/dw_mmc-zx.*
2165 F:      drivers/pinctrl/zte/
2166 F:      drivers/soc/zte/
2167 F:      drivers/thermal/zx2967_thermal.c
2168 F:      drivers/watchdog/zx2967_wdt.c
2169 F:      Documentation/devicetree/bindings/arm/zte.txt
2170 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2171 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2172 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2173 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2174 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2175 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2176 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2177 F:      Documentation/devicetree/bindings/soc/zte/
2178 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2179 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2180 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2181 F:      include/dt-bindings/clock/zx2967*.h
2182 F:      include/dt-bindings/soc/zte,*.h
2183 F:      sound/soc/codecs/zx_aud96p22.c
2184 F:      sound/soc/zte/
2185
2186 ARM/ZYNQ ARCHITECTURE
2187 M:      Michal Simek <michal.simek@xilinx.com>
2188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2189 W:      http://wiki.xilinx.com
2190 T:      git https://github.com/Xilinx/linux-xlnx.git
2191 S:      Supported
2192 F:      arch/arm/mach-zynq/
2193 F:      drivers/cpuidle/cpuidle-zynq.c
2194 F:      drivers/block/xsysace.c
2195 N:      zynq
2196 N:      xilinx
2197 F:      drivers/clocksource/cadence_ttc_timer.c
2198 F:      drivers/i2c/busses/i2c-cadence.c
2199 F:      drivers/mmc/host/sdhci-of-arasan.c
2200 F:      drivers/edac/synopsys_edac.c
2201
2202 ARM64 PORT (AARCH64 ARCHITECTURE)
2203 M:      Catalin Marinas <catalin.marinas@arm.com>
2204 M:      Will Deacon <will.deacon@arm.com>
2205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2207 S:      Maintained
2208 F:      arch/arm64/
2209 F:      Documentation/arm64/
2210
2211 AS3645A LED FLASH CONTROLLER DRIVER
2212 M:      Sakari Ailus <sakari.ailus@iki.fi>
2213 L:      linux-leds@vger.kernel.org
2214 S:      Maintained
2215 F:      drivers/leds/leds-as3645a.c
2216
2217 ASAHI KASEI AK8974 DRIVER
2218 M:      Linus Walleij <linus.walleij@linaro.org>
2219 L:      linux-iio@vger.kernel.org
2220 W:      http://www.akm.com/
2221 S:      Supported
2222 F:      drivers/iio/magnetometer/ak8974.c
2223
2224 ASC7621 HARDWARE MONITOR DRIVER
2225 M:      George Joseph <george.joseph@fairview5.com>
2226 L:      linux-hwmon@vger.kernel.org
2227 S:      Maintained
2228 F:      Documentation/hwmon/asc7621
2229 F:      drivers/hwmon/asc7621.c
2230
2231 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2232 M:      Corentin Chary <corentin.chary@gmail.com>
2233 L:      acpi4asus-user@lists.sourceforge.net
2234 L:      platform-driver-x86@vger.kernel.org
2235 W:      http://acpi4asus.sf.net
2236 S:      Maintained
2237 F:      drivers/platform/x86/asus*.c
2238 F:      drivers/platform/x86/eeepc*.c
2239
2240 ASUS WIRELESS RADIO CONTROL DRIVER
2241 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2242 L:      platform-driver-x86@vger.kernel.org
2243 S:      Maintained
2244 F:      drivers/platform/x86/asus-wireless.c
2245
2246 ASYMMETRIC KEYS
2247 M:      David Howells <dhowells@redhat.com>
2248 L:      keyrings@vger.kernel.org
2249 S:      Maintained
2250 F:      Documentation/crypto/asymmetric-keys.txt
2251 F:      include/linux/verification.h
2252 F:      include/crypto/public_key.h
2253 F:      include/crypto/pkcs7.h
2254 F:      crypto/asymmetric_keys/
2255
2256 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2257 R:      Dan Williams <dan.j.williams@intel.com>
2258 W:      http://sourceforge.net/projects/xscaleiop
2259 S:      Odd fixes
2260 F:      Documentation/crypto/async-tx-api.txt
2261 F:      crypto/async_tx/
2262 F:      drivers/dma/
2263 F:      include/linux/dmaengine.h
2264 F:      include/linux/async_tx.h
2265
2266 AT24 EEPROM DRIVER
2267 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2268 L:      linux-i2c@vger.kernel.org
2269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2270 S:      Maintained
2271 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2272 F:      drivers/misc/eeprom/at24.c
2273 F:      include/linux/platform_data/at24.h
2274
2275 ATA OVER ETHERNET (AOE) DRIVER
2276 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2277 W:      http://www.openaoe.org/
2278 S:      Supported
2279 F:      Documentation/aoe/
2280 F:      drivers/block/aoe/
2281
2282 ATHEROS 71XX/9XXX GPIO DRIVER
2283 M:      Alban Bedel <albeu@free.fr>
2284 W:      https://github.com/AlbanBedel/linux
2285 T:      git git://github.com/AlbanBedel/linux
2286 S:      Maintained
2287 F:      drivers/gpio/gpio-ath79.c
2288 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2289
2290 ATHEROS ATH GENERIC UTILITIES
2291 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2292 L:      linux-wireless@vger.kernel.org
2293 S:      Supported
2294 F:      drivers/net/wireless/ath/*
2295
2296 ATHEROS ATH5K WIRELESS DRIVER
2297 M:      Jiri Slaby <jirislaby@gmail.com>
2298 M:      Nick Kossifidis <mickflemm@gmail.com>
2299 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2300 L:      linux-wireless@vger.kernel.org
2301 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2302 S:      Maintained
2303 F:      drivers/net/wireless/ath/ath5k/
2304
2305 ATHEROS ATH6KL WIRELESS DRIVER
2306 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2307 L:      linux-wireless@vger.kernel.org
2308 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2310 S:      Supported
2311 F:      drivers/net/wireless/ath/ath6kl/
2312
2313 ATI_REMOTE2 DRIVER
2314 M:      Ville Syrjala <syrjala@sci.fi>
2315 S:      Maintained
2316 F:      drivers/input/misc/ati_remote2.c
2317
2318 ATK0110 HWMON DRIVER
2319 M:      Luca Tettamanti <kronos.it@gmail.com>
2320 L:      linux-hwmon@vger.kernel.org
2321 S:      Maintained
2322 F:      drivers/hwmon/asus_atk0110.c
2323
2324 ATLX ETHERNET DRIVERS
2325 M:      Jay Cliburn <jcliburn@gmail.com>
2326 M:      Chris Snook <chris.snook@gmail.com>
2327 L:      netdev@vger.kernel.org
2328 W:      http://sourceforge.net/projects/atl1
2329 W:      http://atl1.sourceforge.net
2330 S:      Maintained
2331 F:      drivers/net/ethernet/atheros/
2332
2333 ATM
2334 M:      Chas Williams <3chas3@gmail.com>
2335 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2336 L:      netdev@vger.kernel.org
2337 W:      http://linux-atm.sourceforge.net
2338 S:      Maintained
2339 F:      drivers/atm/
2340 F:      include/linux/atm*
2341 F:      include/uapi/linux/atm*
2342
2343 ATMEL AT91 / AT32 MCI DRIVER
2344 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2345 S:      Maintained
2346 F:      drivers/mmc/host/atmel-mci.c
2347
2348 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2349 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2350 S:      Supported
2351 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2352
2353 ATMEL Audio ALSA driver
2354 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2355 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2356 S:      Supported
2357 F:      sound/soc/atmel
2358
2359 ATMEL I2C DRIVER
2360 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2361 L:      linux-i2c@vger.kernel.org
2362 S:      Supported
2363 F:      drivers/i2c/busses/i2c-at91.c
2364
2365 ATMEL ISI DRIVER
2366 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2367 L:      linux-media@vger.kernel.org
2368 S:      Supported
2369 F:      drivers/media/platform/atmel/atmel-isi.c
2370 F:      include/media/atmel-isi.h
2371
2372 ATMEL LCDFB DRIVER
2373 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2374 L:      linux-fbdev@vger.kernel.org
2375 S:      Maintained
2376 F:      drivers/video/fbdev/atmel_lcdfb.c
2377 F:      include/video/atmel_lcdc.h
2378
2379 ATMEL MACB ETHERNET DRIVER
2380 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2381 S:      Supported
2382 F:      drivers/net/ethernet/cadence/
2383
2384 ATMEL MAXTOUCH DRIVER
2385 M:      Nick Dyer <nick@shmanahar.org>
2386 T:      git git://github.com/ndyer/linux.git
2387 S:      Maintained
2388 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2389 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2390 F:      include/linux/platform_data/atmel_mxt_ts.h
2391
2392 ATMEL SAMA5D2 ADC DRIVER
2393 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2394 L:      linux-iio@vger.kernel.org
2395 S:      Supported
2396 F:      drivers/iio/adc/at91-sama5d2_adc.c
2397
2398 ATMEL SDMMC DRIVER
2399 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2400 L:      linux-mmc@vger.kernel.org
2401 S:      Supported
2402 F:      drivers/mmc/host/sdhci-of-at91.c
2403
2404 ATMEL SPI DRIVER
2405 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2406 S:      Supported
2407 F:      drivers/spi/spi-atmel.*
2408
2409 ATMEL SSC DRIVER
2410 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2412 S:      Supported
2413 F:      drivers/misc/atmel-ssc.c
2414 F:      include/linux/atmel-ssc.h
2415
2416 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2417 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2419 S:      Supported
2420 F:      drivers/misc/atmel_tclib.c
2421 F:      drivers/clocksource/tcb_clksrc.c
2422
2423 ATMEL USBA UDC DRIVER
2424 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2426 S:      Supported
2427 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2428
2429 ATMEL WIRELESS DRIVER
2430 M:      Simon Kelley <simon@thekelleys.org.uk>
2431 L:      linux-wireless@vger.kernel.org
2432 W:      http://www.thekelleys.org.uk/atmel
2433 W:      http://atmelwlandriver.sourceforge.net/
2434 S:      Maintained
2435 F:      drivers/net/wireless/atmel/atmel*
2436
2437 ATMEL XDMA DRIVER
2438 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2439 L:      linux-arm-kernel@lists.infradead.org
2440 L:      dmaengine@vger.kernel.org
2441 S:      Supported
2442 F:      drivers/dma/at_xdmac.c
2443
2444 ATOMIC INFRASTRUCTURE
2445 M:      Will Deacon <will.deacon@arm.com>
2446 M:      Peter Zijlstra <peterz@infradead.org>
2447 R:      Boqun Feng <boqun.feng@gmail.com>
2448 L:      linux-kernel@vger.kernel.org
2449 S:      Maintained
2450 F:      arch/*/include/asm/atomic*.h
2451 F:      include/*/atomic*.h
2452
2453 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2454 M:      Bradley Grove <linuxdrivers@attotech.com>
2455 L:      linux-scsi@vger.kernel.org
2456 W:      http://www.attotech.com
2457 S:      Supported
2458 F:      drivers/scsi/esas2r
2459
2460 ATUSB IEEE 802.15.4 RADIO DRIVER
2461 M:      Stefan Schmidt <stefan@osg.samsung.com>
2462 L:      linux-wpan@vger.kernel.org
2463 S:      Maintained
2464 F:      drivers/net/ieee802154/atusb.c
2465 F:      drivers/net/ieee802154/atusb.h
2466 F:      drivers/net/ieee802154/at86rf230.h
2467
2468 AUDIT SUBSYSTEM
2469 M:      Paul Moore <paul@paul-moore.com>
2470 M:      Eric Paris <eparis@redhat.com>
2471 L:      linux-audit@redhat.com (moderated for non-subscribers)
2472 W:      https://github.com/linux-audit
2473 W:      https://people.redhat.com/sgrubb/audit
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2475 S:      Supported
2476 F:      include/linux/audit.h
2477 F:      include/uapi/linux/audit.h
2478 F:      kernel/audit*
2479
2480 AUXILIARY DISPLAY DRIVERS
2481 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2482 W:      http://miguelojeda.es/auxdisplay.htm
2483 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2484 S:      Maintained
2485 F:      drivers/auxdisplay/
2486 F:      include/linux/cfag12864b.h
2487
2488 AX.25 NETWORK LAYER
2489 M:      Ralf Baechle <ralf@linux-mips.org>
2490 L:      linux-hams@vger.kernel.org
2491 W:      http://www.linux-ax25.org/
2492 S:      Maintained
2493 F:      include/uapi/linux/ax25.h
2494 F:      include/net/ax25.h
2495 F:      net/ax25/
2496
2497 AXENTIA ARM DEVICES
2498 M:      Peter Rosin <peda@axentia.se>
2499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2500 S:      Maintained
2501 F:      Documentation/devicetree/bindings/arm/axentia.txt
2502 F:      arch/arm/boot/dts/at91-linea.dtsi
2503 F:      arch/arm/boot/dts/at91-natte.dtsi
2504 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2505 F:      arch/arm/boot/dts/at91-tse850-3.dts
2506
2507 AXENTIA ASOC DRIVERS
2508 M:      Peter Rosin <peda@axentia.se>
2509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2510 S:      Maintained
2511 F:      Documentation/devicetree/bindings/sound/axentia,*
2512 F:      sound/soc/atmel/tse850-pcm5142.c
2513
2514 AZ6007 DVB DRIVER
2515 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2516 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2517 L:      linux-media@vger.kernel.org
2518 W:      https://linuxtv.org
2519 T:      git git://linuxtv.org/media_tree.git
2520 S:      Maintained
2521 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2522
2523 AZTECH FM RADIO RECEIVER DRIVER
2524 M:      Hans Verkuil <hverkuil@xs4all.nl>
2525 L:      linux-media@vger.kernel.org
2526 T:      git git://linuxtv.org/media_tree.git
2527 W:      https://linuxtv.org
2528 S:      Maintained
2529 F:      drivers/media/radio/radio-aztech*
2530
2531 B43 WIRELESS DRIVER
2532 L:      linux-wireless@vger.kernel.org
2533 L:      b43-dev@lists.infradead.org
2534 W:      http://wireless.kernel.org/en/users/Drivers/b43
2535 S:      Odd Fixes
2536 F:      drivers/net/wireless/broadcom/b43/
2537
2538 B43LEGACY WIRELESS DRIVER
2539 M:      Larry Finger <Larry.Finger@lwfinger.net>
2540 L:      linux-wireless@vger.kernel.org
2541 L:      b43-dev@lists.infradead.org
2542 W:      http://wireless.kernel.org/en/users/Drivers/b43
2543 S:      Maintained
2544 F:      drivers/net/wireless/broadcom/b43legacy/
2545
2546 BACKLIGHT CLASS/SUBSYSTEM
2547 M:      Lee Jones <lee.jones@linaro.org>
2548 M:      Daniel Thompson <daniel.thompson@linaro.org>
2549 M:      Jingoo Han <jingoohan1@gmail.com>
2550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2551 S:      Maintained
2552 F:      drivers/video/backlight/
2553 F:      include/linux/backlight.h
2554 F:      include/linux/pwm_backlight.h
2555 F:      Documentation/devicetree/bindings/leds/backlight
2556
2557 BATMAN ADVANCED
2558 M:      Marek Lindner <mareklindner@neomailbox.ch>
2559 M:      Simon Wunderlich <sw@simonwunderlich.de>
2560 M:      Antonio Quartulli <a@unstable.cc>
2561 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2562 W:      https://www.open-mesh.org/
2563 Q:      https://patchwork.open-mesh.org/project/batman/list/
2564 S:      Maintained
2565 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2566 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2567 F:      Documentation/networking/batman-adv.rst
2568 F:      include/uapi/linux/batadv_packet.h
2569 F:      include/uapi/linux/batman_adv.h
2570 F:      net/batman-adv/
2571
2572 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2573 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2574 L:      linux-hams@vger.kernel.org
2575 W:      http://www.baycom.org/~tom/ham/ham.html
2576 S:      Maintained
2577 F:      drivers/net/hamradio/baycom*
2578
2579 BCACHE (BLOCK LAYER CACHE)
2580 M:      Michael Lyle <mlyle@lyle.org>
2581 M:      Kent Overstreet <kent.overstreet@gmail.com>
2582 L:      linux-bcache@vger.kernel.org
2583 W:      http://bcache.evilpiepirate.org
2584 C:      irc://irc.oftc.net/bcache
2585 S:      Maintained
2586 F:      drivers/md/bcache/
2587
2588 BDISP ST MEDIA DRIVER
2589 M:      Fabien Dessenne <fabien.dessenne@st.com>
2590 L:      linux-media@vger.kernel.org
2591 T:      git git://linuxtv.org/media_tree.git
2592 W:      https://linuxtv.org
2593 S:      Supported
2594 F:      drivers/media/platform/sti/bdisp
2595
2596 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2597 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2598 L:      netdev@vger.kernel.org
2599 S:      Maintained
2600 F:      drivers/net/ethernet/ec_bhf.c
2601
2602 BEFS FILE SYSTEM
2603 M:      Luis de Bethencourt <luisbg@kernel.org>
2604 M:      Salah Triki <salah.triki@gmail.com>
2605 S:      Maintained
2606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2607 F:      Documentation/filesystems/befs.txt
2608 F:      fs/befs/
2609
2610 BFQ I/O SCHEDULER
2611 M:      Paolo Valente <paolo.valente@linaro.org>
2612 M:      Jens Axboe <axboe@kernel.dk>
2613 L:      linux-block@vger.kernel.org
2614 S:      Maintained
2615 F:      block/bfq-*
2616 F:      Documentation/block/bfq-iosched.txt
2617
2618 BFS FILE SYSTEM
2619 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2620 S:      Maintained
2621 F:      Documentation/filesystems/bfs.txt
2622 F:      fs/bfs/
2623 F:      include/uapi/linux/bfs_fs.h
2624
2625 BLACKFIN ARCHITECTURE
2626 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2627 T:      git git://git.code.sf.net/p/adi-linux/code
2628 W:      http://blackfin.uclinux.org
2629 S:      Orphan
2630 F:      arch/blackfin/
2631
2632 BLACKFIN EMAC DRIVER
2633 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2634 W:      http://blackfin.uclinux.org
2635 S:      Orphan
2636 F:      drivers/net/ethernet/adi/
2637
2638 BLACKFIN MEDIA DRIVER
2639 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2640 W:      http://blackfin.uclinux.org/
2641 S:      Orphan
2642 F:      drivers/media/platform/blackfin/
2643 F:      drivers/media/i2c/adv7183*
2644 F:      drivers/media/i2c/vs6624*
2645
2646 BLACKFIN RTC DRIVER
2647 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2648 W:      http://blackfin.uclinux.org
2649 S:      Orphan
2650 F:      drivers/rtc/rtc-bfin.c
2651
2652 BLACKFIN SDH DRIVER
2653 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2654 W:      http://blackfin.uclinux.org
2655 S:      Orphan
2656 F:      drivers/mmc/host/bfin_sdh.c
2657
2658 BLACKFIN SERIAL DRIVER
2659 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2660 W:      http://blackfin.uclinux.org
2661 S:      Orphan
2662 F:      drivers/tty/serial/bfin_uart.c
2663
2664 BLACKFIN WATCHDOG DRIVER
2665 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2666 W:      http://blackfin.uclinux.org
2667 S:      Orphan
2668 F:      drivers/watchdog/bfin_wdt.c
2669
2670 BLINKM RGB LED DRIVER
2671 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2672 S:      Maintained
2673 F:      drivers/leds/leds-blinkm.c
2674
2675 BLOCK LAYER
2676 M:      Jens Axboe <axboe@kernel.dk>
2677 L:      linux-block@vger.kernel.org
2678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2679 S:      Maintained
2680 F:      block/
2681 F:      kernel/trace/blktrace.c
2682 F:      lib/sbitmap.c
2683
2684 BLOCK2MTD DRIVER
2685 M:      Joern Engel <joern@lazybastard.org>
2686 L:      linux-mtd@lists.infradead.org
2687 S:      Maintained
2688 F:      drivers/mtd/devices/block2mtd.c
2689
2690 BLUETOOTH DRIVERS
2691 M:      Marcel Holtmann <marcel@holtmann.org>
2692 M:      Johan Hedberg <johan.hedberg@gmail.com>
2693 L:      linux-bluetooth@vger.kernel.org
2694 W:      http://www.bluez.org/
2695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2697 S:      Maintained
2698 F:      drivers/bluetooth/
2699
2700 BLUETOOTH SUBSYSTEM
2701 M:      Marcel Holtmann <marcel@holtmann.org>
2702 M:      Johan Hedberg <johan.hedberg@gmail.com>
2703 L:      linux-bluetooth@vger.kernel.org
2704 W:      http://www.bluez.org/
2705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2707 S:      Maintained
2708 F:      net/bluetooth/
2709 F:      include/net/bluetooth/
2710
2711 BONDING DRIVER
2712 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2713 M:      Veaceslav Falico <vfalico@gmail.com>
2714 M:      Andy Gospodarek <andy@greyhouse.net>
2715 L:      netdev@vger.kernel.org
2716 W:      http://sourceforge.net/projects/bonding/
2717 S:      Supported
2718 F:      drivers/net/bonding/
2719 F:      include/uapi/linux/if_bonding.h
2720
2721 BPF (Safe dynamic programs and tools)
2722 M:      Alexei Starovoitov <ast@kernel.org>
2723 M:      Daniel Borkmann <daniel@iogearbox.net>
2724 L:      netdev@vger.kernel.org
2725 L:      linux-kernel@vger.kernel.org
2726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2728 S:      Supported
2729 F:      arch/x86/net/bpf_jit*
2730 F:      Documentation/networking/filter.txt
2731 F:      Documentation/bpf/
2732 F:      include/linux/bpf*
2733 F:      include/linux/filter.h
2734 F:      include/trace/events/bpf.h
2735 F:      include/trace/events/xdp.h
2736 F:      include/uapi/linux/bpf*
2737 F:      include/uapi/linux/filter.h
2738 F:      kernel/bpf/
2739 F:      kernel/trace/bpf_trace.c
2740 F:      lib/test_bpf.c
2741 F:      net/bpf/
2742 F:      net/core/filter.c
2743 F:      net/sched/act_bpf.c
2744 F:      net/sched/cls_bpf.c
2745 F:      samples/bpf/
2746 F:      tools/bpf/
2747 F:      tools/testing/selftests/bpf/
2748
2749 BROADCOM B44 10/100 ETHERNET DRIVER
2750 M:      Michael Chan <michael.chan@broadcom.com>
2751 L:      netdev@vger.kernel.org
2752 S:      Supported
2753 F:      drivers/net/ethernet/broadcom/b44.*
2754
2755 BROADCOM B53 ETHERNET SWITCH DRIVER
2756 M:      Florian Fainelli <f.fainelli@gmail.com>
2757 L:      netdev@vger.kernel.org
2758 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2759 S:      Supported
2760 F:      drivers/net/dsa/b53/*
2761 F:      include/linux/platform_data/b53.h
2762
2763 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2764 M:      Florian Fainelli <f.fainelli@gmail.com>
2765 M:      Ray Jui <rjui@broadcom.com>
2766 M:      Scott Branden <sbranden@broadcom.com>
2767 M:      bcm-kernel-feedback-list@broadcom.com
2768 T:      git git://github.com/broadcom/mach-bcm
2769 S:      Maintained
2770 N:      bcm281*
2771 N:      bcm113*
2772 N:      bcm216*
2773 N:      kona
2774 F:      arch/arm/mach-bcm/
2775
2776 BROADCOM BCM2835 ARM ARCHITECTURE
2777 M:      Eric Anholt <eric@anholt.net>
2778 M:      Stefan Wahren <stefan.wahren@i2se.com>
2779 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 T:      git git://github.com/anholt/linux
2782 S:      Maintained
2783 N:      bcm2835
2784 F:      drivers/staging/vc04_services
2785
2786 BROADCOM BCM47XX MIPS ARCHITECTURE
2787 M:      Hauke Mehrtens <hauke@hauke-m.de>
2788 M:      Rafał Miłecki <zajec5@gmail.com>
2789 L:      linux-mips@linux-mips.org
2790 S:      Maintained
2791 F:      Documentation/devicetree/bindings/mips/brcm/
2792 F:      arch/mips/bcm47xx/*
2793 F:      arch/mips/include/asm/mach-bcm47xx/*
2794
2795 BROADCOM BCM5301X ARM ARCHITECTURE
2796 M:      Hauke Mehrtens <hauke@hauke-m.de>
2797 M:      Rafał Miłecki <zajec5@gmail.com>
2798 M:      Jon Mason <jonmason@broadcom.com>
2799 M:      bcm-kernel-feedback-list@broadcom.com
2800 L:      linux-arm-kernel@lists.infradead.org
2801 S:      Maintained
2802 F:      arch/arm/mach-bcm/bcm_5301x.c
2803 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2804 F:      arch/arm/boot/dts/bcm470*
2805 F:      arch/arm/boot/dts/bcm953012*
2806
2807 BROADCOM BCM53573 ARM ARCHITECTURE
2808 M:      Rafał Miłecki <rafal@milecki.pl>
2809 L:      linux-arm-kernel@lists.infradead.org
2810 S:      Maintained
2811 F:      arch/arm/boot/dts/bcm53573*
2812 F:      arch/arm/boot/dts/bcm47189*
2813
2814 BROADCOM BCM63XX ARM ARCHITECTURE
2815 M:      Florian Fainelli <f.fainelli@gmail.com>
2816 M:      bcm-kernel-feedback-list@broadcom.com
2817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2818 T:      git git://github.com/broadcom/stblinux.git
2819 S:      Maintained
2820 N:      bcm63xx
2821
2822 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2823 M:      Kevin Cernekee <cernekee@gmail.com>
2824 L:      linux-usb@vger.kernel.org
2825 S:      Maintained
2826 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2827
2828 BROADCOM BCM7XXX ARM ARCHITECTURE
2829 M:      Brian Norris <computersforpeace@gmail.com>
2830 M:      Gregory Fong <gregory.0xf0@gmail.com>
2831 M:      Florian Fainelli <f.fainelli@gmail.com>
2832 M:      bcm-kernel-feedback-list@broadcom.com
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2834 T:      git git://github.com/broadcom/stblinux.git
2835 S:      Maintained
2836 F:      arch/arm/mach-bcm/*brcmstb*
2837 F:      arch/arm/boot/dts/bcm7*.dts*
2838 F:      drivers/bus/brcmstb_gisb.c
2839 F:      arch/arm/mm/cache-b15-rac.c
2840 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
2841 N:      brcmstb
2842
2843 BROADCOM BMIPS CPUFREQ DRIVER
2844 M:      Markus Mayer <mmayer@broadcom.com>
2845 M:      bcm-kernel-feedback-list@broadcom.com
2846 L:      linux-pm@vger.kernel.org
2847 S:      Maintained
2848 F:      drivers/cpufreq/bmips-cpufreq.c
2849
2850 BROADCOM BMIPS MIPS ARCHITECTURE
2851 M:      Kevin Cernekee <cernekee@gmail.com>
2852 M:      Florian Fainelli <f.fainelli@gmail.com>
2853 L:      linux-mips@linux-mips.org
2854 T:      git git://github.com/broadcom/stblinux.git
2855 S:      Maintained
2856 F:      arch/mips/bmips/*
2857 F:      arch/mips/include/asm/mach-bmips/*
2858 F:      arch/mips/kernel/*bmips*
2859 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2860 F:      drivers/irqchip/irq-bcm63*
2861 F:      drivers/irqchip/irq-bcm7*
2862 F:      drivers/irqchip/irq-brcmstb*
2863 F:      include/linux/bcm963xx_nvram.h
2864 F:      include/linux/bcm963xx_tag.h
2865
2866 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2867 M:      Rasesh Mody <rasesh.mody@cavium.com>
2868 M:      Harish Patil <harish.patil@cavium.com>
2869 M:      Dept-GELinuxNICDev@cavium.com
2870 L:      netdev@vger.kernel.org
2871 S:      Supported
2872 F:      drivers/net/ethernet/broadcom/bnx2.*
2873 F:      drivers/net/ethernet/broadcom/bnx2_*
2874
2875 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2876 M:      QLogic-Storage-Upstream@qlogic.com
2877 L:      linux-scsi@vger.kernel.org
2878 S:      Supported
2879 F:      drivers/scsi/bnx2fc/
2880
2881 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2882 M:      QLogic-Storage-Upstream@qlogic.com
2883 L:      linux-scsi@vger.kernel.org
2884 S:      Supported
2885 F:      drivers/scsi/bnx2i/
2886
2887 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2888 M:      Ariel Elior <ariel.elior@cavium.com>
2889 M:      everest-linux-l2@cavium.com
2890 L:      netdev@vger.kernel.org
2891 S:      Supported
2892 F:      drivers/net/ethernet/broadcom/bnx2x/
2893
2894 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2895 M:      Michael Chan <michael.chan@broadcom.com>
2896 L:      netdev@vger.kernel.org
2897 S:      Supported
2898 F:      drivers/net/ethernet/broadcom/bnxt/
2899
2900 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2901 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2902 M:      Franky Lin <franky.lin@broadcom.com>
2903 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2904 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2905 M:      Wright Feng <wright.feng@cypress.com>
2906 L:      linux-wireless@vger.kernel.org
2907 L:      brcm80211-dev-list.pdl@broadcom.com
2908 L:      brcm80211-dev-list@cypress.com
2909 S:      Supported
2910 F:      drivers/net/wireless/broadcom/brcm80211/
2911
2912 BROADCOM BRCMSTB GPIO DRIVER
2913 M:      Gregory Fong <gregory.0xf0@gmail.com>
2914 L:      bcm-kernel-feedback-list@broadcom.com
2915 S:      Supported
2916 F:      drivers/gpio/gpio-brcmstb.c
2917 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2918
2919 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2920 M:      Al Cooper <alcooperx@gmail.com>
2921 L:      linux-kernel@vger.kernel.org
2922 L:      bcm-kernel-feedback-list@broadcom.com
2923 S:      Maintained
2924 F:      drivers/phy/broadcom/phy-brcm-usb*
2925
2926 BROADCOM GENET ETHERNET DRIVER
2927 M:      Doug Berger <opendmb@gmail.com>
2928 M:      Florian Fainelli <f.fainelli@gmail.com>
2929 L:      netdev@vger.kernel.org
2930 S:      Supported
2931 F:      drivers/net/ethernet/broadcom/genet/
2932
2933 BROADCOM IPROC ARM ARCHITECTURE
2934 M:      Ray Jui <rjui@broadcom.com>
2935 M:      Scott Branden <sbranden@broadcom.com>
2936 M:      Jon Mason <jonmason@broadcom.com>
2937 M:      bcm-kernel-feedback-list@broadcom.com
2938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2939 T:      git git://github.com/broadcom/cygnus-linux.git
2940 S:      Maintained
2941 N:      iproc
2942 N:      cygnus
2943 N:      bcm[-_]nsp
2944 N:      bcm9113*
2945 N:      bcm9583*
2946 N:      bcm9585*
2947 N:      bcm9586*
2948 N:      bcm988312
2949 N:      bcm113*
2950 N:      bcm583*
2951 N:      bcm585*
2952 N:      bcm586*
2953 N:      bcm88312
2954 N:      hr2
2955 F:      arch/arm64/boot/dts/broadcom/ns2*
2956 F:      drivers/clk/bcm/clk-ns*
2957 F:      drivers/pinctrl/bcm/pinctrl-ns*
2958
2959 BROADCOM KONA GPIO DRIVER
2960 M:      Ray Jui <rjui@broadcom.com>
2961 L:      bcm-kernel-feedback-list@broadcom.com
2962 S:      Supported
2963 F:      drivers/gpio/gpio-bcm-kona.c
2964 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2965
2966 BROADCOM NETXTREME-E ROCE DRIVER
2967 M:      Selvin Xavier <selvin.xavier@broadcom.com>
2968 M:      Devesh Sharma <devesh.sharma@broadcom.com>
2969 M:      Somnath Kotur <somnath.kotur@broadcom.com>
2970 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2971 L:      linux-rdma@vger.kernel.org
2972 W:      http://www.broadcom.com
2973 S:      Supported
2974 F:      drivers/infiniband/hw/bnxt_re/
2975 F:      include/uapi/rdma/bnxt_re-abi.h
2976
2977 BROADCOM NVRAM DRIVER
2978 M:      Rafał Miłecki <zajec5@gmail.com>
2979 L:      linux-mips@linux-mips.org
2980 S:      Maintained
2981 F:      drivers/firmware/broadcom/*
2982
2983 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2984 M:      Rafał Miłecki <zajec5@gmail.com>
2985 L:      linux-wireless@vger.kernel.org
2986 S:      Maintained
2987 F:      drivers/bcma/
2988 F:      include/linux/bcma/
2989
2990 BROADCOM STB AVS CPUFREQ DRIVER
2991 M:      Markus Mayer <mmayer@broadcom.com>
2992 M:      bcm-kernel-feedback-list@broadcom.com
2993 L:      linux-pm@vger.kernel.org
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2996 F:      drivers/cpufreq/brcmstb*
2997
2998 BROADCOM STB AVS TMON DRIVER
2999 M:      Markus Mayer <mmayer@broadcom.com>
3000 M:      bcm-kernel-feedback-list@broadcom.com
3001 L:      linux-pm@vger.kernel.org
3002 S:      Maintained
3003 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3004 F:      drivers/thermal/broadcom/brcmstb*
3005
3006 BROADCOM STB NAND FLASH DRIVER
3007 M:      Brian Norris <computersforpeace@gmail.com>
3008 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3009 L:      linux-mtd@lists.infradead.org
3010 L:      bcm-kernel-feedback-list@broadcom.com
3011 S:      Maintained
3012 F:      drivers/mtd/nand/brcmnand/
3013
3014 BROADCOM STB DPFE DRIVER
3015 M:      Markus Mayer <mmayer@broadcom.com>
3016 M:      bcm-kernel-feedback-list@broadcom.com
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 S:      Maintained
3019 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3020 F:      drivers/memory/brcmstb_dpfe.c
3021
3022 BROADCOM SYSTEMPORT ETHERNET DRIVER
3023 M:      Florian Fainelli <f.fainelli@gmail.com>
3024 L:      netdev@vger.kernel.org
3025 S:      Supported
3026 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3027
3028 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3029 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3030 M:      Prashant Sreedharan <prashant@broadcom.com>
3031 M:      Michael Chan <mchan@broadcom.com>
3032 L:      netdev@vger.kernel.org
3033 S:      Supported
3034 F:      drivers/net/ethernet/broadcom/tg3.*
3035
3036 BROCADE BFA FC SCSI DRIVER
3037 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3038 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3039 L:      linux-scsi@vger.kernel.org
3040 S:      Supported
3041 F:      drivers/scsi/bfa/
3042
3043 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3044 M:      Rasesh Mody <rasesh.mody@cavium.com>
3045 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3046 M:      Dept-GELinuxNICDev@cavium.com
3047 L:      netdev@vger.kernel.org
3048 S:      Supported
3049 F:      drivers/net/ethernet/brocade/bna/
3050
3051 BSG (block layer generic sg v4 driver)
3052 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3053 L:      linux-scsi@vger.kernel.org
3054 S:      Supported
3055 F:      block/bsg.c
3056 F:      include/linux/bsg.h
3057 F:      include/uapi/linux/bsg.h
3058
3059 BT87X AUDIO DRIVER
3060 M:      Clemens Ladisch <clemens@ladisch.de>
3061 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3062 T:      git git://git.alsa-project.org/alsa-kernel.git
3063 S:      Maintained
3064 F:      Documentation/sound/alsa/Bt87x.txt
3065 F:      sound/pci/bt87x.c
3066
3067 BT8XXGPIO DRIVER
3068 M:      Michael Buesch <m@bues.ch>
3069 W:      http://bu3sch.de/btgpio.php
3070 S:      Maintained
3071 F:      drivers/gpio/gpio-bt8xx.c
3072
3073 BTRFS FILE SYSTEM
3074 M:      Chris Mason <clm@fb.com>
3075 M:      Josef Bacik <jbacik@fb.com>
3076 M:      David Sterba <dsterba@suse.com>
3077 L:      linux-btrfs@vger.kernel.org
3078 W:      http://btrfs.wiki.kernel.org/
3079 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3081 S:      Maintained
3082 F:      Documentation/filesystems/btrfs.txt
3083 F:      fs/btrfs/
3084 F:      include/linux/btrfs*
3085 F:      include/uapi/linux/btrfs*
3086
3087 BTTV VIDEO4LINUX DRIVER
3088 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3089 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3090 L:      linux-media@vger.kernel.org
3091 W:      https://linuxtv.org
3092 T:      git git://linuxtv.org/media_tree.git
3093 S:      Odd fixes
3094 F:      Documentation/media/v4l-drivers/bttv*
3095 F:      drivers/media/pci/bt8xx/bttv*
3096
3097 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3098 M:      Chanwoo Choi <cw00.choi@samsung.com>
3099 L:      linux-pm@vger.kernel.org
3100 L:      linux-samsung-soc@vger.kernel.org
3101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3102 S:      Maintained
3103 F:      drivers/devfreq/exynos-bus.c
3104 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3105
3106 BUSLOGIC SCSI DRIVER
3107 M:      Khalid Aziz <khalid@gonehiking.org>
3108 L:      linux-scsi@vger.kernel.org
3109 S:      Maintained
3110 F:      drivers/scsi/BusLogic.*
3111 F:      drivers/scsi/FlashPoint.*
3112
3113 C-MEDIA CMI8788 DRIVER
3114 M:      Clemens Ladisch <clemens@ladisch.de>
3115 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3116 T:      git git://git.alsa-project.org/alsa-kernel.git
3117 S:      Maintained
3118 F:      sound/pci/oxygen/
3119
3120 C6X ARCHITECTURE
3121 M:      Mark Salter <msalter@redhat.com>
3122 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3123 L:      linux-c6x-dev@linux-c6x.org
3124 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3125 S:      Maintained
3126 F:      arch/c6x/
3127
3128 CA8210 IEEE-802.15.4 RADIO DRIVER
3129 M:      Harry Morris <h.morris@cascoda.com>
3130 L:      linux-wpan@vger.kernel.org
3131 W:      https://github.com/Cascoda/ca8210-linux.git
3132 S:      Maintained
3133 F:      drivers/net/ieee802154/ca8210.c
3134 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3135
3136 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3137 M:      David Howells <dhowells@redhat.com>
3138 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3139 S:      Supported
3140 F:      Documentation/filesystems/caching/cachefiles.txt
3141 F:      fs/cachefiles/
3142
3143 CADET FM/AM RADIO RECEIVER DRIVER
3144 M:      Hans Verkuil <hverkuil@xs4all.nl>
3145 L:      linux-media@vger.kernel.org
3146 T:      git git://linuxtv.org/media_tree.git
3147 W:      https://linuxtv.org
3148 S:      Maintained
3149 F:      drivers/media/radio/radio-cadet*
3150
3151 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3152 M:      Jonathan Corbet <corbet@lwn.net>
3153 L:      linux-media@vger.kernel.org
3154 T:      git git://linuxtv.org/media_tree.git
3155 S:      Maintained
3156 F:      Documentation/media/v4l-drivers/cafe_ccic*
3157 F:      drivers/media/platform/marvell-ccic/
3158
3159 CAIF NETWORK LAYER
3160 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3161 L:      netdev@vger.kernel.org
3162 S:      Supported
3163 F:      Documentation/networking/caif/
3164 F:      drivers/net/caif/
3165 F:      include/uapi/linux/caif/
3166 F:      include/net/caif/
3167 F:      net/caif/
3168
3169 CALGARY x86-64 IOMMU
3170 M:      Muli Ben-Yehuda <mulix@mulix.org>
3171 M:      Jon Mason <jdmason@kudzu.us>
3172 L:      iommu@lists.linux-foundation.org
3173 S:      Maintained
3174 F:      arch/x86/kernel/pci-calgary_64.c
3175 F:      arch/x86/kernel/tce_64.c
3176 F:      arch/x86/include/asm/calgary.h
3177 F:      arch/x86/include/asm/tce.h
3178
3179 CAN NETWORK DRIVERS
3180 M:      Wolfgang Grandegger <wg@grandegger.com>
3181 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3182 L:      linux-can@vger.kernel.org
3183 W:      https://github.com/linux-can
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3186 S:      Maintained
3187 F:      Documentation/devicetree/bindings/net/can/
3188 F:      drivers/net/can/
3189 F:      include/linux/can/dev.h
3190 F:      include/linux/can/platform/
3191 F:      include/uapi/linux/can/error.h
3192 F:      include/uapi/linux/can/netlink.h
3193
3194 CAN NETWORK LAYER
3195 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3196 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3197 L:      linux-can@vger.kernel.org
3198 W:      https://github.com/linux-can
3199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3201 S:      Maintained
3202 F:      Documentation/networking/can.rst
3203 F:      net/can/
3204 F:      include/linux/can/core.h
3205 F:      include/uapi/linux/can.h
3206 F:      include/uapi/linux/can/bcm.h
3207 F:      include/uapi/linux/can/raw.h
3208 F:      include/uapi/linux/can/gw.h
3209
3210 CAPABILITIES
3211 M:      Serge Hallyn <serge@hallyn.com>
3212 L:      linux-security-module@vger.kernel.org
3213 S:      Supported
3214 F:      include/linux/capability.h
3215 F:      include/uapi/linux/capability.h
3216 F:      security/commoncap.c
3217 F:      kernel/capability.c
3218
3219 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3220 M:      Kevin Tsai <ktsai@capellamicro.com>
3221 S:      Maintained
3222 F:      drivers/iio/light/cm*
3223
3224 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3225 M:      Christian Lamparter <chunkeey@googlemail.com>
3226 L:      linux-wireless@vger.kernel.org
3227 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3228 S:      Maintained
3229 F:      drivers/net/wireless/ath/carl9170/
3230
3231 CAVIUM I2C DRIVER
3232 M:      Jan Glauber <jglauber@cavium.com>
3233 M:      David Daney <david.daney@cavium.com>
3234 W:      http://www.cavium.com
3235 S:      Supported
3236 F:      drivers/i2c/busses/i2c-octeon*
3237 F:      drivers/i2c/busses/i2c-thunderx*
3238
3239 CAVIUM LIQUIDIO NETWORK DRIVER
3240 M:      Derek Chickles <derek.chickles@caviumnetworks.com>
3241 M:      Satanand Burla <satananda.burla@caviumnetworks.com>
3242 M:      Felix Manlunas <felix.manlunas@caviumnetworks.com>
3243 M:      Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3244 L:      netdev@vger.kernel.org
3245 W:      http://www.cavium.com
3246 S:      Supported
3247 F:      drivers/net/ethernet/cavium/liquidio/
3248
3249 CAVIUM MMC DRIVER
3250 M:      Jan Glauber <jglauber@cavium.com>
3251 M:      David Daney <david.daney@cavium.com>
3252 M:      Steven J. Hill <Steven.Hill@cavium.com>
3253 W:      http://www.cavium.com
3254 S:      Supported
3255 F:      drivers/mmc/host/cavium*
3256
3257 CAVIUM OCTEON-TX CRYPTO DRIVER
3258 M:      George Cherian <george.cherian@cavium.com>
3259 L:      linux-crypto@vger.kernel.org
3260 W:      http://www.cavium.com
3261 S:      Supported
3262 F:      drivers/crypto/cavium/cpt/
3263
3264 CAVIUM THUNDERX2 ARM64 SOC
3265 M:      Robert Richter <rrichter@cavium.com>
3266 M:      Jayachandran C <jnair@caviumnetworks.com>
3267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3268 S:      Maintained
3269 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3270 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3271
3272 CC2520 IEEE-802.15.4 RADIO DRIVER
3273 M:      Varka Bhadram <varkabhadram@gmail.com>
3274 L:      linux-wpan@vger.kernel.org
3275 S:      Maintained
3276 F:      drivers/net/ieee802154/cc2520.c
3277 F:      include/linux/spi/cc2520.h
3278 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3279
3280 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3281 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3282 L:      linux-crypto@vger.kernel.org
3283 L:      driverdev-devel@linuxdriverproject.org
3284 S:      Supported
3285 F:      drivers/staging/ccree/
3286 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3287
3288 CEC FRAMEWORK
3289 M:      Hans Verkuil <hans.verkuil@cisco.com>
3290 L:      linux-media@vger.kernel.org
3291 T:      git git://linuxtv.org/media_tree.git
3292 W:      http://linuxtv.org
3293 S:      Supported
3294 F:      Documentation/media/kapi/cec-core.rst
3295 F:      Documentation/media/uapi/cec
3296 F:      drivers/media/cec/
3297 F:      drivers/media/rc/keymaps/rc-cec.c
3298 F:      include/media/cec.h
3299 F:      include/media/cec-notifier.h
3300 F:      include/uapi/linux/cec.h
3301 F:      include/uapi/linux/cec-funcs.h
3302 F:      Documentation/devicetree/bindings/media/cec.txt
3303
3304 CEC GPIO DRIVER
3305 M:      Hans Verkuil <hans.verkuil@cisco.com>
3306 L:      linux-media@vger.kernel.org
3307 T:      git git://linuxtv.org/media_tree.git
3308 W:      http://linuxtv.org
3309 S:      Supported
3310 F:      drivers/media/platform/cec-gpio/
3311 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3312
3313 CELL BROADBAND ENGINE ARCHITECTURE
3314 M:      Arnd Bergmann <arnd@arndb.de>
3315 L:      linuxppc-dev@lists.ozlabs.org
3316 W:      http://www.ibm.com/developerworks/power/cell/
3317 S:      Supported
3318 F:      arch/powerpc/include/asm/cell*.h
3319 F:      arch/powerpc/include/asm/spu*.h
3320 F:      arch/powerpc/include/uapi/asm/spu*.h
3321 F:      arch/powerpc/oprofile/*cell*
3322 F:      arch/powerpc/platforms/cell/
3323
3324 CEPH COMMON CODE (LIBCEPH)
3325 M:      Ilya Dryomov <idryomov@gmail.com>
3326 M:      "Yan, Zheng" <zyan@redhat.com>
3327 M:      Sage Weil <sage@redhat.com>
3328 L:      ceph-devel@vger.kernel.org
3329 W:      http://ceph.com/
3330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3331 T:      git git://github.com/ceph/ceph-client.git
3332 S:      Supported
3333 F:      net/ceph/
3334 F:      include/linux/ceph/
3335 F:      include/linux/crush/
3336
3337 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3338 M:      "Yan, Zheng" <zyan@redhat.com>
3339 M:      Sage Weil <sage@redhat.com>
3340 M:      Ilya Dryomov <idryomov@gmail.com>
3341 L:      ceph-devel@vger.kernel.org
3342 W:      http://ceph.com/
3343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3344 T:      git git://github.com/ceph/ceph-client.git
3345 S:      Supported
3346 F:      Documentation/filesystems/ceph.txt
3347 F:      fs/ceph/
3348
3349 CERTIFICATE HANDLING:
3350 M:      David Howells <dhowells@redhat.com>
3351 M:      David Woodhouse <dwmw2@infradead.org>
3352 L:      keyrings@vger.kernel.org
3353 S:      Maintained
3354 F:      Documentation/module-signing.txt
3355 F:      certs/
3356 F:      scripts/sign-file.c
3357 F:      scripts/extract-cert.c
3358
3359 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3360 L:      linux-usb@vger.kernel.org
3361 S:      Orphan
3362 F:      Documentation/usb/WUSB-Design-overview.txt
3363 F:      Documentation/usb/wusb-cbaf
3364 F:      drivers/usb/host/hwa-hc.c
3365 F:      drivers/usb/host/whci/
3366 F:      drivers/usb/wusbcore/
3367 F:      include/linux/usb/wusb*
3368
3369 CFAG12864B LCD DRIVER
3370 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3371 W:      http://miguelojeda.es/auxdisplay.htm
3372 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3373 S:      Maintained
3374 F:      drivers/auxdisplay/cfag12864b.c
3375 F:      include/linux/cfag12864b.h
3376
3377 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3378 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3379 W:      http://miguelojeda.es/auxdisplay.htm
3380 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3381 S:      Maintained
3382 F:      drivers/auxdisplay/cfag12864bfb.c
3383 F:      include/linux/cfag12864b.h
3384
3385 802.11 (including CFG80211/NL80211)
3386 M:      Johannes Berg <johannes@sipsolutions.net>
3387 L:      linux-wireless@vger.kernel.org
3388 W:      http://wireless.kernel.org/
3389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3391 S:      Maintained
3392 F:      net/wireless/
3393 F:      include/uapi/linux/nl80211.h
3394 F:      include/linux/ieee80211.h
3395 F:      include/net/wext.h
3396 F:      include/net/cfg80211.h
3397 F:      include/net/iw_handler.h
3398 F:      include/net/ieee80211_radiotap.h
3399 F:      Documentation/driver-api/80211/cfg80211.rst
3400 F:      Documentation/networking/regulatory.txt
3401
3402 CHAR and MISC DRIVERS
3403 M:      Arnd Bergmann <arnd@arndb.de>
3404 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3406 S:      Supported
3407 F:      drivers/char/
3408 F:      drivers/misc/
3409 F:      include/linux/miscdevice.h
3410
3411 CHECKPATCH
3412 M:      Andy Whitcroft <apw@canonical.com>
3413 M:      Joe Perches <joe@perches.com>
3414 S:      Maintained
3415 F:      scripts/checkpatch.pl
3416
3417 CHINESE DOCUMENTATION
3418 M:      Harry Wei <harryxiyou@gmail.com>
3419 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3420 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3421 S:      Maintained
3422 F:      Documentation/translations/zh_CN/
3423
3424 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3425 M:      Peter Chen <Peter.Chen@nxp.com>
3426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3427 L:      linux-usb@vger.kernel.org
3428 S:      Maintained
3429 F:      drivers/usb/chipidea/
3430
3431 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3432 M:      Hans de Goede <hdegoede@redhat.com>
3433 L:      linux-input@vger.kernel.org
3434 S:      Maintained
3435 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3436 F:      drivers/input/touchscreen/chipone_icn8318.c
3437
3438 CHROME HARDWARE PLATFORM SUPPORT
3439 M:      Benson Leung <bleung@chromium.org>
3440 M:      Olof Johansson <olof@lixom.net>
3441 S:      Maintained
3442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3443 F:      drivers/platform/chrome/
3444
3445 CIRRUS LOGIC AUDIO CODEC DRIVERS
3446 M:      Brian Austin <brian.austin@cirrus.com>
3447 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3448 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3449 S:      Maintained
3450 F:      sound/soc/codecs/cs*
3451
3452 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3453 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3454 L:      netdev@vger.kernel.org
3455 S:      Maintained
3456 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3457
3458 CISCO FCOE HBA DRIVER
3459 M:      Satish Kharat <satishkh@cisco.com>
3460 M:      Sesidhar Baddela <sebaddel@cisco.com>
3461 M:      Karan Tilak Kumar <kartilak@cisco.com>
3462 L:      linux-scsi@vger.kernel.org
3463 S:      Supported
3464 F:      drivers/scsi/fnic/
3465
3466 CISCO SCSI HBA DRIVER
3467 M:      Karan Tilak Kumar <kartilak@cisco.com>
3468 M:      Sesidhar Baddela <sebaddel@cisco.com>
3469 L:      linux-scsi@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/scsi/snic/
3472
3473 CISCO VIC ETHERNET NIC DRIVER
3474 M:      Christian Benvenuti <benve@cisco.com>
3475 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3476 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3477 S:      Supported
3478 F:      drivers/net/ethernet/cisco/enic/
3479
3480 CISCO VIC LOW LATENCY NIC DRIVER
3481 M:      Christian Benvenuti <benve@cisco.com>
3482 M:      Dave Goodell <dgoodell@cisco.com>
3483 S:      Supported
3484 F:      drivers/infiniband/hw/usnic/
3485
3486 CLEANCACHE API
3487 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3488 L:      linux-kernel@vger.kernel.org
3489 S:      Maintained
3490 F:      mm/cleancache.c
3491 F:      include/linux/cleancache.h
3492
3493 CLK API
3494 M:      Russell King <linux@armlinux.org.uk>
3495 L:      linux-clk@vger.kernel.org
3496 S:      Maintained
3497 F:      include/linux/clk.h
3498
3499 CLOCKSOURCE, CLOCKEVENT DRIVERS
3500 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3501 M:      Thomas Gleixner <tglx@linutronix.de>
3502 L:      linux-kernel@vger.kernel.org
3503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3504 S:      Supported
3505 F:      drivers/clocksource/
3506 F:      Documentation/devicetree/bindings/timer/
3507
3508 CMPC ACPI DRIVER
3509 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3510 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3511 L:      platform-driver-x86@vger.kernel.org
3512 S:      Supported
3513 F:      drivers/platform/x86/classmate-laptop.c
3514
3515 COBALT MEDIA DRIVER
3516 M:      Hans Verkuil <hans.verkuil@cisco.com>
3517 L:      linux-media@vger.kernel.org
3518 T:      git git://linuxtv.org/media_tree.git
3519 W:      https://linuxtv.org
3520 S:      Supported
3521 F:      drivers/media/pci/cobalt/
3522
3523 COCCINELLE/Semantic Patches (SmPL)
3524 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3525 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3526 M:      Nicolas Palix <nicolas.palix@imag.fr>
3527 M:      Michal Marek <michal.lkml@markovi.net>
3528 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3530 W:      http://coccinelle.lip6.fr/
3531 S:      Supported
3532 F:      Documentation/dev-tools/coccinelle.rst
3533 F:      scripts/coccinelle/
3534 F:      scripts/coccicheck
3535
3536 CODA FILE SYSTEM
3537 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3538 M:      coda@cs.cmu.edu
3539 L:      codalist@coda.cs.cmu.edu
3540 W:      http://www.coda.cs.cmu.edu/
3541 S:      Maintained
3542 F:      Documentation/filesystems/coda.txt
3543 F:      fs/coda/
3544 F:      include/linux/coda*.h
3545 F:      include/uapi/linux/coda*.h
3546
3547 CODA V4L2 MEM2MEM DRIVER
3548 M:      Philipp Zabel <p.zabel@pengutronix.de>
3549 L:      linux-media@vger.kernel.org
3550 S:      Maintained
3551 F:      Documentation/devicetree/bindings/media/coda.txt
3552 F:      drivers/media/platform/coda/
3553
3554 COMMON CLK FRAMEWORK
3555 M:      Michael Turquette <mturquette@baylibre.com>
3556 M:      Stephen Boyd <sboyd@kernel.org>
3557 L:      linux-clk@vger.kernel.org
3558 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3560 S:      Maintained
3561 F:      Documentation/devicetree/bindings/clock/
3562 F:      drivers/clk/
3563 X:      drivers/clk/clkdev.c
3564 F:      include/linux/clk-pr*
3565 F:      include/linux/clk/
3566
3567 COMMON INTERNET FILE SYSTEM (CIFS)
3568 M:      Steve French <sfrench@samba.org>
3569 L:      linux-cifs@vger.kernel.org
3570 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3571 W:      http://linux-cifs.samba.org/
3572 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3573 S:      Supported
3574 F:      Documentation/filesystems/cifs/
3575 F:      fs/cifs/
3576
3577 COMPACTPCI HOTPLUG CORE
3578 M:      Scott Murray <scott@spiteful.org>
3579 L:      linux-pci@vger.kernel.org
3580 S:      Maintained
3581 F:      drivers/pci/hotplug/cpci_hotplug*
3582
3583 COMPACTPCI HOTPLUG GENERIC DRIVER
3584 M:      Scott Murray <scott@spiteful.org>
3585 L:      linux-pci@vger.kernel.org
3586 S:      Maintained
3587 F:      drivers/pci/hotplug/cpcihp_generic.c
3588
3589 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3590 M:      Scott Murray <scott@spiteful.org>
3591 L:      linux-pci@vger.kernel.org
3592 S:      Maintained
3593 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3594
3595 COMPAL LAPTOP SUPPORT
3596 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3597 L:      platform-driver-x86@vger.kernel.org
3598 S:      Maintained
3599 F:      drivers/platform/x86/compal-laptop.c
3600
3601 CONEXANT ACCESSRUNNER USB DRIVER
3602 L:      accessrunner-general@lists.sourceforge.net
3603 W:      http://accessrunner.sourceforge.net/
3604 S:      Orphan
3605 F:      drivers/usb/atm/cxacru.c
3606
3607 CONFIGFS
3608 M:      Joel Becker <jlbec@evilplan.org>
3609 M:      Christoph Hellwig <hch@lst.de>
3610 T:      git git://git.infradead.org/users/hch/configfs.git
3611 S:      Supported
3612 F:      fs/configfs/
3613 F:      include/linux/configfs.h
3614
3615 CONNECTOR
3616 M:      Evgeniy Polyakov <zbr@ioremap.net>
3617 L:      netdev@vger.kernel.org
3618 S:      Maintained
3619 F:      drivers/connector/
3620
3621 CONTROL GROUP (CGROUP)
3622 M:      Tejun Heo <tj@kernel.org>
3623 M:      Li Zefan <lizefan@huawei.com>
3624 M:      Johannes Weiner <hannes@cmpxchg.org>
3625 L:      cgroups@vger.kernel.org
3626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3627 S:      Maintained
3628 F:      Documentation/cgroup*
3629 F:      include/linux/cgroup*
3630 F:      kernel/cgroup*
3631
3632 CONTROL GROUP - CPUSET
3633 M:      Li Zefan <lizefan@huawei.com>
3634 L:      cgroups@vger.kernel.org
3635 W:      http://www.bullopensource.org/cpuset/
3636 W:      http://oss.sgi.com/projects/cpusets/
3637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3638 S:      Maintained
3639 F:      Documentation/cgroup-v1/cpusets.txt
3640 F:      include/linux/cpuset.h
3641 F:      kernel/cgroup/cpuset.c
3642
3643 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3644 M:      Johannes Weiner <hannes@cmpxchg.org>
3645 M:      Michal Hocko <mhocko@kernel.org>
3646 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3647 L:      cgroups@vger.kernel.org
3648 L:      linux-mm@kvack.org
3649 S:      Maintained
3650 F:      mm/memcontrol.c
3651 F:      mm/swap_cgroup.c
3652
3653 CORETEMP HARDWARE MONITORING DRIVER
3654 M:      Fenghua Yu <fenghua.yu@intel.com>
3655 L:      linux-hwmon@vger.kernel.org
3656 S:      Maintained
3657 F:      Documentation/hwmon/coretemp
3658 F:      drivers/hwmon/coretemp.c
3659
3660 COSA/SRP SYNC SERIAL DRIVER
3661 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3662 W:      http://www.fi.muni.cz/~kas/cosa/
3663 S:      Maintained
3664 F:      drivers/net/wan/cosa*
3665
3666 CPMAC ETHERNET DRIVER
3667 M:      Florian Fainelli <f.fainelli@gmail.com>
3668 L:      netdev@vger.kernel.org
3669 S:      Maintained
3670 F:      drivers/net/ethernet/ti/cpmac.c
3671
3672 CPU FREQUENCY DRIVERS
3673 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3674 M:      Viresh Kumar <viresh.kumar@linaro.org>
3675 L:      linux-pm@vger.kernel.org
3676 S:      Maintained
3677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3678 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3679 B:      https://bugzilla.kernel.org
3680 F:      Documentation/cpu-freq/
3681 F:      Documentation/devicetree/bindings/cpufreq/
3682 F:      drivers/cpufreq/
3683 F:      include/linux/cpufreq.h
3684 F:      tools/testing/selftests/cpufreq/
3685
3686 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3687 M:      Viresh Kumar <viresh.kumar@linaro.org>
3688 M:      Sudeep Holla <sudeep.holla@arm.com>
3689 L:      linux-pm@vger.kernel.org
3690 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3691 S:      Maintained
3692 F:      drivers/cpufreq/arm_big_little.h
3693 F:      drivers/cpufreq/arm_big_little.c
3694 F:      drivers/cpufreq/arm_big_little_dt.c
3695
3696 CPU POWER MONITORING SUBSYSTEM
3697 M:      Thomas Renninger <trenn@suse.com>
3698 M:      Shuah Khan <shuahkh@osg.samsung.com>
3699 M:      Shuah Khan <shuah@kernel.org>
3700 L:      linux-pm@vger.kernel.org
3701 S:      Maintained
3702 F:      tools/power/cpupower/
3703
3704 CPUID/MSR DRIVER
3705 M:      "H. Peter Anvin" <hpa@zytor.com>
3706 S:      Maintained
3707 F:      arch/x86/kernel/cpuid.c
3708 F:      arch/x86/kernel/msr.c
3709
3710 CPUIDLE DRIVER - ARM BIG LITTLE
3711 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3712 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3713 L:      linux-pm@vger.kernel.org
3714 L:      linux-arm-kernel@lists.infradead.org
3715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3716 S:      Maintained
3717 F:      drivers/cpuidle/cpuidle-big_little.c
3718
3719 CPUIDLE DRIVER - ARM EXYNOS
3720 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3721 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3722 M:      Kukjin Kim <kgene@kernel.org>
3723 L:      linux-pm@vger.kernel.org
3724 L:      linux-samsung-soc@vger.kernel.org
3725 S:      Supported
3726 F:      drivers/cpuidle/cpuidle-exynos.c
3727 F:      arch/arm/mach-exynos/pm.c
3728
3729 CPUIDLE DRIVERS
3730 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3731 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3732 L:      linux-pm@vger.kernel.org
3733 S:      Maintained
3734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3735 B:      https://bugzilla.kernel.org
3736 F:      drivers/cpuidle/*
3737 F:      include/linux/cpuidle.h
3738
3739 CRAMFS FILESYSTEM
3740 M:      Nicolas Pitre <nico@linaro.org>
3741 S:      Maintained
3742 F:      Documentation/filesystems/cramfs.txt
3743 F:      fs/cramfs/
3744
3745 CRIS PORT
3746 M:      Mikael Starvik <starvik@axis.com>
3747 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3748 L:      linux-cris-kernel@axis.com
3749 W:      http://developer.axis.com
3750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3751 S:      Maintained
3752 F:      arch/cris/
3753 F:      drivers/tty/serial/crisv10.*
3754
3755 CRYPTO API
3756 M:      Herbert Xu <herbert@gondor.apana.org.au>
3757 M:      "David S. Miller" <davem@davemloft.net>
3758 L:      linux-crypto@vger.kernel.org
3759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3761 S:      Maintained
3762 F:      Documentation/crypto/
3763 F:      Documentation/devicetree/bindings/crypto/
3764 F:      arch/*/crypto/
3765 F:      crypto/
3766 F:      drivers/crypto/
3767 F:      include/crypto/
3768 F:      include/linux/crypto*
3769
3770 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3771 M:      Neil Horman <nhorman@tuxdriver.com>
3772 L:      linux-crypto@vger.kernel.org
3773 S:      Maintained
3774 F:      crypto/ansi_cprng.c
3775 F:      crypto/rng.c
3776
3777 CS3308 MEDIA DRIVER
3778 M:      Hans Verkuil <hverkuil@xs4all.nl>
3779 L:      linux-media@vger.kernel.org
3780 T:      git git://linuxtv.org/media_tree.git
3781 W:      http://linuxtv.org
3782 S:      Odd Fixes
3783 F:      drivers/media/i2c/cs3308.c
3784 F:      drivers/media/i2c/cs3308.h
3785
3786 CS5535 Audio ALSA driver
3787 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3788 S:      Maintained
3789 F:      sound/pci/cs5535audio/
3790
3791 CW1200 WLAN driver
3792 M:      Solomon Peachy <pizza@shaftnet.org>
3793 S:      Maintained
3794 F:      drivers/net/wireless/st/cw1200/
3795
3796 CX18 VIDEO4LINUX DRIVER
3797 M:      Andy Walls <awalls@md.metrocast.net>
3798 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3799 L:      linux-media@vger.kernel.org
3800 T:      git git://linuxtv.org/media_tree.git
3801 W:      https://linuxtv.org
3802 W:      http://www.ivtvdriver.org/index.php/Cx18
3803 S:      Maintained
3804 F:      Documentation/media/v4l-drivers/cx18*
3805 F:      drivers/media/pci/cx18/
3806 F:      include/uapi/linux/ivtv*
3807
3808 CX2341X MPEG ENCODER HELPER MODULE
3809 M:      Hans Verkuil <hverkuil@xs4all.nl>
3810 L:      linux-media@vger.kernel.org
3811 T:      git git://linuxtv.org/media_tree.git
3812 W:      https://linuxtv.org
3813 S:      Maintained
3814 F:      drivers/media/common/cx2341x*
3815 F:      include/media/cx2341x*
3816
3817 CX24120 MEDIA DRIVER
3818 M:      Jemma Denson <jdenson@gmail.com>
3819 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3820 L:      linux-media@vger.kernel.org
3821 W:      https://linuxtv.org
3822 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3823 S:      Maintained
3824 F:      drivers/media/dvb-frontends/cx24120*
3825
3826 CX88 VIDEO4LINUX DRIVER
3827 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3828 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3829 L:      linux-media@vger.kernel.org
3830 W:      https://linuxtv.org
3831 T:      git git://linuxtv.org/media_tree.git
3832 S:      Odd fixes
3833 F:      Documentation/media/v4l-drivers/cx88*
3834 F:      drivers/media/pci/cx88/
3835
3836 CXD2820R MEDIA DRIVER
3837 M:      Antti Palosaari <crope@iki.fi>
3838 L:      linux-media@vger.kernel.org
3839 W:      https://linuxtv.org
3840 W:      http://palosaari.fi/linux/
3841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3842 T:      git git://linuxtv.org/anttip/media_tree.git
3843 S:      Maintained
3844 F:      drivers/media/dvb-frontends/cxd2820r*
3845
3846 CXGB3 ETHERNET DRIVER (CXGB3)
3847 M:      Santosh Raspatur <santosh@chelsio.com>
3848 L:      netdev@vger.kernel.org
3849 W:      http://www.chelsio.com
3850 S:      Supported
3851 F:      drivers/net/ethernet/chelsio/cxgb3/
3852
3853 CXGB3 ISCSI DRIVER (CXGB3I)
3854 M:      Karen Xie <kxie@chelsio.com>
3855 L:      linux-scsi@vger.kernel.org
3856 W:      http://www.chelsio.com
3857 S:      Supported
3858 F:      drivers/scsi/cxgbi/cxgb3i
3859
3860 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3861 M:      Steve Wise <swise@chelsio.com>
3862 L:      linux-rdma@vger.kernel.org
3863 W:      http://www.openfabrics.org
3864 S:      Supported
3865 F:      drivers/infiniband/hw/cxgb3/
3866 F:      include/uapi/rdma/cxgb3-abi.h
3867
3868 CXGB4 CRYPTO DRIVER (chcr)
3869 M:      Harsh Jain <harsh@chelsio.com>
3870 L:      linux-crypto@vger.kernel.org
3871 W:      http://www.chelsio.com
3872 S:      Supported
3873 F:      drivers/crypto/chelsio
3874
3875 CXGB4 ETHERNET DRIVER (CXGB4)
3876 M:      Ganesh Goudar <ganeshgr@chelsio.com>
3877 L:      netdev@vger.kernel.org
3878 W:      http://www.chelsio.com
3879 S:      Supported
3880 F:      drivers/net/ethernet/chelsio/cxgb4/
3881
3882 CXGB4 ISCSI DRIVER (CXGB4I)
3883 M:      Karen Xie <kxie@chelsio.com>
3884 L:      linux-scsi@vger.kernel.org
3885 W:      http://www.chelsio.com
3886 S:      Supported
3887 F:      drivers/scsi/cxgbi/cxgb4i
3888
3889 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3890 M:      Steve Wise <swise@chelsio.com>
3891 L:      linux-rdma@vger.kernel.org
3892 W:      http://www.openfabrics.org
3893 S:      Supported
3894 F:      drivers/infiniband/hw/cxgb4/
3895 F:      include/uapi/rdma/cxgb4-abi.h
3896
3897 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3898 M:      Casey Leedom <leedom@chelsio.com>
3899 L:      netdev@vger.kernel.org
3900 W:      http://www.chelsio.com
3901 S:      Supported
3902 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3903
3904 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3905 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3906 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3907 L:      linuxppc-dev@lists.ozlabs.org
3908 S:      Supported
3909 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3910 F:      drivers/misc/cxl/
3911 F:      include/misc/cxl*
3912 F:      include/uapi/misc/cxl.h
3913 F:      Documentation/powerpc/cxl.txt
3914 F:      Documentation/ABI/testing/sysfs-class-cxl
3915
3916 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3917 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3918 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3919 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3920 L:      linux-scsi@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/scsi/cxlflash/
3923 F:      include/uapi/scsi/cxlflash_ioctls.h
3924 F:      Documentation/powerpc/cxlflash.txt
3925
3926 CYBERPRO FB DRIVER
3927 M:      Russell King <linux@armlinux.org.uk>
3928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3929 W:      http://www.armlinux.org.uk/
3930 S:      Maintained
3931 F:      drivers/video/fbdev/cyber2000fb.*
3932
3933 CYCLADES ASYNC MUX DRIVER
3934 W:      http://www.cyclades.com/
3935 S:      Orphan
3936 F:      drivers/tty/cyclades.c
3937 F:      include/linux/cyclades.h
3938 F:      include/uapi/linux/cyclades.h
3939
3940 CYCLADES PC300 DRIVER
3941 W:      http://www.cyclades.com/
3942 S:      Orphan
3943 F:      drivers/net/wan/pc300*
3944
3945 CYPRESS_FIRMWARE MEDIA DRIVER
3946 M:      Antti Palosaari <crope@iki.fi>
3947 L:      linux-media@vger.kernel.org
3948 W:      https://linuxtv.org
3949 W:      http://palosaari.fi/linux/
3950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3951 T:      git git://linuxtv.org/anttip/media_tree.git
3952 S:      Maintained
3953 F:      drivers/media/common/cypress_firmware*
3954
3955 CYTTSP TOUCHSCREEN DRIVER
3956 M:      Ferruh Yigit <fery@cypress.com>
3957 L:      linux-input@vger.kernel.org
3958 S:      Supported
3959 F:      drivers/input/touchscreen/cyttsp*
3960 F:      include/linux/input/cyttsp.h
3961
3962 D-LINK DIR-685 TOUCHKEYS DRIVER
3963 M:      Linus Walleij <linus.walleij@linaro.org>
3964 L:      linux-input@vger.kernel.org
3965 S:      Supported
3966 F:      drivers/input/dlink-dir685-touchkeys.c
3967
3968 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3969 M:      Joshua Kinard <kumba@gentoo.org>
3970 S:      Maintained
3971 F:      drivers/rtc/rtc-ds1685.c
3972 F:      include/linux/rtc/ds1685.h
3973
3974 DAMA SLAVE for AX.25
3975 M:      Joerg Reuter <jreuter@yaina.de>
3976 W:      http://yaina.de/jreuter/
3977 W:      http://www.qsl.net/dl1bke/
3978 L:      linux-hams@vger.kernel.org
3979 S:      Maintained
3980 F:      net/ax25/af_ax25.c
3981 F:      net/ax25/ax25_dev.c
3982 F:      net/ax25/ax25_ds_*
3983 F:      net/ax25/ax25_in.c
3984 F:      net/ax25/ax25_out.c
3985 F:      net/ax25/ax25_timer.c
3986 F:      net/ax25/sysctl_net_ax25.c
3987
3988 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3989 L:      netdev@vger.kernel.org
3990 S:      Orphan
3991 F:      Documentation/networking/dmfe.txt
3992 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3993
3994 DC390/AM53C974 SCSI driver
3995 M:      Hannes Reinecke <hare@suse.com>
3996 L:      linux-scsi@vger.kernel.org
3997 S:      Maintained
3998 F:      drivers/scsi/am53c974.c
3999
4000 DC395x SCSI driver
4001 M:      Oliver Neukum <oliver@neukum.org>
4002 M:      Ali Akcaagac <aliakc@web.de>
4003 M:      Jamie Lenehan <lenehan@twibble.org>
4004 L:      dc395x@twibble.org
4005 W:      http://twibble.org/dist/dc395x/
4006 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4007 S:      Maintained
4008 F:      Documentation/scsi/dc395x.txt
4009 F:      drivers/scsi/dc395x.*
4010
4011 DCCP PROTOCOL
4012 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4013 L:      dccp@vger.kernel.org
4014 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4015 S:      Maintained
4016 F:      include/linux/dccp.h
4017 F:      include/uapi/linux/dccp.h
4018 F:      include/linux/tfrc.h
4019 F:      net/dccp/
4020
4021 DECnet NETWORK LAYER
4022 W:      http://linux-decnet.sourceforge.net
4023 L:      linux-decnet-user@lists.sourceforge.net
4024 S:      Orphan
4025 F:      Documentation/networking/decnet.txt
4026 F:      net/decnet/
4027
4028 DECSTATION PLATFORM SUPPORT
4029 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4030 L:      linux-mips@linux-mips.org
4031 W:      http://www.linux-mips.org/wiki/DECstation
4032 S:      Maintained
4033 F:      arch/mips/dec/
4034 F:      arch/mips/include/asm/dec/
4035 F:      arch/mips/include/asm/mach-dec/
4036
4037 DEFXX FDDI NETWORK DRIVER
4038 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4039 S:      Maintained
4040 F:      drivers/net/fddi/defxx.*
4041
4042 DELL SMBIOS DRIVER
4043 M:      Pali Rohár <pali.rohar@gmail.com>
4044 M:      Mario Limonciello <mario.limonciello@dell.com>
4045 L:      platform-driver-x86@vger.kernel.org
4046 S:      Maintained
4047 F:      drivers/platform/x86/dell-smbios.*
4048
4049 DELL SMBIOS SMM DRIVER
4050 M:      Mario Limonciello <mario.limonciello@dell.com>
4051 L:      platform-driver-x86@vger.kernel.org
4052 S:      Maintained
4053 F:      drivers/platform/x86/dell-smbios-smm.c
4054
4055 DELL SMBIOS WMI DRIVER
4056 M:      Mario Limonciello <mario.limonciello@dell.com>
4057 L:      platform-driver-x86@vger.kernel.org
4058 S:      Maintained
4059 F:      drivers/platform/x86/dell-smbios-wmi.c
4060 F:      tools/wmi/dell-smbios-example.c
4061
4062 DELL LAPTOP DRIVER
4063 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4064 M:      Pali Rohár <pali.rohar@gmail.com>
4065 L:      platform-driver-x86@vger.kernel.org
4066 S:      Maintained
4067 F:      drivers/platform/x86/dell-laptop.c
4068
4069 DELL LAPTOP FREEFALL DRIVER
4070 M:      Pali Rohár <pali.rohar@gmail.com>
4071 S:      Maintained
4072 F:      drivers/platform/x86/dell-smo8800.c
4073
4074 DELL LAPTOP RBTN DRIVER
4075 M:      Pali Rohár <pali.rohar@gmail.com>
4076 S:      Maintained
4077 F:      drivers/platform/x86/dell-rbtn.*
4078
4079 DELL LAPTOP SMM DRIVER
4080 M:      Pali Rohár <pali.rohar@gmail.com>
4081 S:      Maintained
4082 F:      drivers/hwmon/dell-smm-hwmon.c
4083 F:      include/uapi/linux/i8k.h
4084
4085 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4086 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
4087 S:      Maintained
4088 F:      Documentation/dcdbas.txt
4089 F:      drivers/firmware/dcdbas.*
4090
4091 DELL WMI NOTIFICATIONS DRIVER
4092 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4093 M:      Pali Rohár <pali.rohar@gmail.com>
4094 S:      Maintained
4095 F:      drivers/platform/x86/dell-wmi.c
4096
4097 DELL WMI DESCRIPTOR DRIVER
4098 M:      Mario Limonciello <mario.limonciello@dell.com>
4099 S:      Maintained
4100 F:      drivers/platform/x86/dell-wmi-descriptor.c
4101
4102 DELTA ST MEDIA DRIVER
4103 M:      Hugues Fruchet <hugues.fruchet@st.com>
4104 L:      linux-media@vger.kernel.org
4105 T:      git git://linuxtv.org/media_tree.git
4106 W:      https://linuxtv.org
4107 S:      Supported
4108 F:      drivers/media/platform/sti/delta
4109
4110 DENALI NAND DRIVER
4111 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4112 L:      linux-mtd@lists.infradead.org
4113 S:      Supported
4114 F:      drivers/mtd/nand/denali*
4115
4116 DESIGNWARE USB2 DRD IP DRIVER
4117 M:      John Youn <johnyoun@synopsys.com>
4118 L:      linux-usb@vger.kernel.org
4119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4120 S:      Maintained
4121 F:      drivers/usb/dwc2/
4122
4123 DESIGNWARE USB3 DRD IP DRIVER
4124 M:      Felipe Balbi <balbi@kernel.org>
4125 L:      linux-usb@vger.kernel.org
4126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4127 S:      Maintained
4128 F:      drivers/usb/dwc3/
4129
4130 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4131 M:      Andreas Klinger <ak@it-klinger.de>
4132 L:      linux-iio@vger.kernel.org
4133 S:      Maintained
4134 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4135 F:      drivers/iio/proximity/srf*.c
4136
4137 DEVICE COREDUMP (DEV_COREDUMP)
4138 M:      Johannes Berg <johannes@sipsolutions.net>
4139 L:      linux-kernel@vger.kernel.org
4140 S:      Maintained
4141 F:      drivers/base/devcoredump.c
4142 F:      include/linux/devcoredump.h
4143
4144 DEVICE FREQUENCY (DEVFREQ)
4145 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4146 M:      Kyungmin Park <kyungmin.park@samsung.com>
4147 R:      Chanwoo Choi <cw00.choi@samsung.com>
4148 L:      linux-pm@vger.kernel.org
4149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4150 S:      Maintained
4151 F:      drivers/devfreq/
4152 F:      include/linux/devfreq.h
4153 F:      Documentation/devicetree/bindings/devfreq/
4154
4155 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4156 M:      Chanwoo Choi <cw00.choi@samsung.com>
4157 L:      linux-pm@vger.kernel.org
4158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4159 S:      Supported
4160 F:      drivers/devfreq/event/
4161 F:      drivers/devfreq/devfreq-event.c
4162 F:      include/linux/devfreq-event.h
4163 F:      Documentation/devicetree/bindings/devfreq/event/
4164
4165 DEVICE NUMBER REGISTRY
4166 M:      Torben Mathiasen <device@lanana.org>
4167 W:      http://lanana.org/docs/device-list/index.html
4168 S:      Maintained
4169
4170 DEVICE-MAPPER  (LVM)
4171 M:      Alasdair Kergon <agk@redhat.com>
4172 M:      Mike Snitzer <snitzer@redhat.com>
4173 M:      dm-devel@redhat.com
4174 L:      dm-devel@redhat.com
4175 W:      http://sources.redhat.com/dm
4176 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4178 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4179 S:      Maintained
4180 F:      Documentation/device-mapper/
4181 F:      drivers/md/Makefile
4182 F:      drivers/md/Kconfig
4183 F:      drivers/md/dm*
4184 F:      drivers/md/persistent-data/
4185 F:      include/linux/device-mapper.h
4186 F:      include/linux/dm-*.h
4187 F:      include/uapi/linux/dm-*.h
4188
4189 DEVLINK
4190 M:      Jiri Pirko <jiri@mellanox.com>
4191 L:      netdev@vger.kernel.org
4192 S:      Supported
4193 F:      net/core/devlink.c
4194 F:      include/net/devlink.h
4195 F:      include/uapi/linux/devlink.h
4196
4197 DIALOG SEMICONDUCTOR DRIVERS
4198 M:      Support Opensource <support.opensource@diasemi.com>
4199 W:      http://www.dialog-semiconductor.com/products
4200 S:      Supported
4201 F:      Documentation/hwmon/da90??
4202 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4203 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4204 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4205 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4206 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4207 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4208 F:      drivers/gpio/gpio-da90??.c
4209 F:      drivers/hwmon/da90??-hwmon.c
4210 F:      drivers/iio/adc/da91??-*.c
4211 F:      drivers/input/misc/da90??_onkey.c
4212 F:      drivers/input/touchscreen/da9052_tsi.c
4213 F:      drivers/leds/leds-da90??.c
4214 F:      drivers/mfd/da903x.c
4215 F:      drivers/mfd/da90??-*.c
4216 F:      drivers/mfd/da91??-*.c
4217 F:      drivers/power/supply/da9052-battery.c
4218 F:      drivers/power/supply/da91??-*.c
4219 F:      drivers/regulator/da903x.c
4220 F:      drivers/regulator/da9???-regulator.[ch]
4221 F:      drivers/thermal/da90??-thermal.c
4222 F:      drivers/rtc/rtc-da90??.c
4223 F:      drivers/video/backlight/da90??_bl.c
4224 F:      drivers/watchdog/da90??_wdt.c
4225 F:      include/linux/mfd/da903x.h
4226 F:      include/linux/mfd/da9052/
4227 F:      include/linux/mfd/da9055/
4228 F:      include/linux/mfd/da9062/
4229 F:      include/linux/mfd/da9063/
4230 F:      include/linux/mfd/da9150/
4231 F:      include/linux/regulator/da9211.h
4232 F:      include/sound/da[79]*.h
4233 F:      sound/soc/codecs/da[79]*.[ch]
4234
4235 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4236 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4237 L:      linux-gpio@vger.kernel.org
4238 S:      Maintained
4239 F:      drivers/gpio/gpio-gpio-mm.c
4240
4241 DIGI NEO AND CLASSIC PCI PRODUCTS
4242 M:      Lidza Louina <lidza.louina@gmail.com>
4243 M:      Mark Hounschell <markh@compro.net>
4244 L:      driverdev-devel@linuxdriverproject.org
4245 S:      Maintained
4246 F:      drivers/staging/dgnc/
4247
4248 DIOLAN U2C-12 I2C DRIVER
4249 M:      Guenter Roeck <linux@roeck-us.net>
4250 L:      linux-i2c@vger.kernel.org
4251 S:      Maintained
4252 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4253
4254 FILESYSTEM DIRECT ACCESS (DAX)
4255 M:      Matthew Wilcox <mawilcox@microsoft.com>
4256 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
4257 L:      linux-fsdevel@vger.kernel.org
4258 S:      Supported
4259 F:      fs/dax.c
4260 F:      include/linux/dax.h
4261 F:      include/trace/events/fs_dax.h
4262
4263 DEVICE DIRECT ACCESS (DAX)
4264 M:      Dan Williams <dan.j.williams@intel.com>
4265 L:      linux-nvdimm@lists.01.org
4266 S:      Supported
4267 F:      drivers/dax/
4268
4269 DIRECTORY NOTIFICATION (DNOTIFY)
4270 M:      Jan Kara <jack@suse.cz>
4271 R:      Amir Goldstein <amir73il@gmail.com>
4272 L:      linux-fsdevel@vger.kernel.org
4273 S:      Maintained
4274 F:      Documentation/filesystems/dnotify.txt
4275 F:      fs/notify/dnotify/
4276 F:      include/linux/dnotify.h
4277
4278 DISK GEOMETRY AND PARTITION HANDLING
4279 M:      Andries Brouwer <aeb@cwi.nl>
4280 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4281 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4282 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4283 S:      Maintained
4284
4285 DISKQUOTA
4286 M:      Jan Kara <jack@suse.com>
4287 S:      Maintained
4288 F:      Documentation/filesystems/quota.txt
4289 F:      fs/quota/
4290 F:      include/linux/quota*.h
4291 F:      include/uapi/linux/quota*.h
4292
4293 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4294 M:      Bernie Thompson <bernie@plugable.com>
4295 L:      linux-fbdev@vger.kernel.org
4296 S:      Maintained
4297 W:      http://plugable.com/category/projects/udlfb/
4298 F:      drivers/video/fbdev/udlfb.c
4299 F:      include/video/udlfb.h
4300 F:      Documentation/fb/udlfb.txt
4301
4302 DISTRIBUTED LOCK MANAGER (DLM)
4303 M:      Christine Caulfield <ccaulfie@redhat.com>
4304 M:      David Teigland <teigland@redhat.com>
4305 L:      cluster-devel@redhat.com
4306 W:      http://sources.redhat.com/cluster/
4307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4308 S:      Supported
4309 F:      fs/dlm/
4310
4311 DMA BUFFER SHARING FRAMEWORK
4312 M:      Sumit Semwal <sumit.semwal@linaro.org>
4313 S:      Maintained
4314 L:      linux-media@vger.kernel.org
4315 L:      dri-devel@lists.freedesktop.org
4316 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4317 F:      drivers/dma-buf/
4318 F:      include/linux/dma-buf*
4319 F:      include/linux/reservation.h
4320 F:      include/linux/*fence.h
4321 F:      Documentation/driver-api/dma-buf.rst
4322 T:      git git://anongit.freedesktop.org/drm/drm-misc
4323
4324 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4325 M:      Vinod Koul <vinod.koul@intel.com>
4326 L:      dmaengine@vger.kernel.org
4327 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4328 S:      Maintained
4329 F:      drivers/dma/
4330 F:      include/linux/dmaengine.h
4331 F:      Documentation/devicetree/bindings/dma/
4332 F:      Documentation/driver-api/dmaengine/
4333 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4334
4335 DMA MAPPING HELPERS
4336 M:      Christoph Hellwig <hch@lst.de>
4337 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4338 R:      Robin Murphy <robin.murphy@arm.com>
4339 L:      iommu@lists.linux-foundation.org
4340 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4341 W:      http://git.infradead.org/users/hch/dma-mapping.git
4342 S:      Supported
4343 F:      lib/dma-debug.c
4344 F:      lib/dma-direct.c
4345 F:      lib/dma-virt.c
4346 F:      drivers/base/dma-mapping.c
4347 F:      drivers/base/dma-coherent.c
4348 F:      include/asm-generic/dma-mapping.h
4349 F:      include/linux/dma-direct.h
4350 F:      include/linux/dma-mapping.h
4351
4352 DME1737 HARDWARE MONITOR DRIVER
4353 M:      Juerg Haefliger <juergh@gmail.com>
4354 L:      linux-hwmon@vger.kernel.org
4355 S:      Maintained
4356 F:      Documentation/hwmon/dme1737
4357 F:      drivers/hwmon/dme1737.c
4358
4359 DMI/SMBIOS SUPPORT
4360 M:      Jean Delvare <jdelvare@suse.com>
4361 S:      Maintained
4362 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4363 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4364 F:      drivers/firmware/dmi-id.c
4365 F:      drivers/firmware/dmi_scan.c
4366 F:      include/linux/dmi.h
4367
4368 DOCUMENTATION
4369 M:      Jonathan Corbet <corbet@lwn.net>
4370 L:      linux-doc@vger.kernel.org
4371 S:      Maintained
4372 F:      Documentation/
4373 F:      scripts/kernel-doc
4374 X:      Documentation/ABI/
4375 X:      Documentation/devicetree/
4376 X:      Documentation/acpi
4377 X:      Documentation/power
4378 X:      Documentation/spi
4379 X:      Documentation/media
4380 T:      git git://git.lwn.net/linux.git docs-next
4381
4382 DONGWOON DW9714 LENS VOICE COIL DRIVER
4383 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4384 L:      linux-media@vger.kernel.org
4385 T:      git git://linuxtv.org/media_tree.git
4386 S:      Maintained
4387 F:      drivers/media/i2c/dw9714.c
4388
4389 DOUBLETALK DRIVER
4390 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4391 L:      blinux-list@redhat.com
4392 S:      Maintained
4393 F:      drivers/char/dtlk.c
4394 F:      include/linux/dtlk.h
4395
4396 DPAA2 DATAPATH I/O (DPIO) DRIVER
4397 M:      Roy Pledge <Roy.Pledge@nxp.com>
4398 L:      linux-kernel@vger.kernel.org
4399 S:      Maintained
4400 F:      drivers/staging/fsl-mc/bus/dpio
4401
4402 DPAA2 ETHERNET DRIVER
4403 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4404 L:      linux-kernel@vger.kernel.org
4405 S:      Maintained
4406 F:      drivers/staging/fsl-dpaa2/ethernet
4407
4408 DPT_I2O SCSI RAID DRIVER
4409 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4410 L:      linux-scsi@vger.kernel.org
4411 W:      http://www.adaptec.com/
4412 S:      Maintained
4413 F:      drivers/scsi/dpt*
4414 F:      drivers/scsi/dpt/
4415
4416 DRBD DRIVER
4417 M:      Philipp Reisner <philipp.reisner@linbit.com>
4418 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4419 L:      drbd-dev@lists.linbit.com
4420 W:      http://www.drbd.org
4421 T:      git git://git.linbit.com/linux-drbd.git
4422 T:      git git://git.linbit.com/drbd-8.4.git
4423 S:      Supported
4424 F:      drivers/block/drbd/
4425 F:      lib/lru_cache.c
4426 F:      Documentation/blockdev/drbd/
4427
4428 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4429 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4431 S:      Supported
4432 F:      Documentation/kobject.txt
4433 F:      drivers/base/
4434 F:      fs/debugfs/
4435 F:      fs/sysfs/
4436 F:      include/linux/debugfs.h
4437 F:      include/linux/kobj*
4438 F:      lib/kobj*
4439
4440 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4441 M:      Kevin Hilman <khilman@kernel.org>
4442 M:      Nishanth Menon <nm@ti.com>
4443 S:      Maintained
4444 F:      drivers/power/avs/
4445 F:      include/linux/power/smartreflex.h
4446 L:      linux-pm@vger.kernel.org
4447
4448 DRM DRIVER FOR ARM PL111 CLCD
4449 M:      Eric Anholt <eric@anholt.net>
4450 T:      git git://anongit.freedesktop.org/drm/drm-misc
4451 S:      Supported
4452 F:      drivers/gpu/drm/pl111/
4453
4454 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4455 M:      Dave Airlie <airlied@redhat.com>
4456 S:      Odd Fixes
4457 F:      drivers/gpu/drm/ast/
4458
4459 DRM DRIVER FOR BOCHS VIRTUAL GPU
4460 M:      Gerd Hoffmann <kraxel@redhat.com>
4461 L:      virtualization@lists.linux-foundation.org
4462 T:      git git://anongit.freedesktop.org/drm/drm-misc
4463 S:      Maintained
4464 F:      drivers/gpu/drm/bochs/
4465
4466 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4467 M:      Linus Walleij <linus.walleij@linaro.org>
4468 T:      git git://anongit.freedesktop.org/drm/drm-misc
4469 S:      Maintained
4470 F:      drivers/gpu/drm/tve200/
4471
4472 DRM DRIVER FOR ILITEK ILI9225 PANELS
4473 M:      David Lechner <david@lechnology.com>
4474 S:      Maintained
4475 F:      drivers/gpu/drm/tinydrm/ili9225.c
4476 F:      Documentation/devicetree/bindings/display/ili9225.txt
4477
4478 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4479 S:      Orphan / Obsolete
4480 F:      drivers/gpu/drm/i810/
4481 F:      include/uapi/drm/i810_drm.h
4482
4483 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4484 S:      Orphan / Obsolete
4485 F:      drivers/gpu/drm/mga/
4486 F:      include/uapi/drm/mga_drm.h
4487
4488 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4489 M:      Dave Airlie <airlied@redhat.com>
4490 S:      Odd Fixes
4491 F:      drivers/gpu/drm/mgag200/
4492
4493 DRM DRIVER FOR MI0283QT
4494 M:      Noralf Trønnes <noralf@tronnes.org>
4495 S:      Maintained
4496 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4497 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4498
4499 DRM DRIVER FOR MSM ADRENO GPU
4500 M:      Rob Clark <robdclark@gmail.com>
4501 L:      linux-arm-msm@vger.kernel.org
4502 L:      dri-devel@lists.freedesktop.org
4503 L:      freedreno@lists.freedesktop.org
4504 T:      git git://people.freedesktop.org/~robclark/linux
4505 S:      Maintained
4506 F:      drivers/gpu/drm/msm/
4507 F:      include/uapi/drm/msm_drm.h
4508 F:      Documentation/devicetree/bindings/display/msm/
4509
4510 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4511 M:      Ben Skeggs <bskeggs@redhat.com>
4512 L:      dri-devel@lists.freedesktop.org
4513 L:      nouveau@lists.freedesktop.org
4514 T:      git git://github.com/skeggsb/linux
4515 S:      Supported
4516 F:      drivers/gpu/drm/nouveau/
4517 F:      include/uapi/drm/nouveau_drm.h
4518
4519 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4520 M:      Noralf Trønnes <noralf@tronnes.org>
4521 S:      Maintained
4522 F:      drivers/gpu/drm/tinydrm/repaper.c
4523 F:      Documentation/devicetree/bindings/display/repaper.txt
4524
4525 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4526 M:      Dave Airlie <airlied@redhat.com>
4527 M:      Gerd Hoffmann <kraxel@redhat.com>
4528 L:      virtualization@lists.linux-foundation.org
4529 T:      git git://anongit.freedesktop.org/drm/drm-misc
4530 S:      Obsolete
4531 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4532 F:      drivers/gpu/drm/cirrus/
4533
4534 DRM DRIVER FOR QXL VIRTUAL GPU
4535 M:      Dave Airlie <airlied@redhat.com>
4536 M:      Gerd Hoffmann <kraxel@redhat.com>
4537 L:      virtualization@lists.linux-foundation.org
4538 T:      git git://anongit.freedesktop.org/drm/drm-misc
4539 S:      Maintained
4540 F:      drivers/gpu/drm/qxl/
4541 F:      include/uapi/drm/qxl_drm.h
4542
4543 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4544 S:      Orphan / Obsolete
4545 F:      drivers/gpu/drm/r128/
4546 F:      include/uapi/drm/r128_drm.h
4547
4548 DRM DRIVER FOR SAVAGE VIDEO CARDS
4549 S:      Orphan / Obsolete
4550 F:      drivers/gpu/drm/savage/
4551 F:      include/uapi/drm/savage_drm.h
4552
4553 DRM DRIVER FOR SIS VIDEO CARDS
4554 S:      Orphan / Obsolete
4555 F:      drivers/gpu/drm/sis/
4556 F:      include/uapi/drm/sis_drm.h
4557
4558 DRM DRIVER FOR SITRONIX ST7586 PANELS
4559 M:      David Lechner <david@lechnology.com>
4560 S:      Maintained
4561 F:      drivers/gpu/drm/tinydrm/st7586.c
4562 F:      Documentation/devicetree/bindings/display/st7586.txt
4563
4564 DRM DRIVER FOR SITRONIX ST7735R PANELS
4565 M:      David Lechner <david@lechnology.com>
4566 S:      Maintained
4567 F:      drivers/gpu/drm/tinydrm/st7735r.c
4568 F:      Documentation/devicetree/bindings/display/st7735r.txt
4569
4570 DRM DRIVER FOR TDFX VIDEO CARDS
4571 S:      Orphan / Obsolete
4572 F:      drivers/gpu/drm/tdfx/
4573
4574 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4575 M:      Dave Airlie <airlied@redhat.com>
4576 S:      Odd Fixes
4577 F:      drivers/gpu/drm/udl/
4578
4579 DRM DRIVER FOR VMWARE VIRTUAL GPU
4580 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4581 M:      Sinclair Yeh <syeh@vmware.com>
4582 M:      Thomas Hellstrom <thellstrom@vmware.com>
4583 L:      dri-devel@lists.freedesktop.org
4584 T:      git git://people.freedesktop.org/~syeh/repos_linux
4585 T:      git git://people.freedesktop.org/~thomash/linux
4586 S:      Supported
4587 F:      drivers/gpu/drm/vmwgfx/
4588 F:      include/uapi/drm/vmwgfx_drm.h
4589
4590 DRM DRIVERS
4591 M:      David Airlie <airlied@linux.ie>
4592 L:      dri-devel@lists.freedesktop.org
4593 T:      git git://people.freedesktop.org/~airlied/linux
4594 B:      https://bugs.freedesktop.org/
4595 C:      irc://chat.freenode.net/dri-devel
4596 S:      Maintained
4597 F:      drivers/gpu/drm/
4598 F:      drivers/gpu/vga/
4599 F:      Documentation/devicetree/bindings/display/
4600 F:      Documentation/devicetree/bindings/gpu/
4601 F:      Documentation/devicetree/bindings/video/
4602 F:      Documentation/gpu/
4603 F:      include/drm/
4604 F:      include/uapi/drm/
4605 F:      include/linux/vga*
4606
4607 DRM DRIVERS AND MISC GPU PATCHES
4608 M:      Daniel Vetter <daniel.vetter@intel.com>
4609 M:      Gustavo Padovan <gustavo@padovan.org>
4610 M:      Sean Paul <seanpaul@chromium.org>
4611 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4612 S:      Maintained
4613 T:      git git://anongit.freedesktop.org/drm/drm-misc
4614 F:      Documentation/gpu/
4615 F:      drivers/gpu/vga/
4616 F:      drivers/gpu/drm/*
4617 F:      include/drm/drm*
4618 F:      include/uapi/drm/drm*
4619 F:      include/linux/vga*
4620
4621 DRM DRIVERS FOR ALLWINNER A10
4622 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
4623 L:      dri-devel@lists.freedesktop.org
4624 S:      Supported
4625 F:      drivers/gpu/drm/sun4i/
4626 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4627 T:      git git://anongit.freedesktop.org/drm/drm-misc
4628
4629 DRM DRIVERS FOR AMLOGIC SOCS
4630 M:      Neil Armstrong <narmstrong@baylibre.com>
4631 L:      dri-devel@lists.freedesktop.org
4632 L:      linux-amlogic@lists.infradead.org
4633 W:      http://linux-meson.com/
4634 S:      Supported
4635 F:      drivers/gpu/drm/meson/
4636 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4637 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4638 F:      Documentation/gpu/meson.rst
4639 T:      git git://anongit.freedesktop.org/drm/drm-misc
4640
4641 DRM DRIVERS FOR ATMEL HLCDC
4642 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4643 L:      dri-devel@lists.freedesktop.org
4644 S:      Supported
4645 F:      drivers/gpu/drm/atmel-hlcdc/
4646 F:      Documentation/devicetree/bindings/drm/atmel/
4647 T:      git git://anongit.freedesktop.org/drm/drm-misc
4648
4649 DRM DRIVERS FOR BRIDGE CHIPS
4650 M:      Archit Taneja <architt@codeaurora.org>
4651 M:      Andrzej Hajda <a.hajda@samsung.com>
4652 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4653 S:      Maintained
4654 T:      git git://anongit.freedesktop.org/drm/drm-misc
4655 F:      drivers/gpu/drm/bridge/
4656
4657 DRM DRIVERS FOR EXYNOS
4658 M:      Inki Dae <inki.dae@samsung.com>
4659 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4660 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4661 M:      Kyungmin Park <kyungmin.park@samsung.com>
4662 L:      dri-devel@lists.freedesktop.org
4663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4664 S:      Supported
4665 F:      drivers/gpu/drm/exynos/
4666 F:      include/uapi/drm/exynos_drm.h
4667 F:      Documentation/devicetree/bindings/display/exynos/
4668
4669 DRM DRIVERS FOR FREESCALE DCU
4670 M:      Stefan Agner <stefan@agner.ch>
4671 M:      Alison Wang <alison.wang@freescale.com>
4672 L:      dri-devel@lists.freedesktop.org
4673 S:      Supported
4674 F:      drivers/gpu/drm/fsl-dcu/
4675 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4676 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4677 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4678
4679 DRM DRIVERS FOR FREESCALE IMX
4680 M:      Philipp Zabel <p.zabel@pengutronix.de>
4681 L:      dri-devel@lists.freedesktop.org
4682 S:      Maintained
4683 F:      drivers/gpu/drm/imx/
4684 F:      drivers/gpu/ipu-v3/
4685 F:      Documentation/devicetree/bindings/display/imx/
4686
4687 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4688 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4689 L:      dri-devel@lists.freedesktop.org
4690 T:      git git://github.com/patjak/drm-gma500
4691 S:      Maintained
4692 F:      drivers/gpu/drm/gma500/
4693
4694 DRM DRIVERS FOR HISILICON
4695 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4696 M:      Rongrong Zou <zourongrong@gmail.com>
4697 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4698 R:      Chen Feng <puck.chen@hisilicon.com>
4699 L:      dri-devel@lists.freedesktop.org
4700 T:      git git://github.com/xin3liang/linux.git
4701 S:      Maintained
4702 F:      drivers/gpu/drm/hisilicon/
4703 F:      Documentation/devicetree/bindings/display/hisilicon/
4704
4705 DRM DRIVERS FOR MEDIATEK
4706 M:      CK Hu <ck.hu@mediatek.com>
4707 M:      Philipp Zabel <p.zabel@pengutronix.de>
4708 L:      dri-devel@lists.freedesktop.org
4709 S:      Supported
4710 F:      drivers/gpu/drm/mediatek/
4711 F:      Documentation/devicetree/bindings/display/mediatek/
4712
4713 DRM DRIVERS FOR NVIDIA TEGRA
4714 M:      Thierry Reding <thierry.reding@gmail.com>
4715 L:      dri-devel@lists.freedesktop.org
4716 L:      linux-tegra@vger.kernel.org
4717 T:      git git://anongit.freedesktop.org/tegra/linux.git
4718 S:      Supported
4719 F:      drivers/gpu/drm/tegra/
4720 F:      drivers/gpu/host1x/
4721 F:      include/linux/host1x.h
4722 F:      include/uapi/drm/tegra_drm.h
4723 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4724
4725 DRM DRIVERS FOR RENESAS
4726 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4727 L:      dri-devel@lists.freedesktop.org
4728 L:      linux-renesas-soc@vger.kernel.org
4729 T:      git git://linuxtv.org/pinchartl/fbdev
4730 S:      Supported
4731 F:      drivers/gpu/drm/rcar-du/
4732 F:      drivers/gpu/drm/shmobile/
4733 F:      include/linux/platform_data/shmob_drm.h
4734 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4735 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4736
4737 DRM DRIVERS FOR ROCKCHIP
4738 M:      Sandy Huang <hjc@rock-chips.com>
4739 M:      Heiko Stübner <heiko@sntech.de>
4740 L:      dri-devel@lists.freedesktop.org
4741 S:      Maintained
4742 F:      drivers/gpu/drm/rockchip/
4743 F:      Documentation/devicetree/bindings/display/rockchip/
4744 T:      git git://anongit.freedesktop.org/drm/drm-misc
4745
4746 DRM DRIVERS FOR STI
4747 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4748 M:      Vincent Abriou <vincent.abriou@st.com>
4749 L:      dri-devel@lists.freedesktop.org
4750 T:      git git://anongit.freedesktop.org/drm/drm-misc
4751 S:      Maintained
4752 F:      drivers/gpu/drm/sti
4753 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4754
4755 DRM DRIVERS FOR STM
4756 M:      Yannick Fertre <yannick.fertre@st.com>
4757 M:      Philippe Cornu <philippe.cornu@st.com>
4758 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4759 M:      Vincent Abriou <vincent.abriou@st.com>
4760 L:      dri-devel@lists.freedesktop.org
4761 T:      git git://anongit.freedesktop.org/drm/drm-misc
4762 S:      Maintained
4763 F:      drivers/gpu/drm/stm
4764 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4765
4766 DRM DRIVERS FOR TI LCDC
4767 M:      Jyri Sarha <jsarha@ti.com>
4768 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4769 L:      dri-devel@lists.freedesktop.org
4770 S:      Maintained
4771 F:      drivers/gpu/drm/tilcdc/
4772 F:      Documentation/devicetree/bindings/display/tilcdc/
4773
4774 DRM DRIVERS FOR TI OMAP
4775 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4776 L:      dri-devel@lists.freedesktop.org
4777 S:      Maintained
4778 F:      drivers/gpu/drm/omapdrm/
4779 F:      Documentation/devicetree/bindings/display/ti/
4780
4781 DRM DRIVERS FOR VC4
4782 M:      Eric Anholt <eric@anholt.net>
4783 T:      git git://github.com/anholt/linux
4784 S:      Supported
4785 F:      drivers/gpu/drm/vc4/
4786 F:      include/uapi/drm/vc4_drm.h
4787 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4788 T:      git git://anongit.freedesktop.org/drm/drm-misc
4789
4790 DRM DRIVERS FOR VIVANTE GPU IP
4791 M:      Lucas Stach <l.stach@pengutronix.de>
4792 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4793 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4794 L:      etnaviv@lists.freedesktop.org
4795 L:      dri-devel@lists.freedesktop.org
4796 S:      Maintained
4797 F:      drivers/gpu/drm/etnaviv/
4798 F:      include/uapi/drm/etnaviv_drm.h
4799 F:      Documentation/devicetree/bindings/display/etnaviv/
4800
4801 DRM DRIVERS FOR ZTE ZX
4802 M:      Shawn Guo <shawnguo@kernel.org>
4803 L:      dri-devel@lists.freedesktop.org
4804 S:      Maintained
4805 F:      drivers/gpu/drm/zte/
4806 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4807 T:      git git://anongit.freedesktop.org/drm/drm-misc
4808
4809 DRM PANEL DRIVERS
4810 M:      Thierry Reding <thierry.reding@gmail.com>
4811 L:      dri-devel@lists.freedesktop.org
4812 T:      git git://anongit.freedesktop.org/drm/drm-misc
4813 S:      Maintained
4814 F:      drivers/gpu/drm/drm_panel.c
4815 F:      drivers/gpu/drm/panel/
4816 F:      include/drm/drm_panel.h
4817 F:      Documentation/devicetree/bindings/display/panel/
4818
4819 DRM TINYDRM DRIVERS
4820 M:      Noralf Trønnes <noralf@tronnes.org>
4821 W:      https://github.com/notro/tinydrm/wiki/Development
4822 T:      git git://anongit.freedesktop.org/drm/drm-misc
4823 S:      Maintained
4824 F:      drivers/gpu/drm/tinydrm/
4825 F:      include/drm/tinydrm/
4826
4827 DRM TTM SUBSYSTEM
4828 M:      Christian Koenig <christian.koenig@amd.com>
4829 M:      Roger He <Hongbo.He@amd.com>
4830 T:      git git://people.freedesktop.org/~agd5f/linux
4831 S:      Maintained
4832 L:      dri-devel@lists.freedesktop.org
4833 F:      include/drm/ttm/
4834 F:      drivers/gpu/drm/ttm/
4835
4836 DSBR100 USB FM RADIO DRIVER
4837 M:      Alexey Klimov <klimov.linux@gmail.com>
4838 L:      linux-media@vger.kernel.org
4839 T:      git git://linuxtv.org/media_tree.git
4840 S:      Maintained
4841 F:      drivers/media/radio/dsbr100.c
4842
4843 DSCC4 DRIVER
4844 M:      Francois Romieu <romieu@fr.zoreil.com>
4845 L:      netdev@vger.kernel.org
4846 S:      Maintained
4847 F:      drivers/net/wan/dscc4.c
4848
4849 DT3155 MEDIA DRIVER
4850 M:      Hans Verkuil <hverkuil@xs4all.nl>
4851 L:      linux-media@vger.kernel.org
4852 T:      git git://linuxtv.org/media_tree.git
4853 W:      https://linuxtv.org
4854 S:      Odd Fixes
4855 F:      drivers/media/pci/dt3155/
4856
4857 DVB_USB_AF9015 MEDIA DRIVER
4858 M:      Antti Palosaari <crope@iki.fi>
4859 L:      linux-media@vger.kernel.org
4860 W:      https://linuxtv.org
4861 W:      http://palosaari.fi/linux/
4862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4863 T:      git git://linuxtv.org/anttip/media_tree.git
4864 S:      Maintained
4865 F:      drivers/media/usb/dvb-usb-v2/af9015*
4866
4867 DVB_USB_AF9035 MEDIA DRIVER
4868 M:      Antti Palosaari <crope@iki.fi>
4869 L:      linux-media@vger.kernel.org
4870 W:      https://linuxtv.org
4871 W:      http://palosaari.fi/linux/
4872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4873 T:      git git://linuxtv.org/anttip/media_tree.git
4874 S:      Maintained
4875 F:      drivers/media/usb/dvb-usb-v2/af9035*
4876
4877 DVB_USB_ANYSEE MEDIA DRIVER
4878 M:      Antti Palosaari <crope@iki.fi>
4879 L:      linux-media@vger.kernel.org
4880 W:      https://linuxtv.org
4881 W:      http://palosaari.fi/linux/
4882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4883 T:      git git://linuxtv.org/anttip/media_tree.git
4884 S:      Maintained
4885 F:      drivers/media/usb/dvb-usb-v2/anysee*
4886
4887 DVB_USB_AU6610 MEDIA DRIVER
4888 M:      Antti Palosaari <crope@iki.fi>
4889 L:      linux-media@vger.kernel.org
4890 W:      https://linuxtv.org
4891 W:      http://palosaari.fi/linux/
4892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4893 T:      git git://linuxtv.org/anttip/media_tree.git
4894 S:      Maintained
4895 F:      drivers/media/usb/dvb-usb-v2/au6610*
4896
4897 DVB_USB_CE6230 MEDIA DRIVER
4898 M:      Antti Palosaari <crope@iki.fi>
4899 L:      linux-media@vger.kernel.org
4900 W:      https://linuxtv.org
4901 W:      http://palosaari.fi/linux/
4902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4903 T:      git git://linuxtv.org/anttip/media_tree.git
4904 S:      Maintained
4905 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4906
4907 DVB_USB_CXUSB MEDIA DRIVER
4908 M:      Michael Krufky <mkrufky@linuxtv.org>
4909 L:      linux-media@vger.kernel.org
4910 W:      https://linuxtv.org
4911 W:      http://github.com/mkrufky
4912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4913 T:      git git://linuxtv.org/media_tree.git
4914 S:      Maintained
4915 F:      drivers/media/usb/dvb-usb/cxusb*
4916
4917 DVB_USB_EC168 MEDIA DRIVER
4918 M:      Antti Palosaari <crope@iki.fi>
4919 L:      linux-media@vger.kernel.org
4920 W:      https://linuxtv.org
4921 W:      http://palosaari.fi/linux/
4922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4923 T:      git git://linuxtv.org/anttip/media_tree.git
4924 S:      Maintained
4925 F:      drivers/media/usb/dvb-usb-v2/ec168*
4926
4927 DVB_USB_GL861 MEDIA DRIVER
4928 M:      Antti Palosaari <crope@iki.fi>
4929 L:      linux-media@vger.kernel.org
4930 W:      https://linuxtv.org
4931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4932 T:      git git://linuxtv.org/anttip/media_tree.git
4933 S:      Maintained
4934 F:      drivers/media/usb/dvb-usb-v2/gl861*
4935
4936 DVB_USB_MXL111SF MEDIA DRIVER
4937 M:      Michael Krufky <mkrufky@linuxtv.org>
4938 L:      linux-media@vger.kernel.org
4939 W:      https://linuxtv.org
4940 W:      http://github.com/mkrufky
4941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4942 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4943 S:      Maintained
4944 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4945
4946 DVB_USB_RTL28XXU MEDIA DRIVER
4947 M:      Antti Palosaari <crope@iki.fi>
4948 L:      linux-media@vger.kernel.org
4949 W:      https://linuxtv.org
4950 W:      http://palosaari.fi/linux/
4951 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4952 T:      git git://linuxtv.org/anttip/media_tree.git
4953 S:      Maintained
4954 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4955
4956 DVB_USB_V2 MEDIA DRIVER
4957 M:      Antti Palosaari <crope@iki.fi>
4958 L:      linux-media@vger.kernel.org
4959 W:      https://linuxtv.org
4960 W:      http://palosaari.fi/linux/
4961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4962 T:      git git://linuxtv.org/anttip/media_tree.git
4963 S:      Maintained
4964 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4965 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4966
4967 DYNAMIC DEBUG
4968 M:      Jason Baron <jbaron@akamai.com>
4969 S:      Maintained
4970 F:      lib/dynamic_debug.c
4971 F:      include/linux/dynamic_debug.h
4972
4973 DYNAMIC INTERRUPT MODERATION
4974 M:      Tal Gilboa <talgi@mellanox.com>
4975 S:      Maintained
4976 F:      include/linux/net_dim.h
4977
4978 DZ DECSTATION DZ11 SERIAL DRIVER
4979 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4980 S:      Maintained
4981 F:      drivers/tty/serial/dz.*
4982
4983 E3X0 POWER BUTTON DRIVER
4984 M:      Moritz Fischer <moritz.fischer@ettus.com>
4985 L:      usrp-users@lists.ettus.com
4986 W:      http://www.ettus.com
4987 S:      Supported
4988 F:      drivers/input/misc/e3x0-button.c
4989 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4990
4991 E4000 MEDIA DRIVER
4992 M:      Antti Palosaari <crope@iki.fi>
4993 L:      linux-media@vger.kernel.org
4994 W:      https://linuxtv.org
4995 W:      http://palosaari.fi/linux/
4996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4997 T:      git git://linuxtv.org/anttip/media_tree.git
4998 S:      Maintained
4999 F:      drivers/media/tuners/e4000*
5000
5001 EATA ISA/EISA/PCI SCSI DRIVER
5002 M:      Dario Ballabio <ballabio_dario@emc.com>
5003 L:      linux-scsi@vger.kernel.org
5004 S:      Maintained
5005 F:      drivers/scsi/eata.c
5006
5007 EC100 MEDIA DRIVER
5008 M:      Antti Palosaari <crope@iki.fi>
5009 L:      linux-media@vger.kernel.org
5010 W:      https://linuxtv.org
5011 W:      http://palosaari.fi/linux/
5012 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5013 T:      git git://linuxtv.org/anttip/media_tree.git
5014 S:      Maintained
5015 F:      drivers/media/dvb-frontends/ec100*
5016
5017 ECRYPT FILE SYSTEM
5018 M:      Tyler Hicks <tyhicks@canonical.com>
5019 L:      ecryptfs@vger.kernel.org
5020 W:      http://ecryptfs.org
5021 W:      https://launchpad.net/ecryptfs
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5023 S:      Supported
5024 F:      Documentation/filesystems/ecryptfs.txt
5025 F:      fs/ecryptfs/
5026
5027 EDAC-AMD64
5028 M:      Borislav Petkov <bp@alien8.de>
5029 L:      linux-edac@vger.kernel.org
5030 S:      Maintained
5031 F:      drivers/edac/amd64_edac*
5032
5033 EDAC-CALXEDA
5034 M:      Robert Richter <rric@kernel.org>
5035 L:      linux-edac@vger.kernel.org
5036 S:      Maintained
5037 F:      drivers/edac/highbank*
5038
5039 EDAC-CAVIUM OCTEON
5040 M:      Ralf Baechle <ralf@linux-mips.org>
5041 M:      David Daney <david.daney@cavium.com>
5042 L:      linux-edac@vger.kernel.org
5043 L:      linux-mips@linux-mips.org
5044 S:      Supported
5045 F:      drivers/edac/octeon_edac*
5046
5047 EDAC-CAVIUM THUNDERX
5048 M:      David Daney <david.daney@cavium.com>
5049 M:      Jan Glauber <jglauber@cavium.com>
5050 L:      linux-edac@vger.kernel.org
5051 S:      Supported
5052 F:      drivers/edac/thunderx_edac*
5053
5054 EDAC-CORE
5055 M:      Borislav Petkov <bp@alien8.de>
5056 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5057 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5058 L:      linux-edac@vger.kernel.org
5059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5061 S:      Supported
5062 F:      Documentation/admin-guide/ras.rst
5063 F:      Documentation/driver-api/edac.rst
5064 F:      drivers/edac/
5065 F:      include/linux/edac.h
5066
5067 EDAC-E752X
5068 M:      Mark Gross <mark.gross@intel.com>
5069 L:      linux-edac@vger.kernel.org
5070 S:      Maintained
5071 F:      drivers/edac/e752x_edac.c
5072
5073 EDAC-E7XXX
5074 L:      linux-edac@vger.kernel.org
5075 S:      Maintained
5076 F:      drivers/edac/e7xxx_edac.c
5077
5078 EDAC-FSL_DDR
5079 M:      York Sun <york.sun@nxp.com>
5080 L:      linux-edac@vger.kernel.org
5081 S:      Maintained
5082 F:      drivers/edac/fsl_ddr_edac.*
5083
5084 EDAC-GHES
5085 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5086 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5087 L:      linux-edac@vger.kernel.org
5088 S:      Maintained
5089 F:      drivers/edac/ghes_edac.c
5090
5091 EDAC-I3000
5092 L:      linux-edac@vger.kernel.org
5093 S:      Orphan
5094 F:      drivers/edac/i3000_edac.c
5095
5096 EDAC-I5000
5097 L:      linux-edac@vger.kernel.org
5098 S:      Maintained
5099 F:      drivers/edac/i5000_edac.c
5100
5101 EDAC-I5400
5102 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5103 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5104 L:      linux-edac@vger.kernel.org
5105 S:      Maintained
5106 F:      drivers/edac/i5400_edac.c
5107
5108 EDAC-I7300
5109 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5110 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5111 L:      linux-edac@vger.kernel.org
5112 S:      Maintained
5113 F:      drivers/edac/i7300_edac.c
5114
5115 EDAC-I7CORE
5116 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5117 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5118 L:      linux-edac@vger.kernel.org
5119 S:      Maintained
5120 F:      drivers/edac/i7core_edac.c
5121
5122 EDAC-I82443BXGX
5123 M:      Tim Small <tim@buttersideup.com>
5124 L:      linux-edac@vger.kernel.org
5125 S:      Maintained
5126 F:      drivers/edac/i82443bxgx_edac.c
5127
5128 EDAC-I82975X
5129 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
5130 M:      "Arvind R." <arvino55@gmail.com>
5131 L:      linux-edac@vger.kernel.org
5132 S:      Maintained
5133 F:      drivers/edac/i82975x_edac.c
5134
5135 EDAC-IE31200
5136 M:      Jason Baron <jbaron@akamai.com>
5137 L:      linux-edac@vger.kernel.org
5138 S:      Maintained
5139 F:      drivers/edac/ie31200_edac.c
5140
5141 EDAC-MPC85XX
5142 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5143 L:      linux-edac@vger.kernel.org
5144 S:      Maintained
5145 F:      drivers/edac/mpc85xx_edac.[ch]
5146
5147 EDAC-PASEMI
5148 M:      Egor Martovetsky <egor@pasemi.com>
5149 L:      linux-edac@vger.kernel.org
5150 S:      Maintained
5151 F:      drivers/edac/pasemi_edac.c
5152
5153 EDAC-PND2
5154 M:      Tony Luck <tony.luck@intel.com>
5155 L:      linux-edac@vger.kernel.org
5156 S:      Maintained
5157 F:      drivers/edac/pnd2_edac.[ch]
5158
5159 EDAC-R82600
5160 M:      Tim Small <tim@buttersideup.com>
5161 L:      linux-edac@vger.kernel.org
5162 S:      Maintained
5163 F:      drivers/edac/r82600_edac.c
5164
5165 EDAC-SBRIDGE
5166 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5167 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5168 L:      linux-edac@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/edac/sb_edac.c
5171
5172 EDAC-SKYLAKE
5173 M:      Tony Luck <tony.luck@intel.com>
5174 L:      linux-edac@vger.kernel.org
5175 S:      Maintained
5176 F:      drivers/edac/skx_edac.c
5177
5178 EDAC-TI
5179 M:      Tero Kristo <t-kristo@ti.com>
5180 L:      linux-edac@vger.kernel.org
5181 S:      Maintained
5182 F:      drivers/edac/ti_edac.c
5183
5184 EDIROL UA-101/UA-1000 DRIVER
5185 M:      Clemens Ladisch <clemens@ladisch.de>
5186 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5187 T:      git git://git.alsa-project.org/alsa-kernel.git
5188 S:      Maintained
5189 F:      sound/usb/misc/ua101.c
5190
5191 EFI TEST DRIVER
5192 L:      linux-efi@vger.kernel.org
5193 M:      Ivan Hu <ivan.hu@canonical.com>
5194 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5195 S:      Maintained
5196 F:      drivers/firmware/efi/test/
5197
5198 EFI VARIABLE FILESYSTEM
5199 M:      Matthew Garrett <matthew.garrett@nebula.com>
5200 M:      Jeremy Kerr <jk@ozlabs.org>
5201 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5203 L:      linux-efi@vger.kernel.org
5204 S:      Maintained
5205 F:      fs/efivarfs/
5206
5207 EFIFB FRAMEBUFFER DRIVER
5208 L:      linux-fbdev@vger.kernel.org
5209 M:      Peter Jones <pjones@redhat.com>
5210 S:      Maintained
5211 F:      drivers/video/fbdev/efifb.c
5212
5213 EFS FILESYSTEM
5214 W:      http://aeschi.ch.eu.org/efs/
5215 S:      Orphan
5216 F:      fs/efs/
5217
5218 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5219 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
5220 L:      netdev@vger.kernel.org
5221 S:      Maintained
5222 F:      drivers/net/ethernet/ibm/ehea/
5223
5224 EM28XX VIDEO4LINUX DRIVER
5225 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5226 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5227 L:      linux-media@vger.kernel.org
5228 W:      https://linuxtv.org
5229 T:      git git://linuxtv.org/media_tree.git
5230 S:      Maintained
5231 F:      drivers/media/usb/em28xx/
5232 F:      Documentation/media/v4l-drivers/em28xx*
5233
5234 EMBEDDED LINUX
5235 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5236 M:      Matt Mackall <mpm@selenic.com>
5237 M:      David Woodhouse <dwmw2@infradead.org>
5238 L:      linux-embedded@vger.kernel.org
5239 S:      Maintained
5240
5241 Emulex 10Gbps iSCSI - OneConnect DRIVER
5242 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5243 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5244 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5245 L:      linux-scsi@vger.kernel.org
5246 W:      http://www.broadcom.com
5247 S:      Supported
5248 F:      drivers/scsi/be2iscsi/
5249
5250 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5251 M:      Sathya Perla <sathya.perla@broadcom.com>
5252 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5253 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5254 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5255 L:      netdev@vger.kernel.org
5256 W:      http://www.emulex.com
5257 S:      Supported
5258 F:      drivers/net/ethernet/emulex/benet/
5259
5260 EMULEX ONECONNECT ROCE DRIVER
5261 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5262 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5263 L:      linux-rdma@vger.kernel.org
5264 W:      http://www.broadcom.com
5265 S:      Odd Fixes
5266 F:      drivers/infiniband/hw/ocrdma/
5267 F:      include/uapi/rdma/ocrdma-abi.h
5268
5269 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5270 M:      James Smart <james.smart@broadcom.com>
5271 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5272 L:      linux-scsi@vger.kernel.org
5273 W:      http://www.broadcom.com
5274 S:      Supported
5275 F:      drivers/scsi/lpfc/
5276
5277 ENE CB710 FLASH CARD READER DRIVER
5278 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5279 S:      Maintained
5280 F:      drivers/misc/cb710/
5281 F:      drivers/mmc/host/cb710-mmc.*
5282 F:      include/linux/cb710.h
5283
5284 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5285 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5286 S:      Maintained
5287 F:      drivers/media/rc/ene_ir.*
5288
5289 EPSON S1D13XXX FRAMEBUFFER DRIVER
5290 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5291 S:      Maintained
5292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5293 F:      drivers/video/fbdev/s1d13xxxfb.c
5294 F:      include/video/s1d13xxxfb.h
5295
5296 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5297 M:      Jeff Layton <jlayton@kernel.org>
5298 S:      Maintained
5299 F:      lib/errseq.c
5300 F:      include/linux/errseq.h
5301
5302 ET131X NETWORK DRIVER
5303 M:      Mark Einon <mark.einon@gmail.com>
5304 S:      Odd Fixes
5305 F:      drivers/net/ethernet/agere/
5306
5307 ETHERNET BRIDGE
5308 M:      Stephen Hemminger <stephen@networkplumber.org>
5309 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5310 L:      netdev@vger.kernel.org
5311 W:      http://www.linuxfoundation.org/en/Net:Bridge
5312 S:      Maintained
5313 F:      include/linux/netfilter_bridge/
5314 F:      net/bridge/
5315
5316 ETHERNET PHY LIBRARY
5317 M:      Andrew Lunn <andrew@lunn.ch>
5318 M:      Florian Fainelli <f.fainelli@gmail.com>
5319 L:      netdev@vger.kernel.org
5320 S:      Maintained
5321 F:      Documentation/ABI/testing/sysfs-bus-mdio
5322 F:      Documentation/devicetree/bindings/net/mdio*
5323 F:      Documentation/networking/phy.txt
5324 F:      drivers/net/phy/
5325 F:      drivers/of/of_mdio.c
5326 F:      drivers/of/of_net.c
5327 F:      include/linux/*mdio*.h
5328 F:      include/linux/of_net.h
5329 F:      include/linux/phy.h
5330 F:      include/linux/phy_fixed.h
5331 F:      include/linux/platform_data/mdio-gpio.h
5332 F:      include/linux/platform_data/mdio-bcm-unimac.h
5333 F:      include/trace/events/mdio.h
5334 F:      include/uapi/linux/mdio.h
5335 F:      include/uapi/linux/mii.h
5336
5337 EXT2 FILE SYSTEM
5338 M:      Jan Kara <jack@suse.com>
5339 L:      linux-ext4@vger.kernel.org
5340 S:      Maintained
5341 F:      Documentation/filesystems/ext2.txt
5342 F:      fs/ext2/
5343 F:      include/linux/ext2*
5344
5345 EXT4 FILE SYSTEM
5346 M:      "Theodore Ts'o" <tytso@mit.edu>
5347 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5348 L:      linux-ext4@vger.kernel.org
5349 W:      http://ext4.wiki.kernel.org
5350 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5352 S:      Maintained
5353 F:      Documentation/filesystems/ext4.txt
5354 F:      fs/ext4/
5355
5356 Extended Verification Module (EVM)
5357 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5358 L:      linux-integrity@vger.kernel.org
5359 S:      Supported
5360 F:      security/integrity/evm/
5361
5362 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5363 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5364 L:      linux-efi@vger.kernel.org
5365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5366 S:      Maintained
5367 F:      Documentation/efi-stub.txt
5368 F:      arch/*/kernel/efi.c
5369 F:      arch/x86/boot/compressed/eboot.[ch]
5370 F:      arch/*/include/asm/efi.h
5371 F:      arch/x86/platform/efi/
5372 F:      drivers/firmware/efi/
5373 F:      include/linux/efi*.h
5374 F:      arch/arm/boot/compressed/efi-header.S
5375 F:      arch/arm64/kernel/efi-entry.S
5376
5377 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5378 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5379 M:      Chanwoo Choi <cw00.choi@samsung.com>
5380 L:      linux-kernel@vger.kernel.org
5381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5382 S:      Maintained
5383 F:      drivers/extcon/
5384 F:      include/linux/extcon/
5385 F:      include/linux/extcon.h
5386 F:      Documentation/extcon/
5387 F:      Documentation/devicetree/bindings/extcon/
5388
5389 EXYNOS DP DRIVER
5390 M:      Jingoo Han <jingoohan1@gmail.com>
5391 L:      dri-devel@lists.freedesktop.org
5392 S:      Maintained
5393 F:      drivers/gpu/drm/exynos/exynos_dp*
5394
5395 EXYNOS SYSMMU (IOMMU) driver
5396 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5397 L:      iommu@lists.linux-foundation.org
5398 S:      Maintained
5399 F:      drivers/iommu/exynos-iommu.c
5400
5401 EZchip NPS platform support
5402 M:      Elad Kanfi <eladkan@mellanox.com>
5403 M:      Vineet Gupta <vgupta@synopsys.com>
5404 S:      Supported
5405 F:      arch/arc/plat-eznps
5406 F:      arch/arc/boot/dts/eznps.dts
5407
5408 F2FS FILE SYSTEM
5409 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5410 M:      Chao Yu <yuchao0@huawei.com>
5411 L:      linux-f2fs-devel@lists.sourceforge.net
5412 W:      https://f2fs.wiki.kernel.org/
5413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5414 S:      Maintained
5415 F:      Documentation/filesystems/f2fs.txt
5416 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5417 F:      fs/f2fs/
5418 F:      include/linux/f2fs_fs.h
5419 F:      include/trace/events/f2fs.h
5420
5421 F71805F HARDWARE MONITORING DRIVER
5422 M:      Jean Delvare <jdelvare@suse.com>
5423 L:      linux-hwmon@vger.kernel.org
5424 S:      Maintained
5425 F:      Documentation/hwmon/f71805f
5426 F:      drivers/hwmon/f71805f.c
5427
5428 FANOTIFY
5429 M:      Jan Kara <jack@suse.cz>
5430 R:      Amir Goldstein <amir73il@gmail.com>
5431 L:      linux-fsdevel@vger.kernel.org
5432 S:      Maintained
5433 F:      fs/notify/fanotify/
5434 F:      include/linux/fanotify.h
5435 F:      include/uapi/linux/fanotify.h
5436
5437 FARSYNC SYNCHRONOUS DRIVER
5438 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5439 W:      http://www.farsite.co.uk/
5440 S:      Supported
5441 F:      drivers/net/wan/farsync.*
5442
5443 FAULT INJECTION SUPPORT
5444 M:      Akinobu Mita <akinobu.mita@gmail.com>
5445 S:      Supported
5446 F:      Documentation/fault-injection/
5447 F:      lib/fault-inject.c
5448
5449 FBTFT Framebuffer drivers
5450 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5451 S:      Maintained
5452 F:      drivers/staging/fbtft/
5453
5454 FC0011 TUNER DRIVER
5455 M:      Michael Buesch <m@bues.ch>
5456 L:      linux-media@vger.kernel.org
5457 S:      Maintained
5458 F:      drivers/media/tuners/fc0011.h
5459 F:      drivers/media/tuners/fc0011.c
5460
5461 FC2580 MEDIA DRIVER
5462 M:      Antti Palosaari <crope@iki.fi>
5463 L:      linux-media@vger.kernel.org
5464 W:      https://linuxtv.org
5465 W:      http://palosaari.fi/linux/
5466 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5467 T:      git git://linuxtv.org/anttip/media_tree.git
5468 S:      Maintained
5469 F:      drivers/media/tuners/fc2580*
5470
5471 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5472 M:      Johannes Thumshirn <jth@kernel.org>
5473 L:      linux-scsi@vger.kernel.org
5474 W:      www.Open-FCoE.org
5475 S:      Supported
5476 F:      drivers/scsi/libfc/
5477 F:      drivers/scsi/fcoe/
5478 F:      include/scsi/fc/
5479 F:      include/scsi/libfc.h
5480 F:      include/scsi/libfcoe.h
5481 F:      include/uapi/scsi/fc/
5482
5483 FILE LOCKING (flock() and fcntl()/lockf())
5484 M:      Jeff Layton <jlayton@kernel.org>
5485 M:      "J. Bruce Fields" <bfields@fieldses.org>
5486 L:      linux-fsdevel@vger.kernel.org
5487 S:      Maintained
5488 F:      include/linux/fcntl.h
5489 F:      include/uapi/linux/fcntl.h
5490 F:      fs/fcntl.c
5491 F:      fs/locks.c
5492
5493 FILESYSTEMS (VFS and infrastructure)
5494 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5495 L:      linux-fsdevel@vger.kernel.org
5496 S:      Maintained
5497 F:      fs/*
5498 F:      include/linux/fs.h
5499 F:      include/uapi/linux/fs.h
5500
5501 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5502 M:      Riku Voipio <riku.voipio@iki.fi>
5503 L:      linux-hwmon@vger.kernel.org
5504 S:      Maintained
5505 F:      drivers/hwmon/f75375s.c
5506 F:      include/linux/f75375s.h
5507
5508 FIREWIRE AUDIO DRIVERS
5509 M:      Clemens Ladisch <clemens@ladisch.de>
5510 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5511 T:      git git://git.alsa-project.org/alsa-kernel.git
5512 S:      Maintained
5513 F:      sound/firewire/
5514
5515 FIREWIRE MEDIA DRIVERS (firedtv)
5516 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5517 L:      linux-media@vger.kernel.org
5518 L:      linux1394-devel@lists.sourceforge.net
5519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5520 S:      Maintained
5521 F:      drivers/media/firewire/
5522
5523 FIREWIRE SBP-2 TARGET
5524 M:      Chris Boot <bootc@bootc.net>
5525 L:      linux-scsi@vger.kernel.org
5526 L:      target-devel@vger.kernel.org
5527 L:      linux1394-devel@lists.sourceforge.net
5528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5529 S:      Maintained
5530 F:      drivers/target/sbp/
5531
5532 FIREWIRE SUBSYSTEM
5533 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5534 L:      linux1394-devel@lists.sourceforge.net
5535 W:      http://ieee1394.wiki.kernel.org/
5536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5537 S:      Maintained
5538 F:      drivers/firewire/
5539 F:      include/linux/firewire.h
5540 F:      include/uapi/linux/firewire*.h
5541 F:      tools/firewire/
5542
5543 FIRMWARE LOADER (request_firmware)
5544 M:      Luis R. Rodriguez <mcgrof@kernel.org>
5545 L:      linux-kernel@vger.kernel.org
5546 S:      Maintained
5547 F:      Documentation/firmware_class/
5548 F:      drivers/base/firmware*.c
5549 F:      include/linux/firmware.h
5550
5551 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5552 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5553 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5554 S:      Maintained
5555 F:      drivers/block/rsxx/
5556
5557 FLOPPY DRIVER
5558 M:      Jiri Kosina <jikos@kernel.org>
5559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5560 S:      Odd fixes
5561 F:      drivers/block/floppy.c
5562
5563 FMC SUBSYSTEM
5564 M:      Alessandro Rubini <rubini@gnudd.com>
5565 W:      http://www.ohwr.org/projects/fmc-bus
5566 S:      Supported
5567 F:      drivers/fmc/
5568 F:      include/linux/fmc*.h
5569 F:      include/linux/ipmi-fru.h
5570 K:      fmc_d.*register
5571
5572 FPGA MANAGER FRAMEWORK
5573 M:      Alan Tull <atull@kernel.org>
5574 M:      Moritz Fischer <mdf@kernel.org>
5575 L:      linux-fpga@vger.kernel.org
5576 S:      Maintained
5577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5578 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
5579 F:      Documentation/fpga/
5580 F:      Documentation/devicetree/bindings/fpga/
5581 F:      drivers/fpga/
5582 F:      include/linux/fpga/
5583 W:      http://www.rocketboards.org
5584
5585 FPU EMULATOR
5586 M:      Bill Metzenthen <billm@melbpc.org.au>
5587 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5588 S:      Maintained
5589 F:      arch/x86/math-emu/
5590
5591 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5592 L:      netdev@vger.kernel.org
5593 S:      Orphan
5594 F:      drivers/net/wan/dlci.c
5595 F:      drivers/net/wan/sdla.c
5596
5597 FRAMEBUFFER LAYER
5598 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5599 L:      dri-devel@lists.freedesktop.org
5600 L:      linux-fbdev@vger.kernel.org
5601 T:      git git://github.com/bzolnier/linux.git
5602 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5603 S:      Maintained
5604 F:      Documentation/fb/
5605 F:      drivers/video/
5606 F:      include/video/
5607 F:      include/linux/fb.h
5608 F:      include/uapi/video/
5609 F:      include/uapi/linux/fb.h
5610
5611 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5612 M:      Horia Geantă <horia.geanta@nxp.com>
5613 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
5614 L:      linux-crypto@vger.kernel.org
5615 S:      Maintained
5616 F:      drivers/crypto/caam/
5617 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5618
5619 FREESCALE DIU FRAMEBUFFER DRIVER
5620 M:      Timur Tabi <timur@tabi.org>
5621 L:      linux-fbdev@vger.kernel.org
5622 S:      Maintained
5623 F:      drivers/video/fbdev/fsl-diu-fb.*
5624
5625 FREESCALE DMA DRIVER
5626 M:      Li Yang <leoyang.li@nxp.com>
5627 M:      Zhang Wei <zw@zh-kernel.org>
5628 L:      linuxppc-dev@lists.ozlabs.org
5629 S:      Maintained
5630 F:      drivers/dma/fsldma.*
5631
5632 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5633 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5634 L:      netdev@vger.kernel.org
5635 S:      Maintained
5636 F:      drivers/net/ethernet/freescale/gianfar*
5637 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5638 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5639
5640 FREESCALE GPMI NAND DRIVER
5641 M:      Han Xu <han.xu@nxp.com>
5642 L:      linux-mtd@lists.infradead.org
5643 S:      Maintained
5644 F:      drivers/mtd/nand/gpmi-nand/*
5645
5646 FREESCALE I2C CPM DRIVER
5647 M:      Jochen Friedrich <jochen@scram.de>
5648 L:      linuxppc-dev@lists.ozlabs.org
5649 L:      linux-i2c@vger.kernel.org
5650 S:      Maintained
5651 F:      drivers/i2c/busses/i2c-cpm.c
5652
5653 FREESCALE IMX / MXC FEC DRIVER
5654 M:      Fugang Duan <fugang.duan@nxp.com>
5655 L:      netdev@vger.kernel.org
5656 S:      Maintained
5657 F:      drivers/net/ethernet/freescale/fec_main.c
5658 F:      drivers/net/ethernet/freescale/fec_ptp.c
5659 F:      drivers/net/ethernet/freescale/fec.h
5660 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5661
5662 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5663 M:      Sascha Hauer <kernel@pengutronix.de>
5664 L:      linux-fbdev@vger.kernel.org
5665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5666 S:      Maintained
5667 F:      include/linux/platform_data/video-imxfb.h
5668 F:      drivers/video/fbdev/imxfb.c
5669
5670 FREESCALE QORIQ DPAA ETHERNET DRIVER
5671 M:      Madalin Bucur <madalin.bucur@nxp.com>
5672 L:      netdev@vger.kernel.org
5673 S:      Maintained
5674 F:      drivers/net/ethernet/freescale/dpaa
5675
5676 FREESCALE QORIQ DPAA FMAN DRIVER
5677 M:      Madalin Bucur <madalin.bucur@nxp.com>
5678 L:      netdev@vger.kernel.org
5679 S:      Maintained
5680 F:      drivers/net/ethernet/freescale/fman
5681 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5682
5683 FREESCALE QUAD SPI DRIVER
5684 M:      Han Xu <han.xu@nxp.com>
5685 L:      linux-mtd@lists.infradead.org
5686 S:      Maintained
5687 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5688
5689 FREESCALE QUICC ENGINE LIBRARY
5690 M:      Qiang Zhao <qiang.zhao@nxp.com>
5691 L:      linuxppc-dev@lists.ozlabs.org
5692 S:      Maintained
5693 F:      drivers/soc/fsl/qe/
5694 F:      include/soc/fsl/*qe*.h
5695 F:      include/soc/fsl/*ucc*.h
5696
5697 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5698 M:      Li Yang <leoyang.li@nxp.com>
5699 L:      netdev@vger.kernel.org
5700 L:      linuxppc-dev@lists.ozlabs.org
5701 S:      Maintained
5702 F:      drivers/net/ethernet/freescale/ucc_geth*
5703
5704 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5705 M:      Zhao Qiang <qiang.zhao@nxp.com>
5706 L:      netdev@vger.kernel.org
5707 L:      linuxppc-dev@lists.ozlabs.org
5708 S:      Maintained
5709 F:      drivers/net/wan/fsl_ucc_hdlc*
5710
5711 FREESCALE QUICC ENGINE UCC UART DRIVER
5712 M:      Timur Tabi <timur@tabi.org>
5713 L:      linuxppc-dev@lists.ozlabs.org
5714 S:      Maintained
5715 F:      drivers/tty/serial/ucc_uart.c
5716
5717 FREESCALE SOC DRIVERS
5718 M:      Li Yang <leoyang.li@nxp.com>
5719 L:      linuxppc-dev@lists.ozlabs.org
5720 L:      linux-arm-kernel@lists.infradead.org
5721 S:      Maintained
5722 F:      Documentation/devicetree/bindings/soc/fsl/
5723 F:      drivers/soc/fsl/
5724 F:      include/linux/fsl/
5725
5726 FREESCALE SOC FS_ENET DRIVER
5727 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5728 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5729 L:      linuxppc-dev@lists.ozlabs.org
5730 L:      netdev@vger.kernel.org
5731 S:      Maintained
5732 F:      drivers/net/ethernet/freescale/fs_enet/
5733 F:      include/linux/fs_enet_pd.h
5734
5735 FREESCALE SOC SOUND DRIVERS
5736 M:      Timur Tabi <timur@tabi.org>
5737 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5738 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5739 R:      Fabio Estevam <fabio.estevam@nxp.com>
5740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5741 L:      linuxppc-dev@lists.ozlabs.org
5742 S:      Maintained
5743 F:      sound/soc/fsl/fsl*
5744 F:      sound/soc/fsl/imx*
5745 F:      sound/soc/fsl/mpc8610_hpcd.c
5746
5747 FREESCALE USB PERIPHERAL DRIVERS
5748 M:      Li Yang <leoyang.li@nxp.com>
5749 L:      linux-usb@vger.kernel.org
5750 L:      linuxppc-dev@lists.ozlabs.org
5751 S:      Maintained
5752 F:      drivers/usb/gadget/udc/fsl*
5753
5754 FREEVXFS FILESYSTEM
5755 M:      Christoph Hellwig <hch@infradead.org>
5756 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5757 S:      Maintained
5758 F:      fs/freevxfs/
5759
5760 FREEZER
5761 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5762 M:      Pavel Machek <pavel@ucw.cz>
5763 L:      linux-pm@vger.kernel.org
5764 S:      Supported
5765 F:      Documentation/power/freezing-of-tasks.txt
5766 F:      include/linux/freezer.h
5767 F:      kernel/freezer.c
5768
5769 FRONTSWAP API
5770 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5771 L:      linux-kernel@vger.kernel.org
5772 S:      Maintained
5773 F:      mm/frontswap.c
5774 F:      include/linux/frontswap.h
5775
5776 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5777 M:      David Howells <dhowells@redhat.com>
5778 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5779 S:      Supported
5780 F:      Documentation/filesystems/caching/
5781 F:      fs/fscache/
5782 F:      include/linux/fscache*.h
5783
5784 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5785 M:      Theodore Y. Ts'o <tytso@mit.edu>
5786 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5787 L:      linux-fscrypt@vger.kernel.org
5788 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5790 S:      Supported
5791 F:      fs/crypto/
5792 F:      include/linux/fscrypt*.h
5793 F:      Documentation/filesystems/fscrypt.rst
5794
5795 FUJITSU FR-V (FRV) PORT
5796 S:      Orphan
5797 F:      arch/frv/
5798
5799 FUJITSU LAPTOP EXTRAS
5800 M:      Jonathan Woithe <jwoithe@just42.net>
5801 L:      platform-driver-x86@vger.kernel.org
5802 S:      Maintained
5803 F:      drivers/platform/x86/fujitsu-laptop.c
5804
5805 FUJITSU M-5MO LS CAMERA ISP DRIVER
5806 M:      Kyungmin Park <kyungmin.park@samsung.com>
5807 M:      Heungjun Kim <riverful.kim@samsung.com>
5808 L:      linux-media@vger.kernel.org
5809 S:      Maintained
5810 F:      drivers/media/i2c/m5mols/
5811 F:      include/media/i2c/m5mols.h
5812
5813 FUJITSU TABLET EXTRAS
5814 M:      Robert Gerlach <khnz@gmx.de>
5815 L:      platform-driver-x86@vger.kernel.org
5816 S:      Maintained
5817 F:      drivers/platform/x86/fujitsu-tablet.c
5818
5819 FUSE: FILESYSTEM IN USERSPACE
5820 M:      Miklos Szeredi <miklos@szeredi.hu>
5821 L:      linux-fsdevel@vger.kernel.org
5822 W:      http://fuse.sourceforge.net/
5823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5824 S:      Maintained
5825 F:      fs/fuse/
5826 F:      include/uapi/linux/fuse.h
5827 F:      Documentation/filesystems/fuse.txt
5828
5829 FUTEX SUBSYSTEM
5830 M:      Thomas Gleixner <tglx@linutronix.de>
5831 M:      Ingo Molnar <mingo@redhat.com>
5832 R:      Peter Zijlstra <peterz@infradead.org>
5833 R:      Darren Hart <dvhart@infradead.org>
5834 L:      linux-kernel@vger.kernel.org
5835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5836 S:      Maintained
5837 F:      kernel/futex.c
5838 F:      kernel/futex_compat.c
5839 F:      include/asm-generic/futex.h
5840 F:      include/linux/futex.h
5841 F:      include/uapi/linux/futex.h
5842 F:      tools/testing/selftests/futex/
5843 F:      tools/perf/bench/futex*
5844 F:      Documentation/*futex*
5845
5846 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5847 M:      Rik Faith <faith@cs.unc.edu>
5848 L:      linux-scsi@vger.kernel.org
5849 S:      Odd Fixes (e.g., new signatures)
5850 F:      drivers/scsi/fdomain.*
5851
5852 GCC PLUGINS
5853 M:      Kees Cook <keescook@chromium.org>
5854 R:      Emese Revfy <re.emese@gmail.com>
5855 L:      kernel-hardening@lists.openwall.com
5856 S:      Maintained
5857 F:      scripts/gcc-plugins/
5858 F:      scripts/gcc-plugin.sh
5859 F:      scripts/Makefile.gcc-plugins
5860 F:      Documentation/gcc-plugins.txt
5861
5862 GCOV BASED KERNEL PROFILING
5863 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5864 S:      Maintained
5865 F:      kernel/gcov/
5866 F:      Documentation/dev-tools/gcov.rst
5867
5868 GDB KERNEL DEBUGGING HELPER SCRIPTS
5869 M:      Jan Kiszka <jan.kiszka@siemens.com>
5870 M:      Kieran Bingham <kieran@bingham.xyz>
5871 S:      Supported
5872 F:      scripts/gdb/
5873
5874 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5875 M:      Achim Leubner <achim_leubner@adaptec.com>
5876 L:      linux-scsi@vger.kernel.org
5877 W:      http://www.icp-vortex.com/
5878 S:      Supported
5879 F:      drivers/scsi/gdt*
5880
5881 GEMTEK FM RADIO RECEIVER DRIVER
5882 M:      Hans Verkuil <hverkuil@xs4all.nl>
5883 L:      linux-media@vger.kernel.org
5884 T:      git git://linuxtv.org/media_tree.git
5885 W:      https://linuxtv.org
5886 S:      Maintained
5887 F:      drivers/media/radio/radio-gemtek*
5888
5889 GENERIC GPIO I2C DRIVER
5890 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5891 S:      Supported
5892 F:      drivers/i2c/busses/i2c-gpio.c
5893 F:      include/linux/i2c-gpio.h
5894
5895 GENERIC GPIO I2C MULTIPLEXER DRIVER
5896 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5897 L:      linux-i2c@vger.kernel.org
5898 S:      Supported
5899 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5900 F:      include/linux/i2c-mux-gpio.h
5901 F:      Documentation/i2c/muxes/i2c-mux-gpio
5902
5903 GENERIC HDLC (WAN) DRIVERS
5904 M:      Krzysztof Halasa <khc@pm.waw.pl>
5905 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5906 S:      Maintained
5907 F:      drivers/net/wan/c101.c
5908 F:      drivers/net/wan/hd6457*
5909 F:      drivers/net/wan/hdlc*
5910 F:      drivers/net/wan/n2.c
5911 F:      drivers/net/wan/pc300too.c
5912 F:      drivers/net/wan/pci200syn.c
5913 F:      drivers/net/wan/wanxl*
5914
5915 GENERIC INCLUDE/ASM HEADER FILES
5916 M:      Arnd Bergmann <arnd@arndb.de>
5917 L:      linux-arch@vger.kernel.org
5918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5919 S:      Maintained
5920 F:      include/asm-generic/
5921 F:      include/uapi/asm-generic/
5922
5923 GENERIC PHY FRAMEWORK
5924 M:      Kishon Vijay Abraham I <kishon@ti.com>
5925 L:      linux-kernel@vger.kernel.org
5926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5927 S:      Supported
5928 F:      drivers/phy/
5929 F:      include/linux/phy/
5930
5931 GENERIC PM DOMAINS
5932 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5933 M:      Kevin Hilman <khilman@kernel.org>
5934 M:      Ulf Hansson <ulf.hansson@linaro.org>
5935 L:      linux-pm@vger.kernel.org
5936 S:      Supported
5937 F:      drivers/base/power/domain*.c
5938 F:      include/linux/pm_domain.h
5939 F:      Documentation/devicetree/bindings/power/power_domain.txt
5940
5941 GENERIC UIO DRIVER FOR PCI DEVICES
5942 M:      "Michael S. Tsirkin" <mst@redhat.com>
5943 L:      kvm@vger.kernel.org
5944 S:      Supported
5945 F:      drivers/uio/uio_pci_generic.c
5946
5947 GENWQE (IBM Generic Workqueue Card)
5948 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5949 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5950 S:      Supported
5951 F:      drivers/misc/genwqe/
5952
5953 GET_MAINTAINER SCRIPT
5954 M:      Joe Perches <joe@perches.com>
5955 S:      Maintained
5956 F:      scripts/get_maintainer.pl
5957
5958 GFS2 FILE SYSTEM
5959 M:      Steven Whitehouse <swhiteho@redhat.com>
5960 M:      Bob Peterson <rpeterso@redhat.com>
5961 L:      cluster-devel@redhat.com
5962 W:      http://sources.redhat.com/cluster/
5963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5964 S:      Supported
5965 F:      Documentation/filesystems/gfs2*.txt
5966 F:      fs/gfs2/
5967 F:      include/uapi/linux/gfs2_ondisk.h
5968
5969 GIGASET ISDN DRIVERS
5970 M:      Paul Bolle <pebolle@tiscali.nl>
5971 L:      gigaset307x-common@lists.sourceforge.net
5972 W:      http://gigaset307x.sourceforge.net/
5973 S:      Odd Fixes
5974 F:      Documentation/isdn/README.gigaset
5975 F:      drivers/isdn/gigaset/
5976 F:      include/uapi/linux/gigaset_dev.h
5977
5978 GO7007 MPEG CODEC
5979 M:      Hans Verkuil <hans.verkuil@cisco.com>
5980 L:      linux-media@vger.kernel.org
5981 S:      Maintained
5982 F:      drivers/media/usb/go7007/
5983
5984 GOODIX TOUCHSCREEN
5985 M:      Bastien Nocera <hadess@hadess.net>
5986 L:      linux-input@vger.kernel.org
5987 S:      Maintained
5988 F:      drivers/input/touchscreen/goodix.c
5989
5990 GPD POCKET FAN DRIVER
5991 M:      Hans de Goede <hdegoede@redhat.com>
5992 L:      platform-driver-x86@vger.kernel.org
5993 S:      Maintained
5994 F:      drivers/platform/x86/gpd-pocket-fan.c
5995
5996 GPIO ACPI SUPPORT
5997 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5998 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5999 L:      linux-gpio@vger.kernel.org
6000 L:      linux-acpi@vger.kernel.org
6001 S:      Maintained
6002 F:      Documentation/acpi/gpio-properties.txt
6003 F:      drivers/gpio/gpiolib-acpi.c
6004
6005 GPIO IR Transmitter
6006 M:      Sean Young <sean@mess.org>
6007 L:      linux-media@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/media/rc/gpio-ir-tx.c
6010
6011 GPIO MOCKUP DRIVER
6012 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
6013 R:      Bartosz Golaszewski <brgl@bgdev.pl>
6014 L:      linux-gpio@vger.kernel.org
6015 S:      Maintained
6016 F:      drivers/gpio/gpio-mockup.c
6017 F:      tools/testing/selftests/gpio/
6018
6019 GPIO SUBSYSTEM
6020 M:      Linus Walleij <linus.walleij@linaro.org>
6021 L:      linux-gpio@vger.kernel.org
6022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6023 S:      Maintained
6024 F:      Documentation/devicetree/bindings/gpio/
6025 F:      Documentation/gpio/
6026 F:      Documentation/ABI/testing/gpio-cdev
6027 F:      Documentation/ABI/obsolete/sysfs-gpio
6028 F:      drivers/gpio/
6029 F:      include/linux/gpio/
6030 F:      include/linux/gpio.h
6031 F:      include/asm-generic/gpio.h
6032 F:      include/uapi/linux/gpio.h
6033 F:      tools/gpio/
6034
6035 GRE DEMULTIPLEXER DRIVER
6036 M:      Dmitry Kozlov <xeb@mail.ru>
6037 L:      netdev@vger.kernel.org
6038 S:      Maintained
6039 F:      net/ipv4/gre_demux.c
6040 F:      net/ipv4/gre_offload.c
6041 F:      include/net/gre.h
6042
6043 GRETH 10/100/1G Ethernet MAC device driver
6044 M:      Andreas Larsson <andreas@gaisler.com>
6045 L:      netdev@vger.kernel.org
6046 S:      Maintained
6047 F:      drivers/net/ethernet/aeroflex/
6048
6049 GREYBUS AUDIO PROTOCOLS DRIVERS
6050 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6051 M:      Mark Greer <mgreer@animalcreek.com>
6052 S:      Maintained
6053 F:      drivers/staging/greybus/audio_apbridgea.c
6054 F:      drivers/staging/greybus/audio_apbridgea.h
6055 F:      drivers/staging/greybus/audio_codec.c
6056 F:      drivers/staging/greybus/audio_codec.h
6057 F:      drivers/staging/greybus/audio_gb.c
6058 F:      drivers/staging/greybus/audio_manager.c
6059 F:      drivers/staging/greybus/audio_manager.h
6060 F:      drivers/staging/greybus/audio_manager_module.c
6061 F:      drivers/staging/greybus/audio_manager_private.h
6062 F:      drivers/staging/greybus/audio_manager_sysfs.c
6063 F:      drivers/staging/greybus/audio_module.c
6064 F:      drivers/staging/greybus/audio_topology.c
6065
6066 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6067 M:      Viresh Kumar <vireshk@kernel.org>
6068 S:      Maintained
6069 F:      drivers/staging/greybus/authentication.c
6070 F:      drivers/staging/greybus/bootrom.c
6071 F:      drivers/staging/greybus/firmware.h
6072 F:      drivers/staging/greybus/fw-core.c
6073 F:      drivers/staging/greybus/fw-download.c
6074 F:      drivers/staging/greybus/fw-managament.c
6075 F:      drivers/staging/greybus/greybus_authentication.h
6076 F:      drivers/staging/greybus/greybus_firmware.h
6077 F:      drivers/staging/greybus/hid.c
6078 F:      drivers/staging/greybus/i2c.c
6079 F:      drivers/staging/greybus/spi.c
6080 F:      drivers/staging/greybus/spilib.c
6081 F:      drivers/staging/greybus/spilib.h
6082
6083 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
6084 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6085 S:      Maintained
6086 F:      drivers/staging/greybus/loopback.c
6087 F:      drivers/staging/greybus/timesync.c
6088 F:      drivers/staging/greybus/timesync_platform.c
6089
6090 GREYBUS PLATFORM DRIVERS
6091 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6092 S:      Maintained
6093 F:      drivers/staging/greybus/arche-platform.c
6094 F:      drivers/staging/greybus/arche-apb-ctrl.c
6095 F:      drivers/staging/greybus/arche_platform.h
6096
6097 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6098 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6099 S:      Maintained
6100 F:      drivers/staging/greybus/sdio.c
6101 F:      drivers/staging/greybus/light.c
6102 F:      drivers/staging/greybus/gpio.c
6103 F:      drivers/staging/greybus/power_supply.c
6104 F:      drivers/staging/greybus/spi.c
6105 F:      drivers/staging/greybus/spilib.c
6106
6107 GREYBUS SUBSYSTEM
6108 M:      Johan Hovold <johan@kernel.org>
6109 M:      Alex Elder <elder@kernel.org>
6110 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6111 S:      Maintained
6112 F:      drivers/staging/greybus/
6113 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6114
6115 GREYBUS UART PROTOCOLS DRIVERS
6116 M:      David Lin <dtwlin@gmail.com>
6117 S:      Maintained
6118 F:      drivers/staging/greybus/uart.c
6119 F:      drivers/staging/greybus/log.c
6120
6121 GS1662 VIDEO SERIALIZER
6122 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6123 L:      linux-media@vger.kernel.org
6124 T:      git git://linuxtv.org/media_tree.git
6125 S:      Maintained
6126 F:      drivers/media/spi/gs1662.c
6127
6128 GSPCA FINEPIX SUBDRIVER
6129 M:      Frank Zago <frank@zago.net>
6130 L:      linux-media@vger.kernel.org
6131 T:      git git://linuxtv.org/media_tree.git
6132 S:      Maintained
6133 F:      drivers/media/usb/gspca/finepix.c
6134
6135 GSPCA GL860 SUBDRIVER
6136 M:      Olivier Lorin <o.lorin@laposte.net>
6137 L:      linux-media@vger.kernel.org
6138 T:      git git://linuxtv.org/media_tree.git
6139 S:      Maintained
6140 F:      drivers/media/usb/gspca/gl860/
6141
6142 GSPCA M5602 SUBDRIVER
6143 M:      Erik Andren <erik.andren@gmail.com>
6144 L:      linux-media@vger.kernel.org
6145 T:      git git://linuxtv.org/media_tree.git
6146 S:      Maintained
6147 F:      drivers/media/usb/gspca/m5602/
6148
6149 GSPCA PAC207 SONIXB SUBDRIVER
6150 M:      Hans Verkuil <hverkuil@xs4all.nl>
6151 L:      linux-media@vger.kernel.org
6152 T:      git git://linuxtv.org/media_tree.git
6153 S:      Odd Fixes
6154 F:      drivers/media/usb/gspca/pac207.c
6155
6156 GSPCA SN9C20X SUBDRIVER
6157 M:      Brian Johnson <brijohn@gmail.com>
6158 L:      linux-media@vger.kernel.org
6159 T:      git git://linuxtv.org/media_tree.git
6160 S:      Maintained
6161 F:      drivers/media/usb/gspca/sn9c20x.c
6162
6163 GSPCA T613 SUBDRIVER
6164 M:      Leandro Costantino <lcostantino@gmail.com>
6165 L:      linux-media@vger.kernel.org
6166 T:      git git://linuxtv.org/media_tree.git
6167 S:      Maintained
6168 F:      drivers/media/usb/gspca/t613.c
6169
6170 GSPCA USB WEBCAM DRIVER
6171 M:      Hans Verkuil <hverkuil@xs4all.nl>
6172 L:      linux-media@vger.kernel.org
6173 T:      git git://linuxtv.org/media_tree.git
6174 S:      Odd Fixes
6175 F:      drivers/media/usb/gspca/
6176
6177 GTP (GPRS Tunneling Protocol)
6178 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6179 M:      Harald Welte <laforge@gnumonks.org>
6180 L:      osmocom-net-gprs@lists.osmocom.org
6181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6182 S:      Maintained
6183 F:      drivers/net/gtp.c
6184
6185 GUID PARTITION TABLE (GPT)
6186 M:      Davidlohr Bueso <dave@stgolabs.net>
6187 L:      linux-efi@vger.kernel.org
6188 S:      Maintained
6189 F:      block/partitions/efi.*
6190
6191 H8/300 ARCHITECTURE
6192 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6193 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6194 W:      http://uclinux-h8.sourceforge.jp
6195 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6196 S:      Maintained
6197 F:      arch/h8300/
6198 F:      drivers/clocksource/h8300_*.c
6199 F:      drivers/clk/h8300/
6200 F:      drivers/irqchip/irq-renesas-h8*.c
6201
6202 HACKRF MEDIA DRIVER
6203 M:      Antti Palosaari <crope@iki.fi>
6204 L:      linux-media@vger.kernel.org
6205 W:      https://linuxtv.org
6206 W:      http://palosaari.fi/linux/
6207 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6208 T:      git git://linuxtv.org/anttip/media_tree.git
6209 S:      Maintained
6210 F:      drivers/media/usb/hackrf/
6211
6212 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6213 M:      Frank Seidel <frank@f-seidel.de>
6214 L:      platform-driver-x86@vger.kernel.org
6215 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6216 S:      Maintained
6217 F:      drivers/platform/x86/hdaps.c
6218
6219 HARDWARE MONITORING
6220 M:      Jean Delvare <jdelvare@suse.com>
6221 M:      Guenter Roeck <linux@roeck-us.net>
6222 L:      linux-hwmon@vger.kernel.org
6223 W:      http://hwmon.wiki.kernel.org/
6224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6225 S:      Maintained
6226 F:      Documentation/hwmon/
6227 F:      drivers/hwmon/
6228 F:      include/linux/hwmon*.h
6229
6230 HARDWARE RANDOM NUMBER GENERATOR CORE
6231 M:      Matt Mackall <mpm@selenic.com>
6232 M:      Herbert Xu <herbert@gondor.apana.org.au>
6233 L:      linux-crypto@vger.kernel.org
6234 S:      Odd fixes
6235 F:      Documentation/devicetree/bindings/rng/
6236 F:      Documentation/hw_random.txt
6237 F:      drivers/char/hw_random/
6238 F:      include/linux/hw_random.h
6239
6240 HARDWARE SPINLOCK CORE
6241 M:      Ohad Ben-Cohen <ohad@wizery.com>
6242 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6243 L:      linux-remoteproc@vger.kernel.org
6244 S:      Maintained
6245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6246 F:      Documentation/devicetree/bindings/hwlock/
6247 F:      Documentation/hwspinlock.txt
6248 F:      drivers/hwspinlock/
6249 F:      include/linux/hwspinlock.h
6250
6251 HARMONY SOUND DRIVER
6252 L:      linux-parisc@vger.kernel.org
6253 S:      Maintained
6254 F:      sound/parisc/harmony.*
6255
6256 HDPVR USB VIDEO ENCODER DRIVER
6257 M:      Hans Verkuil <hverkuil@xs4all.nl>
6258 L:      linux-media@vger.kernel.org
6259 T:      git git://linuxtv.org/media_tree.git
6260 W:      https://linuxtv.org
6261 S:      Odd Fixes
6262 F:      drivers/media/usb/hdpvr/
6263
6264 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6265 M:      Jimmy Vance <jimmy.vance@hpe.com>
6266 S:      Supported
6267 F:      Documentation/watchdog/hpwdt.txt
6268 F:      drivers/watchdog/hpwdt.c
6269
6270 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6271 M:      Don Brace <don.brace@microsemi.com>
6272 L:      esc.storagedev@microsemi.com
6273 L:      linux-scsi@vger.kernel.org
6274 S:      Supported
6275 F:      Documentation/scsi/hpsa.txt
6276 F:      drivers/scsi/hpsa*.[ch]
6277 F:      include/linux/cciss*.h
6278 F:      include/uapi/linux/cciss*.h
6279
6280 HFI1 DRIVER
6281 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6282 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6283 L:      linux-rdma@vger.kernel.org
6284 S:      Supported
6285 F:      drivers/infiniband/hw/hfi1
6286
6287 HFS FILESYSTEM
6288 L:      linux-fsdevel@vger.kernel.org
6289 S:      Orphan
6290 F:      Documentation/filesystems/hfs.txt
6291 F:      fs/hfs/
6292
6293 HFSPLUS FILESYSTEM
6294 L:      linux-fsdevel@vger.kernel.org
6295 S:      Orphan
6296 F:      Documentation/filesystems/hfsplus.txt
6297 F:      fs/hfsplus/
6298
6299 HGA FRAMEBUFFER DRIVER
6300 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6301 L:      linux-nvidia@lists.surfsouth.com
6302 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6303 S:      Maintained
6304 F:      drivers/video/fbdev/hgafb.c
6305
6306 HIBERNATION (aka Software Suspend, aka swsusp)
6307 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6308 M:      Pavel Machek <pavel@ucw.cz>
6309 L:      linux-pm@vger.kernel.org
6310 B:      https://bugzilla.kernel.org
6311 S:      Supported
6312 F:      arch/x86/power/
6313 F:      drivers/base/power/
6314 F:      kernel/power/
6315 F:      include/linux/suspend.h
6316 F:      include/linux/freezer.h
6317 F:      include/linux/pm.h
6318 F:      arch/*/include/asm/suspend*.h
6319
6320 HID CORE LAYER
6321 M:      Jiri Kosina <jikos@kernel.org>
6322 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6323 L:      linux-input@vger.kernel.org
6324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6325 S:      Maintained
6326 F:      drivers/hid/
6327 F:      include/linux/hid*
6328 F:      include/uapi/linux/hid*
6329
6330 HID SENSOR HUB DRIVERS
6331 M:      Jiri Kosina <jikos@kernel.org>
6332 M:      Jonathan Cameron <jic23@kernel.org>
6333 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6334 L:      linux-input@vger.kernel.org
6335 L:      linux-iio@vger.kernel.org
6336 S:      Maintained
6337 F:      Documentation/hid/hid-sensor*
6338 F:      drivers/hid/hid-sensor-*
6339 F:      drivers/iio/*/hid-*
6340 F:      include/linux/hid-sensor-*
6341
6342 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6343 M:      Thomas Gleixner <tglx@linutronix.de>
6344 L:      linux-kernel@vger.kernel.org
6345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6346 S:      Maintained
6347 F:      Documentation/timers/
6348 F:      kernel/time/hrtimer.c
6349 F:      kernel/time/clockevents.c
6350 F:      kernel/time/timer_*.c
6351 F:      include/linux/clockchips.h
6352 F:      include/linux/hrtimer.h
6353
6354 HIGH-SPEED SCC DRIVER FOR AX.25
6355 L:      linux-hams@vger.kernel.org
6356 S:      Orphan
6357 F:      drivers/net/hamradio/dmascc.c
6358 F:      drivers/net/hamradio/scc.c
6359
6360 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6361 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6362 W:      http://www.highpoint-tech.com
6363 S:      Supported
6364 F:      Documentation/scsi/hptiop.txt
6365 F:      drivers/scsi/hptiop.c
6366
6367 HIPPI
6368 M:      Jes Sorensen <jes@trained-monkey.org>
6369 L:      linux-hippi@sunsite.dk
6370 S:      Maintained
6371 F:      include/linux/hippidevice.h
6372 F:      include/uapi/linux/if_hippi.h
6373 F:      net/802/hippi.c
6374 F:      drivers/net/hippi/
6375
6376 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6377 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6378 M:      Salil Mehta <salil.mehta@huawei.com>
6379 L:      netdev@vger.kernel.org
6380 W:      http://www.hisilicon.com
6381 S:      Maintained
6382 F:      drivers/net/ethernet/hisilicon/hns3/
6383
6384 HISILICON NETWORK SUBSYSTEM DRIVER
6385 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6386 M:      Salil Mehta <salil.mehta@huawei.com>
6387 L:      netdev@vger.kernel.org
6388 W:      http://www.hisilicon.com
6389 S:      Maintained
6390 F:      drivers/net/ethernet/hisilicon/
6391 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6392
6393 HISILICON PMU DRIVER
6394 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
6395 W:      http://www.hisilicon.com
6396 S:      Supported
6397 F:      drivers/perf/hisilicon
6398 F:      Documentation/perf/hisi-pmu.txt
6399
6400 HISILICON ROCE DRIVER
6401 M:      Lijun Ou <oulijun@huawei.com>
6402 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6403 L:      linux-rdma@vger.kernel.org
6404 S:      Maintained
6405 F:      drivers/infiniband/hw/hns/
6406 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6407
6408 HISILICON SAS Controller
6409 M:      John Garry <john.garry@huawei.com>
6410 W:      http://www.hisilicon.com
6411 S:      Supported
6412 F:      drivers/scsi/hisi_sas/
6413 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6414
6415 HMM - Heterogeneous Memory Management
6416 M:      Jérôme Glisse <jglisse@redhat.com>
6417 L:      linux-mm@kvack.org
6418 S:      Maintained
6419 F:      mm/hmm*
6420 F:      include/linux/hmm*
6421
6422 HOST AP DRIVER
6423 M:      Jouni Malinen <j@w1.fi>
6424 L:      linux-wireless@vger.kernel.org
6425 W:      http://w1.fi/hostap-driver.html
6426 S:      Obsolete
6427 F:      drivers/net/wireless/intersil/hostap/
6428
6429 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6430 L:      platform-driver-x86@vger.kernel.org
6431 S:      Orphan
6432 F:      drivers/platform/x86/tc1100-wmi.c
6433
6434 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6435 M:      Jaroslav Kysela <perex@perex.cz>
6436 S:      Maintained
6437 F:      drivers/net/ethernet/hp/hp100.*
6438
6439 HPET:   High Precision Event Timers driver
6440 M:      Clemens Ladisch <clemens@ladisch.de>
6441 S:      Maintained
6442 F:      Documentation/timers/hpet.txt
6443 F:      drivers/char/hpet.c
6444 F:      include/linux/hpet.h
6445 F:      include/uapi/linux/hpet.h
6446
6447 HPET:   x86
6448 S:      Orphan
6449 F:      arch/x86/kernel/hpet.c
6450 F:      arch/x86/include/asm/hpet.h
6451
6452 HPFS FILESYSTEM
6453 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6454 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6455 S:      Maintained
6456 F:      fs/hpfs/
6457
6458 HSI SUBSYSTEM
6459 M:      Sebastian Reichel <sre@kernel.org>
6460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6461 S:      Maintained
6462 F:      Documentation/ABI/testing/sysfs-bus-hsi
6463 F:      Documentation/driver-api/hsi.rst
6464 F:      drivers/hsi/
6465 F:      include/linux/hsi/
6466 F:      include/uapi/linux/hsi/
6467
6468 HSO 3G MODEM DRIVER
6469 L:      linux-usb@vger.kernel.org
6470 S:      Orphan
6471 F:      drivers/net/usb/hso.c
6472
6473 HSR NETWORK PROTOCOL
6474 M:      Arvid Brodin <arvid.brodin@alten.se>
6475 L:      netdev@vger.kernel.org
6476 S:      Maintained
6477 F:      net/hsr/
6478
6479 HT16K33 LED CONTROLLER DRIVER
6480 M:      Robin van der Gracht <robin@protonic.nl>
6481 S:      Maintained
6482 F:      drivers/auxdisplay/ht16k33.c
6483 F:      Documentation/devicetree/bindings/display/ht16k33.txt
6484
6485 HTCPEN TOUCHSCREEN DRIVER
6486 M:      Pau Oliva Fora <pof@eslack.org>
6487 L:      linux-input@vger.kernel.org
6488 S:      Maintained
6489 F:      drivers/input/touchscreen/htcpen.c
6490
6491 HUAWEI ETHERNET DRIVER
6492 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
6493 L:      netdev@vger.kernel.org
6494 S:      Supported
6495 F:      Documentation/networking/hinic.txt
6496 F:      drivers/net/ethernet/huawei/hinic/
6497
6498 HUGETLB FILESYSTEM
6499 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
6500 S:      Maintained
6501 F:      fs/hugetlbfs/
6502
6503 HVA ST MEDIA DRIVER
6504 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6505 L:      linux-media@vger.kernel.org
6506 T:      git git://linuxtv.org/media_tree.git
6507 W:      https://linuxtv.org
6508 S:      Supported
6509 F:      drivers/media/platform/sti/hva
6510
6511 HWPOISON MEMORY FAILURE HANDLING
6512 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6513 L:      linux-mm@kvack.org
6514 S:      Maintained
6515 F:      mm/memory-failure.c
6516 F:      mm/hwpoison-inject.c
6517
6518 Hyper-V CORE AND DRIVERS
6519 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6520 M:      Haiyang Zhang <haiyangz@microsoft.com>
6521 M:      Stephen Hemminger <sthemmin@microsoft.com>
6522 L:      devel@linuxdriverproject.org
6523 S:      Maintained
6524 F:      Documentation/networking/netvsc.txt
6525 F:      arch/x86/include/asm/mshyperv.h
6526 F:      arch/x86/include/asm/trace/hyperv.h
6527 F:      arch/x86/include/uapi/asm/hyperv.h
6528 F:      arch/x86/kernel/cpu/mshyperv.c
6529 F:      arch/x86/hyperv
6530 F:      drivers/hid/hid-hyperv.c
6531 F:      drivers/hv/
6532 F:      drivers/input/serio/hyperv-keyboard.c
6533 F:      drivers/pci/host/pci-hyperv.c
6534 F:      drivers/net/hyperv/
6535 F:      drivers/scsi/storvsc_drv.c
6536 F:      drivers/uio/uio_hv_generic.c
6537 F:      drivers/video/fbdev/hyperv_fb.c
6538 F:      net/vmw_vsock/hyperv_transport.c
6539 F:      include/linux/hyperv.h
6540 F:      include/uapi/linux/hyperv.h
6541 F:      tools/hv/
6542 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6543
6544 HYPERVISOR VIRTUAL CONSOLE DRIVER
6545 L:      linuxppc-dev@lists.ozlabs.org
6546 S:      Odd Fixes
6547 F:      drivers/tty/hvc/
6548
6549 I2C ACPI SUPPORT
6550 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6551 L:      linux-i2c@vger.kernel.org
6552 L:      linux-acpi@vger.kernel.org
6553 S:      Maintained
6554 F:      drivers/i2c/i2c-core-acpi.c
6555
6556 I2C MUXES
6557 M:      Peter Rosin <peda@axentia.se>
6558 L:      linux-i2c@vger.kernel.org
6559 S:      Maintained
6560 F:      Documentation/i2c/i2c-topology
6561 F:      Documentation/i2c/muxes/
6562 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6563 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6564 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6565 F:      drivers/i2c/i2c-mux.c
6566 F:      drivers/i2c/muxes/
6567 F:      include/linux/i2c-mux.h
6568
6569 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
6570 M:      Gregory CLEMENT <gregory.clement@free-electrons.com>
6571 L:      linux-i2c@vger.kernel.org
6572 S:      Maintained
6573 F:      drivers/i2c/busses/i2c-mv64xxx.c
6574
6575 I2C OVER PARALLEL PORT
6576 M:      Jean Delvare <jdelvare@suse.com>
6577 L:      linux-i2c@vger.kernel.org
6578 S:      Maintained
6579 F:      Documentation/i2c/busses/i2c-parport
6580 F:      Documentation/i2c/busses/i2c-parport-light
6581 F:      drivers/i2c/busses/i2c-parport.c
6582 F:      drivers/i2c/busses/i2c-parport-light.c
6583
6584 I2C SUBSYSTEM
6585 M:      Wolfram Sang <wsa@the-dreams.de>
6586 L:      linux-i2c@vger.kernel.org
6587 W:      https://i2c.wiki.kernel.org/
6588 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6590 S:      Maintained
6591 F:      Documentation/devicetree/bindings/i2c/
6592 F:      Documentation/i2c/
6593 F:      drivers/i2c/
6594 F:      drivers/i2c/*/
6595 F:      include/linux/i2c.h
6596 F:      include/linux/i2c-*.h
6597 F:      include/uapi/linux/i2c.h
6598 F:      include/uapi/linux/i2c-*.h
6599
6600 I2C-TAOS-EVM DRIVER
6601 M:      Jean Delvare <jdelvare@suse.com>
6602 L:      linux-i2c@vger.kernel.org
6603 S:      Maintained
6604 F:      Documentation/i2c/busses/i2c-taos-evm
6605 F:      drivers/i2c/busses/i2c-taos-evm.c
6606
6607 I2C-TINY-USB DRIVER
6608 M:      Till Harbaum <till@harbaum.org>
6609 L:      linux-i2c@vger.kernel.org
6610 W:      http://www.harbaum.org/till/i2c_tiny_usb
6611 S:      Maintained
6612 F:      drivers/i2c/busses/i2c-tiny-usb.c
6613
6614 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6615 M:      Jean Delvare <jdelvare@suse.com>
6616 L:      linux-i2c@vger.kernel.org
6617 S:      Maintained
6618 F:      Documentation/i2c/busses/i2c-ali1535
6619 F:      Documentation/i2c/busses/i2c-ali1563
6620 F:      Documentation/i2c/busses/i2c-ali15x3
6621 F:      Documentation/i2c/busses/i2c-amd756
6622 F:      Documentation/i2c/busses/i2c-amd8111
6623 F:      Documentation/i2c/busses/i2c-i801
6624 F:      Documentation/i2c/busses/i2c-nforce2
6625 F:      Documentation/i2c/busses/i2c-piix4
6626 F:      Documentation/i2c/busses/i2c-sis5595
6627 F:      Documentation/i2c/busses/i2c-sis630
6628 F:      Documentation/i2c/busses/i2c-sis96x
6629 F:      Documentation/i2c/busses/i2c-via
6630 F:      Documentation/i2c/busses/i2c-viapro
6631 F:      drivers/i2c/busses/i2c-ali1535.c
6632 F:      drivers/i2c/busses/i2c-ali1563.c
6633 F:      drivers/i2c/busses/i2c-ali15x3.c
6634 F:      drivers/i2c/busses/i2c-amd756.c
6635 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6636 F:      drivers/i2c/busses/i2c-amd8111.c
6637 F:      drivers/i2c/busses/i2c-i801.c
6638 F:      drivers/i2c/busses/i2c-isch.c
6639 F:      drivers/i2c/busses/i2c-nforce2.c
6640 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6641 F:      drivers/i2c/busses/i2c-piix4.c
6642 F:      drivers/i2c/busses/i2c-sis5595.c
6643 F:      drivers/i2c/busses/i2c-sis630.c
6644 F:      drivers/i2c/busses/i2c-sis96x.c
6645 F:      drivers/i2c/busses/i2c-via.c
6646 F:      drivers/i2c/busses/i2c-viapro.c
6647
6648 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6649 M:      Hans de Goede <hdegoede@redhat.com>
6650 L:      linux-i2c@vger.kernel.org
6651 S:      Maintained
6652 F:      drivers/i2c/busses/i2c-cht-wc.c
6653
6654 I2C/SMBUS ISMT DRIVER
6655 M:      Seth Heasley <seth.heasley@intel.com>
6656 M:      Neil Horman <nhorman@tuxdriver.com>
6657 L:      linux-i2c@vger.kernel.org
6658 F:      drivers/i2c/busses/i2c-ismt.c
6659 F:      Documentation/i2c/busses/i2c-ismt
6660
6661 I2C/SMBUS STUB DRIVER
6662 M:      Jean Delvare <jdelvare@suse.com>
6663 L:      linux-i2c@vger.kernel.org
6664 S:      Maintained
6665 F:      drivers/i2c/i2c-stub.c
6666
6667 IA64 (Itanium) PLATFORM
6668 M:      Tony Luck <tony.luck@intel.com>
6669 M:      Fenghua Yu <fenghua.yu@intel.com>
6670 L:      linux-ia64@vger.kernel.org
6671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6672 S:      Maintained
6673 F:      arch/ia64/
6674
6675 IBM Power 842 compression accelerator
6676 M:      Haren Myneni <haren@us.ibm.com>
6677 S:      Supported
6678 F:      drivers/crypto/nx/Makefile
6679 F:      drivers/crypto/nx/Kconfig
6680 F:      drivers/crypto/nx/nx-842*
6681 F:      include/linux/sw842.h
6682 F:      crypto/842.c
6683 F:      lib/842/
6684
6685 IBM Power in-Nest Crypto Acceleration
6686 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6687 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6688 L:      linux-crypto@vger.kernel.org
6689 S:      Supported
6690 F:      drivers/crypto/nx/Makefile
6691 F:      drivers/crypto/nx/Kconfig
6692 F:      drivers/crypto/nx/nx-aes*
6693 F:      drivers/crypto/nx/nx-sha*
6694 F:      drivers/crypto/nx/nx.*
6695 F:      drivers/crypto/nx/nx_csbcpb.h
6696 F:      drivers/crypto/nx/nx_debugfs.h
6697
6698 IBM Power Linux RAID adapter
6699 M:      Brian King <brking@us.ibm.com>
6700 S:      Supported
6701 F:      drivers/scsi/ipr.*
6702
6703 IBM Power SRIOV Virtual NIC Device Driver
6704 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6705 M:      John Allen <jallen@linux.vnet.ibm.com>
6706 L:      netdev@vger.kernel.org
6707 S:      Supported
6708 F:      drivers/net/ethernet/ibm/ibmvnic.*
6709
6710 IBM Power Virtual Accelerator Switchboard
6711 M:      Sukadev Bhattiprolu
6712 L:      linuxppc-dev@lists.ozlabs.org
6713 S:      Supported
6714 F:      arch/powerpc/platforms/powernv/vas*
6715 F:      arch/powerpc/platforms/powernv/copy-paste.h
6716 F:      arch/powerpc/include/asm/vas.h
6717 F:      arch/powerpc/include/uapi/asm/vas.h
6718
6719 IBM Power Virtual Ethernet Device Driver
6720 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6721 L:      netdev@vger.kernel.org
6722 S:      Supported
6723 F:      drivers/net/ethernet/ibm/ibmveth.*
6724
6725 IBM Power Virtual FC Device Drivers
6726 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6727 L:      linux-scsi@vger.kernel.org
6728 S:      Supported
6729 F:      drivers/scsi/ibmvscsi/ibmvfc*
6730
6731 IBM Power Virtual SCSI Device Drivers
6732 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6733 L:      linux-scsi@vger.kernel.org
6734 S:      Supported
6735 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6736 F:      include/scsi/viosrp.h
6737
6738 IBM Power Virtual SCSI Device Target Driver
6739 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6740 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6741 L:      linux-scsi@vger.kernel.org
6742 L:      target-devel@vger.kernel.org
6743 S:      Supported
6744 F:      drivers/scsi/ibmvscsi_tgt/
6745
6746 IBM Power VMX Cryptographic instructions
6747 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6748 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6749 L:      linux-crypto@vger.kernel.org
6750 S:      Supported
6751 F:      drivers/crypto/vmx/Makefile
6752 F:      drivers/crypto/vmx/Kconfig
6753 F:      drivers/crypto/vmx/vmx.c
6754 F:      drivers/crypto/vmx/aes*
6755 F:      drivers/crypto/vmx/ghash*
6756 F:      drivers/crypto/vmx/ppc-xlate.pl
6757
6758 IBM ServeRAID RAID DRIVER
6759 S:      Orphan
6760 F:      drivers/scsi/ips.*
6761
6762 ICH LPC AND GPIO DRIVER
6763 M:      Peter Tyser <ptyser@xes-inc.com>
6764 S:      Maintained
6765 F:      drivers/mfd/lpc_ich.c
6766 F:      drivers/gpio/gpio-ich.c
6767
6768 IDE SUBSYSTEM
6769 M:      "David S. Miller" <davem@davemloft.net>
6770 L:      linux-ide@vger.kernel.org
6771 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6773 S:      Maintained
6774 F:      Documentation/ide/
6775 F:      drivers/ide/
6776 F:      include/linux/ide.h
6777
6778 IDE/ATAPI DRIVERS
6779 M:      Borislav Petkov <bp@alien8.de>
6780 L:      linux-ide@vger.kernel.org
6781 S:      Maintained
6782 F:      Documentation/cdrom/ide-cd
6783 F:      drivers/ide/ide-cd*
6784
6785 IDEAPAD LAPTOP EXTRAS DRIVER
6786 M:      Ike Panhc <ike.pan@canonical.com>
6787 L:      platform-driver-x86@vger.kernel.org
6788 W:      http://launchpad.net/ideapad-laptop
6789 S:      Maintained
6790 F:      drivers/platform/x86/ideapad-laptop.c
6791
6792 IDEAPAD LAPTOP SLIDEBAR DRIVER
6793 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6794 L:      linux-input@vger.kernel.org
6795 W:      https://github.com/o2genum/ideapad-slidebar
6796 S:      Maintained
6797 F:      drivers/input/misc/ideapad_slidebar.c
6798
6799 IDT VersaClock 5 CLOCK DRIVER
6800 M:      Marek Vasut <marek.vasut@gmail.com>
6801 S:      Maintained
6802 F:      drivers/clk/clk-versaclock5.c
6803
6804 IEEE 802.15.4 SUBSYSTEM
6805 M:      Alexander Aring <alex.aring@gmail.com>
6806 M:      Stefan Schmidt <stefan@osg.samsung.com>
6807 L:      linux-wpan@vger.kernel.org
6808 W:      http://wpan.cakelab.org/
6809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6811 S:      Maintained
6812 F:      net/ieee802154/
6813 F:      net/mac802154/
6814 F:      drivers/net/ieee802154/
6815 F:      include/linux/nl802154.h
6816 F:      include/linux/ieee802154.h
6817 F:      include/net/nl802154.h
6818 F:      include/net/mac802154.h
6819 F:      include/net/af_ieee802154.h
6820 F:      include/net/cfg802154.h
6821 F:      include/net/ieee802154_netdev.h
6822 F:      Documentation/networking/ieee802154.txt
6823
6824 IFE PROTOCOL
6825 M:      Yotam Gigi <yotam.gi@gmail.com>
6826 M:      Jamal Hadi Salim <jhs@mojatatu.com>
6827 F:      net/ife
6828 F:      include/net/ife.h
6829 F:      include/uapi/linux/ife.h
6830
6831 IGORPLUG-USB IR RECEIVER
6832 M:      Sean Young <sean@mess.org>
6833 L:      linux-media@vger.kernel.org
6834 S:      Maintained
6835 F:      drivers/media/rc/igorplugusb.c
6836
6837 IGUANAWORKS USB IR TRANSCEIVER
6838 M:      Sean Young <sean@mess.org>
6839 L:      linux-media@vger.kernel.org
6840 S:      Maintained
6841 F:      drivers/media/rc/iguanair.c
6842
6843 IIO DIGITAL POTENTIOMETER DAC
6844 M:      Peter Rosin <peda@axentia.se>
6845 L:      linux-iio@vger.kernel.org
6846 S:      Maintained
6847 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6848 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6849 F:      drivers/iio/dac/dpot-dac.c
6850
6851 IIO ENVELOPE DETECTOR
6852 M:      Peter Rosin <peda@axentia.se>
6853 L:      linux-iio@vger.kernel.org
6854 S:      Maintained
6855 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6856 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6857 F:      drivers/iio/adc/envelope-detector.c
6858
6859 IIO MULTIPLEXER
6860 M:      Peter Rosin <peda@axentia.se>
6861 L:      linux-iio@vger.kernel.org
6862 S:      Maintained
6863 F:      Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6864 F:      drivers/iio/multiplexer/iio-mux.c
6865
6866 IIO SUBSYSTEM AND DRIVERS
6867 M:      Jonathan Cameron <jic23@kernel.org>
6868 R:      Hartmut Knaack <knaack.h@gmx.de>
6869 R:      Lars-Peter Clausen <lars@metafoo.de>
6870 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6871 L:      linux-iio@vger.kernel.org
6872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6873 S:      Maintained
6874 F:      Documentation/ABI/testing/configfs-iio*
6875 F:      Documentation/ABI/testing/sysfs-bus-iio*
6876 F:      Documentation/devicetree/bindings/iio/
6877 F:      drivers/iio/
6878 F:      drivers/staging/iio/
6879 F:      include/linux/iio/
6880 F:      tools/iio/
6881
6882 IKANOS/ADI EAGLE ADSL USB DRIVER
6883 M:      Matthieu Castet <castet.matthieu@free.fr>
6884 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6885 S:      Maintained
6886 F:      drivers/usb/atm/ueagle-atm.c
6887
6888 IMGTEC ASCII LCD DRIVER
6889 M:      Paul Burton <paul.burton@mips.com>
6890 S:      Maintained
6891 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6892 F:      drivers/auxdisplay/img-ascii-lcd.c
6893
6894 IMGTEC IR DECODER DRIVER
6895 M:      James Hogan <jhogan@kernel.org>
6896 S:      Maintained
6897 F:      drivers/media/rc/img-ir/
6898
6899 IMS TWINTURBO FRAMEBUFFER DRIVER
6900 L:      linux-fbdev@vger.kernel.org
6901 S:      Orphan
6902 F:      drivers/video/fbdev/imsttfb.c
6903
6904 INA209 HARDWARE MONITOR DRIVER
6905 M:      Guenter Roeck <linux@roeck-us.net>
6906 L:      linux-hwmon@vger.kernel.org
6907 S:      Maintained
6908 F:      Documentation/hwmon/ina209
6909 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6910 F:      drivers/hwmon/ina209.c
6911
6912 INA2XX HARDWARE MONITOR DRIVER
6913 M:      Guenter Roeck <linux@roeck-us.net>
6914 L:      linux-hwmon@vger.kernel.org
6915 S:      Maintained
6916 F:      Documentation/hwmon/ina2xx
6917 F:      drivers/hwmon/ina2xx.c
6918 F:      include/linux/platform_data/ina2xx.h
6919
6920 INDUSTRY PACK SUBSYSTEM (IPACK)
6921 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6922 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6923 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6924 L:      industrypack-devel@lists.sourceforge.net
6925 W:      http://industrypack.sourceforge.net
6926 S:      Maintained
6927 F:      drivers/ipack/
6928
6929 INFINIBAND SUBSYSTEM
6930 M:      Doug Ledford <dledford@redhat.com>
6931 M:      Jason Gunthorpe <jgg@mellanox.com>
6932 L:      linux-rdma@vger.kernel.org
6933 W:      https://github.com/linux-rdma/rdma-core
6934 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
6936 S:      Supported
6937 F:      Documentation/devicetree/bindings/infiniband/
6938 F:      Documentation/infiniband/
6939 F:      drivers/infiniband/
6940 F:      include/uapi/linux/if_infiniband.h
6941 F:      include/uapi/rdma/
6942 F:      include/rdma/
6943
6944 INGENIC JZ4780 DMA Driver
6945 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6946 S:      Maintained
6947 F:      drivers/dma/dma-jz4780.c
6948
6949 INGENIC JZ4780 NAND DRIVER
6950 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6951 L:      linux-mtd@lists.infradead.org
6952 S:      Maintained
6953 F:      drivers/mtd/nand/jz4780_*
6954
6955 INOTIFY
6956 M:      Jan Kara <jack@suse.cz>
6957 R:      Amir Goldstein <amir73il@gmail.com>
6958 L:      linux-fsdevel@vger.kernel.org
6959 S:      Maintained
6960 F:      Documentation/filesystems/inotify.txt
6961 F:      fs/notify/inotify/
6962 F:      include/linux/inotify.h
6963 F:      include/uapi/linux/inotify.h
6964
6965 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6966 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6967 L:      linux-input@vger.kernel.org
6968 Q:      http://patchwork.kernel.org/project/linux-input/list/
6969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6970 S:      Maintained
6971 F:      drivers/input/
6972 F:      include/linux/input.h
6973 F:      include/uapi/linux/input.h
6974 F:      include/uapi/linux/input-event-codes.h
6975 F:      include/linux/input/
6976 F:      Documentation/devicetree/bindings/input/
6977 F:      Documentation/input/
6978
6979 INPUT MULTITOUCH (MT) PROTOCOL
6980 M:      Henrik Rydberg <rydberg@bitmath.org>
6981 L:      linux-input@vger.kernel.org
6982 S:      Odd fixes
6983 F:      Documentation/input/multi-touch-protocol.rst
6984 F:      drivers/input/input-mt.c
6985 K:      \b(ABS|SYN)_MT_
6986
6987 INSIDE SECURE CRYPTO DRIVER
6988 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
6989 F:      drivers/crypto/inside-secure/
6990 S:      Maintained
6991 L:      linux-crypto@vger.kernel.org
6992
6993 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6994 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6995 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6996 L:      linux-integrity@vger.kernel.org
6997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6998 S:      Supported
6999 F:      security/integrity/ima/
7000
7001 INTEL 810/815 FRAMEBUFFER DRIVER
7002 M:      Antonino Daplas <adaplas@gmail.com>
7003 L:      linux-fbdev@vger.kernel.org
7004 S:      Maintained
7005 F:      drivers/video/fbdev/i810/
7006
7007 INTEL ASoC BDW/HSW DRIVERS
7008 M:      Jie Yang <yang.jie@linux.intel.com>
7009 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7010 S:      Supported
7011 F:      sound/soc/intel/common/sst-dsp*
7012 F:      sound/soc/intel/common/sst-firmware.c
7013 F:      sound/soc/intel/boards/broadwell.c
7014 F:      sound/soc/intel/haswell/
7015
7016 INTEL C600 SERIES SAS CONTROLLER DRIVER
7017 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
7018 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7019 L:      linux-scsi@vger.kernel.org
7020 T:      git git://git.code.sf.net/p/intel-sas/isci
7021 S:      Supported
7022 F:      drivers/scsi/isci/
7023
7024 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7025 M:      Jani Nikula <jani.nikula@linux.intel.com>
7026 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7027 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
7028 L:      intel-gfx@lists.freedesktop.org
7029 W:      https://01.org/linuxgraphics/
7030 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
7031 C:      irc://chat.freenode.net/intel-gfx
7032 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
7033 T:      git git://anongit.freedesktop.org/drm-intel
7034 S:      Supported
7035 F:      drivers/gpu/drm/i915/
7036 F:      include/drm/i915*
7037 F:      include/uapi/drm/i915_drm.h
7038 F:      Documentation/gpu/i915.rst
7039
7040 INTEL ETHERNET DRIVERS
7041 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7042 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7043 W:      http://www.intel.com/support/feedback.htm
7044 W:      http://e1000.sourceforge.net/
7045 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7048 S:      Supported
7049 F:      Documentation/networking/e100.txt
7050 F:      Documentation/networking/e1000.txt
7051 F:      Documentation/networking/e1000e.txt
7052 F:      Documentation/networking/igb.txt
7053 F:      Documentation/networking/igbvf.txt
7054 F:      Documentation/networking/ixgb.txt
7055 F:      Documentation/networking/ixgbe.txt
7056 F:      Documentation/networking/ixgbevf.txt
7057 F:      Documentation/networking/i40e.txt
7058 F:      Documentation/networking/i40evf.txt
7059 F:      drivers/net/ethernet/intel/
7060 F:      drivers/net/ethernet/intel/*/
7061 F:      include/linux/avf/virtchnl.h
7062
7063 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7064 M:      Maik Broemme <mbroemme@libmpq.org>
7065 L:      linux-fbdev@vger.kernel.org
7066 S:      Maintained
7067 F:      Documentation/fb/intelfb.txt
7068 F:      drivers/video/fbdev/intelfb/
7069
7070 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7071 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7072 M:      Zhi Wang <zhi.a.wang@intel.com>
7073 L:      intel-gvt-dev@lists.freedesktop.org
7074 L:      intel-gfx@lists.freedesktop.org
7075 W:      https://01.org/igvt-g
7076 T:      git https://github.com/intel/gvt-linux.git
7077 S:      Supported
7078 F:      drivers/gpu/drm/i915/gvt/
7079
7080 INTEL HID EVENT DRIVER
7081 M:      Alex Hung <alex.hung@canonical.com>
7082 L:      platform-driver-x86@vger.kernel.org
7083 S:      Maintained
7084 F:      drivers/platform/x86/intel-hid.c
7085
7086 INTEL I/OAT DMA DRIVER
7087 M:      Dave Jiang <dave.jiang@intel.com>
7088 R:      Dan Williams <dan.j.williams@intel.com>
7089 L:      dmaengine@vger.kernel.org
7090 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7091 S:      Supported
7092 F:      drivers/dma/ioat*
7093
7094 INTEL IDLE DRIVER
7095 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7096 M:      Len Brown <lenb@kernel.org>
7097 L:      linux-pm@vger.kernel.org
7098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7099 B:      https://bugzilla.kernel.org
7100 S:      Supported
7101 F:      drivers/idle/intel_idle.c
7102
7103 INTEL INTEGRATED SENSOR HUB DRIVER
7104 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7105 M:      Jiri Kosina <jikos@kernel.org>
7106 L:      linux-input@vger.kernel.org
7107 S:      Maintained
7108 F:      drivers/hid/intel-ish-hid/
7109
7110 INTEL IOMMU (VT-d)
7111 M:      David Woodhouse <dwmw2@infradead.org>
7112 L:      iommu@lists.linux-foundation.org
7113 T:      git git://git.infradead.org/iommu-2.6.git
7114 S:      Supported
7115 F:      drivers/iommu/intel-iommu.c
7116 F:      include/linux/intel-iommu.h
7117
7118 INTEL IOP-ADMA DMA DRIVER
7119 R:      Dan Williams <dan.j.williams@intel.com>
7120 S:      Odd fixes
7121 F:      drivers/dma/iop-adma.c
7122
7123 INTEL IPU3 CSI-2 CIO2 DRIVER
7124 M:      Yong Zhi <yong.zhi@intel.com>
7125 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7126 L:      linux-media@vger.kernel.org
7127 S:      Maintained
7128 F:      drivers/media/pci/intel/ipu3/
7129 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7130
7131 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7132 M:      Krzysztof Halasa <khalasa@piap.pl>
7133 S:      Maintained
7134 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7135 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7136 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7137 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7138 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7139 F:      drivers/net/wan/ixp4xx_hss.c
7140
7141 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7142 M:      Deepak Saxena <dsaxena@plexity.net>
7143 S:      Maintained
7144 F:      drivers/char/hw_random/ixp4xx-rng.c
7145
7146 INTEL MANAGEMENT ENGINE (mei)
7147 M:      Tomas Winkler <tomas.winkler@intel.com>
7148 L:      linux-kernel@vger.kernel.org
7149 S:      Supported
7150 F:      include/uapi/linux/mei.h
7151 F:      include/linux/mei_cl_bus.h
7152 F:      drivers/misc/mei/*
7153 F:      drivers/watchdog/mei_wdt.c
7154 F:      Documentation/misc-devices/mei/*
7155 F:      samples/mei/*
7156
7157 INTEL MENLOW THERMAL DRIVER
7158 M:      Sujith Thomas <sujith.thomas@intel.com>
7159 L:      platform-driver-x86@vger.kernel.org
7160 W:      https://01.org/linux-acpi
7161 S:      Supported
7162 F:      drivers/platform/x86/intel_menlow.c
7163
7164 INTEL MERRIFIELD GPIO DRIVER
7165 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7166 L:      linux-gpio@vger.kernel.org
7167 S:      Maintained
7168 F:      drivers/gpio/gpio-merrifield.c
7169
7170 INTEL MIC DRIVERS (mic)
7171 M:      Sudeep Dutt <sudeep.dutt@intel.com>
7172 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
7173 S:      Supported
7174 W:      https://github.com/sudeepdutt/mic
7175 W:      http://software.intel.com/en-us/mic-developer
7176 F:      include/linux/mic_bus.h
7177 F:      include/linux/scif.h
7178 F:      include/uapi/linux/mic_common.h
7179 F:      include/uapi/linux/mic_ioctl.h
7180 F:      include/uapi/linux/scif_ioctl.h
7181 F:      drivers/misc/mic/
7182 F:      drivers/dma/mic_x100_dma.c
7183 F:      drivers/dma/mic_x100_dma.h
7184 F:      Documentation/mic/
7185
7186 INTEL PMC CORE DRIVER
7187 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7188 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7189 L:      platform-driver-x86@vger.kernel.org
7190 S:      Maintained
7191 F:      arch/x86/include/asm/pmc_core.h
7192 F:      drivers/platform/x86/intel_pmc_core*
7193
7194 INTEL PMC/P-Unit IPC DRIVER
7195 M:      Zha Qipeng<qipeng.zha@intel.com>
7196 L:      platform-driver-x86@vger.kernel.org
7197 S:      Maintained
7198 F:      drivers/platform/x86/intel_pmc_ipc.c
7199 F:      drivers/platform/x86/intel_punit_ipc.c
7200 F:      arch/x86/include/asm/intel_pmc_ipc.h
7201 F:      arch/x86/include/asm/intel_punit_ipc.h
7202
7203 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7204 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
7205 L:      linux-wireless@vger.kernel.org
7206 S:      Maintained
7207 F:      Documentation/networking/README.ipw2100
7208 F:      Documentation/networking/README.ipw2200
7209 F:      drivers/net/wireless/intel/ipw2x00/
7210
7211 INTEL PSTATE DRIVER
7212 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7213 M:      Len Brown <lenb@kernel.org>
7214 L:      linux-pm@vger.kernel.org
7215 S:      Supported
7216 F:      drivers/cpufreq/intel_pstate.c
7217
7218 INTEL RDMA RNIC DRIVER
7219 M:      Faisal Latif <faisal.latif@intel.com>
7220 M:      Shiraz Saleem <shiraz.saleem@intel.com>
7221 L:      linux-rdma@vger.kernel.org
7222 S:      Supported
7223 F:      drivers/infiniband/hw/i40iw/
7224
7225 INTEL TELEMETRY DRIVER
7226 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7227 L:      platform-driver-x86@vger.kernel.org
7228 S:      Maintained
7229 F:      arch/x86/include/asm/intel_telemetry.h
7230 F:      drivers/platform/x86/intel_telemetry*
7231
7232 INTEL VIRTUAL BUTTON DRIVER
7233 M:      AceLan Kao <acelan.kao@canonical.com>
7234 L:      platform-driver-x86@vger.kernel.org
7235 S:      Maintained
7236 F:      drivers/platform/x86/intel-vbtn.c
7237
7238 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7239 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7240 L:      linux-wireless@vger.kernel.org
7241 S:      Supported
7242 F:      drivers/net/wireless/intel/iwlegacy/
7243
7244 INTEL WIRELESS WIFI LINK (iwlwifi)
7245 M:      Johannes Berg <johannes.berg@intel.com>
7246 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7247 M:      Luca Coelho <luciano.coelho@intel.com>
7248 M:      Intel Linux Wireless <linuxwifi@intel.com>
7249 L:      linux-wireless@vger.kernel.org
7250 W:      http://intellinuxwireless.org
7251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7252 S:      Supported
7253 F:      drivers/net/wireless/intel/iwlwifi/
7254
7255 INTEL WIRELESS WIMAX CONNECTION 2400
7256 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7257 M:      linux-wimax@intel.com
7258 L:      wimax@linuxwimax.org (subscribers-only)
7259 S:      Supported
7260 W:      http://linuxwimax.org
7261 F:      Documentation/wimax/README.i2400m
7262 F:      drivers/net/wimax/i2400m/
7263 F:      include/uapi/linux/wimax/i2400m.h
7264
7265 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7266 M:      Mario Limonciello <mario.limonciello@dell.com>
7267 S:      Maintained
7268 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
7269
7270 INTEL(R) TRACE HUB
7271 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7272 S:      Supported
7273 F:      Documentation/trace/intel_th.txt
7274 F:      drivers/hwtracing/intel_th/
7275
7276 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7277 M:      Ning Sun <ning.sun@intel.com>
7278 L:      tboot-devel@lists.sourceforge.net
7279 W:      http://tboot.sourceforge.net
7280 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7281 S:      Supported
7282 F:      Documentation/intel_txt.txt
7283 F:      include/linux/tboot.h
7284 F:      arch/x86/kernel/tboot.c
7285
7286 INTEL-MID GPIO DRIVER
7287 M:      David Cohen <david.a.cohen@linux.intel.com>
7288 L:      linux-gpio@vger.kernel.org
7289 S:      Maintained
7290 F:      drivers/gpio/gpio-intel-mid.c
7291
7292 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7293 M:      Linus Walleij <linus.walleij@linaro.org>
7294 L:      linux-iio@vger.kernel.org
7295 S:      Maintained
7296 F:      drivers/iio/gyro/mpu3050*
7297 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7298
7299 IOC3 ETHERNET DRIVER
7300 M:      Ralf Baechle <ralf@linux-mips.org>
7301 L:      linux-mips@linux-mips.org
7302 S:      Maintained
7303 F:      drivers/net/ethernet/sgi/ioc3-eth.c
7304
7305 IOC3 SERIAL DRIVER
7306 M:      Pat Gefre <pfg@sgi.com>
7307 L:      linux-serial@vger.kernel.org
7308 S:      Maintained
7309 F:      drivers/tty/serial/ioc3_serial.c
7310
7311 IOMMU DRIVERS
7312 M:      Joerg Roedel <joro@8bytes.org>
7313 L:      iommu@lists.linux-foundation.org
7314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7315 S:      Maintained
7316 F:      Documentation/devicetree/bindings/iommu/
7317 F:      drivers/iommu/
7318 F:      include/linux/iommu.h
7319 F:      include/linux/iova.h
7320
7321 IP MASQUERADING
7322 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7323 S:      Maintained
7324 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7325
7326 IPMI SUBSYSTEM
7327 M:      Corey Minyard <minyard@acm.org>
7328 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7329 W:      http://openipmi.sourceforge.net/
7330 S:      Supported
7331 F:      Documentation/IPMI.txt
7332 F:      drivers/char/ipmi/
7333 F:      include/linux/ipmi*
7334 F:      include/uapi/linux/ipmi*
7335
7336 IPS SCSI RAID DRIVER
7337 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7338 L:      linux-scsi@vger.kernel.org
7339 W:      http://www.adaptec.com/
7340 S:      Maintained
7341 F:      drivers/scsi/ips*
7342
7343 IPVS
7344 M:      Wensong Zhang <wensong@linux-vs.org>
7345 M:      Simon Horman <horms@verge.net.au>
7346 M:      Julian Anastasov <ja@ssi.bg>
7347 L:      netdev@vger.kernel.org
7348 L:      lvs-devel@vger.kernel.org
7349 S:      Maintained
7350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7352 F:      Documentation/networking/ipvs-sysctl.txt
7353 F:      include/net/ip_vs.h
7354 F:      include/uapi/linux/ip_vs.h
7355 F:      net/netfilter/ipvs/
7356
7357 IPWIRELESS DRIVER
7358 M:      Jiri Kosina <jikos@kernel.org>
7359 M:      David Sterba <dsterba@suse.com>
7360 S:      Odd Fixes
7361 F:      drivers/tty/ipwireless/
7362
7363 IPX NETWORK LAYER
7364 L:      netdev@vger.kernel.org
7365 S:      Obsolete
7366 F:      include/uapi/linux/ipx.h
7367 F:      drivers/staging/ipx/
7368
7369 IRDA SUBSYSTEM
7370 M:      Samuel Ortiz <samuel@sortiz.org>
7371 L:      irda-users@lists.sourceforge.net (subscribers-only)
7372 L:      netdev@vger.kernel.org
7373 W:      http://irda.sourceforge.net/
7374 S:      Obsolete
7375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7376 F:      Documentation/networking/irda.txt
7377 F:      drivers/staging/irda/
7378
7379 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7380 M:      Marc Zyngier <marc.zyngier@arm.com>
7381 S:      Maintained
7382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7383 F:      Documentation/IRQ-domain.txt
7384 F:      include/linux/irqdomain.h
7385 F:      kernel/irq/irqdomain.c
7386 F:      kernel/irq/msi.c
7387
7388 IRQ SUBSYSTEM
7389 M:      Thomas Gleixner <tglx@linutronix.de>
7390 L:      linux-kernel@vger.kernel.org
7391 S:      Maintained
7392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7393 F:      kernel/irq/
7394
7395 IRQCHIP DRIVERS
7396 M:      Thomas Gleixner <tglx@linutronix.de>
7397 M:      Jason Cooper <jason@lakedaemon.net>
7398 M:      Marc Zyngier <marc.zyngier@arm.com>
7399 L:      linux-kernel@vger.kernel.org
7400 S:      Maintained
7401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7402 F:      Documentation/devicetree/bindings/interrupt-controller/
7403 F:      drivers/irqchip/
7404
7405 ISA
7406 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7407 S:      Maintained
7408 F:      Documentation/isa.txt
7409 F:      drivers/base/isa.c
7410 F:      include/linux/isa.h
7411
7412 ISA RADIO MODULE
7413 M:      Hans Verkuil <hverkuil@xs4all.nl>
7414 L:      linux-media@vger.kernel.org
7415 T:      git git://linuxtv.org/media_tree.git
7416 W:      https://linuxtv.org
7417 S:      Maintained
7418 F:      drivers/media/radio/radio-isa*
7419
7420 ISAPNP
7421 M:      Jaroslav Kysela <perex@perex.cz>
7422 S:      Maintained
7423 F:      Documentation/isapnp.txt
7424 F:      drivers/pnp/isapnp/
7425 F:      include/linux/isapnp.h
7426
7427 ISCSI
7428 M:      Lee Duncan <lduncan@suse.com>
7429 M:      Chris Leech <cleech@redhat.com>
7430 L:      open-iscsi@googlegroups.com
7431 W:      www.open-iscsi.com
7432 S:      Maintained
7433 F:      drivers/scsi/*iscsi*
7434 F:      include/scsi/*iscsi*
7435
7436 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7437 M:      Peter Jones <pjones@redhat.com>
7438 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7439 S:      Maintained
7440 F:      drivers/firmware/iscsi_ibft*
7441
7442 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7443 M:      Or Gerlitz <ogerlitz@mellanox.com>
7444 M:      Sagi Grimberg <sagi@grimberg.me>
7445 M:      Roi Dayan <roid@mellanox.com>
7446 L:      linux-rdma@vger.kernel.org
7447 S:      Supported
7448 W:      http://www.openfabrics.org
7449 W:      www.open-iscsi.org
7450 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7451 F:      drivers/infiniband/ulp/iser/
7452
7453 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7454 M:      Sagi Grimberg <sagi@grimberg.me>
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7456 L:      linux-rdma@vger.kernel.org
7457 L:      target-devel@vger.kernel.org
7458 S:      Supported
7459 W:      http://www.linux-iscsi.org
7460 F:      drivers/infiniband/ulp/isert
7461
7462 ISDN SUBSYSTEM
7463 M:      Karsten Keil <isdn@linux-pingi.de>
7464 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7465 L:      netdev@vger.kernel.org
7466 W:      http://www.isdn4linux.de
7467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7468 S:      Maintained
7469 F:      Documentation/isdn/
7470 F:      drivers/isdn/
7471 F:      include/linux/isdn.h
7472 F:      include/linux/isdn/
7473 F:      include/uapi/linux/isdn.h
7474 F:      include/uapi/linux/isdn/
7475
7476 ISDN SUBSYSTEM (Eicon active card driver)
7477 M:      Armin Schindler <mac@melware.de>
7478 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7479 W:      http://www.melware.de
7480 S:      Maintained
7481 F:      drivers/isdn/hardware/eicon/
7482
7483 IT87 HARDWARE MONITORING DRIVER
7484 M:      Jean Delvare <jdelvare@suse.com>
7485 L:      linux-hwmon@vger.kernel.org
7486 S:      Maintained
7487 F:      Documentation/hwmon/it87
7488 F:      drivers/hwmon/it87.c
7489
7490 IT913X MEDIA DRIVER
7491 M:      Antti Palosaari <crope@iki.fi>
7492 L:      linux-media@vger.kernel.org
7493 W:      https://linuxtv.org
7494 W:      http://palosaari.fi/linux/
7495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7496 T:      git git://linuxtv.org/anttip/media_tree.git
7497 S:      Maintained
7498 F:      drivers/media/tuners/it913x*
7499
7500 IVTV VIDEO4LINUX DRIVER
7501 M:      Andy Walls <awalls@md.metrocast.net>
7502 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
7503 L:      linux-media@vger.kernel.org
7504 T:      git git://linuxtv.org/media_tree.git
7505 W:      http://www.ivtvdriver.org
7506 S:      Maintained
7507 F:      Documentation/media/v4l-drivers/ivtv*
7508 F:      drivers/media/pci/ivtv/
7509 F:      include/uapi/linux/ivtv*
7510
7511 IX2505V MEDIA DRIVER
7512 M:      Malcolm Priestley <tvboxspy@gmail.com>
7513 L:      linux-media@vger.kernel.org
7514 W:      https://linuxtv.org
7515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7516 S:      Maintained
7517 F:      drivers/media/dvb-frontends/ix2505v*
7518
7519 JC42.4 TEMPERATURE SENSOR DRIVER
7520 M:      Guenter Roeck <linux@roeck-us.net>
7521 L:      linux-hwmon@vger.kernel.org
7522 S:      Maintained
7523 F:      drivers/hwmon/jc42.c
7524 F:      Documentation/hwmon/jc42
7525
7526 JFS FILESYSTEM
7527 M:      Dave Kleikamp <shaggy@kernel.org>
7528 L:      jfs-discussion@lists.sourceforge.net
7529 W:      http://jfs.sourceforge.net/
7530 T:      git git://github.com/kleikamp/linux-shaggy.git
7531 S:      Maintained
7532 F:      Documentation/filesystems/jfs.txt
7533 F:      fs/jfs/
7534
7535 JME NETWORK DRIVER
7536 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
7537 L:      netdev@vger.kernel.org
7538 S:      Maintained
7539 F:      drivers/net/ethernet/jme.*
7540
7541 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7542 M:      David Woodhouse <dwmw2@infradead.org>
7543 L:      linux-mtd@lists.infradead.org
7544 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7545 S:      Maintained
7546 F:      fs/jffs2/
7547 F:      include/uapi/linux/jffs2.h
7548
7549 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7550 M:      "Theodore Ts'o" <tytso@mit.edu>
7551 M:      Jan Kara <jack@suse.com>
7552 L:      linux-ext4@vger.kernel.org
7553 S:      Maintained
7554 F:      fs/jbd2/
7555 F:      include/linux/jbd2.h
7556
7557 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7558 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7559 L:      linux-media@vger.kernel.org
7560 S:      Maintained
7561 F:      drivers/media/platform/rcar_jpu.c
7562
7563 JSM Neo PCI based serial card
7564 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7565 L:      linux-serial@vger.kernel.org
7566 S:      Maintained
7567 F:      drivers/tty/serial/jsm/
7568
7569 K10TEMP HARDWARE MONITORING DRIVER
7570 M:      Clemens Ladisch <clemens@ladisch.de>
7571 L:      linux-hwmon@vger.kernel.org
7572 S:      Maintained
7573 F:      Documentation/hwmon/k10temp
7574 F:      drivers/hwmon/k10temp.c
7575
7576 K8TEMP HARDWARE MONITORING DRIVER
7577 M:      Rudolf Marek <r.marek@assembler.cz>
7578 L:      linux-hwmon@vger.kernel.org
7579 S:      Maintained
7580 F:      Documentation/hwmon/k8temp
7581 F:      drivers/hwmon/k8temp.c
7582
7583 KASAN
7584 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
7585 R:      Alexander Potapenko <glider@google.com>
7586 R:      Dmitry Vyukov <dvyukov@google.com>
7587 L:      kasan-dev@googlegroups.com
7588 S:      Maintained
7589 F:      arch/*/include/asm/kasan.h
7590 F:      arch/*/mm/kasan_init*
7591 F:      Documentation/dev-tools/kasan.rst
7592 F:      include/linux/kasan*.h
7593 F:      lib/test_kasan.c
7594 F:      mm/kasan/
7595 F:      scripts/Makefile.kasan
7596
7597 KCONFIG
7598 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
7600 L:      linux-kbuild@vger.kernel.org
7601 S:      Maintained
7602 F:      Documentation/kbuild/kconfig-language.txt
7603 F:      scripts/kconfig/
7604
7605 KDUMP
7606 M:      Dave Young <dyoung@redhat.com>
7607 M:      Baoquan He <bhe@redhat.com>
7608 R:      Vivek Goyal <vgoyal@redhat.com>
7609 L:      kexec@lists.infradead.org
7610 W:      http://lse.sourceforge.net/kdump/
7611 S:      Maintained
7612 F:      Documentation/kdump/
7613
7614 KEENE FM RADIO TRANSMITTER DRIVER
7615 M:      Hans Verkuil <hverkuil@xs4all.nl>
7616 L:      linux-media@vger.kernel.org
7617 T:      git git://linuxtv.org/media_tree.git
7618 W:      https://linuxtv.org
7619 S:      Maintained
7620 F:      drivers/media/radio/radio-keene*
7621
7622 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7623 M:      Ian Kent <raven@themaw.net>
7624 L:      autofs@vger.kernel.org
7625 S:      Maintained
7626 F:      fs/autofs4/
7627
7628 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7629 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7630 M:      Michal Marek <michal.lkml@markovi.net>
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7632 L:      linux-kbuild@vger.kernel.org
7633 S:      Maintained
7634 F:      Documentation/kbuild/
7635 F:      Makefile
7636 F:      scripts/Makefile.*
7637 F:      scripts/basic/
7638 F:      scripts/mk*
7639 F:      scripts/package/
7640
7641 KERNEL JANITORS
7642 L:      kernel-janitors@vger.kernel.org
7643 W:      http://kernelnewbies.org/KernelJanitors
7644 S:      Odd Fixes
7645
7646 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7647 M:      "J. Bruce Fields" <bfields@fieldses.org>
7648 M:      Jeff Layton <jlayton@kernel.org>
7649 L:      linux-nfs@vger.kernel.org
7650 W:      http://nfs.sourceforge.net/
7651 T:      git git://linux-nfs.org/~bfields/linux.git
7652 S:      Supported
7653 F:      fs/nfsd/
7654 F:      include/uapi/linux/nfsd/
7655 F:      fs/lockd/
7656 F:      fs/nfs_common/
7657 F:      net/sunrpc/
7658 F:      include/linux/lockd/
7659 F:      include/linux/sunrpc/
7660 F:      include/uapi/linux/sunrpc/
7661
7662 KERNEL SELFTEST FRAMEWORK
7663 M:      Shuah Khan <shuahkh@osg.samsung.com>
7664 M:      Shuah Khan <shuah@kernel.org>
7665 L:      linux-kselftest@vger.kernel.org
7666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7667 S:      Maintained
7668 F:      tools/testing/selftests/
7669 F:      Documentation/dev-tools/kselftest*
7670
7671 KERNEL USERMODE HELPER
7672 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7673 L:      linux-kernel@vger.kernel.org
7674 S:      Maintained
7675 F:      kernel/umh.c
7676 F:      include/linux/umh.h
7677
7678 KERNEL VIRTUAL MACHINE (KVM)
7679 M:      Paolo Bonzini <pbonzini@redhat.com>
7680 M:      Radim Krčmář <rkrcmar@redhat.com>
7681 L:      kvm@vger.kernel.org
7682 W:      http://www.linux-kvm.org
7683 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7684 S:      Supported
7685 F:      Documentation/virtual/kvm/
7686 F:      include/trace/events/kvm.h
7687 F:      include/uapi/asm-generic/kvm*
7688 F:      include/uapi/linux/kvm*
7689 F:      include/asm-generic/kvm*
7690 F:      include/linux/kvm*
7691 F:      include/kvm/iodev.h
7692 F:      virt/kvm/*
7693 F:      tools/kvm/
7694
7695 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7696 M:      Joerg Roedel <joro@8bytes.org>
7697 L:      kvm@vger.kernel.org
7698 W:      http://www.linux-kvm.org/
7699 S:      Maintained
7700 F:      arch/x86/include/asm/svm.h
7701 F:      arch/x86/kvm/svm.c
7702
7703 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7704 M:      Christoffer Dall <christoffer.dall@linaro.org>
7705 M:      Marc Zyngier <marc.zyngier@arm.com>
7706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7707 L:      kvmarm@lists.cs.columbia.edu
7708 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7710 S:      Supported
7711 F:      arch/arm/include/uapi/asm/kvm*
7712 F:      arch/arm/include/asm/kvm*
7713 F:      arch/arm/kvm/
7714 F:      virt/kvm/arm/
7715 F:      include/kvm/arm_*
7716
7717 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7718 M:      Christoffer Dall <christoffer.dall@linaro.org>
7719 M:      Marc Zyngier <marc.zyngier@arm.com>
7720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7721 L:      kvmarm@lists.cs.columbia.edu
7722 S:      Maintained
7723 F:      arch/arm64/include/uapi/asm/kvm*
7724 F:      arch/arm64/include/asm/kvm*
7725 F:      arch/arm64/kvm/
7726
7727 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7728 M:      James Hogan <jhogan@kernel.org>
7729 L:      linux-mips@linux-mips.org
7730 S:      Supported
7731 F:      arch/mips/include/uapi/asm/kvm*
7732 F:      arch/mips/include/asm/kvm*
7733 F:      arch/mips/kvm/
7734
7735 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7736 M:      Paul Mackerras <paulus@ozlabs.org>
7737 L:      kvm-ppc@vger.kernel.org
7738 W:      http://www.linux-kvm.org/
7739 T:      git git://github.com/agraf/linux-2.6.git
7740 S:      Supported
7741 F:      arch/powerpc/include/uapi/asm/kvm*
7742 F:      arch/powerpc/include/asm/kvm*
7743 F:      arch/powerpc/kvm/
7744 F:      arch/powerpc/kernel/kvm*
7745
7746 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7747 M:      Christian Borntraeger <borntraeger@de.ibm.com>
7748 M:      Janosch Frank <frankja@linux.vnet.ibm.com>
7749 R:      David Hildenbrand <david@redhat.com>
7750 R:      Cornelia Huck <cohuck@redhat.com>
7751 L:      linux-s390@vger.kernel.org
7752 W:      http://www.ibm.com/developerworks/linux/linux390/
7753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7754 S:      Supported
7755 F:      arch/s390/include/uapi/asm/kvm*
7756 F:      arch/s390/include/asm/gmap.h
7757 F:      arch/s390/include/asm/kvm*
7758 F:      arch/s390/kvm/
7759 F:      arch/s390/mm/gmap.c
7760
7761 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7762 M:      Paolo Bonzini <pbonzini@redhat.com>
7763 M:      Radim Krčmář <rkrcmar@redhat.com>
7764 L:      kvm@vger.kernel.org
7765 W:      http://www.linux-kvm.org
7766 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7767 S:      Supported
7768 F:      arch/x86/kvm/
7769 F:      arch/x86/include/uapi/asm/kvm*
7770 F:      arch/x86/include/asm/kvm*
7771 F:      arch/x86/include/asm/pvclock-abi.h
7772 F:      arch/x86/kernel/kvm.c
7773 F:      arch/x86/kernel/kvmclock.c
7774
7775 KERNFS
7776 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7777 M:      Tejun Heo <tj@kernel.org>
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7779 S:      Supported
7780 F:      include/linux/kernfs.h
7781 F:      fs/kernfs/
7782
7783 KEXEC
7784 M:      Eric Biederman <ebiederm@xmission.com>
7785 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7786 L:      kexec@lists.infradead.org
7787 S:      Maintained
7788 F:      include/linux/kexec.h
7789 F:      include/uapi/linux/kexec.h
7790 F:      kernel/kexec*
7791
7792 KEYS-ENCRYPTED
7793 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7794 L:      linux-integrity@vger.kernel.org
7795 L:      keyrings@vger.kernel.org
7796 S:      Supported
7797 F:      Documentation/security/keys/trusted-encrypted.rst
7798 F:      include/keys/encrypted-type.h
7799 F:      security/keys/encrypted-keys/
7800
7801 KEYS-TRUSTED
7802 M:      James Bottomley <jejb@linux.vnet.ibm.com>
7803 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7804 L:      linux-integrity@vger.kernel.org
7805 L:      keyrings@vger.kernel.org
7806 S:      Supported
7807 F:      Documentation/security/keys/trusted-encrypted.rst
7808 F:      include/keys/trusted-type.h
7809 F:      security/keys/trusted.c
7810 F:      security/keys/trusted.h
7811
7812 KEYS/KEYRINGS:
7813 M:      David Howells <dhowells@redhat.com>
7814 L:      keyrings@vger.kernel.org
7815 S:      Maintained
7816 F:      Documentation/security/keys/core.rst
7817 F:      include/linux/key.h
7818 F:      include/linux/key-type.h
7819 F:      include/linux/keyctl.h
7820 F:      include/uapi/linux/keyctl.h
7821 F:      include/keys/
7822 F:      security/keys/
7823
7824 KGDB / KDB /debug_core
7825 M:      Jason Wessel <jason.wessel@windriver.com>
7826 M:      Daniel Thompson <daniel.thompson@linaro.org>
7827 W:      http://kgdb.wiki.kernel.org/
7828 L:      kgdb-bugreport@lists.sourceforge.net
7829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7830 S:      Maintained
7831 F:      Documentation/dev-tools/kgdb.rst
7832 F:      drivers/misc/kgdbts.c
7833 F:      drivers/tty/serial/kgdboc.c
7834 F:      include/linux/kdb.h
7835 F:      include/linux/kgdb.h
7836 F:      kernel/debug/
7837
7838 KMEMLEAK
7839 M:      Catalin Marinas <catalin.marinas@arm.com>
7840 S:      Maintained
7841 F:      Documentation/dev-tools/kmemleak.rst
7842 F:      include/linux/kmemleak.h
7843 F:      mm/kmemleak.c
7844 F:      mm/kmemleak-test.c
7845
7846 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7847 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7848 L:      linux-kernel@vger.kernel.org
7849 S:      Maintained
7850 F:      kernel/kmod.c
7851 F:      include/linux/kmod.h
7852 F:      lib/test_kmod.c
7853 F:      tools/testing/selftests/kmod/
7854
7855 KPROBES
7856 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7857 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7858 M:      "David S. Miller" <davem@davemloft.net>
7859 M:      Masami Hiramatsu <mhiramat@kernel.org>
7860 S:      Maintained
7861 F:      Documentation/kprobes.txt
7862 F:      include/linux/kprobes.h
7863 F:      include/asm-generic/kprobes.h
7864 F:      kernel/kprobes.c
7865
7866 KS0108 LCD CONTROLLER DRIVER
7867 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7868 W:      http://miguelojeda.es/auxdisplay.htm
7869 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7870 S:      Maintained
7871 F:      Documentation/auxdisplay/ks0108
7872 F:      drivers/auxdisplay/ks0108.c
7873 F:      include/linux/ks0108.h
7874
7875 L3MDEV
7876 M:      David Ahern <dsa@cumulusnetworks.com>
7877 L:      netdev@vger.kernel.org
7878 S:      Maintained
7879 F:      net/l3mdev
7880 F:      include/net/l3mdev.h
7881
7882 LANTIQ MIPS ARCHITECTURE
7883 M:      John Crispin <john@phrozen.org>
7884 L:      linux-mips@linux-mips.org
7885 S:      Maintained
7886 F:      arch/mips/lantiq
7887 F:      drivers/soc/lantiq
7888
7889 LAPB module
7890 L:      linux-x25@vger.kernel.org
7891 S:      Orphan
7892 F:      Documentation/networking/lapb-module.txt
7893 F:      include/*/lapb.h
7894 F:      net/lapb/
7895
7896 LASI 53c700 driver for PARISC
7897 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7898 L:      linux-scsi@vger.kernel.org
7899 S:      Maintained
7900 F:      Documentation/scsi/53c700.txt
7901 F:      drivers/scsi/53c700*
7902
7903 LEAKING_ADDRESSES
7904 M:      Tobin C. Harding <me@tobin.cc>
7905 S:      Maintained
7906 F:      scripts/leaking_addresses.pl
7907
7908 LED SUBSYSTEM
7909 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
7910 M:      Pavel Machek <pavel@ucw.cz>
7911 L:      linux-leds@vger.kernel.org
7912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7913 S:      Maintained
7914 F:      Documentation/devicetree/bindings/leds/
7915 F:      drivers/leds/
7916 F:      include/linux/leds.h
7917
7918 LEGACY EEPROM DRIVER
7919 M:      Jean Delvare <jdelvare@suse.com>
7920 S:      Maintained
7921 F:      Documentation/misc-devices/eeprom
7922 F:      drivers/misc/eeprom/eeprom.c
7923
7924 LEGO USB Tower driver
7925 M:      Juergen Stuber <starblue@users.sourceforge.net>
7926 L:      legousb-devel@lists.sourceforge.net
7927 W:      http://legousb.sourceforge.net/
7928 S:      Maintained
7929 F:      drivers/usb/misc/legousbtower.c
7930
7931 LG2160 MEDIA DRIVER
7932 M:      Michael Krufky <mkrufky@linuxtv.org>
7933 L:      linux-media@vger.kernel.org
7934 W:      https://linuxtv.org
7935 W:      http://github.com/mkrufky
7936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7937 T:      git git://linuxtv.org/mkrufky/tuners.git
7938 S:      Maintained
7939 F:      drivers/media/dvb-frontends/lg2160.*
7940
7941 LGDT3305 MEDIA DRIVER
7942 M:      Michael Krufky <mkrufky@linuxtv.org>
7943 L:      linux-media@vger.kernel.org
7944 W:      https://linuxtv.org
7945 W:      http://github.com/mkrufky
7946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7947 T:      git git://linuxtv.org/mkrufky/tuners.git
7948 S:      Maintained
7949 F:      drivers/media/dvb-frontends/lgdt3305.*
7950
7951 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7952 M:      Viresh Kumar <vireshk@kernel.org>
7953 L:      linux-ide@vger.kernel.org
7954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7955 S:      Maintained
7956 F:      include/linux/pata_arasan_cf_data.h
7957 F:      drivers/ata/pata_arasan_cf.c
7958
7959 LIBATA PATA DRIVERS
7960 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7961 M:      Tejun Heo <tj@kernel.org>
7962 L:      linux-ide@vger.kernel.org
7963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7964 S:      Maintained
7965 F:      drivers/ata/pata_*.c
7966 F:      drivers/ata/ata_generic.c
7967
7968 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7969 M:      Linus Walleij <linus.walleij@linaro.org>
7970 L:      linux-ide@vger.kernel.org
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7972 S:      Maintained
7973 F:      drivers/ata/pata_ftide010.c
7974 F:      drivers/ata/sata_gemini.c
7975 F:      drivers/ata/sata_gemini.h
7976
7977 LIBATA SATA AHCI PLATFORM devices support
7978 M:      Hans de Goede <hdegoede@redhat.com>
7979 M:      Tejun Heo <tj@kernel.org>
7980 L:      linux-ide@vger.kernel.org
7981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7982 S:      Maintained
7983 F:      drivers/ata/ahci_platform.c
7984 F:      drivers/ata/libahci_platform.c
7985 F:      include/linux/ahci_platform.h
7986
7987 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7988 M:      Mikael Pettersson <mikpelinux@gmail.com>
7989 L:      linux-ide@vger.kernel.org
7990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7991 S:      Maintained
7992 F:      drivers/ata/sata_promise.*
7993
7994 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7995 M:      Tejun Heo <tj@kernel.org>
7996 L:      linux-ide@vger.kernel.org
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7998 S:      Maintained
7999 F:      drivers/ata/
8000 F:      include/linux/ata.h
8001 F:      include/linux/libata.h
8002 F:      Documentation/devicetree/bindings/ata/
8003
8004 LIBLOCKDEP
8005 M:      Sasha Levin <alexander.levin@verizon.com>
8006 S:      Maintained
8007 F:      tools/lib/lockdep/
8008
8009 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8010 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8011 L:      linux-nvdimm@lists.01.org
8012 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8013 S:      Supported
8014 F:      drivers/nvdimm/blk.c
8015 F:      drivers/nvdimm/region_devs.c
8016
8017 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8018 M:      Vishal Verma <vishal.l.verma@intel.com>
8019 L:      linux-nvdimm@lists.01.org
8020 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8021 S:      Supported
8022 F:      drivers/nvdimm/btt*
8023
8024 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8025 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8026 L:      linux-nvdimm@lists.01.org
8027 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8028 S:      Supported
8029 F:      drivers/nvdimm/pmem*
8030
8031 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8032 M:      Dan Williams <dan.j.williams@intel.com>
8033 L:      linux-nvdimm@lists.01.org
8034 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8036 S:      Supported
8037 F:      drivers/nvdimm/*
8038 F:      drivers/acpi/nfit/*
8039 F:      include/linux/nd.h
8040 F:      include/linux/libnvdimm.h
8041 F:      include/uapi/linux/ndctl.h
8042
8043 LIGHTNVM PLATFORM SUPPORT
8044 M:      Matias Bjorling <mb@lightnvm.io>
8045 W:      http://github/OpenChannelSSD
8046 L:      linux-block@vger.kernel.org
8047 S:      Maintained
8048 F:      drivers/lightnvm/
8049 F:      include/linux/lightnvm.h
8050 F:      include/uapi/linux/lightnvm.h
8051
8052 LINUX FOR POWER MACINTOSH
8053 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8054 W:      http://www.penguinppc.org/
8055 L:      linuxppc-dev@lists.ozlabs.org
8056 S:      Maintained
8057 F:      arch/powerpc/platforms/powermac/
8058 F:      drivers/macintosh/
8059
8060 LINUX FOR POWERPC (32-BIT AND 64-BIT)
8061 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8062 M:      Paul Mackerras <paulus@samba.org>
8063 M:      Michael Ellerman <mpe@ellerman.id.au>
8064 W:      https://github.com/linuxppc/linux/wiki
8065 L:      linuxppc-dev@lists.ozlabs.org
8066 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8068 S:      Supported
8069 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
8070 F:      Documentation/devicetree/bindings/powerpc/
8071 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
8072 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
8073 F:      Documentation/powerpc/
8074 F:      arch/powerpc/
8075 F:      drivers/char/tpm/tpm_ibmvtpm*
8076 F:      drivers/crypto/nx/
8077 F:      drivers/crypto/vmx/
8078 F:      drivers/i2c/busses/i2c-opal.c
8079 F:      drivers/net/ethernet/ibm/ibmveth.*
8080 F:      drivers/net/ethernet/ibm/ibmvnic.*
8081 F:      drivers/pci/hotplug/pnv_php.c
8082 F:      drivers/pci/hotplug/rpa*
8083 F:      drivers/rtc/rtc-opal.c
8084 F:      drivers/scsi/ibmvscsi/
8085 F:      drivers/tty/hvc/hvc_opal.c
8086 F:      drivers/watchdog/wdrtas.c
8087 F:      tools/testing/selftests/powerpc
8088 N:      /pmac
8089 N:      powermac
8090 N:      powernv
8091 N:      [^a-z0-9]ps3
8092 N:      pseries
8093
8094 LINUX FOR POWERPC EMBEDDED MPC5XXX
8095 M:      Anatolij Gustschin <agust@denx.de>
8096 L:      linuxppc-dev@lists.ozlabs.org
8097 T:      git git://git.denx.de/linux-denx-agust.git
8098 S:      Maintained
8099 F:      arch/powerpc/platforms/512x/
8100 F:      arch/powerpc/platforms/52xx/
8101
8102 LINUX FOR POWERPC EMBEDDED PPC4XX
8103 M:      Alistair Popple <alistair@popple.id.au>
8104 M:      Matt Porter <mporter@kernel.crashing.org>
8105 W:      http://www.penguinppc.org/
8106 L:      linuxppc-dev@lists.ozlabs.org
8107 S:      Maintained
8108 F:      arch/powerpc/platforms/40x/
8109 F:      arch/powerpc/platforms/44x/
8110
8111 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8112 M:      Scott Wood <oss@buserror.net>
8113 M:      Kumar Gala <galak@kernel.crashing.org>
8114 W:      http://www.penguinppc.org/
8115 L:      linuxppc-dev@lists.ozlabs.org
8116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8117 S:      Maintained
8118 F:      arch/powerpc/platforms/83xx/
8119 F:      arch/powerpc/platforms/85xx/
8120 F:      Documentation/devicetree/bindings/powerpc/fsl/
8121
8122 LINUX FOR POWERPC EMBEDDED PPC8XX
8123 M:      Vitaly Bordug <vitb@kernel.crashing.org>
8124 W:      http://www.penguinppc.org/
8125 L:      linuxppc-dev@lists.ozlabs.org
8126 S:      Maintained
8127 F:      arch/powerpc/platforms/8xx/
8128
8129 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8130 L:      linuxppc-dev@lists.ozlabs.org
8131 S:      Orphan
8132 F:      arch/powerpc/*/*virtex*
8133 F:      arch/powerpc/*/*/*virtex*
8134
8135 LINUX FOR POWERPC PA SEMI PWRFICIENT
8136 L:      linuxppc-dev@lists.ozlabs.org
8137 S:      Orphan
8138 F:      arch/powerpc/platforms/pasemi/
8139 F:      drivers/*/*pasemi*
8140 F:      drivers/*/*/*pasemi*
8141
8142 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8143 M:      Kees Cook <keescook@chromium.org>
8144 S:      Maintained
8145 F:      drivers/misc/lkdtm*
8146
8147 LINUX SECURITY MODULE (LSM) FRAMEWORK
8148 M:      Chris Wright <chrisw@sous-sol.org>
8149 L:      linux-security-module@vger.kernel.org
8150 S:      Supported
8151
8152 LIS3LV02D ACCELEROMETER DRIVER
8153 M:      Eric Piel <eric.piel@tremplin-utc.net>
8154 S:      Maintained
8155 F:      Documentation/misc-devices/lis3lv02d
8156 F:      drivers/misc/lis3lv02d/
8157 F:      drivers/platform/x86/hp_accel.c
8158
8159 LIVE PATCHING
8160 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8161 M:      Jessica Yu <jeyu@kernel.org>
8162 M:      Jiri Kosina <jikos@kernel.org>
8163 M:      Miroslav Benes <mbenes@suse.cz>
8164 R:      Petr Mladek <pmladek@suse.com>
8165 S:      Maintained
8166 F:      kernel/livepatch/
8167 F:      include/linux/livepatch.h
8168 F:      arch/x86/include/asm/livepatch.h
8169 F:      arch/x86/kernel/livepatch.c
8170 F:      Documentation/livepatch/
8171 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
8172 F:      samples/livepatch/
8173 L:      live-patching@vger.kernel.org
8174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8175
8176 LLC (802.2)
8177 L:      netdev@vger.kernel.org
8178 S:      Odd fixes
8179 F:      include/linux/llc.h
8180 F:      include/uapi/linux/llc.h
8181 F:      include/net/llc*
8182 F:      net/llc/
8183
8184 LM73 HARDWARE MONITOR DRIVER
8185 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
8186 L:      linux-hwmon@vger.kernel.org
8187 S:      Maintained
8188 F:      drivers/hwmon/lm73.c
8189
8190 LM78 HARDWARE MONITOR DRIVER
8191 M:      Jean Delvare <jdelvare@suse.com>
8192 L:      linux-hwmon@vger.kernel.org
8193 S:      Maintained
8194 F:      Documentation/hwmon/lm78
8195 F:      drivers/hwmon/lm78.c
8196
8197 LM83 HARDWARE MONITOR DRIVER
8198 M:      Jean Delvare <jdelvare@suse.com>
8199 L:      linux-hwmon@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/hwmon/lm83
8202 F:      drivers/hwmon/lm83.c
8203
8204 LM90 HARDWARE MONITOR DRIVER
8205 M:      Jean Delvare <jdelvare@suse.com>
8206 L:      linux-hwmon@vger.kernel.org
8207 S:      Maintained
8208 F:      Documentation/hwmon/lm90
8209 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
8210 F:      drivers/hwmon/lm90.c
8211 F:      include/dt-bindings/thermal/lm90.h
8212
8213 LM95234 HARDWARE MONITOR DRIVER
8214 M:      Guenter Roeck <linux@roeck-us.net>
8215 L:      linux-hwmon@vger.kernel.org
8216 S:      Maintained
8217 F:      Documentation/hwmon/lm95234
8218 F:      drivers/hwmon/lm95234.c
8219
8220 LME2510 MEDIA DRIVER
8221 M:      Malcolm Priestley <tvboxspy@gmail.com>
8222 L:      linux-media@vger.kernel.org
8223 W:      https://linuxtv.org
8224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8225 S:      Maintained
8226 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
8227
8228 LOADPIN SECURITY MODULE
8229 M:      Kees Cook <keescook@chromium.org>
8230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8231 S:      Supported
8232 F:      security/loadpin/
8233 F:      Documentation/admin-guide/LSM/LoadPin.rst
8234
8235 LOCKING PRIMITIVES
8236 M:      Peter Zijlstra <peterz@infradead.org>
8237 M:      Ingo Molnar <mingo@redhat.com>
8238 L:      linux-kernel@vger.kernel.org
8239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8240 S:      Maintained
8241 F:      Documentation/locking/
8242 F:      include/linux/lockdep.h
8243 F:      include/linux/spinlock*.h
8244 F:      arch/*/include/asm/spinlock*.h
8245 F:      include/linux/rwlock*.h
8246 F:      include/linux/mutex*.h
8247 F:      arch/*/include/asm/mutex*.h
8248 F:      include/linux/rwsem*.h
8249 F:      arch/*/include/asm/rwsem.h
8250 F:      include/linux/seqlock.h
8251 F:      lib/locking*.[ch]
8252 F:      kernel/locking/
8253 X:      kernel/locking/locktorture.c
8254
8255 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8256 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
8257 L:      linux-ntfs-dev@lists.sourceforge.net
8258 W:      http://www.linux-ntfs.org/content/view/19/37/
8259 S:      Maintained
8260 F:      Documentation/ldm.txt
8261 F:      block/partitions/ldm.*
8262
8263 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8264 M:      Sathya Prakash <sathya.prakash@broadcom.com>
8265 M:      Chaitra P B <chaitra.basappa@broadcom.com>
8266 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8267 L:      MPT-FusionLinux.pdl@broadcom.com
8268 L:      linux-scsi@vger.kernel.org
8269 W:      http://www.avagotech.com/support/
8270 S:      Supported
8271 F:      drivers/message/fusion/
8272 F:      drivers/scsi/mpt2sas/
8273 F:      drivers/scsi/mpt3sas/
8274
8275 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8276 M:      Matthew Wilcox <matthew@wil.cx>
8277 L:      linux-scsi@vger.kernel.org
8278 S:      Maintained
8279 F:      drivers/scsi/sym53c8xx_2/
8280
8281 LTC4261 HARDWARE MONITOR DRIVER
8282 M:      Guenter Roeck <linux@roeck-us.net>
8283 L:      linux-hwmon@vger.kernel.org
8284 S:      Maintained
8285 F:      Documentation/hwmon/ltc4261
8286 F:      drivers/hwmon/ltc4261.c
8287
8288 LTC4306 I2C MULTIPLEXER DRIVER
8289 M:      Michael Hennerich <michael.hennerich@analog.com>
8290 W:      http://ez.analog.com/community/linux-device-drivers
8291 L:      linux-i2c@vger.kernel.org
8292 S:      Supported
8293 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
8294 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8295
8296 LTP (Linux Test Project)
8297 M:      Mike Frysinger <vapier@gentoo.org>
8298 M:      Cyril Hrubis <chrubis@suse.cz>
8299 M:      Wanlong Gao <wanlong.gao@gmail.com>
8300 M:      Jan Stancek <jstancek@redhat.com>
8301 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8302 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
8303 L:      ltp@lists.linux.it (subscribers-only)
8304 W:      http://linux-test-project.github.io/
8305 T:      git git://github.com/linux-test-project/ltp.git
8306 S:      Maintained
8307
8308 M32R ARCHITECTURE
8309 W:      http://www.linux-m32r.org/
8310 S:      Orphan
8311 F:      arch/m32r/
8312
8313 M68K ARCHITECTURE
8314 M:      Geert Uytterhoeven <geert@linux-m68k.org>
8315 L:      linux-m68k@lists.linux-m68k.org
8316 W:      http://www.linux-m68k.org/
8317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8318 S:      Maintained
8319 F:      arch/m68k/
8320 F:      drivers/zorro/
8321
8322 M68K ON APPLE MACINTOSH
8323 M:      Joshua Thompson <funaho@jurai.org>
8324 W:      http://www.mac.linux-m68k.org/
8325 L:      linux-m68k@lists.linux-m68k.org
8326 S:      Maintained
8327 F:      arch/m68k/mac/
8328
8329 M68K ON HP9000/300
8330 M:      Philip Blundell <philb@gnu.org>
8331 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
8332 S:      Maintained
8333 F:      arch/m68k/hp300/
8334
8335 M88DS3103 MEDIA DRIVER
8336 M:      Antti Palosaari <crope@iki.fi>
8337 L:      linux-media@vger.kernel.org
8338 W:      https://linuxtv.org
8339 W:      http://palosaari.fi/linux/
8340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8341 T:      git git://linuxtv.org/anttip/media_tree.git
8342 S:      Maintained
8343 F:      drivers/media/dvb-frontends/m88ds3103*
8344
8345 M88RS2000 MEDIA DRIVER
8346 M:      Malcolm Priestley <tvboxspy@gmail.com>
8347 L:      linux-media@vger.kernel.org
8348 W:      https://linuxtv.org
8349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8350 S:      Maintained
8351 F:      drivers/media/dvb-frontends/m88rs2000*
8352
8353 MA901 MASTERKIT USB FM RADIO DRIVER
8354 M:      Alexey Klimov <klimov.linux@gmail.com>
8355 L:      linux-media@vger.kernel.org
8356 T:      git git://linuxtv.org/media_tree.git
8357 S:      Maintained
8358 F:      drivers/media/radio/radio-ma901.c
8359
8360 MAC80211
8361 M:      Johannes Berg <johannes@sipsolutions.net>
8362 L:      linux-wireless@vger.kernel.org
8363 W:      http://wireless.kernel.org/
8364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8366 S:      Maintained
8367 F:      Documentation/networking/mac80211-injection.txt
8368 F:      include/net/mac80211.h
8369 F:      net/mac80211/
8370 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8371 F:      Documentation/networking/mac80211_hwsim/README
8372
8373 MAILBOX API
8374 M:      Jassi Brar <jassisinghbrar@gmail.com>
8375 L:      linux-kernel@vger.kernel.org
8376 S:      Maintained
8377 F:      drivers/mailbox/
8378 F:      include/linux/mailbox_client.h
8379 F:      include/linux/mailbox_controller.h
8380
8381 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8382 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8383 W:      http://www.kernel.org/doc/man-pages
8384 L:      linux-man@vger.kernel.org
8385 S:      Maintained
8386
8387 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8388 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
8389 L:      linux-mips@linux-mips.org
8390 S:      Maintained
8391 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
8392
8393 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8394 M:      Andrew Lunn <andrew@lunn.ch>
8395 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8396 L:      netdev@vger.kernel.org
8397 S:      Maintained
8398 F:      drivers/net/dsa/mv88e6xxx/
8399 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
8400
8401 MARVELL ARMADA DRM SUPPORT
8402 M:      Russell King <linux@armlinux.org.uk>
8403 S:      Maintained
8404 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8405 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8406 F:      drivers/gpu/drm/armada/
8407 F:      include/uapi/drm/armada_drm.h
8408 F:      Documentation/devicetree/bindings/display/armada/
8409
8410 MARVELL CRYPTO DRIVER
8411 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8412 M:      Arnaud Ebalard <arno@natisbad.org>
8413 F:      drivers/crypto/marvell/
8414 S:      Maintained
8415 L:      linux-crypto@vger.kernel.org
8416
8417 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8418 M:      Mirko Lindner <mlindner@marvell.com>
8419 M:      Stephen Hemminger <stephen@networkplumber.org>
8420 L:      netdev@vger.kernel.org
8421 S:      Maintained
8422 F:      drivers/net/ethernet/marvell/sk*
8423
8424 MARVELL LIBERTAS WIRELESS DRIVER
8425 L:      libertas-dev@lists.infradead.org
8426 S:      Orphan
8427 F:      drivers/net/wireless/marvell/libertas/
8428
8429 MARVELL MACCHIATOBIN SUPPORT
8430 M:      Russell King <rmk@armlinux.org.uk>
8431 L:      linux-arm-kernel@lists.infradead.org
8432 S:      Maintained
8433 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8434
8435 MARVELL MV643XX ETHERNET DRIVER
8436 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8437 L:      netdev@vger.kernel.org
8438 S:      Maintained
8439 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
8440 F:      include/linux/mv643xx.h
8441
8442 MARVELL MV88X3310 PHY DRIVER
8443 M:      Russell King <rmk@armlinux.org.uk>
8444 L:      netdev@vger.kernel.org
8445 S:      Maintained
8446 F:      drivers/net/phy/marvell10g.c
8447
8448 MARVELL MVNETA ETHERNET DRIVER
8449 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8450 L:      netdev@vger.kernel.org
8451 S:      Maintained
8452 F:      drivers/net/ethernet/marvell/mvneta.*
8453
8454 MARVELL MWIFIEX WIRELESS DRIVER
8455 M:      Amitkumar Karwar <amitkarwar@gmail.com>
8456 M:      Nishant Sarmukadam <nishants@marvell.com>
8457 M:      Ganapathi Bhat <gbhat@marvell.com>
8458 M:      Xinming Hu <huxm@marvell.com>
8459 L:      linux-wireless@vger.kernel.org
8460 S:      Maintained
8461 F:      drivers/net/wireless/marvell/mwifiex/
8462
8463 MARVELL MWL8K WIRELESS DRIVER
8464 M:      Lennert Buytenhek <buytenh@wantstofly.org>
8465 L:      linux-wireless@vger.kernel.org
8466 S:      Odd Fixes
8467 F:      drivers/net/wireless/marvell/mwl8k.c
8468
8469 MARVELL NAND CONTROLLER DRIVER
8470 M:      Miquel Raynal <miquel.raynal@free-electrons.com>
8471 L:      linux-mtd@lists.infradead.org
8472 S:      Maintained
8473 F:      drivers/mtd/nand/marvell_nand.c
8474 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
8475
8476 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8477 M:      Nicolas Pitre <nico@fluxnic.net>
8478 S:      Odd Fixes
8479 F:      drivers/mmc/host/mvsdio.*
8480
8481 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8482 M:      Hu Ziji <huziji@marvell.com>
8483 L:      linux-mmc@vger.kernel.org
8484 S:      Supported
8485 F:      drivers/mmc/host/sdhci-xenon*
8486 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8487
8488 MATROX FRAMEBUFFER DRIVER
8489 L:      linux-fbdev@vger.kernel.org
8490 S:      Orphan
8491 F:      drivers/video/fbdev/matrox/matroxfb_*
8492 F:      include/uapi/linux/matroxfb.h
8493
8494 MAX16065 HARDWARE MONITOR DRIVER
8495 M:      Guenter Roeck <linux@roeck-us.net>
8496 L:      linux-hwmon@vger.kernel.org
8497 S:      Maintained
8498 F:      Documentation/hwmon/max16065
8499 F:      drivers/hwmon/max16065.c
8500
8501 MAX20751 HARDWARE MONITOR DRIVER
8502 M:      Guenter Roeck <linux@roeck-us.net>
8503 L:      linux-hwmon@vger.kernel.org
8504 S:      Maintained
8505 F:      Documentation/hwmon/max20751
8506 F:      drivers/hwmon/max20751.c
8507
8508 MAX2175 SDR TUNER DRIVER
8509 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8510 L:      linux-media@vger.kernel.org
8511 T:      git git://linuxtv.org/media_tree.git
8512 S:      Maintained
8513 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
8514 F:      Documentation/media/v4l-drivers/max2175.rst
8515 F:      drivers/media/i2c/max2175*
8516 F:      include/uapi/linux/max2175.h
8517
8518 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8519 L:      linux-hwmon@vger.kernel.org
8520 S:      Orphan
8521 F:      Documentation/hwmon/max6650
8522 F:      drivers/hwmon/max6650.c
8523
8524 MAX6697 HARDWARE MONITOR DRIVER
8525 M:      Guenter Roeck <linux@roeck-us.net>
8526 L:      linux-hwmon@vger.kernel.org
8527 S:      Maintained
8528 F:      Documentation/hwmon/max6697
8529 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8530 F:      drivers/hwmon/max6697.c
8531 F:      include/linux/platform_data/max6697.h
8532
8533 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8534 M:      Peter Rosin <peda@axentia.se>
8535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8536 S:      Maintained
8537 F:      Documentation/devicetree/bindings/sound/max9860.txt
8538 F:      sound/soc/codecs/max9860.*
8539
8540 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8541 M:      Javier Martinez Canillas <javier@dowhile0.org>
8542 L:      linux-kernel@vger.kernel.org
8543 S:      Supported
8544 F:      drivers/regulator/max77802-regulator.c
8545 F:      Documentation/devicetree/bindings/*/*max77802.txt
8546 F:      include/dt-bindings/*/*max77802.h
8547
8548 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8549 M:      Krzysztof Kozlowski <krzk@kernel.org>
8550 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8551 L:      linux-pm@vger.kernel.org
8552 S:      Supported
8553 F:      drivers/power/supply/max14577_charger.c
8554 F:      drivers/power/supply/max77693_charger.c
8555
8556 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8557 M:      Chanwoo Choi <cw00.choi@samsung.com>
8558 M:      Krzysztof Kozlowski <krzk@kernel.org>
8559 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8560 L:      linux-kernel@vger.kernel.org
8561 S:      Supported
8562 F:      drivers/*/max14577*.c
8563 F:      drivers/*/max77686*.c
8564 F:      drivers/*/max77693*.c
8565 F:      drivers/extcon/extcon-max14577.c
8566 F:      drivers/extcon/extcon-max77693.c
8567 F:      drivers/rtc/rtc-max77686.c
8568 F:      drivers/clk/clk-max77686.c
8569 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8570 F:      Documentation/devicetree/bindings/*/max77686.txt
8571 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8572 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8573 F:      include/linux/mfd/max14577*.h
8574 F:      include/linux/mfd/max77686*.h
8575 F:      include/linux/mfd/max77693*.h
8576
8577 MAXIRADIO FM RADIO RECEIVER DRIVER
8578 M:      Hans Verkuil <hverkuil@xs4all.nl>
8579 L:      linux-media@vger.kernel.org
8580 T:      git git://linuxtv.org/media_tree.git
8581 W:      https://linuxtv.org
8582 S:      Maintained
8583 F:      drivers/media/radio/radio-maxiradio*
8584
8585 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8586 M:      Peter Rosin <peda@axentia.se>
8587 L:      linux-iio@vger.kernel.org
8588 S:      Maintained
8589 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8590 F:      drivers/iio/potentiometer/mcp4531.c
8591
8592 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8593 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8594 L:      linux-iio@vger.kernel.org
8595 S:      Maintained
8596 F:      drivers/iio/dac/cio-dac.c
8597
8598 MEDIA DRIVERS FOR ASCOT2E
8599 M:      Sergey Kozlov <serjk@netup.ru>
8600 M:      Abylay Ospan <aospan@netup.ru>
8601 L:      linux-media@vger.kernel.org
8602 W:      https://linuxtv.org
8603 W:      http://netup.tv/
8604 T:      git git://linuxtv.org/media_tree.git
8605 S:      Supported
8606 F:      drivers/media/dvb-frontends/ascot2e*
8607
8608 MEDIA DRIVERS FOR CXD2841ER
8609 M:      Sergey Kozlov <serjk@netup.ru>
8610 M:      Abylay Ospan <aospan@netup.ru>
8611 L:      linux-media@vger.kernel.org
8612 W:      https://linuxtv.org
8613 W:      http://netup.tv/
8614 T:      git git://linuxtv.org/media_tree.git
8615 S:      Supported
8616 F:      drivers/media/dvb-frontends/cxd2841er*
8617
8618 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8619 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8620 L:      linux-media@vger.kernel.org
8621 W:      https://linuxtv.org
8622 T:      git git://linuxtv.org/media_tree.git
8623 S:      Maintained
8624 F:      drivers/media/pci/ddbridge/*
8625
8626 MEDIA DRIVERS FOR FREESCALE IMX
8627 M:      Steve Longerbeam <slongerbeam@gmail.com>
8628 M:      Philipp Zabel <p.zabel@pengutronix.de>
8629 L:      linux-media@vger.kernel.org
8630 T:      git git://linuxtv.org/media_tree.git
8631 S:      Maintained
8632 F:      Documentation/devicetree/bindings/media/imx.txt
8633 F:      Documentation/media/v4l-drivers/imx.rst
8634 F:      drivers/staging/media/imx/
8635 F:      include/linux/imx-media.h
8636 F:      include/media/imx.h
8637
8638 MEDIA DRIVERS FOR HELENE
8639 M:      Abylay Ospan <aospan@netup.ru>
8640 L:      linux-media@vger.kernel.org
8641 W:      https://linuxtv.org
8642 W:      http://netup.tv/
8643 T:      git git://linuxtv.org/media_tree.git
8644 S:      Supported
8645 F:      drivers/media/dvb-frontends/helene*
8646
8647 MEDIA DRIVERS FOR HORUS3A
8648 M:      Sergey Kozlov <serjk@netup.ru>
8649 M:      Abylay Ospan <aospan@netup.ru>
8650 L:      linux-media@vger.kernel.org
8651 W:      https://linuxtv.org
8652 W:      http://netup.tv/
8653 T:      git git://linuxtv.org/media_tree.git
8654 S:      Supported
8655 F:      drivers/media/dvb-frontends/horus3a*
8656
8657 MEDIA DRIVERS FOR LNBH25
8658 M:      Sergey Kozlov <serjk@netup.ru>
8659 M:      Abylay Ospan <aospan@netup.ru>
8660 L:      linux-media@vger.kernel.org
8661 W:      https://linuxtv.org
8662 W:      http://netup.tv/
8663 T:      git git://linuxtv.org/media_tree.git
8664 S:      Supported
8665 F:      drivers/media/dvb-frontends/lnbh25*
8666
8667 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8668 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8669 L:      linux-media@vger.kernel.org
8670 W:      https://linuxtv.org
8671 T:      git git://linuxtv.org/media_tree.git
8672 S:      Maintained
8673 F:      drivers/media/dvb-frontends/mxl5xx*
8674
8675 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8676 M:      Sergey Kozlov <serjk@netup.ru>
8677 M:      Abylay Ospan <aospan@netup.ru>
8678 L:      linux-media@vger.kernel.org
8679 W:      https://linuxtv.org
8680 W:      http://netup.tv/
8681 T:      git git://linuxtv.org/media_tree.git
8682 S:      Supported
8683 F:      drivers/media/pci/netup_unidvb/*
8684
8685 MEDIA DRIVERS FOR RENESAS - DRIF
8686 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8687 L:      linux-media@vger.kernel.org
8688 L:      linux-renesas-soc@vger.kernel.org
8689 T:      git git://linuxtv.org/media_tree.git
8690 S:      Supported
8691 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
8692 F:      drivers/media/platform/rcar_drif.c
8693
8694 MEDIA DRIVERS FOR RENESAS - FCP
8695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8696 L:      linux-media@vger.kernel.org
8697 L:      linux-renesas-soc@vger.kernel.org
8698 T:      git git://linuxtv.org/media_tree.git
8699 S:      Supported
8700 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8701 F:      drivers/media/platform/rcar-fcp.c
8702 F:      include/media/rcar-fcp.h
8703
8704 MEDIA DRIVERS FOR RENESAS - FDP1
8705 M:      Kieran Bingham <kieran@bingham.xyz>
8706 L:      linux-media@vger.kernel.org
8707 L:      linux-renesas-soc@vger.kernel.org
8708 T:      git git://linuxtv.org/media_tree.git
8709 S:      Supported
8710 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8711 F:      drivers/media/platform/rcar_fdp1.c
8712
8713 MEDIA DRIVERS FOR RENESAS - VIN
8714 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
8715 L:      linux-media@vger.kernel.org
8716 L:      linux-renesas-soc@vger.kernel.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 S:      Supported
8719 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8720 F:      drivers/media/platform/rcar-vin/
8721
8722 MEDIA DRIVERS FOR RENESAS - VSP1
8723 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8724 L:      linux-media@vger.kernel.org
8725 L:      linux-renesas-soc@vger.kernel.org
8726 T:      git git://linuxtv.org/media_tree.git
8727 S:      Supported
8728 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8729 F:      drivers/media/platform/vsp1/
8730
8731 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8732 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8733 L:      linux-media@vger.kernel.org
8734 W:      https://linuxtv.org
8735 T:      git git://linuxtv.org/media_tree.git
8736 S:      Maintained
8737 F:      drivers/media/dvb-frontends/stv0910*
8738
8739 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8740 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8741 L:      linux-media@vger.kernel.org
8742 W:      https://linuxtv.org
8743 T:      git git://linuxtv.org/media_tree.git
8744 S:      Maintained
8745 F:      drivers/media/dvb-frontends/stv6111*
8746
8747 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
8748 M:      Dmitry Osipenko <digetx@gmail.com>
8749 L:      linux-media@vger.kernel.org
8750 L:      linux-tegra@vger.kernel.org
8751 T:      git git://linuxtv.org/media_tree.git
8752 S:      Maintained
8753 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
8754 F:      drivers/staging/media/tegra-vde/
8755
8756 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8757 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
8758 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
8759 P:      LinuxTV.org Project
8760 L:      linux-media@vger.kernel.org
8761 W:      https://linuxtv.org
8762 Q:      http://patchwork.kernel.org/project/linux-media/list/
8763 T:      git git://linuxtv.org/media_tree.git
8764 S:      Maintained
8765 F:      Documentation/devicetree/bindings/media/
8766 F:      Documentation/media/
8767 F:      drivers/media/
8768 F:      drivers/staging/media/
8769 F:      include/linux/platform_data/media/
8770 F:      include/media/
8771 F:      include/uapi/linux/dvb/
8772 F:      include/uapi/linux/videodev2.h
8773 F:      include/uapi/linux/media.h
8774 F:      include/uapi/linux/v4l2-*
8775 F:      include/uapi/linux/meye.h
8776 F:      include/uapi/linux/ivtv*
8777 F:      include/uapi/linux/uvcvideo.h
8778
8779 MEDIATEK CIR DRIVER
8780 M:      Sean Wang <sean.wang@mediatek.com>
8781 S:      Maintained
8782 F:      drivers/media/rc/mtk-cir.c
8783
8784 MEDIATEK PMIC LED DRIVER
8785 M:      Sean Wang <sean.wang@mediatek.com>
8786 S:      Maintained
8787 F:      drivers/leds/leds-mt6323.c
8788 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
8789
8790 MEDIATEK ETHERNET DRIVER
8791 M:      Felix Fietkau <nbd@openwrt.org>
8792 M:      John Crispin <john@phrozen.org>
8793 M:      Sean Wang <sean.wang@mediatek.com>
8794 M:      Nelson Chang <nelson.chang@mediatek.com>
8795 L:      netdev@vger.kernel.org
8796 S:      Maintained
8797 F:      drivers/net/ethernet/mediatek/
8798
8799 MEDIATEK SWITCH DRIVER
8800 M:      Sean Wang <sean.wang@mediatek.com>
8801 L:      netdev@vger.kernel.org
8802 S:      Maintained
8803 F:      drivers/net/dsa/mt7530.*
8804 F:      net/dsa/tag_mtk.c
8805
8806 MEDIATEK JPEG DRIVER
8807 M:      Rick Chang <rick.chang@mediatek.com>
8808 M:      Bin Liu <bin.liu@mediatek.com>
8809 S:      Supported
8810 F:      drivers/media/platform/mtk-jpeg/
8811 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8812
8813 MEDIATEK MDP DRIVER
8814 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8815 M:      Houlong Wei <houlong.wei@mediatek.com>
8816 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8817 S:      Supported
8818 F:      drivers/media/platform/mtk-mdp/
8819 F:      drivers/media/platform/mtk-vpu/
8820 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8821
8822 MEDIATEK MEDIA DRIVER
8823 M:      Tiffany Lin <tiffany.lin@mediatek.com>
8824 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8825 S:      Supported
8826 F:      drivers/media/platform/mtk-vcodec/
8827 F:      drivers/media/platform/mtk-vpu/
8828 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8829 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8830
8831 MEDIATEK MT7601U WIRELESS LAN DRIVER
8832 M:      Jakub Kicinski <kubakici@wp.pl>
8833 L:      linux-wireless@vger.kernel.org
8834 S:      Maintained
8835 F:      drivers/net/wireless/mediatek/mt7601u/
8836
8837 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8838 M:      Sean Wang <sean.wang@mediatek.com>
8839 S:      Maintained
8840 F:      drivers/char/hw_random/mtk-rng.c
8841
8842 MEDIATEK USB3 DRD IP DRIVER
8843 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
8844 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
8845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8846 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8847 S:      Maintained
8848 F:      drivers/usb/mtu3/
8849
8850 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8851 M:      Peter Senna Tschudin <peter.senna@collabora.com>
8852 M:      Martin Donnelly <martin.donnelly@ge.com>
8853 M:      Martyn Welch <martyn.welch@collabora.co.uk>
8854 S:      Maintained
8855 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8856 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8857
8858 MEGARAID SCSI/SAS DRIVERS
8859 M:      Kashyap Desai <kashyap.desai@broadcom.com>
8860 M:      Sumit Saxena <sumit.saxena@broadcom.com>
8861 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8862 L:      megaraidlinux.pdl@broadcom.com
8863 L:      linux-scsi@vger.kernel.org
8864 W:      http://www.avagotech.com/support/
8865 S:      Maintained
8866 F:      Documentation/scsi/megaraid.txt
8867 F:      drivers/scsi/megaraid.*
8868 F:      drivers/scsi/megaraid/
8869
8870 MELEXIS MLX90614 DRIVER
8871 M:      Crt Mori <cmo@melexis.com>
8872 L:      linux-iio@vger.kernel.org
8873 W:      http://www.melexis.com
8874 S:      Supported
8875 F:      drivers/iio/temperature/mlx90614.c
8876
8877 MELFAS MIP4 TOUCHSCREEN DRIVER
8878 M:      Sangwon Jee <jeesw@melfas.com>
8879 W:      http://www.melfas.com
8880 S:      Supported
8881 F:      drivers/input/touchscreen/melfas_mip4.c
8882 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8883
8884 MELLANOX ETHERNET DRIVER (mlx4_en)
8885 M:      Tariq Toukan <tariqt@mellanox.com>
8886 L:      netdev@vger.kernel.org
8887 S:      Supported
8888 W:      http://www.mellanox.com
8889 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8890 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8891
8892 MELLANOX ETHERNET DRIVER (mlx5e)
8893 M:      Saeed Mahameed <saeedm@mellanox.com>
8894 L:      netdev@vger.kernel.org
8895 S:      Supported
8896 W:      http://www.mellanox.com
8897 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8898 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8899
8900 MELLANOX ETHERNET INNOVA DRIVER
8901 M:      Ilan Tayari <ilant@mellanox.com>
8902 R:      Boris Pismenny <borisp@mellanox.com>
8903 L:      netdev@vger.kernel.org
8904 S:      Supported
8905 W:      http://www.mellanox.com
8906 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8907 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8908 F:      include/linux/mlx5/mlx5_ifc_fpga.h
8909
8910 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8911 M:      Ilan Tayari <ilant@mellanox.com>
8912 R:      Boris Pismenny <borisp@mellanox.com>
8913 L:      netdev@vger.kernel.org
8914 S:      Supported
8915 W:      http://www.mellanox.com
8916 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8917 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8918 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8919
8920 MELLANOX ETHERNET SWITCH DRIVERS
8921 M:      Jiri Pirko <jiri@mellanox.com>
8922 M:      Ido Schimmel <idosch@mellanox.com>
8923 L:      netdev@vger.kernel.org
8924 S:      Supported
8925 W:      http://www.mellanox.com
8926 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8927 F:      drivers/net/ethernet/mellanox/mlxsw/
8928
8929 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8930 M:      mlxsw@mellanox.com
8931 L:      netdev@vger.kernel.org
8932 S:      Supported
8933 W:      http://www.mellanox.com
8934 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8935 F:      drivers/net/ethernet/mellanox/mlxfw/
8936
8937 MELLANOX HARDWARE PLATFORM SUPPORT
8938 M:      Andy Shevchenko <andy@infradead.org>
8939 M:      Darren Hart <dvhart@infradead.org>
8940 M:      Vadim Pasternak <vadimp@mellanox.com>
8941 L:      platform-driver-x86@vger.kernel.org
8942 S:      Supported
8943 F:      drivers/platform/mellanox/
8944
8945 MELLANOX MLX4 core VPI driver
8946 M:      Tariq Toukan <tariqt@mellanox.com>
8947 L:      netdev@vger.kernel.org
8948 L:      linux-rdma@vger.kernel.org
8949 W:      http://www.mellanox.com
8950 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8951 S:      Supported
8952 F:      drivers/net/ethernet/mellanox/mlx4/
8953 F:      include/linux/mlx4/
8954
8955 MELLANOX MLX4 IB driver
8956 M:      Yishai Hadas <yishaih@mellanox.com>
8957 L:      linux-rdma@vger.kernel.org
8958 W:      http://www.mellanox.com
8959 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8960 S:      Supported
8961 F:      drivers/infiniband/hw/mlx4/
8962 F:      include/linux/mlx4/
8963 F:      include/uapi/rdma/mlx4-abi.h
8964
8965 MELLANOX MLX5 core VPI driver
8966 M:      Saeed Mahameed <saeedm@mellanox.com>
8967 M:      Matan Barak <matanb@mellanox.com>
8968 M:      Leon Romanovsky <leonro@mellanox.com>
8969 L:      netdev@vger.kernel.org
8970 L:      linux-rdma@vger.kernel.org
8971 W:      http://www.mellanox.com
8972 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8973 S:      Supported
8974 F:      drivers/net/ethernet/mellanox/mlx5/core/
8975 F:      include/linux/mlx5/
8976
8977 MELLANOX MLX5 IB driver
8978 M:      Matan Barak <matanb@mellanox.com>
8979 M:      Leon Romanovsky <leonro@mellanox.com>
8980 L:      linux-rdma@vger.kernel.org
8981 W:      http://www.mellanox.com
8982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8983 S:      Supported
8984 F:      drivers/infiniband/hw/mlx5/
8985 F:      include/linux/mlx5/
8986 F:      include/uapi/rdma/mlx5-abi.h
8987
8988 MELLANOX MLXCPLD I2C AND MUX DRIVER
8989 M:      Vadim Pasternak <vadimp@mellanox.com>
8990 M:      Michael Shych <michaelsh@mellanox.com>
8991 L:      linux-i2c@vger.kernel.org
8992 S:      Supported
8993 F:      drivers/i2c/busses/i2c-mlxcpld.c
8994 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8995 F:      Documentation/i2c/busses/i2c-mlxcpld
8996
8997 MELLANOX MLXCPLD LED DRIVER
8998 M:      Vadim Pasternak <vadimp@mellanox.com>
8999 L:      linux-leds@vger.kernel.org
9000 S:      Supported
9001 F:      drivers/leds/leds-mlxcpld.c
9002 F:      Documentation/leds/leds-mlxcpld.txt
9003
9004 MELLANOX PLATFORM DRIVER
9005 M:      Vadim Pasternak <vadimp@mellanox.com>
9006 L:      platform-driver-x86@vger.kernel.org
9007 S:      Supported
9008 F:      drivers/platform/x86/mlx-platform.c
9009
9010 MEMBARRIER SUPPORT
9011 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9012 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9013 L:      linux-kernel@vger.kernel.org
9014 S:      Supported
9015 F:      kernel/sched/membarrier.c
9016 F:      include/uapi/linux/membarrier.h
9017 F:      arch/powerpc/include/asm/membarrier.h
9018
9019 MEMORY MANAGEMENT
9020 L:      linux-mm@kvack.org
9021 W:      http://www.linux-mm.org
9022 S:      Maintained
9023 F:      include/linux/mm.h
9024 F:      include/linux/gfp.h
9025 F:      include/linux/mmzone.h
9026 F:      include/linux/memory_hotplug.h
9027 F:      include/linux/vmalloc.h
9028 F:      mm/
9029
9030 MEMORY TECHNOLOGY DEVICES (MTD)
9031 M:      David Woodhouse <dwmw2@infradead.org>
9032 M:      Brian Norris <computersforpeace@gmail.com>
9033 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9034 M:      Marek Vasut <marek.vasut@gmail.com>
9035 M:      Richard Weinberger <richard@nod.at>
9036 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
9037 L:      linux-mtd@lists.infradead.org
9038 W:      http://www.linux-mtd.infradead.org/
9039 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9040 T:      git git://git.infradead.org/linux-mtd.git master
9041 T:      git git://git.infradead.org/linux-mtd.git mtd/next
9042 S:      Maintained
9043 F:      Documentation/devicetree/bindings/mtd/
9044 F:      drivers/mtd/
9045 F:      include/linux/mtd/
9046 F:      include/uapi/mtd/
9047
9048 MEN A21 WATCHDOG DRIVER
9049 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9050 L:      linux-watchdog@vger.kernel.org
9051 S:      Maintained
9052 F:      drivers/watchdog/mena21_wdt.c
9053
9054 MEN CHAMELEON BUS (mcb)
9055 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9056 S:      Maintained
9057 F:      drivers/mcb/
9058 F:      include/linux/mcb.h
9059 F:      Documentation/men-chameleon-bus.txt
9060
9061 MEN F21BMC (Board Management Controller)
9062 M:      Andreas Werner <andreas.werner@men.de>
9063 S:      Supported
9064 F:      drivers/mfd/menf21bmc.c
9065 F:      drivers/watchdog/menf21bmc_wdt.c
9066 F:      drivers/leds/leds-menf21bmc.c
9067 F:      drivers/hwmon/menf21bmc_hwmon.c
9068 F:      Documentation/hwmon/menf21bmc
9069
9070 MESON AO CEC DRIVER FOR AMLOGIC SOCS
9071 M:      Neil Armstrong <narmstrong@baylibre.com>
9072 L:      linux-media@lists.freedesktop.org
9073 L:      linux-amlogic@lists.infradead.org
9074 W:      http://linux-meson.com/
9075 S:      Supported
9076 F:      drivers/media/platform/meson/ao-cec.c
9077 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
9078 T:      git git://linuxtv.org/media_tree.git
9079
9080 METAG ARCHITECTURE
9081 M:      James Hogan <jhogan@kernel.org>
9082 L:      linux-metag@vger.kernel.org
9083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
9084 S:      Odd Fixes
9085 F:      arch/metag/
9086 F:      Documentation/metag/
9087 F:      Documentation/devicetree/bindings/metag/
9088 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
9089 F:      drivers/clocksource/metag_generic.c
9090 F:      drivers/irqchip/irq-metag.c
9091 F:      drivers/irqchip/irq-metag-ext.c
9092 F:      drivers/tty/metag_da.c
9093
9094 MICROBLAZE ARCHITECTURE
9095 M:      Michal Simek <monstr@monstr.eu>
9096 W:      http://www.monstr.eu/fdt/
9097 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
9098 S:      Supported
9099 F:      arch/microblaze/
9100
9101 MICROCHIP / ATMEL AT91 SERIAL DRIVER
9102 M:      Richard Genoud <richard.genoud@gmail.com>
9103 S:      Maintained
9104 F:      drivers/tty/serial/atmel_serial.c
9105 F:      drivers/tty/serial/atmel_serial.h
9106
9107 MICROCHIP / ATMEL DMA DRIVER
9108 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9110 L:      dmaengine@vger.kernel.org
9111 S:      Supported
9112 F:      drivers/dma/at_hdmac.c
9113 F:      drivers/dma/at_hdmac_regs.h
9114 F:      include/linux/platform_data/dma-atmel.h
9115
9116 MICROCHIP / ATMEL ECC DRIVER
9117 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9118 L:      linux-crypto@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/crypto/atmel-ecc.*
9121
9122 MICROCHIP / ATMEL ISC DRIVER
9123 M:      Songjun Wu <songjun.wu@microchip.com>
9124 L:      linux-media@vger.kernel.org
9125 S:      Supported
9126 F:      drivers/media/platform/atmel/atmel-isc.c
9127 F:      drivers/media/platform/atmel/atmel-isc-regs.h
9128 F:      devicetree/bindings/media/atmel-isc.txt
9129
9130 MICROCHIP / ATMEL NAND DRIVER
9131 M:      Wenyou Yang <wenyou.yang@microchip.com>
9132 M:      Josh Wu <rainyfeeling@outlook.com>
9133 L:      linux-mtd@lists.infradead.org
9134 S:      Supported
9135 F:      drivers/mtd/nand/atmel/*
9136 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
9137
9138 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9139 M:      Woojung Huh <Woojung.Huh@microchip.com>
9140 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9141 L:      netdev@vger.kernel.org
9142 S:      Maintained
9143 F:      net/dsa/tag_ksz.c
9144 F:      drivers/net/dsa/microchip/*
9145 F:      include/linux/platform_data/microchip-ksz.h
9146 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
9147
9148 MICROCHIP USB251XB DRIVER
9149 M:      Richard Leitner <richard.leitner@skidata.com>
9150 L:      linux-usb@vger.kernel.org
9151 S:      Maintained
9152 F:      drivers/usb/misc/usb251xb.c
9153 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
9154
9155 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9156 M:      Don Brace <don.brace@microsemi.com>
9157 L:      esc.storagedev@microsemi.com
9158 L:      linux-scsi@vger.kernel.org
9159 S:      Supported
9160 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
9161 F:      drivers/scsi/smartpqi/Kconfig
9162 F:      drivers/scsi/smartpqi/Makefile
9163 F:      include/linux/cciss*.h
9164 F:      include/uapi/linux/cciss*.h
9165 F:      Documentation/scsi/smartpqi.txt
9166
9167 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9168 M:      Chen Yu <yu.c.chen@intel.com>
9169 L:      platform-driver-x86@vger.kernel.org
9170 S:      Supported
9171 F:      drivers/platform/x86/surfacepro3_button.c
9172
9173 MICROTEK X6 SCANNER
9174 M:      Oliver Neukum <oliver@neukum.org>
9175 S:      Maintained
9176 F:      drivers/usb/image/microtek.*
9177
9178 MIPS
9179 M:      Ralf Baechle <ralf@linux-mips.org>
9180 M:      James Hogan <jhogan@kernel.org>
9181 L:      linux-mips@linux-mips.org
9182 W:      http://www.linux-mips.org/
9183 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
9184 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9185 S:      Supported
9186 F:      Documentation/devicetree/bindings/mips/
9187 F:      Documentation/mips/
9188 F:      arch/mips/
9189 F:      drivers/platform/mips/
9190
9191 MIPS BOSTON DEVELOPMENT BOARD
9192 M:      Paul Burton <paul.burton@mips.com>
9193 L:      linux-mips@linux-mips.org
9194 S:      Maintained
9195 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
9196 F:      arch/mips/boot/dts/img/boston.dts
9197 F:      arch/mips/configs/generic/board-boston.config
9198 F:      drivers/clk/imgtec/clk-boston.c
9199 F:      include/dt-bindings/clock/boston-clock.h
9200
9201 MIPS GENERIC PLATFORM
9202 M:      Paul Burton <paul.burton@mips.com>
9203 L:      linux-mips@linux-mips.org
9204 S:      Supported
9205 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
9206 F:      arch/mips/generic/
9207 F:      arch/mips/tools/generic-board-config.sh
9208
9209 MIPS/LOONGSON1 ARCHITECTURE
9210 M:      Keguang Zhang <keguang.zhang@gmail.com>
9211 L:      linux-mips@linux-mips.org
9212 S:      Maintained
9213 F:      arch/mips/loongson32/
9214 F:      arch/mips/include/asm/mach-loongson32/
9215 F:      drivers/*/*loongson1*
9216 F:      drivers/*/*/*loongson1*
9217
9218 MIPS/LOONGSON2 ARCHITECTURE
9219 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
9220 L:      linux-mips@linux-mips.org
9221 S:      Maintained
9222 F:      arch/mips/loongson64/*{2e/2f}*
9223 F:      arch/mips/include/asm/mach-loongson64/
9224 F:      drivers/*/*loongson2*
9225 F:      drivers/*/*/*loongson2*
9226
9227 MIPS/LOONGSON3 ARCHITECTURE
9228 M:      Huacai Chen <chenhc@lemote.com>
9229 L:      linux-mips@linux-mips.org
9230 S:      Maintained
9231 F:      arch/mips/loongson64/
9232 F:      arch/mips/include/asm/mach-loongson64/
9233 F:      drivers/platform/mips/cpu_hwmon.c
9234 F:      drivers/*/*loongson3*
9235 F:      drivers/*/*/*loongson3*
9236
9237 MIPS RINT INSTRUCTION EMULATION
9238 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
9239 L:      linux-mips@linux-mips.org
9240 S:      Supported
9241 F:      arch/mips/math-emu/sp_rint.c
9242 F:      arch/mips/math-emu/dp_rint.c
9243
9244 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9245 M:      Hans Verkuil <hverkuil@xs4all.nl>
9246 L:      linux-media@vger.kernel.org
9247 T:      git git://linuxtv.org/media_tree.git
9248 W:      https://linuxtv.org
9249 S:      Odd Fixes
9250 F:      drivers/media/radio/radio-miropcm20*
9251
9252 MMP SUPPORT
9253 M:      Eric Miao <eric.y.miao@gmail.com>
9254 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9256 T:      git git://github.com/hzhuang1/linux.git
9257 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9258 S:      Maintained
9259 F:      arch/arm/boot/dts/mmp*
9260 F:      arch/arm/mach-mmp/
9261
9262 MN88472 MEDIA DRIVER
9263 M:      Antti Palosaari <crope@iki.fi>
9264 L:      linux-media@vger.kernel.org
9265 W:      https://linuxtv.org
9266 W:      http://palosaari.fi/linux/
9267 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9268 S:      Maintained
9269 F:      drivers/media/dvb-frontends/mn88472*
9270
9271 MN88473 MEDIA DRIVER
9272 M:      Antti Palosaari <crope@iki.fi>
9273 L:      linux-media@vger.kernel.org
9274 W:      https://linuxtv.org
9275 W:      http://palosaari.fi/linux/
9276 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9277 S:      Maintained
9278 F:      drivers/media/dvb-frontends/mn88473*
9279
9280 MODULE SUPPORT
9281 M:      Jessica Yu <jeyu@kernel.org>
9282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9283 S:      Maintained
9284 F:      include/linux/module.h
9285 F:      kernel/module.c
9286
9287 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9288 W:      http://popies.net/meye/
9289 S:      Orphan
9290 F:      Documentation/media/v4l-drivers/meye*
9291 F:      drivers/media/pci/meye/
9292 F:      include/uapi/linux/meye.h
9293
9294 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9295 M:      Jiri Slaby <jirislaby@gmail.com>
9296 S:      Maintained
9297 F:      Documentation/serial/moxa-smartio
9298 F:      drivers/tty/mxser.*
9299
9300 MR800 AVERMEDIA USB FM RADIO DRIVER
9301 M:      Alexey Klimov <klimov.linux@gmail.com>
9302 L:      linux-media@vger.kernel.org
9303 T:      git git://linuxtv.org/media_tree.git
9304 S:      Maintained
9305 F:      drivers/media/radio/radio-mr800.c
9306
9307 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9308 M:      Alan Ott <alan@signal11.us>
9309 L:      linux-wpan@vger.kernel.org
9310 S:      Maintained
9311 F:      drivers/net/ieee802154/mrf24j40.c
9312 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9313
9314 MSI LAPTOP SUPPORT
9315 M:      "Lee, Chun-Yi" <jlee@suse.com>
9316 L:      platform-driver-x86@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/platform/x86/msi-laptop.c
9319
9320 MSI WMI SUPPORT
9321 L:      platform-driver-x86@vger.kernel.org
9322 S:      Orphan
9323 F:      drivers/platform/x86/msi-wmi.c
9324
9325 MSI001 MEDIA DRIVER
9326 M:      Antti Palosaari <crope@iki.fi>
9327 L:      linux-media@vger.kernel.org
9328 W:      https://linuxtv.org
9329 W:      http://palosaari.fi/linux/
9330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9331 T:      git git://linuxtv.org/anttip/media_tree.git
9332 S:      Maintained
9333 F:      drivers/media/tuners/msi001*
9334
9335 MSI2500 MEDIA DRIVER
9336 M:      Antti Palosaari <crope@iki.fi>
9337 L:      linux-media@vger.kernel.org
9338 W:      https://linuxtv.org
9339 W:      http://palosaari.fi/linux/
9340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9341 T:      git git://linuxtv.org/anttip/media_tree.git
9342 S:      Maintained
9343 F:      drivers/media/usb/msi2500/
9344
9345 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9346 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9347 L:      linux-mtd@lists.infradead.org
9348 S:      Maintained
9349 F:      drivers/mtd/devices/docg3*
9350
9351 MT9M032 APTINA SENSOR DRIVER
9352 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9353 L:      linux-media@vger.kernel.org
9354 T:      git git://linuxtv.org/media_tree.git
9355 S:      Maintained
9356 F:      drivers/media/i2c/mt9m032.c
9357 F:      include/media/i2c/mt9m032.h
9358
9359 MT9P031 APTINA CAMERA SENSOR
9360 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9361 L:      linux-media@vger.kernel.org
9362 T:      git git://linuxtv.org/media_tree.git
9363 S:      Maintained
9364 F:      drivers/media/i2c/mt9p031.c
9365 F:      include/media/i2c/mt9p031.h
9366
9367 MT9T001 APTINA CAMERA SENSOR
9368 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9369 L:      linux-media@vger.kernel.org
9370 T:      git git://linuxtv.org/media_tree.git
9371 S:      Maintained
9372 F:      drivers/media/i2c/mt9t001.c
9373 F:      include/media/i2c/mt9t001.h
9374
9375 MT9V032 APTINA CAMERA SENSOR
9376 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9377 L:      linux-media@vger.kernel.org
9378 T:      git git://linuxtv.org/media_tree.git
9379 S:      Maintained
9380 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9381 F:      drivers/media/i2c/mt9v032.c
9382 F:      include/media/i2c/mt9v032.h
9383
9384 MULTIFUNCTION DEVICES (MFD)
9385 M:      Lee Jones <lee.jones@linaro.org>
9386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9387 S:      Supported
9388 F:      Documentation/devicetree/bindings/mfd/
9389 F:      drivers/mfd/
9390 F:      include/linux/mfd/
9391 F:      include/dt-bindings/mfd/
9392
9393 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9394 S:      Orphan
9395 F:      drivers/mmc/host/mmc_spi.c
9396 F:      include/linux/spi/mmc_spi.h
9397
9398 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9399 M:      Ulf Hansson <ulf.hansson@linaro.org>
9400 L:      linux-mmc@vger.kernel.org
9401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9402 S:      Maintained
9403 F:      Documentation/devicetree/bindings/mmc/
9404 F:      drivers/mmc/
9405 F:      include/linux/mmc/
9406 F:      include/uapi/linux/mmc/
9407
9408 MULTIPLEXER SUBSYSTEM
9409 M:      Peter Rosin <peda@axentia.se>
9410 S:      Maintained
9411 F:      Documentation/ABI/testing/mux/sysfs-class-mux*
9412 F:      Documentation/devicetree/bindings/mux/
9413 F:      include/linux/dt-bindings/mux/
9414 F:      include/linux/mux/
9415 F:      drivers/mux/
9416
9417 MULTITECH MULTIPORT CARD (ISICOM)
9418 S:      Orphan
9419 F:      drivers/tty/isicom.c
9420 F:      include/linux/isicom.h
9421
9422 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9423 M:      Bin Liu <b-liu@ti.com>
9424 L:      linux-usb@vger.kernel.org
9425 S:      Maintained
9426 F:      drivers/usb/musb/
9427
9428 MXL5007T MEDIA DRIVER
9429 M:      Michael Krufky <mkrufky@linuxtv.org>
9430 L:      linux-media@vger.kernel.org
9431 W:      https://linuxtv.org
9432 W:      http://github.com/mkrufky
9433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9434 T:      git git://linuxtv.org/mkrufky/tuners.git
9435 S:      Maintained
9436 F:      drivers/media/tuners/mxl5007t.*
9437
9438 MXSFB DRM DRIVER
9439 M:      Marek Vasut <marex@denx.de>
9440 S:      Supported
9441 F:      drivers/gpu/drm/mxsfb/
9442 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
9443
9444 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9445 M:      Chris Lee <christopher.lee@cspi.com>
9446 L:      netdev@vger.kernel.org
9447 W:      https://www.cspi.com/ethernet-products/support/downloads/
9448 S:      Supported
9449 F:      drivers/net/ethernet/myricom/myri10ge/
9450
9451 NAND FLASH SUBSYSTEM
9452 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9453 R:      Richard Weinberger <richard@nod.at>
9454 L:      linux-mtd@lists.infradead.org
9455 W:      http://www.linux-mtd.infradead.org/
9456 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9457 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
9458 T:      git git://git.infradead.org/linux-mtd.git nand/next
9459 S:      Maintained
9460 F:      drivers/mtd/nand/
9461 F:      include/linux/mtd/*nand*.h
9462
9463 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9464 M:      Daniel Mack <zonque@gmail.com>
9465 S:      Maintained
9466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9467 W:      http://www.native-instruments.com
9468 F:      sound/usb/caiaq/
9469
9470 NATSEMI ETHERNET DRIVER (DP8381x)
9471 S:      Orphan
9472 F:      drivers/net/ethernet/natsemi/natsemi.c
9473
9474 NCP FILESYSTEM
9475 M:      Petr Vandrovec <petr@vandrovec.name>
9476 S:      Obsolete
9477 F:      drivers/staging/ncpfs/
9478
9479 NCR 5380 SCSI DRIVERS
9480 M:      Finn Thain <fthain@telegraphics.com.au>
9481 M:      Michael Schmitz <schmitzmic@gmail.com>
9482 L:      linux-scsi@vger.kernel.org
9483 S:      Maintained
9484 F:      Documentation/scsi/g_NCR5380.txt
9485 F:      drivers/scsi/NCR5380.*
9486 F:      drivers/scsi/arm/cumana_1.c
9487 F:      drivers/scsi/arm/oak.c
9488 F:      drivers/scsi/atari_scsi.*
9489 F:      drivers/scsi/dmx3191d.c
9490 F:      drivers/scsi/g_NCR5380.*
9491 F:      drivers/scsi/mac_scsi.*
9492 F:      drivers/scsi/sun3_scsi.*
9493 F:      drivers/scsi/sun3_scsi_vme.c
9494
9495 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9496 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9497 L:      linux-scsi@vger.kernel.org
9498 S:      Maintained
9499 F:      drivers/scsi/NCR_D700.*
9500
9501 NCT6775 HARDWARE MONITOR DRIVER
9502 M:      Guenter Roeck <linux@roeck-us.net>
9503 L:      linux-hwmon@vger.kernel.org
9504 S:      Maintained
9505 F:      Documentation/hwmon/nct6775
9506 F:      drivers/hwmon/nct6775.c
9507
9508 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9509 M:      Faisal Latif <faisal.latif@intel.com>
9510 L:      linux-rdma@vger.kernel.org
9511 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9512 S:      Supported
9513 F:      drivers/infiniband/hw/nes/
9514 F:      include/uapi/rdma/nes-abi.h
9515
9516 NETEM NETWORK EMULATOR
9517 M:      Stephen Hemminger <stephen@networkplumber.org>
9518 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
9519 S:      Maintained
9520 F:      net/sched/sch_netem.c
9521
9522 NETERION 10GbE DRIVERS (s2io/vxge)
9523 M:      Jon Mason <jdmason@kudzu.us>
9524 L:      netdev@vger.kernel.org
9525 S:      Supported
9526 F:      Documentation/networking/s2io.txt
9527 F:      Documentation/networking/vxge.txt
9528 F:      drivers/net/ethernet/neterion/
9529
9530 NETFILTER
9531 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9532 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9533 M:      Florian Westphal <fw@strlen.de>
9534 L:      netfilter-devel@vger.kernel.org
9535 L:      coreteam@netfilter.org
9536 W:      http://www.netfilter.org/
9537 W:      http://www.iptables.org/
9538 W:      http://www.nftables.org/
9539 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9542 S:      Maintained
9543 F:      include/linux/netfilter*
9544 F:      include/linux/netfilter/
9545 F:      include/net/netfilter/
9546 F:      include/uapi/linux/netfilter*
9547 F:      include/uapi/linux/netfilter/
9548 F:      net/*/netfilter.c
9549 F:      net/*/netfilter/
9550 F:      net/netfilter/
9551 F:      net/bridge/br_netfilter*.c
9552
9553 NETROM NETWORK LAYER
9554 M:      Ralf Baechle <ralf@linux-mips.org>
9555 L:      linux-hams@vger.kernel.org
9556 W:      http://www.linux-ax25.org/
9557 S:      Maintained
9558 F:      include/net/netrom.h
9559 F:      include/uapi/linux/netrom.h
9560 F:      net/netrom/
9561
9562 NETRONOME ETHERNET DRIVERS
9563 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9564 L:      oss-drivers@netronome.com
9565 S:      Maintained
9566 F:      drivers/net/ethernet/netronome/
9567
9568 NETWORK BLOCK DEVICE (NBD)
9569 M:      Josef Bacik <jbacik@fb.com>
9570 S:      Maintained
9571 L:      linux-block@vger.kernel.org
9572 L:      nbd@other.debian.org
9573 F:      Documentation/blockdev/nbd.txt
9574 F:      drivers/block/nbd.c
9575 F:      include/uapi/linux/nbd.h
9576
9577 NETWORK DROP MONITOR
9578 M:      Neil Horman <nhorman@tuxdriver.com>
9579 L:      netdev@vger.kernel.org
9580 S:      Maintained
9581 W:      https://fedorahosted.org/dropwatch/
9582 F:      net/core/drop_monitor.c
9583
9584 NETWORKING DRIVERS
9585 L:      netdev@vger.kernel.org
9586 W:      http://www.linuxfoundation.org/en/Net
9587 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9590 S:      Odd Fixes
9591 F:      Documentation/devicetree/bindings/net/
9592 F:      drivers/net/
9593 F:      include/linux/if_*
9594 F:      include/linux/netdevice.h
9595 F:      include/linux/etherdevice.h
9596 F:      include/linux/fcdevice.h
9597 F:      include/linux/fddidevice.h
9598 F:      include/linux/hippidevice.h
9599 F:      include/linux/inetdevice.h
9600 F:      include/uapi/linux/if_*
9601 F:      include/uapi/linux/netdevice.h
9602
9603 NETWORKING DRIVERS (WIRELESS)
9604 M:      Kalle Valo <kvalo@codeaurora.org>
9605 L:      linux-wireless@vger.kernel.org
9606 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9609 S:      Maintained
9610 F:      Documentation/devicetree/bindings/net/wireless/
9611 F:      drivers/net/wireless/
9612
9613 NETWORKING [DSA]
9614 M:      Andrew Lunn <andrew@lunn.ch>
9615 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9616 M:      Florian Fainelli <f.fainelli@gmail.com>
9617 S:      Maintained
9618 F:      net/dsa/
9619 F:      include/net/dsa.h
9620 F:      include/linux/dsa/
9621 F:      drivers/net/dsa/
9622
9623 NETWORKING [GENERAL]
9624 M:      "David S. Miller" <davem@davemloft.net>
9625 L:      netdev@vger.kernel.org
9626 W:      http://www.linuxfoundation.org/en/Net
9627 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9630 B:      mailto:netdev@vger.kernel.org
9631 S:      Maintained
9632 F:      net/
9633 F:      include/net/
9634 F:      include/linux/in.h
9635 F:      include/linux/net.h
9636 F:      include/linux/netdevice.h
9637 F:      include/uapi/linux/in.h
9638 F:      include/uapi/linux/net.h
9639 F:      include/uapi/linux/netdevice.h
9640 F:      include/uapi/linux/net_namespace.h
9641 F:      tools/testing/selftests/net/
9642 F:      lib/net_utils.c
9643 F:      lib/random32.c
9644
9645 NETWORKING [IPSEC]
9646 M:      Steffen Klassert <steffen.klassert@secunet.com>
9647 M:      Herbert Xu <herbert@gondor.apana.org.au>
9648 M:      "David S. Miller" <davem@davemloft.net>
9649 L:      netdev@vger.kernel.org
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9652 S:      Maintained
9653 F:      net/core/flow.c
9654 F:      net/xfrm/
9655 F:      net/key/
9656 F:      net/ipv4/xfrm*
9657 F:      net/ipv4/esp4*
9658 F:      net/ipv4/ah4.c
9659 F:      net/ipv4/ipcomp.c
9660 F:      net/ipv4/ip_vti.c
9661 F:      net/ipv6/xfrm*
9662 F:      net/ipv6/esp6*
9663 F:      net/ipv6/ah6.c
9664 F:      net/ipv6/ipcomp6.c
9665 F:      net/ipv6/ip6_vti.c
9666 F:      include/uapi/linux/xfrm.h
9667 F:      include/net/xfrm.h
9668
9669 NETWORKING [IPv4/IPv6]
9670 M:      "David S. Miller" <davem@davemloft.net>
9671 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9672 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9673 L:      netdev@vger.kernel.org
9674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9675 S:      Maintained
9676 F:      net/ipv4/
9677 F:      net/ipv6/
9678 F:      include/net/ip*
9679 F:      arch/x86/net/*
9680
9681 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9682 M:      Paul Moore <paul@paul-moore.com>
9683 W:      https://github.com/netlabel
9684 L:      netdev@vger.kernel.org
9685 L:      linux-security-module@vger.kernel.org
9686 S:      Maintained
9687 F:      Documentation/netlabel/
9688 F:      include/net/calipso.h
9689 F:      include/net/cipso_ipv4.h
9690 F:      include/net/netlabel.h
9691 F:      include/uapi/linux/netfilter/xt_SECMARK.h
9692 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
9693 F:      net/netlabel/
9694 F:      net/ipv4/cipso_ipv4.c
9695 F:      net/ipv6/calipso.c
9696 F:      net/netfilter/xt_CONNSECMARK.c
9697 F:      net/netfilter/xt_SECMARK.c
9698
9699 NETWORKING [TLS]
9700 M:      Ilya Lesokhin <ilyal@mellanox.com>
9701 M:      Aviad Yehezkel <aviadye@mellanox.com>
9702 M:      Dave Watson <davejwatson@fb.com>
9703 L:      netdev@vger.kernel.org
9704 S:      Maintained
9705 F:      net/tls/*
9706 F:      include/uapi/linux/tls.h
9707 F:      include/net/tls.h
9708
9709 NETWORKING [WIRELESS]
9710 L:      linux-wireless@vger.kernel.org
9711 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9712
9713 NETDEVSIM
9714 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9715 S:      Maintained
9716 F:      drivers/net/netdevsim/*
9717
9718 NETXEN (1/10) GbE SUPPORT
9719 M:      Manish Chopra <manish.chopra@cavium.com>
9720 M:      Rahul Verma <rahul.verma@cavium.com>
9721 M:      Dept-GELinuxNICDev@cavium.com
9722 L:      netdev@vger.kernel.org
9723 S:      Supported
9724 F:      drivers/net/ethernet/qlogic/netxen/
9725
9726 NFC SUBSYSTEM
9727 M:      Samuel Ortiz <sameo@linux.intel.com>
9728 L:      linux-wireless@vger.kernel.org
9729 L:      linux-nfc@lists.01.org (subscribers-only)
9730 S:      Supported
9731 F:      net/nfc/
9732 F:      include/net/nfc/
9733 F:      include/uapi/linux/nfc.h
9734 F:      drivers/nfc/
9735 F:      include/linux/platform_data/nfcmrvl.h
9736 F:      include/linux/platform_data/nxp-nci.h
9737 F:      Documentation/devicetree/bindings/net/nfc/
9738
9739 NFS, SUNRPC, AND LOCKD CLIENTS
9740 M:      Trond Myklebust <trond.myklebust@primarydata.com>
9741 M:      Anna Schumaker <anna.schumaker@netapp.com>
9742 L:      linux-nfs@vger.kernel.org
9743 W:      http://client.linux-nfs.org
9744 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9745 S:      Maintained
9746 F:      fs/lockd/
9747 F:      fs/nfs/
9748 F:      fs/nfs_common/
9749 F:      net/sunrpc/
9750 F:      include/linux/lockd/
9751 F:      include/linux/nfs*
9752 F:      include/linux/sunrpc/
9753 F:      include/uapi/linux/nfs*
9754 F:      include/uapi/linux/sunrpc/
9755
9756 NILFS2 FILESYSTEM
9757 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9758 L:      linux-nilfs@vger.kernel.org
9759 W:      https://nilfs.sourceforge.io/
9760 W:      https://nilfs.osdn.jp/
9761 T:      git git://github.com/konis/nilfs2.git
9762 S:      Supported
9763 F:      Documentation/filesystems/nilfs2.txt
9764 F:      fs/nilfs2/
9765 F:      include/trace/events/nilfs2.h
9766 F:      include/uapi/linux/nilfs2_api.h
9767 F:      include/uapi/linux/nilfs2_ondisk.h
9768
9769 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9770 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9771 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9772 S:      Maintained
9773 F:      Documentation/scsi/NinjaSCSI.txt
9774 F:      drivers/scsi/pcmcia/nsp_*
9775
9776 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9777 M:      GOTO Masanori <gotom@debian.or.jp>
9778 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9779 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9780 S:      Maintained
9781 F:      Documentation/scsi/NinjaSCSI.txt
9782 F:      drivers/scsi/nsp32*
9783
9784 NIOS2 ARCHITECTURE
9785 M:      Ley Foon Tan <lftan@altera.com>
9786 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9788 S:      Maintained
9789 F:      arch/nios2/
9790
9791 NOHZ, DYNTICKS SUPPORT
9792 M:      Frederic Weisbecker <fweisbec@gmail.com>
9793 M:      Thomas Gleixner <tglx@linutronix.de>
9794 M:      Ingo Molnar <mingo@kernel.org>
9795 L:      linux-kernel@vger.kernel.org
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9797 S:      Maintained
9798 F:      kernel/time/tick*.*
9799 F:      include/linux/tick.h
9800 F:      include/linux/sched/nohz.h
9801
9802 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9803 M:      Pavel Machek <pavel@ucw.cz>
9804 M:      Sakari Ailus <sakari.ailus@iki.fi>
9805 L:      linux-media@vger.kernel.org
9806 S:      Maintained
9807 F:      drivers/media/i2c/et8ek8
9808 F:      drivers/media/i2c/ad5820.c
9809
9810 NOKIA N900 POWER SUPPLY DRIVERS
9811 R:      Pali Rohár <pali.rohar@gmail.com>
9812 F:      include/linux/power/bq2415x_charger.h
9813 F:      include/linux/power/bq27xxx_battery.h
9814 F:      include/linux/power/isp1704_charger.h
9815 F:      drivers/power/supply/bq2415x_charger.c
9816 F:      drivers/power/supply/bq27xxx_battery.c
9817 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9818 F:      drivers/power/supply/isp1704_charger.c
9819 F:      drivers/power/supply/rx51_battery.c
9820
9821 NTB AMD DRIVER
9822 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9823 L:      linux-ntb@googlegroups.com
9824 S:      Supported
9825 F:      drivers/ntb/hw/amd/
9826
9827 NTB DRIVER CORE
9828 M:      Jon Mason <jdmason@kudzu.us>
9829 M:      Dave Jiang <dave.jiang@intel.com>
9830 M:      Allen Hubbe <allenbh@gmail.com>
9831 L:      linux-ntb@googlegroups.com
9832 S:      Supported
9833 W:      https://github.com/jonmason/ntb/wiki
9834 T:      git git://github.com/jonmason/ntb.git
9835 F:      drivers/ntb/
9836 F:      drivers/net/ntb_netdev.c
9837 F:      include/linux/ntb.h
9838 F:      include/linux/ntb_transport.h
9839 F:      tools/testing/selftests/ntb/
9840
9841 NTB IDT DRIVER
9842 M:      Serge Semin <fancer.lancer@gmail.com>
9843 L:      linux-ntb@googlegroups.com
9844 S:      Supported
9845 F:      drivers/ntb/hw/idt/
9846
9847 NTB INTEL DRIVER
9848 M:      Dave Jiang <dave.jiang@intel.com>
9849 L:      linux-ntb@googlegroups.com
9850 S:      Supported
9851 W:      https://github.com/davejiang/linux/wiki
9852 T:      git https://github.com/davejiang/linux.git
9853 F:      drivers/ntb/hw/intel/
9854
9855 NTFS FILESYSTEM
9856 M:      Anton Altaparmakov <anton@tuxera.com>
9857 L:      linux-ntfs-dev@lists.sourceforge.net
9858 W:      http://www.tuxera.com/
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9860 S:      Supported
9861 F:      Documentation/filesystems/ntfs.txt
9862 F:      fs/ntfs/
9863
9864 NUBUS SUBSYSTEM
9865 M:      Finn Thain <fthain@telegraphics.com.au>
9866 L:      linux-m68k@lists.linux-m68k.org
9867 S:      Maintained
9868 F:      arch/*/include/asm/nubus.h
9869 F:      drivers/nubus/
9870 F:      include/linux/nubus.h
9871 F:      include/uapi/linux/nubus.h
9872
9873 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9874 M:      Antonino Daplas <adaplas@gmail.com>
9875 L:      linux-fbdev@vger.kernel.org
9876 S:      Maintained
9877 F:      drivers/video/fbdev/riva/
9878 F:      drivers/video/fbdev/nvidia/
9879
9880 NVM EXPRESS DRIVER
9881 M:      Keith Busch <keith.busch@intel.com>
9882 M:      Jens Axboe <axboe@fb.com>
9883 M:      Christoph Hellwig <hch@lst.de>
9884 M:      Sagi Grimberg <sagi@grimberg.me>
9885 L:      linux-nvme@lists.infradead.org
9886 T:      git://git.infradead.org/nvme.git
9887 W:      http://git.infradead.org/nvme.git
9888 S:      Supported
9889 F:      drivers/nvme/host/
9890 F:      include/linux/nvme.h
9891 F:      include/uapi/linux/nvme_ioctl.h
9892
9893 NVM EXPRESS FC TRANSPORT DRIVERS
9894 M:      James Smart <james.smart@broadcom.com>
9895 L:      linux-nvme@lists.infradead.org
9896 S:      Supported
9897 F:      include/linux/nvme-fc.h
9898 F:      include/linux/nvme-fc-driver.h
9899 F:      drivers/nvme/host/fc.c
9900 F:      drivers/nvme/target/fc.c
9901 F:      drivers/nvme/target/fcloop.c
9902
9903 NVM EXPRESS TARGET DRIVER
9904 M:      Christoph Hellwig <hch@lst.de>
9905 M:      Sagi Grimberg <sagi@grimberg.me>
9906 L:      linux-nvme@lists.infradead.org
9907 T:      git://git.infradead.org/nvme.git
9908 W:      http://git.infradead.org/nvme.git
9909 S:      Supported
9910 F:      drivers/nvme/target/
9911
9912 NVMEM FRAMEWORK
9913 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9914 S:      Maintained
9915 F:      drivers/nvmem/
9916 F:      Documentation/devicetree/bindings/nvmem/
9917 F:      Documentation/ABI/stable/sysfs-bus-nvmem
9918 F:      include/linux/nvmem-consumer.h
9919 F:      include/linux/nvmem-provider.h
9920
9921 NXP SGTL5000 DRIVER
9922 M:      Fabio Estevam <fabio.estevam@nxp.com>
9923 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9924 S:      Maintained
9925 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
9926 F:      sound/soc/codecs/sgtl5000*
9927
9928 NXP TDA998X DRM DRIVER
9929 M:      Russell King <linux@armlinux.org.uk>
9930 S:      Supported
9931 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9932 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9933 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9934 F:      include/drm/i2c/tda998x.h
9935
9936 NXP TFA9879 DRIVER
9937 M:      Peter Rosin <peda@axentia.se>
9938 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9939 S:      Maintained
9940 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
9941 F:      sound/soc/codecs/tfa9879*
9942
9943 NXP-NCI NFC DRIVER
9944 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
9945 R:      Charles Gorand <charles.gorand@effinnov.com>
9946 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9947 S:      Supported
9948 F:      drivers/nfc/nxp-nci
9949
9950 OBJTOOL
9951 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9952 M:      Peter Zijlstra <peterz@infradead.org>
9953 S:      Supported
9954 F:      tools/objtool/
9955
9956 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
9957 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
9958 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
9959 L:      linuxppc-dev@lists.ozlabs.org
9960 S:      Supported
9961 F:      arch/powerpc/platforms/powernv/ocxl.c
9962 F:      arch/powerpc/include/asm/pnv-ocxl.h
9963 F:      drivers/misc/ocxl/
9964 F:      include/misc/ocxl*
9965 F:      include/uapi/misc/ocxl.h
9966 F:      Documentation/accelerators/ocxl.txt
9967
9968 OMAP AUDIO SUPPORT
9969 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9970 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
9971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9972 L:      linux-omap@vger.kernel.org
9973 S:      Maintained
9974 F:      sound/soc/omap/
9975
9976 OMAP CLOCK FRAMEWORK SUPPORT
9977 M:      Paul Walmsley <paul@pwsan.com>
9978 L:      linux-omap@vger.kernel.org
9979 S:      Maintained
9980 F:      arch/arm/*omap*/*clock*
9981
9982 OMAP DEVICE TREE SUPPORT
9983 M:      Benoît Cousson <bcousson@baylibre.com>
9984 M:      Tony Lindgren <tony@atomide.com>
9985 L:      linux-omap@vger.kernel.org
9986 L:      devicetree@vger.kernel.org
9987 S:      Maintained
9988 F:      arch/arm/boot/dts/*omap*
9989 F:      arch/arm/boot/dts/*am3*
9990 F:      arch/arm/boot/dts/*am4*
9991 F:      arch/arm/boot/dts/*am5*
9992 F:      arch/arm/boot/dts/*dra7*
9993
9994 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9995 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9996 L:      linux-omap@vger.kernel.org
9997 L:      linux-fbdev@vger.kernel.org
9998 S:      Maintained
9999 F:      drivers/video/fbdev/omap2/
10000 F:      Documentation/arm/OMAP/DSS
10001
10002 OMAP FRAMEBUFFER SUPPORT
10003 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
10004 L:      linux-fbdev@vger.kernel.org
10005 L:      linux-omap@vger.kernel.org
10006 S:      Maintained
10007 F:      drivers/video/fbdev/omap/
10008
10009 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
10010 M:      Roger Quadros <rogerq@ti.com>
10011 M:      Tony Lindgren <tony@atomide.com>
10012 L:      linux-omap@vger.kernel.org
10013 S:      Maintained
10014 F:      drivers/memory/omap-gpmc.c
10015 F:      arch/arm/mach-omap2/*gpmc*
10016
10017 OMAP GPIO DRIVER
10018 M:      Grygorii Strashko <grygorii.strashko@ti.com>
10019 M:      Santosh Shilimkar <ssantosh@kernel.org>
10020 M:      Kevin Hilman <khilman@kernel.org>
10021 L:      linux-omap@vger.kernel.org
10022 S:      Maintained
10023 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
10024 F:      drivers/gpio/gpio-omap.c
10025
10026 OMAP HARDWARE SPINLOCK SUPPORT
10027 M:      Ohad Ben-Cohen <ohad@wizery.com>
10028 L:      linux-omap@vger.kernel.org
10029 S:      Maintained
10030 F:      drivers/hwspinlock/omap_hwspinlock.c
10031
10032 OMAP HS MMC SUPPORT
10033 L:      linux-mmc@vger.kernel.org
10034 L:      linux-omap@vger.kernel.org
10035 S:      Orphan
10036 F:      drivers/mmc/host/omap_hsmmc.c
10037
10038 OMAP HWMOD DATA
10039 M:      Paul Walmsley <paul@pwsan.com>
10040 L:      linux-omap@vger.kernel.org
10041 S:      Maintained
10042 F:      arch/arm/mach-omap2/omap_hwmod*data*
10043
10044 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10045 M:      Benoît Cousson <bcousson@baylibre.com>
10046 L:      linux-omap@vger.kernel.org
10047 S:      Maintained
10048 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10049
10050 OMAP HWMOD SUPPORT
10051 M:      Benoît Cousson <bcousson@baylibre.com>
10052 M:      Paul Walmsley <paul@pwsan.com>
10053 L:      linux-omap@vger.kernel.org
10054 S:      Maintained
10055 F:      arch/arm/mach-omap2/omap_hwmod.*
10056
10057 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10058 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10059 L:      linux-media@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
10062 F:      drivers/media/platform/omap3isp/
10063 F:      drivers/staging/media/omap4iss/
10064
10065 OMAP MMC SUPPORT
10066 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
10067 L:      linux-omap@vger.kernel.org
10068 S:      Maintained
10069 F:      drivers/mmc/host/omap.c
10070
10071 OMAP POWER MANAGEMENT SUPPORT
10072 M:      Kevin Hilman <khilman@kernel.org>
10073 L:      linux-omap@vger.kernel.org
10074 S:      Maintained
10075 F:      arch/arm/*omap*/*pm*
10076 F:      drivers/cpufreq/omap-cpufreq.c
10077
10078 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
10079 M:      Rajendra Nayak <rnayak@codeaurora.org>
10080 M:      Paul Walmsley <paul@pwsan.com>
10081 L:      linux-omap@vger.kernel.org
10082 S:      Maintained
10083 F:      arch/arm/mach-omap2/prm*
10084
10085 OMAP RANDOM NUMBER GENERATOR SUPPORT
10086 M:      Deepak Saxena <dsaxena@plexity.net>
10087 S:      Maintained
10088 F:      drivers/char/hw_random/omap-rng.c
10089
10090 OMAP USB SUPPORT
10091 L:      linux-usb@vger.kernel.org
10092 L:      linux-omap@vger.kernel.org
10093 S:      Orphan
10094 F:      drivers/usb/*/*omap*
10095 F:      arch/arm/*omap*/usb*
10096
10097 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
10098 M:      Mark Jackson <mpfj@newflow.co.uk>
10099 L:      linux-omap@vger.kernel.org
10100 S:      Maintained
10101 F:      arch/arm/boot/dts/am335x-nano.dts
10102
10103 OMAP1 SUPPORT
10104 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
10105 M:      Tony Lindgren <tony@atomide.com>
10106 L:      linux-omap@vger.kernel.org
10107 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10109 S:      Maintained
10110 F:      arch/arm/mach-omap1/
10111 F:      arch/arm/plat-omap/
10112 F:      arch/arm/configs/omap1_defconfig
10113 F:      drivers/i2c/busses/i2c-omap.c
10114 F:      include/linux/i2c-omap.h
10115
10116 OMAP2+ SUPPORT
10117 M:      Tony Lindgren <tony@atomide.com>
10118 L:      linux-omap@vger.kernel.org
10119 W:      http://www.muru.com/linux/omap/
10120 W:      http://linux.omap.com/
10121 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10123 S:      Maintained
10124 F:      arch/arm/mach-omap2/
10125 F:      arch/arm/plat-omap/
10126 F:      arch/arm/configs/omap2plus_defconfig
10127 F:      drivers/i2c/busses/i2c-omap.c
10128 F:      drivers/irqchip/irq-omap-intc.c
10129 F:      drivers/mfd/*omap*.c
10130 F:      drivers/mfd/menelaus.c
10131 F:      drivers/mfd/palmas.c
10132 F:      drivers/mfd/tps65217.c
10133 F:      drivers/mfd/tps65218.c
10134 F:      drivers/mfd/tps65910.c
10135 F:      drivers/mfd/twl-core.[ch]
10136 F:      drivers/mfd/twl4030*.c
10137 F:      drivers/mfd/twl6030*.c
10138 F:      drivers/mfd/twl6040*.c
10139 F:      drivers/regulator/palmas-regulator*.c
10140 F:      drivers/regulator/pbias-regulator.c
10141 F:      drivers/regulator/tps65217-regulator.c
10142 F:      drivers/regulator/tps65218-regulator.c
10143 F:      drivers/regulator/tps65910-regulator.c
10144 F:      drivers/regulator/twl-regulator.c
10145 F:      drivers/regulator/twl6030-regulator.c
10146 F:      include/linux/i2c-omap.h
10147
10148 ONION OMEGA2+ BOARD
10149 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10150 L:      linux-mips@linux-mips.org
10151 S:      Maintained
10152 F:      arch/mips/boot/dts/ralink/omega2p.dts
10153
10154 OMFS FILESYSTEM
10155 M:      Bob Copeland <me@bobcopeland.com>
10156 L:      linux-karma-devel@lists.sourceforge.net
10157 S:      Maintained
10158 F:      Documentation/filesystems/omfs.txt
10159 F:      fs/omfs/
10160
10161 OMNIKEY CARDMAN 4000 DRIVER
10162 M:      Harald Welte <laforge@gnumonks.org>
10163 S:      Maintained
10164 F:      drivers/char/pcmcia/cm4000_cs.c
10165 F:      include/linux/cm4000_cs.h
10166 F:      include/uapi/linux/cm4000_cs.h
10167
10168 OMNIKEY CARDMAN 4040 DRIVER
10169 M:      Harald Welte <laforge@gnumonks.org>
10170 S:      Maintained
10171 F:      drivers/char/pcmcia/cm4040_cs.*
10172
10173 OMNIVISION OV13858 SENSOR DRIVER
10174 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10175 L:      linux-media@vger.kernel.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 S:      Maintained
10178 F:      drivers/media/i2c/ov13858.c
10179
10180 OMNIVISION OV5640 SENSOR DRIVER
10181 M:      Steve Longerbeam <slongerbeam@gmail.com>
10182 L:      linux-media@vger.kernel.org
10183 T:      git git://linuxtv.org/media_tree.git
10184 S:      Maintained
10185 F:      drivers/media/i2c/ov5640.c
10186
10187 OMNIVISION OV5647 SENSOR DRIVER
10188 M:      Luis Oliveira <lolivei@synopsys.com>
10189 L:      linux-media@vger.kernel.org
10190 T:      git git://linuxtv.org/media_tree.git
10191 S:      Maintained
10192 F:      drivers/media/i2c/ov5647.c
10193
10194 OMNIVISION OV7670 SENSOR DRIVER
10195 M:      Jonathan Corbet <corbet@lwn.net>
10196 L:      linux-media@vger.kernel.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 S:      Maintained
10199 F:      drivers/media/i2c/ov7670.c
10200 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
10201
10202 OMNIVISION OV7740 SENSOR DRIVER
10203 M:      Wenyou Yang <wenyou.yang@microchip.com>
10204 L:      linux-media@vger.kernel.org
10205 T:      git git://linuxtv.org/media_tree.git
10206 S:      Maintained
10207 F:      drivers/media/i2c/ov7740.c
10208 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
10209
10210 ONENAND FLASH DRIVER
10211 M:      Kyungmin Park <kyungmin.park@samsung.com>
10212 L:      linux-mtd@lists.infradead.org
10213 S:      Maintained
10214 F:      drivers/mtd/onenand/
10215 F:      include/linux/mtd/onenand*.h
10216
10217 ONSTREAM SCSI TAPE DRIVER
10218 M:      Willem Riede <osst@riede.org>
10219 L:      osst-users@lists.sourceforge.net
10220 L:      linux-scsi@vger.kernel.org
10221 S:      Maintained
10222 F:      Documentation/scsi/osst.txt
10223 F:      drivers/scsi/osst.*
10224 F:      drivers/scsi/osst_*.h
10225 F:      drivers/scsi/st.h
10226
10227 OP-TEE DRIVER
10228 M:      Jens Wiklander <jens.wiklander@linaro.org>
10229 S:      Maintained
10230 F:      drivers/tee/optee/
10231
10232 OPA-VNIC DRIVER
10233 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
10234 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10235 L:      linux-rdma@vger.kernel.org
10236 S:      Supported
10237 F:      drivers/infiniband/ulp/opa_vnic
10238
10239 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10240 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10241 L:      devicetree@vger.kernel.org
10242 S:      Maintained
10243 F:      Documentation/devicetree/dynamic-resolution-notes.txt
10244 F:      Documentation/devicetree/overlay-notes.txt
10245 F:      drivers/of/overlay.c
10246 F:      drivers/of/resolver.c
10247
10248 OPEN FIRMWARE AND FLATTENED DEVICE TREE
10249 M:      Rob Herring <robh+dt@kernel.org>
10250 M:      Frank Rowand <frowand.list@gmail.com>
10251 L:      devicetree@vger.kernel.org
10252 W:      http://www.devicetree.org/
10253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10254 S:      Maintained
10255 F:      drivers/of/
10256 F:      include/linux/of*.h
10257 F:      scripts/dtc/
10258 F:      Documentation/ABI/testing/sysfs-firmware-ofw
10259
10260 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10261 M:      Rob Herring <robh+dt@kernel.org>
10262 M:      Mark Rutland <mark.rutland@arm.com>
10263 L:      devicetree@vger.kernel.org
10264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10265 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10266 S:      Maintained
10267 F:      Documentation/devicetree/
10268 F:      arch/*/boot/dts/
10269 F:      include/dt-bindings/
10270
10271 OPENCORES I2C BUS DRIVER
10272 M:      Peter Korsgaard <jacmet@sunsite.dk>
10273 L:      linux-i2c@vger.kernel.org
10274 S:      Maintained
10275 F:      Documentation/i2c/busses/i2c-ocores
10276 F:      drivers/i2c/busses/i2c-ocores.c
10277
10278 OPENRISC ARCHITECTURE
10279 M:      Jonas Bonn <jonas@southpole.se>
10280 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10281 M:      Stafford Horne <shorne@gmail.com>
10282 T:      git git://github.com/openrisc/linux.git
10283 L:      openrisc@lists.librecores.org
10284 W:      http://openrisc.io
10285 S:      Maintained
10286 F:      Documentation/devicetree/bindings/openrisc/
10287 F:      Documentation/openrisc/
10288 F:      arch/openrisc/
10289 F:      drivers/irqchip/irq-ompic.c
10290 F:      drivers/irqchip/irq-or1k-*
10291
10292 OPENVSWITCH
10293 M:      Pravin B Shelar <pshelar@ovn.org>
10294 L:      netdev@vger.kernel.org
10295 L:      dev@openvswitch.org
10296 W:      http://openvswitch.org
10297 S:      Maintained
10298 F:      net/openvswitch/
10299 F:      include/uapi/linux/openvswitch.h
10300
10301 OPERATING PERFORMANCE POINTS (OPP)
10302 M:      Viresh Kumar <vireshk@kernel.org>
10303 M:      Nishanth Menon <nm@ti.com>
10304 M:      Stephen Boyd <sboyd@kernel.org>
10305 L:      linux-pm@vger.kernel.org
10306 S:      Maintained
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10308 F:      drivers/opp/
10309 F:      include/linux/pm_opp.h
10310 F:      Documentation/power/opp.txt
10311 F:      Documentation/devicetree/bindings/opp/
10312
10313 OPL4 DRIVER
10314 M:      Clemens Ladisch <clemens@ladisch.de>
10315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10316 T:      git git://git.alsa-project.org/alsa-kernel.git
10317 S:      Maintained
10318 F:      sound/drivers/opl4/
10319
10320 OPROFILE
10321 M:      Robert Richter <rric@kernel.org>
10322 L:      oprofile-list@lists.sf.net
10323 S:      Maintained
10324 F:      arch/*/include/asm/oprofile*.h
10325 F:      arch/*/oprofile/
10326 F:      drivers/oprofile/
10327 F:      include/linux/oprofile.h
10328
10329 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10330 M:      Mark Fasheh <mark@fasheh.com>
10331 M:      Joel Becker <jlbec@evilplan.org>
10332 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10333 W:      http://ocfs2.wiki.kernel.org
10334 S:      Supported
10335 F:      Documentation/filesystems/ocfs2.txt
10336 F:      Documentation/filesystems/dlmfs.txt
10337 F:      fs/ocfs2/
10338
10339 ORANGEFS FILESYSTEM
10340 M:      Mike Marshall <hubcap@omnibond.com>
10341 R:      Martin Brandenburg <martin@omnibond.com>
10342 L:      devel@lists.orangefs.org
10343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10344 S:      Supported
10345 F:      fs/orangefs/
10346 F:      Documentation/filesystems/orangefs.txt
10347
10348 ORINOCO DRIVER
10349 L:      linux-wireless@vger.kernel.org
10350 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
10351 W:      http://www.nongnu.org/orinoco/
10352 S:      Orphan
10353 F:      drivers/net/wireless/intersil/orinoco/
10354
10355 OSD LIBRARY and FILESYSTEM
10356 M:      Boaz Harrosh <ooo@electrozaur.com>
10357 S:      Maintained
10358 F:      drivers/scsi/osd/
10359 F:      include/scsi/osd_*
10360 F:      fs/exofs/
10361
10362 OV2659 OMNIVISION SENSOR DRIVER
10363 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10364 L:      linux-media@vger.kernel.org
10365 W:      https://linuxtv.org
10366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10367 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10368 S:      Maintained
10369 F:      drivers/media/i2c/ov2659.c
10370 F:      include/media/i2c/ov2659.h
10371
10372 OVERLAY FILESYSTEM
10373 M:      Miklos Szeredi <miklos@szeredi.hu>
10374 L:      linux-unionfs@vger.kernel.org
10375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10376 S:      Supported
10377 F:      fs/overlayfs/
10378 F:      Documentation/filesystems/overlayfs.txt
10379
10380 P54 WIRELESS DRIVER
10381 M:      Christian Lamparter <chunkeey@googlemail.com>
10382 L:      linux-wireless@vger.kernel.org
10383 W:      http://wireless.kernel.org/en/users/Drivers/p54
10384 S:      Maintained
10385 F:      drivers/net/wireless/intersil/p54/
10386
10387 PA SEMI ETHERNET DRIVER
10388 L:      netdev@vger.kernel.org
10389 S:      Orphan
10390 F:      drivers/net/ethernet/pasemi/*
10391
10392 PA SEMI SMBUS DRIVER
10393 L:      linux-i2c@vger.kernel.org
10394 S:      Orphan
10395 F:      drivers/i2c/busses/i2c-pasemi.c
10396
10397 PADATA PARALLEL EXECUTION MECHANISM
10398 M:      Steffen Klassert <steffen.klassert@secunet.com>
10399 L:      linux-crypto@vger.kernel.org
10400 S:      Maintained
10401 F:      kernel/padata.c
10402 F:      include/linux/padata.h
10403 F:      Documentation/padata.txt
10404
10405 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10406 M:      Harald Welte <laforge@gnumonks.org>
10407 L:      platform-driver-x86@vger.kernel.org
10408 S:      Maintained
10409 F:      drivers/platform/x86/panasonic-laptop.c
10410
10411 PANASONIC MN10300/AM33/AM34 PORT
10412 M:      David Howells <dhowells@redhat.com>
10413 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
10414 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
10415 S:      Maintained
10416 F:      Documentation/mn10300/
10417 F:      arch/mn10300/
10418
10419 PARALLEL LCD/KEYPAD PANEL DRIVER
10420 M:      Willy Tarreau <willy@haproxy.com>
10421 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10422 S:      Odd Fixes
10423 F:      Documentation/misc-devices/lcd-panel-cgram.txt
10424 F:      drivers/misc/panel.c
10425
10426 PARALLEL PORT SUBSYSTEM
10427 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10428 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10429 L:      linux-parport@lists.infradead.org (subscribers-only)
10430 S:      Maintained
10431 F:      drivers/parport/
10432 F:      include/linux/parport*.h
10433 F:      drivers/char/ppdev.c
10434 F:      include/uapi/linux/ppdev.h
10435 F:      Documentation/parport*.txt
10436
10437 PARAVIRT_OPS INTERFACE
10438 M:      Juergen Gross <jgross@suse.com>
10439 M:      Alok Kataria <akataria@vmware.com>
10440 L:      virtualization@lists.linux-foundation.org
10441 S:      Supported
10442 F:      Documentation/virtual/paravirt_ops.txt
10443 F:      arch/*/kernel/paravirt*
10444 F:      arch/*/include/asm/paravirt*.h
10445 F:      include/linux/hypervisor.h
10446
10447 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10448 M:      Tim Waugh <tim@cyberelk.net>
10449 L:      linux-parport@lists.infradead.org (subscribers-only)
10450 S:      Maintained
10451 F:      Documentation/blockdev/paride.txt
10452 F:      drivers/block/paride/
10453
10454 PARISC ARCHITECTURE
10455 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
10456 M:      Helge Deller <deller@gmx.de>
10457 L:      linux-parisc@vger.kernel.org
10458 W:      http://www.parisc-linux.org/
10459 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
10460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10462 S:      Maintained
10463 F:      arch/parisc/
10464 F:      Documentation/parisc/
10465 F:      drivers/parisc/
10466 F:      drivers/char/agp/parisc-agp.c
10467 F:      drivers/input/serio/gscps2.c
10468 F:      drivers/parport/parport_gsc.*
10469 F:      drivers/tty/serial/8250/8250_gsc.c
10470 F:      drivers/video/fbdev/sti*
10471 F:      drivers/video/console/sti*
10472 F:      drivers/video/logo/logo_parisc*
10473
10474 PARMAN
10475 M:      Jiri Pirko <jiri@mellanox.com>
10476 L:      netdev@vger.kernel.org
10477 S:      Supported
10478 F:      lib/parman.c
10479 F:      lib/test_parman.c
10480 F:      include/linux/parman.h
10481
10482 PC87360 HARDWARE MONITORING DRIVER
10483 M:      Jim Cromie <jim.cromie@gmail.com>
10484 L:      linux-hwmon@vger.kernel.org
10485 S:      Maintained
10486 F:      Documentation/hwmon/pc87360
10487 F:      drivers/hwmon/pc87360.c
10488
10489 PC8736x GPIO DRIVER
10490 M:      Jim Cromie <jim.cromie@gmail.com>
10491 S:      Maintained
10492 F:      drivers/char/pc8736x_gpio.c
10493
10494 PC87427 HARDWARE MONITORING DRIVER
10495 M:      Jean Delvare <jdelvare@suse.com>
10496 L:      linux-hwmon@vger.kernel.org
10497 S:      Maintained
10498 F:      Documentation/hwmon/pc87427
10499 F:      drivers/hwmon/pc87427.c
10500
10501 PCA9532 LED DRIVER
10502 M:      Riku Voipio <riku.voipio@iki.fi>
10503 S:      Maintained
10504 F:      drivers/leds/leds-pca9532.c
10505 F:      include/linux/leds-pca9532.h
10506
10507 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10508 M:      Guenter Roeck <linux@roeck-us.net>
10509 L:      linux-i2c@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
10512
10513 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10514 M:      Khalid Aziz <khalid@gonehiking.org>
10515 S:      Maintained
10516 F:      drivers/firmware/pcdp.*
10517
10518 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10519 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10520 L:      linux-pci@vger.kernel.org
10521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10522 S:      Maintained
10523 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
10524 F:      drivers/pci/host/pci-aardvark.c
10525
10526 PCI DRIVER FOR ALTERA PCIE IP
10527 M:      Ley Foon Tan <lftan@altera.com>
10528 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10529 L:      linux-pci@vger.kernel.org
10530 S:      Supported
10531 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
10532 F:      drivers/pci/host/pcie-altera.c
10533
10534 PCI DRIVER FOR APPLIEDMICRO XGENE
10535 M:      Tanmay Inamdar <tinamdar@apm.com>
10536 L:      linux-pci@vger.kernel.org
10537 L:      linux-arm-kernel@lists.infradead.org
10538 S:      Maintained
10539 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
10540 F:      drivers/pci/host/pci-xgene.c
10541
10542 PCI DRIVER FOR ARM VERSATILE PLATFORM
10543 M:      Rob Herring <robh@kernel.org>
10544 L:      linux-pci@vger.kernel.org
10545 L:      linux-arm-kernel@lists.infradead.org
10546 S:      Maintained
10547 F:      Documentation/devicetree/bindings/pci/versatile.txt
10548 F:      drivers/pci/host/pci-versatile.c
10549
10550 PCI DRIVER FOR ARMADA 8K
10551 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10552 L:      linux-pci@vger.kernel.org
10553 L:      linux-arm-kernel@lists.infradead.org
10554 S:      Maintained
10555 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
10556 F:      drivers/pci/dwc/pcie-armada8k.c
10557
10558 PCI DRIVER FOR CADENCE PCIE IP
10559 M:      Alan Douglas <adouglas@cadence.com>
10560 L:      linux-pci@vger.kernel.org
10561 S:      Maintained
10562 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
10563 F:      drivers/pci/cadence/pcie-cadence*
10564
10565 PCI DRIVER FOR FREESCALE LAYERSCAPE
10566 M:      Minghuan Lian <minghuan.Lian@freescale.com>
10567 M:      Mingkai Hu <mingkai.hu@freescale.com>
10568 M:      Roy Zang <tie-fei.zang@freescale.com>
10569 L:      linuxppc-dev@lists.ozlabs.org
10570 L:      linux-pci@vger.kernel.org
10571 L:      linux-arm-kernel@lists.infradead.org
10572 S:      Maintained
10573 F:      drivers/pci/dwc/*layerscape*
10574
10575 PCI DRIVER FOR GENERIC OF HOSTS
10576 M:      Will Deacon <will.deacon@arm.com>
10577 L:      linux-pci@vger.kernel.org
10578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10579 S:      Maintained
10580 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
10581 F:      drivers/pci/host/pci-host-common.c
10582 F:      drivers/pci/host/pci-host-generic.c
10583
10584 PCI DRIVER FOR IMX6
10585 M:      Richard Zhu <hongxing.zhu@nxp.com>
10586 M:      Lucas Stach <l.stach@pengutronix.de>
10587 L:      linux-pci@vger.kernel.org
10588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10589 S:      Maintained
10590 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10591 F:      drivers/pci/dwc/*imx6*
10592
10593 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10594 M:      Keith Busch <keith.busch@intel.com>
10595 M:      Jonathan Derrick <jonathan.derrick@intel.com>
10596 L:      linux-pci@vger.kernel.org
10597 S:      Supported
10598 F:      drivers/pci/host/vmd.c
10599
10600 PCI DRIVER FOR MICROSEMI SWITCHTEC
10601 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10602 M:      Logan Gunthorpe <logang@deltatee.com>
10603 L:      linux-pci@vger.kernel.org
10604 S:      Maintained
10605 F:      Documentation/switchtec.txt
10606 F:      Documentation/ABI/testing/sysfs-class-switchtec
10607 F:      drivers/pci/switch/switchtec*
10608 F:      include/uapi/linux/switchtec_ioctl.h
10609 F:      include/linux/switchtec.h
10610 F:      drivers/ntb/hw/mscc/
10611
10612 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10613 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10614 M:      Jason Cooper <jason@lakedaemon.net>
10615 L:      linux-pci@vger.kernel.org
10616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10617 S:      Maintained
10618 F:      drivers/pci/host/*mvebu*
10619
10620 PCI DRIVER FOR NVIDIA TEGRA
10621 M:      Thierry Reding <thierry.reding@gmail.com>
10622 L:      linux-tegra@vger.kernel.org
10623 L:      linux-pci@vger.kernel.org
10624 S:      Supported
10625 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10626 F:      drivers/pci/host/pci-tegra.c
10627
10628 PCI DRIVER FOR RENESAS R-CAR
10629 M:      Simon Horman <horms@verge.net.au>
10630 L:      linux-pci@vger.kernel.org
10631 L:      linux-renesas-soc@vger.kernel.org
10632 S:      Maintained
10633 F:      drivers/pci/host/*rcar*
10634
10635 PCI DRIVER FOR SAMSUNG EXYNOS
10636 M:      Jingoo Han <jingoohan1@gmail.com>
10637 L:      linux-pci@vger.kernel.org
10638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10639 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10640 S:      Maintained
10641 F:      drivers/pci/dwc/pci-exynos.c
10642
10643 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10644 M:      Jingoo Han <jingoohan1@gmail.com>
10645 M:      Joao Pinto <Joao.Pinto@synopsys.com>
10646 L:      linux-pci@vger.kernel.org
10647 S:      Maintained
10648 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
10649 F:      drivers/pci/dwc/*designware*
10650
10651 PCI DRIVER FOR TI DRA7XX
10652 M:      Kishon Vijay Abraham I <kishon@ti.com>
10653 L:      linux-omap@vger.kernel.org
10654 L:      linux-pci@vger.kernel.org
10655 S:      Supported
10656 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
10657 F:      drivers/pci/dwc/pci-dra7xx.c
10658
10659 PCI DRIVER FOR TI KEYSTONE
10660 M:      Murali Karicheri <m-karicheri2@ti.com>
10661 L:      linux-pci@vger.kernel.org
10662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10663 S:      Maintained
10664 F:      drivers/pci/dwc/*keystone*
10665
10666 PCI ENDPOINT SUBSYSTEM
10667 M:      Kishon Vijay Abraham I <kishon@ti.com>
10668 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10669 L:      linux-pci@vger.kernel.org
10670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10671 S:      Supported
10672 F:      drivers/pci/endpoint/
10673 F:      drivers/misc/pci_endpoint_test.c
10674 F:      tools/pci/
10675
10676 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10677 M:      Russell Currey <ruscur@russell.cc>
10678 L:      linuxppc-dev@lists.ozlabs.org
10679 S:      Supported
10680 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
10681 F:      arch/powerpc/kernel/eeh*.c
10682 F:      arch/powerpc/platforms/*/eeh*.c
10683 F:      arch/powerpc/include/*/eeh*.h
10684
10685 PCI ERROR RECOVERY
10686 M:      Linas Vepstas <linasvepstas@gmail.com>
10687 L:      linux-pci@vger.kernel.org
10688 S:      Supported
10689 F:      Documentation/PCI/pci-error-recovery.txt
10690
10691 PCI MSI DRIVER FOR ALTERA MSI IP
10692 M:      Ley Foon Tan <lftan@altera.com>
10693 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10694 L:      linux-pci@vger.kernel.org
10695 S:      Supported
10696 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10697 F:      drivers/pci/host/pcie-altera-msi.c
10698
10699 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10700 M:      Duc Dang <dhdang@apm.com>
10701 L:      linux-pci@vger.kernel.org
10702 L:      linux-arm-kernel@lists.infradead.org
10703 S:      Maintained
10704 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10705 F:      drivers/pci/host/pci-xgene-msi.c
10706
10707 PCI SUBSYSTEM
10708 M:      Bjorn Helgaas <bhelgaas@google.com>
10709 L:      linux-pci@vger.kernel.org
10710 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10712 S:      Supported
10713 F:      Documentation/devicetree/bindings/pci/
10714 F:      Documentation/PCI/
10715 F:      drivers/acpi/pci*
10716 F:      drivers/pci/
10717 F:      include/asm-generic/pci*
10718 F:      include/linux/pci*
10719 F:      include/uapi/linux/pci*
10720 F:      lib/pci*
10721 F:      arch/x86/pci/
10722 F:      arch/x86/kernel/quirks.c
10723
10724 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
10725 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10726 L:      linux-pci@vger.kernel.org
10727 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
10729 S:      Supported
10730 F:      drivers/pci/host/
10731 F:      drivers/pci/dwc/
10732
10733 PCIE DRIVER FOR AXIS ARTPEC
10734 M:      Niklas Cassel <niklas.cassel@axis.com>
10735 M:      Jesper Nilsson <jesper.nilsson@axis.com>
10736 L:      linux-arm-kernel@axis.com
10737 L:      linux-pci@vger.kernel.org
10738 S:      Maintained
10739 F:      Documentation/devicetree/bindings/pci/axis,artpec*
10740 F:      drivers/pci/dwc/*artpec*
10741
10742 PCIE DRIVER FOR CAVIUM THUNDERX
10743 M:      David Daney <david.daney@cavium.com>
10744 L:      linux-pci@vger.kernel.org
10745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10746 S:      Supported
10747 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
10748 F:      drivers/pci/host/pci-thunder-*
10749
10750 PCIE DRIVER FOR HISILICON
10751 M:      Zhou Wang <wangzhou1@hisilicon.com>
10752 L:      linux-pci@vger.kernel.org
10753 S:      Maintained
10754 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10755 F:      drivers/pci/dwc/pcie-hisi.c
10756
10757 PCIE DRIVER FOR HISILICON KIRIN
10758 M:      Xiaowei Song <songxiaowei@hisilicon.com>
10759 M:      Binghui Wang <wangbinghui@hisilicon.com>
10760 L:      linux-pci@vger.kernel.org
10761 S:      Maintained
10762 F:      Documentation/devicetree/bindings/pci/pcie-kirin.txt
10763 F:      drivers/pci/dwc/pcie-kirin.c
10764
10765 PCIE DRIVER FOR HISILICON STB
10766 M:      Jianguo Sun <sunjianguo1@huawei.com>
10767 M:      Shawn Guo <shawn.guo@linaro.org>
10768 L:      linux-pci@vger.kernel.org
10769 S:      Maintained
10770 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
10771 F:      drivers/pci/dwc/pcie-histb.c
10772
10773 PCIE DRIVER FOR MEDIATEK
10774 M:      Ryder Lee <ryder.lee@mediatek.com>
10775 L:      linux-pci@vger.kernel.org
10776 L:      linux-mediatek@lists.infradead.org
10777 S:      Supported
10778 F:      Documentation/devicetree/bindings/pci/mediatek*
10779 F:      drivers/pci/host/*mediatek*
10780
10781 PCIE DRIVER FOR QUALCOMM MSM
10782 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
10783 L:      linux-pci@vger.kernel.org
10784 L:      linux-arm-msm@vger.kernel.org
10785 S:      Maintained
10786 F:      drivers/pci/dwc/*qcom*
10787
10788 PCIE DRIVER FOR ROCKCHIP
10789 M:      Shawn Lin <shawn.lin@rock-chips.com>
10790 L:      linux-pci@vger.kernel.org
10791 L:      linux-rockchip@lists.infradead.org
10792 S:      Maintained
10793 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10794 F:      drivers/pci/host/pcie-rockchip.c
10795
10796 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
10797 M:      Linus Walleij <linus.walleij@linaro.org>
10798 L:      linux-pci@vger.kernel.org
10799 S:      Maintained
10800 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
10801 F:      drivers/pci/host/pci-v3-semi.c
10802
10803 PCIE DRIVER FOR ST SPEAR13XX
10804 M:      Pratyush Anand <pratyush.anand@gmail.com>
10805 L:      linux-pci@vger.kernel.org
10806 S:      Maintained
10807 F:      drivers/pci/dwc/*spear*
10808
10809 PCMCIA SUBSYSTEM
10810 M:      Dominik Brodowski <linux@dominikbrodowski.net>
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10812 S:      Odd Fixes
10813 F:      Documentation/pcmcia/
10814 F:      tools/pcmcia/
10815 F:      drivers/pcmcia/
10816 F:      include/pcmcia/
10817
10818 PCNET32 NETWORK DRIVER
10819 M:      Don Fry <pcnet32@frontier.com>
10820 L:      netdev@vger.kernel.org
10821 S:      Maintained
10822 F:      drivers/net/ethernet/amd/pcnet32.c
10823
10824 PCRYPT PARALLEL CRYPTO ENGINE
10825 M:      Steffen Klassert <steffen.klassert@secunet.com>
10826 L:      linux-crypto@vger.kernel.org
10827 S:      Maintained
10828 F:      crypto/pcrypt.c
10829 F:      include/crypto/pcrypt.h
10830
10831 PEAQ WMI HOTKEYS DRIVER
10832 M:      Hans de Goede <hdegoede@redhat.com>
10833 L:      platform-driver-x86@vger.kernel.org
10834 S:      Maintained
10835 F:      drivers/platform/x86/peaq-wmi.c
10836
10837 PER-CPU MEMORY ALLOCATOR
10838 M:      Tejun Heo <tj@kernel.org>
10839 M:      Christoph Lameter <cl@linux.com>
10840 M:      Dennis Zhou <dennisszhou@gmail.com>
10841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10842 S:      Maintained
10843 F:      include/linux/percpu*.h
10844 F:      mm/percpu*.c
10845 F:      arch/*/include/asm/percpu.h
10846
10847 PER-TASK DELAY ACCOUNTING
10848 M:      Balbir Singh <bsingharora@gmail.com>
10849 S:      Maintained
10850 F:      include/linux/delayacct.h
10851 F:      kernel/delayacct.c
10852
10853 PERFORMANCE EVENTS SUBSYSTEM
10854 M:      Peter Zijlstra <peterz@infradead.org>
10855 M:      Ingo Molnar <mingo@redhat.com>
10856 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
10857 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10858 R:      Jiri Olsa <jolsa@redhat.com>
10859 R:      Namhyung Kim <namhyung@kernel.org>
10860 L:      linux-kernel@vger.kernel.org
10861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10862 S:      Supported
10863 F:      kernel/events/*
10864 F:      include/linux/perf_event.h
10865 F:      include/uapi/linux/perf_event.h
10866 F:      arch/*/kernel/perf_event*.c
10867 F:      arch/*/kernel/*/perf_event*.c
10868 F:      arch/*/kernel/*/*/perf_event*.c
10869 F:      arch/*/include/asm/perf_event.h
10870 F:      arch/*/kernel/perf_callchain.c
10871 F:      arch/*/events/*
10872 F:      tools/perf/
10873
10874 PERSONALITY HANDLING
10875 M:      Christoph Hellwig <hch@infradead.org>
10876 L:      linux-abi-devel@lists.sourceforge.net
10877 S:      Maintained
10878 F:      include/linux/personality.h
10879 F:      include/uapi/linux/personality.h
10880
10881 PHONET PROTOCOL
10882 M:      Remi Denis-Courmont <courmisch@gmail.com>
10883 S:      Supported
10884 F:      Documentation/networking/phonet.txt
10885 F:      include/linux/phonet.h
10886 F:      include/net/phonet/
10887 F:      include/uapi/linux/phonet.h
10888 F:      net/phonet/
10889
10890 PHRAM MTD DRIVER
10891 M:      Joern Engel <joern@lazybastard.org>
10892 L:      linux-mtd@lists.infradead.org
10893 S:      Maintained
10894 F:      drivers/mtd/devices/phram.c
10895
10896 PICOLCD HID DRIVER
10897 M:      Bruno Prémont <bonbons@linux-vserver.org>
10898 L:      linux-input@vger.kernel.org
10899 S:      Maintained
10900 F:      drivers/hid/hid-picolcd*
10901
10902 PICOXCELL SUPPORT
10903 M:      Jamie Iles <jamie@jamieiles.com>
10904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10905 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10906 S:      Supported
10907 F:      arch/arm/boot/dts/picoxcell*
10908 F:      arch/arm/mach-picoxcell/
10909 F:      drivers/crypto/picoxcell*
10910
10911 PIN CONTROL SUBSYSTEM
10912 M:      Linus Walleij <linus.walleij@linaro.org>
10913 L:      linux-gpio@vger.kernel.org
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10915 S:      Maintained
10916 F:      Documentation/devicetree/bindings/pinctrl/
10917 F:      Documentation/driver-api/pinctl.rst
10918 F:      drivers/pinctrl/
10919 F:      include/linux/pinctrl/
10920
10921 PIN CONTROLLER - ATMEL AT91
10922 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10924 S:      Maintained
10925 F:      drivers/pinctrl/pinctrl-at91.*
10926
10927 PIN CONTROLLER - ATMEL AT91 PIO4
10928 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10930 L:      linux-gpio@vger.kernel.org
10931 S:      Supported
10932 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10933
10934 PIN CONTROLLER - FREESCALE
10935 M:      Dong Aisheng <aisheng.dong@nxp.com>
10936 M:      Fabio Estevam <festevam@gmail.com>
10937 M:      Shawn Guo <shawnguo@kernel.org>
10938 M:      Stefan Agner <stefan@agner.ch>
10939 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10940 L:      linux-gpio@vger.kernel.org
10941 S:      Maintained
10942 F:      drivers/pinctrl/freescale/
10943 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
10944
10945 PIN CONTROLLER - INTEL
10946 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10947 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10948 S:      Maintained
10949 F:      drivers/pinctrl/intel/
10950
10951 PIN CONTROLLER - MEDIATEK
10952 M:      Sean Wang <sean.wang@mediatek.com>
10953 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10954 S:      Maintained
10955 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
10956 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
10957 F:      drivers/pinctrl/mediatek/pinctrl-mtk-common.*
10958 F:      drivers/pinctrl/mediatek/pinctrl-mt2701.c
10959 F:      drivers/pinctrl/mediatek/pinctrl-mt7622.c
10960
10961 PIN CONTROLLER - QUALCOMM
10962 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10963 S:      Maintained
10964 L:      linux-arm-msm@vger.kernel.org
10965 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10966 F:      drivers/pinctrl/qcom/
10967
10968 PIN CONTROLLER - RENESAS
10969 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10970 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10971 L:      linux-renesas-soc@vger.kernel.org
10972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
10973 S:      Maintained
10974 F:      drivers/pinctrl/sh-pfc/
10975
10976 PIN CONTROLLER - SAMSUNG
10977 M:      Tomasz Figa <tomasz.figa@gmail.com>
10978 M:      Krzysztof Kozlowski <krzk@kernel.org>
10979 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10981 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10982 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10984 S:      Maintained
10985 F:      drivers/pinctrl/samsung/
10986 F:      include/dt-bindings/pinctrl/samsung.h
10987 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10988
10989 PIN CONTROLLER - SINGLE
10990 M:      Tony Lindgren <tony@atomide.com>
10991 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
10992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10993 L:      linux-omap@vger.kernel.org
10994 S:      Maintained
10995 F:      drivers/pinctrl/pinctrl-single.c
10996
10997 PIN CONTROLLER - ST SPEAR
10998 M:      Viresh Kumar <vireshk@kernel.org>
10999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11000 W:      http://www.st.com/spear
11001 S:      Maintained
11002 F:      drivers/pinctrl/spear/
11003
11004 PISTACHIO SOC SUPPORT
11005 M:      James Hartley <james.hartley@sondrel.com>
11006 L:      linux-mips@linux-mips.org
11007 S:      Odd Fixes
11008 F:      arch/mips/pistachio/
11009 F:      arch/mips/include/asm/mach-pistachio/
11010 F:      arch/mips/boot/dts/img/pistachio*
11011 F:      arch/mips/configs/pistachio*_defconfig
11012
11013 PKTCDVD DRIVER
11014 S:      Orphan
11015 M:      linux-block@vger.kernel.org
11016 F:      drivers/block/pktcdvd.c
11017 F:      include/linux/pktcdvd.h
11018 F:      include/uapi/linux/pktcdvd.h
11019
11020 PKUNITY SOC DRIVERS
11021 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11022 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11023 S:      Maintained
11024 T:      git git://github.com/gxt/linux.git
11025 F:      drivers/input/serio/i8042-unicore32io.h
11026 F:      drivers/i2c/busses/i2c-puv3.c
11027 F:      drivers/video/fbdev/fb-puv3.c
11028 F:      drivers/rtc/rtc-puv3.c
11029
11030 PMBUS HARDWARE MONITORING DRIVERS
11031 M:      Guenter Roeck <linux@roeck-us.net>
11032 L:      linux-hwmon@vger.kernel.org
11033 W:      http://hwmon.wiki.kernel.org/
11034 W:      http://www.roeck-us.net/linux/drivers/
11035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
11036 S:      Maintained
11037 F:      Documentation/hwmon/pmbus
11038 F:      drivers/hwmon/pmbus/
11039 F:      include/linux/pmbus.h
11040
11041 PMC SIERRA MaxRAID DRIVER
11042 L:      linux-scsi@vger.kernel.org
11043 W:      http://www.pmc-sierra.com/
11044 S:      Orphan
11045 F:      drivers/scsi/pmcraid.*
11046
11047 PMC SIERRA PM8001 DRIVER
11048 M:      Jack Wang <jinpu.wang@profitbricks.com>
11049 M:      lindar_liu@usish.com
11050 L:      linux-scsi@vger.kernel.org
11051 S:      Supported
11052 F:      drivers/scsi/pm8001/
11053
11054 PNP SUPPORT
11055 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
11056 S:      Maintained
11057 F:      drivers/pnp/
11058
11059 POSIX CLOCKS and TIMERS
11060 M:      Thomas Gleixner <tglx@linutronix.de>
11061 L:      linux-kernel@vger.kernel.org
11062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11063 S:      Maintained
11064 F:      fs/timerfd.c
11065 F:      include/linux/timer*
11066 F:      kernel/time/*timer*
11067
11068 POWER MANAGEMENT CORE
11069 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11070 L:      linux-pm@vger.kernel.org
11071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
11072 B:      https://bugzilla.kernel.org
11073 S:      Supported
11074 F:      drivers/base/power/
11075 F:      include/linux/pm.h
11076 F:      include/linux/pm_*
11077 F:      include/linux/powercap.h
11078 F:      drivers/powercap/
11079 F:      kernel/configs/nopm.config
11080
11081 POWER STATE COORDINATION INTERFACE (PSCI)
11082 M:      Mark Rutland <mark.rutland@arm.com>
11083 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11084 L:      linux-arm-kernel@lists.infradead.org
11085 S:      Maintained
11086 F:      drivers/firmware/psci*.c
11087 F:      include/linux/psci.h
11088 F:      include/uapi/linux/psci.h
11089
11090 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
11091 M:      Sebastian Reichel <sre@kernel.org>
11092 L:      linux-pm@vger.kernel.org
11093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11094 S:      Maintained
11095 F:      Documentation/devicetree/bindings/power/supply/
11096 F:      include/linux/power_supply.h
11097 F:      drivers/power/supply/
11098
11099 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
11100 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
11101 L:      linuxppc-dev@lists.ozlabs.org
11102 S:      Maintained
11103 F:      drivers/char/powernv-op-panel.c
11104
11105 PPP OVER ATM (RFC 2364)
11106 M:      Mitchell Blank Jr <mitch@sfgoth.com>
11107 S:      Maintained
11108 F:      net/atm/pppoatm.c
11109 F:      include/uapi/linux/atmppp.h
11110
11111 PPP OVER ETHERNET
11112 M:      Michal Ostrowski <mostrows@earthlink.net>
11113 S:      Maintained
11114 F:      drivers/net/ppp/pppoe.c
11115 F:      drivers/net/ppp/pppox.c
11116
11117 PPP OVER L2TP
11118 M:      James Chapman <jchapman@katalix.com>
11119 S:      Maintained
11120 F:      net/l2tp/l2tp_ppp.c
11121 F:      include/linux/if_pppol2tp.h
11122 F:      include/uapi/linux/if_pppol2tp.h
11123
11124 PPP PROTOCOL DRIVERS AND COMPRESSORS
11125 M:      Paul Mackerras <paulus@samba.org>
11126 L:      linux-ppp@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/ppp/ppp_*
11129
11130 PPS SUPPORT
11131 M:      Rodolfo Giometti <giometti@enneenne.com>
11132 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
11133 L:      linuxpps@ml.enneenne.com (subscribers-only)
11134 S:      Maintained
11135 F:      Documentation/pps/
11136 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
11137 F:      Documentation/ABI/testing/sysfs-pps
11138 F:      drivers/pps/
11139 F:      include/linux/pps*.h
11140 F:      include/uapi/linux/pps.h
11141
11142 PPTP DRIVER
11143 M:      Dmitry Kozlov <xeb@mail.ru>
11144 L:      netdev@vger.kernel.org
11145 S:      Maintained
11146 F:      drivers/net/ppp/pptp.c
11147 W:      http://sourceforge.net/projects/accel-pptp
11148
11149 PREEMPTIBLE KERNEL
11150 M:      Robert Love <rml@tech9.net>
11151 L:      kpreempt-tech@lists.sourceforge.net
11152 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
11153 S:      Supported
11154 F:      Documentation/preempt-locking.txt
11155 F:      include/linux/preempt.h
11156
11157 PRINTK
11158 M:      Petr Mladek <pmladek@suse.com>
11159 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11160 R:      Steven Rostedt <rostedt@goodmis.org>
11161 S:      Maintained
11162 F:      kernel/printk/
11163 F:      include/linux/printk.h
11164
11165 PRISM54 WIRELESS DRIVER
11166 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
11167 L:      linux-wireless@vger.kernel.org
11168 W:      http://wireless.kernel.org/en/users/Drivers/p54
11169 S:      Obsolete
11170 F:      drivers/net/wireless/intersil/prism54/
11171
11172 PROC SYSCTL
11173 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
11174 M:      Kees Cook <keescook@chromium.org>
11175 L:      linux-kernel@vger.kernel.org
11176 L:      linux-fsdevel@vger.kernel.org
11177 S:      Maintained
11178 F:      fs/proc/proc_sysctl.c
11179 F:      include/linux/sysctl.h
11180 F:      kernel/sysctl.c
11181 F:      tools/testing/selftests/sysctl/
11182
11183 PS3 NETWORK SUPPORT
11184 M:      Geoff Levand <geoff@infradead.org>
11185 L:      netdev@vger.kernel.org
11186 L:      linuxppc-dev@lists.ozlabs.org
11187 S:      Maintained
11188 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
11189
11190 PS3 PLATFORM SUPPORT
11191 M:      Geoff Levand <geoff@infradead.org>
11192 L:      linuxppc-dev@lists.ozlabs.org
11193 S:      Maintained
11194 F:      arch/powerpc/boot/ps3*
11195 F:      arch/powerpc/include/asm/lv1call.h
11196 F:      arch/powerpc/include/asm/ps3*.h
11197 F:      arch/powerpc/platforms/ps3/
11198 F:      drivers/*/ps3*
11199 F:      drivers/ps3/
11200 F:      drivers/rtc/rtc-ps3.c
11201 F:      drivers/usb/host/*ps3.c
11202 F:      sound/ppc/snd_ps3*
11203
11204 PS3VRAM DRIVER
11205 M:      Jim Paris <jim@jtan.com>
11206 M:      Geoff Levand <geoff@infradead.org>
11207 L:      linuxppc-dev@lists.ozlabs.org
11208 S:      Maintained
11209 F:      drivers/block/ps3vram.c
11210
11211 PSAMPLE PACKET SAMPLING SUPPORT:
11212 M:      Yotam Gigi <yotam.gi@gmail.com>
11213 S:      Maintained
11214 F:      net/psample
11215 F:      include/net/psample.h
11216 F:      include/uapi/linux/psample.h
11217
11218 PSTORE FILESYSTEM
11219 M:      Kees Cook <keescook@chromium.org>
11220 M:      Anton Vorontsov <anton@enomsg.org>
11221 M:      Colin Cross <ccross@android.com>
11222 M:      Tony Luck <tony.luck@intel.com>
11223 S:      Maintained
11224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11225 F:      fs/pstore/
11226 F:      include/linux/pstore*
11227 F:      drivers/firmware/efi/efi-pstore.c
11228 F:      drivers/acpi/apei/erst.c
11229 F:      Documentation/admin-guide/ramoops.rst
11230 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11231 K:      \b(pstore|ramoops)
11232
11233 PTP HARDWARE CLOCK SUPPORT
11234 M:      Richard Cochran <richardcochran@gmail.com>
11235 L:      netdev@vger.kernel.org
11236 S:      Maintained
11237 W:      http://linuxptp.sourceforge.net/
11238 F:      Documentation/ABI/testing/sysfs-ptp
11239 F:      Documentation/ptp/*
11240 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
11241 F:      drivers/net/phy/dp83640*
11242 F:      drivers/ptp/*
11243 F:      include/linux/ptp_cl*
11244
11245 PTRACE SUPPORT
11246 M:      Oleg Nesterov <oleg@redhat.com>
11247 S:      Maintained
11248 F:      include/asm-generic/syscall.h
11249 F:      include/linux/ptrace.h
11250 F:      include/linux/regset.h
11251 F:      include/linux/tracehook.h
11252 F:      include/uapi/linux/ptrace.h
11253 F:      include/uapi/linux/ptrace.h
11254 F:      include/asm-generic/ptrace.h
11255 F:      kernel/ptrace.c
11256 F:      arch/*/ptrace*.c
11257 F:      arch/*/*/ptrace*.c
11258 F:      arch/*/include/asm/ptrace*.h
11259
11260 PULSE8-CEC DRIVER
11261 M:      Hans Verkuil <hverkuil@xs4all.nl>
11262 L:      linux-media@vger.kernel.org
11263 T:      git git://linuxtv.org/media_tree.git
11264 S:      Maintained
11265 F:      drivers/media/usb/pulse8-cec/*
11266 F:      Documentation/media/cec-drivers/pulse8-cec.rst
11267
11268 PVRUSB2 VIDEO4LINUX DRIVER
11269 M:      Mike Isely <isely@pobox.com>
11270 L:      pvrusb2@isely.net       (subscribers-only)
11271 L:      linux-media@vger.kernel.org
11272 W:      http://www.isely.net/pvrusb2/
11273 T:      git git://linuxtv.org/media_tree.git
11274 S:      Maintained
11275 F:      Documentation/media/v4l-drivers/pvrusb2*
11276 F:      drivers/media/usb/pvrusb2/
11277
11278 PWC WEBCAM DRIVER
11279 M:      Hans Verkuil <hverkuil@xs4all.nl>
11280 L:      linux-media@vger.kernel.org
11281 T:      git git://linuxtv.org/media_tree.git
11282 S:      Odd Fixes
11283 F:      drivers/media/usb/pwc/*
11284
11285 PWM FAN DRIVER
11286 M:      Kamil Debski <kamil@wypas.org>
11287 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11288 L:      linux-hwmon@vger.kernel.org
11289 S:      Supported
11290 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11291 F:      Documentation/hwmon/pwm-fan
11292 F:      drivers/hwmon/pwm-fan.c
11293
11294 PWM IR Transmitter
11295 M:      Sean Young <sean@mess.org>
11296 L:      linux-media@vger.kernel.org
11297 S:      Maintained
11298 F:      drivers/media/rc/pwm-ir-tx.c
11299
11300 PWM SUBSYSTEM
11301 M:      Thierry Reding <thierry.reding@gmail.com>
11302 L:      linux-pwm@vger.kernel.org
11303 S:      Maintained
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11305 F:      Documentation/pwm.txt
11306 F:      Documentation/devicetree/bindings/pwm/
11307 F:      include/linux/pwm.h
11308 F:      drivers/pwm/
11309 F:      drivers/video/backlight/pwm_bl.c
11310 F:      include/linux/pwm_backlight.h
11311 F:      drivers/gpio/gpio-mvebu.c
11312 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11313
11314 PXA GPIO DRIVER
11315 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11316 L:      linux-gpio@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/gpio/gpio-pxa.c
11319
11320 PXA MMCI DRIVER
11321 S:      Orphan
11322
11323 PXA RTC DRIVER
11324 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11325 L:      linux-rtc@vger.kernel.org
11326 S:      Maintained
11327
11328 PXA2xx/PXA3xx SUPPORT
11329 M:      Daniel Mack <daniel@zonque.org>
11330 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
11331 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11333 T:      git git://github.com/hzhuang1/linux.git
11334 T:      git git://github.com/rjarzmik/linux.git
11335 S:      Maintained
11336 F:      arch/arm/boot/dts/pxa*
11337 F:      arch/arm/mach-pxa/
11338 F:      drivers/dma/pxa*
11339 F:      drivers/pcmcia/pxa2xx*
11340 F:      drivers/pinctrl/pxa/
11341 F:      drivers/spi/spi-pxa2xx*
11342 F:      drivers/usb/gadget/udc/pxa2*
11343 F:      include/sound/pxa2xx-lib.h
11344 F:      sound/arm/pxa*
11345 F:      sound/soc/pxa/
11346
11347 PXA3xx NAND FLASH DRIVER
11348 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
11349 L:      linux-mtd@lists.infradead.org
11350 S:      Maintained
11351 F:      drivers/mtd/nand/pxa3xx_nand.c
11352
11353 QAT DRIVER
11354 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11355 L:      qat-linux@intel.com
11356 S:      Supported
11357 F:      drivers/crypto/qat/
11358
11359 QCOM AUDIO (ASoC) DRIVERS
11360 M:      Patrick Lai <plai@codeaurora.org>
11361 M:      Banajit Goswami <bgoswami@codeaurora.org>
11362 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11363 S:      Supported
11364 F:      sound/soc/qcom/
11365
11366 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11367 M:      Gabriel Somlo <somlo@cmu.edu>
11368 M:      "Michael S. Tsirkin" <mst@redhat.com>
11369 L:      qemu-devel@nongnu.org
11370 S:      Maintained
11371 F:      drivers/firmware/qemu_fw_cfg.c
11372
11373 QIB DRIVER
11374 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11375 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11376 L:      linux-rdma@vger.kernel.org
11377 S:      Supported
11378 F:      drivers/infiniband/hw/qib/
11379
11380 QLOGIC QL41xxx FCOE DRIVER
11381 M:      QLogic-Storage-Upstream@cavium.com
11382 L:      linux-scsi@vger.kernel.org
11383 S:      Supported
11384 F:      drivers/scsi/qedf/
11385
11386 QLOGIC QL41xxx ISCSI DRIVER
11387 M:      QLogic-Storage-Upstream@cavium.com
11388 L:      linux-scsi@vger.kernel.org
11389 S:      Supported
11390 F:      drivers/scsi/qedi/
11391
11392 QLOGIC QL4xxx ETHERNET DRIVER
11393 M:      Ariel Elior <Ariel.Elior@cavium.com>
11394 M:      everest-linux-l2@cavium.com
11395 L:      netdev@vger.kernel.org
11396 S:      Supported
11397 F:      drivers/net/ethernet/qlogic/qed/
11398 F:      include/linux/qed/
11399 F:      drivers/net/ethernet/qlogic/qede/
11400
11401 QLOGIC QL4xxx RDMA DRIVER
11402 M:      Michal Kalderon <Michal.Kalderon@cavium.com>
11403 M:      Ariel Elior <Ariel.Elior@cavium.com>
11404 L:      linux-rdma@vger.kernel.org
11405 S:      Supported
11406 F:      drivers/infiniband/hw/qedr/
11407 F:      include/uapi/rdma/qedr-abi.h
11408
11409 QLOGIC QLA1280 SCSI DRIVER
11410 M:      Michael Reed <mdr@sgi.com>
11411 L:      linux-scsi@vger.kernel.org
11412 S:      Maintained
11413 F:      drivers/scsi/qla1280.[ch]
11414
11415 QLOGIC QLA2XXX FC-SCSI DRIVER
11416 M:      qla2xxx-upstream@qlogic.com
11417 L:      linux-scsi@vger.kernel.org
11418 S:      Supported
11419 F:      Documentation/scsi/LICENSE.qla2xxx
11420 F:      drivers/scsi/qla2xxx/
11421
11422 QLOGIC QLA3XXX NETWORK DRIVER
11423 M:      Dept-GELinuxNICDev@cavium.com
11424 L:      netdev@vger.kernel.org
11425 S:      Supported
11426 F:      Documentation/networking/LICENSE.qla3xxx
11427 F:      drivers/net/ethernet/qlogic/qla3xxx.*
11428
11429 QLOGIC QLA4XXX iSCSI DRIVER
11430 M:      QLogic-Storage-Upstream@qlogic.com
11431 L:      linux-scsi@vger.kernel.org
11432 S:      Supported
11433 F:      Documentation/scsi/LICENSE.qla4xxx
11434 F:      drivers/scsi/qla4xxx/
11435
11436 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11437 M:      Harish Patil <harish.patil@cavium.com>
11438 M:      Manish Chopra <manish.chopra@cavium.com>
11439 M:      Dept-GELinuxNICDev@cavium.com
11440 L:      netdev@vger.kernel.org
11441 S:      Supported
11442 F:      drivers/net/ethernet/qlogic/qlcnic/
11443
11444 QLOGIC QLGE 10Gb ETHERNET DRIVER
11445 M:      Harish Patil <harish.patil@cavium.com>
11446 M:      Manish Chopra <manish.chopra@cavium.com>
11447 M:      Dept-GELinuxNICDev@cavium.com
11448 L:      netdev@vger.kernel.org
11449 S:      Supported
11450 F:      drivers/net/ethernet/qlogic/qlge/
11451
11452 QNX4 FILESYSTEM
11453 M:      Anders Larsen <al@alarsen.net>
11454 W:      http://www.alarsen.net/linux/qnx4fs/
11455 S:      Maintained
11456 F:      fs/qnx4/
11457 F:      include/uapi/linux/qnx4_fs.h
11458 F:      include/uapi/linux/qnxtypes.h
11459
11460 QORIQ DPAA2 FSL-MC BUS DRIVER
11461 M:      Stuart Yoder <stuyoder@gmail.com>
11462 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
11463 L:      linux-kernel@vger.kernel.org
11464 S:      Maintained
11465 F:      drivers/staging/fsl-mc/
11466 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11467
11468 QT1010 MEDIA DRIVER
11469 M:      Antti Palosaari <crope@iki.fi>
11470 L:      linux-media@vger.kernel.org
11471 W:      https://linuxtv.org
11472 W:      http://palosaari.fi/linux/
11473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11474 T:      git git://linuxtv.org/anttip/media_tree.git
11475 S:      Maintained
11476 F:      drivers/media/tuners/qt1010*
11477
11478 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11479 M:      Kalle Valo <kvalo@qca.qualcomm.com>
11480 L:      ath10k@lists.infradead.org
11481 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
11482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11483 S:      Supported
11484 F:      drivers/net/wireless/ath/ath10k/
11485
11486 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11487 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11488 L:      linux-wireless@vger.kernel.org
11489 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
11490 S:      Supported
11491 F:      drivers/net/wireless/ath/ath9k/
11492
11493 QUALCOMM CAMERA SUBSYSTEM DRIVER
11494 M:      Todor Tomov <todor.tomov@linaro.org>
11495 L:      linux-media@vger.kernel.org
11496 S:      Maintained
11497 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
11498 F:      Documentation/media/v4l-drivers/qcom_camss.rst
11499 F:      drivers/media/platform/qcom/camss-8x16/
11500
11501 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11502 M:      Timur Tabi <timur@codeaurora.org>
11503 L:      netdev@vger.kernel.org
11504 S:      Supported
11505 F:      drivers/net/ethernet/qualcomm/emac/
11506
11507 QUALCOMM HEXAGON ARCHITECTURE
11508 M:      Richard Kuo <rkuo@codeaurora.org>
11509 L:      linux-hexagon@vger.kernel.org
11510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11511 S:      Supported
11512 F:      arch/hexagon/
11513
11514 QUALCOMM IOMMU
11515 M:      Rob Clark <robdclark@gmail.com>
11516 L:      iommu@lists.linux-foundation.org
11517 L:      linux-arm-msm@vger.kernel.org
11518 S:      Maintained
11519 F:      drivers/iommu/qcom_iommu.c
11520
11521 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11522 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
11523 L:      linux-media@vger.kernel.org
11524 L:      linux-arm-msm@vger.kernel.org
11525 T:      git git://linuxtv.org/media_tree.git
11526 S:      Maintained
11527 F:      drivers/media/platform/qcom/venus/
11528
11529 QUALCOMM WCN36XX WIRELESS DRIVER
11530 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
11531 L:      wcn36xx@lists.infradead.org
11532 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
11533 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
11534 S:      Supported
11535 F:      drivers/net/wireless/ath/wcn36xx/
11536
11537 QUANTENNA QTNFMAC WIRELESS DRIVER
11538 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
11539 M:      Avinash Patil <avinashp@quantenna.com>
11540 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
11541 L:      linux-wireless@vger.kernel.org
11542 S:      Maintained
11543 F:      drivers/net/wireless/quantenna
11544
11545 RADEON and AMDGPU DRM DRIVERS
11546 M:      Alex Deucher <alexander.deucher@amd.com>
11547 M:      Christian König <christian.koenig@amd.com>
11548 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
11549 L:      amd-gfx@lists.freedesktop.org
11550 T:      git git://people.freedesktop.org/~agd5f/linux
11551 S:      Supported
11552 F:      drivers/gpu/drm/radeon/
11553 F:      include/uapi/drm/radeon_drm.h
11554 F:      drivers/gpu/drm/amd/
11555 F:      include/uapi/drm/amdgpu_drm.h
11556
11557 RADEON FRAMEBUFFER DISPLAY DRIVER
11558 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11559 L:      linux-fbdev@vger.kernel.org
11560 S:      Maintained
11561 F:      drivers/video/fbdev/aty/radeon*
11562 F:      include/uapi/linux/radeonfb.h
11563
11564 RADIOSHARK RADIO DRIVER
11565 M:      Hans Verkuil <hverkuil@xs4all.nl>
11566 L:      linux-media@vger.kernel.org
11567 T:      git git://linuxtv.org/media_tree.git
11568 S:      Maintained
11569 F:      drivers/media/radio/radio-shark.c
11570
11571 RADIOSHARK2 RADIO DRIVER
11572 M:      Hans Verkuil <hverkuil@xs4all.nl>
11573 L:      linux-media@vger.kernel.org
11574 T:      git git://linuxtv.org/media_tree.git
11575 S:      Maintained
11576 F:      drivers/media/radio/radio-shark2.c
11577 F:      drivers/media/radio/radio-tea5777.c
11578
11579 RADOS BLOCK DEVICE (RBD)
11580 M:      Ilya Dryomov <idryomov@gmail.com>
11581 M:      Sage Weil <sage@redhat.com>
11582 M:      Alex Elder <elder@kernel.org>
11583 L:      ceph-devel@vger.kernel.org
11584 W:      http://ceph.com/
11585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11586 T:      git git://github.com/ceph/ceph-client.git
11587 S:      Supported
11588 F:      Documentation/ABI/testing/sysfs-bus-rbd
11589 F:      drivers/block/rbd.c
11590 F:      drivers/block/rbd_types.h
11591
11592 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11593 M:      Paul Mackerras <paulus@samba.org>
11594 L:      linux-fbdev@vger.kernel.org
11595 S:      Maintained
11596 F:      drivers/video/fbdev/aty/aty128fb.c
11597
11598 RAINSHADOW-CEC DRIVER
11599 M:      Hans Verkuil <hverkuil@xs4all.nl>
11600 L:      linux-media@vger.kernel.org
11601 T:      git git://linuxtv.org/media_tree.git
11602 S:      Maintained
11603 F:      drivers/media/usb/rainshadow-cec/*
11604
11605 RALINK MIPS ARCHITECTURE
11606 M:      John Crispin <john@phrozen.org>
11607 L:      linux-mips@linux-mips.org
11608 S:      Maintained
11609 F:      arch/mips/ralink
11610
11611 RALINK RT2X00 WIRELESS LAN DRIVER
11612 P:      rt2x00 project
11613 M:      Stanislaw Gruszka <sgruszka@redhat.com>
11614 M:      Helmut Schaa <helmut.schaa@googlemail.com>
11615 L:      linux-wireless@vger.kernel.org
11616 S:      Maintained
11617 F:      drivers/net/wireless/ralink/rt2x00/
11618
11619 RAMDISK RAM BLOCK DEVICE DRIVER
11620 M:      Jens Axboe <axboe@kernel.dk>
11621 S:      Maintained
11622 F:      Documentation/blockdev/ramdisk.txt
11623 F:      drivers/block/brd.c
11624
11625 RANCHU VIRTUAL BOARD FOR MIPS
11626 M:      Miodrag Dinic <miodrag.dinic@mips.com>
11627 L:      linux-mips@linux-mips.org
11628 S:      Supported
11629 F:      arch/mips/generic/board-ranchu.c
11630 F:      arch/mips/configs/generic/board-ranchu.config
11631
11632 RANDOM NUMBER DRIVER
11633 M:      "Theodore Ts'o" <tytso@mit.edu>
11634 S:      Maintained
11635 F:      drivers/char/random.c
11636
11637 RAPIDIO SUBSYSTEM
11638 M:      Matt Porter <mporter@kernel.crashing.org>
11639 M:      Alexandre Bounine <alexandre.bounine@idt.com>
11640 S:      Maintained
11641 F:      drivers/rapidio/
11642
11643 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11644 L:      linux-wireless@vger.kernel.org
11645 S:      Orphan
11646 F:      drivers/net/wireless/ray*
11647
11648 RCUTORTURE TEST FRAMEWORK
11649 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11650 M:      Josh Triplett <josh@joshtriplett.org>
11651 R:      Steven Rostedt <rostedt@goodmis.org>
11652 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11653 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11654 L:      linux-kernel@vger.kernel.org
11655 S:      Supported
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11657 F:      tools/testing/selftests/rcutorture
11658
11659 RDC R-321X SoC
11660 M:      Florian Fainelli <florian@openwrt.org>
11661 S:      Maintained
11662
11663 RDC R6040 FAST ETHERNET DRIVER
11664 M:      Florian Fainelli <f.fainelli@gmail.com>
11665 L:      netdev@vger.kernel.org
11666 S:      Maintained
11667 F:      drivers/net/ethernet/rdc/r6040.c
11668
11669 RDMAVT - RDMA verbs software
11670 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11671 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11672 L:      linux-rdma@vger.kernel.org
11673 S:      Supported
11674 F:      drivers/infiniband/sw/rdmavt
11675
11676 RDS - RELIABLE DATAGRAM SOCKETS
11677 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
11678 L:      netdev@vger.kernel.org
11679 L:      linux-rdma@vger.kernel.org
11680 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
11681 W:      https://oss.oracle.com/projects/rds/
11682 S:      Supported
11683 F:      net/rds/
11684 F:      Documentation/networking/rds.txt
11685
11686 RDT - RESOURCE ALLOCATION
11687 M:      Fenghua Yu <fenghua.yu@intel.com>
11688 L:      linux-kernel@vger.kernel.org
11689 S:      Supported
11690 F:      arch/x86/kernel/cpu/intel_rdt*
11691 F:      arch/x86/include/asm/intel_rdt_sched.h
11692 F:      Documentation/x86/intel_rdt*
11693
11694 READ-COPY UPDATE (RCU)
11695 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11696 M:      Josh Triplett <josh@joshtriplett.org>
11697 R:      Steven Rostedt <rostedt@goodmis.org>
11698 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11699 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11700 L:      linux-kernel@vger.kernel.org
11701 W:      http://www.rdrop.com/users/paulmck/RCU/
11702 S:      Supported
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11704 F:      Documentation/RCU/
11705 X:      Documentation/RCU/torture.txt
11706 F:      include/linux/rcu*
11707 X:      include/linux/srcu.h
11708 F:      kernel/rcu/
11709 X:      kernel/torture.c
11710
11711 REAL TIME CLOCK (RTC) SUBSYSTEM
11712 M:      Alessandro Zummo <a.zummo@towertech.it>
11713 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
11714 L:      linux-rtc@vger.kernel.org
11715 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
11716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11717 S:      Maintained
11718 F:      Documentation/devicetree/bindings/rtc/
11719 F:      Documentation/rtc.txt
11720 F:      drivers/rtc/
11721 F:      include/linux/rtc.h
11722 F:      include/uapi/linux/rtc.h
11723 F:      include/linux/rtc/
11724 F:      include/linux/platform_data/rtc-*
11725 F:      tools/testing/selftests/timers/rtctest.c
11726
11727 REALTEK AUDIO CODECS
11728 M:      Bard Liao <bardliao@realtek.com>
11729 M:      Oder Chiou <oder_chiou@realtek.com>
11730 S:      Maintained
11731 F:      sound/soc/codecs/rt*
11732 F:      include/sound/rt*.h
11733
11734 REGISTER MAP ABSTRACTION
11735 M:      Mark Brown <broonie@kernel.org>
11736 L:      linux-kernel@vger.kernel.org
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11738 S:      Supported
11739 F:      Documentation/devicetree/bindings/regmap/
11740 F:      drivers/base/regmap/
11741 F:      include/linux/regmap.h
11742
11743 REISERFS FILE SYSTEM
11744 L:      reiserfs-devel@vger.kernel.org
11745 S:      Supported
11746 F:      fs/reiserfs/
11747
11748 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11749 M:      Ohad Ben-Cohen <ohad@wizery.com>
11750 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11751 L:      linux-remoteproc@vger.kernel.org
11752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11753 S:      Maintained
11754 F:      Documentation/devicetree/bindings/remoteproc/
11755 F:      Documentation/remoteproc.txt
11756 F:      drivers/remoteproc/
11757 F:      include/linux/remoteproc.h
11758
11759 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11760 M:      Ohad Ben-Cohen <ohad@wizery.com>
11761 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11762 L:      linux-remoteproc@vger.kernel.org
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11764 S:      Maintained
11765 F:      drivers/rpmsg/
11766 F:      Documentation/rpmsg.txt
11767 F:      include/linux/rpmsg.h
11768 F:      include/linux/rpmsg/
11769
11770 RENESAS CLOCK DRIVERS
11771 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11772 L:      linux-renesas-soc@vger.kernel.org
11773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
11774 S:      Supported
11775 F:      drivers/clk/renesas/
11776
11777 RENESAS ETHERNET DRIVERS
11778 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11779 L:      netdev@vger.kernel.org
11780 L:      linux-renesas-soc@vger.kernel.org
11781 F:      Documentation/devicetree/bindings/net/renesas,*.txt
11782 F:      Documentation/devicetree/bindings/net/sh_eth.txt
11783 F:      drivers/net/ethernet/renesas/
11784 F:      include/linux/sh_eth.h
11785
11786 RENESAS R-CAR GYROADC DRIVER
11787 M:      Marek Vasut <marek.vasut@gmail.com>
11788 L:      linux-iio@vger.kernel.org
11789 S:      Supported
11790 F:      drivers/iio/adc/rcar_gyro_adc.c
11791
11792 RENESAS USB PHY DRIVER
11793 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11794 L:      linux-renesas-soc@vger.kernel.org
11795 S:      Maintained
11796 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
11797
11798 RESET CONTROLLER FRAMEWORK
11799 M:      Philipp Zabel <p.zabel@pengutronix.de>
11800 T:      git git://git.pengutronix.de/git/pza/linux
11801 S:      Maintained
11802 F:      drivers/reset/
11803 F:      Documentation/devicetree/bindings/reset/
11804 F:      include/dt-bindings/reset/
11805 F:      include/linux/reset.h
11806 F:      include/linux/reset-controller.h
11807
11808 RFKILL
11809 M:      Johannes Berg <johannes@sipsolutions.net>
11810 L:      linux-wireless@vger.kernel.org
11811 W:      http://wireless.kernel.org/
11812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11814 S:      Maintained
11815 F:      Documentation/rfkill.txt
11816 F:      Documentation/ABI/stable/sysfs-class-rfkill
11817 F:      net/rfkill/
11818
11819 RHASHTABLE
11820 M:      Thomas Graf <tgraf@suug.ch>
11821 M:      Herbert Xu <herbert@gondor.apana.org.au>
11822 L:      netdev@vger.kernel.org
11823 S:      Maintained
11824 F:      lib/rhashtable.c
11825 F:      include/linux/rhashtable.h
11826
11827 RICOH R5C592 MEMORYSTICK DRIVER
11828 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11829 S:      Maintained
11830 F:      drivers/memstick/host/r592.*
11831
11832 RICOH SMARTMEDIA/XD DRIVER
11833 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11834 S:      Maintained
11835 F:      drivers/mtd/nand/r852.c
11836 F:      drivers/mtd/nand/r852.h
11837
11838 RISC-V ARCHITECTURE
11839 M:      Palmer Dabbelt <palmer@sifive.com>
11840 M:      Albert Ou <albert@sifive.com>
11841 L:      linux-riscv@lists.infradead.org
11842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
11843 S:      Supported
11844 F:      arch/riscv/
11845 K:      riscv
11846 N:      riscv
11847
11848 ROCCAT DRIVERS
11849 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
11850 W:      http://sourceforge.net/projects/roccat/
11851 S:      Maintained
11852 F:      drivers/hid/hid-roccat*
11853 F:      include/linux/hid-roccat*
11854 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
11855
11856 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
11857 M:      Jacob chen <jacob2.chen@rock-chips.com>
11858 L:      linux-media@vger.kernel.org
11859 S:      Maintained
11860 F:      drivers/media/platform/rockchip/rga/
11861 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
11862
11863 ROCKER DRIVER
11864 M:      Jiri Pirko <jiri@resnulli.us>
11865 L:      netdev@vger.kernel.org
11866 S:      Supported
11867 F:      drivers/net/ethernet/rocker/
11868
11869 ROCKETPORT DRIVER
11870 P:      Comtrol Corp.
11871 W:      http://www.comtrol.com
11872 S:      Maintained
11873 F:      Documentation/serial/rocket.txt
11874 F:      drivers/tty/rocket*
11875
11876 ROCKETPORT EXPRESS/INFINITY DRIVER
11877 M:      Kevin Cernekee <cernekee@gmail.com>
11878 L:      linux-serial@vger.kernel.org
11879 S:      Odd Fixes
11880 F:      drivers/tty/serial/rp2.*
11881
11882 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11883 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
11884 L:      linux-kernel@vger.kernel.org
11885 L:      linux-renesas-soc@vger.kernel.org
11886 S:      Supported
11887 F:      drivers/mfd/bd9571mwv.c
11888 F:      drivers/regulator/bd9571mwv-regulator.c
11889 F:      drivers/gpio/gpio-bd9571mwv.c
11890 F:      include/linux/mfd/bd9571mwv.h
11891 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11892
11893 ROSE NETWORK LAYER
11894 M:      Ralf Baechle <ralf@linux-mips.org>
11895 L:      linux-hams@vger.kernel.org
11896 W:      http://www.linux-ax25.org/
11897 S:      Maintained
11898 F:      include/net/rose.h
11899 F:      include/uapi/linux/rose.h
11900 F:      net/rose/
11901
11902 RTL2830 MEDIA DRIVER
11903 M:      Antti Palosaari <crope@iki.fi>
11904 L:      linux-media@vger.kernel.org
11905 W:      https://linuxtv.org
11906 W:      http://palosaari.fi/linux/
11907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11908 T:      git git://linuxtv.org/anttip/media_tree.git
11909 S:      Maintained
11910 F:      drivers/media/dvb-frontends/rtl2830*
11911
11912 RTL2832 MEDIA DRIVER
11913 M:      Antti Palosaari <crope@iki.fi>
11914 L:      linux-media@vger.kernel.org
11915 W:      https://linuxtv.org
11916 W:      http://palosaari.fi/linux/
11917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11918 T:      git git://linuxtv.org/anttip/media_tree.git
11919 S:      Maintained
11920 F:      drivers/media/dvb-frontends/rtl2832*
11921
11922 RTL2832_SDR MEDIA DRIVER
11923 M:      Antti Palosaari <crope@iki.fi>
11924 L:      linux-media@vger.kernel.org
11925 W:      https://linuxtv.org
11926 W:      http://palosaari.fi/linux/
11927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11928 T:      git git://linuxtv.org/anttip/media_tree.git
11929 S:      Maintained
11930 F:      drivers/media/dvb-frontends/rtl2832_sdr*
11931
11932 RTL8180 WIRELESS DRIVER
11933 L:      linux-wireless@vger.kernel.org
11934 W:      http://wireless.kernel.org/
11935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11936 S:      Orphan
11937 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
11938
11939 RTL8187 WIRELESS DRIVER
11940 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11941 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
11942 M:      Larry Finger <Larry.Finger@lwfinger.net>
11943 L:      linux-wireless@vger.kernel.org
11944 W:      http://wireless.kernel.org/
11945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11946 S:      Maintained
11947 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
11948
11949 REALTEK WIRELESS DRIVER (rtlwifi family)
11950 M:      Ping-Ke Shih <pkshih@realtek.com>
11951 L:      linux-wireless@vger.kernel.org
11952 W:      http://wireless.kernel.org/
11953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11954 S:      Maintained
11955 F:      drivers/net/wireless/realtek/rtlwifi/
11956
11957 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11958 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
11959 L:      linux-wireless@vger.kernel.org
11960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11961 S:      Maintained
11962 F:      drivers/net/wireless/realtek/rtl8xxxu/
11963
11964 RXRPC SOCKETS (AF_RXRPC)
11965 M:      David Howells <dhowells@redhat.com>
11966 L:      linux-afs@lists.infradead.org
11967 S:      Supported
11968 F:      net/rxrpc/
11969 F:      include/keys/rxrpc-type.h
11970 F:      include/net/af_rxrpc.h
11971 F:      include/trace/events/rxrpc.h
11972 F:      include/uapi/linux/rxrpc.h
11973 F:      Documentation/networking/rxrpc.txt
11974 W:      https://www.infradead.org/~dhowells/kafs/
11975
11976 S3 SAVAGE FRAMEBUFFER DRIVER
11977 M:      Antonino Daplas <adaplas@gmail.com>
11978 L:      linux-fbdev@vger.kernel.org
11979 S:      Maintained
11980 F:      drivers/video/fbdev/savage/
11981
11982 S390
11983 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
11984 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
11985 L:      linux-s390@vger.kernel.org
11986 W:      http://www.ibm.com/developerworks/linux/linux390/
11987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11988 S:      Supported
11989 F:      arch/s390/
11990 F:      drivers/s390/
11991 F:      Documentation/s390/
11992 F:      Documentation/driver-api/s390-drivers.rst
11993
11994 S390 COMMON I/O LAYER
11995 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11996 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11997 L:      linux-s390@vger.kernel.org
11998 W:      http://www.ibm.com/developerworks/linux/linux390/
11999 S:      Supported
12000 F:      drivers/s390/cio/
12001
12002 S390 DASD DRIVER
12003 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
12004 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
12005 L:      linux-s390@vger.kernel.org
12006 W:      http://www.ibm.com/developerworks/linux/linux390/
12007 S:      Supported
12008 F:      drivers/s390/block/dasd*
12009 F:      block/partitions/ibm.c
12010
12011 S390 IOMMU (PCI)
12012 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
12013 L:      linux-s390@vger.kernel.org
12014 W:      http://www.ibm.com/developerworks/linux/linux390/
12015 S:      Supported
12016 F:      drivers/iommu/s390-iommu.c
12017
12018 S390 IUCV NETWORK LAYER
12019 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
12020 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12021 L:      linux-s390@vger.kernel.org
12022 W:      http://www.ibm.com/developerworks/linux/linux390/
12023 S:      Supported
12024 F:      drivers/s390/net/*iucv*
12025 F:      include/net/iucv/
12026 F:      net/iucv/
12027
12028 S390 NETWORK DRIVERS
12029 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
12030 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12031 L:      linux-s390@vger.kernel.org
12032 W:      http://www.ibm.com/developerworks/linux/linux390/
12033 S:      Supported
12034 F:      drivers/s390/net/
12035
12036 S390 PCI SUBSYSTEM
12037 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
12038 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
12039 L:      linux-s390@vger.kernel.org
12040 W:      http://www.ibm.com/developerworks/linux/linux390/
12041 S:      Supported
12042 F:      arch/s390/pci/
12043 F:      drivers/pci/hotplug/s390_pci_hpc.c
12044
12045 S390 VFIO-CCW DRIVER
12046 M:      Cornelia Huck <cohuck@redhat.com>
12047 M:      Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
12048 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
12049 L:      linux-s390@vger.kernel.org
12050 L:      kvm@vger.kernel.org
12051 S:      Supported
12052 F:      drivers/s390/cio/vfio_ccw*
12053 F:      Documentation/s390/vfio-ccw.txt
12054 F:      include/uapi/linux/vfio_ccw.h
12055
12056 S390 ZCRYPT DRIVER
12057 M:      Harald Freudenberger <freude@de.ibm.com>
12058 L:      linux-s390@vger.kernel.org
12059 W:      http://www.ibm.com/developerworks/linux/linux390/
12060 S:      Supported
12061 F:      drivers/s390/crypto/
12062
12063 S390 ZFCP DRIVER
12064 M:      Steffen Maier <maier@linux.vnet.ibm.com>
12065 M:      Benjamin Block <bblock@linux.vnet.ibm.com>
12066 L:      linux-s390@vger.kernel.org
12067 W:      http://www.ibm.com/developerworks/linux/linux390/
12068 S:      Supported
12069 F:      drivers/s390/scsi/zfcp_*
12070
12071 S3C24XX SD/MMC Driver
12072 M:      Ben Dooks <ben-linux@fluff.org>
12073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12074 S:      Supported
12075 F:      drivers/mmc/host/s3cmci.*
12076
12077 SAA6588 RDS RECEIVER DRIVER
12078 M:      Hans Verkuil <hverkuil@xs4all.nl>
12079 L:      linux-media@vger.kernel.org
12080 T:      git git://linuxtv.org/media_tree.git
12081 W:      https://linuxtv.org
12082 S:      Odd Fixes
12083 F:      drivers/media/i2c/saa6588*
12084
12085 SAA7134 VIDEO4LINUX DRIVER
12086 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12087 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12088 L:      linux-media@vger.kernel.org
12089 W:      https://linuxtv.org
12090 T:      git git://linuxtv.org/media_tree.git
12091 S:      Odd fixes
12092 F:      Documentation/media/v4l-drivers/saa7134*
12093 F:      drivers/media/pci/saa7134/
12094
12095 SAA7146 VIDEO4LINUX-2 DRIVER
12096 M:      Hans Verkuil <hverkuil@xs4all.nl>
12097 L:      linux-media@vger.kernel.org
12098 T:      git git://linuxtv.org/media_tree.git
12099 S:      Maintained
12100 F:      drivers/media/common/saa7146/
12101 F:      drivers/media/pci/saa7146/
12102 F:      include/media/saa7146*
12103
12104 SAMSUNG AUDIO (ASoC) DRIVERS
12105 M:      Krzysztof Kozlowski <krzk@kernel.org>
12106 M:      Sangbeom Kim <sbkim73@samsung.com>
12107 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12109 S:      Supported
12110 F:      sound/soc/samsung/
12111 F:      Documentation/devicetree/bindings/sound/samsung*
12112
12113 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
12114 M:      Krzysztof Kozlowski <krzk@kernel.org>
12115 L:      linux-crypto@vger.kernel.org
12116 L:      linux-samsung-soc@vger.kernel.org
12117 S:      Maintained
12118 F:      drivers/crypto/exynos-rng.c
12119 F:      Documentation/devicetree/bindings/crypto/samsung,exynos-rng4.txt
12120
12121 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
12122 M:      Łukasz Stelmach <l.stelmach@samsung.com>
12123 L:      linux-samsung-soc@vger.kernel.org
12124 S:      Maintained
12125 F:      drivers/char/hw_random/exynos-trng.c
12126 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
12127
12128 SAMSUNG FRAMEBUFFER DRIVER
12129 M:      Jingoo Han <jingoohan1@gmail.com>
12130 L:      linux-fbdev@vger.kernel.org
12131 S:      Maintained
12132 F:      drivers/video/fbdev/s3c-fb.c
12133
12134 SAMSUNG LAPTOP DRIVER
12135 M:      Corentin Chary <corentin.chary@gmail.com>
12136 L:      platform-driver-x86@vger.kernel.org
12137 S:      Maintained
12138 F:      drivers/platform/x86/samsung-laptop.c
12139
12140 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
12141 M:      Sangbeom Kim <sbkim73@samsung.com>
12142 M:      Krzysztof Kozlowski <krzk@kernel.org>
12143 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12144 L:      linux-kernel@vger.kernel.org
12145 L:      linux-samsung-soc@vger.kernel.org
12146 S:      Supported
12147 F:      drivers/mfd/sec*.c
12148 F:      drivers/regulator/s2m*.c
12149 F:      drivers/regulator/s5m*.c
12150 F:      drivers/clk/clk-s2mps11.c
12151 F:      drivers/rtc/rtc-s5m.c
12152 F:      include/linux/mfd/samsung/
12153 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
12154 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
12155 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
12156 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
12157
12158 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
12159 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
12160 L:      linux-media@vger.kernel.org
12161 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12162 S:      Maintained
12163 F:      drivers/media/platform/s3c-camif/
12164 F:      include/media/drv-intf/s3c_camif.h
12165
12166 SAMSUNG S3FWRN5 NFC DRIVER
12167 M:      Robert Baldyga <r.baldyga@samsung.com>
12168 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
12169 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12170 S:      Supported
12171 F:      drivers/nfc/s3fwrn5
12172
12173 SAMSUNG S5C73M3 CAMERA DRIVER
12174 M:      Kyungmin Park <kyungmin.park@samsung.com>
12175 M:      Andrzej Hajda <a.hajda@samsung.com>
12176 L:      linux-media@vger.kernel.org
12177 S:      Supported
12178 F:      drivers/media/i2c/s5c73m3/*
12179
12180 SAMSUNG S5K5BAF CAMERA DRIVER
12181 M:      Kyungmin Park <kyungmin.park@samsung.com>
12182 M:      Andrzej Hajda <a.hajda@samsung.com>
12183 L:      linux-media@vger.kernel.org
12184 S:      Supported
12185 F:      drivers/media/i2c/s5k5baf.c
12186
12187 SAMSUNG S5P Security SubSystem (SSS) DRIVER
12188 M:      Krzysztof Kozlowski <krzk@kernel.org>
12189 M:      Vladimir Zapolskiy <vz@mleia.com>
12190 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
12191 L:      linux-crypto@vger.kernel.org
12192 L:      linux-samsung-soc@vger.kernel.org
12193 S:      Maintained
12194 F:      drivers/crypto/s5p-sss.c
12195
12196 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12197 M:      Kyungmin Park <kyungmin.park@samsung.com>
12198 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12199 L:      linux-media@vger.kernel.org
12200 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
12201 S:      Supported
12202 F:      drivers/media/platform/exynos4-is/
12203
12204 SAMSUNG SOC CLOCK DRIVERS
12205 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12206 M:      Tomasz Figa <tomasz.figa@gmail.com>
12207 M:      Chanwoo Choi <cw00.choi@samsung.com>
12208 S:      Supported
12209 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12210 F:      drivers/clk/samsung/
12211 F:      include/dt-bindings/clock/exynos*.h
12212 F:      Documentation/devicetree/bindings/clock/exynos*.txt
12213
12214 SAMSUNG SPI DRIVERS
12215 M:      Kukjin Kim <kgene@kernel.org>
12216 M:      Krzysztof Kozlowski <krzk@kernel.org>
12217 M:      Andi Shyti <andi.shyti@samsung.com>
12218 L:      linux-spi@vger.kernel.org
12219 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12220 S:      Maintained
12221 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
12222 F:      drivers/spi/spi-s3c*
12223 F:      include/linux/platform_data/spi-s3c64xx.h
12224
12225 SAMSUNG SXGBE DRIVERS
12226 M:      Byungho An <bh74.an@samsung.com>
12227 M:      Girish K S <ks.giri@samsung.com>
12228 M:      Vipul Pandya <vipul.pandya@samsung.com>
12229 S:      Supported
12230 L:      netdev@vger.kernel.org
12231 F:      drivers/net/ethernet/samsung/sxgbe/
12232
12233 SAMSUNG THERMAL DRIVER
12234 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12235 L:      linux-pm@vger.kernel.org
12236 L:      linux-samsung-soc@vger.kernel.org
12237 S:      Supported
12238 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
12239 F:      drivers/thermal/samsung/
12240
12241 SAMSUNG USB2 PHY DRIVER
12242 M:      Kamil Debski <kamil@wypas.org>
12243 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12244 L:      linux-kernel@vger.kernel.org
12245 S:      Supported
12246 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
12247 F:      Documentation/phy/samsung-usb2.txt
12248 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
12249 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
12250 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
12251 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
12252 F:      drivers/phy/samsung/phy-samsung-usb2.c
12253 F:      drivers/phy/samsung/phy-samsung-usb2.h
12254
12255 SC1200 WDT DRIVER
12256 M:      Zwane Mwaikambo <zwanem@gmail.com>
12257 S:      Maintained
12258 F:      drivers/watchdog/sc1200wdt.c
12259
12260 SCHEDULER
12261 M:      Ingo Molnar <mingo@redhat.com>
12262 M:      Peter Zijlstra <peterz@infradead.org>
12263 L:      linux-kernel@vger.kernel.org
12264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12265 S:      Maintained
12266 F:      kernel/sched/
12267 F:      include/linux/sched.h
12268 F:      include/uapi/linux/sched.h
12269 F:      include/linux/wait.h
12270
12271 SCORE ARCHITECTURE
12272 M:      Chen Liqin <liqin.linux@gmail.com>
12273 M:      Lennox Wu <lennox.wu@gmail.com>
12274 W:      http://www.sunplus.com
12275 S:      Supported
12276 F:      arch/score/
12277
12278 SCR24X CHIP CARD INTERFACE DRIVER
12279 M:      Lubomir Rintel <lkundrak@v3.sk>
12280 S:      Supported
12281 F:      drivers/char/pcmcia/scr24x_cs.c
12282
12283 SCSI CDROM DRIVER
12284 M:      Jens Axboe <axboe@kernel.dk>
12285 L:      linux-scsi@vger.kernel.org
12286 W:      http://www.kernel.dk
12287 S:      Maintained
12288 F:      drivers/scsi/sr*
12289
12290 SCSI RDMA PROTOCOL (SRP) INITIATOR
12291 M:      Bart Van Assche <bart.vanassche@sandisk.com>
12292 L:      linux-rdma@vger.kernel.org
12293 S:      Supported
12294 W:      http://www.openfabrics.org
12295 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
12297 F:      drivers/infiniband/ulp/srp/
12298 F:      include/scsi/srp.h
12299
12300 SCSI SG DRIVER
12301 M:      Doug Gilbert <dgilbert@interlog.com>
12302 L:      linux-scsi@vger.kernel.org
12303 W:      http://sg.danny.cz/sg
12304 S:      Maintained
12305 F:      Documentation/scsi/scsi-generic.txt
12306 F:      drivers/scsi/sg.c
12307 F:      include/scsi/sg.h
12308
12309 SCSI SUBSYSTEM
12310 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12312 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
12313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12314 L:      linux-scsi@vger.kernel.org
12315 S:      Maintained
12316 F:      Documentation/devicetree/bindings/scsi/
12317 F:      drivers/scsi/
12318 F:      include/scsi/
12319
12320 SCSI TAPE DRIVER
12321 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12322 L:      linux-scsi@vger.kernel.org
12323 S:      Maintained
12324 F:      Documentation/scsi/st.txt
12325 F:      drivers/scsi/st.*
12326 F:      drivers/scsi/st_*.h
12327
12328 SCTP PROTOCOL
12329 M:      Vlad Yasevich <vyasevich@gmail.com>
12330 M:      Neil Horman <nhorman@tuxdriver.com>
12331 L:      linux-sctp@vger.kernel.org
12332 W:      http://lksctp.sourceforge.net
12333 S:      Maintained
12334 F:      Documentation/networking/sctp.txt
12335 F:      include/linux/sctp.h
12336 F:      include/uapi/linux/sctp.h
12337 F:      include/net/sctp/
12338 F:      net/sctp/
12339
12340 SCx200 CPU SUPPORT
12341 M:      Jim Cromie <jim.cromie@gmail.com>
12342 S:      Odd Fixes
12343 F:      Documentation/i2c/busses/scx200_acb
12344 F:      arch/x86/platform/scx200/
12345 F:      drivers/watchdog/scx200_wdt.c
12346 F:      drivers/i2c/busses/scx200*
12347 F:      drivers/mtd/maps/scx200_docflash.c
12348 F:      include/linux/scx200.h
12349
12350 SCx200 GPIO DRIVER
12351 M:      Jim Cromie <jim.cromie@gmail.com>
12352 S:      Maintained
12353 F:      drivers/char/scx200_gpio.c
12354 F:      include/linux/scx200_gpio.h
12355
12356 SCx200 HRT CLOCKSOURCE DRIVER
12357 M:      Jim Cromie <jim.cromie@gmail.com>
12358 S:      Maintained
12359 F:      drivers/clocksource/scx200_hrt.c
12360
12361 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12362 M:      Sascha Sommer <saschasommer@freenet.de>
12363 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12364 S:      Maintained
12365 F:      drivers/mmc/host/sdricoh_cs.c
12366
12367 SECURE COMPUTING
12368 M:      Kees Cook <keescook@chromium.org>
12369 R:      Andy Lutomirski <luto@amacapital.net>
12370 R:      Will Drewry <wad@chromium.org>
12371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12372 S:      Supported
12373 F:      kernel/seccomp.c
12374 F:      include/uapi/linux/seccomp.h
12375 F:      include/linux/seccomp.h
12376 F:      tools/testing/selftests/seccomp/*
12377 F:      tools/testing/selftests/kselftest_harness.h
12378 F:      Documentation/userspace-api/seccomp_filter.rst
12379 K:      \bsecure_computing
12380 K:      \bTIF_SECCOMP\b
12381
12382 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12383 M:      Al Cooper <alcooperx@gmail.com>
12384 L:      linux-mmc@vger.kernel.org
12385 L:      bcm-kernel-feedback-list@broadcom.com
12386 S:      Maintained
12387 F:      drivers/mmc/host/sdhci-brcmstb*
12388
12389 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12390 M:      Adrian Hunter <adrian.hunter@intel.com>
12391 L:      linux-mmc@vger.kernel.org
12392 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
12393 S:      Maintained
12394 F:      drivers/mmc/host/sdhci*
12395 F:      include/linux/mmc/sdhci*
12396
12397 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12398 M:      Ben Dooks <ben-linux@fluff.org>
12399 M:      Jaehoon Chung <jh80.chung@samsung.com>
12400 L:      linux-mmc@vger.kernel.org
12401 S:      Maintained
12402 F:      drivers/mmc/host/sdhci-s3c*
12403
12404 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12405 M:      Viresh Kumar <vireshk@kernel.org>
12406 L:      linux-mmc@vger.kernel.org
12407 S:      Maintained
12408 F:      drivers/mmc/host/sdhci-spear.c
12409
12410 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12411 M:      Kishon Vijay Abraham I <kishon@ti.com>
12412 L:      linux-mmc@vger.kernel.org
12413 S:      Maintained
12414 F:      drivers/mmc/host/sdhci-omap.c
12415
12416 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12417 M:      Scott Bauer <scott.bauer@intel.com>
12418 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12419 L:      linux-block@vger.kernel.org
12420 S:      Supported
12421 F:      block/sed*
12422 F:      block/opal_proto.h
12423 F:      include/linux/sed*
12424 F:      include/uapi/linux/sed*
12425
12426 SECURITY CONTACT
12427 M:      Security Officers <security@kernel.org>
12428 S:      Supported
12429
12430 SECURITY SUBSYSTEM
12431 M:      James Morris <jmorris@namei.org>
12432 M:      "Serge E. Hallyn" <serge@hallyn.com>
12433 L:      linux-security-module@vger.kernel.org (suggested Cc:)
12434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12435 W:      http://kernsec.org/
12436 S:      Supported
12437 F:      security/
12438
12439 SELINUX SECURITY MODULE
12440 M:      Paul Moore <paul@paul-moore.com>
12441 M:      Stephen Smalley <sds@tycho.nsa.gov>
12442 M:      Eric Paris <eparis@parisplace.org>
12443 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
12444 W:      https://selinuxproject.org
12445 W:      https://github.com/SELinuxProject
12446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12447 S:      Supported
12448 F:      include/linux/selinux*
12449 F:      security/selinux/
12450 F:      scripts/selinux/
12451 F:      Documentation/admin-guide/LSM/SELinux.rst
12452
12453 SENSABLE PHANTOM
12454 M:      Jiri Slaby <jirislaby@gmail.com>
12455 S:      Maintained
12456 F:      drivers/misc/phantom.c
12457 F:      include/uapi/linux/phantom.h
12458
12459 SERIAL DEVICE BUS
12460 M:      Rob Herring <robh@kernel.org>
12461 L:      linux-serial@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/devicetree/bindings/serial/slave-device.txt
12464 F:      drivers/tty/serdev/
12465 F:      include/linux/serdev.h
12466
12467 SERIAL DRIVERS
12468 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12469 L:      linux-serial@vger.kernel.org
12470 S:      Maintained
12471 F:      Documentation/devicetree/bindings/serial/
12472 F:      drivers/tty/serial/
12473
12474 SERIAL IR RECEIVER
12475 M:      Sean Young <sean@mess.org>
12476 L:      linux-media@vger.kernel.org
12477 S:      Maintained
12478 F:      drivers/media/rc/serial_ir.c
12479
12480 SFC NETWORK DRIVER
12481 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12482 M:      Edward Cree <ecree@solarflare.com>
12483 M:      Bert Kenward <bkenward@solarflare.com>
12484 L:      netdev@vger.kernel.org
12485 S:      Supported
12486 F:      drivers/net/ethernet/sfc/
12487
12488 SGI GRU DRIVER
12489 M:      Dimitri Sivanich <sivanich@sgi.com>
12490 S:      Maintained
12491 F:      drivers/misc/sgi-gru/
12492
12493 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12494 M:      Pat Gefre <pfg@sgi.com>
12495 L:      linux-ia64@vger.kernel.org
12496 S:      Supported
12497 F:      Documentation/ia64/serial.txt
12498 F:      drivers/tty/serial/ioc?_serial.c
12499 F:      include/linux/ioc?.h
12500
12501 SGI XP/XPC/XPNET DRIVER
12502 M:      Cliff Whickman <cpw@sgi.com>
12503 M:      Robin Holt <robinmholt@gmail.com>
12504 S:      Maintained
12505 F:      drivers/misc/sgi-xp/
12506
12507 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12508 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12509 L:      linux-s390@vger.kernel.org
12510 W:      http://www.ibm.com/developerworks/linux/linux390/
12511 S:      Supported
12512 F:      net/smc/
12513
12514 SH_VEU V4L2 MEM2MEM DRIVER
12515 L:      linux-media@vger.kernel.org
12516 S:      Orphan
12517 F:      drivers/media/platform/sh_veu.c
12518
12519 SH_VOU V4L2 OUTPUT DRIVER
12520 L:      linux-media@vger.kernel.org
12521 S:      Orphan
12522 F:      drivers/media/platform/sh_vou.c
12523 F:      include/media/drv-intf/sh_vou.h
12524
12525 SI2157 MEDIA DRIVER
12526 M:      Antti Palosaari <crope@iki.fi>
12527 L:      linux-media@vger.kernel.org
12528 W:      https://linuxtv.org
12529 W:      http://palosaari.fi/linux/
12530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12531 T:      git git://linuxtv.org/anttip/media_tree.git
12532 S:      Maintained
12533 F:      drivers/media/tuners/si2157*
12534
12535 SI2165 MEDIA DRIVER
12536 M:      Matthias Schwarzott <zzam@gentoo.org>
12537 L:      linux-media@vger.kernel.org
12538 W:      https://linuxtv.org
12539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12540 S:      Maintained
12541 F:      drivers/media/dvb-frontends/si2165*
12542
12543 SI2168 MEDIA DRIVER
12544 M:      Antti Palosaari <crope@iki.fi>
12545 L:      linux-media@vger.kernel.org
12546 W:      https://linuxtv.org
12547 W:      http://palosaari.fi/linux/
12548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12549 T:      git git://linuxtv.org/anttip/media_tree.git
12550 S:      Maintained
12551 F:      drivers/media/dvb-frontends/si2168*
12552
12553 SI470X FM RADIO RECEIVER I2C DRIVER
12554 M:      Hans Verkuil <hverkuil@xs4all.nl>
12555 L:      linux-media@vger.kernel.org
12556 T:      git git://linuxtv.org/media_tree.git
12557 W:      https://linuxtv.org
12558 S:      Odd Fixes
12559 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
12560
12561 SI470X FM RADIO RECEIVER USB DRIVER
12562 M:      Hans Verkuil <hverkuil@xs4all.nl>
12563 L:      linux-media@vger.kernel.org
12564 T:      git git://linuxtv.org/media_tree.git
12565 W:      https://linuxtv.org
12566 S:      Maintained
12567 F:      drivers/media/radio/si470x/radio-si470x-common.c
12568 F:      drivers/media/radio/si470x/radio-si470x.h
12569 F:      drivers/media/radio/si470x/radio-si470x-usb.c
12570
12571 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12572 M:      Eduardo Valentin <edubezval@gmail.com>
12573 L:      linux-media@vger.kernel.org
12574 T:      git git://linuxtv.org/media_tree.git
12575 W:      https://linuxtv.org
12576 S:      Odd Fixes
12577 F:      drivers/media/radio/si4713/si4713.?
12578
12579 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12580 M:      Eduardo Valentin <edubezval@gmail.com>
12581 L:      linux-media@vger.kernel.org
12582 T:      git git://linuxtv.org/media_tree.git
12583 W:      https://linuxtv.org
12584 S:      Odd Fixes
12585 F:      drivers/media/radio/si4713/radio-platform-si4713.c
12586
12587 SI4713 FM RADIO TRANSMITTER USB DRIVER
12588 M:      Hans Verkuil <hverkuil@xs4all.nl>
12589 L:      linux-media@vger.kernel.org
12590 T:      git git://linuxtv.org/media_tree.git
12591 W:      https://linuxtv.org
12592 S:      Maintained
12593 F:      drivers/media/radio/si4713/radio-usb-si4713.c
12594
12595 SIANO DVB DRIVER
12596 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12597 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12598 L:      linux-media@vger.kernel.org
12599 W:      https://linuxtv.org
12600 T:      git git://linuxtv.org/media_tree.git
12601 S:      Odd fixes
12602 F:      drivers/media/common/siano/
12603 F:      drivers/media/usb/siano/
12604 F:      drivers/media/usb/siano/
12605 F:      drivers/media/mmc/siano/
12606
12607 SILEAD TOUCHSCREEN DRIVER
12608 M:      Hans de Goede <hdegoede@redhat.com>
12609 L:      linux-input@vger.kernel.org
12610 L:      platform-driver-x86@vger.kernel.org
12611 S:      Maintained
12612 F:      drivers/input/touchscreen/silead.c
12613 F:      drivers/platform/x86/silead_dmi.c
12614
12615 SILICON MOTION SM712 FRAME BUFFER DRIVER
12616 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12617 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12618 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12619 L:      linux-fbdev@vger.kernel.org
12620 S:      Maintained
12621 F:      drivers/video/fbdev/sm712*
12622 F:      Documentation/fb/sm712fb.txt
12623
12624 SIMPLE FIRMWARE INTERFACE (SFI)
12625 M:      Len Brown <lenb@kernel.org>
12626 L:      sfi-devel@simplefirmware.org
12627 W:      http://simplefirmware.org/
12628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12629 S:      Supported
12630 F:      arch/x86/platform/sfi/
12631 F:      drivers/sfi/
12632 F:      include/linux/sfi*.h
12633
12634 SIMPLEFB FB DRIVER
12635 M:      Hans de Goede <hdegoede@redhat.com>
12636 L:      linux-fbdev@vger.kernel.org
12637 S:      Maintained
12638 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
12639 F:      drivers/video/fbdev/simplefb.c
12640 F:      include/linux/platform_data/simplefb.h
12641
12642 SIMTEC EB110ATX (Chalice CATS)
12643 P:      Ben Dooks
12644 P:      Vincent Sanders <vince@simtec.co.uk>
12645 M:      Simtec Linux Team <linux@simtec.co.uk>
12646 W:      http://www.simtec.co.uk/products/EB110ATX/
12647 S:      Supported
12648
12649 SIMTEC EB2410ITX (BAST)
12650 P:      Ben Dooks
12651 P:      Vincent Sanders <vince@simtec.co.uk>
12652 M:      Simtec Linux Team <linux@simtec.co.uk>
12653 W:      http://www.simtec.co.uk/products/EB2410ITX/
12654 S:      Supported
12655 F:      arch/arm/mach-s3c24xx/mach-bast.c
12656 F:      arch/arm/mach-s3c24xx/bast-ide.c
12657 F:      arch/arm/mach-s3c24xx/bast-irq.c
12658
12659 SIPHASH PRF ROUTINES
12660 M:      Jason A. Donenfeld <Jason@zx2c4.com>
12661 S:      Maintained
12662 F:      lib/siphash.c
12663 F:      lib/test_siphash.c
12664 F:      include/linux/siphash.h
12665
12666 SIOX
12667 M:      Gavin Schenk <g.schenk@eckelmann.de>
12668 M:      Uwe Kleine-König <kernel@pengutronix.de>
12669 S:      Supported
12670 F:      drivers/siox/*
12671 F:      include/trace/events/siox.h
12672
12673 SIS 190 ETHERNET DRIVER
12674 M:      Francois Romieu <romieu@fr.zoreil.com>
12675 L:      netdev@vger.kernel.org
12676 S:      Maintained
12677 F:      drivers/net/ethernet/sis/sis190.c
12678
12679 SIS 900/7016 FAST ETHERNET DRIVER
12680 M:      Daniele Venzano <venza@brownhat.org>
12681 W:      http://www.brownhat.org/sis900.html
12682 L:      netdev@vger.kernel.org
12683 S:      Maintained
12684 F:      drivers/net/ethernet/sis/sis900.*
12685
12686 SIS FRAMEBUFFER DRIVER
12687 M:      Thomas Winischhofer <thomas@winischhofer.net>
12688 W:      http://www.winischhofer.net/linuxsisvga.shtml
12689 S:      Maintained
12690 F:      Documentation/fb/sisfb.txt
12691 F:      drivers/video/fbdev/sis/
12692 F:      include/video/sisfb.h
12693
12694 SIS USB2VGA DRIVER
12695 M:      Thomas Winischhofer <thomas@winischhofer.net>
12696 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
12697 S:      Maintained
12698 F:      drivers/usb/misc/sisusbvga/
12699
12700 SLAB ALLOCATOR
12701 M:      Christoph Lameter <cl@linux.com>
12702 M:      Pekka Enberg <penberg@kernel.org>
12703 M:      David Rientjes <rientjes@google.com>
12704 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
12705 M:      Andrew Morton <akpm@linux-foundation.org>
12706 L:      linux-mm@kvack.org
12707 S:      Maintained
12708 F:      include/linux/sl?b*.h
12709 F:      mm/sl?b*
12710
12711 SLEEPABLE READ-COPY UPDATE (SRCU)
12712 M:      Lai Jiangshan <jiangshanlai@gmail.com>
12713 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12714 M:      Josh Triplett <josh@joshtriplett.org>
12715 R:      Steven Rostedt <rostedt@goodmis.org>
12716 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12717 L:      linux-kernel@vger.kernel.org
12718 W:      http://www.rdrop.com/users/paulmck/RCU/
12719 S:      Supported
12720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12721 F:      include/linux/srcu.h
12722 F:      kernel/rcu/srcu.c
12723
12724 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
12725 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12727 S:      Maintained
12728 F:      drivers/slimbus/
12729 F:      Documentation/devicetree/bindings/slimbus/
12730 F:      include/linux/slimbus.h
12731
12732 SMACK SECURITY MODULE
12733 M:      Casey Schaufler <casey@schaufler-ca.com>
12734 L:      linux-security-module@vger.kernel.org
12735 W:      http://schaufler-ca.com
12736 T:      git git://github.com/cschaufler/smack-next
12737 S:      Maintained
12738 F:      Documentation/admin-guide/LSM/Smack.rst
12739 F:      security/smack/
12740
12741 SMC91x ETHERNET DRIVER
12742 M:      Nicolas Pitre <nico@fluxnic.net>
12743 S:      Odd Fixes
12744 F:      drivers/net/ethernet/smsc/smc91x.*
12745
12746 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12747 M:      Sakari Ailus <sakari.ailus@iki.fi>
12748 L:      linux-media@vger.kernel.org
12749 S:      Maintained
12750 F:      drivers/media/i2c/smiapp/
12751 F:      include/media/i2c/smiapp.h
12752 F:      drivers/media/i2c/smiapp-pll.c
12753 F:      drivers/media/i2c/smiapp-pll.h
12754 F:      include/uapi/linux/smiapp.h
12755 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12756
12757 SMM665 HARDWARE MONITOR DRIVER
12758 M:      Guenter Roeck <linux@roeck-us.net>
12759 L:      linux-hwmon@vger.kernel.org
12760 S:      Maintained
12761 F:      Documentation/hwmon/smm665
12762 F:      drivers/hwmon/smm665.c
12763
12764 SMSC EMC2103 HARDWARE MONITOR DRIVER
12765 M:      Steve Glendinning <steve.glendinning@shawell.net>
12766 L:      linux-hwmon@vger.kernel.org
12767 S:      Maintained
12768 F:      Documentation/hwmon/emc2103
12769 F:      drivers/hwmon/emc2103.c
12770
12771 SMSC SCH5627 HARDWARE MONITOR DRIVER
12772 M:      Hans de Goede <hdegoede@redhat.com>
12773 L:      linux-hwmon@vger.kernel.org
12774 S:      Supported
12775 F:      Documentation/hwmon/sch5627
12776 F:      drivers/hwmon/sch5627.c
12777
12778 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12779 M:      Steve Glendinning <steve.glendinning@shawell.net>
12780 L:      linux-fbdev@vger.kernel.org
12781 S:      Maintained
12782 F:      drivers/video/fbdev/smscufx.c
12783
12784 SMSC47B397 HARDWARE MONITOR DRIVER
12785 M:      Jean Delvare <jdelvare@suse.com>
12786 L:      linux-hwmon@vger.kernel.org
12787 S:      Maintained
12788 F:      Documentation/hwmon/smsc47b397
12789 F:      drivers/hwmon/smsc47b397.c
12790
12791 SMSC911x ETHERNET DRIVER
12792 M:      Steve Glendinning <steve.glendinning@shawell.net>
12793 L:      netdev@vger.kernel.org
12794 S:      Maintained
12795 F:      include/linux/smsc911x.h
12796 F:      drivers/net/ethernet/smsc/smsc911x.*
12797
12798 SMSC9420 PCI ETHERNET DRIVER
12799 M:      Steve Glendinning <steve.glendinning@shawell.net>
12800 L:      netdev@vger.kernel.org
12801 S:      Maintained
12802 F:      drivers/net/ethernet/smsc/smsc9420.*
12803
12804 SOC-CAMERA V4L2 SUBSYSTEM
12805 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12806 L:      linux-media@vger.kernel.org
12807 T:      git git://linuxtv.org/media_tree.git
12808 S:      Maintained
12809 F:      include/media/soc*
12810 F:      drivers/media/i2c/soc_camera/
12811 F:      drivers/media/platform/soc_camera/
12812
12813 SOCIONEXT UNIPHIER SOUND DRIVER
12814 M:      Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
12815 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12816 S:      Maintained
12817 F:      sound/soc/uniphier/
12818
12819 SOEKRIS NET48XX LED SUPPORT
12820 M:      Chris Boot <bootc@bootc.net>
12821 S:      Maintained
12822 F:      drivers/leds/leds-net48xx.c
12823
12824 SOFT-ROCE DRIVER (rxe)
12825 M:      Moni Shoua <monis@mellanox.com>
12826 L:      linux-rdma@vger.kernel.org
12827 S:      Supported
12828 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12829 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12830 F:      drivers/infiniband/sw/rxe/
12831 F:      include/uapi/rdma/rdma_user_rxe.h
12832
12833 SOFTLOGIC 6x10 MPEG CODEC
12834 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12835 M:      Anton Sviridenko <anton@corp.bluecherry.net>
12836 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12837 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12838 M:      Ismael Luceno <ismael@iodev.co.uk>
12839 L:      linux-media@vger.kernel.org
12840 S:      Supported
12841 F:      drivers/media/pci/solo6x10/
12842
12843 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
12844 M:      James Morse <james.morse@arm.com>
12845 L:      linux-arm-kernel@lists.infradead.org
12846 S:      Maintained
12847 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
12848 F:      drivers/firmware/arm_sdei.c
12849 F:      include/linux/sdei.h
12850 F:      include/uapi/linux/sdei.h
12851
12852 SOFTWARE RAID (Multiple Disks) SUPPORT
12853 M:      Shaohua Li <shli@kernel.org>
12854 L:      linux-raid@vger.kernel.org
12855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12856 S:      Supported
12857 F:      drivers/md/Makefile
12858 F:      drivers/md/Kconfig
12859 F:      drivers/md/md*
12860 F:      drivers/md/raid*
12861 F:      include/linux/raid/
12862 F:      include/uapi/linux/raid/
12863
12864 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
12865 M:      Jassi Brar <jaswinder.singh@linaro.org>
12866 L:      netdev@vger.kernel.org
12867 S:      Maintained
12868 F:      drivers/net/ethernet/socionext/netsec.c
12869 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
12870
12871 SONIC NETWORK DRIVER
12872 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12873 L:      netdev@vger.kernel.org
12874 S:      Maintained
12875 F:      drivers/net/ethernet/natsemi/sonic.*
12876
12877 SONICS SILICON BACKPLANE DRIVER (SSB)
12878 M:      Michael Buesch <m@bues.ch>
12879 L:      linux-wireless@vger.kernel.org
12880 S:      Maintained
12881 F:      drivers/ssb/
12882 F:      include/linux/ssb/
12883
12884 SONY IMX274 SENSOR DRIVER
12885 M:      Leon Luo <leonl@leopardimaging.com>
12886 L:      linux-media@vger.kernel.org
12887 T:      git git://linuxtv.org/media_tree.git
12888 S:      Maintained
12889 F:      drivers/media/i2c/imx274.c
12890 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
12891
12892 SONY MEMORYSTICK CARD SUPPORT
12893 M:      Alex Dubov <oakad@yahoo.com>
12894 W:      http://tifmxx.berlios.de/
12895 S:      Maintained
12896 F:      drivers/memstick/host/tifm_ms.c
12897
12898 SONY MEMORYSTICK STANDARD SUPPORT
12899 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12900 S:      Maintained
12901 F:      drivers/memstick/core/ms_block.*
12902
12903 SONY VAIO CONTROL DEVICE DRIVER
12904 M:      Mattia Dongili <malattia@linux.it>
12905 L:      platform-driver-x86@vger.kernel.org
12906 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12907 S:      Maintained
12908 F:      Documentation/laptops/sony-laptop.txt
12909 F:      drivers/char/sonypi.c
12910 F:      drivers/platform/x86/sony-laptop.c
12911 F:      include/linux/sony-laptop.h
12912
12913 SOUND
12914 M:      Jaroslav Kysela <perex@perex.cz>
12915 M:      Takashi Iwai <tiwai@suse.com>
12916 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12917 W:      http://www.alsa-project.org/
12918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12919 T:      git git://git.alsa-project.org/alsa-kernel.git
12920 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
12921 S:      Maintained
12922 F:      Documentation/sound/
12923 F:      include/sound/
12924 F:      include/uapi/sound/
12925 F:      sound/
12926
12927 SOUND - COMPRESSED AUDIO
12928 M:      Vinod Koul <vkoul@kernel.org>
12929 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12931 S:      Supported
12932 F:      Documentation/sound/alsa/compress_offload.txt
12933 F:      include/sound/compress_driver.h
12934 F:      include/uapi/sound/compress_*
12935 F:      sound/core/compress_offload.c
12936 F:      sound/soc/soc-compress.c
12937
12938 SOUND - DMAENGINE HELPERS
12939 M:      Lars-Peter Clausen <lars@metafoo.de>
12940 S:      Supported
12941 F:      include/sound/dmaengine_pcm.h
12942 F:      sound/core/pcm_dmaengine.c
12943 F:      sound/soc/soc-generic-dmaengine-pcm.c
12944
12945 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12946 M:      Liam Girdwood <lgirdwood@gmail.com>
12947 M:      Mark Brown <broonie@kernel.org>
12948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12949 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12950 W:      http://alsa-project.org/main/index.php/ASoC
12951 S:      Supported
12952 F:      Documentation/devicetree/bindings/sound/
12953 F:      Documentation/sound/alsa/soc/
12954 F:      sound/soc/
12955 F:      include/sound/soc*
12956
12957 SOUNDWIRE SUBSYSTEM
12958 M:      Vinod Koul <vinod.koul@intel.com>
12959 M:      Sanyog Kale <sanyog.r.kale@intel.com>
12960 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
12961 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12962 S:      Supported
12963 F:      Documentation/driver-api/soundwire/
12964 F:      drivers/soundwire/
12965 F:      include/linux/soundwire/
12966
12967 SP2 MEDIA DRIVER
12968 M:      Olli Salonen <olli.salonen@iki.fi>
12969 L:      linux-media@vger.kernel.org
12970 W:      https://linuxtv.org
12971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12972 S:      Maintained
12973 F:      drivers/media/dvb-frontends/sp2*
12974
12975 SPARC + UltraSPARC (sparc/sparc64)
12976 M:      "David S. Miller" <davem@davemloft.net>
12977 L:      sparclinux@vger.kernel.org
12978 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12981 S:      Maintained
12982 F:      arch/sparc/
12983 F:      drivers/sbus/
12984
12985 SPARC SERIAL DRIVERS
12986 M:      "David S. Miller" <davem@davemloft.net>
12987 L:      sparclinux@vger.kernel.org
12988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12990 S:      Maintained
12991 F:      include/linux/sunserialcore.h
12992 F:      drivers/tty/serial/suncore.c
12993 F:      drivers/tty/serial/sunhv.c
12994 F:      drivers/tty/serial/sunsab.c
12995 F:      drivers/tty/serial/sunsab.h
12996 F:      drivers/tty/serial/sunsu.c
12997 F:      drivers/tty/serial/sunzilog.c
12998 F:      drivers/tty/serial/sunzilog.h
12999 F:      drivers/tty/vcc.c
13000
13001 SPARSE CHECKER
13002 M:      "Christopher Li" <sparse@chrisli.org>
13003 L:      linux-sparse@vger.kernel.org
13004 W:      https://sparse.wiki.kernel.org/
13005 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
13006 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
13007 S:      Maintained
13008 F:      include/linux/compiler.h
13009
13010 SPEAR CLOCK FRAMEWORK SUPPORT
13011 M:      Viresh Kumar <vireshk@kernel.org>
13012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13013 W:      http://www.st.com/spear
13014 S:      Maintained
13015 F:      drivers/clk/spear/
13016
13017 SPEAR PLATFORM SUPPORT
13018 M:      Viresh Kumar <vireshk@kernel.org>
13019 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
13020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13021 W:      http://www.st.com/spear
13022 S:      Maintained
13023 F:      arch/arm/boot/dts/spear*
13024 F:      arch/arm/mach-spear/
13025
13026 SPI NOR SUBSYSTEM
13027 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
13028 M:      Marek Vasut <marek.vasut@gmail.com>
13029 L:      linux-mtd@lists.infradead.org
13030 W:      http://www.linux-mtd.infradead.org/
13031 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13032 T:      git git://git.infradead.org/linux-mtd.git spi-nor/fixes
13033 T:      git git://git.infradead.org/linux-mtd.git spi-nor/next
13034 S:      Maintained
13035 F:      drivers/mtd/spi-nor/
13036 F:      include/linux/mtd/spi-nor.h
13037
13038 SPI SUBSYSTEM
13039 M:      Mark Brown <broonie@kernel.org>
13040 L:      linux-spi@vger.kernel.org
13041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
13042 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
13043 S:      Maintained
13044 F:      Documentation/devicetree/bindings/spi/
13045 F:      Documentation/spi/
13046 F:      drivers/spi/
13047 F:      include/linux/spi/
13048 F:      include/uapi/linux/spi/
13049 F:      tools/spi/
13050
13051 SPIDERNET NETWORK DRIVER for CELL
13052 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
13053 L:      netdev@vger.kernel.org
13054 S:      Supported
13055 F:      Documentation/networking/spider_net.txt
13056 F:      drivers/net/ethernet/toshiba/spider_net*
13057
13058 SPMI SUBSYSTEM
13059 R:      Stephen Boyd <sboyd@kernel.org>
13060 L:      linux-arm-msm@vger.kernel.org
13061 F:      Documentation/devicetree/bindings/spmi/
13062 F:      drivers/spmi/
13063 F:      include/dt-bindings/spmi/spmi.h
13064 F:      include/linux/spmi.h
13065 F:      include/trace/events/spmi.h
13066
13067 SPU FILE SYSTEM
13068 M:      Jeremy Kerr <jk@ozlabs.org>
13069 L:      linuxppc-dev@lists.ozlabs.org
13070 W:      http://www.ibm.com/developerworks/power/cell/
13071 S:      Supported
13072 F:      Documentation/filesystems/spufs.txt
13073 F:      arch/powerpc/platforms/cell/spufs/
13074
13075 SQUASHFS FILE SYSTEM
13076 M:      Phillip Lougher <phillip@squashfs.org.uk>
13077 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
13078 W:      http://squashfs.org.uk
13079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
13080 S:      Maintained
13081 F:      Documentation/filesystems/squashfs.txt
13082 F:      fs/squashfs/
13083
13084 SRM (Alpha) environment access
13085 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
13086 S:      Maintained
13087 F:      arch/alpha/kernel/srm_env.c
13088
13089 STABLE BRANCH
13090 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13091 L:      stable@vger.kernel.org
13092 S:      Supported
13093 F:      Documentation/process/stable-kernel-rules.rst
13094
13095 STAGING - ATOMISP DRIVER
13096 M:      Alan Cox <alan@linux.intel.com>
13097 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13098 L:      linux-media@vger.kernel.org
13099 S:      Maintained
13100 F:      drivers/staging/media/atomisp/
13101
13102 STAGING - COMEDI
13103 M:      Ian Abbott <abbotti@mev.co.uk>
13104 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
13105 S:      Odd Fixes
13106 F:      drivers/staging/comedi/
13107
13108 STAGING - FLARION FT1000 DRIVERS
13109 M:      Marek Belisko <marek.belisko@gmail.com>
13110 S:      Odd Fixes
13111 F:      drivers/staging/ft1000/
13112
13113 STAGING - INDUSTRIAL IO
13114 M:      Jonathan Cameron <jic23@kernel.org>
13115 L:      linux-iio@vger.kernel.org
13116 S:      Odd Fixes
13117 F:      Documentation/devicetree/bindings/staging/iio/
13118 F:      drivers/staging/iio/
13119
13120 STAGING - LUSTRE PARALLEL FILESYSTEM
13121 M:      Oleg Drokin <oleg.drokin@intel.com>
13122 M:      Andreas Dilger <andreas.dilger@intel.com>
13123 M:      James Simmons <jsimmons@infradead.org>
13124 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
13125 W:      http://wiki.lustre.org/
13126 S:      Maintained
13127 F:      drivers/staging/lustre
13128
13129 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
13130 M:      Marc Dietrich <marvin24@gmx.de>
13131 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
13132 L:      linux-tegra@vger.kernel.org
13133 S:      Maintained
13134 F:      drivers/staging/nvec/
13135
13136 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
13137 M:      Jens Frederich <jfrederich@gmail.com>
13138 M:      Daniel Drake <dsd@laptop.org>
13139 M:      Jon Nettleton <jon.nettleton@gmail.com>
13140 W:      http://wiki.laptop.org/go/DCON
13141 S:      Maintained
13142 F:      drivers/staging/olpc_dcon/
13143
13144 STAGING - REALTEK RTL8712U DRIVERS
13145 M:      Larry Finger <Larry.Finger@lwfinger.net>
13146 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
13147 S:      Odd Fixes
13148 F:      drivers/staging/rtl8712/
13149
13150 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
13151 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13152 M:      Teddy Wang <teddy.wang@siliconmotion.com>
13153 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13154 L:      linux-fbdev@vger.kernel.org
13155 S:      Maintained
13156 F:      drivers/staging/sm750fb/
13157
13158 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
13159 M:      William Hubbs <w.d.hubbs@gmail.com>
13160 M:      Chris Brannon <chris@the-brannons.com>
13161 M:      Kirk Reiser <kirk@reisers.ca>
13162 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
13163 L:      speakup@linux-speakup.org
13164 W:      http://www.linux-speakup.org/
13165 S:      Odd Fixes
13166 F:      drivers/staging/speakup/
13167
13168 STAGING - VIA VT665X DRIVERS
13169 M:      Forest Bond <forest@alittletooquiet.net>
13170 S:      Odd Fixes
13171 F:      drivers/staging/vt665?/
13172
13173 STAGING - WILC1000 WIFI DRIVER
13174 M:      Aditya Shankar <aditya.shankar@microchip.com>
13175 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
13176 L:      linux-wireless@vger.kernel.org
13177 S:      Supported
13178 F:      drivers/staging/wilc1000/
13179
13180 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
13181 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
13182 S:      Odd Fixes
13183 F:      drivers/staging/xgifb/
13184
13185 STAGING SUBSYSTEM
13186 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
13188 L:      devel@driverdev.osuosl.org
13189 S:      Supported
13190 F:      drivers/staging/
13191
13192 STARFIRE/DURALAN NETWORK DRIVER
13193 M:      Ion Badulescu <ionut@badula.org>
13194 S:      Odd Fixes
13195 F:      drivers/net/ethernet/adaptec/starfire*
13196
13197 STEC S1220 SKD DRIVER
13198 M:      Bart Van Assche <bart.vanassche@wdc.com>
13199 L:      linux-block@vger.kernel.org
13200 S:      Maintained
13201 F:      drivers/block/skd*[ch]
13202
13203 STI CEC DRIVER
13204 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
13205 S:      Maintained
13206 F:      drivers/staging/media/st-cec/
13207 F:      Documentation/devicetree/bindings/media/stih-cec.txt
13208
13209 STK1160 USB VIDEO CAPTURE DRIVER
13210 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13211 L:      linux-media@vger.kernel.org
13212 T:      git git://linuxtv.org/media_tree.git
13213 S:      Maintained
13214 F:      drivers/media/usb/stk1160/
13215
13216 STMMAC ETHERNET DRIVER
13217 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
13218 M:      Alexandre Torgue <alexandre.torgue@st.com>
13219 L:      netdev@vger.kernel.org
13220 W:      http://www.stlinux.com
13221 S:      Supported
13222 F:      drivers/net/ethernet/stmicro/stmmac/
13223
13224 SUN3/3X
13225 M:      Sam Creasey <sammy@sammy.net>
13226 W:      http://sammy.net/sun3/
13227 S:      Maintained
13228 F:      arch/m68k/kernel/*sun3*
13229 F:      arch/m68k/sun3*/
13230 F:      arch/m68k/include/asm/sun3*
13231 F:      drivers/net/ethernet/i825xx/sun3*
13232
13233 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13234 M:      Hans de Goede <hdegoede@redhat.com>
13235 L:      linux-input@vger.kernel.org
13236 S:      Maintained
13237 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13238 F:      drivers/input/keyboard/sun4i-lradc-keys.c
13239
13240 SUNDANCE NETWORK DRIVER
13241 M:      Denis Kirjanov <kda@linux-powerpc.org>
13242 L:      netdev@vger.kernel.org
13243 S:      Maintained
13244 F:      drivers/net/ethernet/dlink/sundance.c
13245
13246 SUPERH
13247 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
13248 M:      Rich Felker <dalias@libc.org>
13249 L:      linux-sh@vger.kernel.org
13250 Q:      http://patchwork.kernel.org/project/linux-sh/list/
13251 S:      Maintained
13252 F:      Documentation/sh/
13253 F:      arch/sh/
13254 F:      drivers/sh/
13255
13256 SUSPEND TO RAM
13257 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13258 M:      Len Brown <len.brown@intel.com>
13259 M:      Pavel Machek <pavel@ucw.cz>
13260 L:      linux-pm@vger.kernel.org
13261 B:      https://bugzilla.kernel.org
13262 S:      Supported
13263 F:      Documentation/power/
13264 F:      arch/x86/kernel/acpi/
13265 F:      drivers/base/power/
13266 F:      kernel/power/
13267 F:      include/linux/suspend.h
13268 F:      include/linux/freezer.h
13269 F:      include/linux/pm.h
13270
13271 SVGA HANDLING
13272 M:      Martin Mares <mj@ucw.cz>
13273 L:      linux-video@atrey.karlin.mff.cuni.cz
13274 S:      Maintained
13275 F:      Documentation/svga.txt
13276 F:      arch/x86/boot/video*
13277
13278 SWIOTLB SUBSYSTEM
13279 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13280 L:      iommu@lists.linux-foundation.org
13281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13282 S:      Supported
13283 F:      lib/swiotlb.c
13284 F:      arch/*/kernel/pci-swiotlb.c
13285 F:      include/linux/swiotlb.h
13286
13287 SWITCHDEV
13288 M:      Jiri Pirko <jiri@resnulli.us>
13289 M:      Ivan Vecera <ivecera@redhat.com>
13290 L:      netdev@vger.kernel.org
13291 S:      Supported
13292 F:      net/switchdev/
13293 F:      include/net/switchdev.h
13294
13295 SYNC FILE FRAMEWORK
13296 M:      Sumit Semwal <sumit.semwal@linaro.org>
13297 R:      Gustavo Padovan <gustavo@padovan.org>
13298 S:      Maintained
13299 L:      linux-media@vger.kernel.org
13300 L:      dri-devel@lists.freedesktop.org
13301 F:      drivers/dma-buf/sync_*
13302 F:      drivers/dma-buf/dma-fence*
13303 F:      drivers/dma-buf/sw_sync.c
13304 F:      include/linux/sync_file.h
13305 F:      include/uapi/linux/sync_file.h
13306 F:      Documentation/sync_file.txt
13307 T:      git git://anongit.freedesktop.org/drm/drm-misc
13308
13309 SYNOPSYS ARC ARCHITECTURE
13310 M:      Vineet Gupta <vgupta@synopsys.com>
13311 L:      linux-snps-arc@lists.infradead.org
13312 S:      Supported
13313 F:      arch/arc/
13314 F:      Documentation/devicetree/bindings/arc/*
13315 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13316 F:      drivers/clocksource/arc_timer.c
13317 F:      drivers/tty/serial/arc_uart.c
13318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13319
13320 SYNOPSYS ARC HSDK SDP pll clock driver
13321 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13322 S:      Supported
13323 F:      drivers/clk/clk-hsdk-pll.c
13324 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
13325
13326 SYNOPSYS ARC SDP clock driver
13327 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13328 S:      Supported
13329 F:      drivers/clk/axs10x/*
13330 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
13331
13332 SYNOPSYS ARC SDP platform support
13333 M:      Alexey Brodkin <abrodkin@synopsys.com>
13334 S:      Supported
13335 F:      arch/arc/plat-axs10x
13336 F:      arch/arc/boot/dts/ax*
13337 F:      Documentation/devicetree/bindings/arc/axs10*
13338
13339 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
13340 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13341 S:      Supported
13342 F:      drivers/reset/reset-axs10x.c
13343 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
13344
13345 SYNOPSYS DESIGNWARE 8250 UART DRIVER
13346 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13347 S:      Maintained
13348 F:      drivers/tty/serial/8250/8250_dw.c
13349
13350 SYNOPSYS DESIGNWARE APB GPIO DRIVER
13351 M:      Hoan Tran <hotran@apm.com>
13352 L:      linux-gpio@vger.kernel.org
13353 S:      Maintained
13354 F:      drivers/gpio/gpio-dwapb.c
13355 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
13356
13357 SYNOPSYS DESIGNWARE DMAC DRIVER
13358 M:      Viresh Kumar <vireshk@kernel.org>
13359 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13360 S:      Maintained
13361 F:      include/linux/dma/dw.h
13362 F:      include/linux/platform_data/dma-dw.h
13363 F:      drivers/dma/dw/
13364
13365 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
13366 M:      Jose Abreu <Jose.Abreu@synopsys.com>
13367 L:      netdev@vger.kernel.org
13368 S:      Supported
13369 F:      drivers/net/ethernet/synopsys/
13370
13371 SYNOPSYS DESIGNWARE I2C DRIVER
13372 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
13373 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13374 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
13375 L:      linux-i2c@vger.kernel.org
13376 S:      Maintained
13377 F:      drivers/i2c/busses/i2c-designware-*
13378 F:      include/linux/platform_data/i2c-designware.h
13379
13380 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
13381 M:      Jaehoon Chung <jh80.chung@samsung.com>
13382 L:      linux-mmc@vger.kernel.org
13383 S:      Maintained
13384 F:      drivers/mmc/host/dw_mmc*
13385
13386 SYNOPSYS HSDK RESET CONTROLLER DRIVER
13387 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13388 S:      Supported
13389 F:      drivers/reset/reset-hsdk.c
13390 F:      include/dt-bindings/reset/snps,hsdk-reset.h
13391 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
13392
13393 SYSTEM CONFIGURATION (SYSCON)
13394 M:      Lee Jones <lee.jones@linaro.org>
13395 M:      Arnd Bergmann <arnd@arndb.de>
13396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13397 S:      Supported
13398 F:      drivers/mfd/syscon.c
13399
13400 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
13401 M:      Sudeep Holla <sudeep.holla@arm.com>
13402 L:      linux-arm-kernel@lists.infradead.org
13403 S:      Maintained
13404 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
13405 F:      drivers/clk/clk-scpi.c
13406 F:      drivers/cpufreq/scpi-cpufreq.c
13407 F:      drivers/firmware/arm_scpi.c
13408 F:      include/linux/scpi_protocol.h
13409
13410 SYSTEM RESET/SHUTDOWN DRIVERS
13411 M:      Sebastian Reichel <sre@kernel.org>
13412 L:      linux-pm@vger.kernel.org
13413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13414 S:      Maintained
13415 F:      Documentation/devicetree/bindings/power/reset/
13416 F:      drivers/power/reset/
13417
13418 SYSTEM TRACE MODULE CLASS
13419 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13420 S:      Maintained
13421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13422 F:      Documentation/trace/stm.txt
13423 F:      drivers/hwtracing/stm/
13424 F:      include/linux/stm.h
13425 F:      include/uapi/linux/stm.h
13426
13427 SYSV FILESYSTEM
13428 M:      Christoph Hellwig <hch@infradead.org>
13429 S:      Maintained
13430 F:      Documentation/filesystems/sysv-fs.txt
13431 F:      fs/sysv/
13432 F:      include/linux/sysv_fs.h
13433
13434 TARGET SUBSYSTEM
13435 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
13436 L:      linux-scsi@vger.kernel.org
13437 L:      target-devel@vger.kernel.org
13438 W:      http://www.linux-iscsi.org
13439 W:      http://groups.google.com/group/linux-iscsi-target-dev
13440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13441 S:      Supported
13442 F:      drivers/target/
13443 F:      include/target/
13444 F:      Documentation/target/
13445
13446 TASKSTATS STATISTICS INTERFACE
13447 M:      Balbir Singh <bsingharora@gmail.com>
13448 S:      Maintained
13449 F:      Documentation/accounting/taskstats*
13450 F:      include/linux/taskstats*
13451 F:      kernel/taskstats.c
13452
13453 TC subsystem
13454 M:      Jamal Hadi Salim <jhs@mojatatu.com>
13455 M:      Cong Wang <xiyou.wangcong@gmail.com>
13456 M:      Jiri Pirko <jiri@resnulli.us>
13457 L:      netdev@vger.kernel.org
13458 S:      Maintained
13459 F:      include/net/pkt_cls.h
13460 F:      include/net/pkt_sched.h
13461 F:      include/net/tc_act/
13462 F:      include/uapi/linux/pkt_cls.h
13463 F:      include/uapi/linux/pkt_sched.h
13464 F:      include/uapi/linux/tc_act/
13465 F:      include/uapi/linux/tc_ematch/
13466 F:      net/sched/
13467
13468 TCP LOW PRIORITY MODULE
13469 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13470 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13471 W:      http://tcp-lp-mod.sourceforge.net/
13472 S:      Maintained
13473 F:      net/ipv4/tcp_lp.c
13474
13475 TDA10071 MEDIA DRIVER
13476 M:      Antti Palosaari <crope@iki.fi>
13477 L:      linux-media@vger.kernel.org
13478 W:      https://linuxtv.org
13479 W:      http://palosaari.fi/linux/
13480 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13481 T:      git git://linuxtv.org/anttip/media_tree.git
13482 S:      Maintained
13483 F:      drivers/media/dvb-frontends/tda10071*
13484
13485 TDA18212 MEDIA DRIVER
13486 M:      Antti Palosaari <crope@iki.fi>
13487 L:      linux-media@vger.kernel.org
13488 W:      https://linuxtv.org
13489 W:      http://palosaari.fi/linux/
13490 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13491 T:      git git://linuxtv.org/anttip/media_tree.git
13492 S:      Maintained
13493 F:      drivers/media/tuners/tda18212*
13494
13495 TDA18218 MEDIA DRIVER
13496 M:      Antti Palosaari <crope@iki.fi>
13497 L:      linux-media@vger.kernel.org
13498 W:      https://linuxtv.org
13499 W:      http://palosaari.fi/linux/
13500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13501 T:      git git://linuxtv.org/anttip/media_tree.git
13502 S:      Maintained
13503 F:      drivers/media/tuners/tda18218*
13504
13505 TDA18250 MEDIA DRIVER
13506 M:      Olli Salonen <olli.salonen@iki.fi>
13507 L:      linux-media@vger.kernel.org
13508 W:      https://linuxtv.org
13509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13510 T:      git git://linuxtv.org/media_tree.git
13511 S:      Maintained
13512 F:      drivers/media/tuners/tda18250*
13513
13514 TDA18271 MEDIA DRIVER
13515 M:      Michael Krufky <mkrufky@linuxtv.org>
13516 L:      linux-media@vger.kernel.org
13517 W:      https://linuxtv.org
13518 W:      http://github.com/mkrufky
13519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13520 T:      git git://linuxtv.org/mkrufky/tuners.git
13521 S:      Maintained
13522 F:      drivers/media/tuners/tda18271*
13523
13524 TDA827x MEDIA DRIVER
13525 M:      Michael Krufky <mkrufky@linuxtv.org>
13526 L:      linux-media@vger.kernel.org
13527 W:      https://linuxtv.org
13528 W:      http://github.com/mkrufky
13529 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13530 T:      git git://linuxtv.org/mkrufky/tuners.git
13531 S:      Maintained
13532 F:      drivers/media/tuners/tda8290.*
13533
13534 TDA8290 MEDIA DRIVER
13535 M:      Michael Krufky <mkrufky@linuxtv.org>
13536 L:      linux-media@vger.kernel.org
13537 W:      https://linuxtv.org
13538 W:      http://github.com/mkrufky
13539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13540 T:      git git://linuxtv.org/mkrufky/tuners.git
13541 S:      Maintained
13542 F:      drivers/media/tuners/tda8290.*
13543
13544 TDA9840 MEDIA DRIVER
13545 M:      Hans Verkuil <hverkuil@xs4all.nl>
13546 L:      linux-media@vger.kernel.org
13547 T:      git git://linuxtv.org/media_tree.git
13548 W:      https://linuxtv.org
13549 S:      Maintained
13550 F:      drivers/media/i2c/tda9840*
13551
13552 TEA5761 TUNER DRIVER
13553 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13554 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13555 L:      linux-media@vger.kernel.org
13556 W:      https://linuxtv.org
13557 T:      git git://linuxtv.org/media_tree.git
13558 S:      Odd fixes
13559 F:      drivers/media/tuners/tea5761.*
13560
13561 TEA5767 TUNER DRIVER
13562 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13563 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13564 L:      linux-media@vger.kernel.org
13565 W:      https://linuxtv.org
13566 T:      git git://linuxtv.org/media_tree.git
13567 S:      Maintained
13568 F:      drivers/media/tuners/tea5767.*
13569
13570 TEA6415C MEDIA DRIVER
13571 M:      Hans Verkuil <hverkuil@xs4all.nl>
13572 L:      linux-media@vger.kernel.org
13573 T:      git git://linuxtv.org/media_tree.git
13574 W:      https://linuxtv.org
13575 S:      Maintained
13576 F:      drivers/media/i2c/tea6415c*
13577
13578 TEA6420 MEDIA DRIVER
13579 M:      Hans Verkuil <hverkuil@xs4all.nl>
13580 L:      linux-media@vger.kernel.org
13581 T:      git git://linuxtv.org/media_tree.git
13582 W:      https://linuxtv.org
13583 S:      Maintained
13584 F:      drivers/media/i2c/tea6420*
13585
13586 TEAM DRIVER
13587 M:      Jiri Pirko <jiri@resnulli.us>
13588 L:      netdev@vger.kernel.org
13589 S:      Supported
13590 F:      drivers/net/team/
13591 F:      include/linux/if_team.h
13592 F:      include/uapi/linux/if_team.h
13593
13594 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13595 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13596 S:      Maintained
13597 F:      arch/x86/platform/ts5500/
13598
13599 TECHNOTREND USB IR RECEIVER
13600 M:      Sean Young <sean@mess.org>
13601 L:      linux-media@vger.kernel.org
13602 S:      Maintained
13603 F:      drivers/media/rc/ttusbir.c
13604
13605 TEE SUBSYSTEM
13606 M:      Jens Wiklander <jens.wiklander@linaro.org>
13607 S:      Maintained
13608 F:      include/linux/tee_drv.h
13609 F:      include/uapi/linux/tee.h
13610 F:      drivers/tee/
13611 F:      Documentation/tee.txt
13612
13613 TEGRA ARCHITECTURE SUPPORT
13614 M:      Thierry Reding <thierry.reding@gmail.com>
13615 M:      Jonathan Hunter <jonathanh@nvidia.com>
13616 L:      linux-tegra@vger.kernel.org
13617 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
13618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13619 S:      Supported
13620 N:      [^a-z]tegra
13621
13622 TEGRA CLOCK DRIVER
13623 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
13624 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
13625 S:      Supported
13626 F:      drivers/clk/tegra/
13627
13628 TEGRA DMA DRIVERS
13629 M:      Laxman Dewangan <ldewangan@nvidia.com>
13630 M:      Jon Hunter <jonathanh@nvidia.com>
13631 S:      Supported
13632 F:      drivers/dma/tegra*
13633
13634 TEGRA I2C DRIVER
13635 M:      Laxman Dewangan <ldewangan@nvidia.com>
13636 S:      Supported
13637 F:      drivers/i2c/busses/i2c-tegra.c
13638
13639 TEGRA IOMMU DRIVERS
13640 M:      Hiroshi Doyu <hdoyu@nvidia.com>
13641 S:      Supported
13642 F:      drivers/iommu/tegra*
13643
13644 TEGRA KBC DRIVER
13645 M:      Rakesh Iyer <riyer@nvidia.com>
13646 M:      Laxman Dewangan <ldewangan@nvidia.com>
13647 S:      Supported
13648 F:      drivers/input/keyboard/tegra-kbc.c
13649
13650 TEGRA PWM DRIVER
13651 M:      Thierry Reding <thierry.reding@gmail.com>
13652 S:      Supported
13653 F:      drivers/pwm/pwm-tegra.c
13654
13655 TEGRA SERIAL DRIVER
13656 M:      Laxman Dewangan <ldewangan@nvidia.com>
13657 S:      Supported
13658 F:      drivers/tty/serial/serial-tegra.c
13659
13660 TEGRA SPI DRIVER
13661 M:      Laxman Dewangan <ldewangan@nvidia.com>
13662 S:      Supported
13663 F:      drivers/spi/spi-tegra*
13664
13665 TEHUTI ETHERNET DRIVER
13666 M:      Andy Gospodarek <andy@greyhouse.net>
13667 L:      netdev@vger.kernel.org
13668 S:      Supported
13669 F:      drivers/net/ethernet/tehuti/*
13670
13671 Telecom Clock Driver for MCPL0010
13672 M:      Mark Gross <mark.gross@intel.com>
13673 S:      Supported
13674 F:      drivers/char/tlclk.c
13675
13676 TENSILICA XTENSA PORT (xtensa)
13677 M:      Chris Zankel <chris@zankel.net>
13678 M:      Max Filippov <jcmvbkbc@gmail.com>
13679 L:      linux-xtensa@linux-xtensa.org
13680 T:      git git://github.com/czankel/xtensa-linux.git
13681 S:      Maintained
13682 F:      arch/xtensa/
13683 F:      drivers/irqchip/irq-xtensa-*
13684
13685 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13686 M:      Nishanth Menon <nm@ti.com>
13687 M:      Tero Kristo <t-kristo@ti.com>
13688 M:      Santosh Shilimkar <ssantosh@kernel.org>
13689 L:      linux-arm-kernel@lists.infradead.org
13690 S:      Maintained
13691 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13692 F:      drivers/firmware/ti_sci*
13693 F:      include/linux/soc/ti/ti_sci_protocol.h
13694 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13695 F:      include/dt-bindings/genpd/k2g.h
13696 F:      drivers/soc/ti/ti_sci_pm_domains.c
13697 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13698 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13699 F:      drivers/clk/keystone/sci-clk.c
13700 F:      drivers/reset/reset-ti-sci.c
13701
13702 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13703 M:      Hans Verkuil <hverkuil@xs4all.nl>
13704 L:      linux-media@vger.kernel.org
13705 T:      git git://linuxtv.org/media_tree.git
13706 W:      https://linuxtv.org
13707 S:      Maintained
13708 F:      drivers/media/radio/radio-raremono.c
13709
13710 THERMAL
13711 M:      Zhang Rui <rui.zhang@intel.com>
13712 M:      Eduardo Valentin <edubezval@gmail.com>
13713 L:      linux-pm@vger.kernel.org
13714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13716 Q:      https://patchwork.kernel.org/project/linux-pm/list/
13717 S:      Supported
13718 F:      drivers/thermal/
13719 F:      include/linux/thermal.h
13720 F:      include/uapi/linux/thermal.h
13721 F:      include/linux/cpu_cooling.h
13722 F:      Documentation/devicetree/bindings/thermal/
13723
13724 THERMAL/CPU_COOLING
13725 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
13726 M:      Viresh Kumar <viresh.kumar@linaro.org>
13727 M:      Javi Merino <javi.merino@kernel.org>
13728 L:      linux-pm@vger.kernel.org
13729 S:      Supported
13730 F:      Documentation/thermal/cpu-cooling-api.txt
13731 F:      drivers/thermal/cpu_cooling.c
13732 F:      include/linux/cpu_cooling.h
13733
13734 THINKPAD ACPI EXTRAS DRIVER
13735 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13736 L:      ibm-acpi-devel@lists.sourceforge.net
13737 L:      platform-driver-x86@vger.kernel.org
13738 W:      http://ibm-acpi.sourceforge.net
13739 W:      http://thinkwiki.org/wiki/Ibm-acpi
13740 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13741 S:      Maintained
13742 F:      drivers/platform/x86/thinkpad_acpi.c
13743
13744 THUNDERBOLT DRIVER
13745 M:      Andreas Noever <andreas.noever@gmail.com>
13746 M:      Michael Jamet <michael.jamet@intel.com>
13747 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13748 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
13750 S:      Maintained
13751 F:      Documentation/admin-guide/thunderbolt.rst
13752 F:      drivers/thunderbolt/
13753 F:      include/linux/thunderbolt.h
13754
13755 THUNDERBOLT NETWORK DRIVER
13756 M:      Michael Jamet <michael.jamet@intel.com>
13757 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13758 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13759 L:      netdev@vger.kernel.org
13760 S:      Maintained
13761 F:      drivers/net/thunderbolt.c
13762
13763 THUNDERX GPIO DRIVER
13764 M:      David Daney <david.daney@cavium.com>
13765 S:      Maintained
13766 F:      drivers/gpio/gpio-thunderx.c
13767
13768 TI AM437X VPFE DRIVER
13769 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13770 L:      linux-media@vger.kernel.org
13771 W:      https://linuxtv.org
13772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13773 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13774 S:      Maintained
13775 F:      drivers/media/platform/am437x/
13776
13777 TI BANDGAP AND THERMAL DRIVER
13778 M:      Eduardo Valentin <edubezval@gmail.com>
13779 M:      Keerthy <j-keerthy@ti.com>
13780 L:      linux-pm@vger.kernel.org
13781 L:      linux-omap@vger.kernel.org
13782 S:      Maintained
13783 F:      drivers/thermal/ti-soc-thermal/
13784
13785 TI BQ27XXX POWER SUPPLY DRIVER
13786 R:      Andrew F. Davis <afd@ti.com>
13787 F:      include/linux/power/bq27xxx_battery.h
13788 F:      drivers/power/supply/bq27xxx_battery.c
13789 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13790
13791 TI CDCE706 CLOCK DRIVER
13792 M:      Max Filippov <jcmvbkbc@gmail.com>
13793 S:      Maintained
13794 F:      drivers/clk/clk-cdce706.c
13795
13796 TI CLOCK DRIVER
13797 M:      Tero Kristo <t-kristo@ti.com>
13798 L:      linux-omap@vger.kernel.org
13799 S:      Maintained
13800 F:      drivers/clk/ti/
13801 F:      include/linux/clk/ti.h
13802
13803 TI DAVINCI MACHINE SUPPORT
13804 M:      Sekhar Nori <nsekhar@ti.com>
13805 M:      Kevin Hilman <khilman@kernel.org>
13806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13808 S:      Supported
13809 F:      arch/arm/mach-davinci/
13810 F:      drivers/i2c/busses/i2c-davinci.c
13811 F:      arch/arm/boot/dts/da850*
13812
13813 TI DAVINCI SERIES GPIO DRIVER
13814 M:      Keerthy <j-keerthy@ti.com>
13815 L:      linux-gpio@vger.kernel.org
13816 S:      Maintained
13817 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13818 F:      drivers/gpio/gpio-davinci.c
13819
13820 TI DAVINCI SERIES MEDIA DRIVER
13821 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13822 L:      linux-media@vger.kernel.org
13823 W:      https://linuxtv.org
13824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13825 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13826 S:      Maintained
13827 F:      drivers/media/platform/davinci/
13828 F:      include/media/davinci/
13829
13830 TI ETHERNET SWITCH DRIVER (CPSW)
13831 R:      Grygorii Strashko <grygorii.strashko@ti.com>
13832 L:      linux-omap@vger.kernel.org
13833 L:      netdev@vger.kernel.org
13834 S:      Maintained
13835 F:      drivers/net/ethernet/ti/cpsw*
13836 F:      drivers/net/ethernet/ti/davinci*
13837
13838 TI FLASH MEDIA INTERFACE DRIVER
13839 M:      Alex Dubov <oakad@yahoo.com>
13840 S:      Maintained
13841 F:      drivers/misc/tifm*
13842 F:      drivers/mmc/host/tifm_sd.c
13843 F:      include/linux/tifm.h
13844
13845 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13846 M:      Santosh Shilimkar <ssantosh@kernel.org>
13847 L:      linux-kernel@vger.kernel.org
13848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13849 S:      Maintained
13850 F:      drivers/soc/ti/*
13851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13852
13853 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13854 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
13855 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13856 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13857 S:      Maintained
13858 F:      sound/soc/codecs/lm49453*
13859 F:      sound/soc/codecs/isabelle*
13860
13861 TI LP855x BACKLIGHT DRIVER
13862 M:      Milo Kim <milo.kim@ti.com>
13863 S:      Maintained
13864 F:      Documentation/backlight/lp855x-driver.txt
13865 F:      drivers/video/backlight/lp855x_bl.c
13866 F:      include/linux/platform_data/lp855x.h
13867
13868 TI LP8727 CHARGER DRIVER
13869 M:      Milo Kim <milo.kim@ti.com>
13870 S:      Maintained
13871 F:      drivers/power/supply/lp8727_charger.c
13872 F:      include/linux/platform_data/lp8727.h
13873
13874 TI LP8788 MFD DRIVER
13875 M:      Milo Kim <milo.kim@ti.com>
13876 S:      Maintained
13877 F:      drivers/iio/adc/lp8788_adc.c
13878 F:      drivers/leds/leds-lp8788.c
13879 F:      drivers/mfd/lp8788*.c
13880 F:      drivers/power/supply/lp8788-charger.c
13881 F:      drivers/regulator/lp8788-*.c
13882 F:      include/linux/mfd/lp8788*.h
13883
13884 TI NETCP ETHERNET DRIVER
13885 M:      Wingman Kwok <w-kwok2@ti.com>
13886 M:      Murali Karicheri <m-karicheri2@ti.com>
13887 L:      netdev@vger.kernel.org
13888 S:      Maintained
13889 F:      drivers/net/ethernet/ti/netcp*
13890
13891 TI TAS571X FAMILY ASoC CODEC DRIVER
13892 M:      Kevin Cernekee <cernekee@chromium.org>
13893 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13894 S:      Odd Fixes
13895 F:      sound/soc/codecs/tas571x*
13896
13897 TI TRF7970A NFC DRIVER
13898 M:      Mark Greer <mgreer@animalcreek.com>
13899 L:      linux-wireless@vger.kernel.org
13900 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13901 S:      Supported
13902 F:      drivers/nfc/trf7970a.c
13903 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13904
13905 TI TWL4030 SERIES SOC CODEC DRIVER
13906 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
13907 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13908 S:      Maintained
13909 F:      sound/soc/codecs/twl4030*
13910
13911 TI VPE/CAL DRIVERS
13912 M:      Benoit Parrot <bparrot@ti.com>
13913 L:      linux-media@vger.kernel.org
13914 W:      http://linuxtv.org/
13915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13916 S:      Maintained
13917 F:      drivers/media/platform/ti-vpe/
13918
13919 TI WILINK WIRELESS DRIVERS
13920 L:      linux-wireless@vger.kernel.org
13921 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
13922 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
13923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13924 S:      Orphan
13925 F:      drivers/net/wireless/ti/
13926 F:      include/linux/wl12xx.h
13927
13928 TILE ARCHITECTURE
13929 W:      http://www.mellanox.com/repository/solutions/tile-scm/
13930 S:      Orphan
13931 F:      arch/tile/
13932 F:      drivers/char/tile-srom.c
13933 F:      drivers/edac/tile_edac.c
13934 F:      drivers/net/ethernet/tile/
13935 F:      drivers/rtc/rtc-tile.c
13936 F:      drivers/tty/hvc/hvc_tile.c
13937 F:      drivers/tty/serial/tilegx.c
13938 F:      drivers/usb/host/*-tilegx.c
13939 F:      include/linux/usb/tilegx.h
13940
13941 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13942 M:      John Stultz <john.stultz@linaro.org>
13943 M:      Thomas Gleixner <tglx@linutronix.de>
13944 R:      Stephen Boyd <sboyd@kernel.org>
13945 L:      linux-kernel@vger.kernel.org
13946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13947 S:      Supported
13948 F:      include/linux/clocksource.h
13949 F:      include/linux/time.h
13950 F:      include/linux/timex.h
13951 F:      include/uapi/linux/time.h
13952 F:      include/uapi/linux/timex.h
13953 F:      kernel/time/clocksource.c
13954 F:      kernel/time/time*.c
13955 F:      kernel/time/alarmtimer.c
13956 F:      kernel/time/ntp.c
13957 F:      tools/testing/selftests/timers/
13958
13959 TIPC NETWORK LAYER
13960 M:      Jon Maloy <jon.maloy@ericsson.com>
13961 M:      Ying Xue <ying.xue@windriver.com>
13962 L:      netdev@vger.kernel.org (core kernel code)
13963 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13964 W:      http://tipc.sourceforge.net/
13965 S:      Maintained
13966 F:      include/uapi/linux/tipc*.h
13967 F:      net/tipc/
13968
13969 TLAN NETWORK DRIVER
13970 M:      Samuel Chessman <chessman@tux.org>
13971 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
13972 W:      http://sourceforge.net/projects/tlan/
13973 S:      Maintained
13974 F:      Documentation/networking/tlan.txt
13975 F:      drivers/net/ethernet/ti/tlan.*
13976
13977 TM6000 VIDEO4LINUX DRIVER
13978 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13979 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13980 L:      linux-media@vger.kernel.org
13981 W:      https://linuxtv.org
13982 T:      git git://linuxtv.org/media_tree.git
13983 S:      Odd fixes
13984 F:      drivers/media/usb/tm6000/
13985 F:      Documentation/media/v4l-drivers/tm6000*
13986
13987 TMIO/SDHI MMC DRIVER
13988 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13989 L:      linux-mmc@vger.kernel.org
13990 S:      Supported
13991 F:      drivers/mmc/host/tmio_mmc*
13992 F:      drivers/mmc/host/renesas_sdhi*
13993 F:      include/linux/mfd/tmio.h
13994
13995 TMP401 HARDWARE MONITOR DRIVER
13996 M:      Guenter Roeck <linux@roeck-us.net>
13997 L:      linux-hwmon@vger.kernel.org
13998 S:      Maintained
13999 F:      Documentation/hwmon/tmp401
14000 F:      drivers/hwmon/tmp401.c
14001
14002 TMPFS (SHMEM FILESYSTEM)
14003 M:      Hugh Dickins <hughd@google.com>
14004 L:      linux-mm@kvack.org
14005 S:      Maintained
14006 F:      include/linux/shmem_fs.h
14007 F:      mm/shmem.c
14008
14009 TOMOYO SECURITY MODULE
14010 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
14011 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
14012 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
14013 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
14014 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
14015 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
14016 W:      http://tomoyo.sourceforge.jp/
14017 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
14018 S:      Maintained
14019 F:      security/tomoyo/
14020
14021 TOPSTAR LAPTOP EXTRAS DRIVER
14022 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14023 L:      platform-driver-x86@vger.kernel.org
14024 S:      Maintained
14025 F:      drivers/platform/x86/topstar-laptop.c
14026
14027 TORTURE-TEST MODULES
14028 M:      Davidlohr Bueso <dave@stgolabs.net>
14029 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
14030 M:      Josh Triplett <josh@joshtriplett.org>
14031 L:      linux-kernel@vger.kernel.org
14032 S:      Supported
14033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
14034 F:      Documentation/RCU/torture.txt
14035 F:      kernel/torture.c
14036 F:      kernel/rcu/rcutorture.c
14037 F:      kernel/locking/locktorture.c
14038
14039 TOSHIBA ACPI EXTRAS DRIVER
14040 M:      Azael Avalos <coproscefalo@gmail.com>
14041 L:      platform-driver-x86@vger.kernel.org
14042 S:      Maintained
14043 F:      drivers/platform/x86/toshiba_acpi.c
14044
14045 TOSHIBA BLUETOOTH DRIVER
14046 M:      Azael Avalos <coproscefalo@gmail.com>
14047 L:      platform-driver-x86@vger.kernel.org
14048 S:      Maintained
14049 F:      drivers/platform/x86/toshiba_bluetooth.c
14050
14051 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
14052 M:      Azael Avalos <coproscefalo@gmail.com>
14053 L:      platform-driver-x86@vger.kernel.org
14054 S:      Maintained
14055 F:      drivers/platform/x86/toshiba_haps.c
14056
14057 TOSHIBA SMM DRIVER
14058 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
14059 W:      http://www.buzzard.org.uk/toshiba/
14060 S:      Maintained
14061 F:      drivers/char/toshiba.c
14062 F:      include/linux/toshiba.h
14063 F:      include/uapi/linux/toshiba.h
14064
14065 TOSHIBA TC358743 DRIVER
14066 M:      Mats Randgaard <matrandg@cisco.com>
14067 L:      linux-media@vger.kernel.org
14068 S:      Maintained
14069 F:      drivers/media/i2c/tc358743*
14070 F:      include/media/i2c/tc358743.h
14071
14072 TOSHIBA WMI HOTKEYS DRIVER
14073 M:      Azael Avalos <coproscefalo@gmail.com>
14074 L:      platform-driver-x86@vger.kernel.org
14075 S:      Maintained
14076 F:      drivers/platform/x86/toshiba-wmi.c
14077
14078 TPM DEVICE DRIVER
14079 M:      Peter Huewe <peterhuewe@gmx.de>
14080 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
14081 R:      Jason Gunthorpe <jgg@ziepe.ca>
14082 L:      linux-integrity@vger.kernel.org
14083 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
14084 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
14085 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
14086 S:      Maintained
14087 F:      drivers/char/tpm/
14088
14089 TRACING
14090 M:      Steven Rostedt <rostedt@goodmis.org>
14091 M:      Ingo Molnar <mingo@redhat.com>
14092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14093 S:      Maintained
14094 F:      Documentation/trace/ftrace.txt
14095 F:      arch/*/*/*/ftrace.h
14096 F:      arch/*/kernel/ftrace.c
14097 F:      include/*/ftrace.h
14098 F:      include/linux/trace*.h
14099 F:      include/trace/
14100 F:      kernel/trace/
14101 F:      tools/testing/selftests/ftrace/
14102
14103 TRACING MMIO ACCESSES (MMIOTRACE)
14104 M:      Steven Rostedt <rostedt@goodmis.org>
14105 M:      Ingo Molnar <mingo@kernel.org>
14106 R:      Karol Herbst <karolherbst@gmail.com>
14107 R:      Pekka Paalanen <ppaalanen@gmail.com>
14108 S:      Maintained
14109 L:      linux-kernel@vger.kernel.org
14110 L:      nouveau@lists.freedesktop.org
14111 F:      kernel/trace/trace_mmiotrace.c
14112 F:      include/linux/mmiotrace.h
14113 F:      arch/x86/mm/kmmio.c
14114 F:      arch/x86/mm/mmio-mod.c
14115 F:      arch/x86/mm/testmmiotrace.c
14116
14117 TRIVIAL PATCHES
14118 M:      Jiri Kosina <trivial@kernel.org>
14119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
14120 S:      Maintained
14121 K:      ^Subject:.*(?i)trivial
14122
14123 TEMPO SEMICONDUCTOR DRIVERS
14124 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
14125 S:      Maintained
14126 F:      sound/soc/codecs/tscs*.c
14127 F:      sound/soc/codecs/tscs*.h
14128 F:      Documentation/devicetree/bindings/sound/tscs*.txt
14129
14130 TTY LAYER
14131 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14132 M:      Jiri Slaby <jslaby@suse.com>
14133 S:      Supported
14134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
14135 F:      Documentation/serial/
14136 F:      drivers/tty/
14137 F:      drivers/tty/serial/serial_core.c
14138 F:      include/linux/serial_core.h
14139 F:      include/linux/serial.h
14140 F:      include/linux/tty.h
14141 F:      include/uapi/linux/serial_core.h
14142 F:      include/uapi/linux/serial.h
14143 F:      include/uapi/linux/tty.h
14144
14145 TUA9001 MEDIA DRIVER
14146 M:      Antti Palosaari <crope@iki.fi>
14147 L:      linux-media@vger.kernel.org
14148 W:      https://linuxtv.org
14149 W:      http://palosaari.fi/linux/
14150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14151 T:      git git://linuxtv.org/anttip/media_tree.git
14152 S:      Maintained
14153 F:      drivers/media/tuners/tua9001*
14154
14155 TULIP NETWORK DRIVERS
14156 L:      netdev@vger.kernel.org
14157 L:      linux-parisc@vger.kernel.org
14158 S:      Orphan
14159 F:      drivers/net/ethernet/dec/tulip/
14160
14161 TUN/TAP driver
14162 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
14163 W:      http://vtun.sourceforge.net/tun
14164 S:      Maintained
14165 F:      Documentation/networking/tuntap.txt
14166 F:      arch/um/os-Linux/drivers/
14167
14168 TURBOCHANNEL SUBSYSTEM
14169 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
14170 M:      Ralf Baechle <ralf@linux-mips.org>
14171 L:      linux-mips@linux-mips.org
14172 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
14173 S:      Maintained
14174 F:      drivers/tc/
14175 F:      include/linux/tc.h
14176
14177 TW5864 VIDEO4LINUX DRIVER
14178 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14179 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14180 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14181 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14182 L:      linux-media@vger.kernel.org
14183 S:      Supported
14184 F:      drivers/media/pci/tw5864/
14185
14186 TW68 VIDEO4LINUX DRIVER
14187 M:      Hans Verkuil <hverkuil@xs4all.nl>
14188 L:      linux-media@vger.kernel.org
14189 T:      git git://linuxtv.org/media_tree.git
14190 W:      https://linuxtv.org
14191 S:      Odd Fixes
14192 F:      drivers/media/pci/tw68/
14193
14194 TW686X VIDEO4LINUX DRIVER
14195 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14196 L:      linux-media@vger.kernel.org
14197 T:      git git://linuxtv.org/media_tree.git
14198 W:      http://linuxtv.org
14199 S:      Maintained
14200 F:      drivers/media/pci/tw686x/
14201
14202 UBI FILE SYSTEM (UBIFS)
14203 M:      Richard Weinberger <richard@nod.at>
14204 M:      Artem Bityutskiy <dedekind1@gmail.com>
14205 M:      Adrian Hunter <adrian.hunter@intel.com>
14206 L:      linux-mtd@lists.infradead.org
14207 T:      git git://git.infradead.org/ubifs-2.6.git
14208 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
14209 S:      Supported
14210 F:      Documentation/filesystems/ubifs.txt
14211 F:      fs/ubifs/
14212
14213 UCLINUX (M68KNOMMU AND COLDFIRE)
14214 M:      Greg Ungerer <gerg@linux-m68k.org>
14215 W:      http://www.linux-m68k.org/
14216 W:      http://www.uclinux.org/
14217 L:      linux-m68k@lists.linux-m68k.org
14218 L:      uclinux-dev@uclinux.org  (subscribers-only)
14219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
14220 S:      Maintained
14221 F:      arch/m68k/coldfire/
14222 F:      arch/m68k/68*/
14223 F:      arch/m68k/*/*_no.*
14224 F:      arch/m68k/include/asm/*_no.*
14225
14226 UDF FILESYSTEM
14227 M:      Jan Kara <jack@suse.com>
14228 S:      Maintained
14229 F:      Documentation/filesystems/udf.txt
14230 F:      fs/udf/
14231
14232 UDRAW TABLET
14233 M:      Bastien Nocera <hadess@hadess.net>
14234 L:      linux-input@vger.kernel.org
14235 S:      Maintained
14236 F:      drivers/hid/hid-udraw-ps3.c
14237
14238 UFS FILESYSTEM
14239 M:      Evgeniy Dushistov <dushistov@mail.ru>
14240 S:      Maintained
14241 F:      Documentation/filesystems/ufs.txt
14242 F:      fs/ufs/
14243
14244 UHID USERSPACE HID IO DRIVER:
14245 M:      David Herrmann <dh.herrmann@googlemail.com>
14246 L:      linux-input@vger.kernel.org
14247 S:      Maintained
14248 F:      drivers/hid/uhid.c
14249 F:      include/uapi/linux/uhid.h
14250
14251 ULPI BUS
14252 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14253 L:      linux-usb@vger.kernel.org
14254 S:      Maintained
14255 F:      drivers/usb/common/ulpi.c
14256 F:      include/linux/ulpi/
14257
14258 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14259 L:      linux-usb@vger.kernel.org
14260 S:      Orphan
14261 F:      drivers/uwb/
14262 F:      include/linux/uwb.h
14263 F:      include/linux/uwb/
14264
14265 UNICORE32 ARCHITECTURE:
14266 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
14267 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
14268 S:      Maintained
14269 T:      git git://github.com/gxt/linux.git
14270 F:      arch/unicore32/
14271
14272 UNIFDEF
14273 M:      Tony Finch <dot@dotat.at>
14274 W:      http://dotat.at/prog/unifdef
14275 S:      Maintained
14276 F:      scripts/unifdef.c
14277
14278 UNIFORM CDROM DRIVER
14279 M:      Jens Axboe <axboe@kernel.dk>
14280 W:      http://www.kernel.dk
14281 S:      Maintained
14282 F:      Documentation/cdrom/
14283 F:      drivers/cdrom/cdrom.c
14284 F:      include/linux/cdrom.h
14285 F:      include/uapi/linux/cdrom.h
14286
14287 UNISYS S-PAR DRIVERS
14288 M:      David Kershner <david.kershner@unisys.com>
14289 L:      sparmaintainer@unisys.com (Unisys internal)
14290 S:      Supported
14291 F:      include/linux/visorbus.h
14292 F:      drivers/visorbus/
14293 F:      drivers/staging/unisys/
14294
14295 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
14296 M:      Vinayak Holikatti <vinholikatti@gmail.com>
14297 L:      linux-scsi@vger.kernel.org
14298 S:      Supported
14299 F:      Documentation/scsi/ufs.txt
14300 F:      drivers/scsi/ufs/
14301
14302 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
14303 M:      Joao Pinto <jpinto@synopsys.com>
14304 L:      linux-scsi@vger.kernel.org
14305 S:      Supported
14306 F:      drivers/scsi/ufs/*dwc*
14307
14308 UNSORTED BLOCK IMAGES (UBI)
14309 M:      Artem Bityutskiy <dedekind1@gmail.com>
14310 M:      Richard Weinberger <richard@nod.at>
14311 W:      http://www.linux-mtd.infradead.org/
14312 L:      linux-mtd@lists.infradead.org
14313 T:      git git://git.infradead.org/ubifs-2.6.git
14314 S:      Supported
14315 F:      drivers/mtd/ubi/
14316 F:      include/linux/mtd/ubi.h
14317 F:      include/uapi/mtd/ubi-user.h
14318
14319 USB "USBNET" DRIVER FRAMEWORK
14320 M:      Oliver Neukum <oneukum@suse.com>
14321 L:      netdev@vger.kernel.org
14322 W:      http://www.linux-usb.org/usbnet
14323 S:      Maintained
14324 F:      drivers/net/usb/usbnet.c
14325 F:      include/linux/usb/usbnet.h
14326
14327 USB ACM DRIVER
14328 M:      Oliver Neukum <oneukum@suse.com>
14329 L:      linux-usb@vger.kernel.org
14330 S:      Maintained
14331 F:      Documentation/usb/acm.txt
14332 F:      drivers/usb/class/cdc-acm.*
14333
14334 USB AR5523 WIRELESS DRIVER
14335 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
14336 L:      linux-wireless@vger.kernel.org
14337 S:      Maintained
14338 F:      drivers/net/wireless/ath/ar5523/
14339
14340 USB ATTACHED SCSI
14341 M:      Oliver Neukum <oneukum@suse.com>
14342 L:      linux-usb@vger.kernel.org
14343 L:      linux-scsi@vger.kernel.org
14344 S:      Maintained
14345 F:      drivers/usb/storage/uas.c
14346
14347 USB CDC ETHERNET DRIVER
14348 M:      Oliver Neukum <oliver@neukum.org>
14349 L:      linux-usb@vger.kernel.org
14350 S:      Maintained
14351 F:      drivers/net/usb/cdc_*.c
14352 F:      include/uapi/linux/usb/cdc.h
14353
14354 USB CHAOSKEY DRIVER
14355 M:      Keith Packard <keithp@keithp.com>
14356 L:      linux-usb@vger.kernel.org
14357 S:      Maintained
14358 F:      drivers/usb/misc/chaoskey.c
14359
14360 USB CYPRESS C67X00 DRIVER
14361 M:      Peter Korsgaard <jacmet@sunsite.dk>
14362 L:      linux-usb@vger.kernel.org
14363 S:      Maintained
14364 F:      drivers/usb/c67x00/
14365
14366 USB DAVICOM DM9601 DRIVER
14367 M:      Peter Korsgaard <jacmet@sunsite.dk>
14368 L:      netdev@vger.kernel.org
14369 W:      http://www.linux-usb.org/usbnet
14370 S:      Maintained
14371 F:      drivers/net/usb/dm9601.c
14372
14373 USB DIAMOND RIO500 DRIVER
14374 M:      Cesar Miquel <miquel@df.uba.ar>
14375 L:      rio500-users@lists.sourceforge.net
14376 W:      http://rio500.sourceforge.net
14377 S:      Maintained
14378 F:      drivers/usb/misc/rio500*
14379
14380 USB EHCI DRIVER
14381 M:      Alan Stern <stern@rowland.harvard.edu>
14382 L:      linux-usb@vger.kernel.org
14383 S:      Maintained
14384 F:      Documentation/usb/ehci.txt
14385 F:      drivers/usb/host/ehci*
14386
14387 USB GADGET/PERIPHERAL SUBSYSTEM
14388 M:      Felipe Balbi <balbi@kernel.org>
14389 L:      linux-usb@vger.kernel.org
14390 W:      http://www.linux-usb.org/gadget
14391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14392 S:      Maintained
14393 F:      drivers/usb/gadget/
14394 F:      include/linux/usb/gadget*
14395
14396 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
14397 M:      Jiri Kosina <jikos@kernel.org>
14398 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
14399 L:      linux-usb@vger.kernel.org
14400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
14401 S:      Maintained
14402 F:      Documentation/hid/hiddev.txt
14403 F:      drivers/hid/usbhid/
14404
14405 USB ISP116X DRIVER
14406 M:      Olav Kongas <ok@artecdesign.ee>
14407 L:      linux-usb@vger.kernel.org
14408 S:      Maintained
14409 F:      drivers/usb/host/isp116x*
14410 F:      include/linux/usb/isp116x.h
14411
14412 USB LAN78XX ETHERNET DRIVER
14413 M:      Woojung Huh <woojung.huh@microchip.com>
14414 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14415 L:      netdev@vger.kernel.org
14416 S:      Maintained
14417 F:      drivers/net/usb/lan78xx.*
14418
14419 USB MASS STORAGE DRIVER
14420 M:      Alan Stern <stern@rowland.harvard.edu>
14421 L:      linux-usb@vger.kernel.org
14422 L:      usb-storage@lists.one-eyed-alien.net
14423 S:      Maintained
14424 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
14425 F:      drivers/usb/storage/
14426
14427 USB MIDI DRIVER
14428 M:      Clemens Ladisch <clemens@ladisch.de>
14429 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14430 T:      git git://git.alsa-project.org/alsa-kernel.git
14431 S:      Maintained
14432 F:      sound/usb/midi.*
14433
14434 USB NETWORKING DRIVERS
14435 L:      linux-usb@vger.kernel.org
14436 S:      Odd Fixes
14437 F:      drivers/net/usb/
14438
14439 USB OHCI DRIVER
14440 M:      Alan Stern <stern@rowland.harvard.edu>
14441 L:      linux-usb@vger.kernel.org
14442 S:      Maintained
14443 F:      Documentation/usb/ohci.txt
14444 F:      drivers/usb/host/ohci*
14445
14446 USB OTG FSM (Finite State Machine)
14447 M:      Peter Chen <Peter.Chen@nxp.com>
14448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14449 L:      linux-usb@vger.kernel.org
14450 S:      Maintained
14451 F:      drivers/usb/common/usb-otg-fsm.c
14452
14453 USB OVER IP DRIVER
14454 M:      Valentina Manea <valentina.manea.m@gmail.com>
14455 M:      Shuah Khan <shuahkh@osg.samsung.com>
14456 M:      Shuah Khan <shuah@kernel.org>
14457 L:      linux-usb@vger.kernel.org
14458 S:      Maintained
14459 F:      Documentation/usb/usbip_protocol.txt
14460 F:      drivers/usb/usbip/
14461 F:      tools/usb/usbip/
14462
14463 USB PEGASUS DRIVER
14464 M:      Petko Manolov <petkan@nucleusys.com>
14465 L:      linux-usb@vger.kernel.org
14466 L:      netdev@vger.kernel.org
14467 T:      git git://github.com/petkan/pegasus.git
14468 W:      https://github.com/petkan/pegasus
14469 S:      Maintained
14470 F:      drivers/net/usb/pegasus.*
14471
14472 USB PHY LAYER
14473 M:      Felipe Balbi <balbi@kernel.org>
14474 L:      linux-usb@vger.kernel.org
14475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14476 S:      Maintained
14477 F:      drivers/usb/phy/
14478
14479 USB PRINTER DRIVER (usblp)
14480 M:      Pete Zaitcev <zaitcev@redhat.com>
14481 L:      linux-usb@vger.kernel.org
14482 S:      Supported
14483 F:      drivers/usb/class/usblp.c
14484
14485 USB QMI WWAN NETWORK DRIVER
14486 M:      Bjørn Mork <bjorn@mork.no>
14487 L:      netdev@vger.kernel.org
14488 S:      Maintained
14489 F:      Documentation/ABI/testing/sysfs-class-net-qmi
14490 F:      drivers/net/usb/qmi_wwan.c
14491
14492 USB RTL8150 DRIVER
14493 M:      Petko Manolov <petkan@nucleusys.com>
14494 L:      linux-usb@vger.kernel.org
14495 L:      netdev@vger.kernel.org
14496 T:      git git://github.com/petkan/rtl8150.git
14497 W:      https://github.com/petkan/rtl8150
14498 S:      Maintained
14499 F:      drivers/net/usb/rtl8150.c
14500
14501 USB SERIAL SUBSYSTEM
14502 M:      Johan Hovold <johan@kernel.org>
14503 L:      linux-usb@vger.kernel.org
14504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14505 S:      Maintained
14506 F:      Documentation/usb/usb-serial.txt
14507 F:      drivers/usb/serial/
14508 F:      include/linux/usb/serial.h
14509
14510 USB SMSC75XX ETHERNET DRIVER
14511 M:      Steve Glendinning <steve.glendinning@shawell.net>
14512 L:      netdev@vger.kernel.org
14513 S:      Maintained
14514 F:      drivers/net/usb/smsc75xx.*
14515
14516 USB SMSC95XX ETHERNET DRIVER
14517 M:      Steve Glendinning <steve.glendinning@shawell.net>
14518 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14519 L:      netdev@vger.kernel.org
14520 S:      Maintained
14521 F:      drivers/net/usb/smsc95xx.*
14522
14523 USB SUBSYSTEM
14524 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14525 L:      linux-usb@vger.kernel.org
14526 W:      http://www.linux-usb.org
14527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14528 S:      Supported
14529 F:      Documentation/devicetree/bindings/usb/
14530 F:      Documentation/usb/
14531 F:      drivers/usb/
14532 F:      include/linux/usb.h
14533 F:      include/linux/usb/
14534
14535 USB TYPEC SUBSYSTEM
14536 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14537 L:      linux-usb@vger.kernel.org
14538 S:      Maintained
14539 F:      Documentation/ABI/testing/sysfs-class-typec
14540 F:      Documentation/usb/typec.rst
14541 F:      drivers/usb/typec/
14542 F:      include/linux/usb/typec.h
14543
14544 USB UHCI DRIVER
14545 M:      Alan Stern <stern@rowland.harvard.edu>
14546 L:      linux-usb@vger.kernel.org
14547 S:      Maintained
14548 F:      drivers/usb/host/uhci*
14549
14550 USB VIDEO CLASS
14551 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14552 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14553 L:      linux-media@vger.kernel.org
14554 T:      git git://linuxtv.org/media_tree.git
14555 W:      http://www.ideasonboard.org/uvc/
14556 S:      Maintained
14557 F:      drivers/media/usb/uvc/
14558 F:      include/uapi/linux/uvcvideo.h
14559
14560 USB VISION DRIVER
14561 M:      Hans Verkuil <hverkuil@xs4all.nl>
14562 L:      linux-media@vger.kernel.org
14563 T:      git git://linuxtv.org/media_tree.git
14564 W:      https://linuxtv.org
14565 S:      Odd Fixes
14566 F:      drivers/media/usb/usbvision/
14567
14568 USB WEBCAM GADGET
14569 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14570 L:      linux-usb@vger.kernel.org
14571 S:      Maintained
14572 F:      drivers/usb/gadget/function/*uvc*
14573 F:      drivers/usb/gadget/legacy/webcam.c
14574
14575 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14576 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
14577 L:      linux-wireless@vger.kernel.org
14578 S:      Maintained
14579 F:      drivers/net/wireless/rndis_wlan.c
14580
14581 USB XHCI DRIVER
14582 M:      Mathias Nyman <mathias.nyman@intel.com>
14583 L:      linux-usb@vger.kernel.org
14584 S:      Supported
14585 F:      drivers/usb/host/xhci*
14586 F:      drivers/usb/host/pci-quirks*
14587
14588 USB ZD1201 DRIVER
14589 L:      linux-wireless@vger.kernel.org
14590 W:      http://linux-lc100020.sourceforge.net
14591 S:      Orphan
14592 F:      drivers/net/wireless/zydas/zd1201.*
14593
14594 USB ZR364XX DRIVER
14595 M:      Antoine Jacquet <royale@zerezo.com>
14596 L:      linux-usb@vger.kernel.org
14597 L:      linux-media@vger.kernel.org
14598 T:      git git://linuxtv.org/media_tree.git
14599 W:      http://royale.zerezo.com/zr364xx/
14600 S:      Maintained
14601 F:      Documentation/media/v4l-drivers/zr364xx*
14602 F:      drivers/media/usb/zr364xx/
14603
14604 USER-MODE LINUX (UML)
14605 M:      Jeff Dike <jdike@addtoit.com>
14606 M:      Richard Weinberger <richard@nod.at>
14607 L:      user-mode-linux-devel@lists.sourceforge.net
14608 L:      user-mode-linux-user@lists.sourceforge.net
14609 W:      http://user-mode-linux.sourceforge.net
14610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14611 S:      Maintained
14612 F:      Documentation/virtual/uml/
14613 F:      arch/um/
14614 F:      arch/x86/um/
14615 F:      fs/hostfs/
14616 F:      fs/hppfs/
14617
14618 USERSPACE I/O (UIO)
14619 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14620 S:      Maintained
14621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14622 F:      Documentation/driver-api/uio-howto.rst
14623 F:      drivers/uio/
14624 F:      include/linux/uio*.h
14625
14626 UTIL-LINUX PACKAGE
14627 M:      Karel Zak <kzak@redhat.com>
14628 L:      util-linux@vger.kernel.org
14629 W:      http://en.wikipedia.org/wiki/Util-linux
14630 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14631 S:      Maintained
14632
14633 UUID HELPERS
14634 M:      Christoph Hellwig <hch@lst.de>
14635 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14636 L:      linux-kernel@vger.kernel.org
14637 T:      git git://git.infradead.org/users/hch/uuid.git
14638 F:      lib/uuid.c
14639 F:      lib/test_uuid.c
14640 F:      include/linux/uuid.h
14641 F:      include/uapi/linux/uuid.h
14642 S:      Maintained
14643
14644 UVESAFB DRIVER
14645 M:      Michal Januszewski <spock@gentoo.org>
14646 L:      linux-fbdev@vger.kernel.org
14647 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
14648 S:      Maintained
14649 F:      Documentation/fb/uvesafb.txt
14650 F:      drivers/video/fbdev/uvesafb.*
14651
14652 VF610 NAND DRIVER
14653 M:      Stefan Agner <stefan@agner.ch>
14654 L:      linux-mtd@lists.infradead.org
14655 S:      Supported
14656 F:      drivers/mtd/nand/vf610_nfc.c
14657
14658 VFAT/FAT/MSDOS FILESYSTEM
14659 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14660 S:      Maintained
14661 F:      Documentation/filesystems/vfat.txt
14662 F:      fs/fat/
14663
14664 VFIO DRIVER
14665 M:      Alex Williamson <alex.williamson@redhat.com>
14666 L:      kvm@vger.kernel.org
14667 T:      git git://github.com/awilliam/linux-vfio.git
14668 S:      Maintained
14669 F:      Documentation/vfio.txt
14670 F:      drivers/vfio/
14671 F:      include/linux/vfio.h
14672 F:      include/uapi/linux/vfio.h
14673
14674 VFIO MEDIATED DEVICE DRIVERS
14675 M:      Kirti Wankhede <kwankhede@nvidia.com>
14676 L:      kvm@vger.kernel.org
14677 S:      Maintained
14678 F:      Documentation/vfio-mediated-device.txt
14679 F:      drivers/vfio/mdev/
14680 F:      include/linux/mdev.h
14681 F:      samples/vfio-mdev/
14682
14683 VFIO PLATFORM DRIVER
14684 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
14685 L:      kvm@vger.kernel.org
14686 S:      Maintained
14687 F:      drivers/vfio/platform/
14688
14689 VGA_SWITCHEROO
14690 R:      Lukas Wunner <lukas@wunner.de>
14691 S:      Maintained
14692 F:      Documentation/gpu/vga-switcheroo.rst
14693 F:      drivers/gpu/vga/vga_switcheroo.c
14694 F:      include/linux/vga_switcheroo.h
14695 T:      git git://anongit.freedesktop.org/drm/drm-misc
14696
14697 VIA RHINE NETWORK DRIVER
14698 S:      Orphan
14699 F:      drivers/net/ethernet/via/via-rhine.c
14700
14701 VIA SD/MMC CARD CONTROLLER DRIVER
14702 M:      Bruce Chang <brucechang@via.com.tw>
14703 M:      Harald Welte <HaraldWelte@viatech.com>
14704 S:      Maintained
14705 F:      drivers/mmc/host/via-sdmmc.c
14706
14707 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14708 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14709 L:      linux-fbdev@vger.kernel.org
14710 S:      Maintained
14711 F:      include/linux/via-core.h
14712 F:      include/linux/via-gpio.h
14713 F:      include/linux/via_i2c.h
14714 F:      drivers/video/fbdev/via/
14715
14716 VIA VELOCITY NETWORK DRIVER
14717 M:      Francois Romieu <romieu@fr.zoreil.com>
14718 L:      netdev@vger.kernel.org
14719 S:      Maintained
14720 F:      drivers/net/ethernet/via/via-velocity.*
14721
14722 VIDEO MULTIPLEXER DRIVER
14723 M:      Philipp Zabel <p.zabel@pengutronix.de>
14724 L:      linux-media@vger.kernel.org
14725 S:      Maintained
14726 F:      drivers/media/platform/video-mux.c
14727
14728 VIDEOBUF2 FRAMEWORK
14729 M:      Pawel Osciak <pawel@osciak.com>
14730 M:      Marek Szyprowski <m.szyprowski@samsung.com>
14731 M:      Kyungmin Park <kyungmin.park@samsung.com>
14732 L:      linux-media@vger.kernel.org
14733 S:      Maintained
14734 F:      drivers/media/v4l2-core/videobuf2-*
14735 F:      include/media/videobuf2-*
14736
14737 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14738 M:      Helen Koike <helen.koike@collabora.com>
14739 L:      linux-media@vger.kernel.org
14740 T:      git git://linuxtv.org/media_tree.git
14741 W:      https://linuxtv.org
14742 S:      Maintained
14743 F:      drivers/media/platform/vimc/*
14744
14745 VIRT LIB
14746 M:      Alex Williamson <alex.williamson@redhat.com>
14747 M:      Paolo Bonzini <pbonzini@redhat.com>
14748 L:      kvm@vger.kernel.org
14749 S:      Supported
14750 F:      virt/lib/
14751
14752 VIRTIO AND VHOST VSOCK DRIVER
14753 M:      Stefan Hajnoczi <stefanha@redhat.com>
14754 L:      kvm@vger.kernel.org
14755 L:      virtualization@lists.linux-foundation.org
14756 L:      netdev@vger.kernel.org
14757 S:      Maintained
14758 F:      include/linux/virtio_vsock.h
14759 F:      include/uapi/linux/virtio_vsock.h
14760 F:      include/uapi/linux/vsockmon.h
14761 F:      include/uapi/linux/vm_sockets_diag.h
14762 F:      net/vmw_vsock/diag.c
14763 F:      net/vmw_vsock/af_vsock_tap.c
14764 F:      net/vmw_vsock/virtio_transport_common.c
14765 F:      net/vmw_vsock/virtio_transport.c
14766 F:      drivers/net/vsockmon.c
14767 F:      drivers/vhost/vsock.c
14768 F:      drivers/vhost/vsock.h
14769 F:      tools/testing/vsock/
14770
14771 VIRTIO CONSOLE DRIVER
14772 M:      Amit Shah <amit@kernel.org>
14773 L:      virtualization@lists.linux-foundation.org
14774 S:      Maintained
14775 F:      drivers/char/virtio_console.c
14776 F:      include/linux/virtio_console.h
14777 F:      include/uapi/linux/virtio_console.h
14778
14779 VIRTIO CORE, NET AND BLOCK DRIVERS
14780 M:      "Michael S. Tsirkin" <mst@redhat.com>
14781 M:      Jason Wang <jasowang@redhat.com>
14782 L:      virtualization@lists.linux-foundation.org
14783 S:      Maintained
14784 F:      Documentation/devicetree/bindings/virtio/
14785 F:      drivers/virtio/
14786 F:      tools/virtio/
14787 F:      drivers/net/virtio_net.c
14788 F:      drivers/block/virtio_blk.c
14789 F:      include/linux/virtio*.h
14790 F:      include/uapi/linux/virtio_*.h
14791 F:      drivers/crypto/virtio/
14792 F:      mm/balloon_compaction.c
14793
14794 VIRTIO CRYPTO DRIVER
14795 M:      Gonglei <arei.gonglei@huawei.com>
14796 L:      virtualization@lists.linux-foundation.org
14797 L:      linux-crypto@vger.kernel.org
14798 S:      Maintained
14799 F:      drivers/crypto/virtio/
14800 F:      include/uapi/linux/virtio_crypto.h
14801
14802 VIRTIO DRIVERS FOR S390
14803 M:      Cornelia Huck <cohuck@redhat.com>
14804 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
14805 L:      linux-s390@vger.kernel.org
14806 L:      virtualization@lists.linux-foundation.org
14807 L:      kvm@vger.kernel.org
14808 S:      Supported
14809 F:      drivers/s390/virtio/
14810 F:      arch/s390/include/uapi/asm/virtio-ccw.h
14811
14812 VIRTIO GPU DRIVER
14813 M:      David Airlie <airlied@linux.ie>
14814 M:      Gerd Hoffmann <kraxel@redhat.com>
14815 L:      dri-devel@lists.freedesktop.org
14816 L:      virtualization@lists.linux-foundation.org
14817 T:      git git://anongit.freedesktop.org/drm/drm-misc
14818 S:      Maintained
14819 F:      drivers/gpu/drm/virtio/
14820 F:      include/uapi/linux/virtio_gpu.h
14821
14822 VIRTIO HOST (VHOST)
14823 M:      "Michael S. Tsirkin" <mst@redhat.com>
14824 M:      Jason Wang <jasowang@redhat.com>
14825 L:      kvm@vger.kernel.org
14826 L:      virtualization@lists.linux-foundation.org
14827 L:      netdev@vger.kernel.org
14828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14829 S:      Maintained
14830 F:      drivers/vhost/
14831 F:      include/uapi/linux/vhost.h
14832
14833 VIRTIO INPUT DRIVER
14834 M:      Gerd Hoffmann <kraxel@redhat.com>
14835 S:      Maintained
14836 F:      drivers/virtio/virtio_input.c
14837 F:      include/uapi/linux/virtio_input.h
14838
14839 VIRTUAL BOX GUEST DEVICE DRIVER
14840 M:      Hans de Goede <hdegoede@redhat.com>
14841 M:      Arnd Bergmann <arnd@arndb.de>
14842 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14843 S:      Maintained
14844 F:      include/linux/vbox_utils.h
14845 F:      include/uapi/linux/vbox*.h
14846 F:      drivers/virt/vboxguest/
14847
14848 VIRTUAL SERIO DEVICE DRIVER
14849 M:      Stephen Chandler Paul <thatslyude@gmail.com>
14850 S:      Maintained
14851 F:      drivers/input/serio/userio.c
14852 F:      include/uapi/linux/userio.h
14853
14854 VIVID VIRTUAL VIDEO DRIVER
14855 M:      Hans Verkuil <hverkuil@xs4all.nl>
14856 L:      linux-media@vger.kernel.org
14857 T:      git git://linuxtv.org/media_tree.git
14858 W:      https://linuxtv.org
14859 S:      Maintained
14860 F:      drivers/media/platform/vivid/*
14861
14862 VLYNQ BUS
14863 M:      Florian Fainelli <f.fainelli@gmail.com>
14864 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
14865 S:      Maintained
14866 F:      drivers/vlynq/vlynq.c
14867 F:      include/linux/vlynq.h
14868
14869 VME SUBSYSTEM
14870 M:      Martyn Welch <martyn@welchs.me.uk>
14871 M:      Manohar Vanga <manohar.vanga@gmail.com>
14872 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14873 L:      devel@driverdev.osuosl.org
14874 S:      Maintained
14875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14876 F:      Documentation/driver-api/vme.rst
14877 F:      drivers/staging/vme/
14878 F:      drivers/vme/
14879 F:      include/linux/vme*
14880
14881 VMWARE BALLOON DRIVER
14882 M:      Xavier Deguillard <xdeguillard@vmware.com>
14883 M:      Philip Moltmann <moltmann@vmware.com>
14884 M:      "VMware, Inc." <pv-drivers@vmware.com>
14885 L:      linux-kernel@vger.kernel.org
14886 S:      Maintained
14887 F:      drivers/misc/vmw_balloon.c
14888
14889 VMWARE HYPERVISOR INTERFACE
14890 M:      Alok Kataria <akataria@vmware.com>
14891 L:      virtualization@lists.linux-foundation.org
14892 S:      Supported
14893 F:      arch/x86/kernel/cpu/vmware.c
14894
14895 VMWARE PVRDMA DRIVER
14896 M:      Adit Ranadive <aditr@vmware.com>
14897 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14898 L:      linux-rdma@vger.kernel.org
14899 S:      Maintained
14900 F:      drivers/infiniband/hw/vmw_pvrdma/
14901
14902 VMware PVSCSI driver
14903 M:      Jim Gill <jgill@vmware.com>
14904 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14905 L:      linux-scsi@vger.kernel.org
14906 S:      Maintained
14907 F:      drivers/scsi/vmw_pvscsi.c
14908 F:      drivers/scsi/vmw_pvscsi.h
14909
14910 VMWARE VMMOUSE SUBDRIVER
14911 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14912 M:      "VMware, Inc." <pv-drivers@vmware.com>
14913 L:      linux-input@vger.kernel.org
14914 S:      Maintained
14915 F:      drivers/input/mouse/vmmouse.c
14916 F:      drivers/input/mouse/vmmouse.h
14917
14918 VMWARE VMXNET3 ETHERNET DRIVER
14919 M:      Shrikrishna Khare <skhare@vmware.com>
14920 M:      "VMware, Inc." <pv-drivers@vmware.com>
14921 L:      netdev@vger.kernel.org
14922 S:      Maintained
14923 F:      drivers/net/vmxnet3/
14924
14925 VOCORE VOCORE2 BOARD
14926 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14927 L:      linux-mips@linux-mips.org
14928 S:      Maintained
14929 F:      arch/mips/boot/dts/ralink/vocore2.dts
14930
14931 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14932 M:      Liam Girdwood <lgirdwood@gmail.com>
14933 M:      Mark Brown <broonie@kernel.org>
14934 L:      linux-kernel@vger.kernel.org
14935 W:      http://www.slimlogic.co.uk/?p=48
14936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14937 S:      Supported
14938 F:      Documentation/devicetree/bindings/regulator/
14939 F:      Documentation/power/regulator/
14940 F:      drivers/regulator/
14941 F:      include/dt-bindings/regulator/
14942 F:      include/linux/regulator/
14943
14944 VRF
14945 M:      David Ahern <dsa@cumulusnetworks.com>
14946 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
14947 L:      netdev@vger.kernel.org
14948 S:      Maintained
14949 F:      drivers/net/vrf.c
14950 F:      Documentation/networking/vrf.txt
14951
14952 VT1211 HARDWARE MONITOR DRIVER
14953 M:      Juerg Haefliger <juergh@gmail.com>
14954 L:      linux-hwmon@vger.kernel.org
14955 S:      Maintained
14956 F:      Documentation/hwmon/vt1211
14957 F:      drivers/hwmon/vt1211.c
14958
14959 VT8231 HARDWARE MONITOR DRIVER
14960 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
14961 L:      linux-hwmon@vger.kernel.org
14962 S:      Maintained
14963 F:      drivers/hwmon/vt8231.c
14964
14965 VUB300 USB to SDIO/SD/MMC bridge chip
14966 M:      Tony Olech <tony.olech@elandigitalsystems.com>
14967 L:      linux-mmc@vger.kernel.org
14968 L:      linux-usb@vger.kernel.org
14969 S:      Supported
14970 F:      drivers/mmc/host/vub300.c
14971
14972 W1 DALLAS'S 1-WIRE BUS
14973 M:      Evgeniy Polyakov <zbr@ioremap.net>
14974 S:      Maintained
14975 F:      Documentation/w1/
14976 F:      drivers/w1/
14977 F:      include/linux/w1.h
14978
14979 W83791D HARDWARE MONITORING DRIVER
14980 M:      Marc Hulsman <m.hulsman@tudelft.nl>
14981 L:      linux-hwmon@vger.kernel.org
14982 S:      Maintained
14983 F:      Documentation/hwmon/w83791d
14984 F:      drivers/hwmon/w83791d.c
14985
14986 W83793 HARDWARE MONITORING DRIVER
14987 M:      Rudolf Marek <r.marek@assembler.cz>
14988 L:      linux-hwmon@vger.kernel.org
14989 S:      Maintained
14990 F:      Documentation/hwmon/w83793
14991 F:      drivers/hwmon/w83793.c
14992
14993 W83795 HARDWARE MONITORING DRIVER
14994 M:      Jean Delvare <jdelvare@suse.com>
14995 L:      linux-hwmon@vger.kernel.org
14996 S:      Maintained
14997 F:      drivers/hwmon/w83795.c
14998
14999 W83L51xD SD/MMC CARD INTERFACE DRIVER
15000 M:      Pierre Ossman <pierre@ossman.eu>
15001 S:      Maintained
15002 F:      drivers/mmc/host/wbsd.*
15003
15004 WACOM PROTOCOL 4 SERIAL TABLETS
15005 M:      Julian Squires <julian@cipht.net>
15006 M:      Hans de Goede <hdegoede@redhat.com>
15007 L:      linux-input@vger.kernel.org
15008 S:      Maintained
15009 F:      drivers/input/tablet/wacom_serial4.c
15010
15011 WATCHDOG DEVICE DRIVERS
15012 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
15013 M:      Guenter Roeck <linux@roeck-us.net>
15014 L:      linux-watchdog@vger.kernel.org
15015 W:      http://www.linux-watchdog.org/
15016 T:      git git://www.linux-watchdog.org/linux-watchdog.git
15017 S:      Maintained
15018 F:      Documentation/devicetree/bindings/watchdog/
15019 F:      Documentation/watchdog/
15020 F:      drivers/watchdog/
15021 F:      include/linux/watchdog.h
15022 F:      include/uapi/linux/watchdog.h
15023
15024 WHISKEYCOVE PMIC GPIO DRIVER
15025 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
15026 L:      linux-gpio@vger.kernel.org
15027 S:      Maintained
15028 F:      drivers/gpio/gpio-wcove.c
15029
15030 WIIMOTE HID DRIVER
15031 M:      David Herrmann <dh.herrmann@googlemail.com>
15032 L:      linux-input@vger.kernel.org
15033 S:      Maintained
15034 F:      drivers/hid/hid-wiimote*
15035
15036 WILOCITY WIL6210 WIRELESS DRIVER
15037 M:      Maya Erez <merez@codeaurora.org>
15038 L:      linux-wireless@vger.kernel.org
15039 L:      wil6210@qti.qualcomm.com
15040 S:      Supported
15041 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
15042 F:      drivers/net/wireless/ath/wil6210/
15043
15044 WIMAX STACK
15045 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
15046 M:      linux-wimax@intel.com
15047 L:      wimax@linuxwimax.org (subscribers-only)
15048 S:      Supported
15049 W:      http://linuxwimax.org
15050 F:      Documentation/wimax/README.wimax
15051 F:      include/linux/wimax/debug.h
15052 F:      include/net/wimax.h
15053 F:      include/uapi/linux/wimax.h
15054 F:      net/wimax/
15055
15056 WINBOND CIR DRIVER
15057 M:      David Härdeman <david@hardeman.nu>
15058 S:      Maintained
15059 F:      drivers/media/rc/winbond-cir.c
15060
15061 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
15062 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15063 L:      linux-watchdog@vger.kernel.org
15064 S:      Maintained
15065 F:      drivers/watchdog/ebc-c384_wdt.c
15066
15067 WINSYSTEMS WS16C48 GPIO DRIVER
15068 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15069 L:      linux-gpio@vger.kernel.org
15070 S:      Maintained
15071 F:      drivers/gpio/gpio-ws16c48.c
15072
15073 WISTRON LAPTOP BUTTON DRIVER
15074 M:      Miloslav Trmac <mitr@volny.cz>
15075 S:      Maintained
15076 F:      drivers/input/misc/wistron_btns.c
15077
15078 WL3501 WIRELESS PCMCIA CARD DRIVER
15079 L:      linux-wireless@vger.kernel.org
15080 S:      Odd fixes
15081 F:      drivers/net/wireless/wl3501*
15082
15083 WOLFSON MICROELECTRONICS DRIVERS
15084 L:      patches@opensource.cirrus.com
15085 T:      git https://github.com/CirrusLogic/linux-drivers.git
15086 W:      https://github.com/CirrusLogic/linux-drivers/wiki
15087 S:      Supported
15088 F:      Documentation/hwmon/wm83??
15089 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
15090 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
15091 F:      Documentation/devicetree/bindings/mfd/arizona.txt
15092 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
15093 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
15094 F:      arch/arm/mach-s3c64xx/mach-crag6410*
15095 F:      drivers/clk/clk-wm83*.c
15096 F:      drivers/extcon/extcon-arizona.c
15097 F:      drivers/leds/leds-wm83*.c
15098 F:      drivers/gpio/gpio-*wm*.c
15099 F:      drivers/gpio/gpio-arizona.c
15100 F:      drivers/hwmon/wm83??-hwmon.c
15101 F:      drivers/input/misc/wm831x-on.c
15102 F:      drivers/input/touchscreen/wm831x-ts.c
15103 F:      drivers/input/touchscreen/wm97*.c
15104 F:      drivers/mfd/arizona*
15105 F:      drivers/mfd/wm*.c
15106 F:      drivers/mfd/cs47l24*
15107 F:      drivers/power/supply/wm83*.c
15108 F:      drivers/rtc/rtc-wm83*.c
15109 F:      drivers/regulator/wm8*.c
15110 F:      drivers/regulator/arizona*
15111 F:      drivers/video/backlight/wm83*_bl.c
15112 F:      drivers/watchdog/wm83*_wdt.c
15113 F:      include/linux/mfd/arizona/
15114 F:      include/linux/mfd/wm831x/
15115 F:      include/linux/mfd/wm8350/
15116 F:      include/linux/mfd/wm8400*
15117 F:      include/linux/regulator/arizona*
15118 F:      include/linux/wm97xx.h
15119 F:      include/sound/wm????.h
15120 F:      sound/soc/codecs/arizona.?
15121 F:      sound/soc/codecs/wm*
15122 F:      sound/soc/codecs/cs47l24*
15123
15124 WORKQUEUE
15125 M:      Tejun Heo <tj@kernel.org>
15126 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
15128 S:      Maintained
15129 F:      include/linux/workqueue.h
15130 F:      kernel/workqueue.c
15131 F:      Documentation/core-api/workqueue.rst
15132
15133 X-POWERS AXP288 PMIC DRIVERS
15134 M:      Hans de Goede <hdegoede@redhat.com>
15135 S:      Maintained
15136 N:      axp288
15137 F:      drivers/acpi/pmic/intel_pmic_xpower.c
15138
15139 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
15140 M:      Chen-Yu Tsai <wens@csie.org>
15141 L:      linux-kernel@vger.kernel.org
15142 S:      Maintained
15143 N:      axp[128]
15144
15145 X.25 NETWORK LAYER
15146 M:      Andrew Hendry <andrew.hendry@gmail.com>
15147 L:      linux-x25@vger.kernel.org
15148 S:      Odd Fixes
15149 F:      Documentation/networking/x25*
15150 F:      include/net/x25*
15151 F:      net/x25/
15152
15153 X86 ARCHITECTURE (32-BIT AND 64-BIT)
15154 M:      Thomas Gleixner <tglx@linutronix.de>
15155 M:      Ingo Molnar <mingo@redhat.com>
15156 R:      "H. Peter Anvin" <hpa@zytor.com>
15157 M:      x86@kernel.org
15158 L:      linux-kernel@vger.kernel.org
15159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15160 S:      Maintained
15161 F:      Documentation/x86/
15162 F:      arch/x86/
15163
15164 X86 MCE INFRASTRUCTURE
15165 M:      Tony Luck <tony.luck@intel.com>
15166 M:      Borislav Petkov <bp@alien8.de>
15167 L:      linux-edac@vger.kernel.org
15168 S:      Maintained
15169 F:      arch/x86/kernel/cpu/mcheck/*
15170
15171 X86 MICROCODE UPDATE SUPPORT
15172 M:      Borislav Petkov <bp@alien8.de>
15173 S:      Maintained
15174 F:      arch/x86/kernel/cpu/microcode/*
15175
15176 X86 PLATFORM DRIVERS
15177 M:      Darren Hart <dvhart@infradead.org>
15178 M:      Andy Shevchenko <andy@infradead.org>
15179 L:      platform-driver-x86@vger.kernel.org
15180 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
15181 S:      Maintained
15182 F:      drivers/platform/x86/
15183 F:      drivers/platform/olpc/
15184
15185 X86 VDSO
15186 M:      Andy Lutomirski <luto@amacapital.net>
15187 L:      linux-kernel@vger.kernel.org
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
15189 S:      Maintained
15190 F:      arch/x86/entry/vdso/
15191
15192 XC2028/3028 TUNER DRIVER
15193 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
15194 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15195 L:      linux-media@vger.kernel.org
15196 W:      https://linuxtv.org
15197 T:      git git://linuxtv.org/media_tree.git
15198 S:      Maintained
15199 F:      drivers/media/tuners/tuner-xc2028.*
15200
15201 XEN BLOCK SUBSYSTEM
15202 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15203 M:      Roger Pau Monné <roger.pau@citrix.com>
15204 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15205 S:      Supported
15206 F:      drivers/block/xen-blkback/*
15207 F:      drivers/block/xen*
15208
15209 XEN HYPERVISOR ARM
15210 M:      Stefano Stabellini <sstabellini@kernel.org>
15211 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15212 S:      Maintained
15213 F:      arch/arm/xen/
15214 F:      arch/arm/include/asm/xen/
15215
15216 XEN HYPERVISOR ARM64
15217 M:      Stefano Stabellini <sstabellini@kernel.org>
15218 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15219 S:      Maintained
15220 F:      arch/arm64/xen/
15221 F:      arch/arm64/include/asm/xen/
15222
15223 XEN HYPERVISOR INTERFACE
15224 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
15225 M:      Juergen Gross <jgross@suse.com>
15226 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
15228 S:      Supported
15229 F:      arch/x86/xen/
15230 F:      drivers/*/xen-*front.c
15231 F:      drivers/xen/
15232 F:      arch/x86/include/asm/xen/
15233 F:      arch/x86/include/asm/pvclock-abi.h
15234 F:      include/xen/
15235 F:      include/uapi/xen/
15236 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
15237 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
15238
15239 XEN NETWORK BACKEND DRIVER
15240 M:      Wei Liu <wei.liu2@citrix.com>
15241 M:      Paul Durrant <paul.durrant@citrix.com>
15242 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15243 L:      netdev@vger.kernel.org
15244 S:      Supported
15245 F:      drivers/net/xen-netback/*
15246
15247 XEN PCI SUBSYSTEM
15248 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15249 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15250 S:      Supported
15251 F:      arch/x86/pci/*xen*
15252 F:      drivers/pci/*xen*
15253
15254 XEN PVSCSI DRIVERS
15255 M:      Juergen Gross <jgross@suse.com>
15256 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15257 L:      linux-scsi@vger.kernel.org
15258 S:      Supported
15259 F:      drivers/scsi/xen-scsifront.c
15260 F:      drivers/xen/xen-scsiback.c
15261 F:      include/xen/interface/io/vscsiif.h
15262
15263 XEN SWIOTLB SUBSYSTEM
15264 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15265 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15266 L:      iommu@lists.linux-foundation.org
15267 S:      Supported
15268 F:      arch/x86/xen/*swiotlb*
15269 F:      drivers/xen/*swiotlb*
15270
15271 XFS FILESYSTEM
15272 M:      Darrick J. Wong <darrick.wong@oracle.com>
15273 M:      linux-xfs@vger.kernel.org
15274 L:      linux-xfs@vger.kernel.org
15275 W:      http://xfs.org/
15276 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
15277 S:      Supported
15278 F:      Documentation/filesystems/xfs.txt
15279 F:      fs/xfs/
15280
15281 XILINX AXI ETHERNET DRIVER
15282 M:      Anirudha Sarangi <anirudh@xilinx.com>
15283 M:      John Linn <John.Linn@xilinx.com>
15284 S:      Maintained
15285 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
15286
15287 XILINX UARTLITE SERIAL DRIVER
15288 M:      Peter Korsgaard <jacmet@sunsite.dk>
15289 L:      linux-serial@vger.kernel.org
15290 S:      Maintained
15291 F:      drivers/tty/serial/uartlite.c
15292
15293 XILINX VIDEO IP CORES
15294 M:      Hyun Kwon <hyun.kwon@xilinx.com>
15295 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15296 L:      linux-media@vger.kernel.org
15297 T:      git git://linuxtv.org/media_tree.git
15298 S:      Supported
15299 F:      Documentation/devicetree/bindings/media/xilinx/
15300 F:      drivers/media/platform/xilinx/
15301 F:      include/uapi/linux/xilinx-v4l2-controls.h
15302
15303 XILLYBUS DRIVER
15304 M:      Eli Billauer <eli.billauer@gmail.com>
15305 L:      linux-kernel@vger.kernel.org
15306 S:      Supported
15307 F:      drivers/char/xillybus/
15308
15309 XRA1403 GPIO EXPANDER
15310 M:      Nandor Han <nandor.han@ge.com>
15311 M:      Semi Malinen <semi.malinen@ge.com>
15312 L:      linux-gpio@vger.kernel.org
15313 S:      Maintained
15314 F:      drivers/gpio/gpio-xra1403.c
15315 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
15316
15317 XTENSA XTFPGA PLATFORM SUPPORT
15318 M:      Max Filippov <jcmvbkbc@gmail.com>
15319 L:      linux-xtensa@linux-xtensa.org
15320 S:      Maintained
15321 F:      drivers/spi/spi-xtensa-xtfpga.c
15322 F:      sound/soc/xtensa/xtfpga-i2s.c
15323
15324 YAM DRIVER FOR AX.25
15325 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
15326 L:      linux-hams@vger.kernel.org
15327 S:      Maintained
15328 F:      drivers/net/hamradio/yam*
15329 F:      include/linux/yam.h
15330
15331 YAMA SECURITY MODULE
15332 M:      Kees Cook <keescook@chromium.org>
15333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
15334 S:      Supported
15335 F:      security/yama/
15336 F:      Documentation/admin-guide/LSM/Yama.rst
15337
15338 YEALINK PHONE DRIVER
15339 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
15340 L:      usbb2k-api-dev@nongnu.org
15341 S:      Maintained
15342 F:      Documentation/input/yealink.rst
15343 F:      drivers/input/misc/yealink.*
15344
15345 Z8530 DRIVER FOR AX.25
15346 M:      Joerg Reuter <jreuter@yaina.de>
15347 W:      http://yaina.de/jreuter/
15348 W:      http://www.qsl.net/dl1bke/
15349 L:      linux-hams@vger.kernel.org
15350 S:      Maintained
15351 F:      Documentation/networking/z8530drv.txt
15352 F:      drivers/net/hamradio/*scc.c
15353 F:      drivers/net/hamradio/z8530.h
15354
15355 ZBUD COMPRESSED PAGE ALLOCATOR
15356 M:      Seth Jennings <sjenning@redhat.com>
15357 M:      Dan Streetman <ddstreet@ieee.org>
15358 L:      linux-mm@kvack.org
15359 S:      Maintained
15360 F:      mm/zbud.c
15361 F:      include/linux/zbud.h
15362
15363 ZD1211RW WIRELESS DRIVER
15364 M:      Daniel Drake <dsd@gentoo.org>
15365 M:      Ulrich Kunitz <kune@deine-taler.de>
15366 W:      http://zd1211.ath.cx/wiki/DriverRewrite
15367 L:      linux-wireless@vger.kernel.org
15368 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
15369 S:      Maintained
15370 F:      drivers/net/wireless/zydas/zd1211rw/
15371
15372 ZD1301 MEDIA DRIVER
15373 M:      Antti Palosaari <crope@iki.fi>
15374 L:      linux-media@vger.kernel.org
15375 W:      https://linuxtv.org/
15376 W:      http://palosaari.fi/linux/
15377 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15378 S:      Maintained
15379 F:      drivers/media/usb/dvb-usb-v2/zd1301*
15380
15381 ZD1301_DEMOD MEDIA DRIVER
15382 M:      Antti Palosaari <crope@iki.fi>
15383 L:      linux-media@vger.kernel.org
15384 W:      https://linuxtv.org/
15385 W:      http://palosaari.fi/linux/
15386 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15387 S:      Maintained
15388 F:      drivers/media/dvb-frontends/zd1301_demod*
15389
15390 ZPOOL COMPRESSED PAGE STORAGE API
15391 M:      Dan Streetman <ddstreet@ieee.org>
15392 L:      linux-mm@kvack.org
15393 S:      Maintained
15394 F:      mm/zpool.c
15395 F:      include/linux/zpool.h
15396
15397 ZR36067 VIDEO FOR LINUX DRIVER
15398 L:      mjpeg-users@lists.sourceforge.net
15399 L:      linux-media@vger.kernel.org
15400 W:      http://mjpeg.sourceforge.net/driver-zoran/
15401 T:      hg https://linuxtv.org/hg/v4l-dvb
15402 S:      Odd Fixes
15403 F:      drivers/media/pci/zoran/
15404
15405 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
15406 M:      Minchan Kim <minchan@kernel.org>
15407 M:      Nitin Gupta <ngupta@vflare.org>
15408 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15409 L:      linux-kernel@vger.kernel.org
15410 S:      Maintained
15411 F:      drivers/block/zram/
15412 F:      Documentation/blockdev/zram.txt
15413
15414 ZS DECSTATION Z85C30 SERIAL DRIVER
15415 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
15416 S:      Maintained
15417 F:      drivers/tty/serial/zs.*
15418
15419 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
15420 M:      Minchan Kim <minchan@kernel.org>
15421 M:      Nitin Gupta <ngupta@vflare.org>
15422 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15423 L:      linux-mm@kvack.org
15424 S:      Maintained
15425 F:      mm/zsmalloc.c
15426 F:      include/linux/zsmalloc.h
15427 F:      Documentation/vm/zsmalloc.txt
15428
15429 ZSWAP COMPRESSED SWAP CACHING
15430 M:      Seth Jennings <sjenning@redhat.com>
15431 M:      Dan Streetman <ddstreet@ieee.org>
15432 L:      linux-mm@kvack.org
15433 S:      Maintained
15434 F:      mm/zswap.c
15435
15436 THE REST
15437 M:      Linus Torvalds <torvalds@linux-foundation.org>
15438 L:      linux-kernel@vger.kernel.org
15439 Q:      http://patchwork.kernel.org/project/LKML/list/
15440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
15441 S:      Buried alive in reporters
15442 F:      *
15443 F:      */