]> asedeno.scripts.mit.edu Git - linux.git/blob - MAINTAINERS
Merge tag 'leds_for_4.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j...
[linux.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/amdgpu/amdgpu_amdkfd_fence.c
770 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
771 F:      drivers/gpu/drm/amd/amdkfd/
772 F:      drivers/gpu/drm/amd/include/cik_structs.h
773 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
774 F:      drivers/gpu/drm/amd/include/vi_structs.h
775 F:      include/uapi/linux/kfd_ioctl.h
776
777 AMD SEATTLE DEVICE TREE SUPPORT
778 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
779 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
780 M:      Tom Lendacky <thomas.lendacky@amd.com>
781 S:      Supported
782 F:      arch/arm64/boot/dts/amd/
783
784 AMD XGBE DRIVER
785 M:      Tom Lendacky <thomas.lendacky@amd.com>
786 L:      netdev@vger.kernel.org
787 S:      Supported
788 F:      drivers/net/ethernet/amd/xgbe/
789 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
790
791 AMS (Apple Motion Sensor) DRIVER
792 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
793 S:      Supported
794 F:      drivers/macintosh/ams/
795
796 ANALOG DEVICES INC AD9389B DRIVER
797 M:      Hans Verkuil <hans.verkuil@cisco.com>
798 L:      linux-media@vger.kernel.org
799 S:      Maintained
800 F:      drivers/media/i2c/ad9389b*
801
802 ANALOG DEVICES INC ADV7180 DRIVER
803 M:      Lars-Peter Clausen <lars@metafoo.de>
804 L:      linux-media@vger.kernel.org
805 W:      http://ez.analog.com/community/linux-device-drivers
806 S:      Supported
807 F:      drivers/media/i2c/adv7180.c
808
809 ANALOG DEVICES INC ADV748X DRIVER
810 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
811 L:      linux-media@vger.kernel.org
812 S:      Maintained
813 F:      drivers/media/i2c/adv748x/*
814
815 ANALOG DEVICES INC ADV7511 DRIVER
816 M:      Hans Verkuil <hans.verkuil@cisco.com>
817 L:      linux-media@vger.kernel.org
818 S:      Maintained
819 F:      drivers/media/i2c/adv7511*
820
821 ANALOG DEVICES INC ADV7604 DRIVER
822 M:      Hans Verkuil <hans.verkuil@cisco.com>
823 L:      linux-media@vger.kernel.org
824 S:      Maintained
825 F:      drivers/media/i2c/adv7604*
826
827 ANALOG DEVICES INC ADV7842 DRIVER
828 M:      Hans Verkuil <hans.verkuil@cisco.com>
829 L:      linux-media@vger.kernel.org
830 S:      Maintained
831 F:      drivers/media/i2c/adv7842*
832
833 ANALOG DEVICES INC ASOC CODEC DRIVERS
834 M:      Lars-Peter Clausen <lars@metafoo.de>
835 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
836 W:      http://wiki.analog.com/
837 W:      http://ez.analog.com/community/linux-device-drivers
838 S:      Supported
839 F:      sound/soc/codecs/adau*
840 F:      sound/soc/codecs/adav*
841 F:      sound/soc/codecs/ad1*
842 F:      sound/soc/codecs/ad7*
843 F:      sound/soc/codecs/ssm*
844 F:      sound/soc/codecs/sigmadsp.*
845
846 ANALOG DEVICES INC ASOC DRIVERS
847 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
848 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
849 W:      http://blackfin.uclinux.org/
850 S:      Supported
851 F:      sound/soc/blackfin/*
852
853 ANALOG DEVICES INC DMA DRIVERS
854 M:      Lars-Peter Clausen <lars@metafoo.de>
855 W:      http://ez.analog.com/community/linux-device-drivers
856 S:      Supported
857 F:      drivers/dma/dma-axi-dmac.c
858
859 ANALOG DEVICES INC IIO DRIVERS
860 M:      Lars-Peter Clausen <lars@metafoo.de>
861 M:      Michael Hennerich <Michael.Hennerich@analog.com>
862 W:      http://wiki.analog.com/
863 W:      http://ez.analog.com/community/linux-device-drivers
864 S:      Supported
865 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
866 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
867 F:      drivers/iio/*/ad*
868 F:      drivers/iio/adc/ltc2497*
869 X:      drivers/iio/*/adjd*
870 F:      drivers/staging/iio/*/ad*
871
872 ANDES ARCHITECTURE
873 M:      Greentime Hu <green.hu@gmail.com>
874 M:      Vincent Chen <deanbo422@gmail.com>
875 T:      git https://github.com/andestech/linux.git
876 S:      Supported
877 F:      arch/nds32/
878 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
879 F:      Documentation/devicetree/bindings/nds32/
880 K:      nds32
881 N:      nds32
882
883 ANDROID CONFIG FRAGMENTS
884 M:      Rob Herring <robh@kernel.org>
885 S:      Supported
886 F:      kernel/configs/android*
887
888 ANDROID DRIVERS
889 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
890 M:      Arve Hjønnevåg <arve@android.com>
891 M:      Todd Kjos <tkjos@android.com>
892 M:      Martijn Coenen <maco@android.com>
893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
894 L:      devel@driverdev.osuosl.org
895 S:      Supported
896 F:      drivers/android/
897 F:      drivers/staging/android/
898
899 ANDROID GOLDFISH PIC DRIVER
900 M:      Miodrag Dinic <miodrag.dinic@mips.com>
901 S:      Supported
902 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
903 F:      drivers/irqchip/irq-goldfish-pic.c
904
905 ANDROID GOLDFISH RTC DRIVER
906 M:      Miodrag Dinic <miodrag.dinic@mips.com>
907 S:      Supported
908 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
909 F:      drivers/rtc/rtc-goldfish.c
910
911 ANDROID ION DRIVER
912 M:      Laura Abbott <labbott@redhat.com>
913 M:      Sumit Semwal <sumit.semwal@linaro.org>
914 L:      devel@driverdev.osuosl.org
915 S:      Supported
916 F:      drivers/staging/android/ion
917 F:      drivers/staging/android/uapi/ion.h
918
919 AOA (Apple Onboard Audio) ALSA DRIVER
920 M:      Johannes Berg <johannes@sipsolutions.net>
921 L:      linuxppc-dev@lists.ozlabs.org
922 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
923 S:      Maintained
924 F:      sound/aoa/
925
926 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
927 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
928 L:      linux-iio@vger.kernel.org
929 S:      Maintained
930 F:      drivers/iio/adc/stx104.c
931
932 APM DRIVER
933 M:      Jiri Kosina <jikos@kernel.org>
934 S:      Odd fixes
935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
936 F:      arch/x86/kernel/apm_32.c
937 F:      include/linux/apm_bios.h
938 F:      include/uapi/linux/apm_bios.h
939 F:      drivers/char/apm-emulation.c
940
941 APPARMOR SECURITY MODULE
942 M:      John Johansen <john.johansen@canonical.com>
943 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
944 W:      apparmor.wiki.kernel.org
945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
946 S:      Supported
947 F:      security/apparmor/
948 F:      Documentation/admin-guide/LSM/apparmor.rst
949
950 APPLE BCM5974 MULTITOUCH DRIVER
951 M:      Henrik Rydberg <rydberg@bitmath.org>
952 L:      linux-input@vger.kernel.org
953 S:      Odd fixes
954 F:      drivers/input/mouse/bcm5974.c
955
956 APPLE SMC DRIVER
957 M:      Henrik Rydberg <rydberg@bitmath.org>
958 L:      linux-hwmon@vger.kernel.org
959 S:      Odd fixes
960 F:      drivers/hwmon/applesmc.c
961
962 APPLETALK NETWORK LAYER
963 L:      netdev@vger.kernel.org
964 S:      Odd fixes
965 F:      drivers/net/appletalk/
966 F:      net/appletalk/
967
968 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
969 M:      Duc Dang <dhdang@apm.com>
970 S:      Supported
971 F:      arch/arm64/boot/dts/apm/
972
973 APPLIED MICRO (APM) X-GENE SOC EDAC
974 M:      Loc Ho <lho@apm.com>
975 S:      Supported
976 F:      drivers/edac/xgene_edac.c
977 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
978
979 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
980 M:      Iyappan Subramanian <isubramanian@apm.com>
981 M:      Keyur Chudgar <kchudgar@apm.com>
982 S:      Supported
983 F:      drivers/net/ethernet/apm/xgene-v2/
984
985 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
986 M:      Iyappan Subramanian <isubramanian@apm.com>
987 M:      Keyur Chudgar <kchudgar@apm.com>
988 M:      Quan Nguyen <qnguyen@apm.com>
989 S:      Supported
990 F:      drivers/net/ethernet/apm/xgene/
991 F:      drivers/net/phy/mdio-xgene.c
992 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
993 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
994
995 APPLIED MICRO (APM) X-GENE SOC PMU
996 M:      Tai Nguyen <ttnguyen@apm.com>
997 S:      Supported
998 F:      drivers/perf/xgene_pmu.c
999 F:      Documentation/perf/xgene-pmu.txt
1000 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1001
1002 APTINA CAMERA SENSOR PLL
1003 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1004 L:      linux-media@vger.kernel.org
1005 S:      Maintained
1006 F:      drivers/media/i2c/aptina-pll.*
1007
1008 ARC FRAMEBUFFER DRIVER
1009 M:      Jaya Kumar <jayalk@intworks.biz>
1010 S:      Maintained
1011 F:      drivers/video/fbdev/arcfb.c
1012 F:      drivers/video/fbdev/core/fb_defio.c
1013
1014 ARC PGU DRM DRIVER
1015 M:      Alexey Brodkin <abrodkin@synopsys.com>
1016 S:      Supported
1017 F:      drivers/gpu/drm/arc/
1018 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1019
1020 ARCNET NETWORK LAYER
1021 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1022 L:      netdev@vger.kernel.org
1023 S:      Maintained
1024 F:      drivers/net/arcnet/
1025 F:      include/uapi/linux/if_arcnet.h
1026
1027 ARM ARCHITECTED TIMER DRIVER
1028 M:      Mark Rutland <mark.rutland@arm.com>
1029 M:      Marc Zyngier <marc.zyngier@arm.com>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032 F:      arch/arm/include/asm/arch_timer.h
1033 F:      arch/arm64/include/asm/arch_timer.h
1034 F:      drivers/clocksource/arm_arch_timer.c
1035
1036 ARM HDLCD DRM DRIVER
1037 M:      Liviu Dudau <liviu.dudau@arm.com>
1038 S:      Supported
1039 F:      drivers/gpu/drm/arm/hdlcd_*
1040 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1041
1042 ARM MALI-DP DRM DRIVER
1043 M:      Liviu Dudau <liviu.dudau@arm.com>
1044 M:      Brian Starkey <brian.starkey@arm.com>
1045 M:      Mali DP Maintainers <malidp@foss.arm.com>
1046 S:      Supported
1047 F:      drivers/gpu/drm/arm/
1048 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1049
1050 ARM MFM AND FLOPPY DRIVERS
1051 M:      Ian Molton <spyro@f2s.com>
1052 S:      Maintained
1053 F:      arch/arm/lib/floppydma.S
1054 F:      arch/arm/include/asm/floppy.h
1055
1056 ARM PMU PROFILING AND DEBUGGING
1057 M:      Will Deacon <will.deacon@arm.com>
1058 M:      Mark Rutland <mark.rutland@arm.com>
1059 S:      Maintained
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 F:      arch/arm*/kernel/perf_*
1062 F:      arch/arm/oprofile/common.c
1063 F:      arch/arm*/kernel/hw_breakpoint.c
1064 F:      arch/arm*/include/asm/hw_breakpoint.h
1065 F:      arch/arm*/include/asm/perf_event.h
1066 F:      drivers/perf/*
1067 F:      include/linux/perf/arm_pmu.h
1068 F:      Documentation/devicetree/bindings/arm/pmu.txt
1069 F:      Documentation/devicetree/bindings/perf/
1070
1071 ARM PORT
1072 M:      Russell King <linux@armlinux.org.uk>
1073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 W:      http://www.armlinux.org.uk/
1075 S:      Odd Fixes
1076 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1077 F:      arch/arm/
1078 X:      arch/arm/boot/dts/
1079
1080 ARM PRIMECELL AACI PL041 DRIVER
1081 M:      Russell King <linux@armlinux.org.uk>
1082 S:      Odd Fixes
1083 F:      sound/arm/aaci.*
1084
1085 ARM PRIMECELL BUS SUPPORT
1086 M:      Russell King <linux@armlinux.org.uk>
1087 S:      Odd Fixes
1088 F:      drivers/amba/
1089 F:      include/linux/amba/bus.h
1090
1091 ARM PRIMECELL CLCD PL110 DRIVER
1092 M:      Russell King <linux@armlinux.org.uk>
1093 S:      Odd Fixes
1094 F:      drivers/video/fbdev/amba-clcd.*
1095
1096 ARM PRIMECELL KMI PL050 DRIVER
1097 M:      Russell King <linux@armlinux.org.uk>
1098 S:      Odd Fixes
1099 F:      drivers/input/serio/ambakmi.*
1100 F:      include/linux/amba/kmi.h
1101
1102 ARM PRIMECELL MMCI PL180/1 DRIVER
1103 M:      Russell King <linux@armlinux.org.uk>
1104 S:      Odd Fixes
1105 F:      drivers/mmc/host/mmci.*
1106 F:      include/linux/amba/mmci.h
1107
1108 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1109 M:      Russell King <linux@armlinux.org.uk>
1110 S:      Odd Fixes
1111 F:      drivers/tty/serial/amba-pl01*.c
1112 F:      include/linux/amba/serial.h
1113
1114 ARM SMMU DRIVERS
1115 M:      Will Deacon <will.deacon@arm.com>
1116 R:      Robin Murphy <robin.murphy@arm.com>
1117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118 S:      Maintained
1119 F:      drivers/iommu/arm-smmu.c
1120 F:      drivers/iommu/arm-smmu-v3.c
1121 F:      drivers/iommu/io-pgtable-arm.c
1122 F:      drivers/iommu/io-pgtable-arm-v7s.c
1123
1124 ARM SUB-ARCHITECTURES
1125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 S:      Maintained
1127 F:      arch/arm/mach-*/
1128 F:      arch/arm/plat-*/
1129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1130
1131 ARM/ACTIONS SEMI ARCHITECTURE
1132 M:      Andreas Färber <afaerber@suse.de>
1133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134 S:      Maintained
1135 N:      owl
1136 F:      arch/arm/mach-actions/
1137 F:      arch/arm/boot/dts/owl-*
1138 F:      arch/arm64/boot/dts/actions/
1139 F:      drivers/clocksource/owl-*
1140 F:      drivers/soc/actions/
1141 F:      include/dt-bindings/power/owl-*
1142 F:      include/linux/soc/actions/
1143 F:      Documentation/devicetree/bindings/arm/actions.txt
1144 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1145 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1146
1147 ARM/ADS SPHERE MACHINE SUPPORT
1148 M:      Lennert Buytenhek <kernel@wantstofly.org>
1149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1150 S:      Maintained
1151
1152 ARM/AFEB9260 MACHINE SUPPORT
1153 M:      Sergey Lapin <slapin@ossfans.org>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/AJECO 1ARM MACHINE SUPPORT
1158 M:      Lennert Buytenhek <kernel@wantstofly.org>
1159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1160 S:      Maintained
1161
1162 ARM/Allwinner SoC Clock Support
1163 M:      Emilio López <emilio@elopez.com.ar>
1164 S:      Maintained
1165 F:      drivers/clk/sunxi/
1166
1167 ARM/Allwinner sunXi SoC support
1168 M:      Maxime Ripard <maxime.ripard@bootlin.com>
1169 M:      Chen-Yu Tsai <wens@csie.org>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172 N:      sun[x456789]i
1173 N:      sun50i
1174 F:      arch/arm/mach-sunxi/
1175 F:      arch/arm64/boot/dts/allwinner/
1176 F:      drivers/clk/sunxi-ng/
1177 F:      drivers/pinctrl/sunxi/
1178 F:      drivers/soc/sunxi/
1179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1180
1181 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1182 M:      Neil Armstrong <narmstrong@baylibre.com>
1183 M:      Jerome Brunet <jbrunet@baylibre.com>
1184 L:      linux-amlogic@lists.infradead.org
1185 S:      Maintained
1186 F:      drivers/clk/meson/
1187 F:      include/dt-bindings/clock/meson*
1188 F:      include/dt-bindings/clock/gxbb*
1189 F:      Documentation/devicetree/bindings/clock/amlogic*
1190
1191 ARM/Amlogic Meson SoC support
1192 M:      Carlo Caione <carlo@caione.org>
1193 M:      Kevin Hilman <khilman@baylibre.com>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 L:      linux-amlogic@lists.infradead.org
1196 W:      http://linux-meson.com/
1197 S:      Maintained
1198 F:      arch/arm/mach-meson/
1199 F:      arch/arm/boot/dts/meson*
1200 F:      arch/arm64/boot/dts/amlogic/
1201 F:      drivers/pinctrl/meson/
1202 F:      drivers/mmc/host/meson*
1203 N:      meson
1204
1205 ARM/Annapurna Labs ALPINE ARCHITECTURE
1206 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1207 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 F:      arch/arm/mach-alpine/
1211 F:      arch/arm/boot/dts/alpine*
1212 F:      arch/arm64/boot/dts/al/
1213 F:      drivers/*/*alpine*
1214
1215 ARM/ARTPEC MACHINE SUPPORT
1216 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1217 M:      Lars Persson <lars.persson@axis.com>
1218 M:      Niklas Cassel <niklas.cassel@axis.com>
1219 S:      Maintained
1220 L:      linux-arm-kernel@axis.com
1221 F:      arch/arm/mach-artpec
1222 F:      arch/arm/boot/dts/artpec6*
1223 F:      drivers/clk/axis
1224 F:      drivers/crypto/axis
1225 F:      drivers/pinctrl/pinctrl-artpec*
1226 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1227
1228 ARM/ASPEED I2C DRIVER
1229 M:      Brendan Higgins <brendanhiggins@google.com>
1230 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1231 R:      Joel Stanley <joel@jms.id.au>
1232 L:      linux-i2c@vger.kernel.org
1233 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1234 S:      Maintained
1235 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1236 F:      drivers/i2c/busses/i2c-aspeed.c
1237 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1238 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1239
1240 ARM/ASPEED MACHINE SUPPORT
1241 M:      Joel Stanley <joel@jms.id.au>
1242 S:      Maintained
1243 F:      arch/arm/mach-aspeed/
1244 F:      arch/arm/boot/dts/aspeed-*
1245 F:      drivers/*/*aspeed*
1246
1247 ARM/ATMEL AT91 Clock Support
1248 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1249 S:      Maintained
1250 F:      drivers/clk/at91
1251
1252 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1253 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1254 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1256 W:      http://www.linux4sam.org
1257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1258 S:      Supported
1259 N:      at91
1260 N:      atmel
1261 F:      arch/arm/mach-at91/
1262 F:      include/soc/at91/
1263 F:      arch/arm/boot/dts/at91*.dts
1264 F:      arch/arm/boot/dts/at91*.dtsi
1265 F:      arch/arm/boot/dts/sama*.dts
1266 F:      arch/arm/boot/dts/sama*.dtsi
1267 F:      arch/arm/include/debug/at91.S
1268 F:      drivers/memory/atmel*
1269 F:      drivers/watchdog/sama5d4_wdt.c
1270 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1271 X:      drivers/net/wireless/atmel/
1272
1273 ARM/CALXEDA HIGHBANK ARCHITECTURE
1274 M:      Rob Herring <robh@kernel.org>
1275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1276 S:      Maintained
1277 F:      arch/arm/mach-highbank/
1278 F:      arch/arm/boot/dts/highbank.dts
1279 F:      arch/arm/boot/dts/ecx-*.dts*
1280
1281 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1282 M:      Krzysztof Halasa <khalasa@piap.pl>
1283 S:      Maintained
1284 F:      arch/arm/mach-cns3xxx/
1285
1286 ARM/CAVIUM THUNDER NETWORK DRIVER
1287 M:      Sunil Goutham <sgoutham@cavium.com>
1288 M:      Robert Richter <rric@kernel.org>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Supported
1291 F:      drivers/net/ethernet/cavium/thunder/
1292
1293 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1294 M:      Lukasz Majewski <lukma@denx.de>
1295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 S:      Maintained
1297 F:      arch/arm/mach-ep93xx/ts72xx.c
1298
1299 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1300 M:      Alexander Shiyan <shc_work@mail.ru>
1301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 S:      Odd Fixes
1303 N:      clps711x
1304
1305 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1306 M:      Lennert Buytenhek <kernel@wantstofly.org>
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 S:      Maintained
1309
1310 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1311 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1312 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/mach-ep93xx/
1316 F:      arch/arm/mach-ep93xx/include/mach/
1317
1318 ARM/CLKDEV SUPPORT
1319 M:      Russell King <linux@armlinux.org.uk>
1320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 S:      Maintained
1322 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1323 F:      drivers/clk/clkdev.c
1324
1325 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1326 M:      Mike Rapoport <mike@compulab.co.il>
1327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1328 S:      Maintained
1329
1330 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1331 M:      Baruch Siach <baruch@tkos.co.il>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 S:      Maintained
1334 F:      arch/arm/boot/dts/cx92755*
1335 N:      digicolor
1336
1337 ARM/CONTEC MICRO9 MACHINE SUPPORT
1338 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1339 S:      Maintained
1340 F:      arch/arm/mach-ep93xx/micro9.c
1341
1342 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1343 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      drivers/hwtracing/coresight/*
1347 F:      Documentation/trace/coresight.txt
1348 F:      Documentation/trace/coresight-cpu-debug.txt
1349 F:      Documentation/devicetree/bindings/arm/coresight.txt
1350 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1351 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1352 F:      tools/perf/arch/arm/util/pmu.c
1353 F:      tools/perf/arch/arm/util/auxtrace.c
1354 F:      tools/perf/arch/arm/util/cs-etm.c
1355 F:      tools/perf/arch/arm/util/cs-etm.h
1356 F:      tools/perf/util/cs-etm.*
1357 F:      tools/perf/util/cs-etm-decoder/*
1358
1359 ARM/CORGI MACHINE SUPPORT
1360 M:      Richard Purdie <rpurdie@rpsys.net>
1361 S:      Maintained
1362
1363 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1364 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1365 M:      Linus Walleij <linus.walleij@linaro.org>
1366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1367 T:      git git://github.com/ulli-kroll/linux.git
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/arm/gemini.txt
1370 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1371 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1372 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1373 F:      arch/arm/mach-gemini/
1374 F:      drivers/net/ethernet/cortina/
1375 F:      drivers/pinctrl/pinctrl-gemini.c
1376 F:      drivers/rtc/rtc-ftrtc010.c
1377
1378 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1379 M:      Barry Song <baohua@kernel.org>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1382 S:      Maintained
1383 F:      arch/arm/boot/dts/prima2*
1384 F:      arch/arm/mach-prima2/
1385 F:      drivers/clk/sirf/
1386 F:      drivers/clocksource/timer-prima2.c
1387 F:      drivers/clocksource/timer-atlas7.c
1388 N:      [^a-z]sirf
1389
1390 ARM/EBSA110 MACHINE SUPPORT
1391 M:      Russell King <linux@armlinux.org.uk>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 W:      http://www.armlinux.org.uk/
1394 S:      Maintained
1395 F:      arch/arm/mach-ebsa110/
1396 F:      drivers/net/ethernet/amd/am79c961a.*
1397
1398 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1399 M:      Uwe Kleine-König <kernel@pengutronix.de>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 N:      efm32
1403
1404 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1405 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 S:      Maintained
1408 F:      arch/arm/mach-pxa/ezx.c
1409
1410 ARM/FARADAY FA526 PORT
1411 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414 T:      git git://git.berlios.de/gemini-board
1415 F:      arch/arm/mm/*-fa*
1416
1417 ARM/FOOTBRIDGE ARCHITECTURE
1418 M:      Russell King <linux@armlinux.org.uk>
1419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1420 W:      http://www.armlinux.org.uk/
1421 S:      Maintained
1422 F:      arch/arm/include/asm/hardware/dec21285.h
1423 F:      arch/arm/mach-footbridge/
1424
1425 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1426 M:      Shawn Guo <shawnguo@kernel.org>
1427 M:      Sascha Hauer <kernel@pengutronix.de>
1428 R:      Fabio Estevam <fabio.estevam@nxp.com>
1429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1430 S:      Maintained
1431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1432 F:      arch/arm/mach-imx/
1433 F:      arch/arm/mach-mxs/
1434 F:      arch/arm/boot/dts/imx*
1435 F:      arch/arm/configs/imx*_defconfig
1436 F:      drivers/clk/imx/
1437 F:      drivers/soc/imx/
1438 F:      include/soc/imx/
1439
1440 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1441 M:      Shawn Guo <shawnguo@kernel.org>
1442 M:      Sascha Hauer <kernel@pengutronix.de>
1443 R:      Stefan Agner <stefan@agner.ch>
1444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 S:      Maintained
1446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1447 F:      arch/arm/mach-imx/*vf610*
1448 F:      arch/arm/boot/dts/vf*
1449
1450 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1451 M:      Lennert Buytenhek <kernel@wantstofly.org>
1452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 S:      Maintained
1454
1455 ARM/GUMSTIX MACHINE SUPPORT
1456 M:      Steve Sakoman <sakoman@gmail.com>
1457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1458 S:      Maintained
1459
1460 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1461 M:      Philipp Zabel <philipp.zabel@gmail.com>
1462 M:      Paul Parsons <lost.distance@yahoo.com>
1463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      arch/arm/mach-pxa/hx4700.c
1466 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1467 F:      sound/soc/pxa/hx4700.c
1468
1469 ARM/HISILICON SOC SUPPORT
1470 M:      Wei Xu <xuwei5@hisilicon.com>
1471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 W:      http://www.hisilicon.com
1473 S:      Supported
1474 T:      git git://github.com/hisilicon/linux-hisi.git
1475 F:      arch/arm/mach-hisi/
1476 F:      arch/arm/boot/dts/hi3*
1477 F:      arch/arm/boot/dts/hip*
1478 F:      arch/arm/boot/dts/hisi*
1479 F:      arch/arm64/boot/dts/hisilicon/
1480
1481 ARM/HP JORNADA 7XX MACHINE SUPPORT
1482 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1483 W:      www.jlime.com
1484 S:      Maintained
1485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1486 F:      arch/arm/mach-sa1100/jornada720.c
1487 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1488
1489 ARM/IGEP MACHINE SUPPORT
1490 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1491 M:      Javier Martinez Canillas <javier@dowhile0.org>
1492 L:      linux-omap@vger.kernel.org
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495 F:      arch/arm/boot/dts/omap3-igep*
1496
1497 ARM/INCOME PXA270 SUPPORT
1498 M:      Marek Vasut <marek.vasut@gmail.com>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 S:      Maintained
1501 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1502
1503 ARM/INTEL IOP13XX ARM ARCHITECTURE
1504 M:      Lennert Buytenhek <kernel@wantstofly.org>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S:      Maintained
1507
1508 ARM/INTEL IOP32X ARM ARCHITECTURE
1509 M:      Lennert Buytenhek <kernel@wantstofly.org>
1510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1511 S:      Maintained
1512
1513 ARM/INTEL IOP33X ARM ARCHITECTURE
1514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1515 S:      Orphan
1516
1517 ARM/INTEL IQ81342EX MACHINE SUPPORT
1518 M:      Lennert Buytenhek <kernel@wantstofly.org>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 S:      Maintained
1521
1522 ARM/INTEL IXDP2850 MACHINE SUPPORT
1523 M:      Lennert Buytenhek <kernel@wantstofly.org>
1524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1525 S:      Maintained
1526
1527 ARM/INTEL IXP4XX ARM ARCHITECTURE
1528 M:      Imre Kaloz <kaloz@openwrt.org>
1529 M:      Krzysztof Halasa <khalasa@piap.pl>
1530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 S:      Maintained
1532 F:      arch/arm/mach-ixp4xx/
1533
1534 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1535 M:      Jonathan Cameron <jic23@cam.ac.uk>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      arch/arm/mach-pxa/stargate2.c
1539 F:      drivers/pcmcia/pxa2xx_stargate2.c
1540
1541 ARM/INTEL XSC3 (MANZANO) ARM CORE
1542 M:      Lennert Buytenhek <kernel@wantstofly.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545
1546 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1547 M:      Lennert Buytenhek <kernel@wantstofly.org>
1548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1549 S:      Maintained
1550
1551 ARM/LG1K ARCHITECTURE
1552 M:      Chanho Min <chanho.min@lge.com>
1553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1554 S:      Maintained
1555 F:      arch/arm64/boot/dts/lg/
1556
1557 ARM/LOGICPD PXA270 MACHINE SUPPORT
1558 M:      Lennert Buytenhek <kernel@wantstofly.org>
1559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1560 S:      Maintained
1561
1562 ARM/LPC18XX ARCHITECTURE
1563 M:      Joachim Eastwood <manabian@gmail.com>
1564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1565 S:      Maintained
1566 F:      arch/arm/boot/dts/lpc43*
1567 F:      drivers/clk/nxp/clk-lpc18xx*
1568 F:      drivers/clocksource/time-lpc32xx.c
1569 F:      drivers/i2c/busses/i2c-lpc2k.c
1570 F:      drivers/memory/pl172.c
1571 F:      drivers/mtd/spi-nor/nxp-spifi.c
1572 F:      drivers/rtc/rtc-lpc24xx.c
1573 N:      lpc18xx
1574
1575 ARM/LPC32XX SOC SUPPORT
1576 M:      Vladimir Zapolskiy <vz@mleia.com>
1577 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1579 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1580 S:      Maintained
1581 F:      arch/arm/boot/dts/lpc32*
1582 F:      arch/arm/mach-lpc32xx/
1583 F:      drivers/i2c/busses/i2c-pnx.c
1584 F:      drivers/net/ethernet/nxp/lpc_eth.c
1585 F:      drivers/usb/host/ohci-nxp.c
1586 F:      drivers/watchdog/pnx4008_wdt.c
1587 N:      lpc32xx
1588
1589 ARM/MAGICIAN MACHINE SUPPORT
1590 M:      Philipp Zabel <philipp.zabel@gmail.com>
1591 S:      Maintained
1592
1593 ARM/Marvell Berlin SoC support
1594 M:      Jisheng Zhang <jszhang@marvell.com>
1595 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Maintained
1598 F:      arch/arm/mach-berlin/
1599 F:      arch/arm/boot/dts/berlin*
1600 F:      arch/arm64/boot/dts/marvell/berlin*
1601
1602 ARM/Marvell Dove/MV78xx0/Orion SOC support
1603 M:      Jason Cooper <jason@lakedaemon.net>
1604 M:      Andrew Lunn <andrew@lunn.ch>
1605 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1606 M:      Gregory Clement <gregory.clement@bootlin.com>
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 F:      Documentation/devicetree/bindings/soc/dove/
1610 F:      arch/arm/mach-dove/
1611 F:      arch/arm/mach-mv78xx0/
1612 F:      arch/arm/mach-orion5x/
1613 F:      arch/arm/plat-orion/
1614 F:      arch/arm/boot/dts/dove*
1615 F:      arch/arm/boot/dts/orion5x*
1616
1617 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1618 M:      Jason Cooper <jason@lakedaemon.net>
1619 M:      Andrew Lunn <andrew@lunn.ch>
1620 M:      Gregory Clement <gregory.clement@bootlin.com>
1621 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S:      Maintained
1624 F:      arch/arm/boot/dts/armada*
1625 F:      arch/arm/boot/dts/kirkwood*
1626 F:      arch/arm/configs/mvebu_*_defconfig
1627 F:      arch/arm/mach-mvebu/
1628 F:      arch/arm64/boot/dts/marvell/armada*
1629 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1630 F:      drivers/cpufreq/mvebu-cpufreq.c
1631 F:      drivers/irqchip/irq-armada-370-xp.c
1632 F:      drivers/irqchip/irq-mvebu-*
1633 F:      drivers/pinctrl/mvebu/
1634 F:      drivers/rtc/rtc-armada38x.c
1635
1636 ARM/Mediatek RTC DRIVER
1637 M:      Eddie Huang <eddie.huang@mediatek.com>
1638 M:      Sean Wang <sean.wang@mediatek.com>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1641 S:      Maintained
1642 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1643 F:      drivers/rtc/rtc-mt6397.c
1644 F:      drivers/rtc/rtc-mt7622.c
1645
1646 ARM/Mediatek SoC support
1647 M:      Matthias Brugger <matthias.bgg@gmail.com>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 F:      arch/arm/boot/dts/mt6*
1652 F:      arch/arm/boot/dts/mt7*
1653 F:      arch/arm/boot/dts/mt8*
1654 F:      arch/arm/mach-mediatek/
1655 F:      arch/arm64/boot/dts/mediatek/
1656 N:      mtk
1657 K:      mediatek
1658
1659 ARM/Mediatek USB3 PHY DRIVER
1660 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1662 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      drivers/phy/mediatek/phy-mtk-tphy.c
1665
1666 ARM/MICREL KS8695 ARCHITECTURE
1667 M:      Greg Ungerer <gerg@uclinux.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 F:      arch/arm/mach-ks8695/
1670 S:      Odd Fixes
1671
1672 ARM/MIOA701 MACHINE SUPPORT
1673 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 F:      arch/arm/mach-pxa/mioa701.c
1676 S:      Maintained
1677
1678 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1679 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1680 S:      Maintained
1681
1682 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1683 M:      Linus Walleij <linus.walleij@linaro.org>
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686 F:      arch/arm/mach-nomadik/
1687 F:      arch/arm/mach-u300/
1688 F:      arch/arm/mach-ux500/
1689 F:      arch/arm/boot/dts/ste-*
1690 F:      drivers/clk/clk-nomadik.c
1691 F:      drivers/clk/clk-u300.c
1692 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1693 F:      drivers/clocksource/timer-u300.c
1694 F:      drivers/dma/coh901318*
1695 F:      drivers/dma/ste_dma40*
1696 F:      drivers/hwspinlock/u8500_hsem.c
1697 F:      drivers/i2c/busses/i2c-nomadik.c
1698 F:      drivers/i2c/busses/i2c-stu300.c
1699 F:      drivers/mfd/ab3100*
1700 F:      drivers/mfd/ab8500*
1701 F:      drivers/mfd/abx500*
1702 F:      drivers/mfd/dbx500*
1703 F:      drivers/mfd/db8500*
1704 F:      drivers/pinctrl/nomadik/
1705 F:      drivers/pinctrl/pinctrl-coh901*
1706 F:      drivers/pinctrl/pinctrl-u300.c
1707 F:      drivers/rtc/rtc-ab3100.c
1708 F:      drivers/rtc/rtc-ab8500.c
1709 F:      drivers/rtc/rtc-coh901331.c
1710 F:      drivers/rtc/rtc-pl031.c
1711 F:      drivers/watchdog/coh901327_wdt.c
1712 F:      Documentation/devicetree/bindings/arm/ste-*
1713 F:      Documentation/devicetree/bindings/arm/ux500/
1714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1715
1716 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1717 M:      Wan ZongShun <mcuos.com@gmail.com>
1718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1719 W:      http://www.mcuos.com
1720 S:      Maintained
1721 F:      arch/arm/mach-w90x900/
1722 F:      drivers/input/keyboard/w90p910_keypad.c
1723 F:      drivers/input/touchscreen/w90p910_ts.c
1724 F:      drivers/watchdog/nuc900_wdt.c
1725 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1726 F:      drivers/mtd/nand/nuc900_nand.c
1727 F:      drivers/rtc/rtc-nuc900.c
1728 F:      drivers/spi/spi-nuc900.c
1729 F:      drivers/usb/host/ehci-w90x900.c
1730 F:      drivers/video/fbdev/nuc900fb.c
1731
1732 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1733 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1734 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1735 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1736 S:      Supported
1737
1738 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1739 M:      Alexander Clouter <alex@digriz.org.uk>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 W:      http://www.digriz.org.uk/ts78xx/kernel
1742 S:      Maintained
1743 F:      arch/arm/mach-orion5x/ts78xx-*
1744
1745 ARM/OXNAS platform support
1746 M:      Neil Armstrong <narmstrong@baylibre.com>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1749 S:      Maintained
1750 F:      arch/arm/mach-oxnas/
1751 F:      arch/arm/boot/dts/ox8*.dts*
1752 N:      oxnas
1753
1754 ARM/PALM TREO SUPPORT
1755 M:      Tomas Cech <sleep_walker@suse.com>
1756 L:      linux-arm-kernel@lists.infradead.org
1757 W:      http://hackndev.com
1758 S:      Maintained
1759 F:      arch/arm/mach-pxa/palmtreo.*
1760
1761 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1762 M:      Marek Vasut <marek.vasut@gmail.com>
1763 L:      linux-arm-kernel@lists.infradead.org
1764 W:      http://hackndev.com
1765 S:      Maintained
1766 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1767 F:      arch/arm/mach-pxa/palmtx.c
1768 F:      arch/arm/mach-pxa/palmt5.*
1769 F:      arch/arm/mach-pxa/include/mach/palmld.h
1770 F:      arch/arm/mach-pxa/palmld.c
1771 F:      arch/arm/mach-pxa/palmte2.*
1772 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1773 F:      arch/arm/mach-pxa/palmtc.c
1774
1775 ARM/PALMZ72 SUPPORT
1776 M:      Sergey Lapin <slapin@ossfans.org>
1777 L:      linux-arm-kernel@lists.infradead.org
1778 W:      http://hackndev.com
1779 S:      Maintained
1780 F:      arch/arm/mach-pxa/palmz72.*
1781
1782 ARM/PLEB SUPPORT
1783 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1784 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1785 S:      Maintained
1786
1787 ARM/PT DIGITAL BOARD PORT
1788 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 W:      http://www.armlinux.org.uk/
1791 S:      Maintained
1792
1793 ARM/QUALCOMM SUPPORT
1794 M:      Andy Gross <andy.gross@linaro.org>
1795 M:      David Brown <david.brown@linaro.org>
1796 L:      linux-arm-msm@vger.kernel.org
1797 L:      linux-soc@vger.kernel.org
1798 S:      Maintained
1799 F:      Documentation/devicetree/bindings/soc/qcom/
1800 F:      arch/arm/boot/dts/qcom-*.dts
1801 F:      arch/arm/boot/dts/qcom-*.dtsi
1802 F:      arch/arm/mach-qcom/
1803 F:      arch/arm64/boot/dts/qcom/*
1804 F:      drivers/i2c/busses/i2c-qup.c
1805 F:      drivers/clk/qcom/
1806 F:      drivers/dma/qcom/
1807 F:      drivers/soc/qcom/
1808 F:      drivers/spi/spi-qup.c
1809 F:      drivers/tty/serial/msm_serial.c
1810 F:      drivers/*/pm8???-*
1811 F:      drivers/mfd/ssbi.c
1812 F:      drivers/firmware/qcom_scm.c
1813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1814
1815 ARM/RADISYS ENP2611 MACHINE SUPPORT
1816 M:      Lennert Buytenhek <kernel@wantstofly.org>
1817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1818 S:      Maintained
1819
1820 ARM/REALTEK ARCHITECTURE
1821 M:      Andreas Färber <afaerber@suse.de>
1822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1823 S:      Maintained
1824 F:      arch/arm64/boot/dts/realtek/
1825 F:      Documentation/devicetree/bindings/arm/realtek.txt
1826
1827 ARM/RENESAS ARM64 ARCHITECTURE
1828 M:      Simon Horman <horms@verge.net.au>
1829 M:      Magnus Damm <magnus.damm@gmail.com>
1830 L:      linux-renesas-soc@vger.kernel.org
1831 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1833 S:      Supported
1834 F:      arch/arm64/boot/dts/renesas/
1835 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1836 F:      drivers/soc/renesas/
1837 F:      include/linux/soc/renesas/
1838
1839 ARM/RISCPC ARCHITECTURE
1840 M:      Russell King <linux@armlinux.org.uk>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 W:      http://www.armlinux.org.uk/
1843 S:      Maintained
1844 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1845 F:      arch/arm/include/asm/hardware/ioc.h
1846 F:      arch/arm/include/asm/hardware/iomd.h
1847 F:      arch/arm/include/asm/hardware/memc.h
1848 F:      arch/arm/mach-rpc/
1849 F:      drivers/net/ethernet/8390/etherh.c
1850 F:      drivers/net/ethernet/i825xx/ether1*
1851 F:      drivers/net/ethernet/seeq/ether3*
1852 F:      drivers/scsi/arm/
1853
1854 ARM/Rockchip SoC support
1855 M:      Heiko Stuebner <heiko@sntech.de>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 L:      linux-rockchip@lists.infradead.org
1858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1859 S:      Maintained
1860 F:      arch/arm/boot/dts/rk3*
1861 F:      arch/arm/boot/dts/rv1108*
1862 F:      arch/arm/mach-rockchip/
1863 F:      drivers/clk/rockchip/
1864 F:      drivers/i2c/busses/i2c-rk3x.c
1865 F:      drivers/*/*rockchip*
1866 F:      drivers/*/*/*rockchip*
1867 F:      sound/soc/rockchip/
1868 N:      rockchip
1869
1870 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1871 M:      Kukjin Kim <kgene@kernel.org>
1872 M:      Krzysztof Kozlowski <krzk@kernel.org>
1873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1874 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1875 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1876 S:      Maintained
1877 F:      arch/arm/boot/dts/s3c*
1878 F:      arch/arm/boot/dts/s5p*
1879 F:      arch/arm/boot/dts/samsung*
1880 F:      arch/arm/boot/dts/exynos*
1881 F:      arch/arm64/boot/dts/exynos/
1882 F:      arch/arm/plat-samsung/
1883 F:      arch/arm/mach-s3c24*/
1884 F:      arch/arm/mach-s3c64xx/
1885 F:      arch/arm/mach-s5p*/
1886 F:      arch/arm/mach-exynos*/
1887 F:      drivers/*/*s3c24*
1888 F:      drivers/*/*/*s3c24*
1889 F:      drivers/*/*s3c64xx*
1890 F:      drivers/*/*s5pv210*
1891 F:      drivers/memory/samsung/*
1892 F:      drivers/soc/samsung/*
1893 F:      Documentation/arm/Samsung/
1894 F:      Documentation/devicetree/bindings/arm/samsung/
1895 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1896 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1897 N:      exynos
1898
1899 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1900 M:      Kyungmin Park <kyungmin.park@samsung.com>
1901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      arch/arm/mach-s5pv210/
1904
1905 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1906 M:      Kyungmin Park <kyungmin.park@samsung.com>
1907 M:      Kamil Debski <kamil@wypas.org>
1908 M:      Andrzej Hajda <a.hajda@samsung.com>
1909 L:      linux-arm-kernel@lists.infradead.org
1910 L:      linux-media@vger.kernel.org
1911 S:      Maintained
1912 F:      drivers/media/platform/s5p-g2d/
1913
1914 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1915 M:      Marek Szyprowski <m.szyprowski@samsung.com>
1916 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1917 L:      linux-media@vger.kernel.org
1918 S:      Maintained
1919 F:      drivers/media/platform/s5p-cec/
1920 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
1921
1922 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1923 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1924 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
1925 L:      linux-arm-kernel@lists.infradead.org
1926 L:      linux-media@vger.kernel.org
1927 S:      Maintained
1928 F:      drivers/media/platform/s5p-jpeg/
1929
1930 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1931 M:      Kyungmin Park <kyungmin.park@samsung.com>
1932 M:      Kamil Debski <kamil@wypas.org>
1933 M:      Jeongtae Park <jtp.park@samsung.com>
1934 M:      Andrzej Hajda <a.hajda@samsung.com>
1935 L:      linux-arm-kernel@lists.infradead.org
1936 L:      linux-media@vger.kernel.org
1937 S:      Maintained
1938 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1939 F:      drivers/media/platform/s5p-mfc/
1940
1941 ARM/SHMOBILE ARM ARCHITECTURE
1942 M:      Simon Horman <horms@verge.net.au>
1943 M:      Magnus Damm <magnus.damm@gmail.com>
1944 L:      linux-renesas-soc@vger.kernel.org
1945 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1947 S:      Supported
1948 F:      arch/arm/boot/dts/emev2*
1949 F:      arch/arm/boot/dts/r7s*
1950 F:      arch/arm/boot/dts/r8a*
1951 F:      arch/arm/boot/dts/sh*
1952 F:      arch/arm/configs/shmobile_defconfig
1953 F:      arch/arm/include/debug/renesas-scif.S
1954 F:      arch/arm/mach-shmobile/
1955 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1956 F:      drivers/soc/renesas/
1957 F:      include/linux/soc/renesas/
1958
1959 ARM/SOCFPGA ARCHITECTURE
1960 M:      Dinh Nguyen <dinguyen@kernel.org>
1961 S:      Maintained
1962 F:      arch/arm/mach-socfpga/
1963 F:      arch/arm/boot/dts/socfpga*
1964 F:      arch/arm/configs/socfpga_defconfig
1965 F:      arch/arm64/boot/dts/altera/
1966 W:      http://www.rocketboards.org
1967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1968
1969 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1970 M:      Dinh Nguyen <dinguyen@kernel.org>
1971 S:      Maintained
1972 F:      drivers/clk/socfpga/
1973
1974 ARM/SOCFPGA EDAC SUPPORT
1975 M:      Thor Thayer <thor.thayer@linux.intel.com>
1976 S:      Maintained
1977 F:      drivers/edac/altera_edac.
1978
1979 ARM/STI ARCHITECTURE
1980 M:      Patrice Chotard <patrice.chotard@st.com>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 W:      http://www.stlinux.com
1983 S:      Maintained
1984 F:      arch/arm/mach-sti/
1985 F:      arch/arm/boot/dts/sti*
1986 F:      drivers/char/hw_random/st-rng.c
1987 F:      drivers/clocksource/arm_global_timer.c
1988 F:      drivers/clocksource/clksrc_st_lpc.c
1989 F:      drivers/cpufreq/sti-cpufreq.c
1990 F:      drivers/dma/st_fdma*
1991 F:      drivers/i2c/busses/i2c-st.c
1992 F:      drivers/media/rc/st_rc.c
1993 F:      drivers/media/platform/sti/c8sectpfe/
1994 F:      drivers/mmc/host/sdhci-st.c
1995 F:      drivers/phy/st/phy-miphy28lp.c
1996 F:      drivers/phy/st/phy-stih407-usb.c
1997 F:      drivers/pinctrl/pinctrl-st.c
1998 F:      drivers/remoteproc/st_remoteproc.c
1999 F:      drivers/remoteproc/st_slim_rproc.c
2000 F:      drivers/reset/sti/
2001 F:      drivers/rtc/rtc-st-lpc.c
2002 F:      drivers/tty/serial/st-asc.c
2003 F:      drivers/usb/dwc3/dwc3-st.c
2004 F:      drivers/usb/host/ehci-st.c
2005 F:      drivers/usb/host/ohci-st.c
2006 F:      drivers/watchdog/st_lpc_wdt.c
2007 F:      drivers/ata/ahci_st.c
2008 F:      include/linux/remoteproc/st_slim_rproc.h
2009
2010 ARM/STM32 ARCHITECTURE
2011 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2012 M:      Alexandre Torgue <alexandre.torgue@st.com>
2013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014 S:      Maintained
2015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2016 N:      stm32
2017 F:      arch/arm/boot/dts/stm32*
2018 F:      arch/arm/mach-stm32/
2019 F:      drivers/clocksource/armv7m_systick.c
2020
2021 ARM/TANGO ARCHITECTURE
2022 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2023 M:      Mans Rullgard <mans@mansr.com>
2024 L:      linux-arm-kernel@lists.infradead.org
2025 S:      Odd Fixes
2026 N:      tango
2027
2028 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2029 M:      Lennert Buytenhek <kernel@wantstofly.org>
2030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2031 S:      Maintained
2032
2033 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2034 M:      Hans Verkuil <hans.verkuil@cisco.com>
2035 L:      linux-tegra@vger.kernel.org
2036 L:      linux-media@vger.kernel.org
2037 S:      Maintained
2038 F:      drivers/media/platform/tegra-cec/
2039 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2040
2041 ARM/TETON BGA MACHINE SUPPORT
2042 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045
2046 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2047 M:      Santosh Shilimkar <ssantosh@kernel.org>
2048 L:      linux-kernel@vger.kernel.org
2049 S:      Maintained
2050 F:      drivers/memory/*emif*
2051
2052 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2053 M:      Santosh Shilimkar <ssantosh@kernel.org>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      arch/arm/mach-keystone/
2057 F:      arch/arm/boot/dts/keystone-*
2058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2059
2060 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2061 M:      Santosh Shilimkar <ssantosh@kernel.org>
2062 L:      linux-kernel@vger.kernel.org
2063 S:      Maintained
2064 F:      drivers/clk/keystone/
2065
2066 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2067 M:      Santosh Shilimkar <ssantosh@kernel.org>
2068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069 L:      linux-kernel@vger.kernel.org
2070 S:      Maintained
2071 F:      drivers/clocksource/timer-keystone.c
2072
2073 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2074 M:      Santosh Shilimkar <ssantosh@kernel.org>
2075 L:      linux-kernel@vger.kernel.org
2076 S:      Maintained
2077 F:      drivers/power/reset/keystone-reset.c
2078
2079 ARM/THECUS N2100 MACHINE SUPPORT
2080 M:      Lennert Buytenhek <kernel@wantstofly.org>
2081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 S:      Maintained
2083
2084 ARM/TOSA MACHINE SUPPORT
2085 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2086 M:      Dirk Opfer <dirk@opfer-online.de>
2087 S:      Maintained
2088
2089 ARM/UNIPHIER ARCHITECTURE
2090 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2093 S:      Maintained
2094 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2095 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2096 F:      arch/arm/boot/dts/uniphier*
2097 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2098 F:      arch/arm/mach-uniphier/
2099 F:      arch/arm/mm/cache-uniphier.c
2100 F:      arch/arm64/boot/dts/socionext/uniphier*
2101 F:      drivers/bus/uniphier-system-bus.c
2102 F:      drivers/clk/uniphier/
2103 F:      drivers/gpio/gpio-uniphier.c
2104 F:      drivers/i2c/busses/i2c-uniphier*
2105 F:      drivers/irqchip/irq-uniphier-aidet.c
2106 F:      drivers/pinctrl/uniphier/
2107 F:      drivers/reset/reset-uniphier.c
2108 F:      drivers/tty/serial/8250/8250_uniphier.c
2109 N:      uniphier
2110
2111 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2112 M:      Ulf Hansson <ulf.hansson@linaro.org>
2113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2114 T:      git git://git.linaro.org/people/ulfh/clk.git
2115 S:      Maintained
2116 F:      drivers/clk/ux500/
2117
2118 ARM/VERSATILE EXPRESS PLATFORM
2119 M:      Liviu Dudau <liviu.dudau@arm.com>
2120 M:      Sudeep Holla <sudeep.holla@arm.com>
2121 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Maintained
2124 F:      arch/arm/boot/dts/vexpress*
2125 F:      arch/arm64/boot/dts/arm/
2126 F:      arch/arm/mach-vexpress/
2127 F:      */*/vexpress*
2128 F:      */*/*/vexpress*
2129 F:      drivers/clk/versatile/clk-vexpress-osc.c
2130 F:      drivers/clocksource/versatile.c
2131 N:      mps2
2132
2133 ARM/VFP SUPPORT
2134 M:      Russell King <linux@armlinux.org.uk>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 W:      http://www.armlinux.org.uk/
2137 S:      Maintained
2138 F:      arch/arm/vfp/
2139
2140 ARM/VOIPAC PXA270 SUPPORT
2141 M:      Marek Vasut <marek.vasut@gmail.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm/mach-pxa/vpac270.c
2145 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2146
2147 ARM/VT8500 ARM ARCHITECTURE
2148 M:      Tony Prisk <linux@prisktech.co.nz>
2149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151 F:      arch/arm/mach-vt8500/
2152 F:      drivers/clocksource/vt8500_timer.c
2153 F:      drivers/i2c/busses/i2c-wmt.c
2154 F:      drivers/mmc/host/wmt-sdmmc.c
2155 F:      drivers/pwm/pwm-vt8500.c
2156 F:      drivers/rtc/rtc-vt8500.c
2157 F:      drivers/tty/serial/vt8500_serial.c
2158 F:      drivers/usb/host/ehci-platform.c
2159 F:      drivers/usb/host/uhci-platform.c
2160 F:      drivers/video/fbdev/vt8500lcdfb.*
2161 F:      drivers/video/fbdev/wm8505fb*
2162 F:      drivers/video/fbdev/wmt_ge_rops.*
2163
2164 ARM/ZIPIT Z2 SUPPORT
2165 M:      Marek Vasut <marek.vasut@gmail.com>
2166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      arch/arm/mach-pxa/z2.c
2169 F:      arch/arm/mach-pxa/include/mach/z2.h
2170
2171 ARM/ZTE ARCHITECTURE
2172 M:      Jun Nie <jun.nie@linaro.org>
2173 M:      Baoyou Xie <baoyou.xie@linaro.org>
2174 M:      Shawn Guo <shawnguo@kernel.org>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177 F:      arch/arm/boot/dts/zx2967*
2178 F:      arch/arm/mach-zx/
2179 F:      arch/arm64/boot/dts/zte/
2180 F:      drivers/clk/zte/
2181 F:      drivers/dma/zx_dma.c
2182 F:      drivers/gpio/gpio-zx.c
2183 F:      drivers/i2c/busses/i2c-zx2967.c
2184 F:      drivers/mmc/host/dw_mmc-zx.*
2185 F:      drivers/pinctrl/zte/
2186 F:      drivers/soc/zte/
2187 F:      drivers/thermal/zx2967_thermal.c
2188 F:      drivers/watchdog/zx2967_wdt.c
2189 F:      Documentation/devicetree/bindings/arm/zte.txt
2190 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2191 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2192 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2193 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2194 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2195 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2196 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2197 F:      Documentation/devicetree/bindings/soc/zte/
2198 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2199 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2200 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2201 F:      include/dt-bindings/clock/zx2967*.h
2202 F:      include/dt-bindings/soc/zte,*.h
2203 F:      sound/soc/codecs/zx_aud96p22.c
2204 F:      sound/soc/zte/
2205
2206 ARM/ZYNQ ARCHITECTURE
2207 M:      Michal Simek <michal.simek@xilinx.com>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 W:      http://wiki.xilinx.com
2210 T:      git https://github.com/Xilinx/linux-xlnx.git
2211 S:      Supported
2212 F:      arch/arm/mach-zynq/
2213 F:      drivers/cpuidle/cpuidle-zynq.c
2214 F:      drivers/block/xsysace.c
2215 N:      zynq
2216 N:      xilinx
2217 F:      drivers/clocksource/cadence_ttc_timer.c
2218 F:      drivers/i2c/busses/i2c-cadence.c
2219 F:      drivers/mmc/host/sdhci-of-arasan.c
2220 F:      drivers/edac/synopsys_edac.c
2221
2222 ARM64 PORT (AARCH64 ARCHITECTURE)
2223 M:      Catalin Marinas <catalin.marinas@arm.com>
2224 M:      Will Deacon <will.deacon@arm.com>
2225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2227 S:      Maintained
2228 F:      arch/arm64/
2229 F:      Documentation/arm64/
2230
2231 AS3645A LED FLASH CONTROLLER DRIVER
2232 M:      Sakari Ailus <sakari.ailus@iki.fi>
2233 L:      linux-leds@vger.kernel.org
2234 S:      Maintained
2235 F:      drivers/leds/leds-as3645a.c
2236
2237 ASAHI KASEI AK8974 DRIVER
2238 M:      Linus Walleij <linus.walleij@linaro.org>
2239 L:      linux-iio@vger.kernel.org
2240 W:      http://www.akm.com/
2241 S:      Supported
2242 F:      drivers/iio/magnetometer/ak8974.c
2243
2244 ASC7621 HARDWARE MONITOR DRIVER
2245 M:      George Joseph <george.joseph@fairview5.com>
2246 L:      linux-hwmon@vger.kernel.org
2247 S:      Maintained
2248 F:      Documentation/hwmon/asc7621
2249 F:      drivers/hwmon/asc7621.c
2250
2251 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2252 M:      Corentin Chary <corentin.chary@gmail.com>
2253 L:      acpi4asus-user@lists.sourceforge.net
2254 L:      platform-driver-x86@vger.kernel.org
2255 W:      http://acpi4asus.sf.net
2256 S:      Maintained
2257 F:      drivers/platform/x86/asus*.c
2258 F:      drivers/platform/x86/eeepc*.c
2259
2260 ASUS WIRELESS RADIO CONTROL DRIVER
2261 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2262 L:      platform-driver-x86@vger.kernel.org
2263 S:      Maintained
2264 F:      drivers/platform/x86/asus-wireless.c
2265
2266 ASYMMETRIC KEYS
2267 M:      David Howells <dhowells@redhat.com>
2268 L:      keyrings@vger.kernel.org
2269 S:      Maintained
2270 F:      Documentation/crypto/asymmetric-keys.txt
2271 F:      include/linux/verification.h
2272 F:      include/crypto/public_key.h
2273 F:      include/crypto/pkcs7.h
2274 F:      crypto/asymmetric_keys/
2275
2276 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2277 R:      Dan Williams <dan.j.williams@intel.com>
2278 W:      http://sourceforge.net/projects/xscaleiop
2279 S:      Odd fixes
2280 F:      Documentation/crypto/async-tx-api.txt
2281 F:      crypto/async_tx/
2282 F:      drivers/dma/
2283 F:      include/linux/dmaengine.h
2284 F:      include/linux/async_tx.h
2285
2286 AT24 EEPROM DRIVER
2287 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2288 L:      linux-i2c@vger.kernel.org
2289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2290 S:      Maintained
2291 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2292 F:      drivers/misc/eeprom/at24.c
2293 F:      include/linux/platform_data/at24.h
2294
2295 ATA OVER ETHERNET (AOE) DRIVER
2296 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2297 W:      http://www.openaoe.org/
2298 S:      Supported
2299 F:      Documentation/aoe/
2300 F:      drivers/block/aoe/
2301
2302 ATHEROS 71XX/9XXX GPIO DRIVER
2303 M:      Alban Bedel <albeu@free.fr>
2304 W:      https://github.com/AlbanBedel/linux
2305 T:      git git://github.com/AlbanBedel/linux
2306 S:      Maintained
2307 F:      drivers/gpio/gpio-ath79.c
2308 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2309
2310 ATHEROS ATH GENERIC UTILITIES
2311 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2312 L:      linux-wireless@vger.kernel.org
2313 S:      Supported
2314 F:      drivers/net/wireless/ath/*
2315
2316 ATHEROS ATH5K WIRELESS DRIVER
2317 M:      Jiri Slaby <jirislaby@gmail.com>
2318 M:      Nick Kossifidis <mickflemm@gmail.com>
2319 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2320 L:      linux-wireless@vger.kernel.org
2321 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2322 S:      Maintained
2323 F:      drivers/net/wireless/ath/ath5k/
2324
2325 ATHEROS ATH6KL WIRELESS DRIVER
2326 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2327 L:      linux-wireless@vger.kernel.org
2328 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2330 S:      Supported
2331 F:      drivers/net/wireless/ath/ath6kl/
2332
2333 ATI_REMOTE2 DRIVER
2334 M:      Ville Syrjala <syrjala@sci.fi>
2335 S:      Maintained
2336 F:      drivers/input/misc/ati_remote2.c
2337
2338 ATK0110 HWMON DRIVER
2339 M:      Luca Tettamanti <kronos.it@gmail.com>
2340 L:      linux-hwmon@vger.kernel.org
2341 S:      Maintained
2342 F:      drivers/hwmon/asus_atk0110.c
2343
2344 ATLX ETHERNET DRIVERS
2345 M:      Jay Cliburn <jcliburn@gmail.com>
2346 M:      Chris Snook <chris.snook@gmail.com>
2347 L:      netdev@vger.kernel.org
2348 W:      http://sourceforge.net/projects/atl1
2349 W:      http://atl1.sourceforge.net
2350 S:      Maintained
2351 F:      drivers/net/ethernet/atheros/
2352
2353 ATM
2354 M:      Chas Williams <3chas3@gmail.com>
2355 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2356 L:      netdev@vger.kernel.org
2357 W:      http://linux-atm.sourceforge.net
2358 S:      Maintained
2359 F:      drivers/atm/
2360 F:      include/linux/atm*
2361 F:      include/uapi/linux/atm*
2362
2363 ATMEL AT91 / AT32 MCI DRIVER
2364 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2365 S:      Maintained
2366 F:      drivers/mmc/host/atmel-mci.c
2367
2368 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2369 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2370 S:      Supported
2371 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2372
2373 ATMEL Audio ALSA driver
2374 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2375 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2376 S:      Supported
2377 F:      sound/soc/atmel
2378
2379 ATMEL I2C DRIVER
2380 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2381 L:      linux-i2c@vger.kernel.org
2382 S:      Supported
2383 F:      drivers/i2c/busses/i2c-at91.c
2384
2385 ATMEL ISI DRIVER
2386 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2387 L:      linux-media@vger.kernel.org
2388 S:      Supported
2389 F:      drivers/media/platform/atmel/atmel-isi.c
2390 F:      include/media/atmel-isi.h
2391
2392 ATMEL LCDFB DRIVER
2393 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2394 L:      linux-fbdev@vger.kernel.org
2395 S:      Maintained
2396 F:      drivers/video/fbdev/atmel_lcdfb.c
2397 F:      include/video/atmel_lcdc.h
2398
2399 ATMEL MACB ETHERNET DRIVER
2400 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2401 S:      Supported
2402 F:      drivers/net/ethernet/cadence/
2403
2404 ATMEL MAXTOUCH DRIVER
2405 M:      Nick Dyer <nick@shmanahar.org>
2406 T:      git git://github.com/ndyer/linux.git
2407 S:      Maintained
2408 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2409 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2410 F:      include/linux/platform_data/atmel_mxt_ts.h
2411
2412 ATMEL SAMA5D2 ADC DRIVER
2413 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2414 L:      linux-iio@vger.kernel.org
2415 S:      Supported
2416 F:      drivers/iio/adc/at91-sama5d2_adc.c
2417
2418 ATMEL SDMMC DRIVER
2419 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2420 L:      linux-mmc@vger.kernel.org
2421 S:      Supported
2422 F:      drivers/mmc/host/sdhci-of-at91.c
2423
2424 ATMEL SPI DRIVER
2425 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2426 S:      Supported
2427 F:      drivers/spi/spi-atmel.*
2428
2429 ATMEL SSC DRIVER
2430 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2432 S:      Supported
2433 F:      drivers/misc/atmel-ssc.c
2434 F:      include/linux/atmel-ssc.h
2435
2436 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2437 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 S:      Supported
2440 F:      drivers/misc/atmel_tclib.c
2441 F:      drivers/clocksource/tcb_clksrc.c
2442
2443 ATMEL USBA UDC DRIVER
2444 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 S:      Supported
2447 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2448
2449 ATMEL WIRELESS DRIVER
2450 M:      Simon Kelley <simon@thekelleys.org.uk>
2451 L:      linux-wireless@vger.kernel.org
2452 W:      http://www.thekelleys.org.uk/atmel
2453 W:      http://atmelwlandriver.sourceforge.net/
2454 S:      Maintained
2455 F:      drivers/net/wireless/atmel/atmel*
2456
2457 ATMEL XDMA DRIVER
2458 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2459 L:      linux-arm-kernel@lists.infradead.org
2460 L:      dmaengine@vger.kernel.org
2461 S:      Supported
2462 F:      drivers/dma/at_xdmac.c
2463
2464 ATOMIC INFRASTRUCTURE
2465 M:      Will Deacon <will.deacon@arm.com>
2466 M:      Peter Zijlstra <peterz@infradead.org>
2467 R:      Boqun Feng <boqun.feng@gmail.com>
2468 L:      linux-kernel@vger.kernel.org
2469 S:      Maintained
2470 F:      arch/*/include/asm/atomic*.h
2471 F:      include/*/atomic*.h
2472
2473 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2474 M:      Bradley Grove <linuxdrivers@attotech.com>
2475 L:      linux-scsi@vger.kernel.org
2476 W:      http://www.attotech.com
2477 S:      Supported
2478 F:      drivers/scsi/esas2r
2479
2480 ATUSB IEEE 802.15.4 RADIO DRIVER
2481 M:      Stefan Schmidt <stefan@osg.samsung.com>
2482 L:      linux-wpan@vger.kernel.org
2483 S:      Maintained
2484 F:      drivers/net/ieee802154/atusb.c
2485 F:      drivers/net/ieee802154/atusb.h
2486 F:      drivers/net/ieee802154/at86rf230.h
2487
2488 AUDIT SUBSYSTEM
2489 M:      Paul Moore <paul@paul-moore.com>
2490 M:      Eric Paris <eparis@redhat.com>
2491 L:      linux-audit@redhat.com (moderated for non-subscribers)
2492 W:      https://github.com/linux-audit
2493 W:      https://people.redhat.com/sgrubb/audit
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2495 S:      Supported
2496 F:      include/linux/audit.h
2497 F:      include/uapi/linux/audit.h
2498 F:      kernel/audit*
2499
2500 AUXILIARY DISPLAY DRIVERS
2501 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2502 W:      http://miguelojeda.es/auxdisplay.htm
2503 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2504 S:      Maintained
2505 F:      drivers/auxdisplay/
2506 F:      include/linux/cfag12864b.h
2507
2508 AX.25 NETWORK LAYER
2509 M:      Ralf Baechle <ralf@linux-mips.org>
2510 L:      linux-hams@vger.kernel.org
2511 W:      http://www.linux-ax25.org/
2512 S:      Maintained
2513 F:      include/uapi/linux/ax25.h
2514 F:      include/net/ax25.h
2515 F:      net/ax25/
2516
2517 AXENTIA ARM DEVICES
2518 M:      Peter Rosin <peda@axentia.se>
2519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 S:      Maintained
2521 F:      Documentation/devicetree/bindings/arm/axentia.txt
2522 F:      arch/arm/boot/dts/at91-linea.dtsi
2523 F:      arch/arm/boot/dts/at91-natte.dtsi
2524 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2525 F:      arch/arm/boot/dts/at91-tse850-3.dts
2526
2527 AXENTIA ASOC DRIVERS
2528 M:      Peter Rosin <peda@axentia.se>
2529 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2530 S:      Maintained
2531 F:      Documentation/devicetree/bindings/sound/axentia,*
2532 F:      sound/soc/atmel/tse850-pcm5142.c
2533
2534 AZ6007 DVB DRIVER
2535 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2536 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2537 L:      linux-media@vger.kernel.org
2538 W:      https://linuxtv.org
2539 T:      git git://linuxtv.org/media_tree.git
2540 S:      Maintained
2541 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2542
2543 AZTECH FM RADIO RECEIVER DRIVER
2544 M:      Hans Verkuil <hverkuil@xs4all.nl>
2545 L:      linux-media@vger.kernel.org
2546 T:      git git://linuxtv.org/media_tree.git
2547 W:      https://linuxtv.org
2548 S:      Maintained
2549 F:      drivers/media/radio/radio-aztech*
2550
2551 B43 WIRELESS DRIVER
2552 L:      linux-wireless@vger.kernel.org
2553 L:      b43-dev@lists.infradead.org
2554 W:      http://wireless.kernel.org/en/users/Drivers/b43
2555 S:      Odd Fixes
2556 F:      drivers/net/wireless/broadcom/b43/
2557
2558 B43LEGACY WIRELESS DRIVER
2559 M:      Larry Finger <Larry.Finger@lwfinger.net>
2560 L:      linux-wireless@vger.kernel.org
2561 L:      b43-dev@lists.infradead.org
2562 W:      http://wireless.kernel.org/en/users/Drivers/b43
2563 S:      Maintained
2564 F:      drivers/net/wireless/broadcom/b43legacy/
2565
2566 BACKLIGHT CLASS/SUBSYSTEM
2567 M:      Lee Jones <lee.jones@linaro.org>
2568 M:      Daniel Thompson <daniel.thompson@linaro.org>
2569 M:      Jingoo Han <jingoohan1@gmail.com>
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2571 S:      Maintained
2572 F:      drivers/video/backlight/
2573 F:      include/linux/backlight.h
2574 F:      include/linux/pwm_backlight.h
2575 F:      Documentation/devicetree/bindings/leds/backlight
2576
2577 BATMAN ADVANCED
2578 M:      Marek Lindner <mareklindner@neomailbox.ch>
2579 M:      Simon Wunderlich <sw@simonwunderlich.de>
2580 M:      Antonio Quartulli <a@unstable.cc>
2581 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2582 W:      https://www.open-mesh.org/
2583 Q:      https://patchwork.open-mesh.org/project/batman/list/
2584 S:      Maintained
2585 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2586 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2587 F:      Documentation/networking/batman-adv.rst
2588 F:      include/uapi/linux/batadv_packet.h
2589 F:      include/uapi/linux/batman_adv.h
2590 F:      net/batman-adv/
2591
2592 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2593 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2594 L:      linux-hams@vger.kernel.org
2595 W:      http://www.baycom.org/~tom/ham/ham.html
2596 S:      Maintained
2597 F:      drivers/net/hamradio/baycom*
2598
2599 BCACHE (BLOCK LAYER CACHE)
2600 M:      Michael Lyle <mlyle@lyle.org>
2601 M:      Kent Overstreet <kent.overstreet@gmail.com>
2602 L:      linux-bcache@vger.kernel.org
2603 W:      http://bcache.evilpiepirate.org
2604 C:      irc://irc.oftc.net/bcache
2605 S:      Maintained
2606 F:      drivers/md/bcache/
2607
2608 BDISP ST MEDIA DRIVER
2609 M:      Fabien Dessenne <fabien.dessenne@st.com>
2610 L:      linux-media@vger.kernel.org
2611 T:      git git://linuxtv.org/media_tree.git
2612 W:      https://linuxtv.org
2613 S:      Supported
2614 F:      drivers/media/platform/sti/bdisp
2615
2616 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2617 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2618 L:      netdev@vger.kernel.org
2619 S:      Maintained
2620 F:      drivers/net/ethernet/ec_bhf.c
2621
2622 BEFS FILE SYSTEM
2623 M:      Luis de Bethencourt <luisbg@kernel.org>
2624 M:      Salah Triki <salah.triki@gmail.com>
2625 S:      Maintained
2626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2627 F:      Documentation/filesystems/befs.txt
2628 F:      fs/befs/
2629
2630 BFQ I/O SCHEDULER
2631 M:      Paolo Valente <paolo.valente@linaro.org>
2632 M:      Jens Axboe <axboe@kernel.dk>
2633 L:      linux-block@vger.kernel.org
2634 S:      Maintained
2635 F:      block/bfq-*
2636 F:      Documentation/block/bfq-iosched.txt
2637
2638 BFS FILE SYSTEM
2639 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2640 S:      Maintained
2641 F:      Documentation/filesystems/bfs.txt
2642 F:      fs/bfs/
2643 F:      include/uapi/linux/bfs_fs.h
2644
2645 BLINKM RGB LED DRIVER
2646 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2647 S:      Maintained
2648 F:      drivers/leds/leds-blinkm.c
2649
2650 BLOCK LAYER
2651 M:      Jens Axboe <axboe@kernel.dk>
2652 L:      linux-block@vger.kernel.org
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2654 S:      Maintained
2655 F:      block/
2656 F:      kernel/trace/blktrace.c
2657 F:      lib/sbitmap.c
2658
2659 BLOCK2MTD DRIVER
2660 M:      Joern Engel <joern@lazybastard.org>
2661 L:      linux-mtd@lists.infradead.org
2662 S:      Maintained
2663 F:      drivers/mtd/devices/block2mtd.c
2664
2665 BLUETOOTH DRIVERS
2666 M:      Marcel Holtmann <marcel@holtmann.org>
2667 M:      Johan Hedberg <johan.hedberg@gmail.com>
2668 L:      linux-bluetooth@vger.kernel.org
2669 W:      http://www.bluez.org/
2670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2672 S:      Maintained
2673 F:      drivers/bluetooth/
2674
2675 BLUETOOTH SUBSYSTEM
2676 M:      Marcel Holtmann <marcel@holtmann.org>
2677 M:      Johan Hedberg <johan.hedberg@gmail.com>
2678 L:      linux-bluetooth@vger.kernel.org
2679 W:      http://www.bluez.org/
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2682 S:      Maintained
2683 F:      net/bluetooth/
2684 F:      include/net/bluetooth/
2685
2686 BONDING DRIVER
2687 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2688 M:      Veaceslav Falico <vfalico@gmail.com>
2689 M:      Andy Gospodarek <andy@greyhouse.net>
2690 L:      netdev@vger.kernel.org
2691 W:      http://sourceforge.net/projects/bonding/
2692 S:      Supported
2693 F:      drivers/net/bonding/
2694 F:      include/uapi/linux/if_bonding.h
2695
2696 BPF (Safe dynamic programs and tools)
2697 M:      Alexei Starovoitov <ast@kernel.org>
2698 M:      Daniel Borkmann <daniel@iogearbox.net>
2699 L:      netdev@vger.kernel.org
2700 L:      linux-kernel@vger.kernel.org
2701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2703 S:      Supported
2704 F:      arch/x86/net/bpf_jit*
2705 F:      Documentation/networking/filter.txt
2706 F:      Documentation/bpf/
2707 F:      include/linux/bpf*
2708 F:      include/linux/filter.h
2709 F:      include/trace/events/bpf.h
2710 F:      include/trace/events/xdp.h
2711 F:      include/uapi/linux/bpf*
2712 F:      include/uapi/linux/filter.h
2713 F:      kernel/bpf/
2714 F:      kernel/trace/bpf_trace.c
2715 F:      lib/test_bpf.c
2716 F:      net/bpf/
2717 F:      net/core/filter.c
2718 F:      net/sched/act_bpf.c
2719 F:      net/sched/cls_bpf.c
2720 F:      samples/bpf/
2721 F:      tools/bpf/
2722 F:      tools/testing/selftests/bpf/
2723
2724 BROADCOM B44 10/100 ETHERNET DRIVER
2725 M:      Michael Chan <michael.chan@broadcom.com>
2726 L:      netdev@vger.kernel.org
2727 S:      Supported
2728 F:      drivers/net/ethernet/broadcom/b44.*
2729
2730 BROADCOM B53 ETHERNET SWITCH DRIVER
2731 M:      Florian Fainelli <f.fainelli@gmail.com>
2732 L:      netdev@vger.kernel.org
2733 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2734 S:      Supported
2735 F:      drivers/net/dsa/b53/*
2736 F:      include/linux/platform_data/b53.h
2737
2738 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2739 M:      Florian Fainelli <f.fainelli@gmail.com>
2740 M:      Ray Jui <rjui@broadcom.com>
2741 M:      Scott Branden <sbranden@broadcom.com>
2742 M:      bcm-kernel-feedback-list@broadcom.com
2743 T:      git git://github.com/broadcom/mach-bcm
2744 S:      Maintained
2745 N:      bcm281*
2746 N:      bcm113*
2747 N:      bcm216*
2748 N:      kona
2749 F:      arch/arm/mach-bcm/
2750
2751 BROADCOM BCM2835 ARM ARCHITECTURE
2752 M:      Eric Anholt <eric@anholt.net>
2753 M:      Stefan Wahren <stefan.wahren@i2se.com>
2754 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2755 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2756 T:      git git://github.com/anholt/linux
2757 S:      Maintained
2758 N:      bcm2835
2759 F:      drivers/staging/vc04_services
2760
2761 BROADCOM BCM47XX MIPS ARCHITECTURE
2762 M:      Hauke Mehrtens <hauke@hauke-m.de>
2763 M:      Rafał Miłecki <zajec5@gmail.com>
2764 L:      linux-mips@linux-mips.org
2765 S:      Maintained
2766 F:      Documentation/devicetree/bindings/mips/brcm/
2767 F:      arch/mips/bcm47xx/*
2768 F:      arch/mips/include/asm/mach-bcm47xx/*
2769
2770 BROADCOM BCM5301X ARM ARCHITECTURE
2771 M:      Hauke Mehrtens <hauke@hauke-m.de>
2772 M:      Rafał Miłecki <zajec5@gmail.com>
2773 M:      Jon Mason <jonmason@broadcom.com>
2774 M:      bcm-kernel-feedback-list@broadcom.com
2775 L:      linux-arm-kernel@lists.infradead.org
2776 S:      Maintained
2777 F:      arch/arm/mach-bcm/bcm_5301x.c
2778 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2779 F:      arch/arm/boot/dts/bcm470*
2780 F:      arch/arm/boot/dts/bcm953012*
2781
2782 BROADCOM BCM53573 ARM ARCHITECTURE
2783 M:      Rafał Miłecki <rafal@milecki.pl>
2784 L:      linux-arm-kernel@lists.infradead.org
2785 S:      Maintained
2786 F:      arch/arm/boot/dts/bcm53573*
2787 F:      arch/arm/boot/dts/bcm47189*
2788
2789 BROADCOM BCM63XX ARM ARCHITECTURE
2790 M:      Florian Fainelli <f.fainelli@gmail.com>
2791 M:      bcm-kernel-feedback-list@broadcom.com
2792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2793 T:      git git://github.com/broadcom/stblinux.git
2794 S:      Maintained
2795 N:      bcm63xx
2796
2797 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2798 M:      Kevin Cernekee <cernekee@gmail.com>
2799 L:      linux-usb@vger.kernel.org
2800 S:      Maintained
2801 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2802
2803 BROADCOM BCM7XXX ARM ARCHITECTURE
2804 M:      Brian Norris <computersforpeace@gmail.com>
2805 M:      Gregory Fong <gregory.0xf0@gmail.com>
2806 M:      Florian Fainelli <f.fainelli@gmail.com>
2807 M:      bcm-kernel-feedback-list@broadcom.com
2808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2809 T:      git git://github.com/broadcom/stblinux.git
2810 S:      Maintained
2811 F:      arch/arm/mach-bcm/*brcmstb*
2812 F:      arch/arm/boot/dts/bcm7*.dts*
2813 F:      drivers/bus/brcmstb_gisb.c
2814 F:      arch/arm/mm/cache-b15-rac.c
2815 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
2816 N:      brcmstb
2817
2818 BROADCOM BMIPS CPUFREQ DRIVER
2819 M:      Markus Mayer <mmayer@broadcom.com>
2820 M:      bcm-kernel-feedback-list@broadcom.com
2821 L:      linux-pm@vger.kernel.org
2822 S:      Maintained
2823 F:      drivers/cpufreq/bmips-cpufreq.c
2824
2825 BROADCOM BMIPS MIPS ARCHITECTURE
2826 M:      Kevin Cernekee <cernekee@gmail.com>
2827 M:      Florian Fainelli <f.fainelli@gmail.com>
2828 L:      linux-mips@linux-mips.org
2829 T:      git git://github.com/broadcom/stblinux.git
2830 S:      Maintained
2831 F:      arch/mips/bmips/*
2832 F:      arch/mips/include/asm/mach-bmips/*
2833 F:      arch/mips/kernel/*bmips*
2834 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2835 F:      drivers/irqchip/irq-bcm63*
2836 F:      drivers/irqchip/irq-bcm7*
2837 F:      drivers/irqchip/irq-brcmstb*
2838 F:      include/linux/bcm963xx_nvram.h
2839 F:      include/linux/bcm963xx_tag.h
2840
2841 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2842 M:      Rasesh Mody <rasesh.mody@cavium.com>
2843 M:      Harish Patil <harish.patil@cavium.com>
2844 M:      Dept-GELinuxNICDev@cavium.com
2845 L:      netdev@vger.kernel.org
2846 S:      Supported
2847 F:      drivers/net/ethernet/broadcom/bnx2.*
2848 F:      drivers/net/ethernet/broadcom/bnx2_*
2849
2850 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2851 M:      QLogic-Storage-Upstream@qlogic.com
2852 L:      linux-scsi@vger.kernel.org
2853 S:      Supported
2854 F:      drivers/scsi/bnx2fc/
2855
2856 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2857 M:      QLogic-Storage-Upstream@qlogic.com
2858 L:      linux-scsi@vger.kernel.org
2859 S:      Supported
2860 F:      drivers/scsi/bnx2i/
2861
2862 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2863 M:      Ariel Elior <ariel.elior@cavium.com>
2864 M:      everest-linux-l2@cavium.com
2865 L:      netdev@vger.kernel.org
2866 S:      Supported
2867 F:      drivers/net/ethernet/broadcom/bnx2x/
2868
2869 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2870 M:      Michael Chan <michael.chan@broadcom.com>
2871 L:      netdev@vger.kernel.org
2872 S:      Supported
2873 F:      drivers/net/ethernet/broadcom/bnxt/
2874
2875 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2876 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2877 M:      Franky Lin <franky.lin@broadcom.com>
2878 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2879 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2880 M:      Wright Feng <wright.feng@cypress.com>
2881 L:      linux-wireless@vger.kernel.org
2882 L:      brcm80211-dev-list.pdl@broadcom.com
2883 L:      brcm80211-dev-list@cypress.com
2884 S:      Supported
2885 F:      drivers/net/wireless/broadcom/brcm80211/
2886
2887 BROADCOM BRCMSTB GPIO DRIVER
2888 M:      Gregory Fong <gregory.0xf0@gmail.com>
2889 L:      bcm-kernel-feedback-list@broadcom.com
2890 S:      Supported
2891 F:      drivers/gpio/gpio-brcmstb.c
2892 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2893
2894 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2895 M:      Al Cooper <alcooperx@gmail.com>
2896 L:      linux-kernel@vger.kernel.org
2897 L:      bcm-kernel-feedback-list@broadcom.com
2898 S:      Maintained
2899 F:      drivers/phy/broadcom/phy-brcm-usb*
2900
2901 BROADCOM GENET ETHERNET DRIVER
2902 M:      Doug Berger <opendmb@gmail.com>
2903 M:      Florian Fainelli <f.fainelli@gmail.com>
2904 L:      netdev@vger.kernel.org
2905 S:      Supported
2906 F:      drivers/net/ethernet/broadcom/genet/
2907
2908 BROADCOM IPROC ARM ARCHITECTURE
2909 M:      Ray Jui <rjui@broadcom.com>
2910 M:      Scott Branden <sbranden@broadcom.com>
2911 M:      Jon Mason <jonmason@broadcom.com>
2912 M:      bcm-kernel-feedback-list@broadcom.com
2913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2914 T:      git git://github.com/broadcom/cygnus-linux.git
2915 S:      Maintained
2916 N:      iproc
2917 N:      cygnus
2918 N:      bcm[-_]nsp
2919 N:      bcm9113*
2920 N:      bcm9583*
2921 N:      bcm9585*
2922 N:      bcm9586*
2923 N:      bcm988312
2924 N:      bcm113*
2925 N:      bcm583*
2926 N:      bcm585*
2927 N:      bcm586*
2928 N:      bcm88312
2929 N:      hr2
2930 F:      arch/arm64/boot/dts/broadcom/ns2*
2931 F:      drivers/clk/bcm/clk-ns*
2932 F:      drivers/pinctrl/bcm/pinctrl-ns*
2933
2934 BROADCOM KONA GPIO DRIVER
2935 M:      Ray Jui <rjui@broadcom.com>
2936 L:      bcm-kernel-feedback-list@broadcom.com
2937 S:      Supported
2938 F:      drivers/gpio/gpio-bcm-kona.c
2939 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2940
2941 BROADCOM NETXTREME-E ROCE DRIVER
2942 M:      Selvin Xavier <selvin.xavier@broadcom.com>
2943 M:      Devesh Sharma <devesh.sharma@broadcom.com>
2944 M:      Somnath Kotur <somnath.kotur@broadcom.com>
2945 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2946 L:      linux-rdma@vger.kernel.org
2947 W:      http://www.broadcom.com
2948 S:      Supported
2949 F:      drivers/infiniband/hw/bnxt_re/
2950 F:      include/uapi/rdma/bnxt_re-abi.h
2951
2952 BROADCOM NVRAM DRIVER
2953 M:      Rafał Miłecki <zajec5@gmail.com>
2954 L:      linux-mips@linux-mips.org
2955 S:      Maintained
2956 F:      drivers/firmware/broadcom/*
2957
2958 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2959 M:      Rafał Miłecki <zajec5@gmail.com>
2960 L:      linux-wireless@vger.kernel.org
2961 S:      Maintained
2962 F:      drivers/bcma/
2963 F:      include/linux/bcma/
2964
2965 BROADCOM STB AVS CPUFREQ DRIVER
2966 M:      Markus Mayer <mmayer@broadcom.com>
2967 M:      bcm-kernel-feedback-list@broadcom.com
2968 L:      linux-pm@vger.kernel.org
2969 S:      Maintained
2970 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2971 F:      drivers/cpufreq/brcmstb*
2972
2973 BROADCOM STB AVS TMON DRIVER
2974 M:      Markus Mayer <mmayer@broadcom.com>
2975 M:      bcm-kernel-feedback-list@broadcom.com
2976 L:      linux-pm@vger.kernel.org
2977 S:      Maintained
2978 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
2979 F:      drivers/thermal/broadcom/brcmstb*
2980
2981 BROADCOM STB NAND FLASH DRIVER
2982 M:      Brian Norris <computersforpeace@gmail.com>
2983 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2984 L:      linux-mtd@lists.infradead.org
2985 L:      bcm-kernel-feedback-list@broadcom.com
2986 S:      Maintained
2987 F:      drivers/mtd/nand/brcmnand/
2988
2989 BROADCOM STB DPFE DRIVER
2990 M:      Markus Mayer <mmayer@broadcom.com>
2991 M:      bcm-kernel-feedback-list@broadcom.com
2992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2993 S:      Maintained
2994 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
2995 F:      drivers/memory/brcmstb_dpfe.c
2996
2997 BROADCOM SYSTEMPORT ETHERNET DRIVER
2998 M:      Florian Fainelli <f.fainelli@gmail.com>
2999 L:      netdev@vger.kernel.org
3000 S:      Supported
3001 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3002
3003 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3004 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3005 M:      Prashant Sreedharan <prashant@broadcom.com>
3006 M:      Michael Chan <mchan@broadcom.com>
3007 L:      netdev@vger.kernel.org
3008 S:      Supported
3009 F:      drivers/net/ethernet/broadcom/tg3.*
3010
3011 BROCADE BFA FC SCSI DRIVER
3012 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3013 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3014 L:      linux-scsi@vger.kernel.org
3015 S:      Supported
3016 F:      drivers/scsi/bfa/
3017
3018 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3019 M:      Rasesh Mody <rasesh.mody@cavium.com>
3020 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3021 M:      Dept-GELinuxNICDev@cavium.com
3022 L:      netdev@vger.kernel.org
3023 S:      Supported
3024 F:      drivers/net/ethernet/brocade/bna/
3025
3026 BSG (block layer generic sg v4 driver)
3027 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3028 L:      linux-scsi@vger.kernel.org
3029 S:      Supported
3030 F:      block/bsg.c
3031 F:      include/linux/bsg.h
3032 F:      include/uapi/linux/bsg.h
3033
3034 BT87X AUDIO DRIVER
3035 M:      Clemens Ladisch <clemens@ladisch.de>
3036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3037 T:      git git://git.alsa-project.org/alsa-kernel.git
3038 S:      Maintained
3039 F:      Documentation/sound/alsa/Bt87x.txt
3040 F:      sound/pci/bt87x.c
3041
3042 BT8XXGPIO DRIVER
3043 M:      Michael Buesch <m@bues.ch>
3044 W:      http://bu3sch.de/btgpio.php
3045 S:      Maintained
3046 F:      drivers/gpio/gpio-bt8xx.c
3047
3048 BTRFS FILE SYSTEM
3049 M:      Chris Mason <clm@fb.com>
3050 M:      Josef Bacik <jbacik@fb.com>
3051 M:      David Sterba <dsterba@suse.com>
3052 L:      linux-btrfs@vger.kernel.org
3053 W:      http://btrfs.wiki.kernel.org/
3054 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3056 S:      Maintained
3057 F:      Documentation/filesystems/btrfs.txt
3058 F:      fs/btrfs/
3059 F:      include/linux/btrfs*
3060 F:      include/uapi/linux/btrfs*
3061
3062 BTTV VIDEO4LINUX DRIVER
3063 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3064 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3065 L:      linux-media@vger.kernel.org
3066 W:      https://linuxtv.org
3067 T:      git git://linuxtv.org/media_tree.git
3068 S:      Odd fixes
3069 F:      Documentation/media/v4l-drivers/bttv*
3070 F:      drivers/media/pci/bt8xx/bttv*
3071
3072 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3073 M:      Chanwoo Choi <cw00.choi@samsung.com>
3074 L:      linux-pm@vger.kernel.org
3075 L:      linux-samsung-soc@vger.kernel.org
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3077 S:      Maintained
3078 F:      drivers/devfreq/exynos-bus.c
3079 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3080
3081 BUSLOGIC SCSI DRIVER
3082 M:      Khalid Aziz <khalid@gonehiking.org>
3083 L:      linux-scsi@vger.kernel.org
3084 S:      Maintained
3085 F:      drivers/scsi/BusLogic.*
3086 F:      drivers/scsi/FlashPoint.*
3087
3088 C-MEDIA CMI8788 DRIVER
3089 M:      Clemens Ladisch <clemens@ladisch.de>
3090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3091 T:      git git://git.alsa-project.org/alsa-kernel.git
3092 S:      Maintained
3093 F:      sound/pci/oxygen/
3094
3095 C6X ARCHITECTURE
3096 M:      Mark Salter <msalter@redhat.com>
3097 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3098 L:      linux-c6x-dev@linux-c6x.org
3099 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3100 S:      Maintained
3101 F:      arch/c6x/
3102
3103 CA8210 IEEE-802.15.4 RADIO DRIVER
3104 M:      Harry Morris <h.morris@cascoda.com>
3105 L:      linux-wpan@vger.kernel.org
3106 W:      https://github.com/Cascoda/ca8210-linux.git
3107 S:      Maintained
3108 F:      drivers/net/ieee802154/ca8210.c
3109 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3110
3111 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3112 M:      David Howells <dhowells@redhat.com>
3113 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3114 S:      Supported
3115 F:      Documentation/filesystems/caching/cachefiles.txt
3116 F:      fs/cachefiles/
3117
3118 CADET FM/AM RADIO RECEIVER DRIVER
3119 M:      Hans Verkuil <hverkuil@xs4all.nl>
3120 L:      linux-media@vger.kernel.org
3121 T:      git git://linuxtv.org/media_tree.git
3122 W:      https://linuxtv.org
3123 S:      Maintained
3124 F:      drivers/media/radio/radio-cadet*
3125
3126 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3127 M:      Jonathan Corbet <corbet@lwn.net>
3128 L:      linux-media@vger.kernel.org
3129 T:      git git://linuxtv.org/media_tree.git
3130 S:      Maintained
3131 F:      Documentation/media/v4l-drivers/cafe_ccic*
3132 F:      drivers/media/platform/marvell-ccic/
3133
3134 CAIF NETWORK LAYER
3135 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3136 L:      netdev@vger.kernel.org
3137 S:      Supported
3138 F:      Documentation/networking/caif/
3139 F:      drivers/net/caif/
3140 F:      include/uapi/linux/caif/
3141 F:      include/net/caif/
3142 F:      net/caif/
3143
3144 CALGARY x86-64 IOMMU
3145 M:      Muli Ben-Yehuda <mulix@mulix.org>
3146 M:      Jon Mason <jdmason@kudzu.us>
3147 L:      iommu@lists.linux-foundation.org
3148 S:      Maintained
3149 F:      arch/x86/kernel/pci-calgary_64.c
3150 F:      arch/x86/kernel/tce_64.c
3151 F:      arch/x86/include/asm/calgary.h
3152 F:      arch/x86/include/asm/tce.h
3153
3154 CAN NETWORK DRIVERS
3155 M:      Wolfgang Grandegger <wg@grandegger.com>
3156 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3157 L:      linux-can@vger.kernel.org
3158 W:      https://github.com/linux-can
3159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3161 S:      Maintained
3162 F:      Documentation/devicetree/bindings/net/can/
3163 F:      drivers/net/can/
3164 F:      include/linux/can/dev.h
3165 F:      include/linux/can/platform/
3166 F:      include/uapi/linux/can/error.h
3167 F:      include/uapi/linux/can/netlink.h
3168
3169 CAN NETWORK LAYER
3170 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3171 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3172 L:      linux-can@vger.kernel.org
3173 W:      https://github.com/linux-can
3174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3176 S:      Maintained
3177 F:      Documentation/networking/can.rst
3178 F:      net/can/
3179 F:      include/linux/can/core.h
3180 F:      include/uapi/linux/can.h
3181 F:      include/uapi/linux/can/bcm.h
3182 F:      include/uapi/linux/can/raw.h
3183 F:      include/uapi/linux/can/gw.h
3184
3185 CAPABILITIES
3186 M:      Serge Hallyn <serge@hallyn.com>
3187 L:      linux-security-module@vger.kernel.org
3188 S:      Supported
3189 F:      include/linux/capability.h
3190 F:      include/uapi/linux/capability.h
3191 F:      security/commoncap.c
3192 F:      kernel/capability.c
3193
3194 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3195 M:      Kevin Tsai <ktsai@capellamicro.com>
3196 S:      Maintained
3197 F:      drivers/iio/light/cm*
3198
3199 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3200 M:      Christian Lamparter <chunkeey@googlemail.com>
3201 L:      linux-wireless@vger.kernel.org
3202 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3203 S:      Maintained
3204 F:      drivers/net/wireless/ath/carl9170/
3205
3206 CAVIUM I2C DRIVER
3207 M:      Jan Glauber <jglauber@cavium.com>
3208 M:      David Daney <david.daney@cavium.com>
3209 W:      http://www.cavium.com
3210 S:      Supported
3211 F:      drivers/i2c/busses/i2c-octeon*
3212 F:      drivers/i2c/busses/i2c-thunderx*
3213
3214 CAVIUM LIQUIDIO NETWORK DRIVER
3215 M:      Derek Chickles <derek.chickles@caviumnetworks.com>
3216 M:      Satanand Burla <satananda.burla@caviumnetworks.com>
3217 M:      Felix Manlunas <felix.manlunas@caviumnetworks.com>
3218 M:      Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3219 L:      netdev@vger.kernel.org
3220 W:      http://www.cavium.com
3221 S:      Supported
3222 F:      drivers/net/ethernet/cavium/liquidio/
3223
3224 CAVIUM MMC DRIVER
3225 M:      Jan Glauber <jglauber@cavium.com>
3226 M:      David Daney <david.daney@cavium.com>
3227 M:      Steven J. Hill <Steven.Hill@cavium.com>
3228 W:      http://www.cavium.com
3229 S:      Supported
3230 F:      drivers/mmc/host/cavium*
3231
3232 CAVIUM OCTEON-TX CRYPTO DRIVER
3233 M:      George Cherian <george.cherian@cavium.com>
3234 L:      linux-crypto@vger.kernel.org
3235 W:      http://www.cavium.com
3236 S:      Supported
3237 F:      drivers/crypto/cavium/cpt/
3238
3239 CAVIUM THUNDERX2 ARM64 SOC
3240 M:      Robert Richter <rrichter@cavium.com>
3241 M:      Jayachandran C <jnair@caviumnetworks.com>
3242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3243 S:      Maintained
3244 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3245 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3246
3247 CC2520 IEEE-802.15.4 RADIO DRIVER
3248 M:      Varka Bhadram <varkabhadram@gmail.com>
3249 L:      linux-wpan@vger.kernel.org
3250 S:      Maintained
3251 F:      drivers/net/ieee802154/cc2520.c
3252 F:      include/linux/spi/cc2520.h
3253 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3254
3255 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3256 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3257 L:      linux-crypto@vger.kernel.org
3258 L:      driverdev-devel@linuxdriverproject.org
3259 S:      Supported
3260 F:      drivers/staging/ccree/
3261 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3262
3263 CEC FRAMEWORK
3264 M:      Hans Verkuil <hans.verkuil@cisco.com>
3265 L:      linux-media@vger.kernel.org
3266 T:      git git://linuxtv.org/media_tree.git
3267 W:      http://linuxtv.org
3268 S:      Supported
3269 F:      Documentation/media/kapi/cec-core.rst
3270 F:      Documentation/media/uapi/cec
3271 F:      drivers/media/cec/
3272 F:      drivers/media/rc/keymaps/rc-cec.c
3273 F:      include/media/cec.h
3274 F:      include/media/cec-notifier.h
3275 F:      include/uapi/linux/cec.h
3276 F:      include/uapi/linux/cec-funcs.h
3277 F:      Documentation/devicetree/bindings/media/cec.txt
3278
3279 CEC GPIO DRIVER
3280 M:      Hans Verkuil <hans.verkuil@cisco.com>
3281 L:      linux-media@vger.kernel.org
3282 T:      git git://linuxtv.org/media_tree.git
3283 W:      http://linuxtv.org
3284 S:      Supported
3285 F:      drivers/media/platform/cec-gpio/
3286 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3287
3288 CELL BROADBAND ENGINE ARCHITECTURE
3289 M:      Arnd Bergmann <arnd@arndb.de>
3290 L:      linuxppc-dev@lists.ozlabs.org
3291 W:      http://www.ibm.com/developerworks/power/cell/
3292 S:      Supported
3293 F:      arch/powerpc/include/asm/cell*.h
3294 F:      arch/powerpc/include/asm/spu*.h
3295 F:      arch/powerpc/include/uapi/asm/spu*.h
3296 F:      arch/powerpc/oprofile/*cell*
3297 F:      arch/powerpc/platforms/cell/
3298
3299 CEPH COMMON CODE (LIBCEPH)
3300 M:      Ilya Dryomov <idryomov@gmail.com>
3301 M:      "Yan, Zheng" <zyan@redhat.com>
3302 M:      Sage Weil <sage@redhat.com>
3303 L:      ceph-devel@vger.kernel.org
3304 W:      http://ceph.com/
3305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3306 T:      git git://github.com/ceph/ceph-client.git
3307 S:      Supported
3308 F:      net/ceph/
3309 F:      include/linux/ceph/
3310 F:      include/linux/crush/
3311
3312 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3313 M:      "Yan, Zheng" <zyan@redhat.com>
3314 M:      Sage Weil <sage@redhat.com>
3315 M:      Ilya Dryomov <idryomov@gmail.com>
3316 L:      ceph-devel@vger.kernel.org
3317 W:      http://ceph.com/
3318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3319 T:      git git://github.com/ceph/ceph-client.git
3320 S:      Supported
3321 F:      Documentation/filesystems/ceph.txt
3322 F:      fs/ceph/
3323
3324 CERTIFICATE HANDLING:
3325 M:      David Howells <dhowells@redhat.com>
3326 M:      David Woodhouse <dwmw2@infradead.org>
3327 L:      keyrings@vger.kernel.org
3328 S:      Maintained
3329 F:      Documentation/module-signing.txt
3330 F:      certs/
3331 F:      scripts/sign-file.c
3332 F:      scripts/extract-cert.c
3333
3334 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3335 L:      linux-usb@vger.kernel.org
3336 S:      Orphan
3337 F:      Documentation/usb/WUSB-Design-overview.txt
3338 F:      Documentation/usb/wusb-cbaf
3339 F:      drivers/usb/host/hwa-hc.c
3340 F:      drivers/usb/host/whci/
3341 F:      drivers/usb/wusbcore/
3342 F:      include/linux/usb/wusb*
3343
3344 CFAG12864B LCD DRIVER
3345 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3346 W:      http://miguelojeda.es/auxdisplay.htm
3347 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3348 S:      Maintained
3349 F:      drivers/auxdisplay/cfag12864b.c
3350 F:      include/linux/cfag12864b.h
3351
3352 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3353 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3354 W:      http://miguelojeda.es/auxdisplay.htm
3355 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3356 S:      Maintained
3357 F:      drivers/auxdisplay/cfag12864bfb.c
3358 F:      include/linux/cfag12864b.h
3359
3360 802.11 (including CFG80211/NL80211)
3361 M:      Johannes Berg <johannes@sipsolutions.net>
3362 L:      linux-wireless@vger.kernel.org
3363 W:      http://wireless.kernel.org/
3364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3366 S:      Maintained
3367 F:      net/wireless/
3368 F:      include/uapi/linux/nl80211.h
3369 F:      include/linux/ieee80211.h
3370 F:      include/net/wext.h
3371 F:      include/net/cfg80211.h
3372 F:      include/net/iw_handler.h
3373 F:      include/net/ieee80211_radiotap.h
3374 F:      Documentation/driver-api/80211/cfg80211.rst
3375 F:      Documentation/networking/regulatory.txt
3376
3377 CHAR and MISC DRIVERS
3378 M:      Arnd Bergmann <arnd@arndb.de>
3379 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3381 S:      Supported
3382 F:      drivers/char/
3383 F:      drivers/misc/
3384 F:      include/linux/miscdevice.h
3385
3386 CHECKPATCH
3387 M:      Andy Whitcroft <apw@canonical.com>
3388 M:      Joe Perches <joe@perches.com>
3389 S:      Maintained
3390 F:      scripts/checkpatch.pl
3391
3392 CHINESE DOCUMENTATION
3393 M:      Harry Wei <harryxiyou@gmail.com>
3394 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3395 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3396 S:      Maintained
3397 F:      Documentation/translations/zh_CN/
3398
3399 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3400 M:      Peter Chen <Peter.Chen@nxp.com>
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3402 L:      linux-usb@vger.kernel.org
3403 S:      Maintained
3404 F:      drivers/usb/chipidea/
3405
3406 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3407 M:      Hans de Goede <hdegoede@redhat.com>
3408 L:      linux-input@vger.kernel.org
3409 S:      Maintained
3410 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3411 F:      drivers/input/touchscreen/chipone_icn8318.c
3412
3413 CHROME HARDWARE PLATFORM SUPPORT
3414 M:      Benson Leung <bleung@chromium.org>
3415 M:      Olof Johansson <olof@lixom.net>
3416 S:      Maintained
3417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3418 F:      drivers/platform/chrome/
3419
3420 CIRRUS LOGIC AUDIO CODEC DRIVERS
3421 M:      Brian Austin <brian.austin@cirrus.com>
3422 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3424 S:      Maintained
3425 F:      sound/soc/codecs/cs*
3426
3427 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3428 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3429 L:      netdev@vger.kernel.org
3430 S:      Maintained
3431 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3432
3433 CISCO FCOE HBA DRIVER
3434 M:      Satish Kharat <satishkh@cisco.com>
3435 M:      Sesidhar Baddela <sebaddel@cisco.com>
3436 M:      Karan Tilak Kumar <kartilak@cisco.com>
3437 L:      linux-scsi@vger.kernel.org
3438 S:      Supported
3439 F:      drivers/scsi/fnic/
3440
3441 CISCO SCSI HBA DRIVER
3442 M:      Karan Tilak Kumar <kartilak@cisco.com>
3443 M:      Sesidhar Baddela <sebaddel@cisco.com>
3444 L:      linux-scsi@vger.kernel.org
3445 S:      Supported
3446 F:      drivers/scsi/snic/
3447
3448 CISCO VIC ETHERNET NIC DRIVER
3449 M:      Christian Benvenuti <benve@cisco.com>
3450 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3451 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3452 S:      Supported
3453 F:      drivers/net/ethernet/cisco/enic/
3454
3455 CISCO VIC LOW LATENCY NIC DRIVER
3456 M:      Christian Benvenuti <benve@cisco.com>
3457 M:      Dave Goodell <dgoodell@cisco.com>
3458 S:      Supported
3459 F:      drivers/infiniband/hw/usnic/
3460
3461 CLEANCACHE API
3462 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3463 L:      linux-kernel@vger.kernel.org
3464 S:      Maintained
3465 F:      mm/cleancache.c
3466 F:      include/linux/cleancache.h
3467
3468 CLK API
3469 M:      Russell King <linux@armlinux.org.uk>
3470 L:      linux-clk@vger.kernel.org
3471 S:      Maintained
3472 F:      include/linux/clk.h
3473
3474 CLOCKSOURCE, CLOCKEVENT DRIVERS
3475 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3476 M:      Thomas Gleixner <tglx@linutronix.de>
3477 L:      linux-kernel@vger.kernel.org
3478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3479 S:      Supported
3480 F:      drivers/clocksource/
3481 F:      Documentation/devicetree/bindings/timer/
3482
3483 CMPC ACPI DRIVER
3484 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3485 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3486 L:      platform-driver-x86@vger.kernel.org
3487 S:      Supported
3488 F:      drivers/platform/x86/classmate-laptop.c
3489
3490 COBALT MEDIA DRIVER
3491 M:      Hans Verkuil <hans.verkuil@cisco.com>
3492 L:      linux-media@vger.kernel.org
3493 T:      git git://linuxtv.org/media_tree.git
3494 W:      https://linuxtv.org
3495 S:      Supported
3496 F:      drivers/media/pci/cobalt/
3497
3498 COCCINELLE/Semantic Patches (SmPL)
3499 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3500 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3501 M:      Nicolas Palix <nicolas.palix@imag.fr>
3502 M:      Michal Marek <michal.lkml@markovi.net>
3503 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3505 W:      http://coccinelle.lip6.fr/
3506 S:      Supported
3507 F:      Documentation/dev-tools/coccinelle.rst
3508 F:      scripts/coccinelle/
3509 F:      scripts/coccicheck
3510
3511 CODA FILE SYSTEM
3512 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3513 M:      coda@cs.cmu.edu
3514 L:      codalist@coda.cs.cmu.edu
3515 W:      http://www.coda.cs.cmu.edu/
3516 S:      Maintained
3517 F:      Documentation/filesystems/coda.txt
3518 F:      fs/coda/
3519 F:      include/linux/coda*.h
3520 F:      include/uapi/linux/coda*.h
3521
3522 CODA V4L2 MEM2MEM DRIVER
3523 M:      Philipp Zabel <p.zabel@pengutronix.de>
3524 L:      linux-media@vger.kernel.org
3525 S:      Maintained
3526 F:      Documentation/devicetree/bindings/media/coda.txt
3527 F:      drivers/media/platform/coda/
3528
3529 COMMON CLK FRAMEWORK
3530 M:      Michael Turquette <mturquette@baylibre.com>
3531 M:      Stephen Boyd <sboyd@kernel.org>
3532 L:      linux-clk@vger.kernel.org
3533 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3535 S:      Maintained
3536 F:      Documentation/devicetree/bindings/clock/
3537 F:      drivers/clk/
3538 X:      drivers/clk/clkdev.c
3539 F:      include/linux/clk-pr*
3540 F:      include/linux/clk/
3541
3542 COMMON INTERNET FILE SYSTEM (CIFS)
3543 M:      Steve French <sfrench@samba.org>
3544 L:      linux-cifs@vger.kernel.org
3545 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3546 W:      http://linux-cifs.samba.org/
3547 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3548 S:      Supported
3549 F:      Documentation/filesystems/cifs/
3550 F:      fs/cifs/
3551
3552 COMPACTPCI HOTPLUG CORE
3553 M:      Scott Murray <scott@spiteful.org>
3554 L:      linux-pci@vger.kernel.org
3555 S:      Maintained
3556 F:      drivers/pci/hotplug/cpci_hotplug*
3557
3558 COMPACTPCI HOTPLUG GENERIC DRIVER
3559 M:      Scott Murray <scott@spiteful.org>
3560 L:      linux-pci@vger.kernel.org
3561 S:      Maintained
3562 F:      drivers/pci/hotplug/cpcihp_generic.c
3563
3564 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3565 M:      Scott Murray <scott@spiteful.org>
3566 L:      linux-pci@vger.kernel.org
3567 S:      Maintained
3568 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3569
3570 COMPAL LAPTOP SUPPORT
3571 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3572 L:      platform-driver-x86@vger.kernel.org
3573 S:      Maintained
3574 F:      drivers/platform/x86/compal-laptop.c
3575
3576 CONEXANT ACCESSRUNNER USB DRIVER
3577 L:      accessrunner-general@lists.sourceforge.net
3578 W:      http://accessrunner.sourceforge.net/
3579 S:      Orphan
3580 F:      drivers/usb/atm/cxacru.c
3581
3582 CONFIGFS
3583 M:      Joel Becker <jlbec@evilplan.org>
3584 M:      Christoph Hellwig <hch@lst.de>
3585 T:      git git://git.infradead.org/users/hch/configfs.git
3586 S:      Supported
3587 F:      fs/configfs/
3588 F:      include/linux/configfs.h
3589
3590 CONNECTOR
3591 M:      Evgeniy Polyakov <zbr@ioremap.net>
3592 L:      netdev@vger.kernel.org
3593 S:      Maintained
3594 F:      drivers/connector/
3595
3596 CONTROL GROUP (CGROUP)
3597 M:      Tejun Heo <tj@kernel.org>
3598 M:      Li Zefan <lizefan@huawei.com>
3599 M:      Johannes Weiner <hannes@cmpxchg.org>
3600 L:      cgroups@vger.kernel.org
3601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3602 S:      Maintained
3603 F:      Documentation/cgroup*
3604 F:      include/linux/cgroup*
3605 F:      kernel/cgroup*
3606
3607 CONTROL GROUP - CPUSET
3608 M:      Li Zefan <lizefan@huawei.com>
3609 L:      cgroups@vger.kernel.org
3610 W:      http://www.bullopensource.org/cpuset/
3611 W:      http://oss.sgi.com/projects/cpusets/
3612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3613 S:      Maintained
3614 F:      Documentation/cgroup-v1/cpusets.txt
3615 F:      include/linux/cpuset.h
3616 F:      kernel/cgroup/cpuset.c
3617
3618 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3619 M:      Johannes Weiner <hannes@cmpxchg.org>
3620 M:      Michal Hocko <mhocko@kernel.org>
3621 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3622 L:      cgroups@vger.kernel.org
3623 L:      linux-mm@kvack.org
3624 S:      Maintained
3625 F:      mm/memcontrol.c
3626 F:      mm/swap_cgroup.c
3627
3628 CORETEMP HARDWARE MONITORING DRIVER
3629 M:      Fenghua Yu <fenghua.yu@intel.com>
3630 L:      linux-hwmon@vger.kernel.org
3631 S:      Maintained
3632 F:      Documentation/hwmon/coretemp
3633 F:      drivers/hwmon/coretemp.c
3634
3635 COSA/SRP SYNC SERIAL DRIVER
3636 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3637 W:      http://www.fi.muni.cz/~kas/cosa/
3638 S:      Maintained
3639 F:      drivers/net/wan/cosa*
3640
3641 CPMAC ETHERNET DRIVER
3642 M:      Florian Fainelli <f.fainelli@gmail.com>
3643 L:      netdev@vger.kernel.org
3644 S:      Maintained
3645 F:      drivers/net/ethernet/ti/cpmac.c
3646
3647 CPU FREQUENCY DRIVERS
3648 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3649 M:      Viresh Kumar <viresh.kumar@linaro.org>
3650 L:      linux-pm@vger.kernel.org
3651 S:      Maintained
3652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3653 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3654 B:      https://bugzilla.kernel.org
3655 F:      Documentation/cpu-freq/
3656 F:      Documentation/devicetree/bindings/cpufreq/
3657 F:      drivers/cpufreq/
3658 F:      include/linux/cpufreq.h
3659 F:      tools/testing/selftests/cpufreq/
3660
3661 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3662 M:      Viresh Kumar <viresh.kumar@linaro.org>
3663 M:      Sudeep Holla <sudeep.holla@arm.com>
3664 L:      linux-pm@vger.kernel.org
3665 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3666 S:      Maintained
3667 F:      drivers/cpufreq/arm_big_little.h
3668 F:      drivers/cpufreq/arm_big_little.c
3669 F:      drivers/cpufreq/arm_big_little_dt.c
3670
3671 CPU POWER MONITORING SUBSYSTEM
3672 M:      Thomas Renninger <trenn@suse.com>
3673 M:      Shuah Khan <shuahkh@osg.samsung.com>
3674 M:      Shuah Khan <shuah@kernel.org>
3675 L:      linux-pm@vger.kernel.org
3676 S:      Maintained
3677 F:      tools/power/cpupower/
3678
3679 CPUID/MSR DRIVER
3680 M:      "H. Peter Anvin" <hpa@zytor.com>
3681 S:      Maintained
3682 F:      arch/x86/kernel/cpuid.c
3683 F:      arch/x86/kernel/msr.c
3684
3685 CPUIDLE DRIVER - ARM BIG LITTLE
3686 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3687 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3688 L:      linux-pm@vger.kernel.org
3689 L:      linux-arm-kernel@lists.infradead.org
3690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3691 S:      Maintained
3692 F:      drivers/cpuidle/cpuidle-big_little.c
3693
3694 CPUIDLE DRIVER - ARM EXYNOS
3695 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3696 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3697 M:      Kukjin Kim <kgene@kernel.org>
3698 L:      linux-pm@vger.kernel.org
3699 L:      linux-samsung-soc@vger.kernel.org
3700 S:      Supported
3701 F:      drivers/cpuidle/cpuidle-exynos.c
3702 F:      arch/arm/mach-exynos/pm.c
3703
3704 CPUIDLE DRIVERS
3705 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3706 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3707 L:      linux-pm@vger.kernel.org
3708 S:      Maintained
3709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3710 B:      https://bugzilla.kernel.org
3711 F:      drivers/cpuidle/*
3712 F:      include/linux/cpuidle.h
3713
3714 CRAMFS FILESYSTEM
3715 M:      Nicolas Pitre <nico@linaro.org>
3716 S:      Maintained
3717 F:      Documentation/filesystems/cramfs.txt
3718 F:      fs/cramfs/
3719
3720 CRYPTO API
3721 M:      Herbert Xu <herbert@gondor.apana.org.au>
3722 M:      "David S. Miller" <davem@davemloft.net>
3723 L:      linux-crypto@vger.kernel.org
3724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3726 S:      Maintained
3727 F:      Documentation/crypto/
3728 F:      Documentation/devicetree/bindings/crypto/
3729 F:      arch/*/crypto/
3730 F:      crypto/
3731 F:      drivers/crypto/
3732 F:      include/crypto/
3733 F:      include/linux/crypto*
3734
3735 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3736 M:      Neil Horman <nhorman@tuxdriver.com>
3737 L:      linux-crypto@vger.kernel.org
3738 S:      Maintained
3739 F:      crypto/ansi_cprng.c
3740 F:      crypto/rng.c
3741
3742 CS3308 MEDIA DRIVER
3743 M:      Hans Verkuil <hverkuil@xs4all.nl>
3744 L:      linux-media@vger.kernel.org
3745 T:      git git://linuxtv.org/media_tree.git
3746 W:      http://linuxtv.org
3747 S:      Odd Fixes
3748 F:      drivers/media/i2c/cs3308.c
3749 F:      drivers/media/i2c/cs3308.h
3750
3751 CS5535 Audio ALSA driver
3752 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3753 S:      Maintained
3754 F:      sound/pci/cs5535audio/
3755
3756 CW1200 WLAN driver
3757 M:      Solomon Peachy <pizza@shaftnet.org>
3758 S:      Maintained
3759 F:      drivers/net/wireless/st/cw1200/
3760
3761 CX18 VIDEO4LINUX DRIVER
3762 M:      Andy Walls <awalls@md.metrocast.net>
3763 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3764 L:      linux-media@vger.kernel.org
3765 T:      git git://linuxtv.org/media_tree.git
3766 W:      https://linuxtv.org
3767 W:      http://www.ivtvdriver.org/index.php/Cx18
3768 S:      Maintained
3769 F:      Documentation/media/v4l-drivers/cx18*
3770 F:      drivers/media/pci/cx18/
3771 F:      include/uapi/linux/ivtv*
3772
3773 CX2341X MPEG ENCODER HELPER MODULE
3774 M:      Hans Verkuil <hverkuil@xs4all.nl>
3775 L:      linux-media@vger.kernel.org
3776 T:      git git://linuxtv.org/media_tree.git
3777 W:      https://linuxtv.org
3778 S:      Maintained
3779 F:      drivers/media/common/cx2341x*
3780 F:      include/media/cx2341x*
3781
3782 CX24120 MEDIA DRIVER
3783 M:      Jemma Denson <jdenson@gmail.com>
3784 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3785 L:      linux-media@vger.kernel.org
3786 W:      https://linuxtv.org
3787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3788 S:      Maintained
3789 F:      drivers/media/dvb-frontends/cx24120*
3790
3791 CX88 VIDEO4LINUX DRIVER
3792 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3793 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3794 L:      linux-media@vger.kernel.org
3795 W:      https://linuxtv.org
3796 T:      git git://linuxtv.org/media_tree.git
3797 S:      Odd fixes
3798 F:      Documentation/media/v4l-drivers/cx88*
3799 F:      drivers/media/pci/cx88/
3800
3801 CXD2820R MEDIA DRIVER
3802 M:      Antti Palosaari <crope@iki.fi>
3803 L:      linux-media@vger.kernel.org
3804 W:      https://linuxtv.org
3805 W:      http://palosaari.fi/linux/
3806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3807 T:      git git://linuxtv.org/anttip/media_tree.git
3808 S:      Maintained
3809 F:      drivers/media/dvb-frontends/cxd2820r*
3810
3811 CXGB3 ETHERNET DRIVER (CXGB3)
3812 M:      Santosh Raspatur <santosh@chelsio.com>
3813 L:      netdev@vger.kernel.org
3814 W:      http://www.chelsio.com
3815 S:      Supported
3816 F:      drivers/net/ethernet/chelsio/cxgb3/
3817
3818 CXGB3 ISCSI DRIVER (CXGB3I)
3819 M:      Karen Xie <kxie@chelsio.com>
3820 L:      linux-scsi@vger.kernel.org
3821 W:      http://www.chelsio.com
3822 S:      Supported
3823 F:      drivers/scsi/cxgbi/cxgb3i
3824
3825 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3826 M:      Steve Wise <swise@chelsio.com>
3827 L:      linux-rdma@vger.kernel.org
3828 W:      http://www.openfabrics.org
3829 S:      Supported
3830 F:      drivers/infiniband/hw/cxgb3/
3831 F:      include/uapi/rdma/cxgb3-abi.h
3832
3833 CXGB4 CRYPTO DRIVER (chcr)
3834 M:      Harsh Jain <harsh@chelsio.com>
3835 L:      linux-crypto@vger.kernel.org
3836 W:      http://www.chelsio.com
3837 S:      Supported
3838 F:      drivers/crypto/chelsio
3839
3840 CXGB4 ETHERNET DRIVER (CXGB4)
3841 M:      Ganesh Goudar <ganeshgr@chelsio.com>
3842 L:      netdev@vger.kernel.org
3843 W:      http://www.chelsio.com
3844 S:      Supported
3845 F:      drivers/net/ethernet/chelsio/cxgb4/
3846
3847 CXGB4 ISCSI DRIVER (CXGB4I)
3848 M:      Karen Xie <kxie@chelsio.com>
3849 L:      linux-scsi@vger.kernel.org
3850 W:      http://www.chelsio.com
3851 S:      Supported
3852 F:      drivers/scsi/cxgbi/cxgb4i
3853
3854 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3855 M:      Steve Wise <swise@chelsio.com>
3856 L:      linux-rdma@vger.kernel.org
3857 W:      http://www.openfabrics.org
3858 S:      Supported
3859 F:      drivers/infiniband/hw/cxgb4/
3860 F:      include/uapi/rdma/cxgb4-abi.h
3861
3862 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3863 M:      Casey Leedom <leedom@chelsio.com>
3864 L:      netdev@vger.kernel.org
3865 W:      http://www.chelsio.com
3866 S:      Supported
3867 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3868
3869 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3870 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3871 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3872 L:      linuxppc-dev@lists.ozlabs.org
3873 S:      Supported
3874 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3875 F:      drivers/misc/cxl/
3876 F:      include/misc/cxl*
3877 F:      include/uapi/misc/cxl.h
3878 F:      Documentation/powerpc/cxl.txt
3879 F:      Documentation/ABI/testing/sysfs-class-cxl
3880
3881 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3882 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3883 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3884 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3885 L:      linux-scsi@vger.kernel.org
3886 S:      Supported
3887 F:      drivers/scsi/cxlflash/
3888 F:      include/uapi/scsi/cxlflash_ioctls.h
3889 F:      Documentation/powerpc/cxlflash.txt
3890
3891 CYBERPRO FB DRIVER
3892 M:      Russell King <linux@armlinux.org.uk>
3893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3894 W:      http://www.armlinux.org.uk/
3895 S:      Maintained
3896 F:      drivers/video/fbdev/cyber2000fb.*
3897
3898 CYCLADES ASYNC MUX DRIVER
3899 W:      http://www.cyclades.com/
3900 S:      Orphan
3901 F:      drivers/tty/cyclades.c
3902 F:      include/linux/cyclades.h
3903 F:      include/uapi/linux/cyclades.h
3904
3905 CYCLADES PC300 DRIVER
3906 W:      http://www.cyclades.com/
3907 S:      Orphan
3908 F:      drivers/net/wan/pc300*
3909
3910 CYPRESS_FIRMWARE MEDIA DRIVER
3911 M:      Antti Palosaari <crope@iki.fi>
3912 L:      linux-media@vger.kernel.org
3913 W:      https://linuxtv.org
3914 W:      http://palosaari.fi/linux/
3915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3916 T:      git git://linuxtv.org/anttip/media_tree.git
3917 S:      Maintained
3918 F:      drivers/media/common/cypress_firmware*
3919
3920 CYTTSP TOUCHSCREEN DRIVER
3921 M:      Ferruh Yigit <fery@cypress.com>
3922 L:      linux-input@vger.kernel.org
3923 S:      Supported
3924 F:      drivers/input/touchscreen/cyttsp*
3925 F:      include/linux/input/cyttsp.h
3926
3927 D-LINK DIR-685 TOUCHKEYS DRIVER
3928 M:      Linus Walleij <linus.walleij@linaro.org>
3929 L:      linux-input@vger.kernel.org
3930 S:      Supported
3931 F:      drivers/input/dlink-dir685-touchkeys.c
3932
3933 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3934 M:      Joshua Kinard <kumba@gentoo.org>
3935 S:      Maintained
3936 F:      drivers/rtc/rtc-ds1685.c
3937 F:      include/linux/rtc/ds1685.h
3938
3939 DAMA SLAVE for AX.25
3940 M:      Joerg Reuter <jreuter@yaina.de>
3941 W:      http://yaina.de/jreuter/
3942 W:      http://www.qsl.net/dl1bke/
3943 L:      linux-hams@vger.kernel.org
3944 S:      Maintained
3945 F:      net/ax25/af_ax25.c
3946 F:      net/ax25/ax25_dev.c
3947 F:      net/ax25/ax25_ds_*
3948 F:      net/ax25/ax25_in.c
3949 F:      net/ax25/ax25_out.c
3950 F:      net/ax25/ax25_timer.c
3951 F:      net/ax25/sysctl_net_ax25.c
3952
3953 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3954 L:      netdev@vger.kernel.org
3955 S:      Orphan
3956 F:      Documentation/networking/dmfe.txt
3957 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3958
3959 DC390/AM53C974 SCSI driver
3960 M:      Hannes Reinecke <hare@suse.com>
3961 L:      linux-scsi@vger.kernel.org
3962 S:      Maintained
3963 F:      drivers/scsi/am53c974.c
3964
3965 DC395x SCSI driver
3966 M:      Oliver Neukum <oliver@neukum.org>
3967 M:      Ali Akcaagac <aliakc@web.de>
3968 M:      Jamie Lenehan <lenehan@twibble.org>
3969 L:      dc395x@twibble.org
3970 W:      http://twibble.org/dist/dc395x/
3971 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3972 S:      Maintained
3973 F:      Documentation/scsi/dc395x.txt
3974 F:      drivers/scsi/dc395x.*
3975
3976 DCCP PROTOCOL
3977 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3978 L:      dccp@vger.kernel.org
3979 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3980 S:      Maintained
3981 F:      include/linux/dccp.h
3982 F:      include/uapi/linux/dccp.h
3983 F:      include/linux/tfrc.h
3984 F:      net/dccp/
3985
3986 DECnet NETWORK LAYER
3987 W:      http://linux-decnet.sourceforge.net
3988 L:      linux-decnet-user@lists.sourceforge.net
3989 S:      Orphan
3990 F:      Documentation/networking/decnet.txt
3991 F:      net/decnet/
3992
3993 DECSTATION PLATFORM SUPPORT
3994 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3995 L:      linux-mips@linux-mips.org
3996 W:      http://www.linux-mips.org/wiki/DECstation
3997 S:      Maintained
3998 F:      arch/mips/dec/
3999 F:      arch/mips/include/asm/dec/
4000 F:      arch/mips/include/asm/mach-dec/
4001
4002 DEFXX FDDI NETWORK DRIVER
4003 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4004 S:      Maintained
4005 F:      drivers/net/fddi/defxx.*
4006
4007 DELL SMBIOS DRIVER
4008 M:      Pali Rohár <pali.rohar@gmail.com>
4009 M:      Mario Limonciello <mario.limonciello@dell.com>
4010 L:      platform-driver-x86@vger.kernel.org
4011 S:      Maintained
4012 F:      drivers/platform/x86/dell-smbios.*
4013
4014 DELL SMBIOS SMM DRIVER
4015 M:      Mario Limonciello <mario.limonciello@dell.com>
4016 L:      platform-driver-x86@vger.kernel.org
4017 S:      Maintained
4018 F:      drivers/platform/x86/dell-smbios-smm.c
4019
4020 DELL SMBIOS WMI DRIVER
4021 M:      Mario Limonciello <mario.limonciello@dell.com>
4022 L:      platform-driver-x86@vger.kernel.org
4023 S:      Maintained
4024 F:      drivers/platform/x86/dell-smbios-wmi.c
4025 F:      tools/wmi/dell-smbios-example.c
4026
4027 DELL LAPTOP DRIVER
4028 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4029 M:      Pali Rohár <pali.rohar@gmail.com>
4030 L:      platform-driver-x86@vger.kernel.org
4031 S:      Maintained
4032 F:      drivers/platform/x86/dell-laptop.c
4033
4034 DELL LAPTOP FREEFALL DRIVER
4035 M:      Pali Rohár <pali.rohar@gmail.com>
4036 S:      Maintained
4037 F:      drivers/platform/x86/dell-smo8800.c
4038
4039 DELL LAPTOP RBTN DRIVER
4040 M:      Pali Rohár <pali.rohar@gmail.com>
4041 S:      Maintained
4042 F:      drivers/platform/x86/dell-rbtn.*
4043
4044 DELL LAPTOP SMM DRIVER
4045 M:      Pali Rohár <pali.rohar@gmail.com>
4046 S:      Maintained
4047 F:      drivers/hwmon/dell-smm-hwmon.c
4048 F:      include/uapi/linux/i8k.h
4049
4050 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4051 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
4052 S:      Maintained
4053 F:      Documentation/dcdbas.txt
4054 F:      drivers/firmware/dcdbas.*
4055
4056 DELL WMI NOTIFICATIONS DRIVER
4057 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4058 M:      Pali Rohár <pali.rohar@gmail.com>
4059 S:      Maintained
4060 F:      drivers/platform/x86/dell-wmi.c
4061
4062 DELL WMI DESCRIPTOR DRIVER
4063 M:      Mario Limonciello <mario.limonciello@dell.com>
4064 S:      Maintained
4065 F:      drivers/platform/x86/dell-wmi-descriptor.c
4066
4067 DELTA ST MEDIA DRIVER
4068 M:      Hugues Fruchet <hugues.fruchet@st.com>
4069 L:      linux-media@vger.kernel.org
4070 T:      git git://linuxtv.org/media_tree.git
4071 W:      https://linuxtv.org
4072 S:      Supported
4073 F:      drivers/media/platform/sti/delta
4074
4075 DENALI NAND DRIVER
4076 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4077 L:      linux-mtd@lists.infradead.org
4078 S:      Supported
4079 F:      drivers/mtd/nand/denali*
4080
4081 DESIGNWARE USB2 DRD IP DRIVER
4082 M:      John Youn <johnyoun@synopsys.com>
4083 L:      linux-usb@vger.kernel.org
4084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4085 S:      Maintained
4086 F:      drivers/usb/dwc2/
4087
4088 DESIGNWARE USB3 DRD IP DRIVER
4089 M:      Felipe Balbi <balbi@kernel.org>
4090 L:      linux-usb@vger.kernel.org
4091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4092 S:      Maintained
4093 F:      drivers/usb/dwc3/
4094
4095 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4096 M:      Andreas Klinger <ak@it-klinger.de>
4097 L:      linux-iio@vger.kernel.org
4098 S:      Maintained
4099 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4100 F:      drivers/iio/proximity/srf*.c
4101
4102 DEVICE COREDUMP (DEV_COREDUMP)
4103 M:      Johannes Berg <johannes@sipsolutions.net>
4104 L:      linux-kernel@vger.kernel.org
4105 S:      Maintained
4106 F:      drivers/base/devcoredump.c
4107 F:      include/linux/devcoredump.h
4108
4109 DEVICE FREQUENCY (DEVFREQ)
4110 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4111 M:      Kyungmin Park <kyungmin.park@samsung.com>
4112 R:      Chanwoo Choi <cw00.choi@samsung.com>
4113 L:      linux-pm@vger.kernel.org
4114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4115 S:      Maintained
4116 F:      drivers/devfreq/
4117 F:      include/linux/devfreq.h
4118 F:      Documentation/devicetree/bindings/devfreq/
4119
4120 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4121 M:      Chanwoo Choi <cw00.choi@samsung.com>
4122 L:      linux-pm@vger.kernel.org
4123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4124 S:      Supported
4125 F:      drivers/devfreq/event/
4126 F:      drivers/devfreq/devfreq-event.c
4127 F:      include/linux/devfreq-event.h
4128 F:      Documentation/devicetree/bindings/devfreq/event/
4129
4130 DEVICE NUMBER REGISTRY
4131 M:      Torben Mathiasen <device@lanana.org>
4132 W:      http://lanana.org/docs/device-list/index.html
4133 S:      Maintained
4134
4135 DEVICE-MAPPER  (LVM)
4136 M:      Alasdair Kergon <agk@redhat.com>
4137 M:      Mike Snitzer <snitzer@redhat.com>
4138 M:      dm-devel@redhat.com
4139 L:      dm-devel@redhat.com
4140 W:      http://sources.redhat.com/dm
4141 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4143 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4144 S:      Maintained
4145 F:      Documentation/device-mapper/
4146 F:      drivers/md/Makefile
4147 F:      drivers/md/Kconfig
4148 F:      drivers/md/dm*
4149 F:      drivers/md/persistent-data/
4150 F:      include/linux/device-mapper.h
4151 F:      include/linux/dm-*.h
4152 F:      include/uapi/linux/dm-*.h
4153
4154 DEVLINK
4155 M:      Jiri Pirko <jiri@mellanox.com>
4156 L:      netdev@vger.kernel.org
4157 S:      Supported
4158 F:      net/core/devlink.c
4159 F:      include/net/devlink.h
4160 F:      include/uapi/linux/devlink.h
4161
4162 DIALOG SEMICONDUCTOR DRIVERS
4163 M:      Support Opensource <support.opensource@diasemi.com>
4164 W:      http://www.dialog-semiconductor.com/products
4165 S:      Supported
4166 F:      Documentation/hwmon/da90??
4167 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4168 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4169 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4170 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4171 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4172 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4173 F:      drivers/gpio/gpio-da90??.c
4174 F:      drivers/hwmon/da90??-hwmon.c
4175 F:      drivers/iio/adc/da91??-*.c
4176 F:      drivers/input/misc/da90??_onkey.c
4177 F:      drivers/input/touchscreen/da9052_tsi.c
4178 F:      drivers/leds/leds-da90??.c
4179 F:      drivers/mfd/da903x.c
4180 F:      drivers/mfd/da90??-*.c
4181 F:      drivers/mfd/da91??-*.c
4182 F:      drivers/power/supply/da9052-battery.c
4183 F:      drivers/power/supply/da91??-*.c
4184 F:      drivers/regulator/da903x.c
4185 F:      drivers/regulator/da9???-regulator.[ch]
4186 F:      drivers/thermal/da90??-thermal.c
4187 F:      drivers/rtc/rtc-da90??.c
4188 F:      drivers/video/backlight/da90??_bl.c
4189 F:      drivers/watchdog/da90??_wdt.c
4190 F:      include/linux/mfd/da903x.h
4191 F:      include/linux/mfd/da9052/
4192 F:      include/linux/mfd/da9055/
4193 F:      include/linux/mfd/da9062/
4194 F:      include/linux/mfd/da9063/
4195 F:      include/linux/mfd/da9150/
4196 F:      include/linux/regulator/da9211.h
4197 F:      include/sound/da[79]*.h
4198 F:      sound/soc/codecs/da[79]*.[ch]
4199
4200 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4201 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4202 L:      linux-gpio@vger.kernel.org
4203 S:      Maintained
4204 F:      drivers/gpio/gpio-gpio-mm.c
4205
4206 DIGI NEO AND CLASSIC PCI PRODUCTS
4207 M:      Lidza Louina <lidza.louina@gmail.com>
4208 M:      Mark Hounschell <markh@compro.net>
4209 L:      driverdev-devel@linuxdriverproject.org
4210 S:      Maintained
4211 F:      drivers/staging/dgnc/
4212
4213 DIOLAN U2C-12 I2C DRIVER
4214 M:      Guenter Roeck <linux@roeck-us.net>
4215 L:      linux-i2c@vger.kernel.org
4216 S:      Maintained
4217 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4218
4219 FILESYSTEM DIRECT ACCESS (DAX)
4220 M:      Matthew Wilcox <mawilcox@microsoft.com>
4221 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
4222 L:      linux-fsdevel@vger.kernel.org
4223 S:      Supported
4224 F:      fs/dax.c
4225 F:      include/linux/dax.h
4226 F:      include/trace/events/fs_dax.h
4227
4228 DEVICE DIRECT ACCESS (DAX)
4229 M:      Dan Williams <dan.j.williams@intel.com>
4230 L:      linux-nvdimm@lists.01.org
4231 S:      Supported
4232 F:      drivers/dax/
4233
4234 DIRECTORY NOTIFICATION (DNOTIFY)
4235 M:      Jan Kara <jack@suse.cz>
4236 R:      Amir Goldstein <amir73il@gmail.com>
4237 L:      linux-fsdevel@vger.kernel.org
4238 S:      Maintained
4239 F:      Documentation/filesystems/dnotify.txt
4240 F:      fs/notify/dnotify/
4241 F:      include/linux/dnotify.h
4242
4243 DISK GEOMETRY AND PARTITION HANDLING
4244 M:      Andries Brouwer <aeb@cwi.nl>
4245 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4246 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4247 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4248 S:      Maintained
4249
4250 DISKQUOTA
4251 M:      Jan Kara <jack@suse.com>
4252 S:      Maintained
4253 F:      Documentation/filesystems/quota.txt
4254 F:      fs/quota/
4255 F:      include/linux/quota*.h
4256 F:      include/uapi/linux/quota*.h
4257
4258 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4259 M:      Bernie Thompson <bernie@plugable.com>
4260 L:      linux-fbdev@vger.kernel.org
4261 S:      Maintained
4262 W:      http://plugable.com/category/projects/udlfb/
4263 F:      drivers/video/fbdev/udlfb.c
4264 F:      include/video/udlfb.h
4265 F:      Documentation/fb/udlfb.txt
4266
4267 DISTRIBUTED LOCK MANAGER (DLM)
4268 M:      Christine Caulfield <ccaulfie@redhat.com>
4269 M:      David Teigland <teigland@redhat.com>
4270 L:      cluster-devel@redhat.com
4271 W:      http://sources.redhat.com/cluster/
4272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4273 S:      Supported
4274 F:      fs/dlm/
4275
4276 DMA BUFFER SHARING FRAMEWORK
4277 M:      Sumit Semwal <sumit.semwal@linaro.org>
4278 S:      Maintained
4279 L:      linux-media@vger.kernel.org
4280 L:      dri-devel@lists.freedesktop.org
4281 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4282 F:      drivers/dma-buf/
4283 F:      include/linux/dma-buf*
4284 F:      include/linux/reservation.h
4285 F:      include/linux/*fence.h
4286 F:      Documentation/driver-api/dma-buf.rst
4287 T:      git git://anongit.freedesktop.org/drm/drm-misc
4288
4289 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4290 M:      Vinod Koul <vinod.koul@intel.com>
4291 L:      dmaengine@vger.kernel.org
4292 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4293 S:      Maintained
4294 F:      drivers/dma/
4295 F:      include/linux/dmaengine.h
4296 F:      Documentation/devicetree/bindings/dma/
4297 F:      Documentation/driver-api/dmaengine/
4298 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4299
4300 DMA MAPPING HELPERS
4301 M:      Christoph Hellwig <hch@lst.de>
4302 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4303 R:      Robin Murphy <robin.murphy@arm.com>
4304 L:      iommu@lists.linux-foundation.org
4305 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4306 W:      http://git.infradead.org/users/hch/dma-mapping.git
4307 S:      Supported
4308 F:      lib/dma-debug.c
4309 F:      lib/dma-direct.c
4310 F:      lib/dma-virt.c
4311 F:      drivers/base/dma-mapping.c
4312 F:      drivers/base/dma-coherent.c
4313 F:      include/asm-generic/dma-mapping.h
4314 F:      include/linux/dma-direct.h
4315 F:      include/linux/dma-mapping.h
4316
4317 DME1737 HARDWARE MONITOR DRIVER
4318 M:      Juerg Haefliger <juergh@gmail.com>
4319 L:      linux-hwmon@vger.kernel.org
4320 S:      Maintained
4321 F:      Documentation/hwmon/dme1737
4322 F:      drivers/hwmon/dme1737.c
4323
4324 DMI/SMBIOS SUPPORT
4325 M:      Jean Delvare <jdelvare@suse.com>
4326 S:      Maintained
4327 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4328 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4329 F:      drivers/firmware/dmi-id.c
4330 F:      drivers/firmware/dmi_scan.c
4331 F:      include/linux/dmi.h
4332
4333 DOCUMENTATION
4334 M:      Jonathan Corbet <corbet@lwn.net>
4335 L:      linux-doc@vger.kernel.org
4336 S:      Maintained
4337 F:      Documentation/
4338 F:      scripts/kernel-doc
4339 X:      Documentation/ABI/
4340 X:      Documentation/devicetree/
4341 X:      Documentation/acpi
4342 X:      Documentation/power
4343 X:      Documentation/spi
4344 X:      Documentation/media
4345 T:      git git://git.lwn.net/linux.git docs-next
4346
4347 DONGWOON DW9714 LENS VOICE COIL DRIVER
4348 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4349 L:      linux-media@vger.kernel.org
4350 T:      git git://linuxtv.org/media_tree.git
4351 S:      Maintained
4352 F:      drivers/media/i2c/dw9714.c
4353
4354 DOUBLETALK DRIVER
4355 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4356 L:      blinux-list@redhat.com
4357 S:      Maintained
4358 F:      drivers/char/dtlk.c
4359 F:      include/linux/dtlk.h
4360
4361 DPAA2 DATAPATH I/O (DPIO) DRIVER
4362 M:      Roy Pledge <Roy.Pledge@nxp.com>
4363 L:      linux-kernel@vger.kernel.org
4364 S:      Maintained
4365 F:      drivers/staging/fsl-mc/bus/dpio
4366
4367 DPAA2 ETHERNET DRIVER
4368 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4369 L:      linux-kernel@vger.kernel.org
4370 S:      Maintained
4371 F:      drivers/staging/fsl-dpaa2/ethernet
4372
4373 DPT_I2O SCSI RAID DRIVER
4374 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4375 L:      linux-scsi@vger.kernel.org
4376 W:      http://www.adaptec.com/
4377 S:      Maintained
4378 F:      drivers/scsi/dpt*
4379 F:      drivers/scsi/dpt/
4380
4381 DRBD DRIVER
4382 M:      Philipp Reisner <philipp.reisner@linbit.com>
4383 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4384 L:      drbd-dev@lists.linbit.com
4385 W:      http://www.drbd.org
4386 T:      git git://git.linbit.com/linux-drbd.git
4387 T:      git git://git.linbit.com/drbd-8.4.git
4388 S:      Supported
4389 F:      drivers/block/drbd/
4390 F:      lib/lru_cache.c
4391 F:      Documentation/blockdev/drbd/
4392
4393 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4394 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4396 S:      Supported
4397 F:      Documentation/kobject.txt
4398 F:      drivers/base/
4399 F:      fs/debugfs/
4400 F:      fs/sysfs/
4401 F:      include/linux/debugfs.h
4402 F:      include/linux/kobj*
4403 F:      lib/kobj*
4404
4405 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4406 M:      Kevin Hilman <khilman@kernel.org>
4407 M:      Nishanth Menon <nm@ti.com>
4408 S:      Maintained
4409 F:      drivers/power/avs/
4410 F:      include/linux/power/smartreflex.h
4411 L:      linux-pm@vger.kernel.org
4412
4413 DRM DRIVER FOR ARM PL111 CLCD
4414 M:      Eric Anholt <eric@anholt.net>
4415 T:      git git://anongit.freedesktop.org/drm/drm-misc
4416 S:      Supported
4417 F:      drivers/gpu/drm/pl111/
4418
4419 DRM DRIVER FOR ARM VERSATILE TFT PANELS
4420 M:      Linus Walleij <linus.walleij@linaro.org>
4421 T:      git git://anongit.freedesktop.org/drm/drm-misc
4422 S:      Maintained
4423 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
4424 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.txt
4425
4426 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4427 M:      Dave Airlie <airlied@redhat.com>
4428 S:      Odd Fixes
4429 F:      drivers/gpu/drm/ast/
4430
4431 DRM DRIVER FOR BOCHS VIRTUAL GPU
4432 M:      Gerd Hoffmann <kraxel@redhat.com>
4433 L:      virtualization@lists.linux-foundation.org
4434 T:      git git://anongit.freedesktop.org/drm/drm-misc
4435 S:      Maintained
4436 F:      drivers/gpu/drm/bochs/
4437
4438 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4439 M:      Linus Walleij <linus.walleij@linaro.org>
4440 T:      git git://anongit.freedesktop.org/drm/drm-misc
4441 S:      Maintained
4442 F:      drivers/gpu/drm/tve200/
4443
4444 DRM DRIVER FOR ILITEK ILI9225 PANELS
4445 M:      David Lechner <david@lechnology.com>
4446 S:      Maintained
4447 F:      drivers/gpu/drm/tinydrm/ili9225.c
4448 F:      Documentation/devicetree/bindings/display/ili9225.txt
4449
4450 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4451 S:      Orphan / Obsolete
4452 F:      drivers/gpu/drm/i810/
4453 F:      include/uapi/drm/i810_drm.h
4454
4455 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4456 S:      Orphan / Obsolete
4457 F:      drivers/gpu/drm/mga/
4458 F:      include/uapi/drm/mga_drm.h
4459
4460 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4461 M:      Dave Airlie <airlied@redhat.com>
4462 S:      Odd Fixes
4463 F:      drivers/gpu/drm/mgag200/
4464
4465 DRM DRIVER FOR MI0283QT
4466 M:      Noralf Trønnes <noralf@tronnes.org>
4467 S:      Maintained
4468 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4469 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4470
4471 DRM DRIVER FOR MSM ADRENO GPU
4472 M:      Rob Clark <robdclark@gmail.com>
4473 L:      linux-arm-msm@vger.kernel.org
4474 L:      dri-devel@lists.freedesktop.org
4475 L:      freedreno@lists.freedesktop.org
4476 T:      git git://people.freedesktop.org/~robclark/linux
4477 S:      Maintained
4478 F:      drivers/gpu/drm/msm/
4479 F:      include/uapi/drm/msm_drm.h
4480 F:      Documentation/devicetree/bindings/display/msm/
4481
4482 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4483 M:      Ben Skeggs <bskeggs@redhat.com>
4484 L:      dri-devel@lists.freedesktop.org
4485 L:      nouveau@lists.freedesktop.org
4486 T:      git git://github.com/skeggsb/linux
4487 S:      Supported
4488 F:      drivers/gpu/drm/nouveau/
4489 F:      include/uapi/drm/nouveau_drm.h
4490
4491 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4492 M:      Noralf Trønnes <noralf@tronnes.org>
4493 S:      Maintained
4494 F:      drivers/gpu/drm/tinydrm/repaper.c
4495 F:      Documentation/devicetree/bindings/display/repaper.txt
4496
4497 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4498 M:      Dave Airlie <airlied@redhat.com>
4499 M:      Gerd Hoffmann <kraxel@redhat.com>
4500 L:      virtualization@lists.linux-foundation.org
4501 T:      git git://anongit.freedesktop.org/drm/drm-misc
4502 S:      Obsolete
4503 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4504 F:      drivers/gpu/drm/cirrus/
4505
4506 DRM DRIVER FOR QXL VIRTUAL GPU
4507 M:      Dave Airlie <airlied@redhat.com>
4508 M:      Gerd Hoffmann <kraxel@redhat.com>
4509 L:      virtualization@lists.linux-foundation.org
4510 T:      git git://anongit.freedesktop.org/drm/drm-misc
4511 S:      Maintained
4512 F:      drivers/gpu/drm/qxl/
4513 F:      include/uapi/drm/qxl_drm.h
4514
4515 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4516 S:      Orphan / Obsolete
4517 F:      drivers/gpu/drm/r128/
4518 F:      include/uapi/drm/r128_drm.h
4519
4520 DRM DRIVER FOR SAVAGE VIDEO CARDS
4521 S:      Orphan / Obsolete
4522 F:      drivers/gpu/drm/savage/
4523 F:      include/uapi/drm/savage_drm.h
4524
4525 DRM DRIVER FOR SIS VIDEO CARDS
4526 S:      Orphan / Obsolete
4527 F:      drivers/gpu/drm/sis/
4528 F:      include/uapi/drm/sis_drm.h
4529
4530 DRM DRIVER FOR SITRONIX ST7586 PANELS
4531 M:      David Lechner <david@lechnology.com>
4532 S:      Maintained
4533 F:      drivers/gpu/drm/tinydrm/st7586.c
4534 F:      Documentation/devicetree/bindings/display/st7586.txt
4535
4536 DRM DRIVER FOR SITRONIX ST7735R PANELS
4537 M:      David Lechner <david@lechnology.com>
4538 S:      Maintained
4539 F:      drivers/gpu/drm/tinydrm/st7735r.c
4540 F:      Documentation/devicetree/bindings/display/st7735r.txt
4541
4542 DRM DRIVER FOR TDFX VIDEO CARDS
4543 S:      Orphan / Obsolete
4544 F:      drivers/gpu/drm/tdfx/
4545
4546 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4547 M:      Dave Airlie <airlied@redhat.com>
4548 S:      Odd Fixes
4549 F:      drivers/gpu/drm/udl/
4550
4551 DRM DRIVER FOR VMWARE VIRTUAL GPU
4552 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4553 M:      Sinclair Yeh <syeh@vmware.com>
4554 M:      Thomas Hellstrom <thellstrom@vmware.com>
4555 L:      dri-devel@lists.freedesktop.org
4556 T:      git git://people.freedesktop.org/~syeh/repos_linux
4557 T:      git git://people.freedesktop.org/~thomash/linux
4558 S:      Supported
4559 F:      drivers/gpu/drm/vmwgfx/
4560 F:      include/uapi/drm/vmwgfx_drm.h
4561
4562 DRM DRIVERS
4563 M:      David Airlie <airlied@linux.ie>
4564 L:      dri-devel@lists.freedesktop.org
4565 T:      git git://people.freedesktop.org/~airlied/linux
4566 B:      https://bugs.freedesktop.org/
4567 C:      irc://chat.freenode.net/dri-devel
4568 S:      Maintained
4569 F:      drivers/gpu/drm/
4570 F:      drivers/gpu/vga/
4571 F:      Documentation/devicetree/bindings/display/
4572 F:      Documentation/devicetree/bindings/gpu/
4573 F:      Documentation/devicetree/bindings/video/
4574 F:      Documentation/gpu/
4575 F:      include/drm/
4576 F:      include/uapi/drm/
4577 F:      include/linux/vga*
4578
4579 DRM DRIVERS AND MISC GPU PATCHES
4580 M:      Gustavo Padovan <gustavo@padovan.org>
4581 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
4582 M:      Sean Paul <seanpaul@chromium.org>
4583 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4584 S:      Maintained
4585 T:      git git://anongit.freedesktop.org/drm/drm-misc
4586 F:      Documentation/gpu/
4587 F:      drivers/gpu/vga/
4588 F:      drivers/gpu/drm/*
4589 F:      include/drm/drm*
4590 F:      include/uapi/drm/drm*
4591 F:      include/linux/vga*
4592
4593 DRM DRIVERS FOR ALLWINNER A10
4594 M:      Maxime Ripard  <maxime.ripard@bootlin.com>
4595 L:      dri-devel@lists.freedesktop.org
4596 S:      Supported
4597 F:      drivers/gpu/drm/sun4i/
4598 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4599 T:      git git://anongit.freedesktop.org/drm/drm-misc
4600
4601 DRM DRIVERS FOR AMLOGIC SOCS
4602 M:      Neil Armstrong <narmstrong@baylibre.com>
4603 L:      dri-devel@lists.freedesktop.org
4604 L:      linux-amlogic@lists.infradead.org
4605 W:      http://linux-meson.com/
4606 S:      Supported
4607 F:      drivers/gpu/drm/meson/
4608 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4609 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4610 F:      Documentation/gpu/meson.rst
4611 T:      git git://anongit.freedesktop.org/drm/drm-misc
4612
4613 DRM DRIVERS FOR ATMEL HLCDC
4614 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4615 L:      dri-devel@lists.freedesktop.org
4616 S:      Supported
4617 F:      drivers/gpu/drm/atmel-hlcdc/
4618 F:      Documentation/devicetree/bindings/drm/atmel/
4619 T:      git git://anongit.freedesktop.org/drm/drm-misc
4620
4621 DRM DRIVERS FOR BRIDGE CHIPS
4622 M:      Archit Taneja <architt@codeaurora.org>
4623 M:      Andrzej Hajda <a.hajda@samsung.com>
4624 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4625 S:      Maintained
4626 T:      git git://anongit.freedesktop.org/drm/drm-misc
4627 F:      drivers/gpu/drm/bridge/
4628
4629 DRM DRIVERS FOR EXYNOS
4630 M:      Inki Dae <inki.dae@samsung.com>
4631 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4632 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4633 M:      Kyungmin Park <kyungmin.park@samsung.com>
4634 L:      dri-devel@lists.freedesktop.org
4635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4636 S:      Supported
4637 F:      drivers/gpu/drm/exynos/
4638 F:      include/uapi/drm/exynos_drm.h
4639 F:      Documentation/devicetree/bindings/display/exynos/
4640
4641 DRM DRIVERS FOR FREESCALE DCU
4642 M:      Stefan Agner <stefan@agner.ch>
4643 M:      Alison Wang <alison.wang@freescale.com>
4644 L:      dri-devel@lists.freedesktop.org
4645 S:      Supported
4646 F:      drivers/gpu/drm/fsl-dcu/
4647 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4648 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4649 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4650
4651 DRM DRIVERS FOR FREESCALE IMX
4652 M:      Philipp Zabel <p.zabel@pengutronix.de>
4653 L:      dri-devel@lists.freedesktop.org
4654 S:      Maintained
4655 F:      drivers/gpu/drm/imx/
4656 F:      drivers/gpu/ipu-v3/
4657 F:      Documentation/devicetree/bindings/display/imx/
4658
4659 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4660 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4661 L:      dri-devel@lists.freedesktop.org
4662 T:      git git://github.com/patjak/drm-gma500
4663 S:      Maintained
4664 F:      drivers/gpu/drm/gma500/
4665
4666 DRM DRIVERS FOR HISILICON
4667 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4668 M:      Rongrong Zou <zourongrong@gmail.com>
4669 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4670 R:      Chen Feng <puck.chen@hisilicon.com>
4671 L:      dri-devel@lists.freedesktop.org
4672 T:      git git://github.com/xin3liang/linux.git
4673 S:      Maintained
4674 F:      drivers/gpu/drm/hisilicon/
4675 F:      Documentation/devicetree/bindings/display/hisilicon/
4676
4677 DRM DRIVERS FOR MEDIATEK
4678 M:      CK Hu <ck.hu@mediatek.com>
4679 M:      Philipp Zabel <p.zabel@pengutronix.de>
4680 L:      dri-devel@lists.freedesktop.org
4681 S:      Supported
4682 F:      drivers/gpu/drm/mediatek/
4683 F:      Documentation/devicetree/bindings/display/mediatek/
4684
4685 DRM DRIVERS FOR NVIDIA TEGRA
4686 M:      Thierry Reding <thierry.reding@gmail.com>
4687 L:      dri-devel@lists.freedesktop.org
4688 L:      linux-tegra@vger.kernel.org
4689 T:      git git://anongit.freedesktop.org/tegra/linux.git
4690 S:      Supported
4691 F:      drivers/gpu/drm/tegra/
4692 F:      drivers/gpu/host1x/
4693 F:      include/linux/host1x.h
4694 F:      include/uapi/drm/tegra_drm.h
4695 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4696
4697 DRM DRIVERS FOR RENESAS
4698 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4699 L:      dri-devel@lists.freedesktop.org
4700 L:      linux-renesas-soc@vger.kernel.org
4701 T:      git git://linuxtv.org/pinchartl/fbdev
4702 S:      Supported
4703 F:      drivers/gpu/drm/rcar-du/
4704 F:      drivers/gpu/drm/shmobile/
4705 F:      include/linux/platform_data/shmob_drm.h
4706 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4707 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.txt
4708 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4709
4710 DRM DRIVERS FOR ROCKCHIP
4711 M:      Sandy Huang <hjc@rock-chips.com>
4712 M:      Heiko Stübner <heiko@sntech.de>
4713 L:      dri-devel@lists.freedesktop.org
4714 S:      Maintained
4715 F:      drivers/gpu/drm/rockchip/
4716 F:      Documentation/devicetree/bindings/display/rockchip/
4717 T:      git git://anongit.freedesktop.org/drm/drm-misc
4718
4719 DRM DRIVERS FOR STI
4720 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4721 M:      Vincent Abriou <vincent.abriou@st.com>
4722 L:      dri-devel@lists.freedesktop.org
4723 T:      git git://anongit.freedesktop.org/drm/drm-misc
4724 S:      Maintained
4725 F:      drivers/gpu/drm/sti
4726 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4727
4728 DRM DRIVERS FOR STM
4729 M:      Yannick Fertre <yannick.fertre@st.com>
4730 M:      Philippe Cornu <philippe.cornu@st.com>
4731 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4732 M:      Vincent Abriou <vincent.abriou@st.com>
4733 L:      dri-devel@lists.freedesktop.org
4734 T:      git git://anongit.freedesktop.org/drm/drm-misc
4735 S:      Maintained
4736 F:      drivers/gpu/drm/stm
4737 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4738
4739 DRM DRIVERS FOR TI LCDC
4740 M:      Jyri Sarha <jsarha@ti.com>
4741 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4742 L:      dri-devel@lists.freedesktop.org
4743 S:      Maintained
4744 F:      drivers/gpu/drm/tilcdc/
4745 F:      Documentation/devicetree/bindings/display/tilcdc/
4746
4747 DRM DRIVERS FOR TI OMAP
4748 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4749 L:      dri-devel@lists.freedesktop.org
4750 S:      Maintained
4751 F:      drivers/gpu/drm/omapdrm/
4752 F:      Documentation/devicetree/bindings/display/ti/
4753
4754 DRM DRIVERS FOR VC4
4755 M:      Eric Anholt <eric@anholt.net>
4756 T:      git git://github.com/anholt/linux
4757 S:      Supported
4758 F:      drivers/gpu/drm/vc4/
4759 F:      include/uapi/drm/vc4_drm.h
4760 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4761 T:      git git://anongit.freedesktop.org/drm/drm-misc
4762
4763 DRM DRIVERS FOR VIVANTE GPU IP
4764 M:      Lucas Stach <l.stach@pengutronix.de>
4765 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4766 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4767 L:      etnaviv@lists.freedesktop.org
4768 L:      dri-devel@lists.freedesktop.org
4769 S:      Maintained
4770 F:      drivers/gpu/drm/etnaviv/
4771 F:      include/uapi/drm/etnaviv_drm.h
4772 F:      Documentation/devicetree/bindings/display/etnaviv/
4773
4774 DRM DRIVERS FOR ZTE ZX
4775 M:      Shawn Guo <shawnguo@kernel.org>
4776 L:      dri-devel@lists.freedesktop.org
4777 S:      Maintained
4778 F:      drivers/gpu/drm/zte/
4779 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4780 T:      git git://anongit.freedesktop.org/drm/drm-misc
4781
4782 DRM PANEL DRIVERS
4783 M:      Thierry Reding <thierry.reding@gmail.com>
4784 L:      dri-devel@lists.freedesktop.org
4785 T:      git git://anongit.freedesktop.org/drm/drm-misc
4786 S:      Maintained
4787 F:      drivers/gpu/drm/drm_panel.c
4788 F:      drivers/gpu/drm/panel/
4789 F:      include/drm/drm_panel.h
4790 F:      Documentation/devicetree/bindings/display/panel/
4791
4792 DRM TINYDRM DRIVERS
4793 M:      Noralf Trønnes <noralf@tronnes.org>
4794 W:      https://github.com/notro/tinydrm/wiki/Development
4795 T:      git git://anongit.freedesktop.org/drm/drm-misc
4796 S:      Maintained
4797 F:      drivers/gpu/drm/tinydrm/
4798 F:      include/drm/tinydrm/
4799
4800 DRM TTM SUBSYSTEM
4801 M:      Christian Koenig <christian.koenig@amd.com>
4802 M:      Roger He <Hongbo.He@amd.com>
4803 T:      git git://people.freedesktop.org/~agd5f/linux
4804 S:      Maintained
4805 L:      dri-devel@lists.freedesktop.org
4806 F:      include/drm/ttm/
4807 F:      drivers/gpu/drm/ttm/
4808
4809 DSBR100 USB FM RADIO DRIVER
4810 M:      Alexey Klimov <klimov.linux@gmail.com>
4811 L:      linux-media@vger.kernel.org
4812 T:      git git://linuxtv.org/media_tree.git
4813 S:      Maintained
4814 F:      drivers/media/radio/dsbr100.c
4815
4816 DSCC4 DRIVER
4817 M:      Francois Romieu <romieu@fr.zoreil.com>
4818 L:      netdev@vger.kernel.org
4819 S:      Maintained
4820 F:      drivers/net/wan/dscc4.c
4821
4822 DT3155 MEDIA DRIVER
4823 M:      Hans Verkuil <hverkuil@xs4all.nl>
4824 L:      linux-media@vger.kernel.org
4825 T:      git git://linuxtv.org/media_tree.git
4826 W:      https://linuxtv.org
4827 S:      Odd Fixes
4828 F:      drivers/media/pci/dt3155/
4829
4830 DVB_USB_AF9015 MEDIA DRIVER
4831 M:      Antti Palosaari <crope@iki.fi>
4832 L:      linux-media@vger.kernel.org
4833 W:      https://linuxtv.org
4834 W:      http://palosaari.fi/linux/
4835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4836 T:      git git://linuxtv.org/anttip/media_tree.git
4837 S:      Maintained
4838 F:      drivers/media/usb/dvb-usb-v2/af9015*
4839
4840 DVB_USB_AF9035 MEDIA DRIVER
4841 M:      Antti Palosaari <crope@iki.fi>
4842 L:      linux-media@vger.kernel.org
4843 W:      https://linuxtv.org
4844 W:      http://palosaari.fi/linux/
4845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4846 T:      git git://linuxtv.org/anttip/media_tree.git
4847 S:      Maintained
4848 F:      drivers/media/usb/dvb-usb-v2/af9035*
4849
4850 DVB_USB_ANYSEE MEDIA DRIVER
4851 M:      Antti Palosaari <crope@iki.fi>
4852 L:      linux-media@vger.kernel.org
4853 W:      https://linuxtv.org
4854 W:      http://palosaari.fi/linux/
4855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4856 T:      git git://linuxtv.org/anttip/media_tree.git
4857 S:      Maintained
4858 F:      drivers/media/usb/dvb-usb-v2/anysee*
4859
4860 DVB_USB_AU6610 MEDIA DRIVER
4861 M:      Antti Palosaari <crope@iki.fi>
4862 L:      linux-media@vger.kernel.org
4863 W:      https://linuxtv.org
4864 W:      http://palosaari.fi/linux/
4865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4866 T:      git git://linuxtv.org/anttip/media_tree.git
4867 S:      Maintained
4868 F:      drivers/media/usb/dvb-usb-v2/au6610*
4869
4870 DVB_USB_CE6230 MEDIA DRIVER
4871 M:      Antti Palosaari <crope@iki.fi>
4872 L:      linux-media@vger.kernel.org
4873 W:      https://linuxtv.org
4874 W:      http://palosaari.fi/linux/
4875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4876 T:      git git://linuxtv.org/anttip/media_tree.git
4877 S:      Maintained
4878 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4879
4880 DVB_USB_CXUSB MEDIA DRIVER
4881 M:      Michael Krufky <mkrufky@linuxtv.org>
4882 L:      linux-media@vger.kernel.org
4883 W:      https://linuxtv.org
4884 W:      http://github.com/mkrufky
4885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4886 T:      git git://linuxtv.org/media_tree.git
4887 S:      Maintained
4888 F:      drivers/media/usb/dvb-usb/cxusb*
4889
4890 DVB_USB_EC168 MEDIA DRIVER
4891 M:      Antti Palosaari <crope@iki.fi>
4892 L:      linux-media@vger.kernel.org
4893 W:      https://linuxtv.org
4894 W:      http://palosaari.fi/linux/
4895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4896 T:      git git://linuxtv.org/anttip/media_tree.git
4897 S:      Maintained
4898 F:      drivers/media/usb/dvb-usb-v2/ec168*
4899
4900 DVB_USB_GL861 MEDIA DRIVER
4901 M:      Antti Palosaari <crope@iki.fi>
4902 L:      linux-media@vger.kernel.org
4903 W:      https://linuxtv.org
4904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4905 T:      git git://linuxtv.org/anttip/media_tree.git
4906 S:      Maintained
4907 F:      drivers/media/usb/dvb-usb-v2/gl861*
4908
4909 DVB_USB_MXL111SF MEDIA DRIVER
4910 M:      Michael Krufky <mkrufky@linuxtv.org>
4911 L:      linux-media@vger.kernel.org
4912 W:      https://linuxtv.org
4913 W:      http://github.com/mkrufky
4914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4915 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4916 S:      Maintained
4917 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4918
4919 DVB_USB_RTL28XXU MEDIA DRIVER
4920 M:      Antti Palosaari <crope@iki.fi>
4921 L:      linux-media@vger.kernel.org
4922 W:      https://linuxtv.org
4923 W:      http://palosaari.fi/linux/
4924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4925 T:      git git://linuxtv.org/anttip/media_tree.git
4926 S:      Maintained
4927 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4928
4929 DVB_USB_V2 MEDIA DRIVER
4930 M:      Antti Palosaari <crope@iki.fi>
4931 L:      linux-media@vger.kernel.org
4932 W:      https://linuxtv.org
4933 W:      http://palosaari.fi/linux/
4934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4935 T:      git git://linuxtv.org/anttip/media_tree.git
4936 S:      Maintained
4937 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4938 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4939
4940 DYNAMIC DEBUG
4941 M:      Jason Baron <jbaron@akamai.com>
4942 S:      Maintained
4943 F:      lib/dynamic_debug.c
4944 F:      include/linux/dynamic_debug.h
4945
4946 DYNAMIC INTERRUPT MODERATION
4947 M:      Tal Gilboa <talgi@mellanox.com>
4948 S:      Maintained
4949 F:      include/linux/net_dim.h
4950
4951 DZ DECSTATION DZ11 SERIAL DRIVER
4952 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4953 S:      Maintained
4954 F:      drivers/tty/serial/dz.*
4955
4956 E3X0 POWER BUTTON DRIVER
4957 M:      Moritz Fischer <moritz.fischer@ettus.com>
4958 L:      usrp-users@lists.ettus.com
4959 W:      http://www.ettus.com
4960 S:      Supported
4961 F:      drivers/input/misc/e3x0-button.c
4962 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4963
4964 E4000 MEDIA DRIVER
4965 M:      Antti Palosaari <crope@iki.fi>
4966 L:      linux-media@vger.kernel.org
4967 W:      https://linuxtv.org
4968 W:      http://palosaari.fi/linux/
4969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4970 T:      git git://linuxtv.org/anttip/media_tree.git
4971 S:      Maintained
4972 F:      drivers/media/tuners/e4000*
4973
4974 EATA ISA/EISA/PCI SCSI DRIVER
4975 M:      Dario Ballabio <ballabio_dario@emc.com>
4976 L:      linux-scsi@vger.kernel.org
4977 S:      Maintained
4978 F:      drivers/scsi/eata.c
4979
4980 EC100 MEDIA DRIVER
4981 M:      Antti Palosaari <crope@iki.fi>
4982 L:      linux-media@vger.kernel.org
4983 W:      https://linuxtv.org
4984 W:      http://palosaari.fi/linux/
4985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4986 T:      git git://linuxtv.org/anttip/media_tree.git
4987 S:      Maintained
4988 F:      drivers/media/dvb-frontends/ec100*
4989
4990 ECRYPT FILE SYSTEM
4991 M:      Tyler Hicks <tyhicks@canonical.com>
4992 L:      ecryptfs@vger.kernel.org
4993 W:      http://ecryptfs.org
4994 W:      https://launchpad.net/ecryptfs
4995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4996 S:      Supported
4997 F:      Documentation/filesystems/ecryptfs.txt
4998 F:      fs/ecryptfs/
4999
5000 EDAC-AMD64
5001 M:      Borislav Petkov <bp@alien8.de>
5002 L:      linux-edac@vger.kernel.org
5003 S:      Maintained
5004 F:      drivers/edac/amd64_edac*
5005
5006 EDAC-CALXEDA
5007 M:      Robert Richter <rric@kernel.org>
5008 L:      linux-edac@vger.kernel.org
5009 S:      Maintained
5010 F:      drivers/edac/highbank*
5011
5012 EDAC-CAVIUM OCTEON
5013 M:      Ralf Baechle <ralf@linux-mips.org>
5014 M:      David Daney <david.daney@cavium.com>
5015 L:      linux-edac@vger.kernel.org
5016 L:      linux-mips@linux-mips.org
5017 S:      Supported
5018 F:      drivers/edac/octeon_edac*
5019
5020 EDAC-CAVIUM THUNDERX
5021 M:      David Daney <david.daney@cavium.com>
5022 M:      Jan Glauber <jglauber@cavium.com>
5023 L:      linux-edac@vger.kernel.org
5024 S:      Supported
5025 F:      drivers/edac/thunderx_edac*
5026
5027 EDAC-CORE
5028 M:      Borislav Petkov <bp@alien8.de>
5029 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5030 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5031 L:      linux-edac@vger.kernel.org
5032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5034 S:      Supported
5035 F:      Documentation/admin-guide/ras.rst
5036 F:      Documentation/driver-api/edac.rst
5037 F:      drivers/edac/
5038 F:      include/linux/edac.h
5039
5040 EDAC-E752X
5041 M:      Mark Gross <mark.gross@intel.com>
5042 L:      linux-edac@vger.kernel.org
5043 S:      Maintained
5044 F:      drivers/edac/e752x_edac.c
5045
5046 EDAC-E7XXX
5047 L:      linux-edac@vger.kernel.org
5048 S:      Maintained
5049 F:      drivers/edac/e7xxx_edac.c
5050
5051 EDAC-FSL_DDR
5052 M:      York Sun <york.sun@nxp.com>
5053 L:      linux-edac@vger.kernel.org
5054 S:      Maintained
5055 F:      drivers/edac/fsl_ddr_edac.*
5056
5057 EDAC-GHES
5058 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5059 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5060 L:      linux-edac@vger.kernel.org
5061 S:      Maintained
5062 F:      drivers/edac/ghes_edac.c
5063
5064 EDAC-I3000
5065 L:      linux-edac@vger.kernel.org
5066 S:      Orphan
5067 F:      drivers/edac/i3000_edac.c
5068
5069 EDAC-I5000
5070 L:      linux-edac@vger.kernel.org
5071 S:      Maintained
5072 F:      drivers/edac/i5000_edac.c
5073
5074 EDAC-I5400
5075 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5076 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5077 L:      linux-edac@vger.kernel.org
5078 S:      Maintained
5079 F:      drivers/edac/i5400_edac.c
5080
5081 EDAC-I7300
5082 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5083 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5084 L:      linux-edac@vger.kernel.org
5085 S:      Maintained
5086 F:      drivers/edac/i7300_edac.c
5087
5088 EDAC-I7CORE
5089 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5090 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5091 L:      linux-edac@vger.kernel.org
5092 S:      Maintained
5093 F:      drivers/edac/i7core_edac.c
5094
5095 EDAC-I82443BXGX
5096 M:      Tim Small <tim@buttersideup.com>
5097 L:      linux-edac@vger.kernel.org
5098 S:      Maintained
5099 F:      drivers/edac/i82443bxgx_edac.c
5100
5101 EDAC-I82975X
5102 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
5103 M:      "Arvind R." <arvino55@gmail.com>
5104 L:      linux-edac@vger.kernel.org
5105 S:      Maintained
5106 F:      drivers/edac/i82975x_edac.c
5107
5108 EDAC-IE31200
5109 M:      Jason Baron <jbaron@akamai.com>
5110 L:      linux-edac@vger.kernel.org
5111 S:      Maintained
5112 F:      drivers/edac/ie31200_edac.c
5113
5114 EDAC-MPC85XX
5115 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5116 L:      linux-edac@vger.kernel.org
5117 S:      Maintained
5118 F:      drivers/edac/mpc85xx_edac.[ch]
5119
5120 EDAC-PASEMI
5121 M:      Egor Martovetsky <egor@pasemi.com>
5122 L:      linux-edac@vger.kernel.org
5123 S:      Maintained
5124 F:      drivers/edac/pasemi_edac.c
5125
5126 EDAC-PND2
5127 M:      Tony Luck <tony.luck@intel.com>
5128 L:      linux-edac@vger.kernel.org
5129 S:      Maintained
5130 F:      drivers/edac/pnd2_edac.[ch]
5131
5132 EDAC-R82600
5133 M:      Tim Small <tim@buttersideup.com>
5134 L:      linux-edac@vger.kernel.org
5135 S:      Maintained
5136 F:      drivers/edac/r82600_edac.c
5137
5138 EDAC-SBRIDGE
5139 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5140 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5141 L:      linux-edac@vger.kernel.org
5142 S:      Maintained
5143 F:      drivers/edac/sb_edac.c
5144
5145 EDAC-SKYLAKE
5146 M:      Tony Luck <tony.luck@intel.com>
5147 L:      linux-edac@vger.kernel.org
5148 S:      Maintained
5149 F:      drivers/edac/skx_edac.c
5150
5151 EDAC-TI
5152 M:      Tero Kristo <t-kristo@ti.com>
5153 L:      linux-edac@vger.kernel.org
5154 S:      Maintained
5155 F:      drivers/edac/ti_edac.c
5156
5157 EDIROL UA-101/UA-1000 DRIVER
5158 M:      Clemens Ladisch <clemens@ladisch.de>
5159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5160 T:      git git://git.alsa-project.org/alsa-kernel.git
5161 S:      Maintained
5162 F:      sound/usb/misc/ua101.c
5163
5164 EFI TEST DRIVER
5165 L:      linux-efi@vger.kernel.org
5166 M:      Ivan Hu <ivan.hu@canonical.com>
5167 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5168 S:      Maintained
5169 F:      drivers/firmware/efi/test/
5170
5171 EFI VARIABLE FILESYSTEM
5172 M:      Matthew Garrett <matthew.garrett@nebula.com>
5173 M:      Jeremy Kerr <jk@ozlabs.org>
5174 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5176 L:      linux-efi@vger.kernel.org
5177 S:      Maintained
5178 F:      fs/efivarfs/
5179
5180 EFIFB FRAMEBUFFER DRIVER
5181 L:      linux-fbdev@vger.kernel.org
5182 M:      Peter Jones <pjones@redhat.com>
5183 S:      Maintained
5184 F:      drivers/video/fbdev/efifb.c
5185
5186 EFS FILESYSTEM
5187 W:      http://aeschi.ch.eu.org/efs/
5188 S:      Orphan
5189 F:      fs/efs/
5190
5191 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5192 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
5193 L:      netdev@vger.kernel.org
5194 S:      Maintained
5195 F:      drivers/net/ethernet/ibm/ehea/
5196
5197 EM28XX VIDEO4LINUX DRIVER
5198 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5199 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5200 L:      linux-media@vger.kernel.org
5201 W:      https://linuxtv.org
5202 T:      git git://linuxtv.org/media_tree.git
5203 S:      Maintained
5204 F:      drivers/media/usb/em28xx/
5205 F:      Documentation/media/v4l-drivers/em28xx*
5206
5207 EMBEDDED LINUX
5208 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5209 M:      Matt Mackall <mpm@selenic.com>
5210 M:      David Woodhouse <dwmw2@infradead.org>
5211 L:      linux-embedded@vger.kernel.org
5212 S:      Maintained
5213
5214 Emulex 10Gbps iSCSI - OneConnect DRIVER
5215 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5216 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5217 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5218 L:      linux-scsi@vger.kernel.org
5219 W:      http://www.broadcom.com
5220 S:      Supported
5221 F:      drivers/scsi/be2iscsi/
5222
5223 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5224 M:      Sathya Perla <sathya.perla@broadcom.com>
5225 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5226 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5227 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5228 L:      netdev@vger.kernel.org
5229 W:      http://www.emulex.com
5230 S:      Supported
5231 F:      drivers/net/ethernet/emulex/benet/
5232
5233 EMULEX ONECONNECT ROCE DRIVER
5234 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5235 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5236 L:      linux-rdma@vger.kernel.org
5237 W:      http://www.broadcom.com
5238 S:      Odd Fixes
5239 F:      drivers/infiniband/hw/ocrdma/
5240 F:      include/uapi/rdma/ocrdma-abi.h
5241
5242 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5243 M:      James Smart <james.smart@broadcom.com>
5244 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5245 L:      linux-scsi@vger.kernel.org
5246 W:      http://www.broadcom.com
5247 S:      Supported
5248 F:      drivers/scsi/lpfc/
5249
5250 ENE CB710 FLASH CARD READER DRIVER
5251 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5252 S:      Maintained
5253 F:      drivers/misc/cb710/
5254 F:      drivers/mmc/host/cb710-mmc.*
5255 F:      include/linux/cb710.h
5256
5257 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5258 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5259 S:      Maintained
5260 F:      drivers/media/rc/ene_ir.*
5261
5262 EPSON S1D13XXX FRAMEBUFFER DRIVER
5263 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5264 S:      Maintained
5265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5266 F:      drivers/video/fbdev/s1d13xxxfb.c
5267 F:      include/video/s1d13xxxfb.h
5268
5269 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5270 M:      Jeff Layton <jlayton@kernel.org>
5271 S:      Maintained
5272 F:      lib/errseq.c
5273 F:      include/linux/errseq.h
5274
5275 ET131X NETWORK DRIVER
5276 M:      Mark Einon <mark.einon@gmail.com>
5277 S:      Odd Fixes
5278 F:      drivers/net/ethernet/agere/
5279
5280 ETHERNET BRIDGE
5281 M:      Stephen Hemminger <stephen@networkplumber.org>
5282 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5283 L:      netdev@vger.kernel.org
5284 W:      http://www.linuxfoundation.org/en/Net:Bridge
5285 S:      Maintained
5286 F:      include/linux/netfilter_bridge/
5287 F:      net/bridge/
5288
5289 ETHERNET PHY LIBRARY
5290 M:      Andrew Lunn <andrew@lunn.ch>
5291 M:      Florian Fainelli <f.fainelli@gmail.com>
5292 L:      netdev@vger.kernel.org
5293 S:      Maintained
5294 F:      Documentation/ABI/testing/sysfs-bus-mdio
5295 F:      Documentation/devicetree/bindings/net/mdio*
5296 F:      Documentation/networking/phy.txt
5297 F:      drivers/net/phy/
5298 F:      drivers/of/of_mdio.c
5299 F:      drivers/of/of_net.c
5300 F:      include/linux/*mdio*.h
5301 F:      include/linux/of_net.h
5302 F:      include/linux/phy.h
5303 F:      include/linux/phy_fixed.h
5304 F:      include/linux/platform_data/mdio-gpio.h
5305 F:      include/linux/platform_data/mdio-bcm-unimac.h
5306 F:      include/trace/events/mdio.h
5307 F:      include/uapi/linux/mdio.h
5308 F:      include/uapi/linux/mii.h
5309
5310 EXT2 FILE SYSTEM
5311 M:      Jan Kara <jack@suse.com>
5312 L:      linux-ext4@vger.kernel.org
5313 S:      Maintained
5314 F:      Documentation/filesystems/ext2.txt
5315 F:      fs/ext2/
5316 F:      include/linux/ext2*
5317
5318 EXT4 FILE SYSTEM
5319 M:      "Theodore Ts'o" <tytso@mit.edu>
5320 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5321 L:      linux-ext4@vger.kernel.org
5322 W:      http://ext4.wiki.kernel.org
5323 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5325 S:      Maintained
5326 F:      Documentation/filesystems/ext4.txt
5327 F:      fs/ext4/
5328
5329 Extended Verification Module (EVM)
5330 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5331 L:      linux-integrity@vger.kernel.org
5332 S:      Supported
5333 F:      security/integrity/evm/
5334
5335 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5336 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5337 L:      linux-efi@vger.kernel.org
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5339 S:      Maintained
5340 F:      Documentation/efi-stub.txt
5341 F:      arch/*/kernel/efi.c
5342 F:      arch/x86/boot/compressed/eboot.[ch]
5343 F:      arch/*/include/asm/efi.h
5344 F:      arch/x86/platform/efi/
5345 F:      drivers/firmware/efi/
5346 F:      include/linux/efi*.h
5347 F:      arch/arm/boot/compressed/efi-header.S
5348 F:      arch/arm64/kernel/efi-entry.S
5349
5350 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5351 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5352 M:      Chanwoo Choi <cw00.choi@samsung.com>
5353 L:      linux-kernel@vger.kernel.org
5354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5355 S:      Maintained
5356 F:      drivers/extcon/
5357 F:      include/linux/extcon/
5358 F:      include/linux/extcon.h
5359 F:      Documentation/extcon/
5360 F:      Documentation/devicetree/bindings/extcon/
5361
5362 EXYNOS DP DRIVER
5363 M:      Jingoo Han <jingoohan1@gmail.com>
5364 L:      dri-devel@lists.freedesktop.org
5365 S:      Maintained
5366 F:      drivers/gpu/drm/exynos/exynos_dp*
5367
5368 EXYNOS SYSMMU (IOMMU) driver
5369 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5370 L:      iommu@lists.linux-foundation.org
5371 S:      Maintained
5372 F:      drivers/iommu/exynos-iommu.c
5373
5374 EZchip NPS platform support
5375 M:      Elad Kanfi <eladkan@mellanox.com>
5376 M:      Vineet Gupta <vgupta@synopsys.com>
5377 S:      Supported
5378 F:      arch/arc/plat-eznps
5379 F:      arch/arc/boot/dts/eznps.dts
5380
5381 F2FS FILE SYSTEM
5382 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5383 M:      Chao Yu <yuchao0@huawei.com>
5384 L:      linux-f2fs-devel@lists.sourceforge.net
5385 W:      https://f2fs.wiki.kernel.org/
5386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5387 S:      Maintained
5388 F:      Documentation/filesystems/f2fs.txt
5389 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5390 F:      fs/f2fs/
5391 F:      include/linux/f2fs_fs.h
5392 F:      include/trace/events/f2fs.h
5393
5394 F71805F HARDWARE MONITORING DRIVER
5395 M:      Jean Delvare <jdelvare@suse.com>
5396 L:      linux-hwmon@vger.kernel.org
5397 S:      Maintained
5398 F:      Documentation/hwmon/f71805f
5399 F:      drivers/hwmon/f71805f.c
5400
5401 FANOTIFY
5402 M:      Jan Kara <jack@suse.cz>
5403 R:      Amir Goldstein <amir73il@gmail.com>
5404 L:      linux-fsdevel@vger.kernel.org
5405 S:      Maintained
5406 F:      fs/notify/fanotify/
5407 F:      include/linux/fanotify.h
5408 F:      include/uapi/linux/fanotify.h
5409
5410 FARSYNC SYNCHRONOUS DRIVER
5411 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5412 W:      http://www.farsite.co.uk/
5413 S:      Supported
5414 F:      drivers/net/wan/farsync.*
5415
5416 FAULT INJECTION SUPPORT
5417 M:      Akinobu Mita <akinobu.mita@gmail.com>
5418 S:      Supported
5419 F:      Documentation/fault-injection/
5420 F:      lib/fault-inject.c
5421
5422 FBTFT Framebuffer drivers
5423 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5424 S:      Maintained
5425 F:      drivers/staging/fbtft/
5426
5427 FC0011 TUNER DRIVER
5428 M:      Michael Buesch <m@bues.ch>
5429 L:      linux-media@vger.kernel.org
5430 S:      Maintained
5431 F:      drivers/media/tuners/fc0011.h
5432 F:      drivers/media/tuners/fc0011.c
5433
5434 FC2580 MEDIA DRIVER
5435 M:      Antti Palosaari <crope@iki.fi>
5436 L:      linux-media@vger.kernel.org
5437 W:      https://linuxtv.org
5438 W:      http://palosaari.fi/linux/
5439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5440 T:      git git://linuxtv.org/anttip/media_tree.git
5441 S:      Maintained
5442 F:      drivers/media/tuners/fc2580*
5443
5444 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5445 M:      Johannes Thumshirn <jth@kernel.org>
5446 L:      linux-scsi@vger.kernel.org
5447 W:      www.Open-FCoE.org
5448 S:      Supported
5449 F:      drivers/scsi/libfc/
5450 F:      drivers/scsi/fcoe/
5451 F:      include/scsi/fc/
5452 F:      include/scsi/libfc.h
5453 F:      include/scsi/libfcoe.h
5454 F:      include/uapi/scsi/fc/
5455
5456 FILE LOCKING (flock() and fcntl()/lockf())
5457 M:      Jeff Layton <jlayton@kernel.org>
5458 M:      "J. Bruce Fields" <bfields@fieldses.org>
5459 L:      linux-fsdevel@vger.kernel.org
5460 S:      Maintained
5461 F:      include/linux/fcntl.h
5462 F:      include/uapi/linux/fcntl.h
5463 F:      fs/fcntl.c
5464 F:      fs/locks.c
5465
5466 FILESYSTEMS (VFS and infrastructure)
5467 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5468 L:      linux-fsdevel@vger.kernel.org
5469 S:      Maintained
5470 F:      fs/*
5471 F:      include/linux/fs.h
5472 F:      include/uapi/linux/fs.h
5473
5474 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5475 M:      Riku Voipio <riku.voipio@iki.fi>
5476 L:      linux-hwmon@vger.kernel.org
5477 S:      Maintained
5478 F:      drivers/hwmon/f75375s.c
5479 F:      include/linux/f75375s.h
5480
5481 FIREWIRE AUDIO DRIVERS
5482 M:      Clemens Ladisch <clemens@ladisch.de>
5483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5484 T:      git git://git.alsa-project.org/alsa-kernel.git
5485 S:      Maintained
5486 F:      sound/firewire/
5487
5488 FIREWIRE MEDIA DRIVERS (firedtv)
5489 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5490 L:      linux-media@vger.kernel.org
5491 L:      linux1394-devel@lists.sourceforge.net
5492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5493 S:      Maintained
5494 F:      drivers/media/firewire/
5495
5496 FIREWIRE SBP-2 TARGET
5497 M:      Chris Boot <bootc@bootc.net>
5498 L:      linux-scsi@vger.kernel.org
5499 L:      target-devel@vger.kernel.org
5500 L:      linux1394-devel@lists.sourceforge.net
5501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5502 S:      Maintained
5503 F:      drivers/target/sbp/
5504
5505 FIREWIRE SUBSYSTEM
5506 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5507 L:      linux1394-devel@lists.sourceforge.net
5508 W:      http://ieee1394.wiki.kernel.org/
5509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5510 S:      Maintained
5511 F:      drivers/firewire/
5512 F:      include/linux/firewire.h
5513 F:      include/uapi/linux/firewire*.h
5514 F:      tools/firewire/
5515
5516 FIRMWARE LOADER (request_firmware)
5517 M:      Luis R. Rodriguez <mcgrof@kernel.org>
5518 L:      linux-kernel@vger.kernel.org
5519 S:      Maintained
5520 F:      Documentation/firmware_class/
5521 F:      drivers/base/firmware*.c
5522 F:      include/linux/firmware.h
5523
5524 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5525 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5526 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5527 S:      Maintained
5528 F:      drivers/block/rsxx/
5529
5530 FLOPPY DRIVER
5531 M:      Jiri Kosina <jikos@kernel.org>
5532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5533 S:      Odd fixes
5534 F:      drivers/block/floppy.c
5535
5536 FMC SUBSYSTEM
5537 M:      Alessandro Rubini <rubini@gnudd.com>
5538 W:      http://www.ohwr.org/projects/fmc-bus
5539 S:      Supported
5540 F:      drivers/fmc/
5541 F:      include/linux/fmc*.h
5542 F:      include/linux/ipmi-fru.h
5543 K:      fmc_d.*register
5544
5545 FPGA MANAGER FRAMEWORK
5546 M:      Alan Tull <atull@kernel.org>
5547 M:      Moritz Fischer <mdf@kernel.org>
5548 L:      linux-fpga@vger.kernel.org
5549 S:      Maintained
5550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5551 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
5552 F:      Documentation/fpga/
5553 F:      Documentation/devicetree/bindings/fpga/
5554 F:      drivers/fpga/
5555 F:      include/linux/fpga/
5556 W:      http://www.rocketboards.org
5557
5558 FPU EMULATOR
5559 M:      Bill Metzenthen <billm@melbpc.org.au>
5560 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5561 S:      Maintained
5562 F:      arch/x86/math-emu/
5563
5564 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5565 L:      netdev@vger.kernel.org
5566 S:      Orphan
5567 F:      drivers/net/wan/dlci.c
5568 F:      drivers/net/wan/sdla.c
5569
5570 FRAMEBUFFER LAYER
5571 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5572 L:      dri-devel@lists.freedesktop.org
5573 L:      linux-fbdev@vger.kernel.org
5574 T:      git git://github.com/bzolnier/linux.git
5575 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5576 S:      Maintained
5577 F:      Documentation/fb/
5578 F:      drivers/video/
5579 F:      include/video/
5580 F:      include/linux/fb.h
5581 F:      include/uapi/video/
5582 F:      include/uapi/linux/fb.h
5583
5584 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5585 M:      Horia Geantă <horia.geanta@nxp.com>
5586 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
5587 L:      linux-crypto@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/crypto/caam/
5590 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5591
5592 FREESCALE DIU FRAMEBUFFER DRIVER
5593 M:      Timur Tabi <timur@tabi.org>
5594 L:      linux-fbdev@vger.kernel.org
5595 S:      Maintained
5596 F:      drivers/video/fbdev/fsl-diu-fb.*
5597
5598 FREESCALE DMA DRIVER
5599 M:      Li Yang <leoyang.li@nxp.com>
5600 M:      Zhang Wei <zw@zh-kernel.org>
5601 L:      linuxppc-dev@lists.ozlabs.org
5602 S:      Maintained
5603 F:      drivers/dma/fsldma.*
5604
5605 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5606 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5607 L:      netdev@vger.kernel.org
5608 S:      Maintained
5609 F:      drivers/net/ethernet/freescale/gianfar*
5610 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5611 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5612
5613 FREESCALE GPMI NAND DRIVER
5614 M:      Han Xu <han.xu@nxp.com>
5615 L:      linux-mtd@lists.infradead.org
5616 S:      Maintained
5617 F:      drivers/mtd/nand/gpmi-nand/*
5618
5619 FREESCALE I2C CPM DRIVER
5620 M:      Jochen Friedrich <jochen@scram.de>
5621 L:      linuxppc-dev@lists.ozlabs.org
5622 L:      linux-i2c@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/i2c/busses/i2c-cpm.c
5625
5626 FREESCALE IMX / MXC FEC DRIVER
5627 M:      Fugang Duan <fugang.duan@nxp.com>
5628 L:      netdev@vger.kernel.org
5629 S:      Maintained
5630 F:      drivers/net/ethernet/freescale/fec_main.c
5631 F:      drivers/net/ethernet/freescale/fec_ptp.c
5632 F:      drivers/net/ethernet/freescale/fec.h
5633 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5634
5635 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5636 M:      Sascha Hauer <kernel@pengutronix.de>
5637 L:      linux-fbdev@vger.kernel.org
5638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5639 S:      Maintained
5640 F:      include/linux/platform_data/video-imxfb.h
5641 F:      drivers/video/fbdev/imxfb.c
5642
5643 FREESCALE QORIQ DPAA ETHERNET DRIVER
5644 M:      Madalin Bucur <madalin.bucur@nxp.com>
5645 L:      netdev@vger.kernel.org
5646 S:      Maintained
5647 F:      drivers/net/ethernet/freescale/dpaa
5648
5649 FREESCALE QORIQ DPAA FMAN DRIVER
5650 M:      Madalin Bucur <madalin.bucur@nxp.com>
5651 L:      netdev@vger.kernel.org
5652 S:      Maintained
5653 F:      drivers/net/ethernet/freescale/fman
5654 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5655
5656 FREESCALE QUAD SPI DRIVER
5657 M:      Han Xu <han.xu@nxp.com>
5658 L:      linux-mtd@lists.infradead.org
5659 S:      Maintained
5660 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5661
5662 FREESCALE QUICC ENGINE LIBRARY
5663 M:      Qiang Zhao <qiang.zhao@nxp.com>
5664 L:      linuxppc-dev@lists.ozlabs.org
5665 S:      Maintained
5666 F:      drivers/soc/fsl/qe/
5667 F:      include/soc/fsl/*qe*.h
5668 F:      include/soc/fsl/*ucc*.h
5669
5670 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5671 M:      Li Yang <leoyang.li@nxp.com>
5672 L:      netdev@vger.kernel.org
5673 L:      linuxppc-dev@lists.ozlabs.org
5674 S:      Maintained
5675 F:      drivers/net/ethernet/freescale/ucc_geth*
5676
5677 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5678 M:      Zhao Qiang <qiang.zhao@nxp.com>
5679 L:      netdev@vger.kernel.org
5680 L:      linuxppc-dev@lists.ozlabs.org
5681 S:      Maintained
5682 F:      drivers/net/wan/fsl_ucc_hdlc*
5683
5684 FREESCALE QUICC ENGINE UCC UART DRIVER
5685 M:      Timur Tabi <timur@tabi.org>
5686 L:      linuxppc-dev@lists.ozlabs.org
5687 S:      Maintained
5688 F:      drivers/tty/serial/ucc_uart.c
5689
5690 FREESCALE SOC DRIVERS
5691 M:      Li Yang <leoyang.li@nxp.com>
5692 L:      linuxppc-dev@lists.ozlabs.org
5693 L:      linux-arm-kernel@lists.infradead.org
5694 S:      Maintained
5695 F:      Documentation/devicetree/bindings/soc/fsl/
5696 F:      drivers/soc/fsl/
5697 F:      include/linux/fsl/
5698
5699 FREESCALE SOC FS_ENET DRIVER
5700 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5701 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5702 L:      linuxppc-dev@lists.ozlabs.org
5703 L:      netdev@vger.kernel.org
5704 S:      Maintained
5705 F:      drivers/net/ethernet/freescale/fs_enet/
5706 F:      include/linux/fs_enet_pd.h
5707
5708 FREESCALE SOC SOUND DRIVERS
5709 M:      Timur Tabi <timur@tabi.org>
5710 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5711 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5712 R:      Fabio Estevam <fabio.estevam@nxp.com>
5713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5714 L:      linuxppc-dev@lists.ozlabs.org
5715 S:      Maintained
5716 F:      sound/soc/fsl/fsl*
5717 F:      sound/soc/fsl/imx*
5718 F:      sound/soc/fsl/mpc8610_hpcd.c
5719
5720 FREESCALE USB PERIPHERAL DRIVERS
5721 M:      Li Yang <leoyang.li@nxp.com>
5722 L:      linux-usb@vger.kernel.org
5723 L:      linuxppc-dev@lists.ozlabs.org
5724 S:      Maintained
5725 F:      drivers/usb/gadget/udc/fsl*
5726
5727 FREEVXFS FILESYSTEM
5728 M:      Christoph Hellwig <hch@infradead.org>
5729 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5730 S:      Maintained
5731 F:      fs/freevxfs/
5732
5733 FREEZER
5734 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5735 M:      Pavel Machek <pavel@ucw.cz>
5736 L:      linux-pm@vger.kernel.org
5737 S:      Supported
5738 F:      Documentation/power/freezing-of-tasks.txt
5739 F:      include/linux/freezer.h
5740 F:      kernel/freezer.c
5741
5742 FRONTSWAP API
5743 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5744 L:      linux-kernel@vger.kernel.org
5745 S:      Maintained
5746 F:      mm/frontswap.c
5747 F:      include/linux/frontswap.h
5748
5749 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5750 M:      David Howells <dhowells@redhat.com>
5751 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5752 S:      Supported
5753 F:      Documentation/filesystems/caching/
5754 F:      fs/fscache/
5755 F:      include/linux/fscache*.h
5756
5757 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5758 M:      Theodore Y. Ts'o <tytso@mit.edu>
5759 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5760 L:      linux-fscrypt@vger.kernel.org
5761 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5763 S:      Supported
5764 F:      fs/crypto/
5765 F:      include/linux/fscrypt*.h
5766 F:      Documentation/filesystems/fscrypt.rst
5767
5768 FUJITSU LAPTOP EXTRAS
5769 M:      Jonathan Woithe <jwoithe@just42.net>
5770 L:      platform-driver-x86@vger.kernel.org
5771 S:      Maintained
5772 F:      drivers/platform/x86/fujitsu-laptop.c
5773
5774 FUJITSU M-5MO LS CAMERA ISP DRIVER
5775 M:      Kyungmin Park <kyungmin.park@samsung.com>
5776 M:      Heungjun Kim <riverful.kim@samsung.com>
5777 L:      linux-media@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/media/i2c/m5mols/
5780 F:      include/media/i2c/m5mols.h
5781
5782 FUJITSU TABLET EXTRAS
5783 M:      Robert Gerlach <khnz@gmx.de>
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      drivers/platform/x86/fujitsu-tablet.c
5787
5788 FUSE: FILESYSTEM IN USERSPACE
5789 M:      Miklos Szeredi <miklos@szeredi.hu>
5790 L:      linux-fsdevel@vger.kernel.org
5791 W:      http://fuse.sourceforge.net/
5792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5793 S:      Maintained
5794 F:      fs/fuse/
5795 F:      include/uapi/linux/fuse.h
5796 F:      Documentation/filesystems/fuse.txt
5797
5798 FUTEX SUBSYSTEM
5799 M:      Thomas Gleixner <tglx@linutronix.de>
5800 M:      Ingo Molnar <mingo@redhat.com>
5801 R:      Peter Zijlstra <peterz@infradead.org>
5802 R:      Darren Hart <dvhart@infradead.org>
5803 L:      linux-kernel@vger.kernel.org
5804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5805 S:      Maintained
5806 F:      kernel/futex.c
5807 F:      kernel/futex_compat.c
5808 F:      include/asm-generic/futex.h
5809 F:      include/linux/futex.h
5810 F:      include/uapi/linux/futex.h
5811 F:      tools/testing/selftests/futex/
5812 F:      tools/perf/bench/futex*
5813 F:      Documentation/*futex*
5814
5815 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5816 M:      Rik Faith <faith@cs.unc.edu>
5817 L:      linux-scsi@vger.kernel.org
5818 S:      Odd Fixes (e.g., new signatures)
5819 F:      drivers/scsi/fdomain.*
5820
5821 GCC PLUGINS
5822 M:      Kees Cook <keescook@chromium.org>
5823 R:      Emese Revfy <re.emese@gmail.com>
5824 L:      kernel-hardening@lists.openwall.com
5825 S:      Maintained
5826 F:      scripts/gcc-plugins/
5827 F:      scripts/gcc-plugin.sh
5828 F:      scripts/Makefile.gcc-plugins
5829 F:      Documentation/gcc-plugins.txt
5830
5831 GCOV BASED KERNEL PROFILING
5832 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5833 S:      Maintained
5834 F:      kernel/gcov/
5835 F:      Documentation/dev-tools/gcov.rst
5836
5837 GDB KERNEL DEBUGGING HELPER SCRIPTS
5838 M:      Jan Kiszka <jan.kiszka@siemens.com>
5839 M:      Kieran Bingham <kieran@bingham.xyz>
5840 S:      Supported
5841 F:      scripts/gdb/
5842
5843 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5844 M:      Achim Leubner <achim_leubner@adaptec.com>
5845 L:      linux-scsi@vger.kernel.org
5846 W:      http://www.icp-vortex.com/
5847 S:      Supported
5848 F:      drivers/scsi/gdt*
5849
5850 GEMTEK FM RADIO RECEIVER DRIVER
5851 M:      Hans Verkuil <hverkuil@xs4all.nl>
5852 L:      linux-media@vger.kernel.org
5853 T:      git git://linuxtv.org/media_tree.git
5854 W:      https://linuxtv.org
5855 S:      Maintained
5856 F:      drivers/media/radio/radio-gemtek*
5857
5858 GENERIC GPIO I2C DRIVER
5859 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5860 S:      Supported
5861 F:      drivers/i2c/busses/i2c-gpio.c
5862 F:      include/linux/i2c-gpio.h
5863
5864 GENERIC GPIO I2C MULTIPLEXER DRIVER
5865 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5866 L:      linux-i2c@vger.kernel.org
5867 S:      Supported
5868 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5869 F:      include/linux/i2c-mux-gpio.h
5870 F:      Documentation/i2c/muxes/i2c-mux-gpio
5871
5872 GENERIC HDLC (WAN) DRIVERS
5873 M:      Krzysztof Halasa <khc@pm.waw.pl>
5874 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5875 S:      Maintained
5876 F:      drivers/net/wan/c101.c
5877 F:      drivers/net/wan/hd6457*
5878 F:      drivers/net/wan/hdlc*
5879 F:      drivers/net/wan/n2.c
5880 F:      drivers/net/wan/pc300too.c
5881 F:      drivers/net/wan/pci200syn.c
5882 F:      drivers/net/wan/wanxl*
5883
5884 GENERIC INCLUDE/ASM HEADER FILES
5885 M:      Arnd Bergmann <arnd@arndb.de>
5886 L:      linux-arch@vger.kernel.org
5887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5888 S:      Maintained
5889 F:      include/asm-generic/
5890 F:      include/uapi/asm-generic/
5891
5892 GENERIC PHY FRAMEWORK
5893 M:      Kishon Vijay Abraham I <kishon@ti.com>
5894 L:      linux-kernel@vger.kernel.org
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5896 S:      Supported
5897 F:      drivers/phy/
5898 F:      include/linux/phy/
5899
5900 GENERIC PM DOMAINS
5901 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5902 M:      Kevin Hilman <khilman@kernel.org>
5903 M:      Ulf Hansson <ulf.hansson@linaro.org>
5904 L:      linux-pm@vger.kernel.org
5905 S:      Supported
5906 F:      drivers/base/power/domain*.c
5907 F:      include/linux/pm_domain.h
5908 F:      Documentation/devicetree/bindings/power/power_domain.txt
5909
5910 GENERIC UIO DRIVER FOR PCI DEVICES
5911 M:      "Michael S. Tsirkin" <mst@redhat.com>
5912 L:      kvm@vger.kernel.org
5913 S:      Supported
5914 F:      drivers/uio/uio_pci_generic.c
5915
5916 GENWQE (IBM Generic Workqueue Card)
5917 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5918 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5919 S:      Supported
5920 F:      drivers/misc/genwqe/
5921
5922 GET_MAINTAINER SCRIPT
5923 M:      Joe Perches <joe@perches.com>
5924 S:      Maintained
5925 F:      scripts/get_maintainer.pl
5926
5927 GFS2 FILE SYSTEM
5928 M:      Steven Whitehouse <swhiteho@redhat.com>
5929 M:      Bob Peterson <rpeterso@redhat.com>
5930 L:      cluster-devel@redhat.com
5931 W:      http://sources.redhat.com/cluster/
5932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5933 S:      Supported
5934 F:      Documentation/filesystems/gfs2*.txt
5935 F:      fs/gfs2/
5936 F:      include/uapi/linux/gfs2_ondisk.h
5937
5938 GIGASET ISDN DRIVERS
5939 M:      Paul Bolle <pebolle@tiscali.nl>
5940 L:      gigaset307x-common@lists.sourceforge.net
5941 W:      http://gigaset307x.sourceforge.net/
5942 S:      Odd Fixes
5943 F:      Documentation/isdn/README.gigaset
5944 F:      drivers/isdn/gigaset/
5945 F:      include/uapi/linux/gigaset_dev.h
5946
5947 GO7007 MPEG CODEC
5948 M:      Hans Verkuil <hans.verkuil@cisco.com>
5949 L:      linux-media@vger.kernel.org
5950 S:      Maintained
5951 F:      drivers/media/usb/go7007/
5952
5953 GOODIX TOUCHSCREEN
5954 M:      Bastien Nocera <hadess@hadess.net>
5955 L:      linux-input@vger.kernel.org
5956 S:      Maintained
5957 F:      drivers/input/touchscreen/goodix.c
5958
5959 GPD POCKET FAN DRIVER
5960 M:      Hans de Goede <hdegoede@redhat.com>
5961 L:      platform-driver-x86@vger.kernel.org
5962 S:      Maintained
5963 F:      drivers/platform/x86/gpd-pocket-fan.c
5964
5965 GPIO ACPI SUPPORT
5966 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5967 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5968 L:      linux-gpio@vger.kernel.org
5969 L:      linux-acpi@vger.kernel.org
5970 S:      Maintained
5971 F:      Documentation/acpi/gpio-properties.txt
5972 F:      drivers/gpio/gpiolib-acpi.c
5973
5974 GPIO IR Transmitter
5975 M:      Sean Young <sean@mess.org>
5976 L:      linux-media@vger.kernel.org
5977 S:      Maintained
5978 F:      drivers/media/rc/gpio-ir-tx.c
5979
5980 GPIO MOCKUP DRIVER
5981 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5982 R:      Bartosz Golaszewski <brgl@bgdev.pl>
5983 L:      linux-gpio@vger.kernel.org
5984 S:      Maintained
5985 F:      drivers/gpio/gpio-mockup.c
5986 F:      tools/testing/selftests/gpio/
5987
5988 GPIO SUBSYSTEM
5989 M:      Linus Walleij <linus.walleij@linaro.org>
5990 L:      linux-gpio@vger.kernel.org
5991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5992 S:      Maintained
5993 F:      Documentation/devicetree/bindings/gpio/
5994 F:      Documentation/gpio/
5995 F:      Documentation/ABI/testing/gpio-cdev
5996 F:      Documentation/ABI/obsolete/sysfs-gpio
5997 F:      drivers/gpio/
5998 F:      include/linux/gpio/
5999 F:      include/linux/gpio.h
6000 F:      include/asm-generic/gpio.h
6001 F:      include/uapi/linux/gpio.h
6002 F:      tools/gpio/
6003
6004 GRE DEMULTIPLEXER DRIVER
6005 M:      Dmitry Kozlov <xeb@mail.ru>
6006 L:      netdev@vger.kernel.org
6007 S:      Maintained
6008 F:      net/ipv4/gre_demux.c
6009 F:      net/ipv4/gre_offload.c
6010 F:      include/net/gre.h
6011
6012 GRETH 10/100/1G Ethernet MAC device driver
6013 M:      Andreas Larsson <andreas@gaisler.com>
6014 L:      netdev@vger.kernel.org
6015 S:      Maintained
6016 F:      drivers/net/ethernet/aeroflex/
6017
6018 GREYBUS AUDIO PROTOCOLS DRIVERS
6019 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6020 M:      Mark Greer <mgreer@animalcreek.com>
6021 S:      Maintained
6022 F:      drivers/staging/greybus/audio_apbridgea.c
6023 F:      drivers/staging/greybus/audio_apbridgea.h
6024 F:      drivers/staging/greybus/audio_codec.c
6025 F:      drivers/staging/greybus/audio_codec.h
6026 F:      drivers/staging/greybus/audio_gb.c
6027 F:      drivers/staging/greybus/audio_manager.c
6028 F:      drivers/staging/greybus/audio_manager.h
6029 F:      drivers/staging/greybus/audio_manager_module.c
6030 F:      drivers/staging/greybus/audio_manager_private.h
6031 F:      drivers/staging/greybus/audio_manager_sysfs.c
6032 F:      drivers/staging/greybus/audio_module.c
6033 F:      drivers/staging/greybus/audio_topology.c
6034
6035 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6036 M:      Viresh Kumar <vireshk@kernel.org>
6037 S:      Maintained
6038 F:      drivers/staging/greybus/authentication.c
6039 F:      drivers/staging/greybus/bootrom.c
6040 F:      drivers/staging/greybus/firmware.h
6041 F:      drivers/staging/greybus/fw-core.c
6042 F:      drivers/staging/greybus/fw-download.c
6043 F:      drivers/staging/greybus/fw-managament.c
6044 F:      drivers/staging/greybus/greybus_authentication.h
6045 F:      drivers/staging/greybus/greybus_firmware.h
6046 F:      drivers/staging/greybus/hid.c
6047 F:      drivers/staging/greybus/i2c.c
6048 F:      drivers/staging/greybus/spi.c
6049 F:      drivers/staging/greybus/spilib.c
6050 F:      drivers/staging/greybus/spilib.h
6051
6052 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
6053 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6054 S:      Maintained
6055 F:      drivers/staging/greybus/loopback.c
6056 F:      drivers/staging/greybus/timesync.c
6057 F:      drivers/staging/greybus/timesync_platform.c
6058
6059 GREYBUS PLATFORM DRIVERS
6060 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6061 S:      Maintained
6062 F:      drivers/staging/greybus/arche-platform.c
6063 F:      drivers/staging/greybus/arche-apb-ctrl.c
6064 F:      drivers/staging/greybus/arche_platform.h
6065
6066 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6067 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6068 S:      Maintained
6069 F:      drivers/staging/greybus/sdio.c
6070 F:      drivers/staging/greybus/light.c
6071 F:      drivers/staging/greybus/gpio.c
6072 F:      drivers/staging/greybus/power_supply.c
6073 F:      drivers/staging/greybus/spi.c
6074 F:      drivers/staging/greybus/spilib.c
6075
6076 GREYBUS SUBSYSTEM
6077 M:      Johan Hovold <johan@kernel.org>
6078 M:      Alex Elder <elder@kernel.org>
6079 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6080 S:      Maintained
6081 F:      drivers/staging/greybus/
6082 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6083
6084 GREYBUS UART PROTOCOLS DRIVERS
6085 M:      David Lin <dtwlin@gmail.com>
6086 S:      Maintained
6087 F:      drivers/staging/greybus/uart.c
6088 F:      drivers/staging/greybus/log.c
6089
6090 GS1662 VIDEO SERIALIZER
6091 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6092 L:      linux-media@vger.kernel.org
6093 T:      git git://linuxtv.org/media_tree.git
6094 S:      Maintained
6095 F:      drivers/media/spi/gs1662.c
6096
6097 GSPCA FINEPIX SUBDRIVER
6098 M:      Frank Zago <frank@zago.net>
6099 L:      linux-media@vger.kernel.org
6100 T:      git git://linuxtv.org/media_tree.git
6101 S:      Maintained
6102 F:      drivers/media/usb/gspca/finepix.c
6103
6104 GSPCA GL860 SUBDRIVER
6105 M:      Olivier Lorin <o.lorin@laposte.net>
6106 L:      linux-media@vger.kernel.org
6107 T:      git git://linuxtv.org/media_tree.git
6108 S:      Maintained
6109 F:      drivers/media/usb/gspca/gl860/
6110
6111 GSPCA M5602 SUBDRIVER
6112 M:      Erik Andren <erik.andren@gmail.com>
6113 L:      linux-media@vger.kernel.org
6114 T:      git git://linuxtv.org/media_tree.git
6115 S:      Maintained
6116 F:      drivers/media/usb/gspca/m5602/
6117
6118 GSPCA PAC207 SONIXB SUBDRIVER
6119 M:      Hans Verkuil <hverkuil@xs4all.nl>
6120 L:      linux-media@vger.kernel.org
6121 T:      git git://linuxtv.org/media_tree.git
6122 S:      Odd Fixes
6123 F:      drivers/media/usb/gspca/pac207.c
6124
6125 GSPCA SN9C20X SUBDRIVER
6126 M:      Brian Johnson <brijohn@gmail.com>
6127 L:      linux-media@vger.kernel.org
6128 T:      git git://linuxtv.org/media_tree.git
6129 S:      Maintained
6130 F:      drivers/media/usb/gspca/sn9c20x.c
6131
6132 GSPCA T613 SUBDRIVER
6133 M:      Leandro Costantino <lcostantino@gmail.com>
6134 L:      linux-media@vger.kernel.org
6135 T:      git git://linuxtv.org/media_tree.git
6136 S:      Maintained
6137 F:      drivers/media/usb/gspca/t613.c
6138
6139 GSPCA USB WEBCAM DRIVER
6140 M:      Hans Verkuil <hverkuil@xs4all.nl>
6141 L:      linux-media@vger.kernel.org
6142 T:      git git://linuxtv.org/media_tree.git
6143 S:      Odd Fixes
6144 F:      drivers/media/usb/gspca/
6145
6146 GTP (GPRS Tunneling Protocol)
6147 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6148 M:      Harald Welte <laforge@gnumonks.org>
6149 L:      osmocom-net-gprs@lists.osmocom.org
6150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6151 S:      Maintained
6152 F:      drivers/net/gtp.c
6153
6154 GUID PARTITION TABLE (GPT)
6155 M:      Davidlohr Bueso <dave@stgolabs.net>
6156 L:      linux-efi@vger.kernel.org
6157 S:      Maintained
6158 F:      block/partitions/efi.*
6159
6160 H8/300 ARCHITECTURE
6161 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6162 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6163 W:      http://uclinux-h8.sourceforge.jp
6164 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6165 S:      Maintained
6166 F:      arch/h8300/
6167 F:      drivers/clocksource/h8300_*.c
6168 F:      drivers/clk/h8300/
6169 F:      drivers/irqchip/irq-renesas-h8*.c
6170
6171 HACKRF MEDIA DRIVER
6172 M:      Antti Palosaari <crope@iki.fi>
6173 L:      linux-media@vger.kernel.org
6174 W:      https://linuxtv.org
6175 W:      http://palosaari.fi/linux/
6176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6177 T:      git git://linuxtv.org/anttip/media_tree.git
6178 S:      Maintained
6179 F:      drivers/media/usb/hackrf/
6180
6181 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6182 M:      Frank Seidel <frank@f-seidel.de>
6183 L:      platform-driver-x86@vger.kernel.org
6184 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6185 S:      Maintained
6186 F:      drivers/platform/x86/hdaps.c
6187
6188 HARDWARE MONITORING
6189 M:      Jean Delvare <jdelvare@suse.com>
6190 M:      Guenter Roeck <linux@roeck-us.net>
6191 L:      linux-hwmon@vger.kernel.org
6192 W:      http://hwmon.wiki.kernel.org/
6193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6194 S:      Maintained
6195 F:      Documentation/hwmon/
6196 F:      drivers/hwmon/
6197 F:      include/linux/hwmon*.h
6198
6199 HARDWARE RANDOM NUMBER GENERATOR CORE
6200 M:      Matt Mackall <mpm@selenic.com>
6201 M:      Herbert Xu <herbert@gondor.apana.org.au>
6202 L:      linux-crypto@vger.kernel.org
6203 S:      Odd fixes
6204 F:      Documentation/devicetree/bindings/rng/
6205 F:      Documentation/hw_random.txt
6206 F:      drivers/char/hw_random/
6207 F:      include/linux/hw_random.h
6208
6209 HARDWARE SPINLOCK CORE
6210 M:      Ohad Ben-Cohen <ohad@wizery.com>
6211 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6212 L:      linux-remoteproc@vger.kernel.org
6213 S:      Maintained
6214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6215 F:      Documentation/devicetree/bindings/hwlock/
6216 F:      Documentation/hwspinlock.txt
6217 F:      drivers/hwspinlock/
6218 F:      include/linux/hwspinlock.h
6219
6220 HARMONY SOUND DRIVER
6221 L:      linux-parisc@vger.kernel.org
6222 S:      Maintained
6223 F:      sound/parisc/harmony.*
6224
6225 HDPVR USB VIDEO ENCODER DRIVER
6226 M:      Hans Verkuil <hverkuil@xs4all.nl>
6227 L:      linux-media@vger.kernel.org
6228 T:      git git://linuxtv.org/media_tree.git
6229 W:      https://linuxtv.org
6230 S:      Odd Fixes
6231 F:      drivers/media/usb/hdpvr/
6232
6233 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6234 M:      Jimmy Vance <jimmy.vance@hpe.com>
6235 S:      Supported
6236 F:      Documentation/watchdog/hpwdt.txt
6237 F:      drivers/watchdog/hpwdt.c
6238
6239 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6240 M:      Don Brace <don.brace@microsemi.com>
6241 L:      esc.storagedev@microsemi.com
6242 L:      linux-scsi@vger.kernel.org
6243 S:      Supported
6244 F:      Documentation/scsi/hpsa.txt
6245 F:      drivers/scsi/hpsa*.[ch]
6246 F:      include/linux/cciss*.h
6247 F:      include/uapi/linux/cciss*.h
6248
6249 HFI1 DRIVER
6250 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6251 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6252 L:      linux-rdma@vger.kernel.org
6253 S:      Supported
6254 F:      drivers/infiniband/hw/hfi1
6255
6256 HFS FILESYSTEM
6257 L:      linux-fsdevel@vger.kernel.org
6258 S:      Orphan
6259 F:      Documentation/filesystems/hfs.txt
6260 F:      fs/hfs/
6261
6262 HFSPLUS FILESYSTEM
6263 L:      linux-fsdevel@vger.kernel.org
6264 S:      Orphan
6265 F:      Documentation/filesystems/hfsplus.txt
6266 F:      fs/hfsplus/
6267
6268 HGA FRAMEBUFFER DRIVER
6269 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6270 L:      linux-nvidia@lists.surfsouth.com
6271 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6272 S:      Maintained
6273 F:      drivers/video/fbdev/hgafb.c
6274
6275 HIBERNATION (aka Software Suspend, aka swsusp)
6276 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6277 M:      Pavel Machek <pavel@ucw.cz>
6278 L:      linux-pm@vger.kernel.org
6279 B:      https://bugzilla.kernel.org
6280 S:      Supported
6281 F:      arch/x86/power/
6282 F:      drivers/base/power/
6283 F:      kernel/power/
6284 F:      include/linux/suspend.h
6285 F:      include/linux/freezer.h
6286 F:      include/linux/pm.h
6287 F:      arch/*/include/asm/suspend*.h
6288
6289 HID CORE LAYER
6290 M:      Jiri Kosina <jikos@kernel.org>
6291 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6292 L:      linux-input@vger.kernel.org
6293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6294 S:      Maintained
6295 F:      drivers/hid/
6296 F:      include/linux/hid*
6297 F:      include/uapi/linux/hid*
6298
6299 HID SENSOR HUB DRIVERS
6300 M:      Jiri Kosina <jikos@kernel.org>
6301 M:      Jonathan Cameron <jic23@kernel.org>
6302 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6303 L:      linux-input@vger.kernel.org
6304 L:      linux-iio@vger.kernel.org
6305 S:      Maintained
6306 F:      Documentation/hid/hid-sensor*
6307 F:      drivers/hid/hid-sensor-*
6308 F:      drivers/iio/*/hid-*
6309 F:      include/linux/hid-sensor-*
6310
6311 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6312 M:      Thomas Gleixner <tglx@linutronix.de>
6313 L:      linux-kernel@vger.kernel.org
6314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6315 S:      Maintained
6316 F:      Documentation/timers/
6317 F:      kernel/time/hrtimer.c
6318 F:      kernel/time/clockevents.c
6319 F:      kernel/time/timer_*.c
6320 F:      include/linux/clockchips.h
6321 F:      include/linux/hrtimer.h
6322
6323 HIGH-SPEED SCC DRIVER FOR AX.25
6324 L:      linux-hams@vger.kernel.org
6325 S:      Orphan
6326 F:      drivers/net/hamradio/dmascc.c
6327 F:      drivers/net/hamradio/scc.c
6328
6329 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6330 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6331 W:      http://www.highpoint-tech.com
6332 S:      Supported
6333 F:      Documentation/scsi/hptiop.txt
6334 F:      drivers/scsi/hptiop.c
6335
6336 HIPPI
6337 M:      Jes Sorensen <jes@trained-monkey.org>
6338 L:      linux-hippi@sunsite.dk
6339 S:      Maintained
6340 F:      include/linux/hippidevice.h
6341 F:      include/uapi/linux/if_hippi.h
6342 F:      net/802/hippi.c
6343 F:      drivers/net/hippi/
6344
6345 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6346 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6347 M:      Salil Mehta <salil.mehta@huawei.com>
6348 L:      netdev@vger.kernel.org
6349 W:      http://www.hisilicon.com
6350 S:      Maintained
6351 F:      drivers/net/ethernet/hisilicon/hns3/
6352
6353 HISILICON NETWORK SUBSYSTEM DRIVER
6354 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6355 M:      Salil Mehta <salil.mehta@huawei.com>
6356 L:      netdev@vger.kernel.org
6357 W:      http://www.hisilicon.com
6358 S:      Maintained
6359 F:      drivers/net/ethernet/hisilicon/
6360 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6361
6362 HISILICON PMU DRIVER
6363 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
6364 W:      http://www.hisilicon.com
6365 S:      Supported
6366 F:      drivers/perf/hisilicon
6367 F:      Documentation/perf/hisi-pmu.txt
6368
6369 HISILICON ROCE DRIVER
6370 M:      Lijun Ou <oulijun@huawei.com>
6371 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6372 L:      linux-rdma@vger.kernel.org
6373 S:      Maintained
6374 F:      drivers/infiniband/hw/hns/
6375 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6376
6377 HISILICON SAS Controller
6378 M:      John Garry <john.garry@huawei.com>
6379 W:      http://www.hisilicon.com
6380 S:      Supported
6381 F:      drivers/scsi/hisi_sas/
6382 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6383
6384 HMM - Heterogeneous Memory Management
6385 M:      Jérôme Glisse <jglisse@redhat.com>
6386 L:      linux-mm@kvack.org
6387 S:      Maintained
6388 F:      mm/hmm*
6389 F:      include/linux/hmm*
6390
6391 HOST AP DRIVER
6392 M:      Jouni Malinen <j@w1.fi>
6393 L:      linux-wireless@vger.kernel.org
6394 W:      http://w1.fi/hostap-driver.html
6395 S:      Obsolete
6396 F:      drivers/net/wireless/intersil/hostap/
6397
6398 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6399 L:      platform-driver-x86@vger.kernel.org
6400 S:      Orphan
6401 F:      drivers/platform/x86/tc1100-wmi.c
6402
6403 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6404 M:      Jaroslav Kysela <perex@perex.cz>
6405 S:      Maintained
6406 F:      drivers/net/ethernet/hp/hp100.*
6407
6408 HPET:   High Precision Event Timers driver
6409 M:      Clemens Ladisch <clemens@ladisch.de>
6410 S:      Maintained
6411 F:      Documentation/timers/hpet.txt
6412 F:      drivers/char/hpet.c
6413 F:      include/linux/hpet.h
6414 F:      include/uapi/linux/hpet.h
6415
6416 HPET:   x86
6417 S:      Orphan
6418 F:      arch/x86/kernel/hpet.c
6419 F:      arch/x86/include/asm/hpet.h
6420
6421 HPFS FILESYSTEM
6422 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6423 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6424 S:      Maintained
6425 F:      fs/hpfs/
6426
6427 HSI SUBSYSTEM
6428 M:      Sebastian Reichel <sre@kernel.org>
6429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6430 S:      Maintained
6431 F:      Documentation/ABI/testing/sysfs-bus-hsi
6432 F:      Documentation/driver-api/hsi.rst
6433 F:      drivers/hsi/
6434 F:      include/linux/hsi/
6435 F:      include/uapi/linux/hsi/
6436
6437 HSO 3G MODEM DRIVER
6438 L:      linux-usb@vger.kernel.org
6439 S:      Orphan
6440 F:      drivers/net/usb/hso.c
6441
6442 HSR NETWORK PROTOCOL
6443 M:      Arvid Brodin <arvid.brodin@alten.se>
6444 L:      netdev@vger.kernel.org
6445 S:      Maintained
6446 F:      net/hsr/
6447
6448 HT16K33 LED CONTROLLER DRIVER
6449 M:      Robin van der Gracht <robin@protonic.nl>
6450 S:      Maintained
6451 F:      drivers/auxdisplay/ht16k33.c
6452 F:      Documentation/devicetree/bindings/display/ht16k33.txt
6453
6454 HTCPEN TOUCHSCREEN DRIVER
6455 M:      Pau Oliva Fora <pof@eslack.org>
6456 L:      linux-input@vger.kernel.org
6457 S:      Maintained
6458 F:      drivers/input/touchscreen/htcpen.c
6459
6460 HUAWEI ETHERNET DRIVER
6461 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
6462 L:      netdev@vger.kernel.org
6463 S:      Supported
6464 F:      Documentation/networking/hinic.txt
6465 F:      drivers/net/ethernet/huawei/hinic/
6466
6467 HUGETLB FILESYSTEM
6468 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
6469 S:      Maintained
6470 F:      fs/hugetlbfs/
6471
6472 HVA ST MEDIA DRIVER
6473 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6474 L:      linux-media@vger.kernel.org
6475 T:      git git://linuxtv.org/media_tree.git
6476 W:      https://linuxtv.org
6477 S:      Supported
6478 F:      drivers/media/platform/sti/hva
6479
6480 HWPOISON MEMORY FAILURE HANDLING
6481 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6482 L:      linux-mm@kvack.org
6483 S:      Maintained
6484 F:      mm/memory-failure.c
6485 F:      mm/hwpoison-inject.c
6486
6487 Hyper-V CORE AND DRIVERS
6488 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6489 M:      Haiyang Zhang <haiyangz@microsoft.com>
6490 M:      Stephen Hemminger <sthemmin@microsoft.com>
6491 L:      devel@linuxdriverproject.org
6492 S:      Maintained
6493 F:      Documentation/networking/netvsc.txt
6494 F:      arch/x86/include/asm/mshyperv.h
6495 F:      arch/x86/include/asm/trace/hyperv.h
6496 F:      arch/x86/include/uapi/asm/hyperv.h
6497 F:      arch/x86/kernel/cpu/mshyperv.c
6498 F:      arch/x86/hyperv
6499 F:      drivers/hid/hid-hyperv.c
6500 F:      drivers/hv/
6501 F:      drivers/input/serio/hyperv-keyboard.c
6502 F:      drivers/pci/host/pci-hyperv.c
6503 F:      drivers/net/hyperv/
6504 F:      drivers/scsi/storvsc_drv.c
6505 F:      drivers/uio/uio_hv_generic.c
6506 F:      drivers/video/fbdev/hyperv_fb.c
6507 F:      net/vmw_vsock/hyperv_transport.c
6508 F:      include/linux/hyperv.h
6509 F:      include/uapi/linux/hyperv.h
6510 F:      tools/hv/
6511 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6512
6513 HYPERVISOR VIRTUAL CONSOLE DRIVER
6514 L:      linuxppc-dev@lists.ozlabs.org
6515 S:      Odd Fixes
6516 F:      drivers/tty/hvc/
6517
6518 I2C ACPI SUPPORT
6519 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6520 L:      linux-i2c@vger.kernel.org
6521 L:      linux-acpi@vger.kernel.org
6522 S:      Maintained
6523 F:      drivers/i2c/i2c-core-acpi.c
6524
6525 I2C MUXES
6526 M:      Peter Rosin <peda@axentia.se>
6527 L:      linux-i2c@vger.kernel.org
6528 S:      Maintained
6529 F:      Documentation/i2c/i2c-topology
6530 F:      Documentation/i2c/muxes/
6531 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6532 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6533 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6534 F:      drivers/i2c/i2c-mux.c
6535 F:      drivers/i2c/muxes/
6536 F:      include/linux/i2c-mux.h
6537
6538 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
6539 M:      Gregory CLEMENT <gregory.clement@free-electrons.com>
6540 L:      linux-i2c@vger.kernel.org
6541 S:      Maintained
6542 F:      drivers/i2c/busses/i2c-mv64xxx.c
6543
6544 I2C OVER PARALLEL PORT
6545 M:      Jean Delvare <jdelvare@suse.com>
6546 L:      linux-i2c@vger.kernel.org
6547 S:      Maintained
6548 F:      Documentation/i2c/busses/i2c-parport
6549 F:      Documentation/i2c/busses/i2c-parport-light
6550 F:      drivers/i2c/busses/i2c-parport.c
6551 F:      drivers/i2c/busses/i2c-parport-light.c
6552
6553 I2C SUBSYSTEM
6554 M:      Wolfram Sang <wsa@the-dreams.de>
6555 L:      linux-i2c@vger.kernel.org
6556 W:      https://i2c.wiki.kernel.org/
6557 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6559 S:      Maintained
6560 F:      Documentation/devicetree/bindings/i2c/
6561 F:      Documentation/i2c/
6562 F:      drivers/i2c/
6563 F:      drivers/i2c/*/
6564 F:      include/linux/i2c.h
6565 F:      include/linux/i2c-*.h
6566 F:      include/uapi/linux/i2c.h
6567 F:      include/uapi/linux/i2c-*.h
6568
6569 I2C-TAOS-EVM DRIVER
6570 M:      Jean Delvare <jdelvare@suse.com>
6571 L:      linux-i2c@vger.kernel.org
6572 S:      Maintained
6573 F:      Documentation/i2c/busses/i2c-taos-evm
6574 F:      drivers/i2c/busses/i2c-taos-evm.c
6575
6576 I2C-TINY-USB DRIVER
6577 M:      Till Harbaum <till@harbaum.org>
6578 L:      linux-i2c@vger.kernel.org
6579 W:      http://www.harbaum.org/till/i2c_tiny_usb
6580 S:      Maintained
6581 F:      drivers/i2c/busses/i2c-tiny-usb.c
6582
6583 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6584 M:      Jean Delvare <jdelvare@suse.com>
6585 L:      linux-i2c@vger.kernel.org
6586 S:      Maintained
6587 F:      Documentation/i2c/busses/i2c-ali1535
6588 F:      Documentation/i2c/busses/i2c-ali1563
6589 F:      Documentation/i2c/busses/i2c-ali15x3
6590 F:      Documentation/i2c/busses/i2c-amd756
6591 F:      Documentation/i2c/busses/i2c-amd8111
6592 F:      Documentation/i2c/busses/i2c-i801
6593 F:      Documentation/i2c/busses/i2c-nforce2
6594 F:      Documentation/i2c/busses/i2c-piix4
6595 F:      Documentation/i2c/busses/i2c-sis5595
6596 F:      Documentation/i2c/busses/i2c-sis630
6597 F:      Documentation/i2c/busses/i2c-sis96x
6598 F:      Documentation/i2c/busses/i2c-via
6599 F:      Documentation/i2c/busses/i2c-viapro
6600 F:      drivers/i2c/busses/i2c-ali1535.c
6601 F:      drivers/i2c/busses/i2c-ali1563.c
6602 F:      drivers/i2c/busses/i2c-ali15x3.c
6603 F:      drivers/i2c/busses/i2c-amd756.c
6604 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6605 F:      drivers/i2c/busses/i2c-amd8111.c
6606 F:      drivers/i2c/busses/i2c-i801.c
6607 F:      drivers/i2c/busses/i2c-isch.c
6608 F:      drivers/i2c/busses/i2c-nforce2.c
6609 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6610 F:      drivers/i2c/busses/i2c-piix4.c
6611 F:      drivers/i2c/busses/i2c-sis5595.c
6612 F:      drivers/i2c/busses/i2c-sis630.c
6613 F:      drivers/i2c/busses/i2c-sis96x.c
6614 F:      drivers/i2c/busses/i2c-via.c
6615 F:      drivers/i2c/busses/i2c-viapro.c
6616
6617 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6618 M:      Hans de Goede <hdegoede@redhat.com>
6619 L:      linux-i2c@vger.kernel.org
6620 S:      Maintained
6621 F:      drivers/i2c/busses/i2c-cht-wc.c
6622
6623 I2C/SMBUS ISMT DRIVER
6624 M:      Seth Heasley <seth.heasley@intel.com>
6625 M:      Neil Horman <nhorman@tuxdriver.com>
6626 L:      linux-i2c@vger.kernel.org
6627 F:      drivers/i2c/busses/i2c-ismt.c
6628 F:      Documentation/i2c/busses/i2c-ismt
6629
6630 I2C/SMBUS STUB DRIVER
6631 M:      Jean Delvare <jdelvare@suse.com>
6632 L:      linux-i2c@vger.kernel.org
6633 S:      Maintained
6634 F:      drivers/i2c/i2c-stub.c
6635
6636 IA64 (Itanium) PLATFORM
6637 M:      Tony Luck <tony.luck@intel.com>
6638 M:      Fenghua Yu <fenghua.yu@intel.com>
6639 L:      linux-ia64@vger.kernel.org
6640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6641 S:      Maintained
6642 F:      arch/ia64/
6643
6644 IBM Power 842 compression accelerator
6645 M:      Haren Myneni <haren@us.ibm.com>
6646 S:      Supported
6647 F:      drivers/crypto/nx/Makefile
6648 F:      drivers/crypto/nx/Kconfig
6649 F:      drivers/crypto/nx/nx-842*
6650 F:      include/linux/sw842.h
6651 F:      crypto/842.c
6652 F:      lib/842/
6653
6654 IBM Power in-Nest Crypto Acceleration
6655 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6656 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6657 L:      linux-crypto@vger.kernel.org
6658 S:      Supported
6659 F:      drivers/crypto/nx/Makefile
6660 F:      drivers/crypto/nx/Kconfig
6661 F:      drivers/crypto/nx/nx-aes*
6662 F:      drivers/crypto/nx/nx-sha*
6663 F:      drivers/crypto/nx/nx.*
6664 F:      drivers/crypto/nx/nx_csbcpb.h
6665 F:      drivers/crypto/nx/nx_debugfs.h
6666
6667 IBM Power Linux RAID adapter
6668 M:      Brian King <brking@us.ibm.com>
6669 S:      Supported
6670 F:      drivers/scsi/ipr.*
6671
6672 IBM Power SRIOV Virtual NIC Device Driver
6673 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6674 M:      John Allen <jallen@linux.vnet.ibm.com>
6675 L:      netdev@vger.kernel.org
6676 S:      Supported
6677 F:      drivers/net/ethernet/ibm/ibmvnic.*
6678
6679 IBM Power Virtual Accelerator Switchboard
6680 M:      Sukadev Bhattiprolu
6681 L:      linuxppc-dev@lists.ozlabs.org
6682 S:      Supported
6683 F:      arch/powerpc/platforms/powernv/vas*
6684 F:      arch/powerpc/platforms/powernv/copy-paste.h
6685 F:      arch/powerpc/include/asm/vas.h
6686 F:      arch/powerpc/include/uapi/asm/vas.h
6687
6688 IBM Power Virtual Ethernet Device Driver
6689 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6690 L:      netdev@vger.kernel.org
6691 S:      Supported
6692 F:      drivers/net/ethernet/ibm/ibmveth.*
6693
6694 IBM Power Virtual FC Device Drivers
6695 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6696 L:      linux-scsi@vger.kernel.org
6697 S:      Supported
6698 F:      drivers/scsi/ibmvscsi/ibmvfc*
6699
6700 IBM Power Virtual SCSI Device Drivers
6701 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6702 L:      linux-scsi@vger.kernel.org
6703 S:      Supported
6704 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6705 F:      include/scsi/viosrp.h
6706
6707 IBM Power Virtual SCSI Device Target Driver
6708 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6709 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6710 L:      linux-scsi@vger.kernel.org
6711 L:      target-devel@vger.kernel.org
6712 S:      Supported
6713 F:      drivers/scsi/ibmvscsi_tgt/
6714
6715 IBM Power VMX Cryptographic instructions
6716 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6717 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6718 L:      linux-crypto@vger.kernel.org
6719 S:      Supported
6720 F:      drivers/crypto/vmx/Makefile
6721 F:      drivers/crypto/vmx/Kconfig
6722 F:      drivers/crypto/vmx/vmx.c
6723 F:      drivers/crypto/vmx/aes*
6724 F:      drivers/crypto/vmx/ghash*
6725 F:      drivers/crypto/vmx/ppc-xlate.pl
6726
6727 IBM ServeRAID RAID DRIVER
6728 S:      Orphan
6729 F:      drivers/scsi/ips.*
6730
6731 ICH LPC AND GPIO DRIVER
6732 M:      Peter Tyser <ptyser@xes-inc.com>
6733 S:      Maintained
6734 F:      drivers/mfd/lpc_ich.c
6735 F:      drivers/gpio/gpio-ich.c
6736
6737 IDE SUBSYSTEM
6738 M:      "David S. Miller" <davem@davemloft.net>
6739 L:      linux-ide@vger.kernel.org
6740 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6742 S:      Maintained
6743 F:      Documentation/ide/
6744 F:      drivers/ide/
6745 F:      include/linux/ide.h
6746
6747 IDE/ATAPI DRIVERS
6748 M:      Borislav Petkov <bp@alien8.de>
6749 L:      linux-ide@vger.kernel.org
6750 S:      Maintained
6751 F:      Documentation/cdrom/ide-cd
6752 F:      drivers/ide/ide-cd*
6753
6754 IDEAPAD LAPTOP EXTRAS DRIVER
6755 M:      Ike Panhc <ike.pan@canonical.com>
6756 L:      platform-driver-x86@vger.kernel.org
6757 W:      http://launchpad.net/ideapad-laptop
6758 S:      Maintained
6759 F:      drivers/platform/x86/ideapad-laptop.c
6760
6761 IDEAPAD LAPTOP SLIDEBAR DRIVER
6762 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6763 L:      linux-input@vger.kernel.org
6764 W:      https://github.com/o2genum/ideapad-slidebar
6765 S:      Maintained
6766 F:      drivers/input/misc/ideapad_slidebar.c
6767
6768 IDT VersaClock 5 CLOCK DRIVER
6769 M:      Marek Vasut <marek.vasut@gmail.com>
6770 S:      Maintained
6771 F:      drivers/clk/clk-versaclock5.c
6772
6773 IEEE 802.15.4 SUBSYSTEM
6774 M:      Alexander Aring <alex.aring@gmail.com>
6775 M:      Stefan Schmidt <stefan@osg.samsung.com>
6776 L:      linux-wpan@vger.kernel.org
6777 W:      http://wpan.cakelab.org/
6778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6780 S:      Maintained
6781 F:      net/ieee802154/
6782 F:      net/mac802154/
6783 F:      drivers/net/ieee802154/
6784 F:      include/linux/nl802154.h
6785 F:      include/linux/ieee802154.h
6786 F:      include/net/nl802154.h
6787 F:      include/net/mac802154.h
6788 F:      include/net/af_ieee802154.h
6789 F:      include/net/cfg802154.h
6790 F:      include/net/ieee802154_netdev.h
6791 F:      Documentation/networking/ieee802154.txt
6792
6793 IFE PROTOCOL
6794 M:      Yotam Gigi <yotam.gi@gmail.com>
6795 M:      Jamal Hadi Salim <jhs@mojatatu.com>
6796 F:      net/ife
6797 F:      include/net/ife.h
6798 F:      include/uapi/linux/ife.h
6799
6800 IGORPLUG-USB IR RECEIVER
6801 M:      Sean Young <sean@mess.org>
6802 L:      linux-media@vger.kernel.org
6803 S:      Maintained
6804 F:      drivers/media/rc/igorplugusb.c
6805
6806 IGUANAWORKS USB IR TRANSCEIVER
6807 M:      Sean Young <sean@mess.org>
6808 L:      linux-media@vger.kernel.org
6809 S:      Maintained
6810 F:      drivers/media/rc/iguanair.c
6811
6812 IIO DIGITAL POTENTIOMETER DAC
6813 M:      Peter Rosin <peda@axentia.se>
6814 L:      linux-iio@vger.kernel.org
6815 S:      Maintained
6816 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6817 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6818 F:      drivers/iio/dac/dpot-dac.c
6819
6820 IIO ENVELOPE DETECTOR
6821 M:      Peter Rosin <peda@axentia.se>
6822 L:      linux-iio@vger.kernel.org
6823 S:      Maintained
6824 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6825 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6826 F:      drivers/iio/adc/envelope-detector.c
6827
6828 IIO MULTIPLEXER
6829 M:      Peter Rosin <peda@axentia.se>
6830 L:      linux-iio@vger.kernel.org
6831 S:      Maintained
6832 F:      Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6833 F:      drivers/iio/multiplexer/iio-mux.c
6834
6835 IIO SUBSYSTEM AND DRIVERS
6836 M:      Jonathan Cameron <jic23@kernel.org>
6837 R:      Hartmut Knaack <knaack.h@gmx.de>
6838 R:      Lars-Peter Clausen <lars@metafoo.de>
6839 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6840 L:      linux-iio@vger.kernel.org
6841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6842 S:      Maintained
6843 F:      Documentation/ABI/testing/configfs-iio*
6844 F:      Documentation/ABI/testing/sysfs-bus-iio*
6845 F:      Documentation/devicetree/bindings/iio/
6846 F:      drivers/iio/
6847 F:      drivers/staging/iio/
6848 F:      include/linux/iio/
6849 F:      tools/iio/
6850
6851 IKANOS/ADI EAGLE ADSL USB DRIVER
6852 M:      Matthieu Castet <castet.matthieu@free.fr>
6853 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6854 S:      Maintained
6855 F:      drivers/usb/atm/ueagle-atm.c
6856
6857 IMGTEC ASCII LCD DRIVER
6858 M:      Paul Burton <paul.burton@mips.com>
6859 S:      Maintained
6860 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6861 F:      drivers/auxdisplay/img-ascii-lcd.c
6862
6863 IMGTEC IR DECODER DRIVER
6864 M:      James Hogan <jhogan@kernel.org>
6865 S:      Maintained
6866 F:      drivers/media/rc/img-ir/
6867
6868 IMS TWINTURBO FRAMEBUFFER DRIVER
6869 L:      linux-fbdev@vger.kernel.org
6870 S:      Orphan
6871 F:      drivers/video/fbdev/imsttfb.c
6872
6873 INA209 HARDWARE MONITOR DRIVER
6874 M:      Guenter Roeck <linux@roeck-us.net>
6875 L:      linux-hwmon@vger.kernel.org
6876 S:      Maintained
6877 F:      Documentation/hwmon/ina209
6878 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6879 F:      drivers/hwmon/ina209.c
6880
6881 INA2XX HARDWARE MONITOR DRIVER
6882 M:      Guenter Roeck <linux@roeck-us.net>
6883 L:      linux-hwmon@vger.kernel.org
6884 S:      Maintained
6885 F:      Documentation/hwmon/ina2xx
6886 F:      drivers/hwmon/ina2xx.c
6887 F:      include/linux/platform_data/ina2xx.h
6888
6889 INDUSTRY PACK SUBSYSTEM (IPACK)
6890 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6891 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6892 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6893 L:      industrypack-devel@lists.sourceforge.net
6894 W:      http://industrypack.sourceforge.net
6895 S:      Maintained
6896 F:      drivers/ipack/
6897
6898 INFINIBAND SUBSYSTEM
6899 M:      Doug Ledford <dledford@redhat.com>
6900 M:      Jason Gunthorpe <jgg@mellanox.com>
6901 L:      linux-rdma@vger.kernel.org
6902 W:      https://github.com/linux-rdma/rdma-core
6903 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
6905 S:      Supported
6906 F:      Documentation/devicetree/bindings/infiniband/
6907 F:      Documentation/infiniband/
6908 F:      drivers/infiniband/
6909 F:      include/uapi/linux/if_infiniband.h
6910 F:      include/uapi/rdma/
6911 F:      include/rdma/
6912
6913 INGENIC JZ4780 DMA Driver
6914 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6915 S:      Maintained
6916 F:      drivers/dma/dma-jz4780.c
6917
6918 INGENIC JZ4780 NAND DRIVER
6919 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6920 L:      linux-mtd@lists.infradead.org
6921 S:      Maintained
6922 F:      drivers/mtd/nand/jz4780_*
6923
6924 INOTIFY
6925 M:      Jan Kara <jack@suse.cz>
6926 R:      Amir Goldstein <amir73il@gmail.com>
6927 L:      linux-fsdevel@vger.kernel.org
6928 S:      Maintained
6929 F:      Documentation/filesystems/inotify.txt
6930 F:      fs/notify/inotify/
6931 F:      include/linux/inotify.h
6932 F:      include/uapi/linux/inotify.h
6933
6934 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6935 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6936 L:      linux-input@vger.kernel.org
6937 Q:      http://patchwork.kernel.org/project/linux-input/list/
6938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6939 S:      Maintained
6940 F:      drivers/input/
6941 F:      include/linux/input.h
6942 F:      include/uapi/linux/input.h
6943 F:      include/uapi/linux/input-event-codes.h
6944 F:      include/linux/input/
6945 F:      Documentation/devicetree/bindings/input/
6946 F:      Documentation/input/
6947
6948 INPUT MULTITOUCH (MT) PROTOCOL
6949 M:      Henrik Rydberg <rydberg@bitmath.org>
6950 L:      linux-input@vger.kernel.org
6951 S:      Odd fixes
6952 F:      Documentation/input/multi-touch-protocol.rst
6953 F:      drivers/input/input-mt.c
6954 K:      \b(ABS|SYN)_MT_
6955
6956 INSIDE SECURE CRYPTO DRIVER
6957 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
6958 F:      drivers/crypto/inside-secure/
6959 S:      Maintained
6960 L:      linux-crypto@vger.kernel.org
6961
6962 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6963 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6964 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6965 L:      linux-integrity@vger.kernel.org
6966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6967 S:      Supported
6968 F:      security/integrity/ima/
6969
6970 INTEL 810/815 FRAMEBUFFER DRIVER
6971 M:      Antonino Daplas <adaplas@gmail.com>
6972 L:      linux-fbdev@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/video/fbdev/i810/
6975
6976 INTEL ASoC BDW/HSW DRIVERS
6977 M:      Jie Yang <yang.jie@linux.intel.com>
6978 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6979 S:      Supported
6980 F:      sound/soc/intel/common/sst-dsp*
6981 F:      sound/soc/intel/common/sst-firmware.c
6982 F:      sound/soc/intel/boards/broadwell.c
6983 F:      sound/soc/intel/haswell/
6984
6985 INTEL C600 SERIES SAS CONTROLLER DRIVER
6986 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
6987 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6988 L:      linux-scsi@vger.kernel.org
6989 T:      git git://git.code.sf.net/p/intel-sas/isci
6990 S:      Supported
6991 F:      drivers/scsi/isci/
6992
6993 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
6994 M:      Jani Nikula <jani.nikula@linux.intel.com>
6995 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
6996 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
6997 L:      intel-gfx@lists.freedesktop.org
6998 W:      https://01.org/linuxgraphics/
6999 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
7000 C:      irc://chat.freenode.net/intel-gfx
7001 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
7002 T:      git git://anongit.freedesktop.org/drm-intel
7003 S:      Supported
7004 F:      drivers/gpu/drm/i915/
7005 F:      include/drm/i915*
7006 F:      include/uapi/drm/i915_drm.h
7007 F:      Documentation/gpu/i915.rst
7008
7009 INTEL ETHERNET DRIVERS
7010 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7011 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7012 W:      http://www.intel.com/support/feedback.htm
7013 W:      http://e1000.sourceforge.net/
7014 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7017 S:      Supported
7018 F:      Documentation/networking/e100.txt
7019 F:      Documentation/networking/e1000.txt
7020 F:      Documentation/networking/e1000e.txt
7021 F:      Documentation/networking/igb.txt
7022 F:      Documentation/networking/igbvf.txt
7023 F:      Documentation/networking/ixgb.txt
7024 F:      Documentation/networking/ixgbe.txt
7025 F:      Documentation/networking/ixgbevf.txt
7026 F:      Documentation/networking/i40e.txt
7027 F:      Documentation/networking/i40evf.txt
7028 F:      drivers/net/ethernet/intel/
7029 F:      drivers/net/ethernet/intel/*/
7030 F:      include/linux/avf/virtchnl.h
7031
7032 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7033 M:      Maik Broemme <mbroemme@libmpq.org>
7034 L:      linux-fbdev@vger.kernel.org
7035 S:      Maintained
7036 F:      Documentation/fb/intelfb.txt
7037 F:      drivers/video/fbdev/intelfb/
7038
7039 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7040 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7041 M:      Zhi Wang <zhi.a.wang@intel.com>
7042 L:      intel-gvt-dev@lists.freedesktop.org
7043 L:      intel-gfx@lists.freedesktop.org
7044 W:      https://01.org/igvt-g
7045 T:      git https://github.com/intel/gvt-linux.git
7046 S:      Supported
7047 F:      drivers/gpu/drm/i915/gvt/
7048
7049 INTEL HID EVENT DRIVER
7050 M:      Alex Hung <alex.hung@canonical.com>
7051 L:      platform-driver-x86@vger.kernel.org
7052 S:      Maintained
7053 F:      drivers/platform/x86/intel-hid.c
7054
7055 INTEL I/OAT DMA DRIVER
7056 M:      Dave Jiang <dave.jiang@intel.com>
7057 R:      Dan Williams <dan.j.williams@intel.com>
7058 L:      dmaengine@vger.kernel.org
7059 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7060 S:      Supported
7061 F:      drivers/dma/ioat*
7062
7063 INTEL IDLE DRIVER
7064 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7065 M:      Len Brown <lenb@kernel.org>
7066 L:      linux-pm@vger.kernel.org
7067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7068 B:      https://bugzilla.kernel.org
7069 S:      Supported
7070 F:      drivers/idle/intel_idle.c
7071
7072 INTEL INTEGRATED SENSOR HUB DRIVER
7073 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7074 M:      Jiri Kosina <jikos@kernel.org>
7075 L:      linux-input@vger.kernel.org
7076 S:      Maintained
7077 F:      drivers/hid/intel-ish-hid/
7078
7079 INTEL IOMMU (VT-d)
7080 M:      David Woodhouse <dwmw2@infradead.org>
7081 L:      iommu@lists.linux-foundation.org
7082 T:      git git://git.infradead.org/iommu-2.6.git
7083 S:      Supported
7084 F:      drivers/iommu/intel-iommu.c
7085 F:      include/linux/intel-iommu.h
7086
7087 INTEL IOP-ADMA DMA DRIVER
7088 R:      Dan Williams <dan.j.williams@intel.com>
7089 S:      Odd fixes
7090 F:      drivers/dma/iop-adma.c
7091
7092 INTEL IPU3 CSI-2 CIO2 DRIVER
7093 M:      Yong Zhi <yong.zhi@intel.com>
7094 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7095 L:      linux-media@vger.kernel.org
7096 S:      Maintained
7097 F:      drivers/media/pci/intel/ipu3/
7098 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7099
7100 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7101 M:      Krzysztof Halasa <khalasa@piap.pl>
7102 S:      Maintained
7103 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7104 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7105 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7106 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7107 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7108 F:      drivers/net/wan/ixp4xx_hss.c
7109
7110 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7111 M:      Deepak Saxena <dsaxena@plexity.net>
7112 S:      Maintained
7113 F:      drivers/char/hw_random/ixp4xx-rng.c
7114
7115 INTEL MANAGEMENT ENGINE (mei)
7116 M:      Tomas Winkler <tomas.winkler@intel.com>
7117 L:      linux-kernel@vger.kernel.org
7118 S:      Supported
7119 F:      include/uapi/linux/mei.h
7120 F:      include/linux/mei_cl_bus.h
7121 F:      drivers/misc/mei/*
7122 F:      drivers/watchdog/mei_wdt.c
7123 F:      Documentation/misc-devices/mei/*
7124 F:      samples/mei/*
7125
7126 INTEL MENLOW THERMAL DRIVER
7127 M:      Sujith Thomas <sujith.thomas@intel.com>
7128 L:      platform-driver-x86@vger.kernel.org
7129 W:      https://01.org/linux-acpi
7130 S:      Supported
7131 F:      drivers/platform/x86/intel_menlow.c
7132
7133 INTEL MERRIFIELD GPIO DRIVER
7134 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7135 L:      linux-gpio@vger.kernel.org
7136 S:      Maintained
7137 F:      drivers/gpio/gpio-merrifield.c
7138
7139 INTEL MIC DRIVERS (mic)
7140 M:      Sudeep Dutt <sudeep.dutt@intel.com>
7141 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
7142 S:      Supported
7143 W:      https://github.com/sudeepdutt/mic
7144 W:      http://software.intel.com/en-us/mic-developer
7145 F:      include/linux/mic_bus.h
7146 F:      include/linux/scif.h
7147 F:      include/uapi/linux/mic_common.h
7148 F:      include/uapi/linux/mic_ioctl.h
7149 F:      include/uapi/linux/scif_ioctl.h
7150 F:      drivers/misc/mic/
7151 F:      drivers/dma/mic_x100_dma.c
7152 F:      drivers/dma/mic_x100_dma.h
7153 F:      Documentation/mic/
7154
7155 INTEL PMC CORE DRIVER
7156 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7157 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7158 L:      platform-driver-x86@vger.kernel.org
7159 S:      Maintained
7160 F:      arch/x86/include/asm/pmc_core.h
7161 F:      drivers/platform/x86/intel_pmc_core*
7162
7163 INTEL PMC/P-Unit IPC DRIVER
7164 M:      Zha Qipeng<qipeng.zha@intel.com>
7165 L:      platform-driver-x86@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/platform/x86/intel_pmc_ipc.c
7168 F:      drivers/platform/x86/intel_punit_ipc.c
7169 F:      arch/x86/include/asm/intel_pmc_ipc.h
7170 F:      arch/x86/include/asm/intel_punit_ipc.h
7171
7172 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7173 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
7174 L:      linux-wireless@vger.kernel.org
7175 S:      Maintained
7176 F:      Documentation/networking/README.ipw2100
7177 F:      Documentation/networking/README.ipw2200
7178 F:      drivers/net/wireless/intel/ipw2x00/
7179
7180 INTEL PSTATE DRIVER
7181 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7182 M:      Len Brown <lenb@kernel.org>
7183 L:      linux-pm@vger.kernel.org
7184 S:      Supported
7185 F:      drivers/cpufreq/intel_pstate.c
7186
7187 INTEL RDMA RNIC DRIVER
7188 M:      Faisal Latif <faisal.latif@intel.com>
7189 M:      Shiraz Saleem <shiraz.saleem@intel.com>
7190 L:      linux-rdma@vger.kernel.org
7191 S:      Supported
7192 F:      drivers/infiniband/hw/i40iw/
7193
7194 INTEL TELEMETRY DRIVER
7195 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7196 L:      platform-driver-x86@vger.kernel.org
7197 S:      Maintained
7198 F:      arch/x86/include/asm/intel_telemetry.h
7199 F:      drivers/platform/x86/intel_telemetry*
7200
7201 INTEL VIRTUAL BUTTON DRIVER
7202 M:      AceLan Kao <acelan.kao@canonical.com>
7203 L:      platform-driver-x86@vger.kernel.org
7204 S:      Maintained
7205 F:      drivers/platform/x86/intel-vbtn.c
7206
7207 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7208 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7209 L:      linux-wireless@vger.kernel.org
7210 S:      Supported
7211 F:      drivers/net/wireless/intel/iwlegacy/
7212
7213 INTEL WIRELESS WIFI LINK (iwlwifi)
7214 M:      Johannes Berg <johannes.berg@intel.com>
7215 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7216 M:      Luca Coelho <luciano.coelho@intel.com>
7217 M:      Intel Linux Wireless <linuxwifi@intel.com>
7218 L:      linux-wireless@vger.kernel.org
7219 W:      http://intellinuxwireless.org
7220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7221 S:      Supported
7222 F:      drivers/net/wireless/intel/iwlwifi/
7223
7224 INTEL WIRELESS WIMAX CONNECTION 2400
7225 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7226 M:      linux-wimax@intel.com
7227 L:      wimax@linuxwimax.org (subscribers-only)
7228 S:      Supported
7229 W:      http://linuxwimax.org
7230 F:      Documentation/wimax/README.i2400m
7231 F:      drivers/net/wimax/i2400m/
7232 F:      include/uapi/linux/wimax/i2400m.h
7233
7234 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7235 M:      Mario Limonciello <mario.limonciello@dell.com>
7236 S:      Maintained
7237 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
7238
7239 INTEL(R) TRACE HUB
7240 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7241 S:      Supported
7242 F:      Documentation/trace/intel_th.txt
7243 F:      drivers/hwtracing/intel_th/
7244
7245 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7246 M:      Ning Sun <ning.sun@intel.com>
7247 L:      tboot-devel@lists.sourceforge.net
7248 W:      http://tboot.sourceforge.net
7249 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7250 S:      Supported
7251 F:      Documentation/intel_txt.txt
7252 F:      include/linux/tboot.h
7253 F:      arch/x86/kernel/tboot.c
7254
7255 INTEL-MID GPIO DRIVER
7256 M:      David Cohen <david.a.cohen@linux.intel.com>
7257 L:      linux-gpio@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/gpio/gpio-intel-mid.c
7260
7261 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7262 M:      Linus Walleij <linus.walleij@linaro.org>
7263 L:      linux-iio@vger.kernel.org
7264 S:      Maintained
7265 F:      drivers/iio/gyro/mpu3050*
7266 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7267
7268 IOC3 ETHERNET DRIVER
7269 M:      Ralf Baechle <ralf@linux-mips.org>
7270 L:      linux-mips@linux-mips.org
7271 S:      Maintained
7272 F:      drivers/net/ethernet/sgi/ioc3-eth.c
7273
7274 IOC3 SERIAL DRIVER
7275 M:      Pat Gefre <pfg@sgi.com>
7276 L:      linux-serial@vger.kernel.org
7277 S:      Maintained
7278 F:      drivers/tty/serial/ioc3_serial.c
7279
7280 IOMMU DRIVERS
7281 M:      Joerg Roedel <joro@8bytes.org>
7282 L:      iommu@lists.linux-foundation.org
7283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7284 S:      Maintained
7285 F:      Documentation/devicetree/bindings/iommu/
7286 F:      drivers/iommu/
7287 F:      include/linux/iommu.h
7288 F:      include/linux/iova.h
7289
7290 IP MASQUERADING
7291 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7292 S:      Maintained
7293 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7294
7295 IPMI SUBSYSTEM
7296 M:      Corey Minyard <minyard@acm.org>
7297 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7298 W:      http://openipmi.sourceforge.net/
7299 S:      Supported
7300 F:      Documentation/IPMI.txt
7301 F:      drivers/char/ipmi/
7302 F:      include/linux/ipmi*
7303 F:      include/uapi/linux/ipmi*
7304
7305 IPS SCSI RAID DRIVER
7306 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7307 L:      linux-scsi@vger.kernel.org
7308 W:      http://www.adaptec.com/
7309 S:      Maintained
7310 F:      drivers/scsi/ips*
7311
7312 IPVS
7313 M:      Wensong Zhang <wensong@linux-vs.org>
7314 M:      Simon Horman <horms@verge.net.au>
7315 M:      Julian Anastasov <ja@ssi.bg>
7316 L:      netdev@vger.kernel.org
7317 L:      lvs-devel@vger.kernel.org
7318 S:      Maintained
7319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7321 F:      Documentation/networking/ipvs-sysctl.txt
7322 F:      include/net/ip_vs.h
7323 F:      include/uapi/linux/ip_vs.h
7324 F:      net/netfilter/ipvs/
7325
7326 IPWIRELESS DRIVER
7327 M:      Jiri Kosina <jikos@kernel.org>
7328 M:      David Sterba <dsterba@suse.com>
7329 S:      Odd Fixes
7330 F:      drivers/tty/ipwireless/
7331
7332 IPX NETWORK LAYER
7333 L:      netdev@vger.kernel.org
7334 S:      Obsolete
7335 F:      include/uapi/linux/ipx.h
7336 F:      drivers/staging/ipx/
7337
7338 IRDA SUBSYSTEM
7339 M:      Samuel Ortiz <samuel@sortiz.org>
7340 L:      irda-users@lists.sourceforge.net (subscribers-only)
7341 L:      netdev@vger.kernel.org
7342 W:      http://irda.sourceforge.net/
7343 S:      Obsolete
7344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7345 F:      Documentation/networking/irda.txt
7346 F:      drivers/staging/irda/
7347
7348 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7349 M:      Marc Zyngier <marc.zyngier@arm.com>
7350 S:      Maintained
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7352 F:      Documentation/IRQ-domain.txt
7353 F:      include/linux/irqdomain.h
7354 F:      kernel/irq/irqdomain.c
7355 F:      kernel/irq/msi.c
7356
7357 IRQ SUBSYSTEM
7358 M:      Thomas Gleixner <tglx@linutronix.de>
7359 L:      linux-kernel@vger.kernel.org
7360 S:      Maintained
7361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7362 F:      kernel/irq/
7363
7364 IRQCHIP DRIVERS
7365 M:      Thomas Gleixner <tglx@linutronix.de>
7366 M:      Jason Cooper <jason@lakedaemon.net>
7367 M:      Marc Zyngier <marc.zyngier@arm.com>
7368 L:      linux-kernel@vger.kernel.org
7369 S:      Maintained
7370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7371 F:      Documentation/devicetree/bindings/interrupt-controller/
7372 F:      drivers/irqchip/
7373
7374 ISA
7375 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7376 S:      Maintained
7377 F:      Documentation/isa.txt
7378 F:      drivers/base/isa.c
7379 F:      include/linux/isa.h
7380
7381 ISA RADIO MODULE
7382 M:      Hans Verkuil <hverkuil@xs4all.nl>
7383 L:      linux-media@vger.kernel.org
7384 T:      git git://linuxtv.org/media_tree.git
7385 W:      https://linuxtv.org
7386 S:      Maintained
7387 F:      drivers/media/radio/radio-isa*
7388
7389 ISAPNP
7390 M:      Jaroslav Kysela <perex@perex.cz>
7391 S:      Maintained
7392 F:      Documentation/isapnp.txt
7393 F:      drivers/pnp/isapnp/
7394 F:      include/linux/isapnp.h
7395
7396 ISCSI
7397 M:      Lee Duncan <lduncan@suse.com>
7398 M:      Chris Leech <cleech@redhat.com>
7399 L:      open-iscsi@googlegroups.com
7400 W:      www.open-iscsi.com
7401 S:      Maintained
7402 F:      drivers/scsi/*iscsi*
7403 F:      include/scsi/*iscsi*
7404
7405 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7406 M:      Peter Jones <pjones@redhat.com>
7407 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7408 S:      Maintained
7409 F:      drivers/firmware/iscsi_ibft*
7410
7411 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7412 M:      Or Gerlitz <ogerlitz@mellanox.com>
7413 M:      Sagi Grimberg <sagi@grimberg.me>
7414 M:      Roi Dayan <roid@mellanox.com>
7415 L:      linux-rdma@vger.kernel.org
7416 S:      Supported
7417 W:      http://www.openfabrics.org
7418 W:      www.open-iscsi.org
7419 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7420 F:      drivers/infiniband/ulp/iser/
7421
7422 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7423 M:      Sagi Grimberg <sagi@grimberg.me>
7424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7425 L:      linux-rdma@vger.kernel.org
7426 L:      target-devel@vger.kernel.org
7427 S:      Supported
7428 W:      http://www.linux-iscsi.org
7429 F:      drivers/infiniband/ulp/isert
7430
7431 ISDN SUBSYSTEM
7432 M:      Karsten Keil <isdn@linux-pingi.de>
7433 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7434 L:      netdev@vger.kernel.org
7435 W:      http://www.isdn4linux.de
7436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7437 S:      Maintained
7438 F:      Documentation/isdn/
7439 F:      drivers/isdn/
7440 F:      include/linux/isdn.h
7441 F:      include/linux/isdn/
7442 F:      include/uapi/linux/isdn.h
7443 F:      include/uapi/linux/isdn/
7444
7445 ISDN SUBSYSTEM (Eicon active card driver)
7446 M:      Armin Schindler <mac@melware.de>
7447 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7448 W:      http://www.melware.de
7449 S:      Maintained
7450 F:      drivers/isdn/hardware/eicon/
7451
7452 IT87 HARDWARE MONITORING DRIVER
7453 M:      Jean Delvare <jdelvare@suse.com>
7454 L:      linux-hwmon@vger.kernel.org
7455 S:      Maintained
7456 F:      Documentation/hwmon/it87
7457 F:      drivers/hwmon/it87.c
7458
7459 IT913X MEDIA DRIVER
7460 M:      Antti Palosaari <crope@iki.fi>
7461 L:      linux-media@vger.kernel.org
7462 W:      https://linuxtv.org
7463 W:      http://palosaari.fi/linux/
7464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7465 T:      git git://linuxtv.org/anttip/media_tree.git
7466 S:      Maintained
7467 F:      drivers/media/tuners/it913x*
7468
7469 IVTV VIDEO4LINUX DRIVER
7470 M:      Andy Walls <awalls@md.metrocast.net>
7471 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
7472 L:      linux-media@vger.kernel.org
7473 T:      git git://linuxtv.org/media_tree.git
7474 W:      http://www.ivtvdriver.org
7475 S:      Maintained
7476 F:      Documentation/media/v4l-drivers/ivtv*
7477 F:      drivers/media/pci/ivtv/
7478 F:      include/uapi/linux/ivtv*
7479
7480 IX2505V MEDIA DRIVER
7481 M:      Malcolm Priestley <tvboxspy@gmail.com>
7482 L:      linux-media@vger.kernel.org
7483 W:      https://linuxtv.org
7484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7485 S:      Maintained
7486 F:      drivers/media/dvb-frontends/ix2505v*
7487
7488 JAILHOUSE HYPERVISOR INTERFACE
7489 M:      Jan Kiszka <jan.kiszka@siemens.com>
7490 L:      jailhouse-dev@googlegroups.com
7491 S:      Maintained
7492 F:      arch/x86/kernel/jailhouse.c
7493 F:      arch/x86/include/asm/jailhouse_para.h
7494
7495 JC42.4 TEMPERATURE SENSOR DRIVER
7496 M:      Guenter Roeck <linux@roeck-us.net>
7497 L:      linux-hwmon@vger.kernel.org
7498 S:      Maintained
7499 F:      drivers/hwmon/jc42.c
7500 F:      Documentation/hwmon/jc42
7501
7502 JFS FILESYSTEM
7503 M:      Dave Kleikamp <shaggy@kernel.org>
7504 L:      jfs-discussion@lists.sourceforge.net
7505 W:      http://jfs.sourceforge.net/
7506 T:      git git://github.com/kleikamp/linux-shaggy.git
7507 S:      Maintained
7508 F:      Documentation/filesystems/jfs.txt
7509 F:      fs/jfs/
7510
7511 JME NETWORK DRIVER
7512 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
7513 L:      netdev@vger.kernel.org
7514 S:      Maintained
7515 F:      drivers/net/ethernet/jme.*
7516
7517 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7518 M:      David Woodhouse <dwmw2@infradead.org>
7519 L:      linux-mtd@lists.infradead.org
7520 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7521 S:      Maintained
7522 F:      fs/jffs2/
7523 F:      include/uapi/linux/jffs2.h
7524
7525 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7526 M:      "Theodore Ts'o" <tytso@mit.edu>
7527 M:      Jan Kara <jack@suse.com>
7528 L:      linux-ext4@vger.kernel.org
7529 S:      Maintained
7530 F:      fs/jbd2/
7531 F:      include/linux/jbd2.h
7532
7533 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7534 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7535 L:      linux-media@vger.kernel.org
7536 S:      Maintained
7537 F:      drivers/media/platform/rcar_jpu.c
7538
7539 JSM Neo PCI based serial card
7540 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7541 L:      linux-serial@vger.kernel.org
7542 S:      Maintained
7543 F:      drivers/tty/serial/jsm/
7544
7545 K10TEMP HARDWARE MONITORING DRIVER
7546 M:      Clemens Ladisch <clemens@ladisch.de>
7547 L:      linux-hwmon@vger.kernel.org
7548 S:      Maintained
7549 F:      Documentation/hwmon/k10temp
7550 F:      drivers/hwmon/k10temp.c
7551
7552 K8TEMP HARDWARE MONITORING DRIVER
7553 M:      Rudolf Marek <r.marek@assembler.cz>
7554 L:      linux-hwmon@vger.kernel.org
7555 S:      Maintained
7556 F:      Documentation/hwmon/k8temp
7557 F:      drivers/hwmon/k8temp.c
7558
7559 KASAN
7560 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
7561 R:      Alexander Potapenko <glider@google.com>
7562 R:      Dmitry Vyukov <dvyukov@google.com>
7563 L:      kasan-dev@googlegroups.com
7564 S:      Maintained
7565 F:      arch/*/include/asm/kasan.h
7566 F:      arch/*/mm/kasan_init*
7567 F:      Documentation/dev-tools/kasan.rst
7568 F:      include/linux/kasan*.h
7569 F:      lib/test_kasan.c
7570 F:      mm/kasan/
7571 F:      scripts/Makefile.kasan
7572
7573 KCONFIG
7574 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
7576 L:      linux-kbuild@vger.kernel.org
7577 S:      Maintained
7578 F:      Documentation/kbuild/kconfig-language.txt
7579 F:      scripts/kconfig/
7580
7581 KDUMP
7582 M:      Dave Young <dyoung@redhat.com>
7583 M:      Baoquan He <bhe@redhat.com>
7584 R:      Vivek Goyal <vgoyal@redhat.com>
7585 L:      kexec@lists.infradead.org
7586 W:      http://lse.sourceforge.net/kdump/
7587 S:      Maintained
7588 F:      Documentation/kdump/
7589
7590 KEENE FM RADIO TRANSMITTER DRIVER
7591 M:      Hans Verkuil <hverkuil@xs4all.nl>
7592 L:      linux-media@vger.kernel.org
7593 T:      git git://linuxtv.org/media_tree.git
7594 W:      https://linuxtv.org
7595 S:      Maintained
7596 F:      drivers/media/radio/radio-keene*
7597
7598 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7599 M:      Ian Kent <raven@themaw.net>
7600 L:      autofs@vger.kernel.org
7601 S:      Maintained
7602 F:      fs/autofs4/
7603
7604 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7605 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7606 M:      Michal Marek <michal.lkml@markovi.net>
7607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7608 L:      linux-kbuild@vger.kernel.org
7609 S:      Maintained
7610 F:      Documentation/kbuild/
7611 F:      Makefile
7612 F:      scripts/Makefile.*
7613 F:      scripts/basic/
7614 F:      scripts/mk*
7615 F:      scripts/package/
7616
7617 KERNEL JANITORS
7618 L:      kernel-janitors@vger.kernel.org
7619 W:      http://kernelnewbies.org/KernelJanitors
7620 S:      Odd Fixes
7621
7622 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7623 M:      "J. Bruce Fields" <bfields@fieldses.org>
7624 M:      Jeff Layton <jlayton@kernel.org>
7625 L:      linux-nfs@vger.kernel.org
7626 W:      http://nfs.sourceforge.net/
7627 T:      git git://linux-nfs.org/~bfields/linux.git
7628 S:      Supported
7629 F:      fs/nfsd/
7630 F:      include/uapi/linux/nfsd/
7631 F:      fs/lockd/
7632 F:      fs/nfs_common/
7633 F:      net/sunrpc/
7634 F:      include/linux/lockd/
7635 F:      include/linux/sunrpc/
7636 F:      include/uapi/linux/sunrpc/
7637
7638 KERNEL SELFTEST FRAMEWORK
7639 M:      Shuah Khan <shuahkh@osg.samsung.com>
7640 M:      Shuah Khan <shuah@kernel.org>
7641 L:      linux-kselftest@vger.kernel.org
7642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7643 S:      Maintained
7644 F:      tools/testing/selftests/
7645 F:      Documentation/dev-tools/kselftest*
7646
7647 KERNEL USERMODE HELPER
7648 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7649 L:      linux-kernel@vger.kernel.org
7650 S:      Maintained
7651 F:      kernel/umh.c
7652 F:      include/linux/umh.h
7653
7654 KERNEL VIRTUAL MACHINE (KVM)
7655 M:      Paolo Bonzini <pbonzini@redhat.com>
7656 M:      Radim Krčmář <rkrcmar@redhat.com>
7657 L:      kvm@vger.kernel.org
7658 W:      http://www.linux-kvm.org
7659 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7660 S:      Supported
7661 F:      Documentation/virtual/kvm/
7662 F:      include/trace/events/kvm.h
7663 F:      include/uapi/asm-generic/kvm*
7664 F:      include/uapi/linux/kvm*
7665 F:      include/asm-generic/kvm*
7666 F:      include/linux/kvm*
7667 F:      include/kvm/iodev.h
7668 F:      virt/kvm/*
7669 F:      tools/kvm/
7670
7671 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7672 M:      Joerg Roedel <joro@8bytes.org>
7673 L:      kvm@vger.kernel.org
7674 W:      http://www.linux-kvm.org/
7675 S:      Maintained
7676 F:      arch/x86/include/asm/svm.h
7677 F:      arch/x86/kvm/svm.c
7678
7679 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7680 M:      Christoffer Dall <christoffer.dall@linaro.org>
7681 M:      Marc Zyngier <marc.zyngier@arm.com>
7682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7683 L:      kvmarm@lists.cs.columbia.edu
7684 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7686 S:      Supported
7687 F:      arch/arm/include/uapi/asm/kvm*
7688 F:      arch/arm/include/asm/kvm*
7689 F:      arch/arm/kvm/
7690 F:      virt/kvm/arm/
7691 F:      include/kvm/arm_*
7692
7693 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7694 M:      Christoffer Dall <christoffer.dall@linaro.org>
7695 M:      Marc Zyngier <marc.zyngier@arm.com>
7696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7697 L:      kvmarm@lists.cs.columbia.edu
7698 S:      Maintained
7699 F:      arch/arm64/include/uapi/asm/kvm*
7700 F:      arch/arm64/include/asm/kvm*
7701 F:      arch/arm64/kvm/
7702
7703 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7704 M:      James Hogan <jhogan@kernel.org>
7705 L:      linux-mips@linux-mips.org
7706 S:      Supported
7707 F:      arch/mips/include/uapi/asm/kvm*
7708 F:      arch/mips/include/asm/kvm*
7709 F:      arch/mips/kvm/
7710
7711 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7712 M:      Paul Mackerras <paulus@ozlabs.org>
7713 L:      kvm-ppc@vger.kernel.org
7714 W:      http://www.linux-kvm.org/
7715 T:      git git://github.com/agraf/linux-2.6.git
7716 S:      Supported
7717 F:      arch/powerpc/include/uapi/asm/kvm*
7718 F:      arch/powerpc/include/asm/kvm*
7719 F:      arch/powerpc/kvm/
7720 F:      arch/powerpc/kernel/kvm*
7721
7722 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7723 M:      Christian Borntraeger <borntraeger@de.ibm.com>
7724 M:      Janosch Frank <frankja@linux.vnet.ibm.com>
7725 R:      David Hildenbrand <david@redhat.com>
7726 R:      Cornelia Huck <cohuck@redhat.com>
7727 L:      linux-s390@vger.kernel.org
7728 W:      http://www.ibm.com/developerworks/linux/linux390/
7729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7730 S:      Supported
7731 F:      arch/s390/include/uapi/asm/kvm*
7732 F:      arch/s390/include/asm/gmap.h
7733 F:      arch/s390/include/asm/kvm*
7734 F:      arch/s390/kvm/
7735 F:      arch/s390/mm/gmap.c
7736
7737 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7738 M:      Paolo Bonzini <pbonzini@redhat.com>
7739 M:      Radim Krčmář <rkrcmar@redhat.com>
7740 L:      kvm@vger.kernel.org
7741 W:      http://www.linux-kvm.org
7742 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7743 S:      Supported
7744 F:      arch/x86/kvm/
7745 F:      arch/x86/include/uapi/asm/kvm*
7746 F:      arch/x86/include/asm/kvm*
7747 F:      arch/x86/include/asm/pvclock-abi.h
7748 F:      arch/x86/kernel/kvm.c
7749 F:      arch/x86/kernel/kvmclock.c
7750
7751 KERNFS
7752 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7753 M:      Tejun Heo <tj@kernel.org>
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7755 S:      Supported
7756 F:      include/linux/kernfs.h
7757 F:      fs/kernfs/
7758
7759 KEXEC
7760 M:      Eric Biederman <ebiederm@xmission.com>
7761 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7762 L:      kexec@lists.infradead.org
7763 S:      Maintained
7764 F:      include/linux/kexec.h
7765 F:      include/uapi/linux/kexec.h
7766 F:      kernel/kexec*
7767
7768 KEYS-ENCRYPTED
7769 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7770 L:      linux-integrity@vger.kernel.org
7771 L:      keyrings@vger.kernel.org
7772 S:      Supported
7773 F:      Documentation/security/keys/trusted-encrypted.rst
7774 F:      include/keys/encrypted-type.h
7775 F:      security/keys/encrypted-keys/
7776
7777 KEYS-TRUSTED
7778 M:      James Bottomley <jejb@linux.vnet.ibm.com>
7779 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7780 L:      linux-integrity@vger.kernel.org
7781 L:      keyrings@vger.kernel.org
7782 S:      Supported
7783 F:      Documentation/security/keys/trusted-encrypted.rst
7784 F:      include/keys/trusted-type.h
7785 F:      security/keys/trusted.c
7786 F:      security/keys/trusted.h
7787
7788 KEYS/KEYRINGS:
7789 M:      David Howells <dhowells@redhat.com>
7790 L:      keyrings@vger.kernel.org
7791 S:      Maintained
7792 F:      Documentation/security/keys/core.rst
7793 F:      include/linux/key.h
7794 F:      include/linux/key-type.h
7795 F:      include/linux/keyctl.h
7796 F:      include/uapi/linux/keyctl.h
7797 F:      include/keys/
7798 F:      security/keys/
7799
7800 KGDB / KDB /debug_core
7801 M:      Jason Wessel <jason.wessel@windriver.com>
7802 M:      Daniel Thompson <daniel.thompson@linaro.org>
7803 W:      http://kgdb.wiki.kernel.org/
7804 L:      kgdb-bugreport@lists.sourceforge.net
7805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7806 S:      Maintained
7807 F:      Documentation/dev-tools/kgdb.rst
7808 F:      drivers/misc/kgdbts.c
7809 F:      drivers/tty/serial/kgdboc.c
7810 F:      include/linux/kdb.h
7811 F:      include/linux/kgdb.h
7812 F:      kernel/debug/
7813
7814 KMEMLEAK
7815 M:      Catalin Marinas <catalin.marinas@arm.com>
7816 S:      Maintained
7817 F:      Documentation/dev-tools/kmemleak.rst
7818 F:      include/linux/kmemleak.h
7819 F:      mm/kmemleak.c
7820 F:      mm/kmemleak-test.c
7821
7822 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7823 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7824 L:      linux-kernel@vger.kernel.org
7825 S:      Maintained
7826 F:      kernel/kmod.c
7827 F:      include/linux/kmod.h
7828 F:      lib/test_kmod.c
7829 F:      tools/testing/selftests/kmod/
7830
7831 KPROBES
7832 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7833 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7834 M:      "David S. Miller" <davem@davemloft.net>
7835 M:      Masami Hiramatsu <mhiramat@kernel.org>
7836 S:      Maintained
7837 F:      Documentation/kprobes.txt
7838 F:      include/linux/kprobes.h
7839 F:      include/asm-generic/kprobes.h
7840 F:      kernel/kprobes.c
7841
7842 KS0108 LCD CONTROLLER DRIVER
7843 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7844 W:      http://miguelojeda.es/auxdisplay.htm
7845 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7846 S:      Maintained
7847 F:      Documentation/auxdisplay/ks0108
7848 F:      drivers/auxdisplay/ks0108.c
7849 F:      include/linux/ks0108.h
7850
7851 L3MDEV
7852 M:      David Ahern <dsa@cumulusnetworks.com>
7853 L:      netdev@vger.kernel.org
7854 S:      Maintained
7855 F:      net/l3mdev
7856 F:      include/net/l3mdev.h
7857
7858 LANTIQ MIPS ARCHITECTURE
7859 M:      John Crispin <john@phrozen.org>
7860 L:      linux-mips@linux-mips.org
7861 S:      Maintained
7862 F:      arch/mips/lantiq
7863 F:      drivers/soc/lantiq
7864
7865 LAPB module
7866 L:      linux-x25@vger.kernel.org
7867 S:      Orphan
7868 F:      Documentation/networking/lapb-module.txt
7869 F:      include/*/lapb.h
7870 F:      net/lapb/
7871
7872 LASI 53c700 driver for PARISC
7873 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7874 L:      linux-scsi@vger.kernel.org
7875 S:      Maintained
7876 F:      Documentation/scsi/53c700.txt
7877 F:      drivers/scsi/53c700*
7878
7879 LEAKING_ADDRESSES
7880 M:      Tobin C. Harding <me@tobin.cc>
7881 S:      Maintained
7882 F:      scripts/leaking_addresses.pl
7883
7884 LED SUBSYSTEM
7885 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
7886 M:      Pavel Machek <pavel@ucw.cz>
7887 L:      linux-leds@vger.kernel.org
7888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7889 S:      Maintained
7890 F:      Documentation/devicetree/bindings/leds/
7891 F:      drivers/leds/
7892 F:      include/linux/leds.h
7893
7894 LEGACY EEPROM DRIVER
7895 M:      Jean Delvare <jdelvare@suse.com>
7896 S:      Maintained
7897 F:      Documentation/misc-devices/eeprom
7898 F:      drivers/misc/eeprom/eeprom.c
7899
7900 LEGO USB Tower driver
7901 M:      Juergen Stuber <starblue@users.sourceforge.net>
7902 L:      legousb-devel@lists.sourceforge.net
7903 W:      http://legousb.sourceforge.net/
7904 S:      Maintained
7905 F:      drivers/usb/misc/legousbtower.c
7906
7907 LG2160 MEDIA DRIVER
7908 M:      Michael Krufky <mkrufky@linuxtv.org>
7909 L:      linux-media@vger.kernel.org
7910 W:      https://linuxtv.org
7911 W:      http://github.com/mkrufky
7912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7913 T:      git git://linuxtv.org/mkrufky/tuners.git
7914 S:      Maintained
7915 F:      drivers/media/dvb-frontends/lg2160.*
7916
7917 LGDT3305 MEDIA DRIVER
7918 M:      Michael Krufky <mkrufky@linuxtv.org>
7919 L:      linux-media@vger.kernel.org
7920 W:      https://linuxtv.org
7921 W:      http://github.com/mkrufky
7922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7923 T:      git git://linuxtv.org/mkrufky/tuners.git
7924 S:      Maintained
7925 F:      drivers/media/dvb-frontends/lgdt3305.*
7926
7927 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7928 M:      Viresh Kumar <vireshk@kernel.org>
7929 L:      linux-ide@vger.kernel.org
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7931 S:      Maintained
7932 F:      include/linux/pata_arasan_cf_data.h
7933 F:      drivers/ata/pata_arasan_cf.c
7934
7935 LIBATA PATA DRIVERS
7936 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7937 M:      Tejun Heo <tj@kernel.org>
7938 L:      linux-ide@vger.kernel.org
7939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7940 S:      Maintained
7941 F:      drivers/ata/pata_*.c
7942 F:      drivers/ata/ata_generic.c
7943
7944 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7945 M:      Linus Walleij <linus.walleij@linaro.org>
7946 L:      linux-ide@vger.kernel.org
7947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7948 S:      Maintained
7949 F:      drivers/ata/pata_ftide010.c
7950 F:      drivers/ata/sata_gemini.c
7951 F:      drivers/ata/sata_gemini.h
7952
7953 LIBATA SATA AHCI PLATFORM devices support
7954 M:      Hans de Goede <hdegoede@redhat.com>
7955 M:      Tejun Heo <tj@kernel.org>
7956 L:      linux-ide@vger.kernel.org
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7958 S:      Maintained
7959 F:      drivers/ata/ahci_platform.c
7960 F:      drivers/ata/libahci_platform.c
7961 F:      include/linux/ahci_platform.h
7962
7963 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7964 M:      Mikael Pettersson <mikpelinux@gmail.com>
7965 L:      linux-ide@vger.kernel.org
7966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7967 S:      Maintained
7968 F:      drivers/ata/sata_promise.*
7969
7970 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7971 M:      Tejun Heo <tj@kernel.org>
7972 L:      linux-ide@vger.kernel.org
7973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7974 S:      Maintained
7975 F:      drivers/ata/
7976 F:      include/linux/ata.h
7977 F:      include/linux/libata.h
7978 F:      Documentation/devicetree/bindings/ata/
7979
7980 LIBLOCKDEP
7981 M:      Sasha Levin <alexander.levin@verizon.com>
7982 S:      Maintained
7983 F:      tools/lib/lockdep/
7984
7985 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7986 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7987 L:      linux-nvdimm@lists.01.org
7988 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7989 S:      Supported
7990 F:      drivers/nvdimm/blk.c
7991 F:      drivers/nvdimm/region_devs.c
7992
7993 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7994 M:      Vishal Verma <vishal.l.verma@intel.com>
7995 L:      linux-nvdimm@lists.01.org
7996 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7997 S:      Supported
7998 F:      drivers/nvdimm/btt*
7999
8000 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8001 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8002 L:      linux-nvdimm@lists.01.org
8003 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8004 S:      Supported
8005 F:      drivers/nvdimm/pmem*
8006
8007 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8008 M:      Dan Williams <dan.j.williams@intel.com>
8009 L:      linux-nvdimm@lists.01.org
8010 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8012 S:      Supported
8013 F:      drivers/nvdimm/*
8014 F:      drivers/acpi/nfit/*
8015 F:      include/linux/nd.h
8016 F:      include/linux/libnvdimm.h
8017 F:      include/uapi/linux/ndctl.h
8018
8019 LIGHTNVM PLATFORM SUPPORT
8020 M:      Matias Bjorling <mb@lightnvm.io>
8021 W:      http://github/OpenChannelSSD
8022 L:      linux-block@vger.kernel.org
8023 S:      Maintained
8024 F:      drivers/lightnvm/
8025 F:      include/linux/lightnvm.h
8026 F:      include/uapi/linux/lightnvm.h
8027
8028 LINUX FOR POWER MACINTOSH
8029 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8030 W:      http://www.penguinppc.org/
8031 L:      linuxppc-dev@lists.ozlabs.org
8032 S:      Maintained
8033 F:      arch/powerpc/platforms/powermac/
8034 F:      drivers/macintosh/
8035
8036 LINUX FOR POWERPC (32-BIT AND 64-BIT)
8037 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8038 M:      Paul Mackerras <paulus@samba.org>
8039 M:      Michael Ellerman <mpe@ellerman.id.au>
8040 W:      https://github.com/linuxppc/linux/wiki
8041 L:      linuxppc-dev@lists.ozlabs.org
8042 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8044 S:      Supported
8045 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
8046 F:      Documentation/devicetree/bindings/powerpc/
8047 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
8048 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
8049 F:      Documentation/powerpc/
8050 F:      arch/powerpc/
8051 F:      drivers/char/tpm/tpm_ibmvtpm*
8052 F:      drivers/crypto/nx/
8053 F:      drivers/crypto/vmx/
8054 F:      drivers/i2c/busses/i2c-opal.c
8055 F:      drivers/net/ethernet/ibm/ibmveth.*
8056 F:      drivers/net/ethernet/ibm/ibmvnic.*
8057 F:      drivers/pci/hotplug/pnv_php.c
8058 F:      drivers/pci/hotplug/rpa*
8059 F:      drivers/rtc/rtc-opal.c
8060 F:      drivers/scsi/ibmvscsi/
8061 F:      drivers/tty/hvc/hvc_opal.c
8062 F:      drivers/watchdog/wdrtas.c
8063 F:      tools/testing/selftests/powerpc
8064 N:      /pmac
8065 N:      powermac
8066 N:      powernv
8067 N:      [^a-z0-9]ps3
8068 N:      pseries
8069
8070 LINUX FOR POWERPC EMBEDDED MPC5XXX
8071 M:      Anatolij Gustschin <agust@denx.de>
8072 L:      linuxppc-dev@lists.ozlabs.org
8073 T:      git git://git.denx.de/linux-denx-agust.git
8074 S:      Maintained
8075 F:      arch/powerpc/platforms/512x/
8076 F:      arch/powerpc/platforms/52xx/
8077
8078 LINUX FOR POWERPC EMBEDDED PPC4XX
8079 M:      Alistair Popple <alistair@popple.id.au>
8080 M:      Matt Porter <mporter@kernel.crashing.org>
8081 W:      http://www.penguinppc.org/
8082 L:      linuxppc-dev@lists.ozlabs.org
8083 S:      Maintained
8084 F:      arch/powerpc/platforms/40x/
8085 F:      arch/powerpc/platforms/44x/
8086
8087 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8088 M:      Scott Wood <oss@buserror.net>
8089 M:      Kumar Gala <galak@kernel.crashing.org>
8090 W:      http://www.penguinppc.org/
8091 L:      linuxppc-dev@lists.ozlabs.org
8092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8093 S:      Maintained
8094 F:      arch/powerpc/platforms/83xx/
8095 F:      arch/powerpc/platforms/85xx/
8096 F:      Documentation/devicetree/bindings/powerpc/fsl/
8097
8098 LINUX FOR POWERPC EMBEDDED PPC8XX
8099 M:      Vitaly Bordug <vitb@kernel.crashing.org>
8100 W:      http://www.penguinppc.org/
8101 L:      linuxppc-dev@lists.ozlabs.org
8102 S:      Maintained
8103 F:      arch/powerpc/platforms/8xx/
8104
8105 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8106 L:      linuxppc-dev@lists.ozlabs.org
8107 S:      Orphan
8108 F:      arch/powerpc/*/*virtex*
8109 F:      arch/powerpc/*/*/*virtex*
8110
8111 LINUX FOR POWERPC PA SEMI PWRFICIENT
8112 L:      linuxppc-dev@lists.ozlabs.org
8113 S:      Orphan
8114 F:      arch/powerpc/platforms/pasemi/
8115 F:      drivers/*/*pasemi*
8116 F:      drivers/*/*/*pasemi*
8117
8118 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8119 M:      Kees Cook <keescook@chromium.org>
8120 S:      Maintained
8121 F:      drivers/misc/lkdtm*
8122
8123 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
8124 M:      Alan Stern <stern@rowland.harvard.edu>
8125 M:      Andrea Parri <parri.andrea@gmail.com>
8126 M:      Will Deacon <will.deacon@arm.com>
8127 M:      Peter Zijlstra <peterz@infradead.org>
8128 M:      Boqun Feng <boqun.feng@gmail.com>
8129 M:      Nicholas Piggin <npiggin@gmail.com>
8130 M:      David Howells <dhowells@redhat.com>
8131 M:      Jade Alglave <j.alglave@ucl.ac.uk>
8132 M:      Luc Maranget <luc.maranget@inria.fr>
8133 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8134 R:      Akira Yokosawa <akiyks@gmail.com>
8135 L:      linux-kernel@vger.kernel.org
8136 S:      Supported
8137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8138 F:      tools/memory-model/
8139 F:      Documentation/memory-barriers.txt
8140
8141 LINUX SECURITY MODULE (LSM) FRAMEWORK
8142 M:      Chris Wright <chrisw@sous-sol.org>
8143 L:      linux-security-module@vger.kernel.org
8144 S:      Supported
8145
8146 LIS3LV02D ACCELEROMETER DRIVER
8147 M:      Eric Piel <eric.piel@tremplin-utc.net>
8148 S:      Maintained
8149 F:      Documentation/misc-devices/lis3lv02d
8150 F:      drivers/misc/lis3lv02d/
8151 F:      drivers/platform/x86/hp_accel.c
8152
8153 LIVE PATCHING
8154 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8155 M:      Jessica Yu <jeyu@kernel.org>
8156 M:      Jiri Kosina <jikos@kernel.org>
8157 M:      Miroslav Benes <mbenes@suse.cz>
8158 R:      Petr Mladek <pmladek@suse.com>
8159 S:      Maintained
8160 F:      kernel/livepatch/
8161 F:      include/linux/livepatch.h
8162 F:      arch/x86/include/asm/livepatch.h
8163 F:      arch/x86/kernel/livepatch.c
8164 F:      Documentation/livepatch/
8165 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
8166 F:      samples/livepatch/
8167 L:      live-patching@vger.kernel.org
8168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8169
8170 LLC (802.2)
8171 L:      netdev@vger.kernel.org
8172 S:      Odd fixes
8173 F:      include/linux/llc.h
8174 F:      include/uapi/linux/llc.h
8175 F:      include/net/llc*
8176 F:      net/llc/
8177
8178 LM73 HARDWARE MONITOR DRIVER
8179 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
8180 L:      linux-hwmon@vger.kernel.org
8181 S:      Maintained
8182 F:      drivers/hwmon/lm73.c
8183
8184 LM78 HARDWARE MONITOR DRIVER
8185 M:      Jean Delvare <jdelvare@suse.com>
8186 L:      linux-hwmon@vger.kernel.org
8187 S:      Maintained
8188 F:      Documentation/hwmon/lm78
8189 F:      drivers/hwmon/lm78.c
8190
8191 LM83 HARDWARE MONITOR DRIVER
8192 M:      Jean Delvare <jdelvare@suse.com>
8193 L:      linux-hwmon@vger.kernel.org
8194 S:      Maintained
8195 F:      Documentation/hwmon/lm83
8196 F:      drivers/hwmon/lm83.c
8197
8198 LM90 HARDWARE MONITOR DRIVER
8199 M:      Jean Delvare <jdelvare@suse.com>
8200 L:      linux-hwmon@vger.kernel.org
8201 S:      Maintained
8202 F:      Documentation/hwmon/lm90
8203 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
8204 F:      drivers/hwmon/lm90.c
8205 F:      include/dt-bindings/thermal/lm90.h
8206
8207 LM95234 HARDWARE MONITOR DRIVER
8208 M:      Guenter Roeck <linux@roeck-us.net>
8209 L:      linux-hwmon@vger.kernel.org
8210 S:      Maintained
8211 F:      Documentation/hwmon/lm95234
8212 F:      drivers/hwmon/lm95234.c
8213
8214 LME2510 MEDIA DRIVER
8215 M:      Malcolm Priestley <tvboxspy@gmail.com>
8216 L:      linux-media@vger.kernel.org
8217 W:      https://linuxtv.org
8218 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8219 S:      Maintained
8220 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
8221
8222 LOADPIN SECURITY MODULE
8223 M:      Kees Cook <keescook@chromium.org>
8224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8225 S:      Supported
8226 F:      security/loadpin/
8227 F:      Documentation/admin-guide/LSM/LoadPin.rst
8228
8229 LOCKING PRIMITIVES
8230 M:      Peter Zijlstra <peterz@infradead.org>
8231 M:      Ingo Molnar <mingo@redhat.com>
8232 L:      linux-kernel@vger.kernel.org
8233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8234 S:      Maintained
8235 F:      Documentation/locking/
8236 F:      include/linux/lockdep.h
8237 F:      include/linux/spinlock*.h
8238 F:      arch/*/include/asm/spinlock*.h
8239 F:      include/linux/rwlock*.h
8240 F:      include/linux/mutex*.h
8241 F:      arch/*/include/asm/mutex*.h
8242 F:      include/linux/rwsem*.h
8243 F:      arch/*/include/asm/rwsem.h
8244 F:      include/linux/seqlock.h
8245 F:      lib/locking*.[ch]
8246 F:      kernel/locking/
8247 X:      kernel/locking/locktorture.c
8248
8249 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8250 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
8251 L:      linux-ntfs-dev@lists.sourceforge.net
8252 W:      http://www.linux-ntfs.org/content/view/19/37/
8253 S:      Maintained
8254 F:      Documentation/ldm.txt
8255 F:      block/partitions/ldm.*
8256
8257 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8258 M:      Sathya Prakash <sathya.prakash@broadcom.com>
8259 M:      Chaitra P B <chaitra.basappa@broadcom.com>
8260 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8261 L:      MPT-FusionLinux.pdl@broadcom.com
8262 L:      linux-scsi@vger.kernel.org
8263 W:      http://www.avagotech.com/support/
8264 S:      Supported
8265 F:      drivers/message/fusion/
8266 F:      drivers/scsi/mpt2sas/
8267 F:      drivers/scsi/mpt3sas/
8268
8269 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8270 M:      Matthew Wilcox <matthew@wil.cx>
8271 L:      linux-scsi@vger.kernel.org
8272 S:      Maintained
8273 F:      drivers/scsi/sym53c8xx_2/
8274
8275 LTC4261 HARDWARE MONITOR DRIVER
8276 M:      Guenter Roeck <linux@roeck-us.net>
8277 L:      linux-hwmon@vger.kernel.org
8278 S:      Maintained
8279 F:      Documentation/hwmon/ltc4261
8280 F:      drivers/hwmon/ltc4261.c
8281
8282 LTC4306 I2C MULTIPLEXER DRIVER
8283 M:      Michael Hennerich <michael.hennerich@analog.com>
8284 W:      http://ez.analog.com/community/linux-device-drivers
8285 L:      linux-i2c@vger.kernel.org
8286 S:      Supported
8287 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
8288 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8289
8290 LTP (Linux Test Project)
8291 M:      Mike Frysinger <vapier@gentoo.org>
8292 M:      Cyril Hrubis <chrubis@suse.cz>
8293 M:      Wanlong Gao <wanlong.gao@gmail.com>
8294 M:      Jan Stancek <jstancek@redhat.com>
8295 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8296 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
8297 L:      ltp@lists.linux.it (subscribers-only)
8298 W:      http://linux-test-project.github.io/
8299 T:      git git://github.com/linux-test-project/ltp.git
8300 S:      Maintained
8301
8302 M68K ARCHITECTURE
8303 M:      Geert Uytterhoeven <geert@linux-m68k.org>
8304 L:      linux-m68k@lists.linux-m68k.org
8305 W:      http://www.linux-m68k.org/
8306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8307 S:      Maintained
8308 F:      arch/m68k/
8309 F:      drivers/zorro/
8310
8311 M68K ON APPLE MACINTOSH
8312 M:      Joshua Thompson <funaho@jurai.org>
8313 W:      http://www.mac.linux-m68k.org/
8314 L:      linux-m68k@lists.linux-m68k.org
8315 S:      Maintained
8316 F:      arch/m68k/mac/
8317
8318 M68K ON HP9000/300
8319 M:      Philip Blundell <philb@gnu.org>
8320 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
8321 S:      Maintained
8322 F:      arch/m68k/hp300/
8323
8324 M88DS3103 MEDIA DRIVER
8325 M:      Antti Palosaari <crope@iki.fi>
8326 L:      linux-media@vger.kernel.org
8327 W:      https://linuxtv.org
8328 W:      http://palosaari.fi/linux/
8329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8330 T:      git git://linuxtv.org/anttip/media_tree.git
8331 S:      Maintained
8332 F:      drivers/media/dvb-frontends/m88ds3103*
8333
8334 M88RS2000 MEDIA DRIVER
8335 M:      Malcolm Priestley <tvboxspy@gmail.com>
8336 L:      linux-media@vger.kernel.org
8337 W:      https://linuxtv.org
8338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8339 S:      Maintained
8340 F:      drivers/media/dvb-frontends/m88rs2000*
8341
8342 MA901 MASTERKIT USB FM RADIO DRIVER
8343 M:      Alexey Klimov <klimov.linux@gmail.com>
8344 L:      linux-media@vger.kernel.org
8345 T:      git git://linuxtv.org/media_tree.git
8346 S:      Maintained
8347 F:      drivers/media/radio/radio-ma901.c
8348
8349 MAC80211
8350 M:      Johannes Berg <johannes@sipsolutions.net>
8351 L:      linux-wireless@vger.kernel.org
8352 W:      http://wireless.kernel.org/
8353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8355 S:      Maintained
8356 F:      Documentation/networking/mac80211-injection.txt
8357 F:      include/net/mac80211.h
8358 F:      net/mac80211/
8359 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8360 F:      Documentation/networking/mac80211_hwsim/README
8361
8362 MAILBOX API
8363 M:      Jassi Brar <jassisinghbrar@gmail.com>
8364 L:      linux-kernel@vger.kernel.org
8365 S:      Maintained
8366 F:      drivers/mailbox/
8367 F:      include/linux/mailbox_client.h
8368 F:      include/linux/mailbox_controller.h
8369
8370 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8371 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8372 W:      http://www.kernel.org/doc/man-pages
8373 L:      linux-man@vger.kernel.org
8374 S:      Maintained
8375
8376 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8377 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
8378 L:      linux-mips@linux-mips.org
8379 S:      Maintained
8380 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
8381
8382 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8383 M:      Andrew Lunn <andrew@lunn.ch>
8384 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8385 L:      netdev@vger.kernel.org
8386 S:      Maintained
8387 F:      drivers/net/dsa/mv88e6xxx/
8388 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
8389
8390 MARVELL ARMADA DRM SUPPORT
8391 M:      Russell King <linux@armlinux.org.uk>
8392 S:      Maintained
8393 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8394 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8395 F:      drivers/gpu/drm/armada/
8396 F:      include/uapi/drm/armada_drm.h
8397 F:      Documentation/devicetree/bindings/display/armada/
8398
8399 MARVELL CRYPTO DRIVER
8400 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8401 M:      Arnaud Ebalard <arno@natisbad.org>
8402 F:      drivers/crypto/marvell/
8403 S:      Maintained
8404 L:      linux-crypto@vger.kernel.org
8405
8406 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8407 M:      Mirko Lindner <mlindner@marvell.com>
8408 M:      Stephen Hemminger <stephen@networkplumber.org>
8409 L:      netdev@vger.kernel.org
8410 S:      Maintained
8411 F:      drivers/net/ethernet/marvell/sk*
8412
8413 MARVELL LIBERTAS WIRELESS DRIVER
8414 L:      libertas-dev@lists.infradead.org
8415 S:      Orphan
8416 F:      drivers/net/wireless/marvell/libertas/
8417
8418 MARVELL MACCHIATOBIN SUPPORT
8419 M:      Russell King <linux@armlinux.org.uk>
8420 L:      linux-arm-kernel@lists.infradead.org
8421 S:      Maintained
8422 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8423
8424 MARVELL MV643XX ETHERNET DRIVER
8425 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8426 L:      netdev@vger.kernel.org
8427 S:      Maintained
8428 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
8429 F:      include/linux/mv643xx.h
8430
8431 MARVELL MV88X3310 PHY DRIVER
8432 M:      Russell King <linux@armlinux.org.uk>
8433 L:      netdev@vger.kernel.org
8434 S:      Maintained
8435 F:      drivers/net/phy/marvell10g.c
8436
8437 MARVELL MVNETA ETHERNET DRIVER
8438 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8439 L:      netdev@vger.kernel.org
8440 S:      Maintained
8441 F:      drivers/net/ethernet/marvell/mvneta.*
8442
8443 MARVELL MWIFIEX WIRELESS DRIVER
8444 M:      Amitkumar Karwar <amitkarwar@gmail.com>
8445 M:      Nishant Sarmukadam <nishants@marvell.com>
8446 M:      Ganapathi Bhat <gbhat@marvell.com>
8447 M:      Xinming Hu <huxm@marvell.com>
8448 L:      linux-wireless@vger.kernel.org
8449 S:      Maintained
8450 F:      drivers/net/wireless/marvell/mwifiex/
8451
8452 MARVELL MWL8K WIRELESS DRIVER
8453 M:      Lennert Buytenhek <buytenh@wantstofly.org>
8454 L:      linux-wireless@vger.kernel.org
8455 S:      Odd Fixes
8456 F:      drivers/net/wireless/marvell/mwl8k.c
8457
8458 MARVELL NAND CONTROLLER DRIVER
8459 M:      Miquel Raynal <miquel.raynal@free-electrons.com>
8460 L:      linux-mtd@lists.infradead.org
8461 S:      Maintained
8462 F:      drivers/mtd/nand/marvell_nand.c
8463 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
8464
8465 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8466 M:      Nicolas Pitre <nico@fluxnic.net>
8467 S:      Odd Fixes
8468 F:      drivers/mmc/host/mvsdio.*
8469
8470 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8471 M:      Hu Ziji <huziji@marvell.com>
8472 L:      linux-mmc@vger.kernel.org
8473 S:      Supported
8474 F:      drivers/mmc/host/sdhci-xenon*
8475 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8476
8477 MATROX FRAMEBUFFER DRIVER
8478 L:      linux-fbdev@vger.kernel.org
8479 S:      Orphan
8480 F:      drivers/video/fbdev/matrox/matroxfb_*
8481 F:      include/uapi/linux/matroxfb.h
8482
8483 MAX16065 HARDWARE MONITOR DRIVER
8484 M:      Guenter Roeck <linux@roeck-us.net>
8485 L:      linux-hwmon@vger.kernel.org
8486 S:      Maintained
8487 F:      Documentation/hwmon/max16065
8488 F:      drivers/hwmon/max16065.c
8489
8490 MAX20751 HARDWARE MONITOR DRIVER
8491 M:      Guenter Roeck <linux@roeck-us.net>
8492 L:      linux-hwmon@vger.kernel.org
8493 S:      Maintained
8494 F:      Documentation/hwmon/max20751
8495 F:      drivers/hwmon/max20751.c
8496
8497 MAX2175 SDR TUNER DRIVER
8498 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8499 L:      linux-media@vger.kernel.org
8500 T:      git git://linuxtv.org/media_tree.git
8501 S:      Maintained
8502 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
8503 F:      Documentation/media/v4l-drivers/max2175.rst
8504 F:      drivers/media/i2c/max2175*
8505 F:      include/uapi/linux/max2175.h
8506
8507 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8508 L:      linux-hwmon@vger.kernel.org
8509 S:      Orphan
8510 F:      Documentation/hwmon/max6650
8511 F:      drivers/hwmon/max6650.c
8512
8513 MAX6697 HARDWARE MONITOR DRIVER
8514 M:      Guenter Roeck <linux@roeck-us.net>
8515 L:      linux-hwmon@vger.kernel.org
8516 S:      Maintained
8517 F:      Documentation/hwmon/max6697
8518 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8519 F:      drivers/hwmon/max6697.c
8520 F:      include/linux/platform_data/max6697.h
8521
8522 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8523 M:      Peter Rosin <peda@axentia.se>
8524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8525 S:      Maintained
8526 F:      Documentation/devicetree/bindings/sound/max9860.txt
8527 F:      sound/soc/codecs/max9860.*
8528
8529 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8530 M:      Javier Martinez Canillas <javier@dowhile0.org>
8531 L:      linux-kernel@vger.kernel.org
8532 S:      Supported
8533 F:      drivers/regulator/max77802-regulator.c
8534 F:      Documentation/devicetree/bindings/*/*max77802.txt
8535 F:      include/dt-bindings/*/*max77802.h
8536
8537 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8538 M:      Krzysztof Kozlowski <krzk@kernel.org>
8539 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8540 L:      linux-pm@vger.kernel.org
8541 S:      Supported
8542 F:      drivers/power/supply/max14577_charger.c
8543 F:      drivers/power/supply/max77693_charger.c
8544
8545 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8546 M:      Chanwoo Choi <cw00.choi@samsung.com>
8547 M:      Krzysztof Kozlowski <krzk@kernel.org>
8548 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8549 L:      linux-kernel@vger.kernel.org
8550 S:      Supported
8551 F:      drivers/*/max14577*.c
8552 F:      drivers/*/max77686*.c
8553 F:      drivers/*/max77693*.c
8554 F:      drivers/extcon/extcon-max14577.c
8555 F:      drivers/extcon/extcon-max77693.c
8556 F:      drivers/rtc/rtc-max77686.c
8557 F:      drivers/clk/clk-max77686.c
8558 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8559 F:      Documentation/devicetree/bindings/*/max77686.txt
8560 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8561 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8562 F:      include/linux/mfd/max14577*.h
8563 F:      include/linux/mfd/max77686*.h
8564 F:      include/linux/mfd/max77693*.h
8565
8566 MAXIRADIO FM RADIO RECEIVER DRIVER
8567 M:      Hans Verkuil <hverkuil@xs4all.nl>
8568 L:      linux-media@vger.kernel.org
8569 T:      git git://linuxtv.org/media_tree.git
8570 W:      https://linuxtv.org
8571 S:      Maintained
8572 F:      drivers/media/radio/radio-maxiradio*
8573
8574 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8575 M:      Peter Rosin <peda@axentia.se>
8576 L:      linux-iio@vger.kernel.org
8577 S:      Maintained
8578 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8579 F:      drivers/iio/potentiometer/mcp4531.c
8580
8581 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8582 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8583 L:      linux-iio@vger.kernel.org
8584 S:      Maintained
8585 F:      drivers/iio/dac/cio-dac.c
8586
8587 MEDIA DRIVERS FOR ASCOT2E
8588 M:      Sergey Kozlov <serjk@netup.ru>
8589 M:      Abylay Ospan <aospan@netup.ru>
8590 L:      linux-media@vger.kernel.org
8591 W:      https://linuxtv.org
8592 W:      http://netup.tv/
8593 T:      git git://linuxtv.org/media_tree.git
8594 S:      Supported
8595 F:      drivers/media/dvb-frontends/ascot2e*
8596
8597 MEDIA DRIVERS FOR CXD2841ER
8598 M:      Sergey Kozlov <serjk@netup.ru>
8599 M:      Abylay Ospan <aospan@netup.ru>
8600 L:      linux-media@vger.kernel.org
8601 W:      https://linuxtv.org
8602 W:      http://netup.tv/
8603 T:      git git://linuxtv.org/media_tree.git
8604 S:      Supported
8605 F:      drivers/media/dvb-frontends/cxd2841er*
8606
8607 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8608 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8609 L:      linux-media@vger.kernel.org
8610 W:      https://linuxtv.org
8611 T:      git git://linuxtv.org/media_tree.git
8612 S:      Maintained
8613 F:      drivers/media/pci/ddbridge/*
8614
8615 MEDIA DRIVERS FOR FREESCALE IMX
8616 M:      Steve Longerbeam <slongerbeam@gmail.com>
8617 M:      Philipp Zabel <p.zabel@pengutronix.de>
8618 L:      linux-media@vger.kernel.org
8619 T:      git git://linuxtv.org/media_tree.git
8620 S:      Maintained
8621 F:      Documentation/devicetree/bindings/media/imx.txt
8622 F:      Documentation/media/v4l-drivers/imx.rst
8623 F:      drivers/staging/media/imx/
8624 F:      include/linux/imx-media.h
8625 F:      include/media/imx.h
8626
8627 MEDIA DRIVERS FOR HELENE
8628 M:      Abylay Ospan <aospan@netup.ru>
8629 L:      linux-media@vger.kernel.org
8630 W:      https://linuxtv.org
8631 W:      http://netup.tv/
8632 T:      git git://linuxtv.org/media_tree.git
8633 S:      Supported
8634 F:      drivers/media/dvb-frontends/helene*
8635
8636 MEDIA DRIVERS FOR HORUS3A
8637 M:      Sergey Kozlov <serjk@netup.ru>
8638 M:      Abylay Ospan <aospan@netup.ru>
8639 L:      linux-media@vger.kernel.org
8640 W:      https://linuxtv.org
8641 W:      http://netup.tv/
8642 T:      git git://linuxtv.org/media_tree.git
8643 S:      Supported
8644 F:      drivers/media/dvb-frontends/horus3a*
8645
8646 MEDIA DRIVERS FOR LNBH25
8647 M:      Sergey Kozlov <serjk@netup.ru>
8648 M:      Abylay Ospan <aospan@netup.ru>
8649 L:      linux-media@vger.kernel.org
8650 W:      https://linuxtv.org
8651 W:      http://netup.tv/
8652 T:      git git://linuxtv.org/media_tree.git
8653 S:      Supported
8654 F:      drivers/media/dvb-frontends/lnbh25*
8655
8656 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8657 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8658 L:      linux-media@vger.kernel.org
8659 W:      https://linuxtv.org
8660 T:      git git://linuxtv.org/media_tree.git
8661 S:      Maintained
8662 F:      drivers/media/dvb-frontends/mxl5xx*
8663
8664 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8665 M:      Sergey Kozlov <serjk@netup.ru>
8666 M:      Abylay Ospan <aospan@netup.ru>
8667 L:      linux-media@vger.kernel.org
8668 W:      https://linuxtv.org
8669 W:      http://netup.tv/
8670 T:      git git://linuxtv.org/media_tree.git
8671 S:      Supported
8672 F:      drivers/media/pci/netup_unidvb/*
8673
8674 MEDIA DRIVERS FOR RENESAS - DRIF
8675 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8676 L:      linux-media@vger.kernel.org
8677 L:      linux-renesas-soc@vger.kernel.org
8678 T:      git git://linuxtv.org/media_tree.git
8679 S:      Supported
8680 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
8681 F:      drivers/media/platform/rcar_drif.c
8682
8683 MEDIA DRIVERS FOR RENESAS - FCP
8684 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8685 L:      linux-media@vger.kernel.org
8686 L:      linux-renesas-soc@vger.kernel.org
8687 T:      git git://linuxtv.org/media_tree.git
8688 S:      Supported
8689 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8690 F:      drivers/media/platform/rcar-fcp.c
8691 F:      include/media/rcar-fcp.h
8692
8693 MEDIA DRIVERS FOR RENESAS - FDP1
8694 M:      Kieran Bingham <kieran@bingham.xyz>
8695 L:      linux-media@vger.kernel.org
8696 L:      linux-renesas-soc@vger.kernel.org
8697 T:      git git://linuxtv.org/media_tree.git
8698 S:      Supported
8699 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8700 F:      drivers/media/platform/rcar_fdp1.c
8701
8702 MEDIA DRIVERS FOR RENESAS - VIN
8703 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
8704 L:      linux-media@vger.kernel.org
8705 L:      linux-renesas-soc@vger.kernel.org
8706 T:      git git://linuxtv.org/media_tree.git
8707 S:      Supported
8708 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8709 F:      drivers/media/platform/rcar-vin/
8710
8711 MEDIA DRIVERS FOR RENESAS - VSP1
8712 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8713 L:      linux-media@vger.kernel.org
8714 L:      linux-renesas-soc@vger.kernel.org
8715 T:      git git://linuxtv.org/media_tree.git
8716 S:      Supported
8717 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8718 F:      drivers/media/platform/vsp1/
8719
8720 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8721 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8722 L:      linux-media@vger.kernel.org
8723 W:      https://linuxtv.org
8724 T:      git git://linuxtv.org/media_tree.git
8725 S:      Maintained
8726 F:      drivers/media/dvb-frontends/stv0910*
8727
8728 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8729 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8730 L:      linux-media@vger.kernel.org
8731 W:      https://linuxtv.org
8732 T:      git git://linuxtv.org/media_tree.git
8733 S:      Maintained
8734 F:      drivers/media/dvb-frontends/stv6111*
8735
8736 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
8737 M:      Dmitry Osipenko <digetx@gmail.com>
8738 L:      linux-media@vger.kernel.org
8739 L:      linux-tegra@vger.kernel.org
8740 T:      git git://linuxtv.org/media_tree.git
8741 S:      Maintained
8742 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
8743 F:      drivers/staging/media/tegra-vde/
8744
8745 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8746 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
8747 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
8748 P:      LinuxTV.org Project
8749 L:      linux-media@vger.kernel.org
8750 W:      https://linuxtv.org
8751 Q:      http://patchwork.kernel.org/project/linux-media/list/
8752 T:      git git://linuxtv.org/media_tree.git
8753 S:      Maintained
8754 F:      Documentation/devicetree/bindings/media/
8755 F:      Documentation/media/
8756 F:      drivers/media/
8757 F:      drivers/staging/media/
8758 F:      include/linux/platform_data/media/
8759 F:      include/media/
8760 F:      include/uapi/linux/dvb/
8761 F:      include/uapi/linux/videodev2.h
8762 F:      include/uapi/linux/media.h
8763 F:      include/uapi/linux/v4l2-*
8764 F:      include/uapi/linux/meye.h
8765 F:      include/uapi/linux/ivtv*
8766 F:      include/uapi/linux/uvcvideo.h
8767
8768 MEDIATEK CIR DRIVER
8769 M:      Sean Wang <sean.wang@mediatek.com>
8770 S:      Maintained
8771 F:      drivers/media/rc/mtk-cir.c
8772
8773 MEDIATEK PMIC LED DRIVER
8774 M:      Sean Wang <sean.wang@mediatek.com>
8775 S:      Maintained
8776 F:      drivers/leds/leds-mt6323.c
8777 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
8778
8779 MEDIATEK ETHERNET DRIVER
8780 M:      Felix Fietkau <nbd@openwrt.org>
8781 M:      John Crispin <john@phrozen.org>
8782 M:      Sean Wang <sean.wang@mediatek.com>
8783 M:      Nelson Chang <nelson.chang@mediatek.com>
8784 L:      netdev@vger.kernel.org
8785 S:      Maintained
8786 F:      drivers/net/ethernet/mediatek/
8787
8788 MEDIATEK SWITCH DRIVER
8789 M:      Sean Wang <sean.wang@mediatek.com>
8790 L:      netdev@vger.kernel.org
8791 S:      Maintained
8792 F:      drivers/net/dsa/mt7530.*
8793 F:      net/dsa/tag_mtk.c
8794
8795 MEDIATEK JPEG DRIVER
8796 M:      Rick Chang <rick.chang@mediatek.com>
8797 M:      Bin Liu <bin.liu@mediatek.com>
8798 S:      Supported
8799 F:      drivers/media/platform/mtk-jpeg/
8800 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8801
8802 MEDIATEK MDP DRIVER
8803 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8804 M:      Houlong Wei <houlong.wei@mediatek.com>
8805 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8806 S:      Supported
8807 F:      drivers/media/platform/mtk-mdp/
8808 F:      drivers/media/platform/mtk-vpu/
8809 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8810
8811 MEDIATEK MEDIA DRIVER
8812 M:      Tiffany Lin <tiffany.lin@mediatek.com>
8813 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8814 S:      Supported
8815 F:      drivers/media/platform/mtk-vcodec/
8816 F:      drivers/media/platform/mtk-vpu/
8817 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8818 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8819
8820 MEDIATEK MT7601U WIRELESS LAN DRIVER
8821 M:      Jakub Kicinski <kubakici@wp.pl>
8822 L:      linux-wireless@vger.kernel.org
8823 S:      Maintained
8824 F:      drivers/net/wireless/mediatek/mt7601u/
8825
8826 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8827 M:      Sean Wang <sean.wang@mediatek.com>
8828 S:      Maintained
8829 F:      drivers/char/hw_random/mtk-rng.c
8830
8831 MEDIATEK USB3 DRD IP DRIVER
8832 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
8833 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
8834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8835 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8836 S:      Maintained
8837 F:      drivers/usb/mtu3/
8838
8839 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8840 M:      Peter Senna Tschudin <peter.senna@collabora.com>
8841 M:      Martin Donnelly <martin.donnelly@ge.com>
8842 M:      Martyn Welch <martyn.welch@collabora.co.uk>
8843 S:      Maintained
8844 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8845 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8846
8847 MEGARAID SCSI/SAS DRIVERS
8848 M:      Kashyap Desai <kashyap.desai@broadcom.com>
8849 M:      Sumit Saxena <sumit.saxena@broadcom.com>
8850 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8851 L:      megaraidlinux.pdl@broadcom.com
8852 L:      linux-scsi@vger.kernel.org
8853 W:      http://www.avagotech.com/support/
8854 S:      Maintained
8855 F:      Documentation/scsi/megaraid.txt
8856 F:      drivers/scsi/megaraid.*
8857 F:      drivers/scsi/megaraid/
8858
8859 MELEXIS MLX90614 DRIVER
8860 M:      Crt Mori <cmo@melexis.com>
8861 L:      linux-iio@vger.kernel.org
8862 W:      http://www.melexis.com
8863 S:      Supported
8864 F:      drivers/iio/temperature/mlx90614.c
8865
8866 MELFAS MIP4 TOUCHSCREEN DRIVER
8867 M:      Sangwon Jee <jeesw@melfas.com>
8868 W:      http://www.melfas.com
8869 S:      Supported
8870 F:      drivers/input/touchscreen/melfas_mip4.c
8871 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8872
8873 MELLANOX ETHERNET DRIVER (mlx4_en)
8874 M:      Tariq Toukan <tariqt@mellanox.com>
8875 L:      netdev@vger.kernel.org
8876 S:      Supported
8877 W:      http://www.mellanox.com
8878 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8879 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8880
8881 MELLANOX ETHERNET DRIVER (mlx5e)
8882 M:      Saeed Mahameed <saeedm@mellanox.com>
8883 L:      netdev@vger.kernel.org
8884 S:      Supported
8885 W:      http://www.mellanox.com
8886 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8887 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8888
8889 MELLANOX ETHERNET INNOVA DRIVER
8890 M:      Ilan Tayari <ilant@mellanox.com>
8891 R:      Boris Pismenny <borisp@mellanox.com>
8892 L:      netdev@vger.kernel.org
8893 S:      Supported
8894 W:      http://www.mellanox.com
8895 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8896 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8897 F:      include/linux/mlx5/mlx5_ifc_fpga.h
8898
8899 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8900 M:      Ilan Tayari <ilant@mellanox.com>
8901 R:      Boris Pismenny <borisp@mellanox.com>
8902 L:      netdev@vger.kernel.org
8903 S:      Supported
8904 W:      http://www.mellanox.com
8905 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8906 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8907 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8908
8909 MELLANOX ETHERNET SWITCH DRIVERS
8910 M:      Jiri Pirko <jiri@mellanox.com>
8911 M:      Ido Schimmel <idosch@mellanox.com>
8912 L:      netdev@vger.kernel.org
8913 S:      Supported
8914 W:      http://www.mellanox.com
8915 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8916 F:      drivers/net/ethernet/mellanox/mlxsw/
8917
8918 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8919 M:      mlxsw@mellanox.com
8920 L:      netdev@vger.kernel.org
8921 S:      Supported
8922 W:      http://www.mellanox.com
8923 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8924 F:      drivers/net/ethernet/mellanox/mlxfw/
8925
8926 MELLANOX HARDWARE PLATFORM SUPPORT
8927 M:      Andy Shevchenko <andy@infradead.org>
8928 M:      Darren Hart <dvhart@infradead.org>
8929 M:      Vadim Pasternak <vadimp@mellanox.com>
8930 L:      platform-driver-x86@vger.kernel.org
8931 S:      Supported
8932 F:      drivers/platform/mellanox/
8933
8934 MELLANOX MLX4 core VPI driver
8935 M:      Tariq Toukan <tariqt@mellanox.com>
8936 L:      netdev@vger.kernel.org
8937 L:      linux-rdma@vger.kernel.org
8938 W:      http://www.mellanox.com
8939 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8940 S:      Supported
8941 F:      drivers/net/ethernet/mellanox/mlx4/
8942 F:      include/linux/mlx4/
8943
8944 MELLANOX MLX4 IB driver
8945 M:      Yishai Hadas <yishaih@mellanox.com>
8946 L:      linux-rdma@vger.kernel.org
8947 W:      http://www.mellanox.com
8948 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8949 S:      Supported
8950 F:      drivers/infiniband/hw/mlx4/
8951 F:      include/linux/mlx4/
8952 F:      include/uapi/rdma/mlx4-abi.h
8953
8954 MELLANOX MLX5 core VPI driver
8955 M:      Saeed Mahameed <saeedm@mellanox.com>
8956 M:      Matan Barak <matanb@mellanox.com>
8957 M:      Leon Romanovsky <leonro@mellanox.com>
8958 L:      netdev@vger.kernel.org
8959 L:      linux-rdma@vger.kernel.org
8960 W:      http://www.mellanox.com
8961 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8962 S:      Supported
8963 F:      drivers/net/ethernet/mellanox/mlx5/core/
8964 F:      include/linux/mlx5/
8965
8966 MELLANOX MLX5 IB driver
8967 M:      Matan Barak <matanb@mellanox.com>
8968 M:      Leon Romanovsky <leonro@mellanox.com>
8969 L:      linux-rdma@vger.kernel.org
8970 W:      http://www.mellanox.com
8971 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8972 S:      Supported
8973 F:      drivers/infiniband/hw/mlx5/
8974 F:      include/linux/mlx5/
8975 F:      include/uapi/rdma/mlx5-abi.h
8976
8977 MELLANOX MLXCPLD I2C AND MUX DRIVER
8978 M:      Vadim Pasternak <vadimp@mellanox.com>
8979 M:      Michael Shych <michaelsh@mellanox.com>
8980 L:      linux-i2c@vger.kernel.org
8981 S:      Supported
8982 F:      drivers/i2c/busses/i2c-mlxcpld.c
8983 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8984 F:      Documentation/i2c/busses/i2c-mlxcpld
8985
8986 MELLANOX MLXCPLD LED DRIVER
8987 M:      Vadim Pasternak <vadimp@mellanox.com>
8988 L:      linux-leds@vger.kernel.org
8989 S:      Supported
8990 F:      drivers/leds/leds-mlxcpld.c
8991 F:      drivers/leds/leds-mlxreg.c
8992 F:      Documentation/leds/leds-mlxcpld.txt
8993
8994 MELLANOX PLATFORM DRIVER
8995 M:      Vadim Pasternak <vadimp@mellanox.com>
8996 L:      platform-driver-x86@vger.kernel.org
8997 S:      Supported
8998 F:      drivers/platform/x86/mlx-platform.c
8999
9000 MEMBARRIER SUPPORT
9001 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9002 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9003 L:      linux-kernel@vger.kernel.org
9004 S:      Supported
9005 F:      kernel/sched/membarrier.c
9006 F:      include/uapi/linux/membarrier.h
9007 F:      arch/powerpc/include/asm/membarrier.h
9008
9009 MEMORY MANAGEMENT
9010 L:      linux-mm@kvack.org
9011 W:      http://www.linux-mm.org
9012 S:      Maintained
9013 F:      include/linux/mm.h
9014 F:      include/linux/gfp.h
9015 F:      include/linux/mmzone.h
9016 F:      include/linux/memory_hotplug.h
9017 F:      include/linux/vmalloc.h
9018 F:      mm/
9019
9020 MEMORY TECHNOLOGY DEVICES (MTD)
9021 M:      David Woodhouse <dwmw2@infradead.org>
9022 M:      Brian Norris <computersforpeace@gmail.com>
9023 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9024 M:      Marek Vasut <marek.vasut@gmail.com>
9025 M:      Richard Weinberger <richard@nod.at>
9026 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
9027 L:      linux-mtd@lists.infradead.org
9028 W:      http://www.linux-mtd.infradead.org/
9029 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9030 T:      git git://git.infradead.org/linux-mtd.git master
9031 T:      git git://git.infradead.org/linux-mtd.git mtd/next
9032 S:      Maintained
9033 F:      Documentation/devicetree/bindings/mtd/
9034 F:      drivers/mtd/
9035 F:      include/linux/mtd/
9036 F:      include/uapi/mtd/
9037
9038 MEN A21 WATCHDOG DRIVER
9039 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9040 L:      linux-watchdog@vger.kernel.org
9041 S:      Maintained
9042 F:      drivers/watchdog/mena21_wdt.c
9043
9044 MEN CHAMELEON BUS (mcb)
9045 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9046 S:      Maintained
9047 F:      drivers/mcb/
9048 F:      include/linux/mcb.h
9049 F:      Documentation/men-chameleon-bus.txt
9050
9051 MEN F21BMC (Board Management Controller)
9052 M:      Andreas Werner <andreas.werner@men.de>
9053 S:      Supported
9054 F:      drivers/mfd/menf21bmc.c
9055 F:      drivers/watchdog/menf21bmc_wdt.c
9056 F:      drivers/leds/leds-menf21bmc.c
9057 F:      drivers/hwmon/menf21bmc_hwmon.c
9058 F:      Documentation/hwmon/menf21bmc
9059
9060 MESON AO CEC DRIVER FOR AMLOGIC SOCS
9061 M:      Neil Armstrong <narmstrong@baylibre.com>
9062 L:      linux-media@lists.freedesktop.org
9063 L:      linux-amlogic@lists.infradead.org
9064 W:      http://linux-meson.com/
9065 S:      Supported
9066 F:      drivers/media/platform/meson/ao-cec.c
9067 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
9068 T:      git git://linuxtv.org/media_tree.git
9069
9070 MICROBLAZE ARCHITECTURE
9071 M:      Michal Simek <monstr@monstr.eu>
9072 W:      http://www.monstr.eu/fdt/
9073 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
9074 S:      Supported
9075 F:      arch/microblaze/
9076
9077 MICROCHIP / ATMEL AT91 SERIAL DRIVER
9078 M:      Richard Genoud <richard.genoud@gmail.com>
9079 S:      Maintained
9080 F:      drivers/tty/serial/atmel_serial.c
9081 F:      drivers/tty/serial/atmel_serial.h
9082
9083 MICROCHIP / ATMEL DMA DRIVER
9084 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9086 L:      dmaengine@vger.kernel.org
9087 S:      Supported
9088 F:      drivers/dma/at_hdmac.c
9089 F:      drivers/dma/at_hdmac_regs.h
9090 F:      include/linux/platform_data/dma-atmel.h
9091
9092 MICROCHIP / ATMEL ECC DRIVER
9093 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9094 L:      linux-crypto@vger.kernel.org
9095 S:      Maintained
9096 F:      drivers/crypto/atmel-ecc.*
9097
9098 MICROCHIP / ATMEL ISC DRIVER
9099 M:      Songjun Wu <songjun.wu@microchip.com>
9100 L:      linux-media@vger.kernel.org
9101 S:      Supported
9102 F:      drivers/media/platform/atmel/atmel-isc.c
9103 F:      drivers/media/platform/atmel/atmel-isc-regs.h
9104 F:      devicetree/bindings/media/atmel-isc.txt
9105
9106 MICROCHIP / ATMEL NAND DRIVER
9107 M:      Wenyou Yang <wenyou.yang@microchip.com>
9108 M:      Josh Wu <rainyfeeling@outlook.com>
9109 L:      linux-mtd@lists.infradead.org
9110 S:      Supported
9111 F:      drivers/mtd/nand/atmel/*
9112 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
9113
9114 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9115 M:      Woojung Huh <Woojung.Huh@microchip.com>
9116 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9117 L:      netdev@vger.kernel.org
9118 S:      Maintained
9119 F:      net/dsa/tag_ksz.c
9120 F:      drivers/net/dsa/microchip/*
9121 F:      include/linux/platform_data/microchip-ksz.h
9122 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
9123
9124 MICROCHIP USB251XB DRIVER
9125 M:      Richard Leitner <richard.leitner@skidata.com>
9126 L:      linux-usb@vger.kernel.org
9127 S:      Maintained
9128 F:      drivers/usb/misc/usb251xb.c
9129 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
9130
9131 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9132 M:      Don Brace <don.brace@microsemi.com>
9133 L:      esc.storagedev@microsemi.com
9134 L:      linux-scsi@vger.kernel.org
9135 S:      Supported
9136 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
9137 F:      drivers/scsi/smartpqi/Kconfig
9138 F:      drivers/scsi/smartpqi/Makefile
9139 F:      include/linux/cciss*.h
9140 F:      include/uapi/linux/cciss*.h
9141 F:      Documentation/scsi/smartpqi.txt
9142
9143 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9144 M:      Chen Yu <yu.c.chen@intel.com>
9145 L:      platform-driver-x86@vger.kernel.org
9146 S:      Supported
9147 F:      drivers/platform/x86/surfacepro3_button.c
9148
9149 MICROTEK X6 SCANNER
9150 M:      Oliver Neukum <oliver@neukum.org>
9151 S:      Maintained
9152 F:      drivers/usb/image/microtek.*
9153
9154 MIPS
9155 M:      Ralf Baechle <ralf@linux-mips.org>
9156 M:      James Hogan <jhogan@kernel.org>
9157 L:      linux-mips@linux-mips.org
9158 W:      http://www.linux-mips.org/
9159 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
9160 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9161 S:      Supported
9162 F:      Documentation/devicetree/bindings/mips/
9163 F:      Documentation/mips/
9164 F:      arch/mips/
9165 F:      drivers/platform/mips/
9166
9167 MIPS BOSTON DEVELOPMENT BOARD
9168 M:      Paul Burton <paul.burton@mips.com>
9169 L:      linux-mips@linux-mips.org
9170 S:      Maintained
9171 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
9172 F:      arch/mips/boot/dts/img/boston.dts
9173 F:      arch/mips/configs/generic/board-boston.config
9174 F:      drivers/clk/imgtec/clk-boston.c
9175 F:      include/dt-bindings/clock/boston-clock.h
9176
9177 MIPS GENERIC PLATFORM
9178 M:      Paul Burton <paul.burton@mips.com>
9179 L:      linux-mips@linux-mips.org
9180 S:      Supported
9181 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
9182 F:      arch/mips/generic/
9183 F:      arch/mips/tools/generic-board-config.sh
9184
9185 MIPS/LOONGSON1 ARCHITECTURE
9186 M:      Keguang Zhang <keguang.zhang@gmail.com>
9187 L:      linux-mips@linux-mips.org
9188 S:      Maintained
9189 F:      arch/mips/loongson32/
9190 F:      arch/mips/include/asm/mach-loongson32/
9191 F:      drivers/*/*loongson1*
9192 F:      drivers/*/*/*loongson1*
9193
9194 MIPS/LOONGSON2 ARCHITECTURE
9195 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
9196 L:      linux-mips@linux-mips.org
9197 S:      Maintained
9198 F:      arch/mips/loongson64/*{2e/2f}*
9199 F:      arch/mips/include/asm/mach-loongson64/
9200 F:      drivers/*/*loongson2*
9201 F:      drivers/*/*/*loongson2*
9202
9203 MIPS/LOONGSON3 ARCHITECTURE
9204 M:      Huacai Chen <chenhc@lemote.com>
9205 L:      linux-mips@linux-mips.org
9206 S:      Maintained
9207 F:      arch/mips/loongson64/
9208 F:      arch/mips/include/asm/mach-loongson64/
9209 F:      drivers/platform/mips/cpu_hwmon.c
9210 F:      drivers/*/*loongson3*
9211 F:      drivers/*/*/*loongson3*
9212
9213 MIPS RINT INSTRUCTION EMULATION
9214 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
9215 L:      linux-mips@linux-mips.org
9216 S:      Supported
9217 F:      arch/mips/math-emu/sp_rint.c
9218 F:      arch/mips/math-emu/dp_rint.c
9219
9220 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9221 M:      Hans Verkuil <hverkuil@xs4all.nl>
9222 L:      linux-media@vger.kernel.org
9223 T:      git git://linuxtv.org/media_tree.git
9224 W:      https://linuxtv.org
9225 S:      Odd Fixes
9226 F:      drivers/media/radio/radio-miropcm20*
9227
9228 MMP SUPPORT
9229 M:      Eric Miao <eric.y.miao@gmail.com>
9230 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9232 T:      git git://github.com/hzhuang1/linux.git
9233 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9234 S:      Maintained
9235 F:      arch/arm/boot/dts/mmp*
9236 F:      arch/arm/mach-mmp/
9237
9238 MN88472 MEDIA DRIVER
9239 M:      Antti Palosaari <crope@iki.fi>
9240 L:      linux-media@vger.kernel.org
9241 W:      https://linuxtv.org
9242 W:      http://palosaari.fi/linux/
9243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9244 S:      Maintained
9245 F:      drivers/media/dvb-frontends/mn88472*
9246
9247 MN88473 MEDIA DRIVER
9248 M:      Antti Palosaari <crope@iki.fi>
9249 L:      linux-media@vger.kernel.org
9250 W:      https://linuxtv.org
9251 W:      http://palosaari.fi/linux/
9252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9253 S:      Maintained
9254 F:      drivers/media/dvb-frontends/mn88473*
9255
9256 MODULE SUPPORT
9257 M:      Jessica Yu <jeyu@kernel.org>
9258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9259 S:      Maintained
9260 F:      include/linux/module.h
9261 F:      kernel/module.c
9262
9263 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9264 W:      http://popies.net/meye/
9265 S:      Orphan
9266 F:      Documentation/media/v4l-drivers/meye*
9267 F:      drivers/media/pci/meye/
9268 F:      include/uapi/linux/meye.h
9269
9270 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9271 M:      Jiri Slaby <jirislaby@gmail.com>
9272 S:      Maintained
9273 F:      Documentation/serial/moxa-smartio
9274 F:      drivers/tty/mxser.*
9275
9276 MR800 AVERMEDIA USB FM RADIO DRIVER
9277 M:      Alexey Klimov <klimov.linux@gmail.com>
9278 L:      linux-media@vger.kernel.org
9279 T:      git git://linuxtv.org/media_tree.git
9280 S:      Maintained
9281 F:      drivers/media/radio/radio-mr800.c
9282
9283 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9284 M:      Alan Ott <alan@signal11.us>
9285 L:      linux-wpan@vger.kernel.org
9286 S:      Maintained
9287 F:      drivers/net/ieee802154/mrf24j40.c
9288 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9289
9290 MSI LAPTOP SUPPORT
9291 M:      "Lee, Chun-Yi" <jlee@suse.com>
9292 L:      platform-driver-x86@vger.kernel.org
9293 S:      Maintained
9294 F:      drivers/platform/x86/msi-laptop.c
9295
9296 MSI WMI SUPPORT
9297 L:      platform-driver-x86@vger.kernel.org
9298 S:      Orphan
9299 F:      drivers/platform/x86/msi-wmi.c
9300
9301 MSI001 MEDIA DRIVER
9302 M:      Antti Palosaari <crope@iki.fi>
9303 L:      linux-media@vger.kernel.org
9304 W:      https://linuxtv.org
9305 W:      http://palosaari.fi/linux/
9306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9307 T:      git git://linuxtv.org/anttip/media_tree.git
9308 S:      Maintained
9309 F:      drivers/media/tuners/msi001*
9310
9311 MSI2500 MEDIA DRIVER
9312 M:      Antti Palosaari <crope@iki.fi>
9313 L:      linux-media@vger.kernel.org
9314 W:      https://linuxtv.org
9315 W:      http://palosaari.fi/linux/
9316 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9317 T:      git git://linuxtv.org/anttip/media_tree.git
9318 S:      Maintained
9319 F:      drivers/media/usb/msi2500/
9320
9321 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9322 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9323 L:      linux-mtd@lists.infradead.org
9324 S:      Maintained
9325 F:      drivers/mtd/devices/docg3*
9326
9327 MT9M032 APTINA SENSOR DRIVER
9328 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9329 L:      linux-media@vger.kernel.org
9330 T:      git git://linuxtv.org/media_tree.git
9331 S:      Maintained
9332 F:      drivers/media/i2c/mt9m032.c
9333 F:      include/media/i2c/mt9m032.h
9334
9335 MT9P031 APTINA CAMERA SENSOR
9336 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9337 L:      linux-media@vger.kernel.org
9338 T:      git git://linuxtv.org/media_tree.git
9339 S:      Maintained
9340 F:      drivers/media/i2c/mt9p031.c
9341 F:      include/media/i2c/mt9p031.h
9342
9343 MT9T001 APTINA CAMERA SENSOR
9344 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9345 L:      linux-media@vger.kernel.org
9346 T:      git git://linuxtv.org/media_tree.git
9347 S:      Maintained
9348 F:      drivers/media/i2c/mt9t001.c
9349 F:      include/media/i2c/mt9t001.h
9350
9351 MT9V032 APTINA CAMERA SENSOR
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:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9357 F:      drivers/media/i2c/mt9v032.c
9358 F:      include/media/i2c/mt9v032.h
9359
9360 MULTIFUNCTION DEVICES (MFD)
9361 M:      Lee Jones <lee.jones@linaro.org>
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9363 S:      Supported
9364 F:      Documentation/devicetree/bindings/mfd/
9365 F:      drivers/mfd/
9366 F:      include/linux/mfd/
9367 F:      include/dt-bindings/mfd/
9368
9369 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9370 S:      Orphan
9371 F:      drivers/mmc/host/mmc_spi.c
9372 F:      include/linux/spi/mmc_spi.h
9373
9374 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9375 M:      Ulf Hansson <ulf.hansson@linaro.org>
9376 L:      linux-mmc@vger.kernel.org
9377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9378 S:      Maintained
9379 F:      Documentation/devicetree/bindings/mmc/
9380 F:      drivers/mmc/
9381 F:      include/linux/mmc/
9382 F:      include/uapi/linux/mmc/
9383
9384 MULTIPLEXER SUBSYSTEM
9385 M:      Peter Rosin <peda@axentia.se>
9386 S:      Maintained
9387 F:      Documentation/ABI/testing/mux/sysfs-class-mux*
9388 F:      Documentation/devicetree/bindings/mux/
9389 F:      include/linux/dt-bindings/mux/
9390 F:      include/linux/mux/
9391 F:      drivers/mux/
9392
9393 MULTITECH MULTIPORT CARD (ISICOM)
9394 S:      Orphan
9395 F:      drivers/tty/isicom.c
9396 F:      include/linux/isicom.h
9397
9398 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9399 M:      Bin Liu <b-liu@ti.com>
9400 L:      linux-usb@vger.kernel.org
9401 S:      Maintained
9402 F:      drivers/usb/musb/
9403
9404 MXL5007T MEDIA DRIVER
9405 M:      Michael Krufky <mkrufky@linuxtv.org>
9406 L:      linux-media@vger.kernel.org
9407 W:      https://linuxtv.org
9408 W:      http://github.com/mkrufky
9409 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9410 T:      git git://linuxtv.org/mkrufky/tuners.git
9411 S:      Maintained
9412 F:      drivers/media/tuners/mxl5007t.*
9413
9414 MXSFB DRM DRIVER
9415 M:      Marek Vasut <marex@denx.de>
9416 S:      Supported
9417 F:      drivers/gpu/drm/mxsfb/
9418 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
9419
9420 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9421 M:      Chris Lee <christopher.lee@cspi.com>
9422 L:      netdev@vger.kernel.org
9423 W:      https://www.cspi.com/ethernet-products/support/downloads/
9424 S:      Supported
9425 F:      drivers/net/ethernet/myricom/myri10ge/
9426
9427 NAND FLASH SUBSYSTEM
9428 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9429 R:      Richard Weinberger <richard@nod.at>
9430 L:      linux-mtd@lists.infradead.org
9431 W:      http://www.linux-mtd.infradead.org/
9432 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9433 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
9434 T:      git git://git.infradead.org/linux-mtd.git nand/next
9435 S:      Maintained
9436 F:      drivers/mtd/nand/
9437 F:      include/linux/mtd/*nand*.h
9438
9439 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9440 M:      Daniel Mack <zonque@gmail.com>
9441 S:      Maintained
9442 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9443 W:      http://www.native-instruments.com
9444 F:      sound/usb/caiaq/
9445
9446 NATSEMI ETHERNET DRIVER (DP8381x)
9447 S:      Orphan
9448 F:      drivers/net/ethernet/natsemi/natsemi.c
9449
9450 NCP FILESYSTEM
9451 M:      Petr Vandrovec <petr@vandrovec.name>
9452 S:      Obsolete
9453 F:      drivers/staging/ncpfs/
9454
9455 NCR 5380 SCSI DRIVERS
9456 M:      Finn Thain <fthain@telegraphics.com.au>
9457 M:      Michael Schmitz <schmitzmic@gmail.com>
9458 L:      linux-scsi@vger.kernel.org
9459 S:      Maintained
9460 F:      Documentation/scsi/g_NCR5380.txt
9461 F:      drivers/scsi/NCR5380.*
9462 F:      drivers/scsi/arm/cumana_1.c
9463 F:      drivers/scsi/arm/oak.c
9464 F:      drivers/scsi/atari_scsi.*
9465 F:      drivers/scsi/dmx3191d.c
9466 F:      drivers/scsi/g_NCR5380.*
9467 F:      drivers/scsi/mac_scsi.*
9468 F:      drivers/scsi/sun3_scsi.*
9469 F:      drivers/scsi/sun3_scsi_vme.c
9470
9471 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9472 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9473 L:      linux-scsi@vger.kernel.org
9474 S:      Maintained
9475 F:      drivers/scsi/NCR_D700.*
9476
9477 NCT6775 HARDWARE MONITOR DRIVER
9478 M:      Guenter Roeck <linux@roeck-us.net>
9479 L:      linux-hwmon@vger.kernel.org
9480 S:      Maintained
9481 F:      Documentation/hwmon/nct6775
9482 F:      drivers/hwmon/nct6775.c
9483
9484 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9485 M:      Faisal Latif <faisal.latif@intel.com>
9486 L:      linux-rdma@vger.kernel.org
9487 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9488 S:      Supported
9489 F:      drivers/infiniband/hw/nes/
9490 F:      include/uapi/rdma/nes-abi.h
9491
9492 NETEM NETWORK EMULATOR
9493 M:      Stephen Hemminger <stephen@networkplumber.org>
9494 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
9495 S:      Maintained
9496 F:      net/sched/sch_netem.c
9497
9498 NETERION 10GbE DRIVERS (s2io/vxge)
9499 M:      Jon Mason <jdmason@kudzu.us>
9500 L:      netdev@vger.kernel.org
9501 S:      Supported
9502 F:      Documentation/networking/s2io.txt
9503 F:      Documentation/networking/vxge.txt
9504 F:      drivers/net/ethernet/neterion/
9505
9506 NETFILTER
9507 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9508 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9509 M:      Florian Westphal <fw@strlen.de>
9510 L:      netfilter-devel@vger.kernel.org
9511 L:      coreteam@netfilter.org
9512 W:      http://www.netfilter.org/
9513 W:      http://www.iptables.org/
9514 W:      http://www.nftables.org/
9515 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
9516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9518 S:      Maintained
9519 F:      include/linux/netfilter*
9520 F:      include/linux/netfilter/
9521 F:      include/net/netfilter/
9522 F:      include/uapi/linux/netfilter*
9523 F:      include/uapi/linux/netfilter/
9524 F:      net/*/netfilter.c
9525 F:      net/*/netfilter/
9526 F:      net/netfilter/
9527 F:      net/bridge/br_netfilter*.c
9528
9529 NETROM NETWORK LAYER
9530 M:      Ralf Baechle <ralf@linux-mips.org>
9531 L:      linux-hams@vger.kernel.org
9532 W:      http://www.linux-ax25.org/
9533 S:      Maintained
9534 F:      include/net/netrom.h
9535 F:      include/uapi/linux/netrom.h
9536 F:      net/netrom/
9537
9538 NETRONOME ETHERNET DRIVERS
9539 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9540 L:      oss-drivers@netronome.com
9541 S:      Maintained
9542 F:      drivers/net/ethernet/netronome/
9543
9544 NETWORK BLOCK DEVICE (NBD)
9545 M:      Josef Bacik <jbacik@fb.com>
9546 S:      Maintained
9547 L:      linux-block@vger.kernel.org
9548 L:      nbd@other.debian.org
9549 F:      Documentation/blockdev/nbd.txt
9550 F:      drivers/block/nbd.c
9551 F:      include/uapi/linux/nbd.h
9552
9553 NETWORK DROP MONITOR
9554 M:      Neil Horman <nhorman@tuxdriver.com>
9555 L:      netdev@vger.kernel.org
9556 S:      Maintained
9557 W:      https://fedorahosted.org/dropwatch/
9558 F:      net/core/drop_monitor.c
9559
9560 NETWORKING DRIVERS
9561 L:      netdev@vger.kernel.org
9562 W:      http://www.linuxfoundation.org/en/Net
9563 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9566 S:      Odd Fixes
9567 F:      Documentation/devicetree/bindings/net/
9568 F:      drivers/net/
9569 F:      include/linux/if_*
9570 F:      include/linux/netdevice.h
9571 F:      include/linux/etherdevice.h
9572 F:      include/linux/fcdevice.h
9573 F:      include/linux/fddidevice.h
9574 F:      include/linux/hippidevice.h
9575 F:      include/linux/inetdevice.h
9576 F:      include/uapi/linux/if_*
9577 F:      include/uapi/linux/netdevice.h
9578
9579 NETWORKING DRIVERS (WIRELESS)
9580 M:      Kalle Valo <kvalo@codeaurora.org>
9581 L:      linux-wireless@vger.kernel.org
9582 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9585 S:      Maintained
9586 F:      Documentation/devicetree/bindings/net/wireless/
9587 F:      drivers/net/wireless/
9588
9589 NETWORKING [DSA]
9590 M:      Andrew Lunn <andrew@lunn.ch>
9591 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9592 M:      Florian Fainelli <f.fainelli@gmail.com>
9593 S:      Maintained
9594 F:      net/dsa/
9595 F:      include/net/dsa.h
9596 F:      include/linux/dsa/
9597 F:      drivers/net/dsa/
9598
9599 NETWORKING [GENERAL]
9600 M:      "David S. Miller" <davem@davemloft.net>
9601 L:      netdev@vger.kernel.org
9602 W:      http://www.linuxfoundation.org/en/Net
9603 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9606 B:      mailto:netdev@vger.kernel.org
9607 S:      Maintained
9608 F:      net/
9609 F:      include/net/
9610 F:      include/linux/in.h
9611 F:      include/linux/net.h
9612 F:      include/linux/netdevice.h
9613 F:      include/uapi/linux/in.h
9614 F:      include/uapi/linux/net.h
9615 F:      include/uapi/linux/netdevice.h
9616 F:      include/uapi/linux/net_namespace.h
9617 F:      tools/testing/selftests/net/
9618 F:      lib/net_utils.c
9619 F:      lib/random32.c
9620
9621 NETWORKING [IPSEC]
9622 M:      Steffen Klassert <steffen.klassert@secunet.com>
9623 M:      Herbert Xu <herbert@gondor.apana.org.au>
9624 M:      "David S. Miller" <davem@davemloft.net>
9625 L:      netdev@vger.kernel.org
9626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9628 S:      Maintained
9629 F:      net/core/flow.c
9630 F:      net/xfrm/
9631 F:      net/key/
9632 F:      net/ipv4/xfrm*
9633 F:      net/ipv4/esp4*
9634 F:      net/ipv4/ah4.c
9635 F:      net/ipv4/ipcomp.c
9636 F:      net/ipv4/ip_vti.c
9637 F:      net/ipv6/xfrm*
9638 F:      net/ipv6/esp6*
9639 F:      net/ipv6/ah6.c
9640 F:      net/ipv6/ipcomp6.c
9641 F:      net/ipv6/ip6_vti.c
9642 F:      include/uapi/linux/xfrm.h
9643 F:      include/net/xfrm.h
9644
9645 NETWORKING [IPv4/IPv6]
9646 M:      "David S. Miller" <davem@davemloft.net>
9647 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9648 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9649 L:      netdev@vger.kernel.org
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9651 S:      Maintained
9652 F:      net/ipv4/
9653 F:      net/ipv6/
9654 F:      include/net/ip*
9655 F:      arch/x86/net/*
9656
9657 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9658 M:      Paul Moore <paul@paul-moore.com>
9659 W:      https://github.com/netlabel
9660 L:      netdev@vger.kernel.org
9661 L:      linux-security-module@vger.kernel.org
9662 S:      Maintained
9663 F:      Documentation/netlabel/
9664 F:      include/net/calipso.h
9665 F:      include/net/cipso_ipv4.h
9666 F:      include/net/netlabel.h
9667 F:      include/uapi/linux/netfilter/xt_SECMARK.h
9668 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
9669 F:      net/netlabel/
9670 F:      net/ipv4/cipso_ipv4.c
9671 F:      net/ipv6/calipso.c
9672 F:      net/netfilter/xt_CONNSECMARK.c
9673 F:      net/netfilter/xt_SECMARK.c
9674
9675 NETWORKING [TLS]
9676 M:      Ilya Lesokhin <ilyal@mellanox.com>
9677 M:      Aviad Yehezkel <aviadye@mellanox.com>
9678 M:      Dave Watson <davejwatson@fb.com>
9679 L:      netdev@vger.kernel.org
9680 S:      Maintained
9681 F:      net/tls/*
9682 F:      include/uapi/linux/tls.h
9683 F:      include/net/tls.h
9684
9685 NETWORKING [WIRELESS]
9686 L:      linux-wireless@vger.kernel.org
9687 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9688
9689 NETDEVSIM
9690 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9691 S:      Maintained
9692 F:      drivers/net/netdevsim/*
9693
9694 NETXEN (1/10) GbE SUPPORT
9695 M:      Manish Chopra <manish.chopra@cavium.com>
9696 M:      Rahul Verma <rahul.verma@cavium.com>
9697 M:      Dept-GELinuxNICDev@cavium.com
9698 L:      netdev@vger.kernel.org
9699 S:      Supported
9700 F:      drivers/net/ethernet/qlogic/netxen/
9701
9702 NFC SUBSYSTEM
9703 M:      Samuel Ortiz <sameo@linux.intel.com>
9704 L:      linux-wireless@vger.kernel.org
9705 L:      linux-nfc@lists.01.org (subscribers-only)
9706 S:      Supported
9707 F:      net/nfc/
9708 F:      include/net/nfc/
9709 F:      include/uapi/linux/nfc.h
9710 F:      drivers/nfc/
9711 F:      include/linux/platform_data/nfcmrvl.h
9712 F:      include/linux/platform_data/nxp-nci.h
9713 F:      Documentation/devicetree/bindings/net/nfc/
9714
9715 NFS, SUNRPC, AND LOCKD CLIENTS
9716 M:      Trond Myklebust <trond.myklebust@primarydata.com>
9717 M:      Anna Schumaker <anna.schumaker@netapp.com>
9718 L:      linux-nfs@vger.kernel.org
9719 W:      http://client.linux-nfs.org
9720 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9721 S:      Maintained
9722 F:      fs/lockd/
9723 F:      fs/nfs/
9724 F:      fs/nfs_common/
9725 F:      net/sunrpc/
9726 F:      include/linux/lockd/
9727 F:      include/linux/nfs*
9728 F:      include/linux/sunrpc/
9729 F:      include/uapi/linux/nfs*
9730 F:      include/uapi/linux/sunrpc/
9731
9732 NILFS2 FILESYSTEM
9733 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9734 L:      linux-nilfs@vger.kernel.org
9735 W:      https://nilfs.sourceforge.io/
9736 W:      https://nilfs.osdn.jp/
9737 T:      git git://github.com/konis/nilfs2.git
9738 S:      Supported
9739 F:      Documentation/filesystems/nilfs2.txt
9740 F:      fs/nilfs2/
9741 F:      include/trace/events/nilfs2.h
9742 F:      include/uapi/linux/nilfs2_api.h
9743 F:      include/uapi/linux/nilfs2_ondisk.h
9744
9745 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9746 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9747 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9748 S:      Maintained
9749 F:      Documentation/scsi/NinjaSCSI.txt
9750 F:      drivers/scsi/pcmcia/nsp_*
9751
9752 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9753 M:      GOTO Masanori <gotom@debian.or.jp>
9754 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9755 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9756 S:      Maintained
9757 F:      Documentation/scsi/NinjaSCSI.txt
9758 F:      drivers/scsi/nsp32*
9759
9760 NIOS2 ARCHITECTURE
9761 M:      Ley Foon Tan <lftan@altera.com>
9762 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9764 S:      Maintained
9765 F:      arch/nios2/
9766
9767 NOHZ, DYNTICKS SUPPORT
9768 M:      Frederic Weisbecker <fweisbec@gmail.com>
9769 M:      Thomas Gleixner <tglx@linutronix.de>
9770 M:      Ingo Molnar <mingo@kernel.org>
9771 L:      linux-kernel@vger.kernel.org
9772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9773 S:      Maintained
9774 F:      kernel/time/tick*.*
9775 F:      include/linux/tick.h
9776 F:      include/linux/sched/nohz.h
9777
9778 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9779 M:      Pavel Machek <pavel@ucw.cz>
9780 M:      Sakari Ailus <sakari.ailus@iki.fi>
9781 L:      linux-media@vger.kernel.org
9782 S:      Maintained
9783 F:      drivers/media/i2c/et8ek8
9784 F:      drivers/media/i2c/ad5820.c
9785
9786 NOKIA N900 POWER SUPPLY DRIVERS
9787 R:      Pali Rohár <pali.rohar@gmail.com>
9788 F:      include/linux/power/bq2415x_charger.h
9789 F:      include/linux/power/bq27xxx_battery.h
9790 F:      include/linux/power/isp1704_charger.h
9791 F:      drivers/power/supply/bq2415x_charger.c
9792 F:      drivers/power/supply/bq27xxx_battery.c
9793 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9794 F:      drivers/power/supply/isp1704_charger.c
9795 F:      drivers/power/supply/rx51_battery.c
9796
9797 NTB AMD DRIVER
9798 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9799 L:      linux-ntb@googlegroups.com
9800 S:      Supported
9801 F:      drivers/ntb/hw/amd/
9802
9803 NTB DRIVER CORE
9804 M:      Jon Mason <jdmason@kudzu.us>
9805 M:      Dave Jiang <dave.jiang@intel.com>
9806 M:      Allen Hubbe <allenbh@gmail.com>
9807 L:      linux-ntb@googlegroups.com
9808 S:      Supported
9809 W:      https://github.com/jonmason/ntb/wiki
9810 T:      git git://github.com/jonmason/ntb.git
9811 F:      drivers/ntb/
9812 F:      drivers/net/ntb_netdev.c
9813 F:      include/linux/ntb.h
9814 F:      include/linux/ntb_transport.h
9815 F:      tools/testing/selftests/ntb/
9816
9817 NTB IDT DRIVER
9818 M:      Serge Semin <fancer.lancer@gmail.com>
9819 L:      linux-ntb@googlegroups.com
9820 S:      Supported
9821 F:      drivers/ntb/hw/idt/
9822
9823 NTB INTEL DRIVER
9824 M:      Dave Jiang <dave.jiang@intel.com>
9825 L:      linux-ntb@googlegroups.com
9826 S:      Supported
9827 W:      https://github.com/davejiang/linux/wiki
9828 T:      git https://github.com/davejiang/linux.git
9829 F:      drivers/ntb/hw/intel/
9830
9831 NTFS FILESYSTEM
9832 M:      Anton Altaparmakov <anton@tuxera.com>
9833 L:      linux-ntfs-dev@lists.sourceforge.net
9834 W:      http://www.tuxera.com/
9835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9836 S:      Supported
9837 F:      Documentation/filesystems/ntfs.txt
9838 F:      fs/ntfs/
9839
9840 NUBUS SUBSYSTEM
9841 M:      Finn Thain <fthain@telegraphics.com.au>
9842 L:      linux-m68k@lists.linux-m68k.org
9843 S:      Maintained
9844 F:      arch/*/include/asm/nubus.h
9845 F:      drivers/nubus/
9846 F:      include/linux/nubus.h
9847 F:      include/uapi/linux/nubus.h
9848
9849 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9850 M:      Antonino Daplas <adaplas@gmail.com>
9851 L:      linux-fbdev@vger.kernel.org
9852 S:      Maintained
9853 F:      drivers/video/fbdev/riva/
9854 F:      drivers/video/fbdev/nvidia/
9855
9856 NVM EXPRESS DRIVER
9857 M:      Keith Busch <keith.busch@intel.com>
9858 M:      Jens Axboe <axboe@fb.com>
9859 M:      Christoph Hellwig <hch@lst.de>
9860 M:      Sagi Grimberg <sagi@grimberg.me>
9861 L:      linux-nvme@lists.infradead.org
9862 T:      git://git.infradead.org/nvme.git
9863 W:      http://git.infradead.org/nvme.git
9864 S:      Supported
9865 F:      drivers/nvme/host/
9866 F:      include/linux/nvme.h
9867 F:      include/uapi/linux/nvme_ioctl.h
9868
9869 NVM EXPRESS FC TRANSPORT DRIVERS
9870 M:      James Smart <james.smart@broadcom.com>
9871 L:      linux-nvme@lists.infradead.org
9872 S:      Supported
9873 F:      include/linux/nvme-fc.h
9874 F:      include/linux/nvme-fc-driver.h
9875 F:      drivers/nvme/host/fc.c
9876 F:      drivers/nvme/target/fc.c
9877 F:      drivers/nvme/target/fcloop.c
9878
9879 NVM EXPRESS TARGET DRIVER
9880 M:      Christoph Hellwig <hch@lst.de>
9881 M:      Sagi Grimberg <sagi@grimberg.me>
9882 L:      linux-nvme@lists.infradead.org
9883 T:      git://git.infradead.org/nvme.git
9884 W:      http://git.infradead.org/nvme.git
9885 S:      Supported
9886 F:      drivers/nvme/target/
9887
9888 NVMEM FRAMEWORK
9889 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9890 S:      Maintained
9891 F:      drivers/nvmem/
9892 F:      Documentation/devicetree/bindings/nvmem/
9893 F:      Documentation/ABI/stable/sysfs-bus-nvmem
9894 F:      include/linux/nvmem-consumer.h
9895 F:      include/linux/nvmem-provider.h
9896
9897 NXP SGTL5000 DRIVER
9898 M:      Fabio Estevam <fabio.estevam@nxp.com>
9899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9900 S:      Maintained
9901 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
9902 F:      sound/soc/codecs/sgtl5000*
9903
9904 NXP TDA998X DRM DRIVER
9905 M:      Russell King <linux@armlinux.org.uk>
9906 S:      Supported
9907 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9908 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9909 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9910 F:      include/drm/i2c/tda998x.h
9911
9912 NXP TFA9879 DRIVER
9913 M:      Peter Rosin <peda@axentia.se>
9914 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9915 S:      Maintained
9916 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
9917 F:      sound/soc/codecs/tfa9879*
9918
9919 NXP-NCI NFC DRIVER
9920 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
9921 R:      Charles Gorand <charles.gorand@effinnov.com>
9922 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9923 S:      Supported
9924 F:      drivers/nfc/nxp-nci
9925
9926 OBJTOOL
9927 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9928 M:      Peter Zijlstra <peterz@infradead.org>
9929 S:      Supported
9930 F:      tools/objtool/
9931
9932 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
9933 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
9934 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
9935 L:      linuxppc-dev@lists.ozlabs.org
9936 S:      Supported
9937 F:      arch/powerpc/platforms/powernv/ocxl.c
9938 F:      arch/powerpc/include/asm/pnv-ocxl.h
9939 F:      drivers/misc/ocxl/
9940 F:      include/misc/ocxl*
9941 F:      include/uapi/misc/ocxl.h
9942 F:      Documentation/accelerators/ocxl.txt
9943
9944 OMAP AUDIO SUPPORT
9945 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9946 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
9947 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9948 L:      linux-omap@vger.kernel.org
9949 S:      Maintained
9950 F:      sound/soc/omap/
9951
9952 OMAP CLOCK FRAMEWORK SUPPORT
9953 M:      Paul Walmsley <paul@pwsan.com>
9954 L:      linux-omap@vger.kernel.org
9955 S:      Maintained
9956 F:      arch/arm/*omap*/*clock*
9957
9958 OMAP DEVICE TREE SUPPORT
9959 M:      Benoît Cousson <bcousson@baylibre.com>
9960 M:      Tony Lindgren <tony@atomide.com>
9961 L:      linux-omap@vger.kernel.org
9962 L:      devicetree@vger.kernel.org
9963 S:      Maintained
9964 F:      arch/arm/boot/dts/*omap*
9965 F:      arch/arm/boot/dts/*am3*
9966 F:      arch/arm/boot/dts/*am4*
9967 F:      arch/arm/boot/dts/*am5*
9968 F:      arch/arm/boot/dts/*dra7*
9969
9970 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9971 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9972 L:      linux-omap@vger.kernel.org
9973 L:      linux-fbdev@vger.kernel.org
9974 S:      Maintained
9975 F:      drivers/video/fbdev/omap2/
9976 F:      Documentation/arm/OMAP/DSS
9977
9978 OMAP FRAMEBUFFER SUPPORT
9979 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9980 L:      linux-fbdev@vger.kernel.org
9981 L:      linux-omap@vger.kernel.org
9982 S:      Maintained
9983 F:      drivers/video/fbdev/omap/
9984
9985 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9986 M:      Roger Quadros <rogerq@ti.com>
9987 M:      Tony Lindgren <tony@atomide.com>
9988 L:      linux-omap@vger.kernel.org
9989 S:      Maintained
9990 F:      drivers/memory/omap-gpmc.c
9991 F:      arch/arm/mach-omap2/*gpmc*
9992
9993 OMAP GPIO DRIVER
9994 M:      Grygorii Strashko <grygorii.strashko@ti.com>
9995 M:      Santosh Shilimkar <ssantosh@kernel.org>
9996 M:      Kevin Hilman <khilman@kernel.org>
9997 L:      linux-omap@vger.kernel.org
9998 S:      Maintained
9999 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
10000 F:      drivers/gpio/gpio-omap.c
10001
10002 OMAP HARDWARE SPINLOCK SUPPORT
10003 M:      Ohad Ben-Cohen <ohad@wizery.com>
10004 L:      linux-omap@vger.kernel.org
10005 S:      Maintained
10006 F:      drivers/hwspinlock/omap_hwspinlock.c
10007
10008 OMAP HS MMC SUPPORT
10009 L:      linux-mmc@vger.kernel.org
10010 L:      linux-omap@vger.kernel.org
10011 S:      Orphan
10012 F:      drivers/mmc/host/omap_hsmmc.c
10013
10014 OMAP HWMOD DATA
10015 M:      Paul Walmsley <paul@pwsan.com>
10016 L:      linux-omap@vger.kernel.org
10017 S:      Maintained
10018 F:      arch/arm/mach-omap2/omap_hwmod*data*
10019
10020 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10021 M:      Benoît Cousson <bcousson@baylibre.com>
10022 L:      linux-omap@vger.kernel.org
10023 S:      Maintained
10024 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10025
10026 OMAP HWMOD SUPPORT
10027 M:      Benoît Cousson <bcousson@baylibre.com>
10028 M:      Paul Walmsley <paul@pwsan.com>
10029 L:      linux-omap@vger.kernel.org
10030 S:      Maintained
10031 F:      arch/arm/mach-omap2/omap_hwmod.*
10032
10033 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10034 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10035 L:      linux-media@vger.kernel.org
10036 S:      Maintained
10037 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
10038 F:      drivers/media/platform/omap3isp/
10039 F:      drivers/staging/media/omap4iss/
10040
10041 OMAP MMC SUPPORT
10042 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
10043 L:      linux-omap@vger.kernel.org
10044 S:      Maintained
10045 F:      drivers/mmc/host/omap.c
10046
10047 OMAP POWER MANAGEMENT SUPPORT
10048 M:      Kevin Hilman <khilman@kernel.org>
10049 L:      linux-omap@vger.kernel.org
10050 S:      Maintained
10051 F:      arch/arm/*omap*/*pm*
10052 F:      drivers/cpufreq/omap-cpufreq.c
10053
10054 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
10055 M:      Rajendra Nayak <rnayak@codeaurora.org>
10056 M:      Paul Walmsley <paul@pwsan.com>
10057 L:      linux-omap@vger.kernel.org
10058 S:      Maintained
10059 F:      arch/arm/mach-omap2/prm*
10060
10061 OMAP RANDOM NUMBER GENERATOR SUPPORT
10062 M:      Deepak Saxena <dsaxena@plexity.net>
10063 S:      Maintained
10064 F:      drivers/char/hw_random/omap-rng.c
10065
10066 OMAP USB SUPPORT
10067 L:      linux-usb@vger.kernel.org
10068 L:      linux-omap@vger.kernel.org
10069 S:      Orphan
10070 F:      drivers/usb/*/*omap*
10071 F:      arch/arm/*omap*/usb*
10072
10073 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
10074 M:      Mark Jackson <mpfj@newflow.co.uk>
10075 L:      linux-omap@vger.kernel.org
10076 S:      Maintained
10077 F:      arch/arm/boot/dts/am335x-nano.dts
10078
10079 OMAP1 SUPPORT
10080 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
10081 M:      Tony Lindgren <tony@atomide.com>
10082 L:      linux-omap@vger.kernel.org
10083 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10085 S:      Maintained
10086 F:      arch/arm/mach-omap1/
10087 F:      arch/arm/plat-omap/
10088 F:      arch/arm/configs/omap1_defconfig
10089 F:      drivers/i2c/busses/i2c-omap.c
10090 F:      include/linux/i2c-omap.h
10091
10092 OMAP2+ SUPPORT
10093 M:      Tony Lindgren <tony@atomide.com>
10094 L:      linux-omap@vger.kernel.org
10095 W:      http://www.muru.com/linux/omap/
10096 W:      http://linux.omap.com/
10097 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10099 S:      Maintained
10100 F:      arch/arm/mach-omap2/
10101 F:      arch/arm/plat-omap/
10102 F:      arch/arm/configs/omap2plus_defconfig
10103 F:      drivers/i2c/busses/i2c-omap.c
10104 F:      drivers/irqchip/irq-omap-intc.c
10105 F:      drivers/mfd/*omap*.c
10106 F:      drivers/mfd/menelaus.c
10107 F:      drivers/mfd/palmas.c
10108 F:      drivers/mfd/tps65217.c
10109 F:      drivers/mfd/tps65218.c
10110 F:      drivers/mfd/tps65910.c
10111 F:      drivers/mfd/twl-core.[ch]
10112 F:      drivers/mfd/twl4030*.c
10113 F:      drivers/mfd/twl6030*.c
10114 F:      drivers/mfd/twl6040*.c
10115 F:      drivers/regulator/palmas-regulator*.c
10116 F:      drivers/regulator/pbias-regulator.c
10117 F:      drivers/regulator/tps65217-regulator.c
10118 F:      drivers/regulator/tps65218-regulator.c
10119 F:      drivers/regulator/tps65910-regulator.c
10120 F:      drivers/regulator/twl-regulator.c
10121 F:      drivers/regulator/twl6030-regulator.c
10122 F:      include/linux/i2c-omap.h
10123
10124 ONION OMEGA2+ BOARD
10125 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10126 L:      linux-mips@linux-mips.org
10127 S:      Maintained
10128 F:      arch/mips/boot/dts/ralink/omega2p.dts
10129
10130 OMFS FILESYSTEM
10131 M:      Bob Copeland <me@bobcopeland.com>
10132 L:      linux-karma-devel@lists.sourceforge.net
10133 S:      Maintained
10134 F:      Documentation/filesystems/omfs.txt
10135 F:      fs/omfs/
10136
10137 OMNIKEY CARDMAN 4000 DRIVER
10138 M:      Harald Welte <laforge@gnumonks.org>
10139 S:      Maintained
10140 F:      drivers/char/pcmcia/cm4000_cs.c
10141 F:      include/linux/cm4000_cs.h
10142 F:      include/uapi/linux/cm4000_cs.h
10143
10144 OMNIKEY CARDMAN 4040 DRIVER
10145 M:      Harald Welte <laforge@gnumonks.org>
10146 S:      Maintained
10147 F:      drivers/char/pcmcia/cm4040_cs.*
10148
10149 OMNIVISION OV13858 SENSOR DRIVER
10150 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10151 L:      linux-media@vger.kernel.org
10152 T:      git git://linuxtv.org/media_tree.git
10153 S:      Maintained
10154 F:      drivers/media/i2c/ov13858.c
10155
10156 OMNIVISION OV5640 SENSOR DRIVER
10157 M:      Steve Longerbeam <slongerbeam@gmail.com>
10158 L:      linux-media@vger.kernel.org
10159 T:      git git://linuxtv.org/media_tree.git
10160 S:      Maintained
10161 F:      drivers/media/i2c/ov5640.c
10162
10163 OMNIVISION OV5647 SENSOR DRIVER
10164 M:      Luis Oliveira <lolivei@synopsys.com>
10165 L:      linux-media@vger.kernel.org
10166 T:      git git://linuxtv.org/media_tree.git
10167 S:      Maintained
10168 F:      drivers/media/i2c/ov5647.c
10169
10170 OMNIVISION OV7670 SENSOR DRIVER
10171 M:      Jonathan Corbet <corbet@lwn.net>
10172 L:      linux-media@vger.kernel.org
10173 T:      git git://linuxtv.org/media_tree.git
10174 S:      Maintained
10175 F:      drivers/media/i2c/ov7670.c
10176 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
10177
10178 OMNIVISION OV7740 SENSOR DRIVER
10179 M:      Wenyou Yang <wenyou.yang@microchip.com>
10180 L:      linux-media@vger.kernel.org
10181 T:      git git://linuxtv.org/media_tree.git
10182 S:      Maintained
10183 F:      drivers/media/i2c/ov7740.c
10184 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
10185
10186 ONENAND FLASH DRIVER
10187 M:      Kyungmin Park <kyungmin.park@samsung.com>
10188 L:      linux-mtd@lists.infradead.org
10189 S:      Maintained
10190 F:      drivers/mtd/onenand/
10191 F:      include/linux/mtd/onenand*.h
10192
10193 ONSTREAM SCSI TAPE DRIVER
10194 M:      Willem Riede <osst@riede.org>
10195 L:      osst-users@lists.sourceforge.net
10196 L:      linux-scsi@vger.kernel.org
10197 S:      Maintained
10198 F:      Documentation/scsi/osst.txt
10199 F:      drivers/scsi/osst.*
10200 F:      drivers/scsi/osst_*.h
10201 F:      drivers/scsi/st.h
10202
10203 OP-TEE DRIVER
10204 M:      Jens Wiklander <jens.wiklander@linaro.org>
10205 S:      Maintained
10206 F:      drivers/tee/optee/
10207
10208 OPA-VNIC DRIVER
10209 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
10210 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10211 L:      linux-rdma@vger.kernel.org
10212 S:      Supported
10213 F:      drivers/infiniband/ulp/opa_vnic
10214
10215 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10216 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10217 L:      devicetree@vger.kernel.org
10218 S:      Maintained
10219 F:      Documentation/devicetree/dynamic-resolution-notes.txt
10220 F:      Documentation/devicetree/overlay-notes.txt
10221 F:      drivers/of/overlay.c
10222 F:      drivers/of/resolver.c
10223
10224 OPEN FIRMWARE AND FLATTENED DEVICE TREE
10225 M:      Rob Herring <robh+dt@kernel.org>
10226 M:      Frank Rowand <frowand.list@gmail.com>
10227 L:      devicetree@vger.kernel.org
10228 W:      http://www.devicetree.org/
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10230 S:      Maintained
10231 F:      drivers/of/
10232 F:      include/linux/of*.h
10233 F:      scripts/dtc/
10234 F:      Documentation/ABI/testing/sysfs-firmware-ofw
10235
10236 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10237 M:      Rob Herring <robh+dt@kernel.org>
10238 M:      Mark Rutland <mark.rutland@arm.com>
10239 L:      devicetree@vger.kernel.org
10240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10241 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10242 S:      Maintained
10243 F:      Documentation/devicetree/
10244 F:      arch/*/boot/dts/
10245 F:      include/dt-bindings/
10246
10247 OPENCORES I2C BUS DRIVER
10248 M:      Peter Korsgaard <jacmet@sunsite.dk>
10249 L:      linux-i2c@vger.kernel.org
10250 S:      Maintained
10251 F:      Documentation/i2c/busses/i2c-ocores
10252 F:      drivers/i2c/busses/i2c-ocores.c
10253
10254 OPENRISC ARCHITECTURE
10255 M:      Jonas Bonn <jonas@southpole.se>
10256 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10257 M:      Stafford Horne <shorne@gmail.com>
10258 T:      git git://github.com/openrisc/linux.git
10259 L:      openrisc@lists.librecores.org
10260 W:      http://openrisc.io
10261 S:      Maintained
10262 F:      Documentation/devicetree/bindings/openrisc/
10263 F:      Documentation/openrisc/
10264 F:      arch/openrisc/
10265 F:      drivers/irqchip/irq-ompic.c
10266 F:      drivers/irqchip/irq-or1k-*
10267
10268 OPENVSWITCH
10269 M:      Pravin B Shelar <pshelar@ovn.org>
10270 L:      netdev@vger.kernel.org
10271 L:      dev@openvswitch.org
10272 W:      http://openvswitch.org
10273 S:      Maintained
10274 F:      net/openvswitch/
10275 F:      include/uapi/linux/openvswitch.h
10276
10277 OPERATING PERFORMANCE POINTS (OPP)
10278 M:      Viresh Kumar <vireshk@kernel.org>
10279 M:      Nishanth Menon <nm@ti.com>
10280 M:      Stephen Boyd <sboyd@kernel.org>
10281 L:      linux-pm@vger.kernel.org
10282 S:      Maintained
10283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10284 F:      drivers/opp/
10285 F:      include/linux/pm_opp.h
10286 F:      Documentation/power/opp.txt
10287 F:      Documentation/devicetree/bindings/opp/
10288
10289 OPL4 DRIVER
10290 M:      Clemens Ladisch <clemens@ladisch.de>
10291 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10292 T:      git git://git.alsa-project.org/alsa-kernel.git
10293 S:      Maintained
10294 F:      sound/drivers/opl4/
10295
10296 OPROFILE
10297 M:      Robert Richter <rric@kernel.org>
10298 L:      oprofile-list@lists.sf.net
10299 S:      Maintained
10300 F:      arch/*/include/asm/oprofile*.h
10301 F:      arch/*/oprofile/
10302 F:      drivers/oprofile/
10303 F:      include/linux/oprofile.h
10304
10305 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10306 M:      Mark Fasheh <mark@fasheh.com>
10307 M:      Joel Becker <jlbec@evilplan.org>
10308 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10309 W:      http://ocfs2.wiki.kernel.org
10310 S:      Supported
10311 F:      Documentation/filesystems/ocfs2.txt
10312 F:      Documentation/filesystems/dlmfs.txt
10313 F:      fs/ocfs2/
10314
10315 ORANGEFS FILESYSTEM
10316 M:      Mike Marshall <hubcap@omnibond.com>
10317 R:      Martin Brandenburg <martin@omnibond.com>
10318 L:      devel@lists.orangefs.org
10319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10320 S:      Supported
10321 F:      fs/orangefs/
10322 F:      Documentation/filesystems/orangefs.txt
10323
10324 ORINOCO DRIVER
10325 L:      linux-wireless@vger.kernel.org
10326 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
10327 W:      http://www.nongnu.org/orinoco/
10328 S:      Orphan
10329 F:      drivers/net/wireless/intersil/orinoco/
10330
10331 OSD LIBRARY and FILESYSTEM
10332 M:      Boaz Harrosh <ooo@electrozaur.com>
10333 S:      Maintained
10334 F:      drivers/scsi/osd/
10335 F:      include/scsi/osd_*
10336 F:      fs/exofs/
10337
10338 OV2659 OMNIVISION SENSOR DRIVER
10339 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10340 L:      linux-media@vger.kernel.org
10341 W:      https://linuxtv.org
10342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10343 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10344 S:      Maintained
10345 F:      drivers/media/i2c/ov2659.c
10346 F:      include/media/i2c/ov2659.h
10347
10348 OVERLAY FILESYSTEM
10349 M:      Miklos Szeredi <miklos@szeredi.hu>
10350 L:      linux-unionfs@vger.kernel.org
10351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10352 S:      Supported
10353 F:      fs/overlayfs/
10354 F:      Documentation/filesystems/overlayfs.txt
10355
10356 P54 WIRELESS DRIVER
10357 M:      Christian Lamparter <chunkeey@googlemail.com>
10358 L:      linux-wireless@vger.kernel.org
10359 W:      http://wireless.kernel.org/en/users/Drivers/p54
10360 S:      Maintained
10361 F:      drivers/net/wireless/intersil/p54/
10362
10363 PA SEMI ETHERNET DRIVER
10364 L:      netdev@vger.kernel.org
10365 S:      Orphan
10366 F:      drivers/net/ethernet/pasemi/*
10367
10368 PA SEMI SMBUS DRIVER
10369 L:      linux-i2c@vger.kernel.org
10370 S:      Orphan
10371 F:      drivers/i2c/busses/i2c-pasemi.c
10372
10373 PADATA PARALLEL EXECUTION MECHANISM
10374 M:      Steffen Klassert <steffen.klassert@secunet.com>
10375 L:      linux-crypto@vger.kernel.org
10376 S:      Maintained
10377 F:      kernel/padata.c
10378 F:      include/linux/padata.h
10379 F:      Documentation/padata.txt
10380
10381 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10382 M:      Harald Welte <laforge@gnumonks.org>
10383 L:      platform-driver-x86@vger.kernel.org
10384 S:      Maintained
10385 F:      drivers/platform/x86/panasonic-laptop.c
10386
10387 PARALLEL LCD/KEYPAD PANEL DRIVER
10388 M:      Willy Tarreau <willy@haproxy.com>
10389 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10390 S:      Odd Fixes
10391 F:      Documentation/misc-devices/lcd-panel-cgram.txt
10392 F:      drivers/misc/panel.c
10393
10394 PARALLEL PORT SUBSYSTEM
10395 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10396 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10397 L:      linux-parport@lists.infradead.org (subscribers-only)
10398 S:      Maintained
10399 F:      drivers/parport/
10400 F:      include/linux/parport*.h
10401 F:      drivers/char/ppdev.c
10402 F:      include/uapi/linux/ppdev.h
10403 F:      Documentation/parport*.txt
10404
10405 PARAVIRT_OPS INTERFACE
10406 M:      Juergen Gross <jgross@suse.com>
10407 M:      Alok Kataria <akataria@vmware.com>
10408 L:      virtualization@lists.linux-foundation.org
10409 S:      Supported
10410 F:      Documentation/virtual/paravirt_ops.txt
10411 F:      arch/*/kernel/paravirt*
10412 F:      arch/*/include/asm/paravirt*.h
10413 F:      include/linux/hypervisor.h
10414
10415 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10416 M:      Tim Waugh <tim@cyberelk.net>
10417 L:      linux-parport@lists.infradead.org (subscribers-only)
10418 S:      Maintained
10419 F:      Documentation/blockdev/paride.txt
10420 F:      drivers/block/paride/
10421
10422 PARISC ARCHITECTURE
10423 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
10424 M:      Helge Deller <deller@gmx.de>
10425 L:      linux-parisc@vger.kernel.org
10426 W:      http://www.parisc-linux.org/
10427 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
10428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10430 S:      Maintained
10431 F:      arch/parisc/
10432 F:      Documentation/parisc/
10433 F:      drivers/parisc/
10434 F:      drivers/char/agp/parisc-agp.c
10435 F:      drivers/input/serio/gscps2.c
10436 F:      drivers/parport/parport_gsc.*
10437 F:      drivers/tty/serial/8250/8250_gsc.c
10438 F:      drivers/video/fbdev/sti*
10439 F:      drivers/video/console/sti*
10440 F:      drivers/video/logo/logo_parisc*
10441
10442 PARMAN
10443 M:      Jiri Pirko <jiri@mellanox.com>
10444 L:      netdev@vger.kernel.org
10445 S:      Supported
10446 F:      lib/parman.c
10447 F:      lib/test_parman.c
10448 F:      include/linux/parman.h
10449
10450 PC87360 HARDWARE MONITORING DRIVER
10451 M:      Jim Cromie <jim.cromie@gmail.com>
10452 L:      linux-hwmon@vger.kernel.org
10453 S:      Maintained
10454 F:      Documentation/hwmon/pc87360
10455 F:      drivers/hwmon/pc87360.c
10456
10457 PC8736x GPIO DRIVER
10458 M:      Jim Cromie <jim.cromie@gmail.com>
10459 S:      Maintained
10460 F:      drivers/char/pc8736x_gpio.c
10461
10462 PC87427 HARDWARE MONITORING DRIVER
10463 M:      Jean Delvare <jdelvare@suse.com>
10464 L:      linux-hwmon@vger.kernel.org
10465 S:      Maintained
10466 F:      Documentation/hwmon/pc87427
10467 F:      drivers/hwmon/pc87427.c
10468
10469 PCA9532 LED DRIVER
10470 M:      Riku Voipio <riku.voipio@iki.fi>
10471 S:      Maintained
10472 F:      drivers/leds/leds-pca9532.c
10473 F:      include/linux/leds-pca9532.h
10474
10475 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10476 M:      Guenter Roeck <linux@roeck-us.net>
10477 L:      linux-i2c@vger.kernel.org
10478 S:      Maintained
10479 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
10480
10481 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10482 M:      Khalid Aziz <khalid@gonehiking.org>
10483 S:      Maintained
10484 F:      drivers/firmware/pcdp.*
10485
10486 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10487 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10488 L:      linux-pci@vger.kernel.org
10489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10490 S:      Maintained
10491 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
10492 F:      drivers/pci/host/pci-aardvark.c
10493
10494 PCI DRIVER FOR ALTERA PCIE IP
10495 M:      Ley Foon Tan <lftan@altera.com>
10496 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10497 L:      linux-pci@vger.kernel.org
10498 S:      Supported
10499 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
10500 F:      drivers/pci/host/pcie-altera.c
10501
10502 PCI DRIVER FOR APPLIEDMICRO XGENE
10503 M:      Tanmay Inamdar <tinamdar@apm.com>
10504 L:      linux-pci@vger.kernel.org
10505 L:      linux-arm-kernel@lists.infradead.org
10506 S:      Maintained
10507 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
10508 F:      drivers/pci/host/pci-xgene.c
10509
10510 PCI DRIVER FOR ARM VERSATILE PLATFORM
10511 M:      Rob Herring <robh@kernel.org>
10512 L:      linux-pci@vger.kernel.org
10513 L:      linux-arm-kernel@lists.infradead.org
10514 S:      Maintained
10515 F:      Documentation/devicetree/bindings/pci/versatile.txt
10516 F:      drivers/pci/host/pci-versatile.c
10517
10518 PCI DRIVER FOR ARMADA 8K
10519 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10520 L:      linux-pci@vger.kernel.org
10521 L:      linux-arm-kernel@lists.infradead.org
10522 S:      Maintained
10523 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
10524 F:      drivers/pci/dwc/pcie-armada8k.c
10525
10526 PCI DRIVER FOR CADENCE PCIE IP
10527 M:      Alan Douglas <adouglas@cadence.com>
10528 L:      linux-pci@vger.kernel.org
10529 S:      Maintained
10530 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
10531 F:      drivers/pci/cadence/pcie-cadence*
10532
10533 PCI DRIVER FOR FREESCALE LAYERSCAPE
10534 M:      Minghuan Lian <minghuan.Lian@freescale.com>
10535 M:      Mingkai Hu <mingkai.hu@freescale.com>
10536 M:      Roy Zang <tie-fei.zang@freescale.com>
10537 L:      linuxppc-dev@lists.ozlabs.org
10538 L:      linux-pci@vger.kernel.org
10539 L:      linux-arm-kernel@lists.infradead.org
10540 S:      Maintained
10541 F:      drivers/pci/dwc/*layerscape*
10542
10543 PCI DRIVER FOR GENERIC OF HOSTS
10544 M:      Will Deacon <will.deacon@arm.com>
10545 L:      linux-pci@vger.kernel.org
10546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10547 S:      Maintained
10548 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
10549 F:      drivers/pci/host/pci-host-common.c
10550 F:      drivers/pci/host/pci-host-generic.c
10551
10552 PCI DRIVER FOR IMX6
10553 M:      Richard Zhu <hongxing.zhu@nxp.com>
10554 M:      Lucas Stach <l.stach@pengutronix.de>
10555 L:      linux-pci@vger.kernel.org
10556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10557 S:      Maintained
10558 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10559 F:      drivers/pci/dwc/*imx6*
10560
10561 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10562 M:      Keith Busch <keith.busch@intel.com>
10563 M:      Jonathan Derrick <jonathan.derrick@intel.com>
10564 L:      linux-pci@vger.kernel.org
10565 S:      Supported
10566 F:      drivers/pci/host/vmd.c
10567
10568 PCI DRIVER FOR MICROSEMI SWITCHTEC
10569 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10570 M:      Logan Gunthorpe <logang@deltatee.com>
10571 L:      linux-pci@vger.kernel.org
10572 S:      Maintained
10573 F:      Documentation/switchtec.txt
10574 F:      Documentation/ABI/testing/sysfs-class-switchtec
10575 F:      drivers/pci/switch/switchtec*
10576 F:      include/uapi/linux/switchtec_ioctl.h
10577 F:      include/linux/switchtec.h
10578 F:      drivers/ntb/hw/mscc/
10579
10580 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10581 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10582 M:      Jason Cooper <jason@lakedaemon.net>
10583 L:      linux-pci@vger.kernel.org
10584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10585 S:      Maintained
10586 F:      drivers/pci/host/*mvebu*
10587
10588 PCI DRIVER FOR NVIDIA TEGRA
10589 M:      Thierry Reding <thierry.reding@gmail.com>
10590 L:      linux-tegra@vger.kernel.org
10591 L:      linux-pci@vger.kernel.org
10592 S:      Supported
10593 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10594 F:      drivers/pci/host/pci-tegra.c
10595
10596 PCI DRIVER FOR RENESAS R-CAR
10597 M:      Simon Horman <horms@verge.net.au>
10598 L:      linux-pci@vger.kernel.org
10599 L:      linux-renesas-soc@vger.kernel.org
10600 S:      Maintained
10601 F:      drivers/pci/host/*rcar*
10602
10603 PCI DRIVER FOR SAMSUNG EXYNOS
10604 M:      Jingoo Han <jingoohan1@gmail.com>
10605 L:      linux-pci@vger.kernel.org
10606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10607 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10608 S:      Maintained
10609 F:      drivers/pci/dwc/pci-exynos.c
10610
10611 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10612 M:      Jingoo Han <jingoohan1@gmail.com>
10613 M:      Joao Pinto <Joao.Pinto@synopsys.com>
10614 L:      linux-pci@vger.kernel.org
10615 S:      Maintained
10616 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
10617 F:      drivers/pci/dwc/*designware*
10618
10619 PCI DRIVER FOR TI DRA7XX
10620 M:      Kishon Vijay Abraham I <kishon@ti.com>
10621 L:      linux-omap@vger.kernel.org
10622 L:      linux-pci@vger.kernel.org
10623 S:      Supported
10624 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
10625 F:      drivers/pci/dwc/pci-dra7xx.c
10626
10627 PCI DRIVER FOR TI KEYSTONE
10628 M:      Murali Karicheri <m-karicheri2@ti.com>
10629 L:      linux-pci@vger.kernel.org
10630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10631 S:      Maintained
10632 F:      drivers/pci/dwc/*keystone*
10633
10634 PCI ENDPOINT SUBSYSTEM
10635 M:      Kishon Vijay Abraham I <kishon@ti.com>
10636 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10637 L:      linux-pci@vger.kernel.org
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10639 S:      Supported
10640 F:      drivers/pci/endpoint/
10641 F:      drivers/misc/pci_endpoint_test.c
10642 F:      tools/pci/
10643
10644 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10645 M:      Russell Currey <ruscur@russell.cc>
10646 L:      linuxppc-dev@lists.ozlabs.org
10647 S:      Supported
10648 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
10649 F:      arch/powerpc/kernel/eeh*.c
10650 F:      arch/powerpc/platforms/*/eeh*.c
10651 F:      arch/powerpc/include/*/eeh*.h
10652
10653 PCI ERROR RECOVERY
10654 M:      Linas Vepstas <linasvepstas@gmail.com>
10655 L:      linux-pci@vger.kernel.org
10656 S:      Supported
10657 F:      Documentation/PCI/pci-error-recovery.txt
10658
10659 PCI MSI DRIVER FOR ALTERA MSI IP
10660 M:      Ley Foon Tan <lftan@altera.com>
10661 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10662 L:      linux-pci@vger.kernel.org
10663 S:      Supported
10664 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10665 F:      drivers/pci/host/pcie-altera-msi.c
10666
10667 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10668 M:      Duc Dang <dhdang@apm.com>
10669 L:      linux-pci@vger.kernel.org
10670 L:      linux-arm-kernel@lists.infradead.org
10671 S:      Maintained
10672 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10673 F:      drivers/pci/host/pci-xgene-msi.c
10674
10675 PCI SUBSYSTEM
10676 M:      Bjorn Helgaas <bhelgaas@google.com>
10677 L:      linux-pci@vger.kernel.org
10678 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10680 S:      Supported
10681 F:      Documentation/devicetree/bindings/pci/
10682 F:      Documentation/PCI/
10683 F:      drivers/acpi/pci*
10684 F:      drivers/pci/
10685 F:      include/asm-generic/pci*
10686 F:      include/linux/pci*
10687 F:      include/uapi/linux/pci*
10688 F:      lib/pci*
10689 F:      arch/x86/pci/
10690 F:      arch/x86/kernel/quirks.c
10691
10692 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
10693 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10694 L:      linux-pci@vger.kernel.org
10695 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
10697 S:      Supported
10698 F:      drivers/pci/host/
10699 F:      drivers/pci/dwc/
10700
10701 PCIE DRIVER FOR AXIS ARTPEC
10702 M:      Niklas Cassel <niklas.cassel@axis.com>
10703 M:      Jesper Nilsson <jesper.nilsson@axis.com>
10704 L:      linux-arm-kernel@axis.com
10705 L:      linux-pci@vger.kernel.org
10706 S:      Maintained
10707 F:      Documentation/devicetree/bindings/pci/axis,artpec*
10708 F:      drivers/pci/dwc/*artpec*
10709
10710 PCIE DRIVER FOR CAVIUM THUNDERX
10711 M:      David Daney <david.daney@cavium.com>
10712 L:      linux-pci@vger.kernel.org
10713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10714 S:      Supported
10715 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
10716 F:      drivers/pci/host/pci-thunder-*
10717
10718 PCIE DRIVER FOR HISILICON
10719 M:      Zhou Wang <wangzhou1@hisilicon.com>
10720 L:      linux-pci@vger.kernel.org
10721 S:      Maintained
10722 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10723 F:      drivers/pci/dwc/pcie-hisi.c
10724
10725 PCIE DRIVER FOR HISILICON KIRIN
10726 M:      Xiaowei Song <songxiaowei@hisilicon.com>
10727 M:      Binghui Wang <wangbinghui@hisilicon.com>
10728 L:      linux-pci@vger.kernel.org
10729 S:      Maintained
10730 F:      Documentation/devicetree/bindings/pci/pcie-kirin.txt
10731 F:      drivers/pci/dwc/pcie-kirin.c
10732
10733 PCIE DRIVER FOR HISILICON STB
10734 M:      Jianguo Sun <sunjianguo1@huawei.com>
10735 M:      Shawn Guo <shawn.guo@linaro.org>
10736 L:      linux-pci@vger.kernel.org
10737 S:      Maintained
10738 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
10739 F:      drivers/pci/dwc/pcie-histb.c
10740
10741 PCIE DRIVER FOR MEDIATEK
10742 M:      Ryder Lee <ryder.lee@mediatek.com>
10743 L:      linux-pci@vger.kernel.org
10744 L:      linux-mediatek@lists.infradead.org
10745 S:      Supported
10746 F:      Documentation/devicetree/bindings/pci/mediatek*
10747 F:      drivers/pci/host/*mediatek*
10748
10749 PCIE DRIVER FOR QUALCOMM MSM
10750 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
10751 L:      linux-pci@vger.kernel.org
10752 L:      linux-arm-msm@vger.kernel.org
10753 S:      Maintained
10754 F:      drivers/pci/dwc/*qcom*
10755
10756 PCIE DRIVER FOR ROCKCHIP
10757 M:      Shawn Lin <shawn.lin@rock-chips.com>
10758 L:      linux-pci@vger.kernel.org
10759 L:      linux-rockchip@lists.infradead.org
10760 S:      Maintained
10761 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10762 F:      drivers/pci/host/pcie-rockchip.c
10763
10764 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
10765 M:      Linus Walleij <linus.walleij@linaro.org>
10766 L:      linux-pci@vger.kernel.org
10767 S:      Maintained
10768 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
10769 F:      drivers/pci/host/pci-v3-semi.c
10770
10771 PCIE DRIVER FOR ST SPEAR13XX
10772 M:      Pratyush Anand <pratyush.anand@gmail.com>
10773 L:      linux-pci@vger.kernel.org
10774 S:      Maintained
10775 F:      drivers/pci/dwc/*spear*
10776
10777 PCMCIA SUBSYSTEM
10778 M:      Dominik Brodowski <linux@dominikbrodowski.net>
10779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10780 S:      Odd Fixes
10781 F:      Documentation/pcmcia/
10782 F:      tools/pcmcia/
10783 F:      drivers/pcmcia/
10784 F:      include/pcmcia/
10785
10786 PCNET32 NETWORK DRIVER
10787 M:      Don Fry <pcnet32@frontier.com>
10788 L:      netdev@vger.kernel.org
10789 S:      Maintained
10790 F:      drivers/net/ethernet/amd/pcnet32.c
10791
10792 PCRYPT PARALLEL CRYPTO ENGINE
10793 M:      Steffen Klassert <steffen.klassert@secunet.com>
10794 L:      linux-crypto@vger.kernel.org
10795 S:      Maintained
10796 F:      crypto/pcrypt.c
10797 F:      include/crypto/pcrypt.h
10798
10799 PEAQ WMI HOTKEYS DRIVER
10800 M:      Hans de Goede <hdegoede@redhat.com>
10801 L:      platform-driver-x86@vger.kernel.org
10802 S:      Maintained
10803 F:      drivers/platform/x86/peaq-wmi.c
10804
10805 PER-CPU MEMORY ALLOCATOR
10806 M:      Tejun Heo <tj@kernel.org>
10807 M:      Christoph Lameter <cl@linux.com>
10808 M:      Dennis Zhou <dennisszhou@gmail.com>
10809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10810 S:      Maintained
10811 F:      include/linux/percpu*.h
10812 F:      mm/percpu*.c
10813 F:      arch/*/include/asm/percpu.h
10814
10815 PER-TASK DELAY ACCOUNTING
10816 M:      Balbir Singh <bsingharora@gmail.com>
10817 S:      Maintained
10818 F:      include/linux/delayacct.h
10819 F:      kernel/delayacct.c
10820
10821 PERFORMANCE EVENTS SUBSYSTEM
10822 M:      Peter Zijlstra <peterz@infradead.org>
10823 M:      Ingo Molnar <mingo@redhat.com>
10824 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
10825 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10826 R:      Jiri Olsa <jolsa@redhat.com>
10827 R:      Namhyung Kim <namhyung@kernel.org>
10828 L:      linux-kernel@vger.kernel.org
10829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10830 S:      Supported
10831 F:      kernel/events/*
10832 F:      include/linux/perf_event.h
10833 F:      include/uapi/linux/perf_event.h
10834 F:      arch/*/kernel/perf_event*.c
10835 F:      arch/*/kernel/*/perf_event*.c
10836 F:      arch/*/kernel/*/*/perf_event*.c
10837 F:      arch/*/include/asm/perf_event.h
10838 F:      arch/*/kernel/perf_callchain.c
10839 F:      arch/*/events/*
10840 F:      tools/perf/
10841
10842 PERSONALITY HANDLING
10843 M:      Christoph Hellwig <hch@infradead.org>
10844 L:      linux-abi-devel@lists.sourceforge.net
10845 S:      Maintained
10846 F:      include/linux/personality.h
10847 F:      include/uapi/linux/personality.h
10848
10849 PHONET PROTOCOL
10850 M:      Remi Denis-Courmont <courmisch@gmail.com>
10851 S:      Supported
10852 F:      Documentation/networking/phonet.txt
10853 F:      include/linux/phonet.h
10854 F:      include/net/phonet/
10855 F:      include/uapi/linux/phonet.h
10856 F:      net/phonet/
10857
10858 PHRAM MTD DRIVER
10859 M:      Joern Engel <joern@lazybastard.org>
10860 L:      linux-mtd@lists.infradead.org
10861 S:      Maintained
10862 F:      drivers/mtd/devices/phram.c
10863
10864 PICOLCD HID DRIVER
10865 M:      Bruno Prémont <bonbons@linux-vserver.org>
10866 L:      linux-input@vger.kernel.org
10867 S:      Maintained
10868 F:      drivers/hid/hid-picolcd*
10869
10870 PICOXCELL SUPPORT
10871 M:      Jamie Iles <jamie@jamieiles.com>
10872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10873 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10874 S:      Supported
10875 F:      arch/arm/boot/dts/picoxcell*
10876 F:      arch/arm/mach-picoxcell/
10877 F:      drivers/crypto/picoxcell*
10878
10879 PIN CONTROL SUBSYSTEM
10880 M:      Linus Walleij <linus.walleij@linaro.org>
10881 L:      linux-gpio@vger.kernel.org
10882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10883 S:      Maintained
10884 F:      Documentation/devicetree/bindings/pinctrl/
10885 F:      Documentation/driver-api/pinctl.rst
10886 F:      drivers/pinctrl/
10887 F:      include/linux/pinctrl/
10888
10889 PIN CONTROLLER - ATMEL AT91
10890 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10892 S:      Maintained
10893 F:      drivers/pinctrl/pinctrl-at91.*
10894
10895 PIN CONTROLLER - ATMEL AT91 PIO4
10896 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10898 L:      linux-gpio@vger.kernel.org
10899 S:      Supported
10900 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10901
10902 PIN CONTROLLER - FREESCALE
10903 M:      Dong Aisheng <aisheng.dong@nxp.com>
10904 M:      Fabio Estevam <festevam@gmail.com>
10905 M:      Shawn Guo <shawnguo@kernel.org>
10906 M:      Stefan Agner <stefan@agner.ch>
10907 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10908 L:      linux-gpio@vger.kernel.org
10909 S:      Maintained
10910 F:      drivers/pinctrl/freescale/
10911 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
10912
10913 PIN CONTROLLER - INTEL
10914 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10915 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10916 S:      Maintained
10917 F:      drivers/pinctrl/intel/
10918
10919 PIN CONTROLLER - MEDIATEK
10920 M:      Sean Wang <sean.wang@mediatek.com>
10921 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10922 S:      Maintained
10923 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
10924 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
10925 F:      drivers/pinctrl/mediatek/pinctrl-mtk-common.*
10926 F:      drivers/pinctrl/mediatek/pinctrl-mt2701.c
10927 F:      drivers/pinctrl/mediatek/pinctrl-mt7622.c
10928
10929 PIN CONTROLLER - QUALCOMM
10930 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10931 S:      Maintained
10932 L:      linux-arm-msm@vger.kernel.org
10933 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10934 F:      drivers/pinctrl/qcom/
10935
10936 PIN CONTROLLER - RENESAS
10937 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10938 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10939 L:      linux-renesas-soc@vger.kernel.org
10940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
10941 S:      Maintained
10942 F:      drivers/pinctrl/sh-pfc/
10943
10944 PIN CONTROLLER - SAMSUNG
10945 M:      Tomasz Figa <tomasz.figa@gmail.com>
10946 M:      Krzysztof Kozlowski <krzk@kernel.org>
10947 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10949 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10950 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10952 S:      Maintained
10953 F:      drivers/pinctrl/samsung/
10954 F:      include/dt-bindings/pinctrl/samsung.h
10955 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10956
10957 PIN CONTROLLER - SINGLE
10958 M:      Tony Lindgren <tony@atomide.com>
10959 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
10960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10961 L:      linux-omap@vger.kernel.org
10962 S:      Maintained
10963 F:      drivers/pinctrl/pinctrl-single.c
10964
10965 PIN CONTROLLER - ST SPEAR
10966 M:      Viresh Kumar <vireshk@kernel.org>
10967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10968 W:      http://www.st.com/spear
10969 S:      Maintained
10970 F:      drivers/pinctrl/spear/
10971
10972 PISTACHIO SOC SUPPORT
10973 M:      James Hartley <james.hartley@sondrel.com>
10974 L:      linux-mips@linux-mips.org
10975 S:      Odd Fixes
10976 F:      arch/mips/pistachio/
10977 F:      arch/mips/include/asm/mach-pistachio/
10978 F:      arch/mips/boot/dts/img/pistachio*
10979 F:      arch/mips/configs/pistachio*_defconfig
10980
10981 PKTCDVD DRIVER
10982 S:      Orphan
10983 M:      linux-block@vger.kernel.org
10984 F:      drivers/block/pktcdvd.c
10985 F:      include/linux/pktcdvd.h
10986 F:      include/uapi/linux/pktcdvd.h
10987
10988 PKUNITY SOC DRIVERS
10989 M:      Guan Xuetao <gxt@pku.edu.cn>
10990 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10991 S:      Maintained
10992 T:      git git://github.com/gxt/linux.git
10993 F:      drivers/input/serio/i8042-unicore32io.h
10994 F:      drivers/i2c/busses/i2c-puv3.c
10995 F:      drivers/video/fbdev/fb-puv3.c
10996 F:      drivers/rtc/rtc-puv3.c
10997
10998 PMBUS HARDWARE MONITORING DRIVERS
10999 M:      Guenter Roeck <linux@roeck-us.net>
11000 L:      linux-hwmon@vger.kernel.org
11001 W:      http://hwmon.wiki.kernel.org/
11002 W:      http://www.roeck-us.net/linux/drivers/
11003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
11004 S:      Maintained
11005 F:      Documentation/hwmon/pmbus
11006 F:      drivers/hwmon/pmbus/
11007 F:      include/linux/pmbus.h
11008
11009 PMC SIERRA MaxRAID DRIVER
11010 L:      linux-scsi@vger.kernel.org
11011 W:      http://www.pmc-sierra.com/
11012 S:      Orphan
11013 F:      drivers/scsi/pmcraid.*
11014
11015 PMC SIERRA PM8001 DRIVER
11016 M:      Jack Wang <jinpu.wang@profitbricks.com>
11017 M:      lindar_liu@usish.com
11018 L:      linux-scsi@vger.kernel.org
11019 S:      Supported
11020 F:      drivers/scsi/pm8001/
11021
11022 PNP SUPPORT
11023 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
11024 S:      Maintained
11025 F:      drivers/pnp/
11026
11027 POSIX CLOCKS and TIMERS
11028 M:      Thomas Gleixner <tglx@linutronix.de>
11029 L:      linux-kernel@vger.kernel.org
11030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11031 S:      Maintained
11032 F:      fs/timerfd.c
11033 F:      include/linux/timer*
11034 F:      kernel/time/*timer*
11035
11036 POWER MANAGEMENT CORE
11037 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11038 L:      linux-pm@vger.kernel.org
11039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
11040 B:      https://bugzilla.kernel.org
11041 S:      Supported
11042 F:      drivers/base/power/
11043 F:      include/linux/pm.h
11044 F:      include/linux/pm_*
11045 F:      include/linux/powercap.h
11046 F:      drivers/powercap/
11047 F:      kernel/configs/nopm.config
11048
11049 POWER STATE COORDINATION INTERFACE (PSCI)
11050 M:      Mark Rutland <mark.rutland@arm.com>
11051 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11052 L:      linux-arm-kernel@lists.infradead.org
11053 S:      Maintained
11054 F:      drivers/firmware/psci*.c
11055 F:      include/linux/psci.h
11056 F:      include/uapi/linux/psci.h
11057
11058 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
11059 M:      Sebastian Reichel <sre@kernel.org>
11060 L:      linux-pm@vger.kernel.org
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11062 S:      Maintained
11063 F:      Documentation/devicetree/bindings/power/supply/
11064 F:      include/linux/power_supply.h
11065 F:      drivers/power/supply/
11066
11067 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
11068 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
11069 L:      linuxppc-dev@lists.ozlabs.org
11070 S:      Maintained
11071 F:      drivers/char/powernv-op-panel.c
11072
11073 PPP OVER ATM (RFC 2364)
11074 M:      Mitchell Blank Jr <mitch@sfgoth.com>
11075 S:      Maintained
11076 F:      net/atm/pppoatm.c
11077 F:      include/uapi/linux/atmppp.h
11078
11079 PPP OVER ETHERNET
11080 M:      Michal Ostrowski <mostrows@earthlink.net>
11081 S:      Maintained
11082 F:      drivers/net/ppp/pppoe.c
11083 F:      drivers/net/ppp/pppox.c
11084
11085 PPP OVER L2TP
11086 M:      James Chapman <jchapman@katalix.com>
11087 S:      Maintained
11088 F:      net/l2tp/l2tp_ppp.c
11089 F:      include/linux/if_pppol2tp.h
11090 F:      include/uapi/linux/if_pppol2tp.h
11091
11092 PPP PROTOCOL DRIVERS AND COMPRESSORS
11093 M:      Paul Mackerras <paulus@samba.org>
11094 L:      linux-ppp@vger.kernel.org
11095 S:      Maintained
11096 F:      drivers/net/ppp/ppp_*
11097
11098 PPS SUPPORT
11099 M:      Rodolfo Giometti <giometti@enneenne.com>
11100 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
11101 L:      linuxpps@ml.enneenne.com (subscribers-only)
11102 S:      Maintained
11103 F:      Documentation/pps/
11104 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
11105 F:      Documentation/ABI/testing/sysfs-pps
11106 F:      drivers/pps/
11107 F:      include/linux/pps*.h
11108 F:      include/uapi/linux/pps.h
11109
11110 PPTP DRIVER
11111 M:      Dmitry Kozlov <xeb@mail.ru>
11112 L:      netdev@vger.kernel.org
11113 S:      Maintained
11114 F:      drivers/net/ppp/pptp.c
11115 W:      http://sourceforge.net/projects/accel-pptp
11116
11117 PREEMPTIBLE KERNEL
11118 M:      Robert Love <rml@tech9.net>
11119 L:      kpreempt-tech@lists.sourceforge.net
11120 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
11121 S:      Supported
11122 F:      Documentation/preempt-locking.txt
11123 F:      include/linux/preempt.h
11124
11125 PRINTK
11126 M:      Petr Mladek <pmladek@suse.com>
11127 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11128 R:      Steven Rostedt <rostedt@goodmis.org>
11129 S:      Maintained
11130 F:      kernel/printk/
11131 F:      include/linux/printk.h
11132
11133 PRISM54 WIRELESS DRIVER
11134 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
11135 L:      linux-wireless@vger.kernel.org
11136 W:      http://wireless.kernel.org/en/users/Drivers/p54
11137 S:      Obsolete
11138 F:      drivers/net/wireless/intersil/prism54/
11139
11140 PROC SYSCTL
11141 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
11142 M:      Kees Cook <keescook@chromium.org>
11143 L:      linux-kernel@vger.kernel.org
11144 L:      linux-fsdevel@vger.kernel.org
11145 S:      Maintained
11146 F:      fs/proc/proc_sysctl.c
11147 F:      include/linux/sysctl.h
11148 F:      kernel/sysctl.c
11149 F:      tools/testing/selftests/sysctl/
11150
11151 PS3 NETWORK SUPPORT
11152 M:      Geoff Levand <geoff@infradead.org>
11153 L:      netdev@vger.kernel.org
11154 L:      linuxppc-dev@lists.ozlabs.org
11155 S:      Maintained
11156 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
11157
11158 PS3 PLATFORM SUPPORT
11159 M:      Geoff Levand <geoff@infradead.org>
11160 L:      linuxppc-dev@lists.ozlabs.org
11161 S:      Maintained
11162 F:      arch/powerpc/boot/ps3*
11163 F:      arch/powerpc/include/asm/lv1call.h
11164 F:      arch/powerpc/include/asm/ps3*.h
11165 F:      arch/powerpc/platforms/ps3/
11166 F:      drivers/*/ps3*
11167 F:      drivers/ps3/
11168 F:      drivers/rtc/rtc-ps3.c
11169 F:      drivers/usb/host/*ps3.c
11170 F:      sound/ppc/snd_ps3*
11171
11172 PS3VRAM DRIVER
11173 M:      Jim Paris <jim@jtan.com>
11174 M:      Geoff Levand <geoff@infradead.org>
11175 L:      linuxppc-dev@lists.ozlabs.org
11176 S:      Maintained
11177 F:      drivers/block/ps3vram.c
11178
11179 PSAMPLE PACKET SAMPLING SUPPORT:
11180 M:      Yotam Gigi <yotam.gi@gmail.com>
11181 S:      Maintained
11182 F:      net/psample
11183 F:      include/net/psample.h
11184 F:      include/uapi/linux/psample.h
11185
11186 PSTORE FILESYSTEM
11187 M:      Kees Cook <keescook@chromium.org>
11188 M:      Anton Vorontsov <anton@enomsg.org>
11189 M:      Colin Cross <ccross@android.com>
11190 M:      Tony Luck <tony.luck@intel.com>
11191 S:      Maintained
11192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11193 F:      fs/pstore/
11194 F:      include/linux/pstore*
11195 F:      drivers/firmware/efi/efi-pstore.c
11196 F:      drivers/acpi/apei/erst.c
11197 F:      Documentation/admin-guide/ramoops.rst
11198 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11199 K:      \b(pstore|ramoops)
11200
11201 PTP HARDWARE CLOCK SUPPORT
11202 M:      Richard Cochran <richardcochran@gmail.com>
11203 L:      netdev@vger.kernel.org
11204 S:      Maintained
11205 W:      http://linuxptp.sourceforge.net/
11206 F:      Documentation/ABI/testing/sysfs-ptp
11207 F:      Documentation/ptp/*
11208 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
11209 F:      drivers/net/phy/dp83640*
11210 F:      drivers/ptp/*
11211 F:      include/linux/ptp_cl*
11212
11213 PTRACE SUPPORT
11214 M:      Oleg Nesterov <oleg@redhat.com>
11215 S:      Maintained
11216 F:      include/asm-generic/syscall.h
11217 F:      include/linux/ptrace.h
11218 F:      include/linux/regset.h
11219 F:      include/linux/tracehook.h
11220 F:      include/uapi/linux/ptrace.h
11221 F:      include/uapi/linux/ptrace.h
11222 F:      include/asm-generic/ptrace.h
11223 F:      kernel/ptrace.c
11224 F:      arch/*/ptrace*.c
11225 F:      arch/*/*/ptrace*.c
11226 F:      arch/*/include/asm/ptrace*.h
11227
11228 PULSE8-CEC DRIVER
11229 M:      Hans Verkuil <hverkuil@xs4all.nl>
11230 L:      linux-media@vger.kernel.org
11231 T:      git git://linuxtv.org/media_tree.git
11232 S:      Maintained
11233 F:      drivers/media/usb/pulse8-cec/*
11234 F:      Documentation/media/cec-drivers/pulse8-cec.rst
11235
11236 PVRUSB2 VIDEO4LINUX DRIVER
11237 M:      Mike Isely <isely@pobox.com>
11238 L:      pvrusb2@isely.net       (subscribers-only)
11239 L:      linux-media@vger.kernel.org
11240 W:      http://www.isely.net/pvrusb2/
11241 T:      git git://linuxtv.org/media_tree.git
11242 S:      Maintained
11243 F:      Documentation/media/v4l-drivers/pvrusb2*
11244 F:      drivers/media/usb/pvrusb2/
11245
11246 PWC WEBCAM DRIVER
11247 M:      Hans Verkuil <hverkuil@xs4all.nl>
11248 L:      linux-media@vger.kernel.org
11249 T:      git git://linuxtv.org/media_tree.git
11250 S:      Odd Fixes
11251 F:      drivers/media/usb/pwc/*
11252
11253 PWM FAN DRIVER
11254 M:      Kamil Debski <kamil@wypas.org>
11255 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11256 L:      linux-hwmon@vger.kernel.org
11257 S:      Supported
11258 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11259 F:      Documentation/hwmon/pwm-fan
11260 F:      drivers/hwmon/pwm-fan.c
11261
11262 PWM IR Transmitter
11263 M:      Sean Young <sean@mess.org>
11264 L:      linux-media@vger.kernel.org
11265 S:      Maintained
11266 F:      drivers/media/rc/pwm-ir-tx.c
11267
11268 PWM SUBSYSTEM
11269 M:      Thierry Reding <thierry.reding@gmail.com>
11270 L:      linux-pwm@vger.kernel.org
11271 S:      Maintained
11272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11273 F:      Documentation/pwm.txt
11274 F:      Documentation/devicetree/bindings/pwm/
11275 F:      include/linux/pwm.h
11276 F:      drivers/pwm/
11277 F:      drivers/video/backlight/pwm_bl.c
11278 F:      include/linux/pwm_backlight.h
11279 F:      drivers/gpio/gpio-mvebu.c
11280 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11281
11282 PXA GPIO DRIVER
11283 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11284 L:      linux-gpio@vger.kernel.org
11285 S:      Maintained
11286 F:      drivers/gpio/gpio-pxa.c
11287
11288 PXA MMCI DRIVER
11289 S:      Orphan
11290
11291 PXA RTC DRIVER
11292 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11293 L:      linux-rtc@vger.kernel.org
11294 S:      Maintained
11295
11296 PXA2xx/PXA3xx SUPPORT
11297 M:      Daniel Mack <daniel@zonque.org>
11298 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
11299 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11301 T:      git git://github.com/hzhuang1/linux.git
11302 T:      git git://github.com/rjarzmik/linux.git
11303 S:      Maintained
11304 F:      arch/arm/boot/dts/pxa*
11305 F:      arch/arm/mach-pxa/
11306 F:      drivers/dma/pxa*
11307 F:      drivers/pcmcia/pxa2xx*
11308 F:      drivers/pinctrl/pxa/
11309 F:      drivers/spi/spi-pxa2xx*
11310 F:      drivers/usb/gadget/udc/pxa2*
11311 F:      include/sound/pxa2xx-lib.h
11312 F:      sound/arm/pxa*
11313 F:      sound/soc/pxa/
11314
11315 PXA3xx NAND FLASH DRIVER
11316 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
11317 L:      linux-mtd@lists.infradead.org
11318 S:      Maintained
11319 F:      drivers/mtd/nand/pxa3xx_nand.c
11320
11321 QAT DRIVER
11322 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11323 L:      qat-linux@intel.com
11324 S:      Supported
11325 F:      drivers/crypto/qat/
11326
11327 QCOM AUDIO (ASoC) DRIVERS
11328 M:      Patrick Lai <plai@codeaurora.org>
11329 M:      Banajit Goswami <bgoswami@codeaurora.org>
11330 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11331 S:      Supported
11332 F:      sound/soc/qcom/
11333
11334 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11335 M:      Gabriel Somlo <somlo@cmu.edu>
11336 M:      "Michael S. Tsirkin" <mst@redhat.com>
11337 L:      qemu-devel@nongnu.org
11338 S:      Maintained
11339 F:      drivers/firmware/qemu_fw_cfg.c
11340
11341 QIB DRIVER
11342 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11343 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11344 L:      linux-rdma@vger.kernel.org
11345 S:      Supported
11346 F:      drivers/infiniband/hw/qib/
11347
11348 QLOGIC QL41xxx FCOE DRIVER
11349 M:      QLogic-Storage-Upstream@cavium.com
11350 L:      linux-scsi@vger.kernel.org
11351 S:      Supported
11352 F:      drivers/scsi/qedf/
11353
11354 QLOGIC QL41xxx ISCSI DRIVER
11355 M:      QLogic-Storage-Upstream@cavium.com
11356 L:      linux-scsi@vger.kernel.org
11357 S:      Supported
11358 F:      drivers/scsi/qedi/
11359
11360 QLOGIC QL4xxx ETHERNET DRIVER
11361 M:      Ariel Elior <Ariel.Elior@cavium.com>
11362 M:      everest-linux-l2@cavium.com
11363 L:      netdev@vger.kernel.org
11364 S:      Supported
11365 F:      drivers/net/ethernet/qlogic/qed/
11366 F:      include/linux/qed/
11367 F:      drivers/net/ethernet/qlogic/qede/
11368
11369 QLOGIC QL4xxx RDMA DRIVER
11370 M:      Michal Kalderon <Michal.Kalderon@cavium.com>
11371 M:      Ariel Elior <Ariel.Elior@cavium.com>
11372 L:      linux-rdma@vger.kernel.org
11373 S:      Supported
11374 F:      drivers/infiniband/hw/qedr/
11375 F:      include/uapi/rdma/qedr-abi.h
11376
11377 QLOGIC QLA1280 SCSI DRIVER
11378 M:      Michael Reed <mdr@sgi.com>
11379 L:      linux-scsi@vger.kernel.org
11380 S:      Maintained
11381 F:      drivers/scsi/qla1280.[ch]
11382
11383 QLOGIC QLA2XXX FC-SCSI DRIVER
11384 M:      qla2xxx-upstream@qlogic.com
11385 L:      linux-scsi@vger.kernel.org
11386 S:      Supported
11387 F:      Documentation/scsi/LICENSE.qla2xxx
11388 F:      drivers/scsi/qla2xxx/
11389
11390 QLOGIC QLA3XXX NETWORK DRIVER
11391 M:      Dept-GELinuxNICDev@cavium.com
11392 L:      netdev@vger.kernel.org
11393 S:      Supported
11394 F:      Documentation/networking/LICENSE.qla3xxx
11395 F:      drivers/net/ethernet/qlogic/qla3xxx.*
11396
11397 QLOGIC QLA4XXX iSCSI DRIVER
11398 M:      QLogic-Storage-Upstream@qlogic.com
11399 L:      linux-scsi@vger.kernel.org
11400 S:      Supported
11401 F:      Documentation/scsi/LICENSE.qla4xxx
11402 F:      drivers/scsi/qla4xxx/
11403
11404 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11405 M:      Harish Patil <harish.patil@cavium.com>
11406 M:      Manish Chopra <manish.chopra@cavium.com>
11407 M:      Dept-GELinuxNICDev@cavium.com
11408 L:      netdev@vger.kernel.org
11409 S:      Supported
11410 F:      drivers/net/ethernet/qlogic/qlcnic/
11411
11412 QLOGIC QLGE 10Gb ETHERNET DRIVER
11413 M:      Harish Patil <harish.patil@cavium.com>
11414 M:      Manish Chopra <manish.chopra@cavium.com>
11415 M:      Dept-GELinuxNICDev@cavium.com
11416 L:      netdev@vger.kernel.org
11417 S:      Supported
11418 F:      drivers/net/ethernet/qlogic/qlge/
11419
11420 QNX4 FILESYSTEM
11421 M:      Anders Larsen <al@alarsen.net>
11422 W:      http://www.alarsen.net/linux/qnx4fs/
11423 S:      Maintained
11424 F:      fs/qnx4/
11425 F:      include/uapi/linux/qnx4_fs.h
11426 F:      include/uapi/linux/qnxtypes.h
11427
11428 QORIQ DPAA2 FSL-MC BUS DRIVER
11429 M:      Stuart Yoder <stuyoder@gmail.com>
11430 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
11431 L:      linux-kernel@vger.kernel.org
11432 S:      Maintained
11433 F:      drivers/staging/fsl-mc/
11434 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11435
11436 QT1010 MEDIA DRIVER
11437 M:      Antti Palosaari <crope@iki.fi>
11438 L:      linux-media@vger.kernel.org
11439 W:      https://linuxtv.org
11440 W:      http://palosaari.fi/linux/
11441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11442 T:      git git://linuxtv.org/anttip/media_tree.git
11443 S:      Maintained
11444 F:      drivers/media/tuners/qt1010*
11445
11446 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11447 M:      Kalle Valo <kvalo@qca.qualcomm.com>
11448 L:      ath10k@lists.infradead.org
11449 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
11450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11451 S:      Supported
11452 F:      drivers/net/wireless/ath/ath10k/
11453
11454 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11455 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11456 L:      linux-wireless@vger.kernel.org
11457 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
11458 S:      Supported
11459 F:      drivers/net/wireless/ath/ath9k/
11460
11461 QUALCOMM CAMERA SUBSYSTEM DRIVER
11462 M:      Todor Tomov <todor.tomov@linaro.org>
11463 L:      linux-media@vger.kernel.org
11464 S:      Maintained
11465 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
11466 F:      Documentation/media/v4l-drivers/qcom_camss.rst
11467 F:      drivers/media/platform/qcom/camss-8x16/
11468
11469 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11470 M:      Timur Tabi <timur@codeaurora.org>
11471 L:      netdev@vger.kernel.org
11472 S:      Supported
11473 F:      drivers/net/ethernet/qualcomm/emac/
11474
11475 QUALCOMM HEXAGON ARCHITECTURE
11476 M:      Richard Kuo <rkuo@codeaurora.org>
11477 L:      linux-hexagon@vger.kernel.org
11478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11479 S:      Supported
11480 F:      arch/hexagon/
11481
11482 QUALCOMM IOMMU
11483 M:      Rob Clark <robdclark@gmail.com>
11484 L:      iommu@lists.linux-foundation.org
11485 L:      linux-arm-msm@vger.kernel.org
11486 S:      Maintained
11487 F:      drivers/iommu/qcom_iommu.c
11488
11489 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11490 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
11491 L:      linux-media@vger.kernel.org
11492 L:      linux-arm-msm@vger.kernel.org
11493 T:      git git://linuxtv.org/media_tree.git
11494 S:      Maintained
11495 F:      drivers/media/platform/qcom/venus/
11496
11497 QUALCOMM WCN36XX WIRELESS DRIVER
11498 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
11499 L:      wcn36xx@lists.infradead.org
11500 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
11501 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
11502 S:      Supported
11503 F:      drivers/net/wireless/ath/wcn36xx/
11504
11505 QUANTENNA QTNFMAC WIRELESS DRIVER
11506 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
11507 M:      Avinash Patil <avinashp@quantenna.com>
11508 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
11509 L:      linux-wireless@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/net/wireless/quantenna
11512
11513 RADEON and AMDGPU DRM DRIVERS
11514 M:      Alex Deucher <alexander.deucher@amd.com>
11515 M:      Christian König <christian.koenig@amd.com>
11516 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
11517 L:      amd-gfx@lists.freedesktop.org
11518 T:      git git://people.freedesktop.org/~agd5f/linux
11519 S:      Supported
11520 F:      drivers/gpu/drm/radeon/
11521 F:      include/uapi/drm/radeon_drm.h
11522 F:      drivers/gpu/drm/amd/
11523 F:      include/uapi/drm/amdgpu_drm.h
11524
11525 RADEON FRAMEBUFFER DISPLAY DRIVER
11526 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11527 L:      linux-fbdev@vger.kernel.org
11528 S:      Maintained
11529 F:      drivers/video/fbdev/aty/radeon*
11530 F:      include/uapi/linux/radeonfb.h
11531
11532 RADIOSHARK RADIO DRIVER
11533 M:      Hans Verkuil <hverkuil@xs4all.nl>
11534 L:      linux-media@vger.kernel.org
11535 T:      git git://linuxtv.org/media_tree.git
11536 S:      Maintained
11537 F:      drivers/media/radio/radio-shark.c
11538
11539 RADIOSHARK2 RADIO DRIVER
11540 M:      Hans Verkuil <hverkuil@xs4all.nl>
11541 L:      linux-media@vger.kernel.org
11542 T:      git git://linuxtv.org/media_tree.git
11543 S:      Maintained
11544 F:      drivers/media/radio/radio-shark2.c
11545 F:      drivers/media/radio/radio-tea5777.c
11546
11547 RADOS BLOCK DEVICE (RBD)
11548 M:      Ilya Dryomov <idryomov@gmail.com>
11549 M:      Sage Weil <sage@redhat.com>
11550 M:      Alex Elder <elder@kernel.org>
11551 L:      ceph-devel@vger.kernel.org
11552 W:      http://ceph.com/
11553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11554 T:      git git://github.com/ceph/ceph-client.git
11555 S:      Supported
11556 F:      Documentation/ABI/testing/sysfs-bus-rbd
11557 F:      drivers/block/rbd.c
11558 F:      drivers/block/rbd_types.h
11559
11560 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11561 M:      Paul Mackerras <paulus@samba.org>
11562 L:      linux-fbdev@vger.kernel.org
11563 S:      Maintained
11564 F:      drivers/video/fbdev/aty/aty128fb.c
11565
11566 RAINSHADOW-CEC DRIVER
11567 M:      Hans Verkuil <hverkuil@xs4all.nl>
11568 L:      linux-media@vger.kernel.org
11569 T:      git git://linuxtv.org/media_tree.git
11570 S:      Maintained
11571 F:      drivers/media/usb/rainshadow-cec/*
11572
11573 RALINK MIPS ARCHITECTURE
11574 M:      John Crispin <john@phrozen.org>
11575 L:      linux-mips@linux-mips.org
11576 S:      Maintained
11577 F:      arch/mips/ralink
11578
11579 RALINK RT2X00 WIRELESS LAN DRIVER
11580 P:      rt2x00 project
11581 M:      Stanislaw Gruszka <sgruszka@redhat.com>
11582 M:      Helmut Schaa <helmut.schaa@googlemail.com>
11583 L:      linux-wireless@vger.kernel.org
11584 S:      Maintained
11585 F:      drivers/net/wireless/ralink/rt2x00/
11586
11587 RAMDISK RAM BLOCK DEVICE DRIVER
11588 M:      Jens Axboe <axboe@kernel.dk>
11589 S:      Maintained
11590 F:      Documentation/blockdev/ramdisk.txt
11591 F:      drivers/block/brd.c
11592
11593 RANCHU VIRTUAL BOARD FOR MIPS
11594 M:      Miodrag Dinic <miodrag.dinic@mips.com>
11595 L:      linux-mips@linux-mips.org
11596 S:      Supported
11597 F:      arch/mips/generic/board-ranchu.c
11598 F:      arch/mips/configs/generic/board-ranchu.config
11599
11600 RANDOM NUMBER DRIVER
11601 M:      "Theodore Ts'o" <tytso@mit.edu>
11602 S:      Maintained
11603 F:      drivers/char/random.c
11604
11605 RAPIDIO SUBSYSTEM
11606 M:      Matt Porter <mporter@kernel.crashing.org>
11607 M:      Alexandre Bounine <alexandre.bounine@idt.com>
11608 S:      Maintained
11609 F:      drivers/rapidio/
11610
11611 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11612 L:      linux-wireless@vger.kernel.org
11613 S:      Orphan
11614 F:      drivers/net/wireless/ray*
11615
11616 RCUTORTURE TEST FRAMEWORK
11617 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11618 M:      Josh Triplett <josh@joshtriplett.org>
11619 R:      Steven Rostedt <rostedt@goodmis.org>
11620 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11621 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11622 L:      linux-kernel@vger.kernel.org
11623 S:      Supported
11624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11625 F:      tools/testing/selftests/rcutorture
11626
11627 RDC R-321X SoC
11628 M:      Florian Fainelli <florian@openwrt.org>
11629 S:      Maintained
11630
11631 RDC R6040 FAST ETHERNET DRIVER
11632 M:      Florian Fainelli <f.fainelli@gmail.com>
11633 L:      netdev@vger.kernel.org
11634 S:      Maintained
11635 F:      drivers/net/ethernet/rdc/r6040.c
11636
11637 RDMAVT - RDMA verbs software
11638 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11639 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11640 L:      linux-rdma@vger.kernel.org
11641 S:      Supported
11642 F:      drivers/infiniband/sw/rdmavt
11643
11644 RDS - RELIABLE DATAGRAM SOCKETS
11645 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
11646 L:      netdev@vger.kernel.org
11647 L:      linux-rdma@vger.kernel.org
11648 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
11649 W:      https://oss.oracle.com/projects/rds/
11650 S:      Supported
11651 F:      net/rds/
11652 F:      Documentation/networking/rds.txt
11653
11654 RDT - RESOURCE ALLOCATION
11655 M:      Fenghua Yu <fenghua.yu@intel.com>
11656 L:      linux-kernel@vger.kernel.org
11657 S:      Supported
11658 F:      arch/x86/kernel/cpu/intel_rdt*
11659 F:      arch/x86/include/asm/intel_rdt_sched.h
11660 F:      Documentation/x86/intel_rdt*
11661
11662 READ-COPY UPDATE (RCU)
11663 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11664 M:      Josh Triplett <josh@joshtriplett.org>
11665 R:      Steven Rostedt <rostedt@goodmis.org>
11666 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11667 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11668 L:      linux-kernel@vger.kernel.org
11669 W:      http://www.rdrop.com/users/paulmck/RCU/
11670 S:      Supported
11671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11672 F:      Documentation/RCU/
11673 X:      Documentation/RCU/torture.txt
11674 F:      include/linux/rcu*
11675 X:      include/linux/srcu.h
11676 F:      kernel/rcu/
11677 X:      kernel/torture.c
11678
11679 REAL TIME CLOCK (RTC) SUBSYSTEM
11680 M:      Alessandro Zummo <a.zummo@towertech.it>
11681 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
11682 L:      linux-rtc@vger.kernel.org
11683 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
11684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11685 S:      Maintained
11686 F:      Documentation/devicetree/bindings/rtc/
11687 F:      Documentation/rtc.txt
11688 F:      drivers/rtc/
11689 F:      include/linux/rtc.h
11690 F:      include/uapi/linux/rtc.h
11691 F:      include/linux/rtc/
11692 F:      include/linux/platform_data/rtc-*
11693 F:      tools/testing/selftests/timers/rtctest.c
11694
11695 REALTEK AUDIO CODECS
11696 M:      Bard Liao <bardliao@realtek.com>
11697 M:      Oder Chiou <oder_chiou@realtek.com>
11698 S:      Maintained
11699 F:      sound/soc/codecs/rt*
11700 F:      include/sound/rt*.h
11701
11702 REGISTER MAP ABSTRACTION
11703 M:      Mark Brown <broonie@kernel.org>
11704 L:      linux-kernel@vger.kernel.org
11705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11706 S:      Supported
11707 F:      Documentation/devicetree/bindings/regmap/
11708 F:      drivers/base/regmap/
11709 F:      include/linux/regmap.h
11710
11711 REISERFS FILE SYSTEM
11712 L:      reiserfs-devel@vger.kernel.org
11713 S:      Supported
11714 F:      fs/reiserfs/
11715
11716 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11717 M:      Ohad Ben-Cohen <ohad@wizery.com>
11718 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11719 L:      linux-remoteproc@vger.kernel.org
11720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11721 S:      Maintained
11722 F:      Documentation/devicetree/bindings/remoteproc/
11723 F:      Documentation/remoteproc.txt
11724 F:      drivers/remoteproc/
11725 F:      include/linux/remoteproc.h
11726
11727 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11728 M:      Ohad Ben-Cohen <ohad@wizery.com>
11729 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11730 L:      linux-remoteproc@vger.kernel.org
11731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11732 S:      Maintained
11733 F:      drivers/rpmsg/
11734 F:      Documentation/rpmsg.txt
11735 F:      include/linux/rpmsg.h
11736 F:      include/linux/rpmsg/
11737
11738 RENESAS CLOCK DRIVERS
11739 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11740 L:      linux-renesas-soc@vger.kernel.org
11741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
11742 S:      Supported
11743 F:      drivers/clk/renesas/
11744
11745 RENESAS ETHERNET DRIVERS
11746 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11747 L:      netdev@vger.kernel.org
11748 L:      linux-renesas-soc@vger.kernel.org
11749 F:      Documentation/devicetree/bindings/net/renesas,*.txt
11750 F:      Documentation/devicetree/bindings/net/sh_eth.txt
11751 F:      drivers/net/ethernet/renesas/
11752 F:      include/linux/sh_eth.h
11753
11754 RENESAS R-CAR GYROADC DRIVER
11755 M:      Marek Vasut <marek.vasut@gmail.com>
11756 L:      linux-iio@vger.kernel.org
11757 S:      Supported
11758 F:      drivers/iio/adc/rcar_gyro_adc.c
11759
11760 RENESAS USB PHY DRIVER
11761 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11762 L:      linux-renesas-soc@vger.kernel.org
11763 S:      Maintained
11764 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
11765
11766 RESET CONTROLLER FRAMEWORK
11767 M:      Philipp Zabel <p.zabel@pengutronix.de>
11768 T:      git git://git.pengutronix.de/git/pza/linux
11769 S:      Maintained
11770 F:      drivers/reset/
11771 F:      Documentation/devicetree/bindings/reset/
11772 F:      include/dt-bindings/reset/
11773 F:      include/linux/reset.h
11774 F:      include/linux/reset-controller.h
11775
11776 RFKILL
11777 M:      Johannes Berg <johannes@sipsolutions.net>
11778 L:      linux-wireless@vger.kernel.org
11779 W:      http://wireless.kernel.org/
11780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11782 S:      Maintained
11783 F:      Documentation/rfkill.txt
11784 F:      Documentation/ABI/stable/sysfs-class-rfkill
11785 F:      net/rfkill/
11786
11787 RHASHTABLE
11788 M:      Thomas Graf <tgraf@suug.ch>
11789 M:      Herbert Xu <herbert@gondor.apana.org.au>
11790 L:      netdev@vger.kernel.org
11791 S:      Maintained
11792 F:      lib/rhashtable.c
11793 F:      include/linux/rhashtable.h
11794
11795 RICOH R5C592 MEMORYSTICK DRIVER
11796 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11797 S:      Maintained
11798 F:      drivers/memstick/host/r592.*
11799
11800 RICOH SMARTMEDIA/XD DRIVER
11801 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11802 S:      Maintained
11803 F:      drivers/mtd/nand/r852.c
11804 F:      drivers/mtd/nand/r852.h
11805
11806 RISC-V ARCHITECTURE
11807 M:      Palmer Dabbelt <palmer@sifive.com>
11808 M:      Albert Ou <albert@sifive.com>
11809 L:      linux-riscv@lists.infradead.org
11810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
11811 S:      Supported
11812 F:      arch/riscv/
11813 K:      riscv
11814 N:      riscv
11815
11816 ROCCAT DRIVERS
11817 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
11818 W:      http://sourceforge.net/projects/roccat/
11819 S:      Maintained
11820 F:      drivers/hid/hid-roccat*
11821 F:      include/linux/hid-roccat*
11822 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
11823
11824 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
11825 M:      Jacob chen <jacob2.chen@rock-chips.com>
11826 L:      linux-media@vger.kernel.org
11827 S:      Maintained
11828 F:      drivers/media/platform/rockchip/rga/
11829 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
11830
11831 ROCKER DRIVER
11832 M:      Jiri Pirko <jiri@resnulli.us>
11833 L:      netdev@vger.kernel.org
11834 S:      Supported
11835 F:      drivers/net/ethernet/rocker/
11836
11837 ROCKETPORT DRIVER
11838 P:      Comtrol Corp.
11839 W:      http://www.comtrol.com
11840 S:      Maintained
11841 F:      Documentation/serial/rocket.txt
11842 F:      drivers/tty/rocket*
11843
11844 ROCKETPORT EXPRESS/INFINITY DRIVER
11845 M:      Kevin Cernekee <cernekee@gmail.com>
11846 L:      linux-serial@vger.kernel.org
11847 S:      Odd Fixes
11848 F:      drivers/tty/serial/rp2.*
11849
11850 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11851 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
11852 L:      linux-kernel@vger.kernel.org
11853 L:      linux-renesas-soc@vger.kernel.org
11854 S:      Supported
11855 F:      drivers/mfd/bd9571mwv.c
11856 F:      drivers/regulator/bd9571mwv-regulator.c
11857 F:      drivers/gpio/gpio-bd9571mwv.c
11858 F:      include/linux/mfd/bd9571mwv.h
11859 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11860
11861 ROSE NETWORK LAYER
11862 M:      Ralf Baechle <ralf@linux-mips.org>
11863 L:      linux-hams@vger.kernel.org
11864 W:      http://www.linux-ax25.org/
11865 S:      Maintained
11866 F:      include/net/rose.h
11867 F:      include/uapi/linux/rose.h
11868 F:      net/rose/
11869
11870 RTL2830 MEDIA DRIVER
11871 M:      Antti Palosaari <crope@iki.fi>
11872 L:      linux-media@vger.kernel.org
11873 W:      https://linuxtv.org
11874 W:      http://palosaari.fi/linux/
11875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11876 T:      git git://linuxtv.org/anttip/media_tree.git
11877 S:      Maintained
11878 F:      drivers/media/dvb-frontends/rtl2830*
11879
11880 RTL2832 MEDIA DRIVER
11881 M:      Antti Palosaari <crope@iki.fi>
11882 L:      linux-media@vger.kernel.org
11883 W:      https://linuxtv.org
11884 W:      http://palosaari.fi/linux/
11885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11886 T:      git git://linuxtv.org/anttip/media_tree.git
11887 S:      Maintained
11888 F:      drivers/media/dvb-frontends/rtl2832*
11889
11890 RTL2832_SDR MEDIA DRIVER
11891 M:      Antti Palosaari <crope@iki.fi>
11892 L:      linux-media@vger.kernel.org
11893 W:      https://linuxtv.org
11894 W:      http://palosaari.fi/linux/
11895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11896 T:      git git://linuxtv.org/anttip/media_tree.git
11897 S:      Maintained
11898 F:      drivers/media/dvb-frontends/rtl2832_sdr*
11899
11900 RTL8180 WIRELESS DRIVER
11901 L:      linux-wireless@vger.kernel.org
11902 W:      http://wireless.kernel.org/
11903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11904 S:      Orphan
11905 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
11906
11907 RTL8187 WIRELESS DRIVER
11908 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11909 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
11910 M:      Larry Finger <Larry.Finger@lwfinger.net>
11911 L:      linux-wireless@vger.kernel.org
11912 W:      http://wireless.kernel.org/
11913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11914 S:      Maintained
11915 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
11916
11917 REALTEK WIRELESS DRIVER (rtlwifi family)
11918 M:      Ping-Ke Shih <pkshih@realtek.com>
11919 L:      linux-wireless@vger.kernel.org
11920 W:      http://wireless.kernel.org/
11921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11922 S:      Maintained
11923 F:      drivers/net/wireless/realtek/rtlwifi/
11924
11925 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11926 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
11927 L:      linux-wireless@vger.kernel.org
11928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11929 S:      Maintained
11930 F:      drivers/net/wireless/realtek/rtl8xxxu/
11931
11932 RXRPC SOCKETS (AF_RXRPC)
11933 M:      David Howells <dhowells@redhat.com>
11934 L:      linux-afs@lists.infradead.org
11935 S:      Supported
11936 F:      net/rxrpc/
11937 F:      include/keys/rxrpc-type.h
11938 F:      include/net/af_rxrpc.h
11939 F:      include/trace/events/rxrpc.h
11940 F:      include/uapi/linux/rxrpc.h
11941 F:      Documentation/networking/rxrpc.txt
11942 W:      https://www.infradead.org/~dhowells/kafs/
11943
11944 S3 SAVAGE FRAMEBUFFER DRIVER
11945 M:      Antonino Daplas <adaplas@gmail.com>
11946 L:      linux-fbdev@vger.kernel.org
11947 S:      Maintained
11948 F:      drivers/video/fbdev/savage/
11949
11950 S390
11951 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
11952 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
11953 L:      linux-s390@vger.kernel.org
11954 W:      http://www.ibm.com/developerworks/linux/linux390/
11955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11956 S:      Supported
11957 F:      arch/s390/
11958 F:      drivers/s390/
11959 F:      Documentation/s390/
11960 F:      Documentation/driver-api/s390-drivers.rst
11961
11962 S390 COMMON I/O LAYER
11963 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11964 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11965 L:      linux-s390@vger.kernel.org
11966 W:      http://www.ibm.com/developerworks/linux/linux390/
11967 S:      Supported
11968 F:      drivers/s390/cio/
11969
11970 S390 DASD DRIVER
11971 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
11972 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11973 L:      linux-s390@vger.kernel.org
11974 W:      http://www.ibm.com/developerworks/linux/linux390/
11975 S:      Supported
11976 F:      drivers/s390/block/dasd*
11977 F:      block/partitions/ibm.c
11978
11979 S390 IOMMU (PCI)
11980 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
11981 L:      linux-s390@vger.kernel.org
11982 W:      http://www.ibm.com/developerworks/linux/linux390/
11983 S:      Supported
11984 F:      drivers/iommu/s390-iommu.c
11985
11986 S390 IUCV NETWORK LAYER
11987 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11988 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11989 L:      linux-s390@vger.kernel.org
11990 W:      http://www.ibm.com/developerworks/linux/linux390/
11991 S:      Supported
11992 F:      drivers/s390/net/*iucv*
11993 F:      include/net/iucv/
11994 F:      net/iucv/
11995
11996 S390 NETWORK DRIVERS
11997 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11998 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11999 L:      linux-s390@vger.kernel.org
12000 W:      http://www.ibm.com/developerworks/linux/linux390/
12001 S:      Supported
12002 F:      drivers/s390/net/
12003
12004 S390 PCI SUBSYSTEM
12005 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
12006 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
12007 L:      linux-s390@vger.kernel.org
12008 W:      http://www.ibm.com/developerworks/linux/linux390/
12009 S:      Supported
12010 F:      arch/s390/pci/
12011 F:      drivers/pci/hotplug/s390_pci_hpc.c
12012
12013 S390 VFIO-CCW DRIVER
12014 M:      Cornelia Huck <cohuck@redhat.com>
12015 M:      Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
12016 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
12017 L:      linux-s390@vger.kernel.org
12018 L:      kvm@vger.kernel.org
12019 S:      Supported
12020 F:      drivers/s390/cio/vfio_ccw*
12021 F:      Documentation/s390/vfio-ccw.txt
12022 F:      include/uapi/linux/vfio_ccw.h
12023
12024 S390 ZCRYPT DRIVER
12025 M:      Harald Freudenberger <freude@de.ibm.com>
12026 L:      linux-s390@vger.kernel.org
12027 W:      http://www.ibm.com/developerworks/linux/linux390/
12028 S:      Supported
12029 F:      drivers/s390/crypto/
12030
12031 S390 ZFCP DRIVER
12032 M:      Steffen Maier <maier@linux.vnet.ibm.com>
12033 M:      Benjamin Block <bblock@linux.vnet.ibm.com>
12034 L:      linux-s390@vger.kernel.org
12035 W:      http://www.ibm.com/developerworks/linux/linux390/
12036 S:      Supported
12037 F:      drivers/s390/scsi/zfcp_*
12038
12039 S3C24XX SD/MMC Driver
12040 M:      Ben Dooks <ben-linux@fluff.org>
12041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12042 S:      Supported
12043 F:      drivers/mmc/host/s3cmci.*
12044
12045 SAA6588 RDS RECEIVER DRIVER
12046 M:      Hans Verkuil <hverkuil@xs4all.nl>
12047 L:      linux-media@vger.kernel.org
12048 T:      git git://linuxtv.org/media_tree.git
12049 W:      https://linuxtv.org
12050 S:      Odd Fixes
12051 F:      drivers/media/i2c/saa6588*
12052
12053 SAA7134 VIDEO4LINUX DRIVER
12054 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12055 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12056 L:      linux-media@vger.kernel.org
12057 W:      https://linuxtv.org
12058 T:      git git://linuxtv.org/media_tree.git
12059 S:      Odd fixes
12060 F:      Documentation/media/v4l-drivers/saa7134*
12061 F:      drivers/media/pci/saa7134/
12062
12063 SAA7146 VIDEO4LINUX-2 DRIVER
12064 M:      Hans Verkuil <hverkuil@xs4all.nl>
12065 L:      linux-media@vger.kernel.org
12066 T:      git git://linuxtv.org/media_tree.git
12067 S:      Maintained
12068 F:      drivers/media/common/saa7146/
12069 F:      drivers/media/pci/saa7146/
12070 F:      include/media/saa7146*
12071
12072 SAMSUNG AUDIO (ASoC) DRIVERS
12073 M:      Krzysztof Kozlowski <krzk@kernel.org>
12074 M:      Sangbeom Kim <sbkim73@samsung.com>
12075 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12077 S:      Supported
12078 F:      sound/soc/samsung/
12079 F:      Documentation/devicetree/bindings/sound/samsung*
12080
12081 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
12082 M:      Krzysztof Kozlowski <krzk@kernel.org>
12083 L:      linux-crypto@vger.kernel.org
12084 L:      linux-samsung-soc@vger.kernel.org
12085 S:      Maintained
12086 F:      drivers/crypto/exynos-rng.c
12087 F:      Documentation/devicetree/bindings/crypto/samsung,exynos-rng4.txt
12088
12089 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
12090 M:      Łukasz Stelmach <l.stelmach@samsung.com>
12091 L:      linux-samsung-soc@vger.kernel.org
12092 S:      Maintained
12093 F:      drivers/char/hw_random/exynos-trng.c
12094 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
12095
12096 SAMSUNG FRAMEBUFFER DRIVER
12097 M:      Jingoo Han <jingoohan1@gmail.com>
12098 L:      linux-fbdev@vger.kernel.org
12099 S:      Maintained
12100 F:      drivers/video/fbdev/s3c-fb.c
12101
12102 SAMSUNG LAPTOP DRIVER
12103 M:      Corentin Chary <corentin.chary@gmail.com>
12104 L:      platform-driver-x86@vger.kernel.org
12105 S:      Maintained
12106 F:      drivers/platform/x86/samsung-laptop.c
12107
12108 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
12109 M:      Sangbeom Kim <sbkim73@samsung.com>
12110 M:      Krzysztof Kozlowski <krzk@kernel.org>
12111 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12112 L:      linux-kernel@vger.kernel.org
12113 L:      linux-samsung-soc@vger.kernel.org
12114 S:      Supported
12115 F:      drivers/mfd/sec*.c
12116 F:      drivers/regulator/s2m*.c
12117 F:      drivers/regulator/s5m*.c
12118 F:      drivers/clk/clk-s2mps11.c
12119 F:      drivers/rtc/rtc-s5m.c
12120 F:      include/linux/mfd/samsung/
12121 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
12122 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
12123 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
12124 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
12125
12126 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
12127 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
12128 L:      linux-media@vger.kernel.org
12129 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12130 S:      Maintained
12131 F:      drivers/media/platform/s3c-camif/
12132 F:      include/media/drv-intf/s3c_camif.h
12133
12134 SAMSUNG S3FWRN5 NFC DRIVER
12135 M:      Robert Baldyga <r.baldyga@samsung.com>
12136 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
12137 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12138 S:      Supported
12139 F:      drivers/nfc/s3fwrn5
12140
12141 SAMSUNG S5C73M3 CAMERA DRIVER
12142 M:      Kyungmin Park <kyungmin.park@samsung.com>
12143 M:      Andrzej Hajda <a.hajda@samsung.com>
12144 L:      linux-media@vger.kernel.org
12145 S:      Supported
12146 F:      drivers/media/i2c/s5c73m3/*
12147
12148 SAMSUNG S5K5BAF CAMERA DRIVER
12149 M:      Kyungmin Park <kyungmin.park@samsung.com>
12150 M:      Andrzej Hajda <a.hajda@samsung.com>
12151 L:      linux-media@vger.kernel.org
12152 S:      Supported
12153 F:      drivers/media/i2c/s5k5baf.c
12154
12155 SAMSUNG S5P Security SubSystem (SSS) DRIVER
12156 M:      Krzysztof Kozlowski <krzk@kernel.org>
12157 M:      Vladimir Zapolskiy <vz@mleia.com>
12158 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
12159 L:      linux-crypto@vger.kernel.org
12160 L:      linux-samsung-soc@vger.kernel.org
12161 S:      Maintained
12162 F:      drivers/crypto/s5p-sss.c
12163
12164 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12165 M:      Kyungmin Park <kyungmin.park@samsung.com>
12166 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12167 L:      linux-media@vger.kernel.org
12168 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
12169 S:      Supported
12170 F:      drivers/media/platform/exynos4-is/
12171
12172 SAMSUNG SOC CLOCK DRIVERS
12173 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12174 M:      Tomasz Figa <tomasz.figa@gmail.com>
12175 M:      Chanwoo Choi <cw00.choi@samsung.com>
12176 S:      Supported
12177 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12178 F:      drivers/clk/samsung/
12179 F:      include/dt-bindings/clock/exynos*.h
12180 F:      Documentation/devicetree/bindings/clock/exynos*.txt
12181
12182 SAMSUNG SPI DRIVERS
12183 M:      Kukjin Kim <kgene@kernel.org>
12184 M:      Krzysztof Kozlowski <krzk@kernel.org>
12185 M:      Andi Shyti <andi@etezian.org>
12186 L:      linux-spi@vger.kernel.org
12187 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12188 S:      Maintained
12189 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
12190 F:      drivers/spi/spi-s3c*
12191 F:      include/linux/platform_data/spi-s3c64xx.h
12192
12193 SAMSUNG SXGBE DRIVERS
12194 M:      Byungho An <bh74.an@samsung.com>
12195 M:      Girish K S <ks.giri@samsung.com>
12196 M:      Vipul Pandya <vipul.pandya@samsung.com>
12197 S:      Supported
12198 L:      netdev@vger.kernel.org
12199 F:      drivers/net/ethernet/samsung/sxgbe/
12200
12201 SAMSUNG THERMAL DRIVER
12202 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12203 L:      linux-pm@vger.kernel.org
12204 L:      linux-samsung-soc@vger.kernel.org
12205 S:      Supported
12206 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
12207 F:      drivers/thermal/samsung/
12208
12209 SAMSUNG USB2 PHY DRIVER
12210 M:      Kamil Debski <kamil@wypas.org>
12211 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12212 L:      linux-kernel@vger.kernel.org
12213 S:      Supported
12214 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
12215 F:      Documentation/phy/samsung-usb2.txt
12216 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
12217 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
12218 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
12219 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
12220 F:      drivers/phy/samsung/phy-samsung-usb2.c
12221 F:      drivers/phy/samsung/phy-samsung-usb2.h
12222
12223 SC1200 WDT DRIVER
12224 M:      Zwane Mwaikambo <zwanem@gmail.com>
12225 S:      Maintained
12226 F:      drivers/watchdog/sc1200wdt.c
12227
12228 SCHEDULER
12229 M:      Ingo Molnar <mingo@redhat.com>
12230 M:      Peter Zijlstra <peterz@infradead.org>
12231 L:      linux-kernel@vger.kernel.org
12232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12233 S:      Maintained
12234 F:      kernel/sched/
12235 F:      include/linux/sched.h
12236 F:      include/uapi/linux/sched.h
12237 F:      include/linux/wait.h
12238
12239 SCR24X CHIP CARD INTERFACE DRIVER
12240 M:      Lubomir Rintel <lkundrak@v3.sk>
12241 S:      Supported
12242 F:      drivers/char/pcmcia/scr24x_cs.c
12243
12244 SCSI CDROM DRIVER
12245 M:      Jens Axboe <axboe@kernel.dk>
12246 L:      linux-scsi@vger.kernel.org
12247 W:      http://www.kernel.dk
12248 S:      Maintained
12249 F:      drivers/scsi/sr*
12250
12251 SCSI RDMA PROTOCOL (SRP) INITIATOR
12252 M:      Bart Van Assche <bart.vanassche@sandisk.com>
12253 L:      linux-rdma@vger.kernel.org
12254 S:      Supported
12255 W:      http://www.openfabrics.org
12256 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
12258 F:      drivers/infiniband/ulp/srp/
12259 F:      include/scsi/srp.h
12260
12261 SCSI SG DRIVER
12262 M:      Doug Gilbert <dgilbert@interlog.com>
12263 L:      linux-scsi@vger.kernel.org
12264 W:      http://sg.danny.cz/sg
12265 S:      Maintained
12266 F:      Documentation/scsi/scsi-generic.txt
12267 F:      drivers/scsi/sg.c
12268 F:      include/scsi/sg.h
12269
12270 SCSI SUBSYSTEM
12271 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12273 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
12274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12275 L:      linux-scsi@vger.kernel.org
12276 S:      Maintained
12277 F:      Documentation/devicetree/bindings/scsi/
12278 F:      drivers/scsi/
12279 F:      include/scsi/
12280
12281 SCSI TAPE DRIVER
12282 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12283 L:      linux-scsi@vger.kernel.org
12284 S:      Maintained
12285 F:      Documentation/scsi/st.txt
12286 F:      drivers/scsi/st.*
12287 F:      drivers/scsi/st_*.h
12288
12289 SCTP PROTOCOL
12290 M:      Vlad Yasevich <vyasevich@gmail.com>
12291 M:      Neil Horman <nhorman@tuxdriver.com>
12292 L:      linux-sctp@vger.kernel.org
12293 W:      http://lksctp.sourceforge.net
12294 S:      Maintained
12295 F:      Documentation/networking/sctp.txt
12296 F:      include/linux/sctp.h
12297 F:      include/uapi/linux/sctp.h
12298 F:      include/net/sctp/
12299 F:      net/sctp/
12300
12301 SCx200 CPU SUPPORT
12302 M:      Jim Cromie <jim.cromie@gmail.com>
12303 S:      Odd Fixes
12304 F:      Documentation/i2c/busses/scx200_acb
12305 F:      arch/x86/platform/scx200/
12306 F:      drivers/watchdog/scx200_wdt.c
12307 F:      drivers/i2c/busses/scx200*
12308 F:      drivers/mtd/maps/scx200_docflash.c
12309 F:      include/linux/scx200.h
12310
12311 SCx200 GPIO DRIVER
12312 M:      Jim Cromie <jim.cromie@gmail.com>
12313 S:      Maintained
12314 F:      drivers/char/scx200_gpio.c
12315 F:      include/linux/scx200_gpio.h
12316
12317 SCx200 HRT CLOCKSOURCE DRIVER
12318 M:      Jim Cromie <jim.cromie@gmail.com>
12319 S:      Maintained
12320 F:      drivers/clocksource/scx200_hrt.c
12321
12322 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12323 M:      Sascha Sommer <saschasommer@freenet.de>
12324 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12325 S:      Maintained
12326 F:      drivers/mmc/host/sdricoh_cs.c
12327
12328 SECURE COMPUTING
12329 M:      Kees Cook <keescook@chromium.org>
12330 R:      Andy Lutomirski <luto@amacapital.net>
12331 R:      Will Drewry <wad@chromium.org>
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12333 S:      Supported
12334 F:      kernel/seccomp.c
12335 F:      include/uapi/linux/seccomp.h
12336 F:      include/linux/seccomp.h
12337 F:      tools/testing/selftests/seccomp/*
12338 F:      tools/testing/selftests/kselftest_harness.h
12339 F:      Documentation/userspace-api/seccomp_filter.rst
12340 K:      \bsecure_computing
12341 K:      \bTIF_SECCOMP\b
12342
12343 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12344 M:      Al Cooper <alcooperx@gmail.com>
12345 L:      linux-mmc@vger.kernel.org
12346 L:      bcm-kernel-feedback-list@broadcom.com
12347 S:      Maintained
12348 F:      drivers/mmc/host/sdhci-brcmstb*
12349
12350 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12351 M:      Adrian Hunter <adrian.hunter@intel.com>
12352 L:      linux-mmc@vger.kernel.org
12353 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
12354 S:      Maintained
12355 F:      drivers/mmc/host/sdhci*
12356 F:      include/linux/mmc/sdhci*
12357
12358 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12359 M:      Ben Dooks <ben-linux@fluff.org>
12360 M:      Jaehoon Chung <jh80.chung@samsung.com>
12361 L:      linux-mmc@vger.kernel.org
12362 S:      Maintained
12363 F:      drivers/mmc/host/sdhci-s3c*
12364
12365 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12366 M:      Viresh Kumar <vireshk@kernel.org>
12367 L:      linux-mmc@vger.kernel.org
12368 S:      Maintained
12369 F:      drivers/mmc/host/sdhci-spear.c
12370
12371 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12372 M:      Kishon Vijay Abraham I <kishon@ti.com>
12373 L:      linux-mmc@vger.kernel.org
12374 S:      Maintained
12375 F:      drivers/mmc/host/sdhci-omap.c
12376
12377 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12378 M:      Scott Bauer <scott.bauer@intel.com>
12379 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12380 L:      linux-block@vger.kernel.org
12381 S:      Supported
12382 F:      block/sed*
12383 F:      block/opal_proto.h
12384 F:      include/linux/sed*
12385 F:      include/uapi/linux/sed*
12386
12387 SECURITY CONTACT
12388 M:      Security Officers <security@kernel.org>
12389 S:      Supported
12390
12391 SECURITY SUBSYSTEM
12392 M:      James Morris <jmorris@namei.org>
12393 M:      "Serge E. Hallyn" <serge@hallyn.com>
12394 L:      linux-security-module@vger.kernel.org (suggested Cc:)
12395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12396 W:      http://kernsec.org/
12397 S:      Supported
12398 F:      security/
12399
12400 SELINUX SECURITY MODULE
12401 M:      Paul Moore <paul@paul-moore.com>
12402 M:      Stephen Smalley <sds@tycho.nsa.gov>
12403 M:      Eric Paris <eparis@parisplace.org>
12404 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
12405 W:      https://selinuxproject.org
12406 W:      https://github.com/SELinuxProject
12407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12408 S:      Supported
12409 F:      include/linux/selinux*
12410 F:      security/selinux/
12411 F:      scripts/selinux/
12412 F:      Documentation/admin-guide/LSM/SELinux.rst
12413
12414 SENSABLE PHANTOM
12415 M:      Jiri Slaby <jirislaby@gmail.com>
12416 S:      Maintained
12417 F:      drivers/misc/phantom.c
12418 F:      include/uapi/linux/phantom.h
12419
12420 SERIAL DEVICE BUS
12421 M:      Rob Herring <robh@kernel.org>
12422 L:      linux-serial@vger.kernel.org
12423 S:      Maintained
12424 F:      Documentation/devicetree/bindings/serial/slave-device.txt
12425 F:      drivers/tty/serdev/
12426 F:      include/linux/serdev.h
12427
12428 SERIAL DRIVERS
12429 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12430 L:      linux-serial@vger.kernel.org
12431 S:      Maintained
12432 F:      Documentation/devicetree/bindings/serial/
12433 F:      drivers/tty/serial/
12434
12435 SERIAL IR RECEIVER
12436 M:      Sean Young <sean@mess.org>
12437 L:      linux-media@vger.kernel.org
12438 S:      Maintained
12439 F:      drivers/media/rc/serial_ir.c
12440
12441 SFC NETWORK DRIVER
12442 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12443 M:      Edward Cree <ecree@solarflare.com>
12444 M:      Bert Kenward <bkenward@solarflare.com>
12445 L:      netdev@vger.kernel.org
12446 S:      Supported
12447 F:      drivers/net/ethernet/sfc/
12448
12449 SGI GRU DRIVER
12450 M:      Dimitri Sivanich <sivanich@sgi.com>
12451 S:      Maintained
12452 F:      drivers/misc/sgi-gru/
12453
12454 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12455 M:      Pat Gefre <pfg@sgi.com>
12456 L:      linux-ia64@vger.kernel.org
12457 S:      Supported
12458 F:      Documentation/ia64/serial.txt
12459 F:      drivers/tty/serial/ioc?_serial.c
12460 F:      include/linux/ioc?.h
12461
12462 SGI XP/XPC/XPNET DRIVER
12463 M:      Cliff Whickman <cpw@sgi.com>
12464 M:      Robin Holt <robinmholt@gmail.com>
12465 S:      Maintained
12466 F:      drivers/misc/sgi-xp/
12467
12468 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12469 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12470 L:      linux-s390@vger.kernel.org
12471 W:      http://www.ibm.com/developerworks/linux/linux390/
12472 S:      Supported
12473 F:      net/smc/
12474
12475 SH_VEU V4L2 MEM2MEM DRIVER
12476 L:      linux-media@vger.kernel.org
12477 S:      Orphan
12478 F:      drivers/media/platform/sh_veu.c
12479
12480 SH_VOU V4L2 OUTPUT DRIVER
12481 L:      linux-media@vger.kernel.org
12482 S:      Orphan
12483 F:      drivers/media/platform/sh_vou.c
12484 F:      include/media/drv-intf/sh_vou.h
12485
12486 SI2157 MEDIA DRIVER
12487 M:      Antti Palosaari <crope@iki.fi>
12488 L:      linux-media@vger.kernel.org
12489 W:      https://linuxtv.org
12490 W:      http://palosaari.fi/linux/
12491 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12492 T:      git git://linuxtv.org/anttip/media_tree.git
12493 S:      Maintained
12494 F:      drivers/media/tuners/si2157*
12495
12496 SI2165 MEDIA DRIVER
12497 M:      Matthias Schwarzott <zzam@gentoo.org>
12498 L:      linux-media@vger.kernel.org
12499 W:      https://linuxtv.org
12500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12501 S:      Maintained
12502 F:      drivers/media/dvb-frontends/si2165*
12503
12504 SI2168 MEDIA DRIVER
12505 M:      Antti Palosaari <crope@iki.fi>
12506 L:      linux-media@vger.kernel.org
12507 W:      https://linuxtv.org
12508 W:      http://palosaari.fi/linux/
12509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12510 T:      git git://linuxtv.org/anttip/media_tree.git
12511 S:      Maintained
12512 F:      drivers/media/dvb-frontends/si2168*
12513
12514 SI470X FM RADIO RECEIVER I2C DRIVER
12515 M:      Hans Verkuil <hverkuil@xs4all.nl>
12516 L:      linux-media@vger.kernel.org
12517 T:      git git://linuxtv.org/media_tree.git
12518 W:      https://linuxtv.org
12519 S:      Odd Fixes
12520 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
12521
12522 SI470X FM RADIO RECEIVER USB DRIVER
12523 M:      Hans Verkuil <hverkuil@xs4all.nl>
12524 L:      linux-media@vger.kernel.org
12525 T:      git git://linuxtv.org/media_tree.git
12526 W:      https://linuxtv.org
12527 S:      Maintained
12528 F:      drivers/media/radio/si470x/radio-si470x-common.c
12529 F:      drivers/media/radio/si470x/radio-si470x.h
12530 F:      drivers/media/radio/si470x/radio-si470x-usb.c
12531
12532 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12533 M:      Eduardo Valentin <edubezval@gmail.com>
12534 L:      linux-media@vger.kernel.org
12535 T:      git git://linuxtv.org/media_tree.git
12536 W:      https://linuxtv.org
12537 S:      Odd Fixes
12538 F:      drivers/media/radio/si4713/si4713.?
12539
12540 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12541 M:      Eduardo Valentin <edubezval@gmail.com>
12542 L:      linux-media@vger.kernel.org
12543 T:      git git://linuxtv.org/media_tree.git
12544 W:      https://linuxtv.org
12545 S:      Odd Fixes
12546 F:      drivers/media/radio/si4713/radio-platform-si4713.c
12547
12548 SI4713 FM RADIO TRANSMITTER USB DRIVER
12549 M:      Hans Verkuil <hverkuil@xs4all.nl>
12550 L:      linux-media@vger.kernel.org
12551 T:      git git://linuxtv.org/media_tree.git
12552 W:      https://linuxtv.org
12553 S:      Maintained
12554 F:      drivers/media/radio/si4713/radio-usb-si4713.c
12555
12556 SIANO DVB DRIVER
12557 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12558 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12559 L:      linux-media@vger.kernel.org
12560 W:      https://linuxtv.org
12561 T:      git git://linuxtv.org/media_tree.git
12562 S:      Odd fixes
12563 F:      drivers/media/common/siano/
12564 F:      drivers/media/usb/siano/
12565 F:      drivers/media/usb/siano/
12566 F:      drivers/media/mmc/siano/
12567
12568 SILEAD TOUCHSCREEN DRIVER
12569 M:      Hans de Goede <hdegoede@redhat.com>
12570 L:      linux-input@vger.kernel.org
12571 L:      platform-driver-x86@vger.kernel.org
12572 S:      Maintained
12573 F:      drivers/input/touchscreen/silead.c
12574 F:      drivers/platform/x86/silead_dmi.c
12575
12576 SILICON MOTION SM712 FRAME BUFFER DRIVER
12577 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12578 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12579 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12580 L:      linux-fbdev@vger.kernel.org
12581 S:      Maintained
12582 F:      drivers/video/fbdev/sm712*
12583 F:      Documentation/fb/sm712fb.txt
12584
12585 SIMPLE FIRMWARE INTERFACE (SFI)
12586 M:      Len Brown <lenb@kernel.org>
12587 L:      sfi-devel@simplefirmware.org
12588 W:      http://simplefirmware.org/
12589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12590 S:      Supported
12591 F:      arch/x86/platform/sfi/
12592 F:      drivers/sfi/
12593 F:      include/linux/sfi*.h
12594
12595 SIMPLEFB FB DRIVER
12596 M:      Hans de Goede <hdegoede@redhat.com>
12597 L:      linux-fbdev@vger.kernel.org
12598 S:      Maintained
12599 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
12600 F:      drivers/video/fbdev/simplefb.c
12601 F:      include/linux/platform_data/simplefb.h
12602
12603 SIMTEC EB110ATX (Chalice CATS)
12604 P:      Ben Dooks
12605 P:      Vincent Sanders <vince@simtec.co.uk>
12606 M:      Simtec Linux Team <linux@simtec.co.uk>
12607 W:      http://www.simtec.co.uk/products/EB110ATX/
12608 S:      Supported
12609
12610 SIMTEC EB2410ITX (BAST)
12611 P:      Ben Dooks
12612 P:      Vincent Sanders <vince@simtec.co.uk>
12613 M:      Simtec Linux Team <linux@simtec.co.uk>
12614 W:      http://www.simtec.co.uk/products/EB2410ITX/
12615 S:      Supported
12616 F:      arch/arm/mach-s3c24xx/mach-bast.c
12617 F:      arch/arm/mach-s3c24xx/bast-ide.c
12618 F:      arch/arm/mach-s3c24xx/bast-irq.c
12619
12620 SIPHASH PRF ROUTINES
12621 M:      Jason A. Donenfeld <Jason@zx2c4.com>
12622 S:      Maintained
12623 F:      lib/siphash.c
12624 F:      lib/test_siphash.c
12625 F:      include/linux/siphash.h
12626
12627 SIOX
12628 M:      Gavin Schenk <g.schenk@eckelmann.de>
12629 M:      Uwe Kleine-König <kernel@pengutronix.de>
12630 S:      Supported
12631 F:      drivers/siox/*
12632 F:      include/trace/events/siox.h
12633
12634 SIS 190 ETHERNET DRIVER
12635 M:      Francois Romieu <romieu@fr.zoreil.com>
12636 L:      netdev@vger.kernel.org
12637 S:      Maintained
12638 F:      drivers/net/ethernet/sis/sis190.c
12639
12640 SIS 900/7016 FAST ETHERNET DRIVER
12641 M:      Daniele Venzano <venza@brownhat.org>
12642 W:      http://www.brownhat.org/sis900.html
12643 L:      netdev@vger.kernel.org
12644 S:      Maintained
12645 F:      drivers/net/ethernet/sis/sis900.*
12646
12647 SIS FRAMEBUFFER DRIVER
12648 M:      Thomas Winischhofer <thomas@winischhofer.net>
12649 W:      http://www.winischhofer.net/linuxsisvga.shtml
12650 S:      Maintained
12651 F:      Documentation/fb/sisfb.txt
12652 F:      drivers/video/fbdev/sis/
12653 F:      include/video/sisfb.h
12654
12655 SIS USB2VGA DRIVER
12656 M:      Thomas Winischhofer <thomas@winischhofer.net>
12657 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
12658 S:      Maintained
12659 F:      drivers/usb/misc/sisusbvga/
12660
12661 SLAB ALLOCATOR
12662 M:      Christoph Lameter <cl@linux.com>
12663 M:      Pekka Enberg <penberg@kernel.org>
12664 M:      David Rientjes <rientjes@google.com>
12665 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
12666 M:      Andrew Morton <akpm@linux-foundation.org>
12667 L:      linux-mm@kvack.org
12668 S:      Maintained
12669 F:      include/linux/sl?b*.h
12670 F:      mm/sl?b*
12671
12672 SLEEPABLE READ-COPY UPDATE (SRCU)
12673 M:      Lai Jiangshan <jiangshanlai@gmail.com>
12674 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12675 M:      Josh Triplett <josh@joshtriplett.org>
12676 R:      Steven Rostedt <rostedt@goodmis.org>
12677 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12678 L:      linux-kernel@vger.kernel.org
12679 W:      http://www.rdrop.com/users/paulmck/RCU/
12680 S:      Supported
12681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12682 F:      include/linux/srcu.h
12683 F:      kernel/rcu/srcu.c
12684
12685 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
12686 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12687 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12688 S:      Maintained
12689 F:      drivers/slimbus/
12690 F:      Documentation/devicetree/bindings/slimbus/
12691 F:      include/linux/slimbus.h
12692
12693 SMACK SECURITY MODULE
12694 M:      Casey Schaufler <casey@schaufler-ca.com>
12695 L:      linux-security-module@vger.kernel.org
12696 W:      http://schaufler-ca.com
12697 T:      git git://github.com/cschaufler/smack-next
12698 S:      Maintained
12699 F:      Documentation/admin-guide/LSM/Smack.rst
12700 F:      security/smack/
12701
12702 SMC91x ETHERNET DRIVER
12703 M:      Nicolas Pitre <nico@fluxnic.net>
12704 S:      Odd Fixes
12705 F:      drivers/net/ethernet/smsc/smc91x.*
12706
12707 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12708 M:      Sakari Ailus <sakari.ailus@iki.fi>
12709 L:      linux-media@vger.kernel.org
12710 S:      Maintained
12711 F:      drivers/media/i2c/smiapp/
12712 F:      include/media/i2c/smiapp.h
12713 F:      drivers/media/i2c/smiapp-pll.c
12714 F:      drivers/media/i2c/smiapp-pll.h
12715 F:      include/uapi/linux/smiapp.h
12716 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12717
12718 SMM665 HARDWARE MONITOR DRIVER
12719 M:      Guenter Roeck <linux@roeck-us.net>
12720 L:      linux-hwmon@vger.kernel.org
12721 S:      Maintained
12722 F:      Documentation/hwmon/smm665
12723 F:      drivers/hwmon/smm665.c
12724
12725 SMSC EMC2103 HARDWARE MONITOR DRIVER
12726 M:      Steve Glendinning <steve.glendinning@shawell.net>
12727 L:      linux-hwmon@vger.kernel.org
12728 S:      Maintained
12729 F:      Documentation/hwmon/emc2103
12730 F:      drivers/hwmon/emc2103.c
12731
12732 SMSC SCH5627 HARDWARE MONITOR DRIVER
12733 M:      Hans de Goede <hdegoede@redhat.com>
12734 L:      linux-hwmon@vger.kernel.org
12735 S:      Supported
12736 F:      Documentation/hwmon/sch5627
12737 F:      drivers/hwmon/sch5627.c
12738
12739 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12740 M:      Steve Glendinning <steve.glendinning@shawell.net>
12741 L:      linux-fbdev@vger.kernel.org
12742 S:      Maintained
12743 F:      drivers/video/fbdev/smscufx.c
12744
12745 SMSC47B397 HARDWARE MONITOR DRIVER
12746 M:      Jean Delvare <jdelvare@suse.com>
12747 L:      linux-hwmon@vger.kernel.org
12748 S:      Maintained
12749 F:      Documentation/hwmon/smsc47b397
12750 F:      drivers/hwmon/smsc47b397.c
12751
12752 SMSC911x ETHERNET DRIVER
12753 M:      Steve Glendinning <steve.glendinning@shawell.net>
12754 L:      netdev@vger.kernel.org
12755 S:      Maintained
12756 F:      include/linux/smsc911x.h
12757 F:      drivers/net/ethernet/smsc/smsc911x.*
12758
12759 SMSC9420 PCI ETHERNET DRIVER
12760 M:      Steve Glendinning <steve.glendinning@shawell.net>
12761 L:      netdev@vger.kernel.org
12762 S:      Maintained
12763 F:      drivers/net/ethernet/smsc/smsc9420.*
12764
12765 SOC-CAMERA V4L2 SUBSYSTEM
12766 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12767 L:      linux-media@vger.kernel.org
12768 T:      git git://linuxtv.org/media_tree.git
12769 S:      Maintained
12770 F:      include/media/soc*
12771 F:      drivers/media/i2c/soc_camera/
12772 F:      drivers/media/platform/soc_camera/
12773
12774 SOCIONEXT UNIPHIER SOUND DRIVER
12775 M:      Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
12776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12777 S:      Maintained
12778 F:      sound/soc/uniphier/
12779
12780 SOEKRIS NET48XX LED SUPPORT
12781 M:      Chris Boot <bootc@bootc.net>
12782 S:      Maintained
12783 F:      drivers/leds/leds-net48xx.c
12784
12785 SOFT-ROCE DRIVER (rxe)
12786 M:      Moni Shoua <monis@mellanox.com>
12787 L:      linux-rdma@vger.kernel.org
12788 S:      Supported
12789 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12790 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12791 F:      drivers/infiniband/sw/rxe/
12792 F:      include/uapi/rdma/rdma_user_rxe.h
12793
12794 SOFTLOGIC 6x10 MPEG CODEC
12795 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12796 M:      Anton Sviridenko <anton@corp.bluecherry.net>
12797 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12798 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12799 M:      Ismael Luceno <ismael@iodev.co.uk>
12800 L:      linux-media@vger.kernel.org
12801 S:      Supported
12802 F:      drivers/media/pci/solo6x10/
12803
12804 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
12805 M:      James Morse <james.morse@arm.com>
12806 L:      linux-arm-kernel@lists.infradead.org
12807 S:      Maintained
12808 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
12809 F:      drivers/firmware/arm_sdei.c
12810 F:      include/linux/sdei.h
12811 F:      include/uapi/linux/sdei.h
12812
12813 SOFTWARE RAID (Multiple Disks) SUPPORT
12814 M:      Shaohua Li <shli@kernel.org>
12815 L:      linux-raid@vger.kernel.org
12816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12817 S:      Supported
12818 F:      drivers/md/Makefile
12819 F:      drivers/md/Kconfig
12820 F:      drivers/md/md*
12821 F:      drivers/md/raid*
12822 F:      include/linux/raid/
12823 F:      include/uapi/linux/raid/
12824
12825 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
12826 M:      Jassi Brar <jaswinder.singh@linaro.org>
12827 L:      netdev@vger.kernel.org
12828 S:      Maintained
12829 F:      drivers/net/ethernet/socionext/netsec.c
12830 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
12831
12832 SOLIDRUN CLEARFOG SUPPORT
12833 M:      Russell King <linux@armlinux.org.uk>
12834 S:      Maintained
12835 F:      arch/arm/boot/dts/armada-388-clearfog*
12836 F:      arch/arm/boot/dts/armada-38x-solidrun-*
12837
12838 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
12839 M:      Russell King <linux@armlinux.org.uk>
12840 S:      Maintained
12841 F:      arch/arm/boot/dts/imx6*-cubox-i*
12842 F:      arch/arm/boot/dts/imx6*-hummingboard*
12843 F:      arch/arm/boot/dts/imx6*-sr-*
12844
12845 SONIC NETWORK DRIVER
12846 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12847 L:      netdev@vger.kernel.org
12848 S:      Maintained
12849 F:      drivers/net/ethernet/natsemi/sonic.*
12850
12851 SONICS SILICON BACKPLANE DRIVER (SSB)
12852 M:      Michael Buesch <m@bues.ch>
12853 L:      linux-wireless@vger.kernel.org
12854 S:      Maintained
12855 F:      drivers/ssb/
12856 F:      include/linux/ssb/
12857
12858 SONY IMX274 SENSOR DRIVER
12859 M:      Leon Luo <leonl@leopardimaging.com>
12860 L:      linux-media@vger.kernel.org
12861 T:      git git://linuxtv.org/media_tree.git
12862 S:      Maintained
12863 F:      drivers/media/i2c/imx274.c
12864 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
12865
12866 SONY MEMORYSTICK CARD SUPPORT
12867 M:      Alex Dubov <oakad@yahoo.com>
12868 W:      http://tifmxx.berlios.de/
12869 S:      Maintained
12870 F:      drivers/memstick/host/tifm_ms.c
12871
12872 SONY MEMORYSTICK STANDARD SUPPORT
12873 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12874 S:      Maintained
12875 F:      drivers/memstick/core/ms_block.*
12876
12877 SONY VAIO CONTROL DEVICE DRIVER
12878 M:      Mattia Dongili <malattia@linux.it>
12879 L:      platform-driver-x86@vger.kernel.org
12880 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12881 S:      Maintained
12882 F:      Documentation/laptops/sony-laptop.txt
12883 F:      drivers/char/sonypi.c
12884 F:      drivers/platform/x86/sony-laptop.c
12885 F:      include/linux/sony-laptop.h
12886
12887 SOUND
12888 M:      Jaroslav Kysela <perex@perex.cz>
12889 M:      Takashi Iwai <tiwai@suse.com>
12890 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12891 W:      http://www.alsa-project.org/
12892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12893 T:      git git://git.alsa-project.org/alsa-kernel.git
12894 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
12895 S:      Maintained
12896 F:      Documentation/sound/
12897 F:      include/sound/
12898 F:      include/uapi/sound/
12899 F:      sound/
12900
12901 SOUND - COMPRESSED AUDIO
12902 M:      Vinod Koul <vinod.koul@intel.com>
12903 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12905 S:      Supported
12906 F:      Documentation/sound/alsa/compress_offload.txt
12907 F:      include/sound/compress_driver.h
12908 F:      include/uapi/sound/compress_*
12909 F:      sound/core/compress_offload.c
12910 F:      sound/soc/soc-compress.c
12911
12912 SOUND - DMAENGINE HELPERS
12913 M:      Lars-Peter Clausen <lars@metafoo.de>
12914 S:      Supported
12915 F:      include/sound/dmaengine_pcm.h
12916 F:      sound/core/pcm_dmaengine.c
12917 F:      sound/soc/soc-generic-dmaengine-pcm.c
12918
12919 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12920 M:      Liam Girdwood <lgirdwood@gmail.com>
12921 M:      Mark Brown <broonie@kernel.org>
12922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12923 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12924 W:      http://alsa-project.org/main/index.php/ASoC
12925 S:      Supported
12926 F:      Documentation/devicetree/bindings/sound/
12927 F:      Documentation/sound/alsa/soc/
12928 F:      sound/soc/
12929 F:      include/sound/soc*
12930
12931 SOUNDWIRE SUBSYSTEM
12932 M:      Vinod Koul <vinod.koul@intel.com>
12933 M:      Sanyog Kale <sanyog.r.kale@intel.com>
12934 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
12935 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12936 S:      Supported
12937 F:      Documentation/driver-api/soundwire/
12938 F:      drivers/soundwire/
12939 F:      include/linux/soundwire/
12940
12941 SP2 MEDIA DRIVER
12942 M:      Olli Salonen <olli.salonen@iki.fi>
12943 L:      linux-media@vger.kernel.org
12944 W:      https://linuxtv.org
12945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12946 S:      Maintained
12947 F:      drivers/media/dvb-frontends/sp2*
12948
12949 SPARC + UltraSPARC (sparc/sparc64)
12950 M:      "David S. Miller" <davem@davemloft.net>
12951 L:      sparclinux@vger.kernel.org
12952 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12955 S:      Maintained
12956 F:      arch/sparc/
12957 F:      drivers/sbus/
12958
12959 SPARC SERIAL DRIVERS
12960 M:      "David S. Miller" <davem@davemloft.net>
12961 L:      sparclinux@vger.kernel.org
12962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12964 S:      Maintained
12965 F:      include/linux/sunserialcore.h
12966 F:      drivers/tty/serial/suncore.c
12967 F:      drivers/tty/serial/sunhv.c
12968 F:      drivers/tty/serial/sunsab.c
12969 F:      drivers/tty/serial/sunsab.h
12970 F:      drivers/tty/serial/sunsu.c
12971 F:      drivers/tty/serial/sunzilog.c
12972 F:      drivers/tty/serial/sunzilog.h
12973 F:      drivers/tty/vcc.c
12974
12975 SPARSE CHECKER
12976 M:      "Christopher Li" <sparse@chrisli.org>
12977 L:      linux-sparse@vger.kernel.org
12978 W:      https://sparse.wiki.kernel.org/
12979 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12980 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12981 S:      Maintained
12982 F:      include/linux/compiler.h
12983
12984 SPEAR CLOCK FRAMEWORK SUPPORT
12985 M:      Viresh Kumar <vireshk@kernel.org>
12986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12987 W:      http://www.st.com/spear
12988 S:      Maintained
12989 F:      drivers/clk/spear/
12990
12991 SPEAR PLATFORM SUPPORT
12992 M:      Viresh Kumar <vireshk@kernel.org>
12993 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12995 W:      http://www.st.com/spear
12996 S:      Maintained
12997 F:      arch/arm/boot/dts/spear*
12998 F:      arch/arm/mach-spear/
12999
13000 SPI NOR SUBSYSTEM
13001 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
13002 M:      Marek Vasut <marek.vasut@gmail.com>
13003 L:      linux-mtd@lists.infradead.org
13004 W:      http://www.linux-mtd.infradead.org/
13005 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13006 T:      git git://git.infradead.org/linux-mtd.git spi-nor/fixes
13007 T:      git git://git.infradead.org/linux-mtd.git spi-nor/next
13008 S:      Maintained
13009 F:      drivers/mtd/spi-nor/
13010 F:      include/linux/mtd/spi-nor.h
13011
13012 SPI SUBSYSTEM
13013 M:      Mark Brown <broonie@kernel.org>
13014 L:      linux-spi@vger.kernel.org
13015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
13016 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
13017 S:      Maintained
13018 F:      Documentation/devicetree/bindings/spi/
13019 F:      Documentation/spi/
13020 F:      drivers/spi/
13021 F:      include/linux/spi/
13022 F:      include/uapi/linux/spi/
13023 F:      tools/spi/
13024
13025 SPIDERNET NETWORK DRIVER for CELL
13026 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
13027 L:      netdev@vger.kernel.org
13028 S:      Supported
13029 F:      Documentation/networking/spider_net.txt
13030 F:      drivers/net/ethernet/toshiba/spider_net*
13031
13032 SPMI SUBSYSTEM
13033 R:      Stephen Boyd <sboyd@kernel.org>
13034 L:      linux-arm-msm@vger.kernel.org
13035 F:      Documentation/devicetree/bindings/spmi/
13036 F:      drivers/spmi/
13037 F:      include/dt-bindings/spmi/spmi.h
13038 F:      include/linux/spmi.h
13039 F:      include/trace/events/spmi.h
13040
13041 SPU FILE SYSTEM
13042 M:      Jeremy Kerr <jk@ozlabs.org>
13043 L:      linuxppc-dev@lists.ozlabs.org
13044 W:      http://www.ibm.com/developerworks/power/cell/
13045 S:      Supported
13046 F:      Documentation/filesystems/spufs.txt
13047 F:      arch/powerpc/platforms/cell/spufs/
13048
13049 SQUASHFS FILE SYSTEM
13050 M:      Phillip Lougher <phillip@squashfs.org.uk>
13051 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
13052 W:      http://squashfs.org.uk
13053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
13054 S:      Maintained
13055 F:      Documentation/filesystems/squashfs.txt
13056 F:      fs/squashfs/
13057
13058 SRM (Alpha) environment access
13059 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
13060 S:      Maintained
13061 F:      arch/alpha/kernel/srm_env.c
13062
13063 STABLE BRANCH
13064 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13065 L:      stable@vger.kernel.org
13066 S:      Supported
13067 F:      Documentation/process/stable-kernel-rules.rst
13068
13069 STAGING - ATOMISP DRIVER
13070 M:      Alan Cox <alan@linux.intel.com>
13071 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13072 L:      linux-media@vger.kernel.org
13073 S:      Maintained
13074 F:      drivers/staging/media/atomisp/
13075
13076 STAGING - COMEDI
13077 M:      Ian Abbott <abbotti@mev.co.uk>
13078 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
13079 S:      Odd Fixes
13080 F:      drivers/staging/comedi/
13081
13082 STAGING - FLARION FT1000 DRIVERS
13083 M:      Marek Belisko <marek.belisko@gmail.com>
13084 S:      Odd Fixes
13085 F:      drivers/staging/ft1000/
13086
13087 STAGING - INDUSTRIAL IO
13088 M:      Jonathan Cameron <jic23@kernel.org>
13089 L:      linux-iio@vger.kernel.org
13090 S:      Odd Fixes
13091 F:      Documentation/devicetree/bindings/staging/iio/
13092 F:      drivers/staging/iio/
13093
13094 STAGING - LUSTRE PARALLEL FILESYSTEM
13095 M:      Oleg Drokin <oleg.drokin@intel.com>
13096 M:      Andreas Dilger <andreas.dilger@intel.com>
13097 M:      James Simmons <jsimmons@infradead.org>
13098 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
13099 W:      http://wiki.lustre.org/
13100 S:      Maintained
13101 F:      drivers/staging/lustre
13102
13103 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
13104 M:      Marc Dietrich <marvin24@gmx.de>
13105 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
13106 L:      linux-tegra@vger.kernel.org
13107 S:      Maintained
13108 F:      drivers/staging/nvec/
13109
13110 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
13111 M:      Jens Frederich <jfrederich@gmail.com>
13112 M:      Daniel Drake <dsd@laptop.org>
13113 M:      Jon Nettleton <jon.nettleton@gmail.com>
13114 W:      http://wiki.laptop.org/go/DCON
13115 S:      Maintained
13116 F:      drivers/staging/olpc_dcon/
13117
13118 STAGING - REALTEK RTL8712U DRIVERS
13119 M:      Larry Finger <Larry.Finger@lwfinger.net>
13120 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
13121 S:      Odd Fixes
13122 F:      drivers/staging/rtl8712/
13123
13124 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
13125 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13126 M:      Teddy Wang <teddy.wang@siliconmotion.com>
13127 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13128 L:      linux-fbdev@vger.kernel.org
13129 S:      Maintained
13130 F:      drivers/staging/sm750fb/
13131
13132 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
13133 M:      William Hubbs <w.d.hubbs@gmail.com>
13134 M:      Chris Brannon <chris@the-brannons.com>
13135 M:      Kirk Reiser <kirk@reisers.ca>
13136 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
13137 L:      speakup@linux-speakup.org
13138 W:      http://www.linux-speakup.org/
13139 S:      Odd Fixes
13140 F:      drivers/staging/speakup/
13141
13142 STAGING - VIA VT665X DRIVERS
13143 M:      Forest Bond <forest@alittletooquiet.net>
13144 S:      Odd Fixes
13145 F:      drivers/staging/vt665?/
13146
13147 STAGING - WILC1000 WIFI DRIVER
13148 M:      Aditya Shankar <aditya.shankar@microchip.com>
13149 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
13150 L:      linux-wireless@vger.kernel.org
13151 S:      Supported
13152 F:      drivers/staging/wilc1000/
13153
13154 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
13155 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
13156 S:      Odd Fixes
13157 F:      drivers/staging/xgifb/
13158
13159 STAGING SUBSYSTEM
13160 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
13162 L:      devel@driverdev.osuosl.org
13163 S:      Supported
13164 F:      drivers/staging/
13165
13166 STARFIRE/DURALAN NETWORK DRIVER
13167 M:      Ion Badulescu <ionut@badula.org>
13168 S:      Odd Fixes
13169 F:      drivers/net/ethernet/adaptec/starfire*
13170
13171 STEC S1220 SKD DRIVER
13172 M:      Bart Van Assche <bart.vanassche@wdc.com>
13173 L:      linux-block@vger.kernel.org
13174 S:      Maintained
13175 F:      drivers/block/skd*[ch]
13176
13177 STI CEC DRIVER
13178 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
13179 S:      Maintained
13180 F:      drivers/staging/media/st-cec/
13181 F:      Documentation/devicetree/bindings/media/stih-cec.txt
13182
13183 STK1160 USB VIDEO CAPTURE DRIVER
13184 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13185 L:      linux-media@vger.kernel.org
13186 T:      git git://linuxtv.org/media_tree.git
13187 S:      Maintained
13188 F:      drivers/media/usb/stk1160/
13189
13190 STMMAC ETHERNET DRIVER
13191 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
13192 M:      Alexandre Torgue <alexandre.torgue@st.com>
13193 L:      netdev@vger.kernel.org
13194 W:      http://www.stlinux.com
13195 S:      Supported
13196 F:      drivers/net/ethernet/stmicro/stmmac/
13197
13198 SUN3/3X
13199 M:      Sam Creasey <sammy@sammy.net>
13200 W:      http://sammy.net/sun3/
13201 S:      Maintained
13202 F:      arch/m68k/kernel/*sun3*
13203 F:      arch/m68k/sun3*/
13204 F:      arch/m68k/include/asm/sun3*
13205 F:      drivers/net/ethernet/i825xx/sun3*
13206
13207 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13208 M:      Hans de Goede <hdegoede@redhat.com>
13209 L:      linux-input@vger.kernel.org
13210 S:      Maintained
13211 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13212 F:      drivers/input/keyboard/sun4i-lradc-keys.c
13213
13214 SUNDANCE NETWORK DRIVER
13215 M:      Denis Kirjanov <kda@linux-powerpc.org>
13216 L:      netdev@vger.kernel.org
13217 S:      Maintained
13218 F:      drivers/net/ethernet/dlink/sundance.c
13219
13220 SUPERH
13221 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
13222 M:      Rich Felker <dalias@libc.org>
13223 L:      linux-sh@vger.kernel.org
13224 Q:      http://patchwork.kernel.org/project/linux-sh/list/
13225 S:      Maintained
13226 F:      Documentation/sh/
13227 F:      arch/sh/
13228 F:      drivers/sh/
13229
13230 SUSPEND TO RAM
13231 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13232 M:      Len Brown <len.brown@intel.com>
13233 M:      Pavel Machek <pavel@ucw.cz>
13234 L:      linux-pm@vger.kernel.org
13235 B:      https://bugzilla.kernel.org
13236 S:      Supported
13237 F:      Documentation/power/
13238 F:      arch/x86/kernel/acpi/
13239 F:      drivers/base/power/
13240 F:      kernel/power/
13241 F:      include/linux/suspend.h
13242 F:      include/linux/freezer.h
13243 F:      include/linux/pm.h
13244
13245 SVGA HANDLING
13246 M:      Martin Mares <mj@ucw.cz>
13247 L:      linux-video@atrey.karlin.mff.cuni.cz
13248 S:      Maintained
13249 F:      Documentation/svga.txt
13250 F:      arch/x86/boot/video*
13251
13252 SWIOTLB SUBSYSTEM
13253 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13254 L:      iommu@lists.linux-foundation.org
13255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13256 S:      Supported
13257 F:      lib/swiotlb.c
13258 F:      arch/*/kernel/pci-swiotlb.c
13259 F:      include/linux/swiotlb.h
13260
13261 SWITCHDEV
13262 M:      Jiri Pirko <jiri@resnulli.us>
13263 M:      Ivan Vecera <ivecera@redhat.com>
13264 L:      netdev@vger.kernel.org
13265 S:      Supported
13266 F:      net/switchdev/
13267 F:      include/net/switchdev.h
13268
13269 SYNC FILE FRAMEWORK
13270 M:      Sumit Semwal <sumit.semwal@linaro.org>
13271 R:      Gustavo Padovan <gustavo@padovan.org>
13272 S:      Maintained
13273 L:      linux-media@vger.kernel.org
13274 L:      dri-devel@lists.freedesktop.org
13275 F:      drivers/dma-buf/sync_*
13276 F:      drivers/dma-buf/dma-fence*
13277 F:      drivers/dma-buf/sw_sync.c
13278 F:      include/linux/sync_file.h
13279 F:      include/uapi/linux/sync_file.h
13280 F:      Documentation/sync_file.txt
13281 T:      git git://anongit.freedesktop.org/drm/drm-misc
13282
13283 SYNOPSYS ARC ARCHITECTURE
13284 M:      Vineet Gupta <vgupta@synopsys.com>
13285 L:      linux-snps-arc@lists.infradead.org
13286 S:      Supported
13287 F:      arch/arc/
13288 F:      Documentation/devicetree/bindings/arc/*
13289 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13290 F:      drivers/clocksource/arc_timer.c
13291 F:      drivers/tty/serial/arc_uart.c
13292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13293
13294 SYNOPSYS ARC HSDK SDP pll clock driver
13295 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13296 S:      Supported
13297 F:      drivers/clk/clk-hsdk-pll.c
13298 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
13299
13300 SYNOPSYS ARC SDP clock driver
13301 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13302 S:      Supported
13303 F:      drivers/clk/axs10x/*
13304 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
13305
13306 SYNOPSYS ARC SDP platform support
13307 M:      Alexey Brodkin <abrodkin@synopsys.com>
13308 S:      Supported
13309 F:      arch/arc/plat-axs10x
13310 F:      arch/arc/boot/dts/ax*
13311 F:      Documentation/devicetree/bindings/arc/axs10*
13312
13313 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
13314 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13315 S:      Supported
13316 F:      drivers/reset/reset-axs10x.c
13317 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
13318
13319 SYNOPSYS DESIGNWARE 8250 UART DRIVER
13320 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13321 S:      Maintained
13322 F:      drivers/tty/serial/8250/8250_dw.c
13323
13324 SYNOPSYS DESIGNWARE APB GPIO DRIVER
13325 M:      Hoan Tran <hotran@apm.com>
13326 L:      linux-gpio@vger.kernel.org
13327 S:      Maintained
13328 F:      drivers/gpio/gpio-dwapb.c
13329 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
13330
13331 SYNOPSYS DESIGNWARE DMAC DRIVER
13332 M:      Viresh Kumar <vireshk@kernel.org>
13333 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13334 S:      Maintained
13335 F:      include/linux/dma/dw.h
13336 F:      include/linux/platform_data/dma-dw.h
13337 F:      drivers/dma/dw/
13338
13339 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
13340 M:      Jose Abreu <Jose.Abreu@synopsys.com>
13341 L:      netdev@vger.kernel.org
13342 S:      Supported
13343 F:      drivers/net/ethernet/synopsys/
13344
13345 SYNOPSYS DESIGNWARE I2C DRIVER
13346 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
13347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13348 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
13349 L:      linux-i2c@vger.kernel.org
13350 S:      Maintained
13351 F:      drivers/i2c/busses/i2c-designware-*
13352 F:      include/linux/platform_data/i2c-designware.h
13353
13354 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
13355 M:      Jaehoon Chung <jh80.chung@samsung.com>
13356 L:      linux-mmc@vger.kernel.org
13357 S:      Maintained
13358 F:      drivers/mmc/host/dw_mmc*
13359
13360 SYNOPSYS HSDK RESET CONTROLLER DRIVER
13361 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13362 S:      Supported
13363 F:      drivers/reset/reset-hsdk.c
13364 F:      include/dt-bindings/reset/snps,hsdk-reset.h
13365 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
13366
13367 SYSTEM CONFIGURATION (SYSCON)
13368 M:      Lee Jones <lee.jones@linaro.org>
13369 M:      Arnd Bergmann <arnd@arndb.de>
13370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13371 S:      Supported
13372 F:      drivers/mfd/syscon.c
13373
13374 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
13375 M:      Sudeep Holla <sudeep.holla@arm.com>
13376 L:      linux-arm-kernel@lists.infradead.org
13377 S:      Maintained
13378 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
13379 F:      drivers/clk/clk-scpi.c
13380 F:      drivers/cpufreq/scpi-cpufreq.c
13381 F:      drivers/firmware/arm_scpi.c
13382 F:      include/linux/scpi_protocol.h
13383
13384 SYSTEM RESET/SHUTDOWN DRIVERS
13385 M:      Sebastian Reichel <sre@kernel.org>
13386 L:      linux-pm@vger.kernel.org
13387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13388 S:      Maintained
13389 F:      Documentation/devicetree/bindings/power/reset/
13390 F:      drivers/power/reset/
13391
13392 SYSTEM TRACE MODULE CLASS
13393 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13394 S:      Maintained
13395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13396 F:      Documentation/trace/stm.txt
13397 F:      drivers/hwtracing/stm/
13398 F:      include/linux/stm.h
13399 F:      include/uapi/linux/stm.h
13400
13401 SYSV FILESYSTEM
13402 M:      Christoph Hellwig <hch@infradead.org>
13403 S:      Maintained
13404 F:      Documentation/filesystems/sysv-fs.txt
13405 F:      fs/sysv/
13406 F:      include/linux/sysv_fs.h
13407
13408 TARGET SUBSYSTEM
13409 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
13410 L:      linux-scsi@vger.kernel.org
13411 L:      target-devel@vger.kernel.org
13412 W:      http://www.linux-iscsi.org
13413 W:      http://groups.google.com/group/linux-iscsi-target-dev
13414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13415 S:      Supported
13416 F:      drivers/target/
13417 F:      include/target/
13418 F:      Documentation/target/
13419
13420 TASKSTATS STATISTICS INTERFACE
13421 M:      Balbir Singh <bsingharora@gmail.com>
13422 S:      Maintained
13423 F:      Documentation/accounting/taskstats*
13424 F:      include/linux/taskstats*
13425 F:      kernel/taskstats.c
13426
13427 TC subsystem
13428 M:      Jamal Hadi Salim <jhs@mojatatu.com>
13429 M:      Cong Wang <xiyou.wangcong@gmail.com>
13430 M:      Jiri Pirko <jiri@resnulli.us>
13431 L:      netdev@vger.kernel.org
13432 S:      Maintained
13433 F:      include/net/pkt_cls.h
13434 F:      include/net/pkt_sched.h
13435 F:      include/net/tc_act/
13436 F:      include/uapi/linux/pkt_cls.h
13437 F:      include/uapi/linux/pkt_sched.h
13438 F:      include/uapi/linux/tc_act/
13439 F:      include/uapi/linux/tc_ematch/
13440 F:      net/sched/
13441
13442 TCP LOW PRIORITY MODULE
13443 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13444 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13445 W:      http://tcp-lp-mod.sourceforge.net/
13446 S:      Maintained
13447 F:      net/ipv4/tcp_lp.c
13448
13449 TDA10071 MEDIA DRIVER
13450 M:      Antti Palosaari <crope@iki.fi>
13451 L:      linux-media@vger.kernel.org
13452 W:      https://linuxtv.org
13453 W:      http://palosaari.fi/linux/
13454 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13455 T:      git git://linuxtv.org/anttip/media_tree.git
13456 S:      Maintained
13457 F:      drivers/media/dvb-frontends/tda10071*
13458
13459 TDA18212 MEDIA DRIVER
13460 M:      Antti Palosaari <crope@iki.fi>
13461 L:      linux-media@vger.kernel.org
13462 W:      https://linuxtv.org
13463 W:      http://palosaari.fi/linux/
13464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13465 T:      git git://linuxtv.org/anttip/media_tree.git
13466 S:      Maintained
13467 F:      drivers/media/tuners/tda18212*
13468
13469 TDA18218 MEDIA DRIVER
13470 M:      Antti Palosaari <crope@iki.fi>
13471 L:      linux-media@vger.kernel.org
13472 W:      https://linuxtv.org
13473 W:      http://palosaari.fi/linux/
13474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13475 T:      git git://linuxtv.org/anttip/media_tree.git
13476 S:      Maintained
13477 F:      drivers/media/tuners/tda18218*
13478
13479 TDA18250 MEDIA DRIVER
13480 M:      Olli Salonen <olli.salonen@iki.fi>
13481 L:      linux-media@vger.kernel.org
13482 W:      https://linuxtv.org
13483 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13484 T:      git git://linuxtv.org/media_tree.git
13485 S:      Maintained
13486 F:      drivers/media/tuners/tda18250*
13487
13488 TDA18271 MEDIA DRIVER
13489 M:      Michael Krufky <mkrufky@linuxtv.org>
13490 L:      linux-media@vger.kernel.org
13491 W:      https://linuxtv.org
13492 W:      http://github.com/mkrufky
13493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13494 T:      git git://linuxtv.org/mkrufky/tuners.git
13495 S:      Maintained
13496 F:      drivers/media/tuners/tda18271*
13497
13498 TDA827x MEDIA DRIVER
13499 M:      Michael Krufky <mkrufky@linuxtv.org>
13500 L:      linux-media@vger.kernel.org
13501 W:      https://linuxtv.org
13502 W:      http://github.com/mkrufky
13503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13504 T:      git git://linuxtv.org/mkrufky/tuners.git
13505 S:      Maintained
13506 F:      drivers/media/tuners/tda8290.*
13507
13508 TDA8290 MEDIA DRIVER
13509 M:      Michael Krufky <mkrufky@linuxtv.org>
13510 L:      linux-media@vger.kernel.org
13511 W:      https://linuxtv.org
13512 W:      http://github.com/mkrufky
13513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13514 T:      git git://linuxtv.org/mkrufky/tuners.git
13515 S:      Maintained
13516 F:      drivers/media/tuners/tda8290.*
13517
13518 TDA9840 MEDIA DRIVER
13519 M:      Hans Verkuil <hverkuil@xs4all.nl>
13520 L:      linux-media@vger.kernel.org
13521 T:      git git://linuxtv.org/media_tree.git
13522 W:      https://linuxtv.org
13523 S:      Maintained
13524 F:      drivers/media/i2c/tda9840*
13525
13526 TEA5761 TUNER DRIVER
13527 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13528 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13529 L:      linux-media@vger.kernel.org
13530 W:      https://linuxtv.org
13531 T:      git git://linuxtv.org/media_tree.git
13532 S:      Odd fixes
13533 F:      drivers/media/tuners/tea5761.*
13534
13535 TEA5767 TUNER DRIVER
13536 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13537 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13538 L:      linux-media@vger.kernel.org
13539 W:      https://linuxtv.org
13540 T:      git git://linuxtv.org/media_tree.git
13541 S:      Maintained
13542 F:      drivers/media/tuners/tea5767.*
13543
13544 TEA6415C 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/tea6415c*
13551
13552 TEA6420 MEDIA DRIVER
13553 M:      Hans Verkuil <hverkuil@xs4all.nl>
13554 L:      linux-media@vger.kernel.org
13555 T:      git git://linuxtv.org/media_tree.git
13556 W:      https://linuxtv.org
13557 S:      Maintained
13558 F:      drivers/media/i2c/tea6420*
13559
13560 TEAM DRIVER
13561 M:      Jiri Pirko <jiri@resnulli.us>
13562 L:      netdev@vger.kernel.org
13563 S:      Supported
13564 F:      drivers/net/team/
13565 F:      include/linux/if_team.h
13566 F:      include/uapi/linux/if_team.h
13567
13568 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13569 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13570 S:      Maintained
13571 F:      arch/x86/platform/ts5500/
13572
13573 TECHNOTREND USB IR RECEIVER
13574 M:      Sean Young <sean@mess.org>
13575 L:      linux-media@vger.kernel.org
13576 S:      Maintained
13577 F:      drivers/media/rc/ttusbir.c
13578
13579 TEE SUBSYSTEM
13580 M:      Jens Wiklander <jens.wiklander@linaro.org>
13581 S:      Maintained
13582 F:      include/linux/tee_drv.h
13583 F:      include/uapi/linux/tee.h
13584 F:      drivers/tee/
13585 F:      Documentation/tee.txt
13586
13587 TEGRA ARCHITECTURE SUPPORT
13588 M:      Thierry Reding <thierry.reding@gmail.com>
13589 M:      Jonathan Hunter <jonathanh@nvidia.com>
13590 L:      linux-tegra@vger.kernel.org
13591 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
13592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13593 S:      Supported
13594 N:      [^a-z]tegra
13595
13596 TEGRA CLOCK DRIVER
13597 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
13598 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
13599 S:      Supported
13600 F:      drivers/clk/tegra/
13601
13602 TEGRA DMA DRIVERS
13603 M:      Laxman Dewangan <ldewangan@nvidia.com>
13604 M:      Jon Hunter <jonathanh@nvidia.com>
13605 S:      Supported
13606 F:      drivers/dma/tegra*
13607
13608 TEGRA I2C DRIVER
13609 M:      Laxman Dewangan <ldewangan@nvidia.com>
13610 S:      Supported
13611 F:      drivers/i2c/busses/i2c-tegra.c
13612
13613 TEGRA IOMMU DRIVERS
13614 M:      Thierry Reding <thierry.reding@gmail.com>
13615 L:      linux-tegra@vger.kernel.org
13616 S:      Supported
13617 F:      drivers/iommu/tegra*
13618
13619 TEGRA KBC DRIVER
13620 M:      Rakesh Iyer <riyer@nvidia.com>
13621 M:      Laxman Dewangan <ldewangan@nvidia.com>
13622 S:      Supported
13623 F:      drivers/input/keyboard/tegra-kbc.c
13624
13625 TEGRA PWM DRIVER
13626 M:      Thierry Reding <thierry.reding@gmail.com>
13627 S:      Supported
13628 F:      drivers/pwm/pwm-tegra.c
13629
13630 TEGRA SERIAL DRIVER
13631 M:      Laxman Dewangan <ldewangan@nvidia.com>
13632 S:      Supported
13633 F:      drivers/tty/serial/serial-tegra.c
13634
13635 TEGRA SPI DRIVER
13636 M:      Laxman Dewangan <ldewangan@nvidia.com>
13637 S:      Supported
13638 F:      drivers/spi/spi-tegra*
13639
13640 TEHUTI ETHERNET DRIVER
13641 M:      Andy Gospodarek <andy@greyhouse.net>
13642 L:      netdev@vger.kernel.org
13643 S:      Supported
13644 F:      drivers/net/ethernet/tehuti/*
13645
13646 Telecom Clock Driver for MCPL0010
13647 M:      Mark Gross <mark.gross@intel.com>
13648 S:      Supported
13649 F:      drivers/char/tlclk.c
13650
13651 TENSILICA XTENSA PORT (xtensa)
13652 M:      Chris Zankel <chris@zankel.net>
13653 M:      Max Filippov <jcmvbkbc@gmail.com>
13654 L:      linux-xtensa@linux-xtensa.org
13655 T:      git git://github.com/czankel/xtensa-linux.git
13656 S:      Maintained
13657 F:      arch/xtensa/
13658 F:      drivers/irqchip/irq-xtensa-*
13659
13660 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13661 M:      Nishanth Menon <nm@ti.com>
13662 M:      Tero Kristo <t-kristo@ti.com>
13663 M:      Santosh Shilimkar <ssantosh@kernel.org>
13664 L:      linux-arm-kernel@lists.infradead.org
13665 S:      Maintained
13666 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13667 F:      drivers/firmware/ti_sci*
13668 F:      include/linux/soc/ti/ti_sci_protocol.h
13669 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13670 F:      include/dt-bindings/genpd/k2g.h
13671 F:      drivers/soc/ti/ti_sci_pm_domains.c
13672 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13673 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13674 F:      drivers/clk/keystone/sci-clk.c
13675 F:      drivers/reset/reset-ti-sci.c
13676
13677 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13678 M:      Hans Verkuil <hverkuil@xs4all.nl>
13679 L:      linux-media@vger.kernel.org
13680 T:      git git://linuxtv.org/media_tree.git
13681 W:      https://linuxtv.org
13682 S:      Maintained
13683 F:      drivers/media/radio/radio-raremono.c
13684
13685 THERMAL
13686 M:      Zhang Rui <rui.zhang@intel.com>
13687 M:      Eduardo Valentin <edubezval@gmail.com>
13688 L:      linux-pm@vger.kernel.org
13689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13691 Q:      https://patchwork.kernel.org/project/linux-pm/list/
13692 S:      Supported
13693 F:      drivers/thermal/
13694 F:      include/linux/thermal.h
13695 F:      include/uapi/linux/thermal.h
13696 F:      include/linux/cpu_cooling.h
13697 F:      Documentation/devicetree/bindings/thermal/
13698
13699 THERMAL/CPU_COOLING
13700 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
13701 M:      Viresh Kumar <viresh.kumar@linaro.org>
13702 M:      Javi Merino <javi.merino@kernel.org>
13703 L:      linux-pm@vger.kernel.org
13704 S:      Supported
13705 F:      Documentation/thermal/cpu-cooling-api.txt
13706 F:      drivers/thermal/cpu_cooling.c
13707 F:      include/linux/cpu_cooling.h
13708
13709 THINKPAD ACPI EXTRAS DRIVER
13710 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13711 L:      ibm-acpi-devel@lists.sourceforge.net
13712 L:      platform-driver-x86@vger.kernel.org
13713 W:      http://ibm-acpi.sourceforge.net
13714 W:      http://thinkwiki.org/wiki/Ibm-acpi
13715 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13716 S:      Maintained
13717 F:      drivers/platform/x86/thinkpad_acpi.c
13718
13719 THUNDERBOLT DRIVER
13720 M:      Andreas Noever <andreas.noever@gmail.com>
13721 M:      Michael Jamet <michael.jamet@intel.com>
13722 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13723 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
13725 S:      Maintained
13726 F:      Documentation/admin-guide/thunderbolt.rst
13727 F:      drivers/thunderbolt/
13728 F:      include/linux/thunderbolt.h
13729
13730 THUNDERBOLT NETWORK DRIVER
13731 M:      Michael Jamet <michael.jamet@intel.com>
13732 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13733 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13734 L:      netdev@vger.kernel.org
13735 S:      Maintained
13736 F:      drivers/net/thunderbolt.c
13737
13738 THUNDERX GPIO DRIVER
13739 M:      David Daney <david.daney@cavium.com>
13740 S:      Maintained
13741 F:      drivers/gpio/gpio-thunderx.c
13742
13743 TI AM437X VPFE DRIVER
13744 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13745 L:      linux-media@vger.kernel.org
13746 W:      https://linuxtv.org
13747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13748 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13749 S:      Maintained
13750 F:      drivers/media/platform/am437x/
13751
13752 TI BANDGAP AND THERMAL DRIVER
13753 M:      Eduardo Valentin <edubezval@gmail.com>
13754 M:      Keerthy <j-keerthy@ti.com>
13755 L:      linux-pm@vger.kernel.org
13756 L:      linux-omap@vger.kernel.org
13757 S:      Maintained
13758 F:      drivers/thermal/ti-soc-thermal/
13759
13760 TI BQ27XXX POWER SUPPLY DRIVER
13761 R:      Andrew F. Davis <afd@ti.com>
13762 F:      include/linux/power/bq27xxx_battery.h
13763 F:      drivers/power/supply/bq27xxx_battery.c
13764 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13765
13766 TI CDCE706 CLOCK DRIVER
13767 M:      Max Filippov <jcmvbkbc@gmail.com>
13768 S:      Maintained
13769 F:      drivers/clk/clk-cdce706.c
13770
13771 TI CLOCK DRIVER
13772 M:      Tero Kristo <t-kristo@ti.com>
13773 L:      linux-omap@vger.kernel.org
13774 S:      Maintained
13775 F:      drivers/clk/ti/
13776 F:      include/linux/clk/ti.h
13777
13778 TI DAVINCI MACHINE SUPPORT
13779 M:      Sekhar Nori <nsekhar@ti.com>
13780 M:      Kevin Hilman <khilman@kernel.org>
13781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13783 S:      Supported
13784 F:      arch/arm/mach-davinci/
13785 F:      drivers/i2c/busses/i2c-davinci.c
13786 F:      arch/arm/boot/dts/da850*
13787
13788 TI DAVINCI SERIES GPIO DRIVER
13789 M:      Keerthy <j-keerthy@ti.com>
13790 L:      linux-gpio@vger.kernel.org
13791 S:      Maintained
13792 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13793 F:      drivers/gpio/gpio-davinci.c
13794
13795 TI DAVINCI SERIES MEDIA DRIVER
13796 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13797 L:      linux-media@vger.kernel.org
13798 W:      https://linuxtv.org
13799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13800 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13801 S:      Maintained
13802 F:      drivers/media/platform/davinci/
13803 F:      include/media/davinci/
13804
13805 TI ETHERNET SWITCH DRIVER (CPSW)
13806 R:      Grygorii Strashko <grygorii.strashko@ti.com>
13807 L:      linux-omap@vger.kernel.org
13808 L:      netdev@vger.kernel.org
13809 S:      Maintained
13810 F:      drivers/net/ethernet/ti/cpsw*
13811 F:      drivers/net/ethernet/ti/davinci*
13812
13813 TI FLASH MEDIA INTERFACE DRIVER
13814 M:      Alex Dubov <oakad@yahoo.com>
13815 S:      Maintained
13816 F:      drivers/misc/tifm*
13817 F:      drivers/mmc/host/tifm_sd.c
13818 F:      include/linux/tifm.h
13819
13820 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13821 M:      Santosh Shilimkar <ssantosh@kernel.org>
13822 L:      linux-kernel@vger.kernel.org
13823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13824 S:      Maintained
13825 F:      drivers/soc/ti/*
13826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13827
13828 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13829 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
13830 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13831 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13832 S:      Maintained
13833 F:      sound/soc/codecs/lm49453*
13834 F:      sound/soc/codecs/isabelle*
13835
13836 TI LP855x BACKLIGHT DRIVER
13837 M:      Milo Kim <milo.kim@ti.com>
13838 S:      Maintained
13839 F:      Documentation/backlight/lp855x-driver.txt
13840 F:      drivers/video/backlight/lp855x_bl.c
13841 F:      include/linux/platform_data/lp855x.h
13842
13843 TI LP8727 CHARGER DRIVER
13844 M:      Milo Kim <milo.kim@ti.com>
13845 S:      Maintained
13846 F:      drivers/power/supply/lp8727_charger.c
13847 F:      include/linux/platform_data/lp8727.h
13848
13849 TI LP8788 MFD DRIVER
13850 M:      Milo Kim <milo.kim@ti.com>
13851 S:      Maintained
13852 F:      drivers/iio/adc/lp8788_adc.c
13853 F:      drivers/leds/leds-lp8788.c
13854 F:      drivers/mfd/lp8788*.c
13855 F:      drivers/power/supply/lp8788-charger.c
13856 F:      drivers/regulator/lp8788-*.c
13857 F:      include/linux/mfd/lp8788*.h
13858
13859 TI NETCP ETHERNET DRIVER
13860 M:      Wingman Kwok <w-kwok2@ti.com>
13861 M:      Murali Karicheri <m-karicheri2@ti.com>
13862 L:      netdev@vger.kernel.org
13863 S:      Maintained
13864 F:      drivers/net/ethernet/ti/netcp*
13865
13866 TI TAS571X FAMILY ASoC CODEC DRIVER
13867 M:      Kevin Cernekee <cernekee@chromium.org>
13868 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13869 S:      Odd Fixes
13870 F:      sound/soc/codecs/tas571x*
13871
13872 TI TRF7970A NFC DRIVER
13873 M:      Mark Greer <mgreer@animalcreek.com>
13874 L:      linux-wireless@vger.kernel.org
13875 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13876 S:      Supported
13877 F:      drivers/nfc/trf7970a.c
13878 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13879
13880 TI TWL4030 SERIES SOC CODEC DRIVER
13881 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
13882 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13883 S:      Maintained
13884 F:      sound/soc/codecs/twl4030*
13885
13886 TI VPE/CAL DRIVERS
13887 M:      Benoit Parrot <bparrot@ti.com>
13888 L:      linux-media@vger.kernel.org
13889 W:      http://linuxtv.org/
13890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13891 S:      Maintained
13892 F:      drivers/media/platform/ti-vpe/
13893
13894 TI WILINK WIRELESS DRIVERS
13895 L:      linux-wireless@vger.kernel.org
13896 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
13897 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
13898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13899 S:      Orphan
13900 F:      drivers/net/wireless/ti/
13901 F:      include/linux/wl12xx.h
13902
13903 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13904 M:      John Stultz <john.stultz@linaro.org>
13905 M:      Thomas Gleixner <tglx@linutronix.de>
13906 R:      Stephen Boyd <sboyd@kernel.org>
13907 L:      linux-kernel@vger.kernel.org
13908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13909 S:      Supported
13910 F:      include/linux/clocksource.h
13911 F:      include/linux/time.h
13912 F:      include/linux/timex.h
13913 F:      include/uapi/linux/time.h
13914 F:      include/uapi/linux/timex.h
13915 F:      kernel/time/clocksource.c
13916 F:      kernel/time/time*.c
13917 F:      kernel/time/alarmtimer.c
13918 F:      kernel/time/ntp.c
13919 F:      tools/testing/selftests/timers/
13920
13921 TIPC NETWORK LAYER
13922 M:      Jon Maloy <jon.maloy@ericsson.com>
13923 M:      Ying Xue <ying.xue@windriver.com>
13924 L:      netdev@vger.kernel.org (core kernel code)
13925 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13926 W:      http://tipc.sourceforge.net/
13927 S:      Maintained
13928 F:      include/uapi/linux/tipc*.h
13929 F:      net/tipc/
13930
13931 TLAN NETWORK DRIVER
13932 M:      Samuel Chessman <chessman@tux.org>
13933 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
13934 W:      http://sourceforge.net/projects/tlan/
13935 S:      Maintained
13936 F:      Documentation/networking/tlan.txt
13937 F:      drivers/net/ethernet/ti/tlan.*
13938
13939 TM6000 VIDEO4LINUX DRIVER
13940 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13941 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13942 L:      linux-media@vger.kernel.org
13943 W:      https://linuxtv.org
13944 T:      git git://linuxtv.org/media_tree.git
13945 S:      Odd fixes
13946 F:      drivers/media/usb/tm6000/
13947 F:      Documentation/media/v4l-drivers/tm6000*
13948
13949 TMIO/SDHI MMC DRIVER
13950 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13951 L:      linux-mmc@vger.kernel.org
13952 S:      Supported
13953 F:      drivers/mmc/host/tmio_mmc*
13954 F:      drivers/mmc/host/renesas_sdhi*
13955 F:      include/linux/mfd/tmio.h
13956
13957 TMP401 HARDWARE MONITOR DRIVER
13958 M:      Guenter Roeck <linux@roeck-us.net>
13959 L:      linux-hwmon@vger.kernel.org
13960 S:      Maintained
13961 F:      Documentation/hwmon/tmp401
13962 F:      drivers/hwmon/tmp401.c
13963
13964 TMPFS (SHMEM FILESYSTEM)
13965 M:      Hugh Dickins <hughd@google.com>
13966 L:      linux-mm@kvack.org
13967 S:      Maintained
13968 F:      include/linux/shmem_fs.h
13969 F:      mm/shmem.c
13970
13971 TOMOYO SECURITY MODULE
13972 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
13973 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13974 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13975 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13976 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13977 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13978 W:      http://tomoyo.sourceforge.jp/
13979 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13980 S:      Maintained
13981 F:      security/tomoyo/
13982
13983 TOPSTAR LAPTOP EXTRAS DRIVER
13984 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13985 L:      platform-driver-x86@vger.kernel.org
13986 S:      Maintained
13987 F:      drivers/platform/x86/topstar-laptop.c
13988
13989 TORTURE-TEST MODULES
13990 M:      Davidlohr Bueso <dave@stgolabs.net>
13991 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
13992 M:      Josh Triplett <josh@joshtriplett.org>
13993 L:      linux-kernel@vger.kernel.org
13994 S:      Supported
13995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
13996 F:      Documentation/RCU/torture.txt
13997 F:      kernel/torture.c
13998 F:      kernel/rcu/rcutorture.c
13999 F:      kernel/locking/locktorture.c
14000
14001 TOSHIBA ACPI EXTRAS DRIVER
14002 M:      Azael Avalos <coproscefalo@gmail.com>
14003 L:      platform-driver-x86@vger.kernel.org
14004 S:      Maintained
14005 F:      drivers/platform/x86/toshiba_acpi.c
14006
14007 TOSHIBA BLUETOOTH DRIVER
14008 M:      Azael Avalos <coproscefalo@gmail.com>
14009 L:      platform-driver-x86@vger.kernel.org
14010 S:      Maintained
14011 F:      drivers/platform/x86/toshiba_bluetooth.c
14012
14013 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
14014 M:      Azael Avalos <coproscefalo@gmail.com>
14015 L:      platform-driver-x86@vger.kernel.org
14016 S:      Maintained
14017 F:      drivers/platform/x86/toshiba_haps.c
14018
14019 TOSHIBA SMM DRIVER
14020 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
14021 W:      http://www.buzzard.org.uk/toshiba/
14022 S:      Maintained
14023 F:      drivers/char/toshiba.c
14024 F:      include/linux/toshiba.h
14025 F:      include/uapi/linux/toshiba.h
14026
14027 TOSHIBA TC358743 DRIVER
14028 M:      Mats Randgaard <matrandg@cisco.com>
14029 L:      linux-media@vger.kernel.org
14030 S:      Maintained
14031 F:      drivers/media/i2c/tc358743*
14032 F:      include/media/i2c/tc358743.h
14033
14034 TOSHIBA WMI HOTKEYS DRIVER
14035 M:      Azael Avalos <coproscefalo@gmail.com>
14036 L:      platform-driver-x86@vger.kernel.org
14037 S:      Maintained
14038 F:      drivers/platform/x86/toshiba-wmi.c
14039
14040 TPM DEVICE DRIVER
14041 M:      Peter Huewe <peterhuewe@gmx.de>
14042 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
14043 R:      Jason Gunthorpe <jgg@ziepe.ca>
14044 L:      linux-integrity@vger.kernel.org
14045 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
14046 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
14047 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
14048 S:      Maintained
14049 F:      drivers/char/tpm/
14050
14051 TRACING
14052 M:      Steven Rostedt <rostedt@goodmis.org>
14053 M:      Ingo Molnar <mingo@redhat.com>
14054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14055 S:      Maintained
14056 F:      Documentation/trace/ftrace.txt
14057 F:      arch/*/*/*/ftrace.h
14058 F:      arch/*/kernel/ftrace.c
14059 F:      include/*/ftrace.h
14060 F:      include/linux/trace*.h
14061 F:      include/trace/
14062 F:      kernel/trace/
14063 F:      tools/testing/selftests/ftrace/
14064
14065 TRACING MMIO ACCESSES (MMIOTRACE)
14066 M:      Steven Rostedt <rostedt@goodmis.org>
14067 M:      Ingo Molnar <mingo@kernel.org>
14068 R:      Karol Herbst <karolherbst@gmail.com>
14069 R:      Pekka Paalanen <ppaalanen@gmail.com>
14070 S:      Maintained
14071 L:      linux-kernel@vger.kernel.org
14072 L:      nouveau@lists.freedesktop.org
14073 F:      kernel/trace/trace_mmiotrace.c
14074 F:      include/linux/mmiotrace.h
14075 F:      arch/x86/mm/kmmio.c
14076 F:      arch/x86/mm/mmio-mod.c
14077 F:      arch/x86/mm/testmmiotrace.c
14078
14079 TRIVIAL PATCHES
14080 M:      Jiri Kosina <trivial@kernel.org>
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
14082 S:      Maintained
14083 K:      ^Subject:.*(?i)trivial
14084
14085 TEMPO SEMICONDUCTOR DRIVERS
14086 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
14087 S:      Maintained
14088 F:      sound/soc/codecs/tscs*.c
14089 F:      sound/soc/codecs/tscs*.h
14090 F:      Documentation/devicetree/bindings/sound/tscs*.txt
14091
14092 TTY LAYER
14093 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14094 M:      Jiri Slaby <jslaby@suse.com>
14095 S:      Supported
14096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
14097 F:      Documentation/serial/
14098 F:      drivers/tty/
14099 F:      drivers/tty/serial/serial_core.c
14100 F:      include/linux/serial_core.h
14101 F:      include/linux/serial.h
14102 F:      include/linux/tty.h
14103 F:      include/uapi/linux/serial_core.h
14104 F:      include/uapi/linux/serial.h
14105 F:      include/uapi/linux/tty.h
14106
14107 TUA9001 MEDIA DRIVER
14108 M:      Antti Palosaari <crope@iki.fi>
14109 L:      linux-media@vger.kernel.org
14110 W:      https://linuxtv.org
14111 W:      http://palosaari.fi/linux/
14112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14113 T:      git git://linuxtv.org/anttip/media_tree.git
14114 S:      Maintained
14115 F:      drivers/media/tuners/tua9001*
14116
14117 TULIP NETWORK DRIVERS
14118 L:      netdev@vger.kernel.org
14119 L:      linux-parisc@vger.kernel.org
14120 S:      Orphan
14121 F:      drivers/net/ethernet/dec/tulip/
14122
14123 TUN/TAP driver
14124 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
14125 W:      http://vtun.sourceforge.net/tun
14126 S:      Maintained
14127 F:      Documentation/networking/tuntap.txt
14128 F:      arch/um/os-Linux/drivers/
14129
14130 TURBOCHANNEL SUBSYSTEM
14131 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
14132 M:      Ralf Baechle <ralf@linux-mips.org>
14133 L:      linux-mips@linux-mips.org
14134 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
14135 S:      Maintained
14136 F:      drivers/tc/
14137 F:      include/linux/tc.h
14138
14139 TW5864 VIDEO4LINUX DRIVER
14140 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14141 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14142 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14143 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14144 L:      linux-media@vger.kernel.org
14145 S:      Supported
14146 F:      drivers/media/pci/tw5864/
14147
14148 TW68 VIDEO4LINUX DRIVER
14149 M:      Hans Verkuil <hverkuil@xs4all.nl>
14150 L:      linux-media@vger.kernel.org
14151 T:      git git://linuxtv.org/media_tree.git
14152 W:      https://linuxtv.org
14153 S:      Odd Fixes
14154 F:      drivers/media/pci/tw68/
14155
14156 TW686X VIDEO4LINUX DRIVER
14157 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14158 L:      linux-media@vger.kernel.org
14159 T:      git git://linuxtv.org/media_tree.git
14160 W:      http://linuxtv.org
14161 S:      Maintained
14162 F:      drivers/media/pci/tw686x/
14163
14164 UBI FILE SYSTEM (UBIFS)
14165 M:      Richard Weinberger <richard@nod.at>
14166 M:      Artem Bityutskiy <dedekind1@gmail.com>
14167 M:      Adrian Hunter <adrian.hunter@intel.com>
14168 L:      linux-mtd@lists.infradead.org
14169 T:      git git://git.infradead.org/ubifs-2.6.git
14170 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
14171 S:      Supported
14172 F:      Documentation/filesystems/ubifs.txt
14173 F:      fs/ubifs/
14174
14175 UCLINUX (M68KNOMMU AND COLDFIRE)
14176 M:      Greg Ungerer <gerg@linux-m68k.org>
14177 W:      http://www.linux-m68k.org/
14178 W:      http://www.uclinux.org/
14179 L:      linux-m68k@lists.linux-m68k.org
14180 L:      uclinux-dev@uclinux.org  (subscribers-only)
14181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
14182 S:      Maintained
14183 F:      arch/m68k/coldfire/
14184 F:      arch/m68k/68*/
14185 F:      arch/m68k/*/*_no.*
14186 F:      arch/m68k/include/asm/*_no.*
14187
14188 UDF FILESYSTEM
14189 M:      Jan Kara <jack@suse.com>
14190 S:      Maintained
14191 F:      Documentation/filesystems/udf.txt
14192 F:      fs/udf/
14193
14194 UDRAW TABLET
14195 M:      Bastien Nocera <hadess@hadess.net>
14196 L:      linux-input@vger.kernel.org
14197 S:      Maintained
14198 F:      drivers/hid/hid-udraw-ps3.c
14199
14200 UFS FILESYSTEM
14201 M:      Evgeniy Dushistov <dushistov@mail.ru>
14202 S:      Maintained
14203 F:      Documentation/filesystems/ufs.txt
14204 F:      fs/ufs/
14205
14206 UHID USERSPACE HID IO DRIVER:
14207 M:      David Herrmann <dh.herrmann@googlemail.com>
14208 L:      linux-input@vger.kernel.org
14209 S:      Maintained
14210 F:      drivers/hid/uhid.c
14211 F:      include/uapi/linux/uhid.h
14212
14213 ULPI BUS
14214 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14215 L:      linux-usb@vger.kernel.org
14216 S:      Maintained
14217 F:      drivers/usb/common/ulpi.c
14218 F:      include/linux/ulpi/
14219
14220 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14221 L:      linux-usb@vger.kernel.org
14222 S:      Orphan
14223 F:      drivers/uwb/
14224 F:      include/linux/uwb.h
14225 F:      include/linux/uwb/
14226
14227 UNICORE32 ARCHITECTURE:
14228 M:      Guan Xuetao <gxt@pku.edu.cn>
14229 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
14230 S:      Maintained
14231 T:      git git://github.com/gxt/linux.git
14232 F:      arch/unicore32/
14233
14234 UNIFDEF
14235 M:      Tony Finch <dot@dotat.at>
14236 W:      http://dotat.at/prog/unifdef
14237 S:      Maintained
14238 F:      scripts/unifdef.c
14239
14240 UNIFORM CDROM DRIVER
14241 M:      Jens Axboe <axboe@kernel.dk>
14242 W:      http://www.kernel.dk
14243 S:      Maintained
14244 F:      Documentation/cdrom/
14245 F:      drivers/cdrom/cdrom.c
14246 F:      include/linux/cdrom.h
14247 F:      include/uapi/linux/cdrom.h
14248
14249 UNISYS S-PAR DRIVERS
14250 M:      David Kershner <david.kershner@unisys.com>
14251 L:      sparmaintainer@unisys.com (Unisys internal)
14252 S:      Supported
14253 F:      include/linux/visorbus.h
14254 F:      drivers/visorbus/
14255 F:      drivers/staging/unisys/
14256
14257 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
14258 M:      Vinayak Holikatti <vinholikatti@gmail.com>
14259 L:      linux-scsi@vger.kernel.org
14260 S:      Supported
14261 F:      Documentation/scsi/ufs.txt
14262 F:      drivers/scsi/ufs/
14263
14264 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
14265 M:      Joao Pinto <jpinto@synopsys.com>
14266 L:      linux-scsi@vger.kernel.org
14267 S:      Supported
14268 F:      drivers/scsi/ufs/*dwc*
14269
14270 UNSORTED BLOCK IMAGES (UBI)
14271 M:      Artem Bityutskiy <dedekind1@gmail.com>
14272 M:      Richard Weinberger <richard@nod.at>
14273 W:      http://www.linux-mtd.infradead.org/
14274 L:      linux-mtd@lists.infradead.org
14275 T:      git git://git.infradead.org/ubifs-2.6.git
14276 S:      Supported
14277 F:      drivers/mtd/ubi/
14278 F:      include/linux/mtd/ubi.h
14279 F:      include/uapi/mtd/ubi-user.h
14280
14281 USB "USBNET" DRIVER FRAMEWORK
14282 M:      Oliver Neukum <oneukum@suse.com>
14283 L:      netdev@vger.kernel.org
14284 W:      http://www.linux-usb.org/usbnet
14285 S:      Maintained
14286 F:      drivers/net/usb/usbnet.c
14287 F:      include/linux/usb/usbnet.h
14288
14289 USB ACM DRIVER
14290 M:      Oliver Neukum <oneukum@suse.com>
14291 L:      linux-usb@vger.kernel.org
14292 S:      Maintained
14293 F:      Documentation/usb/acm.txt
14294 F:      drivers/usb/class/cdc-acm.*
14295
14296 USB AR5523 WIRELESS DRIVER
14297 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
14298 L:      linux-wireless@vger.kernel.org
14299 S:      Maintained
14300 F:      drivers/net/wireless/ath/ar5523/
14301
14302 USB ATTACHED SCSI
14303 M:      Oliver Neukum <oneukum@suse.com>
14304 L:      linux-usb@vger.kernel.org
14305 L:      linux-scsi@vger.kernel.org
14306 S:      Maintained
14307 F:      drivers/usb/storage/uas.c
14308
14309 USB CDC ETHERNET DRIVER
14310 M:      Oliver Neukum <oliver@neukum.org>
14311 L:      linux-usb@vger.kernel.org
14312 S:      Maintained
14313 F:      drivers/net/usb/cdc_*.c
14314 F:      include/uapi/linux/usb/cdc.h
14315
14316 USB CHAOSKEY DRIVER
14317 M:      Keith Packard <keithp@keithp.com>
14318 L:      linux-usb@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/usb/misc/chaoskey.c
14321
14322 USB CYPRESS C67X00 DRIVER
14323 M:      Peter Korsgaard <jacmet@sunsite.dk>
14324 L:      linux-usb@vger.kernel.org
14325 S:      Maintained
14326 F:      drivers/usb/c67x00/
14327
14328 USB DAVICOM DM9601 DRIVER
14329 M:      Peter Korsgaard <jacmet@sunsite.dk>
14330 L:      netdev@vger.kernel.org
14331 W:      http://www.linux-usb.org/usbnet
14332 S:      Maintained
14333 F:      drivers/net/usb/dm9601.c
14334
14335 USB DIAMOND RIO500 DRIVER
14336 M:      Cesar Miquel <miquel@df.uba.ar>
14337 L:      rio500-users@lists.sourceforge.net
14338 W:      http://rio500.sourceforge.net
14339 S:      Maintained
14340 F:      drivers/usb/misc/rio500*
14341
14342 USB EHCI DRIVER
14343 M:      Alan Stern <stern@rowland.harvard.edu>
14344 L:      linux-usb@vger.kernel.org
14345 S:      Maintained
14346 F:      Documentation/usb/ehci.txt
14347 F:      drivers/usb/host/ehci*
14348
14349 USB GADGET/PERIPHERAL SUBSYSTEM
14350 M:      Felipe Balbi <balbi@kernel.org>
14351 L:      linux-usb@vger.kernel.org
14352 W:      http://www.linux-usb.org/gadget
14353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14354 S:      Maintained
14355 F:      drivers/usb/gadget/
14356 F:      include/linux/usb/gadget*
14357
14358 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
14359 M:      Jiri Kosina <jikos@kernel.org>
14360 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
14361 L:      linux-usb@vger.kernel.org
14362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
14363 S:      Maintained
14364 F:      Documentation/hid/hiddev.txt
14365 F:      drivers/hid/usbhid/
14366
14367 USB ISP116X DRIVER
14368 M:      Olav Kongas <ok@artecdesign.ee>
14369 L:      linux-usb@vger.kernel.org
14370 S:      Maintained
14371 F:      drivers/usb/host/isp116x*
14372 F:      include/linux/usb/isp116x.h
14373
14374 USB LAN78XX ETHERNET DRIVER
14375 M:      Woojung Huh <woojung.huh@microchip.com>
14376 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14377 L:      netdev@vger.kernel.org
14378 S:      Maintained
14379 F:      drivers/net/usb/lan78xx.*
14380
14381 USB MASS STORAGE DRIVER
14382 M:      Alan Stern <stern@rowland.harvard.edu>
14383 L:      linux-usb@vger.kernel.org
14384 L:      usb-storage@lists.one-eyed-alien.net
14385 S:      Maintained
14386 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
14387 F:      drivers/usb/storage/
14388
14389 USB MIDI DRIVER
14390 M:      Clemens Ladisch <clemens@ladisch.de>
14391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14392 T:      git git://git.alsa-project.org/alsa-kernel.git
14393 S:      Maintained
14394 F:      sound/usb/midi.*
14395
14396 USB NETWORKING DRIVERS
14397 L:      linux-usb@vger.kernel.org
14398 S:      Odd Fixes
14399 F:      drivers/net/usb/
14400
14401 USB OHCI DRIVER
14402 M:      Alan Stern <stern@rowland.harvard.edu>
14403 L:      linux-usb@vger.kernel.org
14404 S:      Maintained
14405 F:      Documentation/usb/ohci.txt
14406 F:      drivers/usb/host/ohci*
14407
14408 USB OTG FSM (Finite State Machine)
14409 M:      Peter Chen <Peter.Chen@nxp.com>
14410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14411 L:      linux-usb@vger.kernel.org
14412 S:      Maintained
14413 F:      drivers/usb/common/usb-otg-fsm.c
14414
14415 USB OVER IP DRIVER
14416 M:      Valentina Manea <valentina.manea.m@gmail.com>
14417 M:      Shuah Khan <shuahkh@osg.samsung.com>
14418 M:      Shuah Khan <shuah@kernel.org>
14419 L:      linux-usb@vger.kernel.org
14420 S:      Maintained
14421 F:      Documentation/usb/usbip_protocol.txt
14422 F:      drivers/usb/usbip/
14423 F:      tools/usb/usbip/
14424
14425 USB PEGASUS DRIVER
14426 M:      Petko Manolov <petkan@nucleusys.com>
14427 L:      linux-usb@vger.kernel.org
14428 L:      netdev@vger.kernel.org
14429 T:      git git://github.com/petkan/pegasus.git
14430 W:      https://github.com/petkan/pegasus
14431 S:      Maintained
14432 F:      drivers/net/usb/pegasus.*
14433
14434 USB PHY LAYER
14435 M:      Felipe Balbi <balbi@kernel.org>
14436 L:      linux-usb@vger.kernel.org
14437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14438 S:      Maintained
14439 F:      drivers/usb/phy/
14440
14441 USB PRINTER DRIVER (usblp)
14442 M:      Pete Zaitcev <zaitcev@redhat.com>
14443 L:      linux-usb@vger.kernel.org
14444 S:      Supported
14445 F:      drivers/usb/class/usblp.c
14446
14447 USB QMI WWAN NETWORK DRIVER
14448 M:      Bjørn Mork <bjorn@mork.no>
14449 L:      netdev@vger.kernel.org
14450 S:      Maintained
14451 F:      Documentation/ABI/testing/sysfs-class-net-qmi
14452 F:      drivers/net/usb/qmi_wwan.c
14453
14454 USB RTL8150 DRIVER
14455 M:      Petko Manolov <petkan@nucleusys.com>
14456 L:      linux-usb@vger.kernel.org
14457 L:      netdev@vger.kernel.org
14458 T:      git git://github.com/petkan/rtl8150.git
14459 W:      https://github.com/petkan/rtl8150
14460 S:      Maintained
14461 F:      drivers/net/usb/rtl8150.c
14462
14463 USB SERIAL SUBSYSTEM
14464 M:      Johan Hovold <johan@kernel.org>
14465 L:      linux-usb@vger.kernel.org
14466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14467 S:      Maintained
14468 F:      Documentation/usb/usb-serial.txt
14469 F:      drivers/usb/serial/
14470 F:      include/linux/usb/serial.h
14471
14472 USB SMSC75XX ETHERNET DRIVER
14473 M:      Steve Glendinning <steve.glendinning@shawell.net>
14474 L:      netdev@vger.kernel.org
14475 S:      Maintained
14476 F:      drivers/net/usb/smsc75xx.*
14477
14478 USB SMSC95XX ETHERNET DRIVER
14479 M:      Steve Glendinning <steve.glendinning@shawell.net>
14480 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14481 L:      netdev@vger.kernel.org
14482 S:      Maintained
14483 F:      drivers/net/usb/smsc95xx.*
14484
14485 USB SUBSYSTEM
14486 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14487 L:      linux-usb@vger.kernel.org
14488 W:      http://www.linux-usb.org
14489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14490 S:      Supported
14491 F:      Documentation/devicetree/bindings/usb/
14492 F:      Documentation/usb/
14493 F:      drivers/usb/
14494 F:      include/linux/usb.h
14495 F:      include/linux/usb/
14496
14497 USB TYPEC SUBSYSTEM
14498 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14499 L:      linux-usb@vger.kernel.org
14500 S:      Maintained
14501 F:      Documentation/ABI/testing/sysfs-class-typec
14502 F:      Documentation/usb/typec.rst
14503 F:      drivers/usb/typec/
14504 F:      include/linux/usb/typec.h
14505
14506 USB UHCI DRIVER
14507 M:      Alan Stern <stern@rowland.harvard.edu>
14508 L:      linux-usb@vger.kernel.org
14509 S:      Maintained
14510 F:      drivers/usb/host/uhci*
14511
14512 USB VIDEO CLASS
14513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14514 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14515 L:      linux-media@vger.kernel.org
14516 T:      git git://linuxtv.org/media_tree.git
14517 W:      http://www.ideasonboard.org/uvc/
14518 S:      Maintained
14519 F:      drivers/media/usb/uvc/
14520 F:      include/uapi/linux/uvcvideo.h
14521
14522 USB VISION DRIVER
14523 M:      Hans Verkuil <hverkuil@xs4all.nl>
14524 L:      linux-media@vger.kernel.org
14525 T:      git git://linuxtv.org/media_tree.git
14526 W:      https://linuxtv.org
14527 S:      Odd Fixes
14528 F:      drivers/media/usb/usbvision/
14529
14530 USB WEBCAM GADGET
14531 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14532 L:      linux-usb@vger.kernel.org
14533 S:      Maintained
14534 F:      drivers/usb/gadget/function/*uvc*
14535 F:      drivers/usb/gadget/legacy/webcam.c
14536
14537 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14538 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
14539 L:      linux-wireless@vger.kernel.org
14540 S:      Maintained
14541 F:      drivers/net/wireless/rndis_wlan.c
14542
14543 USB XHCI DRIVER
14544 M:      Mathias Nyman <mathias.nyman@intel.com>
14545 L:      linux-usb@vger.kernel.org
14546 S:      Supported
14547 F:      drivers/usb/host/xhci*
14548 F:      drivers/usb/host/pci-quirks*
14549
14550 USB ZD1201 DRIVER
14551 L:      linux-wireless@vger.kernel.org
14552 W:      http://linux-lc100020.sourceforge.net
14553 S:      Orphan
14554 F:      drivers/net/wireless/zydas/zd1201.*
14555
14556 USB ZR364XX DRIVER
14557 M:      Antoine Jacquet <royale@zerezo.com>
14558 L:      linux-usb@vger.kernel.org
14559 L:      linux-media@vger.kernel.org
14560 T:      git git://linuxtv.org/media_tree.git
14561 W:      http://royale.zerezo.com/zr364xx/
14562 S:      Maintained
14563 F:      Documentation/media/v4l-drivers/zr364xx*
14564 F:      drivers/media/usb/zr364xx/
14565
14566 USER-MODE LINUX (UML)
14567 M:      Jeff Dike <jdike@addtoit.com>
14568 M:      Richard Weinberger <richard@nod.at>
14569 L:      user-mode-linux-devel@lists.sourceforge.net
14570 L:      user-mode-linux-user@lists.sourceforge.net
14571 W:      http://user-mode-linux.sourceforge.net
14572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14573 S:      Maintained
14574 F:      Documentation/virtual/uml/
14575 F:      arch/um/
14576 F:      arch/x86/um/
14577 F:      fs/hostfs/
14578 F:      fs/hppfs/
14579
14580 USERSPACE I/O (UIO)
14581 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14582 S:      Maintained
14583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14584 F:      Documentation/driver-api/uio-howto.rst
14585 F:      drivers/uio/
14586 F:      include/linux/uio*.h
14587
14588 UTIL-LINUX PACKAGE
14589 M:      Karel Zak <kzak@redhat.com>
14590 L:      util-linux@vger.kernel.org
14591 W:      http://en.wikipedia.org/wiki/Util-linux
14592 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14593 S:      Maintained
14594
14595 UUID HELPERS
14596 M:      Christoph Hellwig <hch@lst.de>
14597 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14598 L:      linux-kernel@vger.kernel.org
14599 T:      git git://git.infradead.org/users/hch/uuid.git
14600 F:      lib/uuid.c
14601 F:      lib/test_uuid.c
14602 F:      include/linux/uuid.h
14603 F:      include/uapi/linux/uuid.h
14604 S:      Maintained
14605
14606 UVESAFB DRIVER
14607 M:      Michal Januszewski <spock@gentoo.org>
14608 L:      linux-fbdev@vger.kernel.org
14609 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
14610 S:      Maintained
14611 F:      Documentation/fb/uvesafb.txt
14612 F:      drivers/video/fbdev/uvesafb.*
14613
14614 VF610 NAND DRIVER
14615 M:      Stefan Agner <stefan@agner.ch>
14616 L:      linux-mtd@lists.infradead.org
14617 S:      Supported
14618 F:      drivers/mtd/nand/vf610_nfc.c
14619
14620 VFAT/FAT/MSDOS FILESYSTEM
14621 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14622 S:      Maintained
14623 F:      Documentation/filesystems/vfat.txt
14624 F:      fs/fat/
14625
14626 VFIO DRIVER
14627 M:      Alex Williamson <alex.williamson@redhat.com>
14628 L:      kvm@vger.kernel.org
14629 T:      git git://github.com/awilliam/linux-vfio.git
14630 S:      Maintained
14631 F:      Documentation/vfio.txt
14632 F:      drivers/vfio/
14633 F:      include/linux/vfio.h
14634 F:      include/uapi/linux/vfio.h
14635
14636 VFIO MEDIATED DEVICE DRIVERS
14637 M:      Kirti Wankhede <kwankhede@nvidia.com>
14638 L:      kvm@vger.kernel.org
14639 S:      Maintained
14640 F:      Documentation/vfio-mediated-device.txt
14641 F:      drivers/vfio/mdev/
14642 F:      include/linux/mdev.h
14643 F:      samples/vfio-mdev/
14644
14645 VFIO PLATFORM DRIVER
14646 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
14647 L:      kvm@vger.kernel.org
14648 S:      Maintained
14649 F:      drivers/vfio/platform/
14650
14651 VGA_SWITCHEROO
14652 R:      Lukas Wunner <lukas@wunner.de>
14653 S:      Maintained
14654 F:      Documentation/gpu/vga-switcheroo.rst
14655 F:      drivers/gpu/vga/vga_switcheroo.c
14656 F:      include/linux/vga_switcheroo.h
14657 T:      git git://anongit.freedesktop.org/drm/drm-misc
14658
14659 VIA RHINE NETWORK DRIVER
14660 S:      Orphan
14661 F:      drivers/net/ethernet/via/via-rhine.c
14662
14663 VIA SD/MMC CARD CONTROLLER DRIVER
14664 M:      Bruce Chang <brucechang@via.com.tw>
14665 M:      Harald Welte <HaraldWelte@viatech.com>
14666 S:      Maintained
14667 F:      drivers/mmc/host/via-sdmmc.c
14668
14669 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14670 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14671 L:      linux-fbdev@vger.kernel.org
14672 S:      Maintained
14673 F:      include/linux/via-core.h
14674 F:      include/linux/via-gpio.h
14675 F:      include/linux/via_i2c.h
14676 F:      drivers/video/fbdev/via/
14677
14678 VIA VELOCITY NETWORK DRIVER
14679 M:      Francois Romieu <romieu@fr.zoreil.com>
14680 L:      netdev@vger.kernel.org
14681 S:      Maintained
14682 F:      drivers/net/ethernet/via/via-velocity.*
14683
14684 VIDEO MULTIPLEXER DRIVER
14685 M:      Philipp Zabel <p.zabel@pengutronix.de>
14686 L:      linux-media@vger.kernel.org
14687 S:      Maintained
14688 F:      drivers/media/platform/video-mux.c
14689
14690 VIDEOBUF2 FRAMEWORK
14691 M:      Pawel Osciak <pawel@osciak.com>
14692 M:      Marek Szyprowski <m.szyprowski@samsung.com>
14693 M:      Kyungmin Park <kyungmin.park@samsung.com>
14694 L:      linux-media@vger.kernel.org
14695 S:      Maintained
14696 F:      drivers/media/v4l2-core/videobuf2-*
14697 F:      include/media/videobuf2-*
14698
14699 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14700 M:      Helen Koike <helen.koike@collabora.com>
14701 L:      linux-media@vger.kernel.org
14702 T:      git git://linuxtv.org/media_tree.git
14703 W:      https://linuxtv.org
14704 S:      Maintained
14705 F:      drivers/media/platform/vimc/*
14706
14707 VIRT LIB
14708 M:      Alex Williamson <alex.williamson@redhat.com>
14709 M:      Paolo Bonzini <pbonzini@redhat.com>
14710 L:      kvm@vger.kernel.org
14711 S:      Supported
14712 F:      virt/lib/
14713
14714 VIRTIO AND VHOST VSOCK DRIVER
14715 M:      Stefan Hajnoczi <stefanha@redhat.com>
14716 L:      kvm@vger.kernel.org
14717 L:      virtualization@lists.linux-foundation.org
14718 L:      netdev@vger.kernel.org
14719 S:      Maintained
14720 F:      include/linux/virtio_vsock.h
14721 F:      include/uapi/linux/virtio_vsock.h
14722 F:      include/uapi/linux/vsockmon.h
14723 F:      include/uapi/linux/vm_sockets_diag.h
14724 F:      net/vmw_vsock/diag.c
14725 F:      net/vmw_vsock/af_vsock_tap.c
14726 F:      net/vmw_vsock/virtio_transport_common.c
14727 F:      net/vmw_vsock/virtio_transport.c
14728 F:      drivers/net/vsockmon.c
14729 F:      drivers/vhost/vsock.c
14730 F:      drivers/vhost/vsock.h
14731 F:      tools/testing/vsock/
14732
14733 VIRTIO CONSOLE DRIVER
14734 M:      Amit Shah <amit@kernel.org>
14735 L:      virtualization@lists.linux-foundation.org
14736 S:      Maintained
14737 F:      drivers/char/virtio_console.c
14738 F:      include/linux/virtio_console.h
14739 F:      include/uapi/linux/virtio_console.h
14740
14741 VIRTIO CORE, NET AND BLOCK DRIVERS
14742 M:      "Michael S. Tsirkin" <mst@redhat.com>
14743 M:      Jason Wang <jasowang@redhat.com>
14744 L:      virtualization@lists.linux-foundation.org
14745 S:      Maintained
14746 F:      Documentation/devicetree/bindings/virtio/
14747 F:      drivers/virtio/
14748 F:      tools/virtio/
14749 F:      drivers/net/virtio_net.c
14750 F:      drivers/block/virtio_blk.c
14751 F:      include/linux/virtio*.h
14752 F:      include/uapi/linux/virtio_*.h
14753 F:      drivers/crypto/virtio/
14754 F:      mm/balloon_compaction.c
14755
14756 VIRTIO CRYPTO DRIVER
14757 M:      Gonglei <arei.gonglei@huawei.com>
14758 L:      virtualization@lists.linux-foundation.org
14759 L:      linux-crypto@vger.kernel.org
14760 S:      Maintained
14761 F:      drivers/crypto/virtio/
14762 F:      include/uapi/linux/virtio_crypto.h
14763
14764 VIRTIO DRIVERS FOR S390
14765 M:      Cornelia Huck <cohuck@redhat.com>
14766 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
14767 L:      linux-s390@vger.kernel.org
14768 L:      virtualization@lists.linux-foundation.org
14769 L:      kvm@vger.kernel.org
14770 S:      Supported
14771 F:      drivers/s390/virtio/
14772 F:      arch/s390/include/uapi/asm/virtio-ccw.h
14773
14774 VIRTIO GPU DRIVER
14775 M:      David Airlie <airlied@linux.ie>
14776 M:      Gerd Hoffmann <kraxel@redhat.com>
14777 L:      dri-devel@lists.freedesktop.org
14778 L:      virtualization@lists.linux-foundation.org
14779 T:      git git://anongit.freedesktop.org/drm/drm-misc
14780 S:      Maintained
14781 F:      drivers/gpu/drm/virtio/
14782 F:      include/uapi/linux/virtio_gpu.h
14783
14784 VIRTIO HOST (VHOST)
14785 M:      "Michael S. Tsirkin" <mst@redhat.com>
14786 M:      Jason Wang <jasowang@redhat.com>
14787 L:      kvm@vger.kernel.org
14788 L:      virtualization@lists.linux-foundation.org
14789 L:      netdev@vger.kernel.org
14790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14791 S:      Maintained
14792 F:      drivers/vhost/
14793 F:      include/uapi/linux/vhost.h
14794
14795 VIRTIO INPUT DRIVER
14796 M:      Gerd Hoffmann <kraxel@redhat.com>
14797 S:      Maintained
14798 F:      drivers/virtio/virtio_input.c
14799 F:      include/uapi/linux/virtio_input.h
14800
14801 VIRTUAL BOX GUEST DEVICE DRIVER
14802 M:      Hans de Goede <hdegoede@redhat.com>
14803 M:      Arnd Bergmann <arnd@arndb.de>
14804 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14805 S:      Maintained
14806 F:      include/linux/vbox_utils.h
14807 F:      include/uapi/linux/vbox*.h
14808 F:      drivers/virt/vboxguest/
14809
14810 VIRTUAL SERIO DEVICE DRIVER
14811 M:      Stephen Chandler Paul <thatslyude@gmail.com>
14812 S:      Maintained
14813 F:      drivers/input/serio/userio.c
14814 F:      include/uapi/linux/userio.h
14815
14816 VIVID VIRTUAL VIDEO DRIVER
14817 M:      Hans Verkuil <hverkuil@xs4all.nl>
14818 L:      linux-media@vger.kernel.org
14819 T:      git git://linuxtv.org/media_tree.git
14820 W:      https://linuxtv.org
14821 S:      Maintained
14822 F:      drivers/media/platform/vivid/*
14823
14824 VLYNQ BUS
14825 M:      Florian Fainelli <f.fainelli@gmail.com>
14826 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
14827 S:      Maintained
14828 F:      drivers/vlynq/vlynq.c
14829 F:      include/linux/vlynq.h
14830
14831 VME SUBSYSTEM
14832 M:      Martyn Welch <martyn@welchs.me.uk>
14833 M:      Manohar Vanga <manohar.vanga@gmail.com>
14834 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14835 L:      devel@driverdev.osuosl.org
14836 S:      Maintained
14837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14838 F:      Documentation/driver-api/vme.rst
14839 F:      drivers/staging/vme/
14840 F:      drivers/vme/
14841 F:      include/linux/vme*
14842
14843 VMWARE BALLOON DRIVER
14844 M:      Xavier Deguillard <xdeguillard@vmware.com>
14845 M:      Philip Moltmann <moltmann@vmware.com>
14846 M:      "VMware, Inc." <pv-drivers@vmware.com>
14847 L:      linux-kernel@vger.kernel.org
14848 S:      Maintained
14849 F:      drivers/misc/vmw_balloon.c
14850
14851 VMWARE HYPERVISOR INTERFACE
14852 M:      Alok Kataria <akataria@vmware.com>
14853 L:      virtualization@lists.linux-foundation.org
14854 S:      Supported
14855 F:      arch/x86/kernel/cpu/vmware.c
14856
14857 VMWARE PVRDMA DRIVER
14858 M:      Adit Ranadive <aditr@vmware.com>
14859 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14860 L:      linux-rdma@vger.kernel.org
14861 S:      Maintained
14862 F:      drivers/infiniband/hw/vmw_pvrdma/
14863
14864 VMware PVSCSI driver
14865 M:      Jim Gill <jgill@vmware.com>
14866 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14867 L:      linux-scsi@vger.kernel.org
14868 S:      Maintained
14869 F:      drivers/scsi/vmw_pvscsi.c
14870 F:      drivers/scsi/vmw_pvscsi.h
14871
14872 VMWARE VMMOUSE SUBDRIVER
14873 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14874 M:      "VMware, Inc." <pv-drivers@vmware.com>
14875 L:      linux-input@vger.kernel.org
14876 S:      Maintained
14877 F:      drivers/input/mouse/vmmouse.c
14878 F:      drivers/input/mouse/vmmouse.h
14879
14880 VMWARE VMXNET3 ETHERNET DRIVER
14881 M:      Shrikrishna Khare <skhare@vmware.com>
14882 M:      "VMware, Inc." <pv-drivers@vmware.com>
14883 L:      netdev@vger.kernel.org
14884 S:      Maintained
14885 F:      drivers/net/vmxnet3/
14886
14887 VOCORE VOCORE2 BOARD
14888 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14889 L:      linux-mips@linux-mips.org
14890 S:      Maintained
14891 F:      arch/mips/boot/dts/ralink/vocore2.dts
14892
14893 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14894 M:      Liam Girdwood <lgirdwood@gmail.com>
14895 M:      Mark Brown <broonie@kernel.org>
14896 L:      linux-kernel@vger.kernel.org
14897 W:      http://www.slimlogic.co.uk/?p=48
14898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14899 S:      Supported
14900 F:      Documentation/devicetree/bindings/regulator/
14901 F:      Documentation/power/regulator/
14902 F:      drivers/regulator/
14903 F:      include/dt-bindings/regulator/
14904 F:      include/linux/regulator/
14905
14906 VRF
14907 M:      David Ahern <dsa@cumulusnetworks.com>
14908 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
14909 L:      netdev@vger.kernel.org
14910 S:      Maintained
14911 F:      drivers/net/vrf.c
14912 F:      Documentation/networking/vrf.txt
14913
14914 VT1211 HARDWARE MONITOR DRIVER
14915 M:      Juerg Haefliger <juergh@gmail.com>
14916 L:      linux-hwmon@vger.kernel.org
14917 S:      Maintained
14918 F:      Documentation/hwmon/vt1211
14919 F:      drivers/hwmon/vt1211.c
14920
14921 VT8231 HARDWARE MONITOR DRIVER
14922 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
14923 L:      linux-hwmon@vger.kernel.org
14924 S:      Maintained
14925 F:      drivers/hwmon/vt8231.c
14926
14927 VUB300 USB to SDIO/SD/MMC bridge chip
14928 M:      Tony Olech <tony.olech@elandigitalsystems.com>
14929 L:      linux-mmc@vger.kernel.org
14930 L:      linux-usb@vger.kernel.org
14931 S:      Supported
14932 F:      drivers/mmc/host/vub300.c
14933
14934 W1 DALLAS'S 1-WIRE BUS
14935 M:      Evgeniy Polyakov <zbr@ioremap.net>
14936 S:      Maintained
14937 F:      Documentation/w1/
14938 F:      drivers/w1/
14939 F:      include/linux/w1.h
14940
14941 W83791D HARDWARE MONITORING DRIVER
14942 M:      Marc Hulsman <m.hulsman@tudelft.nl>
14943 L:      linux-hwmon@vger.kernel.org
14944 S:      Maintained
14945 F:      Documentation/hwmon/w83791d
14946 F:      drivers/hwmon/w83791d.c
14947
14948 W83793 HARDWARE MONITORING DRIVER
14949 M:      Rudolf Marek <r.marek@assembler.cz>
14950 L:      linux-hwmon@vger.kernel.org
14951 S:      Maintained
14952 F:      Documentation/hwmon/w83793
14953 F:      drivers/hwmon/w83793.c
14954
14955 W83795 HARDWARE MONITORING DRIVER
14956 M:      Jean Delvare <jdelvare@suse.com>
14957 L:      linux-hwmon@vger.kernel.org
14958 S:      Maintained
14959 F:      drivers/hwmon/w83795.c
14960
14961 W83L51xD SD/MMC CARD INTERFACE DRIVER
14962 M:      Pierre Ossman <pierre@ossman.eu>
14963 S:      Maintained
14964 F:      drivers/mmc/host/wbsd.*
14965
14966 WACOM PROTOCOL 4 SERIAL TABLETS
14967 M:      Julian Squires <julian@cipht.net>
14968 M:      Hans de Goede <hdegoede@redhat.com>
14969 L:      linux-input@vger.kernel.org
14970 S:      Maintained
14971 F:      drivers/input/tablet/wacom_serial4.c
14972
14973 WATCHDOG DEVICE DRIVERS
14974 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
14975 M:      Guenter Roeck <linux@roeck-us.net>
14976 L:      linux-watchdog@vger.kernel.org
14977 W:      http://www.linux-watchdog.org/
14978 T:      git git://www.linux-watchdog.org/linux-watchdog.git
14979 S:      Maintained
14980 F:      Documentation/devicetree/bindings/watchdog/
14981 F:      Documentation/watchdog/
14982 F:      drivers/watchdog/
14983 F:      include/linux/watchdog.h
14984 F:      include/uapi/linux/watchdog.h
14985
14986 WHISKEYCOVE PMIC GPIO DRIVER
14987 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
14988 L:      linux-gpio@vger.kernel.org
14989 S:      Maintained
14990 F:      drivers/gpio/gpio-wcove.c
14991
14992 WIIMOTE HID DRIVER
14993 M:      David Herrmann <dh.herrmann@googlemail.com>
14994 L:      linux-input@vger.kernel.org
14995 S:      Maintained
14996 F:      drivers/hid/hid-wiimote*
14997
14998 WILOCITY WIL6210 WIRELESS DRIVER
14999 M:      Maya Erez <merez@codeaurora.org>
15000 L:      linux-wireless@vger.kernel.org
15001 L:      wil6210@qti.qualcomm.com
15002 S:      Supported
15003 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
15004 F:      drivers/net/wireless/ath/wil6210/
15005
15006 WIMAX STACK
15007 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
15008 M:      linux-wimax@intel.com
15009 L:      wimax@linuxwimax.org (subscribers-only)
15010 S:      Supported
15011 W:      http://linuxwimax.org
15012 F:      Documentation/wimax/README.wimax
15013 F:      include/linux/wimax/debug.h
15014 F:      include/net/wimax.h
15015 F:      include/uapi/linux/wimax.h
15016 F:      net/wimax/
15017
15018 WINBOND CIR DRIVER
15019 M:      David Härdeman <david@hardeman.nu>
15020 S:      Maintained
15021 F:      drivers/media/rc/winbond-cir.c
15022
15023 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
15024 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15025 L:      linux-watchdog@vger.kernel.org
15026 S:      Maintained
15027 F:      drivers/watchdog/ebc-c384_wdt.c
15028
15029 WINSYSTEMS WS16C48 GPIO DRIVER
15030 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15031 L:      linux-gpio@vger.kernel.org
15032 S:      Maintained
15033 F:      drivers/gpio/gpio-ws16c48.c
15034
15035 WISTRON LAPTOP BUTTON DRIVER
15036 M:      Miloslav Trmac <mitr@volny.cz>
15037 S:      Maintained
15038 F:      drivers/input/misc/wistron_btns.c
15039
15040 WL3501 WIRELESS PCMCIA CARD DRIVER
15041 L:      linux-wireless@vger.kernel.org
15042 S:      Odd fixes
15043 F:      drivers/net/wireless/wl3501*
15044
15045 WOLFSON MICROELECTRONICS DRIVERS
15046 L:      patches@opensource.cirrus.com
15047 T:      git https://github.com/CirrusLogic/linux-drivers.git
15048 W:      https://github.com/CirrusLogic/linux-drivers/wiki
15049 S:      Supported
15050 F:      Documentation/hwmon/wm83??
15051 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
15052 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
15053 F:      Documentation/devicetree/bindings/mfd/arizona.txt
15054 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
15055 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
15056 F:      arch/arm/mach-s3c64xx/mach-crag6410*
15057 F:      drivers/clk/clk-wm83*.c
15058 F:      drivers/extcon/extcon-arizona.c
15059 F:      drivers/leds/leds-wm83*.c
15060 F:      drivers/gpio/gpio-*wm*.c
15061 F:      drivers/gpio/gpio-arizona.c
15062 F:      drivers/hwmon/wm83??-hwmon.c
15063 F:      drivers/input/misc/wm831x-on.c
15064 F:      drivers/input/touchscreen/wm831x-ts.c
15065 F:      drivers/input/touchscreen/wm97*.c
15066 F:      drivers/mfd/arizona*
15067 F:      drivers/mfd/wm*.c
15068 F:      drivers/mfd/cs47l24*
15069 F:      drivers/power/supply/wm83*.c
15070 F:      drivers/rtc/rtc-wm83*.c
15071 F:      drivers/regulator/wm8*.c
15072 F:      drivers/regulator/arizona*
15073 F:      drivers/video/backlight/wm83*_bl.c
15074 F:      drivers/watchdog/wm83*_wdt.c
15075 F:      include/linux/mfd/arizona/
15076 F:      include/linux/mfd/wm831x/
15077 F:      include/linux/mfd/wm8350/
15078 F:      include/linux/mfd/wm8400*
15079 F:      include/linux/regulator/arizona*
15080 F:      include/linux/wm97xx.h
15081 F:      include/sound/wm????.h
15082 F:      sound/soc/codecs/arizona.?
15083 F:      sound/soc/codecs/wm*
15084 F:      sound/soc/codecs/cs47l24*
15085
15086 WORKQUEUE
15087 M:      Tejun Heo <tj@kernel.org>
15088 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
15090 S:      Maintained
15091 F:      include/linux/workqueue.h
15092 F:      kernel/workqueue.c
15093 F:      Documentation/core-api/workqueue.rst
15094
15095 X-POWERS AXP288 PMIC DRIVERS
15096 M:      Hans de Goede <hdegoede@redhat.com>
15097 S:      Maintained
15098 N:      axp288
15099 F:      drivers/acpi/pmic/intel_pmic_xpower.c
15100
15101 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
15102 M:      Chen-Yu Tsai <wens@csie.org>
15103 L:      linux-kernel@vger.kernel.org
15104 S:      Maintained
15105 N:      axp[128]
15106
15107 X.25 NETWORK LAYER
15108 M:      Andrew Hendry <andrew.hendry@gmail.com>
15109 L:      linux-x25@vger.kernel.org
15110 S:      Odd Fixes
15111 F:      Documentation/networking/x25*
15112 F:      include/net/x25*
15113 F:      net/x25/
15114
15115 X86 ARCHITECTURE (32-BIT AND 64-BIT)
15116 M:      Thomas Gleixner <tglx@linutronix.de>
15117 M:      Ingo Molnar <mingo@redhat.com>
15118 R:      "H. Peter Anvin" <hpa@zytor.com>
15119 M:      x86@kernel.org
15120 L:      linux-kernel@vger.kernel.org
15121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15122 S:      Maintained
15123 F:      Documentation/x86/
15124 F:      arch/x86/
15125
15126 X86 MCE INFRASTRUCTURE
15127 M:      Tony Luck <tony.luck@intel.com>
15128 M:      Borislav Petkov <bp@alien8.de>
15129 L:      linux-edac@vger.kernel.org
15130 S:      Maintained
15131 F:      arch/x86/kernel/cpu/mcheck/*
15132
15133 X86 MICROCODE UPDATE SUPPORT
15134 M:      Borislav Petkov <bp@alien8.de>
15135 S:      Maintained
15136 F:      arch/x86/kernel/cpu/microcode/*
15137
15138 X86 PLATFORM DRIVERS
15139 M:      Darren Hart <dvhart@infradead.org>
15140 M:      Andy Shevchenko <andy@infradead.org>
15141 L:      platform-driver-x86@vger.kernel.org
15142 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
15143 S:      Maintained
15144 F:      drivers/platform/x86/
15145 F:      drivers/platform/olpc/
15146
15147 X86 VDSO
15148 M:      Andy Lutomirski <luto@amacapital.net>
15149 L:      linux-kernel@vger.kernel.org
15150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
15151 S:      Maintained
15152 F:      arch/x86/entry/vdso/
15153
15154 XC2028/3028 TUNER DRIVER
15155 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
15156 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15157 L:      linux-media@vger.kernel.org
15158 W:      https://linuxtv.org
15159 T:      git git://linuxtv.org/media_tree.git
15160 S:      Maintained
15161 F:      drivers/media/tuners/tuner-xc2028.*
15162
15163 XEN BLOCK SUBSYSTEM
15164 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15165 M:      Roger Pau Monné <roger.pau@citrix.com>
15166 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15167 S:      Supported
15168 F:      drivers/block/xen-blkback/*
15169 F:      drivers/block/xen*
15170
15171 XEN HYPERVISOR ARM
15172 M:      Stefano Stabellini <sstabellini@kernel.org>
15173 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15174 S:      Maintained
15175 F:      arch/arm/xen/
15176 F:      arch/arm/include/asm/xen/
15177
15178 XEN HYPERVISOR ARM64
15179 M:      Stefano Stabellini <sstabellini@kernel.org>
15180 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15181 S:      Maintained
15182 F:      arch/arm64/xen/
15183 F:      arch/arm64/include/asm/xen/
15184
15185 XEN HYPERVISOR INTERFACE
15186 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
15187 M:      Juergen Gross <jgross@suse.com>
15188 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
15190 S:      Supported
15191 F:      arch/x86/xen/
15192 F:      drivers/*/xen-*front.c
15193 F:      drivers/xen/
15194 F:      arch/x86/include/asm/xen/
15195 F:      arch/x86/include/asm/pvclock-abi.h
15196 F:      include/xen/
15197 F:      include/uapi/xen/
15198 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
15199 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
15200
15201 XEN NETWORK BACKEND DRIVER
15202 M:      Wei Liu <wei.liu2@citrix.com>
15203 M:      Paul Durrant <paul.durrant@citrix.com>
15204 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15205 L:      netdev@vger.kernel.org
15206 S:      Supported
15207 F:      drivers/net/xen-netback/*
15208
15209 XEN PCI SUBSYSTEM
15210 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15211 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15212 S:      Supported
15213 F:      arch/x86/pci/*xen*
15214 F:      drivers/pci/*xen*
15215
15216 XEN PVSCSI DRIVERS
15217 M:      Juergen Gross <jgross@suse.com>
15218 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15219 L:      linux-scsi@vger.kernel.org
15220 S:      Supported
15221 F:      drivers/scsi/xen-scsifront.c
15222 F:      drivers/xen/xen-scsiback.c
15223 F:      include/xen/interface/io/vscsiif.h
15224
15225 XEN SWIOTLB SUBSYSTEM
15226 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15227 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15228 L:      iommu@lists.linux-foundation.org
15229 S:      Supported
15230 F:      arch/x86/xen/*swiotlb*
15231 F:      drivers/xen/*swiotlb*
15232
15233 XFS FILESYSTEM
15234 M:      Darrick J. Wong <darrick.wong@oracle.com>
15235 M:      linux-xfs@vger.kernel.org
15236 L:      linux-xfs@vger.kernel.org
15237 W:      http://xfs.org/
15238 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
15239 S:      Supported
15240 F:      Documentation/filesystems/xfs.txt
15241 F:      fs/xfs/
15242
15243 XILINX AXI ETHERNET DRIVER
15244 M:      Anirudha Sarangi <anirudh@xilinx.com>
15245 M:      John Linn <John.Linn@xilinx.com>
15246 S:      Maintained
15247 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
15248
15249 XILINX UARTLITE SERIAL DRIVER
15250 M:      Peter Korsgaard <jacmet@sunsite.dk>
15251 L:      linux-serial@vger.kernel.org
15252 S:      Maintained
15253 F:      drivers/tty/serial/uartlite.c
15254
15255 XILINX VIDEO IP CORES
15256 M:      Hyun Kwon <hyun.kwon@xilinx.com>
15257 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15258 L:      linux-media@vger.kernel.org
15259 T:      git git://linuxtv.org/media_tree.git
15260 S:      Supported
15261 F:      Documentation/devicetree/bindings/media/xilinx/
15262 F:      drivers/media/platform/xilinx/
15263 F:      include/uapi/linux/xilinx-v4l2-controls.h
15264
15265 XILLYBUS DRIVER
15266 M:      Eli Billauer <eli.billauer@gmail.com>
15267 L:      linux-kernel@vger.kernel.org
15268 S:      Supported
15269 F:      drivers/char/xillybus/
15270
15271 XRA1403 GPIO EXPANDER
15272 M:      Nandor Han <nandor.han@ge.com>
15273 M:      Semi Malinen <semi.malinen@ge.com>
15274 L:      linux-gpio@vger.kernel.org
15275 S:      Maintained
15276 F:      drivers/gpio/gpio-xra1403.c
15277 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
15278
15279 XTENSA XTFPGA PLATFORM SUPPORT
15280 M:      Max Filippov <jcmvbkbc@gmail.com>
15281 L:      linux-xtensa@linux-xtensa.org
15282 S:      Maintained
15283 F:      drivers/spi/spi-xtensa-xtfpga.c
15284 F:      sound/soc/xtensa/xtfpga-i2s.c
15285
15286 YAM DRIVER FOR AX.25
15287 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
15288 L:      linux-hams@vger.kernel.org
15289 S:      Maintained
15290 F:      drivers/net/hamradio/yam*
15291 F:      include/linux/yam.h
15292
15293 YAMA SECURITY MODULE
15294 M:      Kees Cook <keescook@chromium.org>
15295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
15296 S:      Supported
15297 F:      security/yama/
15298 F:      Documentation/admin-guide/LSM/Yama.rst
15299
15300 YEALINK PHONE DRIVER
15301 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
15302 L:      usbb2k-api-dev@nongnu.org
15303 S:      Maintained
15304 F:      Documentation/input/yealink.rst
15305 F:      drivers/input/misc/yealink.*
15306
15307 Z8530 DRIVER FOR AX.25
15308 M:      Joerg Reuter <jreuter@yaina.de>
15309 W:      http://yaina.de/jreuter/
15310 W:      http://www.qsl.net/dl1bke/
15311 L:      linux-hams@vger.kernel.org
15312 S:      Maintained
15313 F:      Documentation/networking/z8530drv.txt
15314 F:      drivers/net/hamradio/*scc.c
15315 F:      drivers/net/hamradio/z8530.h
15316
15317 ZBUD COMPRESSED PAGE ALLOCATOR
15318 M:      Seth Jennings <sjenning@redhat.com>
15319 M:      Dan Streetman <ddstreet@ieee.org>
15320 L:      linux-mm@kvack.org
15321 S:      Maintained
15322 F:      mm/zbud.c
15323 F:      include/linux/zbud.h
15324
15325 ZD1211RW WIRELESS DRIVER
15326 M:      Daniel Drake <dsd@gentoo.org>
15327 M:      Ulrich Kunitz <kune@deine-taler.de>
15328 W:      http://zd1211.ath.cx/wiki/DriverRewrite
15329 L:      linux-wireless@vger.kernel.org
15330 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
15331 S:      Maintained
15332 F:      drivers/net/wireless/zydas/zd1211rw/
15333
15334 ZD1301 MEDIA DRIVER
15335 M:      Antti Palosaari <crope@iki.fi>
15336 L:      linux-media@vger.kernel.org
15337 W:      https://linuxtv.org/
15338 W:      http://palosaari.fi/linux/
15339 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15340 S:      Maintained
15341 F:      drivers/media/usb/dvb-usb-v2/zd1301*
15342
15343 ZD1301_DEMOD MEDIA DRIVER
15344 M:      Antti Palosaari <crope@iki.fi>
15345 L:      linux-media@vger.kernel.org
15346 W:      https://linuxtv.org/
15347 W:      http://palosaari.fi/linux/
15348 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15349 S:      Maintained
15350 F:      drivers/media/dvb-frontends/zd1301_demod*
15351
15352 ZPOOL COMPRESSED PAGE STORAGE API
15353 M:      Dan Streetman <ddstreet@ieee.org>
15354 L:      linux-mm@kvack.org
15355 S:      Maintained
15356 F:      mm/zpool.c
15357 F:      include/linux/zpool.h
15358
15359 ZR36067 VIDEO FOR LINUX DRIVER
15360 L:      mjpeg-users@lists.sourceforge.net
15361 L:      linux-media@vger.kernel.org
15362 W:      http://mjpeg.sourceforge.net/driver-zoran/
15363 T:      hg https://linuxtv.org/hg/v4l-dvb
15364 S:      Odd Fixes
15365 F:      drivers/media/pci/zoran/
15366
15367 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
15368 M:      Minchan Kim <minchan@kernel.org>
15369 M:      Nitin Gupta <ngupta@vflare.org>
15370 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15371 L:      linux-kernel@vger.kernel.org
15372 S:      Maintained
15373 F:      drivers/block/zram/
15374 F:      Documentation/blockdev/zram.txt
15375
15376 ZS DECSTATION Z85C30 SERIAL DRIVER
15377 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
15378 S:      Maintained
15379 F:      drivers/tty/serial/zs.*
15380
15381 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
15382 M:      Minchan Kim <minchan@kernel.org>
15383 M:      Nitin Gupta <ngupta@vflare.org>
15384 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15385 L:      linux-mm@kvack.org
15386 S:      Maintained
15387 F:      mm/zsmalloc.c
15388 F:      include/linux/zsmalloc.h
15389 F:      Documentation/vm/zsmalloc.txt
15390
15391 ZSWAP COMPRESSED SWAP CACHING
15392 M:      Seth Jennings <sjenning@redhat.com>
15393 M:      Dan Streetman <ddstreet@ieee.org>
15394 L:      linux-mm@kvack.org
15395 S:      Maintained
15396 F:      mm/zswap.c
15397
15398 THE REST
15399 M:      Linus Torvalds <torvalds@linux-foundation.org>
15400 L:      linux-kernel@vger.kernel.org
15401 Q:      http://patchwork.kernel.org/project/LKML/list/
15402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
15403 S:      Buried alive in reporters
15404 F:      *
15405 F:      */