]> asedeno.scripts.mit.edu Git - linux.git/blob - MAINTAINERS
auxdisplay: make PANEL a menuconfig
[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/amdkfd/
770 F:      drivers/gpu/drm/amd/include/cik_structs.h
771 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
772 F:      drivers/gpu/drm/amd/include/vi_structs.h
773 F:      include/uapi/linux/kfd_ioctl.h
774
775 AMD SEATTLE DEVICE TREE SUPPORT
776 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
777 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
778 M:      Tom Lendacky <thomas.lendacky@amd.com>
779 S:      Supported
780 F:      arch/arm64/boot/dts/amd/
781
782 AMD XGBE DRIVER
783 M:      Tom Lendacky <thomas.lendacky@amd.com>
784 L:      netdev@vger.kernel.org
785 S:      Supported
786 F:      drivers/net/ethernet/amd/xgbe/
787 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
788
789 AMS (Apple Motion Sensor) DRIVER
790 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
791 S:      Supported
792 F:      drivers/macintosh/ams/
793
794 ANALOG DEVICES INC AD9389B DRIVER
795 M:      Hans Verkuil <hans.verkuil@cisco.com>
796 L:      linux-media@vger.kernel.org
797 S:      Maintained
798 F:      drivers/media/i2c/ad9389b*
799
800 ANALOG DEVICES INC ADV7180 DRIVER
801 M:      Lars-Peter Clausen <lars@metafoo.de>
802 L:      linux-media@vger.kernel.org
803 W:      http://ez.analog.com/community/linux-device-drivers
804 S:      Supported
805 F:      drivers/media/i2c/adv7180.c
806
807 ANALOG DEVICES INC ADV748X DRIVER
808 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
809 L:      linux-media@vger.kernel.org
810 S:      Maintained
811 F:      drivers/media/i2c/adv748x/*
812
813 ANALOG DEVICES INC ADV7511 DRIVER
814 M:      Hans Verkuil <hans.verkuil@cisco.com>
815 L:      linux-media@vger.kernel.org
816 S:      Maintained
817 F:      drivers/media/i2c/adv7511*
818
819 ANALOG DEVICES INC ADV7604 DRIVER
820 M:      Hans Verkuil <hans.verkuil@cisco.com>
821 L:      linux-media@vger.kernel.org
822 S:      Maintained
823 F:      drivers/media/i2c/adv7604*
824
825 ANALOG DEVICES INC ADV7842 DRIVER
826 M:      Hans Verkuil <hans.verkuil@cisco.com>
827 L:      linux-media@vger.kernel.org
828 S:      Maintained
829 F:      drivers/media/i2c/adv7842*
830
831 ANALOG DEVICES INC ASOC CODEC DRIVERS
832 M:      Lars-Peter Clausen <lars@metafoo.de>
833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
834 W:      http://wiki.analog.com/
835 W:      http://ez.analog.com/community/linux-device-drivers
836 S:      Supported
837 F:      sound/soc/codecs/adau*
838 F:      sound/soc/codecs/adav*
839 F:      sound/soc/codecs/ad1*
840 F:      sound/soc/codecs/ad7*
841 F:      sound/soc/codecs/ssm*
842 F:      sound/soc/codecs/sigmadsp.*
843
844 ANALOG DEVICES INC ASOC DRIVERS
845 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
846 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
847 W:      http://blackfin.uclinux.org/
848 S:      Supported
849 F:      sound/soc/blackfin/*
850
851 ANALOG DEVICES INC DMA DRIVERS
852 M:      Lars-Peter Clausen <lars@metafoo.de>
853 W:      http://ez.analog.com/community/linux-device-drivers
854 S:      Supported
855 F:      drivers/dma/dma-axi-dmac.c
856
857 ANALOG DEVICES INC IIO DRIVERS
858 M:      Lars-Peter Clausen <lars@metafoo.de>
859 M:      Michael Hennerich <Michael.Hennerich@analog.com>
860 W:      http://wiki.analog.com/
861 W:      http://ez.analog.com/community/linux-device-drivers
862 S:      Supported
863 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
864 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
865 F:      drivers/iio/*/ad*
866 F:      drivers/iio/adc/ltc2497*
867 X:      drivers/iio/*/adjd*
868 F:      drivers/staging/iio/*/ad*
869 F:      drivers/staging/iio/trigger/iio-trig-bfin-timer.c
870
871 ANDROID CONFIG FRAGMENTS
872 M:      Rob Herring <robh@kernel.org>
873 S:      Supported
874 F:      kernel/configs/android*
875
876 ANDROID DRIVERS
877 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
878 M:      Arve Hjønnevåg <arve@android.com>
879 M:      Todd Kjos <tkjos@android.com>
880 M:      Martijn Coenen <maco@android.com>
881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
882 L:      devel@driverdev.osuosl.org
883 S:      Supported
884 F:      drivers/android/
885 F:      drivers/staging/android/
886
887 ANDROID GOLDFISH PIC DRIVER
888 M:      Miodrag Dinic <miodrag.dinic@mips.com>
889 S:      Supported
890 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
891 F:      drivers/irqchip/irq-goldfish-pic.c
892
893 ANDROID GOLDFISH RTC DRIVER
894 M:      Miodrag Dinic <miodrag.dinic@mips.com>
895 S:      Supported
896 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
897 F:      drivers/rtc/rtc-goldfish.c
898
899 ANDROID ION DRIVER
900 M:      Laura Abbott <labbott@redhat.com>
901 M:      Sumit Semwal <sumit.semwal@linaro.org>
902 L:      devel@driverdev.osuosl.org
903 S:      Supported
904 F:      drivers/staging/android/ion
905 F:      drivers/staging/android/uapi/ion.h
906
907 AOA (Apple Onboard Audio) ALSA DRIVER
908 M:      Johannes Berg <johannes@sipsolutions.net>
909 L:      linuxppc-dev@lists.ozlabs.org
910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
911 S:      Maintained
912 F:      sound/aoa/
913
914 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
915 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
916 L:      linux-iio@vger.kernel.org
917 S:      Maintained
918 F:      drivers/iio/adc/stx104.c
919
920 APM DRIVER
921 M:      Jiri Kosina <jikos@kernel.org>
922 S:      Odd fixes
923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
924 F:      arch/x86/kernel/apm_32.c
925 F:      include/linux/apm_bios.h
926 F:      include/uapi/linux/apm_bios.h
927 F:      drivers/char/apm-emulation.c
928
929 APPARMOR SECURITY MODULE
930 M:      John Johansen <john.johansen@canonical.com>
931 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
932 W:      apparmor.wiki.kernel.org
933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
934 S:      Supported
935 F:      security/apparmor/
936 F:      Documentation/admin-guide/LSM/apparmor.rst
937
938 APPLE BCM5974 MULTITOUCH DRIVER
939 M:      Henrik Rydberg <rydberg@bitmath.org>
940 L:      linux-input@vger.kernel.org
941 S:      Odd fixes
942 F:      drivers/input/mouse/bcm5974.c
943
944 APPLE SMC DRIVER
945 M:      Henrik Rydberg <rydberg@bitmath.org>
946 L:      linux-hwmon@vger.kernel.org
947 S:      Odd fixes
948 F:      drivers/hwmon/applesmc.c
949
950 APPLETALK NETWORK LAYER
951 L:      netdev@vger.kernel.org
952 S:      Odd fixes
953 F:      drivers/net/appletalk/
954 F:      net/appletalk/
955
956 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
957 M:      Duc Dang <dhdang@apm.com>
958 S:      Supported
959 F:      arch/arm64/boot/dts/apm/
960
961 APPLIED MICRO (APM) X-GENE SOC EDAC
962 M:      Loc Ho <lho@apm.com>
963 S:      Supported
964 F:      drivers/edac/xgene_edac.c
965 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
966
967 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
968 M:      Iyappan Subramanian <isubramanian@apm.com>
969 M:      Keyur Chudgar <kchudgar@apm.com>
970 S:      Supported
971 F:      drivers/net/ethernet/apm/xgene-v2/
972
973 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
974 M:      Iyappan Subramanian <isubramanian@apm.com>
975 M:      Keyur Chudgar <kchudgar@apm.com>
976 M:      Quan Nguyen <qnguyen@apm.com>
977 S:      Supported
978 F:      drivers/net/ethernet/apm/xgene/
979 F:      drivers/net/phy/mdio-xgene.c
980 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
981 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
982
983 APPLIED MICRO (APM) X-GENE SOC PMU
984 M:      Tai Nguyen <ttnguyen@apm.com>
985 S:      Supported
986 F:      drivers/perf/xgene_pmu.c
987 F:      Documentation/perf/xgene-pmu.txt
988 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
989
990 APTINA CAMERA SENSOR PLL
991 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
992 L:      linux-media@vger.kernel.org
993 S:      Maintained
994 F:      drivers/media/i2c/aptina-pll.*
995
996 ARC FRAMEBUFFER DRIVER
997 M:      Jaya Kumar <jayalk@intworks.biz>
998 S:      Maintained
999 F:      drivers/video/fbdev/arcfb.c
1000 F:      drivers/video/fbdev/core/fb_defio.c
1001
1002 ARC PGU DRM DRIVER
1003 M:      Alexey Brodkin <abrodkin@synopsys.com>
1004 S:      Supported
1005 F:      drivers/gpu/drm/arc/
1006 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1007
1008 ARCNET NETWORK LAYER
1009 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1010 L:      netdev@vger.kernel.org
1011 S:      Maintained
1012 F:      drivers/net/arcnet/
1013 F:      include/uapi/linux/if_arcnet.h
1014
1015 ARM ARCHITECTED TIMER DRIVER
1016 M:      Mark Rutland <mark.rutland@arm.com>
1017 M:      Marc Zyngier <marc.zyngier@arm.com>
1018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1019 S:      Maintained
1020 F:      arch/arm/include/asm/arch_timer.h
1021 F:      arch/arm64/include/asm/arch_timer.h
1022 F:      drivers/clocksource/arm_arch_timer.c
1023
1024 ARM HDLCD DRM DRIVER
1025 M:      Liviu Dudau <liviu.dudau@arm.com>
1026 S:      Supported
1027 F:      drivers/gpu/drm/arm/hdlcd_*
1028 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1029
1030 ARM MALI-DP DRM DRIVER
1031 M:      Liviu Dudau <liviu.dudau@arm.com>
1032 M:      Brian Starkey <brian.starkey@arm.com>
1033 M:      Mali DP Maintainers <malidp@foss.arm.com>
1034 S:      Supported
1035 F:      drivers/gpu/drm/arm/
1036 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1037
1038 ARM MFM AND FLOPPY DRIVERS
1039 M:      Ian Molton <spyro@f2s.com>
1040 S:      Maintained
1041 F:      arch/arm/lib/floppydma.S
1042 F:      arch/arm/include/asm/floppy.h
1043
1044 ARM PMU PROFILING AND DEBUGGING
1045 M:      Will Deacon <will.deacon@arm.com>
1046 M:      Mark Rutland <mark.rutland@arm.com>
1047 S:      Maintained
1048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1049 F:      arch/arm*/kernel/perf_*
1050 F:      arch/arm/oprofile/common.c
1051 F:      arch/arm*/kernel/hw_breakpoint.c
1052 F:      arch/arm*/include/asm/hw_breakpoint.h
1053 F:      arch/arm*/include/asm/perf_event.h
1054 F:      drivers/perf/*
1055 F:      include/linux/perf/arm_pmu.h
1056 F:      Documentation/devicetree/bindings/arm/pmu.txt
1057 F:      Documentation/devicetree/bindings/perf/
1058
1059 ARM PORT
1060 M:      Russell King <linux@armlinux.org.uk>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 W:      http://www.armlinux.org.uk/
1063 S:      Odd Fixes
1064 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1065 F:      arch/arm/
1066 X:      arch/arm/boot/dts/
1067
1068 ARM PRIMECELL AACI PL041 DRIVER
1069 M:      Russell King <linux@armlinux.org.uk>
1070 S:      Odd Fixes
1071 F:      sound/arm/aaci.*
1072
1073 ARM PRIMECELL BUS SUPPORT
1074 M:      Russell King <linux@armlinux.org.uk>
1075 S:      Odd Fixes
1076 F:      drivers/amba/
1077 F:      include/linux/amba/bus.h
1078
1079 ARM PRIMECELL CLCD PL110 DRIVER
1080 M:      Russell King <linux@armlinux.org.uk>
1081 S:      Odd Fixes
1082 F:      drivers/video/fbdev/amba-clcd.*
1083
1084 ARM PRIMECELL KMI PL050 DRIVER
1085 M:      Russell King <linux@armlinux.org.uk>
1086 S:      Odd Fixes
1087 F:      drivers/input/serio/ambakmi.*
1088 F:      include/linux/amba/kmi.h
1089
1090 ARM PRIMECELL MMCI PL180/1 DRIVER
1091 M:      Russell King <linux@armlinux.org.uk>
1092 S:      Odd Fixes
1093 F:      drivers/mmc/host/mmci.*
1094 F:      include/linux/amba/mmci.h
1095
1096 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1097 M:      Russell King <linux@armlinux.org.uk>
1098 S:      Odd Fixes
1099 F:      drivers/tty/serial/amba-pl01*.c
1100 F:      include/linux/amba/serial.h
1101
1102 ARM SMMU DRIVERS
1103 M:      Will Deacon <will.deacon@arm.com>
1104 R:      Robin Murphy <robin.murphy@arm.com>
1105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106 S:      Maintained
1107 F:      drivers/iommu/arm-smmu.c
1108 F:      drivers/iommu/arm-smmu-v3.c
1109 F:      drivers/iommu/io-pgtable-arm.c
1110 F:      drivers/iommu/io-pgtable-arm-v7s.c
1111
1112 ARM SUB-ARCHITECTURES
1113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1114 S:      Maintained
1115 F:      arch/arm/mach-*/
1116 F:      arch/arm/plat-*/
1117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1118
1119 ARM/ACTIONS SEMI ARCHITECTURE
1120 M:      Andreas Färber <afaerber@suse.de>
1121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1122 S:      Maintained
1123 N:      owl
1124 F:      arch/arm/mach-actions/
1125 F:      arch/arm/boot/dts/owl-*
1126 F:      arch/arm64/boot/dts/actions/
1127 F:      drivers/clocksource/owl-*
1128 F:      drivers/soc/actions/
1129 F:      include/dt-bindings/power/owl-*
1130 F:      include/linux/soc/actions/
1131 F:      Documentation/devicetree/bindings/arm/actions.txt
1132 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1133 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1134
1135 ARM/ADS SPHERE MACHINE SUPPORT
1136 M:      Lennert Buytenhek <kernel@wantstofly.org>
1137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138 S:      Maintained
1139
1140 ARM/AFEB9260 MACHINE SUPPORT
1141 M:      Sergey Lapin <slapin@ossfans.org>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144
1145 ARM/AJECO 1ARM MACHINE SUPPORT
1146 M:      Lennert Buytenhek <kernel@wantstofly.org>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149
1150 ARM/Allwinner SoC Clock Support
1151 M:      Emilio López <emilio@elopez.com.ar>
1152 S:      Maintained
1153 F:      drivers/clk/sunxi/
1154
1155 ARM/Allwinner sunXi SoC support
1156 M:      Maxime Ripard <maxime.ripard@bootlin.com>
1157 M:      Chen-Yu Tsai <wens@csie.org>
1158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1159 S:      Maintained
1160 N:      sun[x456789]i
1161 N:      sun50i
1162 F:      arch/arm/mach-sunxi/
1163 F:      arch/arm64/boot/dts/allwinner/
1164 F:      drivers/clk/sunxi-ng/
1165 F:      drivers/pinctrl/sunxi/
1166 F:      drivers/soc/sunxi/
1167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1168
1169 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1170 M:      Neil Armstrong <narmstrong@baylibre.com>
1171 M:      Jerome Brunet <jbrunet@baylibre.com>
1172 L:      linux-amlogic@lists.infradead.org
1173 S:      Maintained
1174 F:      drivers/clk/meson/
1175 F:      include/dt-bindings/clock/meson*
1176 F:      include/dt-bindings/clock/gxbb*
1177 F:      Documentation/devicetree/bindings/clock/amlogic*
1178
1179 ARM/Amlogic Meson SoC support
1180 M:      Carlo Caione <carlo@caione.org>
1181 M:      Kevin Hilman <khilman@baylibre.com>
1182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1183 L:      linux-amlogic@lists.infradead.org
1184 W:      http://linux-meson.com/
1185 S:      Maintained
1186 F:      arch/arm/mach-meson/
1187 F:      arch/arm/boot/dts/meson*
1188 F:      arch/arm64/boot/dts/amlogic/
1189 F:      drivers/pinctrl/meson/
1190 F:      drivers/mmc/host/meson*
1191 N:      meson
1192
1193 ARM/Annapurna Labs ALPINE ARCHITECTURE
1194 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1195 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1197 S:      Maintained
1198 F:      arch/arm/mach-alpine/
1199 F:      arch/arm/boot/dts/alpine*
1200 F:      arch/arm64/boot/dts/al/
1201 F:      drivers/*/*alpine*
1202
1203 ARM/ARTPEC MACHINE SUPPORT
1204 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1205 M:      Lars Persson <lars.persson@axis.com>
1206 M:      Niklas Cassel <niklas.cassel@axis.com>
1207 S:      Maintained
1208 L:      linux-arm-kernel@axis.com
1209 F:      arch/arm/mach-artpec
1210 F:      arch/arm/boot/dts/artpec6*
1211 F:      drivers/clk/axis
1212 F:      drivers/crypto/axis
1213 F:      drivers/pinctrl/pinctrl-artpec*
1214 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1215
1216 ARM/ASPEED I2C DRIVER
1217 M:      Brendan Higgins <brendanhiggins@google.com>
1218 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1219 R:      Joel Stanley <joel@jms.id.au>
1220 L:      linux-i2c@vger.kernel.org
1221 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1222 S:      Maintained
1223 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1224 F:      drivers/i2c/busses/i2c-aspeed.c
1225 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1226 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1227
1228 ARM/ASPEED MACHINE SUPPORT
1229 M:      Joel Stanley <joel@jms.id.au>
1230 S:      Maintained
1231 F:      arch/arm/mach-aspeed/
1232 F:      arch/arm/boot/dts/aspeed-*
1233 F:      drivers/*/*aspeed*
1234
1235 ARM/ATMEL AT91 Clock Support
1236 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1237 S:      Maintained
1238 F:      drivers/clk/at91
1239
1240 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1241 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1242 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
1243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244 W:      http://www.linux4sam.org
1245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1246 S:      Supported
1247 N:      at91
1248 N:      atmel
1249 F:      arch/arm/mach-at91/
1250 F:      include/soc/at91/
1251 F:      arch/arm/boot/dts/at91*.dts
1252 F:      arch/arm/boot/dts/at91*.dtsi
1253 F:      arch/arm/boot/dts/sama*.dts
1254 F:      arch/arm/boot/dts/sama*.dtsi
1255 F:      arch/arm/include/debug/at91.S
1256 F:      drivers/memory/atmel*
1257 F:      drivers/watchdog/sama5d4_wdt.c
1258 X:      drivers/input/touchscreen/atmel_mxt_ts.c
1259 X:      drivers/net/wireless/atmel/
1260
1261 ARM/CALXEDA HIGHBANK ARCHITECTURE
1262 M:      Rob Herring <robh@kernel.org>
1263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 S:      Maintained
1265 F:      arch/arm/mach-highbank/
1266 F:      arch/arm/boot/dts/highbank.dts
1267 F:      arch/arm/boot/dts/ecx-*.dts*
1268
1269 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1270 M:      Krzysztof Halasa <khalasa@piap.pl>
1271 S:      Maintained
1272 F:      arch/arm/mach-cns3xxx/
1273
1274 ARM/CAVIUM THUNDER NETWORK DRIVER
1275 M:      Sunil Goutham <sgoutham@cavium.com>
1276 M:      Robert Richter <rric@kernel.org>
1277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278 S:      Supported
1279 F:      drivers/net/ethernet/cavium/thunder/
1280
1281 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1282 M:      Lukasz Majewski <lukma@denx.de>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285 F:      arch/arm/mach-ep93xx/ts72xx.c
1286
1287 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1288 M:      Alexander Shiyan <shc_work@mail.ru>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Odd Fixes
1291 N:      clps711x
1292
1293 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1294 M:      Lennert Buytenhek <kernel@wantstofly.org>
1295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 S:      Maintained
1297
1298 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1299 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1300 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1302 S:      Maintained
1303 F:      arch/arm/mach-ep93xx/
1304 F:      arch/arm/mach-ep93xx/include/mach/
1305
1306 ARM/CLKDEV SUPPORT
1307 M:      Russell King <linux@armlinux.org.uk>
1308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1309 S:      Maintained
1310 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1311 F:      drivers/clk/clkdev.c
1312
1313 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1314 M:      Mike Rapoport <mike@compulab.co.il>
1315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316 S:      Maintained
1317
1318 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1319 M:      Baruch Siach <baruch@tkos.co.il>
1320 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 S:      Maintained
1322 F:      arch/arm/boot/dts/cx92755*
1323 N:      digicolor
1324
1325 ARM/CONTEC MICRO9 MACHINE SUPPORT
1326 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1327 S:      Maintained
1328 F:      arch/arm/mach-ep93xx/micro9.c
1329
1330 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1331 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 S:      Maintained
1334 F:      drivers/hwtracing/coresight/*
1335 F:      Documentation/trace/coresight.txt
1336 F:      Documentation/trace/coresight-cpu-debug.txt
1337 F:      Documentation/devicetree/bindings/arm/coresight.txt
1338 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1339 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1340 F:      tools/perf/arch/arm/util/pmu.c
1341 F:      tools/perf/arch/arm/util/auxtrace.c
1342 F:      tools/perf/arch/arm/util/cs-etm.c
1343 F:      tools/perf/arch/arm/util/cs-etm.h
1344 F:      tools/perf/util/cs-etm.*
1345 F:      tools/perf/util/cs-etm-decoder/*
1346
1347 ARM/CORGI MACHINE SUPPORT
1348 M:      Richard Purdie <rpurdie@rpsys.net>
1349 S:      Maintained
1350
1351 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1352 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1353 M:      Linus Walleij <linus.walleij@linaro.org>
1354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1355 T:      git git://github.com/ulli-kroll/linux.git
1356 S:      Maintained
1357 F:      Documentation/devicetree/bindings/arm/gemini.txt
1358 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1359 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1360 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1361 F:      arch/arm/mach-gemini/
1362 F:      drivers/net/ethernet/cortina/
1363 F:      drivers/pinctrl/pinctrl-gemini.c
1364 F:      drivers/rtc/rtc-ftrtc010.c
1365
1366 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1367 M:      Barry Song <baohua@kernel.org>
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1370 S:      Maintained
1371 F:      arch/arm/boot/dts/prima2*
1372 F:      arch/arm/mach-prima2/
1373 F:      drivers/clk/sirf/
1374 F:      drivers/clocksource/timer-prima2.c
1375 F:      drivers/clocksource/timer-atlas7.c
1376 N:      [^a-z]sirf
1377
1378 ARM/EBSA110 MACHINE SUPPORT
1379 M:      Russell King <linux@armlinux.org.uk>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 W:      http://www.armlinux.org.uk/
1382 S:      Maintained
1383 F:      arch/arm/mach-ebsa110/
1384 F:      drivers/net/ethernet/amd/am79c961a.*
1385
1386 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1387 M:      Uwe Kleine-König <kernel@pengutronix.de>
1388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1389 S:      Maintained
1390 N:      efm32
1391
1392 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1393 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 S:      Maintained
1396 F:      arch/arm/mach-pxa/ezx.c
1397
1398 ARM/FARADAY FA526 PORT
1399 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 T:      git git://git.berlios.de/gemini-board
1403 F:      arch/arm/mm/*-fa*
1404
1405 ARM/FOOTBRIDGE ARCHITECTURE
1406 M:      Russell King <linux@armlinux.org.uk>
1407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 W:      http://www.armlinux.org.uk/
1409 S:      Maintained
1410 F:      arch/arm/include/asm/hardware/dec21285.h
1411 F:      arch/arm/mach-footbridge/
1412
1413 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1414 M:      Shawn Guo <shawnguo@kernel.org>
1415 M:      Sascha Hauer <kernel@pengutronix.de>
1416 R:      Fabio Estevam <fabio.estevam@nxp.com>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1420 F:      arch/arm/mach-imx/
1421 F:      arch/arm/mach-mxs/
1422 F:      arch/arm/boot/dts/imx*
1423 F:      arch/arm/configs/imx*_defconfig
1424 F:      drivers/clk/imx/
1425 F:      drivers/soc/imx/
1426 F:      include/soc/imx/
1427
1428 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1429 M:      Shawn Guo <shawnguo@kernel.org>
1430 M:      Sascha Hauer <kernel@pengutronix.de>
1431 R:      Stefan Agner <stefan@agner.ch>
1432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1433 S:      Maintained
1434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1435 F:      arch/arm/mach-imx/*vf610*
1436 F:      arch/arm/boot/dts/vf*
1437
1438 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1439 M:      Lennert Buytenhek <kernel@wantstofly.org>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 S:      Maintained
1442
1443 ARM/GUMSTIX MACHINE SUPPORT
1444 M:      Steve Sakoman <sakoman@gmail.com>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 S:      Maintained
1447
1448 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1449 M:      Philipp Zabel <philipp.zabel@gmail.com>
1450 M:      Paul Parsons <lost.distance@yahoo.com>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-pxa/hx4700.c
1454 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1455 F:      sound/soc/pxa/hx4700.c
1456
1457 ARM/HISILICON SOC SUPPORT
1458 M:      Wei Xu <xuwei5@hisilicon.com>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 W:      http://www.hisilicon.com
1461 S:      Supported
1462 T:      git git://github.com/hisilicon/linux-hisi.git
1463 F:      arch/arm/mach-hisi/
1464 F:      arch/arm/boot/dts/hi3*
1465 F:      arch/arm/boot/dts/hip*
1466 F:      arch/arm/boot/dts/hisi*
1467 F:      arch/arm64/boot/dts/hisilicon/
1468
1469 ARM/HP JORNADA 7XX MACHINE SUPPORT
1470 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1471 W:      www.jlime.com
1472 S:      Maintained
1473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1474 F:      arch/arm/mach-sa1100/jornada720.c
1475 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1476
1477 ARM/IGEP MACHINE SUPPORT
1478 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1479 M:      Javier Martinez Canillas <javier@dowhile0.org>
1480 L:      linux-omap@vger.kernel.org
1481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1482 S:      Maintained
1483 F:      arch/arm/boot/dts/omap3-igep*
1484
1485 ARM/INCOME PXA270 SUPPORT
1486 M:      Marek Vasut <marek.vasut@gmail.com>
1487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1488 S:      Maintained
1489 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1490
1491 ARM/INTEL IOP13XX ARM ARCHITECTURE
1492 M:      Lennert Buytenhek <kernel@wantstofly.org>
1493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1494 S:      Maintained
1495
1496 ARM/INTEL IOP32X ARM ARCHITECTURE
1497 M:      Lennert Buytenhek <kernel@wantstofly.org>
1498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1499 S:      Maintained
1500
1501 ARM/INTEL IOP33X ARM ARCHITECTURE
1502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1503 S:      Orphan
1504
1505 ARM/INTEL IQ81342EX MACHINE SUPPORT
1506 M:      Lennert Buytenhek <kernel@wantstofly.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509
1510 ARM/INTEL IXDP2850 MACHINE SUPPORT
1511 M:      Lennert Buytenhek <kernel@wantstofly.org>
1512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513 S:      Maintained
1514
1515 ARM/INTEL IXP4XX ARM ARCHITECTURE
1516 M:      Imre Kaloz <kaloz@openwrt.org>
1517 M:      Krzysztof Halasa <khalasa@piap.pl>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 S:      Maintained
1520 F:      arch/arm/mach-ixp4xx/
1521
1522 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1523 M:      Jonathan Cameron <jic23@cam.ac.uk>
1524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1525 S:      Maintained
1526 F:      arch/arm/mach-pxa/stargate2.c
1527 F:      drivers/pcmcia/pxa2xx_stargate2.c
1528
1529 ARM/INTEL XSC3 (MANZANO) ARM CORE
1530 M:      Lennert Buytenhek <kernel@wantstofly.org>
1531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1532 S:      Maintained
1533
1534 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1535 M:      Lennert Buytenhek <kernel@wantstofly.org>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538
1539 ARM/LG1K ARCHITECTURE
1540 M:      Chanho Min <chanho.min@lge.com>
1541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1542 S:      Maintained
1543 F:      arch/arm64/boot/dts/lg/
1544
1545 ARM/LOGICPD PXA270 MACHINE SUPPORT
1546 M:      Lennert Buytenhek <kernel@wantstofly.org>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 S:      Maintained
1549
1550 ARM/LPC18XX ARCHITECTURE
1551 M:      Joachim Eastwood <manabian@gmail.com>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      arch/arm/boot/dts/lpc43*
1555 F:      drivers/clk/nxp/clk-lpc18xx*
1556 F:      drivers/clocksource/time-lpc32xx.c
1557 F:      drivers/i2c/busses/i2c-lpc2k.c
1558 F:      drivers/memory/pl172.c
1559 F:      drivers/mtd/spi-nor/nxp-spifi.c
1560 F:      drivers/rtc/rtc-lpc24xx.c
1561 N:      lpc18xx
1562
1563 ARM/LPC32XX SOC SUPPORT
1564 M:      Vladimir Zapolskiy <vz@mleia.com>
1565 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1568 S:      Maintained
1569 F:      arch/arm/boot/dts/lpc32*
1570 F:      arch/arm/mach-lpc32xx/
1571 F:      drivers/i2c/busses/i2c-pnx.c
1572 F:      drivers/net/ethernet/nxp/lpc_eth.c
1573 F:      drivers/usb/host/ohci-nxp.c
1574 F:      drivers/watchdog/pnx4008_wdt.c
1575 N:      lpc32xx
1576
1577 ARM/MAGICIAN MACHINE SUPPORT
1578 M:      Philipp Zabel <philipp.zabel@gmail.com>
1579 S:      Maintained
1580
1581 ARM/Marvell Berlin SoC support
1582 M:      Jisheng Zhang <jszhang@marvell.com>
1583 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 F:      arch/arm/mach-berlin/
1587 F:      arch/arm/boot/dts/berlin*
1588 F:      arch/arm64/boot/dts/marvell/berlin*
1589
1590 ARM/Marvell Dove/MV78xx0/Orion SOC support
1591 M:      Jason Cooper <jason@lakedaemon.net>
1592 M:      Andrew Lunn <andrew@lunn.ch>
1593 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1594 M:      Gregory Clement <gregory.clement@bootlin.com>
1595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1596 S:      Maintained
1597 F:      Documentation/devicetree/bindings/soc/dove/
1598 F:      arch/arm/mach-dove/
1599 F:      arch/arm/mach-mv78xx0/
1600 F:      arch/arm/mach-orion5x/
1601 F:      arch/arm/plat-orion/
1602 F:      arch/arm/boot/dts/dove*
1603 F:      arch/arm/boot/dts/orion5x*
1604
1605 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1606 M:      Jason Cooper <jason@lakedaemon.net>
1607 M:      Andrew Lunn <andrew@lunn.ch>
1608 M:      Gregory Clement <gregory.clement@bootlin.com>
1609 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1611 S:      Maintained
1612 F:      arch/arm/boot/dts/armada*
1613 F:      arch/arm/boot/dts/kirkwood*
1614 F:      arch/arm/configs/mvebu_*_defconfig
1615 F:      arch/arm/mach-mvebu/
1616 F:      arch/arm64/boot/dts/marvell/armada*
1617 F:      drivers/cpufreq/armada-37xx-cpufreq.c
1618 F:      drivers/cpufreq/mvebu-cpufreq.c
1619 F:      drivers/irqchip/irq-armada-370-xp.c
1620 F:      drivers/irqchip/irq-mvebu-*
1621 F:      drivers/pinctrl/mvebu/
1622 F:      drivers/rtc/rtc-armada38x.c
1623
1624 ARM/Mediatek RTC DRIVER
1625 M:      Eddie Huang <eddie.huang@mediatek.com>
1626 M:      Sean Wang <sean.wang@mediatek.com>
1627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
1631 F:      drivers/rtc/rtc-mt6397.c
1632 F:      drivers/rtc/rtc-mt7622.c
1633
1634 ARM/Mediatek SoC support
1635 M:      Matthias Brugger <matthias.bgg@gmail.com>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      arch/arm/boot/dts/mt6*
1640 F:      arch/arm/boot/dts/mt7*
1641 F:      arch/arm/boot/dts/mt8*
1642 F:      arch/arm/mach-mediatek/
1643 F:      arch/arm64/boot/dts/mediatek/
1644 N:      mtk
1645 K:      mediatek
1646
1647 ARM/Mediatek USB3 PHY DRIVER
1648 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1651 S:      Maintained
1652 F:      drivers/phy/mediatek/phy-mtk-tphy.c
1653
1654 ARM/MICREL KS8695 ARCHITECTURE
1655 M:      Greg Ungerer <gerg@uclinux.org>
1656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1657 F:      arch/arm/mach-ks8695/
1658 S:      Odd Fixes
1659
1660 ARM/MIOA701 MACHINE SUPPORT
1661 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 F:      arch/arm/mach-pxa/mioa701.c
1664 S:      Maintained
1665
1666 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1667 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1668 S:      Maintained
1669
1670 ARM/NOMADIK/U300/Ux500 ARCHITECTURES
1671 M:      Linus Walleij <linus.walleij@linaro.org>
1672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1673 S:      Maintained
1674 F:      arch/arm/mach-nomadik/
1675 F:      arch/arm/mach-u300/
1676 F:      arch/arm/mach-ux500/
1677 F:      arch/arm/boot/dts/ste-*
1678 F:      drivers/clk/clk-nomadik.c
1679 F:      drivers/clk/clk-u300.c
1680 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1681 F:      drivers/clocksource/timer-u300.c
1682 F:      drivers/dma/coh901318*
1683 F:      drivers/dma/ste_dma40*
1684 F:      drivers/hwspinlock/u8500_hsem.c
1685 F:      drivers/i2c/busses/i2c-nomadik.c
1686 F:      drivers/i2c/busses/i2c-stu300.c
1687 F:      drivers/mfd/ab3100*
1688 F:      drivers/mfd/ab8500*
1689 F:      drivers/mfd/abx500*
1690 F:      drivers/mfd/dbx500*
1691 F:      drivers/mfd/db8500*
1692 F:      drivers/pinctrl/nomadik/
1693 F:      drivers/pinctrl/pinctrl-coh901*
1694 F:      drivers/pinctrl/pinctrl-u300.c
1695 F:      drivers/rtc/rtc-ab3100.c
1696 F:      drivers/rtc/rtc-ab8500.c
1697 F:      drivers/rtc/rtc-coh901331.c
1698 F:      drivers/rtc/rtc-pl031.c
1699 F:      drivers/watchdog/coh901327_wdt.c
1700 F:      Documentation/devicetree/bindings/arm/ste-*
1701 F:      Documentation/devicetree/bindings/arm/ux500/
1702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1703
1704 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1705 M:      Wan ZongShun <mcuos.com@gmail.com>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 W:      http://www.mcuos.com
1708 S:      Maintained
1709 F:      arch/arm/mach-w90x900/
1710 F:      drivers/input/keyboard/w90p910_keypad.c
1711 F:      drivers/input/touchscreen/w90p910_ts.c
1712 F:      drivers/watchdog/nuc900_wdt.c
1713 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1714 F:      drivers/mtd/nand/nuc900_nand.c
1715 F:      drivers/rtc/rtc-nuc900.c
1716 F:      drivers/spi/spi-nuc900.c
1717 F:      drivers/usb/host/ehci-w90x900.c
1718 F:      drivers/video/fbdev/nuc900fb.c
1719
1720 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1721 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1722 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1723 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1724 S:      Supported
1725
1726 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1727 M:      Alexander Clouter <alex@digriz.org.uk>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 W:      http://www.digriz.org.uk/ts78xx/kernel
1730 S:      Maintained
1731 F:      arch/arm/mach-orion5x/ts78xx-*
1732
1733 ARM/OXNAS platform support
1734 M:      Neil Armstrong <narmstrong@baylibre.com>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1737 S:      Maintained
1738 F:      arch/arm/mach-oxnas/
1739 F:      arch/arm/boot/dts/ox8*.dts*
1740 N:      oxnas
1741
1742 ARM/PALM TREO SUPPORT
1743 M:      Tomas Cech <sleep_walker@suse.com>
1744 L:      linux-arm-kernel@lists.infradead.org
1745 W:      http://hackndev.com
1746 S:      Maintained
1747 F:      arch/arm/mach-pxa/palmtreo.*
1748
1749 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1750 M:      Marek Vasut <marek.vasut@gmail.com>
1751 L:      linux-arm-kernel@lists.infradead.org
1752 W:      http://hackndev.com
1753 S:      Maintained
1754 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1755 F:      arch/arm/mach-pxa/palmtx.c
1756 F:      arch/arm/mach-pxa/palmt5.*
1757 F:      arch/arm/mach-pxa/include/mach/palmld.h
1758 F:      arch/arm/mach-pxa/palmld.c
1759 F:      arch/arm/mach-pxa/palmte2.*
1760 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1761 F:      arch/arm/mach-pxa/palmtc.c
1762
1763 ARM/PALMZ72 SUPPORT
1764 M:      Sergey Lapin <slapin@ossfans.org>
1765 L:      linux-arm-kernel@lists.infradead.org
1766 W:      http://hackndev.com
1767 S:      Maintained
1768 F:      arch/arm/mach-pxa/palmz72.*
1769
1770 ARM/PLEB SUPPORT
1771 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1772 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1773 S:      Maintained
1774
1775 ARM/PT DIGITAL BOARD PORT
1776 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 W:      http://www.armlinux.org.uk/
1779 S:      Maintained
1780
1781 ARM/QUALCOMM SUPPORT
1782 M:      Andy Gross <andy.gross@linaro.org>
1783 M:      David Brown <david.brown@linaro.org>
1784 L:      linux-arm-msm@vger.kernel.org
1785 L:      linux-soc@vger.kernel.org
1786 S:      Maintained
1787 F:      Documentation/devicetree/bindings/soc/qcom/
1788 F:      arch/arm/boot/dts/qcom-*.dts
1789 F:      arch/arm/boot/dts/qcom-*.dtsi
1790 F:      arch/arm/mach-qcom/
1791 F:      arch/arm64/boot/dts/qcom/*
1792 F:      drivers/i2c/busses/i2c-qup.c
1793 F:      drivers/clk/qcom/
1794 F:      drivers/dma/qcom/
1795 F:      drivers/soc/qcom/
1796 F:      drivers/spi/spi-qup.c
1797 F:      drivers/tty/serial/msm_serial.c
1798 F:      drivers/*/pm8???-*
1799 F:      drivers/mfd/ssbi.c
1800 F:      drivers/firmware/qcom_scm.c
1801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1802
1803 ARM/RADISYS ENP2611 MACHINE SUPPORT
1804 M:      Lennert Buytenhek <kernel@wantstofly.org>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807
1808 ARM/REALTEK ARCHITECTURE
1809 M:      Andreas Färber <afaerber@suse.de>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Maintained
1812 F:      arch/arm64/boot/dts/realtek/
1813 F:      Documentation/devicetree/bindings/arm/realtek.txt
1814
1815 ARM/RENESAS ARM64 ARCHITECTURE
1816 M:      Simon Horman <horms@verge.net.au>
1817 M:      Magnus Damm <magnus.damm@gmail.com>
1818 L:      linux-renesas-soc@vger.kernel.org
1819 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1821 S:      Supported
1822 F:      arch/arm64/boot/dts/renesas/
1823 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1824 F:      drivers/soc/renesas/
1825 F:      include/linux/soc/renesas/
1826
1827 ARM/RISCPC ARCHITECTURE
1828 M:      Russell King <linux@armlinux.org.uk>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 W:      http://www.armlinux.org.uk/
1831 S:      Maintained
1832 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1833 F:      arch/arm/include/asm/hardware/ioc.h
1834 F:      arch/arm/include/asm/hardware/iomd.h
1835 F:      arch/arm/include/asm/hardware/memc.h
1836 F:      arch/arm/mach-rpc/
1837 F:      drivers/net/ethernet/8390/etherh.c
1838 F:      drivers/net/ethernet/i825xx/ether1*
1839 F:      drivers/net/ethernet/seeq/ether3*
1840 F:      drivers/scsi/arm/
1841
1842 ARM/Rockchip SoC support
1843 M:      Heiko Stuebner <heiko@sntech.de>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 L:      linux-rockchip@lists.infradead.org
1846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1847 S:      Maintained
1848 F:      arch/arm/boot/dts/rk3*
1849 F:      arch/arm/boot/dts/rv1108*
1850 F:      arch/arm/mach-rockchip/
1851 F:      drivers/clk/rockchip/
1852 F:      drivers/i2c/busses/i2c-rk3x.c
1853 F:      drivers/*/*rockchip*
1854 F:      drivers/*/*/*rockchip*
1855 F:      sound/soc/rockchip/
1856 N:      rockchip
1857
1858 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1859 M:      Kukjin Kim <kgene@kernel.org>
1860 M:      Krzysztof Kozlowski <krzk@kernel.org>
1861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1862 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1863 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1864 S:      Maintained
1865 F:      arch/arm/boot/dts/s3c*
1866 F:      arch/arm/boot/dts/s5p*
1867 F:      arch/arm/boot/dts/samsung*
1868 F:      arch/arm/boot/dts/exynos*
1869 F:      arch/arm64/boot/dts/exynos/
1870 F:      arch/arm/plat-samsung/
1871 F:      arch/arm/mach-s3c24*/
1872 F:      arch/arm/mach-s3c64xx/
1873 F:      arch/arm/mach-s5p*/
1874 F:      arch/arm/mach-exynos*/
1875 F:      drivers/*/*s3c24*
1876 F:      drivers/*/*/*s3c24*
1877 F:      drivers/*/*s3c64xx*
1878 F:      drivers/*/*s5pv210*
1879 F:      drivers/memory/samsung/*
1880 F:      drivers/soc/samsung/*
1881 F:      Documentation/arm/Samsung/
1882 F:      Documentation/devicetree/bindings/arm/samsung/
1883 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1884 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1885 N:      exynos
1886
1887 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1888 M:      Kyungmin Park <kyungmin.park@samsung.com>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/mach-s5pv210/
1892
1893 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1894 M:      Kyungmin Park <kyungmin.park@samsung.com>
1895 M:      Kamil Debski <kamil@wypas.org>
1896 M:      Andrzej Hajda <a.hajda@samsung.com>
1897 L:      linux-arm-kernel@lists.infradead.org
1898 L:      linux-media@vger.kernel.org
1899 S:      Maintained
1900 F:      drivers/media/platform/s5p-g2d/
1901
1902 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1903 M:      Marek Szyprowski <m.szyprowski@samsung.com>
1904 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1905 L:      linux-media@vger.kernel.org
1906 S:      Maintained
1907 F:      drivers/media/platform/s5p-cec/
1908 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
1909
1910 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1911 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1912 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
1913 L:      linux-arm-kernel@lists.infradead.org
1914 L:      linux-media@vger.kernel.org
1915 S:      Maintained
1916 F:      drivers/media/platform/s5p-jpeg/
1917
1918 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1919 M:      Kyungmin Park <kyungmin.park@samsung.com>
1920 M:      Kamil Debski <kamil@wypas.org>
1921 M:      Jeongtae Park <jtp.park@samsung.com>
1922 M:      Andrzej Hajda <a.hajda@samsung.com>
1923 L:      linux-arm-kernel@lists.infradead.org
1924 L:      linux-media@vger.kernel.org
1925 S:      Maintained
1926 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1927 F:      drivers/media/platform/s5p-mfc/
1928
1929 ARM/SHMOBILE ARM ARCHITECTURE
1930 M:      Simon Horman <horms@verge.net.au>
1931 M:      Magnus Damm <magnus.damm@gmail.com>
1932 L:      linux-renesas-soc@vger.kernel.org
1933 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1935 S:      Supported
1936 F:      arch/arm/boot/dts/emev2*
1937 F:      arch/arm/boot/dts/r7s*
1938 F:      arch/arm/boot/dts/r8a*
1939 F:      arch/arm/boot/dts/sh*
1940 F:      arch/arm/configs/shmobile_defconfig
1941 F:      arch/arm/include/debug/renesas-scif.S
1942 F:      arch/arm/mach-shmobile/
1943 F:      Documentation/devicetree/bindings/arm/shmobile.txt
1944 F:      drivers/soc/renesas/
1945 F:      include/linux/soc/renesas/
1946
1947 ARM/SOCFPGA ARCHITECTURE
1948 M:      Dinh Nguyen <dinguyen@kernel.org>
1949 S:      Maintained
1950 F:      arch/arm/mach-socfpga/
1951 F:      arch/arm/boot/dts/socfpga*
1952 F:      arch/arm/configs/socfpga_defconfig
1953 F:      arch/arm64/boot/dts/altera/
1954 W:      http://www.rocketboards.org
1955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1956
1957 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1958 M:      Dinh Nguyen <dinguyen@kernel.org>
1959 S:      Maintained
1960 F:      drivers/clk/socfpga/
1961
1962 ARM/SOCFPGA EDAC SUPPORT
1963 M:      Thor Thayer <thor.thayer@linux.intel.com>
1964 S:      Maintained
1965 F:      drivers/edac/altera_edac.
1966
1967 ARM/STI ARCHITECTURE
1968 M:      Patrice Chotard <patrice.chotard@st.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 W:      http://www.stlinux.com
1971 S:      Maintained
1972 F:      arch/arm/mach-sti/
1973 F:      arch/arm/boot/dts/sti*
1974 F:      drivers/char/hw_random/st-rng.c
1975 F:      drivers/clocksource/arm_global_timer.c
1976 F:      drivers/clocksource/clksrc_st_lpc.c
1977 F:      drivers/cpufreq/sti-cpufreq.c
1978 F:      drivers/dma/st_fdma*
1979 F:      drivers/i2c/busses/i2c-st.c
1980 F:      drivers/media/rc/st_rc.c
1981 F:      drivers/media/platform/sti/c8sectpfe/
1982 F:      drivers/mmc/host/sdhci-st.c
1983 F:      drivers/phy/st/phy-miphy28lp.c
1984 F:      drivers/phy/st/phy-stih407-usb.c
1985 F:      drivers/pinctrl/pinctrl-st.c
1986 F:      drivers/remoteproc/st_remoteproc.c
1987 F:      drivers/remoteproc/st_slim_rproc.c
1988 F:      drivers/reset/sti/
1989 F:      drivers/rtc/rtc-st-lpc.c
1990 F:      drivers/tty/serial/st-asc.c
1991 F:      drivers/usb/dwc3/dwc3-st.c
1992 F:      drivers/usb/host/ehci-st.c
1993 F:      drivers/usb/host/ohci-st.c
1994 F:      drivers/watchdog/st_lpc_wdt.c
1995 F:      drivers/ata/ahci_st.c
1996 F:      include/linux/remoteproc/st_slim_rproc.h
1997
1998 ARM/STM32 ARCHITECTURE
1999 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2000 M:      Alexandre Torgue <alexandre.torgue@st.com>
2001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 S:      Maintained
2003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2004 N:      stm32
2005 F:      arch/arm/boot/dts/stm32*
2006 F:      arch/arm/mach-stm32/
2007 F:      drivers/clocksource/armv7m_systick.c
2008
2009 ARM/TANGO ARCHITECTURE
2010 M:      Marc Gonzalez <marc.w.gonzalez@free.fr>
2011 M:      Mans Rullgard <mans@mansr.com>
2012 L:      linux-arm-kernel@lists.infradead.org
2013 S:      Odd Fixes
2014 N:      tango
2015
2016 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2017 M:      Lennert Buytenhek <kernel@wantstofly.org>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Maintained
2020
2021 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2022 M:      Hans Verkuil <hans.verkuil@cisco.com>
2023 L:      linux-tegra@vger.kernel.org
2024 L:      linux-media@vger.kernel.org
2025 S:      Maintained
2026 F:      drivers/media/platform/tegra-cec/
2027 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2028
2029 ARM/TETON BGA MACHINE SUPPORT
2030 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033
2034 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2035 M:      Santosh Shilimkar <ssantosh@kernel.org>
2036 L:      linux-kernel@vger.kernel.org
2037 S:      Maintained
2038 F:      drivers/memory/*emif*
2039
2040 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2041 M:      Santosh Shilimkar <ssantosh@kernel.org>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Maintained
2044 F:      arch/arm/mach-keystone/
2045 F:      arch/arm/boot/dts/keystone-*
2046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2047
2048 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2049 M:      Santosh Shilimkar <ssantosh@kernel.org>
2050 L:      linux-kernel@vger.kernel.org
2051 S:      Maintained
2052 F:      drivers/clk/keystone/
2053
2054 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
2055 M:      Santosh Shilimkar <ssantosh@kernel.org>
2056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057 L:      linux-kernel@vger.kernel.org
2058 S:      Maintained
2059 F:      drivers/clocksource/timer-keystone.c
2060
2061 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2062 M:      Santosh Shilimkar <ssantosh@kernel.org>
2063 L:      linux-kernel@vger.kernel.org
2064 S:      Maintained
2065 F:      drivers/power/reset/keystone-reset.c
2066
2067 ARM/THECUS N2100 MACHINE SUPPORT
2068 M:      Lennert Buytenhek <kernel@wantstofly.org>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071
2072 ARM/TOSA MACHINE SUPPORT
2073 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2074 M:      Dirk Opfer <dirk@opfer-online.de>
2075 S:      Maintained
2076
2077 ARM/UNIPHIER ARCHITECTURE
2078 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
2081 S:      Maintained
2082 F:      Documentation/devicetree/bindings/gpio/gpio-uniphier.txt
2083 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.txt
2084 F:      arch/arm/boot/dts/uniphier*
2085 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2086 F:      arch/arm/mach-uniphier/
2087 F:      arch/arm/mm/cache-uniphier.c
2088 F:      arch/arm64/boot/dts/socionext/uniphier*
2089 F:      drivers/bus/uniphier-system-bus.c
2090 F:      drivers/clk/uniphier/
2091 F:      drivers/gpio/gpio-uniphier.c
2092 F:      drivers/i2c/busses/i2c-uniphier*
2093 F:      drivers/irqchip/irq-uniphier-aidet.c
2094 F:      drivers/pinctrl/uniphier/
2095 F:      drivers/reset/reset-uniphier.c
2096 F:      drivers/tty/serial/8250/8250_uniphier.c
2097 N:      uniphier
2098
2099 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
2100 M:      Ulf Hansson <ulf.hansson@linaro.org>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 T:      git git://git.linaro.org/people/ulfh/clk.git
2103 S:      Maintained
2104 F:      drivers/clk/ux500/
2105
2106 ARM/VERSATILE EXPRESS PLATFORM
2107 M:      Liviu Dudau <liviu.dudau@arm.com>
2108 M:      Sudeep Holla <sudeep.holla@arm.com>
2109 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2111 S:      Maintained
2112 F:      arch/arm/boot/dts/vexpress*
2113 F:      arch/arm64/boot/dts/arm/
2114 F:      arch/arm/mach-vexpress/
2115 F:      */*/vexpress*
2116 F:      */*/*/vexpress*
2117 F:      drivers/clk/versatile/clk-vexpress-osc.c
2118 F:      drivers/clocksource/versatile.c
2119 N:      mps2
2120
2121 ARM/VFP SUPPORT
2122 M:      Russell King <linux@armlinux.org.uk>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 W:      http://www.armlinux.org.uk/
2125 S:      Maintained
2126 F:      arch/arm/vfp/
2127
2128 ARM/VOIPAC PXA270 SUPPORT
2129 M:      Marek Vasut <marek.vasut@gmail.com>
2130 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2131 S:      Maintained
2132 F:      arch/arm/mach-pxa/vpac270.c
2133 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2134
2135 ARM/VT8500 ARM ARCHITECTURE
2136 M:      Tony Prisk <linux@prisktech.co.nz>
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139 F:      arch/arm/mach-vt8500/
2140 F:      drivers/clocksource/vt8500_timer.c
2141 F:      drivers/i2c/busses/i2c-wmt.c
2142 F:      drivers/mmc/host/wmt-sdmmc.c
2143 F:      drivers/pwm/pwm-vt8500.c
2144 F:      drivers/rtc/rtc-vt8500.c
2145 F:      drivers/tty/serial/vt8500_serial.c
2146 F:      drivers/usb/host/ehci-platform.c
2147 F:      drivers/usb/host/uhci-platform.c
2148 F:      drivers/video/fbdev/vt8500lcdfb.*
2149 F:      drivers/video/fbdev/wm8505fb*
2150 F:      drivers/video/fbdev/wmt_ge_rops.*
2151
2152 ARM/ZIPIT Z2 SUPPORT
2153 M:      Marek Vasut <marek.vasut@gmail.com>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156 F:      arch/arm/mach-pxa/z2.c
2157 F:      arch/arm/mach-pxa/include/mach/z2.h
2158
2159 ARM/ZTE ARCHITECTURE
2160 M:      Jun Nie <jun.nie@linaro.org>
2161 M:      Baoyou Xie <baoyou.xie@linaro.org>
2162 M:      Shawn Guo <shawnguo@kernel.org>
2163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 S:      Maintained
2165 F:      arch/arm/boot/dts/zx2967*
2166 F:      arch/arm/mach-zx/
2167 F:      arch/arm64/boot/dts/zte/
2168 F:      drivers/clk/zte/
2169 F:      drivers/dma/zx_dma.c
2170 F:      drivers/gpio/gpio-zx.c
2171 F:      drivers/i2c/busses/i2c-zx2967.c
2172 F:      drivers/mmc/host/dw_mmc-zx.*
2173 F:      drivers/pinctrl/zte/
2174 F:      drivers/soc/zte/
2175 F:      drivers/thermal/zx2967_thermal.c
2176 F:      drivers/watchdog/zx2967_wdt.c
2177 F:      Documentation/devicetree/bindings/arm/zte.txt
2178 F:      Documentation/devicetree/bindings/clock/zx2967*.txt
2179 F:      Documentation/devicetree/bindings/dma/zxdma.txt
2180 F:      Documentation/devicetree/bindings/gpio/zx296702-gpio.txt
2181 F:      Documentation/devicetree/bindings/i2c/i2c-zx2967.txt
2182 F:      Documentation/devicetree/bindings/mmc/zx-dw-mshc.txt
2183 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-zx.txt
2184 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2185 F:      Documentation/devicetree/bindings/soc/zte/
2186 F:      Documentation/devicetree/bindings/sound/zte,*.txt
2187 F:      Documentation/devicetree/bindings/thermal/zx2967-thermal.txt
2188 F:      Documentation/devicetree/bindings/watchdog/zte,zx2967-wdt.txt
2189 F:      include/dt-bindings/clock/zx2967*.h
2190 F:      include/dt-bindings/soc/zte,*.h
2191 F:      sound/soc/codecs/zx_aud96p22.c
2192 F:      sound/soc/zte/
2193
2194 ARM/ZYNQ ARCHITECTURE
2195 M:      Michal Simek <michal.simek@xilinx.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 W:      http://wiki.xilinx.com
2198 T:      git https://github.com/Xilinx/linux-xlnx.git
2199 S:      Supported
2200 F:      arch/arm/mach-zynq/
2201 F:      drivers/cpuidle/cpuidle-zynq.c
2202 F:      drivers/block/xsysace.c
2203 N:      zynq
2204 N:      xilinx
2205 F:      drivers/clocksource/cadence_ttc_timer.c
2206 F:      drivers/i2c/busses/i2c-cadence.c
2207 F:      drivers/mmc/host/sdhci-of-arasan.c
2208 F:      drivers/edac/synopsys_edac.c
2209
2210 ARM64 PORT (AARCH64 ARCHITECTURE)
2211 M:      Catalin Marinas <catalin.marinas@arm.com>
2212 M:      Will Deacon <will.deacon@arm.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2215 S:      Maintained
2216 F:      arch/arm64/
2217 F:      Documentation/arm64/
2218
2219 AS3645A LED FLASH CONTROLLER DRIVER
2220 M:      Sakari Ailus <sakari.ailus@iki.fi>
2221 L:      linux-leds@vger.kernel.org
2222 S:      Maintained
2223 F:      drivers/leds/leds-as3645a.c
2224
2225 ASAHI KASEI AK8974 DRIVER
2226 M:      Linus Walleij <linus.walleij@linaro.org>
2227 L:      linux-iio@vger.kernel.org
2228 W:      http://www.akm.com/
2229 S:      Supported
2230 F:      drivers/iio/magnetometer/ak8974.c
2231
2232 ASC7621 HARDWARE MONITOR DRIVER
2233 M:      George Joseph <george.joseph@fairview5.com>
2234 L:      linux-hwmon@vger.kernel.org
2235 S:      Maintained
2236 F:      Documentation/hwmon/asc7621
2237 F:      drivers/hwmon/asc7621.c
2238
2239 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2240 M:      Corentin Chary <corentin.chary@gmail.com>
2241 L:      acpi4asus-user@lists.sourceforge.net
2242 L:      platform-driver-x86@vger.kernel.org
2243 W:      http://acpi4asus.sf.net
2244 S:      Maintained
2245 F:      drivers/platform/x86/asus*.c
2246 F:      drivers/platform/x86/eeepc*.c
2247
2248 ASUS WIRELESS RADIO CONTROL DRIVER
2249 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2250 L:      platform-driver-x86@vger.kernel.org
2251 S:      Maintained
2252 F:      drivers/platform/x86/asus-wireless.c
2253
2254 ASYMMETRIC KEYS
2255 M:      David Howells <dhowells@redhat.com>
2256 L:      keyrings@vger.kernel.org
2257 S:      Maintained
2258 F:      Documentation/crypto/asymmetric-keys.txt
2259 F:      include/linux/verification.h
2260 F:      include/crypto/public_key.h
2261 F:      include/crypto/pkcs7.h
2262 F:      crypto/asymmetric_keys/
2263
2264 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2265 R:      Dan Williams <dan.j.williams@intel.com>
2266 W:      http://sourceforge.net/projects/xscaleiop
2267 S:      Odd fixes
2268 F:      Documentation/crypto/async-tx-api.txt
2269 F:      crypto/async_tx/
2270 F:      drivers/dma/
2271 F:      include/linux/dmaengine.h
2272 F:      include/linux/async_tx.h
2273
2274 AT24 EEPROM DRIVER
2275 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2276 L:      linux-i2c@vger.kernel.org
2277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2278 S:      Maintained
2279 F:      Documentation/devicetree/bindings/eeprom/at24.txt
2280 F:      drivers/misc/eeprom/at24.c
2281 F:      include/linux/platform_data/at24.h
2282
2283 ATA OVER ETHERNET (AOE) DRIVER
2284 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2285 W:      http://www.openaoe.org/
2286 S:      Supported
2287 F:      Documentation/aoe/
2288 F:      drivers/block/aoe/
2289
2290 ATHEROS 71XX/9XXX GPIO DRIVER
2291 M:      Alban Bedel <albeu@free.fr>
2292 W:      https://github.com/AlbanBedel/linux
2293 T:      git git://github.com/AlbanBedel/linux
2294 S:      Maintained
2295 F:      drivers/gpio/gpio-ath79.c
2296 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2297
2298 ATHEROS ATH GENERIC UTILITIES
2299 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2300 L:      linux-wireless@vger.kernel.org
2301 S:      Supported
2302 F:      drivers/net/wireless/ath/*
2303
2304 ATHEROS ATH5K WIRELESS DRIVER
2305 M:      Jiri Slaby <jirislaby@gmail.com>
2306 M:      Nick Kossifidis <mickflemm@gmail.com>
2307 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2308 L:      linux-wireless@vger.kernel.org
2309 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2310 S:      Maintained
2311 F:      drivers/net/wireless/ath/ath5k/
2312
2313 ATHEROS ATH6KL WIRELESS DRIVER
2314 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2315 L:      linux-wireless@vger.kernel.org
2316 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2318 S:      Supported
2319 F:      drivers/net/wireless/ath/ath6kl/
2320
2321 ATI_REMOTE2 DRIVER
2322 M:      Ville Syrjala <syrjala@sci.fi>
2323 S:      Maintained
2324 F:      drivers/input/misc/ati_remote2.c
2325
2326 ATK0110 HWMON DRIVER
2327 M:      Luca Tettamanti <kronos.it@gmail.com>
2328 L:      linux-hwmon@vger.kernel.org
2329 S:      Maintained
2330 F:      drivers/hwmon/asus_atk0110.c
2331
2332 ATLX ETHERNET DRIVERS
2333 M:      Jay Cliburn <jcliburn@gmail.com>
2334 M:      Chris Snook <chris.snook@gmail.com>
2335 L:      netdev@vger.kernel.org
2336 W:      http://sourceforge.net/projects/atl1
2337 W:      http://atl1.sourceforge.net
2338 S:      Maintained
2339 F:      drivers/net/ethernet/atheros/
2340
2341 ATM
2342 M:      Chas Williams <3chas3@gmail.com>
2343 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2344 L:      netdev@vger.kernel.org
2345 W:      http://linux-atm.sourceforge.net
2346 S:      Maintained
2347 F:      drivers/atm/
2348 F:      include/linux/atm*
2349 F:      include/uapi/linux/atm*
2350
2351 ATMEL AT91 / AT32 MCI DRIVER
2352 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2353 S:      Maintained
2354 F:      drivers/mmc/host/atmel-mci.c
2355
2356 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2357 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2358 S:      Supported
2359 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2360
2361 ATMEL Audio ALSA driver
2362 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2363 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2364 S:      Supported
2365 F:      sound/soc/atmel
2366
2367 ATMEL I2C DRIVER
2368 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2369 L:      linux-i2c@vger.kernel.org
2370 S:      Supported
2371 F:      drivers/i2c/busses/i2c-at91.c
2372
2373 ATMEL ISI DRIVER
2374 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2375 L:      linux-media@vger.kernel.org
2376 S:      Supported
2377 F:      drivers/media/platform/atmel/atmel-isi.c
2378 F:      include/media/atmel-isi.h
2379
2380 ATMEL LCDFB DRIVER
2381 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2382 L:      linux-fbdev@vger.kernel.org
2383 S:      Maintained
2384 F:      drivers/video/fbdev/atmel_lcdfb.c
2385 F:      include/video/atmel_lcdc.h
2386
2387 ATMEL MACB ETHERNET DRIVER
2388 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2389 S:      Supported
2390 F:      drivers/net/ethernet/cadence/
2391
2392 ATMEL MAXTOUCH DRIVER
2393 M:      Nick Dyer <nick@shmanahar.org>
2394 T:      git git://github.com/ndyer/linux.git
2395 S:      Maintained
2396 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2397 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2398 F:      include/linux/platform_data/atmel_mxt_ts.h
2399
2400 ATMEL SAMA5D2 ADC DRIVER
2401 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2402 L:      linux-iio@vger.kernel.org
2403 S:      Supported
2404 F:      drivers/iio/adc/at91-sama5d2_adc.c
2405
2406 ATMEL SDMMC DRIVER
2407 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2408 L:      linux-mmc@vger.kernel.org
2409 S:      Supported
2410 F:      drivers/mmc/host/sdhci-of-at91.c
2411
2412 ATMEL SPI DRIVER
2413 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2414 S:      Supported
2415 F:      drivers/spi/spi-atmel.*
2416
2417 ATMEL SSC DRIVER
2418 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2420 S:      Supported
2421 F:      drivers/misc/atmel-ssc.c
2422 F:      include/linux/atmel-ssc.h
2423
2424 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2425 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 S:      Supported
2428 F:      drivers/misc/atmel_tclib.c
2429 F:      drivers/clocksource/tcb_clksrc.c
2430
2431 ATMEL USBA UDC DRIVER
2432 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2434 S:      Supported
2435 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2436
2437 ATMEL WIRELESS DRIVER
2438 M:      Simon Kelley <simon@thekelleys.org.uk>
2439 L:      linux-wireless@vger.kernel.org
2440 W:      http://www.thekelleys.org.uk/atmel
2441 W:      http://atmelwlandriver.sourceforge.net/
2442 S:      Maintained
2443 F:      drivers/net/wireless/atmel/atmel*
2444
2445 ATMEL XDMA DRIVER
2446 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2447 L:      linux-arm-kernel@lists.infradead.org
2448 L:      dmaengine@vger.kernel.org
2449 S:      Supported
2450 F:      drivers/dma/at_xdmac.c
2451
2452 ATOMIC INFRASTRUCTURE
2453 M:      Will Deacon <will.deacon@arm.com>
2454 M:      Peter Zijlstra <peterz@infradead.org>
2455 R:      Boqun Feng <boqun.feng@gmail.com>
2456 L:      linux-kernel@vger.kernel.org
2457 S:      Maintained
2458 F:      arch/*/include/asm/atomic*.h
2459 F:      include/*/atomic*.h
2460
2461 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2462 M:      Bradley Grove <linuxdrivers@attotech.com>
2463 L:      linux-scsi@vger.kernel.org
2464 W:      http://www.attotech.com
2465 S:      Supported
2466 F:      drivers/scsi/esas2r
2467
2468 ATUSB IEEE 802.15.4 RADIO DRIVER
2469 M:      Stefan Schmidt <stefan@osg.samsung.com>
2470 L:      linux-wpan@vger.kernel.org
2471 S:      Maintained
2472 F:      drivers/net/ieee802154/atusb.c
2473 F:      drivers/net/ieee802154/atusb.h
2474 F:      drivers/net/ieee802154/at86rf230.h
2475
2476 AUDIT SUBSYSTEM
2477 M:      Paul Moore <paul@paul-moore.com>
2478 M:      Eric Paris <eparis@redhat.com>
2479 L:      linux-audit@redhat.com (moderated for non-subscribers)
2480 W:      https://github.com/linux-audit
2481 W:      https://people.redhat.com/sgrubb/audit
2482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
2483 S:      Supported
2484 F:      include/linux/audit.h
2485 F:      include/uapi/linux/audit.h
2486 F:      kernel/audit*
2487
2488 AUXILIARY DISPLAY DRIVERS
2489 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2490 S:      Maintained
2491 F:      drivers/auxdisplay/
2492 F:      include/linux/cfag12864b.h
2493
2494 AX.25 NETWORK LAYER
2495 M:      Ralf Baechle <ralf@linux-mips.org>
2496 L:      linux-hams@vger.kernel.org
2497 W:      http://www.linux-ax25.org/
2498 S:      Maintained
2499 F:      include/uapi/linux/ax25.h
2500 F:      include/net/ax25.h
2501 F:      net/ax25/
2502
2503 AXENTIA ARM DEVICES
2504 M:      Peter Rosin <peda@axentia.se>
2505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2506 S:      Maintained
2507 F:      Documentation/devicetree/bindings/arm/axentia.txt
2508 F:      arch/arm/boot/dts/at91-linea.dtsi
2509 F:      arch/arm/boot/dts/at91-natte.dtsi
2510 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
2511 F:      arch/arm/boot/dts/at91-tse850-3.dts
2512
2513 AXENTIA ASOC DRIVERS
2514 M:      Peter Rosin <peda@axentia.se>
2515 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2516 S:      Maintained
2517 F:      Documentation/devicetree/bindings/sound/axentia,*
2518 F:      sound/soc/atmel/tse850-pcm5142.c
2519
2520 AZ6007 DVB DRIVER
2521 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2522 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2523 L:      linux-media@vger.kernel.org
2524 W:      https://linuxtv.org
2525 T:      git git://linuxtv.org/media_tree.git
2526 S:      Maintained
2527 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2528
2529 AZTECH FM RADIO RECEIVER DRIVER
2530 M:      Hans Verkuil <hverkuil@xs4all.nl>
2531 L:      linux-media@vger.kernel.org
2532 T:      git git://linuxtv.org/media_tree.git
2533 W:      https://linuxtv.org
2534 S:      Maintained
2535 F:      drivers/media/radio/radio-aztech*
2536
2537 B43 WIRELESS DRIVER
2538 L:      linux-wireless@vger.kernel.org
2539 L:      b43-dev@lists.infradead.org
2540 W:      http://wireless.kernel.org/en/users/Drivers/b43
2541 S:      Odd Fixes
2542 F:      drivers/net/wireless/broadcom/b43/
2543
2544 B43LEGACY WIRELESS DRIVER
2545 M:      Larry Finger <Larry.Finger@lwfinger.net>
2546 L:      linux-wireless@vger.kernel.org
2547 L:      b43-dev@lists.infradead.org
2548 W:      http://wireless.kernel.org/en/users/Drivers/b43
2549 S:      Maintained
2550 F:      drivers/net/wireless/broadcom/b43legacy/
2551
2552 BACKLIGHT CLASS/SUBSYSTEM
2553 M:      Lee Jones <lee.jones@linaro.org>
2554 M:      Daniel Thompson <daniel.thompson@linaro.org>
2555 M:      Jingoo Han <jingoohan1@gmail.com>
2556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2557 S:      Maintained
2558 F:      drivers/video/backlight/
2559 F:      include/linux/backlight.h
2560 F:      include/linux/pwm_backlight.h
2561 F:      Documentation/devicetree/bindings/leds/backlight
2562
2563 BATMAN ADVANCED
2564 M:      Marek Lindner <mareklindner@neomailbox.ch>
2565 M:      Simon Wunderlich <sw@simonwunderlich.de>
2566 M:      Antonio Quartulli <a@unstable.cc>
2567 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2568 W:      https://www.open-mesh.org/
2569 Q:      https://patchwork.open-mesh.org/project/batman/list/
2570 S:      Maintained
2571 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2572 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2573 F:      Documentation/networking/batman-adv.rst
2574 F:      include/uapi/linux/batadv_packet.h
2575 F:      include/uapi/linux/batman_adv.h
2576 F:      net/batman-adv/
2577
2578 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2579 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2580 L:      linux-hams@vger.kernel.org
2581 W:      http://www.baycom.org/~tom/ham/ham.html
2582 S:      Maintained
2583 F:      drivers/net/hamradio/baycom*
2584
2585 BCACHE (BLOCK LAYER CACHE)
2586 M:      Michael Lyle <mlyle@lyle.org>
2587 M:      Kent Overstreet <kent.overstreet@gmail.com>
2588 L:      linux-bcache@vger.kernel.org
2589 W:      http://bcache.evilpiepirate.org
2590 C:      irc://irc.oftc.net/bcache
2591 S:      Maintained
2592 F:      drivers/md/bcache/
2593
2594 BDISP ST MEDIA DRIVER
2595 M:      Fabien Dessenne <fabien.dessenne@st.com>
2596 L:      linux-media@vger.kernel.org
2597 T:      git git://linuxtv.org/media_tree.git
2598 W:      https://linuxtv.org
2599 S:      Supported
2600 F:      drivers/media/platform/sti/bdisp
2601
2602 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2603 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2604 L:      netdev@vger.kernel.org
2605 S:      Maintained
2606 F:      drivers/net/ethernet/ec_bhf.c
2607
2608 BEFS FILE SYSTEM
2609 M:      Luis de Bethencourt <luisbg@kernel.org>
2610 M:      Salah Triki <salah.triki@gmail.com>
2611 S:      Maintained
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
2613 F:      Documentation/filesystems/befs.txt
2614 F:      fs/befs/
2615
2616 BFQ I/O SCHEDULER
2617 M:      Paolo Valente <paolo.valente@linaro.org>
2618 M:      Jens Axboe <axboe@kernel.dk>
2619 L:      linux-block@vger.kernel.org
2620 S:      Maintained
2621 F:      block/bfq-*
2622 F:      Documentation/block/bfq-iosched.txt
2623
2624 BFS FILE SYSTEM
2625 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2626 S:      Maintained
2627 F:      Documentation/filesystems/bfs.txt
2628 F:      fs/bfs/
2629 F:      include/uapi/linux/bfs_fs.h
2630
2631 BLACKFIN ARCHITECTURE
2632 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2633 T:      git git://git.code.sf.net/p/adi-linux/code
2634 W:      http://blackfin.uclinux.org
2635 S:      Orphan
2636 F:      arch/blackfin/
2637
2638 BLACKFIN EMAC DRIVER
2639 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2640 W:      http://blackfin.uclinux.org
2641 S:      Orphan
2642 F:      drivers/net/ethernet/adi/
2643
2644 BLACKFIN MEDIA DRIVER
2645 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2646 W:      http://blackfin.uclinux.org/
2647 S:      Orphan
2648 F:      drivers/media/platform/blackfin/
2649 F:      drivers/media/i2c/adv7183*
2650 F:      drivers/media/i2c/vs6624*
2651
2652 BLACKFIN RTC DRIVER
2653 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2654 W:      http://blackfin.uclinux.org
2655 S:      Orphan
2656 F:      drivers/rtc/rtc-bfin.c
2657
2658 BLACKFIN SDH DRIVER
2659 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2660 W:      http://blackfin.uclinux.org
2661 S:      Orphan
2662 F:      drivers/mmc/host/bfin_sdh.c
2663
2664 BLACKFIN SERIAL DRIVER
2665 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2666 W:      http://blackfin.uclinux.org
2667 S:      Orphan
2668 F:      drivers/tty/serial/bfin_uart.c
2669
2670 BLACKFIN WATCHDOG DRIVER
2671 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2672 W:      http://blackfin.uclinux.org
2673 S:      Orphan
2674 F:      drivers/watchdog/bfin_wdt.c
2675
2676 BLINKM RGB LED DRIVER
2677 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2678 S:      Maintained
2679 F:      drivers/leds/leds-blinkm.c
2680
2681 BLOCK LAYER
2682 M:      Jens Axboe <axboe@kernel.dk>
2683 L:      linux-block@vger.kernel.org
2684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2685 S:      Maintained
2686 F:      block/
2687 F:      kernel/trace/blktrace.c
2688 F:      lib/sbitmap.c
2689
2690 BLOCK2MTD DRIVER
2691 M:      Joern Engel <joern@lazybastard.org>
2692 L:      linux-mtd@lists.infradead.org
2693 S:      Maintained
2694 F:      drivers/mtd/devices/block2mtd.c
2695
2696 BLUETOOTH DRIVERS
2697 M:      Marcel Holtmann <marcel@holtmann.org>
2698 M:      Johan Hedberg <johan.hedberg@gmail.com>
2699 L:      linux-bluetooth@vger.kernel.org
2700 W:      http://www.bluez.org/
2701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2703 S:      Maintained
2704 F:      drivers/bluetooth/
2705
2706 BLUETOOTH SUBSYSTEM
2707 M:      Marcel Holtmann <marcel@holtmann.org>
2708 M:      Johan Hedberg <johan.hedberg@gmail.com>
2709 L:      linux-bluetooth@vger.kernel.org
2710 W:      http://www.bluez.org/
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2713 S:      Maintained
2714 F:      net/bluetooth/
2715 F:      include/net/bluetooth/
2716
2717 BONDING DRIVER
2718 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2719 M:      Veaceslav Falico <vfalico@gmail.com>
2720 M:      Andy Gospodarek <andy@greyhouse.net>
2721 L:      netdev@vger.kernel.org
2722 W:      http://sourceforge.net/projects/bonding/
2723 S:      Supported
2724 F:      drivers/net/bonding/
2725 F:      include/uapi/linux/if_bonding.h
2726
2727 BPF (Safe dynamic programs and tools)
2728 M:      Alexei Starovoitov <ast@kernel.org>
2729 M:      Daniel Borkmann <daniel@iogearbox.net>
2730 L:      netdev@vger.kernel.org
2731 L:      linux-kernel@vger.kernel.org
2732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
2734 S:      Supported
2735 F:      arch/x86/net/bpf_jit*
2736 F:      Documentation/networking/filter.txt
2737 F:      Documentation/bpf/
2738 F:      include/linux/bpf*
2739 F:      include/linux/filter.h
2740 F:      include/trace/events/bpf.h
2741 F:      include/trace/events/xdp.h
2742 F:      include/uapi/linux/bpf*
2743 F:      include/uapi/linux/filter.h
2744 F:      kernel/bpf/
2745 F:      kernel/trace/bpf_trace.c
2746 F:      lib/test_bpf.c
2747 F:      net/bpf/
2748 F:      net/core/filter.c
2749 F:      net/sched/act_bpf.c
2750 F:      net/sched/cls_bpf.c
2751 F:      samples/bpf/
2752 F:      tools/bpf/
2753 F:      tools/testing/selftests/bpf/
2754
2755 BROADCOM B44 10/100 ETHERNET DRIVER
2756 M:      Michael Chan <michael.chan@broadcom.com>
2757 L:      netdev@vger.kernel.org
2758 S:      Supported
2759 F:      drivers/net/ethernet/broadcom/b44.*
2760
2761 BROADCOM B53 ETHERNET SWITCH DRIVER
2762 M:      Florian Fainelli <f.fainelli@gmail.com>
2763 L:      netdev@vger.kernel.org
2764 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2765 S:      Supported
2766 F:      drivers/net/dsa/b53/*
2767 F:      include/linux/platform_data/b53.h
2768
2769 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2770 M:      Florian Fainelli <f.fainelli@gmail.com>
2771 M:      Ray Jui <rjui@broadcom.com>
2772 M:      Scott Branden <sbranden@broadcom.com>
2773 M:      bcm-kernel-feedback-list@broadcom.com
2774 T:      git git://github.com/broadcom/mach-bcm
2775 S:      Maintained
2776 N:      bcm281*
2777 N:      bcm113*
2778 N:      bcm216*
2779 N:      kona
2780 F:      arch/arm/mach-bcm/
2781
2782 BROADCOM BCM2835 ARM ARCHITECTURE
2783 M:      Eric Anholt <eric@anholt.net>
2784 M:      Stefan Wahren <stefan.wahren@i2se.com>
2785 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2787 T:      git git://github.com/anholt/linux
2788 S:      Maintained
2789 N:      bcm2835
2790 F:      drivers/staging/vc04_services
2791
2792 BROADCOM BCM47XX MIPS ARCHITECTURE
2793 M:      Hauke Mehrtens <hauke@hauke-m.de>
2794 M:      Rafał Miłecki <zajec5@gmail.com>
2795 L:      linux-mips@linux-mips.org
2796 S:      Maintained
2797 F:      Documentation/devicetree/bindings/mips/brcm/
2798 F:      arch/mips/bcm47xx/*
2799 F:      arch/mips/include/asm/mach-bcm47xx/*
2800
2801 BROADCOM BCM5301X ARM ARCHITECTURE
2802 M:      Hauke Mehrtens <hauke@hauke-m.de>
2803 M:      Rafał Miłecki <zajec5@gmail.com>
2804 M:      Jon Mason <jonmason@broadcom.com>
2805 M:      bcm-kernel-feedback-list@broadcom.com
2806 L:      linux-arm-kernel@lists.infradead.org
2807 S:      Maintained
2808 F:      arch/arm/mach-bcm/bcm_5301x.c
2809 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2810 F:      arch/arm/boot/dts/bcm470*
2811 F:      arch/arm/boot/dts/bcm953012*
2812
2813 BROADCOM BCM53573 ARM ARCHITECTURE
2814 M:      Rafał Miłecki <rafal@milecki.pl>
2815 L:      linux-arm-kernel@lists.infradead.org
2816 S:      Maintained
2817 F:      arch/arm/boot/dts/bcm53573*
2818 F:      arch/arm/boot/dts/bcm47189*
2819
2820 BROADCOM BCM63XX ARM ARCHITECTURE
2821 M:      Florian Fainelli <f.fainelli@gmail.com>
2822 M:      bcm-kernel-feedback-list@broadcom.com
2823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2824 T:      git git://github.com/broadcom/stblinux.git
2825 S:      Maintained
2826 N:      bcm63xx
2827
2828 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2829 M:      Kevin Cernekee <cernekee@gmail.com>
2830 L:      linux-usb@vger.kernel.org
2831 S:      Maintained
2832 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2833
2834 BROADCOM BCM7XXX ARM ARCHITECTURE
2835 M:      Brian Norris <computersforpeace@gmail.com>
2836 M:      Gregory Fong <gregory.0xf0@gmail.com>
2837 M:      Florian Fainelli <f.fainelli@gmail.com>
2838 M:      bcm-kernel-feedback-list@broadcom.com
2839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2840 T:      git git://github.com/broadcom/stblinux.git
2841 S:      Maintained
2842 F:      arch/arm/mach-bcm/*brcmstb*
2843 F:      arch/arm/boot/dts/bcm7*.dts*
2844 F:      drivers/bus/brcmstb_gisb.c
2845 F:      arch/arm/mm/cache-b15-rac.c
2846 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
2847 N:      brcmstb
2848
2849 BROADCOM BMIPS CPUFREQ DRIVER
2850 M:      Markus Mayer <mmayer@broadcom.com>
2851 M:      bcm-kernel-feedback-list@broadcom.com
2852 L:      linux-pm@vger.kernel.org
2853 S:      Maintained
2854 F:      drivers/cpufreq/bmips-cpufreq.c
2855
2856 BROADCOM BMIPS MIPS ARCHITECTURE
2857 M:      Kevin Cernekee <cernekee@gmail.com>
2858 M:      Florian Fainelli <f.fainelli@gmail.com>
2859 L:      linux-mips@linux-mips.org
2860 T:      git git://github.com/broadcom/stblinux.git
2861 S:      Maintained
2862 F:      arch/mips/bmips/*
2863 F:      arch/mips/include/asm/mach-bmips/*
2864 F:      arch/mips/kernel/*bmips*
2865 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2866 F:      drivers/irqchip/irq-bcm63*
2867 F:      drivers/irqchip/irq-bcm7*
2868 F:      drivers/irqchip/irq-brcmstb*
2869 F:      include/linux/bcm963xx_nvram.h
2870 F:      include/linux/bcm963xx_tag.h
2871
2872 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2873 M:      Rasesh Mody <rasesh.mody@cavium.com>
2874 M:      Harish Patil <harish.patil@cavium.com>
2875 M:      Dept-GELinuxNICDev@cavium.com
2876 L:      netdev@vger.kernel.org
2877 S:      Supported
2878 F:      drivers/net/ethernet/broadcom/bnx2.*
2879 F:      drivers/net/ethernet/broadcom/bnx2_*
2880
2881 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2882 M:      QLogic-Storage-Upstream@qlogic.com
2883 L:      linux-scsi@vger.kernel.org
2884 S:      Supported
2885 F:      drivers/scsi/bnx2fc/
2886
2887 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2888 M:      QLogic-Storage-Upstream@qlogic.com
2889 L:      linux-scsi@vger.kernel.org
2890 S:      Supported
2891 F:      drivers/scsi/bnx2i/
2892
2893 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2894 M:      Ariel Elior <ariel.elior@cavium.com>
2895 M:      everest-linux-l2@cavium.com
2896 L:      netdev@vger.kernel.org
2897 S:      Supported
2898 F:      drivers/net/ethernet/broadcom/bnx2x/
2899
2900 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2901 M:      Michael Chan <michael.chan@broadcom.com>
2902 L:      netdev@vger.kernel.org
2903 S:      Supported
2904 F:      drivers/net/ethernet/broadcom/bnxt/
2905
2906 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2907 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2908 M:      Franky Lin <franky.lin@broadcom.com>
2909 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2910 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2911 M:      Wright Feng <wright.feng@cypress.com>
2912 L:      linux-wireless@vger.kernel.org
2913 L:      brcm80211-dev-list.pdl@broadcom.com
2914 L:      brcm80211-dev-list@cypress.com
2915 S:      Supported
2916 F:      drivers/net/wireless/broadcom/brcm80211/
2917
2918 BROADCOM BRCMSTB GPIO DRIVER
2919 M:      Gregory Fong <gregory.0xf0@gmail.com>
2920 L:      bcm-kernel-feedback-list@broadcom.com
2921 S:      Supported
2922 F:      drivers/gpio/gpio-brcmstb.c
2923 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2924
2925 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
2926 M:      Al Cooper <alcooperx@gmail.com>
2927 L:      linux-kernel@vger.kernel.org
2928 L:      bcm-kernel-feedback-list@broadcom.com
2929 S:      Maintained
2930 F:      drivers/phy/broadcom/phy-brcm-usb*
2931
2932 BROADCOM GENET ETHERNET DRIVER
2933 M:      Doug Berger <opendmb@gmail.com>
2934 M:      Florian Fainelli <f.fainelli@gmail.com>
2935 L:      netdev@vger.kernel.org
2936 S:      Supported
2937 F:      drivers/net/ethernet/broadcom/genet/
2938
2939 BROADCOM IPROC ARM ARCHITECTURE
2940 M:      Ray Jui <rjui@broadcom.com>
2941 M:      Scott Branden <sbranden@broadcom.com>
2942 M:      Jon Mason <jonmason@broadcom.com>
2943 M:      bcm-kernel-feedback-list@broadcom.com
2944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2945 T:      git git://github.com/broadcom/cygnus-linux.git
2946 S:      Maintained
2947 N:      iproc
2948 N:      cygnus
2949 N:      bcm[-_]nsp
2950 N:      bcm9113*
2951 N:      bcm9583*
2952 N:      bcm9585*
2953 N:      bcm9586*
2954 N:      bcm988312
2955 N:      bcm113*
2956 N:      bcm583*
2957 N:      bcm585*
2958 N:      bcm586*
2959 N:      bcm88312
2960 N:      hr2
2961 F:      arch/arm64/boot/dts/broadcom/ns2*
2962 F:      drivers/clk/bcm/clk-ns*
2963 F:      drivers/pinctrl/bcm/pinctrl-ns*
2964
2965 BROADCOM KONA GPIO DRIVER
2966 M:      Ray Jui <rjui@broadcom.com>
2967 L:      bcm-kernel-feedback-list@broadcom.com
2968 S:      Supported
2969 F:      drivers/gpio/gpio-bcm-kona.c
2970 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2971
2972 BROADCOM NETXTREME-E ROCE DRIVER
2973 M:      Selvin Xavier <selvin.xavier@broadcom.com>
2974 M:      Devesh Sharma <devesh.sharma@broadcom.com>
2975 M:      Somnath Kotur <somnath.kotur@broadcom.com>
2976 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2977 L:      linux-rdma@vger.kernel.org
2978 W:      http://www.broadcom.com
2979 S:      Supported
2980 F:      drivers/infiniband/hw/bnxt_re/
2981 F:      include/uapi/rdma/bnxt_re-abi.h
2982
2983 BROADCOM NVRAM DRIVER
2984 M:      Rafał Miłecki <zajec5@gmail.com>
2985 L:      linux-mips@linux-mips.org
2986 S:      Maintained
2987 F:      drivers/firmware/broadcom/*
2988
2989 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2990 M:      Rafał Miłecki <zajec5@gmail.com>
2991 L:      linux-wireless@vger.kernel.org
2992 S:      Maintained
2993 F:      drivers/bcma/
2994 F:      include/linux/bcma/
2995
2996 BROADCOM STB AVS CPUFREQ DRIVER
2997 M:      Markus Mayer <mmayer@broadcom.com>
2998 M:      bcm-kernel-feedback-list@broadcom.com
2999 L:      linux-pm@vger.kernel.org
3000 S:      Maintained
3001 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3002 F:      drivers/cpufreq/brcmstb*
3003
3004 BROADCOM STB AVS TMON DRIVER
3005 M:      Markus Mayer <mmayer@broadcom.com>
3006 M:      bcm-kernel-feedback-list@broadcom.com
3007 L:      linux-pm@vger.kernel.org
3008 S:      Maintained
3009 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3010 F:      drivers/thermal/broadcom/brcmstb*
3011
3012 BROADCOM STB NAND FLASH DRIVER
3013 M:      Brian Norris <computersforpeace@gmail.com>
3014 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3015 L:      linux-mtd@lists.infradead.org
3016 L:      bcm-kernel-feedback-list@broadcom.com
3017 S:      Maintained
3018 F:      drivers/mtd/nand/brcmnand/
3019
3020 BROADCOM STB DPFE DRIVER
3021 M:      Markus Mayer <mmayer@broadcom.com>
3022 M:      bcm-kernel-feedback-list@broadcom.com
3023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3024 S:      Maintained
3025 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.txt
3026 F:      drivers/memory/brcmstb_dpfe.c
3027
3028 BROADCOM SYSTEMPORT ETHERNET DRIVER
3029 M:      Florian Fainelli <f.fainelli@gmail.com>
3030 L:      netdev@vger.kernel.org
3031 S:      Supported
3032 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3033
3034 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3035 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3036 M:      Prashant Sreedharan <prashant@broadcom.com>
3037 M:      Michael Chan <mchan@broadcom.com>
3038 L:      netdev@vger.kernel.org
3039 S:      Supported
3040 F:      drivers/net/ethernet/broadcom/tg3.*
3041
3042 BROCADE BFA FC SCSI DRIVER
3043 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3044 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3045 L:      linux-scsi@vger.kernel.org
3046 S:      Supported
3047 F:      drivers/scsi/bfa/
3048
3049 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3050 M:      Rasesh Mody <rasesh.mody@cavium.com>
3051 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
3052 M:      Dept-GELinuxNICDev@cavium.com
3053 L:      netdev@vger.kernel.org
3054 S:      Supported
3055 F:      drivers/net/ethernet/brocade/bna/
3056
3057 BSG (block layer generic sg v4 driver)
3058 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3059 L:      linux-scsi@vger.kernel.org
3060 S:      Supported
3061 F:      block/bsg.c
3062 F:      include/linux/bsg.h
3063 F:      include/uapi/linux/bsg.h
3064
3065 BT87X AUDIO DRIVER
3066 M:      Clemens Ladisch <clemens@ladisch.de>
3067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3068 T:      git git://git.alsa-project.org/alsa-kernel.git
3069 S:      Maintained
3070 F:      Documentation/sound/alsa/Bt87x.txt
3071 F:      sound/pci/bt87x.c
3072
3073 BT8XXGPIO DRIVER
3074 M:      Michael Buesch <m@bues.ch>
3075 W:      http://bu3sch.de/btgpio.php
3076 S:      Maintained
3077 F:      drivers/gpio/gpio-bt8xx.c
3078
3079 BTRFS FILE SYSTEM
3080 M:      Chris Mason <clm@fb.com>
3081 M:      Josef Bacik <jbacik@fb.com>
3082 M:      David Sterba <dsterba@suse.com>
3083 L:      linux-btrfs@vger.kernel.org
3084 W:      http://btrfs.wiki.kernel.org/
3085 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
3087 S:      Maintained
3088 F:      Documentation/filesystems/btrfs.txt
3089 F:      fs/btrfs/
3090 F:      include/linux/btrfs*
3091 F:      include/uapi/linux/btrfs*
3092
3093 BTTV VIDEO4LINUX DRIVER
3094 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3095 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3096 L:      linux-media@vger.kernel.org
3097 W:      https://linuxtv.org
3098 T:      git git://linuxtv.org/media_tree.git
3099 S:      Odd fixes
3100 F:      Documentation/media/v4l-drivers/bttv*
3101 F:      drivers/media/pci/bt8xx/bttv*
3102
3103 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3104 M:      Chanwoo Choi <cw00.choi@samsung.com>
3105 L:      linux-pm@vger.kernel.org
3106 L:      linux-samsung-soc@vger.kernel.org
3107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3108 S:      Maintained
3109 F:      drivers/devfreq/exynos-bus.c
3110 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3111
3112 BUSLOGIC SCSI DRIVER
3113 M:      Khalid Aziz <khalid@gonehiking.org>
3114 L:      linux-scsi@vger.kernel.org
3115 S:      Maintained
3116 F:      drivers/scsi/BusLogic.*
3117 F:      drivers/scsi/FlashPoint.*
3118
3119 C-MEDIA CMI8788 DRIVER
3120 M:      Clemens Ladisch <clemens@ladisch.de>
3121 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3122 T:      git git://git.alsa-project.org/alsa-kernel.git
3123 S:      Maintained
3124 F:      sound/pci/oxygen/
3125
3126 C6X ARCHITECTURE
3127 M:      Mark Salter <msalter@redhat.com>
3128 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3129 L:      linux-c6x-dev@linux-c6x.org
3130 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3131 S:      Maintained
3132 F:      arch/c6x/
3133
3134 CA8210 IEEE-802.15.4 RADIO DRIVER
3135 M:      Harry Morris <h.morris@cascoda.com>
3136 L:      linux-wpan@vger.kernel.org
3137 W:      https://github.com/Cascoda/ca8210-linux.git
3138 S:      Maintained
3139 F:      drivers/net/ieee802154/ca8210.c
3140 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3141
3142 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3143 M:      David Howells <dhowells@redhat.com>
3144 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3145 S:      Supported
3146 F:      Documentation/filesystems/caching/cachefiles.txt
3147 F:      fs/cachefiles/
3148
3149 CADET FM/AM RADIO RECEIVER DRIVER
3150 M:      Hans Verkuil <hverkuil@xs4all.nl>
3151 L:      linux-media@vger.kernel.org
3152 T:      git git://linuxtv.org/media_tree.git
3153 W:      https://linuxtv.org
3154 S:      Maintained
3155 F:      drivers/media/radio/radio-cadet*
3156
3157 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3158 M:      Jonathan Corbet <corbet@lwn.net>
3159 L:      linux-media@vger.kernel.org
3160 T:      git git://linuxtv.org/media_tree.git
3161 S:      Maintained
3162 F:      Documentation/media/v4l-drivers/cafe_ccic*
3163 F:      drivers/media/platform/marvell-ccic/
3164
3165 CAIF NETWORK LAYER
3166 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3167 L:      netdev@vger.kernel.org
3168 S:      Supported
3169 F:      Documentation/networking/caif/
3170 F:      drivers/net/caif/
3171 F:      include/uapi/linux/caif/
3172 F:      include/net/caif/
3173 F:      net/caif/
3174
3175 CALGARY x86-64 IOMMU
3176 M:      Muli Ben-Yehuda <mulix@mulix.org>
3177 M:      Jon Mason <jdmason@kudzu.us>
3178 L:      iommu@lists.linux-foundation.org
3179 S:      Maintained
3180 F:      arch/x86/kernel/pci-calgary_64.c
3181 F:      arch/x86/kernel/tce_64.c
3182 F:      arch/x86/include/asm/calgary.h
3183 F:      arch/x86/include/asm/tce.h
3184
3185 CAN NETWORK DRIVERS
3186 M:      Wolfgang Grandegger <wg@grandegger.com>
3187 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3188 L:      linux-can@vger.kernel.org
3189 W:      https://github.com/linux-can
3190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3192 S:      Maintained
3193 F:      Documentation/devicetree/bindings/net/can/
3194 F:      drivers/net/can/
3195 F:      include/linux/can/dev.h
3196 F:      include/linux/can/platform/
3197 F:      include/uapi/linux/can/error.h
3198 F:      include/uapi/linux/can/netlink.h
3199
3200 CAN NETWORK LAYER
3201 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3202 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3203 L:      linux-can@vger.kernel.org
3204 W:      https://github.com/linux-can
3205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3207 S:      Maintained
3208 F:      Documentation/networking/can.rst
3209 F:      net/can/
3210 F:      include/linux/can/core.h
3211 F:      include/uapi/linux/can.h
3212 F:      include/uapi/linux/can/bcm.h
3213 F:      include/uapi/linux/can/raw.h
3214 F:      include/uapi/linux/can/gw.h
3215
3216 CAPABILITIES
3217 M:      Serge Hallyn <serge@hallyn.com>
3218 L:      linux-security-module@vger.kernel.org
3219 S:      Supported
3220 F:      include/linux/capability.h
3221 F:      include/uapi/linux/capability.h
3222 F:      security/commoncap.c
3223 F:      kernel/capability.c
3224
3225 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3226 M:      Kevin Tsai <ktsai@capellamicro.com>
3227 S:      Maintained
3228 F:      drivers/iio/light/cm*
3229
3230 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
3231 M:      Christian Lamparter <chunkeey@googlemail.com>
3232 L:      linux-wireless@vger.kernel.org
3233 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
3234 S:      Maintained
3235 F:      drivers/net/wireless/ath/carl9170/
3236
3237 CAVIUM I2C DRIVER
3238 M:      Jan Glauber <jglauber@cavium.com>
3239 M:      David Daney <david.daney@cavium.com>
3240 W:      http://www.cavium.com
3241 S:      Supported
3242 F:      drivers/i2c/busses/i2c-octeon*
3243 F:      drivers/i2c/busses/i2c-thunderx*
3244
3245 CAVIUM LIQUIDIO NETWORK DRIVER
3246 M:      Derek Chickles <derek.chickles@caviumnetworks.com>
3247 M:      Satanand Burla <satananda.burla@caviumnetworks.com>
3248 M:      Felix Manlunas <felix.manlunas@caviumnetworks.com>
3249 M:      Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3250 L:      netdev@vger.kernel.org
3251 W:      http://www.cavium.com
3252 S:      Supported
3253 F:      drivers/net/ethernet/cavium/liquidio/
3254
3255 CAVIUM MMC DRIVER
3256 M:      Jan Glauber <jglauber@cavium.com>
3257 M:      David Daney <david.daney@cavium.com>
3258 M:      Steven J. Hill <Steven.Hill@cavium.com>
3259 W:      http://www.cavium.com
3260 S:      Supported
3261 F:      drivers/mmc/host/cavium*
3262
3263 CAVIUM OCTEON-TX CRYPTO DRIVER
3264 M:      George Cherian <george.cherian@cavium.com>
3265 L:      linux-crypto@vger.kernel.org
3266 W:      http://www.cavium.com
3267 S:      Supported
3268 F:      drivers/crypto/cavium/cpt/
3269
3270 CAVIUM THUNDERX2 ARM64 SOC
3271 M:      Robert Richter <rrichter@cavium.com>
3272 M:      Jayachandran C <jnair@caviumnetworks.com>
3273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3274 S:      Maintained
3275 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3276 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3277
3278 CC2520 IEEE-802.15.4 RADIO DRIVER
3279 M:      Varka Bhadram <varkabhadram@gmail.com>
3280 L:      linux-wpan@vger.kernel.org
3281 S:      Maintained
3282 F:      drivers/net/ieee802154/cc2520.c
3283 F:      include/linux/spi/cc2520.h
3284 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3285
3286 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3287 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3288 L:      linux-crypto@vger.kernel.org
3289 L:      driverdev-devel@linuxdriverproject.org
3290 S:      Supported
3291 F:      drivers/staging/ccree/
3292 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3293
3294 CEC FRAMEWORK
3295 M:      Hans Verkuil <hans.verkuil@cisco.com>
3296 L:      linux-media@vger.kernel.org
3297 T:      git git://linuxtv.org/media_tree.git
3298 W:      http://linuxtv.org
3299 S:      Supported
3300 F:      Documentation/media/kapi/cec-core.rst
3301 F:      Documentation/media/uapi/cec
3302 F:      drivers/media/cec/
3303 F:      drivers/media/rc/keymaps/rc-cec.c
3304 F:      include/media/cec.h
3305 F:      include/media/cec-notifier.h
3306 F:      include/uapi/linux/cec.h
3307 F:      include/uapi/linux/cec-funcs.h
3308 F:      Documentation/devicetree/bindings/media/cec.txt
3309
3310 CEC GPIO DRIVER
3311 M:      Hans Verkuil <hans.verkuil@cisco.com>
3312 L:      linux-media@vger.kernel.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 W:      http://linuxtv.org
3315 S:      Supported
3316 F:      drivers/media/platform/cec-gpio/
3317 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
3318
3319 CELL BROADBAND ENGINE ARCHITECTURE
3320 M:      Arnd Bergmann <arnd@arndb.de>
3321 L:      linuxppc-dev@lists.ozlabs.org
3322 W:      http://www.ibm.com/developerworks/power/cell/
3323 S:      Supported
3324 F:      arch/powerpc/include/asm/cell*.h
3325 F:      arch/powerpc/include/asm/spu*.h
3326 F:      arch/powerpc/include/uapi/asm/spu*.h
3327 F:      arch/powerpc/oprofile/*cell*
3328 F:      arch/powerpc/platforms/cell/
3329
3330 CEPH COMMON CODE (LIBCEPH)
3331 M:      Ilya Dryomov <idryomov@gmail.com>
3332 M:      "Yan, Zheng" <zyan@redhat.com>
3333 M:      Sage Weil <sage@redhat.com>
3334 L:      ceph-devel@vger.kernel.org
3335 W:      http://ceph.com/
3336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3337 T:      git git://github.com/ceph/ceph-client.git
3338 S:      Supported
3339 F:      net/ceph/
3340 F:      include/linux/ceph/
3341 F:      include/linux/crush/
3342
3343 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3344 M:      "Yan, Zheng" <zyan@redhat.com>
3345 M:      Sage Weil <sage@redhat.com>
3346 M:      Ilya Dryomov <idryomov@gmail.com>
3347 L:      ceph-devel@vger.kernel.org
3348 W:      http://ceph.com/
3349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3350 T:      git git://github.com/ceph/ceph-client.git
3351 S:      Supported
3352 F:      Documentation/filesystems/ceph.txt
3353 F:      fs/ceph/
3354
3355 CERTIFICATE HANDLING:
3356 M:      David Howells <dhowells@redhat.com>
3357 M:      David Woodhouse <dwmw2@infradead.org>
3358 L:      keyrings@vger.kernel.org
3359 S:      Maintained
3360 F:      Documentation/module-signing.txt
3361 F:      certs/
3362 F:      scripts/sign-file.c
3363 F:      scripts/extract-cert.c
3364
3365 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3366 L:      linux-usb@vger.kernel.org
3367 S:      Orphan
3368 F:      Documentation/usb/WUSB-Design-overview.txt
3369 F:      Documentation/usb/wusb-cbaf
3370 F:      drivers/usb/host/hwa-hc.c
3371 F:      drivers/usb/host/whci/
3372 F:      drivers/usb/wusbcore/
3373 F:      include/linux/usb/wusb*
3374
3375 CFAG12864B LCD DRIVER
3376 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3377 S:      Maintained
3378 F:      drivers/auxdisplay/cfag12864b.c
3379 F:      include/linux/cfag12864b.h
3380
3381 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3382 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3383 S:      Maintained
3384 F:      drivers/auxdisplay/cfag12864bfb.c
3385 F:      include/linux/cfag12864b.h
3386
3387 802.11 (including CFG80211/NL80211)
3388 M:      Johannes Berg <johannes@sipsolutions.net>
3389 L:      linux-wireless@vger.kernel.org
3390 W:      http://wireless.kernel.org/
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3393 S:      Maintained
3394 F:      net/wireless/
3395 F:      include/uapi/linux/nl80211.h
3396 F:      include/linux/ieee80211.h
3397 F:      include/net/wext.h
3398 F:      include/net/cfg80211.h
3399 F:      include/net/iw_handler.h
3400 F:      include/net/ieee80211_radiotap.h
3401 F:      Documentation/driver-api/80211/cfg80211.rst
3402 F:      Documentation/networking/regulatory.txt
3403
3404 CHAR and MISC DRIVERS
3405 M:      Arnd Bergmann <arnd@arndb.de>
3406 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3408 S:      Supported
3409 F:      drivers/char/
3410 F:      drivers/misc/
3411 F:      include/linux/miscdevice.h
3412
3413 CHECKPATCH
3414 M:      Andy Whitcroft <apw@canonical.com>
3415 M:      Joe Perches <joe@perches.com>
3416 S:      Maintained
3417 F:      scripts/checkpatch.pl
3418
3419 CHINESE DOCUMENTATION
3420 M:      Harry Wei <harryxiyou@gmail.com>
3421 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3422 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3423 S:      Maintained
3424 F:      Documentation/translations/zh_CN/
3425
3426 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3427 M:      Peter Chen <Peter.Chen@nxp.com>
3428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3429 L:      linux-usb@vger.kernel.org
3430 S:      Maintained
3431 F:      drivers/usb/chipidea/
3432
3433 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3434 M:      Hans de Goede <hdegoede@redhat.com>
3435 L:      linux-input@vger.kernel.org
3436 S:      Maintained
3437 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3438 F:      drivers/input/touchscreen/chipone_icn8318.c
3439
3440 CHROME HARDWARE PLATFORM SUPPORT
3441 M:      Benson Leung <bleung@chromium.org>
3442 M:      Olof Johansson <olof@lixom.net>
3443 S:      Maintained
3444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git
3445 F:      drivers/platform/chrome/
3446
3447 CIRRUS LOGIC AUDIO CODEC DRIVERS
3448 M:      Brian Austin <brian.austin@cirrus.com>
3449 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3451 S:      Maintained
3452 F:      sound/soc/codecs/cs*
3453
3454 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3455 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3456 L:      netdev@vger.kernel.org
3457 S:      Maintained
3458 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3459
3460 CISCO FCOE HBA DRIVER
3461 M:      Satish Kharat <satishkh@cisco.com>
3462 M:      Sesidhar Baddela <sebaddel@cisco.com>
3463 M:      Karan Tilak Kumar <kartilak@cisco.com>
3464 L:      linux-scsi@vger.kernel.org
3465 S:      Supported
3466 F:      drivers/scsi/fnic/
3467
3468 CISCO SCSI HBA DRIVER
3469 M:      Karan Tilak Kumar <kartilak@cisco.com>
3470 M:      Sesidhar Baddela <sebaddel@cisco.com>
3471 L:      linux-scsi@vger.kernel.org
3472 S:      Supported
3473 F:      drivers/scsi/snic/
3474
3475 CISCO VIC ETHERNET NIC DRIVER
3476 M:      Christian Benvenuti <benve@cisco.com>
3477 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3478 M:      Parvi Kaustubhi <pkaustub@cisco.com>
3479 S:      Supported
3480 F:      drivers/net/ethernet/cisco/enic/
3481
3482 CISCO VIC LOW LATENCY NIC DRIVER
3483 M:      Christian Benvenuti <benve@cisco.com>
3484 M:      Dave Goodell <dgoodell@cisco.com>
3485 S:      Supported
3486 F:      drivers/infiniband/hw/usnic/
3487
3488 CLEANCACHE API
3489 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3490 L:      linux-kernel@vger.kernel.org
3491 S:      Maintained
3492 F:      mm/cleancache.c
3493 F:      include/linux/cleancache.h
3494
3495 CLK API
3496 M:      Russell King <linux@armlinux.org.uk>
3497 L:      linux-clk@vger.kernel.org
3498 S:      Maintained
3499 F:      include/linux/clk.h
3500
3501 CLOCKSOURCE, CLOCKEVENT DRIVERS
3502 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3503 M:      Thomas Gleixner <tglx@linutronix.de>
3504 L:      linux-kernel@vger.kernel.org
3505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3506 S:      Supported
3507 F:      drivers/clocksource/
3508 F:      Documentation/devicetree/bindings/timer/
3509
3510 CMPC ACPI DRIVER
3511 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3512 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3513 L:      platform-driver-x86@vger.kernel.org
3514 S:      Supported
3515 F:      drivers/platform/x86/classmate-laptop.c
3516
3517 COBALT MEDIA DRIVER
3518 M:      Hans Verkuil <hans.verkuil@cisco.com>
3519 L:      linux-media@vger.kernel.org
3520 T:      git git://linuxtv.org/media_tree.git
3521 W:      https://linuxtv.org
3522 S:      Supported
3523 F:      drivers/media/pci/cobalt/
3524
3525 COCCINELLE/Semantic Patches (SmPL)
3526 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3527 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3528 M:      Nicolas Palix <nicolas.palix@imag.fr>
3529 M:      Michal Marek <michal.lkml@markovi.net>
3530 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3532 W:      http://coccinelle.lip6.fr/
3533 S:      Supported
3534 F:      Documentation/dev-tools/coccinelle.rst
3535 F:      scripts/coccinelle/
3536 F:      scripts/coccicheck
3537
3538 CODA FILE SYSTEM
3539 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3540 M:      coda@cs.cmu.edu
3541 L:      codalist@coda.cs.cmu.edu
3542 W:      http://www.coda.cs.cmu.edu/
3543 S:      Maintained
3544 F:      Documentation/filesystems/coda.txt
3545 F:      fs/coda/
3546 F:      include/linux/coda*.h
3547 F:      include/uapi/linux/coda*.h
3548
3549 CODA V4L2 MEM2MEM DRIVER
3550 M:      Philipp Zabel <p.zabel@pengutronix.de>
3551 L:      linux-media@vger.kernel.org
3552 S:      Maintained
3553 F:      Documentation/devicetree/bindings/media/coda.txt
3554 F:      drivers/media/platform/coda/
3555
3556 COMMON CLK FRAMEWORK
3557 M:      Michael Turquette <mturquette@baylibre.com>
3558 M:      Stephen Boyd <sboyd@kernel.org>
3559 L:      linux-clk@vger.kernel.org
3560 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3562 S:      Maintained
3563 F:      Documentation/devicetree/bindings/clock/
3564 F:      drivers/clk/
3565 X:      drivers/clk/clkdev.c
3566 F:      include/linux/clk-pr*
3567 F:      include/linux/clk/
3568
3569 COMMON INTERNET FILE SYSTEM (CIFS)
3570 M:      Steve French <sfrench@samba.org>
3571 L:      linux-cifs@vger.kernel.org
3572 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3573 W:      http://linux-cifs.samba.org/
3574 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3575 S:      Supported
3576 F:      Documentation/filesystems/cifs/
3577 F:      fs/cifs/
3578
3579 COMPACTPCI HOTPLUG CORE
3580 M:      Scott Murray <scott@spiteful.org>
3581 L:      linux-pci@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/pci/hotplug/cpci_hotplug*
3584
3585 COMPACTPCI HOTPLUG GENERIC DRIVER
3586 M:      Scott Murray <scott@spiteful.org>
3587 L:      linux-pci@vger.kernel.org
3588 S:      Maintained
3589 F:      drivers/pci/hotplug/cpcihp_generic.c
3590
3591 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3592 M:      Scott Murray <scott@spiteful.org>
3593 L:      linux-pci@vger.kernel.org
3594 S:      Maintained
3595 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3596
3597 COMPAL LAPTOP SUPPORT
3598 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3599 L:      platform-driver-x86@vger.kernel.org
3600 S:      Maintained
3601 F:      drivers/platform/x86/compal-laptop.c
3602
3603 CONEXANT ACCESSRUNNER USB DRIVER
3604 L:      accessrunner-general@lists.sourceforge.net
3605 W:      http://accessrunner.sourceforge.net/
3606 S:      Orphan
3607 F:      drivers/usb/atm/cxacru.c
3608
3609 CONFIGFS
3610 M:      Joel Becker <jlbec@evilplan.org>
3611 M:      Christoph Hellwig <hch@lst.de>
3612 T:      git git://git.infradead.org/users/hch/configfs.git
3613 S:      Supported
3614 F:      fs/configfs/
3615 F:      include/linux/configfs.h
3616
3617 CONNECTOR
3618 M:      Evgeniy Polyakov <zbr@ioremap.net>
3619 L:      netdev@vger.kernel.org
3620 S:      Maintained
3621 F:      drivers/connector/
3622
3623 CONTROL GROUP (CGROUP)
3624 M:      Tejun Heo <tj@kernel.org>
3625 M:      Li Zefan <lizefan@huawei.com>
3626 M:      Johannes Weiner <hannes@cmpxchg.org>
3627 L:      cgroups@vger.kernel.org
3628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3629 S:      Maintained
3630 F:      Documentation/cgroup*
3631 F:      include/linux/cgroup*
3632 F:      kernel/cgroup*
3633
3634 CONTROL GROUP - CPUSET
3635 M:      Li Zefan <lizefan@huawei.com>
3636 L:      cgroups@vger.kernel.org
3637 W:      http://www.bullopensource.org/cpuset/
3638 W:      http://oss.sgi.com/projects/cpusets/
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3640 S:      Maintained
3641 F:      Documentation/cgroup-v1/cpusets.txt
3642 F:      include/linux/cpuset.h
3643 F:      kernel/cgroup/cpuset.c
3644
3645 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3646 M:      Johannes Weiner <hannes@cmpxchg.org>
3647 M:      Michal Hocko <mhocko@kernel.org>
3648 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3649 L:      cgroups@vger.kernel.org
3650 L:      linux-mm@kvack.org
3651 S:      Maintained
3652 F:      mm/memcontrol.c
3653 F:      mm/swap_cgroup.c
3654
3655 CORETEMP HARDWARE MONITORING DRIVER
3656 M:      Fenghua Yu <fenghua.yu@intel.com>
3657 L:      linux-hwmon@vger.kernel.org
3658 S:      Maintained
3659 F:      Documentation/hwmon/coretemp
3660 F:      drivers/hwmon/coretemp.c
3661
3662 COSA/SRP SYNC SERIAL DRIVER
3663 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3664 W:      http://www.fi.muni.cz/~kas/cosa/
3665 S:      Maintained
3666 F:      drivers/net/wan/cosa*
3667
3668 CPMAC ETHERNET DRIVER
3669 M:      Florian Fainelli <f.fainelli@gmail.com>
3670 L:      netdev@vger.kernel.org
3671 S:      Maintained
3672 F:      drivers/net/ethernet/ti/cpmac.c
3673
3674 CPU FREQUENCY DRIVERS
3675 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3676 M:      Viresh Kumar <viresh.kumar@linaro.org>
3677 L:      linux-pm@vger.kernel.org
3678 S:      Maintained
3679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3680 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3681 B:      https://bugzilla.kernel.org
3682 F:      Documentation/cpu-freq/
3683 F:      Documentation/devicetree/bindings/cpufreq/
3684 F:      drivers/cpufreq/
3685 F:      include/linux/cpufreq.h
3686 F:      tools/testing/selftests/cpufreq/
3687
3688 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3689 M:      Viresh Kumar <viresh.kumar@linaro.org>
3690 M:      Sudeep Holla <sudeep.holla@arm.com>
3691 L:      linux-pm@vger.kernel.org
3692 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3693 S:      Maintained
3694 F:      drivers/cpufreq/arm_big_little.h
3695 F:      drivers/cpufreq/arm_big_little.c
3696 F:      drivers/cpufreq/arm_big_little_dt.c
3697
3698 CPU POWER MONITORING SUBSYSTEM
3699 M:      Thomas Renninger <trenn@suse.com>
3700 M:      Shuah Khan <shuahkh@osg.samsung.com>
3701 M:      Shuah Khan <shuah@kernel.org>
3702 L:      linux-pm@vger.kernel.org
3703 S:      Maintained
3704 F:      tools/power/cpupower/
3705
3706 CPUID/MSR DRIVER
3707 M:      "H. Peter Anvin" <hpa@zytor.com>
3708 S:      Maintained
3709 F:      arch/x86/kernel/cpuid.c
3710 F:      arch/x86/kernel/msr.c
3711
3712 CPUIDLE DRIVER - ARM BIG LITTLE
3713 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3714 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3715 L:      linux-pm@vger.kernel.org
3716 L:      linux-arm-kernel@lists.infradead.org
3717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3718 S:      Maintained
3719 F:      drivers/cpuidle/cpuidle-big_little.c
3720
3721 CPUIDLE DRIVER - ARM EXYNOS
3722 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3723 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3724 M:      Kukjin Kim <kgene@kernel.org>
3725 L:      linux-pm@vger.kernel.org
3726 L:      linux-samsung-soc@vger.kernel.org
3727 S:      Supported
3728 F:      drivers/cpuidle/cpuidle-exynos.c
3729 F:      arch/arm/mach-exynos/pm.c
3730
3731 CPUIDLE DRIVERS
3732 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3733 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3734 L:      linux-pm@vger.kernel.org
3735 S:      Maintained
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3737 B:      https://bugzilla.kernel.org
3738 F:      drivers/cpuidle/*
3739 F:      include/linux/cpuidle.h
3740
3741 CRAMFS FILESYSTEM
3742 M:      Nicolas Pitre <nico@linaro.org>
3743 S:      Maintained
3744 F:      Documentation/filesystems/cramfs.txt
3745 F:      fs/cramfs/
3746
3747 CRIS PORT
3748 M:      Mikael Starvik <starvik@axis.com>
3749 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3750 L:      linux-cris-kernel@axis.com
3751 W:      http://developer.axis.com
3752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3753 S:      Maintained
3754 F:      arch/cris/
3755 F:      drivers/tty/serial/crisv10.*
3756
3757 CRYPTO API
3758 M:      Herbert Xu <herbert@gondor.apana.org.au>
3759 M:      "David S. Miller" <davem@davemloft.net>
3760 L:      linux-crypto@vger.kernel.org
3761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3763 S:      Maintained
3764 F:      Documentation/crypto/
3765 F:      Documentation/devicetree/bindings/crypto/
3766 F:      arch/*/crypto/
3767 F:      crypto/
3768 F:      drivers/crypto/
3769 F:      include/crypto/
3770 F:      include/linux/crypto*
3771
3772 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3773 M:      Neil Horman <nhorman@tuxdriver.com>
3774 L:      linux-crypto@vger.kernel.org
3775 S:      Maintained
3776 F:      crypto/ansi_cprng.c
3777 F:      crypto/rng.c
3778
3779 CS3308 MEDIA DRIVER
3780 M:      Hans Verkuil <hverkuil@xs4all.nl>
3781 L:      linux-media@vger.kernel.org
3782 T:      git git://linuxtv.org/media_tree.git
3783 W:      http://linuxtv.org
3784 S:      Odd Fixes
3785 F:      drivers/media/i2c/cs3308.c
3786 F:      drivers/media/i2c/cs3308.h
3787
3788 CS5535 Audio ALSA driver
3789 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3790 S:      Maintained
3791 F:      sound/pci/cs5535audio/
3792
3793 CW1200 WLAN driver
3794 M:      Solomon Peachy <pizza@shaftnet.org>
3795 S:      Maintained
3796 F:      drivers/net/wireless/st/cw1200/
3797
3798 CX18 VIDEO4LINUX DRIVER
3799 M:      Andy Walls <awalls@md.metrocast.net>
3800 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3801 L:      linux-media@vger.kernel.org
3802 T:      git git://linuxtv.org/media_tree.git
3803 W:      https://linuxtv.org
3804 W:      http://www.ivtvdriver.org/index.php/Cx18
3805 S:      Maintained
3806 F:      Documentation/media/v4l-drivers/cx18*
3807 F:      drivers/media/pci/cx18/
3808 F:      include/uapi/linux/ivtv*
3809
3810 CX2341X MPEG ENCODER HELPER MODULE
3811 M:      Hans Verkuil <hverkuil@xs4all.nl>
3812 L:      linux-media@vger.kernel.org
3813 T:      git git://linuxtv.org/media_tree.git
3814 W:      https://linuxtv.org
3815 S:      Maintained
3816 F:      drivers/media/common/cx2341x*
3817 F:      include/media/cx2341x*
3818
3819 CX24120 MEDIA DRIVER
3820 M:      Jemma Denson <jdenson@gmail.com>
3821 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3822 L:      linux-media@vger.kernel.org
3823 W:      https://linuxtv.org
3824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3825 S:      Maintained
3826 F:      drivers/media/dvb-frontends/cx24120*
3827
3828 CX88 VIDEO4LINUX DRIVER
3829 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3830 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3831 L:      linux-media@vger.kernel.org
3832 W:      https://linuxtv.org
3833 T:      git git://linuxtv.org/media_tree.git
3834 S:      Odd fixes
3835 F:      Documentation/media/v4l-drivers/cx88*
3836 F:      drivers/media/pci/cx88/
3837
3838 CXD2820R MEDIA DRIVER
3839 M:      Antti Palosaari <crope@iki.fi>
3840 L:      linux-media@vger.kernel.org
3841 W:      https://linuxtv.org
3842 W:      http://palosaari.fi/linux/
3843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3844 T:      git git://linuxtv.org/anttip/media_tree.git
3845 S:      Maintained
3846 F:      drivers/media/dvb-frontends/cxd2820r*
3847
3848 CXGB3 ETHERNET DRIVER (CXGB3)
3849 M:      Santosh Raspatur <santosh@chelsio.com>
3850 L:      netdev@vger.kernel.org
3851 W:      http://www.chelsio.com
3852 S:      Supported
3853 F:      drivers/net/ethernet/chelsio/cxgb3/
3854
3855 CXGB3 ISCSI DRIVER (CXGB3I)
3856 M:      Karen Xie <kxie@chelsio.com>
3857 L:      linux-scsi@vger.kernel.org
3858 W:      http://www.chelsio.com
3859 S:      Supported
3860 F:      drivers/scsi/cxgbi/cxgb3i
3861
3862 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3863 M:      Steve Wise <swise@chelsio.com>
3864 L:      linux-rdma@vger.kernel.org
3865 W:      http://www.openfabrics.org
3866 S:      Supported
3867 F:      drivers/infiniband/hw/cxgb3/
3868 F:      include/uapi/rdma/cxgb3-abi.h
3869
3870 CXGB4 CRYPTO DRIVER (chcr)
3871 M:      Harsh Jain <harsh@chelsio.com>
3872 L:      linux-crypto@vger.kernel.org
3873 W:      http://www.chelsio.com
3874 S:      Supported
3875 F:      drivers/crypto/chelsio
3876
3877 CXGB4 ETHERNET DRIVER (CXGB4)
3878 M:      Ganesh Goudar <ganeshgr@chelsio.com>
3879 L:      netdev@vger.kernel.org
3880 W:      http://www.chelsio.com
3881 S:      Supported
3882 F:      drivers/net/ethernet/chelsio/cxgb4/
3883
3884 CXGB4 ISCSI DRIVER (CXGB4I)
3885 M:      Karen Xie <kxie@chelsio.com>
3886 L:      linux-scsi@vger.kernel.org
3887 W:      http://www.chelsio.com
3888 S:      Supported
3889 F:      drivers/scsi/cxgbi/cxgb4i
3890
3891 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3892 M:      Steve Wise <swise@chelsio.com>
3893 L:      linux-rdma@vger.kernel.org
3894 W:      http://www.openfabrics.org
3895 S:      Supported
3896 F:      drivers/infiniband/hw/cxgb4/
3897 F:      include/uapi/rdma/cxgb4-abi.h
3898
3899 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3900 M:      Casey Leedom <leedom@chelsio.com>
3901 L:      netdev@vger.kernel.org
3902 W:      http://www.chelsio.com
3903 S:      Supported
3904 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3905
3906 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3907 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3908 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3909 L:      linuxppc-dev@lists.ozlabs.org
3910 S:      Supported
3911 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3912 F:      drivers/misc/cxl/
3913 F:      include/misc/cxl*
3914 F:      include/uapi/misc/cxl.h
3915 F:      Documentation/powerpc/cxl.txt
3916 F:      Documentation/ABI/testing/sysfs-class-cxl
3917
3918 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3919 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3920 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3921 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3922 L:      linux-scsi@vger.kernel.org
3923 S:      Supported
3924 F:      drivers/scsi/cxlflash/
3925 F:      include/uapi/scsi/cxlflash_ioctls.h
3926 F:      Documentation/powerpc/cxlflash.txt
3927
3928 CYBERPRO FB DRIVER
3929 M:      Russell King <linux@armlinux.org.uk>
3930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3931 W:      http://www.armlinux.org.uk/
3932 S:      Maintained
3933 F:      drivers/video/fbdev/cyber2000fb.*
3934
3935 CYCLADES ASYNC MUX DRIVER
3936 W:      http://www.cyclades.com/
3937 S:      Orphan
3938 F:      drivers/tty/cyclades.c
3939 F:      include/linux/cyclades.h
3940 F:      include/uapi/linux/cyclades.h
3941
3942 CYCLADES PC300 DRIVER
3943 W:      http://www.cyclades.com/
3944 S:      Orphan
3945 F:      drivers/net/wan/pc300*
3946
3947 CYPRESS_FIRMWARE MEDIA DRIVER
3948 M:      Antti Palosaari <crope@iki.fi>
3949 L:      linux-media@vger.kernel.org
3950 W:      https://linuxtv.org
3951 W:      http://palosaari.fi/linux/
3952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3953 T:      git git://linuxtv.org/anttip/media_tree.git
3954 S:      Maintained
3955 F:      drivers/media/common/cypress_firmware*
3956
3957 CYTTSP TOUCHSCREEN DRIVER
3958 M:      Ferruh Yigit <fery@cypress.com>
3959 L:      linux-input@vger.kernel.org
3960 S:      Supported
3961 F:      drivers/input/touchscreen/cyttsp*
3962 F:      include/linux/input/cyttsp.h
3963
3964 D-LINK DIR-685 TOUCHKEYS DRIVER
3965 M:      Linus Walleij <linus.walleij@linaro.org>
3966 L:      linux-input@vger.kernel.org
3967 S:      Supported
3968 F:      drivers/input/dlink-dir685-touchkeys.c
3969
3970 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3971 M:      Joshua Kinard <kumba@gentoo.org>
3972 S:      Maintained
3973 F:      drivers/rtc/rtc-ds1685.c
3974 F:      include/linux/rtc/ds1685.h
3975
3976 DAMA SLAVE for AX.25
3977 M:      Joerg Reuter <jreuter@yaina.de>
3978 W:      http://yaina.de/jreuter/
3979 W:      http://www.qsl.net/dl1bke/
3980 L:      linux-hams@vger.kernel.org
3981 S:      Maintained
3982 F:      net/ax25/af_ax25.c
3983 F:      net/ax25/ax25_dev.c
3984 F:      net/ax25/ax25_ds_*
3985 F:      net/ax25/ax25_in.c
3986 F:      net/ax25/ax25_out.c
3987 F:      net/ax25/ax25_timer.c
3988 F:      net/ax25/sysctl_net_ax25.c
3989
3990 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3991 L:      netdev@vger.kernel.org
3992 S:      Orphan
3993 F:      Documentation/networking/dmfe.txt
3994 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3995
3996 DC390/AM53C974 SCSI driver
3997 M:      Hannes Reinecke <hare@suse.com>
3998 L:      linux-scsi@vger.kernel.org
3999 S:      Maintained
4000 F:      drivers/scsi/am53c974.c
4001
4002 DC395x SCSI driver
4003 M:      Oliver Neukum <oliver@neukum.org>
4004 M:      Ali Akcaagac <aliakc@web.de>
4005 M:      Jamie Lenehan <lenehan@twibble.org>
4006 L:      dc395x@twibble.org
4007 W:      http://twibble.org/dist/dc395x/
4008 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
4009 S:      Maintained
4010 F:      Documentation/scsi/dc395x.txt
4011 F:      drivers/scsi/dc395x.*
4012
4013 DCCP PROTOCOL
4014 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
4015 L:      dccp@vger.kernel.org
4016 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
4017 S:      Maintained
4018 F:      include/linux/dccp.h
4019 F:      include/uapi/linux/dccp.h
4020 F:      include/linux/tfrc.h
4021 F:      net/dccp/
4022
4023 DECnet NETWORK LAYER
4024 W:      http://linux-decnet.sourceforge.net
4025 L:      linux-decnet-user@lists.sourceforge.net
4026 S:      Orphan
4027 F:      Documentation/networking/decnet.txt
4028 F:      net/decnet/
4029
4030 DECSTATION PLATFORM SUPPORT
4031 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4032 L:      linux-mips@linux-mips.org
4033 W:      http://www.linux-mips.org/wiki/DECstation
4034 S:      Maintained
4035 F:      arch/mips/dec/
4036 F:      arch/mips/include/asm/dec/
4037 F:      arch/mips/include/asm/mach-dec/
4038
4039 DEFXX FDDI NETWORK DRIVER
4040 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4041 S:      Maintained
4042 F:      drivers/net/fddi/defxx.*
4043
4044 DELL SMBIOS DRIVER
4045 M:      Pali Rohár <pali.rohar@gmail.com>
4046 M:      Mario Limonciello <mario.limonciello@dell.com>
4047 L:      platform-driver-x86@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/platform/x86/dell-smbios.*
4050
4051 DELL SMBIOS SMM DRIVER
4052 M:      Mario Limonciello <mario.limonciello@dell.com>
4053 L:      platform-driver-x86@vger.kernel.org
4054 S:      Maintained
4055 F:      drivers/platform/x86/dell-smbios-smm.c
4056
4057 DELL SMBIOS WMI DRIVER
4058 M:      Mario Limonciello <mario.limonciello@dell.com>
4059 L:      platform-driver-x86@vger.kernel.org
4060 S:      Maintained
4061 F:      drivers/platform/x86/dell-smbios-wmi.c
4062 F:      tools/wmi/dell-smbios-example.c
4063
4064 DELL LAPTOP DRIVER
4065 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4066 M:      Pali Rohár <pali.rohar@gmail.com>
4067 L:      platform-driver-x86@vger.kernel.org
4068 S:      Maintained
4069 F:      drivers/platform/x86/dell-laptop.c
4070
4071 DELL LAPTOP FREEFALL DRIVER
4072 M:      Pali Rohár <pali.rohar@gmail.com>
4073 S:      Maintained
4074 F:      drivers/platform/x86/dell-smo8800.c
4075
4076 DELL LAPTOP RBTN DRIVER
4077 M:      Pali Rohár <pali.rohar@gmail.com>
4078 S:      Maintained
4079 F:      drivers/platform/x86/dell-rbtn.*
4080
4081 DELL LAPTOP SMM DRIVER
4082 M:      Pali Rohár <pali.rohar@gmail.com>
4083 S:      Maintained
4084 F:      drivers/hwmon/dell-smm-hwmon.c
4085 F:      include/uapi/linux/i8k.h
4086
4087 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
4088 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
4089 S:      Maintained
4090 F:      Documentation/dcdbas.txt
4091 F:      drivers/firmware/dcdbas.*
4092
4093 DELL WMI NOTIFICATIONS DRIVER
4094 M:      Matthew Garrett <mjg59@srcf.ucam.org>
4095 M:      Pali Rohár <pali.rohar@gmail.com>
4096 S:      Maintained
4097 F:      drivers/platform/x86/dell-wmi.c
4098
4099 DELL WMI DESCRIPTOR DRIVER
4100 M:      Mario Limonciello <mario.limonciello@dell.com>
4101 S:      Maintained
4102 F:      drivers/platform/x86/dell-wmi-descriptor.c
4103
4104 DELTA ST MEDIA DRIVER
4105 M:      Hugues Fruchet <hugues.fruchet@st.com>
4106 L:      linux-media@vger.kernel.org
4107 T:      git git://linuxtv.org/media_tree.git
4108 W:      https://linuxtv.org
4109 S:      Supported
4110 F:      drivers/media/platform/sti/delta
4111
4112 DENALI NAND DRIVER
4113 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
4114 L:      linux-mtd@lists.infradead.org
4115 S:      Supported
4116 F:      drivers/mtd/nand/denali*
4117
4118 DESIGNWARE USB2 DRD IP DRIVER
4119 M:      John Youn <johnyoun@synopsys.com>
4120 L:      linux-usb@vger.kernel.org
4121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4122 S:      Maintained
4123 F:      drivers/usb/dwc2/
4124
4125 DESIGNWARE USB3 DRD IP DRIVER
4126 M:      Felipe Balbi <balbi@kernel.org>
4127 L:      linux-usb@vger.kernel.org
4128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
4129 S:      Maintained
4130 F:      drivers/usb/dwc3/
4131
4132 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
4133 M:      Andreas Klinger <ak@it-klinger.de>
4134 L:      linux-iio@vger.kernel.org
4135 S:      Maintained
4136 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
4137 F:      drivers/iio/proximity/srf*.c
4138
4139 DEVICE COREDUMP (DEV_COREDUMP)
4140 M:      Johannes Berg <johannes@sipsolutions.net>
4141 L:      linux-kernel@vger.kernel.org
4142 S:      Maintained
4143 F:      drivers/base/devcoredump.c
4144 F:      include/linux/devcoredump.h
4145
4146 DEVICE FREQUENCY (DEVFREQ)
4147 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4148 M:      Kyungmin Park <kyungmin.park@samsung.com>
4149 R:      Chanwoo Choi <cw00.choi@samsung.com>
4150 L:      linux-pm@vger.kernel.org
4151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4152 S:      Maintained
4153 F:      drivers/devfreq/
4154 F:      include/linux/devfreq.h
4155 F:      Documentation/devicetree/bindings/devfreq/
4156
4157 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4158 M:      Chanwoo Choi <cw00.choi@samsung.com>
4159 L:      linux-pm@vger.kernel.org
4160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4161 S:      Supported
4162 F:      drivers/devfreq/event/
4163 F:      drivers/devfreq/devfreq-event.c
4164 F:      include/linux/devfreq-event.h
4165 F:      Documentation/devicetree/bindings/devfreq/event/
4166
4167 DEVICE NUMBER REGISTRY
4168 M:      Torben Mathiasen <device@lanana.org>
4169 W:      http://lanana.org/docs/device-list/index.html
4170 S:      Maintained
4171
4172 DEVICE-MAPPER  (LVM)
4173 M:      Alasdair Kergon <agk@redhat.com>
4174 M:      Mike Snitzer <snitzer@redhat.com>
4175 M:      dm-devel@redhat.com
4176 L:      dm-devel@redhat.com
4177 W:      http://sources.redhat.com/dm
4178 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4180 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4181 S:      Maintained
4182 F:      Documentation/device-mapper/
4183 F:      drivers/md/Makefile
4184 F:      drivers/md/Kconfig
4185 F:      drivers/md/dm*
4186 F:      drivers/md/persistent-data/
4187 F:      include/linux/device-mapper.h
4188 F:      include/linux/dm-*.h
4189 F:      include/uapi/linux/dm-*.h
4190
4191 DEVLINK
4192 M:      Jiri Pirko <jiri@mellanox.com>
4193 L:      netdev@vger.kernel.org
4194 S:      Supported
4195 F:      net/core/devlink.c
4196 F:      include/net/devlink.h
4197 F:      include/uapi/linux/devlink.h
4198
4199 DIALOG SEMICONDUCTOR DRIVERS
4200 M:      Support Opensource <support.opensource@diasemi.com>
4201 W:      http://www.dialog-semiconductor.com/products
4202 S:      Supported
4203 F:      Documentation/hwmon/da90??
4204 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4205 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4206 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4207 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4208 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
4209 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4210 F:      drivers/gpio/gpio-da90??.c
4211 F:      drivers/hwmon/da90??-hwmon.c
4212 F:      drivers/iio/adc/da91??-*.c
4213 F:      drivers/input/misc/da90??_onkey.c
4214 F:      drivers/input/touchscreen/da9052_tsi.c
4215 F:      drivers/leds/leds-da90??.c
4216 F:      drivers/mfd/da903x.c
4217 F:      drivers/mfd/da90??-*.c
4218 F:      drivers/mfd/da91??-*.c
4219 F:      drivers/power/supply/da9052-battery.c
4220 F:      drivers/power/supply/da91??-*.c
4221 F:      drivers/regulator/da903x.c
4222 F:      drivers/regulator/da9???-regulator.[ch]
4223 F:      drivers/thermal/da90??-thermal.c
4224 F:      drivers/rtc/rtc-da90??.c
4225 F:      drivers/video/backlight/da90??_bl.c
4226 F:      drivers/watchdog/da90??_wdt.c
4227 F:      include/linux/mfd/da903x.h
4228 F:      include/linux/mfd/da9052/
4229 F:      include/linux/mfd/da9055/
4230 F:      include/linux/mfd/da9062/
4231 F:      include/linux/mfd/da9063/
4232 F:      include/linux/mfd/da9150/
4233 F:      include/linux/regulator/da9211.h
4234 F:      include/sound/da[79]*.h
4235 F:      sound/soc/codecs/da[79]*.[ch]
4236
4237 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4238 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4239 L:      linux-gpio@vger.kernel.org
4240 S:      Maintained
4241 F:      drivers/gpio/gpio-gpio-mm.c
4242
4243 DIGI NEO AND CLASSIC PCI PRODUCTS
4244 M:      Lidza Louina <lidza.louina@gmail.com>
4245 M:      Mark Hounschell <markh@compro.net>
4246 L:      driverdev-devel@linuxdriverproject.org
4247 S:      Maintained
4248 F:      drivers/staging/dgnc/
4249
4250 DIOLAN U2C-12 I2C DRIVER
4251 M:      Guenter Roeck <linux@roeck-us.net>
4252 L:      linux-i2c@vger.kernel.org
4253 S:      Maintained
4254 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4255
4256 FILESYSTEM DIRECT ACCESS (DAX)
4257 M:      Matthew Wilcox <mawilcox@microsoft.com>
4258 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
4259 L:      linux-fsdevel@vger.kernel.org
4260 S:      Supported
4261 F:      fs/dax.c
4262 F:      include/linux/dax.h
4263 F:      include/trace/events/fs_dax.h
4264
4265 DEVICE DIRECT ACCESS (DAX)
4266 M:      Dan Williams <dan.j.williams@intel.com>
4267 L:      linux-nvdimm@lists.01.org
4268 S:      Supported
4269 F:      drivers/dax/
4270
4271 DIRECTORY NOTIFICATION (DNOTIFY)
4272 M:      Jan Kara <jack@suse.cz>
4273 R:      Amir Goldstein <amir73il@gmail.com>
4274 L:      linux-fsdevel@vger.kernel.org
4275 S:      Maintained
4276 F:      Documentation/filesystems/dnotify.txt
4277 F:      fs/notify/dnotify/
4278 F:      include/linux/dnotify.h
4279
4280 DISK GEOMETRY AND PARTITION HANDLING
4281 M:      Andries Brouwer <aeb@cwi.nl>
4282 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4283 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4284 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4285 S:      Maintained
4286
4287 DISKQUOTA
4288 M:      Jan Kara <jack@suse.com>
4289 S:      Maintained
4290 F:      Documentation/filesystems/quota.txt
4291 F:      fs/quota/
4292 F:      include/linux/quota*.h
4293 F:      include/uapi/linux/quota*.h
4294
4295 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4296 M:      Bernie Thompson <bernie@plugable.com>
4297 L:      linux-fbdev@vger.kernel.org
4298 S:      Maintained
4299 W:      http://plugable.com/category/projects/udlfb/
4300 F:      drivers/video/fbdev/udlfb.c
4301 F:      include/video/udlfb.h
4302 F:      Documentation/fb/udlfb.txt
4303
4304 DISTRIBUTED LOCK MANAGER (DLM)
4305 M:      Christine Caulfield <ccaulfie@redhat.com>
4306 M:      David Teigland <teigland@redhat.com>
4307 L:      cluster-devel@redhat.com
4308 W:      http://sources.redhat.com/cluster/
4309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4310 S:      Supported
4311 F:      fs/dlm/
4312
4313 DMA BUFFER SHARING FRAMEWORK
4314 M:      Sumit Semwal <sumit.semwal@linaro.org>
4315 S:      Maintained
4316 L:      linux-media@vger.kernel.org
4317 L:      dri-devel@lists.freedesktop.org
4318 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4319 F:      drivers/dma-buf/
4320 F:      include/linux/dma-buf*
4321 F:      include/linux/reservation.h
4322 F:      include/linux/*fence.h
4323 F:      Documentation/driver-api/dma-buf.rst
4324 T:      git git://anongit.freedesktop.org/drm/drm-misc
4325
4326 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4327 M:      Vinod Koul <vinod.koul@intel.com>
4328 L:      dmaengine@vger.kernel.org
4329 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4330 S:      Maintained
4331 F:      drivers/dma/
4332 F:      include/linux/dmaengine.h
4333 F:      Documentation/devicetree/bindings/dma/
4334 F:      Documentation/driver-api/dmaengine/
4335 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4336
4337 DMA MAPPING HELPERS
4338 M:      Christoph Hellwig <hch@lst.de>
4339 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4340 R:      Robin Murphy <robin.murphy@arm.com>
4341 L:      iommu@lists.linux-foundation.org
4342 T:      git git://git.infradead.org/users/hch/dma-mapping.git
4343 W:      http://git.infradead.org/users/hch/dma-mapping.git
4344 S:      Supported
4345 F:      lib/dma-debug.c
4346 F:      lib/dma-direct.c
4347 F:      lib/dma-virt.c
4348 F:      drivers/base/dma-mapping.c
4349 F:      drivers/base/dma-coherent.c
4350 F:      include/asm-generic/dma-mapping.h
4351 F:      include/linux/dma-direct.h
4352 F:      include/linux/dma-mapping.h
4353
4354 DME1737 HARDWARE MONITOR DRIVER
4355 M:      Juerg Haefliger <juergh@gmail.com>
4356 L:      linux-hwmon@vger.kernel.org
4357 S:      Maintained
4358 F:      Documentation/hwmon/dme1737
4359 F:      drivers/hwmon/dme1737.c
4360
4361 DMI/SMBIOS SUPPORT
4362 M:      Jean Delvare <jdelvare@suse.com>
4363 S:      Maintained
4364 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4365 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4366 F:      drivers/firmware/dmi-id.c
4367 F:      drivers/firmware/dmi_scan.c
4368 F:      include/linux/dmi.h
4369
4370 DOCUMENTATION
4371 M:      Jonathan Corbet <corbet@lwn.net>
4372 L:      linux-doc@vger.kernel.org
4373 S:      Maintained
4374 F:      Documentation/
4375 F:      scripts/kernel-doc
4376 X:      Documentation/ABI/
4377 X:      Documentation/devicetree/
4378 X:      Documentation/acpi
4379 X:      Documentation/power
4380 X:      Documentation/spi
4381 X:      Documentation/media
4382 T:      git git://git.lwn.net/linux.git docs-next
4383
4384 DONGWOON DW9714 LENS VOICE COIL DRIVER
4385 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4386 L:      linux-media@vger.kernel.org
4387 T:      git git://linuxtv.org/media_tree.git
4388 S:      Maintained
4389 F:      drivers/media/i2c/dw9714.c
4390
4391 DOUBLETALK DRIVER
4392 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4393 L:      blinux-list@redhat.com
4394 S:      Maintained
4395 F:      drivers/char/dtlk.c
4396 F:      include/linux/dtlk.h
4397
4398 DPAA2 DATAPATH I/O (DPIO) DRIVER
4399 M:      Roy Pledge <Roy.Pledge@nxp.com>
4400 L:      linux-kernel@vger.kernel.org
4401 S:      Maintained
4402 F:      drivers/staging/fsl-mc/bus/dpio
4403
4404 DPAA2 ETHERNET DRIVER
4405 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4406 L:      linux-kernel@vger.kernel.org
4407 S:      Maintained
4408 F:      drivers/staging/fsl-dpaa2/ethernet
4409
4410 DPT_I2O SCSI RAID DRIVER
4411 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4412 L:      linux-scsi@vger.kernel.org
4413 W:      http://www.adaptec.com/
4414 S:      Maintained
4415 F:      drivers/scsi/dpt*
4416 F:      drivers/scsi/dpt/
4417
4418 DRBD DRIVER
4419 M:      Philipp Reisner <philipp.reisner@linbit.com>
4420 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4421 L:      drbd-dev@lists.linbit.com
4422 W:      http://www.drbd.org
4423 T:      git git://git.linbit.com/linux-drbd.git
4424 T:      git git://git.linbit.com/drbd-8.4.git
4425 S:      Supported
4426 F:      drivers/block/drbd/
4427 F:      lib/lru_cache.c
4428 F:      Documentation/blockdev/drbd/
4429
4430 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4431 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4433 S:      Supported
4434 F:      Documentation/kobject.txt
4435 F:      drivers/base/
4436 F:      fs/debugfs/
4437 F:      fs/sysfs/
4438 F:      include/linux/debugfs.h
4439 F:      include/linux/kobj*
4440 F:      lib/kobj*
4441
4442 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
4443 M:      Kevin Hilman <khilman@kernel.org>
4444 M:      Nishanth Menon <nm@ti.com>
4445 S:      Maintained
4446 F:      drivers/power/avs/
4447 F:      include/linux/power/smartreflex.h
4448 L:      linux-pm@vger.kernel.org
4449
4450 DRM DRIVER FOR ARM PL111 CLCD
4451 M:      Eric Anholt <eric@anholt.net>
4452 T:      git git://anongit.freedesktop.org/drm/drm-misc
4453 S:      Supported
4454 F:      drivers/gpu/drm/pl111/
4455
4456 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4457 M:      Dave Airlie <airlied@redhat.com>
4458 S:      Odd Fixes
4459 F:      drivers/gpu/drm/ast/
4460
4461 DRM DRIVER FOR BOCHS VIRTUAL GPU
4462 M:      Gerd Hoffmann <kraxel@redhat.com>
4463 L:      virtualization@lists.linux-foundation.org
4464 T:      git git://anongit.freedesktop.org/drm/drm-misc
4465 S:      Maintained
4466 F:      drivers/gpu/drm/bochs/
4467
4468 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
4469 M:      Linus Walleij <linus.walleij@linaro.org>
4470 T:      git git://anongit.freedesktop.org/drm/drm-misc
4471 S:      Maintained
4472 F:      drivers/gpu/drm/tve200/
4473
4474 DRM DRIVER FOR ILITEK ILI9225 PANELS
4475 M:      David Lechner <david@lechnology.com>
4476 S:      Maintained
4477 F:      drivers/gpu/drm/tinydrm/ili9225.c
4478 F:      Documentation/devicetree/bindings/display/ili9225.txt
4479
4480 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4481 S:      Orphan / Obsolete
4482 F:      drivers/gpu/drm/i810/
4483 F:      include/uapi/drm/i810_drm.h
4484
4485 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4486 S:      Orphan / Obsolete
4487 F:      drivers/gpu/drm/mga/
4488 F:      include/uapi/drm/mga_drm.h
4489
4490 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4491 M:      Dave Airlie <airlied@redhat.com>
4492 S:      Odd Fixes
4493 F:      drivers/gpu/drm/mgag200/
4494
4495 DRM DRIVER FOR MI0283QT
4496 M:      Noralf Trønnes <noralf@tronnes.org>
4497 S:      Maintained
4498 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4499 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4500
4501 DRM DRIVER FOR MSM ADRENO GPU
4502 M:      Rob Clark <robdclark@gmail.com>
4503 L:      linux-arm-msm@vger.kernel.org
4504 L:      dri-devel@lists.freedesktop.org
4505 L:      freedreno@lists.freedesktop.org
4506 T:      git git://people.freedesktop.org/~robclark/linux
4507 S:      Maintained
4508 F:      drivers/gpu/drm/msm/
4509 F:      include/uapi/drm/msm_drm.h
4510 F:      Documentation/devicetree/bindings/display/msm/
4511
4512 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4513 M:      Ben Skeggs <bskeggs@redhat.com>
4514 L:      dri-devel@lists.freedesktop.org
4515 L:      nouveau@lists.freedesktop.org
4516 T:      git git://github.com/skeggsb/linux
4517 S:      Supported
4518 F:      drivers/gpu/drm/nouveau/
4519 F:      include/uapi/drm/nouveau_drm.h
4520
4521 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
4522 M:      Noralf Trønnes <noralf@tronnes.org>
4523 S:      Maintained
4524 F:      drivers/gpu/drm/tinydrm/repaper.c
4525 F:      Documentation/devicetree/bindings/display/repaper.txt
4526
4527 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4528 M:      Dave Airlie <airlied@redhat.com>
4529 M:      Gerd Hoffmann <kraxel@redhat.com>
4530 L:      virtualization@lists.linux-foundation.org
4531 T:      git git://anongit.freedesktop.org/drm/drm-misc
4532 S:      Obsolete
4533 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4534 F:      drivers/gpu/drm/cirrus/
4535
4536 DRM DRIVER FOR QXL VIRTUAL GPU
4537 M:      Dave Airlie <airlied@redhat.com>
4538 M:      Gerd Hoffmann <kraxel@redhat.com>
4539 L:      virtualization@lists.linux-foundation.org
4540 T:      git git://anongit.freedesktop.org/drm/drm-misc
4541 S:      Maintained
4542 F:      drivers/gpu/drm/qxl/
4543 F:      include/uapi/drm/qxl_drm.h
4544
4545 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4546 S:      Orphan / Obsolete
4547 F:      drivers/gpu/drm/r128/
4548 F:      include/uapi/drm/r128_drm.h
4549
4550 DRM DRIVER FOR SAVAGE VIDEO CARDS
4551 S:      Orphan / Obsolete
4552 F:      drivers/gpu/drm/savage/
4553 F:      include/uapi/drm/savage_drm.h
4554
4555 DRM DRIVER FOR SIS VIDEO CARDS
4556 S:      Orphan / Obsolete
4557 F:      drivers/gpu/drm/sis/
4558 F:      include/uapi/drm/sis_drm.h
4559
4560 DRM DRIVER FOR SITRONIX ST7586 PANELS
4561 M:      David Lechner <david@lechnology.com>
4562 S:      Maintained
4563 F:      drivers/gpu/drm/tinydrm/st7586.c
4564 F:      Documentation/devicetree/bindings/display/st7586.txt
4565
4566 DRM DRIVER FOR SITRONIX ST7735R PANELS
4567 M:      David Lechner <david@lechnology.com>
4568 S:      Maintained
4569 F:      drivers/gpu/drm/tinydrm/st7735r.c
4570 F:      Documentation/devicetree/bindings/display/st7735r.txt
4571
4572 DRM DRIVER FOR TDFX VIDEO CARDS
4573 S:      Orphan / Obsolete
4574 F:      drivers/gpu/drm/tdfx/
4575
4576 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4577 M:      Dave Airlie <airlied@redhat.com>
4578 S:      Odd Fixes
4579 F:      drivers/gpu/drm/udl/
4580
4581 DRM DRIVER FOR VMWARE VIRTUAL GPU
4582 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4583 M:      Sinclair Yeh <syeh@vmware.com>
4584 M:      Thomas Hellstrom <thellstrom@vmware.com>
4585 L:      dri-devel@lists.freedesktop.org
4586 T:      git git://people.freedesktop.org/~syeh/repos_linux
4587 T:      git git://people.freedesktop.org/~thomash/linux
4588 S:      Supported
4589 F:      drivers/gpu/drm/vmwgfx/
4590 F:      include/uapi/drm/vmwgfx_drm.h
4591
4592 DRM DRIVERS
4593 M:      David Airlie <airlied@linux.ie>
4594 L:      dri-devel@lists.freedesktop.org
4595 T:      git git://people.freedesktop.org/~airlied/linux
4596 B:      https://bugs.freedesktop.org/
4597 C:      irc://chat.freenode.net/dri-devel
4598 S:      Maintained
4599 F:      drivers/gpu/drm/
4600 F:      drivers/gpu/vga/
4601 F:      Documentation/devicetree/bindings/display/
4602 F:      Documentation/devicetree/bindings/gpu/
4603 F:      Documentation/devicetree/bindings/video/
4604 F:      Documentation/gpu/
4605 F:      include/drm/
4606 F:      include/uapi/drm/
4607 F:      include/linux/vga*
4608
4609 DRM DRIVERS AND MISC GPU PATCHES
4610 M:      Daniel Vetter <daniel.vetter@intel.com>
4611 M:      Gustavo Padovan <gustavo@padovan.org>
4612 M:      Sean Paul <seanpaul@chromium.org>
4613 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4614 S:      Maintained
4615 T:      git git://anongit.freedesktop.org/drm/drm-misc
4616 F:      Documentation/gpu/
4617 F:      drivers/gpu/vga/
4618 F:      drivers/gpu/drm/*
4619 F:      include/drm/drm*
4620 F:      include/uapi/drm/drm*
4621 F:      include/linux/vga*
4622
4623 DRM DRIVERS FOR ALLWINNER A10
4624 M:      Maxime Ripard  <maxime.ripard@bootlin.com>
4625 L:      dri-devel@lists.freedesktop.org
4626 S:      Supported
4627 F:      drivers/gpu/drm/sun4i/
4628 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4629 T:      git git://anongit.freedesktop.org/drm/drm-misc
4630
4631 DRM DRIVERS FOR AMLOGIC SOCS
4632 M:      Neil Armstrong <narmstrong@baylibre.com>
4633 L:      dri-devel@lists.freedesktop.org
4634 L:      linux-amlogic@lists.infradead.org
4635 W:      http://linux-meson.com/
4636 S:      Supported
4637 F:      drivers/gpu/drm/meson/
4638 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4639 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4640 F:      Documentation/gpu/meson.rst
4641 T:      git git://anongit.freedesktop.org/drm/drm-misc
4642
4643 DRM DRIVERS FOR ATMEL HLCDC
4644 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4645 L:      dri-devel@lists.freedesktop.org
4646 S:      Supported
4647 F:      drivers/gpu/drm/atmel-hlcdc/
4648 F:      Documentation/devicetree/bindings/drm/atmel/
4649 T:      git git://anongit.freedesktop.org/drm/drm-misc
4650
4651 DRM DRIVERS FOR BRIDGE CHIPS
4652 M:      Archit Taneja <architt@codeaurora.org>
4653 M:      Andrzej Hajda <a.hajda@samsung.com>
4654 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4655 S:      Maintained
4656 T:      git git://anongit.freedesktop.org/drm/drm-misc
4657 F:      drivers/gpu/drm/bridge/
4658
4659 DRM DRIVERS FOR EXYNOS
4660 M:      Inki Dae <inki.dae@samsung.com>
4661 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4662 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4663 M:      Kyungmin Park <kyungmin.park@samsung.com>
4664 L:      dri-devel@lists.freedesktop.org
4665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4666 S:      Supported
4667 F:      drivers/gpu/drm/exynos/
4668 F:      include/uapi/drm/exynos_drm.h
4669 F:      Documentation/devicetree/bindings/display/exynos/
4670
4671 DRM DRIVERS FOR FREESCALE DCU
4672 M:      Stefan Agner <stefan@agner.ch>
4673 M:      Alison Wang <alison.wang@freescale.com>
4674 L:      dri-devel@lists.freedesktop.org
4675 S:      Supported
4676 F:      drivers/gpu/drm/fsl-dcu/
4677 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4678 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4679 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4680
4681 DRM DRIVERS FOR FREESCALE IMX
4682 M:      Philipp Zabel <p.zabel@pengutronix.de>
4683 L:      dri-devel@lists.freedesktop.org
4684 S:      Maintained
4685 F:      drivers/gpu/drm/imx/
4686 F:      drivers/gpu/ipu-v3/
4687 F:      Documentation/devicetree/bindings/display/imx/
4688
4689 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4690 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4691 L:      dri-devel@lists.freedesktop.org
4692 T:      git git://github.com/patjak/drm-gma500
4693 S:      Maintained
4694 F:      drivers/gpu/drm/gma500/
4695
4696 DRM DRIVERS FOR HISILICON
4697 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4698 M:      Rongrong Zou <zourongrong@gmail.com>
4699 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4700 R:      Chen Feng <puck.chen@hisilicon.com>
4701 L:      dri-devel@lists.freedesktop.org
4702 T:      git git://github.com/xin3liang/linux.git
4703 S:      Maintained
4704 F:      drivers/gpu/drm/hisilicon/
4705 F:      Documentation/devicetree/bindings/display/hisilicon/
4706
4707 DRM DRIVERS FOR MEDIATEK
4708 M:      CK Hu <ck.hu@mediatek.com>
4709 M:      Philipp Zabel <p.zabel@pengutronix.de>
4710 L:      dri-devel@lists.freedesktop.org
4711 S:      Supported
4712 F:      drivers/gpu/drm/mediatek/
4713 F:      Documentation/devicetree/bindings/display/mediatek/
4714
4715 DRM DRIVERS FOR NVIDIA TEGRA
4716 M:      Thierry Reding <thierry.reding@gmail.com>
4717 L:      dri-devel@lists.freedesktop.org
4718 L:      linux-tegra@vger.kernel.org
4719 T:      git git://anongit.freedesktop.org/tegra/linux.git
4720 S:      Supported
4721 F:      drivers/gpu/drm/tegra/
4722 F:      drivers/gpu/host1x/
4723 F:      include/linux/host1x.h
4724 F:      include/uapi/drm/tegra_drm.h
4725 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4726
4727 DRM DRIVERS FOR RENESAS
4728 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4729 L:      dri-devel@lists.freedesktop.org
4730 L:      linux-renesas-soc@vger.kernel.org
4731 T:      git git://linuxtv.org/pinchartl/fbdev
4732 S:      Supported
4733 F:      drivers/gpu/drm/rcar-du/
4734 F:      drivers/gpu/drm/shmobile/
4735 F:      include/linux/platform_data/shmob_drm.h
4736 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4737 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4738
4739 DRM DRIVERS FOR ROCKCHIP
4740 M:      Sandy Huang <hjc@rock-chips.com>
4741 M:      Heiko Stübner <heiko@sntech.de>
4742 L:      dri-devel@lists.freedesktop.org
4743 S:      Maintained
4744 F:      drivers/gpu/drm/rockchip/
4745 F:      Documentation/devicetree/bindings/display/rockchip/
4746 T:      git git://anongit.freedesktop.org/drm/drm-misc
4747
4748 DRM DRIVERS FOR STI
4749 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4750 M:      Vincent Abriou <vincent.abriou@st.com>
4751 L:      dri-devel@lists.freedesktop.org
4752 T:      git git://anongit.freedesktop.org/drm/drm-misc
4753 S:      Maintained
4754 F:      drivers/gpu/drm/sti
4755 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4756
4757 DRM DRIVERS FOR STM
4758 M:      Yannick Fertre <yannick.fertre@st.com>
4759 M:      Philippe Cornu <philippe.cornu@st.com>
4760 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4761 M:      Vincent Abriou <vincent.abriou@st.com>
4762 L:      dri-devel@lists.freedesktop.org
4763 T:      git git://anongit.freedesktop.org/drm/drm-misc
4764 S:      Maintained
4765 F:      drivers/gpu/drm/stm
4766 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4767
4768 DRM DRIVERS FOR TI LCDC
4769 M:      Jyri Sarha <jsarha@ti.com>
4770 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4771 L:      dri-devel@lists.freedesktop.org
4772 S:      Maintained
4773 F:      drivers/gpu/drm/tilcdc/
4774 F:      Documentation/devicetree/bindings/display/tilcdc/
4775
4776 DRM DRIVERS FOR TI OMAP
4777 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4778 L:      dri-devel@lists.freedesktop.org
4779 S:      Maintained
4780 F:      drivers/gpu/drm/omapdrm/
4781 F:      Documentation/devicetree/bindings/display/ti/
4782
4783 DRM DRIVERS FOR VC4
4784 M:      Eric Anholt <eric@anholt.net>
4785 T:      git git://github.com/anholt/linux
4786 S:      Supported
4787 F:      drivers/gpu/drm/vc4/
4788 F:      include/uapi/drm/vc4_drm.h
4789 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4790 T:      git git://anongit.freedesktop.org/drm/drm-misc
4791
4792 DRM DRIVERS FOR VIVANTE GPU IP
4793 M:      Lucas Stach <l.stach@pengutronix.de>
4794 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4795 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4796 L:      etnaviv@lists.freedesktop.org
4797 L:      dri-devel@lists.freedesktop.org
4798 S:      Maintained
4799 F:      drivers/gpu/drm/etnaviv/
4800 F:      include/uapi/drm/etnaviv_drm.h
4801 F:      Documentation/devicetree/bindings/display/etnaviv/
4802
4803 DRM DRIVERS FOR ZTE ZX
4804 M:      Shawn Guo <shawnguo@kernel.org>
4805 L:      dri-devel@lists.freedesktop.org
4806 S:      Maintained
4807 F:      drivers/gpu/drm/zte/
4808 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4809 T:      git git://anongit.freedesktop.org/drm/drm-misc
4810
4811 DRM PANEL DRIVERS
4812 M:      Thierry Reding <thierry.reding@gmail.com>
4813 L:      dri-devel@lists.freedesktop.org
4814 T:      git git://anongit.freedesktop.org/drm/drm-misc
4815 S:      Maintained
4816 F:      drivers/gpu/drm/drm_panel.c
4817 F:      drivers/gpu/drm/panel/
4818 F:      include/drm/drm_panel.h
4819 F:      Documentation/devicetree/bindings/display/panel/
4820
4821 DRM TINYDRM DRIVERS
4822 M:      Noralf Trønnes <noralf@tronnes.org>
4823 W:      https://github.com/notro/tinydrm/wiki/Development
4824 T:      git git://anongit.freedesktop.org/drm/drm-misc
4825 S:      Maintained
4826 F:      drivers/gpu/drm/tinydrm/
4827 F:      include/drm/tinydrm/
4828
4829 DRM TTM SUBSYSTEM
4830 M:      Christian Koenig <christian.koenig@amd.com>
4831 M:      Roger He <Hongbo.He@amd.com>
4832 T:      git git://people.freedesktop.org/~agd5f/linux
4833 S:      Maintained
4834 L:      dri-devel@lists.freedesktop.org
4835 F:      include/drm/ttm/
4836 F:      drivers/gpu/drm/ttm/
4837
4838 DSBR100 USB FM RADIO DRIVER
4839 M:      Alexey Klimov <klimov.linux@gmail.com>
4840 L:      linux-media@vger.kernel.org
4841 T:      git git://linuxtv.org/media_tree.git
4842 S:      Maintained
4843 F:      drivers/media/radio/dsbr100.c
4844
4845 DSCC4 DRIVER
4846 M:      Francois Romieu <romieu@fr.zoreil.com>
4847 L:      netdev@vger.kernel.org
4848 S:      Maintained
4849 F:      drivers/net/wan/dscc4.c
4850
4851 DT3155 MEDIA DRIVER
4852 M:      Hans Verkuil <hverkuil@xs4all.nl>
4853 L:      linux-media@vger.kernel.org
4854 T:      git git://linuxtv.org/media_tree.git
4855 W:      https://linuxtv.org
4856 S:      Odd Fixes
4857 F:      drivers/media/pci/dt3155/
4858
4859 DVB_USB_AF9015 MEDIA DRIVER
4860 M:      Antti Palosaari <crope@iki.fi>
4861 L:      linux-media@vger.kernel.org
4862 W:      https://linuxtv.org
4863 W:      http://palosaari.fi/linux/
4864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4865 T:      git git://linuxtv.org/anttip/media_tree.git
4866 S:      Maintained
4867 F:      drivers/media/usb/dvb-usb-v2/af9015*
4868
4869 DVB_USB_AF9035 MEDIA DRIVER
4870 M:      Antti Palosaari <crope@iki.fi>
4871 L:      linux-media@vger.kernel.org
4872 W:      https://linuxtv.org
4873 W:      http://palosaari.fi/linux/
4874 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4875 T:      git git://linuxtv.org/anttip/media_tree.git
4876 S:      Maintained
4877 F:      drivers/media/usb/dvb-usb-v2/af9035*
4878
4879 DVB_USB_ANYSEE MEDIA DRIVER
4880 M:      Antti Palosaari <crope@iki.fi>
4881 L:      linux-media@vger.kernel.org
4882 W:      https://linuxtv.org
4883 W:      http://palosaari.fi/linux/
4884 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4885 T:      git git://linuxtv.org/anttip/media_tree.git
4886 S:      Maintained
4887 F:      drivers/media/usb/dvb-usb-v2/anysee*
4888
4889 DVB_USB_AU6610 MEDIA DRIVER
4890 M:      Antti Palosaari <crope@iki.fi>
4891 L:      linux-media@vger.kernel.org
4892 W:      https://linuxtv.org
4893 W:      http://palosaari.fi/linux/
4894 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4895 T:      git git://linuxtv.org/anttip/media_tree.git
4896 S:      Maintained
4897 F:      drivers/media/usb/dvb-usb-v2/au6610*
4898
4899 DVB_USB_CE6230 MEDIA DRIVER
4900 M:      Antti Palosaari <crope@iki.fi>
4901 L:      linux-media@vger.kernel.org
4902 W:      https://linuxtv.org
4903 W:      http://palosaari.fi/linux/
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/ce6230*
4908
4909 DVB_USB_CXUSB 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/media_tree.git
4916 S:      Maintained
4917 F:      drivers/media/usb/dvb-usb/cxusb*
4918
4919 DVB_USB_EC168 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/ec168*
4928
4929 DVB_USB_GL861 MEDIA DRIVER
4930 M:      Antti Palosaari <crope@iki.fi>
4931 L:      linux-media@vger.kernel.org
4932 W:      https://linuxtv.org
4933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4934 T:      git git://linuxtv.org/anttip/media_tree.git
4935 S:      Maintained
4936 F:      drivers/media/usb/dvb-usb-v2/gl861*
4937
4938 DVB_USB_MXL111SF MEDIA DRIVER
4939 M:      Michael Krufky <mkrufky@linuxtv.org>
4940 L:      linux-media@vger.kernel.org
4941 W:      https://linuxtv.org
4942 W:      http://github.com/mkrufky
4943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4944 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4945 S:      Maintained
4946 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4947
4948 DVB_USB_RTL28XXU MEDIA DRIVER
4949 M:      Antti Palosaari <crope@iki.fi>
4950 L:      linux-media@vger.kernel.org
4951 W:      https://linuxtv.org
4952 W:      http://palosaari.fi/linux/
4953 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4954 T:      git git://linuxtv.org/anttip/media_tree.git
4955 S:      Maintained
4956 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4957
4958 DVB_USB_V2 MEDIA DRIVER
4959 M:      Antti Palosaari <crope@iki.fi>
4960 L:      linux-media@vger.kernel.org
4961 W:      https://linuxtv.org
4962 W:      http://palosaari.fi/linux/
4963 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4964 T:      git git://linuxtv.org/anttip/media_tree.git
4965 S:      Maintained
4966 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4967 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4968
4969 DYNAMIC DEBUG
4970 M:      Jason Baron <jbaron@akamai.com>
4971 S:      Maintained
4972 F:      lib/dynamic_debug.c
4973 F:      include/linux/dynamic_debug.h
4974
4975 DYNAMIC INTERRUPT MODERATION
4976 M:      Tal Gilboa <talgi@mellanox.com>
4977 S:      Maintained
4978 F:      include/linux/net_dim.h
4979
4980 DZ DECSTATION DZ11 SERIAL DRIVER
4981 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4982 S:      Maintained
4983 F:      drivers/tty/serial/dz.*
4984
4985 E3X0 POWER BUTTON DRIVER
4986 M:      Moritz Fischer <moritz.fischer@ettus.com>
4987 L:      usrp-users@lists.ettus.com
4988 W:      http://www.ettus.com
4989 S:      Supported
4990 F:      drivers/input/misc/e3x0-button.c
4991 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4992
4993 E4000 MEDIA DRIVER
4994 M:      Antti Palosaari <crope@iki.fi>
4995 L:      linux-media@vger.kernel.org
4996 W:      https://linuxtv.org
4997 W:      http://palosaari.fi/linux/
4998 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4999 T:      git git://linuxtv.org/anttip/media_tree.git
5000 S:      Maintained
5001 F:      drivers/media/tuners/e4000*
5002
5003 EATA ISA/EISA/PCI SCSI DRIVER
5004 M:      Dario Ballabio <ballabio_dario@emc.com>
5005 L:      linux-scsi@vger.kernel.org
5006 S:      Maintained
5007 F:      drivers/scsi/eata.c
5008
5009 EC100 MEDIA DRIVER
5010 M:      Antti Palosaari <crope@iki.fi>
5011 L:      linux-media@vger.kernel.org
5012 W:      https://linuxtv.org
5013 W:      http://palosaari.fi/linux/
5014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5015 T:      git git://linuxtv.org/anttip/media_tree.git
5016 S:      Maintained
5017 F:      drivers/media/dvb-frontends/ec100*
5018
5019 ECRYPT FILE SYSTEM
5020 M:      Tyler Hicks <tyhicks@canonical.com>
5021 L:      ecryptfs@vger.kernel.org
5022 W:      http://ecryptfs.org
5023 W:      https://launchpad.net/ecryptfs
5024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
5025 S:      Supported
5026 F:      Documentation/filesystems/ecryptfs.txt
5027 F:      fs/ecryptfs/
5028
5029 EDAC-AMD64
5030 M:      Borislav Petkov <bp@alien8.de>
5031 L:      linux-edac@vger.kernel.org
5032 S:      Maintained
5033 F:      drivers/edac/amd64_edac*
5034
5035 EDAC-CALXEDA
5036 M:      Robert Richter <rric@kernel.org>
5037 L:      linux-edac@vger.kernel.org
5038 S:      Maintained
5039 F:      drivers/edac/highbank*
5040
5041 EDAC-CAVIUM OCTEON
5042 M:      Ralf Baechle <ralf@linux-mips.org>
5043 M:      David Daney <david.daney@cavium.com>
5044 L:      linux-edac@vger.kernel.org
5045 L:      linux-mips@linux-mips.org
5046 S:      Supported
5047 F:      drivers/edac/octeon_edac*
5048
5049 EDAC-CAVIUM THUNDERX
5050 M:      David Daney <david.daney@cavium.com>
5051 M:      Jan Glauber <jglauber@cavium.com>
5052 L:      linux-edac@vger.kernel.org
5053 S:      Supported
5054 F:      drivers/edac/thunderx_edac*
5055
5056 EDAC-CORE
5057 M:      Borislav Petkov <bp@alien8.de>
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 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
5063 S:      Supported
5064 F:      Documentation/admin-guide/ras.rst
5065 F:      Documentation/driver-api/edac.rst
5066 F:      drivers/edac/
5067 F:      include/linux/edac.h
5068
5069 EDAC-E752X
5070 M:      Mark Gross <mark.gross@intel.com>
5071 L:      linux-edac@vger.kernel.org
5072 S:      Maintained
5073 F:      drivers/edac/e752x_edac.c
5074
5075 EDAC-E7XXX
5076 L:      linux-edac@vger.kernel.org
5077 S:      Maintained
5078 F:      drivers/edac/e7xxx_edac.c
5079
5080 EDAC-FSL_DDR
5081 M:      York Sun <york.sun@nxp.com>
5082 L:      linux-edac@vger.kernel.org
5083 S:      Maintained
5084 F:      drivers/edac/fsl_ddr_edac.*
5085
5086 EDAC-GHES
5087 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5088 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5089 L:      linux-edac@vger.kernel.org
5090 S:      Maintained
5091 F:      drivers/edac/ghes_edac.c
5092
5093 EDAC-I3000
5094 L:      linux-edac@vger.kernel.org
5095 S:      Orphan
5096 F:      drivers/edac/i3000_edac.c
5097
5098 EDAC-I5000
5099 L:      linux-edac@vger.kernel.org
5100 S:      Maintained
5101 F:      drivers/edac/i5000_edac.c
5102
5103 EDAC-I5400
5104 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5105 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5106 L:      linux-edac@vger.kernel.org
5107 S:      Maintained
5108 F:      drivers/edac/i5400_edac.c
5109
5110 EDAC-I7300
5111 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5112 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5113 L:      linux-edac@vger.kernel.org
5114 S:      Maintained
5115 F:      drivers/edac/i7300_edac.c
5116
5117 EDAC-I7CORE
5118 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5119 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5120 L:      linux-edac@vger.kernel.org
5121 S:      Maintained
5122 F:      drivers/edac/i7core_edac.c
5123
5124 EDAC-I82443BXGX
5125 M:      Tim Small <tim@buttersideup.com>
5126 L:      linux-edac@vger.kernel.org
5127 S:      Maintained
5128 F:      drivers/edac/i82443bxgx_edac.c
5129
5130 EDAC-I82975X
5131 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
5132 M:      "Arvind R." <arvino55@gmail.com>
5133 L:      linux-edac@vger.kernel.org
5134 S:      Maintained
5135 F:      drivers/edac/i82975x_edac.c
5136
5137 EDAC-IE31200
5138 M:      Jason Baron <jbaron@akamai.com>
5139 L:      linux-edac@vger.kernel.org
5140 S:      Maintained
5141 F:      drivers/edac/ie31200_edac.c
5142
5143 EDAC-MPC85XX
5144 M:      Johannes Thumshirn <morbidrsa@gmail.com>
5145 L:      linux-edac@vger.kernel.org
5146 S:      Maintained
5147 F:      drivers/edac/mpc85xx_edac.[ch]
5148
5149 EDAC-PASEMI
5150 M:      Egor Martovetsky <egor@pasemi.com>
5151 L:      linux-edac@vger.kernel.org
5152 S:      Maintained
5153 F:      drivers/edac/pasemi_edac.c
5154
5155 EDAC-PND2
5156 M:      Tony Luck <tony.luck@intel.com>
5157 L:      linux-edac@vger.kernel.org
5158 S:      Maintained
5159 F:      drivers/edac/pnd2_edac.[ch]
5160
5161 EDAC-R82600
5162 M:      Tim Small <tim@buttersideup.com>
5163 L:      linux-edac@vger.kernel.org
5164 S:      Maintained
5165 F:      drivers/edac/r82600_edac.c
5166
5167 EDAC-SBRIDGE
5168 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5169 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5170 L:      linux-edac@vger.kernel.org
5171 S:      Maintained
5172 F:      drivers/edac/sb_edac.c
5173
5174 EDAC-SKYLAKE
5175 M:      Tony Luck <tony.luck@intel.com>
5176 L:      linux-edac@vger.kernel.org
5177 S:      Maintained
5178 F:      drivers/edac/skx_edac.c
5179
5180 EDAC-TI
5181 M:      Tero Kristo <t-kristo@ti.com>
5182 L:      linux-edac@vger.kernel.org
5183 S:      Maintained
5184 F:      drivers/edac/ti_edac.c
5185
5186 EDIROL UA-101/UA-1000 DRIVER
5187 M:      Clemens Ladisch <clemens@ladisch.de>
5188 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5189 T:      git git://git.alsa-project.org/alsa-kernel.git
5190 S:      Maintained
5191 F:      sound/usb/misc/ua101.c
5192
5193 EFI TEST DRIVER
5194 L:      linux-efi@vger.kernel.org
5195 M:      Ivan Hu <ivan.hu@canonical.com>
5196 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5197 S:      Maintained
5198 F:      drivers/firmware/efi/test/
5199
5200 EFI VARIABLE FILESYSTEM
5201 M:      Matthew Garrett <matthew.garrett@nebula.com>
5202 M:      Jeremy Kerr <jk@ozlabs.org>
5203 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5205 L:      linux-efi@vger.kernel.org
5206 S:      Maintained
5207 F:      fs/efivarfs/
5208
5209 EFIFB FRAMEBUFFER DRIVER
5210 L:      linux-fbdev@vger.kernel.org
5211 M:      Peter Jones <pjones@redhat.com>
5212 S:      Maintained
5213 F:      drivers/video/fbdev/efifb.c
5214
5215 EFS FILESYSTEM
5216 W:      http://aeschi.ch.eu.org/efs/
5217 S:      Orphan
5218 F:      fs/efs/
5219
5220 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5221 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
5222 L:      netdev@vger.kernel.org
5223 S:      Maintained
5224 F:      drivers/net/ethernet/ibm/ehea/
5225
5226 EM28XX VIDEO4LINUX DRIVER
5227 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5228 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5229 L:      linux-media@vger.kernel.org
5230 W:      https://linuxtv.org
5231 T:      git git://linuxtv.org/media_tree.git
5232 S:      Maintained
5233 F:      drivers/media/usb/em28xx/
5234 F:      Documentation/media/v4l-drivers/em28xx*
5235
5236 EMBEDDED LINUX
5237 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5238 M:      Matt Mackall <mpm@selenic.com>
5239 M:      David Woodhouse <dwmw2@infradead.org>
5240 L:      linux-embedded@vger.kernel.org
5241 S:      Maintained
5242
5243 Emulex 10Gbps iSCSI - OneConnect DRIVER
5244 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
5245 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
5246 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
5247 L:      linux-scsi@vger.kernel.org
5248 W:      http://www.broadcom.com
5249 S:      Supported
5250 F:      drivers/scsi/be2iscsi/
5251
5252 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
5253 M:      Sathya Perla <sathya.perla@broadcom.com>
5254 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
5255 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
5256 M:      Somnath Kotur <somnath.kotur@broadcom.com>
5257 L:      netdev@vger.kernel.org
5258 W:      http://www.emulex.com
5259 S:      Supported
5260 F:      drivers/net/ethernet/emulex/benet/
5261
5262 EMULEX ONECONNECT ROCE DRIVER
5263 M:      Selvin Xavier <selvin.xavier@broadcom.com>
5264 M:      Devesh Sharma <devesh.sharma@broadcom.com>
5265 L:      linux-rdma@vger.kernel.org
5266 W:      http://www.broadcom.com
5267 S:      Odd Fixes
5268 F:      drivers/infiniband/hw/ocrdma/
5269 F:      include/uapi/rdma/ocrdma-abi.h
5270
5271 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5272 M:      James Smart <james.smart@broadcom.com>
5273 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5274 L:      linux-scsi@vger.kernel.org
5275 W:      http://www.broadcom.com
5276 S:      Supported
5277 F:      drivers/scsi/lpfc/
5278
5279 ENE CB710 FLASH CARD READER DRIVER
5280 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5281 S:      Maintained
5282 F:      drivers/misc/cb710/
5283 F:      drivers/mmc/host/cb710-mmc.*
5284 F:      include/linux/cb710.h
5285
5286 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5287 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5288 S:      Maintained
5289 F:      drivers/media/rc/ene_ir.*
5290
5291 EPSON S1D13XXX FRAMEBUFFER DRIVER
5292 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5293 S:      Maintained
5294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5295 F:      drivers/video/fbdev/s1d13xxxfb.c
5296 F:      include/video/s1d13xxxfb.h
5297
5298 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5299 M:      Jeff Layton <jlayton@kernel.org>
5300 S:      Maintained
5301 F:      lib/errseq.c
5302 F:      include/linux/errseq.h
5303
5304 ET131X NETWORK DRIVER
5305 M:      Mark Einon <mark.einon@gmail.com>
5306 S:      Odd Fixes
5307 F:      drivers/net/ethernet/agere/
5308
5309 ETHERNET BRIDGE
5310 M:      Stephen Hemminger <stephen@networkplumber.org>
5311 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5312 L:      netdev@vger.kernel.org
5313 W:      http://www.linuxfoundation.org/en/Net:Bridge
5314 S:      Maintained
5315 F:      include/linux/netfilter_bridge/
5316 F:      net/bridge/
5317
5318 ETHERNET PHY LIBRARY
5319 M:      Andrew Lunn <andrew@lunn.ch>
5320 M:      Florian Fainelli <f.fainelli@gmail.com>
5321 L:      netdev@vger.kernel.org
5322 S:      Maintained
5323 F:      Documentation/ABI/testing/sysfs-bus-mdio
5324 F:      Documentation/devicetree/bindings/net/mdio*
5325 F:      Documentation/networking/phy.txt
5326 F:      drivers/net/phy/
5327 F:      drivers/of/of_mdio.c
5328 F:      drivers/of/of_net.c
5329 F:      include/linux/*mdio*.h
5330 F:      include/linux/of_net.h
5331 F:      include/linux/phy.h
5332 F:      include/linux/phy_fixed.h
5333 F:      include/linux/platform_data/mdio-gpio.h
5334 F:      include/linux/platform_data/mdio-bcm-unimac.h
5335 F:      include/trace/events/mdio.h
5336 F:      include/uapi/linux/mdio.h
5337 F:      include/uapi/linux/mii.h
5338
5339 EXT2 FILE SYSTEM
5340 M:      Jan Kara <jack@suse.com>
5341 L:      linux-ext4@vger.kernel.org
5342 S:      Maintained
5343 F:      Documentation/filesystems/ext2.txt
5344 F:      fs/ext2/
5345 F:      include/linux/ext2*
5346
5347 EXT4 FILE SYSTEM
5348 M:      "Theodore Ts'o" <tytso@mit.edu>
5349 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5350 L:      linux-ext4@vger.kernel.org
5351 W:      http://ext4.wiki.kernel.org
5352 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5354 S:      Maintained
5355 F:      Documentation/filesystems/ext4.txt
5356 F:      fs/ext4/
5357
5358 Extended Verification Module (EVM)
5359 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5360 L:      linux-integrity@vger.kernel.org
5361 S:      Supported
5362 F:      security/integrity/evm/
5363
5364 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5365 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
5366 L:      linux-efi@vger.kernel.org
5367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5368 S:      Maintained
5369 F:      Documentation/efi-stub.txt
5370 F:      arch/*/kernel/efi.c
5371 F:      arch/x86/boot/compressed/eboot.[ch]
5372 F:      arch/*/include/asm/efi.h
5373 F:      arch/x86/platform/efi/
5374 F:      drivers/firmware/efi/
5375 F:      include/linux/efi*.h
5376 F:      arch/arm/boot/compressed/efi-header.S
5377 F:      arch/arm64/kernel/efi-entry.S
5378
5379 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5380 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5381 M:      Chanwoo Choi <cw00.choi@samsung.com>
5382 L:      linux-kernel@vger.kernel.org
5383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5384 S:      Maintained
5385 F:      drivers/extcon/
5386 F:      include/linux/extcon/
5387 F:      include/linux/extcon.h
5388 F:      Documentation/extcon/
5389 F:      Documentation/devicetree/bindings/extcon/
5390
5391 EXYNOS DP DRIVER
5392 M:      Jingoo Han <jingoohan1@gmail.com>
5393 L:      dri-devel@lists.freedesktop.org
5394 S:      Maintained
5395 F:      drivers/gpu/drm/exynos/exynos_dp*
5396
5397 EXYNOS SYSMMU (IOMMU) driver
5398 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5399 L:      iommu@lists.linux-foundation.org
5400 S:      Maintained
5401 F:      drivers/iommu/exynos-iommu.c
5402
5403 EZchip NPS platform support
5404 M:      Elad Kanfi <eladkan@mellanox.com>
5405 M:      Vineet Gupta <vgupta@synopsys.com>
5406 S:      Supported
5407 F:      arch/arc/plat-eznps
5408 F:      arch/arc/boot/dts/eznps.dts
5409
5410 F2FS FILE SYSTEM
5411 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5412 M:      Chao Yu <yuchao0@huawei.com>
5413 L:      linux-f2fs-devel@lists.sourceforge.net
5414 W:      https://f2fs.wiki.kernel.org/
5415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5416 S:      Maintained
5417 F:      Documentation/filesystems/f2fs.txt
5418 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5419 F:      fs/f2fs/
5420 F:      include/linux/f2fs_fs.h
5421 F:      include/trace/events/f2fs.h
5422
5423 F71805F HARDWARE MONITORING DRIVER
5424 M:      Jean Delvare <jdelvare@suse.com>
5425 L:      linux-hwmon@vger.kernel.org
5426 S:      Maintained
5427 F:      Documentation/hwmon/f71805f
5428 F:      drivers/hwmon/f71805f.c
5429
5430 FANOTIFY
5431 M:      Jan Kara <jack@suse.cz>
5432 R:      Amir Goldstein <amir73il@gmail.com>
5433 L:      linux-fsdevel@vger.kernel.org
5434 S:      Maintained
5435 F:      fs/notify/fanotify/
5436 F:      include/linux/fanotify.h
5437 F:      include/uapi/linux/fanotify.h
5438
5439 FARSYNC SYNCHRONOUS DRIVER
5440 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5441 W:      http://www.farsite.co.uk/
5442 S:      Supported
5443 F:      drivers/net/wan/farsync.*
5444
5445 FAULT INJECTION SUPPORT
5446 M:      Akinobu Mita <akinobu.mita@gmail.com>
5447 S:      Supported
5448 F:      Documentation/fault-injection/
5449 F:      lib/fault-inject.c
5450
5451 FBTFT Framebuffer drivers
5452 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5453 S:      Maintained
5454 F:      drivers/staging/fbtft/
5455
5456 FC0011 TUNER DRIVER
5457 M:      Michael Buesch <m@bues.ch>
5458 L:      linux-media@vger.kernel.org
5459 S:      Maintained
5460 F:      drivers/media/tuners/fc0011.h
5461 F:      drivers/media/tuners/fc0011.c
5462
5463 FC2580 MEDIA DRIVER
5464 M:      Antti Palosaari <crope@iki.fi>
5465 L:      linux-media@vger.kernel.org
5466 W:      https://linuxtv.org
5467 W:      http://palosaari.fi/linux/
5468 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5469 T:      git git://linuxtv.org/anttip/media_tree.git
5470 S:      Maintained
5471 F:      drivers/media/tuners/fc2580*
5472
5473 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5474 M:      Johannes Thumshirn <jth@kernel.org>
5475 L:      linux-scsi@vger.kernel.org
5476 W:      www.Open-FCoE.org
5477 S:      Supported
5478 F:      drivers/scsi/libfc/
5479 F:      drivers/scsi/fcoe/
5480 F:      include/scsi/fc/
5481 F:      include/scsi/libfc.h
5482 F:      include/scsi/libfcoe.h
5483 F:      include/uapi/scsi/fc/
5484
5485 FILE LOCKING (flock() and fcntl()/lockf())
5486 M:      Jeff Layton <jlayton@kernel.org>
5487 M:      "J. Bruce Fields" <bfields@fieldses.org>
5488 L:      linux-fsdevel@vger.kernel.org
5489 S:      Maintained
5490 F:      include/linux/fcntl.h
5491 F:      include/uapi/linux/fcntl.h
5492 F:      fs/fcntl.c
5493 F:      fs/locks.c
5494
5495 FILESYSTEMS (VFS and infrastructure)
5496 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5497 L:      linux-fsdevel@vger.kernel.org
5498 S:      Maintained
5499 F:      fs/*
5500 F:      include/linux/fs.h
5501 F:      include/uapi/linux/fs.h
5502
5503 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5504 M:      Riku Voipio <riku.voipio@iki.fi>
5505 L:      linux-hwmon@vger.kernel.org
5506 S:      Maintained
5507 F:      drivers/hwmon/f75375s.c
5508 F:      include/linux/f75375s.h
5509
5510 FIREWIRE AUDIO DRIVERS
5511 M:      Clemens Ladisch <clemens@ladisch.de>
5512 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5513 T:      git git://git.alsa-project.org/alsa-kernel.git
5514 S:      Maintained
5515 F:      sound/firewire/
5516
5517 FIREWIRE MEDIA DRIVERS (firedtv)
5518 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5519 L:      linux-media@vger.kernel.org
5520 L:      linux1394-devel@lists.sourceforge.net
5521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5522 S:      Maintained
5523 F:      drivers/media/firewire/
5524
5525 FIREWIRE SBP-2 TARGET
5526 M:      Chris Boot <bootc@bootc.net>
5527 L:      linux-scsi@vger.kernel.org
5528 L:      target-devel@vger.kernel.org
5529 L:      linux1394-devel@lists.sourceforge.net
5530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5531 S:      Maintained
5532 F:      drivers/target/sbp/
5533
5534 FIREWIRE SUBSYSTEM
5535 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5536 L:      linux1394-devel@lists.sourceforge.net
5537 W:      http://ieee1394.wiki.kernel.org/
5538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5539 S:      Maintained
5540 F:      drivers/firewire/
5541 F:      include/linux/firewire.h
5542 F:      include/uapi/linux/firewire*.h
5543 F:      tools/firewire/
5544
5545 FIRMWARE LOADER (request_firmware)
5546 M:      Luis R. Rodriguez <mcgrof@kernel.org>
5547 L:      linux-kernel@vger.kernel.org
5548 S:      Maintained
5549 F:      Documentation/firmware_class/
5550 F:      drivers/base/firmware*.c
5551 F:      include/linux/firmware.h
5552
5553 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5554 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5555 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5556 S:      Maintained
5557 F:      drivers/block/rsxx/
5558
5559 FLOPPY DRIVER
5560 M:      Jiri Kosina <jikos@kernel.org>
5561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5562 S:      Odd fixes
5563 F:      drivers/block/floppy.c
5564
5565 FMC SUBSYSTEM
5566 M:      Alessandro Rubini <rubini@gnudd.com>
5567 W:      http://www.ohwr.org/projects/fmc-bus
5568 S:      Supported
5569 F:      drivers/fmc/
5570 F:      include/linux/fmc*.h
5571 F:      include/linux/ipmi-fru.h
5572 K:      fmc_d.*register
5573
5574 FPGA MANAGER FRAMEWORK
5575 M:      Alan Tull <atull@kernel.org>
5576 M:      Moritz Fischer <mdf@kernel.org>
5577 L:      linux-fpga@vger.kernel.org
5578 S:      Maintained
5579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5580 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
5581 F:      Documentation/fpga/
5582 F:      Documentation/devicetree/bindings/fpga/
5583 F:      drivers/fpga/
5584 F:      include/linux/fpga/
5585 W:      http://www.rocketboards.org
5586
5587 FPU EMULATOR
5588 M:      Bill Metzenthen <billm@melbpc.org.au>
5589 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5590 S:      Maintained
5591 F:      arch/x86/math-emu/
5592
5593 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5594 L:      netdev@vger.kernel.org
5595 S:      Orphan
5596 F:      drivers/net/wan/dlci.c
5597 F:      drivers/net/wan/sdla.c
5598
5599 FRAMEBUFFER LAYER
5600 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5601 L:      dri-devel@lists.freedesktop.org
5602 L:      linux-fbdev@vger.kernel.org
5603 T:      git git://github.com/bzolnier/linux.git
5604 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5605 S:      Maintained
5606 F:      Documentation/fb/
5607 F:      drivers/video/
5608 F:      include/video/
5609 F:      include/linux/fb.h
5610 F:      include/uapi/video/
5611 F:      include/uapi/linux/fb.h
5612
5613 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5614 M:      Horia Geantă <horia.geanta@nxp.com>
5615 M:      Aymen Sghaier <aymen.sghaier@nxp.com>
5616 L:      linux-crypto@vger.kernel.org
5617 S:      Maintained
5618 F:      drivers/crypto/caam/
5619 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5620
5621 FREESCALE DIU FRAMEBUFFER DRIVER
5622 M:      Timur Tabi <timur@tabi.org>
5623 L:      linux-fbdev@vger.kernel.org
5624 S:      Maintained
5625 F:      drivers/video/fbdev/fsl-diu-fb.*
5626
5627 FREESCALE DMA DRIVER
5628 M:      Li Yang <leoyang.li@nxp.com>
5629 M:      Zhang Wei <zw@zh-kernel.org>
5630 L:      linuxppc-dev@lists.ozlabs.org
5631 S:      Maintained
5632 F:      drivers/dma/fsldma.*
5633
5634 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5635 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5636 L:      netdev@vger.kernel.org
5637 S:      Maintained
5638 F:      drivers/net/ethernet/freescale/gianfar*
5639 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5640 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5641
5642 FREESCALE GPMI NAND DRIVER
5643 M:      Han Xu <han.xu@nxp.com>
5644 L:      linux-mtd@lists.infradead.org
5645 S:      Maintained
5646 F:      drivers/mtd/nand/gpmi-nand/*
5647
5648 FREESCALE I2C CPM DRIVER
5649 M:      Jochen Friedrich <jochen@scram.de>
5650 L:      linuxppc-dev@lists.ozlabs.org
5651 L:      linux-i2c@vger.kernel.org
5652 S:      Maintained
5653 F:      drivers/i2c/busses/i2c-cpm.c
5654
5655 FREESCALE IMX / MXC FEC DRIVER
5656 M:      Fugang Duan <fugang.duan@nxp.com>
5657 L:      netdev@vger.kernel.org
5658 S:      Maintained
5659 F:      drivers/net/ethernet/freescale/fec_main.c
5660 F:      drivers/net/ethernet/freescale/fec_ptp.c
5661 F:      drivers/net/ethernet/freescale/fec.h
5662 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5663
5664 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5665 M:      Sascha Hauer <kernel@pengutronix.de>
5666 L:      linux-fbdev@vger.kernel.org
5667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5668 S:      Maintained
5669 F:      include/linux/platform_data/video-imxfb.h
5670 F:      drivers/video/fbdev/imxfb.c
5671
5672 FREESCALE QORIQ DPAA ETHERNET DRIVER
5673 M:      Madalin Bucur <madalin.bucur@nxp.com>
5674 L:      netdev@vger.kernel.org
5675 S:      Maintained
5676 F:      drivers/net/ethernet/freescale/dpaa
5677
5678 FREESCALE QORIQ DPAA FMAN DRIVER
5679 M:      Madalin Bucur <madalin.bucur@nxp.com>
5680 L:      netdev@vger.kernel.org
5681 S:      Maintained
5682 F:      drivers/net/ethernet/freescale/fman
5683 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5684
5685 FREESCALE QUAD SPI DRIVER
5686 M:      Han Xu <han.xu@nxp.com>
5687 L:      linux-mtd@lists.infradead.org
5688 S:      Maintained
5689 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5690
5691 FREESCALE QUICC ENGINE LIBRARY
5692 M:      Qiang Zhao <qiang.zhao@nxp.com>
5693 L:      linuxppc-dev@lists.ozlabs.org
5694 S:      Maintained
5695 F:      drivers/soc/fsl/qe/
5696 F:      include/soc/fsl/*qe*.h
5697 F:      include/soc/fsl/*ucc*.h
5698
5699 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5700 M:      Li Yang <leoyang.li@nxp.com>
5701 L:      netdev@vger.kernel.org
5702 L:      linuxppc-dev@lists.ozlabs.org
5703 S:      Maintained
5704 F:      drivers/net/ethernet/freescale/ucc_geth*
5705
5706 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5707 M:      Zhao Qiang <qiang.zhao@nxp.com>
5708 L:      netdev@vger.kernel.org
5709 L:      linuxppc-dev@lists.ozlabs.org
5710 S:      Maintained
5711 F:      drivers/net/wan/fsl_ucc_hdlc*
5712
5713 FREESCALE QUICC ENGINE UCC UART DRIVER
5714 M:      Timur Tabi <timur@tabi.org>
5715 L:      linuxppc-dev@lists.ozlabs.org
5716 S:      Maintained
5717 F:      drivers/tty/serial/ucc_uart.c
5718
5719 FREESCALE SOC DRIVERS
5720 M:      Li Yang <leoyang.li@nxp.com>
5721 L:      linuxppc-dev@lists.ozlabs.org
5722 L:      linux-arm-kernel@lists.infradead.org
5723 S:      Maintained
5724 F:      Documentation/devicetree/bindings/soc/fsl/
5725 F:      drivers/soc/fsl/
5726 F:      include/linux/fsl/
5727
5728 FREESCALE SOC FS_ENET DRIVER
5729 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5730 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5731 L:      linuxppc-dev@lists.ozlabs.org
5732 L:      netdev@vger.kernel.org
5733 S:      Maintained
5734 F:      drivers/net/ethernet/freescale/fs_enet/
5735 F:      include/linux/fs_enet_pd.h
5736
5737 FREESCALE SOC SOUND DRIVERS
5738 M:      Timur Tabi <timur@tabi.org>
5739 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5740 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5741 R:      Fabio Estevam <fabio.estevam@nxp.com>
5742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5743 L:      linuxppc-dev@lists.ozlabs.org
5744 S:      Maintained
5745 F:      sound/soc/fsl/fsl*
5746 F:      sound/soc/fsl/imx*
5747 F:      sound/soc/fsl/mpc8610_hpcd.c
5748
5749 FREESCALE USB PERIPHERAL DRIVERS
5750 M:      Li Yang <leoyang.li@nxp.com>
5751 L:      linux-usb@vger.kernel.org
5752 L:      linuxppc-dev@lists.ozlabs.org
5753 S:      Maintained
5754 F:      drivers/usb/gadget/udc/fsl*
5755
5756 FREEVXFS FILESYSTEM
5757 M:      Christoph Hellwig <hch@infradead.org>
5758 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5759 S:      Maintained
5760 F:      fs/freevxfs/
5761
5762 FREEZER
5763 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5764 M:      Pavel Machek <pavel@ucw.cz>
5765 L:      linux-pm@vger.kernel.org
5766 S:      Supported
5767 F:      Documentation/power/freezing-of-tasks.txt
5768 F:      include/linux/freezer.h
5769 F:      kernel/freezer.c
5770
5771 FRONTSWAP API
5772 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5773 L:      linux-kernel@vger.kernel.org
5774 S:      Maintained
5775 F:      mm/frontswap.c
5776 F:      include/linux/frontswap.h
5777
5778 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5779 M:      David Howells <dhowells@redhat.com>
5780 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5781 S:      Supported
5782 F:      Documentation/filesystems/caching/
5783 F:      fs/fscache/
5784 F:      include/linux/fscache*.h
5785
5786 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5787 M:      Theodore Y. Ts'o <tytso@mit.edu>
5788 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5789 L:      linux-fscrypt@vger.kernel.org
5790 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5792 S:      Supported
5793 F:      fs/crypto/
5794 F:      include/linux/fscrypt*.h
5795 F:      Documentation/filesystems/fscrypt.rst
5796
5797 FUJITSU FR-V (FRV) PORT
5798 S:      Orphan
5799 F:      arch/frv/
5800
5801 FUJITSU LAPTOP EXTRAS
5802 M:      Jonathan Woithe <jwoithe@just42.net>
5803 L:      platform-driver-x86@vger.kernel.org
5804 S:      Maintained
5805 F:      drivers/platform/x86/fujitsu-laptop.c
5806
5807 FUJITSU M-5MO LS CAMERA ISP DRIVER
5808 M:      Kyungmin Park <kyungmin.park@samsung.com>
5809 M:      Heungjun Kim <riverful.kim@samsung.com>
5810 L:      linux-media@vger.kernel.org
5811 S:      Maintained
5812 F:      drivers/media/i2c/m5mols/
5813 F:      include/media/i2c/m5mols.h
5814
5815 FUJITSU TABLET EXTRAS
5816 M:      Robert Gerlach <khnz@gmx.de>
5817 L:      platform-driver-x86@vger.kernel.org
5818 S:      Maintained
5819 F:      drivers/platform/x86/fujitsu-tablet.c
5820
5821 FUSE: FILESYSTEM IN USERSPACE
5822 M:      Miklos Szeredi <miklos@szeredi.hu>
5823 L:      linux-fsdevel@vger.kernel.org
5824 W:      http://fuse.sourceforge.net/
5825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5826 S:      Maintained
5827 F:      fs/fuse/
5828 F:      include/uapi/linux/fuse.h
5829 F:      Documentation/filesystems/fuse.txt
5830
5831 FUTEX SUBSYSTEM
5832 M:      Thomas Gleixner <tglx@linutronix.de>
5833 M:      Ingo Molnar <mingo@redhat.com>
5834 R:      Peter Zijlstra <peterz@infradead.org>
5835 R:      Darren Hart <dvhart@infradead.org>
5836 L:      linux-kernel@vger.kernel.org
5837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5838 S:      Maintained
5839 F:      kernel/futex.c
5840 F:      kernel/futex_compat.c
5841 F:      include/asm-generic/futex.h
5842 F:      include/linux/futex.h
5843 F:      include/uapi/linux/futex.h
5844 F:      tools/testing/selftests/futex/
5845 F:      tools/perf/bench/futex*
5846 F:      Documentation/*futex*
5847
5848 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5849 M:      Rik Faith <faith@cs.unc.edu>
5850 L:      linux-scsi@vger.kernel.org
5851 S:      Odd Fixes (e.g., new signatures)
5852 F:      drivers/scsi/fdomain.*
5853
5854 GCC PLUGINS
5855 M:      Kees Cook <keescook@chromium.org>
5856 R:      Emese Revfy <re.emese@gmail.com>
5857 L:      kernel-hardening@lists.openwall.com
5858 S:      Maintained
5859 F:      scripts/gcc-plugins/
5860 F:      scripts/gcc-plugin.sh
5861 F:      scripts/Makefile.gcc-plugins
5862 F:      Documentation/gcc-plugins.txt
5863
5864 GCOV BASED KERNEL PROFILING
5865 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5866 S:      Maintained
5867 F:      kernel/gcov/
5868 F:      Documentation/dev-tools/gcov.rst
5869
5870 GDB KERNEL DEBUGGING HELPER SCRIPTS
5871 M:      Jan Kiszka <jan.kiszka@siemens.com>
5872 M:      Kieran Bingham <kieran@bingham.xyz>
5873 S:      Supported
5874 F:      scripts/gdb/
5875
5876 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5877 M:      Achim Leubner <achim_leubner@adaptec.com>
5878 L:      linux-scsi@vger.kernel.org
5879 W:      http://www.icp-vortex.com/
5880 S:      Supported
5881 F:      drivers/scsi/gdt*
5882
5883 GEMTEK FM RADIO RECEIVER DRIVER
5884 M:      Hans Verkuil <hverkuil@xs4all.nl>
5885 L:      linux-media@vger.kernel.org
5886 T:      git git://linuxtv.org/media_tree.git
5887 W:      https://linuxtv.org
5888 S:      Maintained
5889 F:      drivers/media/radio/radio-gemtek*
5890
5891 GENERIC GPIO I2C DRIVER
5892 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5893 S:      Supported
5894 F:      drivers/i2c/busses/i2c-gpio.c
5895 F:      include/linux/i2c-gpio.h
5896
5897 GENERIC GPIO I2C MULTIPLEXER DRIVER
5898 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5899 L:      linux-i2c@vger.kernel.org
5900 S:      Supported
5901 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5902 F:      include/linux/i2c-mux-gpio.h
5903 F:      Documentation/i2c/muxes/i2c-mux-gpio
5904
5905 GENERIC HDLC (WAN) DRIVERS
5906 M:      Krzysztof Halasa <khc@pm.waw.pl>
5907 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5908 S:      Maintained
5909 F:      drivers/net/wan/c101.c
5910 F:      drivers/net/wan/hd6457*
5911 F:      drivers/net/wan/hdlc*
5912 F:      drivers/net/wan/n2.c
5913 F:      drivers/net/wan/pc300too.c
5914 F:      drivers/net/wan/pci200syn.c
5915 F:      drivers/net/wan/wanxl*
5916
5917 GENERIC INCLUDE/ASM HEADER FILES
5918 M:      Arnd Bergmann <arnd@arndb.de>
5919 L:      linux-arch@vger.kernel.org
5920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5921 S:      Maintained
5922 F:      include/asm-generic/
5923 F:      include/uapi/asm-generic/
5924
5925 GENERIC PHY FRAMEWORK
5926 M:      Kishon Vijay Abraham I <kishon@ti.com>
5927 L:      linux-kernel@vger.kernel.org
5928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5929 S:      Supported
5930 F:      drivers/phy/
5931 F:      include/linux/phy/
5932
5933 GENERIC PM DOMAINS
5934 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5935 M:      Kevin Hilman <khilman@kernel.org>
5936 M:      Ulf Hansson <ulf.hansson@linaro.org>
5937 L:      linux-pm@vger.kernel.org
5938 S:      Supported
5939 F:      drivers/base/power/domain*.c
5940 F:      include/linux/pm_domain.h
5941 F:      Documentation/devicetree/bindings/power/power_domain.txt
5942
5943 GENERIC UIO DRIVER FOR PCI DEVICES
5944 M:      "Michael S. Tsirkin" <mst@redhat.com>
5945 L:      kvm@vger.kernel.org
5946 S:      Supported
5947 F:      drivers/uio/uio_pci_generic.c
5948
5949 GENWQE (IBM Generic Workqueue Card)
5950 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5951 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5952 S:      Supported
5953 F:      drivers/misc/genwqe/
5954
5955 GET_MAINTAINER SCRIPT
5956 M:      Joe Perches <joe@perches.com>
5957 S:      Maintained
5958 F:      scripts/get_maintainer.pl
5959
5960 GFS2 FILE SYSTEM
5961 M:      Steven Whitehouse <swhiteho@redhat.com>
5962 M:      Bob Peterson <rpeterso@redhat.com>
5963 L:      cluster-devel@redhat.com
5964 W:      http://sources.redhat.com/cluster/
5965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5966 S:      Supported
5967 F:      Documentation/filesystems/gfs2*.txt
5968 F:      fs/gfs2/
5969 F:      include/uapi/linux/gfs2_ondisk.h
5970
5971 GIGASET ISDN DRIVERS
5972 M:      Paul Bolle <pebolle@tiscali.nl>
5973 L:      gigaset307x-common@lists.sourceforge.net
5974 W:      http://gigaset307x.sourceforge.net/
5975 S:      Odd Fixes
5976 F:      Documentation/isdn/README.gigaset
5977 F:      drivers/isdn/gigaset/
5978 F:      include/uapi/linux/gigaset_dev.h
5979
5980 GO7007 MPEG CODEC
5981 M:      Hans Verkuil <hans.verkuil@cisco.com>
5982 L:      linux-media@vger.kernel.org
5983 S:      Maintained
5984 F:      drivers/media/usb/go7007/
5985
5986 GOODIX TOUCHSCREEN
5987 M:      Bastien Nocera <hadess@hadess.net>
5988 L:      linux-input@vger.kernel.org
5989 S:      Maintained
5990 F:      drivers/input/touchscreen/goodix.c
5991
5992 GPD POCKET FAN DRIVER
5993 M:      Hans de Goede <hdegoede@redhat.com>
5994 L:      platform-driver-x86@vger.kernel.org
5995 S:      Maintained
5996 F:      drivers/platform/x86/gpd-pocket-fan.c
5997
5998 GPIO ACPI SUPPORT
5999 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6000 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6001 L:      linux-gpio@vger.kernel.org
6002 L:      linux-acpi@vger.kernel.org
6003 S:      Maintained
6004 F:      Documentation/acpi/gpio-properties.txt
6005 F:      drivers/gpio/gpiolib-acpi.c
6006
6007 GPIO IR Transmitter
6008 M:      Sean Young <sean@mess.org>
6009 L:      linux-media@vger.kernel.org
6010 S:      Maintained
6011 F:      drivers/media/rc/gpio-ir-tx.c
6012
6013 GPIO MOCKUP DRIVER
6014 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
6015 R:      Bartosz Golaszewski <brgl@bgdev.pl>
6016 L:      linux-gpio@vger.kernel.org
6017 S:      Maintained
6018 F:      drivers/gpio/gpio-mockup.c
6019 F:      tools/testing/selftests/gpio/
6020
6021 GPIO SUBSYSTEM
6022 M:      Linus Walleij <linus.walleij@linaro.org>
6023 L:      linux-gpio@vger.kernel.org
6024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
6025 S:      Maintained
6026 F:      Documentation/devicetree/bindings/gpio/
6027 F:      Documentation/gpio/
6028 F:      Documentation/ABI/testing/gpio-cdev
6029 F:      Documentation/ABI/obsolete/sysfs-gpio
6030 F:      drivers/gpio/
6031 F:      include/linux/gpio/
6032 F:      include/linux/gpio.h
6033 F:      include/asm-generic/gpio.h
6034 F:      include/uapi/linux/gpio.h
6035 F:      tools/gpio/
6036
6037 GRE DEMULTIPLEXER DRIVER
6038 M:      Dmitry Kozlov <xeb@mail.ru>
6039 L:      netdev@vger.kernel.org
6040 S:      Maintained
6041 F:      net/ipv4/gre_demux.c
6042 F:      net/ipv4/gre_offload.c
6043 F:      include/net/gre.h
6044
6045 GRETH 10/100/1G Ethernet MAC device driver
6046 M:      Andreas Larsson <andreas@gaisler.com>
6047 L:      netdev@vger.kernel.org
6048 S:      Maintained
6049 F:      drivers/net/ethernet/aeroflex/
6050
6051 GREYBUS AUDIO PROTOCOLS DRIVERS
6052 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
6053 M:      Mark Greer <mgreer@animalcreek.com>
6054 S:      Maintained
6055 F:      drivers/staging/greybus/audio_apbridgea.c
6056 F:      drivers/staging/greybus/audio_apbridgea.h
6057 F:      drivers/staging/greybus/audio_codec.c
6058 F:      drivers/staging/greybus/audio_codec.h
6059 F:      drivers/staging/greybus/audio_gb.c
6060 F:      drivers/staging/greybus/audio_manager.c
6061 F:      drivers/staging/greybus/audio_manager.h
6062 F:      drivers/staging/greybus/audio_manager_module.c
6063 F:      drivers/staging/greybus/audio_manager_private.h
6064 F:      drivers/staging/greybus/audio_manager_sysfs.c
6065 F:      drivers/staging/greybus/audio_module.c
6066 F:      drivers/staging/greybus/audio_topology.c
6067
6068 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
6069 M:      Viresh Kumar <vireshk@kernel.org>
6070 S:      Maintained
6071 F:      drivers/staging/greybus/authentication.c
6072 F:      drivers/staging/greybus/bootrom.c
6073 F:      drivers/staging/greybus/firmware.h
6074 F:      drivers/staging/greybus/fw-core.c
6075 F:      drivers/staging/greybus/fw-download.c
6076 F:      drivers/staging/greybus/fw-managament.c
6077 F:      drivers/staging/greybus/greybus_authentication.h
6078 F:      drivers/staging/greybus/greybus_firmware.h
6079 F:      drivers/staging/greybus/hid.c
6080 F:      drivers/staging/greybus/i2c.c
6081 F:      drivers/staging/greybus/spi.c
6082 F:      drivers/staging/greybus/spilib.c
6083 F:      drivers/staging/greybus/spilib.h
6084
6085 GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS
6086 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
6087 S:      Maintained
6088 F:      drivers/staging/greybus/loopback.c
6089 F:      drivers/staging/greybus/timesync.c
6090 F:      drivers/staging/greybus/timesync_platform.c
6091
6092 GREYBUS PLATFORM DRIVERS
6093 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
6094 S:      Maintained
6095 F:      drivers/staging/greybus/arche-platform.c
6096 F:      drivers/staging/greybus/arche-apb-ctrl.c
6097 F:      drivers/staging/greybus/arche_platform.h
6098
6099 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
6100 M:      Rui Miguel Silva <rmfrfs@gmail.com>
6101 S:      Maintained
6102 F:      drivers/staging/greybus/sdio.c
6103 F:      drivers/staging/greybus/light.c
6104 F:      drivers/staging/greybus/gpio.c
6105 F:      drivers/staging/greybus/power_supply.c
6106 F:      drivers/staging/greybus/spi.c
6107 F:      drivers/staging/greybus/spilib.c
6108
6109 GREYBUS SUBSYSTEM
6110 M:      Johan Hovold <johan@kernel.org>
6111 M:      Alex Elder <elder@kernel.org>
6112 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6113 S:      Maintained
6114 F:      drivers/staging/greybus/
6115 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
6116
6117 GREYBUS UART PROTOCOLS DRIVERS
6118 M:      David Lin <dtwlin@gmail.com>
6119 S:      Maintained
6120 F:      drivers/staging/greybus/uart.c
6121 F:      drivers/staging/greybus/log.c
6122
6123 GS1662 VIDEO SERIALIZER
6124 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
6125 L:      linux-media@vger.kernel.org
6126 T:      git git://linuxtv.org/media_tree.git
6127 S:      Maintained
6128 F:      drivers/media/spi/gs1662.c
6129
6130 GSPCA FINEPIX SUBDRIVER
6131 M:      Frank Zago <frank@zago.net>
6132 L:      linux-media@vger.kernel.org
6133 T:      git git://linuxtv.org/media_tree.git
6134 S:      Maintained
6135 F:      drivers/media/usb/gspca/finepix.c
6136
6137 GSPCA GL860 SUBDRIVER
6138 M:      Olivier Lorin <o.lorin@laposte.net>
6139 L:      linux-media@vger.kernel.org
6140 T:      git git://linuxtv.org/media_tree.git
6141 S:      Maintained
6142 F:      drivers/media/usb/gspca/gl860/
6143
6144 GSPCA M5602 SUBDRIVER
6145 M:      Erik Andren <erik.andren@gmail.com>
6146 L:      linux-media@vger.kernel.org
6147 T:      git git://linuxtv.org/media_tree.git
6148 S:      Maintained
6149 F:      drivers/media/usb/gspca/m5602/
6150
6151 GSPCA PAC207 SONIXB SUBDRIVER
6152 M:      Hans Verkuil <hverkuil@xs4all.nl>
6153 L:      linux-media@vger.kernel.org
6154 T:      git git://linuxtv.org/media_tree.git
6155 S:      Odd Fixes
6156 F:      drivers/media/usb/gspca/pac207.c
6157
6158 GSPCA SN9C20X SUBDRIVER
6159 M:      Brian Johnson <brijohn@gmail.com>
6160 L:      linux-media@vger.kernel.org
6161 T:      git git://linuxtv.org/media_tree.git
6162 S:      Maintained
6163 F:      drivers/media/usb/gspca/sn9c20x.c
6164
6165 GSPCA T613 SUBDRIVER
6166 M:      Leandro Costantino <lcostantino@gmail.com>
6167 L:      linux-media@vger.kernel.org
6168 T:      git git://linuxtv.org/media_tree.git
6169 S:      Maintained
6170 F:      drivers/media/usb/gspca/t613.c
6171
6172 GSPCA USB WEBCAM DRIVER
6173 M:      Hans Verkuil <hverkuil@xs4all.nl>
6174 L:      linux-media@vger.kernel.org
6175 T:      git git://linuxtv.org/media_tree.git
6176 S:      Odd Fixes
6177 F:      drivers/media/usb/gspca/
6178
6179 GTP (GPRS Tunneling Protocol)
6180 M:      Pablo Neira Ayuso <pablo@netfilter.org>
6181 M:      Harald Welte <laforge@gnumonks.org>
6182 L:      osmocom-net-gprs@lists.osmocom.org
6183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
6184 S:      Maintained
6185 F:      drivers/net/gtp.c
6186
6187 GUID PARTITION TABLE (GPT)
6188 M:      Davidlohr Bueso <dave@stgolabs.net>
6189 L:      linux-efi@vger.kernel.org
6190 S:      Maintained
6191 F:      block/partitions/efi.*
6192
6193 H8/300 ARCHITECTURE
6194 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
6195 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
6196 W:      http://uclinux-h8.sourceforge.jp
6197 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
6198 S:      Maintained
6199 F:      arch/h8300/
6200 F:      drivers/clocksource/h8300_*.c
6201 F:      drivers/clk/h8300/
6202 F:      drivers/irqchip/irq-renesas-h8*.c
6203
6204 HACKRF MEDIA DRIVER
6205 M:      Antti Palosaari <crope@iki.fi>
6206 L:      linux-media@vger.kernel.org
6207 W:      https://linuxtv.org
6208 W:      http://palosaari.fi/linux/
6209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6210 T:      git git://linuxtv.org/anttip/media_tree.git
6211 S:      Maintained
6212 F:      drivers/media/usb/hackrf/
6213
6214 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
6215 M:      Frank Seidel <frank@f-seidel.de>
6216 L:      platform-driver-x86@vger.kernel.org
6217 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
6218 S:      Maintained
6219 F:      drivers/platform/x86/hdaps.c
6220
6221 HARDWARE MONITORING
6222 M:      Jean Delvare <jdelvare@suse.com>
6223 M:      Guenter Roeck <linux@roeck-us.net>
6224 L:      linux-hwmon@vger.kernel.org
6225 W:      http://hwmon.wiki.kernel.org/
6226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6227 S:      Maintained
6228 F:      Documentation/hwmon/
6229 F:      drivers/hwmon/
6230 F:      include/linux/hwmon*.h
6231
6232 HARDWARE RANDOM NUMBER GENERATOR CORE
6233 M:      Matt Mackall <mpm@selenic.com>
6234 M:      Herbert Xu <herbert@gondor.apana.org.au>
6235 L:      linux-crypto@vger.kernel.org
6236 S:      Odd fixes
6237 F:      Documentation/devicetree/bindings/rng/
6238 F:      Documentation/hw_random.txt
6239 F:      drivers/char/hw_random/
6240 F:      include/linux/hw_random.h
6241
6242 HARDWARE SPINLOCK CORE
6243 M:      Ohad Ben-Cohen <ohad@wizery.com>
6244 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6245 L:      linux-remoteproc@vger.kernel.org
6246 S:      Maintained
6247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6248 F:      Documentation/devicetree/bindings/hwlock/
6249 F:      Documentation/hwspinlock.txt
6250 F:      drivers/hwspinlock/
6251 F:      include/linux/hwspinlock.h
6252
6253 HARMONY SOUND DRIVER
6254 L:      linux-parisc@vger.kernel.org
6255 S:      Maintained
6256 F:      sound/parisc/harmony.*
6257
6258 HDPVR USB VIDEO ENCODER DRIVER
6259 M:      Hans Verkuil <hverkuil@xs4all.nl>
6260 L:      linux-media@vger.kernel.org
6261 T:      git git://linuxtv.org/media_tree.git
6262 W:      https://linuxtv.org
6263 S:      Odd Fixes
6264 F:      drivers/media/usb/hdpvr/
6265
6266 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6267 M:      Jimmy Vance <jimmy.vance@hpe.com>
6268 S:      Supported
6269 F:      Documentation/watchdog/hpwdt.txt
6270 F:      drivers/watchdog/hpwdt.c
6271
6272 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6273 M:      Don Brace <don.brace@microsemi.com>
6274 L:      esc.storagedev@microsemi.com
6275 L:      linux-scsi@vger.kernel.org
6276 S:      Supported
6277 F:      Documentation/scsi/hpsa.txt
6278 F:      drivers/scsi/hpsa*.[ch]
6279 F:      include/linux/cciss*.h
6280 F:      include/uapi/linux/cciss*.h
6281
6282 HFI1 DRIVER
6283 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6284 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6285 L:      linux-rdma@vger.kernel.org
6286 S:      Supported
6287 F:      drivers/infiniband/hw/hfi1
6288
6289 HFS FILESYSTEM
6290 L:      linux-fsdevel@vger.kernel.org
6291 S:      Orphan
6292 F:      Documentation/filesystems/hfs.txt
6293 F:      fs/hfs/
6294
6295 HFSPLUS FILESYSTEM
6296 L:      linux-fsdevel@vger.kernel.org
6297 S:      Orphan
6298 F:      Documentation/filesystems/hfsplus.txt
6299 F:      fs/hfsplus/
6300
6301 HGA FRAMEBUFFER DRIVER
6302 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6303 L:      linux-nvidia@lists.surfsouth.com
6304 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6305 S:      Maintained
6306 F:      drivers/video/fbdev/hgafb.c
6307
6308 HIBERNATION (aka Software Suspend, aka swsusp)
6309 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6310 M:      Pavel Machek <pavel@ucw.cz>
6311 L:      linux-pm@vger.kernel.org
6312 B:      https://bugzilla.kernel.org
6313 S:      Supported
6314 F:      arch/x86/power/
6315 F:      drivers/base/power/
6316 F:      kernel/power/
6317 F:      include/linux/suspend.h
6318 F:      include/linux/freezer.h
6319 F:      include/linux/pm.h
6320 F:      arch/*/include/asm/suspend*.h
6321
6322 HID CORE LAYER
6323 M:      Jiri Kosina <jikos@kernel.org>
6324 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6325 L:      linux-input@vger.kernel.org
6326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6327 S:      Maintained
6328 F:      drivers/hid/
6329 F:      include/linux/hid*
6330 F:      include/uapi/linux/hid*
6331
6332 HID SENSOR HUB DRIVERS
6333 M:      Jiri Kosina <jikos@kernel.org>
6334 M:      Jonathan Cameron <jic23@kernel.org>
6335 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6336 L:      linux-input@vger.kernel.org
6337 L:      linux-iio@vger.kernel.org
6338 S:      Maintained
6339 F:      Documentation/hid/hid-sensor*
6340 F:      drivers/hid/hid-sensor-*
6341 F:      drivers/iio/*/hid-*
6342 F:      include/linux/hid-sensor-*
6343
6344 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6345 M:      Thomas Gleixner <tglx@linutronix.de>
6346 L:      linux-kernel@vger.kernel.org
6347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6348 S:      Maintained
6349 F:      Documentation/timers/
6350 F:      kernel/time/hrtimer.c
6351 F:      kernel/time/clockevents.c
6352 F:      kernel/time/timer_*.c
6353 F:      include/linux/clockchips.h
6354 F:      include/linux/hrtimer.h
6355
6356 HIGH-SPEED SCC DRIVER FOR AX.25
6357 L:      linux-hams@vger.kernel.org
6358 S:      Orphan
6359 F:      drivers/net/hamradio/dmascc.c
6360 F:      drivers/net/hamradio/scc.c
6361
6362 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6363 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6364 W:      http://www.highpoint-tech.com
6365 S:      Supported
6366 F:      Documentation/scsi/hptiop.txt
6367 F:      drivers/scsi/hptiop.c
6368
6369 HIPPI
6370 M:      Jes Sorensen <jes@trained-monkey.org>
6371 L:      linux-hippi@sunsite.dk
6372 S:      Maintained
6373 F:      include/linux/hippidevice.h
6374 F:      include/uapi/linux/if_hippi.h
6375 F:      net/802/hippi.c
6376 F:      drivers/net/hippi/
6377
6378 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
6379 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6380 M:      Salil Mehta <salil.mehta@huawei.com>
6381 L:      netdev@vger.kernel.org
6382 W:      http://www.hisilicon.com
6383 S:      Maintained
6384 F:      drivers/net/ethernet/hisilicon/hns3/
6385
6386 HISILICON NETWORK SUBSYSTEM DRIVER
6387 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6388 M:      Salil Mehta <salil.mehta@huawei.com>
6389 L:      netdev@vger.kernel.org
6390 W:      http://www.hisilicon.com
6391 S:      Maintained
6392 F:      drivers/net/ethernet/hisilicon/
6393 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6394
6395 HISILICON PMU DRIVER
6396 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
6397 W:      http://www.hisilicon.com
6398 S:      Supported
6399 F:      drivers/perf/hisilicon
6400 F:      Documentation/perf/hisi-pmu.txt
6401
6402 HISILICON ROCE DRIVER
6403 M:      Lijun Ou <oulijun@huawei.com>
6404 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6405 L:      linux-rdma@vger.kernel.org
6406 S:      Maintained
6407 F:      drivers/infiniband/hw/hns/
6408 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6409
6410 HISILICON SAS Controller
6411 M:      John Garry <john.garry@huawei.com>
6412 W:      http://www.hisilicon.com
6413 S:      Supported
6414 F:      drivers/scsi/hisi_sas/
6415 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6416
6417 HMM - Heterogeneous Memory Management
6418 M:      Jérôme Glisse <jglisse@redhat.com>
6419 L:      linux-mm@kvack.org
6420 S:      Maintained
6421 F:      mm/hmm*
6422 F:      include/linux/hmm*
6423
6424 HOST AP DRIVER
6425 M:      Jouni Malinen <j@w1.fi>
6426 L:      linux-wireless@vger.kernel.org
6427 W:      http://w1.fi/hostap-driver.html
6428 S:      Obsolete
6429 F:      drivers/net/wireless/intersil/hostap/
6430
6431 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6432 L:      platform-driver-x86@vger.kernel.org
6433 S:      Orphan
6434 F:      drivers/platform/x86/tc1100-wmi.c
6435
6436 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6437 M:      Jaroslav Kysela <perex@perex.cz>
6438 S:      Maintained
6439 F:      drivers/net/ethernet/hp/hp100.*
6440
6441 HPET:   High Precision Event Timers driver
6442 M:      Clemens Ladisch <clemens@ladisch.de>
6443 S:      Maintained
6444 F:      Documentation/timers/hpet.txt
6445 F:      drivers/char/hpet.c
6446 F:      include/linux/hpet.h
6447 F:      include/uapi/linux/hpet.h
6448
6449 HPET:   x86
6450 S:      Orphan
6451 F:      arch/x86/kernel/hpet.c
6452 F:      arch/x86/include/asm/hpet.h
6453
6454 HPFS FILESYSTEM
6455 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6456 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6457 S:      Maintained
6458 F:      fs/hpfs/
6459
6460 HSI SUBSYSTEM
6461 M:      Sebastian Reichel <sre@kernel.org>
6462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6463 S:      Maintained
6464 F:      Documentation/ABI/testing/sysfs-bus-hsi
6465 F:      Documentation/driver-api/hsi.rst
6466 F:      drivers/hsi/
6467 F:      include/linux/hsi/
6468 F:      include/uapi/linux/hsi/
6469
6470 HSO 3G MODEM DRIVER
6471 L:      linux-usb@vger.kernel.org
6472 S:      Orphan
6473 F:      drivers/net/usb/hso.c
6474
6475 HSR NETWORK PROTOCOL
6476 M:      Arvid Brodin <arvid.brodin@alten.se>
6477 L:      netdev@vger.kernel.org
6478 S:      Maintained
6479 F:      net/hsr/
6480
6481 HT16K33 LED CONTROLLER DRIVER
6482 M:      Robin van der Gracht <robin@protonic.nl>
6483 S:      Maintained
6484 F:      drivers/auxdisplay/ht16k33.c
6485 F:      Documentation/devicetree/bindings/display/ht16k33.txt
6486
6487 HTCPEN TOUCHSCREEN DRIVER
6488 M:      Pau Oliva Fora <pof@eslack.org>
6489 L:      linux-input@vger.kernel.org
6490 S:      Maintained
6491 F:      drivers/input/touchscreen/htcpen.c
6492
6493 HUAWEI ETHERNET DRIVER
6494 M:      Aviad Krawczyk <aviad.krawczyk@huawei.com>
6495 L:      netdev@vger.kernel.org
6496 S:      Supported
6497 F:      Documentation/networking/hinic.txt
6498 F:      drivers/net/ethernet/huawei/hinic/
6499
6500 HUGETLB FILESYSTEM
6501 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
6502 S:      Maintained
6503 F:      fs/hugetlbfs/
6504
6505 HVA ST MEDIA DRIVER
6506 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6507 L:      linux-media@vger.kernel.org
6508 T:      git git://linuxtv.org/media_tree.git
6509 W:      https://linuxtv.org
6510 S:      Supported
6511 F:      drivers/media/platform/sti/hva
6512
6513 HWPOISON MEMORY FAILURE HANDLING
6514 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
6515 L:      linux-mm@kvack.org
6516 S:      Maintained
6517 F:      mm/memory-failure.c
6518 F:      mm/hwpoison-inject.c
6519
6520 Hyper-V CORE AND DRIVERS
6521 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6522 M:      Haiyang Zhang <haiyangz@microsoft.com>
6523 M:      Stephen Hemminger <sthemmin@microsoft.com>
6524 L:      devel@linuxdriverproject.org
6525 S:      Maintained
6526 F:      Documentation/networking/netvsc.txt
6527 F:      arch/x86/include/asm/mshyperv.h
6528 F:      arch/x86/include/asm/trace/hyperv.h
6529 F:      arch/x86/include/uapi/asm/hyperv.h
6530 F:      arch/x86/kernel/cpu/mshyperv.c
6531 F:      arch/x86/hyperv
6532 F:      drivers/hid/hid-hyperv.c
6533 F:      drivers/hv/
6534 F:      drivers/input/serio/hyperv-keyboard.c
6535 F:      drivers/pci/host/pci-hyperv.c
6536 F:      drivers/net/hyperv/
6537 F:      drivers/scsi/storvsc_drv.c
6538 F:      drivers/uio/uio_hv_generic.c
6539 F:      drivers/video/fbdev/hyperv_fb.c
6540 F:      net/vmw_vsock/hyperv_transport.c
6541 F:      include/linux/hyperv.h
6542 F:      include/uapi/linux/hyperv.h
6543 F:      tools/hv/
6544 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6545
6546 HYPERVISOR VIRTUAL CONSOLE DRIVER
6547 L:      linuxppc-dev@lists.ozlabs.org
6548 S:      Odd Fixes
6549 F:      drivers/tty/hvc/
6550
6551 I2C ACPI SUPPORT
6552 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6553 L:      linux-i2c@vger.kernel.org
6554 L:      linux-acpi@vger.kernel.org
6555 S:      Maintained
6556 F:      drivers/i2c/i2c-core-acpi.c
6557
6558 I2C MUXES
6559 M:      Peter Rosin <peda@axentia.se>
6560 L:      linux-i2c@vger.kernel.org
6561 S:      Maintained
6562 F:      Documentation/i2c/i2c-topology
6563 F:      Documentation/i2c/muxes/
6564 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6565 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6566 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6567 F:      drivers/i2c/i2c-mux.c
6568 F:      drivers/i2c/muxes/
6569 F:      include/linux/i2c-mux.h
6570
6571 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
6572 M:      Gregory CLEMENT <gregory.clement@free-electrons.com>
6573 L:      linux-i2c@vger.kernel.org
6574 S:      Maintained
6575 F:      drivers/i2c/busses/i2c-mv64xxx.c
6576
6577 I2C OVER PARALLEL PORT
6578 M:      Jean Delvare <jdelvare@suse.com>
6579 L:      linux-i2c@vger.kernel.org
6580 S:      Maintained
6581 F:      Documentation/i2c/busses/i2c-parport
6582 F:      Documentation/i2c/busses/i2c-parport-light
6583 F:      drivers/i2c/busses/i2c-parport.c
6584 F:      drivers/i2c/busses/i2c-parport-light.c
6585
6586 I2C SUBSYSTEM
6587 M:      Wolfram Sang <wsa@the-dreams.de>
6588 L:      linux-i2c@vger.kernel.org
6589 W:      https://i2c.wiki.kernel.org/
6590 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6592 S:      Maintained
6593 F:      Documentation/devicetree/bindings/i2c/
6594 F:      Documentation/i2c/
6595 F:      drivers/i2c/
6596 F:      drivers/i2c/*/
6597 F:      include/linux/i2c.h
6598 F:      include/linux/i2c-*.h
6599 F:      include/uapi/linux/i2c.h
6600 F:      include/uapi/linux/i2c-*.h
6601
6602 I2C-TAOS-EVM DRIVER
6603 M:      Jean Delvare <jdelvare@suse.com>
6604 L:      linux-i2c@vger.kernel.org
6605 S:      Maintained
6606 F:      Documentation/i2c/busses/i2c-taos-evm
6607 F:      drivers/i2c/busses/i2c-taos-evm.c
6608
6609 I2C-TINY-USB DRIVER
6610 M:      Till Harbaum <till@harbaum.org>
6611 L:      linux-i2c@vger.kernel.org
6612 W:      http://www.harbaum.org/till/i2c_tiny_usb
6613 S:      Maintained
6614 F:      drivers/i2c/busses/i2c-tiny-usb.c
6615
6616 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6617 M:      Jean Delvare <jdelvare@suse.com>
6618 L:      linux-i2c@vger.kernel.org
6619 S:      Maintained
6620 F:      Documentation/i2c/busses/i2c-ali1535
6621 F:      Documentation/i2c/busses/i2c-ali1563
6622 F:      Documentation/i2c/busses/i2c-ali15x3
6623 F:      Documentation/i2c/busses/i2c-amd756
6624 F:      Documentation/i2c/busses/i2c-amd8111
6625 F:      Documentation/i2c/busses/i2c-i801
6626 F:      Documentation/i2c/busses/i2c-nforce2
6627 F:      Documentation/i2c/busses/i2c-piix4
6628 F:      Documentation/i2c/busses/i2c-sis5595
6629 F:      Documentation/i2c/busses/i2c-sis630
6630 F:      Documentation/i2c/busses/i2c-sis96x
6631 F:      Documentation/i2c/busses/i2c-via
6632 F:      Documentation/i2c/busses/i2c-viapro
6633 F:      drivers/i2c/busses/i2c-ali1535.c
6634 F:      drivers/i2c/busses/i2c-ali1563.c
6635 F:      drivers/i2c/busses/i2c-ali15x3.c
6636 F:      drivers/i2c/busses/i2c-amd756.c
6637 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6638 F:      drivers/i2c/busses/i2c-amd8111.c
6639 F:      drivers/i2c/busses/i2c-i801.c
6640 F:      drivers/i2c/busses/i2c-isch.c
6641 F:      drivers/i2c/busses/i2c-nforce2.c
6642 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6643 F:      drivers/i2c/busses/i2c-piix4.c
6644 F:      drivers/i2c/busses/i2c-sis5595.c
6645 F:      drivers/i2c/busses/i2c-sis630.c
6646 F:      drivers/i2c/busses/i2c-sis96x.c
6647 F:      drivers/i2c/busses/i2c-via.c
6648 F:      drivers/i2c/busses/i2c-viapro.c
6649
6650 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
6651 M:      Hans de Goede <hdegoede@redhat.com>
6652 L:      linux-i2c@vger.kernel.org
6653 S:      Maintained
6654 F:      drivers/i2c/busses/i2c-cht-wc.c
6655
6656 I2C/SMBUS ISMT DRIVER
6657 M:      Seth Heasley <seth.heasley@intel.com>
6658 M:      Neil Horman <nhorman@tuxdriver.com>
6659 L:      linux-i2c@vger.kernel.org
6660 F:      drivers/i2c/busses/i2c-ismt.c
6661 F:      Documentation/i2c/busses/i2c-ismt
6662
6663 I2C/SMBUS STUB DRIVER
6664 M:      Jean Delvare <jdelvare@suse.com>
6665 L:      linux-i2c@vger.kernel.org
6666 S:      Maintained
6667 F:      drivers/i2c/i2c-stub.c
6668
6669 IA64 (Itanium) PLATFORM
6670 M:      Tony Luck <tony.luck@intel.com>
6671 M:      Fenghua Yu <fenghua.yu@intel.com>
6672 L:      linux-ia64@vger.kernel.org
6673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6674 S:      Maintained
6675 F:      arch/ia64/
6676
6677 IBM Power 842 compression accelerator
6678 M:      Haren Myneni <haren@us.ibm.com>
6679 S:      Supported
6680 F:      drivers/crypto/nx/Makefile
6681 F:      drivers/crypto/nx/Kconfig
6682 F:      drivers/crypto/nx/nx-842*
6683 F:      include/linux/sw842.h
6684 F:      crypto/842.c
6685 F:      lib/842/
6686
6687 IBM Power in-Nest Crypto Acceleration
6688 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6689 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6690 L:      linux-crypto@vger.kernel.org
6691 S:      Supported
6692 F:      drivers/crypto/nx/Makefile
6693 F:      drivers/crypto/nx/Kconfig
6694 F:      drivers/crypto/nx/nx-aes*
6695 F:      drivers/crypto/nx/nx-sha*
6696 F:      drivers/crypto/nx/nx.*
6697 F:      drivers/crypto/nx/nx_csbcpb.h
6698 F:      drivers/crypto/nx/nx_debugfs.h
6699
6700 IBM Power Linux RAID adapter
6701 M:      Brian King <brking@us.ibm.com>
6702 S:      Supported
6703 F:      drivers/scsi/ipr.*
6704
6705 IBM Power SRIOV Virtual NIC Device Driver
6706 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6707 M:      John Allen <jallen@linux.vnet.ibm.com>
6708 L:      netdev@vger.kernel.org
6709 S:      Supported
6710 F:      drivers/net/ethernet/ibm/ibmvnic.*
6711
6712 IBM Power Virtual Accelerator Switchboard
6713 M:      Sukadev Bhattiprolu
6714 L:      linuxppc-dev@lists.ozlabs.org
6715 S:      Supported
6716 F:      arch/powerpc/platforms/powernv/vas*
6717 F:      arch/powerpc/platforms/powernv/copy-paste.h
6718 F:      arch/powerpc/include/asm/vas.h
6719 F:      arch/powerpc/include/uapi/asm/vas.h
6720
6721 IBM Power Virtual Ethernet Device Driver
6722 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6723 L:      netdev@vger.kernel.org
6724 S:      Supported
6725 F:      drivers/net/ethernet/ibm/ibmveth.*
6726
6727 IBM Power Virtual FC Device Drivers
6728 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6729 L:      linux-scsi@vger.kernel.org
6730 S:      Supported
6731 F:      drivers/scsi/ibmvscsi/ibmvfc*
6732
6733 IBM Power Virtual SCSI Device Drivers
6734 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6735 L:      linux-scsi@vger.kernel.org
6736 S:      Supported
6737 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6738 F:      include/scsi/viosrp.h
6739
6740 IBM Power Virtual SCSI Device Target Driver
6741 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6742 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6743 L:      linux-scsi@vger.kernel.org
6744 L:      target-devel@vger.kernel.org
6745 S:      Supported
6746 F:      drivers/scsi/ibmvscsi_tgt/
6747
6748 IBM Power VMX Cryptographic instructions
6749 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6750 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6751 L:      linux-crypto@vger.kernel.org
6752 S:      Supported
6753 F:      drivers/crypto/vmx/Makefile
6754 F:      drivers/crypto/vmx/Kconfig
6755 F:      drivers/crypto/vmx/vmx.c
6756 F:      drivers/crypto/vmx/aes*
6757 F:      drivers/crypto/vmx/ghash*
6758 F:      drivers/crypto/vmx/ppc-xlate.pl
6759
6760 IBM ServeRAID RAID DRIVER
6761 S:      Orphan
6762 F:      drivers/scsi/ips.*
6763
6764 ICH LPC AND GPIO DRIVER
6765 M:      Peter Tyser <ptyser@xes-inc.com>
6766 S:      Maintained
6767 F:      drivers/mfd/lpc_ich.c
6768 F:      drivers/gpio/gpio-ich.c
6769
6770 IDE SUBSYSTEM
6771 M:      "David S. Miller" <davem@davemloft.net>
6772 L:      linux-ide@vger.kernel.org
6773 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6775 S:      Maintained
6776 F:      Documentation/ide/
6777 F:      drivers/ide/
6778 F:      include/linux/ide.h
6779
6780 IDE/ATAPI DRIVERS
6781 M:      Borislav Petkov <bp@alien8.de>
6782 L:      linux-ide@vger.kernel.org
6783 S:      Maintained
6784 F:      Documentation/cdrom/ide-cd
6785 F:      drivers/ide/ide-cd*
6786
6787 IDEAPAD LAPTOP EXTRAS DRIVER
6788 M:      Ike Panhc <ike.pan@canonical.com>
6789 L:      platform-driver-x86@vger.kernel.org
6790 W:      http://launchpad.net/ideapad-laptop
6791 S:      Maintained
6792 F:      drivers/platform/x86/ideapad-laptop.c
6793
6794 IDEAPAD LAPTOP SLIDEBAR DRIVER
6795 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6796 L:      linux-input@vger.kernel.org
6797 W:      https://github.com/o2genum/ideapad-slidebar
6798 S:      Maintained
6799 F:      drivers/input/misc/ideapad_slidebar.c
6800
6801 IDT VersaClock 5 CLOCK DRIVER
6802 M:      Marek Vasut <marek.vasut@gmail.com>
6803 S:      Maintained
6804 F:      drivers/clk/clk-versaclock5.c
6805
6806 IEEE 802.15.4 SUBSYSTEM
6807 M:      Alexander Aring <alex.aring@gmail.com>
6808 M:      Stefan Schmidt <stefan@osg.samsung.com>
6809 L:      linux-wpan@vger.kernel.org
6810 W:      http://wpan.cakelab.org/
6811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
6812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
6813 S:      Maintained
6814 F:      net/ieee802154/
6815 F:      net/mac802154/
6816 F:      drivers/net/ieee802154/
6817 F:      include/linux/nl802154.h
6818 F:      include/linux/ieee802154.h
6819 F:      include/net/nl802154.h
6820 F:      include/net/mac802154.h
6821 F:      include/net/af_ieee802154.h
6822 F:      include/net/cfg802154.h
6823 F:      include/net/ieee802154_netdev.h
6824 F:      Documentation/networking/ieee802154.txt
6825
6826 IFE PROTOCOL
6827 M:      Yotam Gigi <yotam.gi@gmail.com>
6828 M:      Jamal Hadi Salim <jhs@mojatatu.com>
6829 F:      net/ife
6830 F:      include/net/ife.h
6831 F:      include/uapi/linux/ife.h
6832
6833 IGORPLUG-USB IR RECEIVER
6834 M:      Sean Young <sean@mess.org>
6835 L:      linux-media@vger.kernel.org
6836 S:      Maintained
6837 F:      drivers/media/rc/igorplugusb.c
6838
6839 IGUANAWORKS USB IR TRANSCEIVER
6840 M:      Sean Young <sean@mess.org>
6841 L:      linux-media@vger.kernel.org
6842 S:      Maintained
6843 F:      drivers/media/rc/iguanair.c
6844
6845 IIO DIGITAL POTENTIOMETER DAC
6846 M:      Peter Rosin <peda@axentia.se>
6847 L:      linux-iio@vger.kernel.org
6848 S:      Maintained
6849 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6850 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6851 F:      drivers/iio/dac/dpot-dac.c
6852
6853 IIO ENVELOPE DETECTOR
6854 M:      Peter Rosin <peda@axentia.se>
6855 L:      linux-iio@vger.kernel.org
6856 S:      Maintained
6857 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6858 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6859 F:      drivers/iio/adc/envelope-detector.c
6860
6861 IIO MULTIPLEXER
6862 M:      Peter Rosin <peda@axentia.se>
6863 L:      linux-iio@vger.kernel.org
6864 S:      Maintained
6865 F:      Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6866 F:      drivers/iio/multiplexer/iio-mux.c
6867
6868 IIO SUBSYSTEM AND DRIVERS
6869 M:      Jonathan Cameron <jic23@kernel.org>
6870 R:      Hartmut Knaack <knaack.h@gmx.de>
6871 R:      Lars-Peter Clausen <lars@metafoo.de>
6872 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6873 L:      linux-iio@vger.kernel.org
6874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6875 S:      Maintained
6876 F:      Documentation/ABI/testing/configfs-iio*
6877 F:      Documentation/ABI/testing/sysfs-bus-iio*
6878 F:      Documentation/devicetree/bindings/iio/
6879 F:      drivers/iio/
6880 F:      drivers/staging/iio/
6881 F:      include/linux/iio/
6882 F:      tools/iio/
6883
6884 IKANOS/ADI EAGLE ADSL USB DRIVER
6885 M:      Matthieu Castet <castet.matthieu@free.fr>
6886 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6887 S:      Maintained
6888 F:      drivers/usb/atm/ueagle-atm.c
6889
6890 IMGTEC ASCII LCD DRIVER
6891 M:      Paul Burton <paul.burton@mips.com>
6892 S:      Maintained
6893 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6894 F:      drivers/auxdisplay/img-ascii-lcd.c
6895
6896 IMGTEC IR DECODER DRIVER
6897 M:      James Hogan <jhogan@kernel.org>
6898 S:      Maintained
6899 F:      drivers/media/rc/img-ir/
6900
6901 IMS TWINTURBO FRAMEBUFFER DRIVER
6902 L:      linux-fbdev@vger.kernel.org
6903 S:      Orphan
6904 F:      drivers/video/fbdev/imsttfb.c
6905
6906 INA209 HARDWARE MONITOR DRIVER
6907 M:      Guenter Roeck <linux@roeck-us.net>
6908 L:      linux-hwmon@vger.kernel.org
6909 S:      Maintained
6910 F:      Documentation/hwmon/ina209
6911 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6912 F:      drivers/hwmon/ina209.c
6913
6914 INA2XX HARDWARE MONITOR DRIVER
6915 M:      Guenter Roeck <linux@roeck-us.net>
6916 L:      linux-hwmon@vger.kernel.org
6917 S:      Maintained
6918 F:      Documentation/hwmon/ina2xx
6919 F:      drivers/hwmon/ina2xx.c
6920 F:      include/linux/platform_data/ina2xx.h
6921
6922 INDUSTRY PACK SUBSYSTEM (IPACK)
6923 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6924 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6925 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6926 L:      industrypack-devel@lists.sourceforge.net
6927 W:      http://industrypack.sourceforge.net
6928 S:      Maintained
6929 F:      drivers/ipack/
6930
6931 INFINIBAND SUBSYSTEM
6932 M:      Doug Ledford <dledford@redhat.com>
6933 M:      Jason Gunthorpe <jgg@mellanox.com>
6934 L:      linux-rdma@vger.kernel.org
6935 W:      https://github.com/linux-rdma/rdma-core
6936 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
6938 S:      Supported
6939 F:      Documentation/devicetree/bindings/infiniband/
6940 F:      Documentation/infiniband/
6941 F:      drivers/infiniband/
6942 F:      include/uapi/linux/if_infiniband.h
6943 F:      include/uapi/rdma/
6944 F:      include/rdma/
6945
6946 INGENIC JZ4780 DMA Driver
6947 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6948 S:      Maintained
6949 F:      drivers/dma/dma-jz4780.c
6950
6951 INGENIC JZ4780 NAND DRIVER
6952 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6953 L:      linux-mtd@lists.infradead.org
6954 S:      Maintained
6955 F:      drivers/mtd/nand/jz4780_*
6956
6957 INOTIFY
6958 M:      Jan Kara <jack@suse.cz>
6959 R:      Amir Goldstein <amir73il@gmail.com>
6960 L:      linux-fsdevel@vger.kernel.org
6961 S:      Maintained
6962 F:      Documentation/filesystems/inotify.txt
6963 F:      fs/notify/inotify/
6964 F:      include/linux/inotify.h
6965 F:      include/uapi/linux/inotify.h
6966
6967 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6968 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6969 L:      linux-input@vger.kernel.org
6970 Q:      http://patchwork.kernel.org/project/linux-input/list/
6971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6972 S:      Maintained
6973 F:      drivers/input/
6974 F:      include/linux/input.h
6975 F:      include/uapi/linux/input.h
6976 F:      include/uapi/linux/input-event-codes.h
6977 F:      include/linux/input/
6978 F:      Documentation/devicetree/bindings/input/
6979 F:      Documentation/input/
6980
6981 INPUT MULTITOUCH (MT) PROTOCOL
6982 M:      Henrik Rydberg <rydberg@bitmath.org>
6983 L:      linux-input@vger.kernel.org
6984 S:      Odd fixes
6985 F:      Documentation/input/multi-touch-protocol.rst
6986 F:      drivers/input/input-mt.c
6987 K:      \b(ABS|SYN)_MT_
6988
6989 INSIDE SECURE CRYPTO DRIVER
6990 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
6991 F:      drivers/crypto/inside-secure/
6992 S:      Maintained
6993 L:      linux-crypto@vger.kernel.org
6994
6995 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6996 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6997 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6998 L:      linux-integrity@vger.kernel.org
6999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7000 S:      Supported
7001 F:      security/integrity/ima/
7002
7003 INTEL 810/815 FRAMEBUFFER DRIVER
7004 M:      Antonino Daplas <adaplas@gmail.com>
7005 L:      linux-fbdev@vger.kernel.org
7006 S:      Maintained
7007 F:      drivers/video/fbdev/i810/
7008
7009 INTEL ASoC BDW/HSW DRIVERS
7010 M:      Jie Yang <yang.jie@linux.intel.com>
7011 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7012 S:      Supported
7013 F:      sound/soc/intel/common/sst-dsp*
7014 F:      sound/soc/intel/common/sst-firmware.c
7015 F:      sound/soc/intel/boards/broadwell.c
7016 F:      sound/soc/intel/haswell/
7017
7018 INTEL C600 SERIES SAS CONTROLLER DRIVER
7019 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
7020 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
7021 L:      linux-scsi@vger.kernel.org
7022 T:      git git://git.code.sf.net/p/intel-sas/isci
7023 S:      Supported
7024 F:      drivers/scsi/isci/
7025
7026 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
7027 M:      Jani Nikula <jani.nikula@linux.intel.com>
7028 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
7029 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
7030 L:      intel-gfx@lists.freedesktop.org
7031 W:      https://01.org/linuxgraphics/
7032 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
7033 C:      irc://chat.freenode.net/intel-gfx
7034 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
7035 T:      git git://anongit.freedesktop.org/drm-intel
7036 S:      Supported
7037 F:      drivers/gpu/drm/i915/
7038 F:      include/drm/i915*
7039 F:      include/uapi/drm/i915_drm.h
7040 F:      Documentation/gpu/i915.rst
7041
7042 INTEL ETHERNET DRIVERS
7043 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
7044 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
7045 W:      http://www.intel.com/support/feedback.htm
7046 W:      http://e1000.sourceforge.net/
7047 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
7048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
7049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
7050 S:      Supported
7051 F:      Documentation/networking/e100.txt
7052 F:      Documentation/networking/e1000.txt
7053 F:      Documentation/networking/e1000e.txt
7054 F:      Documentation/networking/igb.txt
7055 F:      Documentation/networking/igbvf.txt
7056 F:      Documentation/networking/ixgb.txt
7057 F:      Documentation/networking/ixgbe.txt
7058 F:      Documentation/networking/ixgbevf.txt
7059 F:      Documentation/networking/i40e.txt
7060 F:      Documentation/networking/i40evf.txt
7061 F:      drivers/net/ethernet/intel/
7062 F:      drivers/net/ethernet/intel/*/
7063 F:      include/linux/avf/virtchnl.h
7064
7065 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
7066 M:      Maik Broemme <mbroemme@libmpq.org>
7067 L:      linux-fbdev@vger.kernel.org
7068 S:      Maintained
7069 F:      Documentation/fb/intelfb.txt
7070 F:      drivers/video/fbdev/intelfb/
7071
7072 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
7073 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
7074 M:      Zhi Wang <zhi.a.wang@intel.com>
7075 L:      intel-gvt-dev@lists.freedesktop.org
7076 L:      intel-gfx@lists.freedesktop.org
7077 W:      https://01.org/igvt-g
7078 T:      git https://github.com/intel/gvt-linux.git
7079 S:      Supported
7080 F:      drivers/gpu/drm/i915/gvt/
7081
7082 INTEL HID EVENT DRIVER
7083 M:      Alex Hung <alex.hung@canonical.com>
7084 L:      platform-driver-x86@vger.kernel.org
7085 S:      Maintained
7086 F:      drivers/platform/x86/intel-hid.c
7087
7088 INTEL I/OAT DMA DRIVER
7089 M:      Dave Jiang <dave.jiang@intel.com>
7090 R:      Dan Williams <dan.j.williams@intel.com>
7091 L:      dmaengine@vger.kernel.org
7092 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
7093 S:      Supported
7094 F:      drivers/dma/ioat*
7095
7096 INTEL IDLE DRIVER
7097 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
7098 M:      Len Brown <lenb@kernel.org>
7099 L:      linux-pm@vger.kernel.org
7100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
7101 B:      https://bugzilla.kernel.org
7102 S:      Supported
7103 F:      drivers/idle/intel_idle.c
7104
7105 INTEL INTEGRATED SENSOR HUB DRIVER
7106 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7107 M:      Jiri Kosina <jikos@kernel.org>
7108 L:      linux-input@vger.kernel.org
7109 S:      Maintained
7110 F:      drivers/hid/intel-ish-hid/
7111
7112 INTEL IOMMU (VT-d)
7113 M:      David Woodhouse <dwmw2@infradead.org>
7114 L:      iommu@lists.linux-foundation.org
7115 T:      git git://git.infradead.org/iommu-2.6.git
7116 S:      Supported
7117 F:      drivers/iommu/intel-iommu.c
7118 F:      include/linux/intel-iommu.h
7119
7120 INTEL IOP-ADMA DMA DRIVER
7121 R:      Dan Williams <dan.j.williams@intel.com>
7122 S:      Odd fixes
7123 F:      drivers/dma/iop-adma.c
7124
7125 INTEL IPU3 CSI-2 CIO2 DRIVER
7126 M:      Yong Zhi <yong.zhi@intel.com>
7127 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
7128 L:      linux-media@vger.kernel.org
7129 S:      Maintained
7130 F:      drivers/media/pci/intel/ipu3/
7131 F:      Documentation/media/uapi/v4l/pixfmt-srggb10-ipu3.rst
7132
7133 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
7134 M:      Krzysztof Halasa <khalasa@piap.pl>
7135 S:      Maintained
7136 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
7137 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
7138 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
7139 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
7140 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
7141 F:      drivers/net/wan/ixp4xx_hss.c
7142
7143 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
7144 M:      Deepak Saxena <dsaxena@plexity.net>
7145 S:      Maintained
7146 F:      drivers/char/hw_random/ixp4xx-rng.c
7147
7148 INTEL MANAGEMENT ENGINE (mei)
7149 M:      Tomas Winkler <tomas.winkler@intel.com>
7150 L:      linux-kernel@vger.kernel.org
7151 S:      Supported
7152 F:      include/uapi/linux/mei.h
7153 F:      include/linux/mei_cl_bus.h
7154 F:      drivers/misc/mei/*
7155 F:      drivers/watchdog/mei_wdt.c
7156 F:      Documentation/misc-devices/mei/*
7157 F:      samples/mei/*
7158
7159 INTEL MENLOW THERMAL DRIVER
7160 M:      Sujith Thomas <sujith.thomas@intel.com>
7161 L:      platform-driver-x86@vger.kernel.org
7162 W:      https://01.org/linux-acpi
7163 S:      Supported
7164 F:      drivers/platform/x86/intel_menlow.c
7165
7166 INTEL MERRIFIELD GPIO DRIVER
7167 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7168 L:      linux-gpio@vger.kernel.org
7169 S:      Maintained
7170 F:      drivers/gpio/gpio-merrifield.c
7171
7172 INTEL MIC DRIVERS (mic)
7173 M:      Sudeep Dutt <sudeep.dutt@intel.com>
7174 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
7175 S:      Supported
7176 W:      https://github.com/sudeepdutt/mic
7177 W:      http://software.intel.com/en-us/mic-developer
7178 F:      include/linux/mic_bus.h
7179 F:      include/linux/scif.h
7180 F:      include/uapi/linux/mic_common.h
7181 F:      include/uapi/linux/mic_ioctl.h
7182 F:      include/uapi/linux/scif_ioctl.h
7183 F:      drivers/misc/mic/
7184 F:      drivers/dma/mic_x100_dma.c
7185 F:      drivers/dma/mic_x100_dma.h
7186 F:      Documentation/mic/
7187
7188 INTEL PMC CORE DRIVER
7189 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
7190 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
7191 L:      platform-driver-x86@vger.kernel.org
7192 S:      Maintained
7193 F:      arch/x86/include/asm/pmc_core.h
7194 F:      drivers/platform/x86/intel_pmc_core*
7195
7196 INTEL PMC/P-Unit IPC DRIVER
7197 M:      Zha Qipeng<qipeng.zha@intel.com>
7198 L:      platform-driver-x86@vger.kernel.org
7199 S:      Maintained
7200 F:      drivers/platform/x86/intel_pmc_ipc.c
7201 F:      drivers/platform/x86/intel_punit_ipc.c
7202 F:      arch/x86/include/asm/intel_pmc_ipc.h
7203 F:      arch/x86/include/asm/intel_punit_ipc.h
7204
7205 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
7206 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
7207 L:      linux-wireless@vger.kernel.org
7208 S:      Maintained
7209 F:      Documentation/networking/README.ipw2100
7210 F:      Documentation/networking/README.ipw2200
7211 F:      drivers/net/wireless/intel/ipw2x00/
7212
7213 INTEL PSTATE DRIVER
7214 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
7215 M:      Len Brown <lenb@kernel.org>
7216 L:      linux-pm@vger.kernel.org
7217 S:      Supported
7218 F:      drivers/cpufreq/intel_pstate.c
7219
7220 INTEL RDMA RNIC DRIVER
7221 M:      Faisal Latif <faisal.latif@intel.com>
7222 M:      Shiraz Saleem <shiraz.saleem@intel.com>
7223 L:      linux-rdma@vger.kernel.org
7224 S:      Supported
7225 F:      drivers/infiniband/hw/i40iw/
7226
7227 INTEL TELEMETRY DRIVER
7228 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
7229 L:      platform-driver-x86@vger.kernel.org
7230 S:      Maintained
7231 F:      arch/x86/include/asm/intel_telemetry.h
7232 F:      drivers/platform/x86/intel_telemetry*
7233
7234 INTEL VIRTUAL BUTTON DRIVER
7235 M:      AceLan Kao <acelan.kao@canonical.com>
7236 L:      platform-driver-x86@vger.kernel.org
7237 S:      Maintained
7238 F:      drivers/platform/x86/intel-vbtn.c
7239
7240 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
7241 M:      Stanislaw Gruszka <sgruszka@redhat.com>
7242 L:      linux-wireless@vger.kernel.org
7243 S:      Supported
7244 F:      drivers/net/wireless/intel/iwlegacy/
7245
7246 INTEL WIRELESS WIFI LINK (iwlwifi)
7247 M:      Johannes Berg <johannes.berg@intel.com>
7248 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
7249 M:      Luca Coelho <luciano.coelho@intel.com>
7250 M:      Intel Linux Wireless <linuxwifi@intel.com>
7251 L:      linux-wireless@vger.kernel.org
7252 W:      http://intellinuxwireless.org
7253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
7254 S:      Supported
7255 F:      drivers/net/wireless/intel/iwlwifi/
7256
7257 INTEL WIRELESS WIMAX CONNECTION 2400
7258 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7259 M:      linux-wimax@intel.com
7260 L:      wimax@linuxwimax.org (subscribers-only)
7261 S:      Supported
7262 W:      http://linuxwimax.org
7263 F:      Documentation/wimax/README.i2400m
7264 F:      drivers/net/wimax/i2400m/
7265 F:      include/uapi/linux/wimax/i2400m.h
7266
7267 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
7268 M:      Mario Limonciello <mario.limonciello@dell.com>
7269 S:      Maintained
7270 F:      drivers/platform/x86/intel-wmi-thunderbolt.c
7271
7272 INTEL(R) TRACE HUB
7273 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
7274 S:      Supported
7275 F:      Documentation/trace/intel_th.txt
7276 F:      drivers/hwtracing/intel_th/
7277
7278 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
7279 M:      Ning Sun <ning.sun@intel.com>
7280 L:      tboot-devel@lists.sourceforge.net
7281 W:      http://tboot.sourceforge.net
7282 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
7283 S:      Supported
7284 F:      Documentation/intel_txt.txt
7285 F:      include/linux/tboot.h
7286 F:      arch/x86/kernel/tboot.c
7287
7288 INTEL-MID GPIO DRIVER
7289 M:      David Cohen <david.a.cohen@linux.intel.com>
7290 L:      linux-gpio@vger.kernel.org
7291 S:      Maintained
7292 F:      drivers/gpio/gpio-intel-mid.c
7293
7294 INVENSENSE MPU-3050 GYROSCOPE DRIVER
7295 M:      Linus Walleij <linus.walleij@linaro.org>
7296 L:      linux-iio@vger.kernel.org
7297 S:      Maintained
7298 F:      drivers/iio/gyro/mpu3050*
7299 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
7300
7301 IOC3 ETHERNET DRIVER
7302 M:      Ralf Baechle <ralf@linux-mips.org>
7303 L:      linux-mips@linux-mips.org
7304 S:      Maintained
7305 F:      drivers/net/ethernet/sgi/ioc3-eth.c
7306
7307 IOC3 SERIAL DRIVER
7308 M:      Pat Gefre <pfg@sgi.com>
7309 L:      linux-serial@vger.kernel.org
7310 S:      Maintained
7311 F:      drivers/tty/serial/ioc3_serial.c
7312
7313 IOMMU DRIVERS
7314 M:      Joerg Roedel <joro@8bytes.org>
7315 L:      iommu@lists.linux-foundation.org
7316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7317 S:      Maintained
7318 F:      Documentation/devicetree/bindings/iommu/
7319 F:      drivers/iommu/
7320 F:      include/linux/iommu.h
7321 F:      include/linux/iova.h
7322
7323 IP MASQUERADING
7324 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7325 S:      Maintained
7326 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7327
7328 IPMI SUBSYSTEM
7329 M:      Corey Minyard <minyard@acm.org>
7330 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7331 W:      http://openipmi.sourceforge.net/
7332 S:      Supported
7333 F:      Documentation/IPMI.txt
7334 F:      drivers/char/ipmi/
7335 F:      include/linux/ipmi*
7336 F:      include/uapi/linux/ipmi*
7337
7338 IPS SCSI RAID DRIVER
7339 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7340 L:      linux-scsi@vger.kernel.org
7341 W:      http://www.adaptec.com/
7342 S:      Maintained
7343 F:      drivers/scsi/ips*
7344
7345 IPVS
7346 M:      Wensong Zhang <wensong@linux-vs.org>
7347 M:      Simon Horman <horms@verge.net.au>
7348 M:      Julian Anastasov <ja@ssi.bg>
7349 L:      netdev@vger.kernel.org
7350 L:      lvs-devel@vger.kernel.org
7351 S:      Maintained
7352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7354 F:      Documentation/networking/ipvs-sysctl.txt
7355 F:      include/net/ip_vs.h
7356 F:      include/uapi/linux/ip_vs.h
7357 F:      net/netfilter/ipvs/
7358
7359 IPWIRELESS DRIVER
7360 M:      Jiri Kosina <jikos@kernel.org>
7361 M:      David Sterba <dsterba@suse.com>
7362 S:      Odd Fixes
7363 F:      drivers/tty/ipwireless/
7364
7365 IPX NETWORK LAYER
7366 L:      netdev@vger.kernel.org
7367 S:      Obsolete
7368 F:      include/uapi/linux/ipx.h
7369 F:      drivers/staging/ipx/
7370
7371 IRDA SUBSYSTEM
7372 M:      Samuel Ortiz <samuel@sortiz.org>
7373 L:      irda-users@lists.sourceforge.net (subscribers-only)
7374 L:      netdev@vger.kernel.org
7375 W:      http://irda.sourceforge.net/
7376 S:      Obsolete
7377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7378 F:      Documentation/networking/irda.txt
7379 F:      drivers/staging/irda/
7380
7381 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7382 M:      Marc Zyngier <marc.zyngier@arm.com>
7383 S:      Maintained
7384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7385 F:      Documentation/IRQ-domain.txt
7386 F:      include/linux/irqdomain.h
7387 F:      kernel/irq/irqdomain.c
7388 F:      kernel/irq/msi.c
7389
7390 IRQ SUBSYSTEM
7391 M:      Thomas Gleixner <tglx@linutronix.de>
7392 L:      linux-kernel@vger.kernel.org
7393 S:      Maintained
7394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7395 F:      kernel/irq/
7396
7397 IRQCHIP DRIVERS
7398 M:      Thomas Gleixner <tglx@linutronix.de>
7399 M:      Jason Cooper <jason@lakedaemon.net>
7400 M:      Marc Zyngier <marc.zyngier@arm.com>
7401 L:      linux-kernel@vger.kernel.org
7402 S:      Maintained
7403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7404 F:      Documentation/devicetree/bindings/interrupt-controller/
7405 F:      drivers/irqchip/
7406
7407 ISA
7408 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7409 S:      Maintained
7410 F:      Documentation/isa.txt
7411 F:      drivers/base/isa.c
7412 F:      include/linux/isa.h
7413
7414 ISA RADIO MODULE
7415 M:      Hans Verkuil <hverkuil@xs4all.nl>
7416 L:      linux-media@vger.kernel.org
7417 T:      git git://linuxtv.org/media_tree.git
7418 W:      https://linuxtv.org
7419 S:      Maintained
7420 F:      drivers/media/radio/radio-isa*
7421
7422 ISAPNP
7423 M:      Jaroslav Kysela <perex@perex.cz>
7424 S:      Maintained
7425 F:      Documentation/isapnp.txt
7426 F:      drivers/pnp/isapnp/
7427 F:      include/linux/isapnp.h
7428
7429 ISCSI
7430 M:      Lee Duncan <lduncan@suse.com>
7431 M:      Chris Leech <cleech@redhat.com>
7432 L:      open-iscsi@googlegroups.com
7433 W:      www.open-iscsi.com
7434 S:      Maintained
7435 F:      drivers/scsi/*iscsi*
7436 F:      include/scsi/*iscsi*
7437
7438 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7439 M:      Peter Jones <pjones@redhat.com>
7440 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7441 S:      Maintained
7442 F:      drivers/firmware/iscsi_ibft*
7443
7444 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7445 M:      Or Gerlitz <ogerlitz@mellanox.com>
7446 M:      Sagi Grimberg <sagi@grimberg.me>
7447 M:      Roi Dayan <roid@mellanox.com>
7448 L:      linux-rdma@vger.kernel.org
7449 S:      Supported
7450 W:      http://www.openfabrics.org
7451 W:      www.open-iscsi.org
7452 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7453 F:      drivers/infiniband/ulp/iser/
7454
7455 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7456 M:      Sagi Grimberg <sagi@grimberg.me>
7457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7458 L:      linux-rdma@vger.kernel.org
7459 L:      target-devel@vger.kernel.org
7460 S:      Supported
7461 W:      http://www.linux-iscsi.org
7462 F:      drivers/infiniband/ulp/isert
7463
7464 ISDN SUBSYSTEM
7465 M:      Karsten Keil <isdn@linux-pingi.de>
7466 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7467 L:      netdev@vger.kernel.org
7468 W:      http://www.isdn4linux.de
7469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7470 S:      Maintained
7471 F:      Documentation/isdn/
7472 F:      drivers/isdn/
7473 F:      include/linux/isdn.h
7474 F:      include/linux/isdn/
7475 F:      include/uapi/linux/isdn.h
7476 F:      include/uapi/linux/isdn/
7477
7478 ISDN SUBSYSTEM (Eicon active card driver)
7479 M:      Armin Schindler <mac@melware.de>
7480 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7481 W:      http://www.melware.de
7482 S:      Maintained
7483 F:      drivers/isdn/hardware/eicon/
7484
7485 IT87 HARDWARE MONITORING DRIVER
7486 M:      Jean Delvare <jdelvare@suse.com>
7487 L:      linux-hwmon@vger.kernel.org
7488 S:      Maintained
7489 F:      Documentation/hwmon/it87
7490 F:      drivers/hwmon/it87.c
7491
7492 IT913X MEDIA DRIVER
7493 M:      Antti Palosaari <crope@iki.fi>
7494 L:      linux-media@vger.kernel.org
7495 W:      https://linuxtv.org
7496 W:      http://palosaari.fi/linux/
7497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7498 T:      git git://linuxtv.org/anttip/media_tree.git
7499 S:      Maintained
7500 F:      drivers/media/tuners/it913x*
7501
7502 IVTV VIDEO4LINUX DRIVER
7503 M:      Andy Walls <awalls@md.metrocast.net>
7504 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
7505 L:      linux-media@vger.kernel.org
7506 T:      git git://linuxtv.org/media_tree.git
7507 W:      http://www.ivtvdriver.org
7508 S:      Maintained
7509 F:      Documentation/media/v4l-drivers/ivtv*
7510 F:      drivers/media/pci/ivtv/
7511 F:      include/uapi/linux/ivtv*
7512
7513 IX2505V MEDIA DRIVER
7514 M:      Malcolm Priestley <tvboxspy@gmail.com>
7515 L:      linux-media@vger.kernel.org
7516 W:      https://linuxtv.org
7517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7518 S:      Maintained
7519 F:      drivers/media/dvb-frontends/ix2505v*
7520
7521 JC42.4 TEMPERATURE SENSOR DRIVER
7522 M:      Guenter Roeck <linux@roeck-us.net>
7523 L:      linux-hwmon@vger.kernel.org
7524 S:      Maintained
7525 F:      drivers/hwmon/jc42.c
7526 F:      Documentation/hwmon/jc42
7527
7528 JFS FILESYSTEM
7529 M:      Dave Kleikamp <shaggy@kernel.org>
7530 L:      jfs-discussion@lists.sourceforge.net
7531 W:      http://jfs.sourceforge.net/
7532 T:      git git://github.com/kleikamp/linux-shaggy.git
7533 S:      Maintained
7534 F:      Documentation/filesystems/jfs.txt
7535 F:      fs/jfs/
7536
7537 JME NETWORK DRIVER
7538 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
7539 L:      netdev@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/net/ethernet/jme.*
7542
7543 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7544 M:      David Woodhouse <dwmw2@infradead.org>
7545 L:      linux-mtd@lists.infradead.org
7546 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7547 S:      Maintained
7548 F:      fs/jffs2/
7549 F:      include/uapi/linux/jffs2.h
7550
7551 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7552 M:      "Theodore Ts'o" <tytso@mit.edu>
7553 M:      Jan Kara <jack@suse.com>
7554 L:      linux-ext4@vger.kernel.org
7555 S:      Maintained
7556 F:      fs/jbd2/
7557 F:      include/linux/jbd2.h
7558
7559 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7560 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7561 L:      linux-media@vger.kernel.org
7562 S:      Maintained
7563 F:      drivers/media/platform/rcar_jpu.c
7564
7565 JSM Neo PCI based serial card
7566 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7567 L:      linux-serial@vger.kernel.org
7568 S:      Maintained
7569 F:      drivers/tty/serial/jsm/
7570
7571 K10TEMP HARDWARE MONITORING DRIVER
7572 M:      Clemens Ladisch <clemens@ladisch.de>
7573 L:      linux-hwmon@vger.kernel.org
7574 S:      Maintained
7575 F:      Documentation/hwmon/k10temp
7576 F:      drivers/hwmon/k10temp.c
7577
7578 K8TEMP HARDWARE MONITORING DRIVER
7579 M:      Rudolf Marek <r.marek@assembler.cz>
7580 L:      linux-hwmon@vger.kernel.org
7581 S:      Maintained
7582 F:      Documentation/hwmon/k8temp
7583 F:      drivers/hwmon/k8temp.c
7584
7585 KASAN
7586 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
7587 R:      Alexander Potapenko <glider@google.com>
7588 R:      Dmitry Vyukov <dvyukov@google.com>
7589 L:      kasan-dev@googlegroups.com
7590 S:      Maintained
7591 F:      arch/*/include/asm/kasan.h
7592 F:      arch/*/mm/kasan_init*
7593 F:      Documentation/dev-tools/kasan.rst
7594 F:      include/linux/kasan*.h
7595 F:      lib/test_kasan.c
7596 F:      mm/kasan/
7597 F:      scripts/Makefile.kasan
7598
7599 KCONFIG
7600 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
7602 L:      linux-kbuild@vger.kernel.org
7603 S:      Maintained
7604 F:      Documentation/kbuild/kconfig-language.txt
7605 F:      scripts/kconfig/
7606
7607 KDUMP
7608 M:      Dave Young <dyoung@redhat.com>
7609 M:      Baoquan He <bhe@redhat.com>
7610 R:      Vivek Goyal <vgoyal@redhat.com>
7611 L:      kexec@lists.infradead.org
7612 W:      http://lse.sourceforge.net/kdump/
7613 S:      Maintained
7614 F:      Documentation/kdump/
7615
7616 KEENE FM RADIO TRANSMITTER DRIVER
7617 M:      Hans Verkuil <hverkuil@xs4all.nl>
7618 L:      linux-media@vger.kernel.org
7619 T:      git git://linuxtv.org/media_tree.git
7620 W:      https://linuxtv.org
7621 S:      Maintained
7622 F:      drivers/media/radio/radio-keene*
7623
7624 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7625 M:      Ian Kent <raven@themaw.net>
7626 L:      autofs@vger.kernel.org
7627 S:      Maintained
7628 F:      fs/autofs4/
7629
7630 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7631 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7632 M:      Michal Marek <michal.lkml@markovi.net>
7633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7634 L:      linux-kbuild@vger.kernel.org
7635 S:      Maintained
7636 F:      Documentation/kbuild/
7637 F:      Makefile
7638 F:      scripts/Makefile.*
7639 F:      scripts/basic/
7640 F:      scripts/mk*
7641 F:      scripts/package/
7642
7643 KERNEL JANITORS
7644 L:      kernel-janitors@vger.kernel.org
7645 W:      http://kernelnewbies.org/KernelJanitors
7646 S:      Odd Fixes
7647
7648 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7649 M:      "J. Bruce Fields" <bfields@fieldses.org>
7650 M:      Jeff Layton <jlayton@kernel.org>
7651 L:      linux-nfs@vger.kernel.org
7652 W:      http://nfs.sourceforge.net/
7653 T:      git git://linux-nfs.org/~bfields/linux.git
7654 S:      Supported
7655 F:      fs/nfsd/
7656 F:      include/uapi/linux/nfsd/
7657 F:      fs/lockd/
7658 F:      fs/nfs_common/
7659 F:      net/sunrpc/
7660 F:      include/linux/lockd/
7661 F:      include/linux/sunrpc/
7662 F:      include/uapi/linux/sunrpc/
7663
7664 KERNEL SELFTEST FRAMEWORK
7665 M:      Shuah Khan <shuahkh@osg.samsung.com>
7666 M:      Shuah Khan <shuah@kernel.org>
7667 L:      linux-kselftest@vger.kernel.org
7668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7669 S:      Maintained
7670 F:      tools/testing/selftests/
7671 F:      Documentation/dev-tools/kselftest*
7672
7673 KERNEL USERMODE HELPER
7674 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7675 L:      linux-kernel@vger.kernel.org
7676 S:      Maintained
7677 F:      kernel/umh.c
7678 F:      include/linux/umh.h
7679
7680 KERNEL VIRTUAL MACHINE (KVM)
7681 M:      Paolo Bonzini <pbonzini@redhat.com>
7682 M:      Radim Krčmář <rkrcmar@redhat.com>
7683 L:      kvm@vger.kernel.org
7684 W:      http://www.linux-kvm.org
7685 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7686 S:      Supported
7687 F:      Documentation/virtual/kvm/
7688 F:      include/trace/events/kvm.h
7689 F:      include/uapi/asm-generic/kvm*
7690 F:      include/uapi/linux/kvm*
7691 F:      include/asm-generic/kvm*
7692 F:      include/linux/kvm*
7693 F:      include/kvm/iodev.h
7694 F:      virt/kvm/*
7695 F:      tools/kvm/
7696
7697 KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
7698 M:      Joerg Roedel <joro@8bytes.org>
7699 L:      kvm@vger.kernel.org
7700 W:      http://www.linux-kvm.org/
7701 S:      Maintained
7702 F:      arch/x86/include/asm/svm.h
7703 F:      arch/x86/kvm/svm.c
7704
7705 KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm)
7706 M:      Christoffer Dall <christoffer.dall@linaro.org>
7707 M:      Marc Zyngier <marc.zyngier@arm.com>
7708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7709 L:      kvmarm@lists.cs.columbia.edu
7710 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7712 S:      Supported
7713 F:      arch/arm/include/uapi/asm/kvm*
7714 F:      arch/arm/include/asm/kvm*
7715 F:      arch/arm/kvm/
7716 F:      virt/kvm/arm/
7717 F:      include/kvm/arm_*
7718
7719 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7720 M:      Christoffer Dall <christoffer.dall@linaro.org>
7721 M:      Marc Zyngier <marc.zyngier@arm.com>
7722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7723 L:      kvmarm@lists.cs.columbia.edu
7724 S:      Maintained
7725 F:      arch/arm64/include/uapi/asm/kvm*
7726 F:      arch/arm64/include/asm/kvm*
7727 F:      arch/arm64/kvm/
7728
7729 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7730 M:      James Hogan <jhogan@kernel.org>
7731 L:      linux-mips@linux-mips.org
7732 S:      Supported
7733 F:      arch/mips/include/uapi/asm/kvm*
7734 F:      arch/mips/include/asm/kvm*
7735 F:      arch/mips/kvm/
7736
7737 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
7738 M:      Paul Mackerras <paulus@ozlabs.org>
7739 L:      kvm-ppc@vger.kernel.org
7740 W:      http://www.linux-kvm.org/
7741 T:      git git://github.com/agraf/linux-2.6.git
7742 S:      Supported
7743 F:      arch/powerpc/include/uapi/asm/kvm*
7744 F:      arch/powerpc/include/asm/kvm*
7745 F:      arch/powerpc/kvm/
7746 F:      arch/powerpc/kernel/kvm*
7747
7748 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7749 M:      Christian Borntraeger <borntraeger@de.ibm.com>
7750 M:      Janosch Frank <frankja@linux.vnet.ibm.com>
7751 R:      David Hildenbrand <david@redhat.com>
7752 R:      Cornelia Huck <cohuck@redhat.com>
7753 L:      linux-s390@vger.kernel.org
7754 W:      http://www.ibm.com/developerworks/linux/linux390/
7755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7756 S:      Supported
7757 F:      arch/s390/include/uapi/asm/kvm*
7758 F:      arch/s390/include/asm/gmap.h
7759 F:      arch/s390/include/asm/kvm*
7760 F:      arch/s390/kvm/
7761 F:      arch/s390/mm/gmap.c
7762
7763 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
7764 M:      Paolo Bonzini <pbonzini@redhat.com>
7765 M:      Radim Krčmář <rkrcmar@redhat.com>
7766 L:      kvm@vger.kernel.org
7767 W:      http://www.linux-kvm.org
7768 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7769 S:      Supported
7770 F:      arch/x86/kvm/
7771 F:      arch/x86/include/uapi/asm/kvm*
7772 F:      arch/x86/include/asm/kvm*
7773 F:      arch/x86/include/asm/pvclock-abi.h
7774 F:      arch/x86/kernel/kvm.c
7775 F:      arch/x86/kernel/kvmclock.c
7776
7777 KERNFS
7778 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7779 M:      Tejun Heo <tj@kernel.org>
7780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7781 S:      Supported
7782 F:      include/linux/kernfs.h
7783 F:      fs/kernfs/
7784
7785 KEXEC
7786 M:      Eric Biederman <ebiederm@xmission.com>
7787 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7788 L:      kexec@lists.infradead.org
7789 S:      Maintained
7790 F:      include/linux/kexec.h
7791 F:      include/uapi/linux/kexec.h
7792 F:      kernel/kexec*
7793
7794 KEYS-ENCRYPTED
7795 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7796 L:      linux-integrity@vger.kernel.org
7797 L:      keyrings@vger.kernel.org
7798 S:      Supported
7799 F:      Documentation/security/keys/trusted-encrypted.rst
7800 F:      include/keys/encrypted-type.h
7801 F:      security/keys/encrypted-keys/
7802
7803 KEYS-TRUSTED
7804 M:      James Bottomley <jejb@linux.vnet.ibm.com>
7805 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7806 L:      linux-integrity@vger.kernel.org
7807 L:      keyrings@vger.kernel.org
7808 S:      Supported
7809 F:      Documentation/security/keys/trusted-encrypted.rst
7810 F:      include/keys/trusted-type.h
7811 F:      security/keys/trusted.c
7812 F:      security/keys/trusted.h
7813
7814 KEYS/KEYRINGS:
7815 M:      David Howells <dhowells@redhat.com>
7816 L:      keyrings@vger.kernel.org
7817 S:      Maintained
7818 F:      Documentation/security/keys/core.rst
7819 F:      include/linux/key.h
7820 F:      include/linux/key-type.h
7821 F:      include/linux/keyctl.h
7822 F:      include/uapi/linux/keyctl.h
7823 F:      include/keys/
7824 F:      security/keys/
7825
7826 KGDB / KDB /debug_core
7827 M:      Jason Wessel <jason.wessel@windriver.com>
7828 M:      Daniel Thompson <daniel.thompson@linaro.org>
7829 W:      http://kgdb.wiki.kernel.org/
7830 L:      kgdb-bugreport@lists.sourceforge.net
7831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7832 S:      Maintained
7833 F:      Documentation/dev-tools/kgdb.rst
7834 F:      drivers/misc/kgdbts.c
7835 F:      drivers/tty/serial/kgdboc.c
7836 F:      include/linux/kdb.h
7837 F:      include/linux/kgdb.h
7838 F:      kernel/debug/
7839
7840 KMEMLEAK
7841 M:      Catalin Marinas <catalin.marinas@arm.com>
7842 S:      Maintained
7843 F:      Documentation/dev-tools/kmemleak.rst
7844 F:      include/linux/kmemleak.h
7845 F:      mm/kmemleak.c
7846 F:      mm/kmemleak-test.c
7847
7848 KMOD KERNEL MODULE LOADER - USERMODE HELPER
7849 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
7850 L:      linux-kernel@vger.kernel.org
7851 S:      Maintained
7852 F:      kernel/kmod.c
7853 F:      include/linux/kmod.h
7854 F:      lib/test_kmod.c
7855 F:      tools/testing/selftests/kmod/
7856
7857 KPROBES
7858 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7859 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7860 M:      "David S. Miller" <davem@davemloft.net>
7861 M:      Masami Hiramatsu <mhiramat@kernel.org>
7862 S:      Maintained
7863 F:      Documentation/kprobes.txt
7864 F:      include/linux/kprobes.h
7865 F:      include/asm-generic/kprobes.h
7866 F:      kernel/kprobes.c
7867
7868 KS0108 LCD CONTROLLER DRIVER
7869 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7870 S:      Maintained
7871 F:      Documentation/auxdisplay/ks0108
7872 F:      drivers/auxdisplay/ks0108.c
7873 F:      include/linux/ks0108.h
7874
7875 L3MDEV
7876 M:      David Ahern <dsa@cumulusnetworks.com>
7877 L:      netdev@vger.kernel.org
7878 S:      Maintained
7879 F:      net/l3mdev
7880 F:      include/net/l3mdev.h
7881
7882 LANTIQ MIPS ARCHITECTURE
7883 M:      John Crispin <john@phrozen.org>
7884 L:      linux-mips@linux-mips.org
7885 S:      Maintained
7886 F:      arch/mips/lantiq
7887 F:      drivers/soc/lantiq
7888
7889 LAPB module
7890 L:      linux-x25@vger.kernel.org
7891 S:      Orphan
7892 F:      Documentation/networking/lapb-module.txt
7893 F:      include/*/lapb.h
7894 F:      net/lapb/
7895
7896 LASI 53c700 driver for PARISC
7897 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7898 L:      linux-scsi@vger.kernel.org
7899 S:      Maintained
7900 F:      Documentation/scsi/53c700.txt
7901 F:      drivers/scsi/53c700*
7902
7903 LEAKING_ADDRESSES
7904 M:      Tobin C. Harding <me@tobin.cc>
7905 S:      Maintained
7906 F:      scripts/leaking_addresses.pl
7907
7908 LED SUBSYSTEM
7909 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
7910 M:      Pavel Machek <pavel@ucw.cz>
7911 L:      linux-leds@vger.kernel.org
7912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7913 S:      Maintained
7914 F:      Documentation/devicetree/bindings/leds/
7915 F:      drivers/leds/
7916 F:      include/linux/leds.h
7917
7918 LEGACY EEPROM DRIVER
7919 M:      Jean Delvare <jdelvare@suse.com>
7920 S:      Maintained
7921 F:      Documentation/misc-devices/eeprom
7922 F:      drivers/misc/eeprom/eeprom.c
7923
7924 LEGO USB Tower driver
7925 M:      Juergen Stuber <starblue@users.sourceforge.net>
7926 L:      legousb-devel@lists.sourceforge.net
7927 W:      http://legousb.sourceforge.net/
7928 S:      Maintained
7929 F:      drivers/usb/misc/legousbtower.c
7930
7931 LG2160 MEDIA DRIVER
7932 M:      Michael Krufky <mkrufky@linuxtv.org>
7933 L:      linux-media@vger.kernel.org
7934 W:      https://linuxtv.org
7935 W:      http://github.com/mkrufky
7936 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7937 T:      git git://linuxtv.org/mkrufky/tuners.git
7938 S:      Maintained
7939 F:      drivers/media/dvb-frontends/lg2160.*
7940
7941 LGDT3305 MEDIA DRIVER
7942 M:      Michael Krufky <mkrufky@linuxtv.org>
7943 L:      linux-media@vger.kernel.org
7944 W:      https://linuxtv.org
7945 W:      http://github.com/mkrufky
7946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7947 T:      git git://linuxtv.org/mkrufky/tuners.git
7948 S:      Maintained
7949 F:      drivers/media/dvb-frontends/lgdt3305.*
7950
7951 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7952 M:      Viresh Kumar <vireshk@kernel.org>
7953 L:      linux-ide@vger.kernel.org
7954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7955 S:      Maintained
7956 F:      include/linux/pata_arasan_cf_data.h
7957 F:      drivers/ata/pata_arasan_cf.c
7958
7959 LIBATA PATA DRIVERS
7960 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7961 M:      Tejun Heo <tj@kernel.org>
7962 L:      linux-ide@vger.kernel.org
7963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7964 S:      Maintained
7965 F:      drivers/ata/pata_*.c
7966 F:      drivers/ata/ata_generic.c
7967
7968 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7969 M:      Linus Walleij <linus.walleij@linaro.org>
7970 L:      linux-ide@vger.kernel.org
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7972 S:      Maintained
7973 F:      drivers/ata/pata_ftide010.c
7974 F:      drivers/ata/sata_gemini.c
7975 F:      drivers/ata/sata_gemini.h
7976
7977 LIBATA SATA AHCI PLATFORM devices support
7978 M:      Hans de Goede <hdegoede@redhat.com>
7979 M:      Tejun Heo <tj@kernel.org>
7980 L:      linux-ide@vger.kernel.org
7981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7982 S:      Maintained
7983 F:      drivers/ata/ahci_platform.c
7984 F:      drivers/ata/libahci_platform.c
7985 F:      include/linux/ahci_platform.h
7986
7987 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7988 M:      Mikael Pettersson <mikpelinux@gmail.com>
7989 L:      linux-ide@vger.kernel.org
7990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7991 S:      Maintained
7992 F:      drivers/ata/sata_promise.*
7993
7994 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7995 M:      Tejun Heo <tj@kernel.org>
7996 L:      linux-ide@vger.kernel.org
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7998 S:      Maintained
7999 F:      drivers/ata/
8000 F:      include/linux/ata.h
8001 F:      include/linux/libata.h
8002 F:      Documentation/devicetree/bindings/ata/
8003
8004 LIBLOCKDEP
8005 M:      Sasha Levin <alexander.levin@verizon.com>
8006 S:      Maintained
8007 F:      tools/lib/lockdep/
8008
8009 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
8010 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8011 L:      linux-nvdimm@lists.01.org
8012 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8013 S:      Supported
8014 F:      drivers/nvdimm/blk.c
8015 F:      drivers/nvdimm/region_devs.c
8016
8017 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
8018 M:      Vishal Verma <vishal.l.verma@intel.com>
8019 L:      linux-nvdimm@lists.01.org
8020 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8021 S:      Supported
8022 F:      drivers/nvdimm/btt*
8023
8024 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
8025 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
8026 L:      linux-nvdimm@lists.01.org
8027 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8028 S:      Supported
8029 F:      drivers/nvdimm/pmem*
8030
8031 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
8032 M:      Dan Williams <dan.j.williams@intel.com>
8033 L:      linux-nvdimm@lists.01.org
8034 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
8035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
8036 S:      Supported
8037 F:      drivers/nvdimm/*
8038 F:      drivers/acpi/nfit/*
8039 F:      include/linux/nd.h
8040 F:      include/linux/libnvdimm.h
8041 F:      include/uapi/linux/ndctl.h
8042
8043 LIGHTNVM PLATFORM SUPPORT
8044 M:      Matias Bjorling <mb@lightnvm.io>
8045 W:      http://github/OpenChannelSSD
8046 L:      linux-block@vger.kernel.org
8047 S:      Maintained
8048 F:      drivers/lightnvm/
8049 F:      include/linux/lightnvm.h
8050 F:      include/uapi/linux/lightnvm.h
8051
8052 LINUX FOR POWER MACINTOSH
8053 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8054 W:      http://www.penguinppc.org/
8055 L:      linuxppc-dev@lists.ozlabs.org
8056 S:      Maintained
8057 F:      arch/powerpc/platforms/powermac/
8058 F:      drivers/macintosh/
8059
8060 LINUX FOR POWERPC (32-BIT AND 64-BIT)
8061 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8062 M:      Paul Mackerras <paulus@samba.org>
8063 M:      Michael Ellerman <mpe@ellerman.id.au>
8064 W:      https://github.com/linuxppc/linux/wiki
8065 L:      linuxppc-dev@lists.ozlabs.org
8066 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
8067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
8068 S:      Supported
8069 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
8070 F:      Documentation/devicetree/bindings/powerpc/
8071 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
8072 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
8073 F:      Documentation/powerpc/
8074 F:      arch/powerpc/
8075 F:      drivers/char/tpm/tpm_ibmvtpm*
8076 F:      drivers/crypto/nx/
8077 F:      drivers/crypto/vmx/
8078 F:      drivers/i2c/busses/i2c-opal.c
8079 F:      drivers/net/ethernet/ibm/ibmveth.*
8080 F:      drivers/net/ethernet/ibm/ibmvnic.*
8081 F:      drivers/pci/hotplug/pnv_php.c
8082 F:      drivers/pci/hotplug/rpa*
8083 F:      drivers/rtc/rtc-opal.c
8084 F:      drivers/scsi/ibmvscsi/
8085 F:      drivers/tty/hvc/hvc_opal.c
8086 F:      drivers/watchdog/wdrtas.c
8087 F:      tools/testing/selftests/powerpc
8088 N:      /pmac
8089 N:      powermac
8090 N:      powernv
8091 N:      [^a-z0-9]ps3
8092 N:      pseries
8093
8094 LINUX FOR POWERPC EMBEDDED MPC5XXX
8095 M:      Anatolij Gustschin <agust@denx.de>
8096 L:      linuxppc-dev@lists.ozlabs.org
8097 T:      git git://git.denx.de/linux-denx-agust.git
8098 S:      Maintained
8099 F:      arch/powerpc/platforms/512x/
8100 F:      arch/powerpc/platforms/52xx/
8101
8102 LINUX FOR POWERPC EMBEDDED PPC4XX
8103 M:      Alistair Popple <alistair@popple.id.au>
8104 M:      Matt Porter <mporter@kernel.crashing.org>
8105 W:      http://www.penguinppc.org/
8106 L:      linuxppc-dev@lists.ozlabs.org
8107 S:      Maintained
8108 F:      arch/powerpc/platforms/40x/
8109 F:      arch/powerpc/platforms/44x/
8110
8111 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
8112 M:      Scott Wood <oss@buserror.net>
8113 M:      Kumar Gala <galak@kernel.crashing.org>
8114 W:      http://www.penguinppc.org/
8115 L:      linuxppc-dev@lists.ozlabs.org
8116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
8117 S:      Maintained
8118 F:      arch/powerpc/platforms/83xx/
8119 F:      arch/powerpc/platforms/85xx/
8120 F:      Documentation/devicetree/bindings/powerpc/fsl/
8121
8122 LINUX FOR POWERPC EMBEDDED PPC8XX
8123 M:      Vitaly Bordug <vitb@kernel.crashing.org>
8124 W:      http://www.penguinppc.org/
8125 L:      linuxppc-dev@lists.ozlabs.org
8126 S:      Maintained
8127 F:      arch/powerpc/platforms/8xx/
8128
8129 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
8130 L:      linuxppc-dev@lists.ozlabs.org
8131 S:      Orphan
8132 F:      arch/powerpc/*/*virtex*
8133 F:      arch/powerpc/*/*/*virtex*
8134
8135 LINUX FOR POWERPC PA SEMI PWRFICIENT
8136 L:      linuxppc-dev@lists.ozlabs.org
8137 S:      Orphan
8138 F:      arch/powerpc/platforms/pasemi/
8139 F:      drivers/*/*pasemi*
8140 F:      drivers/*/*/*pasemi*
8141
8142 LINUX KERNEL DUMP TEST MODULE (LKDTM)
8143 M:      Kees Cook <keescook@chromium.org>
8144 S:      Maintained
8145 F:      drivers/misc/lkdtm*
8146
8147 LINUX SECURITY MODULE (LSM) FRAMEWORK
8148 M:      Chris Wright <chrisw@sous-sol.org>
8149 L:      linux-security-module@vger.kernel.org
8150 S:      Supported
8151
8152 LIS3LV02D ACCELEROMETER DRIVER
8153 M:      Eric Piel <eric.piel@tremplin-utc.net>
8154 S:      Maintained
8155 F:      Documentation/misc-devices/lis3lv02d
8156 F:      drivers/misc/lis3lv02d/
8157 F:      drivers/platform/x86/hp_accel.c
8158
8159 LIVE PATCHING
8160 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8161 M:      Jessica Yu <jeyu@kernel.org>
8162 M:      Jiri Kosina <jikos@kernel.org>
8163 M:      Miroslav Benes <mbenes@suse.cz>
8164 R:      Petr Mladek <pmladek@suse.com>
8165 S:      Maintained
8166 F:      kernel/livepatch/
8167 F:      include/linux/livepatch.h
8168 F:      arch/x86/include/asm/livepatch.h
8169 F:      arch/x86/kernel/livepatch.c
8170 F:      Documentation/livepatch/
8171 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
8172 F:      samples/livepatch/
8173 L:      live-patching@vger.kernel.org
8174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
8175
8176 LLC (802.2)
8177 L:      netdev@vger.kernel.org
8178 S:      Odd fixes
8179 F:      include/linux/llc.h
8180 F:      include/uapi/linux/llc.h
8181 F:      include/net/llc*
8182 F:      net/llc/
8183
8184 LM73 HARDWARE MONITOR DRIVER
8185 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
8186 L:      linux-hwmon@vger.kernel.org
8187 S:      Maintained
8188 F:      drivers/hwmon/lm73.c
8189
8190 LM78 HARDWARE MONITOR DRIVER
8191 M:      Jean Delvare <jdelvare@suse.com>
8192 L:      linux-hwmon@vger.kernel.org
8193 S:      Maintained
8194 F:      Documentation/hwmon/lm78
8195 F:      drivers/hwmon/lm78.c
8196
8197 LM83 HARDWARE MONITOR DRIVER
8198 M:      Jean Delvare <jdelvare@suse.com>
8199 L:      linux-hwmon@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/hwmon/lm83
8202 F:      drivers/hwmon/lm83.c
8203
8204 LM90 HARDWARE MONITOR DRIVER
8205 M:      Jean Delvare <jdelvare@suse.com>
8206 L:      linux-hwmon@vger.kernel.org
8207 S:      Maintained
8208 F:      Documentation/hwmon/lm90
8209 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
8210 F:      drivers/hwmon/lm90.c
8211 F:      include/dt-bindings/thermal/lm90.h
8212
8213 LM95234 HARDWARE MONITOR DRIVER
8214 M:      Guenter Roeck <linux@roeck-us.net>
8215 L:      linux-hwmon@vger.kernel.org
8216 S:      Maintained
8217 F:      Documentation/hwmon/lm95234
8218 F:      drivers/hwmon/lm95234.c
8219
8220 LME2510 MEDIA DRIVER
8221 M:      Malcolm Priestley <tvboxspy@gmail.com>
8222 L:      linux-media@vger.kernel.org
8223 W:      https://linuxtv.org
8224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8225 S:      Maintained
8226 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
8227
8228 LOADPIN SECURITY MODULE
8229 M:      Kees Cook <keescook@chromium.org>
8230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
8231 S:      Supported
8232 F:      security/loadpin/
8233 F:      Documentation/admin-guide/LSM/LoadPin.rst
8234
8235 LOCKING PRIMITIVES
8236 M:      Peter Zijlstra <peterz@infradead.org>
8237 M:      Ingo Molnar <mingo@redhat.com>
8238 L:      linux-kernel@vger.kernel.org
8239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8240 S:      Maintained
8241 F:      Documentation/locking/
8242 F:      include/linux/lockdep.h
8243 F:      include/linux/spinlock*.h
8244 F:      arch/*/include/asm/spinlock*.h
8245 F:      include/linux/rwlock*.h
8246 F:      include/linux/mutex*.h
8247 F:      arch/*/include/asm/mutex*.h
8248 F:      include/linux/rwsem*.h
8249 F:      arch/*/include/asm/rwsem.h
8250 F:      include/linux/seqlock.h
8251 F:      lib/locking*.[ch]
8252 F:      kernel/locking/
8253 X:      kernel/locking/locktorture.c
8254
8255 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
8256 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
8257 L:      linux-ntfs-dev@lists.sourceforge.net
8258 W:      http://www.linux-ntfs.org/content/view/19/37/
8259 S:      Maintained
8260 F:      Documentation/ldm.txt
8261 F:      block/partitions/ldm.*
8262
8263 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
8264 M:      Sathya Prakash <sathya.prakash@broadcom.com>
8265 M:      Chaitra P B <chaitra.basappa@broadcom.com>
8266 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
8267 L:      MPT-FusionLinux.pdl@broadcom.com
8268 L:      linux-scsi@vger.kernel.org
8269 W:      http://www.avagotech.com/support/
8270 S:      Supported
8271 F:      drivers/message/fusion/
8272 F:      drivers/scsi/mpt2sas/
8273 F:      drivers/scsi/mpt3sas/
8274
8275 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
8276 M:      Matthew Wilcox <matthew@wil.cx>
8277 L:      linux-scsi@vger.kernel.org
8278 S:      Maintained
8279 F:      drivers/scsi/sym53c8xx_2/
8280
8281 LTC4261 HARDWARE MONITOR DRIVER
8282 M:      Guenter Roeck <linux@roeck-us.net>
8283 L:      linux-hwmon@vger.kernel.org
8284 S:      Maintained
8285 F:      Documentation/hwmon/ltc4261
8286 F:      drivers/hwmon/ltc4261.c
8287
8288 LTC4306 I2C MULTIPLEXER DRIVER
8289 M:      Michael Hennerich <michael.hennerich@analog.com>
8290 W:      http://ez.analog.com/community/linux-device-drivers
8291 L:      linux-i2c@vger.kernel.org
8292 S:      Supported
8293 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
8294 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
8295
8296 LTP (Linux Test Project)
8297 M:      Mike Frysinger <vapier@gentoo.org>
8298 M:      Cyril Hrubis <chrubis@suse.cz>
8299 M:      Wanlong Gao <wanlong.gao@gmail.com>
8300 M:      Jan Stancek <jstancek@redhat.com>
8301 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
8302 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
8303 L:      ltp@lists.linux.it (subscribers-only)
8304 W:      http://linux-test-project.github.io/
8305 T:      git git://github.com/linux-test-project/ltp.git
8306 S:      Maintained
8307
8308 M32R ARCHITECTURE
8309 W:      http://www.linux-m32r.org/
8310 S:      Orphan
8311 F:      arch/m32r/
8312
8313 M68K ARCHITECTURE
8314 M:      Geert Uytterhoeven <geert@linux-m68k.org>
8315 L:      linux-m68k@lists.linux-m68k.org
8316 W:      http://www.linux-m68k.org/
8317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8318 S:      Maintained
8319 F:      arch/m68k/
8320 F:      drivers/zorro/
8321
8322 M68K ON APPLE MACINTOSH
8323 M:      Joshua Thompson <funaho@jurai.org>
8324 W:      http://www.mac.linux-m68k.org/
8325 L:      linux-m68k@lists.linux-m68k.org
8326 S:      Maintained
8327 F:      arch/m68k/mac/
8328
8329 M68K ON HP9000/300
8330 M:      Philip Blundell <philb@gnu.org>
8331 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
8332 S:      Maintained
8333 F:      arch/m68k/hp300/
8334
8335 M88DS3103 MEDIA DRIVER
8336 M:      Antti Palosaari <crope@iki.fi>
8337 L:      linux-media@vger.kernel.org
8338 W:      https://linuxtv.org
8339 W:      http://palosaari.fi/linux/
8340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8341 T:      git git://linuxtv.org/anttip/media_tree.git
8342 S:      Maintained
8343 F:      drivers/media/dvb-frontends/m88ds3103*
8344
8345 M88RS2000 MEDIA DRIVER
8346 M:      Malcolm Priestley <tvboxspy@gmail.com>
8347 L:      linux-media@vger.kernel.org
8348 W:      https://linuxtv.org
8349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8350 S:      Maintained
8351 F:      drivers/media/dvb-frontends/m88rs2000*
8352
8353 MA901 MASTERKIT USB FM RADIO DRIVER
8354 M:      Alexey Klimov <klimov.linux@gmail.com>
8355 L:      linux-media@vger.kernel.org
8356 T:      git git://linuxtv.org/media_tree.git
8357 S:      Maintained
8358 F:      drivers/media/radio/radio-ma901.c
8359
8360 MAC80211
8361 M:      Johannes Berg <johannes@sipsolutions.net>
8362 L:      linux-wireless@vger.kernel.org
8363 W:      http://wireless.kernel.org/
8364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8366 S:      Maintained
8367 F:      Documentation/networking/mac80211-injection.txt
8368 F:      include/net/mac80211.h
8369 F:      net/mac80211/
8370 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8371 F:      Documentation/networking/mac80211_hwsim/README
8372
8373 MAILBOX API
8374 M:      Jassi Brar <jassisinghbrar@gmail.com>
8375 L:      linux-kernel@vger.kernel.org
8376 S:      Maintained
8377 F:      drivers/mailbox/
8378 F:      include/linux/mailbox_client.h
8379 F:      include/linux/mailbox_controller.h
8380
8381 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8382 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8383 W:      http://www.kernel.org/doc/man-pages
8384 L:      linux-man@vger.kernel.org
8385 S:      Maintained
8386
8387 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8388 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
8389 L:      linux-mips@linux-mips.org
8390 S:      Maintained
8391 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
8392
8393 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8394 M:      Andrew Lunn <andrew@lunn.ch>
8395 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8396 L:      netdev@vger.kernel.org
8397 S:      Maintained
8398 F:      drivers/net/dsa/mv88e6xxx/
8399 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
8400
8401 MARVELL ARMADA DRM SUPPORT
8402 M:      Russell King <linux@armlinux.org.uk>
8403 S:      Maintained
8404 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8405 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8406 F:      drivers/gpu/drm/armada/
8407 F:      include/uapi/drm/armada_drm.h
8408 F:      Documentation/devicetree/bindings/display/armada/
8409
8410 MARVELL CRYPTO DRIVER
8411 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8412 M:      Arnaud Ebalard <arno@natisbad.org>
8413 F:      drivers/crypto/marvell/
8414 S:      Maintained
8415 L:      linux-crypto@vger.kernel.org
8416
8417 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8418 M:      Mirko Lindner <mlindner@marvell.com>
8419 M:      Stephen Hemminger <stephen@networkplumber.org>
8420 L:      netdev@vger.kernel.org
8421 S:      Maintained
8422 F:      drivers/net/ethernet/marvell/sk*
8423
8424 MARVELL LIBERTAS WIRELESS DRIVER
8425 L:      libertas-dev@lists.infradead.org
8426 S:      Orphan
8427 F:      drivers/net/wireless/marvell/libertas/
8428
8429 MARVELL MACCHIATOBIN SUPPORT
8430 M:      Russell King <linux@armlinux.org.uk>
8431 L:      linux-arm-kernel@lists.infradead.org
8432 S:      Maintained
8433 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
8434
8435 MARVELL MV643XX ETHERNET DRIVER
8436 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8437 L:      netdev@vger.kernel.org
8438 S:      Maintained
8439 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
8440 F:      include/linux/mv643xx.h
8441
8442 MARVELL MV88X3310 PHY DRIVER
8443 M:      Russell King <linux@armlinux.org.uk>
8444 L:      netdev@vger.kernel.org
8445 S:      Maintained
8446 F:      drivers/net/phy/marvell10g.c
8447
8448 MARVELL MVNETA ETHERNET DRIVER
8449 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8450 L:      netdev@vger.kernel.org
8451 S:      Maintained
8452 F:      drivers/net/ethernet/marvell/mvneta.*
8453
8454 MARVELL MWIFIEX WIRELESS DRIVER
8455 M:      Amitkumar Karwar <amitkarwar@gmail.com>
8456 M:      Nishant Sarmukadam <nishants@marvell.com>
8457 M:      Ganapathi Bhat <gbhat@marvell.com>
8458 M:      Xinming Hu <huxm@marvell.com>
8459 L:      linux-wireless@vger.kernel.org
8460 S:      Maintained
8461 F:      drivers/net/wireless/marvell/mwifiex/
8462
8463 MARVELL MWL8K WIRELESS DRIVER
8464 M:      Lennert Buytenhek <buytenh@wantstofly.org>
8465 L:      linux-wireless@vger.kernel.org
8466 S:      Odd Fixes
8467 F:      drivers/net/wireless/marvell/mwl8k.c
8468
8469 MARVELL NAND CONTROLLER DRIVER
8470 M:      Miquel Raynal <miquel.raynal@free-electrons.com>
8471 L:      linux-mtd@lists.infradead.org
8472 S:      Maintained
8473 F:      drivers/mtd/nand/marvell_nand.c
8474 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
8475
8476 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8477 M:      Nicolas Pitre <nico@fluxnic.net>
8478 S:      Odd Fixes
8479 F:      drivers/mmc/host/mvsdio.*
8480
8481 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8482 M:      Hu Ziji <huziji@marvell.com>
8483 L:      linux-mmc@vger.kernel.org
8484 S:      Supported
8485 F:      drivers/mmc/host/sdhci-xenon*
8486 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8487
8488 MATROX FRAMEBUFFER DRIVER
8489 L:      linux-fbdev@vger.kernel.org
8490 S:      Orphan
8491 F:      drivers/video/fbdev/matrox/matroxfb_*
8492 F:      include/uapi/linux/matroxfb.h
8493
8494 MAX16065 HARDWARE MONITOR DRIVER
8495 M:      Guenter Roeck <linux@roeck-us.net>
8496 L:      linux-hwmon@vger.kernel.org
8497 S:      Maintained
8498 F:      Documentation/hwmon/max16065
8499 F:      drivers/hwmon/max16065.c
8500
8501 MAX20751 HARDWARE MONITOR DRIVER
8502 M:      Guenter Roeck <linux@roeck-us.net>
8503 L:      linux-hwmon@vger.kernel.org
8504 S:      Maintained
8505 F:      Documentation/hwmon/max20751
8506 F:      drivers/hwmon/max20751.c
8507
8508 MAX2175 SDR TUNER DRIVER
8509 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8510 L:      linux-media@vger.kernel.org
8511 T:      git git://linuxtv.org/media_tree.git
8512 S:      Maintained
8513 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
8514 F:      Documentation/media/v4l-drivers/max2175.rst
8515 F:      drivers/media/i2c/max2175*
8516 F:      include/uapi/linux/max2175.h
8517
8518 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8519 L:      linux-hwmon@vger.kernel.org
8520 S:      Orphan
8521 F:      Documentation/hwmon/max6650
8522 F:      drivers/hwmon/max6650.c
8523
8524 MAX6697 HARDWARE MONITOR DRIVER
8525 M:      Guenter Roeck <linux@roeck-us.net>
8526 L:      linux-hwmon@vger.kernel.org
8527 S:      Maintained
8528 F:      Documentation/hwmon/max6697
8529 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8530 F:      drivers/hwmon/max6697.c
8531 F:      include/linux/platform_data/max6697.h
8532
8533 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8534 M:      Peter Rosin <peda@axentia.se>
8535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8536 S:      Maintained
8537 F:      Documentation/devicetree/bindings/sound/max9860.txt
8538 F:      sound/soc/codecs/max9860.*
8539
8540 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8541 M:      Javier Martinez Canillas <javier@dowhile0.org>
8542 L:      linux-kernel@vger.kernel.org
8543 S:      Supported
8544 F:      drivers/regulator/max77802-regulator.c
8545 F:      Documentation/devicetree/bindings/*/*max77802.txt
8546 F:      include/dt-bindings/*/*max77802.h
8547
8548 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8549 M:      Krzysztof Kozlowski <krzk@kernel.org>
8550 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8551 L:      linux-pm@vger.kernel.org
8552 S:      Supported
8553 F:      drivers/power/supply/max14577_charger.c
8554 F:      drivers/power/supply/max77693_charger.c
8555
8556 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8557 M:      Chanwoo Choi <cw00.choi@samsung.com>
8558 M:      Krzysztof Kozlowski <krzk@kernel.org>
8559 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8560 L:      linux-kernel@vger.kernel.org
8561 S:      Supported
8562 F:      drivers/*/max14577*.c
8563 F:      drivers/*/max77686*.c
8564 F:      drivers/*/max77693*.c
8565 F:      drivers/extcon/extcon-max14577.c
8566 F:      drivers/extcon/extcon-max77693.c
8567 F:      drivers/rtc/rtc-max77686.c
8568 F:      drivers/clk/clk-max77686.c
8569 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8570 F:      Documentation/devicetree/bindings/*/max77686.txt
8571 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8572 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8573 F:      include/linux/mfd/max14577*.h
8574 F:      include/linux/mfd/max77686*.h
8575 F:      include/linux/mfd/max77693*.h
8576
8577 MAXIRADIO FM RADIO RECEIVER DRIVER
8578 M:      Hans Verkuil <hverkuil@xs4all.nl>
8579 L:      linux-media@vger.kernel.org
8580 T:      git git://linuxtv.org/media_tree.git
8581 W:      https://linuxtv.org
8582 S:      Maintained
8583 F:      drivers/media/radio/radio-maxiradio*
8584
8585 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8586 M:      Peter Rosin <peda@axentia.se>
8587 L:      linux-iio@vger.kernel.org
8588 S:      Maintained
8589 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8590 F:      drivers/iio/potentiometer/mcp4531.c
8591
8592 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8593 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8594 L:      linux-iio@vger.kernel.org
8595 S:      Maintained
8596 F:      drivers/iio/dac/cio-dac.c
8597
8598 MEDIA DRIVERS FOR ASCOT2E
8599 M:      Sergey Kozlov <serjk@netup.ru>
8600 M:      Abylay Ospan <aospan@netup.ru>
8601 L:      linux-media@vger.kernel.org
8602 W:      https://linuxtv.org
8603 W:      http://netup.tv/
8604 T:      git git://linuxtv.org/media_tree.git
8605 S:      Supported
8606 F:      drivers/media/dvb-frontends/ascot2e*
8607
8608 MEDIA DRIVERS FOR CXD2841ER
8609 M:      Sergey Kozlov <serjk@netup.ru>
8610 M:      Abylay Ospan <aospan@netup.ru>
8611 L:      linux-media@vger.kernel.org
8612 W:      https://linuxtv.org
8613 W:      http://netup.tv/
8614 T:      git git://linuxtv.org/media_tree.git
8615 S:      Supported
8616 F:      drivers/media/dvb-frontends/cxd2841er*
8617
8618 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
8619 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8620 L:      linux-media@vger.kernel.org
8621 W:      https://linuxtv.org
8622 T:      git git://linuxtv.org/media_tree.git
8623 S:      Maintained
8624 F:      drivers/media/pci/ddbridge/*
8625
8626 MEDIA DRIVERS FOR FREESCALE IMX
8627 M:      Steve Longerbeam <slongerbeam@gmail.com>
8628 M:      Philipp Zabel <p.zabel@pengutronix.de>
8629 L:      linux-media@vger.kernel.org
8630 T:      git git://linuxtv.org/media_tree.git
8631 S:      Maintained
8632 F:      Documentation/devicetree/bindings/media/imx.txt
8633 F:      Documentation/media/v4l-drivers/imx.rst
8634 F:      drivers/staging/media/imx/
8635 F:      include/linux/imx-media.h
8636 F:      include/media/imx.h
8637
8638 MEDIA DRIVERS FOR HELENE
8639 M:      Abylay Ospan <aospan@netup.ru>
8640 L:      linux-media@vger.kernel.org
8641 W:      https://linuxtv.org
8642 W:      http://netup.tv/
8643 T:      git git://linuxtv.org/media_tree.git
8644 S:      Supported
8645 F:      drivers/media/dvb-frontends/helene*
8646
8647 MEDIA DRIVERS FOR HORUS3A
8648 M:      Sergey Kozlov <serjk@netup.ru>
8649 M:      Abylay Ospan <aospan@netup.ru>
8650 L:      linux-media@vger.kernel.org
8651 W:      https://linuxtv.org
8652 W:      http://netup.tv/
8653 T:      git git://linuxtv.org/media_tree.git
8654 S:      Supported
8655 F:      drivers/media/dvb-frontends/horus3a*
8656
8657 MEDIA DRIVERS FOR LNBH25
8658 M:      Sergey Kozlov <serjk@netup.ru>
8659 M:      Abylay Ospan <aospan@netup.ru>
8660 L:      linux-media@vger.kernel.org
8661 W:      https://linuxtv.org
8662 W:      http://netup.tv/
8663 T:      git git://linuxtv.org/media_tree.git
8664 S:      Supported
8665 F:      drivers/media/dvb-frontends/lnbh25*
8666
8667 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
8668 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8669 L:      linux-media@vger.kernel.org
8670 W:      https://linuxtv.org
8671 T:      git git://linuxtv.org/media_tree.git
8672 S:      Maintained
8673 F:      drivers/media/dvb-frontends/mxl5xx*
8674
8675 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8676 M:      Sergey Kozlov <serjk@netup.ru>
8677 M:      Abylay Ospan <aospan@netup.ru>
8678 L:      linux-media@vger.kernel.org
8679 W:      https://linuxtv.org
8680 W:      http://netup.tv/
8681 T:      git git://linuxtv.org/media_tree.git
8682 S:      Supported
8683 F:      drivers/media/pci/netup_unidvb/*
8684
8685 MEDIA DRIVERS FOR RENESAS - DRIF
8686 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8687 L:      linux-media@vger.kernel.org
8688 L:      linux-renesas-soc@vger.kernel.org
8689 T:      git git://linuxtv.org/media_tree.git
8690 S:      Supported
8691 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
8692 F:      drivers/media/platform/rcar_drif.c
8693
8694 MEDIA DRIVERS FOR RENESAS - FCP
8695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8696 L:      linux-media@vger.kernel.org
8697 L:      linux-renesas-soc@vger.kernel.org
8698 T:      git git://linuxtv.org/media_tree.git
8699 S:      Supported
8700 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8701 F:      drivers/media/platform/rcar-fcp.c
8702 F:      include/media/rcar-fcp.h
8703
8704 MEDIA DRIVERS FOR RENESAS - FDP1
8705 M:      Kieran Bingham <kieran@bingham.xyz>
8706 L:      linux-media@vger.kernel.org
8707 L:      linux-renesas-soc@vger.kernel.org
8708 T:      git git://linuxtv.org/media_tree.git
8709 S:      Supported
8710 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8711 F:      drivers/media/platform/rcar_fdp1.c
8712
8713 MEDIA DRIVERS FOR RENESAS - VIN
8714 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
8715 L:      linux-media@vger.kernel.org
8716 L:      linux-renesas-soc@vger.kernel.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 S:      Supported
8719 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8720 F:      drivers/media/platform/rcar-vin/
8721
8722 MEDIA DRIVERS FOR RENESAS - VSP1
8723 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8724 L:      linux-media@vger.kernel.org
8725 L:      linux-renesas-soc@vger.kernel.org
8726 T:      git git://linuxtv.org/media_tree.git
8727 S:      Supported
8728 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8729 F:      drivers/media/platform/vsp1/
8730
8731 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
8732 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8733 L:      linux-media@vger.kernel.org
8734 W:      https://linuxtv.org
8735 T:      git git://linuxtv.org/media_tree.git
8736 S:      Maintained
8737 F:      drivers/media/dvb-frontends/stv0910*
8738
8739 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
8740 M:      Daniel Scheller <d.scheller.oss@gmail.com>
8741 L:      linux-media@vger.kernel.org
8742 W:      https://linuxtv.org
8743 T:      git git://linuxtv.org/media_tree.git
8744 S:      Maintained
8745 F:      drivers/media/dvb-frontends/stv6111*
8746
8747 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
8748 M:      Dmitry Osipenko <digetx@gmail.com>
8749 L:      linux-media@vger.kernel.org
8750 L:      linux-tegra@vger.kernel.org
8751 T:      git git://linuxtv.org/media_tree.git
8752 S:      Maintained
8753 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
8754 F:      drivers/staging/media/tegra-vde/
8755
8756 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8757 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
8758 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
8759 P:      LinuxTV.org Project
8760 L:      linux-media@vger.kernel.org
8761 W:      https://linuxtv.org
8762 Q:      http://patchwork.kernel.org/project/linux-media/list/
8763 T:      git git://linuxtv.org/media_tree.git
8764 S:      Maintained
8765 F:      Documentation/devicetree/bindings/media/
8766 F:      Documentation/media/
8767 F:      drivers/media/
8768 F:      drivers/staging/media/
8769 F:      include/linux/platform_data/media/
8770 F:      include/media/
8771 F:      include/uapi/linux/dvb/
8772 F:      include/uapi/linux/videodev2.h
8773 F:      include/uapi/linux/media.h
8774 F:      include/uapi/linux/v4l2-*
8775 F:      include/uapi/linux/meye.h
8776 F:      include/uapi/linux/ivtv*
8777 F:      include/uapi/linux/uvcvideo.h
8778
8779 MEDIATEK CIR DRIVER
8780 M:      Sean Wang <sean.wang@mediatek.com>
8781 S:      Maintained
8782 F:      drivers/media/rc/mtk-cir.c
8783
8784 MEDIATEK PMIC LED DRIVER
8785 M:      Sean Wang <sean.wang@mediatek.com>
8786 S:      Maintained
8787 F:      drivers/leds/leds-mt6323.c
8788 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
8789
8790 MEDIATEK ETHERNET DRIVER
8791 M:      Felix Fietkau <nbd@openwrt.org>
8792 M:      John Crispin <john@phrozen.org>
8793 M:      Sean Wang <sean.wang@mediatek.com>
8794 M:      Nelson Chang <nelson.chang@mediatek.com>
8795 L:      netdev@vger.kernel.org
8796 S:      Maintained
8797 F:      drivers/net/ethernet/mediatek/
8798
8799 MEDIATEK SWITCH DRIVER
8800 M:      Sean Wang <sean.wang@mediatek.com>
8801 L:      netdev@vger.kernel.org
8802 S:      Maintained
8803 F:      drivers/net/dsa/mt7530.*
8804 F:      net/dsa/tag_mtk.c
8805
8806 MEDIATEK JPEG DRIVER
8807 M:      Rick Chang <rick.chang@mediatek.com>
8808 M:      Bin Liu <bin.liu@mediatek.com>
8809 S:      Supported
8810 F:      drivers/media/platform/mtk-jpeg/
8811 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8812
8813 MEDIATEK MDP DRIVER
8814 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8815 M:      Houlong Wei <houlong.wei@mediatek.com>
8816 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8817 S:      Supported
8818 F:      drivers/media/platform/mtk-mdp/
8819 F:      drivers/media/platform/mtk-vpu/
8820 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8821
8822 MEDIATEK MEDIA DRIVER
8823 M:      Tiffany Lin <tiffany.lin@mediatek.com>
8824 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8825 S:      Supported
8826 F:      drivers/media/platform/mtk-vcodec/
8827 F:      drivers/media/platform/mtk-vpu/
8828 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8829 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8830
8831 MEDIATEK MT7601U WIRELESS LAN DRIVER
8832 M:      Jakub Kicinski <kubakici@wp.pl>
8833 L:      linux-wireless@vger.kernel.org
8834 S:      Maintained
8835 F:      drivers/net/wireless/mediatek/mt7601u/
8836
8837 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8838 M:      Sean Wang <sean.wang@mediatek.com>
8839 S:      Maintained
8840 F:      drivers/char/hw_random/mtk-rng.c
8841
8842 MEDIATEK USB3 DRD IP DRIVER
8843 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
8844 L:      linux-usb@vger.kernel.org (moderated for non-subscribers)
8845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8846 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
8847 S:      Maintained
8848 F:      drivers/usb/mtu3/
8849
8850 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8851 M:      Peter Senna Tschudin <peter.senna@collabora.com>
8852 M:      Martin Donnelly <martin.donnelly@ge.com>
8853 M:      Martyn Welch <martyn.welch@collabora.co.uk>
8854 S:      Maintained
8855 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8856 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8857
8858 MEGARAID SCSI/SAS DRIVERS
8859 M:      Kashyap Desai <kashyap.desai@broadcom.com>
8860 M:      Sumit Saxena <sumit.saxena@broadcom.com>
8861 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8862 L:      megaraidlinux.pdl@broadcom.com
8863 L:      linux-scsi@vger.kernel.org
8864 W:      http://www.avagotech.com/support/
8865 S:      Maintained
8866 F:      Documentation/scsi/megaraid.txt
8867 F:      drivers/scsi/megaraid.*
8868 F:      drivers/scsi/megaraid/
8869
8870 MELEXIS MLX90614 DRIVER
8871 M:      Crt Mori <cmo@melexis.com>
8872 L:      linux-iio@vger.kernel.org
8873 W:      http://www.melexis.com
8874 S:      Supported
8875 F:      drivers/iio/temperature/mlx90614.c
8876
8877 MELFAS MIP4 TOUCHSCREEN DRIVER
8878 M:      Sangwon Jee <jeesw@melfas.com>
8879 W:      http://www.melfas.com
8880 S:      Supported
8881 F:      drivers/input/touchscreen/melfas_mip4.c
8882 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8883
8884 MELLANOX ETHERNET DRIVER (mlx4_en)
8885 M:      Tariq Toukan <tariqt@mellanox.com>
8886 L:      netdev@vger.kernel.org
8887 S:      Supported
8888 W:      http://www.mellanox.com
8889 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8890 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8891
8892 MELLANOX ETHERNET DRIVER (mlx5e)
8893 M:      Saeed Mahameed <saeedm@mellanox.com>
8894 L:      netdev@vger.kernel.org
8895 S:      Supported
8896 W:      http://www.mellanox.com
8897 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8898 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8899
8900 MELLANOX ETHERNET INNOVA DRIVER
8901 M:      Ilan Tayari <ilant@mellanox.com>
8902 R:      Boris Pismenny <borisp@mellanox.com>
8903 L:      netdev@vger.kernel.org
8904 S:      Supported
8905 W:      http://www.mellanox.com
8906 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8907 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8908 F:      include/linux/mlx5/mlx5_ifc_fpga.h
8909
8910 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8911 M:      Ilan Tayari <ilant@mellanox.com>
8912 R:      Boris Pismenny <borisp@mellanox.com>
8913 L:      netdev@vger.kernel.org
8914 S:      Supported
8915 W:      http://www.mellanox.com
8916 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8917 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8918 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8919
8920 MELLANOX ETHERNET SWITCH DRIVERS
8921 M:      Jiri Pirko <jiri@mellanox.com>
8922 M:      Ido Schimmel <idosch@mellanox.com>
8923 L:      netdev@vger.kernel.org
8924 S:      Supported
8925 W:      http://www.mellanox.com
8926 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8927 F:      drivers/net/ethernet/mellanox/mlxsw/
8928
8929 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8930 M:      mlxsw@mellanox.com
8931 L:      netdev@vger.kernel.org
8932 S:      Supported
8933 W:      http://www.mellanox.com
8934 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8935 F:      drivers/net/ethernet/mellanox/mlxfw/
8936
8937 MELLANOX HARDWARE PLATFORM SUPPORT
8938 M:      Andy Shevchenko <andy@infradead.org>
8939 M:      Darren Hart <dvhart@infradead.org>
8940 M:      Vadim Pasternak <vadimp@mellanox.com>
8941 L:      platform-driver-x86@vger.kernel.org
8942 S:      Supported
8943 F:      drivers/platform/mellanox/
8944
8945 MELLANOX MLX4 core VPI driver
8946 M:      Tariq Toukan <tariqt@mellanox.com>
8947 L:      netdev@vger.kernel.org
8948 L:      linux-rdma@vger.kernel.org
8949 W:      http://www.mellanox.com
8950 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8951 S:      Supported
8952 F:      drivers/net/ethernet/mellanox/mlx4/
8953 F:      include/linux/mlx4/
8954
8955 MELLANOX MLX4 IB driver
8956 M:      Yishai Hadas <yishaih@mellanox.com>
8957 L:      linux-rdma@vger.kernel.org
8958 W:      http://www.mellanox.com
8959 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8960 S:      Supported
8961 F:      drivers/infiniband/hw/mlx4/
8962 F:      include/linux/mlx4/
8963 F:      include/uapi/rdma/mlx4-abi.h
8964
8965 MELLANOX MLX5 core VPI driver
8966 M:      Saeed Mahameed <saeedm@mellanox.com>
8967 M:      Matan Barak <matanb@mellanox.com>
8968 M:      Leon Romanovsky <leonro@mellanox.com>
8969 L:      netdev@vger.kernel.org
8970 L:      linux-rdma@vger.kernel.org
8971 W:      http://www.mellanox.com
8972 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8973 S:      Supported
8974 F:      drivers/net/ethernet/mellanox/mlx5/core/
8975 F:      include/linux/mlx5/
8976
8977 MELLANOX MLX5 IB driver
8978 M:      Matan Barak <matanb@mellanox.com>
8979 M:      Leon Romanovsky <leonro@mellanox.com>
8980 L:      linux-rdma@vger.kernel.org
8981 W:      http://www.mellanox.com
8982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8983 S:      Supported
8984 F:      drivers/infiniband/hw/mlx5/
8985 F:      include/linux/mlx5/
8986 F:      include/uapi/rdma/mlx5-abi.h
8987
8988 MELLANOX MLXCPLD I2C AND MUX DRIVER
8989 M:      Vadim Pasternak <vadimp@mellanox.com>
8990 M:      Michael Shych <michaelsh@mellanox.com>
8991 L:      linux-i2c@vger.kernel.org
8992 S:      Supported
8993 F:      drivers/i2c/busses/i2c-mlxcpld.c
8994 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8995 F:      Documentation/i2c/busses/i2c-mlxcpld
8996
8997 MELLANOX MLXCPLD LED DRIVER
8998 M:      Vadim Pasternak <vadimp@mellanox.com>
8999 L:      linux-leds@vger.kernel.org
9000 S:      Supported
9001 F:      drivers/leds/leds-mlxcpld.c
9002 F:      Documentation/leds/leds-mlxcpld.txt
9003
9004 MELLANOX PLATFORM DRIVER
9005 M:      Vadim Pasternak <vadimp@mellanox.com>
9006 L:      platform-driver-x86@vger.kernel.org
9007 S:      Supported
9008 F:      drivers/platform/x86/mlx-platform.c
9009
9010 MEMBARRIER SUPPORT
9011 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9012 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9013 L:      linux-kernel@vger.kernel.org
9014 S:      Supported
9015 F:      kernel/sched/membarrier.c
9016 F:      include/uapi/linux/membarrier.h
9017 F:      arch/powerpc/include/asm/membarrier.h
9018
9019 MEMORY MANAGEMENT
9020 L:      linux-mm@kvack.org
9021 W:      http://www.linux-mm.org
9022 S:      Maintained
9023 F:      include/linux/mm.h
9024 F:      include/linux/gfp.h
9025 F:      include/linux/mmzone.h
9026 F:      include/linux/memory_hotplug.h
9027 F:      include/linux/vmalloc.h
9028 F:      mm/
9029
9030 MEMORY TECHNOLOGY DEVICES (MTD)
9031 M:      David Woodhouse <dwmw2@infradead.org>
9032 M:      Brian Norris <computersforpeace@gmail.com>
9033 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9034 M:      Marek Vasut <marek.vasut@gmail.com>
9035 M:      Richard Weinberger <richard@nod.at>
9036 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
9037 L:      linux-mtd@lists.infradead.org
9038 W:      http://www.linux-mtd.infradead.org/
9039 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9040 T:      git git://git.infradead.org/linux-mtd.git master
9041 T:      git git://git.infradead.org/linux-mtd.git mtd/next
9042 S:      Maintained
9043 F:      Documentation/devicetree/bindings/mtd/
9044 F:      drivers/mtd/
9045 F:      include/linux/mtd/
9046 F:      include/uapi/mtd/
9047
9048 MEN A21 WATCHDOG DRIVER
9049 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9050 L:      linux-watchdog@vger.kernel.org
9051 S:      Maintained
9052 F:      drivers/watchdog/mena21_wdt.c
9053
9054 MEN CHAMELEON BUS (mcb)
9055 M:      Johannes Thumshirn <morbidrsa@gmail.com>
9056 S:      Maintained
9057 F:      drivers/mcb/
9058 F:      include/linux/mcb.h
9059 F:      Documentation/men-chameleon-bus.txt
9060
9061 MEN F21BMC (Board Management Controller)
9062 M:      Andreas Werner <andreas.werner@men.de>
9063 S:      Supported
9064 F:      drivers/mfd/menf21bmc.c
9065 F:      drivers/watchdog/menf21bmc_wdt.c
9066 F:      drivers/leds/leds-menf21bmc.c
9067 F:      drivers/hwmon/menf21bmc_hwmon.c
9068 F:      Documentation/hwmon/menf21bmc
9069
9070 MESON AO CEC DRIVER FOR AMLOGIC SOCS
9071 M:      Neil Armstrong <narmstrong@baylibre.com>
9072 L:      linux-media@lists.freedesktop.org
9073 L:      linux-amlogic@lists.infradead.org
9074 W:      http://linux-meson.com/
9075 S:      Supported
9076 F:      drivers/media/platform/meson/ao-cec.c
9077 F:      Documentation/devicetree/bindings/media/meson-ao-cec.txt
9078 T:      git git://linuxtv.org/media_tree.git
9079
9080 METAG ARCHITECTURE
9081 M:      James Hogan <jhogan@kernel.org>
9082 L:      linux-metag@vger.kernel.org
9083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
9084 S:      Odd Fixes
9085 F:      arch/metag/
9086 F:      Documentation/metag/
9087 F:      Documentation/devicetree/bindings/metag/
9088 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
9089 F:      drivers/clocksource/metag_generic.c
9090 F:      drivers/irqchip/irq-metag.c
9091 F:      drivers/irqchip/irq-metag-ext.c
9092 F:      drivers/tty/metag_da.c
9093
9094 MICROBLAZE ARCHITECTURE
9095 M:      Michal Simek <monstr@monstr.eu>
9096 W:      http://www.monstr.eu/fdt/
9097 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
9098 S:      Supported
9099 F:      arch/microblaze/
9100
9101 MICROCHIP / ATMEL AT91 SERIAL DRIVER
9102 M:      Richard Genoud <richard.genoud@gmail.com>
9103 S:      Maintained
9104 F:      drivers/tty/serial/atmel_serial.c
9105 F:      drivers/tty/serial/atmel_serial.h
9106
9107 MICROCHIP / ATMEL DMA DRIVER
9108 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
9109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9110 L:      dmaengine@vger.kernel.org
9111 S:      Supported
9112 F:      drivers/dma/at_hdmac.c
9113 F:      drivers/dma/at_hdmac_regs.h
9114 F:      include/linux/platform_data/dma-atmel.h
9115
9116 MICROCHIP / ATMEL ECC DRIVER
9117 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
9118 L:      linux-crypto@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/crypto/atmel-ecc.*
9121
9122 MICROCHIP / ATMEL ISC DRIVER
9123 M:      Songjun Wu <songjun.wu@microchip.com>
9124 L:      linux-media@vger.kernel.org
9125 S:      Supported
9126 F:      drivers/media/platform/atmel/atmel-isc.c
9127 F:      drivers/media/platform/atmel/atmel-isc-regs.h
9128 F:      devicetree/bindings/media/atmel-isc.txt
9129
9130 MICROCHIP / ATMEL NAND DRIVER
9131 M:      Wenyou Yang <wenyou.yang@microchip.com>
9132 M:      Josh Wu <rainyfeeling@outlook.com>
9133 L:      linux-mtd@lists.infradead.org
9134 S:      Supported
9135 F:      drivers/mtd/nand/atmel/*
9136 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
9137
9138 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
9139 M:      Woojung Huh <Woojung.Huh@microchip.com>
9140 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
9141 L:      netdev@vger.kernel.org
9142 S:      Maintained
9143 F:      net/dsa/tag_ksz.c
9144 F:      drivers/net/dsa/microchip/*
9145 F:      include/linux/platform_data/microchip-ksz.h
9146 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
9147
9148 MICROCHIP USB251XB DRIVER
9149 M:      Richard Leitner <richard.leitner@skidata.com>
9150 L:      linux-usb@vger.kernel.org
9151 S:      Maintained
9152 F:      drivers/usb/misc/usb251xb.c
9153 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
9154
9155 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
9156 M:      Don Brace <don.brace@microsemi.com>
9157 L:      esc.storagedev@microsemi.com
9158 L:      linux-scsi@vger.kernel.org
9159 S:      Supported
9160 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
9161 F:      drivers/scsi/smartpqi/Kconfig
9162 F:      drivers/scsi/smartpqi/Makefile
9163 F:      include/linux/cciss*.h
9164 F:      include/uapi/linux/cciss*.h
9165 F:      Documentation/scsi/smartpqi.txt
9166
9167 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
9168 M:      Chen Yu <yu.c.chen@intel.com>
9169 L:      platform-driver-x86@vger.kernel.org
9170 S:      Supported
9171 F:      drivers/platform/x86/surfacepro3_button.c
9172
9173 MICROTEK X6 SCANNER
9174 M:      Oliver Neukum <oliver@neukum.org>
9175 S:      Maintained
9176 F:      drivers/usb/image/microtek.*
9177
9178 MIPS
9179 M:      Ralf Baechle <ralf@linux-mips.org>
9180 M:      James Hogan <jhogan@kernel.org>
9181 L:      linux-mips@linux-mips.org
9182 W:      http://www.linux-mips.org/
9183 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
9184 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
9185 S:      Supported
9186 F:      Documentation/devicetree/bindings/mips/
9187 F:      Documentation/mips/
9188 F:      arch/mips/
9189 F:      drivers/platform/mips/
9190
9191 MIPS BOSTON DEVELOPMENT BOARD
9192 M:      Paul Burton <paul.burton@mips.com>
9193 L:      linux-mips@linux-mips.org
9194 S:      Maintained
9195 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
9196 F:      arch/mips/boot/dts/img/boston.dts
9197 F:      arch/mips/configs/generic/board-boston.config
9198 F:      drivers/clk/imgtec/clk-boston.c
9199 F:      include/dt-bindings/clock/boston-clock.h
9200
9201 MIPS GENERIC PLATFORM
9202 M:      Paul Burton <paul.burton@mips.com>
9203 L:      linux-mips@linux-mips.org
9204 S:      Supported
9205 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.txt
9206 F:      arch/mips/generic/
9207 F:      arch/mips/tools/generic-board-config.sh
9208
9209 MIPS/LOONGSON1 ARCHITECTURE
9210 M:      Keguang Zhang <keguang.zhang@gmail.com>
9211 L:      linux-mips@linux-mips.org
9212 S:      Maintained
9213 F:      arch/mips/loongson32/
9214 F:      arch/mips/include/asm/mach-loongson32/
9215 F:      drivers/*/*loongson1*
9216 F:      drivers/*/*/*loongson1*
9217
9218 MIPS/LOONGSON2 ARCHITECTURE
9219 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
9220 L:      linux-mips@linux-mips.org
9221 S:      Maintained
9222 F:      arch/mips/loongson64/*{2e/2f}*
9223 F:      arch/mips/include/asm/mach-loongson64/
9224 F:      drivers/*/*loongson2*
9225 F:      drivers/*/*/*loongson2*
9226
9227 MIPS/LOONGSON3 ARCHITECTURE
9228 M:      Huacai Chen <chenhc@lemote.com>
9229 L:      linux-mips@linux-mips.org
9230 S:      Maintained
9231 F:      arch/mips/loongson64/
9232 F:      arch/mips/include/asm/mach-loongson64/
9233 F:      drivers/platform/mips/cpu_hwmon.c
9234 F:      drivers/*/*loongson3*
9235 F:      drivers/*/*/*loongson3*
9236
9237 MIPS RINT INSTRUCTION EMULATION
9238 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
9239 L:      linux-mips@linux-mips.org
9240 S:      Supported
9241 F:      arch/mips/math-emu/sp_rint.c
9242 F:      arch/mips/math-emu/dp_rint.c
9243
9244 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
9245 M:      Hans Verkuil <hverkuil@xs4all.nl>
9246 L:      linux-media@vger.kernel.org
9247 T:      git git://linuxtv.org/media_tree.git
9248 W:      https://linuxtv.org
9249 S:      Odd Fixes
9250 F:      drivers/media/radio/radio-miropcm20*
9251
9252 MMP SUPPORT
9253 M:      Eric Miao <eric.y.miao@gmail.com>
9254 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9256 T:      git git://github.com/hzhuang1/linux.git
9257 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9258 S:      Maintained
9259 F:      arch/arm/boot/dts/mmp*
9260 F:      arch/arm/mach-mmp/
9261
9262 MN88472 MEDIA DRIVER
9263 M:      Antti Palosaari <crope@iki.fi>
9264 L:      linux-media@vger.kernel.org
9265 W:      https://linuxtv.org
9266 W:      http://palosaari.fi/linux/
9267 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9268 S:      Maintained
9269 F:      drivers/media/dvb-frontends/mn88472*
9270
9271 MN88473 MEDIA DRIVER
9272 M:      Antti Palosaari <crope@iki.fi>
9273 L:      linux-media@vger.kernel.org
9274 W:      https://linuxtv.org
9275 W:      http://palosaari.fi/linux/
9276 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9277 S:      Maintained
9278 F:      drivers/media/dvb-frontends/mn88473*
9279
9280 MODULE SUPPORT
9281 M:      Jessica Yu <jeyu@kernel.org>
9282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
9283 S:      Maintained
9284 F:      include/linux/module.h
9285 F:      kernel/module.c
9286
9287 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
9288 W:      http://popies.net/meye/
9289 S:      Orphan
9290 F:      Documentation/media/v4l-drivers/meye*
9291 F:      drivers/media/pci/meye/
9292 F:      include/uapi/linux/meye.h
9293
9294 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
9295 M:      Jiri Slaby <jirislaby@gmail.com>
9296 S:      Maintained
9297 F:      Documentation/serial/moxa-smartio
9298 F:      drivers/tty/mxser.*
9299
9300 MR800 AVERMEDIA USB FM RADIO DRIVER
9301 M:      Alexey Klimov <klimov.linux@gmail.com>
9302 L:      linux-media@vger.kernel.org
9303 T:      git git://linuxtv.org/media_tree.git
9304 S:      Maintained
9305 F:      drivers/media/radio/radio-mr800.c
9306
9307 MRF24J40 IEEE 802.15.4 RADIO DRIVER
9308 M:      Alan Ott <alan@signal11.us>
9309 L:      linux-wpan@vger.kernel.org
9310 S:      Maintained
9311 F:      drivers/net/ieee802154/mrf24j40.c
9312 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
9313
9314 MSI LAPTOP SUPPORT
9315 M:      "Lee, Chun-Yi" <jlee@suse.com>
9316 L:      platform-driver-x86@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/platform/x86/msi-laptop.c
9319
9320 MSI WMI SUPPORT
9321 L:      platform-driver-x86@vger.kernel.org
9322 S:      Orphan
9323 F:      drivers/platform/x86/msi-wmi.c
9324
9325 MSI001 MEDIA DRIVER
9326 M:      Antti Palosaari <crope@iki.fi>
9327 L:      linux-media@vger.kernel.org
9328 W:      https://linuxtv.org
9329 W:      http://palosaari.fi/linux/
9330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9331 T:      git git://linuxtv.org/anttip/media_tree.git
9332 S:      Maintained
9333 F:      drivers/media/tuners/msi001*
9334
9335 MSI2500 MEDIA DRIVER
9336 M:      Antti Palosaari <crope@iki.fi>
9337 L:      linux-media@vger.kernel.org
9338 W:      https://linuxtv.org
9339 W:      http://palosaari.fi/linux/
9340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9341 T:      git git://linuxtv.org/anttip/media_tree.git
9342 S:      Maintained
9343 F:      drivers/media/usb/msi2500/
9344
9345 MSYSTEMS DISKONCHIP G3 MTD DRIVER
9346 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9347 L:      linux-mtd@lists.infradead.org
9348 S:      Maintained
9349 F:      drivers/mtd/devices/docg3*
9350
9351 MT9M032 APTINA SENSOR DRIVER
9352 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9353 L:      linux-media@vger.kernel.org
9354 T:      git git://linuxtv.org/media_tree.git
9355 S:      Maintained
9356 F:      drivers/media/i2c/mt9m032.c
9357 F:      include/media/i2c/mt9m032.h
9358
9359 MT9P031 APTINA CAMERA SENSOR
9360 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9361 L:      linux-media@vger.kernel.org
9362 T:      git git://linuxtv.org/media_tree.git
9363 S:      Maintained
9364 F:      drivers/media/i2c/mt9p031.c
9365 F:      include/media/i2c/mt9p031.h
9366
9367 MT9T001 APTINA CAMERA SENSOR
9368 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9369 L:      linux-media@vger.kernel.org
9370 T:      git git://linuxtv.org/media_tree.git
9371 S:      Maintained
9372 F:      drivers/media/i2c/mt9t001.c
9373 F:      include/media/i2c/mt9t001.h
9374
9375 MT9V032 APTINA CAMERA SENSOR
9376 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9377 L:      linux-media@vger.kernel.org
9378 T:      git git://linuxtv.org/media_tree.git
9379 S:      Maintained
9380 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
9381 F:      drivers/media/i2c/mt9v032.c
9382 F:      include/media/i2c/mt9v032.h
9383
9384 MULTIFUNCTION DEVICES (MFD)
9385 M:      Lee Jones <lee.jones@linaro.org>
9386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
9387 S:      Supported
9388 F:      Documentation/devicetree/bindings/mfd/
9389 F:      drivers/mfd/
9390 F:      include/linux/mfd/
9391 F:      include/dt-bindings/mfd/
9392
9393 MULTIMEDIA CARD (MMC) ETC. OVER SPI
9394 S:      Orphan
9395 F:      drivers/mmc/host/mmc_spi.c
9396 F:      include/linux/spi/mmc_spi.h
9397
9398 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
9399 M:      Ulf Hansson <ulf.hansson@linaro.org>
9400 L:      linux-mmc@vger.kernel.org
9401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
9402 S:      Maintained
9403 F:      Documentation/devicetree/bindings/mmc/
9404 F:      drivers/mmc/
9405 F:      include/linux/mmc/
9406 F:      include/uapi/linux/mmc/
9407
9408 MULTIPLEXER SUBSYSTEM
9409 M:      Peter Rosin <peda@axentia.se>
9410 S:      Maintained
9411 F:      Documentation/ABI/testing/mux/sysfs-class-mux*
9412 F:      Documentation/devicetree/bindings/mux/
9413 F:      include/linux/dt-bindings/mux/
9414 F:      include/linux/mux/
9415 F:      drivers/mux/
9416
9417 MULTITECH MULTIPORT CARD (ISICOM)
9418 S:      Orphan
9419 F:      drivers/tty/isicom.c
9420 F:      include/linux/isicom.h
9421
9422 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
9423 M:      Bin Liu <b-liu@ti.com>
9424 L:      linux-usb@vger.kernel.org
9425 S:      Maintained
9426 F:      drivers/usb/musb/
9427
9428 MXL5007T MEDIA DRIVER
9429 M:      Michael Krufky <mkrufky@linuxtv.org>
9430 L:      linux-media@vger.kernel.org
9431 W:      https://linuxtv.org
9432 W:      http://github.com/mkrufky
9433 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9434 T:      git git://linuxtv.org/mkrufky/tuners.git
9435 S:      Maintained
9436 F:      drivers/media/tuners/mxl5007t.*
9437
9438 MXSFB DRM DRIVER
9439 M:      Marek Vasut <marex@denx.de>
9440 S:      Supported
9441 F:      drivers/gpu/drm/mxsfb/
9442 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
9443
9444 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
9445 M:      Chris Lee <christopher.lee@cspi.com>
9446 L:      netdev@vger.kernel.org
9447 W:      https://www.cspi.com/ethernet-products/support/downloads/
9448 S:      Supported
9449 F:      drivers/net/ethernet/myricom/myri10ge/
9450
9451 NAND FLASH SUBSYSTEM
9452 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
9453 R:      Richard Weinberger <richard@nod.at>
9454 L:      linux-mtd@lists.infradead.org
9455 W:      http://www.linux-mtd.infradead.org/
9456 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9457 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
9458 T:      git git://git.infradead.org/linux-mtd.git nand/next
9459 S:      Maintained
9460 F:      drivers/mtd/nand/
9461 F:      include/linux/mtd/*nand*.h
9462
9463 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
9464 M:      Daniel Mack <zonque@gmail.com>
9465 S:      Maintained
9466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9467 W:      http://www.native-instruments.com
9468 F:      sound/usb/caiaq/
9469
9470 NATSEMI ETHERNET DRIVER (DP8381x)
9471 S:      Orphan
9472 F:      drivers/net/ethernet/natsemi/natsemi.c
9473
9474 NCP FILESYSTEM
9475 M:      Petr Vandrovec <petr@vandrovec.name>
9476 S:      Obsolete
9477 F:      drivers/staging/ncpfs/
9478
9479 NCR 5380 SCSI DRIVERS
9480 M:      Finn Thain <fthain@telegraphics.com.au>
9481 M:      Michael Schmitz <schmitzmic@gmail.com>
9482 L:      linux-scsi@vger.kernel.org
9483 S:      Maintained
9484 F:      Documentation/scsi/g_NCR5380.txt
9485 F:      drivers/scsi/NCR5380.*
9486 F:      drivers/scsi/arm/cumana_1.c
9487 F:      drivers/scsi/arm/oak.c
9488 F:      drivers/scsi/atari_scsi.*
9489 F:      drivers/scsi/dmx3191d.c
9490 F:      drivers/scsi/g_NCR5380.*
9491 F:      drivers/scsi/mac_scsi.*
9492 F:      drivers/scsi/sun3_scsi.*
9493 F:      drivers/scsi/sun3_scsi_vme.c
9494
9495 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9496 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9497 L:      linux-scsi@vger.kernel.org
9498 S:      Maintained
9499 F:      drivers/scsi/NCR_D700.*
9500
9501 NCT6775 HARDWARE MONITOR DRIVER
9502 M:      Guenter Roeck <linux@roeck-us.net>
9503 L:      linux-hwmon@vger.kernel.org
9504 S:      Maintained
9505 F:      Documentation/hwmon/nct6775
9506 F:      drivers/hwmon/nct6775.c
9507
9508 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9509 M:      Faisal Latif <faisal.latif@intel.com>
9510 L:      linux-rdma@vger.kernel.org
9511 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9512 S:      Supported
9513 F:      drivers/infiniband/hw/nes/
9514 F:      include/uapi/rdma/nes-abi.h
9515
9516 NETEM NETWORK EMULATOR
9517 M:      Stephen Hemminger <stephen@networkplumber.org>
9518 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
9519 S:      Maintained
9520 F:      net/sched/sch_netem.c
9521
9522 NETERION 10GbE DRIVERS (s2io/vxge)
9523 M:      Jon Mason <jdmason@kudzu.us>
9524 L:      netdev@vger.kernel.org
9525 S:      Supported
9526 F:      Documentation/networking/s2io.txt
9527 F:      Documentation/networking/vxge.txt
9528 F:      drivers/net/ethernet/neterion/
9529
9530 NETFILTER
9531 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9532 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9533 M:      Florian Westphal <fw@strlen.de>
9534 L:      netfilter-devel@vger.kernel.org
9535 L:      coreteam@netfilter.org
9536 W:      http://www.netfilter.org/
9537 W:      http://www.iptables.org/
9538 W:      http://www.nftables.org/
9539 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9542 S:      Maintained
9543 F:      include/linux/netfilter*
9544 F:      include/linux/netfilter/
9545 F:      include/net/netfilter/
9546 F:      include/uapi/linux/netfilter*
9547 F:      include/uapi/linux/netfilter/
9548 F:      net/*/netfilter.c
9549 F:      net/*/netfilter/
9550 F:      net/netfilter/
9551 F:      net/bridge/br_netfilter*.c
9552
9553 NETROM NETWORK LAYER
9554 M:      Ralf Baechle <ralf@linux-mips.org>
9555 L:      linux-hams@vger.kernel.org
9556 W:      http://www.linux-ax25.org/
9557 S:      Maintained
9558 F:      include/net/netrom.h
9559 F:      include/uapi/linux/netrom.h
9560 F:      net/netrom/
9561
9562 NETRONOME ETHERNET DRIVERS
9563 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9564 L:      oss-drivers@netronome.com
9565 S:      Maintained
9566 F:      drivers/net/ethernet/netronome/
9567
9568 NETWORK BLOCK DEVICE (NBD)
9569 M:      Josef Bacik <jbacik@fb.com>
9570 S:      Maintained
9571 L:      linux-block@vger.kernel.org
9572 L:      nbd@other.debian.org
9573 F:      Documentation/blockdev/nbd.txt
9574 F:      drivers/block/nbd.c
9575 F:      include/uapi/linux/nbd.h
9576
9577 NETWORK DROP MONITOR
9578 M:      Neil Horman <nhorman@tuxdriver.com>
9579 L:      netdev@vger.kernel.org
9580 S:      Maintained
9581 W:      https://fedorahosted.org/dropwatch/
9582 F:      net/core/drop_monitor.c
9583
9584 NETWORKING DRIVERS
9585 L:      netdev@vger.kernel.org
9586 W:      http://www.linuxfoundation.org/en/Net
9587 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9590 S:      Odd Fixes
9591 F:      Documentation/devicetree/bindings/net/
9592 F:      drivers/net/
9593 F:      include/linux/if_*
9594 F:      include/linux/netdevice.h
9595 F:      include/linux/etherdevice.h
9596 F:      include/linux/fcdevice.h
9597 F:      include/linux/fddidevice.h
9598 F:      include/linux/hippidevice.h
9599 F:      include/linux/inetdevice.h
9600 F:      include/uapi/linux/if_*
9601 F:      include/uapi/linux/netdevice.h
9602
9603 NETWORKING DRIVERS (WIRELESS)
9604 M:      Kalle Valo <kvalo@codeaurora.org>
9605 L:      linux-wireless@vger.kernel.org
9606 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9609 S:      Maintained
9610 F:      Documentation/devicetree/bindings/net/wireless/
9611 F:      drivers/net/wireless/
9612
9613 NETWORKING [DSA]
9614 M:      Andrew Lunn <andrew@lunn.ch>
9615 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9616 M:      Florian Fainelli <f.fainelli@gmail.com>
9617 S:      Maintained
9618 F:      net/dsa/
9619 F:      include/net/dsa.h
9620 F:      include/linux/dsa/
9621 F:      drivers/net/dsa/
9622
9623 NETWORKING [GENERAL]
9624 M:      "David S. Miller" <davem@davemloft.net>
9625 L:      netdev@vger.kernel.org
9626 W:      http://www.linuxfoundation.org/en/Net
9627 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9630 B:      mailto:netdev@vger.kernel.org
9631 S:      Maintained
9632 F:      net/
9633 F:      include/net/
9634 F:      include/linux/in.h
9635 F:      include/linux/net.h
9636 F:      include/linux/netdevice.h
9637 F:      include/uapi/linux/in.h
9638 F:      include/uapi/linux/net.h
9639 F:      include/uapi/linux/netdevice.h
9640 F:      include/uapi/linux/net_namespace.h
9641 F:      tools/testing/selftests/net/
9642 F:      lib/net_utils.c
9643 F:      lib/random32.c
9644
9645 NETWORKING [IPSEC]
9646 M:      Steffen Klassert <steffen.klassert@secunet.com>
9647 M:      Herbert Xu <herbert@gondor.apana.org.au>
9648 M:      "David S. Miller" <davem@davemloft.net>
9649 L:      netdev@vger.kernel.org
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9652 S:      Maintained
9653 F:      net/core/flow.c
9654 F:      net/xfrm/
9655 F:      net/key/
9656 F:      net/ipv4/xfrm*
9657 F:      net/ipv4/esp4*
9658 F:      net/ipv4/ah4.c
9659 F:      net/ipv4/ipcomp.c
9660 F:      net/ipv4/ip_vti.c
9661 F:      net/ipv6/xfrm*
9662 F:      net/ipv6/esp6*
9663 F:      net/ipv6/ah6.c
9664 F:      net/ipv6/ipcomp6.c
9665 F:      net/ipv6/ip6_vti.c
9666 F:      include/uapi/linux/xfrm.h
9667 F:      include/net/xfrm.h
9668
9669 NETWORKING [IPv4/IPv6]
9670 M:      "David S. Miller" <davem@davemloft.net>
9671 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9672 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9673 L:      netdev@vger.kernel.org
9674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9675 S:      Maintained
9676 F:      net/ipv4/
9677 F:      net/ipv6/
9678 F:      include/net/ip*
9679 F:      arch/x86/net/*
9680
9681 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
9682 M:      Paul Moore <paul@paul-moore.com>
9683 W:      https://github.com/netlabel
9684 L:      netdev@vger.kernel.org
9685 L:      linux-security-module@vger.kernel.org
9686 S:      Maintained
9687 F:      Documentation/netlabel/
9688 F:      include/net/calipso.h
9689 F:      include/net/cipso_ipv4.h
9690 F:      include/net/netlabel.h
9691 F:      include/uapi/linux/netfilter/xt_SECMARK.h
9692 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
9693 F:      net/netlabel/
9694 F:      net/ipv4/cipso_ipv4.c
9695 F:      net/ipv6/calipso.c
9696 F:      net/netfilter/xt_CONNSECMARK.c
9697 F:      net/netfilter/xt_SECMARK.c
9698
9699 NETWORKING [TLS]
9700 M:      Ilya Lesokhin <ilyal@mellanox.com>
9701 M:      Aviad Yehezkel <aviadye@mellanox.com>
9702 M:      Dave Watson <davejwatson@fb.com>
9703 L:      netdev@vger.kernel.org
9704 S:      Maintained
9705 F:      net/tls/*
9706 F:      include/uapi/linux/tls.h
9707 F:      include/net/tls.h
9708
9709 NETWORKING [WIRELESS]
9710 L:      linux-wireless@vger.kernel.org
9711 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9712
9713 NETDEVSIM
9714 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9715 S:      Maintained
9716 F:      drivers/net/netdevsim/*
9717
9718 NETXEN (1/10) GbE SUPPORT
9719 M:      Manish Chopra <manish.chopra@cavium.com>
9720 M:      Rahul Verma <rahul.verma@cavium.com>
9721 M:      Dept-GELinuxNICDev@cavium.com
9722 L:      netdev@vger.kernel.org
9723 S:      Supported
9724 F:      drivers/net/ethernet/qlogic/netxen/
9725
9726 NFC SUBSYSTEM
9727 M:      Samuel Ortiz <sameo@linux.intel.com>
9728 L:      linux-wireless@vger.kernel.org
9729 L:      linux-nfc@lists.01.org (subscribers-only)
9730 S:      Supported
9731 F:      net/nfc/
9732 F:      include/net/nfc/
9733 F:      include/uapi/linux/nfc.h
9734 F:      drivers/nfc/
9735 F:      include/linux/platform_data/nfcmrvl.h
9736 F:      include/linux/platform_data/nxp-nci.h
9737 F:      Documentation/devicetree/bindings/net/nfc/
9738
9739 NFS, SUNRPC, AND LOCKD CLIENTS
9740 M:      Trond Myklebust <trond.myklebust@primarydata.com>
9741 M:      Anna Schumaker <anna.schumaker@netapp.com>
9742 L:      linux-nfs@vger.kernel.org
9743 W:      http://client.linux-nfs.org
9744 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9745 S:      Maintained
9746 F:      fs/lockd/
9747 F:      fs/nfs/
9748 F:      fs/nfs_common/
9749 F:      net/sunrpc/
9750 F:      include/linux/lockd/
9751 F:      include/linux/nfs*
9752 F:      include/linux/sunrpc/
9753 F:      include/uapi/linux/nfs*
9754 F:      include/uapi/linux/sunrpc/
9755
9756 NILFS2 FILESYSTEM
9757 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9758 L:      linux-nilfs@vger.kernel.org
9759 W:      https://nilfs.sourceforge.io/
9760 W:      https://nilfs.osdn.jp/
9761 T:      git git://github.com/konis/nilfs2.git
9762 S:      Supported
9763 F:      Documentation/filesystems/nilfs2.txt
9764 F:      fs/nilfs2/
9765 F:      include/trace/events/nilfs2.h
9766 F:      include/uapi/linux/nilfs2_api.h
9767 F:      include/uapi/linux/nilfs2_ondisk.h
9768
9769 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9770 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9771 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9772 S:      Maintained
9773 F:      Documentation/scsi/NinjaSCSI.txt
9774 F:      drivers/scsi/pcmcia/nsp_*
9775
9776 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9777 M:      GOTO Masanori <gotom@debian.or.jp>
9778 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9779 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9780 S:      Maintained
9781 F:      Documentation/scsi/NinjaSCSI.txt
9782 F:      drivers/scsi/nsp32*
9783
9784 NIOS2 ARCHITECTURE
9785 M:      Ley Foon Tan <lftan@altera.com>
9786 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9788 S:      Maintained
9789 F:      arch/nios2/
9790
9791 NOHZ, DYNTICKS SUPPORT
9792 M:      Frederic Weisbecker <fweisbec@gmail.com>
9793 M:      Thomas Gleixner <tglx@linutronix.de>
9794 M:      Ingo Molnar <mingo@kernel.org>
9795 L:      linux-kernel@vger.kernel.org
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9797 S:      Maintained
9798 F:      kernel/time/tick*.*
9799 F:      include/linux/tick.h
9800 F:      include/linux/sched/nohz.h
9801
9802 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9803 M:      Pavel Machek <pavel@ucw.cz>
9804 M:      Sakari Ailus <sakari.ailus@iki.fi>
9805 L:      linux-media@vger.kernel.org
9806 S:      Maintained
9807 F:      drivers/media/i2c/et8ek8
9808 F:      drivers/media/i2c/ad5820.c
9809
9810 NOKIA N900 POWER SUPPLY DRIVERS
9811 R:      Pali Rohár <pali.rohar@gmail.com>
9812 F:      include/linux/power/bq2415x_charger.h
9813 F:      include/linux/power/bq27xxx_battery.h
9814 F:      include/linux/power/isp1704_charger.h
9815 F:      drivers/power/supply/bq2415x_charger.c
9816 F:      drivers/power/supply/bq27xxx_battery.c
9817 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9818 F:      drivers/power/supply/isp1704_charger.c
9819 F:      drivers/power/supply/rx51_battery.c
9820
9821 NTB AMD DRIVER
9822 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9823 L:      linux-ntb@googlegroups.com
9824 S:      Supported
9825 F:      drivers/ntb/hw/amd/
9826
9827 NTB DRIVER CORE
9828 M:      Jon Mason <jdmason@kudzu.us>
9829 M:      Dave Jiang <dave.jiang@intel.com>
9830 M:      Allen Hubbe <allenbh@gmail.com>
9831 L:      linux-ntb@googlegroups.com
9832 S:      Supported
9833 W:      https://github.com/jonmason/ntb/wiki
9834 T:      git git://github.com/jonmason/ntb.git
9835 F:      drivers/ntb/
9836 F:      drivers/net/ntb_netdev.c
9837 F:      include/linux/ntb.h
9838 F:      include/linux/ntb_transport.h
9839 F:      tools/testing/selftests/ntb/
9840
9841 NTB IDT DRIVER
9842 M:      Serge Semin <fancer.lancer@gmail.com>
9843 L:      linux-ntb@googlegroups.com
9844 S:      Supported
9845 F:      drivers/ntb/hw/idt/
9846
9847 NTB INTEL DRIVER
9848 M:      Dave Jiang <dave.jiang@intel.com>
9849 L:      linux-ntb@googlegroups.com
9850 S:      Supported
9851 W:      https://github.com/davejiang/linux/wiki
9852 T:      git https://github.com/davejiang/linux.git
9853 F:      drivers/ntb/hw/intel/
9854
9855 NTFS FILESYSTEM
9856 M:      Anton Altaparmakov <anton@tuxera.com>
9857 L:      linux-ntfs-dev@lists.sourceforge.net
9858 W:      http://www.tuxera.com/
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9860 S:      Supported
9861 F:      Documentation/filesystems/ntfs.txt
9862 F:      fs/ntfs/
9863
9864 NUBUS SUBSYSTEM
9865 M:      Finn Thain <fthain@telegraphics.com.au>
9866 L:      linux-m68k@lists.linux-m68k.org
9867 S:      Maintained
9868 F:      arch/*/include/asm/nubus.h
9869 F:      drivers/nubus/
9870 F:      include/linux/nubus.h
9871 F:      include/uapi/linux/nubus.h
9872
9873 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9874 M:      Antonino Daplas <adaplas@gmail.com>
9875 L:      linux-fbdev@vger.kernel.org
9876 S:      Maintained
9877 F:      drivers/video/fbdev/riva/
9878 F:      drivers/video/fbdev/nvidia/
9879
9880 NVM EXPRESS DRIVER
9881 M:      Keith Busch <keith.busch@intel.com>
9882 M:      Jens Axboe <axboe@fb.com>
9883 M:      Christoph Hellwig <hch@lst.de>
9884 M:      Sagi Grimberg <sagi@grimberg.me>
9885 L:      linux-nvme@lists.infradead.org
9886 T:      git://git.infradead.org/nvme.git
9887 W:      http://git.infradead.org/nvme.git
9888 S:      Supported
9889 F:      drivers/nvme/host/
9890 F:      include/linux/nvme.h
9891 F:      include/uapi/linux/nvme_ioctl.h
9892
9893 NVM EXPRESS FC TRANSPORT DRIVERS
9894 M:      James Smart <james.smart@broadcom.com>
9895 L:      linux-nvme@lists.infradead.org
9896 S:      Supported
9897 F:      include/linux/nvme-fc.h
9898 F:      include/linux/nvme-fc-driver.h
9899 F:      drivers/nvme/host/fc.c
9900 F:      drivers/nvme/target/fc.c
9901 F:      drivers/nvme/target/fcloop.c
9902
9903 NVM EXPRESS TARGET DRIVER
9904 M:      Christoph Hellwig <hch@lst.de>
9905 M:      Sagi Grimberg <sagi@grimberg.me>
9906 L:      linux-nvme@lists.infradead.org
9907 T:      git://git.infradead.org/nvme.git
9908 W:      http://git.infradead.org/nvme.git
9909 S:      Supported
9910 F:      drivers/nvme/target/
9911
9912 NVMEM FRAMEWORK
9913 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9914 S:      Maintained
9915 F:      drivers/nvmem/
9916 F:      Documentation/devicetree/bindings/nvmem/
9917 F:      Documentation/ABI/stable/sysfs-bus-nvmem
9918 F:      include/linux/nvmem-consumer.h
9919 F:      include/linux/nvmem-provider.h
9920
9921 NXP SGTL5000 DRIVER
9922 M:      Fabio Estevam <fabio.estevam@nxp.com>
9923 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9924 S:      Maintained
9925 F:      Documentation/devicetree/bindings/sound/sgtl5000.txt
9926 F:      sound/soc/codecs/sgtl5000*
9927
9928 NXP TDA998X DRM DRIVER
9929 M:      Russell King <linux@armlinux.org.uk>
9930 S:      Supported
9931 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9932 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9933 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9934 F:      include/drm/i2c/tda998x.h
9935
9936 NXP TFA9879 DRIVER
9937 M:      Peter Rosin <peda@axentia.se>
9938 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9939 S:      Maintained
9940 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
9941 F:      sound/soc/codecs/tfa9879*
9942
9943 NXP-NCI NFC DRIVER
9944 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
9945 R:      Charles Gorand <charles.gorand@effinnov.com>
9946 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9947 S:      Supported
9948 F:      drivers/nfc/nxp-nci
9949
9950 OBJTOOL
9951 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9952 M:      Peter Zijlstra <peterz@infradead.org>
9953 S:      Supported
9954 F:      tools/objtool/
9955
9956 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
9957 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
9958 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
9959 L:      linuxppc-dev@lists.ozlabs.org
9960 S:      Supported
9961 F:      arch/powerpc/platforms/powernv/ocxl.c
9962 F:      arch/powerpc/include/asm/pnv-ocxl.h
9963 F:      drivers/misc/ocxl/
9964 F:      include/misc/ocxl*
9965 F:      include/uapi/misc/ocxl.h
9966 F:      Documentation/accelerators/ocxl.txt
9967
9968 OMAP AUDIO SUPPORT
9969 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9970 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
9971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9972 L:      linux-omap@vger.kernel.org
9973 S:      Maintained
9974 F:      sound/soc/omap/
9975
9976 OMAP CLOCK FRAMEWORK SUPPORT
9977 M:      Paul Walmsley <paul@pwsan.com>
9978 L:      linux-omap@vger.kernel.org
9979 S:      Maintained
9980 F:      arch/arm/*omap*/*clock*
9981
9982 OMAP DEVICE TREE SUPPORT
9983 M:      Benoît Cousson <bcousson@baylibre.com>
9984 M:      Tony Lindgren <tony@atomide.com>
9985 L:      linux-omap@vger.kernel.org
9986 L:      devicetree@vger.kernel.org
9987 S:      Maintained
9988 F:      arch/arm/boot/dts/*omap*
9989 F:      arch/arm/boot/dts/*am3*
9990 F:      arch/arm/boot/dts/*am4*
9991 F:      arch/arm/boot/dts/*am5*
9992 F:      arch/arm/boot/dts/*dra7*
9993
9994 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9995 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9996 L:      linux-omap@vger.kernel.org
9997 L:      linux-fbdev@vger.kernel.org
9998 S:      Maintained
9999 F:      drivers/video/fbdev/omap2/
10000 F:      Documentation/arm/OMAP/DSS
10001
10002 OMAP FRAMEBUFFER SUPPORT
10003 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
10004 L:      linux-fbdev@vger.kernel.org
10005 L:      linux-omap@vger.kernel.org
10006 S:      Maintained
10007 F:      drivers/video/fbdev/omap/
10008
10009 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
10010 M:      Roger Quadros <rogerq@ti.com>
10011 M:      Tony Lindgren <tony@atomide.com>
10012 L:      linux-omap@vger.kernel.org
10013 S:      Maintained
10014 F:      drivers/memory/omap-gpmc.c
10015 F:      arch/arm/mach-omap2/*gpmc*
10016
10017 OMAP GPIO DRIVER
10018 M:      Grygorii Strashko <grygorii.strashko@ti.com>
10019 M:      Santosh Shilimkar <ssantosh@kernel.org>
10020 M:      Kevin Hilman <khilman@kernel.org>
10021 L:      linux-omap@vger.kernel.org
10022 S:      Maintained
10023 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
10024 F:      drivers/gpio/gpio-omap.c
10025
10026 OMAP HARDWARE SPINLOCK SUPPORT
10027 M:      Ohad Ben-Cohen <ohad@wizery.com>
10028 L:      linux-omap@vger.kernel.org
10029 S:      Maintained
10030 F:      drivers/hwspinlock/omap_hwspinlock.c
10031
10032 OMAP HS MMC SUPPORT
10033 L:      linux-mmc@vger.kernel.org
10034 L:      linux-omap@vger.kernel.org
10035 S:      Orphan
10036 F:      drivers/mmc/host/omap_hsmmc.c
10037
10038 OMAP HWMOD DATA
10039 M:      Paul Walmsley <paul@pwsan.com>
10040 L:      linux-omap@vger.kernel.org
10041 S:      Maintained
10042 F:      arch/arm/mach-omap2/omap_hwmod*data*
10043
10044 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
10045 M:      Benoît Cousson <bcousson@baylibre.com>
10046 L:      linux-omap@vger.kernel.org
10047 S:      Maintained
10048 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
10049
10050 OMAP HWMOD SUPPORT
10051 M:      Benoît Cousson <bcousson@baylibre.com>
10052 M:      Paul Walmsley <paul@pwsan.com>
10053 L:      linux-omap@vger.kernel.org
10054 S:      Maintained
10055 F:      arch/arm/mach-omap2/omap_hwmod.*
10056
10057 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
10058 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10059 L:      linux-media@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
10062 F:      drivers/media/platform/omap3isp/
10063 F:      drivers/staging/media/omap4iss/
10064
10065 OMAP MMC SUPPORT
10066 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
10067 L:      linux-omap@vger.kernel.org
10068 S:      Maintained
10069 F:      drivers/mmc/host/omap.c
10070
10071 OMAP POWER MANAGEMENT SUPPORT
10072 M:      Kevin Hilman <khilman@kernel.org>
10073 L:      linux-omap@vger.kernel.org
10074 S:      Maintained
10075 F:      arch/arm/*omap*/*pm*
10076 F:      drivers/cpufreq/omap-cpufreq.c
10077
10078 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
10079 M:      Rajendra Nayak <rnayak@codeaurora.org>
10080 M:      Paul Walmsley <paul@pwsan.com>
10081 L:      linux-omap@vger.kernel.org
10082 S:      Maintained
10083 F:      arch/arm/mach-omap2/prm*
10084
10085 OMAP RANDOM NUMBER GENERATOR SUPPORT
10086 M:      Deepak Saxena <dsaxena@plexity.net>
10087 S:      Maintained
10088 F:      drivers/char/hw_random/omap-rng.c
10089
10090 OMAP USB SUPPORT
10091 L:      linux-usb@vger.kernel.org
10092 L:      linux-omap@vger.kernel.org
10093 S:      Orphan
10094 F:      drivers/usb/*/*omap*
10095 F:      arch/arm/*omap*/usb*
10096
10097 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
10098 M:      Mark Jackson <mpfj@newflow.co.uk>
10099 L:      linux-omap@vger.kernel.org
10100 S:      Maintained
10101 F:      arch/arm/boot/dts/am335x-nano.dts
10102
10103 OMAP1 SUPPORT
10104 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
10105 M:      Tony Lindgren <tony@atomide.com>
10106 L:      linux-omap@vger.kernel.org
10107 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10109 S:      Maintained
10110 F:      arch/arm/mach-omap1/
10111 F:      arch/arm/plat-omap/
10112 F:      arch/arm/configs/omap1_defconfig
10113 F:      drivers/i2c/busses/i2c-omap.c
10114 F:      include/linux/i2c-omap.h
10115
10116 OMAP2+ SUPPORT
10117 M:      Tony Lindgren <tony@atomide.com>
10118 L:      linux-omap@vger.kernel.org
10119 W:      http://www.muru.com/linux/omap/
10120 W:      http://linux.omap.com/
10121 Q:      http://patchwork.kernel.org/project/linux-omap/list/
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
10123 S:      Maintained
10124 F:      arch/arm/mach-omap2/
10125 F:      arch/arm/plat-omap/
10126 F:      arch/arm/configs/omap2plus_defconfig
10127 F:      drivers/i2c/busses/i2c-omap.c
10128 F:      drivers/irqchip/irq-omap-intc.c
10129 F:      drivers/mfd/*omap*.c
10130 F:      drivers/mfd/menelaus.c
10131 F:      drivers/mfd/palmas.c
10132 F:      drivers/mfd/tps65217.c
10133 F:      drivers/mfd/tps65218.c
10134 F:      drivers/mfd/tps65910.c
10135 F:      drivers/mfd/twl-core.[ch]
10136 F:      drivers/mfd/twl4030*.c
10137 F:      drivers/mfd/twl6030*.c
10138 F:      drivers/mfd/twl6040*.c
10139 F:      drivers/regulator/palmas-regulator*.c
10140 F:      drivers/regulator/pbias-regulator.c
10141 F:      drivers/regulator/tps65217-regulator.c
10142 F:      drivers/regulator/tps65218-regulator.c
10143 F:      drivers/regulator/tps65910-regulator.c
10144 F:      drivers/regulator/twl-regulator.c
10145 F:      drivers/regulator/twl6030-regulator.c
10146 F:      include/linux/i2c-omap.h
10147
10148 ONION OMEGA2+ BOARD
10149 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10150 L:      linux-mips@linux-mips.org
10151 S:      Maintained
10152 F:      arch/mips/boot/dts/ralink/omega2p.dts
10153
10154 OMFS FILESYSTEM
10155 M:      Bob Copeland <me@bobcopeland.com>
10156 L:      linux-karma-devel@lists.sourceforge.net
10157 S:      Maintained
10158 F:      Documentation/filesystems/omfs.txt
10159 F:      fs/omfs/
10160
10161 OMNIKEY CARDMAN 4000 DRIVER
10162 M:      Harald Welte <laforge@gnumonks.org>
10163 S:      Maintained
10164 F:      drivers/char/pcmcia/cm4000_cs.c
10165 F:      include/linux/cm4000_cs.h
10166 F:      include/uapi/linux/cm4000_cs.h
10167
10168 OMNIKEY CARDMAN 4040 DRIVER
10169 M:      Harald Welte <laforge@gnumonks.org>
10170 S:      Maintained
10171 F:      drivers/char/pcmcia/cm4040_cs.*
10172
10173 OMNIVISION OV13858 SENSOR DRIVER
10174 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10175 L:      linux-media@vger.kernel.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 S:      Maintained
10178 F:      drivers/media/i2c/ov13858.c
10179
10180 OMNIVISION OV5640 SENSOR DRIVER
10181 M:      Steve Longerbeam <slongerbeam@gmail.com>
10182 L:      linux-media@vger.kernel.org
10183 T:      git git://linuxtv.org/media_tree.git
10184 S:      Maintained
10185 F:      drivers/media/i2c/ov5640.c
10186
10187 OMNIVISION OV5647 SENSOR DRIVER
10188 M:      Luis Oliveira <lolivei@synopsys.com>
10189 L:      linux-media@vger.kernel.org
10190 T:      git git://linuxtv.org/media_tree.git
10191 S:      Maintained
10192 F:      drivers/media/i2c/ov5647.c
10193
10194 OMNIVISION OV7670 SENSOR DRIVER
10195 M:      Jonathan Corbet <corbet@lwn.net>
10196 L:      linux-media@vger.kernel.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 S:      Maintained
10199 F:      drivers/media/i2c/ov7670.c
10200 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
10201
10202 OMNIVISION OV7740 SENSOR DRIVER
10203 M:      Wenyou Yang <wenyou.yang@microchip.com>
10204 L:      linux-media@vger.kernel.org
10205 T:      git git://linuxtv.org/media_tree.git
10206 S:      Maintained
10207 F:      drivers/media/i2c/ov7740.c
10208 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
10209
10210 ONENAND FLASH DRIVER
10211 M:      Kyungmin Park <kyungmin.park@samsung.com>
10212 L:      linux-mtd@lists.infradead.org
10213 S:      Maintained
10214 F:      drivers/mtd/onenand/
10215 F:      include/linux/mtd/onenand*.h
10216
10217 ONSTREAM SCSI TAPE DRIVER
10218 M:      Willem Riede <osst@riede.org>
10219 L:      osst-users@lists.sourceforge.net
10220 L:      linux-scsi@vger.kernel.org
10221 S:      Maintained
10222 F:      Documentation/scsi/osst.txt
10223 F:      drivers/scsi/osst.*
10224 F:      drivers/scsi/osst_*.h
10225 F:      drivers/scsi/st.h
10226
10227 OP-TEE DRIVER
10228 M:      Jens Wiklander <jens.wiklander@linaro.org>
10229 S:      Maintained
10230 F:      drivers/tee/optee/
10231
10232 OPA-VNIC DRIVER
10233 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
10234 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
10235 L:      linux-rdma@vger.kernel.org
10236 S:      Supported
10237 F:      drivers/infiniband/ulp/opa_vnic
10238
10239 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
10240 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
10241 L:      devicetree@vger.kernel.org
10242 S:      Maintained
10243 F:      Documentation/devicetree/dynamic-resolution-notes.txt
10244 F:      Documentation/devicetree/overlay-notes.txt
10245 F:      drivers/of/overlay.c
10246 F:      drivers/of/resolver.c
10247
10248 OPEN FIRMWARE AND FLATTENED DEVICE TREE
10249 M:      Rob Herring <robh+dt@kernel.org>
10250 M:      Frank Rowand <frowand.list@gmail.com>
10251 L:      devicetree@vger.kernel.org
10252 W:      http://www.devicetree.org/
10253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10254 S:      Maintained
10255 F:      drivers/of/
10256 F:      include/linux/of*.h
10257 F:      scripts/dtc/
10258 F:      Documentation/ABI/testing/sysfs-firmware-ofw
10259
10260 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
10261 M:      Rob Herring <robh+dt@kernel.org>
10262 M:      Mark Rutland <mark.rutland@arm.com>
10263 L:      devicetree@vger.kernel.org
10264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
10265 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
10266 S:      Maintained
10267 F:      Documentation/devicetree/
10268 F:      arch/*/boot/dts/
10269 F:      include/dt-bindings/
10270
10271 OPENCORES I2C BUS DRIVER
10272 M:      Peter Korsgaard <jacmet@sunsite.dk>
10273 L:      linux-i2c@vger.kernel.org
10274 S:      Maintained
10275 F:      Documentation/i2c/busses/i2c-ocores
10276 F:      drivers/i2c/busses/i2c-ocores.c
10277
10278 OPENRISC ARCHITECTURE
10279 M:      Jonas Bonn <jonas@southpole.se>
10280 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
10281 M:      Stafford Horne <shorne@gmail.com>
10282 T:      git git://github.com/openrisc/linux.git
10283 L:      openrisc@lists.librecores.org
10284 W:      http://openrisc.io
10285 S:      Maintained
10286 F:      Documentation/devicetree/bindings/openrisc/
10287 F:      Documentation/openrisc/
10288 F:      arch/openrisc/
10289 F:      drivers/irqchip/irq-ompic.c
10290 F:      drivers/irqchip/irq-or1k-*
10291
10292 OPENVSWITCH
10293 M:      Pravin B Shelar <pshelar@ovn.org>
10294 L:      netdev@vger.kernel.org
10295 L:      dev@openvswitch.org
10296 W:      http://openvswitch.org
10297 S:      Maintained
10298 F:      net/openvswitch/
10299 F:      include/uapi/linux/openvswitch.h
10300
10301 OPERATING PERFORMANCE POINTS (OPP)
10302 M:      Viresh Kumar <vireshk@kernel.org>
10303 M:      Nishanth Menon <nm@ti.com>
10304 M:      Stephen Boyd <sboyd@kernel.org>
10305 L:      linux-pm@vger.kernel.org
10306 S:      Maintained
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
10308 F:      drivers/opp/
10309 F:      include/linux/pm_opp.h
10310 F:      Documentation/power/opp.txt
10311 F:      Documentation/devicetree/bindings/opp/
10312
10313 OPL4 DRIVER
10314 M:      Clemens Ladisch <clemens@ladisch.de>
10315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10316 T:      git git://git.alsa-project.org/alsa-kernel.git
10317 S:      Maintained
10318 F:      sound/drivers/opl4/
10319
10320 OPROFILE
10321 M:      Robert Richter <rric@kernel.org>
10322 L:      oprofile-list@lists.sf.net
10323 S:      Maintained
10324 F:      arch/*/include/asm/oprofile*.h
10325 F:      arch/*/oprofile/
10326 F:      drivers/oprofile/
10327 F:      include/linux/oprofile.h
10328
10329 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
10330 M:      Mark Fasheh <mark@fasheh.com>
10331 M:      Joel Becker <jlbec@evilplan.org>
10332 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
10333 W:      http://ocfs2.wiki.kernel.org
10334 S:      Supported
10335 F:      Documentation/filesystems/ocfs2.txt
10336 F:      Documentation/filesystems/dlmfs.txt
10337 F:      fs/ocfs2/
10338
10339 ORANGEFS FILESYSTEM
10340 M:      Mike Marshall <hubcap@omnibond.com>
10341 R:      Martin Brandenburg <martin@omnibond.com>
10342 L:      devel@lists.orangefs.org
10343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
10344 S:      Supported
10345 F:      fs/orangefs/
10346 F:      Documentation/filesystems/orangefs.txt
10347
10348 ORINOCO DRIVER
10349 L:      linux-wireless@vger.kernel.org
10350 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
10351 W:      http://www.nongnu.org/orinoco/
10352 S:      Orphan
10353 F:      drivers/net/wireless/intersil/orinoco/
10354
10355 OSD LIBRARY and FILESYSTEM
10356 M:      Boaz Harrosh <ooo@electrozaur.com>
10357 S:      Maintained
10358 F:      drivers/scsi/osd/
10359 F:      include/scsi/osd_*
10360 F:      fs/exofs/
10361
10362 OV2659 OMNIVISION SENSOR DRIVER
10363 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10364 L:      linux-media@vger.kernel.org
10365 W:      https://linuxtv.org
10366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10367 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10368 S:      Maintained
10369 F:      drivers/media/i2c/ov2659.c
10370 F:      include/media/i2c/ov2659.h
10371
10372 OVERLAY FILESYSTEM
10373 M:      Miklos Szeredi <miklos@szeredi.hu>
10374 L:      linux-unionfs@vger.kernel.org
10375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
10376 S:      Supported
10377 F:      fs/overlayfs/
10378 F:      Documentation/filesystems/overlayfs.txt
10379
10380 P54 WIRELESS DRIVER
10381 M:      Christian Lamparter <chunkeey@googlemail.com>
10382 L:      linux-wireless@vger.kernel.org
10383 W:      http://wireless.kernel.org/en/users/Drivers/p54
10384 S:      Maintained
10385 F:      drivers/net/wireless/intersil/p54/
10386
10387 PA SEMI ETHERNET DRIVER
10388 L:      netdev@vger.kernel.org
10389 S:      Orphan
10390 F:      drivers/net/ethernet/pasemi/*
10391
10392 PA SEMI SMBUS DRIVER
10393 L:      linux-i2c@vger.kernel.org
10394 S:      Orphan
10395 F:      drivers/i2c/busses/i2c-pasemi.c
10396
10397 PADATA PARALLEL EXECUTION MECHANISM
10398 M:      Steffen Klassert <steffen.klassert@secunet.com>
10399 L:      linux-crypto@vger.kernel.org
10400 S:      Maintained
10401 F:      kernel/padata.c
10402 F:      include/linux/padata.h
10403 F:      Documentation/padata.txt
10404
10405 PANASONIC LAPTOP ACPI EXTRAS DRIVER
10406 M:      Harald Welte <laforge@gnumonks.org>
10407 L:      platform-driver-x86@vger.kernel.org
10408 S:      Maintained
10409 F:      drivers/platform/x86/panasonic-laptop.c
10410
10411 PANASONIC MN10300/AM33/AM34 PORT
10412 M:      David Howells <dhowells@redhat.com>
10413 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
10414 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
10415 S:      Maintained
10416 F:      Documentation/mn10300/
10417 F:      arch/mn10300/
10418
10419 PARALLEL LCD/KEYPAD PANEL DRIVER
10420 M:      Willy Tarreau <willy@haproxy.com>
10421 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
10422 S:      Odd Fixes
10423 F:      Documentation/misc-devices/lcd-panel-cgram.txt
10424 F:      drivers/misc/panel.c
10425
10426 PARALLEL PORT SUBSYSTEM
10427 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10428 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
10429 L:      linux-parport@lists.infradead.org (subscribers-only)
10430 S:      Maintained
10431 F:      drivers/parport/
10432 F:      include/linux/parport*.h
10433 F:      drivers/char/ppdev.c
10434 F:      include/uapi/linux/ppdev.h
10435 F:      Documentation/parport*.txt
10436
10437 PARAVIRT_OPS INTERFACE
10438 M:      Juergen Gross <jgross@suse.com>
10439 M:      Alok Kataria <akataria@vmware.com>
10440 L:      virtualization@lists.linux-foundation.org
10441 S:      Supported
10442 F:      Documentation/virtual/paravirt_ops.txt
10443 F:      arch/*/kernel/paravirt*
10444 F:      arch/*/include/asm/paravirt*.h
10445 F:      include/linux/hypervisor.h
10446
10447 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
10448 M:      Tim Waugh <tim@cyberelk.net>
10449 L:      linux-parport@lists.infradead.org (subscribers-only)
10450 S:      Maintained
10451 F:      Documentation/blockdev/paride.txt
10452 F:      drivers/block/paride/
10453
10454 PARISC ARCHITECTURE
10455 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
10456 M:      Helge Deller <deller@gmx.de>
10457 L:      linux-parisc@vger.kernel.org
10458 W:      http://www.parisc-linux.org/
10459 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
10460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
10461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
10462 S:      Maintained
10463 F:      arch/parisc/
10464 F:      Documentation/parisc/
10465 F:      drivers/parisc/
10466 F:      drivers/char/agp/parisc-agp.c
10467 F:      drivers/input/serio/gscps2.c
10468 F:      drivers/parport/parport_gsc.*
10469 F:      drivers/tty/serial/8250/8250_gsc.c
10470 F:      drivers/video/fbdev/sti*
10471 F:      drivers/video/console/sti*
10472 F:      drivers/video/logo/logo_parisc*
10473
10474 PARMAN
10475 M:      Jiri Pirko <jiri@mellanox.com>
10476 L:      netdev@vger.kernel.org
10477 S:      Supported
10478 F:      lib/parman.c
10479 F:      lib/test_parman.c
10480 F:      include/linux/parman.h
10481
10482 PC87360 HARDWARE MONITORING DRIVER
10483 M:      Jim Cromie <jim.cromie@gmail.com>
10484 L:      linux-hwmon@vger.kernel.org
10485 S:      Maintained
10486 F:      Documentation/hwmon/pc87360
10487 F:      drivers/hwmon/pc87360.c
10488
10489 PC8736x GPIO DRIVER
10490 M:      Jim Cromie <jim.cromie@gmail.com>
10491 S:      Maintained
10492 F:      drivers/char/pc8736x_gpio.c
10493
10494 PC87427 HARDWARE MONITORING DRIVER
10495 M:      Jean Delvare <jdelvare@suse.com>
10496 L:      linux-hwmon@vger.kernel.org
10497 S:      Maintained
10498 F:      Documentation/hwmon/pc87427
10499 F:      drivers/hwmon/pc87427.c
10500
10501 PCA9532 LED DRIVER
10502 M:      Riku Voipio <riku.voipio@iki.fi>
10503 S:      Maintained
10504 F:      drivers/leds/leds-pca9532.c
10505 F:      include/linux/leds-pca9532.h
10506
10507 PCA9541 I2C BUS MASTER SELECTOR DRIVER
10508 M:      Guenter Roeck <linux@roeck-us.net>
10509 L:      linux-i2c@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
10512
10513 PCDP - PRIMARY CONSOLE AND DEBUG PORT
10514 M:      Khalid Aziz <khalid@gonehiking.org>
10515 S:      Maintained
10516 F:      drivers/firmware/pcdp.*
10517
10518 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10519 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10520 L:      linux-pci@vger.kernel.org
10521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10522 S:      Maintained
10523 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
10524 F:      drivers/pci/host/pci-aardvark.c
10525
10526 PCI DRIVER FOR ALTERA PCIE IP
10527 M:      Ley Foon Tan <lftan@altera.com>
10528 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10529 L:      linux-pci@vger.kernel.org
10530 S:      Supported
10531 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
10532 F:      drivers/pci/host/pcie-altera.c
10533
10534 PCI DRIVER FOR APPLIEDMICRO XGENE
10535 M:      Tanmay Inamdar <tinamdar@apm.com>
10536 L:      linux-pci@vger.kernel.org
10537 L:      linux-arm-kernel@lists.infradead.org
10538 S:      Maintained
10539 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
10540 F:      drivers/pci/host/pci-xgene.c
10541
10542 PCI DRIVER FOR ARM VERSATILE PLATFORM
10543 M:      Rob Herring <robh@kernel.org>
10544 L:      linux-pci@vger.kernel.org
10545 L:      linux-arm-kernel@lists.infradead.org
10546 S:      Maintained
10547 F:      Documentation/devicetree/bindings/pci/versatile.txt
10548 F:      drivers/pci/host/pci-versatile.c
10549
10550 PCI DRIVER FOR ARMADA 8K
10551 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10552 L:      linux-pci@vger.kernel.org
10553 L:      linux-arm-kernel@lists.infradead.org
10554 S:      Maintained
10555 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
10556 F:      drivers/pci/dwc/pcie-armada8k.c
10557
10558 PCI DRIVER FOR CADENCE PCIE IP
10559 M:      Alan Douglas <adouglas@cadence.com>
10560 L:      linux-pci@vger.kernel.org
10561 S:      Maintained
10562 F:      Documentation/devicetree/bindings/pci/cdns,*.txt
10563 F:      drivers/pci/cadence/pcie-cadence*
10564
10565 PCI DRIVER FOR FREESCALE LAYERSCAPE
10566 M:      Minghuan Lian <minghuan.Lian@freescale.com>
10567 M:      Mingkai Hu <mingkai.hu@freescale.com>
10568 M:      Roy Zang <tie-fei.zang@freescale.com>
10569 L:      linuxppc-dev@lists.ozlabs.org
10570 L:      linux-pci@vger.kernel.org
10571 L:      linux-arm-kernel@lists.infradead.org
10572 S:      Maintained
10573 F:      drivers/pci/dwc/*layerscape*
10574
10575 PCI DRIVER FOR GENERIC OF HOSTS
10576 M:      Will Deacon <will.deacon@arm.com>
10577 L:      linux-pci@vger.kernel.org
10578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10579 S:      Maintained
10580 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
10581 F:      drivers/pci/host/pci-host-common.c
10582 F:      drivers/pci/host/pci-host-generic.c
10583
10584 PCI DRIVER FOR IMX6
10585 M:      Richard Zhu <hongxing.zhu@nxp.com>
10586 M:      Lucas Stach <l.stach@pengutronix.de>
10587 L:      linux-pci@vger.kernel.org
10588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10589 S:      Maintained
10590 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10591 F:      drivers/pci/dwc/*imx6*
10592
10593 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10594 M:      Keith Busch <keith.busch@intel.com>
10595 M:      Jonathan Derrick <jonathan.derrick@intel.com>
10596 L:      linux-pci@vger.kernel.org
10597 S:      Supported
10598 F:      drivers/pci/host/vmd.c
10599
10600 PCI DRIVER FOR MICROSEMI SWITCHTEC
10601 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10602 M:      Logan Gunthorpe <logang@deltatee.com>
10603 L:      linux-pci@vger.kernel.org
10604 S:      Maintained
10605 F:      Documentation/switchtec.txt
10606 F:      Documentation/ABI/testing/sysfs-class-switchtec
10607 F:      drivers/pci/switch/switchtec*
10608 F:      include/uapi/linux/switchtec_ioctl.h
10609 F:      include/linux/switchtec.h
10610 F:      drivers/ntb/hw/mscc/
10611
10612 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10613 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10614 M:      Jason Cooper <jason@lakedaemon.net>
10615 L:      linux-pci@vger.kernel.org
10616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10617 S:      Maintained
10618 F:      drivers/pci/host/*mvebu*
10619
10620 PCI DRIVER FOR NVIDIA TEGRA
10621 M:      Thierry Reding <thierry.reding@gmail.com>
10622 L:      linux-tegra@vger.kernel.org
10623 L:      linux-pci@vger.kernel.org
10624 S:      Supported
10625 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10626 F:      drivers/pci/host/pci-tegra.c
10627
10628 PCI DRIVER FOR RENESAS R-CAR
10629 M:      Simon Horman <horms@verge.net.au>
10630 L:      linux-pci@vger.kernel.org
10631 L:      linux-renesas-soc@vger.kernel.org
10632 S:      Maintained
10633 F:      drivers/pci/host/*rcar*
10634
10635 PCI DRIVER FOR SAMSUNG EXYNOS
10636 M:      Jingoo Han <jingoohan1@gmail.com>
10637 L:      linux-pci@vger.kernel.org
10638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10639 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10640 S:      Maintained
10641 F:      drivers/pci/dwc/pci-exynos.c
10642
10643 PCI DRIVER FOR SYNOPSYS DESIGNWARE
10644 M:      Jingoo Han <jingoohan1@gmail.com>
10645 M:      Joao Pinto <Joao.Pinto@synopsys.com>
10646 L:      linux-pci@vger.kernel.org
10647 S:      Maintained
10648 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
10649 F:      drivers/pci/dwc/*designware*
10650
10651 PCI DRIVER FOR TI DRA7XX
10652 M:      Kishon Vijay Abraham I <kishon@ti.com>
10653 L:      linux-omap@vger.kernel.org
10654 L:      linux-pci@vger.kernel.org
10655 S:      Supported
10656 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
10657 F:      drivers/pci/dwc/pci-dra7xx.c
10658
10659 PCI DRIVER FOR TI KEYSTONE
10660 M:      Murali Karicheri <m-karicheri2@ti.com>
10661 L:      linux-pci@vger.kernel.org
10662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10663 S:      Maintained
10664 F:      drivers/pci/dwc/*keystone*
10665
10666 PCI ENDPOINT SUBSYSTEM
10667 M:      Kishon Vijay Abraham I <kishon@ti.com>
10668 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10669 L:      linux-pci@vger.kernel.org
10670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10671 S:      Supported
10672 F:      drivers/pci/endpoint/
10673 F:      drivers/misc/pci_endpoint_test.c
10674 F:      tools/pci/
10675
10676 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
10677 M:      Russell Currey <ruscur@russell.cc>
10678 L:      linuxppc-dev@lists.ozlabs.org
10679 S:      Supported
10680 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
10681 F:      arch/powerpc/kernel/eeh*.c
10682 F:      arch/powerpc/platforms/*/eeh*.c
10683 F:      arch/powerpc/include/*/eeh*.h
10684
10685 PCI ERROR RECOVERY
10686 M:      Linas Vepstas <linasvepstas@gmail.com>
10687 L:      linux-pci@vger.kernel.org
10688 S:      Supported
10689 F:      Documentation/PCI/pci-error-recovery.txt
10690
10691 PCI MSI DRIVER FOR ALTERA MSI IP
10692 M:      Ley Foon Tan <lftan@altera.com>
10693 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10694 L:      linux-pci@vger.kernel.org
10695 S:      Supported
10696 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10697 F:      drivers/pci/host/pcie-altera-msi.c
10698
10699 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10700 M:      Duc Dang <dhdang@apm.com>
10701 L:      linux-pci@vger.kernel.org
10702 L:      linux-arm-kernel@lists.infradead.org
10703 S:      Maintained
10704 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10705 F:      drivers/pci/host/pci-xgene-msi.c
10706
10707 PCI SUBSYSTEM
10708 M:      Bjorn Helgaas <bhelgaas@google.com>
10709 L:      linux-pci@vger.kernel.org
10710 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
10712 S:      Supported
10713 F:      Documentation/devicetree/bindings/pci/
10714 F:      Documentation/PCI/
10715 F:      drivers/acpi/pci*
10716 F:      drivers/pci/
10717 F:      include/asm-generic/pci*
10718 F:      include/linux/pci*
10719 F:      include/uapi/linux/pci*
10720 F:      lib/pci*
10721 F:      arch/x86/pci/
10722 F:      arch/x86/kernel/quirks.c
10723
10724 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
10725 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10726 L:      linux-pci@vger.kernel.org
10727 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
10728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
10729 S:      Supported
10730 F:      drivers/pci/host/
10731 F:      drivers/pci/dwc/
10732
10733 PCIE DRIVER FOR AXIS ARTPEC
10734 M:      Niklas Cassel <niklas.cassel@axis.com>
10735 M:      Jesper Nilsson <jesper.nilsson@axis.com>
10736 L:      linux-arm-kernel@axis.com
10737 L:      linux-pci@vger.kernel.org
10738 S:      Maintained
10739 F:      Documentation/devicetree/bindings/pci/axis,artpec*
10740 F:      drivers/pci/dwc/*artpec*
10741
10742 PCIE DRIVER FOR CAVIUM THUNDERX
10743 M:      David Daney <david.daney@cavium.com>
10744 L:      linux-pci@vger.kernel.org
10745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10746 S:      Supported
10747 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
10748 F:      drivers/pci/host/pci-thunder-*
10749
10750 PCIE DRIVER FOR HISILICON
10751 M:      Zhou Wang <wangzhou1@hisilicon.com>
10752 L:      linux-pci@vger.kernel.org
10753 S:      Maintained
10754 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10755 F:      drivers/pci/dwc/pcie-hisi.c
10756
10757 PCIE DRIVER FOR HISILICON KIRIN
10758 M:      Xiaowei Song <songxiaowei@hisilicon.com>
10759 M:      Binghui Wang <wangbinghui@hisilicon.com>
10760 L:      linux-pci@vger.kernel.org
10761 S:      Maintained
10762 F:      Documentation/devicetree/bindings/pci/pcie-kirin.txt
10763 F:      drivers/pci/dwc/pcie-kirin.c
10764
10765 PCIE DRIVER FOR HISILICON STB
10766 M:      Jianguo Sun <sunjianguo1@huawei.com>
10767 M:      Shawn Guo <shawn.guo@linaro.org>
10768 L:      linux-pci@vger.kernel.org
10769 S:      Maintained
10770 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
10771 F:      drivers/pci/dwc/pcie-histb.c
10772
10773 PCIE DRIVER FOR MEDIATEK
10774 M:      Ryder Lee <ryder.lee@mediatek.com>
10775 L:      linux-pci@vger.kernel.org
10776 L:      linux-mediatek@lists.infradead.org
10777 S:      Supported
10778 F:      Documentation/devicetree/bindings/pci/mediatek*
10779 F:      drivers/pci/host/*mediatek*
10780
10781 PCIE DRIVER FOR QUALCOMM MSM
10782 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
10783 L:      linux-pci@vger.kernel.org
10784 L:      linux-arm-msm@vger.kernel.org
10785 S:      Maintained
10786 F:      drivers/pci/dwc/*qcom*
10787
10788 PCIE DRIVER FOR ROCKCHIP
10789 M:      Shawn Lin <shawn.lin@rock-chips.com>
10790 L:      linux-pci@vger.kernel.org
10791 L:      linux-rockchip@lists.infradead.org
10792 S:      Maintained
10793 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10794 F:      drivers/pci/host/pcie-rockchip.c
10795
10796 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
10797 M:      Linus Walleij <linus.walleij@linaro.org>
10798 L:      linux-pci@vger.kernel.org
10799 S:      Maintained
10800 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
10801 F:      drivers/pci/host/pci-v3-semi.c
10802
10803 PCIE DRIVER FOR ST SPEAR13XX
10804 M:      Pratyush Anand <pratyush.anand@gmail.com>
10805 L:      linux-pci@vger.kernel.org
10806 S:      Maintained
10807 F:      drivers/pci/dwc/*spear*
10808
10809 PCMCIA SUBSYSTEM
10810 M:      Dominik Brodowski <linux@dominikbrodowski.net>
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10812 S:      Odd Fixes
10813 F:      Documentation/pcmcia/
10814 F:      tools/pcmcia/
10815 F:      drivers/pcmcia/
10816 F:      include/pcmcia/
10817
10818 PCNET32 NETWORK DRIVER
10819 M:      Don Fry <pcnet32@frontier.com>
10820 L:      netdev@vger.kernel.org
10821 S:      Maintained
10822 F:      drivers/net/ethernet/amd/pcnet32.c
10823
10824 PCRYPT PARALLEL CRYPTO ENGINE
10825 M:      Steffen Klassert <steffen.klassert@secunet.com>
10826 L:      linux-crypto@vger.kernel.org
10827 S:      Maintained
10828 F:      crypto/pcrypt.c
10829 F:      include/crypto/pcrypt.h
10830
10831 PEAQ WMI HOTKEYS DRIVER
10832 M:      Hans de Goede <hdegoede@redhat.com>
10833 L:      platform-driver-x86@vger.kernel.org
10834 S:      Maintained
10835 F:      drivers/platform/x86/peaq-wmi.c
10836
10837 PER-CPU MEMORY ALLOCATOR
10838 M:      Tejun Heo <tj@kernel.org>
10839 M:      Christoph Lameter <cl@linux.com>
10840 M:      Dennis Zhou <dennisszhou@gmail.com>
10841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10842 S:      Maintained
10843 F:      include/linux/percpu*.h
10844 F:      mm/percpu*.c
10845 F:      arch/*/include/asm/percpu.h
10846
10847 PER-TASK DELAY ACCOUNTING
10848 M:      Balbir Singh <bsingharora@gmail.com>
10849 S:      Maintained
10850 F:      include/linux/delayacct.h
10851 F:      kernel/delayacct.c
10852
10853 PERFORMANCE EVENTS SUBSYSTEM
10854 M:      Peter Zijlstra <peterz@infradead.org>
10855 M:      Ingo Molnar <mingo@redhat.com>
10856 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
10857 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10858 R:      Jiri Olsa <jolsa@redhat.com>
10859 R:      Namhyung Kim <namhyung@kernel.org>
10860 L:      linux-kernel@vger.kernel.org
10861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10862 S:      Supported
10863 F:      kernel/events/*
10864 F:      include/linux/perf_event.h
10865 F:      include/uapi/linux/perf_event.h
10866 F:      arch/*/kernel/perf_event*.c
10867 F:      arch/*/kernel/*/perf_event*.c
10868 F:      arch/*/kernel/*/*/perf_event*.c
10869 F:      arch/*/include/asm/perf_event.h
10870 F:      arch/*/kernel/perf_callchain.c
10871 F:      arch/*/events/*
10872 F:      tools/perf/
10873
10874 PERSONALITY HANDLING
10875 M:      Christoph Hellwig <hch@infradead.org>
10876 L:      linux-abi-devel@lists.sourceforge.net
10877 S:      Maintained
10878 F:      include/linux/personality.h
10879 F:      include/uapi/linux/personality.h
10880
10881 PHONET PROTOCOL
10882 M:      Remi Denis-Courmont <courmisch@gmail.com>
10883 S:      Supported
10884 F:      Documentation/networking/phonet.txt
10885 F:      include/linux/phonet.h
10886 F:      include/net/phonet/
10887 F:      include/uapi/linux/phonet.h
10888 F:      net/phonet/
10889
10890 PHRAM MTD DRIVER
10891 M:      Joern Engel <joern@lazybastard.org>
10892 L:      linux-mtd@lists.infradead.org
10893 S:      Maintained
10894 F:      drivers/mtd/devices/phram.c
10895
10896 PICOLCD HID DRIVER
10897 M:      Bruno Prémont <bonbons@linux-vserver.org>
10898 L:      linux-input@vger.kernel.org
10899 S:      Maintained
10900 F:      drivers/hid/hid-picolcd*
10901
10902 PICOXCELL SUPPORT
10903 M:      Jamie Iles <jamie@jamieiles.com>
10904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10905 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10906 S:      Supported
10907 F:      arch/arm/boot/dts/picoxcell*
10908 F:      arch/arm/mach-picoxcell/
10909 F:      drivers/crypto/picoxcell*
10910
10911 PIN CONTROL SUBSYSTEM
10912 M:      Linus Walleij <linus.walleij@linaro.org>
10913 L:      linux-gpio@vger.kernel.org
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10915 S:      Maintained
10916 F:      Documentation/devicetree/bindings/pinctrl/
10917 F:      Documentation/driver-api/pinctl.rst
10918 F:      drivers/pinctrl/
10919 F:      include/linux/pinctrl/
10920
10921 PIN CONTROLLER - ATMEL AT91
10922 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10924 S:      Maintained
10925 F:      drivers/pinctrl/pinctrl-at91.*
10926
10927 PIN CONTROLLER - ATMEL AT91 PIO4
10928 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10930 L:      linux-gpio@vger.kernel.org
10931 S:      Supported
10932 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10933
10934 PIN CONTROLLER - FREESCALE
10935 M:      Dong Aisheng <aisheng.dong@nxp.com>
10936 M:      Fabio Estevam <festevam@gmail.com>
10937 M:      Shawn Guo <shawnguo@kernel.org>
10938 M:      Stefan Agner <stefan@agner.ch>
10939 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10940 L:      linux-gpio@vger.kernel.org
10941 S:      Maintained
10942 F:      drivers/pinctrl/freescale/
10943 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
10944
10945 PIN CONTROLLER - INTEL
10946 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10947 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10948 S:      Maintained
10949 F:      drivers/pinctrl/intel/
10950
10951 PIN CONTROLLER - MEDIATEK
10952 M:      Sean Wang <sean.wang@mediatek.com>
10953 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
10954 S:      Maintained
10955 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt65xx.txt
10956 F:      Documentation/devicetree/bindings/pinctrl/pinctrl-mt7622.txt
10957 F:      drivers/pinctrl/mediatek/pinctrl-mtk-common.*
10958 F:      drivers/pinctrl/mediatek/pinctrl-mt2701.c
10959 F:      drivers/pinctrl/mediatek/pinctrl-mt7622.c
10960
10961 PIN CONTROLLER - QUALCOMM
10962 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10963 S:      Maintained
10964 L:      linux-arm-msm@vger.kernel.org
10965 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10966 F:      drivers/pinctrl/qcom/
10967
10968 PIN CONTROLLER - RENESAS
10969 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10970 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10971 L:      linux-renesas-soc@vger.kernel.org
10972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc
10973 S:      Maintained
10974 F:      drivers/pinctrl/sh-pfc/
10975
10976 PIN CONTROLLER - SAMSUNG
10977 M:      Tomasz Figa <tomasz.figa@gmail.com>
10978 M:      Krzysztof Kozlowski <krzk@kernel.org>
10979 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10981 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10982 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10984 S:      Maintained
10985 F:      drivers/pinctrl/samsung/
10986 F:      include/dt-bindings/pinctrl/samsung.h
10987 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10988
10989 PIN CONTROLLER - SINGLE
10990 M:      Tony Lindgren <tony@atomide.com>
10991 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
10992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10993 L:      linux-omap@vger.kernel.org
10994 S:      Maintained
10995 F:      drivers/pinctrl/pinctrl-single.c
10996
10997 PIN CONTROLLER - ST SPEAR
10998 M:      Viresh Kumar <vireshk@kernel.org>
10999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11000 W:      http://www.st.com/spear
11001 S:      Maintained
11002 F:      drivers/pinctrl/spear/
11003
11004 PISTACHIO SOC SUPPORT
11005 M:      James Hartley <james.hartley@sondrel.com>
11006 L:      linux-mips@linux-mips.org
11007 S:      Odd Fixes
11008 F:      arch/mips/pistachio/
11009 F:      arch/mips/include/asm/mach-pistachio/
11010 F:      arch/mips/boot/dts/img/pistachio*
11011 F:      arch/mips/configs/pistachio*_defconfig
11012
11013 PKTCDVD DRIVER
11014 S:      Orphan
11015 M:      linux-block@vger.kernel.org
11016 F:      drivers/block/pktcdvd.c
11017 F:      include/linux/pktcdvd.h
11018 F:      include/uapi/linux/pktcdvd.h
11019
11020 PKUNITY SOC DRIVERS
11021 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11022 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11023 S:      Maintained
11024 T:      git git://github.com/gxt/linux.git
11025 F:      drivers/input/serio/i8042-unicore32io.h
11026 F:      drivers/i2c/busses/i2c-puv3.c
11027 F:      drivers/video/fbdev/fb-puv3.c
11028 F:      drivers/rtc/rtc-puv3.c
11029
11030 PMBUS HARDWARE MONITORING DRIVERS
11031 M:      Guenter Roeck <linux@roeck-us.net>
11032 L:      linux-hwmon@vger.kernel.org
11033 W:      http://hwmon.wiki.kernel.org/
11034 W:      http://www.roeck-us.net/linux/drivers/
11035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
11036 S:      Maintained
11037 F:      Documentation/hwmon/pmbus
11038 F:      drivers/hwmon/pmbus/
11039 F:      include/linux/pmbus.h
11040
11041 PMC SIERRA MaxRAID DRIVER
11042 L:      linux-scsi@vger.kernel.org
11043 W:      http://www.pmc-sierra.com/
11044 S:      Orphan
11045 F:      drivers/scsi/pmcraid.*
11046
11047 PMC SIERRA PM8001 DRIVER
11048 M:      Jack Wang <jinpu.wang@profitbricks.com>
11049 M:      lindar_liu@usish.com
11050 L:      linux-scsi@vger.kernel.org
11051 S:      Supported
11052 F:      drivers/scsi/pm8001/
11053
11054 PNP SUPPORT
11055 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
11056 S:      Maintained
11057 F:      drivers/pnp/
11058
11059 POSIX CLOCKS and TIMERS
11060 M:      Thomas Gleixner <tglx@linutronix.de>
11061 L:      linux-kernel@vger.kernel.org
11062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11063 S:      Maintained
11064 F:      fs/timerfd.c
11065 F:      include/linux/timer*
11066 F:      kernel/time/*timer*
11067
11068 POWER MANAGEMENT CORE
11069 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11070 L:      linux-pm@vger.kernel.org
11071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
11072 B:      https://bugzilla.kernel.org
11073 S:      Supported
11074 F:      drivers/base/power/
11075 F:      include/linux/pm.h
11076 F:      include/linux/pm_*
11077 F:      include/linux/powercap.h
11078 F:      drivers/powercap/
11079 F:      kernel/configs/nopm.config
11080
11081 POWER STATE COORDINATION INTERFACE (PSCI)
11082 M:      Mark Rutland <mark.rutland@arm.com>
11083 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
11084 L:      linux-arm-kernel@lists.infradead.org
11085 S:      Maintained
11086 F:      drivers/firmware/psci*.c
11087 F:      include/linux/psci.h
11088 F:      include/uapi/linux/psci.h
11089
11090 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
11091 M:      Sebastian Reichel <sre@kernel.org>
11092 L:      linux-pm@vger.kernel.org
11093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11094 S:      Maintained
11095 F:      Documentation/devicetree/bindings/power/supply/
11096 F:      include/linux/power_supply.h
11097 F:      drivers/power/supply/
11098
11099 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
11100 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
11101 L:      linuxppc-dev@lists.ozlabs.org
11102 S:      Maintained
11103 F:      drivers/char/powernv-op-panel.c
11104
11105 PPP OVER ATM (RFC 2364)
11106 M:      Mitchell Blank Jr <mitch@sfgoth.com>
11107 S:      Maintained
11108 F:      net/atm/pppoatm.c
11109 F:      include/uapi/linux/atmppp.h
11110
11111 PPP OVER ETHERNET
11112 M:      Michal Ostrowski <mostrows@earthlink.net>
11113 S:      Maintained
11114 F:      drivers/net/ppp/pppoe.c
11115 F:      drivers/net/ppp/pppox.c
11116
11117 PPP OVER L2TP
11118 M:      James Chapman <jchapman@katalix.com>
11119 S:      Maintained
11120 F:      net/l2tp/l2tp_ppp.c
11121 F:      include/linux/if_pppol2tp.h
11122 F:      include/uapi/linux/if_pppol2tp.h
11123
11124 PPP PROTOCOL DRIVERS AND COMPRESSORS
11125 M:      Paul Mackerras <paulus@samba.org>
11126 L:      linux-ppp@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/ppp/ppp_*
11129
11130 PPS SUPPORT
11131 M:      Rodolfo Giometti <giometti@enneenne.com>
11132 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
11133 L:      linuxpps@ml.enneenne.com (subscribers-only)
11134 S:      Maintained
11135 F:      Documentation/pps/
11136 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
11137 F:      Documentation/ABI/testing/sysfs-pps
11138 F:      drivers/pps/
11139 F:      include/linux/pps*.h
11140 F:      include/uapi/linux/pps.h
11141
11142 PPTP DRIVER
11143 M:      Dmitry Kozlov <xeb@mail.ru>
11144 L:      netdev@vger.kernel.org
11145 S:      Maintained
11146 F:      drivers/net/ppp/pptp.c
11147 W:      http://sourceforge.net/projects/accel-pptp
11148
11149 PREEMPTIBLE KERNEL
11150 M:      Robert Love <rml@tech9.net>
11151 L:      kpreempt-tech@lists.sourceforge.net
11152 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
11153 S:      Supported
11154 F:      Documentation/preempt-locking.txt
11155 F:      include/linux/preempt.h
11156
11157 PRINTK
11158 M:      Petr Mladek <pmladek@suse.com>
11159 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
11160 R:      Steven Rostedt <rostedt@goodmis.org>
11161 S:      Maintained
11162 F:      kernel/printk/
11163 F:      include/linux/printk.h
11164
11165 PRISM54 WIRELESS DRIVER
11166 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
11167 L:      linux-wireless@vger.kernel.org
11168 W:      http://wireless.kernel.org/en/users/Drivers/p54
11169 S:      Obsolete
11170 F:      drivers/net/wireless/intersil/prism54/
11171
11172 PROC SYSCTL
11173 M:      "Luis R. Rodriguez" <mcgrof@kernel.org>
11174 M:      Kees Cook <keescook@chromium.org>
11175 L:      linux-kernel@vger.kernel.org
11176 L:      linux-fsdevel@vger.kernel.org
11177 S:      Maintained
11178 F:      fs/proc/proc_sysctl.c
11179 F:      include/linux/sysctl.h
11180 F:      kernel/sysctl.c
11181 F:      tools/testing/selftests/sysctl/
11182
11183 PS3 NETWORK SUPPORT
11184 M:      Geoff Levand <geoff@infradead.org>
11185 L:      netdev@vger.kernel.org
11186 L:      linuxppc-dev@lists.ozlabs.org
11187 S:      Maintained
11188 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
11189
11190 PS3 PLATFORM SUPPORT
11191 M:      Geoff Levand <geoff@infradead.org>
11192 L:      linuxppc-dev@lists.ozlabs.org
11193 S:      Maintained
11194 F:      arch/powerpc/boot/ps3*
11195 F:      arch/powerpc/include/asm/lv1call.h
11196 F:      arch/powerpc/include/asm/ps3*.h
11197 F:      arch/powerpc/platforms/ps3/
11198 F:      drivers/*/ps3*
11199 F:      drivers/ps3/
11200 F:      drivers/rtc/rtc-ps3.c
11201 F:      drivers/usb/host/*ps3.c
11202 F:      sound/ppc/snd_ps3*
11203
11204 PS3VRAM DRIVER
11205 M:      Jim Paris <jim@jtan.com>
11206 M:      Geoff Levand <geoff@infradead.org>
11207 L:      linuxppc-dev@lists.ozlabs.org
11208 S:      Maintained
11209 F:      drivers/block/ps3vram.c
11210
11211 PSAMPLE PACKET SAMPLING SUPPORT:
11212 M:      Yotam Gigi <yotam.gi@gmail.com>
11213 S:      Maintained
11214 F:      net/psample
11215 F:      include/net/psample.h
11216 F:      include/uapi/linux/psample.h
11217
11218 PSTORE FILESYSTEM
11219 M:      Kees Cook <keescook@chromium.org>
11220 M:      Anton Vorontsov <anton@enomsg.org>
11221 M:      Colin Cross <ccross@android.com>
11222 M:      Tony Luck <tony.luck@intel.com>
11223 S:      Maintained
11224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
11225 F:      fs/pstore/
11226 F:      include/linux/pstore*
11227 F:      drivers/firmware/efi/efi-pstore.c
11228 F:      drivers/acpi/apei/erst.c
11229 F:      Documentation/admin-guide/ramoops.rst
11230 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
11231 K:      \b(pstore|ramoops)
11232
11233 PTP HARDWARE CLOCK SUPPORT
11234 M:      Richard Cochran <richardcochran@gmail.com>
11235 L:      netdev@vger.kernel.org
11236 S:      Maintained
11237 W:      http://linuxptp.sourceforge.net/
11238 F:      Documentation/ABI/testing/sysfs-ptp
11239 F:      Documentation/ptp/*
11240 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
11241 F:      drivers/net/phy/dp83640*
11242 F:      drivers/ptp/*
11243 F:      include/linux/ptp_cl*
11244
11245 PTRACE SUPPORT
11246 M:      Oleg Nesterov <oleg@redhat.com>
11247 S:      Maintained
11248 F:      include/asm-generic/syscall.h
11249 F:      include/linux/ptrace.h
11250 F:      include/linux/regset.h
11251 F:      include/linux/tracehook.h
11252 F:      include/uapi/linux/ptrace.h
11253 F:      include/uapi/linux/ptrace.h
11254 F:      include/asm-generic/ptrace.h
11255 F:      kernel/ptrace.c
11256 F:      arch/*/ptrace*.c
11257 F:      arch/*/*/ptrace*.c
11258 F:      arch/*/include/asm/ptrace*.h
11259
11260 PULSE8-CEC DRIVER
11261 M:      Hans Verkuil <hverkuil@xs4all.nl>
11262 L:      linux-media@vger.kernel.org
11263 T:      git git://linuxtv.org/media_tree.git
11264 S:      Maintained
11265 F:      drivers/media/usb/pulse8-cec/*
11266 F:      Documentation/media/cec-drivers/pulse8-cec.rst
11267
11268 PVRUSB2 VIDEO4LINUX DRIVER
11269 M:      Mike Isely <isely@pobox.com>
11270 L:      pvrusb2@isely.net       (subscribers-only)
11271 L:      linux-media@vger.kernel.org
11272 W:      http://www.isely.net/pvrusb2/
11273 T:      git git://linuxtv.org/media_tree.git
11274 S:      Maintained
11275 F:      Documentation/media/v4l-drivers/pvrusb2*
11276 F:      drivers/media/usb/pvrusb2/
11277
11278 PWC WEBCAM DRIVER
11279 M:      Hans Verkuil <hverkuil@xs4all.nl>
11280 L:      linux-media@vger.kernel.org
11281 T:      git git://linuxtv.org/media_tree.git
11282 S:      Odd Fixes
11283 F:      drivers/media/usb/pwc/*
11284
11285 PWM FAN DRIVER
11286 M:      Kamil Debski <kamil@wypas.org>
11287 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11288 L:      linux-hwmon@vger.kernel.org
11289 S:      Supported
11290 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
11291 F:      Documentation/hwmon/pwm-fan
11292 F:      drivers/hwmon/pwm-fan.c
11293
11294 PWM IR Transmitter
11295 M:      Sean Young <sean@mess.org>
11296 L:      linux-media@vger.kernel.org
11297 S:      Maintained
11298 F:      drivers/media/rc/pwm-ir-tx.c
11299
11300 PWM SUBSYSTEM
11301 M:      Thierry Reding <thierry.reding@gmail.com>
11302 L:      linux-pwm@vger.kernel.org
11303 S:      Maintained
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
11305 F:      Documentation/pwm.txt
11306 F:      Documentation/devicetree/bindings/pwm/
11307 F:      include/linux/pwm.h
11308 F:      drivers/pwm/
11309 F:      drivers/video/backlight/pwm_bl.c
11310 F:      include/linux/pwm_backlight.h
11311 F:      drivers/gpio/gpio-mvebu.c
11312 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
11313
11314 PXA GPIO DRIVER
11315 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11316 L:      linux-gpio@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/gpio/gpio-pxa.c
11319
11320 PXA MMCI DRIVER
11321 S:      Orphan
11322
11323 PXA RTC DRIVER
11324 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11325 L:      linux-rtc@vger.kernel.org
11326 S:      Maintained
11327
11328 PXA2xx/PXA3xx SUPPORT
11329 M:      Daniel Mack <daniel@zonque.org>
11330 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
11331 M:      Robert Jarzmik <robert.jarzmik@free.fr>
11332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11333 T:      git git://github.com/hzhuang1/linux.git
11334 T:      git git://github.com/rjarzmik/linux.git
11335 S:      Maintained
11336 F:      arch/arm/boot/dts/pxa*
11337 F:      arch/arm/mach-pxa/
11338 F:      drivers/dma/pxa*
11339 F:      drivers/pcmcia/pxa2xx*
11340 F:      drivers/pinctrl/pxa/
11341 F:      drivers/spi/spi-pxa2xx*
11342 F:      drivers/usb/gadget/udc/pxa2*
11343 F:      include/sound/pxa2xx-lib.h
11344 F:      sound/arm/pxa*
11345 F:      sound/soc/pxa/
11346
11347 PXA3xx NAND FLASH DRIVER
11348 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
11349 L:      linux-mtd@lists.infradead.org
11350 S:      Maintained
11351 F:      drivers/mtd/nand/pxa3xx_nand.c
11352
11353 QAT DRIVER
11354 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
11355 L:      qat-linux@intel.com
11356 S:      Supported
11357 F:      drivers/crypto/qat/
11358
11359 QCOM AUDIO (ASoC) DRIVERS
11360 M:      Patrick Lai <plai@codeaurora.org>
11361 M:      Banajit Goswami <bgoswami@codeaurora.org>
11362 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11363 S:      Supported
11364 F:      sound/soc/qcom/
11365
11366 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
11367 M:      Gabriel Somlo <somlo@cmu.edu>
11368 M:      "Michael S. Tsirkin" <mst@redhat.com>
11369 L:      qemu-devel@nongnu.org
11370 S:      Maintained
11371 F:      drivers/firmware/qemu_fw_cfg.c
11372
11373 QIB DRIVER
11374 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11375 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11376 L:      linux-rdma@vger.kernel.org
11377 S:      Supported
11378 F:      drivers/infiniband/hw/qib/
11379
11380 QLOGIC QL41xxx FCOE DRIVER
11381 M:      QLogic-Storage-Upstream@cavium.com
11382 L:      linux-scsi@vger.kernel.org
11383 S:      Supported
11384 F:      drivers/scsi/qedf/
11385
11386 QLOGIC QL41xxx ISCSI DRIVER
11387 M:      QLogic-Storage-Upstream@cavium.com
11388 L:      linux-scsi@vger.kernel.org
11389 S:      Supported
11390 F:      drivers/scsi/qedi/
11391
11392 QLOGIC QL4xxx ETHERNET DRIVER
11393 M:      Ariel Elior <Ariel.Elior@cavium.com>
11394 M:      everest-linux-l2@cavium.com
11395 L:      netdev@vger.kernel.org
11396 S:      Supported
11397 F:      drivers/net/ethernet/qlogic/qed/
11398 F:      include/linux/qed/
11399 F:      drivers/net/ethernet/qlogic/qede/
11400
11401 QLOGIC QL4xxx RDMA DRIVER
11402 M:      Michal Kalderon <Michal.Kalderon@cavium.com>
11403 M:      Ariel Elior <Ariel.Elior@cavium.com>
11404 L:      linux-rdma@vger.kernel.org
11405 S:      Supported
11406 F:      drivers/infiniband/hw/qedr/
11407 F:      include/uapi/rdma/qedr-abi.h
11408
11409 QLOGIC QLA1280 SCSI DRIVER
11410 M:      Michael Reed <mdr@sgi.com>
11411 L:      linux-scsi@vger.kernel.org
11412 S:      Maintained
11413 F:      drivers/scsi/qla1280.[ch]
11414
11415 QLOGIC QLA2XXX FC-SCSI DRIVER
11416 M:      qla2xxx-upstream@qlogic.com
11417 L:      linux-scsi@vger.kernel.org
11418 S:      Supported
11419 F:      Documentation/scsi/LICENSE.qla2xxx
11420 F:      drivers/scsi/qla2xxx/
11421
11422 QLOGIC QLA3XXX NETWORK DRIVER
11423 M:      Dept-GELinuxNICDev@cavium.com
11424 L:      netdev@vger.kernel.org
11425 S:      Supported
11426 F:      Documentation/networking/LICENSE.qla3xxx
11427 F:      drivers/net/ethernet/qlogic/qla3xxx.*
11428
11429 QLOGIC QLA4XXX iSCSI DRIVER
11430 M:      QLogic-Storage-Upstream@qlogic.com
11431 L:      linux-scsi@vger.kernel.org
11432 S:      Supported
11433 F:      Documentation/scsi/LICENSE.qla4xxx
11434 F:      drivers/scsi/qla4xxx/
11435
11436 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
11437 M:      Harish Patil <harish.patil@cavium.com>
11438 M:      Manish Chopra <manish.chopra@cavium.com>
11439 M:      Dept-GELinuxNICDev@cavium.com
11440 L:      netdev@vger.kernel.org
11441 S:      Supported
11442 F:      drivers/net/ethernet/qlogic/qlcnic/
11443
11444 QLOGIC QLGE 10Gb ETHERNET DRIVER
11445 M:      Harish Patil <harish.patil@cavium.com>
11446 M:      Manish Chopra <manish.chopra@cavium.com>
11447 M:      Dept-GELinuxNICDev@cavium.com
11448 L:      netdev@vger.kernel.org
11449 S:      Supported
11450 F:      drivers/net/ethernet/qlogic/qlge/
11451
11452 QNX4 FILESYSTEM
11453 M:      Anders Larsen <al@alarsen.net>
11454 W:      http://www.alarsen.net/linux/qnx4fs/
11455 S:      Maintained
11456 F:      fs/qnx4/
11457 F:      include/uapi/linux/qnx4_fs.h
11458 F:      include/uapi/linux/qnxtypes.h
11459
11460 QORIQ DPAA2 FSL-MC BUS DRIVER
11461 M:      Stuart Yoder <stuyoder@gmail.com>
11462 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
11463 L:      linux-kernel@vger.kernel.org
11464 S:      Maintained
11465 F:      drivers/staging/fsl-mc/
11466 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
11467
11468 QT1010 MEDIA DRIVER
11469 M:      Antti Palosaari <crope@iki.fi>
11470 L:      linux-media@vger.kernel.org
11471 W:      https://linuxtv.org
11472 W:      http://palosaari.fi/linux/
11473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11474 T:      git git://linuxtv.org/anttip/media_tree.git
11475 S:      Maintained
11476 F:      drivers/media/tuners/qt1010*
11477
11478 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
11479 M:      Kalle Valo <kvalo@qca.qualcomm.com>
11480 L:      ath10k@lists.infradead.org
11481 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
11482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
11483 S:      Supported
11484 F:      drivers/net/wireless/ath/ath10k/
11485
11486 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
11487 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
11488 L:      linux-wireless@vger.kernel.org
11489 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
11490 S:      Supported
11491 F:      drivers/net/wireless/ath/ath9k/
11492
11493 QUALCOMM CAMERA SUBSYSTEM DRIVER
11494 M:      Todor Tomov <todor.tomov@linaro.org>
11495 L:      linux-media@vger.kernel.org
11496 S:      Maintained
11497 F:      Documentation/devicetree/bindings/media/qcom,camss.txt
11498 F:      Documentation/media/v4l-drivers/qcom_camss.rst
11499 F:      drivers/media/platform/qcom/camss-8x16/
11500
11501 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
11502 M:      Timur Tabi <timur@codeaurora.org>
11503 L:      netdev@vger.kernel.org
11504 S:      Supported
11505 F:      drivers/net/ethernet/qualcomm/emac/
11506
11507 QUALCOMM HEXAGON ARCHITECTURE
11508 M:      Richard Kuo <rkuo@codeaurora.org>
11509 L:      linux-hexagon@vger.kernel.org
11510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
11511 S:      Supported
11512 F:      arch/hexagon/
11513
11514 QUALCOMM IOMMU
11515 M:      Rob Clark <robdclark@gmail.com>
11516 L:      iommu@lists.linux-foundation.org
11517 L:      linux-arm-msm@vger.kernel.org
11518 S:      Maintained
11519 F:      drivers/iommu/qcom_iommu.c
11520
11521 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
11522 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
11523 L:      linux-media@vger.kernel.org
11524 L:      linux-arm-msm@vger.kernel.org
11525 T:      git git://linuxtv.org/media_tree.git
11526 S:      Maintained
11527 F:      drivers/media/platform/qcom/venus/
11528
11529 QUALCOMM WCN36XX WIRELESS DRIVER
11530 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
11531 L:      wcn36xx@lists.infradead.org
11532 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
11533 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
11534 S:      Supported
11535 F:      drivers/net/wireless/ath/wcn36xx/
11536
11537 QUANTENNA QTNFMAC WIRELESS DRIVER
11538 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
11539 M:      Avinash Patil <avinashp@quantenna.com>
11540 M:      Sergey Matyukevich <smatyukevich@quantenna.com>
11541 L:      linux-wireless@vger.kernel.org
11542 S:      Maintained
11543 F:      drivers/net/wireless/quantenna
11544
11545 RADEON and AMDGPU DRM DRIVERS
11546 M:      Alex Deucher <alexander.deucher@amd.com>
11547 M:      Christian König <christian.koenig@amd.com>
11548 M:      David (ChunMing) Zhou <David1.Zhou@amd.com>
11549 L:      amd-gfx@lists.freedesktop.org
11550 T:      git git://people.freedesktop.org/~agd5f/linux
11551 S:      Supported
11552 F:      drivers/gpu/drm/radeon/
11553 F:      include/uapi/drm/radeon_drm.h
11554 F:      drivers/gpu/drm/amd/
11555 F:      include/uapi/drm/amdgpu_drm.h
11556
11557 RADEON FRAMEBUFFER DISPLAY DRIVER
11558 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11559 L:      linux-fbdev@vger.kernel.org
11560 S:      Maintained
11561 F:      drivers/video/fbdev/aty/radeon*
11562 F:      include/uapi/linux/radeonfb.h
11563
11564 RADIOSHARK RADIO DRIVER
11565 M:      Hans Verkuil <hverkuil@xs4all.nl>
11566 L:      linux-media@vger.kernel.org
11567 T:      git git://linuxtv.org/media_tree.git
11568 S:      Maintained
11569 F:      drivers/media/radio/radio-shark.c
11570
11571 RADIOSHARK2 RADIO DRIVER
11572 M:      Hans Verkuil <hverkuil@xs4all.nl>
11573 L:      linux-media@vger.kernel.org
11574 T:      git git://linuxtv.org/media_tree.git
11575 S:      Maintained
11576 F:      drivers/media/radio/radio-shark2.c
11577 F:      drivers/media/radio/radio-tea5777.c
11578
11579 RADOS BLOCK DEVICE (RBD)
11580 M:      Ilya Dryomov <idryomov@gmail.com>
11581 M:      Sage Weil <sage@redhat.com>
11582 M:      Alex Elder <elder@kernel.org>
11583 L:      ceph-devel@vger.kernel.org
11584 W:      http://ceph.com/
11585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
11586 T:      git git://github.com/ceph/ceph-client.git
11587 S:      Supported
11588 F:      Documentation/ABI/testing/sysfs-bus-rbd
11589 F:      drivers/block/rbd.c
11590 F:      drivers/block/rbd_types.h
11591
11592 RAGE128 FRAMEBUFFER DISPLAY DRIVER
11593 M:      Paul Mackerras <paulus@samba.org>
11594 L:      linux-fbdev@vger.kernel.org
11595 S:      Maintained
11596 F:      drivers/video/fbdev/aty/aty128fb.c
11597
11598 RAINSHADOW-CEC DRIVER
11599 M:      Hans Verkuil <hverkuil@xs4all.nl>
11600 L:      linux-media@vger.kernel.org
11601 T:      git git://linuxtv.org/media_tree.git
11602 S:      Maintained
11603 F:      drivers/media/usb/rainshadow-cec/*
11604
11605 RALINK MIPS ARCHITECTURE
11606 M:      John Crispin <john@phrozen.org>
11607 L:      linux-mips@linux-mips.org
11608 S:      Maintained
11609 F:      arch/mips/ralink
11610
11611 RALINK RT2X00 WIRELESS LAN DRIVER
11612 P:      rt2x00 project
11613 M:      Stanislaw Gruszka <sgruszka@redhat.com>
11614 M:      Helmut Schaa <helmut.schaa@googlemail.com>
11615 L:      linux-wireless@vger.kernel.org
11616 S:      Maintained
11617 F:      drivers/net/wireless/ralink/rt2x00/
11618
11619 RAMDISK RAM BLOCK DEVICE DRIVER
11620 M:      Jens Axboe <axboe@kernel.dk>
11621 S:      Maintained
11622 F:      Documentation/blockdev/ramdisk.txt
11623 F:      drivers/block/brd.c
11624
11625 RANCHU VIRTUAL BOARD FOR MIPS
11626 M:      Miodrag Dinic <miodrag.dinic@mips.com>
11627 L:      linux-mips@linux-mips.org
11628 S:      Supported
11629 F:      arch/mips/generic/board-ranchu.c
11630 F:      arch/mips/configs/generic/board-ranchu.config
11631
11632 RANDOM NUMBER DRIVER
11633 M:      "Theodore Ts'o" <tytso@mit.edu>
11634 S:      Maintained
11635 F:      drivers/char/random.c
11636
11637 RAPIDIO SUBSYSTEM
11638 M:      Matt Porter <mporter@kernel.crashing.org>
11639 M:      Alexandre Bounine <alexandre.bounine@idt.com>
11640 S:      Maintained
11641 F:      drivers/rapidio/
11642
11643 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
11644 L:      linux-wireless@vger.kernel.org
11645 S:      Orphan
11646 F:      drivers/net/wireless/ray*
11647
11648 RCUTORTURE TEST FRAMEWORK
11649 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11650 M:      Josh Triplett <josh@joshtriplett.org>
11651 R:      Steven Rostedt <rostedt@goodmis.org>
11652 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11653 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11654 L:      linux-kernel@vger.kernel.org
11655 S:      Supported
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11657 F:      tools/testing/selftests/rcutorture
11658
11659 RDC R-321X SoC
11660 M:      Florian Fainelli <florian@openwrt.org>
11661 S:      Maintained
11662
11663 RDC R6040 FAST ETHERNET DRIVER
11664 M:      Florian Fainelli <f.fainelli@gmail.com>
11665 L:      netdev@vger.kernel.org
11666 S:      Maintained
11667 F:      drivers/net/ethernet/rdc/r6040.c
11668
11669 RDMAVT - RDMA verbs software
11670 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11671 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
11672 L:      linux-rdma@vger.kernel.org
11673 S:      Supported
11674 F:      drivers/infiniband/sw/rdmavt
11675
11676 RDS - RELIABLE DATAGRAM SOCKETS
11677 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
11678 L:      netdev@vger.kernel.org
11679 L:      linux-rdma@vger.kernel.org
11680 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
11681 W:      https://oss.oracle.com/projects/rds/
11682 S:      Supported
11683 F:      net/rds/
11684 F:      Documentation/networking/rds.txt
11685
11686 RDT - RESOURCE ALLOCATION
11687 M:      Fenghua Yu <fenghua.yu@intel.com>
11688 L:      linux-kernel@vger.kernel.org
11689 S:      Supported
11690 F:      arch/x86/kernel/cpu/intel_rdt*
11691 F:      arch/x86/include/asm/intel_rdt_sched.h
11692 F:      Documentation/x86/intel_rdt*
11693
11694 READ-COPY UPDATE (RCU)
11695 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11696 M:      Josh Triplett <josh@joshtriplett.org>
11697 R:      Steven Rostedt <rostedt@goodmis.org>
11698 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11699 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11700 L:      linux-kernel@vger.kernel.org
11701 W:      http://www.rdrop.com/users/paulmck/RCU/
11702 S:      Supported
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11704 F:      Documentation/RCU/
11705 X:      Documentation/RCU/torture.txt
11706 F:      include/linux/rcu*
11707 X:      include/linux/srcu.h
11708 F:      kernel/rcu/
11709 X:      kernel/torture.c
11710
11711 REAL TIME CLOCK (RTC) SUBSYSTEM
11712 M:      Alessandro Zummo <a.zummo@towertech.it>
11713 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
11714 L:      linux-rtc@vger.kernel.org
11715 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
11716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11717 S:      Maintained
11718 F:      Documentation/devicetree/bindings/rtc/
11719 F:      Documentation/rtc.txt
11720 F:      drivers/rtc/
11721 F:      include/linux/rtc.h
11722 F:      include/uapi/linux/rtc.h
11723 F:      include/linux/rtc/
11724 F:      include/linux/platform_data/rtc-*
11725 F:      tools/testing/selftests/timers/rtctest.c
11726
11727 REALTEK AUDIO CODECS
11728 M:      Bard Liao <bardliao@realtek.com>
11729 M:      Oder Chiou <oder_chiou@realtek.com>
11730 S:      Maintained
11731 F:      sound/soc/codecs/rt*
11732 F:      include/sound/rt*.h
11733
11734 REGISTER MAP ABSTRACTION
11735 M:      Mark Brown <broonie@kernel.org>
11736 L:      linux-kernel@vger.kernel.org
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11738 S:      Supported
11739 F:      Documentation/devicetree/bindings/regmap/
11740 F:      drivers/base/regmap/
11741 F:      include/linux/regmap.h
11742
11743 REISERFS FILE SYSTEM
11744 L:      reiserfs-devel@vger.kernel.org
11745 S:      Supported
11746 F:      fs/reiserfs/
11747
11748 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11749 M:      Ohad Ben-Cohen <ohad@wizery.com>
11750 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11751 L:      linux-remoteproc@vger.kernel.org
11752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11753 S:      Maintained
11754 F:      Documentation/devicetree/bindings/remoteproc/
11755 F:      Documentation/remoteproc.txt
11756 F:      drivers/remoteproc/
11757 F:      include/linux/remoteproc.h
11758
11759 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11760 M:      Ohad Ben-Cohen <ohad@wizery.com>
11761 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11762 L:      linux-remoteproc@vger.kernel.org
11763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11764 S:      Maintained
11765 F:      drivers/rpmsg/
11766 F:      Documentation/rpmsg.txt
11767 F:      include/linux/rpmsg.h
11768 F:      include/linux/rpmsg/
11769
11770 RENESAS CLOCK DRIVERS
11771 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11772 L:      linux-renesas-soc@vger.kernel.org
11773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git clk-renesas
11774 S:      Supported
11775 F:      drivers/clk/renesas/
11776
11777 RENESAS ETHERNET DRIVERS
11778 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11779 L:      netdev@vger.kernel.org
11780 L:      linux-renesas-soc@vger.kernel.org
11781 F:      Documentation/devicetree/bindings/net/renesas,*.txt
11782 F:      Documentation/devicetree/bindings/net/sh_eth.txt
11783 F:      drivers/net/ethernet/renesas/
11784 F:      include/linux/sh_eth.h
11785
11786 RENESAS R-CAR GYROADC DRIVER
11787 M:      Marek Vasut <marek.vasut@gmail.com>
11788 L:      linux-iio@vger.kernel.org
11789 S:      Supported
11790 F:      drivers/iio/adc/rcar_gyro_adc.c
11791
11792 RENESAS USB PHY DRIVER
11793 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11794 L:      linux-renesas-soc@vger.kernel.org
11795 S:      Maintained
11796 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
11797
11798 RESET CONTROLLER FRAMEWORK
11799 M:      Philipp Zabel <p.zabel@pengutronix.de>
11800 T:      git git://git.pengutronix.de/git/pza/linux
11801 S:      Maintained
11802 F:      drivers/reset/
11803 F:      Documentation/devicetree/bindings/reset/
11804 F:      include/dt-bindings/reset/
11805 F:      include/linux/reset.h
11806 F:      include/linux/reset-controller.h
11807
11808 RFKILL
11809 M:      Johannes Berg <johannes@sipsolutions.net>
11810 L:      linux-wireless@vger.kernel.org
11811 W:      http://wireless.kernel.org/
11812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11814 S:      Maintained
11815 F:      Documentation/rfkill.txt
11816 F:      Documentation/ABI/stable/sysfs-class-rfkill
11817 F:      net/rfkill/
11818
11819 RHASHTABLE
11820 M:      Thomas Graf <tgraf@suug.ch>
11821 M:      Herbert Xu <herbert@gondor.apana.org.au>
11822 L:      netdev@vger.kernel.org
11823 S:      Maintained
11824 F:      lib/rhashtable.c
11825 F:      include/linux/rhashtable.h
11826
11827 RICOH R5C592 MEMORYSTICK DRIVER
11828 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11829 S:      Maintained
11830 F:      drivers/memstick/host/r592.*
11831
11832 RICOH SMARTMEDIA/XD DRIVER
11833 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11834 S:      Maintained
11835 F:      drivers/mtd/nand/r852.c
11836 F:      drivers/mtd/nand/r852.h
11837
11838 RISC-V ARCHITECTURE
11839 M:      Palmer Dabbelt <palmer@sifive.com>
11840 M:      Albert Ou <albert@sifive.com>
11841 L:      linux-riscv@lists.infradead.org
11842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/palmer/riscv-linux.git
11843 S:      Supported
11844 F:      arch/riscv/
11845 K:      riscv
11846 N:      riscv
11847
11848 ROCCAT DRIVERS
11849 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
11850 W:      http://sourceforge.net/projects/roccat/
11851 S:      Maintained
11852 F:      drivers/hid/hid-roccat*
11853 F:      include/linux/hid-roccat*
11854 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
11855
11856 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
11857 M:      Jacob chen <jacob2.chen@rock-chips.com>
11858 L:      linux-media@vger.kernel.org
11859 S:      Maintained
11860 F:      drivers/media/platform/rockchip/rga/
11861 F:      Documentation/devicetree/bindings/media/rockchip-rga.txt
11862
11863 ROCKER DRIVER
11864 M:      Jiri Pirko <jiri@resnulli.us>
11865 L:      netdev@vger.kernel.org
11866 S:      Supported
11867 F:      drivers/net/ethernet/rocker/
11868
11869 ROCKETPORT DRIVER
11870 P:      Comtrol Corp.
11871 W:      http://www.comtrol.com
11872 S:      Maintained
11873 F:      Documentation/serial/rocket.txt
11874 F:      drivers/tty/rocket*
11875
11876 ROCKETPORT EXPRESS/INFINITY DRIVER
11877 M:      Kevin Cernekee <cernekee@gmail.com>
11878 L:      linux-serial@vger.kernel.org
11879 S:      Odd Fixes
11880 F:      drivers/tty/serial/rp2.*
11881
11882 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
11883 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
11884 L:      linux-kernel@vger.kernel.org
11885 L:      linux-renesas-soc@vger.kernel.org
11886 S:      Supported
11887 F:      drivers/mfd/bd9571mwv.c
11888 F:      drivers/regulator/bd9571mwv-regulator.c
11889 F:      drivers/gpio/gpio-bd9571mwv.c
11890 F:      include/linux/mfd/bd9571mwv.h
11891 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
11892
11893 ROSE NETWORK LAYER
11894 M:      Ralf Baechle <ralf@linux-mips.org>
11895 L:      linux-hams@vger.kernel.org
11896 W:      http://www.linux-ax25.org/
11897 S:      Maintained
11898 F:      include/net/rose.h
11899 F:      include/uapi/linux/rose.h
11900 F:      net/rose/
11901
11902 RTL2830 MEDIA DRIVER
11903 M:      Antti Palosaari <crope@iki.fi>
11904 L:      linux-media@vger.kernel.org
11905 W:      https://linuxtv.org
11906 W:      http://palosaari.fi/linux/
11907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11908 T:      git git://linuxtv.org/anttip/media_tree.git
11909 S:      Maintained
11910 F:      drivers/media/dvb-frontends/rtl2830*
11911
11912 RTL2832 MEDIA DRIVER
11913 M:      Antti Palosaari <crope@iki.fi>
11914 L:      linux-media@vger.kernel.org
11915 W:      https://linuxtv.org
11916 W:      http://palosaari.fi/linux/
11917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11918 T:      git git://linuxtv.org/anttip/media_tree.git
11919 S:      Maintained
11920 F:      drivers/media/dvb-frontends/rtl2832*
11921
11922 RTL2832_SDR MEDIA DRIVER
11923 M:      Antti Palosaari <crope@iki.fi>
11924 L:      linux-media@vger.kernel.org
11925 W:      https://linuxtv.org
11926 W:      http://palosaari.fi/linux/
11927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11928 T:      git git://linuxtv.org/anttip/media_tree.git
11929 S:      Maintained
11930 F:      drivers/media/dvb-frontends/rtl2832_sdr*
11931
11932 RTL8180 WIRELESS DRIVER
11933 L:      linux-wireless@vger.kernel.org
11934 W:      http://wireless.kernel.org/
11935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11936 S:      Orphan
11937 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
11938
11939 RTL8187 WIRELESS DRIVER
11940 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11941 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
11942 M:      Larry Finger <Larry.Finger@lwfinger.net>
11943 L:      linux-wireless@vger.kernel.org
11944 W:      http://wireless.kernel.org/
11945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11946 S:      Maintained
11947 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
11948
11949 REALTEK WIRELESS DRIVER (rtlwifi family)
11950 M:      Ping-Ke Shih <pkshih@realtek.com>
11951 L:      linux-wireless@vger.kernel.org
11952 W:      http://wireless.kernel.org/
11953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11954 S:      Maintained
11955 F:      drivers/net/wireless/realtek/rtlwifi/
11956
11957 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11958 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
11959 L:      linux-wireless@vger.kernel.org
11960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11961 S:      Maintained
11962 F:      drivers/net/wireless/realtek/rtl8xxxu/
11963
11964 RXRPC SOCKETS (AF_RXRPC)
11965 M:      David Howells <dhowells@redhat.com>
11966 L:      linux-afs@lists.infradead.org
11967 S:      Supported
11968 F:      net/rxrpc/
11969 F:      include/keys/rxrpc-type.h
11970 F:      include/net/af_rxrpc.h
11971 F:      include/trace/events/rxrpc.h
11972 F:      include/uapi/linux/rxrpc.h
11973 F:      Documentation/networking/rxrpc.txt
11974 W:      https://www.infradead.org/~dhowells/kafs/
11975
11976 S3 SAVAGE FRAMEBUFFER DRIVER
11977 M:      Antonino Daplas <adaplas@gmail.com>
11978 L:      linux-fbdev@vger.kernel.org
11979 S:      Maintained
11980 F:      drivers/video/fbdev/savage/
11981
11982 S390
11983 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
11984 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
11985 L:      linux-s390@vger.kernel.org
11986 W:      http://www.ibm.com/developerworks/linux/linux390/
11987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11988 S:      Supported
11989 F:      arch/s390/
11990 F:      drivers/s390/
11991 F:      Documentation/s390/
11992 F:      Documentation/driver-api/s390-drivers.rst
11993
11994 S390 COMMON I/O LAYER
11995 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11996 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11997 L:      linux-s390@vger.kernel.org
11998 W:      http://www.ibm.com/developerworks/linux/linux390/
11999 S:      Supported
12000 F:      drivers/s390/cio/
12001
12002 S390 DASD DRIVER
12003 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
12004 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
12005 L:      linux-s390@vger.kernel.org
12006 W:      http://www.ibm.com/developerworks/linux/linux390/
12007 S:      Supported
12008 F:      drivers/s390/block/dasd*
12009 F:      block/partitions/ibm.c
12010
12011 S390 IOMMU (PCI)
12012 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
12013 L:      linux-s390@vger.kernel.org
12014 W:      http://www.ibm.com/developerworks/linux/linux390/
12015 S:      Supported
12016 F:      drivers/iommu/s390-iommu.c
12017
12018 S390 IUCV NETWORK LAYER
12019 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
12020 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12021 L:      linux-s390@vger.kernel.org
12022 W:      http://www.ibm.com/developerworks/linux/linux390/
12023 S:      Supported
12024 F:      drivers/s390/net/*iucv*
12025 F:      include/net/iucv/
12026 F:      net/iucv/
12027
12028 S390 NETWORK DRIVERS
12029 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
12030 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12031 L:      linux-s390@vger.kernel.org
12032 W:      http://www.ibm.com/developerworks/linux/linux390/
12033 S:      Supported
12034 F:      drivers/s390/net/
12035
12036 S390 PCI SUBSYSTEM
12037 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
12038 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
12039 L:      linux-s390@vger.kernel.org
12040 W:      http://www.ibm.com/developerworks/linux/linux390/
12041 S:      Supported
12042 F:      arch/s390/pci/
12043 F:      drivers/pci/hotplug/s390_pci_hpc.c
12044
12045 S390 VFIO-CCW DRIVER
12046 M:      Cornelia Huck <cohuck@redhat.com>
12047 M:      Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
12048 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
12049 L:      linux-s390@vger.kernel.org
12050 L:      kvm@vger.kernel.org
12051 S:      Supported
12052 F:      drivers/s390/cio/vfio_ccw*
12053 F:      Documentation/s390/vfio-ccw.txt
12054 F:      include/uapi/linux/vfio_ccw.h
12055
12056 S390 ZCRYPT DRIVER
12057 M:      Harald Freudenberger <freude@de.ibm.com>
12058 L:      linux-s390@vger.kernel.org
12059 W:      http://www.ibm.com/developerworks/linux/linux390/
12060 S:      Supported
12061 F:      drivers/s390/crypto/
12062
12063 S390 ZFCP DRIVER
12064 M:      Steffen Maier <maier@linux.vnet.ibm.com>
12065 M:      Benjamin Block <bblock@linux.vnet.ibm.com>
12066 L:      linux-s390@vger.kernel.org
12067 W:      http://www.ibm.com/developerworks/linux/linux390/
12068 S:      Supported
12069 F:      drivers/s390/scsi/zfcp_*
12070
12071 S3C24XX SD/MMC Driver
12072 M:      Ben Dooks <ben-linux@fluff.org>
12073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12074 S:      Supported
12075 F:      drivers/mmc/host/s3cmci.*
12076
12077 SAA6588 RDS RECEIVER DRIVER
12078 M:      Hans Verkuil <hverkuil@xs4all.nl>
12079 L:      linux-media@vger.kernel.org
12080 T:      git git://linuxtv.org/media_tree.git
12081 W:      https://linuxtv.org
12082 S:      Odd Fixes
12083 F:      drivers/media/i2c/saa6588*
12084
12085 SAA7134 VIDEO4LINUX DRIVER
12086 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12087 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12088 L:      linux-media@vger.kernel.org
12089 W:      https://linuxtv.org
12090 T:      git git://linuxtv.org/media_tree.git
12091 S:      Odd fixes
12092 F:      Documentation/media/v4l-drivers/saa7134*
12093 F:      drivers/media/pci/saa7134/
12094
12095 SAA7146 VIDEO4LINUX-2 DRIVER
12096 M:      Hans Verkuil <hverkuil@xs4all.nl>
12097 L:      linux-media@vger.kernel.org
12098 T:      git git://linuxtv.org/media_tree.git
12099 S:      Maintained
12100 F:      drivers/media/common/saa7146/
12101 F:      drivers/media/pci/saa7146/
12102 F:      include/media/saa7146*
12103
12104 SAMSUNG AUDIO (ASoC) DRIVERS
12105 M:      Krzysztof Kozlowski <krzk@kernel.org>
12106 M:      Sangbeom Kim <sbkim73@samsung.com>
12107 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12109 S:      Supported
12110 F:      sound/soc/samsung/
12111 F:      Documentation/devicetree/bindings/sound/samsung*
12112
12113 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
12114 M:      Krzysztof Kozlowski <krzk@kernel.org>
12115 L:      linux-crypto@vger.kernel.org
12116 L:      linux-samsung-soc@vger.kernel.org
12117 S:      Maintained
12118 F:      drivers/crypto/exynos-rng.c
12119 F:      Documentation/devicetree/bindings/crypto/samsung,exynos-rng4.txt
12120
12121 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
12122 M:      Łukasz Stelmach <l.stelmach@samsung.com>
12123 L:      linux-samsung-soc@vger.kernel.org
12124 S:      Maintained
12125 F:      drivers/char/hw_random/exynos-trng.c
12126 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.txt
12127
12128 SAMSUNG FRAMEBUFFER DRIVER
12129 M:      Jingoo Han <jingoohan1@gmail.com>
12130 L:      linux-fbdev@vger.kernel.org
12131 S:      Maintained
12132 F:      drivers/video/fbdev/s3c-fb.c
12133
12134 SAMSUNG LAPTOP DRIVER
12135 M:      Corentin Chary <corentin.chary@gmail.com>
12136 L:      platform-driver-x86@vger.kernel.org
12137 S:      Maintained
12138 F:      drivers/platform/x86/samsung-laptop.c
12139
12140 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
12141 M:      Sangbeom Kim <sbkim73@samsung.com>
12142 M:      Krzysztof Kozlowski <krzk@kernel.org>
12143 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12144 L:      linux-kernel@vger.kernel.org
12145 L:      linux-samsung-soc@vger.kernel.org
12146 S:      Supported
12147 F:      drivers/mfd/sec*.c
12148 F:      drivers/regulator/s2m*.c
12149 F:      drivers/regulator/s5m*.c
12150 F:      drivers/clk/clk-s2mps11.c
12151 F:      drivers/rtc/rtc-s5m.c
12152 F:      include/linux/mfd/samsung/
12153 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
12154 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
12155 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
12156 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
12157
12158 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
12159 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
12160 L:      linux-media@vger.kernel.org
12161 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12162 S:      Maintained
12163 F:      drivers/media/platform/s3c-camif/
12164 F:      include/media/drv-intf/s3c_camif.h
12165
12166 SAMSUNG S3FWRN5 NFC DRIVER
12167 M:      Robert Baldyga <r.baldyga@samsung.com>
12168 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
12169 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
12170 S:      Supported
12171 F:      drivers/nfc/s3fwrn5
12172
12173 SAMSUNG S5C73M3 CAMERA DRIVER
12174 M:      Kyungmin Park <kyungmin.park@samsung.com>
12175 M:      Andrzej Hajda <a.hajda@samsung.com>
12176 L:      linux-media@vger.kernel.org
12177 S:      Supported
12178 F:      drivers/media/i2c/s5c73m3/*
12179
12180 SAMSUNG S5K5BAF CAMERA DRIVER
12181 M:      Kyungmin Park <kyungmin.park@samsung.com>
12182 M:      Andrzej Hajda <a.hajda@samsung.com>
12183 L:      linux-media@vger.kernel.org
12184 S:      Supported
12185 F:      drivers/media/i2c/s5k5baf.c
12186
12187 SAMSUNG S5P Security SubSystem (SSS) DRIVER
12188 M:      Krzysztof Kozlowski <krzk@kernel.org>
12189 M:      Vladimir Zapolskiy <vz@mleia.com>
12190 M:      Kamil Konieczny <k.konieczny@partner.samsung.com>
12191 L:      linux-crypto@vger.kernel.org
12192 L:      linux-samsung-soc@vger.kernel.org
12193 S:      Maintained
12194 F:      drivers/crypto/s5p-sss.c
12195
12196 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
12197 M:      Kyungmin Park <kyungmin.park@samsung.com>
12198 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12199 L:      linux-media@vger.kernel.org
12200 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
12201 S:      Supported
12202 F:      drivers/media/platform/exynos4-is/
12203
12204 SAMSUNG SOC CLOCK DRIVERS
12205 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12206 M:      Tomasz Figa <tomasz.figa@gmail.com>
12207 M:      Chanwoo Choi <cw00.choi@samsung.com>
12208 S:      Supported
12209 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12210 F:      drivers/clk/samsung/
12211 F:      include/dt-bindings/clock/exynos*.h
12212 F:      Documentation/devicetree/bindings/clock/exynos*.txt
12213
12214 SAMSUNG SPI DRIVERS
12215 M:      Kukjin Kim <kgene@kernel.org>
12216 M:      Krzysztof Kozlowski <krzk@kernel.org>
12217 M:      Andi Shyti <andi.shyti@samsung.com>
12218 L:      linux-spi@vger.kernel.org
12219 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
12220 S:      Maintained
12221 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
12222 F:      drivers/spi/spi-s3c*
12223 F:      include/linux/platform_data/spi-s3c64xx.h
12224
12225 SAMSUNG SXGBE DRIVERS
12226 M:      Byungho An <bh74.an@samsung.com>
12227 M:      Girish K S <ks.giri@samsung.com>
12228 M:      Vipul Pandya <vipul.pandya@samsung.com>
12229 S:      Supported
12230 L:      netdev@vger.kernel.org
12231 F:      drivers/net/ethernet/samsung/sxgbe/
12232
12233 SAMSUNG THERMAL DRIVER
12234 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12235 L:      linux-pm@vger.kernel.org
12236 L:      linux-samsung-soc@vger.kernel.org
12237 S:      Supported
12238 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
12239 F:      drivers/thermal/samsung/
12240
12241 SAMSUNG USB2 PHY DRIVER
12242 M:      Kamil Debski <kamil@wypas.org>
12243 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
12244 L:      linux-kernel@vger.kernel.org
12245 S:      Supported
12246 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
12247 F:      Documentation/phy/samsung-usb2.txt
12248 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
12249 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
12250 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
12251 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
12252 F:      drivers/phy/samsung/phy-samsung-usb2.c
12253 F:      drivers/phy/samsung/phy-samsung-usb2.h
12254
12255 SC1200 WDT DRIVER
12256 M:      Zwane Mwaikambo <zwanem@gmail.com>
12257 S:      Maintained
12258 F:      drivers/watchdog/sc1200wdt.c
12259
12260 SCHEDULER
12261 M:      Ingo Molnar <mingo@redhat.com>
12262 M:      Peter Zijlstra <peterz@infradead.org>
12263 L:      linux-kernel@vger.kernel.org
12264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
12265 S:      Maintained
12266 F:      kernel/sched/
12267 F:      include/linux/sched.h
12268 F:      include/uapi/linux/sched.h
12269 F:      include/linux/wait.h
12270
12271 SCORE ARCHITECTURE
12272 M:      Chen Liqin <liqin.linux@gmail.com>
12273 M:      Lennox Wu <lennox.wu@gmail.com>
12274 W:      http://www.sunplus.com
12275 S:      Supported
12276 F:      arch/score/
12277
12278 SCR24X CHIP CARD INTERFACE DRIVER
12279 M:      Lubomir Rintel <lkundrak@v3.sk>
12280 S:      Supported
12281 F:      drivers/char/pcmcia/scr24x_cs.c
12282
12283 SCSI CDROM DRIVER
12284 M:      Jens Axboe <axboe@kernel.dk>
12285 L:      linux-scsi@vger.kernel.org
12286 W:      http://www.kernel.dk
12287 S:      Maintained
12288 F:      drivers/scsi/sr*
12289
12290 SCSI RDMA PROTOCOL (SRP) INITIATOR
12291 M:      Bart Van Assche <bart.vanassche@sandisk.com>
12292 L:      linux-rdma@vger.kernel.org
12293 S:      Supported
12294 W:      http://www.openfabrics.org
12295 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
12297 F:      drivers/infiniband/ulp/srp/
12298 F:      include/scsi/srp.h
12299
12300 SCSI SG DRIVER
12301 M:      Doug Gilbert <dgilbert@interlog.com>
12302 L:      linux-scsi@vger.kernel.org
12303 W:      http://sg.danny.cz/sg
12304 S:      Maintained
12305 F:      Documentation/scsi/scsi-generic.txt
12306 F:      drivers/scsi/sg.c
12307 F:      include/scsi/sg.h
12308
12309 SCSI SUBSYSTEM
12310 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
12311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
12312 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
12313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
12314 L:      linux-scsi@vger.kernel.org
12315 S:      Maintained
12316 F:      Documentation/devicetree/bindings/scsi/
12317 F:      drivers/scsi/
12318 F:      include/scsi/
12319
12320 SCSI TAPE DRIVER
12321 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
12322 L:      linux-scsi@vger.kernel.org
12323 S:      Maintained
12324 F:      Documentation/scsi/st.txt
12325 F:      drivers/scsi/st.*
12326 F:      drivers/scsi/st_*.h
12327
12328 SCTP PROTOCOL
12329 M:      Vlad Yasevich <vyasevich@gmail.com>
12330 M:      Neil Horman <nhorman@tuxdriver.com>
12331 L:      linux-sctp@vger.kernel.org
12332 W:      http://lksctp.sourceforge.net
12333 S:      Maintained
12334 F:      Documentation/networking/sctp.txt
12335 F:      include/linux/sctp.h
12336 F:      include/uapi/linux/sctp.h
12337 F:      include/net/sctp/
12338 F:      net/sctp/
12339
12340 SCx200 CPU SUPPORT
12341 M:      Jim Cromie <jim.cromie@gmail.com>
12342 S:      Odd Fixes
12343 F:      Documentation/i2c/busses/scx200_acb
12344 F:      arch/x86/platform/scx200/
12345 F:      drivers/watchdog/scx200_wdt.c
12346 F:      drivers/i2c/busses/scx200*
12347 F:      drivers/mtd/maps/scx200_docflash.c
12348 F:      include/linux/scx200.h
12349
12350 SCx200 GPIO DRIVER
12351 M:      Jim Cromie <jim.cromie@gmail.com>
12352 S:      Maintained
12353 F:      drivers/char/scx200_gpio.c
12354 F:      include/linux/scx200_gpio.h
12355
12356 SCx200 HRT CLOCKSOURCE DRIVER
12357 M:      Jim Cromie <jim.cromie@gmail.com>
12358 S:      Maintained
12359 F:      drivers/clocksource/scx200_hrt.c
12360
12361 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
12362 M:      Sascha Sommer <saschasommer@freenet.de>
12363 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
12364 S:      Maintained
12365 F:      drivers/mmc/host/sdricoh_cs.c
12366
12367 SECURE COMPUTING
12368 M:      Kees Cook <keescook@chromium.org>
12369 R:      Andy Lutomirski <luto@amacapital.net>
12370 R:      Will Drewry <wad@chromium.org>
12371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
12372 S:      Supported
12373 F:      kernel/seccomp.c
12374 F:      include/uapi/linux/seccomp.h
12375 F:      include/linux/seccomp.h
12376 F:      tools/testing/selftests/seccomp/*
12377 F:      tools/testing/selftests/kselftest_harness.h
12378 F:      Documentation/userspace-api/seccomp_filter.rst
12379 K:      \bsecure_computing
12380 K:      \bTIF_SECCOMP\b
12381
12382 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
12383 M:      Al Cooper <alcooperx@gmail.com>
12384 L:      linux-mmc@vger.kernel.org
12385 L:      bcm-kernel-feedback-list@broadcom.com
12386 S:      Maintained
12387 F:      drivers/mmc/host/sdhci-brcmstb*
12388
12389 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
12390 M:      Adrian Hunter <adrian.hunter@intel.com>
12391 L:      linux-mmc@vger.kernel.org
12392 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
12393 S:      Maintained
12394 F:      drivers/mmc/host/sdhci*
12395 F:      include/linux/mmc/sdhci*
12396
12397 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
12398 M:      Ben Dooks <ben-linux@fluff.org>
12399 M:      Jaehoon Chung <jh80.chung@samsung.com>
12400 L:      linux-mmc@vger.kernel.org
12401 S:      Maintained
12402 F:      drivers/mmc/host/sdhci-s3c*
12403
12404 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
12405 M:      Viresh Kumar <vireshk@kernel.org>
12406 L:      linux-mmc@vger.kernel.org
12407 S:      Maintained
12408 F:      drivers/mmc/host/sdhci-spear.c
12409
12410 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
12411 M:      Kishon Vijay Abraham I <kishon@ti.com>
12412 L:      linux-mmc@vger.kernel.org
12413 S:      Maintained
12414 F:      drivers/mmc/host/sdhci-omap.c
12415
12416 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
12417 M:      Scott Bauer <scott.bauer@intel.com>
12418 M:      Jonathan Derrick <jonathan.derrick@intel.com>
12419 L:      linux-block@vger.kernel.org
12420 S:      Supported
12421 F:      block/sed*
12422 F:      block/opal_proto.h
12423 F:      include/linux/sed*
12424 F:      include/uapi/linux/sed*
12425
12426 SECURITY CONTACT
12427 M:      Security Officers <security@kernel.org>
12428 S:      Supported
12429
12430 SECURITY SUBSYSTEM
12431 M:      James Morris <jmorris@namei.org>
12432 M:      "Serge E. Hallyn" <serge@hallyn.com>
12433 L:      linux-security-module@vger.kernel.org (suggested Cc:)
12434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
12435 W:      http://kernsec.org/
12436 S:      Supported
12437 F:      security/
12438
12439 SELINUX SECURITY MODULE
12440 M:      Paul Moore <paul@paul-moore.com>
12441 M:      Stephen Smalley <sds@tycho.nsa.gov>
12442 M:      Eric Paris <eparis@parisplace.org>
12443 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
12444 W:      https://selinuxproject.org
12445 W:      https://github.com/SELinuxProject
12446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
12447 S:      Supported
12448 F:      include/linux/selinux*
12449 F:      security/selinux/
12450 F:      scripts/selinux/
12451 F:      Documentation/admin-guide/LSM/SELinux.rst
12452
12453 SENSABLE PHANTOM
12454 M:      Jiri Slaby <jirislaby@gmail.com>
12455 S:      Maintained
12456 F:      drivers/misc/phantom.c
12457 F:      include/uapi/linux/phantom.h
12458
12459 SERIAL DEVICE BUS
12460 M:      Rob Herring <robh@kernel.org>
12461 L:      linux-serial@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/devicetree/bindings/serial/slave-device.txt
12464 F:      drivers/tty/serdev/
12465 F:      include/linux/serdev.h
12466
12467 SERIAL DRIVERS
12468 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12469 L:      linux-serial@vger.kernel.org
12470 S:      Maintained
12471 F:      Documentation/devicetree/bindings/serial/
12472 F:      drivers/tty/serial/
12473
12474 SERIAL IR RECEIVER
12475 M:      Sean Young <sean@mess.org>
12476 L:      linux-media@vger.kernel.org
12477 S:      Maintained
12478 F:      drivers/media/rc/serial_ir.c
12479
12480 SFC NETWORK DRIVER
12481 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
12482 M:      Edward Cree <ecree@solarflare.com>
12483 M:      Bert Kenward <bkenward@solarflare.com>
12484 L:      netdev@vger.kernel.org
12485 S:      Supported
12486 F:      drivers/net/ethernet/sfc/
12487
12488 SGI GRU DRIVER
12489 M:      Dimitri Sivanich <sivanich@sgi.com>
12490 S:      Maintained
12491 F:      drivers/misc/sgi-gru/
12492
12493 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
12494 M:      Pat Gefre <pfg@sgi.com>
12495 L:      linux-ia64@vger.kernel.org
12496 S:      Supported
12497 F:      Documentation/ia64/serial.txt
12498 F:      drivers/tty/serial/ioc?_serial.c
12499 F:      include/linux/ioc?.h
12500
12501 SGI XP/XPC/XPNET DRIVER
12502 M:      Cliff Whickman <cpw@sgi.com>
12503 M:      Robin Holt <robinmholt@gmail.com>
12504 S:      Maintained
12505 F:      drivers/misc/sgi-xp/
12506
12507 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
12508 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
12509 L:      linux-s390@vger.kernel.org
12510 W:      http://www.ibm.com/developerworks/linux/linux390/
12511 S:      Supported
12512 F:      net/smc/
12513
12514 SH_VEU V4L2 MEM2MEM DRIVER
12515 L:      linux-media@vger.kernel.org
12516 S:      Orphan
12517 F:      drivers/media/platform/sh_veu.c
12518
12519 SH_VOU V4L2 OUTPUT DRIVER
12520 L:      linux-media@vger.kernel.org
12521 S:      Orphan
12522 F:      drivers/media/platform/sh_vou.c
12523 F:      include/media/drv-intf/sh_vou.h
12524
12525 SI2157 MEDIA DRIVER
12526 M:      Antti Palosaari <crope@iki.fi>
12527 L:      linux-media@vger.kernel.org
12528 W:      https://linuxtv.org
12529 W:      http://palosaari.fi/linux/
12530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12531 T:      git git://linuxtv.org/anttip/media_tree.git
12532 S:      Maintained
12533 F:      drivers/media/tuners/si2157*
12534
12535 SI2165 MEDIA DRIVER
12536 M:      Matthias Schwarzott <zzam@gentoo.org>
12537 L:      linux-media@vger.kernel.org
12538 W:      https://linuxtv.org
12539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12540 S:      Maintained
12541 F:      drivers/media/dvb-frontends/si2165*
12542
12543 SI2168 MEDIA DRIVER
12544 M:      Antti Palosaari <crope@iki.fi>
12545 L:      linux-media@vger.kernel.org
12546 W:      https://linuxtv.org
12547 W:      http://palosaari.fi/linux/
12548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12549 T:      git git://linuxtv.org/anttip/media_tree.git
12550 S:      Maintained
12551 F:      drivers/media/dvb-frontends/si2168*
12552
12553 SI470X FM RADIO RECEIVER I2C DRIVER
12554 M:      Hans Verkuil <hverkuil@xs4all.nl>
12555 L:      linux-media@vger.kernel.org
12556 T:      git git://linuxtv.org/media_tree.git
12557 W:      https://linuxtv.org
12558 S:      Odd Fixes
12559 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
12560
12561 SI470X FM RADIO RECEIVER USB DRIVER
12562 M:      Hans Verkuil <hverkuil@xs4all.nl>
12563 L:      linux-media@vger.kernel.org
12564 T:      git git://linuxtv.org/media_tree.git
12565 W:      https://linuxtv.org
12566 S:      Maintained
12567 F:      drivers/media/radio/si470x/radio-si470x-common.c
12568 F:      drivers/media/radio/si470x/radio-si470x.h
12569 F:      drivers/media/radio/si470x/radio-si470x-usb.c
12570
12571 SI4713 FM RADIO TRANSMITTER I2C DRIVER
12572 M:      Eduardo Valentin <edubezval@gmail.com>
12573 L:      linux-media@vger.kernel.org
12574 T:      git git://linuxtv.org/media_tree.git
12575 W:      https://linuxtv.org
12576 S:      Odd Fixes
12577 F:      drivers/media/radio/si4713/si4713.?
12578
12579 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
12580 M:      Eduardo Valentin <edubezval@gmail.com>
12581 L:      linux-media@vger.kernel.org
12582 T:      git git://linuxtv.org/media_tree.git
12583 W:      https://linuxtv.org
12584 S:      Odd Fixes
12585 F:      drivers/media/radio/si4713/radio-platform-si4713.c
12586
12587 SI4713 FM RADIO TRANSMITTER USB DRIVER
12588 M:      Hans Verkuil <hverkuil@xs4all.nl>
12589 L:      linux-media@vger.kernel.org
12590 T:      git git://linuxtv.org/media_tree.git
12591 W:      https://linuxtv.org
12592 S:      Maintained
12593 F:      drivers/media/radio/si4713/radio-usb-si4713.c
12594
12595 SIANO DVB DRIVER
12596 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12597 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12598 L:      linux-media@vger.kernel.org
12599 W:      https://linuxtv.org
12600 T:      git git://linuxtv.org/media_tree.git
12601 S:      Odd fixes
12602 F:      drivers/media/common/siano/
12603 F:      drivers/media/usb/siano/
12604 F:      drivers/media/usb/siano/
12605 F:      drivers/media/mmc/siano/
12606
12607 SILEAD TOUCHSCREEN DRIVER
12608 M:      Hans de Goede <hdegoede@redhat.com>
12609 L:      linux-input@vger.kernel.org
12610 L:      platform-driver-x86@vger.kernel.org
12611 S:      Maintained
12612 F:      drivers/input/touchscreen/silead.c
12613 F:      drivers/platform/x86/silead_dmi.c
12614
12615 SILICON MOTION SM712 FRAME BUFFER DRIVER
12616 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12617 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12618 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12619 L:      linux-fbdev@vger.kernel.org
12620 S:      Maintained
12621 F:      drivers/video/fbdev/sm712*
12622 F:      Documentation/fb/sm712fb.txt
12623
12624 SIMPLE FIRMWARE INTERFACE (SFI)
12625 M:      Len Brown <lenb@kernel.org>
12626 L:      sfi-devel@simplefirmware.org
12627 W:      http://simplefirmware.org/
12628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12629 S:      Supported
12630 F:      arch/x86/platform/sfi/
12631 F:      drivers/sfi/
12632 F:      include/linux/sfi*.h
12633
12634 SIMPLEFB FB DRIVER
12635 M:      Hans de Goede <hdegoede@redhat.com>
12636 L:      linux-fbdev@vger.kernel.org
12637 S:      Maintained
12638 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
12639 F:      drivers/video/fbdev/simplefb.c
12640 F:      include/linux/platform_data/simplefb.h
12641
12642 SIMTEC EB110ATX (Chalice CATS)
12643 P:      Ben Dooks
12644 P:      Vincent Sanders <vince@simtec.co.uk>
12645 M:      Simtec Linux Team <linux@simtec.co.uk>
12646 W:      http://www.simtec.co.uk/products/EB110ATX/
12647 S:      Supported
12648
12649 SIMTEC EB2410ITX (BAST)
12650 P:      Ben Dooks
12651 P:      Vincent Sanders <vince@simtec.co.uk>
12652 M:      Simtec Linux Team <linux@simtec.co.uk>
12653 W:      http://www.simtec.co.uk/products/EB2410ITX/
12654 S:      Supported
12655 F:      arch/arm/mach-s3c24xx/mach-bast.c
12656 F:      arch/arm/mach-s3c24xx/bast-ide.c
12657 F:      arch/arm/mach-s3c24xx/bast-irq.c
12658
12659 SIPHASH PRF ROUTINES
12660 M:      Jason A. Donenfeld <Jason@zx2c4.com>
12661 S:      Maintained
12662 F:      lib/siphash.c
12663 F:      lib/test_siphash.c
12664 F:      include/linux/siphash.h
12665
12666 SIOX
12667 M:      Gavin Schenk <g.schenk@eckelmann.de>
12668 M:      Uwe Kleine-König <kernel@pengutronix.de>
12669 S:      Supported
12670 F:      drivers/siox/*
12671 F:      include/trace/events/siox.h
12672
12673 SIS 190 ETHERNET DRIVER
12674 M:      Francois Romieu <romieu@fr.zoreil.com>
12675 L:      netdev@vger.kernel.org
12676 S:      Maintained
12677 F:      drivers/net/ethernet/sis/sis190.c
12678
12679 SIS 900/7016 FAST ETHERNET DRIVER
12680 M:      Daniele Venzano <venza@brownhat.org>
12681 W:      http://www.brownhat.org/sis900.html
12682 L:      netdev@vger.kernel.org
12683 S:      Maintained
12684 F:      drivers/net/ethernet/sis/sis900.*
12685
12686 SIS FRAMEBUFFER DRIVER
12687 M:      Thomas Winischhofer <thomas@winischhofer.net>
12688 W:      http://www.winischhofer.net/linuxsisvga.shtml
12689 S:      Maintained
12690 F:      Documentation/fb/sisfb.txt
12691 F:      drivers/video/fbdev/sis/
12692 F:      include/video/sisfb.h
12693
12694 SIS USB2VGA DRIVER
12695 M:      Thomas Winischhofer <thomas@winischhofer.net>
12696 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
12697 S:      Maintained
12698 F:      drivers/usb/misc/sisusbvga/
12699
12700 SLAB ALLOCATOR
12701 M:      Christoph Lameter <cl@linux.com>
12702 M:      Pekka Enberg <penberg@kernel.org>
12703 M:      David Rientjes <rientjes@google.com>
12704 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
12705 M:      Andrew Morton <akpm@linux-foundation.org>
12706 L:      linux-mm@kvack.org
12707 S:      Maintained
12708 F:      include/linux/sl?b*.h
12709 F:      mm/sl?b*
12710
12711 SLEEPABLE READ-COPY UPDATE (SRCU)
12712 M:      Lai Jiangshan <jiangshanlai@gmail.com>
12713 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12714 M:      Josh Triplett <josh@joshtriplett.org>
12715 R:      Steven Rostedt <rostedt@goodmis.org>
12716 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12717 L:      linux-kernel@vger.kernel.org
12718 W:      http://www.rdrop.com/users/paulmck/RCU/
12719 S:      Supported
12720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12721 F:      include/linux/srcu.h
12722 F:      kernel/rcu/srcu.c
12723
12724 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
12725 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
12726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12727 S:      Maintained
12728 F:      drivers/slimbus/
12729 F:      Documentation/devicetree/bindings/slimbus/
12730 F:      include/linux/slimbus.h
12731
12732 SMACK SECURITY MODULE
12733 M:      Casey Schaufler <casey@schaufler-ca.com>
12734 L:      linux-security-module@vger.kernel.org
12735 W:      http://schaufler-ca.com
12736 T:      git git://github.com/cschaufler/smack-next
12737 S:      Maintained
12738 F:      Documentation/admin-guide/LSM/Smack.rst
12739 F:      security/smack/
12740
12741 SMC91x ETHERNET DRIVER
12742 M:      Nicolas Pitre <nico@fluxnic.net>
12743 S:      Odd Fixes
12744 F:      drivers/net/ethernet/smsc/smc91x.*
12745
12746 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12747 M:      Sakari Ailus <sakari.ailus@iki.fi>
12748 L:      linux-media@vger.kernel.org
12749 S:      Maintained
12750 F:      drivers/media/i2c/smiapp/
12751 F:      include/media/i2c/smiapp.h
12752 F:      drivers/media/i2c/smiapp-pll.c
12753 F:      drivers/media/i2c/smiapp-pll.h
12754 F:      include/uapi/linux/smiapp.h
12755 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12756
12757 SMM665 HARDWARE MONITOR DRIVER
12758 M:      Guenter Roeck <linux@roeck-us.net>
12759 L:      linux-hwmon@vger.kernel.org
12760 S:      Maintained
12761 F:      Documentation/hwmon/smm665
12762 F:      drivers/hwmon/smm665.c
12763
12764 SMSC EMC2103 HARDWARE MONITOR DRIVER
12765 M:      Steve Glendinning <steve.glendinning@shawell.net>
12766 L:      linux-hwmon@vger.kernel.org
12767 S:      Maintained
12768 F:      Documentation/hwmon/emc2103
12769 F:      drivers/hwmon/emc2103.c
12770
12771 SMSC SCH5627 HARDWARE MONITOR DRIVER
12772 M:      Hans de Goede <hdegoede@redhat.com>
12773 L:      linux-hwmon@vger.kernel.org
12774 S:      Supported
12775 F:      Documentation/hwmon/sch5627
12776 F:      drivers/hwmon/sch5627.c
12777
12778 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12779 M:      Steve Glendinning <steve.glendinning@shawell.net>
12780 L:      linux-fbdev@vger.kernel.org
12781 S:      Maintained
12782 F:      drivers/video/fbdev/smscufx.c
12783
12784 SMSC47B397 HARDWARE MONITOR DRIVER
12785 M:      Jean Delvare <jdelvare@suse.com>
12786 L:      linux-hwmon@vger.kernel.org
12787 S:      Maintained
12788 F:      Documentation/hwmon/smsc47b397
12789 F:      drivers/hwmon/smsc47b397.c
12790
12791 SMSC911x ETHERNET DRIVER
12792 M:      Steve Glendinning <steve.glendinning@shawell.net>
12793 L:      netdev@vger.kernel.org
12794 S:      Maintained
12795 F:      include/linux/smsc911x.h
12796 F:      drivers/net/ethernet/smsc/smsc911x.*
12797
12798 SMSC9420 PCI ETHERNET DRIVER
12799 M:      Steve Glendinning <steve.glendinning@shawell.net>
12800 L:      netdev@vger.kernel.org
12801 S:      Maintained
12802 F:      drivers/net/ethernet/smsc/smsc9420.*
12803
12804 SOC-CAMERA V4L2 SUBSYSTEM
12805 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12806 L:      linux-media@vger.kernel.org
12807 T:      git git://linuxtv.org/media_tree.git
12808 S:      Maintained
12809 F:      include/media/soc*
12810 F:      drivers/media/i2c/soc_camera/
12811 F:      drivers/media/platform/soc_camera/
12812
12813 SOCIONEXT UNIPHIER SOUND DRIVER
12814 M:      Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>
12815 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12816 S:      Maintained
12817 F:      sound/soc/uniphier/
12818
12819 SOEKRIS NET48XX LED SUPPORT
12820 M:      Chris Boot <bootc@bootc.net>
12821 S:      Maintained
12822 F:      drivers/leds/leds-net48xx.c
12823
12824 SOFT-ROCE DRIVER (rxe)
12825 M:      Moni Shoua <monis@mellanox.com>
12826 L:      linux-rdma@vger.kernel.org
12827 S:      Supported
12828 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
12829 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12830 F:      drivers/infiniband/sw/rxe/
12831 F:      include/uapi/rdma/rdma_user_rxe.h
12832
12833 SOFTLOGIC 6x10 MPEG CODEC
12834 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12835 M:      Anton Sviridenko <anton@corp.bluecherry.net>
12836 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12837 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12838 M:      Ismael Luceno <ismael@iodev.co.uk>
12839 L:      linux-media@vger.kernel.org
12840 S:      Supported
12841 F:      drivers/media/pci/solo6x10/
12842
12843 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
12844 M:      James Morse <james.morse@arm.com>
12845 L:      linux-arm-kernel@lists.infradead.org
12846 S:      Maintained
12847 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
12848 F:      drivers/firmware/arm_sdei.c
12849 F:      include/linux/sdei.h
12850 F:      include/uapi/linux/sdei.h
12851
12852 SOFTWARE RAID (Multiple Disks) SUPPORT
12853 M:      Shaohua Li <shli@kernel.org>
12854 L:      linux-raid@vger.kernel.org
12855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12856 S:      Supported
12857 F:      drivers/md/Makefile
12858 F:      drivers/md/Kconfig
12859 F:      drivers/md/md*
12860 F:      drivers/md/raid*
12861 F:      include/linux/raid/
12862 F:      include/uapi/linux/raid/
12863
12864 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
12865 M:      Jassi Brar <jaswinder.singh@linaro.org>
12866 L:      netdev@vger.kernel.org
12867 S:      Maintained
12868 F:      drivers/net/ethernet/socionext/netsec.c
12869 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
12870
12871 SOLIDRUN CLEARFOG SUPPORT
12872 M:      Russell King <linux@armlinux.org.uk>
12873 S:      Maintained
12874 F:      arch/arm/boot/dts/armada-388-clearfog*
12875 F:      arch/arm/boot/dts/armada-38x-solidrun-*
12876
12877 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
12878 M:      Russell King <linux@armlinux.org.uk>
12879 S:      Maintained
12880 F:      arch/arm/boot/dts/imx6*-cubox-i*
12881 F:      arch/arm/boot/dts/imx6*-hummingboard*
12882 F:      arch/arm/boot/dts/imx6*-sr-*
12883
12884 SONIC NETWORK DRIVER
12885 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12886 L:      netdev@vger.kernel.org
12887 S:      Maintained
12888 F:      drivers/net/ethernet/natsemi/sonic.*
12889
12890 SONICS SILICON BACKPLANE DRIVER (SSB)
12891 M:      Michael Buesch <m@bues.ch>
12892 L:      linux-wireless@vger.kernel.org
12893 S:      Maintained
12894 F:      drivers/ssb/
12895 F:      include/linux/ssb/
12896
12897 SONY IMX274 SENSOR DRIVER
12898 M:      Leon Luo <leonl@leopardimaging.com>
12899 L:      linux-media@vger.kernel.org
12900 T:      git git://linuxtv.org/media_tree.git
12901 S:      Maintained
12902 F:      drivers/media/i2c/imx274.c
12903 F:      Documentation/devicetree/bindings/media/i2c/imx274.txt
12904
12905 SONY MEMORYSTICK CARD SUPPORT
12906 M:      Alex Dubov <oakad@yahoo.com>
12907 W:      http://tifmxx.berlios.de/
12908 S:      Maintained
12909 F:      drivers/memstick/host/tifm_ms.c
12910
12911 SONY MEMORYSTICK STANDARD SUPPORT
12912 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12913 S:      Maintained
12914 F:      drivers/memstick/core/ms_block.*
12915
12916 SONY VAIO CONTROL DEVICE DRIVER
12917 M:      Mattia Dongili <malattia@linux.it>
12918 L:      platform-driver-x86@vger.kernel.org
12919 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12920 S:      Maintained
12921 F:      Documentation/laptops/sony-laptop.txt
12922 F:      drivers/char/sonypi.c
12923 F:      drivers/platform/x86/sony-laptop.c
12924 F:      include/linux/sony-laptop.h
12925
12926 SOUND
12927 M:      Jaroslav Kysela <perex@perex.cz>
12928 M:      Takashi Iwai <tiwai@suse.com>
12929 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12930 W:      http://www.alsa-project.org/
12931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12932 T:      git git://git.alsa-project.org/alsa-kernel.git
12933 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
12934 S:      Maintained
12935 F:      Documentation/sound/
12936 F:      include/sound/
12937 F:      include/uapi/sound/
12938 F:      sound/
12939
12940 SOUND - COMPRESSED AUDIO
12941 M:      Vinod Koul <vinod.koul@intel.com>
12942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12944 S:      Supported
12945 F:      Documentation/sound/alsa/compress_offload.txt
12946 F:      include/sound/compress_driver.h
12947 F:      include/uapi/sound/compress_*
12948 F:      sound/core/compress_offload.c
12949 F:      sound/soc/soc-compress.c
12950
12951 SOUND - DMAENGINE HELPERS
12952 M:      Lars-Peter Clausen <lars@metafoo.de>
12953 S:      Supported
12954 F:      include/sound/dmaengine_pcm.h
12955 F:      sound/core/pcm_dmaengine.c
12956 F:      sound/soc/soc-generic-dmaengine-pcm.c
12957
12958 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12959 M:      Liam Girdwood <lgirdwood@gmail.com>
12960 M:      Mark Brown <broonie@kernel.org>
12961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12963 W:      http://alsa-project.org/main/index.php/ASoC
12964 S:      Supported
12965 F:      Documentation/devicetree/bindings/sound/
12966 F:      Documentation/sound/alsa/soc/
12967 F:      sound/soc/
12968 F:      include/sound/soc*
12969
12970 SOUNDWIRE SUBSYSTEM
12971 M:      Vinod Koul <vinod.koul@intel.com>
12972 M:      Sanyog Kale <sanyog.r.kale@intel.com>
12973 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
12974 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12975 S:      Supported
12976 F:      Documentation/driver-api/soundwire/
12977 F:      drivers/soundwire/
12978 F:      include/linux/soundwire/
12979
12980 SP2 MEDIA DRIVER
12981 M:      Olli Salonen <olli.salonen@iki.fi>
12982 L:      linux-media@vger.kernel.org
12983 W:      https://linuxtv.org
12984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12985 S:      Maintained
12986 F:      drivers/media/dvb-frontends/sp2*
12987
12988 SPARC + UltraSPARC (sparc/sparc64)
12989 M:      "David S. Miller" <davem@davemloft.net>
12990 L:      sparclinux@vger.kernel.org
12991 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12994 S:      Maintained
12995 F:      arch/sparc/
12996 F:      drivers/sbus/
12997
12998 SPARC SERIAL DRIVERS
12999 M:      "David S. Miller" <davem@davemloft.net>
13000 L:      sparclinux@vger.kernel.org
13001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
13002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
13003 S:      Maintained
13004 F:      include/linux/sunserialcore.h
13005 F:      drivers/tty/serial/suncore.c
13006 F:      drivers/tty/serial/sunhv.c
13007 F:      drivers/tty/serial/sunsab.c
13008 F:      drivers/tty/serial/sunsab.h
13009 F:      drivers/tty/serial/sunsu.c
13010 F:      drivers/tty/serial/sunzilog.c
13011 F:      drivers/tty/serial/sunzilog.h
13012 F:      drivers/tty/vcc.c
13013
13014 SPARSE CHECKER
13015 M:      "Christopher Li" <sparse@chrisli.org>
13016 L:      linux-sparse@vger.kernel.org
13017 W:      https://sparse.wiki.kernel.org/
13018 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
13019 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
13020 S:      Maintained
13021 F:      include/linux/compiler.h
13022
13023 SPEAR CLOCK FRAMEWORK SUPPORT
13024 M:      Viresh Kumar <vireshk@kernel.org>
13025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13026 W:      http://www.st.com/spear
13027 S:      Maintained
13028 F:      drivers/clk/spear/
13029
13030 SPEAR PLATFORM SUPPORT
13031 M:      Viresh Kumar <vireshk@kernel.org>
13032 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
13033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13034 W:      http://www.st.com/spear
13035 S:      Maintained
13036 F:      arch/arm/boot/dts/spear*
13037 F:      arch/arm/mach-spear/
13038
13039 SPI NOR SUBSYSTEM
13040 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
13041 M:      Marek Vasut <marek.vasut@gmail.com>
13042 L:      linux-mtd@lists.infradead.org
13043 W:      http://www.linux-mtd.infradead.org/
13044 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13045 T:      git git://git.infradead.org/linux-mtd.git spi-nor/fixes
13046 T:      git git://git.infradead.org/linux-mtd.git spi-nor/next
13047 S:      Maintained
13048 F:      drivers/mtd/spi-nor/
13049 F:      include/linux/mtd/spi-nor.h
13050
13051 SPI SUBSYSTEM
13052 M:      Mark Brown <broonie@kernel.org>
13053 L:      linux-spi@vger.kernel.org
13054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
13055 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
13056 S:      Maintained
13057 F:      Documentation/devicetree/bindings/spi/
13058 F:      Documentation/spi/
13059 F:      drivers/spi/
13060 F:      include/linux/spi/
13061 F:      include/uapi/linux/spi/
13062 F:      tools/spi/
13063
13064 SPIDERNET NETWORK DRIVER for CELL
13065 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
13066 L:      netdev@vger.kernel.org
13067 S:      Supported
13068 F:      Documentation/networking/spider_net.txt
13069 F:      drivers/net/ethernet/toshiba/spider_net*
13070
13071 SPMI SUBSYSTEM
13072 R:      Stephen Boyd <sboyd@kernel.org>
13073 L:      linux-arm-msm@vger.kernel.org
13074 F:      Documentation/devicetree/bindings/spmi/
13075 F:      drivers/spmi/
13076 F:      include/dt-bindings/spmi/spmi.h
13077 F:      include/linux/spmi.h
13078 F:      include/trace/events/spmi.h
13079
13080 SPU FILE SYSTEM
13081 M:      Jeremy Kerr <jk@ozlabs.org>
13082 L:      linuxppc-dev@lists.ozlabs.org
13083 W:      http://www.ibm.com/developerworks/power/cell/
13084 S:      Supported
13085 F:      Documentation/filesystems/spufs.txt
13086 F:      arch/powerpc/platforms/cell/spufs/
13087
13088 SQUASHFS FILE SYSTEM
13089 M:      Phillip Lougher <phillip@squashfs.org.uk>
13090 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
13091 W:      http://squashfs.org.uk
13092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
13093 S:      Maintained
13094 F:      Documentation/filesystems/squashfs.txt
13095 F:      fs/squashfs/
13096
13097 SRM (Alpha) environment access
13098 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
13099 S:      Maintained
13100 F:      arch/alpha/kernel/srm_env.c
13101
13102 STABLE BRANCH
13103 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13104 L:      stable@vger.kernel.org
13105 S:      Supported
13106 F:      Documentation/process/stable-kernel-rules.rst
13107
13108 STAGING - ATOMISP DRIVER
13109 M:      Alan Cox <alan@linux.intel.com>
13110 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13111 L:      linux-media@vger.kernel.org
13112 S:      Maintained
13113 F:      drivers/staging/media/atomisp/
13114
13115 STAGING - COMEDI
13116 M:      Ian Abbott <abbotti@mev.co.uk>
13117 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
13118 S:      Odd Fixes
13119 F:      drivers/staging/comedi/
13120
13121 STAGING - FLARION FT1000 DRIVERS
13122 M:      Marek Belisko <marek.belisko@gmail.com>
13123 S:      Odd Fixes
13124 F:      drivers/staging/ft1000/
13125
13126 STAGING - INDUSTRIAL IO
13127 M:      Jonathan Cameron <jic23@kernel.org>
13128 L:      linux-iio@vger.kernel.org
13129 S:      Odd Fixes
13130 F:      Documentation/devicetree/bindings/staging/iio/
13131 F:      drivers/staging/iio/
13132
13133 STAGING - LUSTRE PARALLEL FILESYSTEM
13134 M:      Oleg Drokin <oleg.drokin@intel.com>
13135 M:      Andreas Dilger <andreas.dilger@intel.com>
13136 M:      James Simmons <jsimmons@infradead.org>
13137 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
13138 W:      http://wiki.lustre.org/
13139 S:      Maintained
13140 F:      drivers/staging/lustre
13141
13142 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
13143 M:      Marc Dietrich <marvin24@gmx.de>
13144 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
13145 L:      linux-tegra@vger.kernel.org
13146 S:      Maintained
13147 F:      drivers/staging/nvec/
13148
13149 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
13150 M:      Jens Frederich <jfrederich@gmail.com>
13151 M:      Daniel Drake <dsd@laptop.org>
13152 M:      Jon Nettleton <jon.nettleton@gmail.com>
13153 W:      http://wiki.laptop.org/go/DCON
13154 S:      Maintained
13155 F:      drivers/staging/olpc_dcon/
13156
13157 STAGING - REALTEK RTL8712U DRIVERS
13158 M:      Larry Finger <Larry.Finger@lwfinger.net>
13159 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
13160 S:      Odd Fixes
13161 F:      drivers/staging/rtl8712/
13162
13163 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
13164 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
13165 M:      Teddy Wang <teddy.wang@siliconmotion.com>
13166 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
13167 L:      linux-fbdev@vger.kernel.org
13168 S:      Maintained
13169 F:      drivers/staging/sm750fb/
13170
13171 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
13172 M:      William Hubbs <w.d.hubbs@gmail.com>
13173 M:      Chris Brannon <chris@the-brannons.com>
13174 M:      Kirk Reiser <kirk@reisers.ca>
13175 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
13176 L:      speakup@linux-speakup.org
13177 W:      http://www.linux-speakup.org/
13178 S:      Odd Fixes
13179 F:      drivers/staging/speakup/
13180
13181 STAGING - VIA VT665X DRIVERS
13182 M:      Forest Bond <forest@alittletooquiet.net>
13183 S:      Odd Fixes
13184 F:      drivers/staging/vt665?/
13185
13186 STAGING - WILC1000 WIFI DRIVER
13187 M:      Aditya Shankar <aditya.shankar@microchip.com>
13188 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
13189 L:      linux-wireless@vger.kernel.org
13190 S:      Supported
13191 F:      drivers/staging/wilc1000/
13192
13193 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
13194 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
13195 S:      Odd Fixes
13196 F:      drivers/staging/xgifb/
13197
13198 STAGING SUBSYSTEM
13199 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
13201 L:      devel@driverdev.osuosl.org
13202 S:      Supported
13203 F:      drivers/staging/
13204
13205 STARFIRE/DURALAN NETWORK DRIVER
13206 M:      Ion Badulescu <ionut@badula.org>
13207 S:      Odd Fixes
13208 F:      drivers/net/ethernet/adaptec/starfire*
13209
13210 STEC S1220 SKD DRIVER
13211 M:      Bart Van Assche <bart.vanassche@wdc.com>
13212 L:      linux-block@vger.kernel.org
13213 S:      Maintained
13214 F:      drivers/block/skd*[ch]
13215
13216 STI CEC DRIVER
13217 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
13218 S:      Maintained
13219 F:      drivers/staging/media/st-cec/
13220 F:      Documentation/devicetree/bindings/media/stih-cec.txt
13221
13222 STK1160 USB VIDEO CAPTURE DRIVER
13223 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13224 L:      linux-media@vger.kernel.org
13225 T:      git git://linuxtv.org/media_tree.git
13226 S:      Maintained
13227 F:      drivers/media/usb/stk1160/
13228
13229 STMMAC ETHERNET DRIVER
13230 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
13231 M:      Alexandre Torgue <alexandre.torgue@st.com>
13232 L:      netdev@vger.kernel.org
13233 W:      http://www.stlinux.com
13234 S:      Supported
13235 F:      drivers/net/ethernet/stmicro/stmmac/
13236
13237 SUN3/3X
13238 M:      Sam Creasey <sammy@sammy.net>
13239 W:      http://sammy.net/sun3/
13240 S:      Maintained
13241 F:      arch/m68k/kernel/*sun3*
13242 F:      arch/m68k/sun3*/
13243 F:      arch/m68k/include/asm/sun3*
13244 F:      drivers/net/ethernet/i825xx/sun3*
13245
13246 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
13247 M:      Hans de Goede <hdegoede@redhat.com>
13248 L:      linux-input@vger.kernel.org
13249 S:      Maintained
13250 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
13251 F:      drivers/input/keyboard/sun4i-lradc-keys.c
13252
13253 SUNDANCE NETWORK DRIVER
13254 M:      Denis Kirjanov <kda@linux-powerpc.org>
13255 L:      netdev@vger.kernel.org
13256 S:      Maintained
13257 F:      drivers/net/ethernet/dlink/sundance.c
13258
13259 SUPERH
13260 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
13261 M:      Rich Felker <dalias@libc.org>
13262 L:      linux-sh@vger.kernel.org
13263 Q:      http://patchwork.kernel.org/project/linux-sh/list/
13264 S:      Maintained
13265 F:      Documentation/sh/
13266 F:      arch/sh/
13267 F:      drivers/sh/
13268
13269 SUSPEND TO RAM
13270 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
13271 M:      Len Brown <len.brown@intel.com>
13272 M:      Pavel Machek <pavel@ucw.cz>
13273 L:      linux-pm@vger.kernel.org
13274 B:      https://bugzilla.kernel.org
13275 S:      Supported
13276 F:      Documentation/power/
13277 F:      arch/x86/kernel/acpi/
13278 F:      drivers/base/power/
13279 F:      kernel/power/
13280 F:      include/linux/suspend.h
13281 F:      include/linux/freezer.h
13282 F:      include/linux/pm.h
13283
13284 SVGA HANDLING
13285 M:      Martin Mares <mj@ucw.cz>
13286 L:      linux-video@atrey.karlin.mff.cuni.cz
13287 S:      Maintained
13288 F:      Documentation/svga.txt
13289 F:      arch/x86/boot/video*
13290
13291 SWIOTLB SUBSYSTEM
13292 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13293 L:      iommu@lists.linux-foundation.org
13294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
13295 S:      Supported
13296 F:      lib/swiotlb.c
13297 F:      arch/*/kernel/pci-swiotlb.c
13298 F:      include/linux/swiotlb.h
13299
13300 SWITCHDEV
13301 M:      Jiri Pirko <jiri@resnulli.us>
13302 M:      Ivan Vecera <ivecera@redhat.com>
13303 L:      netdev@vger.kernel.org
13304 S:      Supported
13305 F:      net/switchdev/
13306 F:      include/net/switchdev.h
13307
13308 SYNC FILE FRAMEWORK
13309 M:      Sumit Semwal <sumit.semwal@linaro.org>
13310 R:      Gustavo Padovan <gustavo@padovan.org>
13311 S:      Maintained
13312 L:      linux-media@vger.kernel.org
13313 L:      dri-devel@lists.freedesktop.org
13314 F:      drivers/dma-buf/sync_*
13315 F:      drivers/dma-buf/dma-fence*
13316 F:      drivers/dma-buf/sw_sync.c
13317 F:      include/linux/sync_file.h
13318 F:      include/uapi/linux/sync_file.h
13319 F:      Documentation/sync_file.txt
13320 T:      git git://anongit.freedesktop.org/drm/drm-misc
13321
13322 SYNOPSYS ARC ARCHITECTURE
13323 M:      Vineet Gupta <vgupta@synopsys.com>
13324 L:      linux-snps-arc@lists.infradead.org
13325 S:      Supported
13326 F:      arch/arc/
13327 F:      Documentation/devicetree/bindings/arc/*
13328 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
13329 F:      drivers/clocksource/arc_timer.c
13330 F:      drivers/tty/serial/arc_uart.c
13331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
13332
13333 SYNOPSYS ARC HSDK SDP pll clock driver
13334 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13335 S:      Supported
13336 F:      drivers/clk/clk-hsdk-pll.c
13337 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
13338
13339 SYNOPSYS ARC SDP clock driver
13340 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13341 S:      Supported
13342 F:      drivers/clk/axs10x/*
13343 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
13344
13345 SYNOPSYS ARC SDP platform support
13346 M:      Alexey Brodkin <abrodkin@synopsys.com>
13347 S:      Supported
13348 F:      arch/arc/plat-axs10x
13349 F:      arch/arc/boot/dts/ax*
13350 F:      Documentation/devicetree/bindings/arc/axs10*
13351
13352 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
13353 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13354 S:      Supported
13355 F:      drivers/reset/reset-axs10x.c
13356 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
13357
13358 SYNOPSYS DESIGNWARE 8250 UART DRIVER
13359 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13360 S:      Maintained
13361 F:      drivers/tty/serial/8250/8250_dw.c
13362
13363 SYNOPSYS DESIGNWARE APB GPIO DRIVER
13364 M:      Hoan Tran <hotran@apm.com>
13365 L:      linux-gpio@vger.kernel.org
13366 S:      Maintained
13367 F:      drivers/gpio/gpio-dwapb.c
13368 F:      Documentation/devicetree/bindings/gpio/snps-dwapb-gpio.txt
13369
13370 SYNOPSYS DESIGNWARE DMAC DRIVER
13371 M:      Viresh Kumar <vireshk@kernel.org>
13372 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13373 S:      Maintained
13374 F:      include/linux/dma/dw.h
13375 F:      include/linux/platform_data/dma-dw.h
13376 F:      drivers/dma/dw/
13377
13378 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
13379 M:      Jose Abreu <Jose.Abreu@synopsys.com>
13380 L:      netdev@vger.kernel.org
13381 S:      Supported
13382 F:      drivers/net/ethernet/synopsys/
13383
13384 SYNOPSYS DESIGNWARE I2C DRIVER
13385 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
13386 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13387 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
13388 L:      linux-i2c@vger.kernel.org
13389 S:      Maintained
13390 F:      drivers/i2c/busses/i2c-designware-*
13391 F:      include/linux/platform_data/i2c-designware.h
13392
13393 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
13394 M:      Jaehoon Chung <jh80.chung@samsung.com>
13395 L:      linux-mmc@vger.kernel.org
13396 S:      Maintained
13397 F:      drivers/mmc/host/dw_mmc*
13398
13399 SYNOPSYS HSDK RESET CONTROLLER DRIVER
13400 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13401 S:      Supported
13402 F:      drivers/reset/reset-hsdk.c
13403 F:      include/dt-bindings/reset/snps,hsdk-reset.h
13404 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
13405
13406 SYSTEM CONFIGURATION (SYSCON)
13407 M:      Lee Jones <lee.jones@linaro.org>
13408 M:      Arnd Bergmann <arnd@arndb.de>
13409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13410 S:      Supported
13411 F:      drivers/mfd/syscon.c
13412
13413 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
13414 M:      Sudeep Holla <sudeep.holla@arm.com>
13415 L:      linux-arm-kernel@lists.infradead.org
13416 S:      Maintained
13417 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
13418 F:      drivers/clk/clk-scpi.c
13419 F:      drivers/cpufreq/scpi-cpufreq.c
13420 F:      drivers/firmware/arm_scpi.c
13421 F:      include/linux/scpi_protocol.h
13422
13423 SYSTEM RESET/SHUTDOWN DRIVERS
13424 M:      Sebastian Reichel <sre@kernel.org>
13425 L:      linux-pm@vger.kernel.org
13426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
13427 S:      Maintained
13428 F:      Documentation/devicetree/bindings/power/reset/
13429 F:      drivers/power/reset/
13430
13431 SYSTEM TRACE MODULE CLASS
13432 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
13433 S:      Maintained
13434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
13435 F:      Documentation/trace/stm.txt
13436 F:      drivers/hwtracing/stm/
13437 F:      include/linux/stm.h
13438 F:      include/uapi/linux/stm.h
13439
13440 SYSV FILESYSTEM
13441 M:      Christoph Hellwig <hch@infradead.org>
13442 S:      Maintained
13443 F:      Documentation/filesystems/sysv-fs.txt
13444 F:      fs/sysv/
13445 F:      include/linux/sysv_fs.h
13446
13447 TARGET SUBSYSTEM
13448 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
13449 L:      linux-scsi@vger.kernel.org
13450 L:      target-devel@vger.kernel.org
13451 W:      http://www.linux-iscsi.org
13452 W:      http://groups.google.com/group/linux-iscsi-target-dev
13453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
13454 S:      Supported
13455 F:      drivers/target/
13456 F:      include/target/
13457 F:      Documentation/target/
13458
13459 TASKSTATS STATISTICS INTERFACE
13460 M:      Balbir Singh <bsingharora@gmail.com>
13461 S:      Maintained
13462 F:      Documentation/accounting/taskstats*
13463 F:      include/linux/taskstats*
13464 F:      kernel/taskstats.c
13465
13466 TC subsystem
13467 M:      Jamal Hadi Salim <jhs@mojatatu.com>
13468 M:      Cong Wang <xiyou.wangcong@gmail.com>
13469 M:      Jiri Pirko <jiri@resnulli.us>
13470 L:      netdev@vger.kernel.org
13471 S:      Maintained
13472 F:      include/net/pkt_cls.h
13473 F:      include/net/pkt_sched.h
13474 F:      include/net/tc_act/
13475 F:      include/uapi/linux/pkt_cls.h
13476 F:      include/uapi/linux/pkt_sched.h
13477 F:      include/uapi/linux/tc_act/
13478 F:      include/uapi/linux/tc_ematch/
13479 F:      net/sched/
13480
13481 TCP LOW PRIORITY MODULE
13482 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
13483 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
13484 W:      http://tcp-lp-mod.sourceforge.net/
13485 S:      Maintained
13486 F:      net/ipv4/tcp_lp.c
13487
13488 TDA10071 MEDIA DRIVER
13489 M:      Antti Palosaari <crope@iki.fi>
13490 L:      linux-media@vger.kernel.org
13491 W:      https://linuxtv.org
13492 W:      http://palosaari.fi/linux/
13493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13494 T:      git git://linuxtv.org/anttip/media_tree.git
13495 S:      Maintained
13496 F:      drivers/media/dvb-frontends/tda10071*
13497
13498 TDA18212 MEDIA DRIVER
13499 M:      Antti Palosaari <crope@iki.fi>
13500 L:      linux-media@vger.kernel.org
13501 W:      https://linuxtv.org
13502 W:      http://palosaari.fi/linux/
13503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13504 T:      git git://linuxtv.org/anttip/media_tree.git
13505 S:      Maintained
13506 F:      drivers/media/tuners/tda18212*
13507
13508 TDA18218 MEDIA DRIVER
13509 M:      Antti Palosaari <crope@iki.fi>
13510 L:      linux-media@vger.kernel.org
13511 W:      https://linuxtv.org
13512 W:      http://palosaari.fi/linux/
13513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13514 T:      git git://linuxtv.org/anttip/media_tree.git
13515 S:      Maintained
13516 F:      drivers/media/tuners/tda18218*
13517
13518 TDA18250 MEDIA DRIVER
13519 M:      Olli Salonen <olli.salonen@iki.fi>
13520 L:      linux-media@vger.kernel.org
13521 W:      https://linuxtv.org
13522 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13523 T:      git git://linuxtv.org/media_tree.git
13524 S:      Maintained
13525 F:      drivers/media/tuners/tda18250*
13526
13527 TDA18271 MEDIA DRIVER
13528 M:      Michael Krufky <mkrufky@linuxtv.org>
13529 L:      linux-media@vger.kernel.org
13530 W:      https://linuxtv.org
13531 W:      http://github.com/mkrufky
13532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13533 T:      git git://linuxtv.org/mkrufky/tuners.git
13534 S:      Maintained
13535 F:      drivers/media/tuners/tda18271*
13536
13537 TDA827x MEDIA DRIVER
13538 M:      Michael Krufky <mkrufky@linuxtv.org>
13539 L:      linux-media@vger.kernel.org
13540 W:      https://linuxtv.org
13541 W:      http://github.com/mkrufky
13542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13543 T:      git git://linuxtv.org/mkrufky/tuners.git
13544 S:      Maintained
13545 F:      drivers/media/tuners/tda8290.*
13546
13547 TDA8290 MEDIA DRIVER
13548 M:      Michael Krufky <mkrufky@linuxtv.org>
13549 L:      linux-media@vger.kernel.org
13550 W:      https://linuxtv.org
13551 W:      http://github.com/mkrufky
13552 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13553 T:      git git://linuxtv.org/mkrufky/tuners.git
13554 S:      Maintained
13555 F:      drivers/media/tuners/tda8290.*
13556
13557 TDA9840 MEDIA DRIVER
13558 M:      Hans Verkuil <hverkuil@xs4all.nl>
13559 L:      linux-media@vger.kernel.org
13560 T:      git git://linuxtv.org/media_tree.git
13561 W:      https://linuxtv.org
13562 S:      Maintained
13563 F:      drivers/media/i2c/tda9840*
13564
13565 TEA5761 TUNER DRIVER
13566 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13567 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13568 L:      linux-media@vger.kernel.org
13569 W:      https://linuxtv.org
13570 T:      git git://linuxtv.org/media_tree.git
13571 S:      Odd fixes
13572 F:      drivers/media/tuners/tea5761.*
13573
13574 TEA5767 TUNER DRIVER
13575 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13576 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13577 L:      linux-media@vger.kernel.org
13578 W:      https://linuxtv.org
13579 T:      git git://linuxtv.org/media_tree.git
13580 S:      Maintained
13581 F:      drivers/media/tuners/tea5767.*
13582
13583 TEA6415C MEDIA DRIVER
13584 M:      Hans Verkuil <hverkuil@xs4all.nl>
13585 L:      linux-media@vger.kernel.org
13586 T:      git git://linuxtv.org/media_tree.git
13587 W:      https://linuxtv.org
13588 S:      Maintained
13589 F:      drivers/media/i2c/tea6415c*
13590
13591 TEA6420 MEDIA DRIVER
13592 M:      Hans Verkuil <hverkuil@xs4all.nl>
13593 L:      linux-media@vger.kernel.org
13594 T:      git git://linuxtv.org/media_tree.git
13595 W:      https://linuxtv.org
13596 S:      Maintained
13597 F:      drivers/media/i2c/tea6420*
13598
13599 TEAM DRIVER
13600 M:      Jiri Pirko <jiri@resnulli.us>
13601 L:      netdev@vger.kernel.org
13602 S:      Supported
13603 F:      drivers/net/team/
13604 F:      include/linux/if_team.h
13605 F:      include/uapi/linux/if_team.h
13606
13607 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
13608 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
13609 S:      Maintained
13610 F:      arch/x86/platform/ts5500/
13611
13612 TECHNOTREND USB IR RECEIVER
13613 M:      Sean Young <sean@mess.org>
13614 L:      linux-media@vger.kernel.org
13615 S:      Maintained
13616 F:      drivers/media/rc/ttusbir.c
13617
13618 TEE SUBSYSTEM
13619 M:      Jens Wiklander <jens.wiklander@linaro.org>
13620 S:      Maintained
13621 F:      include/linux/tee_drv.h
13622 F:      include/uapi/linux/tee.h
13623 F:      drivers/tee/
13624 F:      Documentation/tee.txt
13625
13626 TEGRA ARCHITECTURE SUPPORT
13627 M:      Thierry Reding <thierry.reding@gmail.com>
13628 M:      Jonathan Hunter <jonathanh@nvidia.com>
13629 L:      linux-tegra@vger.kernel.org
13630 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
13631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
13632 S:      Supported
13633 N:      [^a-z]tegra
13634
13635 TEGRA CLOCK DRIVER
13636 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
13637 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
13638 S:      Supported
13639 F:      drivers/clk/tegra/
13640
13641 TEGRA DMA DRIVERS
13642 M:      Laxman Dewangan <ldewangan@nvidia.com>
13643 M:      Jon Hunter <jonathanh@nvidia.com>
13644 S:      Supported
13645 F:      drivers/dma/tegra*
13646
13647 TEGRA I2C DRIVER
13648 M:      Laxman Dewangan <ldewangan@nvidia.com>
13649 S:      Supported
13650 F:      drivers/i2c/busses/i2c-tegra.c
13651
13652 TEGRA IOMMU DRIVERS
13653 M:      Thierry Reding <thierry.reding@gmail.com>
13654 L:      linux-tegra@vger.kernel.org
13655 S:      Supported
13656 F:      drivers/iommu/tegra*
13657
13658 TEGRA KBC DRIVER
13659 M:      Rakesh Iyer <riyer@nvidia.com>
13660 M:      Laxman Dewangan <ldewangan@nvidia.com>
13661 S:      Supported
13662 F:      drivers/input/keyboard/tegra-kbc.c
13663
13664 TEGRA PWM DRIVER
13665 M:      Thierry Reding <thierry.reding@gmail.com>
13666 S:      Supported
13667 F:      drivers/pwm/pwm-tegra.c
13668
13669 TEGRA SERIAL DRIVER
13670 M:      Laxman Dewangan <ldewangan@nvidia.com>
13671 S:      Supported
13672 F:      drivers/tty/serial/serial-tegra.c
13673
13674 TEGRA SPI DRIVER
13675 M:      Laxman Dewangan <ldewangan@nvidia.com>
13676 S:      Supported
13677 F:      drivers/spi/spi-tegra*
13678
13679 TEHUTI ETHERNET DRIVER
13680 M:      Andy Gospodarek <andy@greyhouse.net>
13681 L:      netdev@vger.kernel.org
13682 S:      Supported
13683 F:      drivers/net/ethernet/tehuti/*
13684
13685 Telecom Clock Driver for MCPL0010
13686 M:      Mark Gross <mark.gross@intel.com>
13687 S:      Supported
13688 F:      drivers/char/tlclk.c
13689
13690 TENSILICA XTENSA PORT (xtensa)
13691 M:      Chris Zankel <chris@zankel.net>
13692 M:      Max Filippov <jcmvbkbc@gmail.com>
13693 L:      linux-xtensa@linux-xtensa.org
13694 T:      git git://github.com/czankel/xtensa-linux.git
13695 S:      Maintained
13696 F:      arch/xtensa/
13697 F:      drivers/irqchip/irq-xtensa-*
13698
13699 Texas Instruments' System Control Interface (TISCI) Protocol Driver
13700 M:      Nishanth Menon <nm@ti.com>
13701 M:      Tero Kristo <t-kristo@ti.com>
13702 M:      Santosh Shilimkar <ssantosh@kernel.org>
13703 L:      linux-arm-kernel@lists.infradead.org
13704 S:      Maintained
13705 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
13706 F:      drivers/firmware/ti_sci*
13707 F:      include/linux/soc/ti/ti_sci_protocol.h
13708 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
13709 F:      include/dt-bindings/genpd/k2g.h
13710 F:      drivers/soc/ti/ti_sci_pm_domains.c
13711 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
13712 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
13713 F:      drivers/clk/keystone/sci-clk.c
13714 F:      drivers/reset/reset-ti-sci.c
13715
13716 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
13717 M:      Hans Verkuil <hverkuil@xs4all.nl>
13718 L:      linux-media@vger.kernel.org
13719 T:      git git://linuxtv.org/media_tree.git
13720 W:      https://linuxtv.org
13721 S:      Maintained
13722 F:      drivers/media/radio/radio-raremono.c
13723
13724 THERMAL
13725 M:      Zhang Rui <rui.zhang@intel.com>
13726 M:      Eduardo Valentin <edubezval@gmail.com>
13727 L:      linux-pm@vger.kernel.org
13728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
13729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
13730 Q:      https://patchwork.kernel.org/project/linux-pm/list/
13731 S:      Supported
13732 F:      drivers/thermal/
13733 F:      include/linux/thermal.h
13734 F:      include/uapi/linux/thermal.h
13735 F:      include/linux/cpu_cooling.h
13736 F:      Documentation/devicetree/bindings/thermal/
13737
13738 THERMAL/CPU_COOLING
13739 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
13740 M:      Viresh Kumar <viresh.kumar@linaro.org>
13741 M:      Javi Merino <javi.merino@kernel.org>
13742 L:      linux-pm@vger.kernel.org
13743 S:      Supported
13744 F:      Documentation/thermal/cpu-cooling-api.txt
13745 F:      drivers/thermal/cpu_cooling.c
13746 F:      include/linux/cpu_cooling.h
13747
13748 THINKPAD ACPI EXTRAS DRIVER
13749 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
13750 L:      ibm-acpi-devel@lists.sourceforge.net
13751 L:      platform-driver-x86@vger.kernel.org
13752 W:      http://ibm-acpi.sourceforge.net
13753 W:      http://thinkwiki.org/wiki/Ibm-acpi
13754 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
13755 S:      Maintained
13756 F:      drivers/platform/x86/thinkpad_acpi.c
13757
13758 THUNDERBOLT DRIVER
13759 M:      Andreas Noever <andreas.noever@gmail.com>
13760 M:      Michael Jamet <michael.jamet@intel.com>
13761 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13762 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
13764 S:      Maintained
13765 F:      Documentation/admin-guide/thunderbolt.rst
13766 F:      drivers/thunderbolt/
13767 F:      include/linux/thunderbolt.h
13768
13769 THUNDERBOLT NETWORK DRIVER
13770 M:      Michael Jamet <michael.jamet@intel.com>
13771 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
13772 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
13773 L:      netdev@vger.kernel.org
13774 S:      Maintained
13775 F:      drivers/net/thunderbolt.c
13776
13777 THUNDERX GPIO DRIVER
13778 M:      David Daney <david.daney@cavium.com>
13779 S:      Maintained
13780 F:      drivers/gpio/gpio-thunderx.c
13781
13782 TI AM437X VPFE DRIVER
13783 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13784 L:      linux-media@vger.kernel.org
13785 W:      https://linuxtv.org
13786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13787 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13788 S:      Maintained
13789 F:      drivers/media/platform/am437x/
13790
13791 TI BANDGAP AND THERMAL DRIVER
13792 M:      Eduardo Valentin <edubezval@gmail.com>
13793 M:      Keerthy <j-keerthy@ti.com>
13794 L:      linux-pm@vger.kernel.org
13795 L:      linux-omap@vger.kernel.org
13796 S:      Maintained
13797 F:      drivers/thermal/ti-soc-thermal/
13798
13799 TI BQ27XXX POWER SUPPLY DRIVER
13800 R:      Andrew F. Davis <afd@ti.com>
13801 F:      include/linux/power/bq27xxx_battery.h
13802 F:      drivers/power/supply/bq27xxx_battery.c
13803 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13804
13805 TI CDCE706 CLOCK DRIVER
13806 M:      Max Filippov <jcmvbkbc@gmail.com>
13807 S:      Maintained
13808 F:      drivers/clk/clk-cdce706.c
13809
13810 TI CLOCK DRIVER
13811 M:      Tero Kristo <t-kristo@ti.com>
13812 L:      linux-omap@vger.kernel.org
13813 S:      Maintained
13814 F:      drivers/clk/ti/
13815 F:      include/linux/clk/ti.h
13816
13817 TI DAVINCI MACHINE SUPPORT
13818 M:      Sekhar Nori <nsekhar@ti.com>
13819 M:      Kevin Hilman <khilman@kernel.org>
13820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
13822 S:      Supported
13823 F:      arch/arm/mach-davinci/
13824 F:      drivers/i2c/busses/i2c-davinci.c
13825 F:      arch/arm/boot/dts/da850*
13826
13827 TI DAVINCI SERIES GPIO DRIVER
13828 M:      Keerthy <j-keerthy@ti.com>
13829 L:      linux-gpio@vger.kernel.org
13830 S:      Maintained
13831 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
13832 F:      drivers/gpio/gpio-davinci.c
13833
13834 TI DAVINCI SERIES MEDIA DRIVER
13835 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
13836 L:      linux-media@vger.kernel.org
13837 W:      https://linuxtv.org
13838 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13839 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
13840 S:      Maintained
13841 F:      drivers/media/platform/davinci/
13842 F:      include/media/davinci/
13843
13844 TI ETHERNET SWITCH DRIVER (CPSW)
13845 R:      Grygorii Strashko <grygorii.strashko@ti.com>
13846 L:      linux-omap@vger.kernel.org
13847 L:      netdev@vger.kernel.org
13848 S:      Maintained
13849 F:      drivers/net/ethernet/ti/cpsw*
13850 F:      drivers/net/ethernet/ti/davinci*
13851
13852 TI FLASH MEDIA INTERFACE DRIVER
13853 M:      Alex Dubov <oakad@yahoo.com>
13854 S:      Maintained
13855 F:      drivers/misc/tifm*
13856 F:      drivers/mmc/host/tifm_sd.c
13857 F:      include/linux/tifm.h
13858
13859 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13860 M:      Santosh Shilimkar <ssantosh@kernel.org>
13861 L:      linux-kernel@vger.kernel.org
13862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13863 S:      Maintained
13864 F:      drivers/soc/ti/*
13865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13866
13867 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13868 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
13869 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13870 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13871 S:      Maintained
13872 F:      sound/soc/codecs/lm49453*
13873 F:      sound/soc/codecs/isabelle*
13874
13875 TI LP855x BACKLIGHT DRIVER
13876 M:      Milo Kim <milo.kim@ti.com>
13877 S:      Maintained
13878 F:      Documentation/backlight/lp855x-driver.txt
13879 F:      drivers/video/backlight/lp855x_bl.c
13880 F:      include/linux/platform_data/lp855x.h
13881
13882 TI LP8727 CHARGER DRIVER
13883 M:      Milo Kim <milo.kim@ti.com>
13884 S:      Maintained
13885 F:      drivers/power/supply/lp8727_charger.c
13886 F:      include/linux/platform_data/lp8727.h
13887
13888 TI LP8788 MFD DRIVER
13889 M:      Milo Kim <milo.kim@ti.com>
13890 S:      Maintained
13891 F:      drivers/iio/adc/lp8788_adc.c
13892 F:      drivers/leds/leds-lp8788.c
13893 F:      drivers/mfd/lp8788*.c
13894 F:      drivers/power/supply/lp8788-charger.c
13895 F:      drivers/regulator/lp8788-*.c
13896 F:      include/linux/mfd/lp8788*.h
13897
13898 TI NETCP ETHERNET DRIVER
13899 M:      Wingman Kwok <w-kwok2@ti.com>
13900 M:      Murali Karicheri <m-karicheri2@ti.com>
13901 L:      netdev@vger.kernel.org
13902 S:      Maintained
13903 F:      drivers/net/ethernet/ti/netcp*
13904
13905 TI TAS571X FAMILY ASoC CODEC DRIVER
13906 M:      Kevin Cernekee <cernekee@chromium.org>
13907 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13908 S:      Odd Fixes
13909 F:      sound/soc/codecs/tas571x*
13910
13911 TI TRF7970A NFC DRIVER
13912 M:      Mark Greer <mgreer@animalcreek.com>
13913 L:      linux-wireless@vger.kernel.org
13914 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
13915 S:      Supported
13916 F:      drivers/nfc/trf7970a.c
13917 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
13918
13919 TI TWL4030 SERIES SOC CODEC DRIVER
13920 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
13921 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13922 S:      Maintained
13923 F:      sound/soc/codecs/twl4030*
13924
13925 TI VPE/CAL DRIVERS
13926 M:      Benoit Parrot <bparrot@ti.com>
13927 L:      linux-media@vger.kernel.org
13928 W:      http://linuxtv.org/
13929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13930 S:      Maintained
13931 F:      drivers/media/platform/ti-vpe/
13932
13933 TI WILINK WIRELESS DRIVERS
13934 L:      linux-wireless@vger.kernel.org
13935 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
13936 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
13937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13938 S:      Orphan
13939 F:      drivers/net/wireless/ti/
13940 F:      include/linux/wl12xx.h
13941
13942 TILE ARCHITECTURE
13943 W:      http://www.mellanox.com/repository/solutions/tile-scm/
13944 S:      Orphan
13945 F:      arch/tile/
13946 F:      drivers/char/tile-srom.c
13947 F:      drivers/edac/tile_edac.c
13948 F:      drivers/net/ethernet/tile/
13949 F:      drivers/rtc/rtc-tile.c
13950 F:      drivers/tty/hvc/hvc_tile.c
13951 F:      drivers/tty/serial/tilegx.c
13952 F:      drivers/usb/host/*-tilegx.c
13953 F:      include/linux/usb/tilegx.h
13954
13955 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
13956 M:      John Stultz <john.stultz@linaro.org>
13957 M:      Thomas Gleixner <tglx@linutronix.de>
13958 R:      Stephen Boyd <sboyd@kernel.org>
13959 L:      linux-kernel@vger.kernel.org
13960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
13961 S:      Supported
13962 F:      include/linux/clocksource.h
13963 F:      include/linux/time.h
13964 F:      include/linux/timex.h
13965 F:      include/uapi/linux/time.h
13966 F:      include/uapi/linux/timex.h
13967 F:      kernel/time/clocksource.c
13968 F:      kernel/time/time*.c
13969 F:      kernel/time/alarmtimer.c
13970 F:      kernel/time/ntp.c
13971 F:      tools/testing/selftests/timers/
13972
13973 TIPC NETWORK LAYER
13974 M:      Jon Maloy <jon.maloy@ericsson.com>
13975 M:      Ying Xue <ying.xue@windriver.com>
13976 L:      netdev@vger.kernel.org (core kernel code)
13977 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13978 W:      http://tipc.sourceforge.net/
13979 S:      Maintained
13980 F:      include/uapi/linux/tipc*.h
13981 F:      net/tipc/
13982
13983 TLAN NETWORK DRIVER
13984 M:      Samuel Chessman <chessman@tux.org>
13985 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
13986 W:      http://sourceforge.net/projects/tlan/
13987 S:      Maintained
13988 F:      Documentation/networking/tlan.txt
13989 F:      drivers/net/ethernet/ti/tlan.*
13990
13991 TM6000 VIDEO4LINUX DRIVER
13992 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13993 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13994 L:      linux-media@vger.kernel.org
13995 W:      https://linuxtv.org
13996 T:      git git://linuxtv.org/media_tree.git
13997 S:      Odd fixes
13998 F:      drivers/media/usb/tm6000/
13999 F:      Documentation/media/v4l-drivers/tm6000*
14000
14001 TMIO/SDHI MMC DRIVER
14002 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
14003 L:      linux-mmc@vger.kernel.org
14004 S:      Supported
14005 F:      drivers/mmc/host/tmio_mmc*
14006 F:      drivers/mmc/host/renesas_sdhi*
14007 F:      include/linux/mfd/tmio.h
14008
14009 TMP401 HARDWARE MONITOR DRIVER
14010 M:      Guenter Roeck <linux@roeck-us.net>
14011 L:      linux-hwmon@vger.kernel.org
14012 S:      Maintained
14013 F:      Documentation/hwmon/tmp401
14014 F:      drivers/hwmon/tmp401.c
14015
14016 TMPFS (SHMEM FILESYSTEM)
14017 M:      Hugh Dickins <hughd@google.com>
14018 L:      linux-mm@kvack.org
14019 S:      Maintained
14020 F:      include/linux/shmem_fs.h
14021 F:      mm/shmem.c
14022
14023 TOMOYO SECURITY MODULE
14024 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
14025 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
14026 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
14027 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
14028 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
14029 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
14030 W:      http://tomoyo.sourceforge.jp/
14031 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
14032 S:      Maintained
14033 F:      security/tomoyo/
14034
14035 TOPSTAR LAPTOP EXTRAS DRIVER
14036 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
14037 L:      platform-driver-x86@vger.kernel.org
14038 S:      Maintained
14039 F:      drivers/platform/x86/topstar-laptop.c
14040
14041 TORTURE-TEST MODULES
14042 M:      Davidlohr Bueso <dave@stgolabs.net>
14043 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
14044 M:      Josh Triplett <josh@joshtriplett.org>
14045 L:      linux-kernel@vger.kernel.org
14046 S:      Supported
14047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
14048 F:      Documentation/RCU/torture.txt
14049 F:      kernel/torture.c
14050 F:      kernel/rcu/rcutorture.c
14051 F:      kernel/locking/locktorture.c
14052
14053 TOSHIBA ACPI EXTRAS DRIVER
14054 M:      Azael Avalos <coproscefalo@gmail.com>
14055 L:      platform-driver-x86@vger.kernel.org
14056 S:      Maintained
14057 F:      drivers/platform/x86/toshiba_acpi.c
14058
14059 TOSHIBA BLUETOOTH DRIVER
14060 M:      Azael Avalos <coproscefalo@gmail.com>
14061 L:      platform-driver-x86@vger.kernel.org
14062 S:      Maintained
14063 F:      drivers/platform/x86/toshiba_bluetooth.c
14064
14065 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
14066 M:      Azael Avalos <coproscefalo@gmail.com>
14067 L:      platform-driver-x86@vger.kernel.org
14068 S:      Maintained
14069 F:      drivers/platform/x86/toshiba_haps.c
14070
14071 TOSHIBA SMM DRIVER
14072 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
14073 W:      http://www.buzzard.org.uk/toshiba/
14074 S:      Maintained
14075 F:      drivers/char/toshiba.c
14076 F:      include/linux/toshiba.h
14077 F:      include/uapi/linux/toshiba.h
14078
14079 TOSHIBA TC358743 DRIVER
14080 M:      Mats Randgaard <matrandg@cisco.com>
14081 L:      linux-media@vger.kernel.org
14082 S:      Maintained
14083 F:      drivers/media/i2c/tc358743*
14084 F:      include/media/i2c/tc358743.h
14085
14086 TOSHIBA WMI HOTKEYS DRIVER
14087 M:      Azael Avalos <coproscefalo@gmail.com>
14088 L:      platform-driver-x86@vger.kernel.org
14089 S:      Maintained
14090 F:      drivers/platform/x86/toshiba-wmi.c
14091
14092 TPM DEVICE DRIVER
14093 M:      Peter Huewe <peterhuewe@gmx.de>
14094 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
14095 R:      Jason Gunthorpe <jgg@ziepe.ca>
14096 L:      linux-integrity@vger.kernel.org
14097 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
14098 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
14099 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
14100 S:      Maintained
14101 F:      drivers/char/tpm/
14102
14103 TRACING
14104 M:      Steven Rostedt <rostedt@goodmis.org>
14105 M:      Ingo Molnar <mingo@redhat.com>
14106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14107 S:      Maintained
14108 F:      Documentation/trace/ftrace.txt
14109 F:      arch/*/*/*/ftrace.h
14110 F:      arch/*/kernel/ftrace.c
14111 F:      include/*/ftrace.h
14112 F:      include/linux/trace*.h
14113 F:      include/trace/
14114 F:      kernel/trace/
14115 F:      tools/testing/selftests/ftrace/
14116
14117 TRACING MMIO ACCESSES (MMIOTRACE)
14118 M:      Steven Rostedt <rostedt@goodmis.org>
14119 M:      Ingo Molnar <mingo@kernel.org>
14120 R:      Karol Herbst <karolherbst@gmail.com>
14121 R:      Pekka Paalanen <ppaalanen@gmail.com>
14122 S:      Maintained
14123 L:      linux-kernel@vger.kernel.org
14124 L:      nouveau@lists.freedesktop.org
14125 F:      kernel/trace/trace_mmiotrace.c
14126 F:      include/linux/mmiotrace.h
14127 F:      arch/x86/mm/kmmio.c
14128 F:      arch/x86/mm/mmio-mod.c
14129 F:      arch/x86/mm/testmmiotrace.c
14130
14131 TRIVIAL PATCHES
14132 M:      Jiri Kosina <trivial@kernel.org>
14133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
14134 S:      Maintained
14135 K:      ^Subject:.*(?i)trivial
14136
14137 TEMPO SEMICONDUCTOR DRIVERS
14138 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
14139 S:      Maintained
14140 F:      sound/soc/codecs/tscs*.c
14141 F:      sound/soc/codecs/tscs*.h
14142 F:      Documentation/devicetree/bindings/sound/tscs*.txt
14143
14144 TTY LAYER
14145 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14146 M:      Jiri Slaby <jslaby@suse.com>
14147 S:      Supported
14148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
14149 F:      Documentation/serial/
14150 F:      drivers/tty/
14151 F:      drivers/tty/serial/serial_core.c
14152 F:      include/linux/serial_core.h
14153 F:      include/linux/serial.h
14154 F:      include/linux/tty.h
14155 F:      include/uapi/linux/serial_core.h
14156 F:      include/uapi/linux/serial.h
14157 F:      include/uapi/linux/tty.h
14158
14159 TUA9001 MEDIA DRIVER
14160 M:      Antti Palosaari <crope@iki.fi>
14161 L:      linux-media@vger.kernel.org
14162 W:      https://linuxtv.org
14163 W:      http://palosaari.fi/linux/
14164 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14165 T:      git git://linuxtv.org/anttip/media_tree.git
14166 S:      Maintained
14167 F:      drivers/media/tuners/tua9001*
14168
14169 TULIP NETWORK DRIVERS
14170 L:      netdev@vger.kernel.org
14171 L:      linux-parisc@vger.kernel.org
14172 S:      Orphan
14173 F:      drivers/net/ethernet/dec/tulip/
14174
14175 TUN/TAP driver
14176 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
14177 W:      http://vtun.sourceforge.net/tun
14178 S:      Maintained
14179 F:      Documentation/networking/tuntap.txt
14180 F:      arch/um/os-Linux/drivers/
14181
14182 TURBOCHANNEL SUBSYSTEM
14183 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
14184 M:      Ralf Baechle <ralf@linux-mips.org>
14185 L:      linux-mips@linux-mips.org
14186 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
14187 S:      Maintained
14188 F:      drivers/tc/
14189 F:      include/linux/tc.h
14190
14191 TW5864 VIDEO4LINUX DRIVER
14192 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
14193 M:      Anton Sviridenko <anton@corp.bluecherry.net>
14194 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
14195 M:      Andrey Utkin <andrey_utkin@fastmail.com>
14196 L:      linux-media@vger.kernel.org
14197 S:      Supported
14198 F:      drivers/media/pci/tw5864/
14199
14200 TW68 VIDEO4LINUX DRIVER
14201 M:      Hans Verkuil <hverkuil@xs4all.nl>
14202 L:      linux-media@vger.kernel.org
14203 T:      git git://linuxtv.org/media_tree.git
14204 W:      https://linuxtv.org
14205 S:      Odd Fixes
14206 F:      drivers/media/pci/tw68/
14207
14208 TW686X VIDEO4LINUX DRIVER
14209 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
14210 L:      linux-media@vger.kernel.org
14211 T:      git git://linuxtv.org/media_tree.git
14212 W:      http://linuxtv.org
14213 S:      Maintained
14214 F:      drivers/media/pci/tw686x/
14215
14216 UBI FILE SYSTEM (UBIFS)
14217 M:      Richard Weinberger <richard@nod.at>
14218 M:      Artem Bityutskiy <dedekind1@gmail.com>
14219 M:      Adrian Hunter <adrian.hunter@intel.com>
14220 L:      linux-mtd@lists.infradead.org
14221 T:      git git://git.infradead.org/ubifs-2.6.git
14222 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
14223 S:      Supported
14224 F:      Documentation/filesystems/ubifs.txt
14225 F:      fs/ubifs/
14226
14227 UCLINUX (M68KNOMMU AND COLDFIRE)
14228 M:      Greg Ungerer <gerg@linux-m68k.org>
14229 W:      http://www.linux-m68k.org/
14230 W:      http://www.uclinux.org/
14231 L:      linux-m68k@lists.linux-m68k.org
14232 L:      uclinux-dev@uclinux.org  (subscribers-only)
14233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
14234 S:      Maintained
14235 F:      arch/m68k/coldfire/
14236 F:      arch/m68k/68*/
14237 F:      arch/m68k/*/*_no.*
14238 F:      arch/m68k/include/asm/*_no.*
14239
14240 UDF FILESYSTEM
14241 M:      Jan Kara <jack@suse.com>
14242 S:      Maintained
14243 F:      Documentation/filesystems/udf.txt
14244 F:      fs/udf/
14245
14246 UDRAW TABLET
14247 M:      Bastien Nocera <hadess@hadess.net>
14248 L:      linux-input@vger.kernel.org
14249 S:      Maintained
14250 F:      drivers/hid/hid-udraw-ps3.c
14251
14252 UFS FILESYSTEM
14253 M:      Evgeniy Dushistov <dushistov@mail.ru>
14254 S:      Maintained
14255 F:      Documentation/filesystems/ufs.txt
14256 F:      fs/ufs/
14257
14258 UHID USERSPACE HID IO DRIVER:
14259 M:      David Herrmann <dh.herrmann@googlemail.com>
14260 L:      linux-input@vger.kernel.org
14261 S:      Maintained
14262 F:      drivers/hid/uhid.c
14263 F:      include/uapi/linux/uhid.h
14264
14265 ULPI BUS
14266 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14267 L:      linux-usb@vger.kernel.org
14268 S:      Maintained
14269 F:      drivers/usb/common/ulpi.c
14270 F:      include/linux/ulpi/
14271
14272 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
14273 L:      linux-usb@vger.kernel.org
14274 S:      Orphan
14275 F:      drivers/uwb/
14276 F:      include/linux/uwb.h
14277 F:      include/linux/uwb/
14278
14279 UNICORE32 ARCHITECTURE:
14280 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
14281 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
14282 S:      Maintained
14283 T:      git git://github.com/gxt/linux.git
14284 F:      arch/unicore32/
14285
14286 UNIFDEF
14287 M:      Tony Finch <dot@dotat.at>
14288 W:      http://dotat.at/prog/unifdef
14289 S:      Maintained
14290 F:      scripts/unifdef.c
14291
14292 UNIFORM CDROM DRIVER
14293 M:      Jens Axboe <axboe@kernel.dk>
14294 W:      http://www.kernel.dk
14295 S:      Maintained
14296 F:      Documentation/cdrom/
14297 F:      drivers/cdrom/cdrom.c
14298 F:      include/linux/cdrom.h
14299 F:      include/uapi/linux/cdrom.h
14300
14301 UNISYS S-PAR DRIVERS
14302 M:      David Kershner <david.kershner@unisys.com>
14303 L:      sparmaintainer@unisys.com (Unisys internal)
14304 S:      Supported
14305 F:      include/linux/visorbus.h
14306 F:      drivers/visorbus/
14307 F:      drivers/staging/unisys/
14308
14309 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
14310 M:      Vinayak Holikatti <vinholikatti@gmail.com>
14311 L:      linux-scsi@vger.kernel.org
14312 S:      Supported
14313 F:      Documentation/scsi/ufs.txt
14314 F:      drivers/scsi/ufs/
14315
14316 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
14317 M:      Joao Pinto <jpinto@synopsys.com>
14318 L:      linux-scsi@vger.kernel.org
14319 S:      Supported
14320 F:      drivers/scsi/ufs/*dwc*
14321
14322 UNSORTED BLOCK IMAGES (UBI)
14323 M:      Artem Bityutskiy <dedekind1@gmail.com>
14324 M:      Richard Weinberger <richard@nod.at>
14325 W:      http://www.linux-mtd.infradead.org/
14326 L:      linux-mtd@lists.infradead.org
14327 T:      git git://git.infradead.org/ubifs-2.6.git
14328 S:      Supported
14329 F:      drivers/mtd/ubi/
14330 F:      include/linux/mtd/ubi.h
14331 F:      include/uapi/mtd/ubi-user.h
14332
14333 USB "USBNET" DRIVER FRAMEWORK
14334 M:      Oliver Neukum <oneukum@suse.com>
14335 L:      netdev@vger.kernel.org
14336 W:      http://www.linux-usb.org/usbnet
14337 S:      Maintained
14338 F:      drivers/net/usb/usbnet.c
14339 F:      include/linux/usb/usbnet.h
14340
14341 USB ACM DRIVER
14342 M:      Oliver Neukum <oneukum@suse.com>
14343 L:      linux-usb@vger.kernel.org
14344 S:      Maintained
14345 F:      Documentation/usb/acm.txt
14346 F:      drivers/usb/class/cdc-acm.*
14347
14348 USB AR5523 WIRELESS DRIVER
14349 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
14350 L:      linux-wireless@vger.kernel.org
14351 S:      Maintained
14352 F:      drivers/net/wireless/ath/ar5523/
14353
14354 USB ATTACHED SCSI
14355 M:      Oliver Neukum <oneukum@suse.com>
14356 L:      linux-usb@vger.kernel.org
14357 L:      linux-scsi@vger.kernel.org
14358 S:      Maintained
14359 F:      drivers/usb/storage/uas.c
14360
14361 USB CDC ETHERNET DRIVER
14362 M:      Oliver Neukum <oliver@neukum.org>
14363 L:      linux-usb@vger.kernel.org
14364 S:      Maintained
14365 F:      drivers/net/usb/cdc_*.c
14366 F:      include/uapi/linux/usb/cdc.h
14367
14368 USB CHAOSKEY DRIVER
14369 M:      Keith Packard <keithp@keithp.com>
14370 L:      linux-usb@vger.kernel.org
14371 S:      Maintained
14372 F:      drivers/usb/misc/chaoskey.c
14373
14374 USB CYPRESS C67X00 DRIVER
14375 M:      Peter Korsgaard <jacmet@sunsite.dk>
14376 L:      linux-usb@vger.kernel.org
14377 S:      Maintained
14378 F:      drivers/usb/c67x00/
14379
14380 USB DAVICOM DM9601 DRIVER
14381 M:      Peter Korsgaard <jacmet@sunsite.dk>
14382 L:      netdev@vger.kernel.org
14383 W:      http://www.linux-usb.org/usbnet
14384 S:      Maintained
14385 F:      drivers/net/usb/dm9601.c
14386
14387 USB DIAMOND RIO500 DRIVER
14388 M:      Cesar Miquel <miquel@df.uba.ar>
14389 L:      rio500-users@lists.sourceforge.net
14390 W:      http://rio500.sourceforge.net
14391 S:      Maintained
14392 F:      drivers/usb/misc/rio500*
14393
14394 USB EHCI DRIVER
14395 M:      Alan Stern <stern@rowland.harvard.edu>
14396 L:      linux-usb@vger.kernel.org
14397 S:      Maintained
14398 F:      Documentation/usb/ehci.txt
14399 F:      drivers/usb/host/ehci*
14400
14401 USB GADGET/PERIPHERAL SUBSYSTEM
14402 M:      Felipe Balbi <balbi@kernel.org>
14403 L:      linux-usb@vger.kernel.org
14404 W:      http://www.linux-usb.org/gadget
14405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14406 S:      Maintained
14407 F:      drivers/usb/gadget/
14408 F:      include/linux/usb/gadget*
14409
14410 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
14411 M:      Jiri Kosina <jikos@kernel.org>
14412 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
14413 L:      linux-usb@vger.kernel.org
14414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
14415 S:      Maintained
14416 F:      Documentation/hid/hiddev.txt
14417 F:      drivers/hid/usbhid/
14418
14419 USB ISP116X DRIVER
14420 M:      Olav Kongas <ok@artecdesign.ee>
14421 L:      linux-usb@vger.kernel.org
14422 S:      Maintained
14423 F:      drivers/usb/host/isp116x*
14424 F:      include/linux/usb/isp116x.h
14425
14426 USB LAN78XX ETHERNET DRIVER
14427 M:      Woojung Huh <woojung.huh@microchip.com>
14428 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14429 L:      netdev@vger.kernel.org
14430 S:      Maintained
14431 F:      drivers/net/usb/lan78xx.*
14432
14433 USB MASS STORAGE DRIVER
14434 M:      Alan Stern <stern@rowland.harvard.edu>
14435 L:      linux-usb@vger.kernel.org
14436 L:      usb-storage@lists.one-eyed-alien.net
14437 S:      Maintained
14438 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
14439 F:      drivers/usb/storage/
14440
14441 USB MIDI DRIVER
14442 M:      Clemens Ladisch <clemens@ladisch.de>
14443 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14444 T:      git git://git.alsa-project.org/alsa-kernel.git
14445 S:      Maintained
14446 F:      sound/usb/midi.*
14447
14448 USB NETWORKING DRIVERS
14449 L:      linux-usb@vger.kernel.org
14450 S:      Odd Fixes
14451 F:      drivers/net/usb/
14452
14453 USB OHCI DRIVER
14454 M:      Alan Stern <stern@rowland.harvard.edu>
14455 L:      linux-usb@vger.kernel.org
14456 S:      Maintained
14457 F:      Documentation/usb/ohci.txt
14458 F:      drivers/usb/host/ohci*
14459
14460 USB OTG FSM (Finite State Machine)
14461 M:      Peter Chen <Peter.Chen@nxp.com>
14462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
14463 L:      linux-usb@vger.kernel.org
14464 S:      Maintained
14465 F:      drivers/usb/common/usb-otg-fsm.c
14466
14467 USB OVER IP DRIVER
14468 M:      Valentina Manea <valentina.manea.m@gmail.com>
14469 M:      Shuah Khan <shuahkh@osg.samsung.com>
14470 M:      Shuah Khan <shuah@kernel.org>
14471 L:      linux-usb@vger.kernel.org
14472 S:      Maintained
14473 F:      Documentation/usb/usbip_protocol.txt
14474 F:      drivers/usb/usbip/
14475 F:      tools/usb/usbip/
14476
14477 USB PEGASUS DRIVER
14478 M:      Petko Manolov <petkan@nucleusys.com>
14479 L:      linux-usb@vger.kernel.org
14480 L:      netdev@vger.kernel.org
14481 T:      git git://github.com/petkan/pegasus.git
14482 W:      https://github.com/petkan/pegasus
14483 S:      Maintained
14484 F:      drivers/net/usb/pegasus.*
14485
14486 USB PHY LAYER
14487 M:      Felipe Balbi <balbi@kernel.org>
14488 L:      linux-usb@vger.kernel.org
14489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
14490 S:      Maintained
14491 F:      drivers/usb/phy/
14492
14493 USB PRINTER DRIVER (usblp)
14494 M:      Pete Zaitcev <zaitcev@redhat.com>
14495 L:      linux-usb@vger.kernel.org
14496 S:      Supported
14497 F:      drivers/usb/class/usblp.c
14498
14499 USB QMI WWAN NETWORK DRIVER
14500 M:      Bjørn Mork <bjorn@mork.no>
14501 L:      netdev@vger.kernel.org
14502 S:      Maintained
14503 F:      Documentation/ABI/testing/sysfs-class-net-qmi
14504 F:      drivers/net/usb/qmi_wwan.c
14505
14506 USB RTL8150 DRIVER
14507 M:      Petko Manolov <petkan@nucleusys.com>
14508 L:      linux-usb@vger.kernel.org
14509 L:      netdev@vger.kernel.org
14510 T:      git git://github.com/petkan/rtl8150.git
14511 W:      https://github.com/petkan/rtl8150
14512 S:      Maintained
14513 F:      drivers/net/usb/rtl8150.c
14514
14515 USB SERIAL SUBSYSTEM
14516 M:      Johan Hovold <johan@kernel.org>
14517 L:      linux-usb@vger.kernel.org
14518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
14519 S:      Maintained
14520 F:      Documentation/usb/usb-serial.txt
14521 F:      drivers/usb/serial/
14522 F:      include/linux/usb/serial.h
14523
14524 USB SMSC75XX ETHERNET DRIVER
14525 M:      Steve Glendinning <steve.glendinning@shawell.net>
14526 L:      netdev@vger.kernel.org
14527 S:      Maintained
14528 F:      drivers/net/usb/smsc75xx.*
14529
14530 USB SMSC95XX ETHERNET DRIVER
14531 M:      Steve Glendinning <steve.glendinning@shawell.net>
14532 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
14533 L:      netdev@vger.kernel.org
14534 S:      Maintained
14535 F:      drivers/net/usb/smsc95xx.*
14536
14537 USB SUBSYSTEM
14538 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14539 L:      linux-usb@vger.kernel.org
14540 W:      http://www.linux-usb.org
14541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
14542 S:      Supported
14543 F:      Documentation/devicetree/bindings/usb/
14544 F:      Documentation/usb/
14545 F:      drivers/usb/
14546 F:      include/linux/usb.h
14547 F:      include/linux/usb/
14548
14549 USB TYPEC SUBSYSTEM
14550 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
14551 L:      linux-usb@vger.kernel.org
14552 S:      Maintained
14553 F:      Documentation/ABI/testing/sysfs-class-typec
14554 F:      Documentation/usb/typec.rst
14555 F:      drivers/usb/typec/
14556 F:      include/linux/usb/typec.h
14557
14558 USB UHCI DRIVER
14559 M:      Alan Stern <stern@rowland.harvard.edu>
14560 L:      linux-usb@vger.kernel.org
14561 S:      Maintained
14562 F:      drivers/usb/host/uhci*
14563
14564 USB VIDEO CLASS
14565 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14566 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
14567 L:      linux-media@vger.kernel.org
14568 T:      git git://linuxtv.org/media_tree.git
14569 W:      http://www.ideasonboard.org/uvc/
14570 S:      Maintained
14571 F:      drivers/media/usb/uvc/
14572 F:      include/uapi/linux/uvcvideo.h
14573
14574 USB VISION DRIVER
14575 M:      Hans Verkuil <hverkuil@xs4all.nl>
14576 L:      linux-media@vger.kernel.org
14577 T:      git git://linuxtv.org/media_tree.git
14578 W:      https://linuxtv.org
14579 S:      Odd Fixes
14580 F:      drivers/media/usb/usbvision/
14581
14582 USB WEBCAM GADGET
14583 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14584 L:      linux-usb@vger.kernel.org
14585 S:      Maintained
14586 F:      drivers/usb/gadget/function/*uvc*
14587 F:      drivers/usb/gadget/legacy/webcam.c
14588
14589 USB WIRELESS RNDIS DRIVER (rndis_wlan)
14590 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
14591 L:      linux-wireless@vger.kernel.org
14592 S:      Maintained
14593 F:      drivers/net/wireless/rndis_wlan.c
14594
14595 USB XHCI DRIVER
14596 M:      Mathias Nyman <mathias.nyman@intel.com>
14597 L:      linux-usb@vger.kernel.org
14598 S:      Supported
14599 F:      drivers/usb/host/xhci*
14600 F:      drivers/usb/host/pci-quirks*
14601
14602 USB ZD1201 DRIVER
14603 L:      linux-wireless@vger.kernel.org
14604 W:      http://linux-lc100020.sourceforge.net
14605 S:      Orphan
14606 F:      drivers/net/wireless/zydas/zd1201.*
14607
14608 USB ZR364XX DRIVER
14609 M:      Antoine Jacquet <royale@zerezo.com>
14610 L:      linux-usb@vger.kernel.org
14611 L:      linux-media@vger.kernel.org
14612 T:      git git://linuxtv.org/media_tree.git
14613 W:      http://royale.zerezo.com/zr364xx/
14614 S:      Maintained
14615 F:      Documentation/media/v4l-drivers/zr364xx*
14616 F:      drivers/media/usb/zr364xx/
14617
14618 USER-MODE LINUX (UML)
14619 M:      Jeff Dike <jdike@addtoit.com>
14620 M:      Richard Weinberger <richard@nod.at>
14621 L:      user-mode-linux-devel@lists.sourceforge.net
14622 L:      user-mode-linux-user@lists.sourceforge.net
14623 W:      http://user-mode-linux.sourceforge.net
14624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
14625 S:      Maintained
14626 F:      Documentation/virtual/uml/
14627 F:      arch/um/
14628 F:      arch/x86/um/
14629 F:      fs/hostfs/
14630 F:      fs/hppfs/
14631
14632 USERSPACE I/O (UIO)
14633 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14634 S:      Maintained
14635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14636 F:      Documentation/driver-api/uio-howto.rst
14637 F:      drivers/uio/
14638 F:      include/linux/uio*.h
14639
14640 UTIL-LINUX PACKAGE
14641 M:      Karel Zak <kzak@redhat.com>
14642 L:      util-linux@vger.kernel.org
14643 W:      http://en.wikipedia.org/wiki/Util-linux
14644 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
14645 S:      Maintained
14646
14647 UUID HELPERS
14648 M:      Christoph Hellwig <hch@lst.de>
14649 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
14650 L:      linux-kernel@vger.kernel.org
14651 T:      git git://git.infradead.org/users/hch/uuid.git
14652 F:      lib/uuid.c
14653 F:      lib/test_uuid.c
14654 F:      include/linux/uuid.h
14655 F:      include/uapi/linux/uuid.h
14656 S:      Maintained
14657
14658 UVESAFB DRIVER
14659 M:      Michal Januszewski <spock@gentoo.org>
14660 L:      linux-fbdev@vger.kernel.org
14661 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
14662 S:      Maintained
14663 F:      Documentation/fb/uvesafb.txt
14664 F:      drivers/video/fbdev/uvesafb.*
14665
14666 VF610 NAND DRIVER
14667 M:      Stefan Agner <stefan@agner.ch>
14668 L:      linux-mtd@lists.infradead.org
14669 S:      Supported
14670 F:      drivers/mtd/nand/vf610_nfc.c
14671
14672 VFAT/FAT/MSDOS FILESYSTEM
14673 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
14674 S:      Maintained
14675 F:      Documentation/filesystems/vfat.txt
14676 F:      fs/fat/
14677
14678 VFIO DRIVER
14679 M:      Alex Williamson <alex.williamson@redhat.com>
14680 L:      kvm@vger.kernel.org
14681 T:      git git://github.com/awilliam/linux-vfio.git
14682 S:      Maintained
14683 F:      Documentation/vfio.txt
14684 F:      drivers/vfio/
14685 F:      include/linux/vfio.h
14686 F:      include/uapi/linux/vfio.h
14687
14688 VFIO MEDIATED DEVICE DRIVERS
14689 M:      Kirti Wankhede <kwankhede@nvidia.com>
14690 L:      kvm@vger.kernel.org
14691 S:      Maintained
14692 F:      Documentation/vfio-mediated-device.txt
14693 F:      drivers/vfio/mdev/
14694 F:      include/linux/mdev.h
14695 F:      samples/vfio-mdev/
14696
14697 VFIO PLATFORM DRIVER
14698 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
14699 L:      kvm@vger.kernel.org
14700 S:      Maintained
14701 F:      drivers/vfio/platform/
14702
14703 VGA_SWITCHEROO
14704 R:      Lukas Wunner <lukas@wunner.de>
14705 S:      Maintained
14706 F:      Documentation/gpu/vga-switcheroo.rst
14707 F:      drivers/gpu/vga/vga_switcheroo.c
14708 F:      include/linux/vga_switcheroo.h
14709 T:      git git://anongit.freedesktop.org/drm/drm-misc
14710
14711 VIA RHINE NETWORK DRIVER
14712 S:      Orphan
14713 F:      drivers/net/ethernet/via/via-rhine.c
14714
14715 VIA SD/MMC CARD CONTROLLER DRIVER
14716 M:      Bruce Chang <brucechang@via.com.tw>
14717 M:      Harald Welte <HaraldWelte@viatech.com>
14718 S:      Maintained
14719 F:      drivers/mmc/host/via-sdmmc.c
14720
14721 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
14722 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
14723 L:      linux-fbdev@vger.kernel.org
14724 S:      Maintained
14725 F:      include/linux/via-core.h
14726 F:      include/linux/via-gpio.h
14727 F:      include/linux/via_i2c.h
14728 F:      drivers/video/fbdev/via/
14729
14730 VIA VELOCITY NETWORK DRIVER
14731 M:      Francois Romieu <romieu@fr.zoreil.com>
14732 L:      netdev@vger.kernel.org
14733 S:      Maintained
14734 F:      drivers/net/ethernet/via/via-velocity.*
14735
14736 VIDEO MULTIPLEXER DRIVER
14737 M:      Philipp Zabel <p.zabel@pengutronix.de>
14738 L:      linux-media@vger.kernel.org
14739 S:      Maintained
14740 F:      drivers/media/platform/video-mux.c
14741
14742 VIDEOBUF2 FRAMEWORK
14743 M:      Pawel Osciak <pawel@osciak.com>
14744 M:      Marek Szyprowski <m.szyprowski@samsung.com>
14745 M:      Kyungmin Park <kyungmin.park@samsung.com>
14746 L:      linux-media@vger.kernel.org
14747 S:      Maintained
14748 F:      drivers/media/v4l2-core/videobuf2-*
14749 F:      include/media/videobuf2-*
14750
14751 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
14752 M:      Helen Koike <helen.koike@collabora.com>
14753 L:      linux-media@vger.kernel.org
14754 T:      git git://linuxtv.org/media_tree.git
14755 W:      https://linuxtv.org
14756 S:      Maintained
14757 F:      drivers/media/platform/vimc/*
14758
14759 VIRT LIB
14760 M:      Alex Williamson <alex.williamson@redhat.com>
14761 M:      Paolo Bonzini <pbonzini@redhat.com>
14762 L:      kvm@vger.kernel.org
14763 S:      Supported
14764 F:      virt/lib/
14765
14766 VIRTIO AND VHOST VSOCK DRIVER
14767 M:      Stefan Hajnoczi <stefanha@redhat.com>
14768 L:      kvm@vger.kernel.org
14769 L:      virtualization@lists.linux-foundation.org
14770 L:      netdev@vger.kernel.org
14771 S:      Maintained
14772 F:      include/linux/virtio_vsock.h
14773 F:      include/uapi/linux/virtio_vsock.h
14774 F:      include/uapi/linux/vsockmon.h
14775 F:      include/uapi/linux/vm_sockets_diag.h
14776 F:      net/vmw_vsock/diag.c
14777 F:      net/vmw_vsock/af_vsock_tap.c
14778 F:      net/vmw_vsock/virtio_transport_common.c
14779 F:      net/vmw_vsock/virtio_transport.c
14780 F:      drivers/net/vsockmon.c
14781 F:      drivers/vhost/vsock.c
14782 F:      drivers/vhost/vsock.h
14783 F:      tools/testing/vsock/
14784
14785 VIRTIO CONSOLE DRIVER
14786 M:      Amit Shah <amit@kernel.org>
14787 L:      virtualization@lists.linux-foundation.org
14788 S:      Maintained
14789 F:      drivers/char/virtio_console.c
14790 F:      include/linux/virtio_console.h
14791 F:      include/uapi/linux/virtio_console.h
14792
14793 VIRTIO CORE, NET AND BLOCK DRIVERS
14794 M:      "Michael S. Tsirkin" <mst@redhat.com>
14795 M:      Jason Wang <jasowang@redhat.com>
14796 L:      virtualization@lists.linux-foundation.org
14797 S:      Maintained
14798 F:      Documentation/devicetree/bindings/virtio/
14799 F:      drivers/virtio/
14800 F:      tools/virtio/
14801 F:      drivers/net/virtio_net.c
14802 F:      drivers/block/virtio_blk.c
14803 F:      include/linux/virtio*.h
14804 F:      include/uapi/linux/virtio_*.h
14805 F:      drivers/crypto/virtio/
14806 F:      mm/balloon_compaction.c
14807
14808 VIRTIO CRYPTO DRIVER
14809 M:      Gonglei <arei.gonglei@huawei.com>
14810 L:      virtualization@lists.linux-foundation.org
14811 L:      linux-crypto@vger.kernel.org
14812 S:      Maintained
14813 F:      drivers/crypto/virtio/
14814 F:      include/uapi/linux/virtio_crypto.h
14815
14816 VIRTIO DRIVERS FOR S390
14817 M:      Cornelia Huck <cohuck@redhat.com>
14818 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
14819 L:      linux-s390@vger.kernel.org
14820 L:      virtualization@lists.linux-foundation.org
14821 L:      kvm@vger.kernel.org
14822 S:      Supported
14823 F:      drivers/s390/virtio/
14824 F:      arch/s390/include/uapi/asm/virtio-ccw.h
14825
14826 VIRTIO GPU DRIVER
14827 M:      David Airlie <airlied@linux.ie>
14828 M:      Gerd Hoffmann <kraxel@redhat.com>
14829 L:      dri-devel@lists.freedesktop.org
14830 L:      virtualization@lists.linux-foundation.org
14831 T:      git git://anongit.freedesktop.org/drm/drm-misc
14832 S:      Maintained
14833 F:      drivers/gpu/drm/virtio/
14834 F:      include/uapi/linux/virtio_gpu.h
14835
14836 VIRTIO HOST (VHOST)
14837 M:      "Michael S. Tsirkin" <mst@redhat.com>
14838 M:      Jason Wang <jasowang@redhat.com>
14839 L:      kvm@vger.kernel.org
14840 L:      virtualization@lists.linux-foundation.org
14841 L:      netdev@vger.kernel.org
14842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
14843 S:      Maintained
14844 F:      drivers/vhost/
14845 F:      include/uapi/linux/vhost.h
14846
14847 VIRTIO INPUT DRIVER
14848 M:      Gerd Hoffmann <kraxel@redhat.com>
14849 S:      Maintained
14850 F:      drivers/virtio/virtio_input.c
14851 F:      include/uapi/linux/virtio_input.h
14852
14853 VIRTUAL BOX GUEST DEVICE DRIVER
14854 M:      Hans de Goede <hdegoede@redhat.com>
14855 M:      Arnd Bergmann <arnd@arndb.de>
14856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14857 S:      Maintained
14858 F:      include/linux/vbox_utils.h
14859 F:      include/uapi/linux/vbox*.h
14860 F:      drivers/virt/vboxguest/
14861
14862 VIRTUAL SERIO DEVICE DRIVER
14863 M:      Stephen Chandler Paul <thatslyude@gmail.com>
14864 S:      Maintained
14865 F:      drivers/input/serio/userio.c
14866 F:      include/uapi/linux/userio.h
14867
14868 VIVID VIRTUAL VIDEO DRIVER
14869 M:      Hans Verkuil <hverkuil@xs4all.nl>
14870 L:      linux-media@vger.kernel.org
14871 T:      git git://linuxtv.org/media_tree.git
14872 W:      https://linuxtv.org
14873 S:      Maintained
14874 F:      drivers/media/platform/vivid/*
14875
14876 VLYNQ BUS
14877 M:      Florian Fainelli <f.fainelli@gmail.com>
14878 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
14879 S:      Maintained
14880 F:      drivers/vlynq/vlynq.c
14881 F:      include/linux/vlynq.h
14882
14883 VME SUBSYSTEM
14884 M:      Martyn Welch <martyn@welchs.me.uk>
14885 M:      Manohar Vanga <manohar.vanga@gmail.com>
14886 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14887 L:      devel@driverdev.osuosl.org
14888 S:      Maintained
14889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
14890 F:      Documentation/driver-api/vme.rst
14891 F:      drivers/staging/vme/
14892 F:      drivers/vme/
14893 F:      include/linux/vme*
14894
14895 VMWARE BALLOON DRIVER
14896 M:      Xavier Deguillard <xdeguillard@vmware.com>
14897 M:      Philip Moltmann <moltmann@vmware.com>
14898 M:      "VMware, Inc." <pv-drivers@vmware.com>
14899 L:      linux-kernel@vger.kernel.org
14900 S:      Maintained
14901 F:      drivers/misc/vmw_balloon.c
14902
14903 VMWARE HYPERVISOR INTERFACE
14904 M:      Alok Kataria <akataria@vmware.com>
14905 L:      virtualization@lists.linux-foundation.org
14906 S:      Supported
14907 F:      arch/x86/kernel/cpu/vmware.c
14908
14909 VMWARE PVRDMA DRIVER
14910 M:      Adit Ranadive <aditr@vmware.com>
14911 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14912 L:      linux-rdma@vger.kernel.org
14913 S:      Maintained
14914 F:      drivers/infiniband/hw/vmw_pvrdma/
14915
14916 VMware PVSCSI driver
14917 M:      Jim Gill <jgill@vmware.com>
14918 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14919 L:      linux-scsi@vger.kernel.org
14920 S:      Maintained
14921 F:      drivers/scsi/vmw_pvscsi.c
14922 F:      drivers/scsi/vmw_pvscsi.h
14923
14924 VMWARE VMMOUSE SUBDRIVER
14925 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14926 M:      "VMware, Inc." <pv-drivers@vmware.com>
14927 L:      linux-input@vger.kernel.org
14928 S:      Maintained
14929 F:      drivers/input/mouse/vmmouse.c
14930 F:      drivers/input/mouse/vmmouse.h
14931
14932 VMWARE VMXNET3 ETHERNET DRIVER
14933 M:      Shrikrishna Khare <skhare@vmware.com>
14934 M:      "VMware, Inc." <pv-drivers@vmware.com>
14935 L:      netdev@vger.kernel.org
14936 S:      Maintained
14937 F:      drivers/net/vmxnet3/
14938
14939 VOCORE VOCORE2 BOARD
14940 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14941 L:      linux-mips@linux-mips.org
14942 S:      Maintained
14943 F:      arch/mips/boot/dts/ralink/vocore2.dts
14944
14945 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14946 M:      Liam Girdwood <lgirdwood@gmail.com>
14947 M:      Mark Brown <broonie@kernel.org>
14948 L:      linux-kernel@vger.kernel.org
14949 W:      http://www.slimlogic.co.uk/?p=48
14950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14951 S:      Supported
14952 F:      Documentation/devicetree/bindings/regulator/
14953 F:      Documentation/power/regulator/
14954 F:      drivers/regulator/
14955 F:      include/dt-bindings/regulator/
14956 F:      include/linux/regulator/
14957
14958 VRF
14959 M:      David Ahern <dsa@cumulusnetworks.com>
14960 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
14961 L:      netdev@vger.kernel.org
14962 S:      Maintained
14963 F:      drivers/net/vrf.c
14964 F:      Documentation/networking/vrf.txt
14965
14966 VT1211 HARDWARE MONITOR DRIVER
14967 M:      Juerg Haefliger <juergh@gmail.com>
14968 L:      linux-hwmon@vger.kernel.org
14969 S:      Maintained
14970 F:      Documentation/hwmon/vt1211
14971 F:      drivers/hwmon/vt1211.c
14972
14973 VT8231 HARDWARE MONITOR DRIVER
14974 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
14975 L:      linux-hwmon@vger.kernel.org
14976 S:      Maintained
14977 F:      drivers/hwmon/vt8231.c
14978
14979 VUB300 USB to SDIO/SD/MMC bridge chip
14980 M:      Tony Olech <tony.olech@elandigitalsystems.com>
14981 L:      linux-mmc@vger.kernel.org
14982 L:      linux-usb@vger.kernel.org
14983 S:      Supported
14984 F:      drivers/mmc/host/vub300.c
14985
14986 W1 DALLAS'S 1-WIRE BUS
14987 M:      Evgeniy Polyakov <zbr@ioremap.net>
14988 S:      Maintained
14989 F:      Documentation/w1/
14990 F:      drivers/w1/
14991 F:      include/linux/w1.h
14992
14993 W83791D HARDWARE MONITORING DRIVER
14994 M:      Marc Hulsman <m.hulsman@tudelft.nl>
14995 L:      linux-hwmon@vger.kernel.org
14996 S:      Maintained
14997 F:      Documentation/hwmon/w83791d
14998 F:      drivers/hwmon/w83791d.c
14999
15000 W83793 HARDWARE MONITORING DRIVER
15001 M:      Rudolf Marek <r.marek@assembler.cz>
15002 L:      linux-hwmon@vger.kernel.org
15003 S:      Maintained
15004 F:      Documentation/hwmon/w83793
15005 F:      drivers/hwmon/w83793.c
15006
15007 W83795 HARDWARE MONITORING DRIVER
15008 M:      Jean Delvare <jdelvare@suse.com>
15009 L:      linux-hwmon@vger.kernel.org
15010 S:      Maintained
15011 F:      drivers/hwmon/w83795.c
15012
15013 W83L51xD SD/MMC CARD INTERFACE DRIVER
15014 M:      Pierre Ossman <pierre@ossman.eu>
15015 S:      Maintained
15016 F:      drivers/mmc/host/wbsd.*
15017
15018 WACOM PROTOCOL 4 SERIAL TABLETS
15019 M:      Julian Squires <julian@cipht.net>
15020 M:      Hans de Goede <hdegoede@redhat.com>
15021 L:      linux-input@vger.kernel.org
15022 S:      Maintained
15023 F:      drivers/input/tablet/wacom_serial4.c
15024
15025 WATCHDOG DEVICE DRIVERS
15026 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
15027 M:      Guenter Roeck <linux@roeck-us.net>
15028 L:      linux-watchdog@vger.kernel.org
15029 W:      http://www.linux-watchdog.org/
15030 T:      git git://www.linux-watchdog.org/linux-watchdog.git
15031 S:      Maintained
15032 F:      Documentation/devicetree/bindings/watchdog/
15033 F:      Documentation/watchdog/
15034 F:      drivers/watchdog/
15035 F:      include/linux/watchdog.h
15036 F:      include/uapi/linux/watchdog.h
15037
15038 WHISKEYCOVE PMIC GPIO DRIVER
15039 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
15040 L:      linux-gpio@vger.kernel.org
15041 S:      Maintained
15042 F:      drivers/gpio/gpio-wcove.c
15043
15044 WIIMOTE HID DRIVER
15045 M:      David Herrmann <dh.herrmann@googlemail.com>
15046 L:      linux-input@vger.kernel.org
15047 S:      Maintained
15048 F:      drivers/hid/hid-wiimote*
15049
15050 WILOCITY WIL6210 WIRELESS DRIVER
15051 M:      Maya Erez <merez@codeaurora.org>
15052 L:      linux-wireless@vger.kernel.org
15053 L:      wil6210@qti.qualcomm.com
15054 S:      Supported
15055 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
15056 F:      drivers/net/wireless/ath/wil6210/
15057
15058 WIMAX STACK
15059 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
15060 M:      linux-wimax@intel.com
15061 L:      wimax@linuxwimax.org (subscribers-only)
15062 S:      Supported
15063 W:      http://linuxwimax.org
15064 F:      Documentation/wimax/README.wimax
15065 F:      include/linux/wimax/debug.h
15066 F:      include/net/wimax.h
15067 F:      include/uapi/linux/wimax.h
15068 F:      net/wimax/
15069
15070 WINBOND CIR DRIVER
15071 M:      David Härdeman <david@hardeman.nu>
15072 S:      Maintained
15073 F:      drivers/media/rc/winbond-cir.c
15074
15075 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
15076 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15077 L:      linux-watchdog@vger.kernel.org
15078 S:      Maintained
15079 F:      drivers/watchdog/ebc-c384_wdt.c
15080
15081 WINSYSTEMS WS16C48 GPIO DRIVER
15082 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
15083 L:      linux-gpio@vger.kernel.org
15084 S:      Maintained
15085 F:      drivers/gpio/gpio-ws16c48.c
15086
15087 WISTRON LAPTOP BUTTON DRIVER
15088 M:      Miloslav Trmac <mitr@volny.cz>
15089 S:      Maintained
15090 F:      drivers/input/misc/wistron_btns.c
15091
15092 WL3501 WIRELESS PCMCIA CARD DRIVER
15093 L:      linux-wireless@vger.kernel.org
15094 S:      Odd fixes
15095 F:      drivers/net/wireless/wl3501*
15096
15097 WOLFSON MICROELECTRONICS DRIVERS
15098 L:      patches@opensource.cirrus.com
15099 T:      git https://github.com/CirrusLogic/linux-drivers.git
15100 W:      https://github.com/CirrusLogic/linux-drivers/wiki
15101 S:      Supported
15102 F:      Documentation/hwmon/wm83??
15103 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
15104 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
15105 F:      Documentation/devicetree/bindings/mfd/arizona.txt
15106 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
15107 F:      Documentation/devicetree/bindings/sound/wlf,arizona.txt
15108 F:      arch/arm/mach-s3c64xx/mach-crag6410*
15109 F:      drivers/clk/clk-wm83*.c
15110 F:      drivers/extcon/extcon-arizona.c
15111 F:      drivers/leds/leds-wm83*.c
15112 F:      drivers/gpio/gpio-*wm*.c
15113 F:      drivers/gpio/gpio-arizona.c
15114 F:      drivers/hwmon/wm83??-hwmon.c
15115 F:      drivers/input/misc/wm831x-on.c
15116 F:      drivers/input/touchscreen/wm831x-ts.c
15117 F:      drivers/input/touchscreen/wm97*.c
15118 F:      drivers/mfd/arizona*
15119 F:      drivers/mfd/wm*.c
15120 F:      drivers/mfd/cs47l24*
15121 F:      drivers/power/supply/wm83*.c
15122 F:      drivers/rtc/rtc-wm83*.c
15123 F:      drivers/regulator/wm8*.c
15124 F:      drivers/regulator/arizona*
15125 F:      drivers/video/backlight/wm83*_bl.c
15126 F:      drivers/watchdog/wm83*_wdt.c
15127 F:      include/linux/mfd/arizona/
15128 F:      include/linux/mfd/wm831x/
15129 F:      include/linux/mfd/wm8350/
15130 F:      include/linux/mfd/wm8400*
15131 F:      include/linux/regulator/arizona*
15132 F:      include/linux/wm97xx.h
15133 F:      include/sound/wm????.h
15134 F:      sound/soc/codecs/arizona.?
15135 F:      sound/soc/codecs/wm*
15136 F:      sound/soc/codecs/cs47l24*
15137
15138 WORKQUEUE
15139 M:      Tejun Heo <tj@kernel.org>
15140 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
15142 S:      Maintained
15143 F:      include/linux/workqueue.h
15144 F:      kernel/workqueue.c
15145 F:      Documentation/core-api/workqueue.rst
15146
15147 X-POWERS AXP288 PMIC DRIVERS
15148 M:      Hans de Goede <hdegoede@redhat.com>
15149 S:      Maintained
15150 N:      axp288
15151 F:      drivers/acpi/pmic/intel_pmic_xpower.c
15152
15153 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
15154 M:      Chen-Yu Tsai <wens@csie.org>
15155 L:      linux-kernel@vger.kernel.org
15156 S:      Maintained
15157 N:      axp[128]
15158
15159 X.25 NETWORK LAYER
15160 M:      Andrew Hendry <andrew.hendry@gmail.com>
15161 L:      linux-x25@vger.kernel.org
15162 S:      Odd Fixes
15163 F:      Documentation/networking/x25*
15164 F:      include/net/x25*
15165 F:      net/x25/
15166
15167 X86 ARCHITECTURE (32-BIT AND 64-BIT)
15168 M:      Thomas Gleixner <tglx@linutronix.de>
15169 M:      Ingo Molnar <mingo@redhat.com>
15170 R:      "H. Peter Anvin" <hpa@zytor.com>
15171 M:      x86@kernel.org
15172 L:      linux-kernel@vger.kernel.org
15173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15174 S:      Maintained
15175 F:      Documentation/x86/
15176 F:      arch/x86/
15177
15178 X86 MCE INFRASTRUCTURE
15179 M:      Tony Luck <tony.luck@intel.com>
15180 M:      Borislav Petkov <bp@alien8.de>
15181 L:      linux-edac@vger.kernel.org
15182 S:      Maintained
15183 F:      arch/x86/kernel/cpu/mcheck/*
15184
15185 X86 MICROCODE UPDATE SUPPORT
15186 M:      Borislav Petkov <bp@alien8.de>
15187 S:      Maintained
15188 F:      arch/x86/kernel/cpu/microcode/*
15189
15190 X86 PLATFORM DRIVERS
15191 M:      Darren Hart <dvhart@infradead.org>
15192 M:      Andy Shevchenko <andy@infradead.org>
15193 L:      platform-driver-x86@vger.kernel.org
15194 T:      git git://git.infradead.org/linux-platform-drivers-x86.git
15195 S:      Maintained
15196 F:      drivers/platform/x86/
15197 F:      drivers/platform/olpc/
15198
15199 X86 VDSO
15200 M:      Andy Lutomirski <luto@amacapital.net>
15201 L:      linux-kernel@vger.kernel.org
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
15203 S:      Maintained
15204 F:      arch/x86/entry/vdso/
15205
15206 XC2028/3028 TUNER DRIVER
15207 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
15208 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
15209 L:      linux-media@vger.kernel.org
15210 W:      https://linuxtv.org
15211 T:      git git://linuxtv.org/media_tree.git
15212 S:      Maintained
15213 F:      drivers/media/tuners/tuner-xc2028.*
15214
15215 XEN BLOCK SUBSYSTEM
15216 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15217 M:      Roger Pau Monné <roger.pau@citrix.com>
15218 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15219 S:      Supported
15220 F:      drivers/block/xen-blkback/*
15221 F:      drivers/block/xen*
15222
15223 XEN HYPERVISOR ARM
15224 M:      Stefano Stabellini <sstabellini@kernel.org>
15225 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15226 S:      Maintained
15227 F:      arch/arm/xen/
15228 F:      arch/arm/include/asm/xen/
15229
15230 XEN HYPERVISOR ARM64
15231 M:      Stefano Stabellini <sstabellini@kernel.org>
15232 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15233 S:      Maintained
15234 F:      arch/arm64/xen/
15235 F:      arch/arm64/include/asm/xen/
15236
15237 XEN HYPERVISOR INTERFACE
15238 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
15239 M:      Juergen Gross <jgross@suse.com>
15240 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
15242 S:      Supported
15243 F:      arch/x86/xen/
15244 F:      drivers/*/xen-*front.c
15245 F:      drivers/xen/
15246 F:      arch/x86/include/asm/xen/
15247 F:      arch/x86/include/asm/pvclock-abi.h
15248 F:      include/xen/
15249 F:      include/uapi/xen/
15250 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
15251 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
15252
15253 XEN NETWORK BACKEND DRIVER
15254 M:      Wei Liu <wei.liu2@citrix.com>
15255 M:      Paul Durrant <paul.durrant@citrix.com>
15256 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15257 L:      netdev@vger.kernel.org
15258 S:      Supported
15259 F:      drivers/net/xen-netback/*
15260
15261 XEN PCI SUBSYSTEM
15262 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15263 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15264 S:      Supported
15265 F:      arch/x86/pci/*xen*
15266 F:      drivers/pci/*xen*
15267
15268 XEN PVSCSI DRIVERS
15269 M:      Juergen Gross <jgross@suse.com>
15270 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15271 L:      linux-scsi@vger.kernel.org
15272 S:      Supported
15273 F:      drivers/scsi/xen-scsifront.c
15274 F:      drivers/xen/xen-scsiback.c
15275 F:      include/xen/interface/io/vscsiif.h
15276
15277 XEN SWIOTLB SUBSYSTEM
15278 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
15279 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
15280 L:      iommu@lists.linux-foundation.org
15281 S:      Supported
15282 F:      arch/x86/xen/*swiotlb*
15283 F:      drivers/xen/*swiotlb*
15284
15285 XFS FILESYSTEM
15286 M:      Darrick J. Wong <darrick.wong@oracle.com>
15287 M:      linux-xfs@vger.kernel.org
15288 L:      linux-xfs@vger.kernel.org
15289 W:      http://xfs.org/
15290 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
15291 S:      Supported
15292 F:      Documentation/filesystems/xfs.txt
15293 F:      fs/xfs/
15294
15295 XILINX AXI ETHERNET DRIVER
15296 M:      Anirudha Sarangi <anirudh@xilinx.com>
15297 M:      John Linn <John.Linn@xilinx.com>
15298 S:      Maintained
15299 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
15300
15301 XILINX UARTLITE SERIAL DRIVER
15302 M:      Peter Korsgaard <jacmet@sunsite.dk>
15303 L:      linux-serial@vger.kernel.org
15304 S:      Maintained
15305 F:      drivers/tty/serial/uartlite.c
15306
15307 XILINX VIDEO IP CORES
15308 M:      Hyun Kwon <hyun.kwon@xilinx.com>
15309 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15310 L:      linux-media@vger.kernel.org
15311 T:      git git://linuxtv.org/media_tree.git
15312 S:      Supported
15313 F:      Documentation/devicetree/bindings/media/xilinx/
15314 F:      drivers/media/platform/xilinx/
15315 F:      include/uapi/linux/xilinx-v4l2-controls.h
15316
15317 XILLYBUS DRIVER
15318 M:      Eli Billauer <eli.billauer@gmail.com>
15319 L:      linux-kernel@vger.kernel.org
15320 S:      Supported
15321 F:      drivers/char/xillybus/
15322
15323 XRA1403 GPIO EXPANDER
15324 M:      Nandor Han <nandor.han@ge.com>
15325 M:      Semi Malinen <semi.malinen@ge.com>
15326 L:      linux-gpio@vger.kernel.org
15327 S:      Maintained
15328 F:      drivers/gpio/gpio-xra1403.c
15329 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
15330
15331 XTENSA XTFPGA PLATFORM SUPPORT
15332 M:      Max Filippov <jcmvbkbc@gmail.com>
15333 L:      linux-xtensa@linux-xtensa.org
15334 S:      Maintained
15335 F:      drivers/spi/spi-xtensa-xtfpga.c
15336 F:      sound/soc/xtensa/xtfpga-i2s.c
15337
15338 YAM DRIVER FOR AX.25
15339 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
15340 L:      linux-hams@vger.kernel.org
15341 S:      Maintained
15342 F:      drivers/net/hamradio/yam*
15343 F:      include/linux/yam.h
15344
15345 YAMA SECURITY MODULE
15346 M:      Kees Cook <keescook@chromium.org>
15347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
15348 S:      Supported
15349 F:      security/yama/
15350 F:      Documentation/admin-guide/LSM/Yama.rst
15351
15352 YEALINK PHONE DRIVER
15353 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
15354 L:      usbb2k-api-dev@nongnu.org
15355 S:      Maintained
15356 F:      Documentation/input/yealink.rst
15357 F:      drivers/input/misc/yealink.*
15358
15359 Z8530 DRIVER FOR AX.25
15360 M:      Joerg Reuter <jreuter@yaina.de>
15361 W:      http://yaina.de/jreuter/
15362 W:      http://www.qsl.net/dl1bke/
15363 L:      linux-hams@vger.kernel.org
15364 S:      Maintained
15365 F:      Documentation/networking/z8530drv.txt
15366 F:      drivers/net/hamradio/*scc.c
15367 F:      drivers/net/hamradio/z8530.h
15368
15369 ZBUD COMPRESSED PAGE ALLOCATOR
15370 M:      Seth Jennings <sjenning@redhat.com>
15371 M:      Dan Streetman <ddstreet@ieee.org>
15372 L:      linux-mm@kvack.org
15373 S:      Maintained
15374 F:      mm/zbud.c
15375 F:      include/linux/zbud.h
15376
15377 ZD1211RW WIRELESS DRIVER
15378 M:      Daniel Drake <dsd@gentoo.org>
15379 M:      Ulrich Kunitz <kune@deine-taler.de>
15380 W:      http://zd1211.ath.cx/wiki/DriverRewrite
15381 L:      linux-wireless@vger.kernel.org
15382 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
15383 S:      Maintained
15384 F:      drivers/net/wireless/zydas/zd1211rw/
15385
15386 ZD1301 MEDIA DRIVER
15387 M:      Antti Palosaari <crope@iki.fi>
15388 L:      linux-media@vger.kernel.org
15389 W:      https://linuxtv.org/
15390 W:      http://palosaari.fi/linux/
15391 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15392 S:      Maintained
15393 F:      drivers/media/usb/dvb-usb-v2/zd1301*
15394
15395 ZD1301_DEMOD MEDIA DRIVER
15396 M:      Antti Palosaari <crope@iki.fi>
15397 L:      linux-media@vger.kernel.org
15398 W:      https://linuxtv.org/
15399 W:      http://palosaari.fi/linux/
15400 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
15401 S:      Maintained
15402 F:      drivers/media/dvb-frontends/zd1301_demod*
15403
15404 ZPOOL COMPRESSED PAGE STORAGE API
15405 M:      Dan Streetman <ddstreet@ieee.org>
15406 L:      linux-mm@kvack.org
15407 S:      Maintained
15408 F:      mm/zpool.c
15409 F:      include/linux/zpool.h
15410
15411 ZR36067 VIDEO FOR LINUX DRIVER
15412 L:      mjpeg-users@lists.sourceforge.net
15413 L:      linux-media@vger.kernel.org
15414 W:      http://mjpeg.sourceforge.net/driver-zoran/
15415 T:      hg https://linuxtv.org/hg/v4l-dvb
15416 S:      Odd Fixes
15417 F:      drivers/media/pci/zoran/
15418
15419 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
15420 M:      Minchan Kim <minchan@kernel.org>
15421 M:      Nitin Gupta <ngupta@vflare.org>
15422 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15423 L:      linux-kernel@vger.kernel.org
15424 S:      Maintained
15425 F:      drivers/block/zram/
15426 F:      Documentation/blockdev/zram.txt
15427
15428 ZS DECSTATION Z85C30 SERIAL DRIVER
15429 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
15430 S:      Maintained
15431 F:      drivers/tty/serial/zs.*
15432
15433 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
15434 M:      Minchan Kim <minchan@kernel.org>
15435 M:      Nitin Gupta <ngupta@vflare.org>
15436 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
15437 L:      linux-mm@kvack.org
15438 S:      Maintained
15439 F:      mm/zsmalloc.c
15440 F:      include/linux/zsmalloc.h
15441 F:      Documentation/vm/zsmalloc.txt
15442
15443 ZSWAP COMPRESSED SWAP CACHING
15444 M:      Seth Jennings <sjenning@redhat.com>
15445 M:      Dan Streetman <ddstreet@ieee.org>
15446 L:      linux-mm@kvack.org
15447 S:      Maintained
15448 F:      mm/zswap.c
15449
15450 THE REST
15451 M:      Linus Torvalds <torvalds@linux-foundation.org>
15452 L:      linux-kernel@vger.kernel.org
15453 Q:      http://patchwork.kernel.org/project/LKML/list/
15454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
15455 S:      Buried alive in reporters
15456 F:      *
15457 F:      */