]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - MAINTAINERS
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-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.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         B: URI for where to file bugs. A web-page with detailed bug
78            filing info, a direct bug tracker link, or a mailto: URI.
79         C: URI for chat protocol, server and channel where developers
80            usually hang out, for example irc://server/channel.
81         Q: Patchwork web based patch tracking system site
82         T: SCM tree type and location.
83            Type is one of: git, hg, quilt, stgit, topgit
84         S: Status, one of the following:
85            Supported:   Someone is actually paid to look after this.
86            Maintained:  Someone actually looks after it.
87            Odd Fixes:   It has a maintainer but they don't have time to do
88                         much other than throw the odd patch in. See below..
89            Orphan:      No current maintainer [but maybe you could take the
90                         role as you write your new code].
91            Obsolete:    Old code. Something tagged obsolete generally means
92                         it has been replaced by a better system and you
93                         should be using that.
94         F: Files and directories with wildcard patterns.
95            A trailing slash includes all files and subdirectory files.
96            F:   drivers/net/    all files in and below drivers/net
97            F:   drivers/net/*   all files in drivers/net, but not below
98            F:   */net/*         all files in "any top level directory"/net
99            One pattern per line.  Multiple F: lines acceptable.
100         N: Files and directories with regex patterns.
101            N:   [^a-z]tegra     all files whose path contains the word tegra
102            One pattern per line.  Multiple N: lines acceptable.
103            scripts/get_maintainer.pl has different behavior for files that
104            match F: pattern and matches of N: patterns.  By default,
105            get_maintainer will not look at git log history when an F: pattern
106            match occurs.  When an N: match occurs, git log history is used
107            to also notify the people that have git commit signatures.
108         X: Files and directories that are NOT maintained, same rules as F:
109            Files exclusions are tested before file matches.
110            Can be useful for excluding a specific subdirectory, for instance:
111            F:   net/
112            X:   net/ipv6/
113            matches all files in and below net excluding net/ipv6/
114         K: Keyword perl extended regex pattern to match content in a
115            patch or file.  For instance:
116            K: of_get_profile
117               matches patches or files that contain "of_get_profile"
118            K: \b(printk|pr_(info|err))\b
119               matches patches or files that contain one or more of the words
120               printk, pr_info or pr_err
121            One regex pattern per line.  Multiple K: lines acceptable.
122
123 Note: For the hard of thinking, this list is meant to remain in alphabetical
124 order. If you could add yourselves to it in alphabetical order that would be
125 so much easier [Ed]
126
127 Maintainers List (try to look for most precise areas first)
128
129                 -----------------------------------
130
131 3C59X NETWORK DRIVER
132 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
133 L:      netdev@vger.kernel.org
134 S:      Maintained
135 F:      Documentation/networking/vortex.txt
136 F:      drivers/net/ethernet/3com/3c59x.c
137
138 3CR990 NETWORK DRIVER
139 M:      David Dillow <dave@thedillows.org>
140 L:      netdev@vger.kernel.org
141 S:      Maintained
142 F:      drivers/net/ethernet/3com/typhoon*
143
144 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
145 M:      Adam Radford <aradford@gmail.com>
146 L:      linux-scsi@vger.kernel.org
147 W:      http://www.lsi.com
148 S:      Supported
149 F:      drivers/scsi/3w-*
150
151 53C700 AND 53C700-66 SCSI DRIVER
152 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
153 L:      linux-scsi@vger.kernel.org
154 S:      Maintained
155 F:      drivers/scsi/53c700*
156
157 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
158 M:      Alexander Aring <alex.aring@gmail.com>
159 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
160 L:      linux-bluetooth@vger.kernel.org
161 L:      linux-wpan@vger.kernel.org
162 S:      Maintained
163 F:      net/6lowpan/
164 F:      include/net/6lowpan.h
165 F:      Documentation/networking/6lowpan.txt
166
167 6PACK NETWORK DRIVER FOR AX.25
168 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
169 L:      linux-hams@vger.kernel.org
170 S:      Maintained
171 F:      drivers/net/hamradio/6pack.c
172
173 8169 10/100/1000 GIGABIT ETHERNET DRIVER
174 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
175 L:      netdev@vger.kernel.org
176 S:      Maintained
177 F:      drivers/net/ethernet/realtek/r8169.c
178
179 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
180 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
181 L:      linux-serial@vger.kernel.org
182 S:      Maintained
183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
184 F:      drivers/tty/serial/8250*
185 F:      include/linux/serial_8250.h
186
187 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
188 L:      netdev@vger.kernel.org
189 S:      Orphan / Obsolete
190 F:      drivers/net/ethernet/8390/
191
192 9P FILE SYSTEM
193 M:      Eric Van Hensbergen <ericvh@gmail.com>
194 M:      Ron Minnich <rminnich@sandia.gov>
195 M:      Latchesar Ionkov <lucho@ionkov.net>
196 L:      v9fs-developer@lists.sourceforge.net
197 W:      http://swik.net/v9fs
198 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
200 S:      Maintained
201 F:      Documentation/filesystems/9p.txt
202 F:      fs/9p/
203 F:      net/9p/
204 F:      include/net/9p/
205 F:      include/uapi/linux/virtio_9p.h
206 F:      include/trace/events/9p.h
207
208
209 A8293 MEDIA DRIVER
210 M:      Antti Palosaari <crope@iki.fi>
211 L:      linux-media@vger.kernel.org
212 W:      https://linuxtv.org
213 W:      http://palosaari.fi/linux/
214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
215 T:      git git://linuxtv.org/anttip/media_tree.git
216 S:      Maintained
217 F:      drivers/media/dvb-frontends/a8293*
218
219 AACRAID SCSI RAID DRIVER
220 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
221 L:      linux-scsi@vger.kernel.org
222 W:      http://www.adaptec.com/
223 S:      Supported
224 F:      Documentation/scsi/aacraid.txt
225 F:      drivers/scsi/aacraid/
226
227 ABI/API
228 L:      linux-api@vger.kernel.org
229 F:      include/linux/syscalls.h
230 F:      kernel/sys_ni.c
231
232 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
233 M:      Hans de Goede <hdegoede@redhat.com>
234 L:      linux-hwmon@vger.kernel.org
235 S:      Maintained
236 F:      drivers/hwmon/abituguru.c
237
238 ABIT UGURU 3 HARDWARE MONITOR DRIVER
239 M:      Alistair John Strachan <alistair@devzero.co.uk>
240 L:      linux-hwmon@vger.kernel.org
241 S:      Maintained
242 F:      drivers/hwmon/abituguru3.c
243
244 ACCES 104-DIO-48E GPIO DRIVER
245 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
246 L:      linux-gpio@vger.kernel.org
247 S:      Maintained
248 F:      drivers/gpio/gpio-104-dio-48e.c
249
250 ACCES 104-IDI-48 GPIO DRIVER
251 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
252 L:      linux-gpio@vger.kernel.org
253 S:      Maintained
254 F:      drivers/gpio/gpio-104-idi-48.c
255
256 ACCES 104-IDIO-16 GPIO DRIVER
257 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
258 L:      linux-gpio@vger.kernel.org
259 S:      Maintained
260 F:      drivers/gpio/gpio-104-idio-16.c
261
262 ACCES 104-QUAD-8 IIO DRIVER
263 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
264 L:      linux-iio@vger.kernel.org
265 S:      Maintained
266 F:      drivers/iio/counter/104-quad-8.c
267
268 ACCES PCI-IDIO-16 GPIO DRIVER
269 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
270 L:      linux-gpio@vger.kernel.org
271 S:      Maintained
272 F:      drivers/gpio/gpio-pci-idio-16.c
273
274 ACENIC DRIVER
275 M:      Jes Sorensen <jes@trained-monkey.org>
276 L:      linux-acenic@sunsite.dk
277 S:      Maintained
278 F:      drivers/net/ethernet/alteon/acenic*
279
280 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
281 M:      Peter Feuerer <peter@piie.net>
282 L:      platform-driver-x86@vger.kernel.org
283 W:      http://piie.net/?section=acerhdf
284 S:      Maintained
285 F:      drivers/platform/x86/acerhdf.c
286
287 ACER WMI LAPTOP EXTRAS
288 M:      "Lee, Chun-Yi" <jlee@suse.com>
289 L:      platform-driver-x86@vger.kernel.org
290 S:      Maintained
291 F:      drivers/platform/x86/acer-wmi.c
292
293 ACPI
294 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
295 M:      Len Brown <lenb@kernel.org>
296 L:      linux-acpi@vger.kernel.org
297 W:      https://01.org/linux-acpi
298 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
300 B:      https://bugzilla.kernel.org
301 S:      Supported
302 F:      drivers/acpi/
303 F:      drivers/pnp/pnpacpi/
304 F:      include/linux/acpi.h
305 F:      include/acpi/
306 F:      Documentation/acpi/
307 F:      Documentation/ABI/testing/sysfs-bus-acpi
308 F:      Documentation/ABI/testing/configfs-acpi
309 F:      drivers/pci/*acpi*
310 F:      drivers/pci/*/*acpi*
311 F:      drivers/pci/*/*/*acpi*
312 F:      tools/power/acpi/
313
314 ACPI COMPONENT ARCHITECTURE (ACPICA)
315 M:      Robert Moore <robert.moore@intel.com>
316 M:      Lv Zheng <lv.zheng@intel.com>
317 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
318 L:      linux-acpi@vger.kernel.org
319 L:      devel@acpica.org
320 W:      https://acpica.org/
321 W:      https://github.com/acpica/acpica/
322 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 B:      https://bugzilla.kernel.org
325 B:      https://bugs.acpica.org
326 S:      Supported
327 F:      drivers/acpi/acpica/
328 F:      include/acpi/
329 F:      tools/power/acpi/
330
331 ACPI FAN DRIVER
332 M:      Zhang Rui <rui.zhang@intel.com>
333 L:      linux-acpi@vger.kernel.org
334 W:      https://01.org/linux-acpi
335 B:      https://bugzilla.kernel.org
336 S:      Supported
337 F:      drivers/acpi/fan.c
338
339 ACPI FOR ARM64 (ACPI/arm64)
340 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
341 M:      Hanjun Guo <hanjun.guo@linaro.org>
342 M:      Sudeep Holla <sudeep.holla@arm.com>
343 L:      linux-acpi@vger.kernel.org
344 S:      Maintained
345 F:      drivers/acpi/arm64
346
347 ACPI THERMAL DRIVER
348 M:      Zhang Rui <rui.zhang@intel.com>
349 L:      linux-acpi@vger.kernel.org
350 W:      https://01.org/linux-acpi
351 B:      https://bugzilla.kernel.org
352 S:      Supported
353 F:      drivers/acpi/*thermal*
354
355 ACPI VIDEO DRIVER
356 M:      Zhang Rui <rui.zhang@intel.com>
357 L:      linux-acpi@vger.kernel.org
358 W:      https://01.org/linux-acpi
359 B:      https://bugzilla.kernel.org
360 S:      Supported
361 F:      drivers/acpi/acpi_video.c
362
363 ACPI WMI DRIVER
364 L:      platform-driver-x86@vger.kernel.org
365 S:      Orphan
366 F:      drivers/platform/x86/wmi.c
367
368 AD1889 ALSA SOUND DRIVER
369 M:      Thibaut Varene <T-Bone@parisc-linux.org>
370 W:      http://wiki.parisc-linux.org/AD1889
371 L:      linux-parisc@vger.kernel.org
372 S:      Maintained
373 F:      sound/pci/ad1889.*
374
375 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
376 M:      Michael Hennerich <michael.hennerich@analog.com>
377 W:      http://wiki.analog.com/AD5254
378 W:      http://ez.analog.com/community/linux-device-drivers
379 S:      Supported
380 F:      drivers/misc/ad525x_dpot.c
381
382 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
383 M:      Michael Hennerich <michael.hennerich@analog.com>
384 W:      http://wiki.analog.com/AD5398
385 W:      http://ez.analog.com/community/linux-device-drivers
386 S:      Supported
387 F:      drivers/regulator/ad5398.c
388
389 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
390 M:      Michael Hennerich <michael.hennerich@analog.com>
391 W:      http://wiki.analog.com/AD7142
392 W:      http://ez.analog.com/community/linux-device-drivers
393 S:      Supported
394 F:      drivers/input/misc/ad714x.c
395
396 AD7877 TOUCHSCREEN DRIVER
397 M:      Michael Hennerich <michael.hennerich@analog.com>
398 W:      http://wiki.analog.com/AD7877
399 W:      http://ez.analog.com/community/linux-device-drivers
400 S:      Supported
401 F:      drivers/input/touchscreen/ad7877.c
402
403 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
404 M:      Michael Hennerich <michael.hennerich@analog.com>
405 W:      http://wiki.analog.com/AD7879
406 W:      http://ez.analog.com/community/linux-device-drivers
407 S:      Supported
408 F:      drivers/input/touchscreen/ad7879.c
409
410 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
411 M:      Jiri Kosina <jikos@kernel.org>
412 S:      Maintained
413
414 ADF7242 IEEE 802.15.4 RADIO DRIVER
415 M:      Michael Hennerich <michael.hennerich@analog.com>
416 W:      https://wiki.analog.com/ADF7242
417 W:      http://ez.analog.com/community/linux-device-drivers
418 L:      linux-wpan@vger.kernel.org
419 S:      Supported
420 F:      drivers/net/ieee802154/adf7242.c
421 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
422
423 ADM1025 HARDWARE MONITOR DRIVER
424 M:      Jean Delvare <jdelvare@suse.com>
425 L:      linux-hwmon@vger.kernel.org
426 S:      Maintained
427 F:      Documentation/hwmon/adm1025
428 F:      drivers/hwmon/adm1025.c
429
430 ADM1029 HARDWARE MONITOR DRIVER
431 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
432 L:      linux-hwmon@vger.kernel.org
433 S:      Maintained
434 F:      drivers/hwmon/adm1029.c
435
436 ADM8211 WIRELESS DRIVER
437 L:      linux-wireless@vger.kernel.org
438 W:      http://wireless.kernel.org/
439 S:      Orphan
440 F:      drivers/net/wireless/admtek/adm8211.*
441
442 ADP1653 FLASH CONTROLLER DRIVER
443 M:      Sakari Ailus <sakari.ailus@iki.fi>
444 L:      linux-media@vger.kernel.org
445 S:      Maintained
446 F:      drivers/media/i2c/adp1653.c
447 F:      include/media/i2c/adp1653.h
448
449 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
450 M:      Michael Hennerich <michael.hennerich@analog.com>
451 W:      http://wiki.analog.com/ADP5520
452 W:      http://ez.analog.com/community/linux-device-drivers
453 S:      Supported
454 F:      drivers/mfd/adp5520.c
455 F:      drivers/video/backlight/adp5520_bl.c
456 F:      drivers/leds/leds-adp5520.c
457 F:      drivers/gpio/gpio-adp5520.c
458 F:      drivers/input/keyboard/adp5520-keys.c
459
460 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
461 M:      Michael Hennerich <michael.hennerich@analog.com>
462 W:      http://wiki.analog.com/ADP5588
463 W:      http://ez.analog.com/community/linux-device-drivers
464 S:      Supported
465 F:      drivers/input/keyboard/adp5588-keys.c
466 F:      drivers/gpio/gpio-adp5588.c
467
468 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 W:      http://wiki.analog.com/ADP8860
471 W:      http://ez.analog.com/community/linux-device-drivers
472 S:      Supported
473 F:      drivers/video/backlight/adp8860_bl.c
474
475 ADS1015 HARDWARE MONITOR DRIVER
476 M:      Dirk Eibach <eibach@gdsys.de>
477 L:      linux-hwmon@vger.kernel.org
478 S:      Maintained
479 F:      Documentation/hwmon/ads1015
480 F:      drivers/hwmon/ads1015.c
481 F:      include/linux/platform_data/ads1015.h
482
483 ADT746X FAN DRIVER
484 M:      Colin Leroy <colin@colino.net>
485 S:      Maintained
486 F:      drivers/macintosh/therm_adt746x.c
487
488 ADT7475 HARDWARE MONITOR DRIVER
489 M:      Jean Delvare <jdelvare@suse.com>
490 L:      linux-hwmon@vger.kernel.org
491 S:      Maintained
492 F:      Documentation/hwmon/adt7475
493 F:      drivers/hwmon/adt7475.c
494
495 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
496 M:      Michael Hennerich <michael.hennerich@analog.com>
497 W:      http://wiki.analog.com/ADXL345
498 W:      http://ez.analog.com/community/linux-device-drivers
499 S:      Supported
500 F:      drivers/input/misc/adxl34x.c
501
502 ADVANSYS SCSI DRIVER
503 M:      Matthew Wilcox <matthew@wil.cx>
504 M:      Hannes Reinecke <hare@suse.com>
505 L:      linux-scsi@vger.kernel.org
506 S:      Maintained
507 F:      Documentation/scsi/advansys.txt
508 F:      drivers/scsi/advansys.c
509
510 AEDSP16 DRIVER
511 M:      Riccardo Facchetti <fizban@tin.it>
512 S:      Maintained
513 F:      sound/oss/aedsp16.c
514
515 AF9013 MEDIA DRIVER
516 M:      Antti Palosaari <crope@iki.fi>
517 L:      linux-media@vger.kernel.org
518 W:      https://linuxtv.org
519 W:      http://palosaari.fi/linux/
520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
521 T:      git git://linuxtv.org/anttip/media_tree.git
522 S:      Maintained
523 F:      drivers/media/dvb-frontends/af9013*
524
525 AF9033 MEDIA DRIVER
526 M:      Antti Palosaari <crope@iki.fi>
527 L:      linux-media@vger.kernel.org
528 W:      https://linuxtv.org
529 W:      http://palosaari.fi/linux/
530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
531 T:      git git://linuxtv.org/anttip/media_tree.git
532 S:      Maintained
533 F:      drivers/media/dvb-frontends/af9033*
534
535 AFFS FILE SYSTEM
536 L:      linux-fsdevel@vger.kernel.org
537 S:      Orphan
538 F:      Documentation/filesystems/affs.txt
539 F:      fs/affs/
540
541 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
542 M:      David Howells <dhowells@redhat.com>
543 L:      linux-afs@lists.infradead.org
544 S:      Supported
545 F:      fs/afs/
546 F:      include/net/af_rxrpc.h
547 F:      net/rxrpc/af_rxrpc.c
548 W:      https://www.infradead.org/~dhowells/kafs/
549
550 AGPGART DRIVER
551 M:      David Airlie <airlied@linux.ie>
552 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
553 S:      Maintained
554 F:      drivers/char/agp/
555 F:      include/linux/agp*
556 F:      include/uapi/linux/agp*
557
558 AHA152X SCSI DRIVER
559 M:      "Juergen E. Fischer" <fischer@norbit.de>
560 L:      linux-scsi@vger.kernel.org
561 S:      Maintained
562 F:      drivers/scsi/aha152x*
563 F:      drivers/scsi/pcmcia/aha152x*
564
565 AIC7XXX / AIC79XX SCSI DRIVER
566 M:      Hannes Reinecke <hare@suse.com>
567 L:      linux-scsi@vger.kernel.org
568 S:      Maintained
569 F:      drivers/scsi/aic7xxx/
570
571 AIMSLAB FM RADIO RECEIVER DRIVER
572 M:      Hans Verkuil <hverkuil@xs4all.nl>
573 L:      linux-media@vger.kernel.org
574 T:      git git://linuxtv.org/media_tree.git
575 W:      https://linuxtv.org
576 S:      Maintained
577 F:      drivers/media/radio/radio-aimslab*
578
579 AIO
580 M:      Benjamin LaHaise <bcrl@kvack.org>
581 L:      linux-aio@kvack.org
582 S:      Supported
583 F:      fs/aio.c
584 F:      include/linux/*aio*.h
585
586 AIRSPY MEDIA DRIVER
587 M:      Antti Palosaari <crope@iki.fi>
588 L:      linux-media@vger.kernel.org
589 W:      https://linuxtv.org
590 W:      http://palosaari.fi/linux/
591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
592 T:      git git://linuxtv.org/anttip/media_tree.git
593 S:      Maintained
594 F:      drivers/media/usb/airspy/
595
596 ALACRITECH GIGABIT ETHERNET DRIVER
597 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
598 S:      Maintained
599 F:      drivers/net/ethernet/alacritech/*
600
601 ALCATEL SPEEDTOUCH USB DRIVER
602 M:      Duncan Sands <duncan.sands@free.fr>
603 L:      linux-usb@vger.kernel.org
604 W:      http://www.linux-usb.org/SpeedTouch/
605 S:      Maintained
606 F:      drivers/usb/atm/speedtch.c
607 F:      drivers/usb/atm/usbatm.c
608
609 ALCHEMY AU1XX0 MMC DRIVER
610 M:      Manuel Lauss <manuel.lauss@gmail.com>
611 S:      Maintained
612 F:      drivers/mmc/host/au1xmmc.c
613
614 ALI1563 I2C DRIVER
615 M:      Rudolf Marek <r.marek@assembler.cz>
616 L:      linux-i2c@vger.kernel.org
617 S:      Maintained
618 F:      Documentation/i2c/busses/i2c-ali1563
619 F:      drivers/i2c/busses/i2c-ali1563.c
620
621 ALLWINNER SECURITY SYSTEM
622 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
623 L:      linux-crypto@vger.kernel.org
624 S:      Maintained
625 F:      drivers/crypto/sunxi-ss/
626
627 ALPHA PORT
628 M:      Richard Henderson <rth@twiddle.net>
629 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
630 M:      Matt Turner <mattst88@gmail.com>
631 S:      Odd Fixes
632 L:      linux-alpha@vger.kernel.org
633 F:      arch/alpha/
634
635 ALPS PS/2 TOUCHPAD DRIVER
636 R:      Pali Rohár <pali.rohar@gmail.com>
637 F:      drivers/input/mouse/alps.*
638
639 ALTERA MAILBOX DRIVER
640 M:      Ley Foon Tan <lftan@altera.com>
641 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
642 S:      Maintained
643 F:      drivers/mailbox/mailbox-altera.c
644
645 ALTERA PIO DRIVER
646 M:      Tien Hock Loh <thloh@altera.com>
647 L:      linux-gpio@vger.kernel.org
648 S:      Maintained
649 F:      drivers/gpio/gpio-altera.c
650
651 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
652 M:      Thor Thayer <thor.thayer@linux.intel.com>
653 S:      Maintained
654 F:      drivers/gpio/gpio-altera-a10sr.c
655 F:      drivers/mfd/altera-a10sr.c
656 F:      drivers/reset/reset-a10sr.c
657 F:      include/linux/mfd/altera-a10sr.h
658 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
659
660 ALTERA TRIPLE SPEED ETHERNET DRIVER
661 M:      Vince Bridgers <vbridger@opensource.altera.com>
662 L:      netdev@vger.kernel.org
663 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
664 S:      Maintained
665 F:      drivers/net/ethernet/altera/
666
667 ALTERA UART/JTAG UART SERIAL DRIVERS
668 M:      Tobias Klauser <tklauser@distanz.ch>
669 L:      linux-serial@vger.kernel.org
670 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
671 S:      Maintained
672 F:      drivers/tty/serial/altera_uart.c
673 F:      drivers/tty/serial/altera_jtaguart.c
674 F:      include/linux/altera_uart.h
675 F:      include/linux/altera_jtaguart.h
676
677 AMAZON ETHERNET DRIVERS
678 M:      Netanel Belgazal <netanel@annapurnalabs.com>
679 R:      Saeed Bishara <saeed@annapurnalabs.com>
680 R:      Zorik Machulsky <zorik@annapurnalabs.com>
681 L:      netdev@vger.kernel.org
682 S:      Supported
683 F:      Documentation/networking/ena.txt
684 F:      drivers/net/ethernet/amazon/
685
686 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
687 M:      Tom Lendacky <thomas.lendacky@amd.com>
688 M:      Gary Hook <gary.hook@amd.com>
689 L:      linux-crypto@vger.kernel.org
690 S:      Supported
691 F:      drivers/crypto/ccp/
692 F:      include/linux/ccp.h
693
694 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
695 M:      Huang Rui <ray.huang@amd.com>
696 L:      linux-hwmon@vger.kernel.org
697 S:      Supported
698 F:      Documentation/hwmon/fam15h_power
699 F:      drivers/hwmon/fam15h_power.c
700
701 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
702 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
703 S:      Orphan
704 F:      drivers/usb/gadget/udc/amd5536udc.*
705
706 AMD GEODE PROCESSOR/CHIPSET SUPPORT
707 P:      Andres Salomon <dilinger@queued.net>
708 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
709 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
710 S:      Supported
711 F:      drivers/char/hw_random/geode-rng.c
712 F:      drivers/crypto/geode*
713 F:      drivers/video/fbdev/geode/
714 F:      arch/x86/include/asm/geode.h
715
716 AMD IOMMU (AMD-VI)
717 M:      Joerg Roedel <joro@8bytes.org>
718 L:      iommu@lists.linux-foundation.org
719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
720 S:      Maintained
721 F:      drivers/iommu/amd_iommu*.[ch]
722 F:      include/linux/amd-iommu.h
723
724 AMD KFD
725 M:      Oded Gabbay <oded.gabbay@gmail.com>
726 L:      dri-devel@lists.freedesktop.org
727 T:      git git://people.freedesktop.org/~gabbayo/linux.git
728 S:      Supported
729 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
730 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
731 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
732 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
733 F:      drivers/gpu/drm/amd/amdkfd/
734 F:      drivers/gpu/drm/amd/include/cik_structs.h
735 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
736 F:      drivers/gpu/drm/amd/include/vi_structs.h
737 F:      drivers/gpu/drm/radeon/radeon_kfd.c
738 F:      drivers/gpu/drm/radeon/radeon_kfd.h
739 F:      include/uapi/linux/kfd_ioctl.h
740
741 AMD SEATTLE DEVICE TREE SUPPORT
742 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
743 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
744 M:      Tom Lendacky <thomas.lendacky@amd.com>
745 S:      Supported
746 F:      arch/arm64/boot/dts/amd/
747
748 AMD XGBE DRIVER
749 M:      Tom Lendacky <thomas.lendacky@amd.com>
750 L:      netdev@vger.kernel.org
751 S:      Supported
752 F:      drivers/net/ethernet/amd/xgbe/
753 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
754
755 AMS (Apple Motion Sensor) DRIVER
756 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
757 S:      Supported
758 F:      drivers/macintosh/ams/
759
760 ANALOG DEVICES INC AD9389B DRIVER
761 M:      Hans Verkuil <hans.verkuil@cisco.com>
762 L:      linux-media@vger.kernel.org
763 S:      Maintained
764 F:      drivers/media/i2c/ad9389b*
765
766 ANALOG DEVICES INC ADV7180 DRIVER
767 M:      Lars-Peter Clausen <lars@metafoo.de>
768 L:      linux-media@vger.kernel.org
769 W:      http://ez.analog.com/community/linux-device-drivers
770 S:      Supported
771 F:      drivers/media/i2c/adv7180.c
772
773 ANALOG DEVICES INC ADV7511 DRIVER
774 M:      Hans Verkuil <hans.verkuil@cisco.com>
775 L:      linux-media@vger.kernel.org
776 S:      Maintained
777 F:      drivers/media/i2c/adv7511*
778
779 ANALOG DEVICES INC ADV7604 DRIVER
780 M:      Hans Verkuil <hans.verkuil@cisco.com>
781 L:      linux-media@vger.kernel.org
782 S:      Maintained
783 F:      drivers/media/i2c/adv7604*
784
785 ANALOG DEVICES INC ADV7842 DRIVER
786 M:      Hans Verkuil <hans.verkuil@cisco.com>
787 L:      linux-media@vger.kernel.org
788 S:      Maintained
789 F:      drivers/media/i2c/adv7842*
790
791 ANALOG DEVICES INC ASOC CODEC DRIVERS
792 M:      Lars-Peter Clausen <lars@metafoo.de>
793 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
794 W:      http://wiki.analog.com/
795 W:      http://ez.analog.com/community/linux-device-drivers
796 S:      Supported
797 F:      sound/soc/codecs/adau*
798 F:      sound/soc/codecs/adav*
799 F:      sound/soc/codecs/ad1*
800 F:      sound/soc/codecs/ad7*
801 F:      sound/soc/codecs/ssm*
802 F:      sound/soc/codecs/sigmadsp.*
803
804 ANALOG DEVICES INC ASOC DRIVERS
805 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
806 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
807 W:      http://blackfin.uclinux.org/
808 S:      Supported
809 F:      sound/soc/blackfin/*
810
811 ANALOG DEVICES INC IIO DRIVERS
812 M:      Lars-Peter Clausen <lars@metafoo.de>
813 M:      Michael Hennerich <Michael.Hennerich@analog.com>
814 W:      http://wiki.analog.com/
815 W:      http://ez.analog.com/community/linux-device-drivers
816 S:      Supported
817 F:      drivers/iio/*/ad*
818 F:      drivers/iio/adc/ltc2497*
819 X:      drivers/iio/*/adjd*
820 F:      drivers/staging/iio/*/ad*
821 F:      drivers/staging/iio/trigger/iio-trig-bfin-timer.c
822
823 ANALOG DEVICES INC DMA DRIVERS
824 M:      Lars-Peter Clausen <lars@metafoo.de>
825 W:      http://ez.analog.com/community/linux-device-drivers
826 S:      Supported
827 F:      drivers/dma/dma-axi-dmac.c
828
829 ANDROID CONFIG FRAGMENTS
830 M:      Rob Herring <robh@kernel.org>
831 S:      Supported
832 F:      kernel/configs/android*
833
834 ANDROID DRIVERS
835 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
836 M:      Arve Hjønnevåg <arve@android.com>
837 M:      Riley Andrews <riandrews@android.com>
838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
839 L:      devel@driverdev.osuosl.org
840 S:      Supported
841 F:      drivers/android/
842 F:      drivers/staging/android/
843
844 ANDROID ION DRIVER
845 M:      Laura Abbott <labbott@redhat.com>
846 M:      Sumit Semwal <sumit.semwal@linaro.org>
847 L:      devel@driverdev.osuosl.org
848 S:      Supported
849 F:      drivers/staging/android/ion
850 F:      drivers/staging/android/uapi/ion.h
851 F:      drivers/staging/android/uapi/ion_test.h
852
853 AOA (Apple Onboard Audio) ALSA DRIVER
854 M:      Johannes Berg <johannes@sipsolutions.net>
855 L:      linuxppc-dev@lists.ozlabs.org
856 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
857 S:      Maintained
858 F:      sound/aoa/
859
860 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
861 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
862 L:      linux-iio@vger.kernel.org
863 S:      Maintained
864 F:      drivers/iio/adc/stx104.c
865
866 APM DRIVER
867 M:      Jiri Kosina <jikos@kernel.org>
868 S:      Odd fixes
869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
870 F:      arch/x86/kernel/apm_32.c
871 F:      include/linux/apm_bios.h
872 F:      include/uapi/linux/apm_bios.h
873 F:      drivers/char/apm-emulation.c
874
875 APPLE BCM5974 MULTITOUCH DRIVER
876 M:      Henrik Rydberg <rydberg@bitmath.org>
877 L:      linux-input@vger.kernel.org
878 S:      Odd fixes
879 F:      drivers/input/mouse/bcm5974.c
880
881 APPLE SMC DRIVER
882 M:      Henrik Rydberg <rydberg@bitmath.org>
883 L:      linux-hwmon@vger.kernel.org
884 S:      Odd fixes
885 F:      drivers/hwmon/applesmc.c
886
887 APPLETALK NETWORK LAYER
888 L:      netdev@vger.kernel.org
889 S:      Odd fixes
890 F:      drivers/net/appletalk/
891 F:      net/appletalk/
892
893 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
894 M:      Duc Dang <dhdang@apm.com>
895 S:      Supported
896 F:      arch/arm64/boot/dts/apm/
897
898 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
899 M:      Iyappan Subramanian <isubramanian@apm.com>
900 M:      Keyur Chudgar <kchudgar@apm.com>
901 M:      Quan Nguyen <qnguyen@apm.com>
902 S:      Supported
903 F:      drivers/net/ethernet/apm/xgene/
904 F:      drivers/net/phy/mdio-xgene.c
905 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
906 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
907
908 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
909 M:      Iyappan Subramanian <isubramanian@apm.com>
910 M:      Keyur Chudgar <kchudgar@apm.com>
911 S:      Supported
912 F:      drivers/net/ethernet/apm/xgene-v2/
913
914 APPLIED MICRO (APM) X-GENE SOC PMU
915 M:      Tai Nguyen <ttnguyen@apm.com>
916 S:      Supported
917 F:      drivers/perf/xgene_pmu.c
918 F:      Documentation/perf/xgene-pmu.txt
919 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
920
921 APTINA CAMERA SENSOR PLL
922 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
923 L:      linux-media@vger.kernel.org
924 S:      Maintained
925 F:      drivers/media/i2c/aptina-pll.*
926
927 ARC FRAMEBUFFER DRIVER
928 M:      Jaya Kumar <jayalk@intworks.biz>
929 S:      Maintained
930 F:      drivers/video/fbdev/arcfb.c
931 F:      drivers/video/fbdev/core/fb_defio.c
932
933 ARCNET NETWORK LAYER
934 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
935 L:      netdev@vger.kernel.org
936 S:      Maintained
937 F:      drivers/net/arcnet/
938 F:      include/uapi/linux/if_arcnet.h
939
940 ARC PGU DRM DRIVER
941 M:      Alexey Brodkin <abrodkin@synopsys.com>
942 S:      Supported
943 F:      drivers/gpu/drm/arc/
944 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
945
946 ARM ARCHITECTED TIMER DRIVER
947 M:      Mark Rutland <mark.rutland@arm.com>
948 M:      Marc Zyngier <marc.zyngier@arm.com>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 F:      arch/arm/include/asm/arch_timer.h
952 F:      arch/arm64/include/asm/arch_timer.h
953 F:      drivers/clocksource/arm_arch_timer.c
954
955 ARM HDLCD DRM DRIVER
956 M:      Liviu Dudau <liviu.dudau@arm.com>
957 S:      Supported
958 F:      drivers/gpu/drm/arm/hdlcd_*
959 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
960
961 ARM MALI-DP DRM DRIVER
962 M:      Liviu Dudau <liviu.dudau@arm.com>
963 M:      Brian Starkey <brian.starkey@arm.com>
964 M:      Mali DP Maintainers <malidp@foss.arm.com>
965 S:      Supported
966 F:      drivers/gpu/drm/arm/
967 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
968
969 ARM MFM AND FLOPPY DRIVERS
970 M:      Ian Molton <spyro@f2s.com>
971 S:      Maintained
972 F:      arch/arm/lib/floppydma.S
973 F:      arch/arm/include/asm/floppy.h
974
975 ARM PMU PROFILING AND DEBUGGING
976 M:      Will Deacon <will.deacon@arm.com>
977 M:      Mark Rutland <mark.rutland@arm.com>
978 S:      Maintained
979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980 F:      arch/arm*/kernel/perf_*
981 F:      arch/arm/oprofile/common.c
982 F:      arch/arm*/kernel/hw_breakpoint.c
983 F:      arch/arm*/include/asm/hw_breakpoint.h
984 F:      arch/arm*/include/asm/perf_event.h
985 F:      drivers/perf/*
986 F:      include/linux/perf/arm_pmu.h
987 F:      Documentation/devicetree/bindings/arm/pmu.txt
988 F:      Documentation/devicetree/bindings/perf/
989
990 ARM PORT
991 M:      Russell King <linux@armlinux.org.uk>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 W:      http://www.armlinux.org.uk/
994 S:      Maintained
995 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
996 F:      arch/arm/
997
998 ARM SUB-ARCHITECTURES
999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1000 S:      Maintained
1001 F:      arch/arm/mach-*/
1002 F:      arch/arm/plat-*/
1003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1004
1005 ARM PRIMECELL AACI PL041 DRIVER
1006 M:      Russell King <linux@armlinux.org.uk>
1007 S:      Maintained
1008 F:      sound/arm/aaci.*
1009
1010 ARM PRIMECELL CLCD PL110 DRIVER
1011 M:      Russell King <linux@armlinux.org.uk>
1012 S:      Maintained
1013 F:      drivers/video/fbdev/amba-clcd.*
1014
1015 ARM PRIMECELL KMI PL050 DRIVER
1016 M:      Russell King <linux@armlinux.org.uk>
1017 S:      Maintained
1018 F:      drivers/input/serio/ambakmi.*
1019 F:      include/linux/amba/kmi.h
1020
1021 ARM PRIMECELL MMCI PL180/1 DRIVER
1022 M:      Russell King <linux@armlinux.org.uk>
1023 S:      Maintained
1024 F:      drivers/mmc/host/mmci.*
1025 F:      include/linux/amba/mmci.h
1026
1027 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1028 M:      Russell King <linux@armlinux.org.uk>
1029 S:      Maintained
1030 F:      drivers/tty/serial/amba-pl01*.c
1031 F:      include/linux/amba/serial.h
1032
1033 ARM PRIMECELL BUS SUPPORT
1034 M:      Russell King <linux@armlinux.org.uk>
1035 S:      Maintained
1036 F:      drivers/amba/
1037 F:      include/linux/amba/bus.h
1038
1039 ARM/ACTIONS SEMI ARCHITECTURE
1040 M:      Andreas Färber <afaerber@suse.de>
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 S:      Maintained
1043 N:      owl
1044 F:      arch/arm/mach-actions/
1045 F:      arch/arm/boot/dts/owl-*
1046 F:      arch/arm64/boot/dts/actions/
1047 F:      drivers/clocksource/owl-*
1048 F:      drivers/soc/actions/
1049 F:      include/dt-bindings/power/owl-*
1050 F:      include/linux/soc/actions/
1051 F:      Documentation/devicetree/bindings/arm/actions.txt
1052 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1053 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1054
1055 ARM/ADS SPHERE MACHINE SUPPORT
1056 M:      Lennert Buytenhek <kernel@wantstofly.org>
1057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058 S:      Maintained
1059
1060 ARM/AFEB9260 MACHINE SUPPORT
1061 M:      Sergey Lapin <slapin@ossfans.org>
1062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 S:      Maintained
1064
1065 ARM/AJECO 1ARM MACHINE SUPPORT
1066 M:      Lennert Buytenhek <kernel@wantstofly.org>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 S:      Maintained
1069
1070 ARM/Allwinner sunXi SoC support
1071 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
1072 M:      Chen-Yu Tsai <wens@csie.org>
1073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 S:      Maintained
1075 N:      sun[x456789]i
1076 N:      sun50i
1077 F:      arch/arm/mach-sunxi/
1078 F:      arch/arm64/boot/dts/allwinner/
1079 F:      drivers/clk/sunxi-ng/
1080 F:      drivers/pinctrl/sunxi/
1081 F:      drivers/soc/sunxi/
1082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1083
1084 ARM/Allwinner SoC Clock Support
1085 M:      Emilio López <emilio@elopez.com.ar>
1086 S:      Maintained
1087 F:      drivers/clk/sunxi/
1088
1089 ARM/Amlogic Meson SoC support
1090 M:      Carlo Caione <carlo@caione.org>
1091 M:      Kevin Hilman <khilman@baylibre.com>
1092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 L:      linux-amlogic@lists.infradead.org
1094 W:      http://linux-meson.com/
1095 S:      Maintained
1096 F:      arch/arm/mach-meson/
1097 F:      arch/arm/boot/dts/meson*
1098 F:      arch/arm64/boot/dts/amlogic/
1099 F:      drivers/pinctrl/meson/
1100 F:      drivers/mmc/host/meson*
1101 N:      meson
1102
1103 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1104 M:      Neil Armstrong <narmstrong@baylibre.com>
1105 M:      Jerome Brunet <jbrunet@baylibre.com>
1106 L:      linux-amlogic@lists.infradead.org
1107 S:      Maintained
1108 F:      drivers/clk/meson/
1109 F:      include/dt-bindings/clock/meson*
1110 F:      include/dt-bindings/clock/gxbb*
1111 F:      Documentation/devicetree/bindings/clock/amlogic*
1112
1113 ARM/Annapurna Labs ALPINE ARCHITECTURE
1114 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1115 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 S:      Maintained
1118 F:      arch/arm/mach-alpine/
1119 F:      arch/arm/boot/dts/alpine*
1120 F:      arch/arm64/boot/dts/al/
1121 F:      drivers/*/*alpine*
1122
1123 ARM/ARTPEC MACHINE SUPPORT
1124 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1125 M:      Lars Persson <lars.persson@axis.com>
1126 M:      Niklas Cassel <niklas.cassel@axis.com>
1127 S:      Maintained
1128 L:      linux-arm-kernel@axis.com
1129 F:      arch/arm/mach-artpec
1130 F:      arch/arm/boot/dts/artpec6*
1131 F:      drivers/clk/axis
1132 F:      drivers/pinctrl/pinctrl-artpec*
1133 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1134
1135 ARM/ASPEED MACHINE SUPPORT
1136 M:      Joel Stanley <joel@jms.id.au>
1137 S:      Maintained
1138 F:      arch/arm/mach-aspeed/
1139 F:      arch/arm/boot/dts/aspeed-*
1140 F:      drivers/*/*aspeed*
1141
1142 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1143 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
1144 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146 W:      http://www.linux4sam.org
1147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1148 S:      Supported
1149 F:      arch/arm/mach-at91/
1150 F:      include/soc/at91/
1151 F:      arch/arm/boot/dts/at91*.dts
1152 F:      arch/arm/boot/dts/at91*.dtsi
1153 F:      arch/arm/boot/dts/sama*.dts
1154 F:      arch/arm/boot/dts/sama*.dtsi
1155 F:      arch/arm/include/debug/at91.S
1156 F:      drivers/memory/atmel*
1157
1158 ARM/ATMEL AT91 Clock Support
1159 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1160 S:      Maintained
1161 F:      drivers/clk/at91
1162
1163 ARM/CALXEDA HIGHBANK ARCHITECTURE
1164 M:      Rob Herring <robh@kernel.org>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167 F:      arch/arm/mach-highbank/
1168 F:      arch/arm/boot/dts/highbank.dts
1169 F:      arch/arm/boot/dts/ecx-*.dts*
1170
1171 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1172 M:      Krzysztof Halasa <khalasa@piap.pl>
1173 S:      Maintained
1174 F:      arch/arm/mach-cns3xxx/
1175
1176 ARM/CAVIUM THUNDER NETWORK DRIVER
1177 M:      Sunil Goutham <sgoutham@cavium.com>
1178 M:      Robert Richter <rric@kernel.org>
1179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180 S:      Supported
1181 F:      drivers/net/ethernet/cavium/thunder/
1182
1183 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1184 M:      Alexander Shiyan <shc_work@mail.ru>
1185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1186 S:      Odd Fixes
1187 N:      clps711x
1188
1189 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1190 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1191 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194 F:      arch/arm/mach-ep93xx/
1195 F:      arch/arm/mach-ep93xx/include/mach/
1196
1197 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1198 M:      Lennert Buytenhek <kernel@wantstofly.org>
1199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1200 S:      Maintained
1201
1202 ARM/CLKDEV SUPPORT
1203 M:      Russell King <linux@armlinux.org.uk>
1204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1205 S:      Maintained
1206 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1207 F:      arch/arm/include/asm/clkdev.h
1208 F:      drivers/clk/clkdev.c
1209
1210 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1211 M:      Mike Rapoport <mike@compulab.co.il>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214
1215 ARM/CONTEC MICRO9 MACHINE SUPPORT
1216 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1217 S:      Maintained
1218 F:      arch/arm/mach-ep93xx/micro9.c
1219
1220 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1221 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Maintained
1224 F:      drivers/hwtracing/coresight/*
1225 F:      Documentation/trace/coresight.txt
1226 F:      Documentation/trace/coresight-cpu-debug.txt
1227 F:      Documentation/devicetree/bindings/arm/coresight.txt
1228 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1229 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1230 F:      tools/perf/arch/arm/util/pmu.c
1231 F:      tools/perf/arch/arm/util/auxtrace.c
1232 F:      tools/perf/arch/arm/util/cs-etm.c
1233 F:      tools/perf/arch/arm/util/cs-etm.h
1234 F:      tools/perf/util/cs-etm.h
1235
1236 ARM/CORGI MACHINE SUPPORT
1237 M:      Richard Purdie <rpurdie@rpsys.net>
1238 S:      Maintained
1239
1240 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1241 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 T:      git git://github.com/ulli-kroll/linux.git
1244 S:      Maintained
1245 F:      arch/arm/mach-gemini/
1246 F:      drivers/rtc/rtc-gemini.c
1247
1248 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1249 M:      Barry Song <baohua@kernel.org>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1252 S:      Maintained
1253 F:      arch/arm/boot/dts/prima2*
1254 F:      arch/arm/mach-prima2/
1255 F:      drivers/clk/sirf/
1256 F:      drivers/clocksource/timer-prima2.c
1257 F:      drivers/clocksource/timer-atlas7.c
1258 N:      [^a-z]sirf
1259
1260 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1261 M:      Baruch Siach <baruch@tkos.co.il>
1262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264 F:      arch/arm/boot/dts/cx92755*
1265 N:      digicolor
1266
1267 ARM/EBSA110 MACHINE SUPPORT
1268 M:      Russell King <linux@armlinux.org.uk>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 W:      http://www.armlinux.org.uk/
1271 S:      Maintained
1272 F:      arch/arm/mach-ebsa110/
1273 F:      drivers/net/ethernet/amd/am79c961a.*
1274
1275 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1276 M:      Uwe Kleine-König <kernel@pengutronix.de>
1277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278 S:      Maintained
1279 N:      efm32
1280
1281 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1282 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285 F:      arch/arm/mach-pxa/ezx.c
1286
1287 ARM/FARADAY FA526 PORT
1288 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1290 S:      Maintained
1291 T:      git git://git.berlios.de/gemini-board
1292 F:      arch/arm/mm/*-fa*
1293
1294 ARM/FOOTBRIDGE ARCHITECTURE
1295 M:      Russell King <linux@armlinux.org.uk>
1296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 W:      http://www.armlinux.org.uk/
1298 S:      Maintained
1299 F:      arch/arm/include/asm/hardware/dec21285.h
1300 F:      arch/arm/mach-footbridge/
1301
1302 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1303 M:      Shawn Guo <shawnguo@kernel.org>
1304 M:      Sascha Hauer <kernel@pengutronix.de>
1305 R:      Fabio Estevam <fabio.estevam@nxp.com>
1306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1307 S:      Maintained
1308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1309 F:      arch/arm/mach-imx/
1310 F:      arch/arm/mach-mxs/
1311 F:      arch/arm/boot/dts/imx*
1312 F:      arch/arm/configs/imx*_defconfig
1313 F:      drivers/clk/imx/
1314 F:      drivers/soc/imx/
1315 F:      include/soc/imx/
1316
1317 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1318 M:      Shawn Guo <shawnguo@kernel.org>
1319 M:      Sascha Hauer <kernel@pengutronix.de>
1320 R:      Stefan Agner <stefan@agner.ch>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 S:      Maintained
1323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1324 F:      arch/arm/mach-imx/*vf610*
1325 F:      arch/arm/boot/dts/vf*
1326
1327 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1328 M:      Lennert Buytenhek <kernel@wantstofly.org>
1329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330 S:      Maintained
1331
1332 ARM/GUMSTIX MACHINE SUPPORT
1333 M:      Steve Sakoman <sakoman@gmail.com>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 S:      Maintained
1336
1337 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1338 M:      Philipp Zabel <philipp.zabel@gmail.com>
1339 M:      Paul Parsons <lost.distance@yahoo.com>
1340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341 S:      Maintained
1342 F:      arch/arm/mach-pxa/hx4700.c
1343 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1344 F:      sound/soc/pxa/hx4700.c
1345
1346 ARM/HISILICON SOC SUPPORT
1347 M:      Wei Xu <xuwei5@hisilicon.com>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 W:      http://www.hisilicon.com
1350 S:      Supported
1351 T:      git git://github.com/hisilicon/linux-hisi.git
1352 F:      arch/arm/mach-hisi/
1353 F:      arch/arm/boot/dts/hi3*
1354 F:      arch/arm/boot/dts/hip*
1355 F:      arch/arm/boot/dts/hisi*
1356 F:      arch/arm64/boot/dts/hisilicon/
1357
1358 ARM/HP JORNADA 7XX MACHINE SUPPORT
1359 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1360 W:      www.jlime.com
1361 S:      Maintained
1362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1363 F:      arch/arm/mach-sa1100/jornada720.c
1364 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1365
1366 ARM/IGEP MACHINE SUPPORT
1367 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1368 M:      Javier Martinez Canillas <javier@dowhile0.org>
1369 L:      linux-omap@vger.kernel.org
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 S:      Maintained
1372 F:      arch/arm/boot/dts/omap3-igep*
1373
1374 ARM/INCOME PXA270 SUPPORT
1375 M:      Marek Vasut <marek.vasut@gmail.com>
1376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1377 S:      Maintained
1378 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1379
1380 ARM/INTEL IOP32X ARM ARCHITECTURE
1381 M:      Lennert Buytenhek <kernel@wantstofly.org>
1382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1383 S:      Maintained
1384
1385 ARM/INTEL IOP33X ARM ARCHITECTURE
1386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1387 S:      Orphan
1388
1389 ARM/INTEL IOP13XX ARM ARCHITECTURE
1390 M:      Lennert Buytenhek <kernel@wantstofly.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393
1394 ARM/INTEL IQ81342EX MACHINE SUPPORT
1395 M:      Lennert Buytenhek <kernel@wantstofly.org>
1396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1397 S:      Maintained
1398
1399 ARM/INTEL IXDP2850 MACHINE SUPPORT
1400 M:      Lennert Buytenhek <kernel@wantstofly.org>
1401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1402 S:      Maintained
1403
1404 ARM/INTEL IXP4XX ARM ARCHITECTURE
1405 M:      Imre Kaloz <kaloz@openwrt.org>
1406 M:      Krzysztof Halasa <khalasa@piap.pl>
1407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 S:      Maintained
1409 F:      arch/arm/mach-ixp4xx/
1410
1411 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1412 M:      Jonathan Cameron <jic23@cam.ac.uk>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 S:      Maintained
1415 F:      arch/arm/mach-pxa/stargate2.c
1416 F:      drivers/pcmcia/pxa2xx_stargate2.c
1417
1418 ARM/INTEL XSC3 (MANZANO) ARM CORE
1419 M:      Lennert Buytenhek <kernel@wantstofly.org>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 S:      Maintained
1422
1423 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1424 M:      Lennert Buytenhek <kernel@wantstofly.org>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 S:      Maintained
1427
1428 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1429 M:      Santosh Shilimkar <ssantosh@kernel.org>
1430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431 S:      Maintained
1432 F:      arch/arm/mach-keystone/
1433 F:      arch/arm/boot/dts/keystone-*
1434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1435
1436 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1437 M:      Santosh Shilimkar <ssantosh@kernel.org>
1438 L:      linux-kernel@vger.kernel.org
1439 S:      Maintained
1440 F:      drivers/clk/keystone/
1441
1442 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1443 M:      Santosh Shilimkar <ssantosh@kernel.org>
1444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 L:      linux-kernel@vger.kernel.org
1446 S:      Maintained
1447 F:      drivers/clocksource/timer-keystone.c
1448
1449 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1450 M:      Santosh Shilimkar <ssantosh@kernel.org>
1451 L:      linux-kernel@vger.kernel.org
1452 S:      Maintained
1453 F:      drivers/power/reset/keystone-reset.c
1454
1455 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1456 M:      Santosh Shilimkar <ssantosh@kernel.org>
1457 L:      linux-kernel@vger.kernel.org
1458 S:      Maintained
1459 F:      drivers/memory/*emif*
1460
1461 ARM/LG1K ARCHITECTURE
1462 M:      Chanho Min <chanho.min@lge.com>
1463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 S:      Maintained
1465 F:      arch/arm64/boot/dts/lg/
1466
1467 ARM/LOGICPD PXA270 MACHINE SUPPORT
1468 M:      Lennert Buytenhek <kernel@wantstofly.org>
1469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471
1472 ARM/LPC18XX ARCHITECTURE
1473 M:      Joachim Eastwood <manabian@gmail.com>
1474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1475 S:      Maintained
1476 F:      arch/arm/boot/dts/lpc43*
1477 F:      drivers/clk/nxp/clk-lpc18xx*
1478 F:      drivers/clocksource/time-lpc32xx.c
1479 F:      drivers/i2c/busses/i2c-lpc2k.c
1480 F:      drivers/memory/pl172.c
1481 F:      drivers/mtd/spi-nor/nxp-spifi.c
1482 F:      drivers/rtc/rtc-lpc24xx.c
1483 N:      lpc18xx
1484
1485 ARM/LPC32XX SOC SUPPORT
1486 M:      Vladimir Zapolskiy <vz@mleia.com>
1487 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1490 S:      Maintained
1491 F:      arch/arm/boot/dts/lpc32*
1492 F:      arch/arm/mach-lpc32xx/
1493 F:      drivers/i2c/busses/i2c-pnx.c
1494 F:      drivers/net/ethernet/nxp/lpc_eth.c
1495 F:      drivers/usb/host/ohci-nxp.c
1496 F:      drivers/watchdog/pnx4008_wdt.c
1497 N:      lpc32xx
1498
1499 ARM/MAGICIAN MACHINE SUPPORT
1500 M:      Philipp Zabel <philipp.zabel@gmail.com>
1501 S:      Maintained
1502
1503 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1504 M:      Jason Cooper <jason@lakedaemon.net>
1505 M:      Andrew Lunn <andrew@lunn.ch>
1506 M:      Gregory Clement <gregory.clement@free-electrons.com>
1507 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 S:      Maintained
1510 F:      arch/arm/boot/dts/armada*
1511 F:      arch/arm/boot/dts/kirkwood*
1512 F:      arch/arm/configs/mvebu_*_defconfig
1513 F:      arch/arm/mach-mvebu/
1514 F:      arch/arm64/boot/dts/marvell/armada*
1515 F:      drivers/cpufreq/mvebu-cpufreq.c
1516 F:      drivers/irqchip/irq-armada-370-xp.c
1517 F:      drivers/irqchip/irq-mvebu-*
1518 F:      drivers/pinctrl/mvebu/
1519 F:      drivers/rtc/rtc-armada38x.c
1520
1521 ARM/Marvell Berlin SoC support
1522 M:      Jisheng Zhang <jszhang@marvell.com>
1523 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1525 S:      Maintained
1526 F:      arch/arm/mach-berlin/
1527 F:      arch/arm/boot/dts/berlin*
1528 F:      arch/arm64/boot/dts/marvell/berlin*
1529
1530
1531 ARM/Marvell Dove/MV78xx0/Orion SOC support
1532 M:      Jason Cooper <jason@lakedaemon.net>
1533 M:      Andrew Lunn <andrew@lunn.ch>
1534 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1535 M:      Gregory Clement <gregory.clement@free-electrons.com>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      Documentation/devicetree/bindings/soc/dove/
1539 F:      arch/arm/mach-dove/
1540 F:      arch/arm/mach-mv78xx0/
1541 F:      arch/arm/mach-orion5x/
1542 F:      arch/arm/plat-orion/
1543 F:      arch/arm/boot/dts/dove*
1544 F:      arch/arm/boot/dts/orion5x*
1545
1546
1547 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1548 M:      Alexander Clouter <alex@digriz.org.uk>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 W:      http://www.digriz.org.uk/ts78xx/kernel
1551 S:      Maintained
1552 F:      arch/arm/mach-orion5x/ts78xx-*
1553
1554 ARM/OXNAS platform support
1555 M:      Neil Armstrong <narmstrong@baylibre.com>
1556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1557 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1558 S:      Maintained
1559 F:      arch/arm/mach-oxnas/
1560 F:      arch/arm/boot/dts/ox8*.dtsi
1561 F:      arch/arm/boot/dts/wd-mbwe.dts
1562 F:      arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1563 N:      oxnas
1564
1565 ARM/Mediatek RTC DRIVER
1566 M:      Eddie Huang <eddie.huang@mediatek.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1569 S:      Maintained
1570 F:      drivers/rtc/rtc-mt6397.c
1571
1572 ARM/Mediatek SoC support
1573 M:      Matthias Brugger <matthias.bgg@gmail.com>
1574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      arch/arm/boot/dts/mt6*
1578 F:      arch/arm/boot/dts/mt7*
1579 F:      arch/arm/boot/dts/mt8*
1580 F:      arch/arm/mach-mediatek/
1581 F:      arch/arm64/boot/dts/mediatek/
1582 N:      mtk
1583 K:      mediatek
1584
1585 ARM/Mediatek USB3 PHY DRIVER
1586 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      drivers/phy/phy-mt65xx-usb3.c
1591
1592 ARM/MICREL KS8695 ARCHITECTURE
1593 M:      Greg Ungerer <gerg@uclinux.org>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 F:      arch/arm/mach-ks8695/
1596 S:      Odd Fixes
1597
1598 ARM/MIOA701 MACHINE SUPPORT
1599 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 F:      arch/arm/mach-pxa/mioa701.c
1602 S:      Maintained
1603
1604 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1605 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1606 S:      Maintained
1607
1608 ARM/NOMADIK ARCHITECTURE
1609 M:      Alessandro Rubini <rubini@unipv.it>
1610 M:      Linus Walleij <linus.walleij@linaro.org>
1611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1612 S:      Maintained
1613 F:      arch/arm/mach-nomadik/
1614 F:      drivers/pinctrl/nomadik/
1615 F:      drivers/i2c/busses/i2c-nomadik.c
1616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1617
1618 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1619 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1620 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1621 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1622 S:      Supported
1623
1624 ARM/TOSA MACHINE SUPPORT
1625 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1626 M:      Dirk Opfer <dirk@opfer-online.de>
1627 S:      Maintained
1628
1629 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1630 M:      Marek Vasut <marek.vasut@gmail.com>
1631 L:      linux-arm-kernel@lists.infradead.org
1632 W:      http://hackndev.com
1633 S:      Maintained
1634 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1635 F:      arch/arm/mach-pxa/palmtx.c
1636 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1637 F:      arch/arm/mach-pxa/palmt5.c
1638 F:      arch/arm/mach-pxa/include/mach/palmld.h
1639 F:      arch/arm/mach-pxa/palmld.c
1640 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1641 F:      arch/arm/mach-pxa/palmte2.c
1642 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1643 F:      arch/arm/mach-pxa/palmtc.c
1644
1645 ARM/PALM TREO SUPPORT
1646 M:      Tomas Cech <sleep_walker@suse.com>
1647 L:      linux-arm-kernel@lists.infradead.org
1648 W:      http://hackndev.com
1649 S:      Maintained
1650 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1651 F:      arch/arm/mach-pxa/palmtreo.c
1652
1653 ARM/PALMZ72 SUPPORT
1654 M:      Sergey Lapin <slapin@ossfans.org>
1655 L:      linux-arm-kernel@lists.infradead.org
1656 W:      http://hackndev.com
1657 S:      Maintained
1658 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1659 F:      arch/arm/mach-pxa/palmz72.c
1660
1661 ARM/PLEB SUPPORT
1662 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1663 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1664 S:      Maintained
1665
1666 ARM/PT DIGITAL BOARD PORT
1667 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 W:      http://www.armlinux.org.uk/
1670 S:      Maintained
1671
1672 ARM/QUALCOMM SUPPORT
1673 M:      Andy Gross <andy.gross@linaro.org>
1674 M:      David Brown <david.brown@linaro.org>
1675 L:      linux-arm-msm@vger.kernel.org
1676 L:      linux-soc@vger.kernel.org
1677 S:      Maintained
1678 F:      Documentation/devicetree/bindings/soc/qcom/
1679 F:      arch/arm/boot/dts/qcom-*.dts
1680 F:      arch/arm/boot/dts/qcom-*.dtsi
1681 F:      arch/arm/mach-qcom/
1682 F:      arch/arm64/boot/dts/qcom/*
1683 F:      drivers/i2c/busses/i2c-qup.c
1684 F:      drivers/clk/qcom/
1685 F:      drivers/dma/qcom/
1686 F:      drivers/soc/qcom/
1687 F:      drivers/spi/spi-qup.c
1688 F:      drivers/tty/serial/msm_serial.h
1689 F:      drivers/tty/serial/msm_serial.c
1690 F:      drivers/*/pm8???-*
1691 F:      drivers/mfd/ssbi.c
1692 F:      drivers/firmware/qcom_scm.c
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1694
1695 ARM/RADISYS ENP2611 MACHINE SUPPORT
1696 M:      Lennert Buytenhek <kernel@wantstofly.org>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 S:      Maintained
1699
1700 ARM/REALTEK ARCHITECTURE
1701 M:      Andreas Färber <afaerber@suse.de>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      arch/arm64/boot/dts/realtek/
1705 F:      Documentation/devicetree/bindings/arm/realtek.txt
1706
1707 ARM/RENESAS ARM64 ARCHITECTURE
1708 M:      Simon Horman <horms@verge.net.au>
1709 M:      Magnus Damm <magnus.damm@gmail.com>
1710 L:      linux-renesas-soc@vger.kernel.org
1711 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1713 S:      Supported
1714 F:      arch/arm64/boot/dts/renesas/
1715 F:      drivers/soc/renesas/
1716 F:      include/linux/soc/renesas/
1717
1718 ARM/RISCPC ARCHITECTURE
1719 M:      Russell King <linux@armlinux.org.uk>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 W:      http://www.armlinux.org.uk/
1722 S:      Maintained
1723 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1724 F:      arch/arm/include/asm/hardware/ioc.h
1725 F:      arch/arm/include/asm/hardware/iomd.h
1726 F:      arch/arm/include/asm/hardware/memc.h
1727 F:      arch/arm/mach-rpc/
1728 F:      drivers/net/ethernet/8390/etherh.c
1729 F:      drivers/net/ethernet/i825xx/ether1*
1730 F:      drivers/net/ethernet/seeq/ether3*
1731 F:      drivers/scsi/arm/
1732
1733 ARM/Rockchip SoC support
1734 M:      Heiko Stuebner <heiko@sntech.de>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 L:      linux-rockchip@lists.infradead.org
1737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1738 S:      Maintained
1739 F:      arch/arm/boot/dts/rk3*
1740 F:      arch/arm/boot/dts/rv1108*
1741 F:      arch/arm/mach-rockchip/
1742 F:      drivers/clk/rockchip/
1743 F:      drivers/i2c/busses/i2c-rk3x.c
1744 F:      drivers/*/*rockchip*
1745 F:      drivers/*/*/*rockchip*
1746 F:      sound/soc/rockchip/
1747 N:      rockchip
1748
1749 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1750 M:      Kukjin Kim <kgene@kernel.org>
1751 M:      Krzysztof Kozlowski <krzk@kernel.org>
1752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1754 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1755 S:      Maintained
1756 F:      arch/arm/boot/dts/s3c*
1757 F:      arch/arm/boot/dts/s5p*
1758 F:      arch/arm/boot/dts/samsung*
1759 F:      arch/arm/boot/dts/exynos*
1760 F:      arch/arm64/boot/dts/exynos/
1761 F:      arch/arm/plat-samsung/
1762 F:      arch/arm/mach-s3c24*/
1763 F:      arch/arm/mach-s3c64xx/
1764 F:      arch/arm/mach-s5p*/
1765 F:      arch/arm/mach-exynos*/
1766 F:      drivers/*/*s3c24*
1767 F:      drivers/*/*/*s3c24*
1768 F:      drivers/*/*s3c64xx*
1769 F:      drivers/*/*s5pv210*
1770 F:      drivers/memory/samsung/*
1771 F:      drivers/soc/samsung/*
1772 F:      Documentation/arm/Samsung/
1773 F:      Documentation/devicetree/bindings/arm/samsung/
1774 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1775 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1776 N:      exynos
1777
1778 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1779 M:      Kyungmin Park <kyungmin.park@samsung.com>
1780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      arch/arm/mach-s5pv210/
1783
1784 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1785 M:      Kyungmin Park <kyungmin.park@samsung.com>
1786 M:      Kamil Debski <kamil@wypas.org>
1787 M:      Andrzej Hajda <a.hajda@samsung.com>
1788 L:      linux-arm-kernel@lists.infradead.org
1789 L:      linux-media@vger.kernel.org
1790 S:      Maintained
1791 F:      drivers/media/platform/s5p-g2d/
1792
1793 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1794 M:      Kyungmin Park <kyungmin.park@samsung.com>
1795 M:      Kamil Debski <kamil@wypas.org>
1796 M:      Jeongtae Park <jtp.park@samsung.com>
1797 M:      Andrzej Hajda <a.hajda@samsung.com>
1798 L:      linux-arm-kernel@lists.infradead.org
1799 L:      linux-media@vger.kernel.org
1800 S:      Maintained
1801 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1802 F:      drivers/media/platform/s5p-mfc/
1803
1804 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1805 M:      Marek Szyprowski <m.szyprowski@samsung.com>
1806 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1807 L:      linux-media@vger.kernel.org
1808 S:      Maintained
1809 F:      drivers/media/platform/s5p-cec/
1810 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
1811
1812 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1813 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1814 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
1815 L:      linux-arm-kernel@lists.infradead.org
1816 L:      linux-media@vger.kernel.org
1817 S:      Maintained
1818 F:      drivers/media/platform/s5p-jpeg/
1819
1820 ARM/SHMOBILE ARM ARCHITECTURE
1821 M:      Simon Horman <horms@verge.net.au>
1822 M:      Magnus Damm <magnus.damm@gmail.com>
1823 L:      linux-renesas-soc@vger.kernel.org
1824 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1826 S:      Supported
1827 F:      arch/arm/boot/dts/emev2*
1828 F:      arch/arm/boot/dts/r7s*
1829 F:      arch/arm/boot/dts/r8a*
1830 F:      arch/arm/boot/dts/sh*
1831 F:      arch/arm/configs/shmobile_defconfig
1832 F:      arch/arm/include/debug/renesas-scif.S
1833 F:      arch/arm/mach-shmobile/
1834 F:      drivers/soc/renesas/
1835 F:      include/linux/soc/renesas/
1836
1837 ARM/SOCFPGA ARCHITECTURE
1838 M:      Dinh Nguyen <dinguyen@kernel.org>
1839 S:      Maintained
1840 F:      arch/arm/mach-socfpga/
1841 F:      arch/arm/boot/dts/socfpga*
1842 F:      arch/arm/configs/socfpga_defconfig
1843 F:      arch/arm64/boot/dts/altera/
1844 W:      http://www.rocketboards.org
1845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1846
1847 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1848 M:      Dinh Nguyen <dinguyen@kernel.org>
1849 S:      Maintained
1850 F:      drivers/clk/socfpga/
1851
1852 ARM/SOCFPGA EDAC SUPPORT
1853 M:      Thor Thayer <thor.thayer@linux.intel.com>
1854 S:      Maintained
1855 F:      drivers/edac/altera_edac.
1856
1857 ARM/STI ARCHITECTURE
1858 M:      Patrice Chotard <patrice.chotard@st.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 W:      http://www.stlinux.com
1861 S:      Maintained
1862 F:      arch/arm/mach-sti/
1863 F:      arch/arm/boot/dts/sti*
1864 F:      drivers/char/hw_random/st-rng.c
1865 F:      drivers/clocksource/arm_global_timer.c
1866 F:      drivers/clocksource/clksrc_st_lpc.c
1867 F:      drivers/cpufreq/sti-cpufreq.c
1868 F:      drivers/dma/st_fdma*
1869 F:      drivers/i2c/busses/i2c-st.c
1870 F:      drivers/media/rc/st_rc.c
1871 F:      drivers/media/platform/sti/c8sectpfe/
1872 F:      drivers/mmc/host/sdhci-st.c
1873 F:      drivers/phy/st/phy-miphy28lp.c
1874 F:      drivers/phy/st/phy-stih407-usb.c
1875 F:      drivers/pinctrl/pinctrl-st.c
1876 F:      drivers/remoteproc/st_remoteproc.c
1877 F:      drivers/remoteproc/st_slim_rproc.c
1878 F:      drivers/reset/sti/
1879 F:      drivers/rtc/rtc-st-lpc.c
1880 F:      drivers/tty/serial/st-asc.c
1881 F:      drivers/usb/dwc3/dwc3-st.c
1882 F:      drivers/usb/host/ehci-st.c
1883 F:      drivers/usb/host/ohci-st.c
1884 F:      drivers/watchdog/st_lpc_wdt.c
1885 F:      drivers/ata/ahci_st.c
1886 F:      include/linux/remoteproc/st_slim_rproc.h
1887
1888 ARM/STM32 ARCHITECTURE
1889 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1890 M:      Alexandre Torgue <alexandre.torgue@st.com>
1891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1892 S:      Maintained
1893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1894 N:      stm32
1895 F:      drivers/clocksource/armv7m_systick.c
1896
1897 ARM/TANGO ARCHITECTURE
1898 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1899 L:      linux-arm-kernel@lists.infradead.org
1900 S:      Maintained
1901 N:      tango
1902
1903 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1904 M:      Lennert Buytenhek <kernel@wantstofly.org>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907
1908 ARM/TETON BGA MACHINE SUPPORT
1909 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1911 S:      Maintained
1912
1913 ARM/THECUS N2100 MACHINE SUPPORT
1914 M:      Lennert Buytenhek <kernel@wantstofly.org>
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917
1918 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1919 M:      Wan ZongShun <mcuos.com@gmail.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 W:      http://www.mcuos.com
1922 S:      Maintained
1923 F:      arch/arm/mach-w90x900/
1924 F:      drivers/input/keyboard/w90p910_keypad.c
1925 F:      drivers/input/touchscreen/w90p910_ts.c
1926 F:      drivers/watchdog/nuc900_wdt.c
1927 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1928 F:      drivers/mtd/nand/nuc900_nand.c
1929 F:      drivers/rtc/rtc-nuc900.c
1930 F:      drivers/spi/spi-nuc900.c
1931 F:      drivers/usb/host/ehci-w90x900.c
1932 F:      drivers/video/fbdev/nuc900fb.c
1933
1934 ARM/U300 MACHINE SUPPORT
1935 M:      Linus Walleij <linus.walleij@linaro.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Supported
1938 F:      arch/arm/mach-u300/
1939 F:      drivers/clocksource/timer-u300.c
1940 F:      drivers/i2c/busses/i2c-stu300.c
1941 F:      drivers/rtc/rtc-coh901331.c
1942 F:      drivers/watchdog/coh901327_wdt.c
1943 F:      drivers/dma/coh901318*
1944 F:      drivers/mfd/ab3100*
1945 F:      drivers/rtc/rtc-ab3100.c
1946 F:      drivers/rtc/rtc-coh901331.c
1947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1948
1949 ARM/UNIPHIER ARCHITECTURE
1950 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1953 S:      Maintained
1954 F:      arch/arm/boot/dts/uniphier*
1955 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1956 F:      arch/arm/mach-uniphier/
1957 F:      arch/arm/mm/cache-uniphier.c
1958 F:      arch/arm64/boot/dts/socionext/
1959 F:      drivers/bus/uniphier-system-bus.c
1960 F:      drivers/clk/uniphier/
1961 F:      drivers/i2c/busses/i2c-uniphier*
1962 F:      drivers/pinctrl/uniphier/
1963 F:      drivers/reset/reset-uniphier.c
1964 F:      drivers/tty/serial/8250/8250_uniphier.c
1965 N:      uniphier
1966
1967 ARM/Ux500 ARM ARCHITECTURE
1968 M:      Linus Walleij <linus.walleij@linaro.org>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 F:      arch/arm/mach-ux500/
1972 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1973 F:      drivers/dma/ste_dma40*
1974 F:      drivers/hwspinlock/u8500_hsem.c
1975 F:      drivers/mfd/abx500*
1976 F:      drivers/mfd/ab8500*
1977 F:      drivers/mfd/dbx500*
1978 F:      drivers/mfd/db8500*
1979 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1980 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1981 F:      drivers/rtc/rtc-ab8500.c
1982 F:      drivers/rtc/rtc-pl031.c
1983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1984
1985 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1986 M:      Ulf Hansson <ulf.hansson@linaro.org>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 T:      git git://git.linaro.org/people/ulfh/clk.git
1989 S:      Maintained
1990 F:      drivers/clk/ux500/
1991
1992 ARM/VERSATILE EXPRESS PLATFORM
1993 M:      Liviu Dudau <liviu.dudau@arm.com>
1994 M:      Sudeep Holla <sudeep.holla@arm.com>
1995 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      arch/arm/boot/dts/vexpress*
1999 F:      arch/arm64/boot/dts/arm/
2000 F:      arch/arm/mach-vexpress/
2001 F:      */*/vexpress*
2002 F:      */*/*/vexpress*
2003 F:      drivers/clk/versatile/clk-vexpress-osc.c
2004 F:      drivers/clocksource/versatile.c
2005 N:      mps2
2006
2007 ARM/VFP SUPPORT
2008 M:      Russell King <linux@armlinux.org.uk>
2009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2010 W:      http://www.armlinux.org.uk/
2011 S:      Maintained
2012 F:      arch/arm/vfp/
2013
2014 ARM/VOIPAC PXA270 SUPPORT
2015 M:      Marek Vasut <marek.vasut@gmail.com>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 F:      arch/arm/mach-pxa/vpac270.c
2019 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2020
2021 ARM/VT8500 ARM ARCHITECTURE
2022 M:      Tony Prisk <linux@prisktech.co.nz>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 F:      arch/arm/mach-vt8500/
2026 F:      drivers/clocksource/vt8500_timer.c
2027 F:      drivers/i2c/busses/i2c-wmt.c
2028 F:      drivers/mmc/host/wmt-sdmmc.c
2029 F:      drivers/pwm/pwm-vt8500.c
2030 F:      drivers/rtc/rtc-vt8500.c
2031 F:      drivers/tty/serial/vt8500_serial.c
2032 F:      drivers/usb/host/ehci-platform.c
2033 F:      drivers/usb/host/uhci-platform.c
2034 F:      drivers/video/fbdev/vt8500lcdfb.*
2035 F:      drivers/video/fbdev/wm8505fb*
2036 F:      drivers/video/fbdev/wmt_ge_rops.*
2037
2038 ARM/ZIPIT Z2 SUPPORT
2039 M:      Marek Vasut <marek.vasut@gmail.com>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/mach-pxa/z2.c
2043 F:      arch/arm/mach-pxa/include/mach/z2.h
2044
2045 ARM/ZTE ARCHITECTURE
2046 M:      Jun Nie <jun.nie@linaro.org>
2047 M:      Baoyou Xie <baoyou.xie@linaro.org>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Maintained
2050 F:      arch/arm/mach-zx/
2051 F:      drivers/clk/zte/
2052 F:      drivers/reset/reset-zx2967.c
2053 F:      drivers/soc/zte/
2054 F:      Documentation/devicetree/bindings/arm/zte.txt
2055 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
2056 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2057 F:      Documentation/devicetree/bindings/soc/zte/
2058 F:      include/dt-bindings/soc/zx*.h
2059
2060 ARM/ZYNQ ARCHITECTURE
2061 M:      Michal Simek <michal.simek@xilinx.com>
2062 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 W:      http://wiki.xilinx.com
2065 T:      git https://github.com/Xilinx/linux-xlnx.git
2066 S:      Supported
2067 F:      arch/arm/mach-zynq/
2068 F:      drivers/cpuidle/cpuidle-zynq.c
2069 F:      drivers/block/xsysace.c
2070 N:      zynq
2071 N:      xilinx
2072 F:      drivers/clocksource/cadence_ttc_timer.c
2073 F:      drivers/i2c/busses/i2c-cadence.c
2074 F:      drivers/mmc/host/sdhci-of-arasan.c
2075 F:      drivers/edac/synopsys_edac.c
2076
2077 ARM SMMU DRIVERS
2078 M:      Will Deacon <will.deacon@arm.com>
2079 R:      Robin Murphy <robin.murphy@arm.com>
2080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 S:      Maintained
2082 F:      drivers/iommu/arm-smmu.c
2083 F:      drivers/iommu/arm-smmu-v3.c
2084 F:      drivers/iommu/io-pgtable-arm.c
2085 F:      drivers/iommu/io-pgtable-arm-v7s.c
2086
2087 ARM64 PORT (AARCH64 ARCHITECTURE)
2088 M:      Catalin Marinas <catalin.marinas@arm.com>
2089 M:      Will Deacon <will.deacon@arm.com>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2092 S:      Maintained
2093 F:      arch/arm64/
2094 F:      Documentation/arm64/
2095
2096 AS3645A LED FLASH CONTROLLER DRIVER
2097 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2098 L:      linux-media@vger.kernel.org
2099 T:      git git://linuxtv.org/media_tree.git
2100 S:      Maintained
2101 F:      drivers/media/i2c/as3645a.c
2102 F:      include/media/i2c/as3645a.h
2103
2104 ASAHI KASEI AK8974 DRIVER
2105 M:      Linus Walleij <linus.walleij@linaro.org>
2106 L:      linux-iio@vger.kernel.org
2107 W:      http://www.akm.com/
2108 S:      Supported
2109 F:      drivers/iio/magnetometer/ak8974.c
2110
2111 ASC7621 HARDWARE MONITOR DRIVER
2112 M:      George Joseph <george.joseph@fairview5.com>
2113 L:      linux-hwmon@vger.kernel.org
2114 S:      Maintained
2115 F:      Documentation/hwmon/asc7621
2116 F:      drivers/hwmon/asc7621.c
2117
2118 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2119 M:      Corentin Chary <corentin.chary@gmail.com>
2120 L:      acpi4asus-user@lists.sourceforge.net
2121 L:      platform-driver-x86@vger.kernel.org
2122 W:      http://acpi4asus.sf.net
2123 S:      Maintained
2124 F:      drivers/platform/x86/asus*.c
2125 F:      drivers/platform/x86/eeepc*.c
2126
2127 ASUS WIRELESS RADIO CONTROL DRIVER
2128 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2129 L:      platform-driver-x86@vger.kernel.org
2130 S:      Maintained
2131 F:      drivers/platform/x86/asus-wireless.c
2132
2133 ASYMMETRIC KEYS
2134 M:      David Howells <dhowells@redhat.com>
2135 L:      keyrings@vger.kernel.org
2136 S:      Maintained
2137 F:      Documentation/crypto/asymmetric-keys.txt
2138 F:      include/linux/verification.h
2139 F:      include/crypto/public_key.h
2140 F:      include/crypto/pkcs7.h
2141 F:      crypto/asymmetric_keys/
2142
2143 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2144 R:      Dan Williams <dan.j.williams@intel.com>
2145 W:      http://sourceforge.net/projects/xscaleiop
2146 S:      Odd fixes
2147 F:      Documentation/crypto/async-tx-api.txt
2148 F:      crypto/async_tx/
2149 F:      drivers/dma/
2150 F:      include/linux/dmaengine.h
2151 F:      include/linux/async_tx.h
2152
2153 AT24 EEPROM DRIVER
2154 M:      Wolfram Sang <wsa@the-dreams.de>
2155 L:      linux-i2c@vger.kernel.org
2156 S:      Maintained
2157 F:      drivers/misc/eeprom/at24.c
2158 F:      include/linux/platform_data/at24.h
2159
2160 ATA OVER ETHERNET (AOE) DRIVER
2161 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2162 W:      http://www.openaoe.org/
2163 S:      Supported
2164 F:      Documentation/aoe/
2165 F:      drivers/block/aoe/
2166
2167 ATHEROS 71XX/9XXX GPIO DRIVER
2168 M:      Alban Bedel <albeu@free.fr>
2169 W:      https://github.com/AlbanBedel/linux
2170 T:      git git://github.com/AlbanBedel/linux
2171 S:      Maintained
2172 F:      drivers/gpio/gpio-ath79.c
2173 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2174
2175 ATHEROS ATH GENERIC UTILITIES
2176 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2177 L:      linux-wireless@vger.kernel.org
2178 S:      Supported
2179 F:      drivers/net/wireless/ath/*
2180
2181 ATHEROS ATH5K WIRELESS DRIVER
2182 M:      Jiri Slaby <jirislaby@gmail.com>
2183 M:      Nick Kossifidis <mickflemm@gmail.com>
2184 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2185 L:      linux-wireless@vger.kernel.org
2186 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2187 S:      Maintained
2188 F:      drivers/net/wireless/ath/ath5k/
2189
2190 ATHEROS ATH6KL WIRELESS DRIVER
2191 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2192 L:      linux-wireless@vger.kernel.org
2193 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2195 S:      Supported
2196 F:      drivers/net/wireless/ath/ath6kl/
2197
2198 WILOCITY WIL6210 WIRELESS DRIVER
2199 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2200 L:      linux-wireless@vger.kernel.org
2201 L:      wil6210@qca.qualcomm.com
2202 S:      Supported
2203 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2204 F:      drivers/net/wireless/ath/wil6210/
2205 F:      include/uapi/linux/wil6210_uapi.h
2206
2207 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2208 M:      Christian Lamparter <chunkeey@googlemail.com>
2209 L:      linux-wireless@vger.kernel.org
2210 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2211 S:      Maintained
2212 F:      drivers/net/wireless/ath/carl9170/
2213
2214 ATK0110 HWMON DRIVER
2215 M:      Luca Tettamanti <kronos.it@gmail.com>
2216 L:      linux-hwmon@vger.kernel.org
2217 S:      Maintained
2218 F:      drivers/hwmon/asus_atk0110.c
2219
2220 ATI_REMOTE2 DRIVER
2221 M:      Ville Syrjala <syrjala@sci.fi>
2222 S:      Maintained
2223 F:      drivers/input/misc/ati_remote2.c
2224
2225 ATLX ETHERNET DRIVERS
2226 M:      Jay Cliburn <jcliburn@gmail.com>
2227 M:      Chris Snook <chris.snook@gmail.com>
2228 L:      netdev@vger.kernel.org
2229 W:      http://sourceforge.net/projects/atl1
2230 W:      http://atl1.sourceforge.net
2231 S:      Maintained
2232 F:      drivers/net/ethernet/atheros/
2233
2234 ATM
2235 M:      Chas Williams <3chas3@gmail.com>
2236 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2237 L:      netdev@vger.kernel.org
2238 W:      http://linux-atm.sourceforge.net
2239 S:      Maintained
2240 F:      drivers/atm/
2241 F:      include/linux/atm*
2242 F:      include/uapi/linux/atm*
2243
2244 ATMEL AT91 / AT32 MCI DRIVER
2245 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2246 S:      Maintained
2247 F:      drivers/mmc/host/atmel-mci.c
2248
2249 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2250 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2251 S:      Supported
2252 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2253
2254 ATMEL SAMA5D2 ADC DRIVER
2255 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2256 L:      linux-iio@vger.kernel.org
2257 S:      Supported
2258 F:      drivers/iio/adc/at91-sama5d2_adc.c
2259
2260 ATMEL Audio ALSA driver
2261 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2262 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2263 S:      Supported
2264 F:      sound/soc/atmel
2265
2266 ATMEL XDMA DRIVER
2267 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2268 L:      linux-arm-kernel@lists.infradead.org
2269 L:      dmaengine@vger.kernel.org
2270 S:      Supported
2271 F:      drivers/dma/at_xdmac.c
2272
2273 ATMEL I2C DRIVER
2274 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2275 L:      linux-i2c@vger.kernel.org
2276 S:      Supported
2277 F:      drivers/i2c/busses/i2c-at91.c
2278
2279 ATMEL ISI DRIVER
2280 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2281 L:      linux-media@vger.kernel.org
2282 S:      Supported
2283 F:      drivers/media/platform/atmel/atmel-isi.c
2284 F:      include/media/atmel-isi.h
2285
2286 ATMEL LCDFB DRIVER
2287 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2288 L:      linux-fbdev@vger.kernel.org
2289 S:      Maintained
2290 F:      drivers/video/fbdev/atmel_lcdfb.c
2291 F:      include/video/atmel_lcdc.h
2292
2293 ATMEL MACB ETHERNET DRIVER
2294 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2295 S:      Supported
2296 F:      drivers/net/ethernet/cadence/
2297
2298 ATMEL NAND DRIVER
2299 M:      Wenyou Yang <wenyou.yang@atmel.com>
2300 M:      Josh Wu <rainyfeeling@outlook.com>
2301 L:      linux-mtd@lists.infradead.org
2302 S:      Supported
2303 F:      drivers/mtd/nand/atmel/*
2304
2305 ATMEL SDMMC DRIVER
2306 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2307 L:      linux-mmc@vger.kernel.org
2308 S:      Supported
2309 F:      drivers/mmc/host/sdhci-of-at91.c
2310
2311 ATMEL SPI DRIVER
2312 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2313 S:      Supported
2314 F:      drivers/spi/spi-atmel.*
2315
2316 ATMEL SSC DRIVER
2317 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Supported
2320 F:      drivers/misc/atmel-ssc.c
2321 F:      include/linux/atmel-ssc.h
2322
2323 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2324 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2326 S:      Supported
2327 F:      drivers/misc/atmel_tclib.c
2328 F:      drivers/clocksource/tcb_clksrc.c
2329
2330 ATMEL USBA UDC DRIVER
2331 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2333 S:      Supported
2334 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2335
2336 ATMEL WIRELESS DRIVER
2337 M:      Simon Kelley <simon@thekelleys.org.uk>
2338 L:      linux-wireless@vger.kernel.org
2339 W:      http://www.thekelleys.org.uk/atmel
2340 W:      http://atmelwlandriver.sourceforge.net/
2341 S:      Maintained
2342 F:      drivers/net/wireless/atmel/atmel*
2343
2344 ATMEL MAXTOUCH DRIVER
2345 M:      Nick Dyer <nick@shmanahar.org>
2346 T:      git git://github.com/ndyer/linux.git
2347 S:      Maintained
2348 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2349 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2350 F:      include/linux/platform_data/atmel_mxt_ts.h
2351
2352 ATOMIC INFRASTRUCTURE
2353 M:      Will Deacon <will.deacon@arm.com>
2354 M:      Peter Zijlstra <peterz@infradead.org>
2355 R:      Boqun Feng <boqun.feng@gmail.com>
2356 L:      linux-kernel@vger.kernel.org
2357 S:      Maintained
2358 F:      arch/*/include/asm/atomic*.h
2359 F:      include/*/atomic*.h
2360
2361 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2362 M:      Bradley Grove <linuxdrivers@attotech.com>
2363 L:      linux-scsi@vger.kernel.org
2364 W:      http://www.attotech.com
2365 S:      Supported
2366 F:      drivers/scsi/esas2r
2367
2368 ATUSB IEEE 802.15.4 RADIO DRIVER
2369 M:      Stefan Schmidt <stefan@osg.samsung.com>
2370 L:      linux-wpan@vger.kernel.org
2371 S:      Maintained
2372 F:      drivers/net/ieee802154/atusb.c
2373 F:      drivers/net/ieee802154/atusb.h
2374 F:      drivers/net/ieee802154/at86rf230.h
2375
2376 AUDIT SUBSYSTEM
2377 M:      Paul Moore <paul@paul-moore.com>
2378 M:      Eric Paris <eparis@redhat.com>
2379 L:      linux-audit@redhat.com (moderated for non-subscribers)
2380 W:      http://people.redhat.com/sgrubb/audit/
2381 T:      git git://git.infradead.org/users/pcmoore/audit
2382 S:      Maintained
2383 F:      include/linux/audit.h
2384 F:      include/uapi/linux/audit.h
2385 F:      kernel/audit*
2386
2387 AUXILIARY DISPLAY DRIVERS
2388 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2389 W:      http://miguelojeda.es/auxdisplay.htm
2390 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2391 S:      Maintained
2392 F:      drivers/auxdisplay/
2393 F:      include/linux/cfag12864b.h
2394
2395 AX.25 NETWORK LAYER
2396 M:      Ralf Baechle <ralf@linux-mips.org>
2397 L:      linux-hams@vger.kernel.org
2398 W:      http://www.linux-ax25.org/
2399 S:      Maintained
2400 F:      include/uapi/linux/ax25.h
2401 F:      include/net/ax25.h
2402 F:      net/ax25/
2403
2404 AXENTIA ASOC DRIVERS
2405 M:      Peter Rosin <peda@axentia.se>
2406 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2407 S:      Maintained
2408 F:      Documentation/devicetree/bindings/sound/axentia,*
2409 F:      sound/soc/atmel/tse850-pcm5142.c
2410
2411 AXENTIA ARM DEVICES
2412 M:      Peter Rosin <peda@axentia.se>
2413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2414 S:      Maintained
2415 F:      Documentation/devicetree/bindings/arm/axentia.txt
2416 F:      arch/arm/boot/dts/at91-linea.dtsi
2417 F:      arch/arm/boot/dts/at91-tse850-3.dts
2418
2419 AZ6007 DVB DRIVER
2420 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2421 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2422 L:      linux-media@vger.kernel.org
2423 W:      https://linuxtv.org
2424 T:      git git://linuxtv.org/media_tree.git
2425 S:      Maintained
2426 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2427
2428 AZTECH FM RADIO RECEIVER DRIVER
2429 M:      Hans Verkuil <hverkuil@xs4all.nl>
2430 L:      linux-media@vger.kernel.org
2431 T:      git git://linuxtv.org/media_tree.git
2432 W:      https://linuxtv.org
2433 S:      Maintained
2434 F:      drivers/media/radio/radio-aztech*
2435
2436 B43 WIRELESS DRIVER
2437 L:      linux-wireless@vger.kernel.org
2438 L:      b43-dev@lists.infradead.org
2439 W:      http://wireless.kernel.org/en/users/Drivers/b43
2440 S:      Odd Fixes
2441 F:      drivers/net/wireless/broadcom/b43/
2442
2443 B43LEGACY WIRELESS DRIVER
2444 M:      Larry Finger <Larry.Finger@lwfinger.net>
2445 L:      linux-wireless@vger.kernel.org
2446 L:      b43-dev@lists.infradead.org
2447 W:      http://wireless.kernel.org/en/users/Drivers/b43
2448 S:      Maintained
2449 F:      drivers/net/wireless/broadcom/b43legacy/
2450
2451 BACKLIGHT CLASS/SUBSYSTEM
2452 M:      Lee Jones <lee.jones@linaro.org>
2453 M:      Daniel Thompson <daniel.thompson@linaro.org>
2454 M:      Jingoo Han <jingoohan1@gmail.com>
2455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2456 S:      Maintained
2457 F:      drivers/video/backlight/
2458 F:      include/linux/backlight.h
2459 F:      include/linux/pwm_backlight.h
2460 F:      Documentation/devicetree/bindings/leds/backlight
2461
2462 BATMAN ADVANCED
2463 M:      Marek Lindner <mareklindner@neomailbox.ch>
2464 M:      Simon Wunderlich <sw@simonwunderlich.de>
2465 M:      Antonio Quartulli <a@unstable.cc>
2466 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2467 W:      https://www.open-mesh.org/
2468 Q:      https://patchwork.open-mesh.org/project/batman/list/
2469 S:      Maintained
2470 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2471 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2472 F:      Documentation/networking/batman-adv.txt
2473 F:      include/uapi/linux/batman_adv.h
2474 F:      net/batman-adv/
2475
2476 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2477 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2478 L:      linux-hams@vger.kernel.org
2479 W:      http://www.baycom.org/~tom/ham/ham.html
2480 S:      Maintained
2481 F:      drivers/net/hamradio/baycom*
2482
2483 BCACHE (BLOCK LAYER CACHE)
2484 M:      Kent Overstreet <kent.overstreet@gmail.com>
2485 L:      linux-bcache@vger.kernel.org
2486 W:      http://bcache.evilpiepirate.org
2487 S:      Orphan
2488 F:      drivers/md/bcache/
2489
2490 BDISP ST MEDIA DRIVER
2491 M:      Fabien Dessenne <fabien.dessenne@st.com>
2492 L:      linux-media@vger.kernel.org
2493 T:      git git://linuxtv.org/media_tree.git
2494 W:      https://linuxtv.org
2495 S:      Supported
2496 F:      drivers/media/platform/sti/bdisp
2497
2498 DELTA ST MEDIA DRIVER
2499 M:      Hugues Fruchet <hugues.fruchet@st.com>
2500 L:      linux-media@vger.kernel.org
2501 T:      git git://linuxtv.org/media_tree.git
2502 W:      https://linuxtv.org
2503 S:      Supported
2504 F:      drivers/media/platform/sti/delta
2505
2506 BEFS FILE SYSTEM
2507 M:      Luis de Bethencourt <luisbg@osg.samsung.com>
2508 M:      Salah Triki <salah.triki@gmail.com>
2509 S:      Maintained
2510 T:      git git://github.com/luisbg/linux-befs.git
2511 F:      Documentation/filesystems/befs.txt
2512 F:      fs/befs/
2513
2514 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2515 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2516 L:      netdev@vger.kernel.org
2517 S:      Maintained
2518 F:      drivers/net/ethernet/ec_bhf.c
2519
2520 BFS FILE SYSTEM
2521 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2522 S:      Maintained
2523 F:      Documentation/filesystems/bfs.txt
2524 F:      fs/bfs/
2525 F:      include/uapi/linux/bfs_fs.h
2526
2527 BLACKFIN ARCHITECTURE
2528 M:      Steven Miao <realmz6@gmail.com>
2529 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2530 T:      git git://git.code.sf.net/p/adi-linux/code
2531 W:      http://blackfin.uclinux.org
2532 S:      Supported
2533 F:      arch/blackfin/
2534
2535 BLACKFIN EMAC DRIVER
2536 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2537 W:      http://blackfin.uclinux.org
2538 S:      Supported
2539 F:      drivers/net/ethernet/adi/
2540
2541 BLACKFIN RTC DRIVER
2542 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2543 W:      http://blackfin.uclinux.org
2544 S:      Supported
2545 F:      drivers/rtc/rtc-bfin.c
2546
2547 BLACKFIN SDH DRIVER
2548 M:      Sonic Zhang <sonic.zhang@analog.com>
2549 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2550 W:      http://blackfin.uclinux.org
2551 S:      Supported
2552 F:      drivers/mmc/host/bfin_sdh.c
2553
2554 BLACKFIN SERIAL DRIVER
2555 M:      Sonic Zhang <sonic.zhang@analog.com>
2556 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2557 W:      http://blackfin.uclinux.org
2558 S:      Supported
2559 F:      drivers/tty/serial/bfin_uart.c
2560
2561 BLACKFIN WATCHDOG DRIVER
2562 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2563 W:      http://blackfin.uclinux.org
2564 S:      Supported
2565 F:      drivers/watchdog/bfin_wdt.c
2566
2567 BLACKFIN I2C TWI DRIVER
2568 M:      Sonic Zhang <sonic.zhang@analog.com>
2569 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2570 W:      http://blackfin.uclinux.org/
2571 S:      Supported
2572 F:      drivers/i2c/busses/i2c-bfin-twi.c
2573
2574 BLACKFIN MEDIA DRIVER
2575 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2576 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2577 W:      http://blackfin.uclinux.org/
2578 S:      Supported
2579 F:      drivers/media/platform/blackfin/
2580 F:      drivers/media/i2c/adv7183*
2581 F:      drivers/media/i2c/vs6624*
2582
2583 BLINKM RGB LED DRIVER
2584 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2585 S:      Maintained
2586 F:      drivers/leds/leds-blinkm.c
2587
2588 BLOCK LAYER
2589 M:      Jens Axboe <axboe@kernel.dk>
2590 L:      linux-block@vger.kernel.org
2591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2592 S:      Maintained
2593 F:      block/
2594 F:      kernel/trace/blktrace.c
2595 F:      lib/sbitmap.c
2596
2597 BFQ I/O SCHEDULER
2598 M:      Paolo Valente <paolo.valente@linaro.org>
2599 M:      Jens Axboe <axboe@kernel.dk>
2600 L:      linux-block@vger.kernel.org
2601 S:      Maintained
2602 F:      block/bfq-*
2603 F:      Documentation/block/bfq-iosched.txt
2604
2605 BLOCK2MTD DRIVER
2606 M:      Joern Engel <joern@lazybastard.org>
2607 L:      linux-mtd@lists.infradead.org
2608 S:      Maintained
2609 F:      drivers/mtd/devices/block2mtd.c
2610
2611 BLUETOOTH DRIVERS
2612 M:      Marcel Holtmann <marcel@holtmann.org>
2613 M:      Gustavo Padovan <gustavo@padovan.org>
2614 M:      Johan Hedberg <johan.hedberg@gmail.com>
2615 L:      linux-bluetooth@vger.kernel.org
2616 W:      http://www.bluez.org/
2617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2619 S:      Maintained
2620 F:      drivers/bluetooth/
2621
2622 BLUETOOTH SUBSYSTEM
2623 M:      Marcel Holtmann <marcel@holtmann.org>
2624 M:      Gustavo Padovan <gustavo@padovan.org>
2625 M:      Johan Hedberg <johan.hedberg@gmail.com>
2626 L:      linux-bluetooth@vger.kernel.org
2627 W:      http://www.bluez.org/
2628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2630 S:      Maintained
2631 F:      net/bluetooth/
2632 F:      include/net/bluetooth/
2633
2634 DMA MAPPING HELPERS
2635 M:      Christoph Hellwig <hch@lst.de>
2636 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2637 R:      Robin Murphy <robin.murphy@arm.com>
2638 L:      linux-kernel@vger.kernel.org
2639 T:      git git://git.infradead.org/users/hch/dma-mapping.git
2640 W:      http://git.infradead.org/users/hch/dma-mapping.git
2641 S:      Supported
2642 F:      lib/dma-debug.c
2643 F:      lib/dma-noop.c
2644 F:      lib/dma-virt.c
2645 F:      drivers/base/dma-mapping.c
2646 F:      drivers/base/dma-coherent.c
2647 F:      include/linux/dma-mapping.h
2648
2649 BONDING DRIVER
2650 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2651 M:      Veaceslav Falico <vfalico@gmail.com>
2652 M:      Andy Gospodarek <andy@greyhouse.net>
2653 L:      netdev@vger.kernel.org
2654 W:      http://sourceforge.net/projects/bonding/
2655 S:      Supported
2656 F:      drivers/net/bonding/
2657 F:      include/uapi/linux/if_bonding.h
2658
2659 BPF (Safe dynamic programs and tools)
2660 M:      Alexei Starovoitov <ast@kernel.org>
2661 M:      Daniel Borkmann <daniel@iogearbox.net>
2662 L:      netdev@vger.kernel.org
2663 L:      linux-kernel@vger.kernel.org
2664 S:      Supported
2665 F:      arch/x86/net/bpf_jit*
2666 F:      Documentation/networking/filter.txt
2667 F:      include/linux/bpf*
2668 F:      include/linux/filter.h
2669 F:      include/uapi/linux/bpf*
2670 F:      include/uapi/linux/filter.h
2671 F:      kernel/bpf/
2672 F:      kernel/trace/bpf_trace.c
2673 F:      lib/test_bpf.c
2674 F:      net/bpf/
2675 F:      net/core/filter.c
2676 F:      net/sched/act_bpf.c
2677 F:      net/sched/cls_bpf.c
2678 F:      samples/bpf/
2679 F:      tools/net/bpf*
2680 F:      tools/testing/selftests/bpf/
2681
2682 BROADCOM B44 10/100 ETHERNET DRIVER
2683 M:      Michael Chan <michael.chan@broadcom.com>
2684 L:      netdev@vger.kernel.org
2685 S:      Supported
2686 F:      drivers/net/ethernet/broadcom/b44.*
2687
2688 BROADCOM B53 ETHERNET SWITCH DRIVER
2689 M:      Florian Fainelli <f.fainelli@gmail.com>
2690 L:      netdev@vger.kernel.org
2691 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2692 S:      Supported
2693 F:      drivers/net/dsa/b53/*
2694 F:      include/linux/platform_data/b53.h
2695
2696 BROADCOM GENET ETHERNET DRIVER
2697 M:      Florian Fainelli <f.fainelli@gmail.com>
2698 L:      netdev@vger.kernel.org
2699 S:      Supported
2700 F:      drivers/net/ethernet/broadcom/genet/
2701
2702 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2703 M:      Rasesh Mody <rasesh.mody@cavium.com>
2704 M:      Harish Patil <harish.patil@cavium.com>
2705 M:      Dept-GELinuxNICDev@cavium.com
2706 L:      netdev@vger.kernel.org
2707 S:      Supported
2708 F:      drivers/net/ethernet/broadcom/bnx2.*
2709 F:      drivers/net/ethernet/broadcom/bnx2_*
2710
2711 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2712 M:      Yuval Mintz <Yuval.Mintz@cavium.com>
2713 M:      Ariel Elior <ariel.elior@cavium.com>
2714 M:      everest-linux-l2@cavium.com
2715 L:      netdev@vger.kernel.org
2716 S:      Supported
2717 F:      drivers/net/ethernet/broadcom/bnx2x/
2718
2719 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2720 M:      Michael Chan <michael.chan@broadcom.com>
2721 L:      netdev@vger.kernel.org
2722 S:      Supported
2723 F:      drivers/net/ethernet/broadcom/bnxt/
2724
2725 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2726 M:      Florian Fainelli <f.fainelli@gmail.com>
2727 M:      Ray Jui <rjui@broadcom.com>
2728 M:      Scott Branden <sbranden@broadcom.com>
2729 M:      bcm-kernel-feedback-list@broadcom.com
2730 T:      git git://github.com/broadcom/mach-bcm
2731 S:      Maintained
2732 N:      bcm281*
2733 N:      bcm113*
2734 N:      bcm216*
2735 N:      kona
2736 F:      arch/arm/mach-bcm/
2737
2738 BROADCOM BCM2835 ARM ARCHITECTURE
2739 M:      Eric Anholt <eric@anholt.net>
2740 M:      Stefan Wahren <stefan.wahren@i2se.com>
2741 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 T:      git git://github.com/anholt/linux
2744 S:      Maintained
2745 N:      bcm2835
2746 F:      drivers/staging/vc04_services
2747
2748 BROADCOM BCM47XX MIPS ARCHITECTURE
2749 M:      Hauke Mehrtens <hauke@hauke-m.de>
2750 M:      Rafał Miłecki <zajec5@gmail.com>
2751 L:      linux-mips@linux-mips.org
2752 S:      Maintained
2753 F:      Documentation/devicetree/bindings/mips/brcm/
2754 F:      arch/mips/bcm47xx/*
2755 F:      arch/mips/include/asm/mach-bcm47xx/*
2756
2757 BROADCOM BCM5301X ARM ARCHITECTURE
2758 M:      Hauke Mehrtens <hauke@hauke-m.de>
2759 M:      Rafał Miłecki <zajec5@gmail.com>
2760 M:      Jon Mason <jonmason@broadcom.com>
2761 M:      bcm-kernel-feedback-list@broadcom.com
2762 L:      linux-arm-kernel@lists.infradead.org
2763 S:      Maintained
2764 F:      arch/arm/mach-bcm/bcm_5301x.c
2765 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2766 F:      arch/arm/boot/dts/bcm470*
2767 F:      arch/arm/boot/dts/bcm953012*
2768
2769 BROADCOM BCM53573 ARM ARCHITECTURE
2770 M:      Rafał Miłecki <rafal@milecki.pl>
2771 L:      linux-arm-kernel@lists.infradead.org
2772 S:      Maintained
2773 F:      arch/arm/boot/dts/bcm53573*
2774 F:      arch/arm/boot/dts/bcm47189*
2775
2776 BROADCOM BCM63XX ARM ARCHITECTURE
2777 M:      Florian Fainelli <f.fainelli@gmail.com>
2778 M:      bcm-kernel-feedback-list@broadcom.com
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 T:      git git://github.com/broadcom/stblinux.git
2781 S:      Maintained
2782 N:      bcm63xx
2783
2784 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2785 M:      Kevin Cernekee <cernekee@gmail.com>
2786 L:      linux-usb@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2789
2790 BROADCOM BCM7XXX ARM ARCHITECTURE
2791 M:      Brian Norris <computersforpeace@gmail.com>
2792 M:      Gregory Fong <gregory.0xf0@gmail.com>
2793 M:      Florian Fainelli <f.fainelli@gmail.com>
2794 M:      bcm-kernel-feedback-list@broadcom.com
2795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2796 T:      git git://github.com/broadcom/stblinux.git
2797 S:      Maintained
2798 F:      arch/arm/mach-bcm/*brcmstb*
2799 F:      arch/arm/boot/dts/bcm7*.dts*
2800 F:      drivers/bus/brcmstb_gisb.c
2801 N:      brcmstb
2802
2803 BROADCOM BMIPS MIPS ARCHITECTURE
2804 M:      Kevin Cernekee <cernekee@gmail.com>
2805 M:      Florian Fainelli <f.fainelli@gmail.com>
2806 L:      linux-mips@linux-mips.org
2807 T:      git git://github.com/broadcom/stblinux.git
2808 S:      Maintained
2809 F:      arch/mips/bmips/*
2810 F:      arch/mips/include/asm/mach-bmips/*
2811 F:      arch/mips/kernel/*bmips*
2812 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2813 F:      drivers/irqchip/irq-bcm63*
2814 F:      drivers/irqchip/irq-bcm7*
2815 F:      drivers/irqchip/irq-brcmstb*
2816 F:      include/linux/bcm963xx_nvram.h
2817 F:      include/linux/bcm963xx_tag.h
2818
2819 BROADCOM BMIPS CPUFREQ DRIVER
2820 M:      Markus Mayer <mmayer@broadcom.com>
2821 M:      bcm-kernel-feedback-list@broadcom.com
2822 L:      linux-pm@vger.kernel.org
2823 S:      Maintained
2824 F:      drivers/cpufreq/bmips-cpufreq.c
2825
2826 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2827 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2828 M:      Prashant Sreedharan <prashant@broadcom.com>
2829 M:      Michael Chan <mchan@broadcom.com>
2830 L:      netdev@vger.kernel.org
2831 S:      Supported
2832 F:      drivers/net/ethernet/broadcom/tg3.*
2833
2834 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2835 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2836 M:      Franky Lin <franky.lin@broadcom.com>
2837 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2838 M:      Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2839 M:      Wright Feng <wright.feng@cypress.com>
2840 L:      linux-wireless@vger.kernel.org
2841 L:      brcm80211-dev-list.pdl@broadcom.com
2842 L:      brcm80211-dev-list@cypress.com
2843 S:      Supported
2844 F:      drivers/net/wireless/broadcom/brcm80211/
2845
2846 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2847 M:      QLogic-Storage-Upstream@qlogic.com
2848 L:      linux-scsi@vger.kernel.org
2849 S:      Supported
2850 F:      drivers/scsi/bnx2fc/
2851
2852 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2853 M:      QLogic-Storage-Upstream@qlogic.com
2854 L:      linux-scsi@vger.kernel.org
2855 S:      Supported
2856 F:      drivers/scsi/bnx2i/
2857
2858 BROADCOM IPROC ARM ARCHITECTURE
2859 M:      Ray Jui <rjui@broadcom.com>
2860 M:      Scott Branden <sbranden@broadcom.com>
2861 M:      Jon Mason <jonmason@broadcom.com>
2862 M:      bcm-kernel-feedback-list@broadcom.com
2863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2864 T:      git git://github.com/broadcom/cygnus-linux.git
2865 S:      Maintained
2866 N:      iproc
2867 N:      cygnus
2868 N:      bcm[-_]nsp
2869 N:      bcm9113*
2870 N:      bcm9583*
2871 N:      bcm9585*
2872 N:      bcm9586*
2873 N:      bcm988312
2874 N:      bcm113*
2875 N:      bcm583*
2876 N:      bcm585*
2877 N:      bcm586*
2878 N:      bcm88312
2879 F:      arch/arm64/boot/dts/broadcom/ns2*
2880 F:      drivers/clk/bcm/clk-ns*
2881 F:      drivers/pinctrl/bcm/pinctrl-ns*
2882
2883 BROADCOM BRCMSTB GPIO DRIVER
2884 M:      Gregory Fong <gregory.0xf0@gmail.com>
2885 L:      bcm-kernel-feedback-list@broadcom.com
2886 S:      Supported
2887 F:      drivers/gpio/gpio-brcmstb.c
2888 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2889
2890 BROADCOM KONA GPIO DRIVER
2891 M:      Ray Jui <rjui@broadcom.com>
2892 L:      bcm-kernel-feedback-list@broadcom.com
2893 S:      Supported
2894 F:      drivers/gpio/gpio-bcm-kona.c
2895 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2896
2897 BROADCOM NVRAM DRIVER
2898 M:      Rafał Miłecki <zajec5@gmail.com>
2899 L:      linux-mips@linux-mips.org
2900 S:      Maintained
2901 F:      drivers/firmware/broadcom/*
2902
2903 BROADCOM STB NAND FLASH DRIVER
2904 M:      Brian Norris <computersforpeace@gmail.com>
2905 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2906 L:      linux-mtd@lists.infradead.org
2907 L:      bcm-kernel-feedback-list@broadcom.com
2908 S:      Maintained
2909 F:      drivers/mtd/nand/brcmnand/
2910
2911 BROADCOM STB AVS CPUFREQ DRIVER
2912 M:      Markus Mayer <mmayer@broadcom.com>
2913 M:      bcm-kernel-feedback-list@broadcom.com
2914 L:      linux-pm@vger.kernel.org
2915 S:      Maintained
2916 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2917 F:      drivers/cpufreq/brcmstb*
2918
2919 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2920 M:      Rafał Miłecki <zajec5@gmail.com>
2921 L:      linux-wireless@vger.kernel.org
2922 S:      Maintained
2923 F:      drivers/bcma/
2924 F:      include/linux/bcma/
2925
2926 BROADCOM SYSTEMPORT ETHERNET DRIVER
2927 M:      Florian Fainelli <f.fainelli@gmail.com>
2928 L:      netdev@vger.kernel.org
2929 S:      Supported
2930 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2931
2932 BROADCOM NETXTREME-E ROCE DRIVER
2933 M:      Selvin Xavier <selvin.xavier@broadcom.com>
2934 M:      Devesh Sharma <devesh.sharma@broadcom.com>
2935 M:      Somnath Kotur <somnath.kotur@broadcom.com>
2936 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2937 L:      linux-rdma@vger.kernel.org
2938 W:      http://www.broadcom.com
2939 S:      Supported
2940 F:      drivers/infiniband/hw/bnxt_re/
2941 F:      include/uapi/rdma/bnxt_re-abi.h
2942
2943 BROCADE BFA FC SCSI DRIVER
2944 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2945 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2946 L:      linux-scsi@vger.kernel.org
2947 S:      Supported
2948 F:      drivers/scsi/bfa/
2949
2950 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2951 M:      Rasesh Mody <rasesh.mody@cavium.com>
2952 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2953 M:      Dept-GELinuxNICDev@cavium.com
2954 L:      netdev@vger.kernel.org
2955 S:      Supported
2956 F:      drivers/net/ethernet/brocade/bna/
2957
2958 BSG (block layer generic sg v4 driver)
2959 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2960 L:      linux-scsi@vger.kernel.org
2961 S:      Supported
2962 F:      block/bsg.c
2963 F:      include/linux/bsg.h
2964 F:      include/uapi/linux/bsg.h
2965
2966 BT87X AUDIO DRIVER
2967 M:      Clemens Ladisch <clemens@ladisch.de>
2968 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2969 T:      git git://git.alsa-project.org/alsa-kernel.git
2970 S:      Maintained
2971 F:      Documentation/sound/alsa/Bt87x.txt
2972 F:      sound/pci/bt87x.c
2973
2974 BT8XXGPIO DRIVER
2975 M:      Michael Buesch <m@bues.ch>
2976 W:      http://bu3sch.de/btgpio.php
2977 S:      Maintained
2978 F:      drivers/gpio/gpio-bt8xx.c
2979
2980 BTRFS FILE SYSTEM
2981 M:      Chris Mason <clm@fb.com>
2982 M:      Josef Bacik <jbacik@fb.com>
2983 M:      David Sterba <dsterba@suse.com>
2984 L:      linux-btrfs@vger.kernel.org
2985 W:      http://btrfs.wiki.kernel.org/
2986 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2988 S:      Maintained
2989 F:      Documentation/filesystems/btrfs.txt
2990 F:      fs/btrfs/
2991 F:      include/linux/btrfs*
2992 F:      include/uapi/linux/btrfs*
2993
2994 BTTV VIDEO4LINUX DRIVER
2995 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2996 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2997 L:      linux-media@vger.kernel.org
2998 W:      https://linuxtv.org
2999 T:      git git://linuxtv.org/media_tree.git
3000 S:      Odd fixes
3001 F:      Documentation/media/v4l-drivers/bttv*
3002 F:      drivers/media/pci/bt8xx/bttv*
3003
3004 BUSLOGIC SCSI DRIVER
3005 M:      Khalid Aziz <khalid@gonehiking.org>
3006 L:      linux-scsi@vger.kernel.org
3007 S:      Maintained
3008 F:      drivers/scsi/BusLogic.*
3009 F:      drivers/scsi/FlashPoint.*
3010
3011 C-MEDIA CMI8788 DRIVER
3012 M:      Clemens Ladisch <clemens@ladisch.de>
3013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3014 T:      git git://git.alsa-project.org/alsa-kernel.git
3015 S:      Maintained
3016 F:      sound/pci/oxygen/
3017
3018 C6X ARCHITECTURE
3019 M:      Mark Salter <msalter@redhat.com>
3020 M:      Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3021 L:      linux-c6x-dev@linux-c6x.org
3022 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
3023 S:      Maintained
3024 F:      arch/c6x/
3025
3026 CA8210 IEEE-802.15.4 RADIO DRIVER
3027 M:      Harry Morris <h.morris@cascoda.com>
3028 M:      linuxdev@cascoda.com
3029 L:      linux-wpan@vger.kernel.org
3030 W:      https://github.com/Cascoda/ca8210-linux.git
3031 S:      Maintained
3032 F:      drivers/net/ieee802154/ca8210.c
3033 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3034
3035 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3036 M:      David Howells <dhowells@redhat.com>
3037 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
3038 S:      Supported
3039 F:      Documentation/filesystems/caching/cachefiles.txt
3040 F:      fs/cachefiles/
3041
3042 CADET FM/AM RADIO RECEIVER DRIVER
3043 M:      Hans Verkuil <hverkuil@xs4all.nl>
3044 L:      linux-media@vger.kernel.org
3045 T:      git git://linuxtv.org/media_tree.git
3046 W:      https://linuxtv.org
3047 S:      Maintained
3048 F:      drivers/media/radio/radio-cadet*
3049
3050 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3051 M:      Jonathan Corbet <corbet@lwn.net>
3052 L:      linux-media@vger.kernel.org
3053 T:      git git://linuxtv.org/media_tree.git
3054 S:      Maintained
3055 F:      Documentation/media/v4l-drivers/cafe_ccic*
3056 F:      drivers/media/platform/marvell-ccic/
3057
3058 CAIF NETWORK LAYER
3059 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3060 L:      netdev@vger.kernel.org
3061 S:      Supported
3062 F:      Documentation/networking/caif/
3063 F:      drivers/net/caif/
3064 F:      include/uapi/linux/caif/
3065 F:      include/net/caif/
3066 F:      net/caif/
3067
3068 CALGARY x86-64 IOMMU
3069 M:      Muli Ben-Yehuda <mulix@mulix.org>
3070 M:      Jon Mason <jdmason@kudzu.us>
3071 L:      iommu@lists.linux-foundation.org
3072 S:      Maintained
3073 F:      arch/x86/kernel/pci-calgary_64.c
3074 F:      arch/x86/kernel/tce_64.c
3075 F:      arch/x86/include/asm/calgary.h
3076 F:      arch/x86/include/asm/tce.h
3077
3078 CAN NETWORK LAYER
3079 M:      Oliver Hartkopp <socketcan@hartkopp.net>
3080 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3081 L:      linux-can@vger.kernel.org
3082 W:      https://github.com/linux-can
3083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3085 S:      Maintained
3086 F:      Documentation/networking/can.txt
3087 F:      net/can/
3088 F:      include/linux/can/core.h
3089 F:      include/uapi/linux/can.h
3090 F:      include/uapi/linux/can/bcm.h
3091 F:      include/uapi/linux/can/raw.h
3092 F:      include/uapi/linux/can/gw.h
3093
3094 CAN NETWORK DRIVERS
3095 M:      Wolfgang Grandegger <wg@grandegger.com>
3096 M:      Marc Kleine-Budde <mkl@pengutronix.de>
3097 L:      linux-can@vger.kernel.org
3098 W:      https://github.com/linux-can
3099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3101 S:      Maintained
3102 F:      Documentation/devicetree/bindings/net/can/
3103 F:      drivers/net/can/
3104 F:      include/linux/can/dev.h
3105 F:      include/linux/can/platform/
3106 F:      include/uapi/linux/can/error.h
3107 F:      include/uapi/linux/can/netlink.h
3108
3109 CAPABILITIES
3110 M:      Serge Hallyn <serge@hallyn.com>
3111 L:      linux-security-module@vger.kernel.org
3112 S:      Supported
3113 F:      include/linux/capability.h
3114 F:      include/uapi/linux/capability.h
3115 F:      security/commoncap.c
3116 F:      kernel/capability.c
3117
3118 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3119 M:      Kevin Tsai <ktsai@capellamicro.com>
3120 S:      Maintained
3121 F:      drivers/iio/light/cm*
3122
3123 CAVIUM THUNDERX2 ARM64 SOC
3124 M:      Jayachandran C <jnair@caviumnetworks.com>
3125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3126 S:      Maintained
3127 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
3128 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3129
3130 CAVIUM I2C DRIVER
3131 M:      Jan Glauber <jglauber@cavium.com>
3132 M:      David Daney <david.daney@cavium.com>
3133 W:      http://www.cavium.com
3134 S:      Supported
3135 F:      drivers/i2c/busses/i2c-octeon*
3136 F:      drivers/i2c/busses/i2c-thunderx*
3137
3138 CAVIUM MMC DRIVER
3139 M:      Jan Glauber <jglauber@cavium.com>
3140 M:      David Daney <david.daney@cavium.com>
3141 M:      Steven J. Hill <Steven.Hill@cavium.com>
3142 W:      http://www.cavium.com
3143 S:      Supported
3144 F:      drivers/mmc/host/cavium*
3145
3146 CAVIUM LIQUIDIO NETWORK DRIVER
3147 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
3148 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
3149 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
3150 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3151 L:     netdev@vger.kernel.org
3152 W:     http://www.cavium.com
3153 S:     Supported
3154 F:     drivers/net/ethernet/cavium/liquidio/
3155
3156 CAVIUM OCTEON-TX CRYPTO DRIVER
3157 M:      George Cherian <george.cherian@cavium.com>
3158 L:      linux-crypto@vger.kernel.org
3159 W:      http://www.cavium.com
3160 S:      Supported
3161 F:      drivers/crypto/cavium/cpt/
3162
3163 CC2520 IEEE-802.15.4 RADIO DRIVER
3164 M:      Varka Bhadram <varkabhadram@gmail.com>
3165 L:      linux-wpan@vger.kernel.org
3166 S:      Maintained
3167 F:      drivers/net/ieee802154/cc2520.c
3168 F:      include/linux/spi/cc2520.h
3169 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3170
3171 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3172 M:      Gilad Ben-Yossef <gilad@benyossef.com>
3173 L:      linux-crypto@vger.kernel.org
3174 L:      driverdev-devel@linuxdriverproject.org
3175 S:      Supported
3176 F:      drivers/staging/ccree/
3177 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3178
3179 CEC FRAMEWORK
3180 M:      Hans Verkuil <hans.verkuil@cisco.com>
3181 L:      linux-media@vger.kernel.org
3182 T:      git git://linuxtv.org/media_tree.git
3183 W:      http://linuxtv.org
3184 S:      Supported
3185 F:      Documentation/media/kapi/cec-core.rst
3186 F:      Documentation/media/uapi/cec
3187 F:      drivers/media/cec/
3188 F:      drivers/media/rc/keymaps/rc-cec.c
3189 F:      include/media/cec.h
3190 F:      include/media/cec-notifier.h
3191 F:      include/uapi/linux/cec.h
3192 F:      include/uapi/linux/cec-funcs.h
3193 F:      Documentation/devicetree/bindings/media/cec.txt
3194
3195 CELL BROADBAND ENGINE ARCHITECTURE
3196 M:      Arnd Bergmann <arnd@arndb.de>
3197 L:      linuxppc-dev@lists.ozlabs.org
3198 W:      http://www.ibm.com/developerworks/power/cell/
3199 S:      Supported
3200 F:      arch/powerpc/include/asm/cell*.h
3201 F:      arch/powerpc/include/asm/spu*.h
3202 F:      arch/powerpc/include/uapi/asm/spu*.h
3203 F:      arch/powerpc/oprofile/*cell*
3204 F:      arch/powerpc/platforms/cell/
3205
3206 CEPH COMMON CODE (LIBCEPH)
3207 M:      Ilya Dryomov <idryomov@gmail.com>
3208 M:      "Yan, Zheng" <zyan@redhat.com>
3209 M:      Sage Weil <sage@redhat.com>
3210 L:      ceph-devel@vger.kernel.org
3211 W:      http://ceph.com/
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3213 T:      git git://github.com/ceph/ceph-client.git
3214 S:      Supported
3215 F:      net/ceph/
3216 F:      include/linux/ceph/
3217 F:      include/linux/crush/
3218
3219 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3220 M:      "Yan, Zheng" <zyan@redhat.com>
3221 M:      Sage Weil <sage@redhat.com>
3222 M:      Ilya Dryomov <idryomov@gmail.com>
3223 L:      ceph-devel@vger.kernel.org
3224 W:      http://ceph.com/
3225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3226 T:      git git://github.com/ceph/ceph-client.git
3227 S:      Supported
3228 F:      Documentation/filesystems/ceph.txt
3229 F:      fs/ceph/
3230
3231 CERTIFICATE HANDLING:
3232 M:      David Howells <dhowells@redhat.com>
3233 M:      David Woodhouse <dwmw2@infradead.org>
3234 L:      keyrings@vger.kernel.org
3235 S:      Maintained
3236 F:      Documentation/module-signing.txt
3237 F:      certs/
3238 F:      scripts/sign-file.c
3239 F:      scripts/extract-cert.c
3240
3241 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3242 L:      linux-usb@vger.kernel.org
3243 S:      Orphan
3244 F:      Documentation/usb/WUSB-Design-overview.txt
3245 F:      Documentation/usb/wusb-cbaf
3246 F:      drivers/usb/host/hwa-hc.c
3247 F:      drivers/usb/host/whci/
3248 F:      drivers/usb/wusbcore/
3249 F:      include/linux/usb/wusb*
3250
3251 HT16K33 LED CONTROLLER DRIVER
3252 M:      Robin van der Gracht <robin@protonic.nl>
3253 S:      Maintained
3254 F:      drivers/auxdisplay/ht16k33.c
3255 F:      Documentation/devicetree/bindings/display/ht16k33.txt
3256
3257 CFAG12864B LCD DRIVER
3258 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3259 W:      http://miguelojeda.es/auxdisplay.htm
3260 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3261 S:      Maintained
3262 F:      drivers/auxdisplay/cfag12864b.c
3263 F:      include/linux/cfag12864b.h
3264
3265 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3266 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3267 W:      http://miguelojeda.es/auxdisplay.htm
3268 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3269 S:      Maintained
3270 F:      drivers/auxdisplay/cfag12864bfb.c
3271 F:      include/linux/cfag12864b.h
3272
3273 CFG80211 and NL80211
3274 M:      Johannes Berg <johannes@sipsolutions.net>
3275 L:      linux-wireless@vger.kernel.org
3276 W:      http://wireless.kernel.org/
3277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3279 S:      Maintained
3280 F:      include/uapi/linux/nl80211.h
3281 F:      include/net/cfg80211.h
3282 F:      net/wireless/*
3283 X:      net/wireless/wext*
3284
3285 CHAR and MISC DRIVERS
3286 M:      Arnd Bergmann <arnd@arndb.de>
3287 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3289 S:      Supported
3290 F:      drivers/char/*
3291 F:      drivers/misc/*
3292 F:      include/linux/miscdevice.h
3293
3294 CHECKPATCH
3295 M:      Andy Whitcroft <apw@canonical.com>
3296 M:      Joe Perches <joe@perches.com>
3297 S:      Maintained
3298 F:      scripts/checkpatch.pl
3299
3300 CHINESE DOCUMENTATION
3301 M:      Harry Wei <harryxiyou@gmail.com>
3302 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3303 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3304 S:      Maintained
3305 F:      Documentation/translations/zh_CN/
3306
3307 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3308 M:      Peter Chen <Peter.Chen@nxp.com>
3309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3310 L:      linux-usb@vger.kernel.org
3311 S:      Maintained
3312 F:      drivers/usb/chipidea/
3313
3314 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3315 M:      Hans de Goede <hdegoede@redhat.com>
3316 L:      linux-input@vger.kernel.org
3317 S:      Maintained
3318 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3319 F:      drivers/input/touchscreen/chipone_icn8318.c
3320
3321 CHROME HARDWARE PLATFORM SUPPORT
3322 M:      Olof Johansson <olof@lixom.net>
3323 S:      Maintained
3324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3325 F:      drivers/platform/chrome/
3326
3327 CISCO VIC ETHERNET NIC DRIVER
3328 M:      Christian Benvenuti <benve@cisco.com>
3329 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3330 M:      Neel Patel <neepatel@cisco.com>
3331 S:      Supported
3332 F:      drivers/net/ethernet/cisco/enic/
3333
3334 CISCO VIC LOW LATENCY NIC DRIVER
3335 M:      Christian Benvenuti <benve@cisco.com>
3336 M:      Dave Goodell <dgoodell@cisco.com>
3337 S:      Supported
3338 F:      drivers/infiniband/hw/usnic/
3339
3340 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3341 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3342 L:      netdev@vger.kernel.org
3343 S:      Maintained
3344 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3345
3346 CIRRUS LOGIC AUDIO CODEC DRIVERS
3347 M:      Brian Austin <brian.austin@cirrus.com>
3348 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3349 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3350 S:      Maintained
3351 F:      sound/soc/codecs/cs*
3352
3353 CLEANCACHE API
3354 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3355 L:      linux-kernel@vger.kernel.org
3356 S:      Maintained
3357 F:      mm/cleancache.c
3358 F:      include/linux/cleancache.h
3359
3360 CLK API
3361 M:      Russell King <linux@armlinux.org.uk>
3362 L:      linux-clk@vger.kernel.org
3363 S:      Maintained
3364 F:      include/linux/clk.h
3365
3366 CLOCKSOURCE, CLOCKEVENT DRIVERS
3367 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3368 M:      Thomas Gleixner <tglx@linutronix.de>
3369 L:      linux-kernel@vger.kernel.org
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3371 S:      Supported
3372 F:      drivers/clocksource
3373
3374 CISCO FCOE HBA DRIVER
3375 M:      Satish Kharat <satishkh@cisco.com>
3376 M:      Sesidhar Baddela <sebaddel@cisco.com>
3377 M:      Karan Tilak Kumar <kartilak@cisco.com>
3378 L:      linux-scsi@vger.kernel.org
3379 S:      Supported
3380 F:      drivers/scsi/fnic/
3381
3382 CISCO SCSI HBA DRIVER
3383 M:      Karan Tilak Kumar <kartilak@cisco.com>
3384 M:      Sesidhar Baddela <sebaddel@cisco.com>
3385 L:      linux-scsi@vger.kernel.org
3386 S:      Supported
3387 F:      drivers/scsi/snic/
3388
3389 CMPC ACPI DRIVER
3390 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3391 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3392 L:      platform-driver-x86@vger.kernel.org
3393 S:      Supported
3394 F:      drivers/platform/x86/classmate-laptop.c
3395
3396 COBALT MEDIA DRIVER
3397 M:      Hans Verkuil <hans.verkuil@cisco.com>
3398 L:      linux-media@vger.kernel.org
3399 T:      git git://linuxtv.org/media_tree.git
3400 W:      https://linuxtv.org
3401 S:      Supported
3402 F:      drivers/media/pci/cobalt/
3403
3404 COCCINELLE/Semantic Patches (SmPL)
3405 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3406 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3407 M:      Nicolas Palix <nicolas.palix@imag.fr>
3408 M:      Michal Marek <mmarek@suse.com>
3409 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3411 W:      http://coccinelle.lip6.fr/
3412 S:      Supported
3413 F:      Documentation/dev-tools/coccinelle.rst
3414 F:      scripts/coccinelle/
3415 F:      scripts/coccicheck
3416
3417 CODA FILE SYSTEM
3418 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3419 M:      coda@cs.cmu.edu
3420 L:      codalist@coda.cs.cmu.edu
3421 W:      http://www.coda.cs.cmu.edu/
3422 S:      Maintained
3423 F:      Documentation/filesystems/coda.txt
3424 F:      fs/coda/
3425 F:      include/linux/coda*.h
3426 F:      include/uapi/linux/coda*.h
3427
3428 CODA V4L2 MEM2MEM DRIVER
3429 M:      Philipp Zabel <p.zabel@pengutronix.de>
3430 L:      linux-media@vger.kernel.org
3431 S:      Maintained
3432 F:      Documentation/devicetree/bindings/media/coda.txt
3433 F:      drivers/media/platform/coda/
3434
3435 COMMON CLK FRAMEWORK
3436 M:      Michael Turquette <mturquette@baylibre.com>
3437 M:      Stephen Boyd <sboyd@codeaurora.org>
3438 L:      linux-clk@vger.kernel.org
3439 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3441 S:      Maintained
3442 F:      Documentation/devicetree/bindings/clock/
3443 F:      drivers/clk/
3444 X:      drivers/clk/clkdev.c
3445 F:      include/linux/clk-pr*
3446 F:      include/linux/clk/
3447
3448 COMMON INTERNET FILE SYSTEM (CIFS)
3449 M:      Steve French <sfrench@samba.org>
3450 L:      linux-cifs@vger.kernel.org
3451 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3452 W:      http://linux-cifs.samba.org/
3453 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3454 S:      Supported
3455 F:      Documentation/filesystems/cifs/
3456 F:      fs/cifs/
3457
3458 COMPACTPCI HOTPLUG CORE
3459 M:      Scott Murray <scott@spiteful.org>
3460 L:      linux-pci@vger.kernel.org
3461 S:      Maintained
3462 F:      drivers/pci/hotplug/cpci_hotplug*
3463
3464 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3465 M:      Scott Murray <scott@spiteful.org>
3466 L:      linux-pci@vger.kernel.org
3467 S:      Maintained
3468 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3469
3470 COMPACTPCI HOTPLUG GENERIC DRIVER
3471 M:      Scott Murray <scott@spiteful.org>
3472 L:      linux-pci@vger.kernel.org
3473 S:      Maintained
3474 F:      drivers/pci/hotplug/cpcihp_generic.c
3475
3476 COMPAL LAPTOP SUPPORT
3477 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3478 L:      platform-driver-x86@vger.kernel.org
3479 S:      Maintained
3480 F:      drivers/platform/x86/compal-laptop.c
3481
3482 CONEXANT ACCESSRUNNER USB DRIVER
3483 L:      accessrunner-general@lists.sourceforge.net
3484 W:      http://accessrunner.sourceforge.net/
3485 S:      Orphan
3486 F:      drivers/usb/atm/cxacru.c
3487
3488 CONFIGFS
3489 M:      Joel Becker <jlbec@evilplan.org>
3490 M:      Christoph Hellwig <hch@lst.de>
3491 T:      git git://git.infradead.org/users/hch/configfs.git
3492 S:      Supported
3493 F:      fs/configfs/
3494 F:      include/linux/configfs.h
3495
3496 CONNECTOR
3497 M:      Evgeniy Polyakov <zbr@ioremap.net>
3498 L:      netdev@vger.kernel.org
3499 S:      Maintained
3500 F:      drivers/connector/
3501
3502 CONTROL GROUP (CGROUP)
3503 M:      Tejun Heo <tj@kernel.org>
3504 M:      Li Zefan <lizefan@huawei.com>
3505 M:      Johannes Weiner <hannes@cmpxchg.org>
3506 L:      cgroups@vger.kernel.org
3507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3508 S:      Maintained
3509 F:      Documentation/cgroup*
3510 F:      include/linux/cgroup*
3511 F:      kernel/cgroup*
3512
3513 CONTROL GROUP - CPUSET
3514 M:      Li Zefan <lizefan@huawei.com>
3515 L:      cgroups@vger.kernel.org
3516 W:      http://www.bullopensource.org/cpuset/
3517 W:      http://oss.sgi.com/projects/cpusets/
3518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3519 S:      Maintained
3520 F:      Documentation/cgroup-v1/cpusets.txt
3521 F:      include/linux/cpuset.h
3522 F:      kernel/cpuset.c
3523
3524 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3525 M:      Johannes Weiner <hannes@cmpxchg.org>
3526 M:      Michal Hocko <mhocko@kernel.org>
3527 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3528 L:      cgroups@vger.kernel.org
3529 L:      linux-mm@kvack.org
3530 S:      Maintained
3531 F:      mm/memcontrol.c
3532 F:      mm/swap_cgroup.c
3533
3534 CORETEMP HARDWARE MONITORING DRIVER
3535 M:      Fenghua Yu <fenghua.yu@intel.com>
3536 L:      linux-hwmon@vger.kernel.org
3537 S:      Maintained
3538 F:      Documentation/hwmon/coretemp
3539 F:      drivers/hwmon/coretemp.c
3540
3541 COSA/SRP SYNC SERIAL DRIVER
3542 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3543 W:      http://www.fi.muni.cz/~kas/cosa/
3544 S:      Maintained
3545 F:      drivers/net/wan/cosa*
3546
3547 CPMAC ETHERNET DRIVER
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 S:      Maintained
3551 F:      drivers/net/ethernet/ti/cpmac.c
3552
3553 CPU FREQUENCY DRIVERS
3554 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3555 M:      Viresh Kumar <viresh.kumar@linaro.org>
3556 L:      linux-pm@vger.kernel.org
3557 S:      Maintained
3558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3559 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3560 B:      https://bugzilla.kernel.org
3561 F:      Documentation/cpu-freq/
3562 F:      Documentation/devicetree/bindings/cpufreq/
3563 F:      drivers/cpufreq/
3564 F:      include/linux/cpufreq.h
3565 F:      tools/testing/selftests/cpufreq/
3566
3567 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3568 M:      Viresh Kumar <viresh.kumar@linaro.org>
3569 M:      Sudeep Holla <sudeep.holla@arm.com>
3570 L:      linux-pm@vger.kernel.org
3571 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3572 S:      Maintained
3573 F:      drivers/cpufreq/arm_big_little.h
3574 F:      drivers/cpufreq/arm_big_little.c
3575 F:      drivers/cpufreq/arm_big_little_dt.c
3576
3577 CPUIDLE DRIVER - ARM BIG LITTLE
3578 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3579 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3580 L:      linux-pm@vger.kernel.org
3581 L:      linux-arm-kernel@lists.infradead.org
3582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3583 S:      Maintained
3584 F:      drivers/cpuidle/cpuidle-big_little.c
3585
3586 CPUIDLE DRIVER - ARM EXYNOS
3587 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3588 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3589 M:      Kukjin Kim <kgene@kernel.org>
3590 L:      linux-pm@vger.kernel.org
3591 L:      linux-samsung-soc@vger.kernel.org
3592 S:      Supported
3593 F:      drivers/cpuidle/cpuidle-exynos.c
3594 F:      arch/arm/mach-exynos/pm.c
3595
3596 CPUIDLE DRIVERS
3597 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3598 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3599 L:      linux-pm@vger.kernel.org
3600 S:      Maintained
3601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3602 B:      https://bugzilla.kernel.org
3603 F:      drivers/cpuidle/*
3604 F:      include/linux/cpuidle.h
3605
3606 CPUID/MSR DRIVER
3607 M:      "H. Peter Anvin" <hpa@zytor.com>
3608 S:      Maintained
3609 F:      arch/x86/kernel/cpuid.c
3610 F:      arch/x86/kernel/msr.c
3611
3612 CPU POWER MONITORING SUBSYSTEM
3613 M:      Thomas Renninger <trenn@suse.com>
3614 L:      linux-pm@vger.kernel.org
3615 S:      Maintained
3616 F:      tools/power/cpupower/
3617
3618 CRAMFS FILESYSTEM
3619 W:      http://sourceforge.net/projects/cramfs/
3620 S:      Orphan / Obsolete
3621 F:      Documentation/filesystems/cramfs.txt
3622 F:      fs/cramfs/
3623
3624 CRIS PORT
3625 M:      Mikael Starvik <starvik@axis.com>
3626 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3627 L:      linux-cris-kernel@axis.com
3628 W:      http://developer.axis.com
3629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3630 S:      Maintained
3631 F:      arch/cris/
3632 F:      drivers/tty/serial/crisv10.*
3633
3634 CRYPTO API
3635 M:      Herbert Xu <herbert@gondor.apana.org.au>
3636 M:      "David S. Miller" <davem@davemloft.net>
3637 L:      linux-crypto@vger.kernel.org
3638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3640 S:      Maintained
3641 F:      Documentation/crypto/
3642 F:      Documentation/devicetree/bindings/crypto/
3643 F:      arch/*/crypto/
3644 F:      crypto/
3645 F:      drivers/crypto/
3646 F:      include/crypto/
3647 F:      include/linux/crypto*
3648
3649 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3650 M:      Neil Horman <nhorman@tuxdriver.com>
3651 L:      linux-crypto@vger.kernel.org
3652 S:      Maintained
3653 F:      crypto/ansi_cprng.c
3654 F:      crypto/rng.c
3655
3656 CS3308 MEDIA DRIVER
3657 M:      Hans Verkuil <hverkuil@xs4all.nl>
3658 L:      linux-media@vger.kernel.org
3659 T:      git git://linuxtv.org/media_tree.git
3660 W:      http://linuxtv.org
3661 S:      Odd Fixes
3662 F:      drivers/media/i2c/cs3308.c
3663 F:      drivers/media/i2c/cs3308.h
3664
3665 CS5535 Audio ALSA driver
3666 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3667 S:      Maintained
3668 F:      sound/pci/cs5535audio/
3669
3670 CW1200 WLAN driver
3671 M:      Solomon Peachy <pizza@shaftnet.org>
3672 S:      Maintained
3673 F:      drivers/net/wireless/st/cw1200/
3674
3675 CX18 VIDEO4LINUX DRIVER
3676 M:      Andy Walls <awalls@md.metrocast.net>
3677 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3678 L:      linux-media@vger.kernel.org
3679 T:      git git://linuxtv.org/media_tree.git
3680 W:      https://linuxtv.org
3681 W:      http://www.ivtvdriver.org/index.php/Cx18
3682 S:      Maintained
3683 F:      Documentation/media/v4l-drivers/cx18*
3684 F:      drivers/media/pci/cx18/
3685 F:      include/uapi/linux/ivtv*
3686
3687 CX2341X MPEG ENCODER HELPER MODULE
3688 M:      Hans Verkuil <hverkuil@xs4all.nl>
3689 L:      linux-media@vger.kernel.org
3690 T:      git git://linuxtv.org/media_tree.git
3691 W:      https://linuxtv.org
3692 S:      Maintained
3693 F:      drivers/media/common/cx2341x*
3694 F:      include/media/cx2341x*
3695
3696 CX24120 MEDIA DRIVER
3697 M:      Jemma Denson <jdenson@gmail.com>
3698 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3699 L:      linux-media@vger.kernel.org
3700 W:      https://linuxtv.org
3701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3702 S:      Maintained
3703 F:      drivers/media/dvb-frontends/cx24120*
3704
3705 CX88 VIDEO4LINUX DRIVER
3706 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3707 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3708 L:      linux-media@vger.kernel.org
3709 W:      https://linuxtv.org
3710 T:      git git://linuxtv.org/media_tree.git
3711 S:      Odd fixes
3712 F:      Documentation/media/v4l-drivers/cx88*
3713 F:      drivers/media/pci/cx88/
3714
3715 CXD2820R MEDIA DRIVER
3716 M:      Antti Palosaari <crope@iki.fi>
3717 L:      linux-media@vger.kernel.org
3718 W:      https://linuxtv.org
3719 W:      http://palosaari.fi/linux/
3720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3721 T:      git git://linuxtv.org/anttip/media_tree.git
3722 S:      Maintained
3723 F:      drivers/media/dvb-frontends/cxd2820r*
3724
3725 CXGB3 ETHERNET DRIVER (CXGB3)
3726 M:      Santosh Raspatur <santosh@chelsio.com>
3727 L:      netdev@vger.kernel.org
3728 W:      http://www.chelsio.com
3729 S:      Supported
3730 F:      drivers/net/ethernet/chelsio/cxgb3/
3731
3732 CXGB3 ISCSI DRIVER (CXGB3I)
3733 M:      Karen Xie <kxie@chelsio.com>
3734 L:      linux-scsi@vger.kernel.org
3735 W:      http://www.chelsio.com
3736 S:      Supported
3737 F:      drivers/scsi/cxgbi/cxgb3i
3738
3739 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3740 M:      Steve Wise <swise@chelsio.com>
3741 L:      linux-rdma@vger.kernel.org
3742 W:      http://www.openfabrics.org
3743 S:      Supported
3744 F:      drivers/infiniband/hw/cxgb3/
3745 F:      include/uapi/rdma/cxgb3-abi.h
3746
3747 CXGB4 ETHERNET DRIVER (CXGB4)
3748 M:      Ganesh Goudar <ganeshgr@chelsio.com>
3749 L:      netdev@vger.kernel.org
3750 W:      http://www.chelsio.com
3751 S:      Supported
3752 F:      drivers/net/ethernet/chelsio/cxgb4/
3753
3754 CXGB4 ISCSI DRIVER (CXGB4I)
3755 M:      Karen Xie <kxie@chelsio.com>
3756 L:      linux-scsi@vger.kernel.org
3757 W:      http://www.chelsio.com
3758 S:      Supported
3759 F:      drivers/scsi/cxgbi/cxgb4i
3760
3761 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3762 M:      Steve Wise <swise@chelsio.com>
3763 L:      linux-rdma@vger.kernel.org
3764 W:      http://www.openfabrics.org
3765 S:      Supported
3766 F:      drivers/infiniband/hw/cxgb4/
3767 F:      include/uapi/rdma/cxgb4-abi.h
3768
3769 CXGB4 CRYPTO DRIVER (chcr)
3770 M:      Harsh Jain <harsh@chelsio.com>
3771 L:      linux-crypto@vger.kernel.org
3772 W:      http://www.chelsio.com
3773 S:      Supported
3774 F:      drivers/crypto/chelsio
3775
3776 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3777 M:      Casey Leedom <leedom@chelsio.com>
3778 L:      netdev@vger.kernel.org
3779 W:      http://www.chelsio.com
3780 S:      Supported
3781 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3782
3783 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3784 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3785 M:      Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3786 L:      linuxppc-dev@lists.ozlabs.org
3787 S:      Supported
3788 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3789 F:      drivers/misc/cxl/
3790 F:      include/misc/cxl*
3791 F:      include/uapi/misc/cxl.h
3792 F:      Documentation/powerpc/cxl.txt
3793 F:      Documentation/ABI/testing/sysfs-class-cxl
3794
3795 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3796 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3797 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3798 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3799 L:      linux-scsi@vger.kernel.org
3800 S:      Supported
3801 F:      drivers/scsi/cxlflash/
3802 F:      include/uapi/scsi/cxlflash_ioctls.h
3803 F:      Documentation/powerpc/cxlflash.txt
3804
3805 STMMAC ETHERNET DRIVER
3806 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3807 M:      Alexandre Torgue <alexandre.torgue@st.com>
3808 L:      netdev@vger.kernel.org
3809 W:      http://www.stlinux.com
3810 S:      Supported
3811 F:      drivers/net/ethernet/stmicro/stmmac/
3812
3813 CYBERPRO FB DRIVER
3814 M:      Russell King <linux@armlinux.org.uk>
3815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3816 W:      http://www.armlinux.org.uk/
3817 S:      Maintained
3818 F:      drivers/video/fbdev/cyber2000fb.*
3819
3820 CYCLADES ASYNC MUX DRIVER
3821 W:      http://www.cyclades.com/
3822 S:      Orphan
3823 F:      drivers/tty/cyclades.c
3824 F:      include/linux/cyclades.h
3825 F:      include/uapi/linux/cyclades.h
3826
3827 CYCLADES PC300 DRIVER
3828 W:      http://www.cyclades.com/
3829 S:      Orphan
3830 F:      drivers/net/wan/pc300*
3831
3832 CYPRESS_FIRMWARE MEDIA DRIVER
3833 M:      Antti Palosaari <crope@iki.fi>
3834 L:      linux-media@vger.kernel.org
3835 W:      https://linuxtv.org
3836 W:      http://palosaari.fi/linux/
3837 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3838 T:      git git://linuxtv.org/anttip/media_tree.git
3839 S:      Maintained
3840 F:      drivers/media/common/cypress_firmware*
3841
3842 CYTTSP TOUCHSCREEN DRIVER
3843 M:      Ferruh Yigit <fery@cypress.com>
3844 L:      linux-input@vger.kernel.org
3845 S:      Supported
3846 F:      drivers/input/touchscreen/cyttsp*
3847 F:      include/linux/input/cyttsp.h
3848
3849 D-LINK DIR-685 TOUCHKEYS DRIVER
3850 M:      Linus Walleij <linus.walleij@linaro.org>
3851 L:      linux-input@vger.kernel.org
3852 S:      Supported
3853 F:      drivers/input/dlink-dir685-touchkeys.c
3854
3855 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3856 M:      Joshua Kinard <kumba@gentoo.org>
3857 S:      Maintained
3858 F:      drivers/rtc/rtc-ds1685.c
3859 F:      include/linux/rtc/ds1685.h
3860
3861 DAMA SLAVE for AX.25
3862 M:      Joerg Reuter <jreuter@yaina.de>
3863 W:      http://yaina.de/jreuter/
3864 W:      http://www.qsl.net/dl1bke/
3865 L:      linux-hams@vger.kernel.org
3866 S:      Maintained
3867 F:      net/ax25/af_ax25.c
3868 F:      net/ax25/ax25_dev.c
3869 F:      net/ax25/ax25_ds_*
3870 F:      net/ax25/ax25_in.c
3871 F:      net/ax25/ax25_out.c
3872 F:      net/ax25/ax25_timer.c
3873 F:      net/ax25/sysctl_net_ax25.c
3874
3875 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3876 L:      netdev@vger.kernel.org
3877 S:      Orphan
3878 F:      Documentation/networking/dmfe.txt
3879 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3880
3881 DC390/AM53C974 SCSI driver
3882 M:      Hannes Reinecke <hare@suse.com>
3883 L:      linux-scsi@vger.kernel.org
3884 S:      Maintained
3885 F:      drivers/scsi/am53c974.c
3886
3887 DC395x SCSI driver
3888 M:      Oliver Neukum <oliver@neukum.org>
3889 M:      Ali Akcaagac <aliakc@web.de>
3890 M:      Jamie Lenehan <lenehan@twibble.org>
3891 L:      dc395x@twibble.org
3892 W:      http://twibble.org/dist/dc395x/
3893 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3894 S:      Maintained
3895 F:      Documentation/scsi/dc395x.txt
3896 F:      drivers/scsi/dc395x.*
3897
3898 DCCP PROTOCOL
3899 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3900 L:      dccp@vger.kernel.org
3901 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3902 S:      Maintained
3903 F:      include/linux/dccp.h
3904 F:      include/uapi/linux/dccp.h
3905 F:      include/linux/tfrc.h
3906 F:      net/dccp/
3907
3908 DECnet NETWORK LAYER
3909 W:      http://linux-decnet.sourceforge.net
3910 L:      linux-decnet-user@lists.sourceforge.net
3911 S:      Orphan
3912 F:      Documentation/networking/decnet.txt
3913 F:      net/decnet/
3914
3915 DECSTATION PLATFORM SUPPORT
3916 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3917 L:      linux-mips@linux-mips.org
3918 W:      http://www.linux-mips.org/wiki/DECstation
3919 S:      Maintained
3920 F:      arch/mips/dec/
3921 F:      arch/mips/include/asm/dec/
3922 F:      arch/mips/include/asm/mach-dec/
3923
3924 DEFXX FDDI NETWORK DRIVER
3925 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3926 S:      Maintained
3927 F:      drivers/net/fddi/defxx.*
3928
3929 DELL LAPTOP DRIVER
3930 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3931 M:      Pali Rohár <pali.rohar@gmail.com>
3932 L:      platform-driver-x86@vger.kernel.org
3933 S:      Maintained
3934 F:      drivers/platform/x86/dell-laptop.c
3935
3936 DELL LAPTOP RBTN DRIVER
3937 M:      Pali Rohár <pali.rohar@gmail.com>
3938 S:      Maintained
3939 F:      drivers/platform/x86/dell-rbtn.*
3940
3941 DELL LAPTOP FREEFALL DRIVER
3942 M:      Pali Rohár <pali.rohar@gmail.com>
3943 S:      Maintained
3944 F:      drivers/platform/x86/dell-smo8800.c
3945
3946 DELL LAPTOP SMM DRIVER
3947 M:      Pali Rohár <pali.rohar@gmail.com>
3948 S:      Maintained
3949 F:      drivers/hwmon/dell-smm-hwmon.c
3950 F:      include/uapi/linux/i8k.h
3951
3952 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3953 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3954 S:      Maintained
3955 F:      Documentation/dcdbas.txt
3956 F:      drivers/firmware/dcdbas.*
3957
3958 DELL WMI EXTRAS DRIVER
3959 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3960 M:      Pali Rohár <pali.rohar@gmail.com>
3961 S:      Maintained
3962 F:      drivers/platform/x86/dell-wmi.c
3963
3964 DESIGNWARE USB2 DRD IP DRIVER
3965 M:      John Youn <johnyoun@synopsys.com>
3966 L:      linux-usb@vger.kernel.org
3967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3968 S:      Maintained
3969 F:      drivers/usb/dwc2/
3970
3971 DESIGNWARE USB3 DRD IP DRIVER
3972 M:      Felipe Balbi <balbi@kernel.org>
3973 L:      linux-usb@vger.kernel.org
3974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3975 S:      Maintained
3976 F:      drivers/usb/dwc3/
3977
3978 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
3979 M:      Andreas Klinger <ak@it-klinger.de>
3980 L:      linux-iio@vger.kernel.org
3981 S:      Maintained
3982 F:      drivers/iio/proximity/srf*.c
3983
3984 DEVICE COREDUMP (DEV_COREDUMP)
3985 M:      Johannes Berg <johannes@sipsolutions.net>
3986 L:      linux-kernel@vger.kernel.org
3987 S:      Maintained
3988 F:      drivers/base/devcoredump.c
3989 F:      include/linux/devcoredump.h
3990
3991 DEVICE FREQUENCY (DEVFREQ)
3992 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3993 M:      Kyungmin Park <kyungmin.park@samsung.com>
3994 R:      Chanwoo Choi <cw00.choi@samsung.com>
3995 L:      linux-pm@vger.kernel.org
3996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3997 S:      Maintained
3998 F:      drivers/devfreq/
3999 F:      include/linux/devfreq.h
4000 F:      Documentation/devicetree/bindings/devfreq/
4001
4002 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4003 M:      Chanwoo Choi <cw00.choi@samsung.com>
4004 L:      linux-pm@vger.kernel.org
4005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4006 S:      Supported
4007 F:      drivers/devfreq/event/
4008 F:      drivers/devfreq/devfreq-event.c
4009 F:      include/linux/devfreq-event.h
4010 F:      Documentation/devicetree/bindings/devfreq/event/
4011
4012 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4013 M:      Chanwoo Choi <cw00.choi@samsung.com>
4014 L:      linux-pm@vger.kernel.org
4015 L:      linux-samsung-soc@vger.kernel.org
4016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4017 S:      Maintained
4018 F:      drivers/devfreq/exynos-bus.c
4019 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4020
4021 DEVICE NUMBER REGISTRY
4022 M:      Torben Mathiasen <device@lanana.org>
4023 W:      http://lanana.org/docs/device-list/index.html
4024 S:      Maintained
4025
4026 DEVICE-MAPPER  (LVM)
4027 M:      Alasdair Kergon <agk@redhat.com>
4028 M:      Mike Snitzer <snitzer@redhat.com>
4029 M:      dm-devel@redhat.com
4030 L:      dm-devel@redhat.com
4031 W:      http://sources.redhat.com/dm
4032 Q:      http://patchwork.kernel.org/project/dm-devel/list/
4033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4034 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
4035 S:      Maintained
4036 F:      Documentation/device-mapper/
4037 F:      drivers/md/dm*
4038 F:      drivers/md/persistent-data/
4039 F:      include/linux/device-mapper.h
4040 F:      include/linux/dm-*.h
4041 F:      include/uapi/linux/dm-*.h
4042
4043 DEVLINK
4044 M:      Jiri Pirko <jiri@mellanox.com>
4045 L:      netdev@vger.kernel.org
4046 S:      Supported
4047 F:      net/core/devlink.c
4048 F:      include/net/devlink.h
4049 F:      include/uapi/linux/devlink.h
4050
4051 DIALOG SEMICONDUCTOR DRIVERS
4052 M:      Support Opensource <support.opensource@diasemi.com>
4053 W:      http://www.dialog-semiconductor.com/products
4054 S:      Supported
4055 F:      Documentation/hwmon/da90??
4056 F:      Documentation/devicetree/bindings/mfd/da90*.txt
4057 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
4058 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4059 F:      Documentation/devicetree/bindings/regulator/da92*.txt
4060 F:      Documentation/devicetree/bindings/watchdog/da92??-wdt.txt
4061 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
4062 F:      drivers/gpio/gpio-da90??.c
4063 F:      drivers/hwmon/da90??-hwmon.c
4064 F:      drivers/iio/adc/da91??-*.c
4065 F:      drivers/input/misc/da90??_onkey.c
4066 F:      drivers/input/touchscreen/da9052_tsi.c
4067 F:      drivers/leds/leds-da90??.c
4068 F:      drivers/mfd/da903x.c
4069 F:      drivers/mfd/da90??-*.c
4070 F:      drivers/mfd/da91??-*.c
4071 F:      drivers/power/supply/da9052-battery.c
4072 F:      drivers/power/supply/da91??-*.c
4073 F:      drivers/regulator/da903x.c
4074 F:      drivers/regulator/da9???-regulator.[ch]
4075 F:      drivers/thermal/da90??-thermal.c
4076 F:      drivers/rtc/rtc-da90??.c
4077 F:      drivers/video/backlight/da90??_bl.c
4078 F:      drivers/watchdog/da90??_wdt.c
4079 F:      include/linux/mfd/da903x.h
4080 F:      include/linux/mfd/da9052/
4081 F:      include/linux/mfd/da9055/
4082 F:      include/linux/mfd/da9062/
4083 F:      include/linux/mfd/da9063/
4084 F:      include/linux/mfd/da9150/
4085 F:      include/linux/regulator/da9211.h
4086 F:      include/sound/da[79]*.h
4087 F:      sound/soc/codecs/da[79]*.[ch]
4088
4089 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4090 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4091 L:      linux-gpio@vger.kernel.org
4092 S:      Maintained
4093 F:      drivers/gpio/gpio-gpio-mm.c
4094
4095 DIGI NEO AND CLASSIC PCI PRODUCTS
4096 M:      Lidza Louina <lidza.louina@gmail.com>
4097 M:      Mark Hounschell <markh@compro.net>
4098 L:      driverdev-devel@linuxdriverproject.org
4099 S:      Maintained
4100 F:      drivers/staging/dgnc/
4101
4102 DIOLAN U2C-12 I2C DRIVER
4103 M:      Guenter Roeck <linux@roeck-us.net>
4104 L:      linux-i2c@vger.kernel.org
4105 S:      Maintained
4106 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4107
4108 DIRECT ACCESS (DAX)
4109 M:      Matthew Wilcox <mawilcox@microsoft.com>
4110 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
4111 L:      linux-fsdevel@vger.kernel.org
4112 S:      Supported
4113 F:      fs/dax.c
4114 F:      include/linux/dax.h
4115 F:      include/trace/events/fs_dax.h
4116
4117 DIRECTORY NOTIFICATION (DNOTIFY)
4118 M:      Eric Paris <eparis@parisplace.org>
4119 S:      Maintained
4120 F:      Documentation/filesystems/dnotify.txt
4121 F:      fs/notify/dnotify/
4122 F:      include/linux/dnotify.h
4123
4124 DISK GEOMETRY AND PARTITION HANDLING
4125 M:      Andries Brouwer <aeb@cwi.nl>
4126 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4127 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4128 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4129 S:      Maintained
4130
4131 DISKQUOTA
4132 M:      Jan Kara <jack@suse.com>
4133 S:      Maintained
4134 F:      Documentation/filesystems/quota.txt
4135 F:      fs/quota/
4136 F:      include/linux/quota*.h
4137 F:      include/uapi/linux/quota*.h
4138
4139 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4140 M:      Bernie Thompson <bernie@plugable.com>
4141 L:      linux-fbdev@vger.kernel.org
4142 S:      Maintained
4143 W:      http://plugable.com/category/projects/udlfb/
4144 F:      drivers/video/fbdev/udlfb.c
4145 F:      include/video/udlfb.h
4146 F:      Documentation/fb/udlfb.txt
4147
4148 DISTRIBUTED LOCK MANAGER (DLM)
4149 M:      Christine Caulfield <ccaulfie@redhat.com>
4150 M:      David Teigland <teigland@redhat.com>
4151 L:      cluster-devel@redhat.com
4152 W:      http://sources.redhat.com/cluster/
4153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4154 S:      Supported
4155 F:      fs/dlm/
4156
4157 DMA BUFFER SHARING FRAMEWORK
4158 M:      Sumit Semwal <sumit.semwal@linaro.org>
4159 S:      Maintained
4160 L:      linux-media@vger.kernel.org
4161 L:      dri-devel@lists.freedesktop.org
4162 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4163 F:      drivers/dma-buf/
4164 F:      include/linux/dma-buf*
4165 F:      include/linux/reservation.h
4166 F:      include/linux/*fence.h
4167 F:      Documentation/driver-api/dma-buf.rst
4168 T:      git git://anongit.freedesktop.org/drm/drm-misc
4169
4170 SYNC FILE FRAMEWORK
4171 M:      Sumit Semwal <sumit.semwal@linaro.org>
4172 R:      Gustavo Padovan <gustavo@padovan.org>
4173 S:      Maintained
4174 L:      linux-media@vger.kernel.org
4175 L:      dri-devel@lists.freedesktop.org
4176 F:      drivers/dma-buf/sync_*
4177 F:      drivers/dma-buf/dma-fence*
4178 F:      drivers/dma-buf/sw_sync.c
4179 F:      include/linux/sync_file.h
4180 F:      include/uapi/linux/sync_file.h
4181 F:      Documentation/sync_file.txt
4182 T:      git git://anongit.freedesktop.org/drm/drm-misc
4183
4184 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4185 M:      Vinod Koul <vinod.koul@intel.com>
4186 L:      dmaengine@vger.kernel.org
4187 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4188 S:      Maintained
4189 F:      drivers/dma/
4190 F:      include/linux/dmaengine.h
4191 F:      Documentation/devicetree/bindings/dma/
4192 F:      Documentation/dmaengine/
4193 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4194
4195 DME1737 HARDWARE MONITOR DRIVER
4196 M:      Juerg Haefliger <juergh@gmail.com>
4197 L:      linux-hwmon@vger.kernel.org
4198 S:      Maintained
4199 F:      Documentation/hwmon/dme1737
4200 F:      drivers/hwmon/dme1737.c
4201
4202 DMI/SMBIOS SUPPORT
4203 M:      Jean Delvare <jdelvare@suse.com>
4204 S:      Maintained
4205 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4206 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4207 F:      drivers/firmware/dmi-id.c
4208 F:      drivers/firmware/dmi_scan.c
4209 F:      include/linux/dmi.h
4210
4211 DOCUMENTATION
4212 M:      Jonathan Corbet <corbet@lwn.net>
4213 L:      linux-doc@vger.kernel.org
4214 S:      Maintained
4215 F:      Documentation/
4216 F:      scripts/kernel-doc
4217 X:      Documentation/ABI/
4218 X:      Documentation/devicetree/
4219 X:      Documentation/acpi
4220 X:      Documentation/power
4221 X:      Documentation/spi
4222 X:      Documentation/media
4223 T:      git git://git.lwn.net/linux.git docs-next
4224
4225 DOUBLETALK DRIVER
4226 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
4227 L:      blinux-list@redhat.com
4228 S:      Maintained
4229 F:      drivers/char/dtlk.c
4230 F:      include/linux/dtlk.h
4231
4232 DPAA2 DATAPATH I/O (DPIO) DRIVER
4233 M:      Roy Pledge <Roy.Pledge@nxp.com>
4234 L:      linux-kernel@vger.kernel.org
4235 S:      Maintained
4236 F:      drivers/staging/fsl-mc/bus/dpio
4237
4238 DPAA2 ETHERNET DRIVER
4239 M:      Ioana Radulescu <ruxandra.radulescu@nxp.com>
4240 L:      linux-kernel@vger.kernel.org
4241 S:      Maintained
4242 F:      drivers/staging/fsl-dpaa2/ethernet
4243
4244 DPT_I2O SCSI RAID DRIVER
4245 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4246 L:      linux-scsi@vger.kernel.org
4247 W:      http://www.adaptec.com/
4248 S:      Maintained
4249 F:      drivers/scsi/dpt*
4250 F:      drivers/scsi/dpt/
4251
4252 DRBD DRIVER
4253 M:      Philipp Reisner <philipp.reisner@linbit.com>
4254 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4255 L:      drbd-dev@lists.linbit.com
4256 W:      http://www.drbd.org
4257 T:      git git://git.linbit.com/linux-drbd.git
4258 T:      git git://git.linbit.com/drbd-8.4.git
4259 S:      Supported
4260 F:      drivers/block/drbd/
4261 F:      lib/lru_cache.c
4262 F:      Documentation/blockdev/drbd/
4263
4264 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4265 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4267 S:      Supported
4268 F:      Documentation/kobject.txt
4269 F:      drivers/base/
4270 F:      fs/debugfs/
4271 F:      fs/sysfs/
4272 F:      include/linux/debugfs.h
4273 F:      include/linux/kobj*
4274 F:      lib/kobj*
4275
4276 DRM DRIVERS
4277 M:      David Airlie <airlied@linux.ie>
4278 L:      dri-devel@lists.freedesktop.org
4279 T:      git git://people.freedesktop.org/~airlied/linux
4280 B:      https://bugs.freedesktop.org/
4281 C:      irc://chat.freenode.net/dri-devel
4282 S:      Maintained
4283 F:      drivers/gpu/drm/
4284 F:      drivers/gpu/vga/
4285 F:      Documentation/devicetree/bindings/display/
4286 F:      Documentation/devicetree/bindings/gpu/
4287 F:      Documentation/devicetree/bindings/video/
4288 F:      Documentation/gpu/
4289 F:      include/drm/
4290 F:      include/uapi/drm/
4291 F:      include/linux/vga*
4292
4293 DRM DRIVERS AND MISC GPU PATCHES
4294 M:      Daniel Vetter <daniel.vetter@intel.com>
4295 M:      Jani Nikula <jani.nikula@linux.intel.com>
4296 M:      Sean Paul <seanpaul@chromium.org>
4297 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4298 S:      Maintained
4299 T:      git git://anongit.freedesktop.org/drm/drm-misc
4300 F:      Documentation/gpu/
4301 F:      drivers/gpu/vga/
4302 F:      drivers/gpu/drm/*
4303 F:      include/drm/drm*
4304 F:      include/uapi/drm/drm*
4305 F:      include/linux/vga*
4306
4307 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4308 M:      Dave Airlie <airlied@redhat.com>
4309 S:      Odd Fixes
4310 F:      drivers/gpu/drm/ast/
4311
4312 DRM DRIVERS FOR BRIDGE CHIPS
4313 M:      Archit Taneja <architt@codeaurora.org>
4314 S:      Maintained
4315 T:      git git://anongit.freedesktop.org/drm/drm-misc
4316 F:      drivers/gpu/drm/bridge/
4317
4318 DRM DRIVER FOR BOCHS VIRTUAL GPU
4319 M:      Gerd Hoffmann <kraxel@redhat.com>
4320 L:      virtualization@lists.linux-foundation.org
4321 T:      git git://anongit.freedesktop.org/drm/drm-misc
4322 S:      Maintained
4323 F:      drivers/gpu/drm/bochs/
4324
4325 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4326 M:      Dave Airlie <airlied@redhat.com>
4327 M:      Gerd Hoffmann <kraxel@redhat.com>
4328 L:      virtualization@lists.linux-foundation.org
4329 T:      git git://anongit.freedesktop.org/drm/drm-misc
4330 S:      Obsolete
4331 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4332 F:      drivers/gpu/drm/cirrus/
4333
4334 RADEON and AMDGPU DRM DRIVERS
4335 M:      Alex Deucher <alexander.deucher@amd.com>
4336 M:      Christian König <christian.koenig@amd.com>
4337 L:      amd-gfx@lists.freedesktop.org
4338 T:      git git://people.freedesktop.org/~agd5f/linux
4339 S:      Supported
4340 F:      drivers/gpu/drm/radeon/
4341 F:      include/uapi/drm/radeon_drm.h
4342 F:      drivers/gpu/drm/amd/
4343 F:      include/uapi/drm/amdgpu_drm.h
4344
4345 DRM PANEL DRIVERS
4346 M:      Thierry Reding <thierry.reding@gmail.com>
4347 L:      dri-devel@lists.freedesktop.org
4348 T:      git git://anongit.freedesktop.org/tegra/linux.git
4349 S:      Maintained
4350 F:      drivers/gpu/drm/drm_panel.c
4351 F:      drivers/gpu/drm/panel/
4352 F:      include/drm/drm_panel.h
4353 F:      Documentation/devicetree/bindings/display/panel/
4354
4355 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4356 M:      Daniel Vetter <daniel.vetter@intel.com>
4357 M:      Jani Nikula <jani.nikula@linux.intel.com>
4358 L:      intel-gfx@lists.freedesktop.org
4359 W:      https://01.org/linuxgraphics/
4360 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
4361 C:      irc://chat.freenode.net/intel-gfx
4362 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
4363 T:      git git://anongit.freedesktop.org/drm-intel
4364 S:      Supported
4365 F:      drivers/gpu/drm/i915/
4366 F:      include/drm/i915*
4367 F:      include/uapi/drm/i915_drm.h
4368 F:      Documentation/gpu/i915.rst
4369
4370 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
4371 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
4372 M:      Zhi Wang <zhi.a.wang@intel.com>
4373 L:      intel-gvt-dev@lists.freedesktop.org
4374 L:      intel-gfx@lists.freedesktop.org
4375 W:      https://01.org/igvt-g
4376 T:      git https://github.com/01org/gvt-linux.git
4377 S:      Supported
4378 F:      drivers/gpu/drm/i915/gvt/
4379
4380 DRM DRIVERS FOR ATMEL HLCDC
4381 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4382 L:      dri-devel@lists.freedesktop.org
4383 S:      Supported
4384 F:      drivers/gpu/drm/atmel-hlcdc/
4385 F:      Documentation/devicetree/bindings/drm/atmel/
4386 T:      git git://anongit.freedesktop.org/drm/drm-misc
4387
4388 DRM DRIVERS FOR ALLWINNER A10
4389 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
4390 L:      dri-devel@lists.freedesktop.org
4391 S:      Supported
4392 F:      drivers/gpu/drm/sun4i/
4393 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4395
4396 DRM DRIVERS FOR AMLOGIC SOCS
4397 M:      Neil Armstrong <narmstrong@baylibre.com>
4398 L:      dri-devel@lists.freedesktop.org
4399 L:      linux-amlogic@lists.infradead.org
4400 W:      http://linux-meson.com/
4401 S:      Supported
4402 F:      drivers/gpu/drm/meson/
4403 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4404 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4405 F:      Documentation/gpu/meson.rst
4406 T:      git git://anongit.freedesktop.org/drm/drm-misc
4407
4408 DRM DRIVERS FOR EXYNOS
4409 M:      Inki Dae <inki.dae@samsung.com>
4410 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4411 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4412 M:      Kyungmin Park <kyungmin.park@samsung.com>
4413 L:      dri-devel@lists.freedesktop.org
4414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4415 S:      Supported
4416 F:      drivers/gpu/drm/exynos/
4417 F:      include/uapi/drm/exynos_drm.h
4418 F:      Documentation/devicetree/bindings/display/exynos/
4419
4420 DRM DRIVERS FOR FREESCALE DCU
4421 M:      Stefan Agner <stefan@agner.ch>
4422 M:      Alison Wang <alison.wang@freescale.com>
4423 L:      dri-devel@lists.freedesktop.org
4424 S:      Supported
4425 F:      drivers/gpu/drm/fsl-dcu/
4426 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4427 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4428 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4429
4430 DRM DRIVERS FOR FREESCALE IMX
4431 M:      Philipp Zabel <p.zabel@pengutronix.de>
4432 L:      dri-devel@lists.freedesktop.org
4433 S:      Maintained
4434 F:      drivers/gpu/drm/imx/
4435 F:      drivers/gpu/ipu-v3/
4436 F:      Documentation/devicetree/bindings/display/imx/
4437
4438 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4439 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4440 L:      dri-devel@lists.freedesktop.org
4441 T:      git git://github.com/patjak/drm-gma500
4442 S:      Maintained
4443 F:      drivers/gpu/drm/gma500/
4444
4445 DRM DRIVERS FOR HISILICON
4446 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4447 M:      Rongrong Zou <zourongrong@gmail.com>
4448 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4449 R:      Chen Feng <puck.chen@hisilicon.com>
4450 L:      dri-devel@lists.freedesktop.org
4451 T:      git git://github.com/xin3liang/linux.git
4452 S:      Maintained
4453 F:      drivers/gpu/drm/hisilicon/
4454 F:      Documentation/devicetree/bindings/display/hisilicon/
4455
4456 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4457 S:      Orphan / Obsolete
4458 F:      drivers/gpu/drm/i810/
4459 F:      include/uapi/drm/i810_drm.h
4460
4461 DRM DRIVERS FOR MEDIATEK
4462 M:      CK Hu <ck.hu@mediatek.com>
4463 M:      Philipp Zabel <p.zabel@pengutronix.de>
4464 L:      dri-devel@lists.freedesktop.org
4465 S:      Supported
4466 F:      drivers/gpu/drm/mediatek/
4467 F:      Documentation/devicetree/bindings/display/mediatek/
4468
4469 DRM DRIVER FOR MI0283QT
4470 M:      Noralf Trønnes <noralf@tronnes.org>
4471 S:      Maintained
4472 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4473 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4474
4475 DRM DRIVER FOR MSM ADRENO GPU
4476 M:      Rob Clark <robdclark@gmail.com>
4477 L:      linux-arm-msm@vger.kernel.org
4478 L:      dri-devel@lists.freedesktop.org
4479 L:      freedreno@lists.freedesktop.org
4480 T:      git git://people.freedesktop.org/~robclark/linux
4481 S:      Maintained
4482 F:      drivers/gpu/drm/msm/
4483 F:      include/uapi/drm/msm_drm.h
4484 F:      Documentation/devicetree/bindings/display/msm/
4485
4486 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4487 M:      Ben Skeggs <bskeggs@redhat.com>
4488 L:      dri-devel@lists.freedesktop.org
4489 L:      nouveau@lists.freedesktop.org
4490 T:      git git://github.com/skeggsb/linux
4491 S:      Supported
4492 F:      drivers/gpu/drm/nouveau/
4493 F:      include/uapi/drm/nouveau_drm.h
4494
4495 DRM DRIVERS FOR NVIDIA TEGRA
4496 M:      Thierry Reding <thierry.reding@gmail.com>
4497 L:      dri-devel@lists.freedesktop.org
4498 L:      linux-tegra@vger.kernel.org
4499 T:      git git://anongit.freedesktop.org/tegra/linux.git
4500 S:      Supported
4501 F:      drivers/gpu/drm/tegra/
4502 F:      drivers/gpu/host1x/
4503 F:      include/linux/host1x.h
4504 F:      include/uapi/drm/tegra_drm.h
4505 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4506
4507 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4508 S:      Orphan / Obsolete
4509 F:      drivers/gpu/drm/mga/
4510 F:      include/uapi/drm/mga_drm.h
4511
4512 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4513 M:      Dave Airlie <airlied@redhat.com>
4514 S:      Odd Fixes
4515 F:      drivers/gpu/drm/mgag200/
4516
4517 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4518 S:      Orphan / Obsolete
4519 F:      drivers/gpu/drm/r128/
4520 F:      include/uapi/drm/r128_drm.h
4521
4522 DRM DRIVERS FOR RENESAS
4523 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4524 L:      dri-devel@lists.freedesktop.org
4525 L:      linux-renesas-soc@vger.kernel.org
4526 T:      git git://linuxtv.org/pinchartl/fbdev
4527 S:      Supported
4528 F:      drivers/gpu/drm/rcar-du/
4529 F:      drivers/gpu/drm/shmobile/
4530 F:      include/linux/platform_data/shmob_drm.h
4531 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4532 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4533
4534 DRM DRIVER FOR QXL VIRTUAL GPU
4535 M:      Dave Airlie <airlied@redhat.com>
4536 M:      Gerd Hoffmann <kraxel@redhat.com>
4537 L:      virtualization@lists.linux-foundation.org
4538 T:      git git://anongit.freedesktop.org/drm/drm-misc
4539 S:      Maintained
4540 F:      drivers/gpu/drm/qxl/
4541 F:      include/uapi/drm/qxl_drm.h
4542
4543 DRM DRIVERS FOR ROCKCHIP
4544 M:      Mark Yao <mark.yao@rock-chips.com>
4545 L:      dri-devel@lists.freedesktop.org
4546 S:      Maintained
4547 F:      drivers/gpu/drm/rockchip/
4548 F:      Documentation/devicetree/bindings/display/rockchip/
4549 T:      git git://anongit.freedesktop.org/drm/drm-misc
4550
4551 DRM DRIVER FOR SAVAGE VIDEO CARDS
4552 S:      Orphan / Obsolete
4553 F:      drivers/gpu/drm/savage/
4554 F:      include/uapi/drm/savage_drm.h
4555
4556 DRM DRIVER FOR SIS VIDEO CARDS
4557 S:      Orphan / Obsolete
4558 F:      drivers/gpu/drm/sis/
4559 F:      include/uapi/drm/sis_drm.h
4560
4561 DRM DRIVERS FOR STI
4562 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4563 M:      Vincent Abriou <vincent.abriou@st.com>
4564 L:      dri-devel@lists.freedesktop.org
4565 T:      git git://anongit.freedesktop.org/drm/drm-misc
4566 S:      Maintained
4567 F:      drivers/gpu/drm/sti
4568 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4569
4570 DRM DRIVER FOR TDFX VIDEO CARDS
4571 S:      Orphan / Obsolete
4572 F:      drivers/gpu/drm/tdfx/
4573
4574 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4575 M:      Dave Airlie <airlied@redhat.com>
4576 S:      Odd Fixes
4577 F:      drivers/gpu/drm/udl/
4578
4579 DRM DRIVERS FOR VIVANTE GPU IP
4580 M:      Lucas Stach <l.stach@pengutronix.de>
4581 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4582 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4583 L:      etnaviv@lists.freedesktop.org
4584 L:      dri-devel@lists.freedesktop.org
4585 S:      Maintained
4586 F:      drivers/gpu/drm/etnaviv/
4587 F:      include/uapi/drm/etnaviv_drm.h
4588 F:      Documentation/devicetree/bindings/display/etnaviv/
4589
4590 DRM DRIVER FOR VMWARE VIRTUAL GPU
4591 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4592 M:      Sinclair Yeh <syeh@vmware.com>
4593 M:      Thomas Hellstrom <thellstrom@vmware.com>
4594 L:      dri-devel@lists.freedesktop.org
4595 T:      git git://people.freedesktop.org/~syeh/repos_linux
4596 T:      git git://people.freedesktop.org/~thomash/linux
4597 S:      Supported
4598 F:      drivers/gpu/drm/vmwgfx/
4599 F:      include/uapi/drm/vmwgfx_drm.h
4600
4601 DRM DRIVERS FOR VC4
4602 M:      Eric Anholt <eric@anholt.net>
4603 T:      git git://github.com/anholt/linux
4604 S:      Supported
4605 F:      drivers/gpu/drm/vc4/
4606 F:      include/uapi/drm/vc4_drm.h
4607 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4608 T:      git git://anongit.freedesktop.org/drm/drm-misc
4609
4610 DRM DRIVERS FOR TI OMAP
4611 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4612 L:      dri-devel@lists.freedesktop.org
4613 S:      Maintained
4614 F:      drivers/gpu/drm/omapdrm/
4615 F:      Documentation/devicetree/bindings/display/ti/
4616
4617 DRM DRIVERS FOR TI LCDC
4618 M:      Jyri Sarha <jsarha@ti.com>
4619 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4620 L:      dri-devel@lists.freedesktop.org
4621 S:      Maintained
4622 F:      drivers/gpu/drm/tilcdc/
4623 F:      Documentation/devicetree/bindings/display/tilcdc/
4624
4625 DRM DRIVERS FOR ZTE ZX
4626 M:      Shawn Guo <shawnguo@kernel.org>
4627 L:      dri-devel@lists.freedesktop.org
4628 S:      Maintained
4629 F:      drivers/gpu/drm/zte/
4630 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4631 T:      git git://anongit.freedesktop.org/drm/drm-misc
4632
4633 DSBR100 USB FM RADIO DRIVER
4634 M:      Alexey Klimov <klimov.linux@gmail.com>
4635 L:      linux-media@vger.kernel.org
4636 T:      git git://linuxtv.org/media_tree.git
4637 S:      Maintained
4638 F:      drivers/media/radio/dsbr100.c
4639
4640 DSCC4 DRIVER
4641 M:      Francois Romieu <romieu@fr.zoreil.com>
4642 L:      netdev@vger.kernel.org
4643 S:      Maintained
4644 F:      drivers/net/wan/dscc4.c
4645
4646 DT3155 MEDIA DRIVER
4647 M:      Hans Verkuil <hverkuil@xs4all.nl>
4648 L:      linux-media@vger.kernel.org
4649 T:      git git://linuxtv.org/media_tree.git
4650 W:      https://linuxtv.org
4651 S:      Odd Fixes
4652 F:      drivers/media/pci/dt3155/
4653
4654 DVB_USB_AF9015 MEDIA DRIVER
4655 M:      Antti Palosaari <crope@iki.fi>
4656 L:      linux-media@vger.kernel.org
4657 W:      https://linuxtv.org
4658 W:      http://palosaari.fi/linux/
4659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4660 T:      git git://linuxtv.org/anttip/media_tree.git
4661 S:      Maintained
4662 F:      drivers/media/usb/dvb-usb-v2/af9015*
4663
4664 DVB_USB_AF9035 MEDIA DRIVER
4665 M:      Antti Palosaari <crope@iki.fi>
4666 L:      linux-media@vger.kernel.org
4667 W:      https://linuxtv.org
4668 W:      http://palosaari.fi/linux/
4669 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4670 T:      git git://linuxtv.org/anttip/media_tree.git
4671 S:      Maintained
4672 F:      drivers/media/usb/dvb-usb-v2/af9035*
4673
4674 DVB_USB_ANYSEE MEDIA DRIVER
4675 M:      Antti Palosaari <crope@iki.fi>
4676 L:      linux-media@vger.kernel.org
4677 W:      https://linuxtv.org
4678 W:      http://palosaari.fi/linux/
4679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4680 T:      git git://linuxtv.org/anttip/media_tree.git
4681 S:      Maintained
4682 F:      drivers/media/usb/dvb-usb-v2/anysee*
4683
4684 DVB_USB_AU6610 MEDIA DRIVER
4685 M:      Antti Palosaari <crope@iki.fi>
4686 L:      linux-media@vger.kernel.org
4687 W:      https://linuxtv.org
4688 W:      http://palosaari.fi/linux/
4689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4690 T:      git git://linuxtv.org/anttip/media_tree.git
4691 S:      Maintained
4692 F:      drivers/media/usb/dvb-usb-v2/au6610*
4693
4694 DVB_USB_CE6230 MEDIA DRIVER
4695 M:      Antti Palosaari <crope@iki.fi>
4696 L:      linux-media@vger.kernel.org
4697 W:      https://linuxtv.org
4698 W:      http://palosaari.fi/linux/
4699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4700 T:      git git://linuxtv.org/anttip/media_tree.git
4701 S:      Maintained
4702 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4703
4704 DVB_USB_CXUSB MEDIA DRIVER
4705 M:      Michael Krufky <mkrufky@linuxtv.org>
4706 L:      linux-media@vger.kernel.org
4707 W:      https://linuxtv.org
4708 W:      http://github.com/mkrufky
4709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4710 T:      git git://linuxtv.org/media_tree.git
4711 S:      Maintained
4712 F:      drivers/media/usb/dvb-usb/cxusb*
4713
4714 DVB_USB_EC168 MEDIA DRIVER
4715 M:      Antti Palosaari <crope@iki.fi>
4716 L:      linux-media@vger.kernel.org
4717 W:      https://linuxtv.org
4718 W:      http://palosaari.fi/linux/
4719 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4720 T:      git git://linuxtv.org/anttip/media_tree.git
4721 S:      Maintained
4722 F:      drivers/media/usb/dvb-usb-v2/ec168*
4723
4724 DVB_USB_GL861 MEDIA DRIVER
4725 M:      Antti Palosaari <crope@iki.fi>
4726 L:      linux-media@vger.kernel.org
4727 W:      https://linuxtv.org
4728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4729 T:      git git://linuxtv.org/anttip/media_tree.git
4730 S:      Maintained
4731 F:      drivers/media/usb/dvb-usb-v2/gl861*
4732
4733 DVB_USB_MXL111SF MEDIA DRIVER
4734 M:      Michael Krufky <mkrufky@linuxtv.org>
4735 L:      linux-media@vger.kernel.org
4736 W:      https://linuxtv.org
4737 W:      http://github.com/mkrufky
4738 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4739 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4740 S:      Maintained
4741 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4742
4743 DVB_USB_RTL28XXU MEDIA DRIVER
4744 M:      Antti Palosaari <crope@iki.fi>
4745 L:      linux-media@vger.kernel.org
4746 W:      https://linuxtv.org
4747 W:      http://palosaari.fi/linux/
4748 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4749 T:      git git://linuxtv.org/anttip/media_tree.git
4750 S:      Maintained
4751 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4752
4753 DVB_USB_V2 MEDIA DRIVER
4754 M:      Antti Palosaari <crope@iki.fi>
4755 L:      linux-media@vger.kernel.org
4756 W:      https://linuxtv.org
4757 W:      http://palosaari.fi/linux/
4758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4759 T:      git git://linuxtv.org/anttip/media_tree.git
4760 S:      Maintained
4761 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4762 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4763
4764 DONGWOON DW9714 LENS VOICE COIL DRIVER
4765 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
4766 L:      linux-media@vger.kernel.org
4767 T:      git git://linuxtv.org/media_tree.git
4768 S:      Maintained
4769 F:      drivers/media/i2c/dw9714.c
4770
4771 DYNAMIC DEBUG
4772 M:      Jason Baron <jbaron@akamai.com>
4773 S:      Maintained
4774 F:      lib/dynamic_debug.c
4775 F:      include/linux/dynamic_debug.h
4776
4777 DZ DECSTATION DZ11 SERIAL DRIVER
4778 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4779 S:      Maintained
4780 F:      drivers/tty/serial/dz.*
4781
4782 E3X0 POWER BUTTON DRIVER
4783 M:      Moritz Fischer <moritz.fischer@ettus.com>
4784 L:      usrp-users@lists.ettus.com
4785 W:      http://www.ettus.com
4786 S:      Supported
4787 F:      drivers/input/misc/e3x0-button.c
4788 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4789
4790 E4000 MEDIA DRIVER
4791 M:      Antti Palosaari <crope@iki.fi>
4792 L:      linux-media@vger.kernel.org
4793 W:      https://linuxtv.org
4794 W:      http://palosaari.fi/linux/
4795 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4796 T:      git git://linuxtv.org/anttip/media_tree.git
4797 S:      Maintained
4798 F:      drivers/media/tuners/e4000*
4799
4800 EATA ISA/EISA/PCI SCSI DRIVER
4801 M:      Dario Ballabio <ballabio_dario@emc.com>
4802 L:      linux-scsi@vger.kernel.org
4803 S:      Maintained
4804 F:      drivers/scsi/eata.c
4805
4806 EC100 MEDIA DRIVER
4807 M:      Antti Palosaari <crope@iki.fi>
4808 L:      linux-media@vger.kernel.org
4809 W:      https://linuxtv.org
4810 W:      http://palosaari.fi/linux/
4811 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4812 T:      git git://linuxtv.org/anttip/media_tree.git
4813 S:      Maintained
4814 F:      drivers/media/dvb-frontends/ec100*
4815
4816 ECRYPT FILE SYSTEM
4817 M:      Tyler Hicks <tyhicks@canonical.com>
4818 L:      ecryptfs@vger.kernel.org
4819 W:      http://ecryptfs.org
4820 W:      https://launchpad.net/ecryptfs
4821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4822 S:      Supported
4823 F:      Documentation/filesystems/ecryptfs.txt
4824 F:      fs/ecryptfs/
4825
4826 EDAC-CORE
4827 M:      Borislav Petkov <bp@alien8.de>
4828 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4829 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4830 L:      linux-edac@vger.kernel.org
4831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4833 S:      Supported
4834 F:      Documentation/admin-guide/ras.rst
4835 F:      Documentation/driver-api/edac.rst
4836 F:      drivers/edac/
4837 F:      include/linux/edac.h
4838
4839 EDAC-AMD64
4840 M:      Borislav Petkov <bp@alien8.de>
4841 L:      linux-edac@vger.kernel.org
4842 S:      Maintained
4843 F:      drivers/edac/amd64_edac*
4844
4845 EDAC-CALXEDA
4846 M:      Robert Richter <rric@kernel.org>
4847 L:      linux-edac@vger.kernel.org
4848 S:      Maintained
4849 F:      drivers/edac/highbank*
4850
4851 EDAC-CAVIUM
4852 M:      Ralf Baechle <ralf@linux-mips.org>
4853 M:      David Daney <david.daney@cavium.com>
4854 L:      linux-edac@vger.kernel.org
4855 L:      linux-mips@linux-mips.org
4856 S:      Supported
4857 F:      drivers/edac/octeon_edac*
4858 F:      drivers/edac/thunderx_edac*
4859
4860 EDAC-E752X
4861 M:      Mark Gross <mark.gross@intel.com>
4862 L:      linux-edac@vger.kernel.org
4863 S:      Maintained
4864 F:      drivers/edac/e752x_edac.c
4865
4866 EDAC-E7XXX
4867 L:      linux-edac@vger.kernel.org
4868 S:      Maintained
4869 F:      drivers/edac/e7xxx_edac.c
4870
4871 EDAC-FSL_DDR
4872 M:      York Sun <york.sun@nxp.com>
4873 L:      linux-edac@vger.kernel.org
4874 S:      Maintained
4875 F:      drivers/edac/fsl_ddr_edac.*
4876
4877 EDAC-GHES
4878 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4879 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4880 L:      linux-edac@vger.kernel.org
4881 S:      Maintained
4882 F:      drivers/edac/ghes_edac.c
4883
4884 EDAC-I82443BXGX
4885 M:      Tim Small <tim@buttersideup.com>
4886 L:      linux-edac@vger.kernel.org
4887 S:      Maintained
4888 F:      drivers/edac/i82443bxgx_edac.c
4889
4890 EDAC-I3000
4891 L:      linux-edac@vger.kernel.org
4892 S:      Orphan
4893 F:      drivers/edac/i3000_edac.c
4894
4895 EDAC-I5000
4896 L:      linux-edac@vger.kernel.org
4897 S:      Maintained
4898 F:      drivers/edac/i5000_edac.c
4899
4900 EDAC-I5400
4901 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4902 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4903 L:      linux-edac@vger.kernel.org
4904 S:      Maintained
4905 F:      drivers/edac/i5400_edac.c
4906
4907 EDAC-I7300
4908 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4909 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4910 L:      linux-edac@vger.kernel.org
4911 S:      Maintained
4912 F:      drivers/edac/i7300_edac.c
4913
4914 EDAC-I7CORE
4915 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4916 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4917 L:      linux-edac@vger.kernel.org
4918 S:      Maintained
4919 F:      drivers/edac/i7core_edac.c
4920
4921 EDAC-I82975X
4922 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4923 M:      "Arvind R." <arvino55@gmail.com>
4924 L:      linux-edac@vger.kernel.org
4925 S:      Maintained
4926 F:      drivers/edac/i82975x_edac.c
4927
4928 EDAC-IE31200
4929 M:      Jason Baron <jbaron@akamai.com>
4930 L:      linux-edac@vger.kernel.org
4931 S:      Maintained
4932 F:      drivers/edac/ie31200_edac.c
4933
4934 EDAC-MPC85XX
4935 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4936 L:      linux-edac@vger.kernel.org
4937 S:      Maintained
4938 F:      drivers/edac/mpc85xx_edac.[ch]
4939
4940 EDAC-PND2
4941 M:      Tony Luck <tony.luck@intel.com>
4942 L:      linux-edac@vger.kernel.org
4943 S:      Maintained
4944 F:      drivers/edac/pnd2_edac.[ch]
4945
4946 EDAC-PASEMI
4947 M:      Egor Martovetsky <egor@pasemi.com>
4948 L:      linux-edac@vger.kernel.org
4949 S:      Maintained
4950 F:      drivers/edac/pasemi_edac.c
4951
4952 EDAC-R82600
4953 M:      Tim Small <tim@buttersideup.com>
4954 L:      linux-edac@vger.kernel.org
4955 S:      Maintained
4956 F:      drivers/edac/r82600_edac.c
4957
4958 EDAC-SBRIDGE
4959 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4960 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4961 L:      linux-edac@vger.kernel.org
4962 S:      Maintained
4963 F:      drivers/edac/sb_edac.c
4964
4965 EDAC-SKYLAKE
4966 M:      Tony Luck <tony.luck@intel.com>
4967 L:      linux-edac@vger.kernel.org
4968 S:      Maintained
4969 F:      drivers/edac/skx_edac.c
4970
4971 EDAC-XGENE
4972 APPLIED MICRO (APM) X-GENE SOC EDAC
4973 M:     Loc Ho <lho@apm.com>
4974 S:     Supported
4975 F:     drivers/edac/xgene_edac.c
4976 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4977
4978 EDIROL UA-101/UA-1000 DRIVER
4979 M:      Clemens Ladisch <clemens@ladisch.de>
4980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4981 T:      git git://git.alsa-project.org/alsa-kernel.git
4982 S:      Maintained
4983 F:      sound/usb/misc/ua101.c
4984
4985 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4986 M:      Matt Fleming <matt@codeblueprint.co.uk>
4987 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
4988 L:      linux-efi@vger.kernel.org
4989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
4990 S:      Maintained
4991 F:      Documentation/efi-stub.txt
4992 F:      arch/*/kernel/efi.c
4993 F:      arch/x86/boot/compressed/eboot.[ch]
4994 F:      arch/*/include/asm/efi.h
4995 F:      arch/x86/platform/efi/
4996 F:      drivers/firmware/efi/
4997 F:      include/linux/efi*.h
4998 F:      arch/arm/boot/compressed/efi-header.S
4999 F:      arch/arm64/kernel/efi-entry.S
5000
5001 EFI VARIABLE FILESYSTEM
5002 M:      Matthew Garrett <matthew.garrett@nebula.com>
5003 M:      Jeremy Kerr <jk@ozlabs.org>
5004 M:      Matt Fleming <matt@codeblueprint.co.uk>
5005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
5006 L:      linux-efi@vger.kernel.org
5007 S:      Maintained
5008 F:      fs/efivarfs/
5009
5010 EFIFB FRAMEBUFFER DRIVER
5011 L:      linux-fbdev@vger.kernel.org
5012 M:      Peter Jones <pjones@redhat.com>
5013 S:      Maintained
5014 F:      drivers/video/fbdev/efifb.c
5015
5016 EFI TEST DRIVER
5017 L:      linux-efi@vger.kernel.org
5018 M:      Ivan Hu <ivan.hu@canonical.com>
5019 M:      Matt Fleming <matt@codeblueprint.co.uk>
5020 S:      Maintained
5021 F:      drivers/firmware/efi/test/
5022
5023 EFS FILESYSTEM
5024 W:      http://aeschi.ch.eu.org/efs/
5025 S:      Orphan
5026 F:      fs/efs/
5027
5028 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5029 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
5030 L:      netdev@vger.kernel.org
5031 S:      Maintained
5032 F:      drivers/net/ethernet/ibm/ehea/
5033
5034 EM28XX VIDEO4LINUX DRIVER
5035 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
5036 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5037 L:      linux-media@vger.kernel.org
5038 W:      https://linuxtv.org
5039 T:      git git://linuxtv.org/media_tree.git
5040 S:      Maintained
5041 F:      drivers/media/usb/em28xx/
5042 F:      Documentation/media/v4l-drivers/em28xx*
5043
5044 EMBEDDED LINUX
5045 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
5046 M:      Matt Mackall <mpm@selenic.com>
5047 M:      David Woodhouse <dwmw2@infradead.org>
5048 L:      linux-embedded@vger.kernel.org
5049 S:      Maintained
5050
5051 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5052 M:      James Smart <james.smart@broadcom.com>
5053 M:      Dick Kennedy <dick.kennedy@broadcom.com>
5054 L:      linux-scsi@vger.kernel.org
5055 W:      http://www.broadcom.com
5056 S:      Supported
5057 F:      drivers/scsi/lpfc/
5058
5059 ENE CB710 FLASH CARD READER DRIVER
5060 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
5061 S:      Maintained
5062 F:      drivers/misc/cb710/
5063 F:      drivers/mmc/host/cb710-mmc.*
5064 F:      include/linux/cb710.h
5065
5066 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5067 M:      Maxim Levitsky <maximlevitsky@gmail.com>
5068 S:      Maintained
5069 F:      drivers/media/rc/ene_ir.*
5070
5071 EPSON S1D13XXX FRAMEBUFFER DRIVER
5072 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
5073 S:      Maintained
5074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5075 F:      drivers/video/fbdev/s1d13xxxfb.c
5076 F:      include/video/s1d13xxxfb.h
5077
5078 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5079 M:      Jeff Layton <jlayton@poochiereds.net>
5080 S:      Maintained
5081 F:      lib/errseq.c
5082 F:      include/linux/errseq.h
5083
5084 ET131X NETWORK DRIVER
5085 M:      Mark Einon <mark.einon@gmail.com>
5086 S:      Odd Fixes
5087 F:      drivers/net/ethernet/agere/
5088
5089 ETHERNET BRIDGE
5090 M:      Stephen Hemminger <stephen@networkplumber.org>
5091 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
5092 L:      netdev@vger.kernel.org
5093 W:      http://www.linuxfoundation.org/en/Net:Bridge
5094 S:      Maintained
5095 F:      include/linux/netfilter_bridge/
5096 F:      net/bridge/
5097
5098 ETHERNET PHY LIBRARY
5099 M:      Andrew Lunn <andrew@lunn.ch>
5100 M:      Florian Fainelli <f.fainelli@gmail.com>
5101 L:      netdev@vger.kernel.org
5102 S:      Maintained
5103 F:      include/linux/phy.h
5104 F:      include/linux/phy_fixed.h
5105 F:      drivers/net/phy/
5106 F:      Documentation/networking/phy.txt
5107 F:      drivers/of/of_mdio.c
5108 F:      drivers/of/of_net.c
5109
5110 EXT2 FILE SYSTEM
5111 M:      Jan Kara <jack@suse.com>
5112 L:      linux-ext4@vger.kernel.org
5113 S:      Maintained
5114 F:      Documentation/filesystems/ext2.txt
5115 F:      fs/ext2/
5116 F:      include/linux/ext2*
5117
5118 EXT4 FILE SYSTEM
5119 M:      "Theodore Ts'o" <tytso@mit.edu>
5120 M:      Andreas Dilger <adilger.kernel@dilger.ca>
5121 L:      linux-ext4@vger.kernel.org
5122 W:      http://ext4.wiki.kernel.org
5123 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5125 S:      Maintained
5126 F:      Documentation/filesystems/ext4.txt
5127 F:      fs/ext4/
5128
5129 Extended Verification Module (EVM)
5130 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5131 L:      linux-ima-devel@lists.sourceforge.net
5132 L:      linux-security-module@vger.kernel.org
5133 S:      Supported
5134 F:      security/integrity/evm/
5135
5136 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5137 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5138 M:      Chanwoo Choi <cw00.choi@samsung.com>
5139 L:      linux-kernel@vger.kernel.org
5140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5141 S:      Maintained
5142 F:      drivers/extcon/
5143 F:      include/linux/extcon/
5144 F:      include/linux/extcon.h
5145 F:      Documentation/extcon/
5146 F:      Documentation/devicetree/bindings/extcon/
5147
5148 EXYNOS DP DRIVER
5149 M:      Jingoo Han <jingoohan1@gmail.com>
5150 L:      dri-devel@lists.freedesktop.org
5151 S:      Maintained
5152 F:      drivers/gpu/drm/exynos/exynos_dp*
5153
5154 EXYNOS SYSMMU (IOMMU) driver
5155 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5156 L:      iommu@lists.linux-foundation.org
5157 S:      Maintained
5158 F:      drivers/iommu/exynos-iommu.c
5159
5160 EZchip NPS platform support
5161 M:      Noam Camus <noamc@ezchip.com>
5162 S:      Supported
5163 F:      arch/arc/plat-eznps
5164 F:      arch/arc/boot/dts/eznps.dts
5165
5166 F71805F HARDWARE MONITORING DRIVER
5167 M:      Jean Delvare <jdelvare@suse.com>
5168 L:      linux-hwmon@vger.kernel.org
5169 S:      Maintained
5170 F:      Documentation/hwmon/f71805f
5171 F:      drivers/hwmon/f71805f.c
5172
5173 FC0011 TUNER DRIVER
5174 M:      Michael Buesch <m@bues.ch>
5175 L:      linux-media@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/media/tuners/fc0011.h
5178 F:      drivers/media/tuners/fc0011.c
5179
5180 FC2580 MEDIA DRIVER
5181 M:      Antti Palosaari <crope@iki.fi>
5182 L:      linux-media@vger.kernel.org
5183 W:      https://linuxtv.org
5184 W:      http://palosaari.fi/linux/
5185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5186 T:      git git://linuxtv.org/anttip/media_tree.git
5187 S:      Maintained
5188 F:      drivers/media/tuners/fc2580*
5189
5190 FANOTIFY
5191 M:      Eric Paris <eparis@redhat.com>
5192 S:      Maintained
5193 F:      fs/notify/fanotify/
5194 F:      include/linux/fanotify.h
5195 F:      include/uapi/linux/fanotify.h
5196
5197 FARSYNC SYNCHRONOUS DRIVER
5198 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
5199 W:      http://www.farsite.co.uk/
5200 S:      Supported
5201 F:      drivers/net/wan/farsync.*
5202
5203 FAULT INJECTION SUPPORT
5204 M:      Akinobu Mita <akinobu.mita@gmail.com>
5205 S:      Supported
5206 F:      Documentation/fault-injection/
5207 F:      lib/fault-inject.c
5208
5209 FBTFT Framebuffer drivers
5210 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5211 S:      Maintained
5212 F:      drivers/staging/fbtft/
5213
5214 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5215 M:      Johannes Thumshirn <jth@kernel.org>
5216 L:      fcoe-devel@open-fcoe.org
5217 W:      www.Open-FCoE.org
5218 S:      Supported
5219 F:      drivers/scsi/libfc/
5220 F:      drivers/scsi/fcoe/
5221 F:      include/scsi/fc/
5222 F:      include/scsi/libfc.h
5223 F:      include/scsi/libfcoe.h
5224 F:      include/uapi/scsi/fc/
5225
5226 FILE LOCKING (flock() and fcntl()/lockf())
5227 M:      Jeff Layton <jlayton@poochiereds.net>
5228 M:      "J. Bruce Fields" <bfields@fieldses.org>
5229 L:      linux-fsdevel@vger.kernel.org
5230 S:      Maintained
5231 F:      include/linux/fcntl.h
5232 F:      include/linux/fs.h
5233 F:      include/uapi/linux/fcntl.h
5234 F:      include/uapi/linux/fs.h
5235 F:      fs/fcntl.c
5236 F:      fs/locks.c
5237
5238 FILESYSTEMS (VFS and infrastructure)
5239 M:      Alexander Viro <viro@zeniv.linux.org.uk>
5240 L:      linux-fsdevel@vger.kernel.org
5241 S:      Maintained
5242 F:      fs/*
5243
5244 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5245 M:      Riku Voipio <riku.voipio@iki.fi>
5246 L:      linux-hwmon@vger.kernel.org
5247 S:      Maintained
5248 F:      drivers/hwmon/f75375s.c
5249 F:      include/linux/f75375s.h
5250
5251 FIREWIRE AUDIO DRIVERS
5252 M:      Clemens Ladisch <clemens@ladisch.de>
5253 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5254 T:      git git://git.alsa-project.org/alsa-kernel.git
5255 S:      Maintained
5256 F:      sound/firewire/
5257
5258 FIREWIRE MEDIA DRIVERS (firedtv)
5259 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5260 L:      linux-media@vger.kernel.org
5261 L:      linux1394-devel@lists.sourceforge.net
5262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5263 S:      Maintained
5264 F:      drivers/media/firewire/
5265
5266 FIREWIRE SBP-2 TARGET
5267 M:      Chris Boot <bootc@bootc.net>
5268 L:      linux-scsi@vger.kernel.org
5269 L:      target-devel@vger.kernel.org
5270 L:      linux1394-devel@lists.sourceforge.net
5271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5272 S:      Maintained
5273 F:      drivers/target/sbp/
5274
5275 FIREWIRE SUBSYSTEM
5276 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
5277 L:      linux1394-devel@lists.sourceforge.net
5278 W:      http://ieee1394.wiki.kernel.org/
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5280 S:      Maintained
5281 F:      drivers/firewire/
5282 F:      include/linux/firewire.h
5283 F:      include/uapi/linux/firewire*.h
5284 F:      tools/firewire/
5285
5286 FIRMWARE LOADER (request_firmware)
5287 M:      Luis R. Rodriguez <mcgrof@kernel.org>
5288 L:      linux-kernel@vger.kernel.org
5289 S:      Maintained
5290 F:      Documentation/firmware_class/
5291 F:      drivers/base/firmware*.c
5292 F:      include/linux/firmware.h
5293
5294 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5295 M:      Joshua Morris <josh.h.morris@us.ibm.com>
5296 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5297 S:      Maintained
5298 F:      drivers/block/rsxx/
5299
5300 FLOPPY DRIVER
5301 M:      Jiri Kosina <jikos@kernel.org>
5302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5303 S:      Odd fixes
5304 F:      drivers/block/floppy.c
5305
5306 FMC SUBSYSTEM
5307 M:      Alessandro Rubini <rubini@gnudd.com>
5308 W:      http://www.ohwr.org/projects/fmc-bus
5309 S:      Supported
5310 F:      drivers/fmc/
5311 F:      include/linux/fmc*.h
5312 F:      include/linux/ipmi-fru.h
5313 K:      fmc_d.*register
5314
5315 FPGA MANAGER FRAMEWORK
5316 M:      Alan Tull <atull@kernel.org>
5317 R:      Moritz Fischer <moritz.fischer@ettus.com>
5318 L:      linux-fpga@vger.kernel.org
5319 S:      Maintained
5320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5321 F:      Documentation/fpga/
5322 F:      Documentation/devicetree/bindings/fpga/
5323 F:      drivers/fpga/
5324 F:      include/linux/fpga/
5325 W:      http://www.rocketboards.org
5326
5327 FPU EMULATOR
5328 M:      Bill Metzenthen <billm@melbpc.org.au>
5329 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5330 S:      Maintained
5331 F:      arch/x86/math-emu/
5332
5333 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5334 L:      netdev@vger.kernel.org
5335 S:      Orphan
5336 F:      drivers/net/wan/dlci.c
5337 F:      drivers/net/wan/sdla.c
5338
5339 FRAMEBUFFER LAYER
5340 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5341 L:      linux-fbdev@vger.kernel.org
5342 T:      git git://github.com/bzolnier/linux.git
5343 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5344 S:      Maintained
5345 F:      Documentation/fb/
5346 F:      drivers/video/
5347 F:      include/video/
5348 F:      include/linux/fb.h
5349 F:      include/uapi/video/
5350 F:      include/uapi/linux/fb.h
5351
5352 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5353 M:      Horia Geantă <horia.geanta@nxp.com>
5354 M:      Dan Douglass <dan.douglass@nxp.com>
5355 L:      linux-crypto@vger.kernel.org
5356 S:      Maintained
5357 F:      drivers/crypto/caam/
5358 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5359
5360 FREESCALE DIU FRAMEBUFFER DRIVER
5361 M:      Timur Tabi <timur@tabi.org>
5362 L:      linux-fbdev@vger.kernel.org
5363 S:      Maintained
5364 F:      drivers/video/fbdev/fsl-diu-fb.*
5365
5366 FREESCALE DMA DRIVER
5367 M:      Li Yang <leoyang.li@nxp.com>
5368 M:      Zhang Wei <zw@zh-kernel.org>
5369 L:      linuxppc-dev@lists.ozlabs.org
5370 S:      Maintained
5371 F:      drivers/dma/fsldma.*
5372
5373 FREESCALE GPMI NAND DRIVER
5374 M:      Han Xu <han.xu@nxp.com>
5375 L:      linux-mtd@lists.infradead.org
5376 S:      Maintained
5377 F:      drivers/mtd/nand/gpmi-nand/*
5378
5379 FREESCALE I2C CPM DRIVER
5380 M:      Jochen Friedrich <jochen@scram.de>
5381 L:      linuxppc-dev@lists.ozlabs.org
5382 L:      linux-i2c@vger.kernel.org
5383 S:      Maintained
5384 F:      drivers/i2c/busses/i2c-cpm.c
5385
5386 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5387 M:      Sascha Hauer <kernel@pengutronix.de>
5388 L:      linux-fbdev@vger.kernel.org
5389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5390 S:      Maintained
5391 F:      include/linux/platform_data/video-imxfb.h
5392 F:      drivers/video/fbdev/imxfb.c
5393
5394 FREESCALE QUAD SPI DRIVER
5395 M:      Han Xu <han.xu@nxp.com>
5396 L:      linux-mtd@lists.infradead.org
5397 S:      Maintained
5398 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5399
5400 FREESCALE SOC FS_ENET DRIVER
5401 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5402 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5403 L:      linuxppc-dev@lists.ozlabs.org
5404 L:      netdev@vger.kernel.org
5405 S:      Maintained
5406 F:      drivers/net/ethernet/freescale/fs_enet/
5407 F:      include/linux/fs_enet_pd.h
5408
5409 FREESCALE IMX / MXC FEC DRIVER
5410 M:      Fugang Duan <fugang.duan@nxp.com>
5411 L:      netdev@vger.kernel.org
5412 S:      Maintained
5413 F:      drivers/net/ethernet/freescale/fec_main.c
5414 F:      drivers/net/ethernet/freescale/fec_ptp.c
5415 F:      drivers/net/ethernet/freescale/fec.h
5416 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5417
5418 FREESCALE QORIQ DPAA FMAN DRIVER
5419 M:      Madalin Bucur <madalin.bucur@nxp.com>
5420 L:      netdev@vger.kernel.org
5421 S:      Maintained
5422 F:      drivers/net/ethernet/freescale/fman
5423 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5424
5425 FREESCALE QORIQ DPAA ETHERNET DRIVER
5426 M:      Madalin Bucur <madalin.bucur@nxp.com>
5427 L:      netdev@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/net/ethernet/freescale/dpaa
5430
5431 FREESCALE SOC DRIVERS
5432 M:      Li Yang <leoyang.li@nxp.com>
5433 L:      linuxppc-dev@lists.ozlabs.org
5434 L:      linux-arm-kernel@lists.infradead.org
5435 S:      Maintained
5436 F:      Documentation/devicetree/bindings/soc/fsl/
5437 F:      drivers/soc/fsl/
5438 F:      include/linux/fsl/
5439
5440 FREESCALE QUICC ENGINE LIBRARY
5441 M:      Qiang Zhao <qiang.zhao@nxp.com>
5442 L:      linuxppc-dev@lists.ozlabs.org
5443 S:      Maintained
5444 F:      drivers/soc/fsl/qe/
5445 F:      include/soc/fsl/*qe*.h
5446 F:      include/soc/fsl/*ucc*.h
5447
5448 FREESCALE USB PERIPHERAL DRIVERS
5449 M:      Li Yang <leoyang.li@nxp.com>
5450 L:      linux-usb@vger.kernel.org
5451 L:      linuxppc-dev@lists.ozlabs.org
5452 S:      Maintained
5453 F:      drivers/usb/gadget/udc/fsl*
5454
5455 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5456 M:      Li Yang <leoyang.li@nxp.com>
5457 L:      netdev@vger.kernel.org
5458 L:      linuxppc-dev@lists.ozlabs.org
5459 S:      Maintained
5460 F:      drivers/net/ethernet/freescale/ucc_geth*
5461
5462 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5463 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5464 L:      netdev@vger.kernel.org
5465 S:      Maintained
5466 F:      drivers/net/ethernet/freescale/gianfar*
5467 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5468 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5469
5470 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5471 M:      Zhao Qiang <qiang.zhao@nxp.com>
5472 L:      netdev@vger.kernel.org
5473 L:      linuxppc-dev@lists.ozlabs.org
5474 S:      Maintained
5475 F:      drivers/net/wan/fsl_ucc_hdlc*
5476
5477 FREESCALE QUICC ENGINE UCC UART DRIVER
5478 M:      Timur Tabi <timur@tabi.org>
5479 L:      linuxppc-dev@lists.ozlabs.org
5480 S:      Maintained
5481 F:      drivers/tty/serial/ucc_uart.c
5482
5483 FREESCALE SOC SOUND DRIVERS
5484 M:      Timur Tabi <timur@tabi.org>
5485 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5486 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5487 R:      Fabio Estevam <fabio.estevam@nxp.com>
5488 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5489 L:      linuxppc-dev@lists.ozlabs.org
5490 S:      Maintained
5491 F:      sound/soc/fsl/fsl*
5492 F:      sound/soc/fsl/imx*
5493 F:      sound/soc/fsl/mpc8610_hpcd.c
5494
5495 FREEVXFS FILESYSTEM
5496 M:      Christoph Hellwig <hch@infradead.org>
5497 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5498 S:      Maintained
5499 F:      fs/freevxfs/
5500
5501 FREEZER
5502 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5503 M:      Pavel Machek <pavel@ucw.cz>
5504 L:      linux-pm@vger.kernel.org
5505 S:      Supported
5506 F:      Documentation/power/freezing-of-tasks.txt
5507 F:      include/linux/freezer.h
5508 F:      kernel/freezer.c
5509
5510 FRONTSWAP API
5511 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5512 L:      linux-kernel@vger.kernel.org
5513 S:      Maintained
5514 F:      mm/frontswap.c
5515 F:      include/linux/frontswap.h
5516
5517 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5518 M:      David Howells <dhowells@redhat.com>
5519 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5520 S:      Supported
5521 F:      Documentation/filesystems/caching/
5522 F:      fs/fscache/
5523 F:      include/linux/fscache*.h
5524
5525 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5526 M:      Theodore Y. Ts'o <tytso@mit.edu>
5527 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5528 L:      linux-fscrypt@vger.kernel.org
5529 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5531 S:      Supported
5532 F:      fs/crypto/
5533 F:      include/linux/fscrypt*.h
5534
5535 F2FS FILE SYSTEM
5536 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5537 M:      Chao Yu <yuchao0@huawei.com>
5538 L:      linux-f2fs-devel@lists.sourceforge.net
5539 W:      https://f2fs.wiki.kernel.org/
5540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5541 S:      Maintained
5542 F:      Documentation/filesystems/f2fs.txt
5543 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5544 F:      fs/f2fs/
5545 F:      include/linux/f2fs_fs.h
5546 F:      include/trace/events/f2fs.h
5547
5548 FUJITSU FR-V (FRV) PORT
5549 S:      Orphan
5550 F:      arch/frv/
5551
5552 FUJITSU LAPTOP EXTRAS
5553 M:      Jonathan Woithe <jwoithe@just42.net>
5554 L:      platform-driver-x86@vger.kernel.org
5555 S:      Maintained
5556 F:      drivers/platform/x86/fujitsu-laptop.c
5557
5558 FUJITSU M-5MO LS CAMERA ISP DRIVER
5559 M:      Kyungmin Park <kyungmin.park@samsung.com>
5560 M:      Heungjun Kim <riverful.kim@samsung.com>
5561 L:      linux-media@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/media/i2c/m5mols/
5564 F:      include/media/i2c/m5mols.h
5565
5566 FUJITSU TABLET EXTRAS
5567 M:      Robert Gerlach <khnz@gmx.de>
5568 L:      platform-driver-x86@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/platform/x86/fujitsu-tablet.c
5571
5572 FUSE: FILESYSTEM IN USERSPACE
5573 M:      Miklos Szeredi <miklos@szeredi.hu>
5574 L:      linux-fsdevel@vger.kernel.org
5575 W:      http://fuse.sourceforge.net/
5576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5577 S:      Maintained
5578 F:      fs/fuse/
5579 F:      include/uapi/linux/fuse.h
5580 F:      Documentation/filesystems/fuse.txt
5581
5582 FUTEX SUBSYSTEM
5583 M:      Thomas Gleixner <tglx@linutronix.de>
5584 M:      Ingo Molnar <mingo@redhat.com>
5585 R:      Peter Zijlstra <peterz@infradead.org>
5586 R:      Darren Hart <dvhart@infradead.org>
5587 L:      linux-kernel@vger.kernel.org
5588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5589 S:      Maintained
5590 F:      kernel/futex.c
5591 F:      kernel/futex_compat.c
5592 F:      include/asm-generic/futex.h
5593 F:      include/linux/futex.h
5594 F:      include/uapi/linux/futex.h
5595 F:      tools/testing/selftests/futex/
5596 F:      tools/perf/bench/futex*
5597 F:      Documentation/*futex*
5598
5599 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5600 M:      Rik Faith <faith@cs.unc.edu>
5601 L:      linux-scsi@vger.kernel.org
5602 S:      Odd Fixes (e.g., new signatures)
5603 F:      drivers/scsi/fdomain.*
5604
5605 GCC PLUGINS
5606 M:      Kees Cook <keescook@chromium.org>
5607 R:      Emese Revfy <re.emese@gmail.com>
5608 L:      kernel-hardening@lists.openwall.com
5609 S:      Maintained
5610 F:      scripts/gcc-plugins/
5611 F:      scripts/gcc-plugin.sh
5612 F:      scripts/Makefile.gcc-plugins
5613 F:      Documentation/gcc-plugins.txt
5614
5615 GCOV BASED KERNEL PROFILING
5616 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5617 S:      Maintained
5618 F:      kernel/gcov/
5619 F:      Documentation/dev-tools/gcov.rst
5620
5621 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5622 M:      Achim Leubner <achim_leubner@adaptec.com>
5623 L:      linux-scsi@vger.kernel.org
5624 W:      http://www.icp-vortex.com/
5625 S:      Supported
5626 F:      drivers/scsi/gdt*
5627
5628 GDB KERNEL DEBUGGING HELPER SCRIPTS
5629 M:      Jan Kiszka <jan.kiszka@siemens.com>
5630 M:      Kieran Bingham <kieran@bingham.xyz>
5631 S:      Supported
5632 F:      scripts/gdb/
5633
5634 GEMTEK FM RADIO RECEIVER DRIVER
5635 M:      Hans Verkuil <hverkuil@xs4all.nl>
5636 L:      linux-media@vger.kernel.org
5637 T:      git git://linuxtv.org/media_tree.git
5638 W:      https://linuxtv.org
5639 S:      Maintained
5640 F:      drivers/media/radio/radio-gemtek*
5641
5642 GENERIC GPIO I2C DRIVER
5643 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5644 S:      Supported
5645 F:      drivers/i2c/busses/i2c-gpio.c
5646 F:      include/linux/i2c-gpio.h
5647
5648 GENERIC GPIO I2C MULTIPLEXER DRIVER
5649 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5650 L:      linux-i2c@vger.kernel.org
5651 S:      Supported
5652 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5653 F:      include/linux/i2c-mux-gpio.h
5654 F:      Documentation/i2c/muxes/i2c-mux-gpio
5655
5656 GENERIC HDLC (WAN) DRIVERS
5657 M:      Krzysztof Halasa <khc@pm.waw.pl>
5658 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5659 S:      Maintained
5660 F:      drivers/net/wan/c101.c
5661 F:      drivers/net/wan/hd6457*
5662 F:      drivers/net/wan/hdlc*
5663 F:      drivers/net/wan/n2.c
5664 F:      drivers/net/wan/pc300too.c
5665 F:      drivers/net/wan/pci200syn.c
5666 F:      drivers/net/wan/wanxl*
5667
5668 GENERIC INCLUDE/ASM HEADER FILES
5669 M:      Arnd Bergmann <arnd@arndb.de>
5670 L:      linux-arch@vger.kernel.org
5671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5672 S:      Maintained
5673 F:      include/asm-generic/
5674 F:      include/uapi/asm-generic/
5675
5676 GENERIC PHY FRAMEWORK
5677 M:      Kishon Vijay Abraham I <kishon@ti.com>
5678 L:      linux-kernel@vger.kernel.org
5679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5680 S:      Supported
5681 F:      drivers/phy/
5682 F:      include/linux/phy/
5683
5684 GENERIC PM DOMAINS
5685 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5686 M:      Kevin Hilman <khilman@kernel.org>
5687 M:      Ulf Hansson <ulf.hansson@linaro.org>
5688 L:      linux-pm@vger.kernel.org
5689 S:      Supported
5690 F:      drivers/base/power/domain*.c
5691 F:      include/linux/pm_domain.h
5692 F:      Documentation/devicetree/bindings/power/power_domain.txt
5693
5694 GENERIC UIO DRIVER FOR PCI DEVICES
5695 M:      "Michael S. Tsirkin" <mst@redhat.com>
5696 L:      kvm@vger.kernel.org
5697 S:      Supported
5698 F:      drivers/uio/uio_pci_generic.c
5699
5700 GET_MAINTAINER SCRIPT
5701 M:      Joe Perches <joe@perches.com>
5702 S:      Maintained
5703 F:      scripts/get_maintainer.pl
5704
5705 GENWQE (IBM Generic Workqueue Card)
5706 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5707 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5708 S:      Supported
5709 F:      drivers/misc/genwqe/
5710
5711 GFS2 FILE SYSTEM
5712 M:      Steven Whitehouse <swhiteho@redhat.com>
5713 M:      Bob Peterson <rpeterso@redhat.com>
5714 L:      cluster-devel@redhat.com
5715 W:      http://sources.redhat.com/cluster/
5716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5717 S:      Supported
5718 F:      Documentation/filesystems/gfs2*.txt
5719 F:      fs/gfs2/
5720 F:      include/uapi/linux/gfs2_ondisk.h
5721
5722 GIGASET ISDN DRIVERS
5723 M:      Paul Bolle <pebolle@tiscali.nl>
5724 L:      gigaset307x-common@lists.sourceforge.net
5725 W:      http://gigaset307x.sourceforge.net/
5726 S:      Odd Fixes
5727 F:      Documentation/isdn/README.gigaset
5728 F:      drivers/isdn/gigaset/
5729 F:      include/uapi/linux/gigaset_dev.h
5730
5731 GO7007 MPEG CODEC
5732 M:      Hans Verkuil <hans.verkuil@cisco.com>
5733 L:      linux-media@vger.kernel.org
5734 S:      Maintained
5735 F:      drivers/media/usb/go7007/
5736
5737 GOODIX TOUCHSCREEN
5738 M:      Bastien Nocera <hadess@hadess.net>
5739 L:      linux-input@vger.kernel.org
5740 S:      Maintained
5741 F:      drivers/input/touchscreen/goodix.c
5742
5743 GPIO MOCKUP DRIVER
5744 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5745 L:      linux-gpio@vger.kernel.org
5746 S:      Maintained
5747 F:      drivers/gpio/gpio-mockup.c
5748 F:      tools/testing/selftests/gpio/
5749
5750 GPIO SUBSYSTEM
5751 M:      Linus Walleij <linus.walleij@linaro.org>
5752 L:      linux-gpio@vger.kernel.org
5753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5754 S:      Maintained
5755 F:      Documentation/devicetree/bindings/gpio/
5756 F:      Documentation/gpio/
5757 F:      Documentation/ABI/testing/gpio-cdev
5758 F:      Documentation/ABI/obsolete/sysfs-gpio
5759 F:      drivers/gpio/
5760 F:      include/linux/gpio/
5761 F:      include/linux/gpio.h
5762 F:      include/asm-generic/gpio.h
5763 F:      include/uapi/linux/gpio.h
5764 F:      tools/gpio/
5765
5766 GPIO ACPI SUPPORT
5767 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5768 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5769 L:      linux-gpio@vger.kernel.org
5770 L:      linux-acpi@vger.kernel.org
5771 S:      Maintained
5772 F:      Documentation/acpi/gpio-properties.txt
5773 F:      drivers/gpio/gpiolib-acpi.c
5774
5775 GRE DEMULTIPLEXER DRIVER
5776 M:      Dmitry Kozlov <xeb@mail.ru>
5777 L:      netdev@vger.kernel.org
5778 S:      Maintained
5779 F:      net/ipv4/gre_demux.c
5780 F:      net/ipv4/gre_offload.c
5781 F:      include/net/gre.h
5782
5783 GRETH 10/100/1G Ethernet MAC device driver
5784 M:      Andreas Larsson <andreas@gaisler.com>
5785 L:      netdev@vger.kernel.org
5786 S:      Maintained
5787 F:      drivers/net/ethernet/aeroflex/
5788
5789 GREYBUS SUBSYSTEM
5790 M:      Johan Hovold <johan@kernel.org>
5791 M:      Alex Elder <elder@kernel.org>
5792 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5793 S:      Maintained
5794 F:      drivers/staging/greybus/
5795 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
5796
5797 GREYBUS AUDIO PROTOCOLS DRIVERS
5798 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
5799 M:      Mark Greer <mgreer@animalcreek.com>
5800 S:      Maintained
5801 F:      drivers/staging/greybus/audio_apbridgea.c
5802 F:      drivers/staging/greybus/audio_apbridgea.h
5803 F:      drivers/staging/greybus/audio_codec.c
5804 F:      drivers/staging/greybus/audio_codec.h
5805 F:      drivers/staging/greybus/audio_gb.c
5806 F:      drivers/staging/greybus/audio_manager.c
5807 F:      drivers/staging/greybus/audio_manager.h
5808 F:      drivers/staging/greybus/audio_manager_module.c
5809 F:      drivers/staging/greybus/audio_manager_private.h
5810 F:      drivers/staging/greybus/audio_manager_sysfs.c
5811 F:      drivers/staging/greybus/audio_module.c
5812 F:      drivers/staging/greybus/audio_topology.c
5813
5814 GREYBUS PROTOCOLS DRIVERS
5815 M:      Rui Miguel Silva <rmfrfs@gmail.com>
5816 S:      Maintained
5817 F:      drivers/staging/greybus/sdio.c
5818 F:      drivers/staging/greybus/light.c
5819 F:      drivers/staging/greybus/gpio.c
5820 F:      drivers/staging/greybus/power_supply.c
5821 F:      drivers/staging/greybus/spi.c
5822 F:      drivers/staging/greybus/spilib.c
5823
5824 GREYBUS PROTOCOLS DRIVERS
5825 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
5826 S:      Maintained
5827 F:      drivers/staging/greybus/loopback.c
5828 F:      drivers/staging/greybus/timesync.c
5829 F:      drivers/staging/greybus/timesync_platform.c
5830
5831 GREYBUS PROTOCOLS DRIVERS
5832 M:      Viresh Kumar <vireshk@kernel.org>
5833 S:      Maintained
5834 F:      drivers/staging/greybus/authentication.c
5835 F:      drivers/staging/greybus/bootrom.c
5836 F:      drivers/staging/greybus/firmware.h
5837 F:      drivers/staging/greybus/fw-core.c
5838 F:      drivers/staging/greybus/fw-download.c
5839 F:      drivers/staging/greybus/fw-managament.c
5840 F:      drivers/staging/greybus/greybus_authentication.h
5841 F:      drivers/staging/greybus/greybus_firmware.h
5842 F:      drivers/staging/greybus/hid.c
5843 F:      drivers/staging/greybus/i2c.c
5844 F:      drivers/staging/greybus/spi.c
5845 F:      drivers/staging/greybus/spilib.c
5846 F:      drivers/staging/greybus/spilib.h
5847
5848 GREYBUS PROTOCOLS DRIVERS
5849 M:      David Lin <dtwlin@gmail.com>
5850 S:      Maintained
5851 F:      drivers/staging/greybus/uart.c
5852 F:      drivers/staging/greybus/log.c
5853
5854 GREYBUS PLATFORM DRIVERS
5855 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5856 S:      Maintained
5857 F:      drivers/staging/greybus/arche-platform.c
5858 F:      drivers/staging/greybus/arche-apb-ctrl.c
5859 F:      drivers/staging/greybus/arche_platform.h
5860
5861 GS1662 VIDEO SERIALIZER
5862 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5863 L:      linux-media@vger.kernel.org
5864 T:      git git://linuxtv.org/media_tree.git
5865 S:      Maintained
5866 F:      drivers/media/spi/gs1662.c
5867
5868 GSPCA FINEPIX SUBDRIVER
5869 M:      Frank Zago <frank@zago.net>
5870 L:      linux-media@vger.kernel.org
5871 T:      git git://linuxtv.org/media_tree.git
5872 S:      Maintained
5873 F:      drivers/media/usb/gspca/finepix.c
5874
5875 GSPCA GL860 SUBDRIVER
5876 M:      Olivier Lorin <o.lorin@laposte.net>
5877 L:      linux-media@vger.kernel.org
5878 T:      git git://linuxtv.org/media_tree.git
5879 S:      Maintained
5880 F:      drivers/media/usb/gspca/gl860/
5881
5882 GSPCA M5602 SUBDRIVER
5883 M:      Erik Andren <erik.andren@gmail.com>
5884 L:      linux-media@vger.kernel.org
5885 T:      git git://linuxtv.org/media_tree.git
5886 S:      Maintained
5887 F:      drivers/media/usb/gspca/m5602/
5888
5889 GSPCA PAC207 SONIXB SUBDRIVER
5890 M:      Hans Verkuil <hverkuil@xs4all.nl>
5891 L:      linux-media@vger.kernel.org
5892 T:      git git://linuxtv.org/media_tree.git
5893 S:      Odd Fixes
5894 F:      drivers/media/usb/gspca/pac207.c
5895
5896 GSPCA SN9C20X SUBDRIVER
5897 M:      Brian Johnson <brijohn@gmail.com>
5898 L:      linux-media@vger.kernel.org
5899 T:      git git://linuxtv.org/media_tree.git
5900 S:      Maintained
5901 F:      drivers/media/usb/gspca/sn9c20x.c
5902
5903 GSPCA T613 SUBDRIVER
5904 M:      Leandro Costantino <lcostantino@gmail.com>
5905 L:      linux-media@vger.kernel.org
5906 T:      git git://linuxtv.org/media_tree.git
5907 S:      Maintained
5908 F:      drivers/media/usb/gspca/t613.c
5909
5910 GSPCA USB WEBCAM DRIVER
5911 M:      Hans Verkuil <hverkuil@xs4all.nl>
5912 L:      linux-media@vger.kernel.org
5913 T:      git git://linuxtv.org/media_tree.git
5914 S:      Odd Fixes
5915 F:      drivers/media/usb/gspca/
5916
5917 GTP (GPRS Tunneling Protocol)
5918 M:      Pablo Neira Ayuso <pablo@netfilter.org>
5919 M:      Harald Welte <laforge@gnumonks.org>
5920 L:      osmocom-net-gprs@lists.osmocom.org
5921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
5922 S:      Maintained
5923 F:      drivers/net/gtp.c
5924
5925 GUID PARTITION TABLE (GPT)
5926 M:      Davidlohr Bueso <dave@stgolabs.net>
5927 L:      linux-efi@vger.kernel.org
5928 S:      Maintained
5929 F:      block/partitions/efi.*
5930
5931 STK1160 USB VIDEO CAPTURE DRIVER
5932 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5933 L:      linux-media@vger.kernel.org
5934 T:      git git://linuxtv.org/media_tree.git
5935 S:      Maintained
5936 F:      drivers/media/usb/stk1160/
5937
5938 H8/300 ARCHITECTURE
5939 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5940 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5941 W:      http://uclinux-h8.sourceforge.jp
5942 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5943 S:      Maintained
5944 F:      arch/h8300/
5945 F:      drivers/clocksource/h8300_*.c
5946 F:      drivers/clk/h8300/
5947 F:      drivers/irqchip/irq-renesas-h8*.c
5948
5949 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5950 M:      Frank Seidel <frank@f-seidel.de>
5951 L:      platform-driver-x86@vger.kernel.org
5952 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5953 S:      Maintained
5954 F:      drivers/platform/x86/hdaps.c
5955
5956 HDPVR USB VIDEO ENCODER DRIVER
5957 M:      Hans Verkuil <hverkuil@xs4all.nl>
5958 L:      linux-media@vger.kernel.org
5959 T:      git git://linuxtv.org/media_tree.git
5960 W:      https://linuxtv.org
5961 S:      Odd Fixes
5962 F:      drivers/media/usb/hdpvr/
5963
5964 HWPOISON MEMORY FAILURE HANDLING
5965 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5966 L:      linux-mm@kvack.org
5967 S:      Maintained
5968 F:      mm/memory-failure.c
5969 F:      mm/hwpoison-inject.c
5970
5971 HYPERVISOR VIRTUAL CONSOLE DRIVER
5972 L:      linuxppc-dev@lists.ozlabs.org
5973 S:      Odd Fixes
5974 F:      drivers/tty/hvc/
5975
5976 HACKRF MEDIA DRIVER
5977 M:      Antti Palosaari <crope@iki.fi>
5978 L:      linux-media@vger.kernel.org
5979 W:      https://linuxtv.org
5980 W:      http://palosaari.fi/linux/
5981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5982 T:      git git://linuxtv.org/anttip/media_tree.git
5983 S:      Maintained
5984 F:      drivers/media/usb/hackrf/
5985
5986 HARDWARE MONITORING
5987 M:      Jean Delvare <jdelvare@suse.com>
5988 M:      Guenter Roeck <linux@roeck-us.net>
5989 L:      linux-hwmon@vger.kernel.org
5990 W:      http://hwmon.wiki.kernel.org/
5991 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5993 S:      Maintained
5994 F:      Documentation/hwmon/
5995 F:      drivers/hwmon/
5996 F:      include/linux/hwmon*.h
5997
5998 HARDWARE RANDOM NUMBER GENERATOR CORE
5999 M:      Matt Mackall <mpm@selenic.com>
6000 M:      Herbert Xu <herbert@gondor.apana.org.au>
6001 L:      linux-crypto@vger.kernel.org
6002 S:      Odd fixes
6003 F:      Documentation/devicetree/bindings/rng/
6004 F:      Documentation/hw_random.txt
6005 F:      drivers/char/hw_random/
6006 F:      include/linux/hw_random.h
6007
6008 HARDWARE SPINLOCK CORE
6009 M:      Ohad Ben-Cohen <ohad@wizery.com>
6010 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
6011 L:      linux-remoteproc@vger.kernel.org
6012 S:      Maintained
6013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6014 F:      Documentation/devicetree/bindings/hwlock/
6015 F:      Documentation/hwspinlock.txt
6016 F:      drivers/hwspinlock/
6017 F:      include/linux/hwspinlock.h
6018
6019 HARMONY SOUND DRIVER
6020 L:      linux-parisc@vger.kernel.org
6021 S:      Maintained
6022 F:      sound/parisc/harmony.*
6023
6024 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6025 M:      Jimmy Vance <jimmy.vance@hpe.com>
6026 S:      Supported
6027 F:      Documentation/watchdog/hpwdt.txt
6028 F:      drivers/watchdog/hpwdt.c
6029
6030 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6031 M:      Don Brace <don.brace@microsemi.com>
6032 L:      esc.storagedev@microsemi.com
6033 L:      linux-scsi@vger.kernel.org
6034 S:      Supported
6035 F:      Documentation/scsi/hpsa.txt
6036 F:      drivers/scsi/hpsa*.[ch]
6037 F:      include/linux/cciss*.h
6038 F:      include/uapi/linux/cciss*.h
6039
6040 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
6041 M:      Don Brace <don.brace@microsemi.com>
6042 L:      esc.storagedev@microsemi.com
6043 L:      linux-scsi@vger.kernel.org
6044 S:      Supported
6045 F:      Documentation/blockdev/cciss.txt
6046 F:      drivers/block/cciss*
6047 F:      include/linux/cciss_ioctl.h
6048 F:      include/uapi/linux/cciss_ioctl.h
6049
6050 OPA-VNIC DRIVER
6051 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6052 M:      Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
6053 L:      linux-rdma@vger.kernel.org
6054 S:      Supported
6055 F:      drivers/infiniband/ulp/opa_vnic
6056
6057 HFI1 DRIVER
6058 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
6059 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
6060 L:      linux-rdma@vger.kernel.org
6061 S:      Supported
6062 F:      drivers/infiniband/hw/hfi1
6063
6064 HFS FILESYSTEM
6065 L:      linux-fsdevel@vger.kernel.org
6066 S:      Orphan
6067 F:      Documentation/filesystems/hfs.txt
6068 F:      fs/hfs/
6069
6070 HFSPLUS FILESYSTEM
6071 L:      linux-fsdevel@vger.kernel.org
6072 S:      Orphan
6073 F:      Documentation/filesystems/hfsplus.txt
6074 F:      fs/hfsplus/
6075
6076 HGA FRAMEBUFFER DRIVER
6077 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6078 L:      linux-nvidia@lists.surfsouth.com
6079 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6080 S:      Maintained
6081 F:      drivers/video/fbdev/hgafb.c
6082
6083 HIBERNATION (aka Software Suspend, aka swsusp)
6084 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
6085 M:      Pavel Machek <pavel@ucw.cz>
6086 L:      linux-pm@vger.kernel.org
6087 B:      https://bugzilla.kernel.org
6088 S:      Supported
6089 F:      arch/x86/power/
6090 F:      drivers/base/power/
6091 F:      kernel/power/
6092 F:      include/linux/suspend.h
6093 F:      include/linux/freezer.h
6094 F:      include/linux/pm.h
6095 F:      arch/*/include/asm/suspend*.h
6096
6097 HID CORE LAYER
6098 M:      Jiri Kosina <jikos@kernel.org>
6099 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
6100 L:      linux-input@vger.kernel.org
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6102 S:      Maintained
6103 F:      drivers/hid/
6104 F:      include/linux/hid*
6105 F:      include/uapi/linux/hid*
6106
6107 HID SENSOR HUB DRIVERS
6108 M:      Jiri Kosina <jikos@kernel.org>
6109 M:      Jonathan Cameron <jic23@kernel.org>
6110 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6111 L:      linux-input@vger.kernel.org
6112 L:      linux-iio@vger.kernel.org
6113 S:      Maintained
6114 F:      Documentation/hid/hid-sensor*
6115 F:      drivers/hid/hid-sensor-*
6116 F:      drivers/iio/*/hid-*
6117 F:      include/linux/hid-sensor-*
6118
6119 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6120 M:      Thomas Gleixner <tglx@linutronix.de>
6121 L:      linux-kernel@vger.kernel.org
6122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6123 S:      Maintained
6124 F:      Documentation/timers/
6125 F:      kernel/time/hrtimer.c
6126 F:      kernel/time/clockevents.c
6127 F:      kernel/time/timer_*.c
6128 F:      include/linux/clockchips.h
6129 F:      include/linux/hrtimer.h
6130
6131 HIGH-SPEED SCC DRIVER FOR AX.25
6132 L:      linux-hams@vger.kernel.org
6133 S:      Orphan
6134 F:      drivers/net/hamradio/dmascc.c
6135 F:      drivers/net/hamradio/scc.c
6136
6137 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6138 M:      HighPoint Linux Team <linux@highpoint-tech.com>
6139 W:      http://www.highpoint-tech.com
6140 S:      Supported
6141 F:      Documentation/scsi/hptiop.txt
6142 F:      drivers/scsi/hptiop.c
6143
6144 HIPPI
6145 M:      Jes Sorensen <jes@trained-monkey.org>
6146 L:      linux-hippi@sunsite.dk
6147 S:      Maintained
6148 F:      include/linux/hippidevice.h
6149 F:      include/uapi/linux/if_hippi.h
6150 F:      net/802/hippi.c
6151 F:      drivers/net/hippi/
6152
6153 HISILICON NETWORK SUBSYSTEM DRIVER
6154 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
6155 M:      Salil Mehta <salil.mehta@huawei.com>
6156 L:      netdev@vger.kernel.org
6157 W:      http://www.hisilicon.com
6158 S:      Maintained
6159 F:      drivers/net/ethernet/hisilicon/
6160 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6161
6162 HISILICON ROCE DRIVER
6163 M:      Lijun Ou <oulijun@huawei.com>
6164 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
6165 L:      linux-rdma@vger.kernel.org
6166 S:      Maintained
6167 F:      drivers/infiniband/hw/hns/
6168 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6169
6170 HISILICON SAS Controller
6171 M:      John Garry <john.garry@huawei.com>
6172 W:      http://www.hisilicon.com
6173 S:      Supported
6174 F:      drivers/scsi/hisi_sas/
6175 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6176
6177 HOST AP DRIVER
6178 M:      Jouni Malinen <j@w1.fi>
6179 L:      linux-wireless@vger.kernel.org
6180 W:      http://w1.fi/hostap-driver.html
6181 S:      Obsolete
6182 F:      drivers/net/wireless/intersil/hostap/
6183
6184 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6185 L:      platform-driver-x86@vger.kernel.org
6186 S:      Orphan
6187 F:      drivers/platform/x86/tc1100-wmi.c
6188
6189 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6190 M:      Jaroslav Kysela <perex@perex.cz>
6191 S:      Maintained
6192 F:      drivers/net/ethernet/hp/hp100.*
6193
6194 HPET:   High Precision Event Timers driver
6195 M:      Clemens Ladisch <clemens@ladisch.de>
6196 S:      Maintained
6197 F:      Documentation/timers/hpet.txt
6198 F:      drivers/char/hpet.c
6199 F:      include/linux/hpet.h
6200 F:      include/uapi/linux/hpet.h
6201
6202 HPET:   x86
6203 S:      Orphan
6204 F:      arch/x86/kernel/hpet.c
6205 F:      arch/x86/include/asm/hpet.h
6206
6207 HPFS FILESYSTEM
6208 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6209 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6210 S:      Maintained
6211 F:      fs/hpfs/
6212
6213 HSI SUBSYSTEM
6214 M:      Sebastian Reichel <sre@kernel.org>
6215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6216 S:      Maintained
6217 F:      Documentation/ABI/testing/sysfs-bus-hsi
6218 F:      Documentation/driver-api/hsi.rst
6219 F:      drivers/hsi/
6220 F:      include/linux/hsi/
6221 F:      include/uapi/linux/hsi/
6222
6223 HSO 3G MODEM DRIVER
6224 L:      linux-usb@vger.kernel.org
6225 S:      Orphan
6226 F:      drivers/net/usb/hso.c
6227
6228 HSR NETWORK PROTOCOL
6229 M:      Arvid Brodin <arvid.brodin@alten.se>
6230 L:      netdev@vger.kernel.org
6231 S:      Maintained
6232 F:      net/hsr/
6233
6234 HTCPEN TOUCHSCREEN DRIVER
6235 M:      Pau Oliva Fora <pof@eslack.org>
6236 L:      linux-input@vger.kernel.org
6237 S:      Maintained
6238 F:      drivers/input/touchscreen/htcpen.c
6239
6240 HUGETLB FILESYSTEM
6241 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
6242 S:      Maintained
6243 F:      fs/hugetlbfs/
6244
6245 HVA ST MEDIA DRIVER
6246 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6247 L:      linux-media@vger.kernel.org
6248 T:      git git://linuxtv.org/media_tree.git
6249 W:      https://linuxtv.org
6250 S:      Supported
6251 F:      drivers/media/platform/sti/hva
6252
6253 Hyper-V CORE AND DRIVERS
6254 M:      "K. Y. Srinivasan" <kys@microsoft.com>
6255 M:      Haiyang Zhang <haiyangz@microsoft.com>
6256 M:      Stephen Hemminger <sthemmin@microsoft.com>
6257 L:      devel@linuxdriverproject.org
6258 S:      Maintained
6259 F:      arch/x86/include/asm/mshyperv.h
6260 F:      arch/x86/include/uapi/asm/hyperv.h
6261 F:      arch/x86/kernel/cpu/mshyperv.c
6262 F:      arch/x86/hyperv
6263 F:      drivers/hid/hid-hyperv.c
6264 F:      drivers/hv/
6265 F:      drivers/input/serio/hyperv-keyboard.c
6266 F:      drivers/pci/host/pci-hyperv.c
6267 F:      drivers/net/hyperv/
6268 F:      drivers/scsi/storvsc_drv.c
6269 F:      drivers/uio/uio_hv_generic.c
6270 F:      drivers/video/fbdev/hyperv_fb.c
6271 F:      include/linux/hyperv.h
6272 F:      tools/hv/
6273 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6274
6275 I2C MUXES
6276 M:      Peter Rosin <peda@axentia.se>
6277 L:      linux-i2c@vger.kernel.org
6278 S:      Maintained
6279 F:      Documentation/i2c/i2c-topology
6280 F:      Documentation/i2c/muxes/
6281 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6282 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6283 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6284 F:      drivers/i2c/i2c-mux.c
6285 F:      drivers/i2c/muxes/
6286 F:      include/linux/i2c-mux.h
6287
6288 I2C OVER PARALLEL PORT
6289 M:      Jean Delvare <jdelvare@suse.com>
6290 L:      linux-i2c@vger.kernel.org
6291 S:      Maintained
6292 F:      Documentation/i2c/busses/i2c-parport
6293 F:      Documentation/i2c/busses/i2c-parport-light
6294 F:      drivers/i2c/busses/i2c-parport.c
6295 F:      drivers/i2c/busses/i2c-parport-light.c
6296
6297 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6298 M:      Jean Delvare <jdelvare@suse.com>
6299 L:      linux-i2c@vger.kernel.org
6300 S:      Maintained
6301 F:      Documentation/i2c/busses/i2c-ali1535
6302 F:      Documentation/i2c/busses/i2c-ali1563
6303 F:      Documentation/i2c/busses/i2c-ali15x3
6304 F:      Documentation/i2c/busses/i2c-amd756
6305 F:      Documentation/i2c/busses/i2c-amd8111
6306 F:      Documentation/i2c/busses/i2c-i801
6307 F:      Documentation/i2c/busses/i2c-nforce2
6308 F:      Documentation/i2c/busses/i2c-piix4
6309 F:      Documentation/i2c/busses/i2c-sis5595
6310 F:      Documentation/i2c/busses/i2c-sis630
6311 F:      Documentation/i2c/busses/i2c-sis96x
6312 F:      Documentation/i2c/busses/i2c-via
6313 F:      Documentation/i2c/busses/i2c-viapro
6314 F:      drivers/i2c/busses/i2c-ali1535.c
6315 F:      drivers/i2c/busses/i2c-ali1563.c
6316 F:      drivers/i2c/busses/i2c-ali15x3.c
6317 F:      drivers/i2c/busses/i2c-amd756.c
6318 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6319 F:      drivers/i2c/busses/i2c-amd8111.c
6320 F:      drivers/i2c/busses/i2c-i801.c
6321 F:      drivers/i2c/busses/i2c-isch.c
6322 F:      drivers/i2c/busses/i2c-nforce2.c
6323 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6324 F:      drivers/i2c/busses/i2c-piix4.c
6325 F:      drivers/i2c/busses/i2c-sis5595.c
6326 F:      drivers/i2c/busses/i2c-sis630.c
6327 F:      drivers/i2c/busses/i2c-sis96x.c
6328 F:      drivers/i2c/busses/i2c-via.c
6329 F:      drivers/i2c/busses/i2c-viapro.c
6330
6331 I2C/SMBUS ISMT DRIVER
6332 M:      Seth Heasley <seth.heasley@intel.com>
6333 M:      Neil Horman <nhorman@tuxdriver.com>
6334 L:      linux-i2c@vger.kernel.org
6335 F:      drivers/i2c/busses/i2c-ismt.c
6336 F:      Documentation/i2c/busses/i2c-ismt
6337
6338 I2C/SMBUS STUB DRIVER
6339 M:      Jean Delvare <jdelvare@suse.com>
6340 L:      linux-i2c@vger.kernel.org
6341 S:      Maintained
6342 F:      drivers/i2c/i2c-stub.c
6343
6344 I2C SUBSYSTEM
6345 M:      Wolfram Sang <wsa@the-dreams.de>
6346 L:      linux-i2c@vger.kernel.org
6347 W:      https://i2c.wiki.kernel.org/
6348 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6350 S:      Maintained
6351 F:      Documentation/devicetree/bindings/i2c/
6352 F:      Documentation/i2c/
6353 F:      drivers/i2c/
6354 F:      drivers/i2c/*/
6355 F:      include/linux/i2c.h
6356 F:      include/linux/i2c-*.h
6357 F:      include/uapi/linux/i2c.h
6358 F:      include/uapi/linux/i2c-*.h
6359
6360 I2C ACPI SUPPORT
6361 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
6362 L:      linux-i2c@vger.kernel.org
6363 L:      linux-acpi@vger.kernel.org
6364 S:      Maintained
6365
6366 I2C-TAOS-EVM DRIVER
6367 M:      Jean Delvare <jdelvare@suse.com>
6368 L:      linux-i2c@vger.kernel.org
6369 S:      Maintained
6370 F:      Documentation/i2c/busses/i2c-taos-evm
6371 F:      drivers/i2c/busses/i2c-taos-evm.c
6372
6373 I2C-TINY-USB DRIVER
6374 M:      Till Harbaum <till@harbaum.org>
6375 L:      linux-i2c@vger.kernel.org
6376 W:      http://www.harbaum.org/till/i2c_tiny_usb
6377 S:      Maintained
6378 F:      drivers/i2c/busses/i2c-tiny-usb.c
6379
6380 i386 BOOT CODE
6381 M:      "H. Peter Anvin" <hpa@zytor.com>
6382 S:      Maintained
6383 F:      arch/x86/boot/
6384
6385 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6386 M:      "H. Peter Anvin" <hpa@zytor.com>
6387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6388 S:      Maintained
6389
6390 IA64 (Itanium) PLATFORM
6391 M:      Tony Luck <tony.luck@intel.com>
6392 M:      Fenghua Yu <fenghua.yu@intel.com>
6393 L:      linux-ia64@vger.kernel.org
6394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6395 S:      Maintained
6396 F:      arch/ia64/
6397
6398 IBM Power VMX Cryptographic instructions
6399 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6400 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6401 L:      linux-crypto@vger.kernel.org
6402 S:      Supported
6403 F:      drivers/crypto/vmx/Makefile
6404 F:      drivers/crypto/vmx/Kconfig
6405 F:      drivers/crypto/vmx/vmx.c
6406 F:      drivers/crypto/vmx/aes*
6407 F:      drivers/crypto/vmx/ghash*
6408 F:      drivers/crypto/vmx/ppc-xlate.pl
6409
6410 IBM Power in-Nest Crypto Acceleration
6411 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6412 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6413 L:      linux-crypto@vger.kernel.org
6414 S:      Supported
6415 F:      drivers/crypto/nx/Makefile
6416 F:      drivers/crypto/nx/Kconfig
6417 F:      drivers/crypto/nx/nx-aes*
6418 F:      drivers/crypto/nx/nx-sha*
6419 F:      drivers/crypto/nx/nx.*
6420 F:      drivers/crypto/nx/nx_csbcpb.h
6421 F:      drivers/crypto/nx/nx_debugfs.h
6422
6423 IBM Power 842 compression accelerator
6424 M:      Haren Myneni <haren@us.ibm.com>
6425 S:      Supported
6426 F:      drivers/crypto/nx/Makefile
6427 F:      drivers/crypto/nx/Kconfig
6428 F:      drivers/crypto/nx/nx-842*
6429 F:      include/linux/sw842.h
6430 F:      crypto/842.c
6431 F:      lib/842/
6432
6433 IBM Power Linux RAID adapter
6434 M:      Brian King <brking@us.ibm.com>
6435 S:      Supported
6436 F:      drivers/scsi/ipr.*
6437
6438 IBM Power Virtual Ethernet Device Driver
6439 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6440 L:      netdev@vger.kernel.org
6441 S:      Supported
6442 F:      drivers/net/ethernet/ibm/ibmveth.*
6443
6444 IBM Power SRIOV Virtual NIC Device Driver
6445 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6446 M:      John Allen <jallen@linux.vnet.ibm.com>
6447 L:      netdev@vger.kernel.org
6448 S:      Supported
6449 F:      drivers/net/ethernet/ibm/ibmvnic.*
6450
6451 IBM Power Virtual SCSI Device Drivers
6452 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6453 L:      linux-scsi@vger.kernel.org
6454 S:      Supported
6455 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6456 F:      include/scsi/viosrp.h
6457
6458 IBM Power Virtual SCSI Device Target Driver
6459 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6460 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6461 L:      linux-scsi@vger.kernel.org
6462 L:      target-devel@vger.kernel.org
6463 S:      Supported
6464 F:      drivers/scsi/ibmvscsi_tgt/
6465
6466 IBM Power Virtual FC Device Drivers
6467 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6468 L:      linux-scsi@vger.kernel.org
6469 S:      Supported
6470 F:      drivers/scsi/ibmvscsi/ibmvfc*
6471
6472 IBM ServeRAID RAID DRIVER
6473 S:      Orphan
6474 F:      drivers/scsi/ips.*
6475
6476 ICH LPC AND GPIO DRIVER
6477 M:      Peter Tyser <ptyser@xes-inc.com>
6478 S:      Maintained
6479 F:      drivers/mfd/lpc_ich.c
6480 F:      drivers/gpio/gpio-ich.c
6481
6482 IDT VersaClock 5 CLOCK DRIVER
6483 M:      Marek Vasut <marek.vasut@gmail.com>
6484 S:      Maintained
6485 F:      drivers/clk/clk-versaclock5.c
6486
6487 IDE SUBSYSTEM
6488 M:      "David S. Miller" <davem@davemloft.net>
6489 L:      linux-ide@vger.kernel.org
6490 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6492 S:      Maintained
6493 F:      Documentation/ide/
6494 F:      drivers/ide/
6495 F:      include/linux/ide.h
6496
6497 IDEAPAD LAPTOP EXTRAS DRIVER
6498 M:      Ike Panhc <ike.pan@canonical.com>
6499 L:      platform-driver-x86@vger.kernel.org
6500 W:      http://launchpad.net/ideapad-laptop
6501 S:      Maintained
6502 F:      drivers/platform/x86/ideapad-laptop.c
6503
6504 IDEAPAD LAPTOP SLIDEBAR DRIVER
6505 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6506 L:      linux-input@vger.kernel.org
6507 W:      https://github.com/o2genum/ideapad-slidebar
6508 S:      Maintained
6509 F:      drivers/input/misc/ideapad_slidebar.c
6510
6511 IDE/ATAPI DRIVERS
6512 M:      Borislav Petkov <bp@alien8.de>
6513 L:      linux-ide@vger.kernel.org
6514 S:      Maintained
6515 F:      Documentation/cdrom/ide-cd
6516 F:      drivers/ide/ide-cd*
6517
6518 IEEE 802.15.4 SUBSYSTEM
6519 M:      Alexander Aring <alex.aring@gmail.com>
6520 M:      Stefan Schmidt <stefan@osg.samsung.com>
6521 L:      linux-wpan@vger.kernel.org
6522 W:      http://wpan.cakelab.org/
6523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6525 S:      Maintained
6526 F:      net/ieee802154/
6527 F:      net/mac802154/
6528 F:      drivers/net/ieee802154/
6529 F:      include/linux/nl802154.h
6530 F:      include/linux/ieee802154.h
6531 F:      include/net/nl802154.h
6532 F:      include/net/mac802154.h
6533 F:      include/net/af_ieee802154.h
6534 F:      include/net/cfg802154.h
6535 F:      include/net/ieee802154_netdev.h
6536 F:      Documentation/networking/ieee802154.txt
6537
6538 IFE PROTOCOL
6539 M:      Yotam Gigi <yotamg@mellanox.com>
6540 M:      Jamal Hadi Salim <jhs@mojatatu.com>
6541 F:      net/ife
6542 F:      include/net/ife.h
6543 F:      include/uapi/linux/ife.h
6544
6545 IGORPLUG-USB IR RECEIVER
6546 M:      Sean Young <sean@mess.org>
6547 L:      linux-media@vger.kernel.org
6548 S:      Maintained
6549 F:      drivers/media/rc/igorplugusb.c
6550
6551 IGUANAWORKS USB IR TRANSCEIVER
6552 M:      Sean Young <sean@mess.org>
6553 L:      linux-media@vger.kernel.org
6554 S:      Maintained
6555 F:      drivers/media/rc/iguanair.c
6556
6557 IIO DIGITAL POTENTIOMETER DAC
6558 M:      Peter Rosin <peda@axentia.se>
6559 L:      linux-iio@vger.kernel.org
6560 S:      Maintained
6561 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6562 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6563 F:      drivers/iio/dac/dpot-dac.c
6564
6565 IIO ENVELOPE DETECTOR
6566 M:      Peter Rosin <peda@axentia.se>
6567 L:      linux-iio@vger.kernel.org
6568 S:      Maintained
6569 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6570 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6571 F:      drivers/iio/adc/envelope-detector.c
6572
6573 IIO MULTIPLEXER
6574 M:      Peter Rosin <peda@axentia.se>
6575 L:      linux-iio@vger.kernel.org
6576 S:      Maintained
6577 F:      Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6578 F:      drivers/iio/multiplexer/iio-mux.c
6579
6580 IIO SUBSYSTEM AND DRIVERS
6581 M:      Jonathan Cameron <jic23@kernel.org>
6582 R:      Hartmut Knaack <knaack.h@gmx.de>
6583 R:      Lars-Peter Clausen <lars@metafoo.de>
6584 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6585 L:      linux-iio@vger.kernel.org
6586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6587 S:      Maintained
6588 F:      Documentation/devicetree/bindings/iio/
6589 F:      drivers/iio/
6590 F:      drivers/staging/iio/
6591 F:      include/linux/iio/
6592 F:      tools/iio/
6593
6594 IKANOS/ADI EAGLE ADSL USB DRIVER
6595 M:      Matthieu Castet <castet.matthieu@free.fr>
6596 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6597 S:      Maintained
6598 F:      drivers/usb/atm/ueagle-atm.c
6599
6600 IMGTEC ASCII LCD DRIVER
6601 M:      Paul Burton <paul.burton@imgtec.com>
6602 S:      Maintained
6603 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6604 F:      drivers/auxdisplay/img-ascii-lcd.c
6605
6606 INA209 HARDWARE MONITOR DRIVER
6607 M:      Guenter Roeck <linux@roeck-us.net>
6608 L:      linux-hwmon@vger.kernel.org
6609 S:      Maintained
6610 F:      Documentation/hwmon/ina209
6611 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6612 F:      drivers/hwmon/ina209.c
6613
6614 INA2XX HARDWARE MONITOR DRIVER
6615 M:      Guenter Roeck <linux@roeck-us.net>
6616 L:      linux-hwmon@vger.kernel.org
6617 S:      Maintained
6618 F:      Documentation/hwmon/ina2xx
6619 F:      drivers/hwmon/ina2xx.c
6620 F:      include/linux/platform_data/ina2xx.h
6621
6622 INDUSTRY PACK SUBSYSTEM (IPACK)
6623 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6624 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6626 L:      industrypack-devel@lists.sourceforge.net
6627 W:      http://industrypack.sourceforge.net
6628 S:      Maintained
6629 F:      drivers/ipack/
6630
6631 INGENIC JZ4780 DMA Driver
6632 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6633 S:      Maintained
6634 F:      drivers/dma/dma-jz4780.c
6635
6636 INGENIC JZ4780 NAND DRIVER
6637 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6638 L:      linux-mtd@lists.infradead.org
6639 S:      Maintained
6640 F:      drivers/mtd/nand/jz4780_*
6641
6642 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6643 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6644 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6645 L:      linux-ima-devel@lists.sourceforge.net
6646 L:      linux-ima-user@lists.sourceforge.net
6647 L:      linux-security-module@vger.kernel.org
6648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6649 S:      Supported
6650 F:      security/integrity/ima/
6651
6652 IMGTEC IR DECODER DRIVER
6653 M:      James Hogan <james.hogan@imgtec.com>
6654 S:      Maintained
6655 F:      drivers/media/rc/img-ir/
6656
6657 IMS TWINTURBO FRAMEBUFFER DRIVER
6658 L:      linux-fbdev@vger.kernel.org
6659 S:      Orphan
6660 F:      drivers/video/fbdev/imsttfb.c
6661
6662 INFINIBAND SUBSYSTEM
6663 M:      Doug Ledford <dledford@redhat.com>
6664 M:      Sean Hefty <sean.hefty@intel.com>
6665 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
6666 L:      linux-rdma@vger.kernel.org
6667 W:      http://www.openfabrics.org/
6668 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6670 S:      Supported
6671 F:      Documentation/devicetree/bindings/infiniband/
6672 F:      Documentation/infiniband/
6673 F:      drivers/infiniband/
6674 F:      include/uapi/linux/if_infiniband.h
6675 F:      include/uapi/rdma/
6676 F:      include/rdma/
6677
6678 INOTIFY
6679 M:      John McCutchan <john@johnmccutchan.com>
6680 M:      Robert Love <rlove@rlove.org>
6681 M:      Eric Paris <eparis@parisplace.org>
6682 S:      Maintained
6683 F:      Documentation/filesystems/inotify.txt
6684 F:      fs/notify/inotify/
6685 F:      include/linux/inotify.h
6686 F:      include/uapi/linux/inotify.h
6687
6688 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6689 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6690 L:      linux-input@vger.kernel.org
6691 Q:      http://patchwork.kernel.org/project/linux-input/list/
6692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6693 S:      Maintained
6694 F:      drivers/input/
6695 F:      include/linux/input.h
6696 F:      include/uapi/linux/input.h
6697 F:      include/uapi/linux/input-event-codes.h
6698 F:      include/linux/input/
6699 F:      Documentation/devicetree/bindings/input/
6700 F:      Documentation/input/
6701
6702 INPUT MULTITOUCH (MT) PROTOCOL
6703 M:      Henrik Rydberg <rydberg@bitmath.org>
6704 L:      linux-input@vger.kernel.org
6705 S:      Odd fixes
6706 F:      Documentation/input/multi-touch-protocol.rst
6707 F:      drivers/input/input-mt.c
6708 K:      \b(ABS|SYN)_MT_
6709
6710 INSIDE SECURE CRYPTO DRIVER
6711 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
6712 F:      drivers/crypto/inside-secure/
6713 S:      Maintained
6714 L:      linux-crypto@vger.kernel.org
6715
6716 INTEL ASoC BDW/HSW DRIVERS
6717 M:      Jie Yang <yang.jie@linux.intel.com>
6718 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6719 S:      Supported
6720 F:      sound/soc/intel/common/sst-dsp*
6721 F:      sound/soc/intel/common/sst-firmware.c
6722 F:      sound/soc/intel/boards/broadwell.c
6723 F:      sound/soc/intel/haswell/
6724
6725 INTEL C600 SERIES SAS CONTROLLER DRIVER
6726 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
6727 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6728 L:      linux-scsi@vger.kernel.org
6729 T:      git git://git.code.sf.net/p/intel-sas/isci
6730 S:      Supported
6731 F:      drivers/scsi/isci/
6732
6733 INTEL HID EVENT DRIVER
6734 M:      Alex Hung <alex.hung@canonical.com>
6735 L:      platform-driver-x86@vger.kernel.org
6736 S:      Maintained
6737 F:      drivers/platform/x86/intel-hid.c
6738
6739 INTEL VIRTUAL BUTTON DRIVER
6740 M:      AceLan Kao <acelan.kao@canonical.com>
6741 L:      platform-driver-x86@vger.kernel.org
6742 S:      Maintained
6743 F:      drivers/platform/x86/intel-vbtn.c
6744
6745 INTEL IDLE DRIVER
6746 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
6747 M:      Len Brown <lenb@kernel.org>
6748 L:      linux-pm@vger.kernel.org
6749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6750 B:      https://bugzilla.kernel.org
6751 S:      Supported
6752 F:      drivers/idle/intel_idle.c
6753
6754 INTEL INTEGRATED SENSOR HUB DRIVER
6755 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6756 M:      Jiri Kosina <jikos@kernel.org>
6757 L:      linux-input@vger.kernel.org
6758 S:      Maintained
6759 F:      drivers/hid/intel-ish-hid/
6760
6761 INTEL PSTATE DRIVER
6762 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6763 M:      Len Brown <lenb@kernel.org>
6764 L:      linux-pm@vger.kernel.org
6765 S:      Supported
6766 F:      drivers/cpufreq/intel_pstate.c
6767
6768 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6769 M:      Maik Broemme <mbroemme@libmpq.org>
6770 L:      linux-fbdev@vger.kernel.org
6771 S:      Maintained
6772 F:      Documentation/fb/intelfb.txt
6773 F:      drivers/video/fbdev/intelfb/
6774
6775 INTEL 810/815 FRAMEBUFFER DRIVER
6776 M:      Antonino Daplas <adaplas@gmail.com>
6777 L:      linux-fbdev@vger.kernel.org
6778 S:      Maintained
6779 F:      drivers/video/fbdev/i810/
6780
6781 INTEL MENLOW THERMAL DRIVER
6782 M:      Sujith Thomas <sujith.thomas@intel.com>
6783 L:      platform-driver-x86@vger.kernel.org
6784 W:      https://01.org/linux-acpi
6785 S:      Supported
6786 F:      drivers/platform/x86/intel_menlow.c
6787
6788 INTEL I/OAT DMA DRIVER
6789 M:      Dave Jiang <dave.jiang@intel.com>
6790 R:      Dan Williams <dan.j.williams@intel.com>
6791 L:      dmaengine@vger.kernel.org
6792 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6793 S:      Supported
6794 F:      drivers/dma/ioat*
6795
6796 INTEL IOMMU (VT-d)
6797 M:      David Woodhouse <dwmw2@infradead.org>
6798 L:      iommu@lists.linux-foundation.org
6799 T:      git git://git.infradead.org/iommu-2.6.git
6800 S:      Supported
6801 F:      drivers/iommu/intel-iommu.c
6802 F:      include/linux/intel-iommu.h
6803
6804 INTEL IOP-ADMA DMA DRIVER
6805 R:      Dan Williams <dan.j.williams@intel.com>
6806 S:      Odd fixes
6807 F:      drivers/dma/iop-adma.c
6808
6809 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6810 M:      Krzysztof Halasa <khalasa@piap.pl>
6811 S:      Maintained
6812 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6813 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6814 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6815 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6816 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6817 F:      drivers/net/wan/ixp4xx_hss.c
6818
6819 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6820 M:      Deepak Saxena <dsaxena@plexity.net>
6821 S:      Maintained
6822 F:      drivers/char/hw_random/ixp4xx-rng.c
6823
6824 INTEL ETHERNET DRIVERS
6825 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6826 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6827 W:      http://www.intel.com/support/feedback.htm
6828 W:      http://e1000.sourceforge.net/
6829 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6832 S:      Supported
6833 F:      Documentation/networking/e100.txt
6834 F:      Documentation/networking/e1000.txt
6835 F:      Documentation/networking/e1000e.txt
6836 F:      Documentation/networking/igb.txt
6837 F:      Documentation/networking/igbvf.txt
6838 F:      Documentation/networking/ixgb.txt
6839 F:      Documentation/networking/ixgbe.txt
6840 F:      Documentation/networking/ixgbevf.txt
6841 F:      Documentation/networking/i40e.txt
6842 F:      Documentation/networking/i40evf.txt
6843 F:      drivers/net/ethernet/intel/
6844 F:      drivers/net/ethernet/intel/*/
6845 F:      include/linux/avf/virtchnl.h
6846
6847 INTEL RDMA RNIC DRIVER
6848 M:     Faisal Latif <faisal.latif@intel.com>
6849 M:     Shiraz Saleem <shiraz.saleem@intel.com>
6850 L:     linux-rdma@vger.kernel.org
6851 S:     Supported
6852 F:     drivers/infiniband/hw/i40iw/
6853
6854 INTEL MERRIFIELD GPIO DRIVER
6855 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6856 L:      linux-gpio@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/gpio/gpio-merrifield.c
6859
6860 INTEL-MID GPIO DRIVER
6861 M:      David Cohen <david.a.cohen@linux.intel.com>
6862 L:      linux-gpio@vger.kernel.org
6863 S:      Maintained
6864 F:      drivers/gpio/gpio-intel-mid.c
6865
6866 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6867 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
6868 L:      linux-wireless@vger.kernel.org
6869 S:      Maintained
6870 F:      Documentation/networking/README.ipw2100
6871 F:      Documentation/networking/README.ipw2200
6872 F:      drivers/net/wireless/intel/ipw2x00/
6873
6874 INTEL(R) TRACE HUB
6875 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6876 S:      Supported
6877 F:      Documentation/trace/intel_th.txt
6878 F:      drivers/hwtracing/intel_th/
6879
6880 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6881 M:      Ning Sun <ning.sun@intel.com>
6882 L:      tboot-devel@lists.sourceforge.net
6883 W:      http://tboot.sourceforge.net
6884 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6885 S:      Supported
6886 F:      Documentation/intel_txt.txt
6887 F:      include/linux/tboot.h
6888 F:      arch/x86/kernel/tboot.c
6889
6890 INTEL WIRELESS WIMAX CONNECTION 2400
6891 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6892 M:      linux-wimax@intel.com
6893 L:      wimax@linuxwimax.org (subscribers-only)
6894 S:      Supported
6895 W:      http://linuxwimax.org
6896 F:      Documentation/wimax/README.i2400m
6897 F:      drivers/net/wimax/i2400m/
6898 F:      include/uapi/linux/wimax/i2400m.h
6899
6900 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6901 M:      Stanislaw Gruszka <sgruszka@redhat.com>
6902 L:      linux-wireless@vger.kernel.org
6903 S:      Supported
6904 F:      drivers/net/wireless/intel/iwlegacy/
6905
6906 INTEL WIRELESS WIFI LINK (iwlwifi)
6907 M:      Johannes Berg <johannes.berg@intel.com>
6908 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6909 M:      Luca Coelho <luciano.coelho@intel.com>
6910 M:      Intel Linux Wireless <linuxwifi@intel.com>
6911 L:      linux-wireless@vger.kernel.org
6912 W:      http://intellinuxwireless.org
6913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6914 S:      Supported
6915 F:      drivers/net/wireless/intel/iwlwifi/
6916
6917 INTEL MANAGEMENT ENGINE (mei)
6918 M:      Tomas Winkler <tomas.winkler@intel.com>
6919 L:      linux-kernel@vger.kernel.org
6920 S:      Supported
6921 F:      include/uapi/linux/mei.h
6922 F:      include/linux/mei_cl_bus.h
6923 F:      drivers/misc/mei/*
6924 F:      drivers/watchdog/mei_wdt.c
6925 F:      Documentation/misc-devices/mei/*
6926 F:      samples/mei/*
6927
6928 INTEL MIC DRIVERS (mic)
6929 M:      Sudeep Dutt <sudeep.dutt@intel.com>
6930 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
6931 S:      Supported
6932 W:      https://github.com/sudeepdutt/mic
6933 W:      http://software.intel.com/en-us/mic-developer
6934 F:      include/linux/mic_bus.h
6935 F:      include/linux/scif.h
6936 F:      include/uapi/linux/mic_common.h
6937 F:      include/uapi/linux/mic_ioctl.h
6938 F:      include/uapi/linux/scif_ioctl.h
6939 F:      drivers/misc/mic/
6940 F:      drivers/dma/mic_x100_dma.c
6941 F:      drivers/dma/mic_x100_dma.h
6942 F:      Documentation/mic/
6943
6944 INTEL PMC/P-Unit IPC DRIVER
6945 M:      Zha Qipeng<qipeng.zha@intel.com>
6946 L:      platform-driver-x86@vger.kernel.org
6947 S:      Maintained
6948 F:      drivers/platform/x86/intel_pmc_ipc.c
6949 F:      drivers/platform/x86/intel_punit_ipc.c
6950 F:      arch/x86/include/asm/intel_pmc_ipc.h
6951 F:      arch/x86/include/asm/intel_punit_ipc.h
6952
6953 INTEL TELEMETRY DRIVER
6954 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6955 L:      platform-driver-x86@vger.kernel.org
6956 S:      Maintained
6957 F:      arch/x86/include/asm/intel_telemetry.h
6958 F:      drivers/platform/x86/intel_telemetry*
6959
6960 INTEL PMC CORE DRIVER
6961 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6962 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6963 L:      platform-driver-x86@vger.kernel.org
6964 S:      Maintained
6965 F:      arch/x86/include/asm/pmc_core.h
6966 F:      drivers/platform/x86/intel_pmc_core*
6967
6968 INVENSENSE MPU-3050 GYROSCOPE DRIVER
6969 M:      Linus Walleij <linus.walleij@linaro.org>
6970 L:      linux-iio@vger.kernel.org
6971 S:      Maintained
6972 F:      drivers/iio/gyro/mpu3050*
6973 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
6974
6975 IOC3 ETHERNET DRIVER
6976 M:      Ralf Baechle <ralf@linux-mips.org>
6977 L:      linux-mips@linux-mips.org
6978 S:      Maintained
6979 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6980
6981 IOC3 SERIAL DRIVER
6982 M:      Pat Gefre <pfg@sgi.com>
6983 L:      linux-serial@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/tty/serial/ioc3_serial.c
6986
6987 IOMMU DRIVERS
6988 M:      Joerg Roedel <joro@8bytes.org>
6989 L:      iommu@lists.linux-foundation.org
6990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6991 S:      Maintained
6992 F:      Documentation/devicetree/bindings/iommu/
6993 F:      drivers/iommu/
6994 F:      include/linux/iommu.h
6995 F:      include/linux/iova.h
6996
6997 IP MASQUERADING
6998 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6999 S:      Maintained
7000 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
7001
7002 IPMI SUBSYSTEM
7003 M:      Corey Minyard <minyard@acm.org>
7004 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7005 W:      http://openipmi.sourceforge.net/
7006 S:      Supported
7007 F:      Documentation/IPMI.txt
7008 F:      drivers/char/ipmi/
7009 F:      include/linux/ipmi*
7010 F:      include/uapi/linux/ipmi*
7011
7012 QCOM AUDIO (ASoC) DRIVERS
7013 M:      Patrick Lai <plai@codeaurora.org>
7014 M:      Banajit Goswami <bgoswami@codeaurora.org>
7015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7016 S:      Supported
7017 F:      sound/soc/qcom/
7018
7019 IPS SCSI RAID DRIVER
7020 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7021 L:      linux-scsi@vger.kernel.org
7022 W:      http://www.adaptec.com/
7023 S:      Maintained
7024 F:      drivers/scsi/ips*
7025
7026 IPVS
7027 M:      Wensong Zhang <wensong@linux-vs.org>
7028 M:      Simon Horman <horms@verge.net.au>
7029 M:      Julian Anastasov <ja@ssi.bg>
7030 L:      netdev@vger.kernel.org
7031 L:      lvs-devel@vger.kernel.org
7032 S:      Maintained
7033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7035 F:      Documentation/networking/ipvs-sysctl.txt
7036 F:      include/net/ip_vs.h
7037 F:      include/uapi/linux/ip_vs.h
7038 F:      net/netfilter/ipvs/
7039
7040 IPWIRELESS DRIVER
7041 M:      Jiri Kosina <jikos@kernel.org>
7042 M:      David Sterba <dsterba@suse.com>
7043 S:      Odd Fixes
7044 F:      drivers/tty/ipwireless/
7045
7046 IPX NETWORK LAYER
7047 L:      netdev@vger.kernel.org
7048 S:      Odd fixes
7049 F:      include/net/ipx.h
7050 F:      include/uapi/linux/ipx.h
7051 F:      net/ipx/
7052
7053 IRDA SUBSYSTEM
7054 M:      Samuel Ortiz <samuel@sortiz.org>
7055 L:      irda-users@lists.sourceforge.net (subscribers-only)
7056 L:      netdev@vger.kernel.org
7057 W:      http://irda.sourceforge.net/
7058 S:      Maintained
7059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7060 F:      Documentation/networking/irda.txt
7061 F:      drivers/net/irda/
7062 F:      include/net/irda/
7063 F:      net/irda/
7064
7065 IRQ SUBSYSTEM
7066 M:      Thomas Gleixner <tglx@linutronix.de>
7067 L:      linux-kernel@vger.kernel.org
7068 S:      Maintained
7069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7070 F:      kernel/irq/
7071
7072 IRQCHIP DRIVERS
7073 M:      Thomas Gleixner <tglx@linutronix.de>
7074 M:      Jason Cooper <jason@lakedaemon.net>
7075 M:      Marc Zyngier <marc.zyngier@arm.com>
7076 L:      linux-kernel@vger.kernel.org
7077 S:      Maintained
7078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7079 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
7080 F:      Documentation/devicetree/bindings/interrupt-controller/
7081 F:      drivers/irqchip/
7082
7083 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7084 M:      Marc Zyngier <marc.zyngier@arm.com>
7085 S:      Maintained
7086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7087 F:      Documentation/IRQ-domain.txt
7088 F:      include/linux/irqdomain.h
7089 F:      kernel/irq/irqdomain.c
7090 F:      kernel/irq/msi.c
7091
7092 ISA
7093 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7094 S:      Maintained
7095 F:      Documentation/isa.txt
7096 F:      drivers/base/isa.c
7097 F:      include/linux/isa.h
7098
7099 ISAPNP
7100 M:      Jaroslav Kysela <perex@perex.cz>
7101 S:      Maintained
7102 F:      Documentation/isapnp.txt
7103 F:      drivers/pnp/isapnp/
7104 F:      include/linux/isapnp.h
7105
7106 ISA RADIO MODULE
7107 M:      Hans Verkuil <hverkuil@xs4all.nl>
7108 L:      linux-media@vger.kernel.org
7109 T:      git git://linuxtv.org/media_tree.git
7110 W:      https://linuxtv.org
7111 S:      Maintained
7112 F:      drivers/media/radio/radio-isa*
7113
7114 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7115 M:      Peter Jones <pjones@redhat.com>
7116 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
7117 S:      Maintained
7118 F:      drivers/firmware/iscsi_ibft*
7119
7120 ISCSI
7121 M:      Lee Duncan <lduncan@suse.com>
7122 M:      Chris Leech <cleech@redhat.com>
7123 L:      open-iscsi@googlegroups.com
7124 W:      www.open-iscsi.com
7125 S:      Maintained
7126 F:      drivers/scsi/*iscsi*
7127 F:      include/scsi/*iscsi*
7128
7129 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7130 M:      Or Gerlitz <ogerlitz@mellanox.com>
7131 M:      Sagi Grimberg <sagi@grimberg.me>
7132 M:      Roi Dayan <roid@mellanox.com>
7133 L:      linux-rdma@vger.kernel.org
7134 S:      Supported
7135 W:      http://www.openfabrics.org
7136 W:      www.open-iscsi.org
7137 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7138 F:      drivers/infiniband/ulp/iser/
7139
7140 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7141 M:      Sagi Grimberg <sagi@grimberg.me>
7142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7143 L:      linux-rdma@vger.kernel.org
7144 L:      target-devel@vger.kernel.org
7145 S:      Supported
7146 W:      http://www.linux-iscsi.org
7147 F:      drivers/infiniband/ulp/isert
7148
7149 ISDN SUBSYSTEM
7150 M:      Karsten Keil <isdn@linux-pingi.de>
7151 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7152 L:      netdev@vger.kernel.org
7153 W:      http://www.isdn4linux.de
7154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7155 S:      Maintained
7156 F:      Documentation/isdn/
7157 F:      drivers/isdn/
7158 F:      include/linux/isdn.h
7159 F:      include/linux/isdn/
7160 F:      include/uapi/linux/isdn.h
7161 F:      include/uapi/linux/isdn/
7162
7163 ISDN SUBSYSTEM (Eicon active card driver)
7164 M:      Armin Schindler <mac@melware.de>
7165 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
7166 W:      http://www.melware.de
7167 S:      Maintained
7168 F:      drivers/isdn/hardware/eicon/
7169
7170 IT87 HARDWARE MONITORING DRIVER
7171 M:      Jean Delvare <jdelvare@suse.com>
7172 L:      linux-hwmon@vger.kernel.org
7173 S:      Maintained
7174 F:      Documentation/hwmon/it87
7175 F:      drivers/hwmon/it87.c
7176
7177 IT913X MEDIA DRIVER
7178 M:      Antti Palosaari <crope@iki.fi>
7179 L:      linux-media@vger.kernel.org
7180 W:      https://linuxtv.org
7181 W:      http://palosaari.fi/linux/
7182 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7183 T:      git git://linuxtv.org/anttip/media_tree.git
7184 S:      Maintained
7185 F:      drivers/media/tuners/it913x*
7186
7187 IVTV VIDEO4LINUX DRIVER
7188 M:      Andy Walls <awalls@md.metrocast.net>
7189 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
7190 L:      linux-media@vger.kernel.org
7191 T:      git git://linuxtv.org/media_tree.git
7192 W:      http://www.ivtvdriver.org
7193 S:      Maintained
7194 F:      Documentation/media/v4l-drivers/ivtv*
7195 F:      drivers/media/pci/ivtv/
7196 F:      include/uapi/linux/ivtv*
7197
7198 IX2505V MEDIA DRIVER
7199 M:      Malcolm Priestley <tvboxspy@gmail.com>
7200 L:      linux-media@vger.kernel.org
7201 W:      https://linuxtv.org
7202 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7203 S:      Maintained
7204 F:      drivers/media/dvb-frontends/ix2505v*
7205
7206 JC42.4 TEMPERATURE SENSOR DRIVER
7207 M:      Guenter Roeck <linux@roeck-us.net>
7208 L:      linux-hwmon@vger.kernel.org
7209 S:      Maintained
7210 F:      drivers/hwmon/jc42.c
7211 F:      Documentation/hwmon/jc42
7212
7213 JFS FILESYSTEM
7214 M:      Dave Kleikamp <shaggy@kernel.org>
7215 L:      jfs-discussion@lists.sourceforge.net
7216 W:      http://jfs.sourceforge.net/
7217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7218 S:      Maintained
7219 F:      Documentation/filesystems/jfs.txt
7220 F:      fs/jfs/
7221
7222 JME NETWORK DRIVER
7223 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
7224 L:      netdev@vger.kernel.org
7225 S:      Maintained
7226 F:      drivers/net/ethernet/jme.*
7227
7228 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7229 M:      David Woodhouse <dwmw2@infradead.org>
7230 L:      linux-mtd@lists.infradead.org
7231 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7232 S:      Maintained
7233 F:      fs/jffs2/
7234 F:      include/uapi/linux/jffs2.h
7235
7236 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7237 M:      "Theodore Ts'o" <tytso@mit.edu>
7238 M:      Jan Kara <jack@suse.com>
7239 L:      linux-ext4@vger.kernel.org
7240 S:      Maintained
7241 F:      fs/jbd2/
7242 F:      include/linux/jbd2.h
7243
7244 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7245 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7246 L:      linux-media@vger.kernel.org
7247 S:      Maintained
7248 F:      drivers/media/platform/rcar_jpu.c
7249
7250 JSM Neo PCI based serial card
7251 M:      Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7252 L:      linux-serial@vger.kernel.org
7253 S:      Maintained
7254 F:      drivers/tty/serial/jsm/
7255
7256 K10TEMP HARDWARE MONITORING DRIVER
7257 M:      Clemens Ladisch <clemens@ladisch.de>
7258 L:      linux-hwmon@vger.kernel.org
7259 S:      Maintained
7260 F:      Documentation/hwmon/k10temp
7261 F:      drivers/hwmon/k10temp.c
7262
7263 K8TEMP HARDWARE MONITORING DRIVER
7264 M:      Rudolf Marek <r.marek@assembler.cz>
7265 L:      linux-hwmon@vger.kernel.org
7266 S:      Maintained
7267 F:      Documentation/hwmon/k8temp
7268 F:      drivers/hwmon/k8temp.c
7269
7270 KASAN
7271 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
7272 R:      Alexander Potapenko <glider@google.com>
7273 R:      Dmitry Vyukov <dvyukov@google.com>
7274 L:      kasan-dev@googlegroups.com
7275 S:      Maintained
7276 F:      arch/*/include/asm/kasan.h
7277 F:      arch/*/mm/kasan_init*
7278 F:      Documentation/dev-tools/kasan.rst
7279 F:      include/linux/kasan*.h
7280 F:      lib/test_kasan.c
7281 F:      mm/kasan/
7282 F:      scripts/Makefile.kasan
7283
7284 KCONFIG
7285 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
7286 L:      linux-kbuild@vger.kernel.org
7287 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
7288 S:      Maintained
7289 F:      Documentation/kbuild/kconfig-language.txt
7290 F:      scripts/kconfig/
7291
7292 KDUMP
7293 M:      Dave Young <dyoung@redhat.com>
7294 M:      Baoquan He <bhe@redhat.com>
7295 R:      Vivek Goyal <vgoyal@redhat.com>
7296 L:      kexec@lists.infradead.org
7297 W:      http://lse.sourceforge.net/kdump/
7298 S:      Maintained
7299 F:      Documentation/kdump/
7300
7301 KEENE FM RADIO TRANSMITTER DRIVER
7302 M:      Hans Verkuil <hverkuil@xs4all.nl>
7303 L:      linux-media@vger.kernel.org
7304 T:      git git://linuxtv.org/media_tree.git
7305 W:      https://linuxtv.org
7306 S:      Maintained
7307 F:      drivers/media/radio/radio-keene*
7308
7309 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7310 M:      Ian Kent <raven@themaw.net>
7311 L:      autofs@vger.kernel.org
7312 S:      Maintained
7313 F:      fs/autofs4/
7314
7315 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7316 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
7317 M:      Michal Marek <mmarek@suse.com>
7318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7319 L:      linux-kbuild@vger.kernel.org
7320 S:      Maintained
7321 F:      Documentation/kbuild/
7322 F:      Makefile
7323 F:      scripts/Makefile.*
7324 F:      scripts/basic/
7325 F:      scripts/mk*
7326 F:      scripts/package/
7327
7328 KERNEL JANITORS
7329 L:      kernel-janitors@vger.kernel.org
7330 W:      http://kernelnewbies.org/KernelJanitors
7331 S:      Odd Fixes
7332
7333 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7334 M:      "J. Bruce Fields" <bfields@fieldses.org>
7335 M:      Jeff Layton <jlayton@poochiereds.net>
7336 L:      linux-nfs@vger.kernel.org
7337 W:      http://nfs.sourceforge.net/
7338 T:      git git://linux-nfs.org/~bfields/linux.git
7339 S:      Supported
7340 F:      fs/nfsd/
7341 F:      include/uapi/linux/nfsd/
7342 F:      fs/lockd/
7343 F:      fs/nfs_common/
7344 F:      net/sunrpc/
7345 F:      include/linux/lockd/
7346 F:      include/linux/sunrpc/
7347 F:      include/uapi/linux/sunrpc/
7348
7349 KERNEL SELFTEST FRAMEWORK
7350 M:      Shuah Khan <shuahkh@osg.samsung.com>
7351 M:      Shuah Khan <shuah@kernel.org>
7352 L:      linux-kselftest@vger.kernel.org
7353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7354 S:      Maintained
7355 F:      tools/testing/selftests/
7356 F:      Documentation/dev-tools/kselftest*
7357
7358 KERNEL VIRTUAL MACHINE (KVM)
7359 M:      Paolo Bonzini <pbonzini@redhat.com>
7360 M:      Radim Krčmář <rkrcmar@redhat.com>
7361 L:      kvm@vger.kernel.org
7362 W:      http://www.linux-kvm.org
7363 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7364 S:      Supported
7365 F:      Documentation/*/kvm*.txt
7366 F:      Documentation/virtual/kvm/
7367 F:      arch/*/kvm/
7368 F:      arch/x86/kernel/kvm.c
7369 F:      arch/x86/kernel/kvmclock.c
7370 F:      arch/*/include/asm/kvm*
7371 F:      include/linux/kvm*
7372 F:      include/uapi/linux/kvm*
7373 F:      virt/kvm/
7374 F:      tools/kvm/
7375
7376 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
7377 M:      Joerg Roedel <joro@8bytes.org>
7378 L:      kvm@vger.kernel.org
7379 W:      http://www.linux-kvm.org/
7380 S:      Maintained
7381 F:      arch/x86/include/asm/svm.h
7382 F:      arch/x86/kvm/svm.c
7383
7384 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
7385 M:      Alexander Graf <agraf@suse.com>
7386 L:      kvm-ppc@vger.kernel.org
7387 W:      http://www.linux-kvm.org/
7388 T:      git git://github.com/agraf/linux-2.6.git
7389 S:      Supported
7390 F:      arch/powerpc/include/asm/kvm*
7391 F:      arch/powerpc/kvm/
7392
7393 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7394 M:      Christian Borntraeger <borntraeger@de.ibm.com>
7395 M:      Cornelia Huck <cohuck@redhat.com>
7396 L:      linux-s390@vger.kernel.org
7397 W:      http://www.ibm.com/developerworks/linux/linux390/
7398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7399 S:      Supported
7400 F:      Documentation/s390/kvm.txt
7401 F:      arch/s390/include/asm/kvm*
7402 F:      arch/s390/kvm/
7403 F:      arch/s390/mm/gmap.c
7404
7405 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
7406 M:      Christoffer Dall <christoffer.dall@linaro.org>
7407 M:      Marc Zyngier <marc.zyngier@arm.com>
7408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7409 L:      kvmarm@lists.cs.columbia.edu
7410 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7412 S:      Supported
7413 F:      arch/arm/include/uapi/asm/kvm*
7414 F:      arch/arm/include/asm/kvm*
7415 F:      arch/arm/kvm/
7416 F:      virt/kvm/arm/
7417 F:      include/kvm/arm_*
7418
7419 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7420 M:      Christoffer Dall <christoffer.dall@linaro.org>
7421 M:      Marc Zyngier <marc.zyngier@arm.com>
7422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7423 L:      kvmarm@lists.cs.columbia.edu
7424 S:      Maintained
7425 F:      arch/arm64/include/uapi/asm/kvm*
7426 F:      arch/arm64/include/asm/kvm*
7427 F:      arch/arm64/kvm/
7428
7429 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7430 M:      James Hogan <james.hogan@imgtec.com>
7431 L:      linux-mips@linux-mips.org
7432 S:      Supported
7433 F:      arch/mips/include/uapi/asm/kvm*
7434 F:      arch/mips/include/asm/kvm*
7435 F:      arch/mips/kvm/
7436
7437 KERNFS
7438 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7439 M:      Tejun Heo <tj@kernel.org>
7440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7441 S:      Supported
7442 F:      include/linux/kernfs.h
7443 F:      fs/kernfs/
7444
7445 KEXEC
7446 M:      Eric Biederman <ebiederm@xmission.com>
7447 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7448 L:      kexec@lists.infradead.org
7449 S:      Maintained
7450 F:      include/linux/kexec.h
7451 F:      include/uapi/linux/kexec.h
7452 F:      kernel/kexec*
7453
7454 KEYS/KEYRINGS:
7455 M:      David Howells <dhowells@redhat.com>
7456 L:      keyrings@vger.kernel.org
7457 S:      Maintained
7458 F:      Documentation/security/keys/core.rst
7459 F:      include/linux/key.h
7460 F:      include/linux/key-type.h
7461 F:      include/linux/keyctl.h
7462 F:      include/uapi/linux/keyctl.h
7463 F:      include/keys/
7464 F:      security/keys/
7465
7466 KEYS-TRUSTED
7467 M:      David Safford <safford@us.ibm.com>
7468 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7469 L:      linux-security-module@vger.kernel.org
7470 L:      keyrings@vger.kernel.org
7471 S:      Supported
7472 F:      Documentation/security/keys/trusted-encrypted.rst
7473 F:      include/keys/trusted-type.h
7474 F:      security/keys/trusted.c
7475 F:      security/keys/trusted.h
7476
7477 KEYS-ENCRYPTED
7478 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7479 M:      David Safford <safford@us.ibm.com>
7480 L:      linux-security-module@vger.kernel.org
7481 L:      keyrings@vger.kernel.org
7482 S:      Supported
7483 F:      Documentation/security/keys/trusted-encrypted.rst
7484 F:      include/keys/encrypted-type.h
7485 F:      security/keys/encrypted-keys/
7486
7487 KGDB / KDB /debug_core
7488 M:      Jason Wessel <jason.wessel@windriver.com>
7489 W:      http://kgdb.wiki.kernel.org/
7490 L:      kgdb-bugreport@lists.sourceforge.net
7491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7492 S:      Maintained
7493 F:      Documentation/dev-tools/kgdb.rst
7494 F:      drivers/misc/kgdbts.c
7495 F:      drivers/tty/serial/kgdboc.c
7496 F:      include/linux/kdb.h
7497 F:      include/linux/kgdb.h
7498 F:      kernel/debug/
7499
7500 KMEMCHECK
7501 M:      Vegard Nossum <vegardno@ifi.uio.no>
7502 M:      Pekka Enberg <penberg@kernel.org>
7503 S:      Maintained
7504 F:      Documentation/dev-tools/kmemcheck.rst
7505 F:      arch/x86/include/asm/kmemcheck.h
7506 F:      arch/x86/mm/kmemcheck/
7507 F:      include/linux/kmemcheck.h
7508 F:      mm/kmemcheck.c
7509
7510 KMEMLEAK
7511 M:      Catalin Marinas <catalin.marinas@arm.com>
7512 S:      Maintained
7513 F:      Documentation/dev-tools/kmemleak.rst
7514 F:      include/linux/kmemleak.h
7515 F:      mm/kmemleak.c
7516 F:      mm/kmemleak-test.c
7517
7518 KPROBES
7519 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7520 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7521 M:      "David S. Miller" <davem@davemloft.net>
7522 M:      Masami Hiramatsu <mhiramat@kernel.org>
7523 S:      Maintained
7524 F:      Documentation/kprobes.txt
7525 F:      include/linux/kprobes.h
7526 F:      include/asm-generic/kprobes.h
7527 F:      kernel/kprobes.c
7528
7529 KS0108 LCD CONTROLLER DRIVER
7530 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7531 W:      http://miguelojeda.es/auxdisplay.htm
7532 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7533 S:      Maintained
7534 F:      Documentation/auxdisplay/ks0108
7535 F:      drivers/auxdisplay/ks0108.c
7536 F:      include/linux/ks0108.h
7537
7538 L3MDEV
7539 M:      David Ahern <dsa@cumulusnetworks.com>
7540 L:      netdev@vger.kernel.org
7541 S:      Maintained
7542 F:      net/l3mdev
7543 F:      include/net/l3mdev.h
7544
7545 LANTIQ MIPS ARCHITECTURE
7546 M:      John Crispin <john@phrozen.org>
7547 L:      linux-mips@linux-mips.org
7548 S:      Maintained
7549 F:      arch/mips/lantiq
7550
7551 LAPB module
7552 L:      linux-x25@vger.kernel.org
7553 S:      Orphan
7554 F:      Documentation/networking/lapb-module.txt
7555 F:      include/*/lapb.h
7556 F:      net/lapb/
7557
7558 LASI 53c700 driver for PARISC
7559 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7560 L:      linux-scsi@vger.kernel.org
7561 S:      Maintained
7562 F:      Documentation/scsi/53c700.txt
7563 F:      drivers/scsi/53c700*
7564
7565 LED SUBSYSTEM
7566 M:      Richard Purdie <rpurdie@rpsys.net>
7567 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
7568 M:      Pavel Machek <pavel@ucw.cz>
7569 L:      linux-leds@vger.kernel.org
7570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7571 S:      Maintained
7572 F:      Documentation/devicetree/bindings/leds/
7573 F:      drivers/leds/
7574 F:      include/linux/leds.h
7575
7576 LEGACY EEPROM DRIVER
7577 M:      Jean Delvare <jdelvare@suse.com>
7578 S:      Maintained
7579 F:      Documentation/misc-devices/eeprom
7580 F:      drivers/misc/eeprom/eeprom.c
7581
7582 LEGO USB Tower driver
7583 M:      Juergen Stuber <starblue@users.sourceforge.net>
7584 L:      legousb-devel@lists.sourceforge.net
7585 W:      http://legousb.sourceforge.net/
7586 S:      Maintained
7587 F:      drivers/usb/misc/legousbtower.c
7588
7589 LG2160 MEDIA DRIVER
7590 M:      Michael Krufky <mkrufky@linuxtv.org>
7591 L:      linux-media@vger.kernel.org
7592 W:      https://linuxtv.org
7593 W:      http://github.com/mkrufky
7594 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7595 T:      git git://linuxtv.org/mkrufky/tuners.git
7596 S:      Maintained
7597 F:      drivers/media/dvb-frontends/lg2160.*
7598
7599 LGDT3305 MEDIA DRIVER
7600 M:      Michael Krufky <mkrufky@linuxtv.org>
7601 L:      linux-media@vger.kernel.org
7602 W:      https://linuxtv.org
7603 W:      http://github.com/mkrufky
7604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7605 T:      git git://linuxtv.org/mkrufky/tuners.git
7606 S:      Maintained
7607 F:      drivers/media/dvb-frontends/lgdt3305.*
7608
7609 LGUEST
7610 M:      Rusty Russell <rusty@rustcorp.com.au>
7611 L:      lguest@lists.ozlabs.org
7612 W:      http://lguest.ozlabs.org/
7613 S:      Odd Fixes
7614 F:      arch/x86/include/asm/lguest*.h
7615 F:      arch/x86/lguest/
7616 F:      drivers/lguest/
7617 F:      include/linux/lguest*.h
7618 F:      tools/lguest/
7619
7620 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7621 M:      Tejun Heo <tj@kernel.org>
7622 L:      linux-ide@vger.kernel.org
7623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7624 S:      Maintained
7625 F:      drivers/ata/
7626 F:      include/linux/ata.h
7627 F:      include/linux/libata.h
7628 F:      Documentation/devicetree/bindings/ata/
7629
7630 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7631 M:      Viresh Kumar <vireshk@kernel.org>
7632 L:      linux-ide@vger.kernel.org
7633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7634 S:      Maintained
7635 F:      include/linux/pata_arasan_cf_data.h
7636 F:      drivers/ata/pata_arasan_cf.c
7637
7638 LIBATA PATA DRIVERS
7639 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7640 M:      Tejun Heo <tj@kernel.org>
7641 L:      linux-ide@vger.kernel.org
7642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7643 S:      Maintained
7644 F:      drivers/ata/pata_*.c
7645 F:      drivers/ata/ata_generic.c
7646
7647 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7648 M:      Linus Walleij <linus.walleij@linaro.org>
7649 L:      linux-ide@vger.kernel.org
7650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7651 S:      Maintained
7652 F:      drivers/ata/pata_ftide010.c
7653 F:      drivers/ata/sata_gemini.c
7654 F:      drivers/ata/sata_gemini.h
7655
7656 LIBATA SATA AHCI PLATFORM devices support
7657 M:      Hans de Goede <hdegoede@redhat.com>
7658 M:      Tejun Heo <tj@kernel.org>
7659 L:      linux-ide@vger.kernel.org
7660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7661 S:      Maintained
7662 F:      drivers/ata/ahci_platform.c
7663 F:      drivers/ata/libahci_platform.c
7664 F:      include/linux/ahci_platform.h
7665
7666 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7667 M:      Mikael Pettersson <mikpelinux@gmail.com>
7668 L:      linux-ide@vger.kernel.org
7669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7670 S:      Maintained
7671 F:      drivers/ata/sata_promise.*
7672
7673 LIBLOCKDEP
7674 M:      Sasha Levin <alexander.levin@verizon.com>
7675 S:      Maintained
7676 F:      tools/lib/lockdep/
7677
7678 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7679 M:      Dan Williams <dan.j.williams@intel.com>
7680 L:      linux-nvdimm@lists.01.org
7681 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7683 S:      Supported
7684 F:      drivers/nvdimm/*
7685 F:      include/linux/nd.h
7686 F:      include/linux/libnvdimm.h
7687 F:      include/uapi/linux/ndctl.h
7688
7689 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7690 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7691 L:      linux-nvdimm@lists.01.org
7692 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7693 S:      Supported
7694 F:      drivers/nvdimm/blk.c
7695 F:      drivers/nvdimm/region_devs.c
7696 F:      drivers/acpi/nfit*
7697
7698 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7699 M:      Vishal Verma <vishal.l.verma@intel.com>
7700 L:      linux-nvdimm@lists.01.org
7701 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7702 S:      Supported
7703 F:      drivers/nvdimm/btt*
7704
7705 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7706 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7707 L:      linux-nvdimm@lists.01.org
7708 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7709 S:      Supported
7710 F:      drivers/nvdimm/pmem*
7711
7712 LIGHTNVM PLATFORM SUPPORT
7713 M:      Matias Bjorling <mb@lightnvm.io>
7714 W:      http://github/OpenChannelSSD
7715 L:      linux-block@vger.kernel.org
7716 S:      Maintained
7717 F:      drivers/lightnvm/
7718 F:      include/linux/lightnvm.h
7719 F:      include/uapi/linux/lightnvm.h
7720
7721 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7722 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7723 M:      Paul Mackerras <paulus@samba.org>
7724 M:      Michael Ellerman <mpe@ellerman.id.au>
7725 W:      https://github.com/linuxppc/linux/wiki
7726 L:      linuxppc-dev@lists.ozlabs.org
7727 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7729 S:      Supported
7730 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
7731 F:      Documentation/devicetree/bindings/powerpc/
7732 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
7733 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
7734 F:      Documentation/powerpc/
7735 F:      arch/powerpc/
7736 F:      drivers/char/tpm/tpm_ibmvtpm*
7737 F:      drivers/crypto/nx/
7738 F:      drivers/crypto/vmx/
7739 F:      drivers/i2c/busses/i2c-opal.c
7740 F:      drivers/net/ethernet/ibm/ibmveth.*
7741 F:      drivers/net/ethernet/ibm/ibmvnic.*
7742 F:      drivers/pci/hotplug/pnv_php.c
7743 F:      drivers/pci/hotplug/rpa*
7744 F:      drivers/rtc/rtc-opal.c
7745 F:      drivers/scsi/ibmvscsi/
7746 F:      drivers/tty/hvc/hvc_opal.c
7747 F:      tools/testing/selftests/powerpc
7748 N:      /pmac
7749 N:      powermac
7750 N:      powernv
7751 N:      [^a-z0-9]ps3
7752 N:      pseries
7753
7754 LINUX FOR POWER MACINTOSH
7755 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7756 W:      http://www.penguinppc.org/
7757 L:      linuxppc-dev@lists.ozlabs.org
7758 S:      Maintained
7759 F:      arch/powerpc/platforms/powermac/
7760 F:      drivers/macintosh/
7761
7762 LINUX FOR POWERPC EMBEDDED MPC5XXX
7763 M:      Anatolij Gustschin <agust@denx.de>
7764 L:      linuxppc-dev@lists.ozlabs.org
7765 T:      git git://git.denx.de/linux-denx-agust.git
7766 S:      Maintained
7767 F:      arch/powerpc/platforms/512x/
7768 F:      arch/powerpc/platforms/52xx/
7769
7770 LINUX FOR POWERPC EMBEDDED PPC4XX
7771 M:      Alistair Popple <alistair@popple.id.au>
7772 M:      Matt Porter <mporter@kernel.crashing.org>
7773 W:      http://www.penguinppc.org/
7774 L:      linuxppc-dev@lists.ozlabs.org
7775 S:      Maintained
7776 F:      arch/powerpc/platforms/40x/
7777 F:      arch/powerpc/platforms/44x/
7778
7779 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7780 L:      linuxppc-dev@lists.ozlabs.org
7781 S:      Orphan
7782 F:      arch/powerpc/*/*virtex*
7783 F:      arch/powerpc/*/*/*virtex*
7784
7785 LINUX FOR POWERPC EMBEDDED PPC8XX
7786 M:      Vitaly Bordug <vitb@kernel.crashing.org>
7787 W:      http://www.penguinppc.org/
7788 L:      linuxppc-dev@lists.ozlabs.org
7789 S:      Maintained
7790 F:      arch/powerpc/platforms/8xx/
7791
7792 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7793 M:      Scott Wood <oss@buserror.net>
7794 M:      Kumar Gala <galak@kernel.crashing.org>
7795 W:      http://www.penguinppc.org/
7796 L:      linuxppc-dev@lists.ozlabs.org
7797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7798 S:      Maintained
7799 F:      arch/powerpc/platforms/83xx/
7800 F:      arch/powerpc/platforms/85xx/
7801 F:      Documentation/devicetree/bindings/powerpc/fsl/
7802
7803 LINUX FOR POWERPC PA SEMI PWRFICIENT
7804 L:      linuxppc-dev@lists.ozlabs.org
7805 S:      Orphan
7806 F:      arch/powerpc/platforms/pasemi/
7807 F:      drivers/*/*pasemi*
7808 F:      drivers/*/*/*pasemi*
7809
7810 LINUX SECURITY MODULE (LSM) FRAMEWORK
7811 M:      Chris Wright <chrisw@sous-sol.org>
7812 L:      linux-security-module@vger.kernel.org
7813 S:      Supported
7814
7815 LIS3LV02D ACCELEROMETER DRIVER
7816 M:      Eric Piel <eric.piel@tremplin-utc.net>
7817 S:      Maintained
7818 F:      Documentation/misc-devices/lis3lv02d
7819 F:      drivers/misc/lis3lv02d/
7820 F:      drivers/platform/x86/hp_accel.c
7821
7822 LIVE PATCHING
7823 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7824 M:      Jessica Yu <jeyu@kernel.org>
7825 M:      Jiri Kosina <jikos@kernel.org>
7826 M:      Miroslav Benes <mbenes@suse.cz>
7827 R:      Petr Mladek <pmladek@suse.com>
7828 S:      Maintained
7829 F:      kernel/livepatch/
7830 F:      include/linux/livepatch.h
7831 F:      arch/x86/include/asm/livepatch.h
7832 F:      arch/x86/kernel/livepatch.c
7833 F:      Documentation/livepatch/
7834 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
7835 F:      samples/livepatch/
7836 L:      live-patching@vger.kernel.org
7837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7838
7839 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7840 M:      Kees Cook <keescook@chromium.org>
7841 S:      Maintained
7842 F:      drivers/misc/lkdtm*
7843
7844 LLC (802.2)
7845 L:      netdev@vger.kernel.org
7846 S:      Odd fixes
7847 F:      include/linux/llc.h
7848 F:      include/uapi/linux/llc.h
7849 F:      include/net/llc*
7850 F:      net/llc/
7851
7852 LM73 HARDWARE MONITOR DRIVER
7853 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
7854 L:      linux-hwmon@vger.kernel.org
7855 S:      Maintained
7856 F:      drivers/hwmon/lm73.c
7857
7858 LM78 HARDWARE MONITOR DRIVER
7859 M:      Jean Delvare <jdelvare@suse.com>
7860 L:      linux-hwmon@vger.kernel.org
7861 S:      Maintained
7862 F:      Documentation/hwmon/lm78
7863 F:      drivers/hwmon/lm78.c
7864
7865 LM83 HARDWARE MONITOR DRIVER
7866 M:      Jean Delvare <jdelvare@suse.com>
7867 L:      linux-hwmon@vger.kernel.org
7868 S:      Maintained
7869 F:      Documentation/hwmon/lm83
7870 F:      drivers/hwmon/lm83.c
7871
7872 LM90 HARDWARE MONITOR DRIVER
7873 M:      Jean Delvare <jdelvare@suse.com>
7874 L:      linux-hwmon@vger.kernel.org
7875 S:      Maintained
7876 F:      Documentation/hwmon/lm90
7877 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7878 F:      drivers/hwmon/lm90.c
7879 F:      include/dt-bindings/thermal/lm90.h
7880
7881 LM95234 HARDWARE MONITOR DRIVER
7882 M:      Guenter Roeck <linux@roeck-us.net>
7883 L:      linux-hwmon@vger.kernel.org
7884 S:      Maintained
7885 F:      Documentation/hwmon/lm95234
7886 F:      drivers/hwmon/lm95234.c
7887
7888 LME2510 MEDIA DRIVER
7889 M:      Malcolm Priestley <tvboxspy@gmail.com>
7890 L:      linux-media@vger.kernel.org
7891 W:      https://linuxtv.org
7892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7893 S:      Maintained
7894 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7895
7896 LOCKING PRIMITIVES
7897 M:      Peter Zijlstra <peterz@infradead.org>
7898 M:      Ingo Molnar <mingo@redhat.com>
7899 L:      linux-kernel@vger.kernel.org
7900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7901 S:      Maintained
7902 F:      Documentation/locking/
7903 F:      include/linux/lockdep.h
7904 F:      include/linux/spinlock*.h
7905 F:      arch/*/include/asm/spinlock*.h
7906 F:      include/linux/rwlock*.h
7907 F:      include/linux/mutex*.h
7908 F:      arch/*/include/asm/mutex*.h
7909 F:      include/linux/rwsem*.h
7910 F:      arch/*/include/asm/rwsem.h
7911 F:      include/linux/seqlock.h
7912 F:      lib/locking*.[ch]
7913 F:      kernel/locking/
7914
7915 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7916 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
7917 L:      linux-ntfs-dev@lists.sourceforge.net
7918 W:      http://www.linux-ntfs.org/content/view/19/37/
7919 S:      Maintained
7920 F:      Documentation/ldm.txt
7921 F:      block/partitions/ldm.*
7922
7923 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7924 M:      Sathya Prakash <sathya.prakash@broadcom.com>
7925 M:      Chaitra P B <chaitra.basappa@broadcom.com>
7926 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7927 L:      MPT-FusionLinux.pdl@broadcom.com
7928 L:      linux-scsi@vger.kernel.org
7929 W:      http://www.avagotech.com/support/
7930 S:      Supported
7931 F:      drivers/message/fusion/
7932 F:      drivers/scsi/mpt2sas/
7933 F:      drivers/scsi/mpt3sas/
7934
7935 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7936 M:      Matthew Wilcox <matthew@wil.cx>
7937 L:      linux-scsi@vger.kernel.org
7938 S:      Maintained
7939 F:      drivers/scsi/sym53c8xx_2/
7940
7941 LTC4261 HARDWARE MONITOR DRIVER
7942 M:      Guenter Roeck <linux@roeck-us.net>
7943 L:      linux-hwmon@vger.kernel.org
7944 S:      Maintained
7945 F:      Documentation/hwmon/ltc4261
7946 F:      drivers/hwmon/ltc4261.c
7947
7948 LTC4306 I2C MULTIPLEXER DRIVER
7949 M:      Michael Hennerich <michael.hennerich@analog.com>
7950 W:      http://ez.analog.com/community/linux-device-drivers
7951 L:      linux-i2c@vger.kernel.org
7952 S:      Supported
7953 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
7954 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
7955
7956 LTP (Linux Test Project)
7957 M:      Mike Frysinger <vapier@gentoo.org>
7958 M:      Cyril Hrubis <chrubis@suse.cz>
7959 M:      Wanlong Gao <wanlong.gao@gmail.com>
7960 M:      Jan Stancek <jstancek@redhat.com>
7961 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7962 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
7963 L:      ltp@lists.linux.it (subscribers-only)
7964 W:      http://linux-test-project.github.io/
7965 T:      git git://github.com/linux-test-project/ltp.git
7966 S:      Maintained
7967
7968 M32R ARCHITECTURE
7969 W:      http://www.linux-m32r.org/
7970 S:      Orphan
7971 F:      arch/m32r/
7972
7973 M68K ARCHITECTURE
7974 M:      Geert Uytterhoeven <geert@linux-m68k.org>
7975 L:      linux-m68k@lists.linux-m68k.org
7976 W:      http://www.linux-m68k.org/
7977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7978 S:      Maintained
7979 F:      arch/m68k/
7980 F:      drivers/zorro/
7981
7982 M68K ON APPLE MACINTOSH
7983 M:      Joshua Thompson <funaho@jurai.org>
7984 W:      http://www.mac.linux-m68k.org/
7985 L:      linux-m68k@lists.linux-m68k.org
7986 S:      Maintained
7987 F:      arch/m68k/mac/
7988
7989 M68K ON HP9000/300
7990 M:      Philip Blundell <philb@gnu.org>
7991 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7992 S:      Maintained
7993 F:      arch/m68k/hp300/
7994
7995 M88DS3103 MEDIA DRIVER
7996 M:      Antti Palosaari <crope@iki.fi>
7997 L:      linux-media@vger.kernel.org
7998 W:      https://linuxtv.org
7999 W:      http://palosaari.fi/linux/
8000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8001 T:      git git://linuxtv.org/anttip/media_tree.git
8002 S:      Maintained
8003 F:      drivers/media/dvb-frontends/m88ds3103*
8004
8005 M88RS2000 MEDIA DRIVER
8006 M:      Malcolm Priestley <tvboxspy@gmail.com>
8007 L:      linux-media@vger.kernel.org
8008 W:      https://linuxtv.org
8009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8010 S:      Maintained
8011 F:      drivers/media/dvb-frontends/m88rs2000*
8012
8013 MA901 MASTERKIT USB FM RADIO DRIVER
8014 M:      Alexey Klimov <klimov.linux@gmail.com>
8015 L:      linux-media@vger.kernel.org
8016 T:      git git://linuxtv.org/media_tree.git
8017 S:      Maintained
8018 F:      drivers/media/radio/radio-ma901.c
8019
8020 MAC80211
8021 M:      Johannes Berg <johannes@sipsolutions.net>
8022 L:      linux-wireless@vger.kernel.org
8023 W:      http://wireless.kernel.org/
8024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8026 S:      Maintained
8027 F:      Documentation/networking/mac80211-injection.txt
8028 F:      include/net/mac80211.h
8029 F:      net/mac80211/
8030 F:      drivers/net/wireless/mac80211_hwsim.[ch]
8031
8032 MAILBOX API
8033 M:      Jassi Brar <jassisinghbrar@gmail.com>
8034 L:      linux-kernel@vger.kernel.org
8035 S:      Maintained
8036 F:      drivers/mailbox/
8037 F:      include/linux/mailbox_client.h
8038 F:      include/linux/mailbox_controller.h
8039
8040 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8041 M:      Michael Kerrisk <mtk.manpages@gmail.com>
8042 W:      http://www.kernel.org/doc/man-pages
8043 L:      linux-man@vger.kernel.org
8044 S:      Maintained
8045
8046 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8047 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
8048 L:      linux-mips@linux-mips.org
8049 S:      Maintained
8050 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
8051
8052 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8053 M:      Andrew Lunn <andrew@lunn.ch>
8054 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8055 L:      netdev@vger.kernel.org
8056 S:      Maintained
8057 F:      drivers/net/dsa/mv88e6xxx/
8058 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
8059
8060 MARVELL ARMADA DRM SUPPORT
8061 M:      Russell King <linux@armlinux.org.uk>
8062 S:      Maintained
8063 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8064 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8065 F:      drivers/gpu/drm/armada/
8066 F:      include/uapi/drm/armada_drm.h
8067 F:      Documentation/devicetree/bindings/display/armada/
8068
8069 MARVELL CRYPTO DRIVER
8070 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8071 M:      Arnaud Ebalard <arno@natisbad.org>
8072 F:      drivers/crypto/marvell/
8073 S:      Maintained
8074 L:      linux-crypto@vger.kernel.org
8075
8076 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8077 M:      Mirko Lindner <mlindner@marvell.com>
8078 M:      Stephen Hemminger <stephen@networkplumber.org>
8079 L:      netdev@vger.kernel.org
8080 S:      Maintained
8081 F:      drivers/net/ethernet/marvell/sk*
8082
8083 MARVELL LIBERTAS WIRELESS DRIVER
8084 L:      libertas-dev@lists.infradead.org
8085 S:      Orphan
8086 F:      drivers/net/wireless/marvell/libertas/
8087
8088 MARVELL MV643XX ETHERNET DRIVER
8089 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8090 L:      netdev@vger.kernel.org
8091 S:      Maintained
8092 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
8093 F:      include/linux/mv643xx.h
8094
8095 MARVELL MV88X3310 PHY DRIVER
8096 M:      Russell King <rmk@armlinux.org.uk>
8097 L:      netdev@vger.kernel.org
8098 S:      Maintained
8099 F:      drivers/net/phy/marvell10g.c
8100
8101 MARVELL MVNETA ETHERNET DRIVER
8102 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8103 L:      netdev@vger.kernel.org
8104 S:      Maintained
8105 F:      drivers/net/ethernet/marvell/mvneta.*
8106
8107 MARVELL MWIFIEX WIRELESS DRIVER
8108 M:      Amitkumar Karwar <amitkarwar@gmail.com>
8109 M:      Nishant Sarmukadam <nishants@marvell.com>
8110 M:      Ganapathi Bhat <gbhat@marvell.com>
8111 M:      Xinming Hu <huxm@marvell.com>
8112 L:      linux-wireless@vger.kernel.org
8113 S:      Maintained
8114 F:      drivers/net/wireless/marvell/mwifiex/
8115
8116 MARVELL MWL8K WIRELESS DRIVER
8117 M:      Lennert Buytenhek <buytenh@wantstofly.org>
8118 L:      linux-wireless@vger.kernel.org
8119 S:      Odd Fixes
8120 F:      drivers/net/wireless/marvell/mwl8k.c
8121
8122 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8123 M:      Nicolas Pitre <nico@fluxnic.net>
8124 S:      Odd Fixes
8125 F:      drivers/mmc/host/mvsdio.*
8126
8127 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8128 M:      Hu Ziji <huziji@marvell.com>
8129 L:      linux-mmc@vger.kernel.org
8130 S:      Supported
8131 F:      drivers/mmc/host/sdhci-xenon*
8132 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8133
8134 MATROX FRAMEBUFFER DRIVER
8135 L:      linux-fbdev@vger.kernel.org
8136 S:      Orphan
8137 F:      drivers/video/fbdev/matrox/matroxfb_*
8138 F:      include/uapi/linux/matroxfb.h
8139
8140 MAX16065 HARDWARE MONITOR DRIVER
8141 M:      Guenter Roeck <linux@roeck-us.net>
8142 L:      linux-hwmon@vger.kernel.org
8143 S:      Maintained
8144 F:      Documentation/hwmon/max16065
8145 F:      drivers/hwmon/max16065.c
8146
8147 MAX20751 HARDWARE MONITOR DRIVER
8148 M:      Guenter Roeck <linux@roeck-us.net>
8149 L:      linux-hwmon@vger.kernel.org
8150 S:      Maintained
8151 F:      Documentation/hwmon/max20751
8152 F:      drivers/hwmon/max20751.c
8153
8154 MAX2175 SDR TUNER DRIVER
8155 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8156 L:      linux-media@vger.kernel.org
8157 T:      git git://linuxtv.org/media_tree.git
8158 S:      Maintained
8159 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
8160 F:      Documentation/media/v4l-drivers/max2175.rst
8161 F:      drivers/media/i2c/max2175*
8162 F:      include/uapi/linux/max2175.h
8163
8164 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8165 L:      linux-hwmon@vger.kernel.org
8166 S:      Orphan
8167 F:      Documentation/hwmon/max6650
8168 F:      drivers/hwmon/max6650.c
8169
8170 MAX6697 HARDWARE MONITOR DRIVER
8171 M:      Guenter Roeck <linux@roeck-us.net>
8172 L:      linux-hwmon@vger.kernel.org
8173 S:      Maintained
8174 F:      Documentation/hwmon/max6697
8175 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8176 F:      drivers/hwmon/max6697.c
8177 F:      include/linux/platform_data/max6697.h
8178
8179 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8180 M:      Peter Rosin <peda@axentia.se>
8181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8182 S:      Maintained
8183 F:      Documentation/devicetree/bindings/sound/max9860.txt
8184 F:      sound/soc/codecs/max9860.*
8185
8186 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8187 M:      Krzysztof Kozlowski <krzk@kernel.org>
8188 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8189 L:      linux-pm@vger.kernel.org
8190 S:      Supported
8191 F:      drivers/power/supply/max14577_charger.c
8192 F:      drivers/power/supply/max77693_charger.c
8193
8194 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8195 M:      Javier Martinez Canillas <javier@dowhile0.org>
8196 L:      linux-kernel@vger.kernel.org
8197 S:      Supported
8198 F:      drivers/regulator/max77802-regulator.c
8199 F:      Documentation/devicetree/bindings/*/*max77802.txt
8200 F:      include/dt-bindings/*/*max77802.h
8201
8202 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8203 M:      Chanwoo Choi <cw00.choi@samsung.com>
8204 M:      Krzysztof Kozlowski <krzk@kernel.org>
8205 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8206 L:      linux-kernel@vger.kernel.org
8207 S:      Supported
8208 F:      drivers/*/max14577*.c
8209 F:      drivers/*/max77686*.c
8210 F:      drivers/*/max77693*.c
8211 F:      drivers/extcon/extcon-max14577.c
8212 F:      drivers/extcon/extcon-max77693.c
8213 F:      drivers/rtc/rtc-max77686.c
8214 F:      drivers/clk/clk-max77686.c
8215 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8216 F:      Documentation/devicetree/bindings/*/max77686.txt
8217 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8218 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8219 F:      include/linux/mfd/max14577*.h
8220 F:      include/linux/mfd/max77686*.h
8221 F:      include/linux/mfd/max77693*.h
8222
8223 MAXIRADIO FM RADIO RECEIVER DRIVER
8224 M:      Hans Verkuil <hverkuil@xs4all.nl>
8225 L:      linux-media@vger.kernel.org
8226 T:      git git://linuxtv.org/media_tree.git
8227 W:      https://linuxtv.org
8228 S:      Maintained
8229 F:      drivers/media/radio/radio-maxiradio*
8230
8231 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8232 M:      Peter Rosin <peda@axentia.se>
8233 L:      linux-iio@vger.kernel.org
8234 S:      Maintained
8235 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8236 F:      drivers/iio/potentiometer/mcp4531.c
8237
8238 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8239 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
8240 L:      linux-iio@vger.kernel.org
8241 S:      Maintained
8242 F:      drivers/iio/dac/cio-dac.c
8243
8244 MEDIA DRIVERS FOR RENESAS - DRIF
8245 M:      Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8246 L:      linux-media@vger.kernel.org
8247 L:      linux-renesas-soc@vger.kernel.org
8248 T:      git git://linuxtv.org/media_tree.git
8249 S:      Supported
8250 F:      Documentation/devicetree/bindings/media/renesas,drif.txt
8251 F:      drivers/media/platform/rcar_drif.c
8252
8253 MEDIA DRIVERS FOR FREESCALE IMX
8254 M:      Steve Longerbeam <slongerbeam@gmail.com>
8255 M:      Philipp Zabel <p.zabel@pengutronix.de>
8256 L:      linux-media@vger.kernel.org
8257 T:      git git://linuxtv.org/media_tree.git
8258 S:      Maintained
8259 F:      Documentation/devicetree/bindings/media/imx.txt
8260 F:      Documentation/media/v4l-drivers/imx.rst
8261 F:      drivers/staging/media/imx/
8262 F:      include/linux/imx-media.h
8263 F:      include/media/imx.h
8264
8265 MEDIA DRIVERS FOR RENESAS - FCP
8266 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8267 L:      linux-media@vger.kernel.org
8268 L:      linux-renesas-soc@vger.kernel.org
8269 T:      git git://linuxtv.org/media_tree.git
8270 S:      Supported
8271 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8272 F:      drivers/media/platform/rcar-fcp.c
8273 F:      include/media/rcar-fcp.h
8274
8275 MEDIA DRIVERS FOR RENESAS - FDP1
8276 M:      Kieran Bingham <kieran@bingham.xyz>
8277 L:      linux-media@vger.kernel.org
8278 L:      linux-renesas-soc@vger.kernel.org
8279 T:      git git://linuxtv.org/media_tree.git
8280 S:      Supported
8281 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8282 F:      drivers/media/platform/rcar_fdp1.c
8283
8284 MEDIA DRIVERS FOR RENESAS - VIN
8285 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
8286 L:      linux-media@vger.kernel.org
8287 L:      linux-renesas-soc@vger.kernel.org
8288 T:      git git://linuxtv.org/media_tree.git
8289 S:      Supported
8290 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8291 F:      drivers/media/platform/rcar-vin/
8292
8293 MEDIA DRIVERS FOR RENESAS - VSP1
8294 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8295 L:      linux-media@vger.kernel.org
8296 L:      linux-renesas-soc@vger.kernel.org
8297 T:      git git://linuxtv.org/media_tree.git
8298 S:      Supported
8299 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8300 F:      drivers/media/platform/vsp1/
8301
8302 MEDIA DRIVERS FOR HELENE
8303 M:      Abylay Ospan <aospan@netup.ru>
8304 L:      linux-media@vger.kernel.org
8305 W:      https://linuxtv.org
8306 W:      http://netup.tv/
8307 T:      git git://linuxtv.org/media_tree.git
8308 S:      Supported
8309 F:      drivers/media/dvb-frontends/helene*
8310
8311 MEDIA DRIVERS FOR ASCOT2E
8312 M:      Sergey Kozlov <serjk@netup.ru>
8313 M:      Abylay Ospan <aospan@netup.ru>
8314 L:      linux-media@vger.kernel.org
8315 W:      https://linuxtv.org
8316 W:      http://netup.tv/
8317 T:      git git://linuxtv.org/media_tree.git
8318 S:      Supported
8319 F:      drivers/media/dvb-frontends/ascot2e*
8320
8321 MEDIA DRIVERS FOR CXD2841ER
8322 M:      Sergey Kozlov <serjk@netup.ru>
8323 M:      Abylay Ospan <aospan@netup.ru>
8324 L:      linux-media@vger.kernel.org
8325 W:      https://linuxtv.org
8326 W:      http://netup.tv/
8327 T:      git git://linuxtv.org/media_tree.git
8328 S:      Supported
8329 F:      drivers/media/dvb-frontends/cxd2841er*
8330
8331 MEDIA DRIVERS FOR HORUS3A
8332 M:      Sergey Kozlov <serjk@netup.ru>
8333 M:      Abylay Ospan <aospan@netup.ru>
8334 L:      linux-media@vger.kernel.org
8335 W:      https://linuxtv.org
8336 W:      http://netup.tv/
8337 T:      git git://linuxtv.org/media_tree.git
8338 S:      Supported
8339 F:      drivers/media/dvb-frontends/horus3a*
8340
8341 MEDIA DRIVERS FOR LNBH25
8342 M:      Sergey Kozlov <serjk@netup.ru>
8343 M:      Abylay Ospan <aospan@netup.ru>
8344 L:      linux-media@vger.kernel.org
8345 W:      https://linuxtv.org
8346 W:      http://netup.tv/
8347 T:      git git://linuxtv.org/media_tree.git
8348 S:      Supported
8349 F:      drivers/media/dvb-frontends/lnbh25*
8350
8351 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8352 M:      Sergey Kozlov <serjk@netup.ru>
8353 M:      Abylay Ospan <aospan@netup.ru>
8354 L:      linux-media@vger.kernel.org
8355 W:      https://linuxtv.org
8356 W:      http://netup.tv/
8357 T:      git git://linuxtv.org/media_tree.git
8358 S:      Supported
8359 F:      drivers/media/pci/netup_unidvb/*
8360
8361 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8362 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
8363 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
8364 P:      LinuxTV.org Project
8365 L:      linux-media@vger.kernel.org
8366 W:      https://linuxtv.org
8367 Q:      http://patchwork.kernel.org/project/linux-media/list/
8368 T:      git git://linuxtv.org/media_tree.git
8369 S:      Maintained
8370 F:      Documentation/devicetree/bindings/media/
8371 F:      Documentation/media/
8372 F:      drivers/media/
8373 F:      drivers/staging/media/
8374 F:      include/linux/platform_data/media/
8375 F:      include/media/
8376 F:      include/uapi/linux/dvb/
8377 F:      include/uapi/linux/videodev2.h
8378 F:      include/uapi/linux/media.h
8379 F:      include/uapi/linux/v4l2-*
8380 F:      include/uapi/linux/meye.h
8381 F:      include/uapi/linux/ivtv*
8382 F:      include/uapi/linux/uvcvideo.h
8383
8384 MEDIATEK ETHERNET DRIVER
8385 M:      Felix Fietkau <nbd@openwrt.org>
8386 M:      John Crispin <blogic@openwrt.org>
8387 L:      netdev@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/net/ethernet/mediatek/
8390
8391 MEDIATEK JPEG DRIVER
8392 M:      Rick Chang <rick.chang@mediatek.com>
8393 M:      Bin Liu <bin.liu@mediatek.com>
8394 S:      Supported
8395 F:      drivers/media/platform/mtk-jpeg/
8396 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8397
8398 MEDIATEK MEDIA DRIVER
8399 M:      Tiffany Lin <tiffany.lin@mediatek.com>
8400 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8401 S:      Supported
8402 F:      drivers/media/platform/mtk-vcodec/
8403 F:      drivers/media/platform/mtk-vpu/
8404 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8405 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8406
8407 MEDIATEK MDP DRIVER
8408 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8409 M:      Houlong Wei <houlong.wei@mediatek.com>
8410 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8411 S:      Supported
8412 F:      drivers/media/platform/mtk-mdp/
8413 F:      drivers/media/platform/mtk-vpu/
8414 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8415
8416 MEDIATEK MT7601U WIRELESS LAN DRIVER
8417 M:      Jakub Kicinski <kubakici@wp.pl>
8418 L:      linux-wireless@vger.kernel.org
8419 S:      Maintained
8420 F:      drivers/net/wireless/mediatek/mt7601u/
8421
8422 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8423 M:      Sean Wang <sean.wang@mediatek.com>
8424 S:      Maintained
8425 F:      drivers/char/hw_random/mtk-rng.c
8426
8427 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8428 M:      Peter Senna Tschudin <peter.senna@collabora.com>
8429 M:      Martin Donnelly <martin.donnelly@ge.com>
8430 M:      Martyn Welch <martyn.welch@collabora.co.uk>
8431 S:      Maintained
8432 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8433 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8434
8435 MEGARAID SCSI/SAS DRIVERS
8436 M:      Kashyap Desai <kashyap.desai@broadcom.com>
8437 M:      Sumit Saxena <sumit.saxena@broadcom.com>
8438 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8439 L:      megaraidlinux.pdl@broadcom.com
8440 L:      linux-scsi@vger.kernel.org
8441 W:      http://www.avagotech.com/support/
8442 S:      Maintained
8443 F:      Documentation/scsi/megaraid.txt
8444 F:      drivers/scsi/megaraid.*
8445 F:      drivers/scsi/megaraid/
8446
8447 MELFAS MIP4 TOUCHSCREEN DRIVER
8448 M:      Sangwon Jee <jeesw@melfas.com>
8449 W:      http://www.melfas.com
8450 S:      Supported
8451 F:      drivers/input/touchscreen/melfas_mip4.c
8452 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8453
8454 MELLANOX ETHERNET DRIVER (mlx4_en)
8455 M:      Tariq Toukan <tariqt@mellanox.com>
8456 L:      netdev@vger.kernel.org
8457 S:      Supported
8458 W:      http://www.mellanox.com
8459 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8460 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8461
8462 MELLANOX ETHERNET DRIVER (mlx5e)
8463 M:      Saeed Mahameed <saeedm@mellanox.com>
8464 L:      netdev@vger.kernel.org
8465 S:      Supported
8466 W:      http://www.mellanox.com
8467 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8468 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8469
8470 MELLANOX ETHERNET INNOVA DRIVER
8471 M:      Ilan Tayari <ilant@mellanox.com>
8472 R:      Boris Pismenny <borisp@mellanox.com>
8473 L:      netdev@vger.kernel.org
8474 S:      Supported
8475 W:      http://www.mellanox.com
8476 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8477 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8478 F:      include/linux/mlx5/mlx5_ifc_fpga.h
8479
8480 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8481 M:      Ilan Tayari <ilant@mellanox.com>
8482 R:      Boris Pismenny <borisp@mellanox.com>
8483 L:      netdev@vger.kernel.org
8484 S:      Supported
8485 W:      http://www.mellanox.com
8486 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8487 F:      drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8488 F:      drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8489
8490 MELLANOX ETHERNET SWITCH DRIVERS
8491 M:      Jiri Pirko <jiri@mellanox.com>
8492 M:      Ido Schimmel <idosch@mellanox.com>
8493 L:      netdev@vger.kernel.org
8494 S:      Supported
8495 W:      http://www.mellanox.com
8496 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8497 F:      drivers/net/ethernet/mellanox/mlxsw/
8498
8499 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8500 M:      Yotam Gigi <yotamg@mellanox.com>
8501 L:      netdev@vger.kernel.org
8502 S:      Supported
8503 W:      http://www.mellanox.com
8504 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8505 F:      drivers/net/ethernet/mellanox/mlxfw/
8506
8507 MELLANOX MLXCPLD I2C AND MUX DRIVER
8508 M:      Vadim Pasternak <vadimp@mellanox.com>
8509 M:      Michael Shych <michaelsh@mellanox.com>
8510 L:      linux-i2c@vger.kernel.org
8511 S:      Supported
8512 F:      drivers/i2c/busses/i2c-mlxcpld.c
8513 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8514 F:      Documentation/i2c/busses/i2c-mlxcpld
8515
8516 MELLANOX MLXCPLD LED DRIVER
8517 M:      Vadim Pasternak <vadimp@mellanox.com>
8518 L:      linux-leds@vger.kernel.org
8519 S:      Supported
8520 F:      drivers/leds/leds-mlxcpld.c
8521 F:      Documentation/leds/leds-mlxcpld.txt
8522
8523 MELLANOX PLATFORM DRIVER
8524 M:      Vadim Pasternak <vadimp@mellanox.com>
8525 L:      platform-driver-x86@vger.kernel.org
8526 S:      Supported
8527 F:      drivers/platform/x86/mlx-platform.c
8528
8529 MELLANOX MLX CPLD HOTPLUG DRIVER
8530 M:      Vadim Pasternak <vadimp@mellanox.com>
8531 L:      platform-driver-x86@vger.kernel.org
8532 S:      Supported
8533 F:      drivers/platform/x86/mlxcpld-hotplug.c
8534 F:      include/linux/platform_data/mlxcpld-hotplug.h
8535
8536 SOFT-ROCE DRIVER (rxe)
8537 M:      Moni Shoua <monis@mellanox.com>
8538 L:      linux-rdma@vger.kernel.org
8539 S:      Supported
8540 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
8541 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8542 F:      drivers/infiniband/sw/rxe/
8543 F:      include/uapi/rdma/rdma_user_rxe.h
8544
8545 MEMBARRIER SUPPORT
8546 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8547 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8548 L:      linux-kernel@vger.kernel.org
8549 S:      Supported
8550 F:      kernel/membarrier.c
8551 F:      include/uapi/linux/membarrier.h
8552
8553 MEMORY MANAGEMENT
8554 L:      linux-mm@kvack.org
8555 W:      http://www.linux-mm.org
8556 S:      Maintained
8557 F:      include/linux/mm.h
8558 F:      include/linux/gfp.h
8559 F:      include/linux/mmzone.h
8560 F:      include/linux/memory_hotplug.h
8561 F:      include/linux/vmalloc.h
8562 F:      mm/
8563
8564 MEMORY TECHNOLOGY DEVICES (MTD)
8565 M:      David Woodhouse <dwmw2@infradead.org>
8566 M:      Brian Norris <computersforpeace@gmail.com>
8567 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8568 M:      Marek Vasut <marek.vasut@gmail.com>
8569 M:      Richard Weinberger <richard@nod.at>
8570 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8571 L:      linux-mtd@lists.infradead.org
8572 W:      http://www.linux-mtd.infradead.org/
8573 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8574 T:      git git://git.infradead.org/linux-mtd.git master
8575 T:      git git://git.infradead.org/l2-mtd.git master
8576 S:      Maintained
8577 F:      Documentation/devicetree/bindings/mtd/
8578 F:      drivers/mtd/
8579 F:      include/linux/mtd/
8580 F:      include/uapi/mtd/
8581
8582 MEN A21 WATCHDOG DRIVER
8583 M:      Johannes Thumshirn <morbidrsa@gmail.com>
8584 L:      linux-watchdog@vger.kernel.org
8585 S:      Maintained
8586 F:      drivers/watchdog/mena21_wdt.c
8587
8588 MEN CHAMELEON BUS (mcb)
8589 M:      Johannes Thumshirn <morbidrsa@gmail.com>
8590 S:      Maintained
8591 F:      drivers/mcb/
8592 F:      include/linux/mcb.h
8593 F:      Documentation/men-chameleon-bus.txt
8594
8595 MEN F21BMC (Board Management Controller)
8596 M:      Andreas Werner <andreas.werner@men.de>
8597 S:      Supported
8598 F:      drivers/mfd/menf21bmc.c
8599 F:      drivers/watchdog/menf21bmc_wdt.c
8600 F:      drivers/leds/leds-menf21bmc.c
8601 F:      drivers/hwmon/menf21bmc_hwmon.c
8602 F:      Documentation/hwmon/menf21bmc
8603
8604 METAG ARCHITECTURE
8605 M:      James Hogan <james.hogan@imgtec.com>
8606 L:      linux-metag@vger.kernel.org
8607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8608 S:      Odd Fixes
8609 F:      arch/metag/
8610 F:      Documentation/metag/
8611 F:      Documentation/devicetree/bindings/metag/
8612 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
8613 F:      drivers/clocksource/metag_generic.c
8614 F:      drivers/irqchip/irq-metag.c
8615 F:      drivers/irqchip/irq-metag-ext.c
8616 F:      drivers/tty/metag_da.c
8617
8618 MICROBLAZE ARCHITECTURE
8619 M:      Michal Simek <monstr@monstr.eu>
8620 W:      http://www.monstr.eu/fdt/
8621 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
8622 S:      Supported
8623 F:      arch/microblaze/
8624
8625 MICROCHIP / ATMEL AT91 SERIAL DRIVER
8626 M:      Richard Genoud <richard.genoud@gmail.com>
8627 S:      Maintained
8628 F:      drivers/tty/serial/atmel_serial.c
8629 F:      drivers/tty/serial/atmel_serial.h
8630
8631 MICROCHIP / ATMEL DMA DRIVER
8632 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
8633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8634 L:      dmaengine@vger.kernel.org
8635 S:      Supported
8636 F:      drivers/dma/at_hdmac.c
8637 F:      drivers/dma/at_hdmac_regs.h
8638 F:      include/linux/platform_data/dma-atmel.h
8639
8640 MICROCHIP / ATMEL ISC DRIVER
8641 M:      Songjun Wu <songjun.wu@microchip.com>
8642 L:      linux-media@vger.kernel.org
8643 S:      Supported
8644 F:      drivers/media/platform/atmel/atmel-isc.c
8645 F:      drivers/media/platform/atmel/atmel-isc-regs.h
8646 F:      devicetree/bindings/media/atmel-isc.txt
8647
8648 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
8649 M:      Woojung Huh <Woojung.Huh@microchip.com>
8650 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
8651 L:      netdev@vger.kernel.org
8652 S:      Maintained
8653 F:      net/dsa/tag_ksz.c
8654 F:      drivers/net/dsa/microchip/*
8655 F:      include/linux/platform_data/microchip-ksz.h
8656 F:      Documentation/devicetree/bindings/net/dsa/ksz.txt
8657
8658 MICROCHIP USB251XB DRIVER
8659 M:      Richard Leitner <richard.leitner@skidata.com>
8660 L:      linux-usb@vger.kernel.org
8661 S:      Maintained
8662 F:      drivers/usb/misc/usb251xb.c
8663 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
8664
8665 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8666 M:      Chen Yu <yu.c.chen@intel.com>
8667 L:      platform-driver-x86@vger.kernel.org
8668 S:      Supported
8669 F:      drivers/platform/x86/surfacepro3_button.c
8670
8671 MICROTEK X6 SCANNER
8672 M:      Oliver Neukum <oliver@neukum.org>
8673 S:      Maintained
8674 F:      drivers/usb/image/microtek.*
8675
8676 MIPS
8677 M:      Ralf Baechle <ralf@linux-mips.org>
8678 L:      linux-mips@linux-mips.org
8679 W:      http://www.linux-mips.org/
8680 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
8681 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
8682 S:      Supported
8683 F:      Documentation/devicetree/bindings/mips/
8684 F:      Documentation/mips/
8685 F:      arch/mips/
8686
8687 MIPS/LOONGSON1 ARCHITECTURE
8688 M:      Keguang Zhang <keguang.zhang@gmail.com>
8689 L:      linux-mips@linux-mips.org
8690 S:      Maintained
8691 F:      arch/mips/loongson32/
8692 F:      arch/mips/include/asm/mach-loongson32/
8693 F:      drivers/*/*loongson1*
8694 F:      drivers/*/*/*loongson1*
8695
8696 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8697 M:      Hans Verkuil <hverkuil@xs4all.nl>
8698 L:      linux-media@vger.kernel.org
8699 T:      git git://linuxtv.org/media_tree.git
8700 W:      https://linuxtv.org
8701 S:      Odd Fixes
8702 F:      drivers/media/radio/radio-miropcm20*
8703
8704 MELLANOX MLX4 core VPI driver
8705 M:      Tariq Toukan <tariqt@mellanox.com>
8706 L:      netdev@vger.kernel.org
8707 L:      linux-rdma@vger.kernel.org
8708 W:      http://www.mellanox.com
8709 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8710 S:      Supported
8711 F:      drivers/net/ethernet/mellanox/mlx4/
8712 F:      include/linux/mlx4/
8713
8714 MELLANOX MLX4 IB driver
8715 M:      Yishai Hadas <yishaih@mellanox.com>
8716 L:      linux-rdma@vger.kernel.org
8717 W:      http://www.mellanox.com
8718 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8719 S:      Supported
8720 F:      drivers/infiniband/hw/mlx4/
8721 F:      include/linux/mlx4/
8722 F:      include/uapi/rdma/mlx4-abi.h
8723
8724 MELLANOX MLX5 core VPI driver
8725 M:      Saeed Mahameed <saeedm@mellanox.com>
8726 M:      Matan Barak <matanb@mellanox.com>
8727 M:      Leon Romanovsky <leonro@mellanox.com>
8728 L:      netdev@vger.kernel.org
8729 L:      linux-rdma@vger.kernel.org
8730 W:      http://www.mellanox.com
8731 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8732 S:      Supported
8733 F:      drivers/net/ethernet/mellanox/mlx5/core/
8734 F:      include/linux/mlx5/
8735
8736 MELLANOX MLX5 IB driver
8737 M:      Matan Barak <matanb@mellanox.com>
8738 M:      Leon Romanovsky <leonro@mellanox.com>
8739 L:      linux-rdma@vger.kernel.org
8740 W:      http://www.mellanox.com
8741 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8742 S:      Supported
8743 F:      drivers/infiniband/hw/mlx5/
8744 F:      include/linux/mlx5/
8745 F:      include/uapi/rdma/mlx5-abi.h
8746
8747 MELEXIS MLX90614 DRIVER
8748 M:      Crt Mori <cmo@melexis.com>
8749 L:      linux-iio@vger.kernel.org
8750 W:      http://www.melexis.com
8751 S:      Supported
8752 F:      drivers/iio/temperature/mlx90614.c
8753
8754 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8755 M:      Don Brace <don.brace@microsemi.com>
8756 L:      esc.storagedev@microsemi.com
8757 L:      linux-scsi@vger.kernel.org
8758 S:      Supported
8759 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
8760 F:      drivers/scsi/smartpqi/Kconfig
8761 F:      drivers/scsi/smartpqi/Makefile
8762 F:      include/linux/cciss*.h
8763 F:      include/uapi/linux/cciss*.h
8764 F:      Documentation/scsi/smartpqi.txt
8765
8766 MN88472 MEDIA DRIVER
8767 M:      Antti Palosaari <crope@iki.fi>
8768 L:      linux-media@vger.kernel.org
8769 W:      https://linuxtv.org
8770 W:      http://palosaari.fi/linux/
8771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8772 S:      Maintained
8773 F:      drivers/media/dvb-frontends/mn88472*
8774
8775 MN88473 MEDIA DRIVER
8776 M:      Antti Palosaari <crope@iki.fi>
8777 L:      linux-media@vger.kernel.org
8778 W:      https://linuxtv.org
8779 W:      http://palosaari.fi/linux/
8780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8781 S:      Maintained
8782 F:      drivers/media/dvb-frontends/mn88473*
8783
8784 MODULE SUPPORT
8785 M:      Jessica Yu <jeyu@kernel.org>
8786 M:      Rusty Russell <rusty@rustcorp.com.au>
8787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
8788 S:      Maintained
8789 F:      include/linux/module.h
8790 F:      kernel/module.c
8791
8792 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
8793 W:      http://popies.net/meye/
8794 S:      Orphan
8795 F:      Documentation/media/v4l-drivers/meye*
8796 F:      drivers/media/pci/meye/
8797 F:      include/uapi/linux/meye.h
8798
8799 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
8800 M:      Jiri Slaby <jirislaby@gmail.com>
8801 S:      Maintained
8802 F:      Documentation/serial/moxa-smartio
8803 F:      drivers/tty/mxser.*
8804
8805 MR800 AVERMEDIA USB FM RADIO DRIVER
8806 M:      Alexey Klimov <klimov.linux@gmail.com>
8807 L:      linux-media@vger.kernel.org
8808 T:      git git://linuxtv.org/media_tree.git
8809 S:      Maintained
8810 F:      drivers/media/radio/radio-mr800.c
8811
8812 MRF24J40 IEEE 802.15.4 RADIO DRIVER
8813 M:      Alan Ott <alan@signal11.us>
8814 L:      linux-wpan@vger.kernel.org
8815 S:      Maintained
8816 F:      drivers/net/ieee802154/mrf24j40.c
8817 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
8818
8819 MSI LAPTOP SUPPORT
8820 M:      "Lee, Chun-Yi" <jlee@suse.com>
8821 L:      platform-driver-x86@vger.kernel.org
8822 S:      Maintained
8823 F:      drivers/platform/x86/msi-laptop.c
8824
8825 MSI WMI SUPPORT
8826 L:      platform-driver-x86@vger.kernel.org
8827 S:      Orphan
8828 F:      drivers/platform/x86/msi-wmi.c
8829
8830 MSI001 MEDIA DRIVER
8831 M:      Antti Palosaari <crope@iki.fi>
8832 L:      linux-media@vger.kernel.org
8833 W:      https://linuxtv.org
8834 W:      http://palosaari.fi/linux/
8835 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8836 T:      git git://linuxtv.org/anttip/media_tree.git
8837 S:      Maintained
8838 F:      drivers/media/tuners/msi001*
8839
8840 MSI2500 MEDIA DRIVER
8841 M:      Antti Palosaari <crope@iki.fi>
8842 L:      linux-media@vger.kernel.org
8843 W:      https://linuxtv.org
8844 W:      http://palosaari.fi/linux/
8845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8846 T:      git git://linuxtv.org/anttip/media_tree.git
8847 S:      Maintained
8848 F:      drivers/media/usb/msi2500/
8849
8850 MSYSTEMS DISKONCHIP G3 MTD DRIVER
8851 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8852 L:      linux-mtd@lists.infradead.org
8853 S:      Maintained
8854 F:      drivers/mtd/devices/docg3*
8855
8856 MT9M032 APTINA SENSOR DRIVER
8857 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8858 L:      linux-media@vger.kernel.org
8859 T:      git git://linuxtv.org/media_tree.git
8860 S:      Maintained
8861 F:      drivers/media/i2c/mt9m032.c
8862 F:      include/media/i2c/mt9m032.h
8863
8864 MT9P031 APTINA CAMERA SENSOR
8865 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8866 L:      linux-media@vger.kernel.org
8867 T:      git git://linuxtv.org/media_tree.git
8868 S:      Maintained
8869 F:      drivers/media/i2c/mt9p031.c
8870 F:      include/media/i2c/mt9p031.h
8871
8872 MT9T001 APTINA CAMERA SENSOR
8873 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8874 L:      linux-media@vger.kernel.org
8875 T:      git git://linuxtv.org/media_tree.git
8876 S:      Maintained
8877 F:      drivers/media/i2c/mt9t001.c
8878 F:      include/media/i2c/mt9t001.h
8879
8880 MT9V032 APTINA CAMERA SENSOR
8881 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8882 L:      linux-media@vger.kernel.org
8883 T:      git git://linuxtv.org/media_tree.git
8884 S:      Maintained
8885 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
8886 F:      drivers/media/i2c/mt9v032.c
8887 F:      include/media/i2c/mt9v032.h
8888
8889 MULTIFUNCTION DEVICES (MFD)
8890 M:      Lee Jones <lee.jones@linaro.org>
8891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
8892 S:      Supported
8893 F:      Documentation/devicetree/bindings/mfd/
8894 F:      drivers/mfd/
8895 F:      include/linux/mfd/
8896 F:      include/dt-bindings/mfd/
8897
8898 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8899 M:      Ulf Hansson <ulf.hansson@linaro.org>
8900 L:      linux-mmc@vger.kernel.org
8901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
8902 S:      Maintained
8903 F:      Documentation/devicetree/bindings/mmc/
8904 F:      drivers/mmc/
8905 F:      include/linux/mmc/
8906 F:      include/uapi/linux/mmc/
8907
8908 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8909 S:      Orphan
8910 F:      drivers/mmc/host/mmc_spi.c
8911 F:      include/linux/spi/mmc_spi.h
8912
8913 MULTIPLEXER SUBSYSTEM
8914 M:      Peter Rosin <peda@axentia.se>
8915 S:      Maintained
8916 F:      Documentation/ABI/testing/mux/sysfs-class-mux*
8917 F:      Documentation/devicetree/bindings/mux/
8918 F:      include/linux/dt-bindings/mux/
8919 F:      include/linux/mux/
8920 F:      drivers/mux/
8921
8922 MULTISOUND SOUND DRIVER
8923 M:      Andrew Veliath <andrewtv@usa.net>
8924 S:      Maintained
8925 F:      Documentation/sound/oss/MultiSound
8926 F:      sound/oss/msnd*
8927
8928 MULTITECH MULTIPORT CARD (ISICOM)
8929 S:      Orphan
8930 F:      drivers/tty/isicom.c
8931 F:      include/linux/isicom.h
8932
8933 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8934 M:      Bin Liu <b-liu@ti.com>
8935 L:      linux-usb@vger.kernel.org
8936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8937 S:      Maintained
8938 F:      drivers/usb/musb/
8939
8940 MXL5007T MEDIA DRIVER
8941 M:      Michael Krufky <mkrufky@linuxtv.org>
8942 L:      linux-media@vger.kernel.org
8943 W:      https://linuxtv.org
8944 W:      http://github.com/mkrufky
8945 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8946 T:      git git://linuxtv.org/mkrufky/tuners.git
8947 S:      Maintained
8948 F:      drivers/media/tuners/mxl5007t.*
8949
8950 MXSFB DRM DRIVER
8951 M:      Marek Vasut <marex@denx.de>
8952 S:      Supported
8953 F:      drivers/gpu/drm/mxsfb/
8954 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
8955
8956 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8957 M:      Hyong-Youb Kim <hykim@myri.com>
8958 L:      netdev@vger.kernel.org
8959 W:      https://www.myricom.com/support/downloads/myri10ge.html
8960 S:      Supported
8961 F:      drivers/net/ethernet/myricom/myri10ge/
8962
8963 NAND FLASH SUBSYSTEM
8964 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8965 R:      Richard Weinberger <richard@nod.at>
8966 L:      linux-mtd@lists.infradead.org
8967 W:      http://www.linux-mtd.infradead.org/
8968 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8969 T:      git git://git.infradead.org/linux-mtd.git nand/fixes
8970 T:      git git://git.infradead.org/l2-mtd.git nand/next
8971 S:      Maintained
8972 F:      drivers/mtd/nand/
8973 F:      include/linux/mtd/nand*.h
8974
8975 NATSEMI ETHERNET DRIVER (DP8381x)
8976 S:      Orphan
8977 F:      drivers/net/ethernet/natsemi/natsemi.c
8978
8979 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8980 M:      Daniel Mack <zonque@gmail.com>
8981 S:      Maintained
8982 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8983 W:      http://www.native-instruments.com
8984 F:      sound/usb/caiaq/
8985
8986 NCP FILESYSTEM
8987 M:      Petr Vandrovec <petr@vandrovec.name>
8988 S:      Odd Fixes
8989 F:      fs/ncpfs/
8990
8991 NCR 5380 SCSI DRIVERS
8992 M:      Finn Thain <fthain@telegraphics.com.au>
8993 M:      Michael Schmitz <schmitzmic@gmail.com>
8994 L:      linux-scsi@vger.kernel.org
8995 S:      Maintained
8996 F:      Documentation/scsi/g_NCR5380.txt
8997 F:      drivers/scsi/NCR5380.*
8998 F:      drivers/scsi/arm/cumana_1.c
8999 F:      drivers/scsi/arm/oak.c
9000 F:      drivers/scsi/atari_scsi.*
9001 F:      drivers/scsi/dmx3191d.c
9002 F:      drivers/scsi/g_NCR5380.*
9003 F:      drivers/scsi/mac_scsi.*
9004 F:      drivers/scsi/sun3_scsi.*
9005 F:      drivers/scsi/sun3_scsi_vme.c
9006
9007 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9008 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9009 L:      linux-scsi@vger.kernel.org
9010 S:      Maintained
9011 F:      drivers/scsi/NCR_D700.*
9012
9013 NCT6775 HARDWARE MONITOR DRIVER
9014 M:      Guenter Roeck <linux@roeck-us.net>
9015 L:      linux-hwmon@vger.kernel.org
9016 S:      Maintained
9017 F:      Documentation/hwmon/nct6775
9018 F:      drivers/hwmon/nct6775.c
9019
9020 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9021 M:      Faisal Latif <faisal.latif@intel.com>
9022 L:      linux-rdma@vger.kernel.org
9023 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9024 S:      Supported
9025 F:      drivers/infiniband/hw/nes/
9026 F:      include/uapi/rdma/nes-abi.h
9027
9028 NETEM NETWORK EMULATOR
9029 M:      Stephen Hemminger <stephen@networkplumber.org>
9030 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
9031 S:      Maintained
9032 F:      net/sched/sch_netem.c
9033
9034 NETERION 10GbE DRIVERS (s2io/vxge)
9035 M:      Jon Mason <jdmason@kudzu.us>
9036 L:      netdev@vger.kernel.org
9037 S:      Supported
9038 F:      Documentation/networking/s2io.txt
9039 F:      Documentation/networking/vxge.txt
9040 F:      drivers/net/ethernet/neterion/
9041
9042 NETFILTER
9043 M:      Pablo Neira Ayuso <pablo@netfilter.org>
9044 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9045 M:      Florian Westphal <fw@strlen.de>
9046 L:      netfilter-devel@vger.kernel.org
9047 L:      coreteam@netfilter.org
9048 W:      http://www.netfilter.org/
9049 W:      http://www.iptables.org/
9050 W:      http://www.nftables.org/
9051 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
9052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9054 S:      Maintained
9055 F:      include/linux/netfilter*
9056 F:      include/linux/netfilter/
9057 F:      include/net/netfilter/
9058 F:      include/uapi/linux/netfilter*
9059 F:      include/uapi/linux/netfilter/
9060 F:      net/*/netfilter.c
9061 F:      net/*/netfilter/
9062 F:      net/netfilter/
9063 F:      net/bridge/br_netfilter*.c
9064
9065 NETLABEL
9066 M:      Paul Moore <paul@paul-moore.com>
9067 W:      http://netlabel.sf.net
9068 L:      netdev@vger.kernel.org
9069 S:      Maintained
9070 F:      Documentation/netlabel/
9071 F:      include/net/netlabel.h
9072 F:      net/netlabel/
9073
9074 NETROM NETWORK LAYER
9075 M:      Ralf Baechle <ralf@linux-mips.org>
9076 L:      linux-hams@vger.kernel.org
9077 W:      http://www.linux-ax25.org/
9078 S:      Maintained
9079 F:      include/net/netrom.h
9080 F:      include/uapi/linux/netrom.h
9081 F:      net/netrom/
9082
9083 NETRONOME ETHERNET DRIVERS
9084 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
9085 L:      oss-drivers@netronome.com
9086 S:      Maintained
9087 F:      drivers/net/ethernet/netronome/
9088
9089 NETWORK BLOCK DEVICE (NBD)
9090 M:      Josef Bacik <jbacik@fb.com>
9091 S:      Maintained
9092 L:      linux-block@vger.kernel.org
9093 L:      nbd-general@lists.sourceforge.net
9094 F:      Documentation/blockdev/nbd.txt
9095 F:      drivers/block/nbd.c
9096 F:      include/uapi/linux/nbd.h
9097
9098 NETWORK DROP MONITOR
9099 M:      Neil Horman <nhorman@tuxdriver.com>
9100 L:      netdev@vger.kernel.org
9101 S:      Maintained
9102 W:      https://fedorahosted.org/dropwatch/
9103 F:      net/core/drop_monitor.c
9104
9105 NETWORKING [DSA]
9106 M:      Andrew Lunn <andrew@lunn.ch>
9107 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9108 M:      Florian Fainelli <f.fainelli@gmail.com>
9109 S:      Maintained
9110 F:      net/dsa/
9111 F:      include/net/dsa.h
9112 F:      drivers/net/dsa/
9113
9114 NETWORKING [GENERAL]
9115 M:      "David S. Miller" <davem@davemloft.net>
9116 L:      netdev@vger.kernel.org
9117 W:      http://www.linuxfoundation.org/en/Net
9118 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9121 B:      mailto:netdev@vger.kernel.org
9122 S:      Maintained
9123 F:      net/
9124 F:      include/net/
9125 F:      include/linux/in.h
9126 F:      include/linux/net.h
9127 F:      include/linux/netdevice.h
9128 F:      include/uapi/linux/in.h
9129 F:      include/uapi/linux/net.h
9130 F:      include/uapi/linux/netdevice.h
9131 F:      include/uapi/linux/net_namespace.h
9132 F:      tools/net/
9133 F:      tools/testing/selftests/net/
9134 F:      lib/random32.c
9135
9136 NETWORKING [IPv4/IPv6]
9137 M:      "David S. Miller" <davem@davemloft.net>
9138 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9139 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9140 L:      netdev@vger.kernel.org
9141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9142 S:      Maintained
9143 F:      net/ipv4/
9144 F:      net/ipv6/
9145 F:      include/net/ip*
9146 F:      arch/x86/net/*
9147
9148 NETWORKING [TLS]
9149 M:      Ilya Lesokhin <ilyal@mellanox.com>
9150 M:      Aviad Yehezkel <aviadye@mellanox.com>
9151 M:      Dave Watson <davejwatson@fb.com>
9152 L:      netdev@vger.kernel.org
9153 S:      Maintained
9154 F:      net/tls/*
9155 F:      include/uapi/linux/tls.h
9156 F:      include/net/tls.h
9157
9158 NETWORKING [IPSEC]
9159 M:      Steffen Klassert <steffen.klassert@secunet.com>
9160 M:      Herbert Xu <herbert@gondor.apana.org.au>
9161 M:      "David S. Miller" <davem@davemloft.net>
9162 L:      netdev@vger.kernel.org
9163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9165 S:      Maintained
9166 F:      net/core/flow.c
9167 F:      net/xfrm/
9168 F:      net/key/
9169 F:      net/ipv4/xfrm*
9170 F:      net/ipv4/esp4*
9171 F:      net/ipv4/ah4.c
9172 F:      net/ipv4/ipcomp.c
9173 F:      net/ipv4/ip_vti.c
9174 F:      net/ipv6/xfrm*
9175 F:      net/ipv6/esp6*
9176 F:      net/ipv6/ah6.c
9177 F:      net/ipv6/ipcomp6.c
9178 F:      net/ipv6/ip6_vti.c
9179 F:      include/uapi/linux/xfrm.h
9180 F:      include/net/xfrm.h
9181
9182 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
9183 M:      Paul Moore <paul@paul-moore.com>
9184 L:      netdev@vger.kernel.org
9185 S:      Maintained
9186
9187 NETWORKING [WIRELESS]
9188 L:      linux-wireless@vger.kernel.org
9189 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9190
9191 NETWORKING DRIVERS
9192 L:      netdev@vger.kernel.org
9193 W:      http://www.linuxfoundation.org/en/Net
9194 Q:      http://patchwork.ozlabs.org/project/netdev/list/
9195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9197 S:      Odd Fixes
9198 F:      Documentation/devicetree/bindings/net/
9199 F:      drivers/net/
9200 F:      include/linux/if_*
9201 F:      include/linux/netdevice.h
9202 F:      include/linux/etherdevice.h
9203 F:      include/linux/fcdevice.h
9204 F:      include/linux/fddidevice.h
9205 F:      include/linux/hippidevice.h
9206 F:      include/linux/inetdevice.h
9207 F:      include/uapi/linux/if_*
9208 F:      include/uapi/linux/netdevice.h
9209
9210 NETWORKING DRIVERS (WIRELESS)
9211 M:      Kalle Valo <kvalo@codeaurora.org>
9212 L:      linux-wireless@vger.kernel.org
9213 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
9214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9216 S:      Maintained
9217 F:      Documentation/devicetree/bindings/net/wireless/
9218 F:      drivers/net/wireless/
9219
9220 NETXEN (1/10) GbE SUPPORT
9221 M:      Manish Chopra <manish.chopra@cavium.com>
9222 M:      Rahul Verma <rahul.verma@cavium.com>
9223 M:      Dept-GELinuxNICDev@cavium.com
9224 L:      netdev@vger.kernel.org
9225 S:      Supported
9226 F:      drivers/net/ethernet/qlogic/netxen/
9227
9228 NFC SUBSYSTEM
9229 M:      Samuel Ortiz <sameo@linux.intel.com>
9230 L:      linux-wireless@vger.kernel.org
9231 L:      linux-nfc@lists.01.org (subscribers-only)
9232 S:      Supported
9233 F:      net/nfc/
9234 F:      include/net/nfc/
9235 F:      include/uapi/linux/nfc.h
9236 F:      drivers/nfc/
9237 F:      include/linux/platform_data/nfcmrvl.h
9238 F:      include/linux/platform_data/nxp-nci.h
9239 F:      Documentation/devicetree/bindings/net/nfc/
9240
9241 NFS, SUNRPC, AND LOCKD CLIENTS
9242 M:      Trond Myklebust <trond.myklebust@primarydata.com>
9243 M:      Anna Schumaker <anna.schumaker@netapp.com>
9244 L:      linux-nfs@vger.kernel.org
9245 W:      http://client.linux-nfs.org
9246 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9247 S:      Maintained
9248 F:      fs/lockd/
9249 F:      fs/nfs/
9250 F:      fs/nfs_common/
9251 F:      net/sunrpc/
9252 F:      include/linux/lockd/
9253 F:      include/linux/nfs*
9254 F:      include/linux/sunrpc/
9255 F:      include/uapi/linux/nfs*
9256 F:      include/uapi/linux/sunrpc/
9257
9258 NILFS2 FILESYSTEM
9259 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9260 L:      linux-nilfs@vger.kernel.org
9261 W:      http://nilfs.sourceforge.net/
9262 W:      http://nilfs.osdn.jp/
9263 T:      git git://github.com/konis/nilfs2.git
9264 S:      Supported
9265 F:      Documentation/filesystems/nilfs2.txt
9266 F:      fs/nilfs2/
9267 F:      include/trace/events/nilfs2.h
9268 F:      include/uapi/linux/nilfs2_api.h
9269 F:      include/uapi/linux/nilfs2_ondisk.h
9270
9271 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9272 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9273 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9274 S:      Maintained
9275 F:      Documentation/scsi/NinjaSCSI.txt
9276 F:      drivers/scsi/pcmcia/nsp_*
9277
9278 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9279 M:      GOTO Masanori <gotom@debian.or.jp>
9280 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9281 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9282 S:      Maintained
9283 F:      Documentation/scsi/NinjaSCSI.txt
9284 F:      drivers/scsi/nsp32*
9285
9286 NIOS2 ARCHITECTURE
9287 M:      Ley Foon Tan <lftan@altera.com>
9288 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9290 S:      Maintained
9291 F:      arch/nios2/
9292
9293 NOHZ, DYNTICKS SUPPORT
9294 M:      Frederic Weisbecker <fweisbec@gmail.com>
9295 M:      Thomas Gleixner <tglx@linutronix.de>
9296 M:      Ingo Molnar <mingo@kernel.org>
9297 L:      linux-kernel@vger.kernel.org
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9299 S:      Maintained
9300 F:      kernel/time/tick*.*
9301 F:      include/linux/tick.h
9302 F:      include/linux/sched/nohz.h
9303
9304 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9305 M:      Pavel Machek <pavel@ucw.cz>
9306 M:      Sakari Ailus <sakari.ailus@iki.fi>
9307 L:      linux-media@vger.kernel.org
9308 S:      Maintained
9309 F:      drivers/media/i2c/et8ek8
9310 F:      drivers/media/i2c/ad5820.c
9311
9312 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9313 M:      Pavel Machek <pavel@ucw.cz>
9314 M:      Sakari Ailus <sakari.ailus@iki.fi>
9315 L:      linux-media@vger.kernel.org
9316 S:      Maintained
9317 F:      drivers/media/i2c/et8ek8
9318 F:      drivers/media/i2c/ad5820.c
9319
9320 NOKIA N900 POWER SUPPLY DRIVERS
9321 R:      Pali Rohár <pali.rohar@gmail.com>
9322 F:      include/linux/power/bq2415x_charger.h
9323 F:      include/linux/power/bq27xxx_battery.h
9324 F:      include/linux/power/isp1704_charger.h
9325 F:      drivers/power/supply/bq2415x_charger.c
9326 F:      drivers/power/supply/bq27xxx_battery.c
9327 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9328 F:      drivers/power/supply/isp1704_charger.c
9329 F:      drivers/power/supply/rx51_battery.c
9330
9331 NTB DRIVER CORE
9332 M:      Jon Mason <jdmason@kudzu.us>
9333 M:      Dave Jiang <dave.jiang@intel.com>
9334 M:      Allen Hubbe <Allen.Hubbe@emc.com>
9335 L:      linux-ntb@googlegroups.com
9336 S:      Supported
9337 W:      https://github.com/jonmason/ntb/wiki
9338 T:      git git://github.com/jonmason/ntb.git
9339 F:      drivers/ntb/
9340 F:      drivers/net/ntb_netdev.c
9341 F:      include/linux/ntb.h
9342 F:      include/linux/ntb_transport.h
9343 F:      tools/testing/selftests/ntb/
9344
9345 NTB INTEL DRIVER
9346 M:      Jon Mason <jdmason@kudzu.us>
9347 M:      Dave Jiang <dave.jiang@intel.com>
9348 L:      linux-ntb@googlegroups.com
9349 S:      Supported
9350 W:      https://github.com/jonmason/ntb/wiki
9351 T:      git git://github.com/jonmason/ntb.git
9352 F:      drivers/ntb/hw/intel/
9353
9354 NTB AMD DRIVER
9355 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9356 L:      linux-ntb@googlegroups.com
9357 S:      Supported
9358 F:      drivers/ntb/hw/amd/
9359
9360 NTFS FILESYSTEM
9361 M:      Anton Altaparmakov <anton@tuxera.com>
9362 L:      linux-ntfs-dev@lists.sourceforge.net
9363 W:      http://www.tuxera.com/
9364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9365 S:      Supported
9366 F:      Documentation/filesystems/ntfs.txt
9367 F:      fs/ntfs/
9368
9369 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9370 M:      Antonino Daplas <adaplas@gmail.com>
9371 L:      linux-fbdev@vger.kernel.org
9372 S:      Maintained
9373 F:      drivers/video/fbdev/riva/
9374 F:      drivers/video/fbdev/nvidia/
9375
9376 NVM EXPRESS DRIVER
9377 M:      Keith Busch <keith.busch@intel.com>
9378 M:      Jens Axboe <axboe@fb.com>
9379 M:      Christoph Hellwig <hch@lst.de>
9380 M:      Sagi Grimberg <sagi@grimberg.me>
9381 L:      linux-nvme@lists.infradead.org
9382 T:      git://git.infradead.org/nvme.git
9383 W:      http://git.infradead.org/nvme.git
9384 S:      Supported
9385 F:      drivers/nvme/host/
9386 F:      include/linux/nvme.h
9387 F:      include/uapi/linux/nvme_ioctl.h
9388
9389 NVM EXPRESS TARGET DRIVER
9390 M:      Christoph Hellwig <hch@lst.de>
9391 M:      Sagi Grimberg <sagi@grimberg.me>
9392 L:      linux-nvme@lists.infradead.org
9393 T:      git://git.infradead.org/nvme.git
9394 W:      http://git.infradead.org/nvme.git
9395 S:      Supported
9396 F:      drivers/nvme/target/
9397
9398 NVM EXPRESS FC TRANSPORT DRIVERS
9399 M:      James Smart <james.smart@broadcom.com>
9400 L:      linux-nvme@lists.infradead.org
9401 S:      Supported
9402 F:      include/linux/nvme-fc.h
9403 F:      include/linux/nvme-fc-driver.h
9404 F:      drivers/nvme/host/fc.c
9405 F:      drivers/nvme/target/fc.c
9406 F:      drivers/nvme/target/fcloop.c
9407
9408 NVMEM FRAMEWORK
9409 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9410 S:      Maintained
9411 F:      drivers/nvmem/
9412 F:      Documentation/devicetree/bindings/nvmem/
9413 F:      include/linux/nvmem-consumer.h
9414 F:      include/linux/nvmem-provider.h
9415
9416 NXP-NCI NFC DRIVER
9417 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
9418 R:      Charles Gorand <charles.gorand@effinnov.com>
9419 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9420 S:      Supported
9421 F:      drivers/nfc/nxp-nci
9422
9423 NXP TDA998X DRM DRIVER
9424 M:      Russell King <linux@armlinux.org.uk>
9425 S:      Supported
9426 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9427 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9428 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9429 F:      include/drm/i2c/tda998x.h
9430
9431 NXP TFA9879 DRIVER
9432 M:      Peter Rosin <peda@axentia.se>
9433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9434 S:      Maintained
9435 F:      sound/soc/codecs/tfa9879*
9436
9437 OBJTOOL
9438 M:      Josh Poimboeuf <jpoimboe@redhat.com>
9439 S:      Supported
9440 F:      tools/objtool/
9441
9442 OMAP1 SUPPORT
9443 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
9444 M:      Tony Lindgren <tony@atomide.com>
9445 L:      linux-omap@vger.kernel.org
9446 Q:      http://patchwork.kernel.org/project/linux-omap/list/
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9448 S:      Maintained
9449 F:      arch/arm/mach-omap1/
9450 F:      arch/arm/plat-omap/
9451 F:      arch/arm/configs/omap1_defconfig
9452 F:      drivers/i2c/busses/i2c-omap.c
9453 F:      include/linux/i2c-omap.h
9454
9455 OMAP2+ SUPPORT
9456 M:      Tony Lindgren <tony@atomide.com>
9457 L:      linux-omap@vger.kernel.org
9458 W:      http://www.muru.com/linux/omap/
9459 W:      http://linux.omap.com/
9460 Q:      http://patchwork.kernel.org/project/linux-omap/list/
9461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9462 S:      Maintained
9463 F:      arch/arm/mach-omap2/
9464 F:      arch/arm/plat-omap/
9465 F:      arch/arm/configs/omap2plus_defconfig
9466 F:      drivers/i2c/busses/i2c-omap.c
9467 F:      drivers/irqchip/irq-omap-intc.c
9468 F:      drivers/mfd/*omap*.c
9469 F:      drivers/mfd/menelaus.c
9470 F:      drivers/mfd/palmas.c
9471 F:      drivers/mfd/tps65217.c
9472 F:      drivers/mfd/tps65218.c
9473 F:      drivers/mfd/tps65910.c
9474 F:      drivers/mfd/twl-core.[ch]
9475 F:      drivers/mfd/twl4030*.c
9476 F:      drivers/mfd/twl6030*.c
9477 F:      drivers/mfd/twl6040*.c
9478 F:      drivers/regulator/palmas-regulator*.c
9479 F:      drivers/regulator/pbias-regulator.c
9480 F:      drivers/regulator/tps65217-regulator.c
9481 F:      drivers/regulator/tps65218-regulator.c
9482 F:      drivers/regulator/tps65910-regulator.c
9483 F:      drivers/regulator/twl-regulator.c
9484 F:      drivers/regulator/twl6030-regulator.c
9485 F:      include/linux/i2c-omap.h
9486
9487 OMAP DEVICE TREE SUPPORT
9488 M:      Benoît Cousson <bcousson@baylibre.com>
9489 M:      Tony Lindgren <tony@atomide.com>
9490 L:      linux-omap@vger.kernel.org
9491 L:      devicetree@vger.kernel.org
9492 S:      Maintained
9493 F:      arch/arm/boot/dts/*omap*
9494 F:      arch/arm/boot/dts/*am3*
9495 F:      arch/arm/boot/dts/*am4*
9496 F:      arch/arm/boot/dts/*am5*
9497 F:      arch/arm/boot/dts/*dra7*
9498
9499 OMAP CLOCK FRAMEWORK SUPPORT
9500 M:      Paul Walmsley <paul@pwsan.com>
9501 L:      linux-omap@vger.kernel.org
9502 S:      Maintained
9503 F:      arch/arm/*omap*/*clock*
9504
9505 OMAP POWER MANAGEMENT SUPPORT
9506 M:      Kevin Hilman <khilman@kernel.org>
9507 L:      linux-omap@vger.kernel.org
9508 S:      Maintained
9509 F:      arch/arm/*omap*/*pm*
9510 F:      drivers/cpufreq/omap-cpufreq.c
9511
9512 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9513 M:      Rajendra Nayak <rnayak@codeaurora.org>
9514 M:      Paul Walmsley <paul@pwsan.com>
9515 L:      linux-omap@vger.kernel.org
9516 S:      Maintained
9517 F:      arch/arm/mach-omap2/prm*
9518
9519 OMAP AUDIO SUPPORT
9520 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
9521 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
9522 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9523 L:      linux-omap@vger.kernel.org
9524 S:      Maintained
9525 F:      sound/soc/omap/
9526
9527 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9528 M:      Roger Quadros <rogerq@ti.com>
9529 M:      Tony Lindgren <tony@atomide.com>
9530 L:      linux-omap@vger.kernel.org
9531 S:      Maintained
9532 F:      drivers/memory/omap-gpmc.c
9533 F:      arch/arm/mach-omap2/*gpmc*
9534
9535 OMAP FRAMEBUFFER SUPPORT
9536 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9537 L:      linux-fbdev@vger.kernel.org
9538 L:      linux-omap@vger.kernel.org
9539 S:      Maintained
9540 F:      drivers/video/fbdev/omap/
9541
9542 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9543 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
9544 L:      linux-omap@vger.kernel.org
9545 L:      linux-fbdev@vger.kernel.org
9546 S:      Maintained
9547 F:      drivers/video/fbdev/omap2/
9548 F:      Documentation/arm/OMAP/DSS
9549
9550 OMAP HARDWARE SPINLOCK SUPPORT
9551 M:      Ohad Ben-Cohen <ohad@wizery.com>
9552 L:      linux-omap@vger.kernel.org
9553 S:      Maintained
9554 F:      drivers/hwspinlock/omap_hwspinlock.c
9555
9556 OMAP MMC SUPPORT
9557 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
9558 L:      linux-omap@vger.kernel.org
9559 S:      Maintained
9560 F:      drivers/mmc/host/omap.c
9561
9562 OMAP HS MMC SUPPORT
9563 L:      linux-mmc@vger.kernel.org
9564 L:      linux-omap@vger.kernel.org
9565 S:      Orphan
9566 F:      drivers/mmc/host/omap_hsmmc.c
9567
9568 OMAP RANDOM NUMBER GENERATOR SUPPORT
9569 M:      Deepak Saxena <dsaxena@plexity.net>
9570 S:      Maintained
9571 F:      drivers/char/hw_random/omap-rng.c
9572
9573 OMAP HWMOD SUPPORT
9574 M:      Benoît Cousson <bcousson@baylibre.com>
9575 M:      Paul Walmsley <paul@pwsan.com>
9576 L:      linux-omap@vger.kernel.org
9577 S:      Maintained
9578 F:      arch/arm/mach-omap2/omap_hwmod.*
9579
9580 OMAP HWMOD DATA
9581 M:      Paul Walmsley <paul@pwsan.com>
9582 L:      linux-omap@vger.kernel.org
9583 S:      Maintained
9584 F:      arch/arm/mach-omap2/omap_hwmod*data*
9585
9586 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9587 M:      Benoît Cousson <bcousson@baylibre.com>
9588 L:      linux-omap@vger.kernel.org
9589 S:      Maintained
9590 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9591
9592 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9593 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9594 L:      linux-media@vger.kernel.org
9595 S:      Maintained
9596 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
9597 F:      drivers/media/platform/omap3isp/
9598 F:      drivers/staging/media/omap4iss/
9599
9600 OMAP USB SUPPORT
9601 L:      linux-usb@vger.kernel.org
9602 L:      linux-omap@vger.kernel.org
9603 S:      Orphan
9604 F:      drivers/usb/*/*omap*
9605 F:      arch/arm/*omap*/usb*
9606
9607 OMAP GPIO DRIVER
9608 M:      Grygorii Strashko <grygorii.strashko@ti.com>
9609 M:      Santosh Shilimkar <ssantosh@kernel.org>
9610 M:      Kevin Hilman <khilman@kernel.org>
9611 L:      linux-omap@vger.kernel.org
9612 S:      Maintained
9613 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
9614 F:      drivers/gpio/gpio-omap.c
9615
9616 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9617 M:      Mark Jackson <mpfj@newflow.co.uk>
9618 L:      linux-omap@vger.kernel.org
9619 S:      Maintained
9620 F:      arch/arm/boot/dts/am335x-nano.dts
9621
9622 OMFS FILESYSTEM
9623 M:      Bob Copeland <me@bobcopeland.com>
9624 L:      linux-karma-devel@lists.sourceforge.net
9625 S:      Maintained
9626 F:      Documentation/filesystems/omfs.txt
9627 F:      fs/omfs/
9628
9629 OMNIKEY CARDMAN 4000 DRIVER
9630 M:      Harald Welte <laforge@gnumonks.org>
9631 S:      Maintained
9632 F:      drivers/char/pcmcia/cm4000_cs.c
9633 F:      include/linux/cm4000_cs.h
9634 F:      include/uapi/linux/cm4000_cs.h
9635
9636 OMNIKEY CARDMAN 4040 DRIVER
9637 M:      Harald Welte <laforge@gnumonks.org>
9638 S:      Maintained
9639 F:      drivers/char/pcmcia/cm4040_cs.*
9640
9641 OMNIVISION OV5640 SENSOR DRIVER
9642 M:      Steve Longerbeam <slongerbeam@gmail.com>
9643 L:      linux-media@vger.kernel.org
9644 T:      git git://linuxtv.org/media_tree.git
9645 S:      Maintained
9646 F:      drivers/media/i2c/ov5640.c
9647
9648 OMNIVISION OV5647 SENSOR DRIVER
9649 M:      Ramiro Oliveira <roliveir@synopsys.com>
9650 L:      linux-media@vger.kernel.org
9651 T:      git git://linuxtv.org/media_tree.git
9652 S:      Maintained
9653 F:      drivers/media/i2c/ov5647.c
9654
9655 OMNIVISION OV7670 SENSOR DRIVER
9656 M:      Jonathan Corbet <corbet@lwn.net>
9657 L:      linux-media@vger.kernel.org
9658 T:      git git://linuxtv.org/media_tree.git
9659 S:      Maintained
9660 F:      drivers/media/i2c/ov7670.c
9661 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
9662
9663 OMNIVISION OV13858 SENSOR DRIVER
9664 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9665 L:      linux-media@vger.kernel.org
9666 T:      git git://linuxtv.org/media_tree.git
9667 S:      Maintained
9668 F:      drivers/media/i2c/ov13858.c
9669
9670 ONENAND FLASH DRIVER
9671 M:      Kyungmin Park <kyungmin.park@samsung.com>
9672 L:      linux-mtd@lists.infradead.org
9673 S:      Maintained
9674 F:      drivers/mtd/onenand/
9675 F:      include/linux/mtd/onenand*.h
9676
9677 ONSTREAM SCSI TAPE DRIVER
9678 M:      Willem Riede <osst@riede.org>
9679 L:      osst-users@lists.sourceforge.net
9680 L:      linux-scsi@vger.kernel.org
9681 S:      Maintained
9682 F:      Documentation/scsi/osst.txt
9683 F:      drivers/scsi/osst.*
9684 F:      drivers/scsi/osst_*.h
9685 F:      drivers/scsi/st.h
9686
9687 OPENCORES I2C BUS DRIVER
9688 M:      Peter Korsgaard <jacmet@sunsite.dk>
9689 L:      linux-i2c@vger.kernel.org
9690 S:      Maintained
9691 F:      Documentation/i2c/busses/i2c-ocores
9692 F:      drivers/i2c/busses/i2c-ocores.c
9693
9694 OPEN FIRMWARE AND FLATTENED DEVICE TREE
9695 M:      Rob Herring <robh+dt@kernel.org>
9696 M:      Frank Rowand <frowand.list@gmail.com>
9697 L:      devicetree@vger.kernel.org
9698 W:      http://www.devicetree.org/
9699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9700 S:      Maintained
9701 F:      drivers/of/
9702 F:      include/linux/of*.h
9703 F:      scripts/dtc/
9704 F:      Documentation/ABI/testing/sysfs-firmware-ofw
9705
9706 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
9707 M:      Rob Herring <robh+dt@kernel.org>
9708 M:      Mark Rutland <mark.rutland@arm.com>
9709 L:      devicetree@vger.kernel.org
9710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9711 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
9712 S:      Maintained
9713 F:      Documentation/devicetree/
9714 F:      arch/*/boot/dts/
9715 F:      include/dt-bindings/
9716
9717 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
9718 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
9719 L:      devicetree@vger.kernel.org
9720 S:      Maintained
9721 F:      Documentation/devicetree/dynamic-resolution-notes.txt
9722 F:      Documentation/devicetree/overlay-notes.txt
9723 F:      drivers/of/overlay.c
9724 F:      drivers/of/resolver.c
9725
9726 OPENRISC ARCHITECTURE
9727 M:      Jonas Bonn <jonas@southpole.se>
9728 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
9729 M:      Stafford Horne <shorne@gmail.com>
9730 T:      git git://github.com/openrisc/linux.git
9731 L:      openrisc@lists.librecores.org
9732 W:      http://openrisc.io
9733 S:      Maintained
9734 F:      arch/openrisc/
9735
9736 OPENVSWITCH
9737 M:      Pravin Shelar <pshelar@nicira.com>
9738 L:      netdev@vger.kernel.org
9739 L:      dev@openvswitch.org
9740 W:      http://openvswitch.org
9741 S:      Maintained
9742 F:      net/openvswitch/
9743 F:      include/uapi/linux/openvswitch.h
9744
9745 OPERATING PERFORMANCE POINTS (OPP)
9746 M:      Viresh Kumar <vireshk@kernel.org>
9747 M:      Nishanth Menon <nm@ti.com>
9748 M:      Stephen Boyd <sboyd@codeaurora.org>
9749 L:      linux-pm@vger.kernel.org
9750 S:      Maintained
9751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
9752 F:      drivers/base/power/opp/
9753 F:      include/linux/pm_opp.h
9754 F:      Documentation/power/opp.txt
9755 F:      Documentation/devicetree/bindings/opp/
9756
9757 OPL4 DRIVER
9758 M:      Clemens Ladisch <clemens@ladisch.de>
9759 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9760 T:      git git://git.alsa-project.org/alsa-kernel.git
9761 S:      Maintained
9762 F:      sound/drivers/opl4/
9763
9764 OPROFILE
9765 M:      Robert Richter <rric@kernel.org>
9766 L:      oprofile-list@lists.sf.net
9767 S:      Maintained
9768 F:      arch/*/include/asm/oprofile*.h
9769 F:      arch/*/oprofile/
9770 F:      drivers/oprofile/
9771 F:      include/linux/oprofile.h
9772
9773 OP-TEE DRIVER
9774 M:      Jens Wiklander <jens.wiklander@linaro.org>
9775 S:      Maintained
9776 F:      drivers/tee/optee/
9777
9778 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
9779 M:      Mark Fasheh <mfasheh@versity.com>
9780 M:      Joel Becker <jlbec@evilplan.org>
9781 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
9782 W:      http://ocfs2.wiki.kernel.org
9783 S:      Supported
9784 F:      Documentation/filesystems/ocfs2.txt
9785 F:      Documentation/filesystems/dlmfs.txt
9786 F:      fs/ocfs2/
9787
9788 ORINOCO DRIVER
9789 L:      linux-wireless@vger.kernel.org
9790 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
9791 W:      http://www.nongnu.org/orinoco/
9792 S:      Orphan
9793 F:      drivers/net/wireless/intersil/orinoco/
9794
9795 OSD LIBRARY and FILESYSTEM
9796 M:      Boaz Harrosh <ooo@electrozaur.com>
9797 S:      Maintained
9798 F:      drivers/scsi/osd/
9799 F:      include/scsi/osd_*
9800 F:      fs/exofs/
9801
9802 OVERLAY FILESYSTEM
9803 M:      Miklos Szeredi <miklos@szeredi.hu>
9804 L:      linux-unionfs@vger.kernel.org
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
9806 S:      Supported
9807 F:      fs/overlayfs/
9808 F:      Documentation/filesystems/overlayfs.txt
9809
9810 ORANGEFS FILESYSTEM
9811 M:      Mike Marshall <hubcap@omnibond.com>
9812 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
9813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
9814 S:      Supported
9815 F:      fs/orangefs/
9816 F:      Documentation/filesystems/orangefs.txt
9817
9818 P54 WIRELESS DRIVER
9819 M:      Christian Lamparter <chunkeey@googlemail.com>
9820 L:      linux-wireless@vger.kernel.org
9821 W:      http://wireless.kernel.org/en/users/Drivers/p54
9822 S:      Maintained
9823 F:      drivers/net/wireless/intersil/p54/
9824
9825 PA SEMI ETHERNET DRIVER
9826 L:      netdev@vger.kernel.org
9827 S:      Orphan
9828 F:      drivers/net/ethernet/pasemi/*
9829
9830 PA SEMI SMBUS DRIVER
9831 L:      linux-i2c@vger.kernel.org
9832 S:      Orphan
9833 F:      drivers/i2c/busses/i2c-pasemi.c
9834
9835 PADATA PARALLEL EXECUTION MECHANISM
9836 M:      Steffen Klassert <steffen.klassert@secunet.com>
9837 L:      linux-crypto@vger.kernel.org
9838 S:      Maintained
9839 F:      kernel/padata.c
9840 F:      include/linux/padata.h
9841 F:      Documentation/padata.txt
9842
9843 PANASONIC LAPTOP ACPI EXTRAS DRIVER
9844 M:      Harald Welte <laforge@gnumonks.org>
9845 L:      platform-driver-x86@vger.kernel.org
9846 S:      Maintained
9847 F:      drivers/platform/x86/panasonic-laptop.c
9848
9849 PANASONIC MN10300/AM33/AM34 PORT
9850 M:      David Howells <dhowells@redhat.com>
9851 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
9852 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
9853 S:      Maintained
9854 F:      Documentation/mn10300/
9855 F:      arch/mn10300/
9856
9857 PARALLEL LCD/KEYPAD PANEL DRIVER
9858 M:      Willy Tarreau <willy@haproxy.com>
9859 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
9860 S:      Odd Fixes
9861 F:      Documentation/misc-devices/lcd-panel-cgram.txt
9862 F:      drivers/misc/panel.c
9863
9864 PARALLEL PORT SUBSYSTEM
9865 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9866 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
9867 L:      linux-parport@lists.infradead.org (subscribers-only)
9868 S:      Maintained
9869 F:      drivers/parport/
9870 F:      include/linux/parport*.h
9871 F:      drivers/char/ppdev.c
9872 F:      include/uapi/linux/ppdev.h
9873 F:      Documentation/parport*.txt
9874
9875 PARAVIRT_OPS INTERFACE
9876 M:      Jeremy Fitzhardinge <jeremy@goop.org>
9877 M:      Chris Wright <chrisw@sous-sol.org>
9878 M:      Alok Kataria <akataria@vmware.com>
9879 M:      Rusty Russell <rusty@rustcorp.com.au>
9880 L:      virtualization@lists.linux-foundation.org
9881 S:      Supported
9882 F:      Documentation/virtual/paravirt_ops.txt
9883 F:      arch/*/kernel/paravirt*
9884 F:      arch/*/include/asm/paravirt.h
9885 F:      include/linux/hypervisor.h
9886
9887 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
9888 M:      Tim Waugh <tim@cyberelk.net>
9889 L:      linux-parport@lists.infradead.org (subscribers-only)
9890 S:      Maintained
9891 F:      Documentation/blockdev/paride.txt
9892 F:      drivers/block/paride/
9893
9894 PARISC ARCHITECTURE
9895 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
9896 M:      Helge Deller <deller@gmx.de>
9897 L:      linux-parisc@vger.kernel.org
9898 W:      http://www.parisc-linux.org/
9899 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
9900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
9901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
9902 S:      Maintained
9903 F:      arch/parisc/
9904 F:      Documentation/parisc/
9905 F:      drivers/parisc/
9906 F:      drivers/char/agp/parisc-agp.c
9907 F:      drivers/input/serio/gscps2.c
9908 F:      drivers/parport/parport_gsc.*
9909 F:      drivers/tty/serial/8250/8250_gsc.c
9910 F:      drivers/video/fbdev/sti*
9911 F:      drivers/video/console/sti*
9912 F:      drivers/video/logo/logo_parisc*
9913
9914 PARMAN
9915 M:      Jiri Pirko <jiri@mellanox.com>
9916 L:      netdev@vger.kernel.org
9917 S:      Supported
9918 F:      lib/parman.c
9919 F:      lib/test_parman.c
9920 F:      include/linux/parman.h
9921
9922 PC87360 HARDWARE MONITORING DRIVER
9923 M:      Jim Cromie <jim.cromie@gmail.com>
9924 L:      linux-hwmon@vger.kernel.org
9925 S:      Maintained
9926 F:      Documentation/hwmon/pc87360
9927 F:      drivers/hwmon/pc87360.c
9928
9929 PC8736x GPIO DRIVER
9930 M:      Jim Cromie <jim.cromie@gmail.com>
9931 S:      Maintained
9932 F:      drivers/char/pc8736x_gpio.c
9933
9934 PC87427 HARDWARE MONITORING DRIVER
9935 M:      Jean Delvare <jdelvare@suse.com>
9936 L:      linux-hwmon@vger.kernel.org
9937 S:      Maintained
9938 F:      Documentation/hwmon/pc87427
9939 F:      drivers/hwmon/pc87427.c
9940
9941 PCA9532 LED DRIVER
9942 M:      Riku Voipio <riku.voipio@iki.fi>
9943 S:      Maintained
9944 F:      drivers/leds/leds-pca9532.c
9945 F:      include/linux/leds-pca9532.h
9946
9947 PCA9541 I2C BUS MASTER SELECTOR DRIVER
9948 M:      Guenter Roeck <linux@roeck-us.net>
9949 L:      linux-i2c@vger.kernel.org
9950 S:      Maintained
9951 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
9952
9953 PCDP - PRIMARY CONSOLE AND DEBUG PORT
9954 M:      Khalid Aziz <khalid@gonehiking.org>
9955 S:      Maintained
9956 F:      drivers/firmware/pcdp.*
9957
9958 PCI ERROR RECOVERY
9959 M:      Linas Vepstas <linasvepstas@gmail.com>
9960 L:      linux-pci@vger.kernel.org
9961 S:      Supported
9962 F:      Documentation/PCI/pci-error-recovery.txt
9963
9964 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
9965 M:      Russell Currey <ruscur@russell.cc>
9966 L:      linuxppc-dev@lists.ozlabs.org
9967 S:      Supported
9968 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
9969 F:      arch/powerpc/kernel/eeh*.c
9970 F:      arch/powerpc/platforms/*/eeh*.c
9971 F:      arch/powerpc/include/*/eeh*.h
9972
9973 PCI SUBSYSTEM
9974 M:      Bjorn Helgaas <bhelgaas@google.com>
9975 L:      linux-pci@vger.kernel.org
9976 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
9977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
9978 S:      Supported
9979 F:      Documentation/devicetree/bindings/pci/
9980 F:      Documentation/PCI/
9981 F:      drivers/pci/
9982 F:      include/linux/pci*
9983 F:      arch/x86/pci/
9984 F:      arch/x86/kernel/quirks.c
9985
9986 PCI ENDPOINT SUBSYSTEM
9987 M:      Kishon Vijay Abraham I <kishon@ti.com>
9988 L:      linux-pci@vger.kernel.org
9989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
9990 S:      Supported
9991 F:      drivers/pci/endpoint/
9992 F:      drivers/misc/pci_endpoint_test.c
9993 F:      tools/pci/
9994
9995 PCI DRIVER FOR ALTERA PCIE IP
9996 M:      Ley Foon Tan <lftan@altera.com>
9997 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
9998 L:      linux-pci@vger.kernel.org
9999 S:      Supported
10000 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
10001 F:      drivers/pci/host/pcie-altera.c
10002
10003 PCI DRIVER FOR ARM VERSATILE PLATFORM
10004 M:      Rob Herring <robh@kernel.org>
10005 L:      linux-pci@vger.kernel.org
10006 L:      linux-arm-kernel@lists.infradead.org
10007 S:      Maintained
10008 F:      Documentation/devicetree/bindings/pci/versatile.txt
10009 F:      drivers/pci/host/pci-versatile.c
10010
10011 PCI DRIVER FOR ARMADA 8K
10012 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10013 L:      linux-pci@vger.kernel.org
10014 L:      linux-arm-kernel@lists.infradead.org
10015 S:      Maintained
10016 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
10017 F:      drivers/pci/dwc/pcie-armada8k.c
10018
10019 PCI DRIVER FOR APPLIEDMICRO XGENE
10020 M:      Tanmay Inamdar <tinamdar@apm.com>
10021 L:      linux-pci@vger.kernel.org
10022 L:      linux-arm-kernel@lists.infradead.org
10023 S:      Maintained
10024 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
10025 F:      drivers/pci/host/pci-xgene.c
10026
10027 PCI DRIVER FOR FREESCALE LAYERSCAPE
10028 M:      Minghuan Lian <minghuan.Lian@freescale.com>
10029 M:      Mingkai Hu <mingkai.hu@freescale.com>
10030 M:      Roy Zang <tie-fei.zang@freescale.com>
10031 L:      linuxppc-dev@lists.ozlabs.org
10032 L:      linux-pci@vger.kernel.org
10033 L:      linux-arm-kernel@lists.infradead.org
10034 S:      Maintained
10035 F:      drivers/pci/dwc/*layerscape*
10036
10037 PCI DRIVER FOR IMX6
10038 M:      Richard Zhu <hongxing.zhu@nxp.com>
10039 M:      Lucas Stach <l.stach@pengutronix.de>
10040 L:      linux-pci@vger.kernel.org
10041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10042 S:      Maintained
10043 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10044 F:      drivers/pci/dwc/*imx6*
10045
10046 PCI DRIVER FOR TI KEYSTONE
10047 M:      Murali Karicheri <m-karicheri2@ti.com>
10048 L:      linux-pci@vger.kernel.org
10049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10050 S:      Maintained
10051 F:      drivers/pci/dwc/*keystone*
10052
10053 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10054 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10055 M:      Jason Cooper <jason@lakedaemon.net>
10056 L:      linux-pci@vger.kernel.org
10057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10058 S:      Maintained
10059 F:      drivers/pci/host/*mvebu*
10060
10061 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10062 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10063 L:      linux-pci@vger.kernel.org
10064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10065 S:      Maintained
10066 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
10067 F:      drivers/pci/host/pci-aardvark.c
10068
10069 PCI DRIVER FOR MICROSEMI SWITCHTEC
10070 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10071 M:      Stephen Bates <stephen.bates@microsemi.com>
10072 M:      Logan Gunthorpe <logang@deltatee.com>
10073 L:      linux-pci@vger.kernel.org
10074 S:      Maintained
10075 F:      Documentation/switchtec.txt
10076 F:      Documentation/ABI/testing/sysfs-class-switchtec
10077 F:      drivers/pci/switch/switchtec*
10078 F:      include/uapi/linux/switchtec_ioctl.h
10079
10080 PCI DRIVER FOR NVIDIA TEGRA
10081 M:      Thierry Reding <thierry.reding@gmail.com>
10082 L:      linux-tegra@vger.kernel.org
10083 L:      linux-pci@vger.kernel.org
10084 S:      Supported
10085 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10086 F:      drivers/pci/host/pci-tegra.c
10087
10088 PCI DRIVER FOR TI DRA7XX
10089 M:      Kishon Vijay Abraham I <kishon@ti.com>
10090 L:      linux-omap@vger.kernel.org
10091 L:      linux-pci@vger.kernel.org
10092 S:      Supported
10093 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
10094 F:      drivers/pci/dwc/pci-dra7xx.c
10095
10096 PCI DRIVER FOR RENESAS R-CAR
10097 M:      Simon Horman <horms@verge.net.au>
10098 L:      linux-pci@vger.kernel.org
10099 L:      linux-renesas-soc@vger.kernel.org
10100 S:      Maintained
10101 F:      drivers/pci/host/*rcar*
10102
10103 PCI DRIVER FOR SAMSUNG EXYNOS
10104 M:      Jingoo Han <jingoohan1@gmail.com>
10105 L:      linux-pci@vger.kernel.org
10106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10107 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10108 S:      Maintained
10109 F:      drivers/pci/dwc/pci-exynos.c
10110
10111 PCI DRIVER FOR SYNOPSIS DESIGNWARE
10112 M:      Jingoo Han <jingoohan1@gmail.com>
10113 M:      Joao Pinto <Joao.Pinto@synopsys.com>
10114 L:      linux-pci@vger.kernel.org
10115 S:      Maintained
10116 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
10117 F:      drivers/pci/dwc/*designware*
10118
10119 PCI DRIVER FOR GENERIC OF HOSTS
10120 M:      Will Deacon <will.deacon@arm.com>
10121 L:      linux-pci@vger.kernel.org
10122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10123 S:      Maintained
10124 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
10125 F:      drivers/pci/host/pci-host-common.c
10126 F:      drivers/pci/host/pci-host-generic.c
10127
10128 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10129 M:      Keith Busch <keith.busch@intel.com>
10130 L:      linux-pci@vger.kernel.org
10131 S:      Supported
10132 F:      drivers/pci/host/vmd.c
10133
10134 PCIE DRIVER FOR ST SPEAR13XX
10135 M:      Pratyush Anand <pratyush.anand@gmail.com>
10136 L:      linux-pci@vger.kernel.org
10137 S:      Maintained
10138 F:      drivers/pci/dwc/*spear*
10139
10140 PCI MSI DRIVER FOR ALTERA MSI IP
10141 M:      Ley Foon Tan <lftan@altera.com>
10142 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
10143 L:      linux-pci@vger.kernel.org
10144 S:      Supported
10145 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10146 F:      drivers/pci/host/pcie-altera-msi.c
10147
10148 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10149 M:      Duc Dang <dhdang@apm.com>
10150 L:      linux-pci@vger.kernel.org
10151 L:      linux-arm-kernel@lists.infradead.org
10152 S:      Maintained
10153 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10154 F:      drivers/pci/host/pci-xgene-msi.c
10155
10156 PCIE DRIVER FOR AXIS ARTPEC
10157 M:      Niklas Cassel <niklas.cassel@axis.com>
10158 M:      Jesper Nilsson <jesper.nilsson@axis.com>
10159 L:      linux-arm-kernel@axis.com
10160 L:      linux-pci@vger.kernel.org
10161 S:      Maintained
10162 F:      Documentation/devicetree/bindings/pci/axis,artpec*
10163 F:      drivers/pci/dwc/*artpec*
10164
10165 PCIE DRIVER FOR HISILICON
10166 M:      Zhou Wang <wangzhou1@hisilicon.com>
10167 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
10168 L:      linux-pci@vger.kernel.org
10169 S:      Maintained
10170 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10171 F:      drivers/pci/dwc/pcie-hisi.c
10172
10173 PCIE DRIVER FOR HISILICON KIRIN
10174 M:      Xiaowei Song <songxiaowei@hisilicon.com>
10175 M:      Binghui Wang <wangbinghui@hisilicon.com>
10176 L:      linux-pci@vger.kernel.org
10177 S:      Maintained
10178 F:      Documentation/devicetree/bindings/pci/pcie-kirin.txt
10179 F:      drivers/pci/dwc/pcie-kirin.c
10180
10181 PCIE DRIVER FOR ROCKCHIP
10182 M:      Shawn Lin <shawn.lin@rock-chips.com>
10183 L:      linux-pci@vger.kernel.org
10184 L:      linux-rockchip@lists.infradead.org
10185 S:      Maintained
10186 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10187 F:      drivers/pci/host/pcie-rockchip.c
10188
10189 PCIE DRIVER FOR QUALCOMM MSM
10190 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
10191 L:     linux-pci@vger.kernel.org
10192 L:     linux-arm-msm@vger.kernel.org
10193 S:     Maintained
10194 F:     drivers/pci/dwc/*qcom*
10195
10196 PCIE DRIVER FOR CAVIUM THUNDERX
10197 M:      David Daney <david.daney@cavium.com>
10198 L:      linux-pci@vger.kernel.org
10199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10200 S:      Supported
10201 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
10202 F:      drivers/pci/host/pci-thunder-*
10203
10204 PCIE DRIVER FOR MEDIATEK
10205 M:      Ryder Lee <ryder.lee@mediatek.com>
10206 L:      linux-pci@vger.kernel.org
10207 L:      linux-mediatek@lists.infradead.org
10208 S:      Supported
10209 F:      Documentation/devicetree/bindings/pci/mediatek*
10210 F:      drivers/pci/host/*mediatek*
10211
10212 PCMCIA SUBSYSTEM
10213 P:      Linux PCMCIA Team
10214 L:      linux-pcmcia@lists.infradead.org
10215 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10217 S:      Maintained
10218 F:      Documentation/pcmcia/
10219 F:      tools/pcmcia/
10220 F:      drivers/pcmcia/
10221 F:      include/pcmcia/
10222
10223 PCNET32 NETWORK DRIVER
10224 M:      Don Fry <pcnet32@frontier.com>
10225 L:      netdev@vger.kernel.org
10226 S:      Maintained
10227 F:      drivers/net/ethernet/amd/pcnet32.c
10228
10229 PCRYPT PARALLEL CRYPTO ENGINE
10230 M:      Steffen Klassert <steffen.klassert@secunet.com>
10231 L:      linux-crypto@vger.kernel.org
10232 S:      Maintained
10233 F:      crypto/pcrypt.c
10234 F:      include/crypto/pcrypt.h
10235
10236 PER-CPU MEMORY ALLOCATOR
10237 M:      Tejun Heo <tj@kernel.org>
10238 M:      Christoph Lameter <cl@linux.com>
10239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10240 S:      Maintained
10241 F:      include/linux/percpu*.h
10242 F:      mm/percpu*.c
10243 F:      arch/*/include/asm/percpu.h
10244
10245 PER-TASK DELAY ACCOUNTING
10246 M:      Balbir Singh <bsingharora@gmail.com>
10247 S:      Maintained
10248 F:      include/linux/delayacct.h
10249 F:      kernel/delayacct.c
10250
10251 PERFORMANCE EVENTS SUBSYSTEM
10252 M:      Peter Zijlstra <peterz@infradead.org>
10253 M:      Ingo Molnar <mingo@redhat.com>
10254 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
10255 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10256 L:      linux-kernel@vger.kernel.org
10257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10258 S:      Supported
10259 F:      kernel/events/*
10260 F:      include/linux/perf_event.h
10261 F:      include/uapi/linux/perf_event.h
10262 F:      arch/*/kernel/perf_event*.c
10263 F:      arch/*/kernel/*/perf_event*.c
10264 F:      arch/*/kernel/*/*/perf_event*.c
10265 F:      arch/*/include/asm/perf_event.h
10266 F:      arch/*/kernel/perf_callchain.c
10267 F:      arch/*/events/*
10268 F:      tools/perf/
10269
10270 PERSONALITY HANDLING
10271 M:      Christoph Hellwig <hch@infradead.org>
10272 L:      linux-abi-devel@lists.sourceforge.net
10273 S:      Maintained
10274 F:      include/linux/personality.h
10275 F:      include/uapi/linux/personality.h
10276
10277 PHONET PROTOCOL
10278 M:      Remi Denis-Courmont <courmisch@gmail.com>
10279 S:      Supported
10280 F:      Documentation/networking/phonet.txt
10281 F:      include/linux/phonet.h
10282 F:      include/net/phonet/
10283 F:      include/uapi/linux/phonet.h
10284 F:      net/phonet/
10285
10286 PHRAM MTD DRIVER
10287 M:      Joern Engel <joern@lazybastard.org>
10288 L:      linux-mtd@lists.infradead.org
10289 S:      Maintained
10290 F:      drivers/mtd/devices/phram.c
10291
10292 PICOLCD HID DRIVER
10293 M:      Bruno Prémont <bonbons@linux-vserver.org>
10294 L:      linux-input@vger.kernel.org
10295 S:      Maintained
10296 F:      drivers/hid/hid-picolcd*
10297
10298 PICOXCELL SUPPORT
10299 M:      Jamie Iles <jamie@jamieiles.com>
10300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10301 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10302 S:      Supported
10303 F:      arch/arm/boot/dts/picoxcell*
10304 F:      arch/arm/mach-picoxcell/
10305 F:      drivers/crypto/picoxcell*
10306
10307 PIN CONTROL SUBSYSTEM
10308 M:      Linus Walleij <linus.walleij@linaro.org>
10309 L:      linux-gpio@vger.kernel.org
10310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10311 S:      Maintained
10312 F:      Documentation/devicetree/bindings/pinctrl/
10313 F:      Documentation/pinctrl.txt
10314 F:      drivers/pinctrl/
10315 F:      include/linux/pinctrl/
10316
10317 PIN CONTROLLER - ATMEL AT91
10318 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10320 S:      Maintained
10321 F:      drivers/pinctrl/pinctrl-at91.*
10322
10323 PIN CONTROLLER - ATMEL AT91 PIO4
10324 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
10325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10326 L:      linux-gpio@vger.kernel.org
10327 S:      Supported
10328 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10329
10330 PIN CONTROLLER - INTEL
10331 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10332 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
10333 S:      Maintained
10334 F:      drivers/pinctrl/intel/
10335
10336 PIN CONTROLLER - QUALCOMM
10337 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10338 S:      Maintained
10339 L:      linux-arm-msm@vger.kernel.org
10340 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10341 F:      drivers/pinctrl/qcom/
10342
10343 PIN CONTROLLER - RENESAS
10344 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10345 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10346 L:      linux-renesas-soc@vger.kernel.org
10347 S:      Maintained
10348 F:      drivers/pinctrl/sh-pfc/
10349
10350 PIN CONTROLLER - SAMSUNG
10351 M:      Tomasz Figa <tomasz.figa@gmail.com>
10352 M:      Krzysztof Kozlowski <krzk@kernel.org>
10353 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10355 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10356 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10358 S:      Maintained
10359 F:      drivers/pinctrl/samsung/
10360 F:      include/dt-bindings/pinctrl/samsung.h
10361 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10362
10363 PIN CONTROLLER - SINGLE
10364 M:      Tony Lindgren <tony@atomide.com>
10365 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
10366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10367 L:      linux-omap@vger.kernel.org
10368 S:      Maintained
10369 F:      drivers/pinctrl/pinctrl-single.c
10370
10371 PIN CONTROLLER - ST SPEAR
10372 M:      Viresh Kumar <vireshk@kernel.org>
10373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10374 W:      http://www.st.com/spear
10375 S:      Maintained
10376 F:      drivers/pinctrl/spear/
10377
10378 PISTACHIO SOC SUPPORT
10379 M:      James Hartley <james.hartley@imgtec.com>
10380 M:      Ionela Voinescu <ionela.voinescu@imgtec.com>
10381 L:      linux-mips@linux-mips.org
10382 S:      Maintained
10383 F:      arch/mips/pistachio/
10384 F:      arch/mips/include/asm/mach-pistachio/
10385 F:      arch/mips/boot/dts/img/pistachio*
10386 F:      arch/mips/configs/pistachio*_defconfig
10387
10388 PKTCDVD DRIVER
10389 S:      Orphan
10390 M:      linux-block@vger.kernel.org
10391 F:      drivers/block/pktcdvd.c
10392 F:      include/linux/pktcdvd.h
10393 F:      include/uapi/linux/pktcdvd.h
10394
10395 PKUNITY SOC DRIVERS
10396 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
10397 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10398 S:      Maintained
10399 T:      git git://github.com/gxt/linux.git
10400 F:      drivers/input/serio/i8042-unicore32io.h
10401 F:      drivers/i2c/busses/i2c-puv3.c
10402 F:      drivers/video/fbdev/fb-puv3.c
10403 F:      drivers/rtc/rtc-puv3.c
10404
10405 PMBUS HARDWARE MONITORING DRIVERS
10406 M:      Guenter Roeck <linux@roeck-us.net>
10407 L:      linux-hwmon@vger.kernel.org
10408 W:      http://hwmon.wiki.kernel.org/
10409 W:      http://www.roeck-us.net/linux/drivers/
10410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10411 S:      Maintained
10412 F:      Documentation/hwmon/pmbus
10413 F:      drivers/hwmon/pmbus/
10414 F:      include/linux/pmbus.h
10415
10416 PMC SIERRA MaxRAID DRIVER
10417 L:      linux-scsi@vger.kernel.org
10418 W:      http://www.pmc-sierra.com/
10419 S:      Orphan
10420 F:      drivers/scsi/pmcraid.*
10421
10422 PMC SIERRA PM8001 DRIVER
10423 M:      Jack Wang <jinpu.wang@profitbricks.com>
10424 M:      lindar_liu@usish.com
10425 L:      linux-scsi@vger.kernel.org
10426 S:      Supported
10427 F:      drivers/scsi/pm8001/
10428
10429 POSIX CLOCKS and TIMERS
10430 M:      Thomas Gleixner <tglx@linutronix.de>
10431 L:      linux-kernel@vger.kernel.org
10432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10433 S:      Maintained
10434 F:      fs/timerfd.c
10435 F:      include/linux/timer*
10436 F:      kernel/time/*timer*
10437
10438 POWER MANAGEMENT CORE
10439 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10440 L:      linux-pm@vger.kernel.org
10441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10442 B:      https://bugzilla.kernel.org
10443 S:      Supported
10444 F:      drivers/base/power/
10445 F:      include/linux/pm.h
10446 F:      include/linux/pm_*
10447 F:      include/linux/powercap.h
10448 F:      drivers/powercap/
10449
10450 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10451 M:      Sebastian Reichel <sre@kernel.org>
10452 L:      linux-pm@vger.kernel.org
10453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10454 S:      Maintained
10455 F:      Documentation/devicetree/bindings/power/supply/
10456 F:      include/linux/power_supply.h
10457 F:      drivers/power/supply/
10458
10459 POWER STATE COORDINATION INTERFACE (PSCI)
10460 M:      Mark Rutland <mark.rutland@arm.com>
10461 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10462 L:      linux-arm-kernel@lists.infradead.org
10463 S:      Maintained
10464 F:      drivers/firmware/psci*.c
10465 F:      include/linux/psci.h
10466 F:      include/uapi/linux/psci.h
10467
10468 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10469 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10470 L:      linuxppc-dev@lists.ozlabs.org
10471 S:      Maintained
10472 F:      drivers/char/powernv-op-panel.c
10473
10474 PNP SUPPORT
10475 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10476 S:      Maintained
10477 F:      drivers/pnp/
10478
10479 PPP PROTOCOL DRIVERS AND COMPRESSORS
10480 M:      Paul Mackerras <paulus@samba.org>
10481 L:      linux-ppp@vger.kernel.org
10482 S:      Maintained
10483 F:      drivers/net/ppp/ppp_*
10484
10485 PPP OVER ATM (RFC 2364)
10486 M:      Mitchell Blank Jr <mitch@sfgoth.com>
10487 S:      Maintained
10488 F:      net/atm/pppoatm.c
10489 F:      include/uapi/linux/atmppp.h
10490
10491 PPP OVER ETHERNET
10492 M:      Michal Ostrowski <mostrows@earthlink.net>
10493 S:      Maintained
10494 F:      drivers/net/ppp/pppoe.c
10495 F:      drivers/net/ppp/pppox.c
10496
10497 PPP OVER L2TP
10498 M:      James Chapman <jchapman@katalix.com>
10499 S:      Maintained
10500 F:      net/l2tp/l2tp_ppp.c
10501 F:      include/linux/if_pppol2tp.h
10502 F:      include/uapi/linux/if_pppol2tp.h
10503
10504 PPS SUPPORT
10505 M:      Rodolfo Giometti <giometti@enneenne.com>
10506 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
10507 L:      linuxpps@ml.enneenne.com (subscribers-only)
10508 S:      Maintained
10509 F:      Documentation/pps/
10510 F:      drivers/pps/
10511 F:      include/linux/pps*.h
10512
10513 PPTP DRIVER
10514 M:      Dmitry Kozlov <xeb@mail.ru>
10515 L:      netdev@vger.kernel.org
10516 S:      Maintained
10517 F:      drivers/net/ppp/pptp.c
10518 W:      http://sourceforge.net/projects/accel-pptp
10519
10520 PREEMPTIBLE KERNEL
10521 M:      Robert Love <rml@tech9.net>
10522 L:      kpreempt-tech@lists.sourceforge.net
10523 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10524 S:      Supported
10525 F:      Documentation/preempt-locking.txt
10526 F:      include/linux/preempt.h
10527
10528 PRINTK
10529 M:      Petr Mladek <pmladek@suse.com>
10530 M:      Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
10531 R:      Steven Rostedt <rostedt@goodmis.org>
10532 S:      Maintained
10533 F:      kernel/printk/
10534 F:      include/linux/printk.h
10535
10536 PRISM54 WIRELESS DRIVER
10537 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
10538 L:      linux-wireless@vger.kernel.org
10539 W:      http://wireless.kernel.org/en/users/Drivers/p54
10540 S:      Obsolete
10541 F:      drivers/net/wireless/intersil/prism54/
10542
10543 PS3 NETWORK SUPPORT
10544 M:      Geoff Levand <geoff@infradead.org>
10545 L:      netdev@vger.kernel.org
10546 L:      linuxppc-dev@lists.ozlabs.org
10547 S:      Maintained
10548 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
10549
10550 PS3 PLATFORM SUPPORT
10551 M:      Geoff Levand <geoff@infradead.org>
10552 L:      linuxppc-dev@lists.ozlabs.org
10553 S:      Maintained
10554 F:      arch/powerpc/boot/ps3*
10555 F:      arch/powerpc/include/asm/lv1call.h
10556 F:      arch/powerpc/include/asm/ps3*.h
10557 F:      arch/powerpc/platforms/ps3/
10558 F:      drivers/*/ps3*
10559 F:      drivers/ps3/
10560 F:      drivers/rtc/rtc-ps3.c
10561 F:      drivers/usb/host/*ps3.c
10562 F:      sound/ppc/snd_ps3*
10563
10564 PS3VRAM DRIVER
10565 M:      Jim Paris <jim@jtan.com>
10566 M:      Geoff Levand <geoff@infradead.org>
10567 L:      linuxppc-dev@lists.ozlabs.org
10568 S:      Maintained
10569 F:      drivers/block/ps3vram.c
10570
10571 PSAMPLE PACKET SAMPLING SUPPORT:
10572 M:      Yotam Gigi <yotamg@mellanox.com>
10573 S:      Maintained
10574 F:      net/psample
10575 F:      include/net/psample.h
10576 F:      include/uapi/linux/psample.h
10577
10578 PSTORE FILESYSTEM
10579 M:      Kees Cook <keescook@chromium.org>
10580 M:      Anton Vorontsov <anton@enomsg.org>
10581 M:      Colin Cross <ccross@android.com>
10582 M:      Tony Luck <tony.luck@intel.com>
10583 S:      Maintained
10584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10585 F:      fs/pstore/
10586 F:      include/linux/pstore*
10587 F:      drivers/firmware/efi/efi-pstore.c
10588 F:      drivers/acpi/apei/erst.c
10589 F:      Documentation/admin-guide/ramoops.rst
10590 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10591 K:      \b(pstore|ramoops)
10592
10593 PTP HARDWARE CLOCK SUPPORT
10594 M:      Richard Cochran <richardcochran@gmail.com>
10595 L:      netdev@vger.kernel.org
10596 S:      Maintained
10597 W:      http://linuxptp.sourceforge.net/
10598 F:      Documentation/ABI/testing/sysfs-ptp
10599 F:      Documentation/ptp/*
10600 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
10601 F:      drivers/net/phy/dp83640*
10602 F:      drivers/ptp/*
10603 F:      include/linux/ptp_cl*
10604
10605 PTRACE SUPPORT
10606 M:      Roland McGrath <roland@hack.frob.com>
10607 M:      Oleg Nesterov <oleg@redhat.com>
10608 S:      Maintained
10609 F:      include/asm-generic/syscall.h
10610 F:      include/linux/ptrace.h
10611 F:      include/linux/regset.h
10612 F:      include/linux/tracehook.h
10613 F:      include/uapi/linux/ptrace.h
10614 F:      kernel/ptrace.c
10615
10616 PULSE8-CEC DRIVER
10617 M:      Hans Verkuil <hverkuil@xs4all.nl>
10618 L:      linux-media@vger.kernel.org
10619 T:      git git://linuxtv.org/media_tree.git
10620 S:      Maintained
10621 F:      drivers/media/usb/pulse8-cec/*
10622
10623 PVRUSB2 VIDEO4LINUX DRIVER
10624 M:      Mike Isely <isely@pobox.com>
10625 L:      pvrusb2@isely.net       (subscribers-only)
10626 L:      linux-media@vger.kernel.org
10627 W:      http://www.isely.net/pvrusb2/
10628 T:      git git://linuxtv.org/media_tree.git
10629 S:      Maintained
10630 F:      Documentation/media/v4l-drivers/pvrusb2*
10631 F:      drivers/media/usb/pvrusb2/
10632
10633 PWC WEBCAM DRIVER
10634 M:      Hans Verkuil <hverkuil@xs4all.nl>
10635 L:      linux-media@vger.kernel.org
10636 T:      git git://linuxtv.org/media_tree.git
10637 S:      Odd Fixes
10638 F:      drivers/media/usb/pwc/*
10639
10640 PWM FAN DRIVER
10641 M:      Kamil Debski <kamil@wypas.org>
10642 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10643 L:      linux-hwmon@vger.kernel.org
10644 S:      Supported
10645 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
10646 F:      Documentation/hwmon/pwm-fan
10647 F:      drivers/hwmon/pwm-fan.c
10648
10649 PWM SUBSYSTEM
10650 M:      Thierry Reding <thierry.reding@gmail.com>
10651 L:      linux-pwm@vger.kernel.org
10652 S:      Maintained
10653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
10654 F:      Documentation/pwm.txt
10655 F:      Documentation/devicetree/bindings/pwm/
10656 F:      include/linux/pwm.h
10657 F:      drivers/pwm/
10658 F:      drivers/video/backlight/pwm_bl.c
10659 F:      include/linux/pwm_backlight.h
10660 F:      drivers/gpio/gpio-mvebu.c
10661 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
10662
10663 PXA2xx/PXA3xx SUPPORT
10664 M:      Daniel Mack <daniel@zonque.org>
10665 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
10666 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10668 T:      git git://github.com/hzhuang1/linux.git
10669 T:      git git://github.com/rjarzmik/linux.git
10670 S:      Maintained
10671 F:      arch/arm/boot/dts/pxa*
10672 F:      arch/arm/mach-pxa/
10673 F:      drivers/dma/pxa*
10674 F:      drivers/pcmcia/pxa2xx*
10675 F:      drivers/pinctrl/pxa/
10676 F:      drivers/spi/spi-pxa2xx*
10677 F:      drivers/usb/gadget/udc/pxa2*
10678 F:      include/sound/pxa2xx-lib.h
10679 F:      sound/arm/pxa*
10680 F:      sound/soc/pxa/
10681
10682 PXA GPIO DRIVER
10683 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10684 L:      linux-gpio@vger.kernel.org
10685 S:      Maintained
10686 F:      drivers/gpio/gpio-pxa.c
10687
10688 PXA3xx NAND FLASH DRIVER
10689 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
10690 L:      linux-mtd@lists.infradead.org
10691 S:      Maintained
10692 F:      drivers/mtd/nand/pxa3xx_nand.c
10693
10694 MMP SUPPORT
10695 M:      Eric Miao <eric.y.miao@gmail.com>
10696 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
10697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10698 T:      git git://github.com/hzhuang1/linux.git
10699 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
10700 S:      Maintained
10701 F:      arch/arm/boot/dts/mmp*
10702 F:      arch/arm/mach-mmp/
10703
10704 PXA MMCI DRIVER
10705 S:      Orphan
10706
10707 PXA RTC DRIVER
10708 M:      Robert Jarzmik <robert.jarzmik@free.fr>
10709 L:      linux-rtc@vger.kernel.org
10710 S:      Maintained
10711
10712 QAT DRIVER
10713 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
10714 M:      Salvatore Benedetto <salvatore.benedetto@intel.com>
10715 L:      qat-linux@intel.com
10716 S:      Supported
10717 F:      drivers/crypto/qat/
10718
10719 QIB DRIVER
10720 M:      Mike Marciniszyn <infinipath@intel.com>
10721 L:      linux-rdma@vger.kernel.org
10722 S:      Supported
10723 F:      drivers/infiniband/hw/qib/
10724
10725 QLOGIC QLA1280 SCSI DRIVER
10726 M:      Michael Reed <mdr@sgi.com>
10727 L:      linux-scsi@vger.kernel.org
10728 S:      Maintained
10729 F:      drivers/scsi/qla1280.[ch]
10730
10731 QLOGIC QLA2XXX FC-SCSI DRIVER
10732 M:      qla2xxx-upstream@qlogic.com
10733 L:      linux-scsi@vger.kernel.org
10734 S:      Supported
10735 F:      Documentation/scsi/LICENSE.qla2xxx
10736 F:      drivers/scsi/qla2xxx/
10737
10738 QLOGIC QLA4XXX iSCSI DRIVER
10739 M:      QLogic-Storage-Upstream@qlogic.com
10740 L:      linux-scsi@vger.kernel.org
10741 S:      Supported
10742 F:      Documentation/scsi/LICENSE.qla4xxx
10743 F:      drivers/scsi/qla4xxx/
10744
10745 QLOGIC QLA3XXX NETWORK DRIVER
10746 M:      Dept-GELinuxNICDev@cavium.com
10747 L:      netdev@vger.kernel.org
10748 S:      Supported
10749 F:      Documentation/networking/LICENSE.qla3xxx
10750 F:      drivers/net/ethernet/qlogic/qla3xxx.*
10751
10752 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
10753 M:      Harish Patil <harish.patil@cavium.com>
10754 M:      Manish Chopra <manish.chopra@cavium.com>
10755 M:      Dept-GELinuxNICDev@cavium.com
10756 L:      netdev@vger.kernel.org
10757 S:      Supported
10758 F:      drivers/net/ethernet/qlogic/qlcnic/
10759
10760 QLOGIC QLGE 10Gb ETHERNET DRIVER
10761 M:      Harish Patil <harish.patil@cavium.com>
10762 M:      Manish Chopra <manish.chopra@cavium.com>
10763 M:      Dept-GELinuxNICDev@cavium.com
10764 L:      netdev@vger.kernel.org
10765 S:      Supported
10766 F:      drivers/net/ethernet/qlogic/qlge/
10767
10768 QLOGIC QL4xxx ETHERNET DRIVER
10769 M:      Yuval Mintz <Yuval.Mintz@cavium.com>
10770 M:      Ariel Elior <Ariel.Elior@cavium.com>
10771 M:      everest-linux-l2@cavium.com
10772 L:      netdev@vger.kernel.org
10773 S:      Supported
10774 F:      drivers/net/ethernet/qlogic/qed/
10775 F:      include/linux/qed/
10776 F:      drivers/net/ethernet/qlogic/qede/
10777
10778 QLOGIC QL41xxx ISCSI DRIVER
10779 M:      QLogic-Storage-Upstream@cavium.com
10780 L:      linux-scsi@vger.kernel.org
10781 S:      Supported
10782 F:      drivers/scsi/qedi/
10783
10784 QLOGIC QL41xxx FCOE DRIVER
10785 M:      QLogic-Storage-Upstream@cavium.com
10786 L:      linux-scsi@vger.kernel.org
10787 S:      Supported
10788 F:      drivers/scsi/qedf/
10789
10790 QNX4 FILESYSTEM
10791 M:      Anders Larsen <al@alarsen.net>
10792 W:      http://www.alarsen.net/linux/qnx4fs/
10793 S:      Maintained
10794 F:      fs/qnx4/
10795 F:      include/uapi/linux/qnx4_fs.h
10796 F:      include/uapi/linux/qnxtypes.h
10797
10798 QORIQ DPAA2 FSL-MC BUS DRIVER
10799 M:      Stuart Yoder <stuyoder@gmail.com>
10800 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
10801 L:      linux-kernel@vger.kernel.org
10802 S:      Maintained
10803 F:      drivers/staging/fsl-mc/
10804 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
10805
10806 QT1010 MEDIA DRIVER
10807 M:      Antti Palosaari <crope@iki.fi>
10808 L:      linux-media@vger.kernel.org
10809 W:      https://linuxtv.org
10810 W:      http://palosaari.fi/linux/
10811 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10812 T:      git git://linuxtv.org/anttip/media_tree.git
10813 S:      Maintained
10814 F:      drivers/media/tuners/qt1010*
10815
10816 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
10817 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
10818 L:      linux-wireless@vger.kernel.org
10819 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
10820 S:      Supported
10821 F:      drivers/net/wireless/ath/ath9k/
10822
10823 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
10824 M:      Kalle Valo <kvalo@qca.qualcomm.com>
10825 L:      ath10k@lists.infradead.org
10826 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
10827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
10828 S:      Supported
10829 F:      drivers/net/wireless/ath/ath10k/
10830
10831 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
10832 M:      Timur Tabi <timur@codeaurora.org>
10833 L:      netdev@vger.kernel.org
10834 S:      Supported
10835 F:      drivers/net/ethernet/qualcomm/emac/
10836
10837 QUALCOMM HEXAGON ARCHITECTURE
10838 M:      Richard Kuo <rkuo@codeaurora.org>
10839 L:      linux-hexagon@vger.kernel.org
10840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
10841 S:      Supported
10842 F:      arch/hexagon/
10843
10844 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
10845 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
10846 L:      linux-media@vger.kernel.org
10847 L:      linux-arm-msm@vger.kernel.org
10848 T:      git git://linuxtv.org/media_tree.git
10849 S:      Maintained
10850 F:      drivers/media/platform/qcom/venus/
10851
10852 QUALCOMM WCN36XX WIRELESS DRIVER
10853 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
10854 L:      wcn36xx@lists.infradead.org
10855 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
10856 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
10857 S:      Supported
10858 F:      drivers/net/wireless/ath/wcn36xx/
10859
10860 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
10861 M:      Gabriel Somlo <somlo@cmu.edu>
10862 M:      "Michael S. Tsirkin" <mst@redhat.com>
10863 L:      qemu-devel@nongnu.org
10864 S:      Maintained
10865 F:      drivers/firmware/qemu_fw_cfg.c
10866
10867 QUANTENNA QTNFMAC WIRELESS DRIVER
10868 M:   Igor Mitsyanko <imitsyanko@quantenna.com>
10869 M:   Avinash Patil <avinashp@quantenna.com>
10870 M:   Sergey Matyukevich <smatyukevich@quantenna.com>
10871 L:   linux-wireless@vger.kernel.org
10872 S:   Maintained
10873 F:   drivers/net/wireless/quantenna
10874
10875 RADOS BLOCK DEVICE (RBD)
10876 M:      Ilya Dryomov <idryomov@gmail.com>
10877 M:      Sage Weil <sage@redhat.com>
10878 M:      Alex Elder <elder@kernel.org>
10879 L:      ceph-devel@vger.kernel.org
10880 W:      http://ceph.com/
10881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
10882 T:      git git://github.com/ceph/ceph-client.git
10883 S:      Supported
10884 F:      Documentation/ABI/testing/sysfs-bus-rbd
10885 F:      drivers/block/rbd.c
10886 F:      drivers/block/rbd_types.h
10887
10888 RADEON FRAMEBUFFER DISPLAY DRIVER
10889 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10890 L:      linux-fbdev@vger.kernel.org
10891 S:      Maintained
10892 F:      drivers/video/fbdev/aty/radeon*
10893 F:      include/uapi/linux/radeonfb.h
10894
10895 RADIOSHARK RADIO DRIVER
10896 M:      Hans Verkuil <hverkuil@xs4all.nl>
10897 L:      linux-media@vger.kernel.org
10898 T:      git git://linuxtv.org/media_tree.git
10899 S:      Maintained
10900 F:      drivers/media/radio/radio-shark.c
10901
10902 RADIOSHARK2 RADIO DRIVER
10903 M:      Hans Verkuil <hverkuil@xs4all.nl>
10904 L:      linux-media@vger.kernel.org
10905 T:      git git://linuxtv.org/media_tree.git
10906 S:      Maintained
10907 F:      drivers/media/radio/radio-shark2.c
10908 F:      drivers/media/radio/radio-tea5777.c
10909
10910 RAGE128 FRAMEBUFFER DISPLAY DRIVER
10911 M:      Paul Mackerras <paulus@samba.org>
10912 L:      linux-fbdev@vger.kernel.org
10913 S:      Maintained
10914 F:      drivers/video/fbdev/aty/aty128fb.c
10915
10916 RAINSHADOW-CEC DRIVER
10917 M:      Hans Verkuil <hverkuil@xs4all.nl>
10918 L:      linux-media@vger.kernel.org
10919 T:      git git://linuxtv.org/media_tree.git
10920 S:      Maintained
10921 F:      drivers/media/usb/rainshadow-cec/*
10922
10923 RALINK MIPS ARCHITECTURE
10924 M:      John Crispin <john@phrozen.org>
10925 L:      linux-mips@linux-mips.org
10926 S:      Maintained
10927 F:      arch/mips/ralink
10928
10929 RALINK RT2X00 WIRELESS LAN DRIVER
10930 P:      rt2x00 project
10931 M:      Stanislaw Gruszka <sgruszka@redhat.com>
10932 M:      Helmut Schaa <helmut.schaa@googlemail.com>
10933 L:      linux-wireless@vger.kernel.org
10934 S:      Maintained
10935 F:      drivers/net/wireless/ralink/rt2x00/
10936
10937 RAMDISK RAM BLOCK DEVICE DRIVER
10938 M:      Jens Axboe <axboe@kernel.dk>
10939 S:      Maintained
10940 F:      Documentation/blockdev/ramdisk.txt
10941 F:      drivers/block/brd.c
10942
10943 RANDOM NUMBER DRIVER
10944 M:      "Theodore Ts'o" <tytso@mit.edu>
10945 S:      Maintained
10946 F:      drivers/char/random.c
10947
10948 RAPIDIO SUBSYSTEM
10949 M:      Matt Porter <mporter@kernel.crashing.org>
10950 M:      Alexandre Bounine <alexandre.bounine@idt.com>
10951 S:      Maintained
10952 F:      drivers/rapidio/
10953
10954 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
10955 L:      linux-wireless@vger.kernel.org
10956 S:      Orphan
10957 F:      drivers/net/wireless/ray*
10958
10959 RCUTORTURE MODULE
10960 M:      Josh Triplett <josh@joshtriplett.org>
10961 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10962 L:      linux-kernel@vger.kernel.org
10963 S:      Supported
10964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10965 F:      Documentation/RCU/torture.txt
10966 F:      kernel/rcu/rcutorture.c
10967
10968 RCUTORTURE TEST FRAMEWORK
10969 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10970 M:      Josh Triplett <josh@joshtriplett.org>
10971 R:      Steven Rostedt <rostedt@goodmis.org>
10972 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10973 R:      Lai Jiangshan <jiangshanlai@gmail.com>
10974 L:      linux-kernel@vger.kernel.org
10975 S:      Supported
10976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10977 F:      tools/testing/selftests/rcutorture
10978
10979 RDC R-321X SoC
10980 M:      Florian Fainelli <florian@openwrt.org>
10981 S:      Maintained
10982
10983 RDC R6040 FAST ETHERNET DRIVER
10984 M:      Florian Fainelli <f.fainelli@gmail.com>
10985 L:      netdev@vger.kernel.org
10986 S:      Maintained
10987 F:      drivers/net/ethernet/rdc/r6040.c
10988
10989 RDS - RELIABLE DATAGRAM SOCKETS
10990 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
10991 L:      netdev@vger.kernel.org
10992 L:      linux-rdma@vger.kernel.org
10993 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
10994 W:      https://oss.oracle.com/projects/rds/
10995 S:      Supported
10996 F:      net/rds/
10997 F:      Documentation/networking/rds.txt
10998
10999 RDMAVT - RDMA verbs software
11000 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
11001 L:      linux-rdma@vger.kernel.org
11002 S:      Supported
11003 F:      drivers/infiniband/sw/rdmavt
11004
11005 RDT - RESOURCE ALLOCATION
11006 M:      Fenghua Yu <fenghua.yu@intel.com>
11007 L:      linux-kernel@vger.kernel.org
11008 S:      Supported
11009 F:      arch/x86/kernel/cpu/intel_rdt*
11010 F:      arch/x86/include/asm/intel_rdt*
11011 F:      Documentation/x86/intel_rdt*
11012
11013 READ-COPY UPDATE (RCU)
11014 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11015 M:      Josh Triplett <josh@joshtriplett.org>
11016 R:      Steven Rostedt <rostedt@goodmis.org>
11017 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11018 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11019 L:      linux-kernel@vger.kernel.org
11020 W:      http://www.rdrop.com/users/paulmck/RCU/
11021 S:      Supported
11022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11023 F:      Documentation/RCU/
11024 X:      Documentation/RCU/torture.txt
11025 F:      include/linux/rcu*
11026 X:      include/linux/srcu.h
11027 F:      kernel/rcu/
11028 X:      kernel/torture.c
11029
11030 REAL TIME CLOCK (RTC) SUBSYSTEM
11031 M:      Alessandro Zummo <a.zummo@towertech.it>
11032 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
11033 L:      linux-rtc@vger.kernel.org
11034 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
11035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11036 S:      Maintained
11037 F:      Documentation/devicetree/bindings/rtc/
11038 F:      Documentation/rtc.txt
11039 F:      drivers/rtc/
11040 F:      include/linux/rtc.h
11041 F:      include/uapi/linux/rtc.h
11042 F:      include/linux/rtc/
11043 F:      include/linux/platform_data/rtc-*
11044 F:      tools/testing/selftests/timers/rtctest.c
11045
11046 REALTEK AUDIO CODECS
11047 M:      Bard Liao <bardliao@realtek.com>
11048 M:      Oder Chiou <oder_chiou@realtek.com>
11049 S:      Maintained
11050 F:      sound/soc/codecs/rt*
11051 F:      include/sound/rt*.h
11052
11053 REISERFS FILE SYSTEM
11054 L:      reiserfs-devel@vger.kernel.org
11055 S:      Supported
11056 F:      fs/reiserfs/
11057
11058 REGISTER MAP ABSTRACTION
11059 M:      Mark Brown <broonie@kernel.org>
11060 L:      linux-kernel@vger.kernel.org
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11062 S:      Supported
11063 F:      Documentation/devicetree/bindings/regmap/
11064 F:      drivers/base/regmap/
11065 F:      include/linux/regmap.h
11066
11067 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11068 M:      Ohad Ben-Cohen <ohad@wizery.com>
11069 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11070 L:      linux-remoteproc@vger.kernel.org
11071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11072 S:      Maintained
11073 F:      Documentation/devicetree/bindings/remoteproc/
11074 F:      Documentation/remoteproc.txt
11075 F:      drivers/remoteproc/
11076 F:      include/linux/remoteproc.h
11077
11078 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11079 M:      Ohad Ben-Cohen <ohad@wizery.com>
11080 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
11081 L:      linux-remoteproc@vger.kernel.org
11082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11083 S:      Maintained
11084 F:      drivers/rpmsg/
11085 F:      Documentation/rpmsg.txt
11086 F:      include/linux/rpmsg.h
11087 F:      include/linux/rpmsg/
11088
11089 RENESAS CLOCK DRIVERS
11090 M:      Geert Uytterhoeven <geert+renesas@glider.be>
11091 L:      linux-renesas-soc@vger.kernel.org
11092 S:      Supported
11093 F:      drivers/clk/renesas/
11094
11095 RENESAS ETHERNET DRIVERS
11096 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11097 L:      netdev@vger.kernel.org
11098 L:      linux-renesas-soc@vger.kernel.org
11099 F:      drivers/net/ethernet/renesas/
11100 F:      include/linux/sh_eth.h
11101
11102 RENESAS R-CAR GYROADC DRIVER
11103 M:      Marek Vasut <marek.vasut@gmail.com>
11104 L:      linux-iio@vger.kernel.org
11105 S:      Supported
11106 F:      drivers/iio/adc/rcar_gyro_adc.c
11107
11108 RENESAS USB PHY DRIVER
11109 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11110 L:      linux-renesas-soc@vger.kernel.org
11111 S:      Maintained
11112 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
11113
11114 RESET CONTROLLER FRAMEWORK
11115 M:      Philipp Zabel <p.zabel@pengutronix.de>
11116 T:      git git://git.pengutronix.de/git/pza/linux
11117 S:      Maintained
11118 F:      drivers/reset/
11119 F:      Documentation/devicetree/bindings/reset/
11120 F:      include/dt-bindings/reset/
11121 F:      include/linux/reset.h
11122 F:      include/linux/reset-controller.h
11123
11124 RFKILL
11125 M:      Johannes Berg <johannes@sipsolutions.net>
11126 L:      linux-wireless@vger.kernel.org
11127 W:      http://wireless.kernel.org/
11128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11130 S:      Maintained
11131 F:      Documentation/rfkill.txt
11132 F:      net/rfkill/
11133
11134 RHASHTABLE
11135 M:      Thomas Graf <tgraf@suug.ch>
11136 M:      Herbert Xu <herbert@gondor.apana.org.au>
11137 L:      netdev@vger.kernel.org
11138 S:      Maintained
11139 F:      lib/rhashtable.c
11140 F:      include/linux/rhashtable.h
11141
11142 RICOH SMARTMEDIA/XD DRIVER
11143 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11144 S:      Maintained
11145 F:      drivers/mtd/nand/r852.c
11146 F:      drivers/mtd/nand/r852.h
11147
11148 RICOH R5C592 MEMORYSTICK DRIVER
11149 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11150 S:      Maintained
11151 F:      drivers/memstick/host/r592.*
11152
11153 ROCCAT DRIVERS
11154 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
11155 W:      http://sourceforge.net/projects/roccat/
11156 S:      Maintained
11157 F:      drivers/hid/hid-roccat*
11158 F:      include/linux/hid-roccat*
11159 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
11160
11161 ROCKER DRIVER
11162 M:      Jiri Pirko <jiri@resnulli.us>
11163 L:      netdev@vger.kernel.org
11164 S:      Supported
11165 F:      drivers/net/ethernet/rocker/
11166
11167 ROCKETPORT DRIVER
11168 P:      Comtrol Corp.
11169 W:      http://www.comtrol.com
11170 S:      Maintained
11171 F:      Documentation/serial/rocket.txt
11172 F:      drivers/tty/rocket*
11173
11174 ROCKETPORT EXPRESS/INFINITY DRIVER
11175 M:      Kevin Cernekee <cernekee@gmail.com>
11176 L:      linux-serial@vger.kernel.org
11177 S:      Odd Fixes
11178 F:      drivers/tty/serial/rp2.*
11179
11180 ROSE NETWORK LAYER
11181 M:      Ralf Baechle <ralf@linux-mips.org>
11182 L:      linux-hams@vger.kernel.org
11183 W:      http://www.linux-ax25.org/
11184 S:      Maintained
11185 F:      include/net/rose.h
11186 F:      include/uapi/linux/rose.h
11187 F:      net/rose/
11188
11189 RTL2830 MEDIA DRIVER
11190 M:      Antti Palosaari <crope@iki.fi>
11191 L:      linux-media@vger.kernel.org
11192 W:      https://linuxtv.org
11193 W:      http://palosaari.fi/linux/
11194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11195 T:      git git://linuxtv.org/anttip/media_tree.git
11196 S:      Maintained
11197 F:      drivers/media/dvb-frontends/rtl2830*
11198
11199 RTL2832 MEDIA DRIVER
11200 M:      Antti Palosaari <crope@iki.fi>
11201 L:      linux-media@vger.kernel.org
11202 W:      https://linuxtv.org
11203 W:      http://palosaari.fi/linux/
11204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11205 T:      git git://linuxtv.org/anttip/media_tree.git
11206 S:      Maintained
11207 F:      drivers/media/dvb-frontends/rtl2832*
11208
11209 RTL2832_SDR MEDIA DRIVER
11210 M:      Antti Palosaari <crope@iki.fi>
11211 L:      linux-media@vger.kernel.org
11212 W:      https://linuxtv.org
11213 W:      http://palosaari.fi/linux/
11214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11215 T:      git git://linuxtv.org/anttip/media_tree.git
11216 S:      Maintained
11217 F:      drivers/media/dvb-frontends/rtl2832_sdr*
11218
11219 RTL8180 WIRELESS DRIVER
11220 L:      linux-wireless@vger.kernel.org
11221 W:      http://wireless.kernel.org/
11222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11223 S:      Orphan
11224 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
11225
11226 RTL8187 WIRELESS DRIVER
11227 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11228 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
11229 M:      Larry Finger <Larry.Finger@lwfinger.net>
11230 L:      linux-wireless@vger.kernel.org
11231 W:      http://wireless.kernel.org/
11232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11233 S:      Maintained
11234 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
11235
11236 RTL8192CE WIRELESS DRIVER
11237 M:      Larry Finger <Larry.Finger@lwfinger.net>
11238 M:      Chaoming Li <chaoming_li@realsil.com.cn>
11239 L:      linux-wireless@vger.kernel.org
11240 W:      http://wireless.kernel.org/
11241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11242 S:      Maintained
11243 F:      drivers/net/wireless/realtek/rtlwifi/
11244 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11245
11246 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11247 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
11248 L:      linux-wireless@vger.kernel.org
11249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11250 S:      Maintained
11251 F:      drivers/net/wireless/realtek/rtl8xxxu/
11252
11253 S3 SAVAGE FRAMEBUFFER DRIVER
11254 M:      Antonino Daplas <adaplas@gmail.com>
11255 L:      linux-fbdev@vger.kernel.org
11256 S:      Maintained
11257 F:      drivers/video/fbdev/savage/
11258
11259 S390
11260 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
11261 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
11262 L:      linux-s390@vger.kernel.org
11263 W:      http://www.ibm.com/developerworks/linux/linux390/
11264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11265 S:      Supported
11266 F:      arch/s390/
11267 F:      drivers/s390/
11268 F:      Documentation/s390/
11269 F:      Documentation/driver-api/s390-drivers.rst
11270
11271 S390 COMMON I/O LAYER
11272 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11273 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11274 L:      linux-s390@vger.kernel.org
11275 W:      http://www.ibm.com/developerworks/linux/linux390/
11276 S:      Supported
11277 F:      drivers/s390/cio/
11278
11279 S390 DASD DRIVER
11280 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
11281 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11282 L:      linux-s390@vger.kernel.org
11283 W:      http://www.ibm.com/developerworks/linux/linux390/
11284 S:      Supported
11285 F:      drivers/s390/block/dasd*
11286 F:      block/partitions/ibm.c
11287
11288 S390 NETWORK DRIVERS
11289 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11290 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11291 L:      linux-s390@vger.kernel.org
11292 W:      http://www.ibm.com/developerworks/linux/linux390/
11293 S:      Supported
11294 F:      drivers/s390/net/
11295
11296 S390 PCI SUBSYSTEM
11297 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
11298 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
11299 L:      linux-s390@vger.kernel.org
11300 W:      http://www.ibm.com/developerworks/linux/linux390/
11301 S:      Supported
11302 F:      arch/s390/pci/
11303 F:      drivers/pci/hotplug/s390_pci_hpc.c
11304
11305 S390 ZCRYPT DRIVER
11306 M:      Harald Freudenberger <freude@de.ibm.com>
11307 L:      linux-s390@vger.kernel.org
11308 W:      http://www.ibm.com/developerworks/linux/linux390/
11309 S:      Supported
11310 F:      drivers/s390/crypto/
11311
11312 S390 ZFCP DRIVER
11313 M:      Steffen Maier <maier@linux.vnet.ibm.com>
11314 L:      linux-s390@vger.kernel.org
11315 W:      http://www.ibm.com/developerworks/linux/linux390/
11316 S:      Supported
11317 F:      drivers/s390/scsi/zfcp_*
11318
11319 S390 IUCV NETWORK LAYER
11320 M:      Julian Wiedmann <jwi@linux.vnet.ibm.com>
11321 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11322 L:      linux-s390@vger.kernel.org
11323 W:      http://www.ibm.com/developerworks/linux/linux390/
11324 S:      Supported
11325 F:      drivers/s390/net/*iucv*
11326 F:      include/net/iucv/
11327 F:      net/iucv/
11328
11329 S390 IOMMU (PCI)
11330 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
11331 L:      linux-s390@vger.kernel.org
11332 W:      http://www.ibm.com/developerworks/linux/linux390/
11333 S:      Supported
11334 F:      drivers/iommu/s390-iommu.c
11335
11336 S390 VFIO-CCW DRIVER
11337 M:      Cornelia Huck <cohuck@redhat.com>
11338 M:      Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11339 L:      linux-s390@vger.kernel.org
11340 L:      kvm@vger.kernel.org
11341 S:      Supported
11342 F:      drivers/s390/cio/vfio_ccw*
11343 F:      Documentation/s390/vfio-ccw.txt
11344 F:      include/uapi/linux/vfio_ccw.h
11345
11346 S3C24XX SD/MMC Driver
11347 M:      Ben Dooks <ben-linux@fluff.org>
11348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11349 S:      Supported
11350 F:      drivers/mmc/host/s3cmci.*
11351
11352 SAA6588 RDS RECEIVER DRIVER
11353 M:      Hans Verkuil <hverkuil@xs4all.nl>
11354 L:      linux-media@vger.kernel.org
11355 T:      git git://linuxtv.org/media_tree.git
11356 W:      https://linuxtv.org
11357 S:      Odd Fixes
11358 F:      drivers/media/i2c/saa6588*
11359
11360 SAA7134 VIDEO4LINUX DRIVER
11361 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11362 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11363 L:      linux-media@vger.kernel.org
11364 W:      https://linuxtv.org
11365 T:      git git://linuxtv.org/media_tree.git
11366 S:      Odd fixes
11367 F:      Documentation/media/v4l-drivers/saa7134*
11368 F:      drivers/media/pci/saa7134/
11369
11370 SAA7146 VIDEO4LINUX-2 DRIVER
11371 M:      Hans Verkuil <hverkuil@xs4all.nl>
11372 L:      linux-media@vger.kernel.org
11373 T:      git git://linuxtv.org/media_tree.git
11374 S:      Maintained
11375 F:      drivers/media/common/saa7146/
11376 F:      drivers/media/pci/saa7146/
11377 F:      include/media/saa7146*
11378
11379 SAMSUNG LAPTOP DRIVER
11380 M:      Corentin Chary <corentin.chary@gmail.com>
11381 L:      platform-driver-x86@vger.kernel.org
11382 S:      Maintained
11383 F:      drivers/platform/x86/samsung-laptop.c
11384
11385 SAMSUNG AUDIO (ASoC) DRIVERS
11386 M:      Krzysztof Kozlowski <krzk@kernel.org>
11387 M:      Sangbeom Kim <sbkim73@samsung.com>
11388 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11389 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11390 S:      Supported
11391 F:      sound/soc/samsung/
11392
11393 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11394 M:      Krzysztof Kozlowski <krzk@kernel.org>
11395 L:      linux-crypto@vger.kernel.org
11396 L:      linux-samsung-soc@vger.kernel.org
11397 S:      Maintained
11398 F:      drivers/crypto/exynos-rng.c
11399 F:      Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt
11400
11401 SAMSUNG FRAMEBUFFER DRIVER
11402 M:      Jingoo Han <jingoohan1@gmail.com>
11403 L:      linux-fbdev@vger.kernel.org
11404 S:      Maintained
11405 F:      drivers/video/fbdev/s3c-fb.c
11406
11407 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11408 M:      Sangbeom Kim <sbkim73@samsung.com>
11409 M:      Krzysztof Kozlowski <krzk@kernel.org>
11410 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11411 L:      linux-kernel@vger.kernel.org
11412 L:      linux-samsung-soc@vger.kernel.org
11413 S:      Supported
11414 F:      drivers/mfd/sec*.c
11415 F:      drivers/regulator/s2m*.c
11416 F:      drivers/regulator/s5m*.c
11417 F:      drivers/clk/clk-s2mps11.c
11418 F:      drivers/rtc/rtc-s5m.c
11419 F:      include/linux/mfd/samsung/
11420 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11421 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11422 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11423 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11424
11425 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11426 M:      Krzysztof Kozlowski <krzk@kernel.org>
11427 M:      Vladimir Zapolskiy <vz@mleia.com>
11428 L:      linux-crypto@vger.kernel.org
11429 L:      linux-samsung-soc@vger.kernel.org
11430 S:      Maintained
11431 F:      drivers/crypto/s5p-sss.c
11432
11433 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11434 M:      Kyungmin Park <kyungmin.park@samsung.com>
11435 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11436 L:      linux-media@vger.kernel.org
11437 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
11438 S:      Supported
11439 F:      drivers/media/platform/exynos4-is/
11440
11441 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11442 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11443 L:      linux-media@vger.kernel.org
11444 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11445 S:      Maintained
11446 F:      drivers/media/platform/s3c-camif/
11447 F:      include/media/drv-intf/s3c_camif.h
11448
11449 SAMSUNG S5C73M3 CAMERA DRIVER
11450 M:      Kyungmin Park <kyungmin.park@samsung.com>
11451 M:      Andrzej Hajda <a.hajda@samsung.com>
11452 L:      linux-media@vger.kernel.org
11453 S:      Supported
11454 F:      drivers/media/i2c/s5c73m3/*
11455
11456 SAMSUNG S5K5BAF CAMERA DRIVER
11457 M:      Kyungmin Park <kyungmin.park@samsung.com>
11458 M:      Andrzej Hajda <a.hajda@samsung.com>
11459 L:      linux-media@vger.kernel.org
11460 S:      Supported
11461 F:      drivers/media/i2c/s5k5baf.c
11462
11463 SAMSUNG S3FWRN5 NFC DRIVER
11464 M:      Robert Baldyga <r.baldyga@samsung.com>
11465 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
11466 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11467 S:      Supported
11468 F:      drivers/nfc/s3fwrn5
11469
11470 SAMSUNG SOC CLOCK DRIVERS
11471 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11472 M:      Tomasz Figa <tomasz.figa@gmail.com>
11473 M:      Chanwoo Choi <cw00.choi@samsung.com>
11474 S:      Supported
11475 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11476 F:      drivers/clk/samsung/
11477 F:      include/dt-bindings/clock/exynos*.h
11478 F:      Documentation/devicetree/bindings/clock/exynos*.txt
11479
11480 SAMSUNG SPI DRIVERS
11481 M:      Kukjin Kim <kgene@kernel.org>
11482 M:      Krzysztof Kozlowski <krzk@kernel.org>
11483 M:      Andi Shyti <andi.shyti@samsung.com>
11484 L:      linux-spi@vger.kernel.org
11485 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11486 S:      Maintained
11487 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
11488 F:      drivers/spi/spi-s3c*
11489 F:      include/linux/platform_data/spi-s3c64xx.h
11490
11491 SAMSUNG SXGBE DRIVERS
11492 M:      Byungho An <bh74.an@samsung.com>
11493 M:      Girish K S <ks.giri@samsung.com>
11494 M:      Vipul Pandya <vipul.pandya@samsung.com>
11495 S:      Supported
11496 L:      netdev@vger.kernel.org
11497 F:      drivers/net/ethernet/samsung/sxgbe/
11498
11499 SAMSUNG THERMAL DRIVER
11500 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11501 L:      linux-pm@vger.kernel.org
11502 L:      linux-samsung-soc@vger.kernel.org
11503 S:      Supported
11504 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
11505 F:      drivers/thermal/samsung/
11506
11507 SAMSUNG USB2 PHY DRIVER
11508 M:      Kamil Debski <kamil@wypas.org>
11509 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
11510 L:      linux-kernel@vger.kernel.org
11511 S:      Supported
11512 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
11513 F:      Documentation/phy/samsung-usb2.txt
11514 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
11515 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
11516 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
11517 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
11518 F:      drivers/phy/samsung/phy-samsung-usb2.c
11519 F:      drivers/phy/samsung/phy-samsung-usb2.h
11520
11521 SERIAL DRIVERS
11522 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11523 L:      linux-serial@vger.kernel.org
11524 S:      Maintained
11525 F:      Documentation/devicetree/bindings/serial/
11526 F:      drivers/tty/serial/
11527
11528 SERIAL DEVICE BUS
11529 M:      Rob Herring <robh@kernel.org>
11530 L:      linux-serial@vger.kernel.org
11531 S:      Maintained
11532 F:      Documentation/devicetree/bindings/serial/slave-device.txt
11533 F:      drivers/tty/serdev/
11534 F:      include/linux/serdev.h
11535
11536 SERIAL IR RECEIVER
11537 M:      Sean Young <sean@mess.org>
11538 L:      linux-media@vger.kernel.org
11539 S:      Maintained
11540 F:      drivers/media/rc/serial_ir.c
11541
11542 STI CEC DRIVER
11543 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
11544 S:      Maintained
11545 F:      drivers/staging/media/st-cec/
11546 F:      Documentation/devicetree/bindings/media/stih-cec.txt
11547
11548 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
11549 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
11550 L:      linux-s390@vger.kernel.org
11551 W:      http://www.ibm.com/developerworks/linux/linux390/
11552 S:      Supported
11553 F:      net/smc/
11554
11555 SYNOPSYS DESIGNWARE DMAC DRIVER
11556 M:      Viresh Kumar <vireshk@kernel.org>
11557 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11558 S:      Maintained
11559 F:      include/linux/dma/dw.h
11560 F:      include/linux/platform_data/dma-dw.h
11561 F:      drivers/dma/dw/
11562
11563 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
11564 M:      Jie Deng <jiedeng@synopsys.com>
11565 L:      netdev@vger.kernel.org
11566 S:      Supported
11567 F:      drivers/net/ethernet/synopsys/
11568
11569 SYNOPSYS DESIGNWARE I2C DRIVER
11570 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
11571 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11572 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
11573 L:      linux-i2c@vger.kernel.org
11574 S:      Maintained
11575 F:      drivers/i2c/busses/i2c-designware-*
11576 F:      include/linux/platform_data/i2c-designware.h
11577
11578 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
11579 M:      Jaehoon Chung <jh80.chung@samsung.com>
11580 L:      linux-mmc@vger.kernel.org
11581 S:      Maintained
11582 F:      drivers/mmc/host/dw_mmc*
11583
11584 SYSTEM TRACE MODULE CLASS
11585 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
11586 S:      Maintained
11587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
11588 F:      Documentation/trace/stm.txt
11589 F:      drivers/hwtracing/stm/
11590 F:      include/linux/stm.h
11591 F:      include/uapi/linux/stm.h
11592
11593 TEE SUBSYSTEM
11594 M:      Jens Wiklander <jens.wiklander@linaro.org>
11595 S:      Maintained
11596 F:      include/linux/tee_drv.h
11597 F:      include/uapi/linux/tee.h
11598 F:      drivers/tee/
11599 F:      Documentation/tee.txt
11600
11601 THUNDERBOLT DRIVER
11602 M:      Andreas Noever <andreas.noever@gmail.com>
11603 M:      Michael Jamet <michael.jamet@intel.com>
11604 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
11605 M:      Yehezkel Bernat <yehezkel.bernat@intel.com>
11606 S:      Maintained
11607 F:      drivers/thunderbolt/
11608
11609 TI BQ27XXX POWER SUPPLY DRIVER
11610 R:      Andrew F. Davis <afd@ti.com>
11611 F:      include/linux/power/bq27xxx_battery.h
11612 F:      drivers/power/supply/bq27xxx_battery.c
11613 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11614
11615 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
11616 M:      John Stultz <john.stultz@linaro.org>
11617 M:      Thomas Gleixner <tglx@linutronix.de>
11618 R:      Stephen Boyd <sboyd@codeaurora.org>
11619 L:      linux-kernel@vger.kernel.org
11620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11621 S:      Supported
11622 F:      include/linux/clocksource.h
11623 F:      include/linux/time.h
11624 F:      include/linux/timex.h
11625 F:      include/uapi/linux/time.h
11626 F:      include/uapi/linux/timex.h
11627 F:      kernel/time/clocksource.c
11628 F:      kernel/time/time*.c
11629 F:      kernel/time/alarmtimer.c
11630 F:      kernel/time/ntp.c
11631 F:      tools/testing/selftests/timers/
11632
11633 TI TRF7970A NFC DRIVER
11634 M:      Mark Greer <mgreer@animalcreek.com>
11635 L:      linux-wireless@vger.kernel.org
11636 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
11637 S:      Supported
11638 F:      drivers/nfc/trf7970a.c
11639 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
11640
11641 SC1200 WDT DRIVER
11642 M:      Zwane Mwaikambo <zwanem@gmail.com>
11643 S:      Maintained
11644 F:      drivers/watchdog/sc1200wdt.c
11645
11646 SCHEDULER
11647 M:      Ingo Molnar <mingo@redhat.com>
11648 M:      Peter Zijlstra <peterz@infradead.org>
11649 L:      linux-kernel@vger.kernel.org
11650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11651 S:      Maintained
11652 F:      kernel/sched/
11653 F:      include/linux/sched.h
11654 F:      include/uapi/linux/sched.h
11655 F:      include/linux/wait.h
11656
11657 SCORE ARCHITECTURE
11658 M:      Chen Liqin <liqin.linux@gmail.com>
11659 M:      Lennox Wu <lennox.wu@gmail.com>
11660 W:      http://www.sunplus.com
11661 S:      Supported
11662 F:      arch/score/
11663
11664 SCR24X CHIP CARD INTERFACE DRIVER
11665 M:      Lubomir Rintel <lkundrak@v3.sk>
11666 S:      Supported
11667 F:      drivers/char/pcmcia/scr24x_cs.c
11668
11669 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
11670 M:      Sudeep Holla <sudeep.holla@arm.com>
11671 L:      linux-arm-kernel@lists.infradead.org
11672 S:      Maintained
11673 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
11674 F:      drivers/clk/clk-scpi.c
11675 F:      drivers/cpufreq/scpi-cpufreq.c
11676 F:      drivers/firmware/arm_scpi.c
11677 F:      include/linux/scpi_protocol.h
11678
11679 SCSI CDROM DRIVER
11680 M:      Jens Axboe <axboe@kernel.dk>
11681 L:      linux-scsi@vger.kernel.org
11682 W:      http://www.kernel.dk
11683 S:      Maintained
11684 F:      drivers/scsi/sr*
11685
11686 SCSI RDMA PROTOCOL (SRP) INITIATOR
11687 M:      Bart Van Assche <bart.vanassche@sandisk.com>
11688 L:      linux-rdma@vger.kernel.org
11689 S:      Supported
11690 W:      http://www.openfabrics.org
11691 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11693 F:      drivers/infiniband/ulp/srp/
11694 F:      include/scsi/srp.h
11695
11696 SCSI SG DRIVER
11697 M:      Doug Gilbert <dgilbert@interlog.com>
11698 L:      linux-scsi@vger.kernel.org
11699 W:      http://sg.danny.cz/sg
11700 S:      Maintained
11701 F:      Documentation/scsi/scsi-generic.txt
11702 F:      drivers/scsi/sg.c
11703 F:      include/scsi/sg.h
11704
11705 SCSI SUBSYSTEM
11706 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
11707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11708 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11710 L:      linux-scsi@vger.kernel.org
11711 S:      Maintained
11712 F:      Documentation/devicetree/bindings/scsi/
11713 F:      drivers/scsi/
11714 F:      include/scsi/
11715
11716 SCSI TAPE DRIVER
11717 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
11718 L:      linux-scsi@vger.kernel.org
11719 S:      Maintained
11720 F:      Documentation/scsi/st.txt
11721 F:      drivers/scsi/st.*
11722 F:      drivers/scsi/st_*.h
11723
11724 SCTP PROTOCOL
11725 M:      Vlad Yasevich <vyasevich@gmail.com>
11726 M:      Neil Horman <nhorman@tuxdriver.com>
11727 L:      linux-sctp@vger.kernel.org
11728 W:      http://lksctp.sourceforge.net
11729 S:      Maintained
11730 F:      Documentation/networking/sctp.txt
11731 F:      include/linux/sctp.h
11732 F:      include/uapi/linux/sctp.h
11733 F:      include/net/sctp/
11734 F:      net/sctp/
11735
11736 SCx200 CPU SUPPORT
11737 M:      Jim Cromie <jim.cromie@gmail.com>
11738 S:      Odd Fixes
11739 F:      Documentation/i2c/busses/scx200_acb
11740 F:      arch/x86/platform/scx200/
11741 F:      drivers/watchdog/scx200_wdt.c
11742 F:      drivers/i2c/busses/scx200*
11743 F:      drivers/mtd/maps/scx200_docflash.c
11744 F:      include/linux/scx200.h
11745
11746 SCx200 GPIO DRIVER
11747 M:      Jim Cromie <jim.cromie@gmail.com>
11748 S:      Maintained
11749 F:      drivers/char/scx200_gpio.c
11750 F:      include/linux/scx200_gpio.h
11751
11752 SCx200 HRT CLOCKSOURCE DRIVER
11753 M:      Jim Cromie <jim.cromie@gmail.com>
11754 S:      Maintained
11755 F:      drivers/clocksource/scx200_hrt.c
11756
11757 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
11758 M:      Sascha Sommer <saschasommer@freenet.de>
11759 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
11760 S:      Maintained
11761 F:      drivers/mmc/host/sdricoh_cs.c
11762
11763 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
11764 M:      Adrian Hunter <adrian.hunter@intel.com>
11765 L:      linux-mmc@vger.kernel.org
11766 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
11767 S:      Maintained
11768 F:      drivers/mmc/host/sdhci*
11769 F:      include/linux/mmc/sdhci*
11770
11771 SECURE COMPUTING
11772 M:      Kees Cook <keescook@chromium.org>
11773 R:      Andy Lutomirski <luto@amacapital.net>
11774 R:      Will Drewry <wad@chromium.org>
11775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
11776 S:      Supported
11777 F:      kernel/seccomp.c
11778 F:      include/uapi/linux/seccomp.h
11779 F:      include/linux/seccomp.h
11780 F:      tools/testing/selftests/seccomp/*
11781 F:      tools/testing/selftests/kselftest_harness.h
11782 F:      Documentation/userspace-api/seccomp_filter.rst
11783 K:      \bsecure_computing
11784 K:      \bTIF_SECCOMP\b
11785
11786 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
11787 M:      Al Cooper <alcooperx@gmail.com>
11788 L:      linux-mmc@vger.kernel.org
11789 L:      bcm-kernel-feedback-list@broadcom.com
11790 S:      Maintained
11791 F:      drivers/mmc/host/sdhci-brcmstb*
11792
11793 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
11794 M:      Ben Dooks <ben-linux@fluff.org>
11795 M:      Jaehoon Chung <jh80.chung@samsung.com>
11796 L:      linux-mmc@vger.kernel.org
11797 S:      Maintained
11798 F:      drivers/mmc/host/sdhci-s3c*
11799
11800 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
11801 M:      Viresh Kumar <vireshk@kernel.org>
11802 L:      linux-mmc@vger.kernel.org
11803 S:      Maintained
11804 F:      drivers/mmc/host/sdhci-spear.c
11805
11806 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
11807 M:      Scott Bauer <scott.bauer@intel.com>
11808 M:      Jonathan Derrick <jonathan.derrick@intel.com>
11809 M:      Rafael Antognolli <rafael.antognolli@intel.com>
11810 L:      linux-block@vger.kernel.org
11811 S:      Supported
11812 F:      block/sed*
11813 F:      block/opal_proto.h
11814 F:      include/linux/sed*
11815 F:      include/uapi/linux/sed*
11816
11817 SECURITY SUBSYSTEM
11818 M:      James Morris <james.l.morris@oracle.com>
11819 M:      "Serge E. Hallyn" <serge@hallyn.com>
11820 L:      linux-security-module@vger.kernel.org (suggested Cc:)
11821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
11822 W:      http://kernsec.org/
11823 S:      Supported
11824 F:      security/
11825
11826 SECURITY CONTACT
11827 M:      Security Officers <security@kernel.org>
11828 S:      Supported
11829
11830 SELINUX SECURITY MODULE
11831 M:      Paul Moore <paul@paul-moore.com>
11832 M:      Stephen Smalley <sds@tycho.nsa.gov>
11833 M:      Eric Paris <eparis@parisplace.org>
11834 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
11835 W:      http://selinuxproject.org
11836 T:      git git://git.infradead.org/users/pcmoore/selinux
11837 S:      Supported
11838 F:      include/linux/selinux*
11839 F:      security/selinux/
11840 F:      scripts/selinux/
11841 F:      Documentation/admin-guide/LSM/SELinux.rst
11842
11843 APPARMOR SECURITY MODULE
11844 M:      John Johansen <john.johansen@canonical.com>
11845 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
11846 W:      apparmor.wiki.kernel.org
11847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
11848 S:      Supported
11849 F:      security/apparmor/
11850 F:      Documentation/admin-guide/LSM/apparmor.rst
11851
11852 LOADPIN SECURITY MODULE
11853 M:      Kees Cook <keescook@chromium.org>
11854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11855 S:      Supported
11856 F:      security/loadpin/
11857 F:      Documentation/admin-guide/LSM/LoadPin.rst
11858
11859 YAMA SECURITY MODULE
11860 M:      Kees Cook <keescook@chromium.org>
11861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
11862 S:      Supported
11863 F:      security/yama/
11864 F:      Documentation/admin-guide/LSM/Yama.rst
11865
11866 SENSABLE PHANTOM
11867 M:      Jiri Slaby <jirislaby@gmail.com>
11868 S:      Maintained
11869 F:      drivers/misc/phantom.c
11870 F:      include/uapi/linux/phantom.h
11871
11872 Emulex 10Gbps iSCSI - OneConnect DRIVER
11873 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
11874 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
11875 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
11876 L:      linux-scsi@vger.kernel.org
11877 W:      http://www.broadcom.com
11878 S:      Supported
11879 F:      drivers/scsi/be2iscsi/
11880
11881 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
11882 M:      Sathya Perla <sathya.perla@broadcom.com>
11883 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
11884 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
11885 M:      Somnath Kotur <somnath.kotur@broadcom.com>
11886 L:      netdev@vger.kernel.org
11887 W:      http://www.emulex.com
11888 S:      Supported
11889 F:      drivers/net/ethernet/emulex/benet/
11890
11891 EMULEX ONECONNECT ROCE DRIVER
11892 M:      Selvin Xavier <selvin.xavier@broadcom.com>
11893 M:      Devesh Sharma <devesh.sharma@broadcom.com>
11894 L:      linux-rdma@vger.kernel.org
11895 W:      http://www.broadcom.com
11896 S:      Odd Fixes
11897 F:      drivers/infiniband/hw/ocrdma/
11898 F:      include/uapi/rdma/ocrdma-abi.h
11899
11900 SFC NETWORK DRIVER
11901 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
11902 M:      Edward Cree <ecree@solarflare.com>
11903 M:      Bert Kenward <bkenward@solarflare.com>
11904 L:      netdev@vger.kernel.org
11905 S:      Supported
11906 F:      drivers/net/ethernet/sfc/
11907
11908 SGI GRU DRIVER
11909 M:      Dimitri Sivanich <sivanich@sgi.com>
11910 S:      Maintained
11911 F:      drivers/misc/sgi-gru/
11912
11913 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
11914 M:      Pat Gefre <pfg@sgi.com>
11915 L:      linux-ia64@vger.kernel.org
11916 S:      Supported
11917 F:      Documentation/ia64/serial.txt
11918 F:      drivers/tty/serial/ioc?_serial.c
11919 F:      include/linux/ioc?.h
11920
11921 SGI XP/XPC/XPNET DRIVER
11922 M:      Cliff Whickman <cpw@sgi.com>
11923 M:      Robin Holt <robinmholt@gmail.com>
11924 S:      Maintained
11925 F:      drivers/misc/sgi-xp/
11926
11927 SI2157 MEDIA DRIVER
11928 M:      Antti Palosaari <crope@iki.fi>
11929 L:      linux-media@vger.kernel.org
11930 W:      https://linuxtv.org
11931 W:      http://palosaari.fi/linux/
11932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11933 T:      git git://linuxtv.org/anttip/media_tree.git
11934 S:      Maintained
11935 F:      drivers/media/tuners/si2157*
11936
11937 SI2168 MEDIA DRIVER
11938 M:      Antti Palosaari <crope@iki.fi>
11939 L:      linux-media@vger.kernel.org
11940 W:      https://linuxtv.org
11941 W:      http://palosaari.fi/linux/
11942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11943 T:      git git://linuxtv.org/anttip/media_tree.git
11944 S:      Maintained
11945 F:      drivers/media/dvb-frontends/si2168*
11946
11947 SI470X FM RADIO RECEIVER I2C DRIVER
11948 M:      Hans Verkuil <hverkuil@xs4all.nl>
11949 L:      linux-media@vger.kernel.org
11950 T:      git git://linuxtv.org/media_tree.git
11951 W:      https://linuxtv.org
11952 S:      Odd Fixes
11953 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
11954
11955 SI470X FM RADIO RECEIVER USB DRIVER
11956 M:      Hans Verkuil <hverkuil@xs4all.nl>
11957 L:      linux-media@vger.kernel.org
11958 T:      git git://linuxtv.org/media_tree.git
11959 W:      https://linuxtv.org
11960 S:      Maintained
11961 F:      drivers/media/radio/si470x/radio-si470x-common.c
11962 F:      drivers/media/radio/si470x/radio-si470x.h
11963 F:      drivers/media/radio/si470x/radio-si470x-usb.c
11964
11965 SI4713 FM RADIO TRANSMITTER I2C DRIVER
11966 M:      Eduardo Valentin <edubezval@gmail.com>
11967 L:      linux-media@vger.kernel.org
11968 T:      git git://linuxtv.org/media_tree.git
11969 W:      https://linuxtv.org
11970 S:      Odd Fixes
11971 F:      drivers/media/radio/si4713/si4713.?
11972
11973 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
11974 M:      Eduardo Valentin <edubezval@gmail.com>
11975 L:      linux-media@vger.kernel.org
11976 T:      git git://linuxtv.org/media_tree.git
11977 W:      https://linuxtv.org
11978 S:      Odd Fixes
11979 F:      drivers/media/radio/si4713/radio-platform-si4713.c
11980
11981 SI4713 FM RADIO TRANSMITTER USB DRIVER
11982 M:      Hans Verkuil <hverkuil@xs4all.nl>
11983 L:      linux-media@vger.kernel.org
11984 T:      git git://linuxtv.org/media_tree.git
11985 W:      https://linuxtv.org
11986 S:      Maintained
11987 F:      drivers/media/radio/si4713/radio-usb-si4713.c
11988
11989 SIANO DVB DRIVER
11990 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11991 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11992 L:      linux-media@vger.kernel.org
11993 W:      https://linuxtv.org
11994 T:      git git://linuxtv.org/media_tree.git
11995 S:      Odd fixes
11996 F:      drivers/media/common/siano/
11997 F:      drivers/media/usb/siano/
11998 F:      drivers/media/usb/siano/
11999 F:      drivers/media/mmc/siano/
12000
12001 SILEAD TOUCHSCREEN DRIVER
12002 M:      Hans de Goede <hdegoede@redhat.com>
12003 L:      linux-input@vger.kernel.org
12004 L:      platform-driver-x86@vger.kernel.org
12005 S:      Maintained
12006 F:      drivers/input/touchscreen/silead.c
12007 F:      drivers/platform/x86/silead_dmi.c
12008
12009 SIMPLEFB FB DRIVER
12010 M:      Hans de Goede <hdegoede@redhat.com>
12011 L:      linux-fbdev@vger.kernel.org
12012 S:      Maintained
12013 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
12014 F:      drivers/video/fbdev/simplefb.c
12015 F:      include/linux/platform_data/simplefb.h
12016
12017 SH_VEU V4L2 MEM2MEM DRIVER
12018 L:      linux-media@vger.kernel.org
12019 S:      Orphan
12020 F:      drivers/media/platform/sh_veu.c
12021
12022 SH_VOU V4L2 OUTPUT DRIVER
12023 L:      linux-media@vger.kernel.org
12024 S:      Orphan
12025 F:      drivers/media/platform/sh_vou.c
12026 F:      include/media/drv-intf/sh_vou.h
12027
12028 SIMPLE FIRMWARE INTERFACE (SFI)
12029 M:      Len Brown <lenb@kernel.org>
12030 L:      sfi-devel@simplefirmware.org
12031 W:      http://simplefirmware.org/
12032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12033 S:      Supported
12034 F:      arch/x86/platform/sfi/
12035 F:      drivers/sfi/
12036 F:      include/linux/sfi*.h
12037
12038 SIMTEC EB110ATX (Chalice CATS)
12039 P:      Ben Dooks
12040 P:      Vincent Sanders <vince@simtec.co.uk>
12041 M:      Simtec Linux Team <linux@simtec.co.uk>
12042 W:      http://www.simtec.co.uk/products/EB110ATX/
12043 S:      Supported
12044
12045 SIMTEC EB2410ITX (BAST)
12046 P:      Ben Dooks
12047 P:      Vincent Sanders <vince@simtec.co.uk>
12048 M:      Simtec Linux Team <linux@simtec.co.uk>
12049 W:      http://www.simtec.co.uk/products/EB2410ITX/
12050 S:      Supported
12051 F:      arch/arm/mach-s3c24xx/mach-bast.c
12052 F:      arch/arm/mach-s3c24xx/bast-ide.c
12053 F:      arch/arm/mach-s3c24xx/bast-irq.c
12054
12055 SIPHASH PRF ROUTINES
12056 M:      Jason A. Donenfeld <Jason@zx2c4.com>
12057 S:      Maintained
12058 F:      lib/siphash.c
12059 F:      lib/test_siphash.c
12060 F:      include/linux/siphash.h
12061
12062 TI DAVINCI MACHINE SUPPORT
12063 M:      Sekhar Nori <nsekhar@ti.com>
12064 M:      Kevin Hilman <khilman@kernel.org>
12065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
12067 S:      Supported
12068 F:      arch/arm/mach-davinci/
12069 F:      drivers/i2c/busses/i2c-davinci.c
12070 F:      arch/arm/boot/dts/da850*
12071
12072 TI DAVINCI SERIES MEDIA DRIVER
12073 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12074 L:      linux-media@vger.kernel.org
12075 W:      https://linuxtv.org
12076 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12077 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12078 S:      Maintained
12079 F:      drivers/media/platform/davinci/
12080 F:      include/media/davinci/
12081
12082 TI DAVINCI SERIES GPIO DRIVER
12083 M:      Keerthy <j-keerthy@ti.com>
12084 L:      linux-gpio@vger.kernel.org
12085 S:      Maintained
12086 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.txt
12087 F:      drivers/gpio/gpio-davinci.c
12088
12089 TI AM437X VPFE DRIVER
12090 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12091 L:      linux-media@vger.kernel.org
12092 W:      https://linuxtv.org
12093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12094 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12095 S:      Maintained
12096 F:      drivers/media/platform/am437x/
12097
12098 OV2659 OMNIVISION SENSOR DRIVER
12099 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12100 L:      linux-media@vger.kernel.org
12101 W:      https://linuxtv.org
12102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12103 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12104 S:      Maintained
12105 F:      drivers/media/i2c/ov2659.c
12106 F:      include/media/i2c/ov2659.h
12107
12108 SILICON MOTION SM712 FRAME BUFFER DRIVER
12109 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12110 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12111 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12112 L:      linux-fbdev@vger.kernel.org
12113 S:      Maintained
12114 F:      drivers/video/fbdev/sm712*
12115 F:      Documentation/fb/sm712fb.txt
12116
12117 SIS 190 ETHERNET DRIVER
12118 M:      Francois Romieu <romieu@fr.zoreil.com>
12119 L:      netdev@vger.kernel.org
12120 S:      Maintained
12121 F:      drivers/net/ethernet/sis/sis190.c
12122
12123 SIS 900/7016 FAST ETHERNET DRIVER
12124 M:      Daniele Venzano <venza@brownhat.org>
12125 W:      http://www.brownhat.org/sis900.html
12126 L:      netdev@vger.kernel.org
12127 S:      Maintained
12128 F:      drivers/net/ethernet/sis/sis900.*
12129
12130 SIS FRAMEBUFFER DRIVER
12131 M:      Thomas Winischhofer <thomas@winischhofer.net>
12132 W:      http://www.winischhofer.net/linuxsisvga.shtml
12133 S:      Maintained
12134 F:      Documentation/fb/sisfb.txt
12135 F:      drivers/video/fbdev/sis/
12136 F:      include/video/sisfb.h
12137
12138 SIS USB2VGA DRIVER
12139 M:      Thomas Winischhofer <thomas@winischhofer.net>
12140 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
12141 S:      Maintained
12142 F:      drivers/usb/misc/sisusbvga/
12143
12144 SLAB ALLOCATOR
12145 M:      Christoph Lameter <cl@linux.com>
12146 M:      Pekka Enberg <penberg@kernel.org>
12147 M:      David Rientjes <rientjes@google.com>
12148 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
12149 M:      Andrew Morton <akpm@linux-foundation.org>
12150 L:      linux-mm@kvack.org
12151 S:      Maintained
12152 F:      include/linux/sl?b*.h
12153 F:      mm/sl?b*
12154
12155 SLEEPABLE READ-COPY UPDATE (SRCU)
12156 M:      Lai Jiangshan <jiangshanlai@gmail.com>
12157 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12158 M:      Josh Triplett <josh@joshtriplett.org>
12159 R:      Steven Rostedt <rostedt@goodmis.org>
12160 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12161 L:      linux-kernel@vger.kernel.org
12162 W:      http://www.rdrop.com/users/paulmck/RCU/
12163 S:      Supported
12164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12165 F:      include/linux/srcu.h
12166 F:      kernel/rcu/srcu.c
12167
12168 SMACK SECURITY MODULE
12169 M:      Casey Schaufler <casey@schaufler-ca.com>
12170 L:      linux-security-module@vger.kernel.org
12171 W:      http://schaufler-ca.com
12172 T:      git git://github.com/cschaufler/smack-next
12173 S:      Maintained
12174 F:      Documentation/admin-guide/LSM/Smack.rst
12175 F:      security/smack/
12176
12177 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
12178 M:      Kevin Hilman <khilman@kernel.org>
12179 M:      Nishanth Menon <nm@ti.com>
12180 S:      Maintained
12181 F:      drivers/power/avs/
12182 F:      include/linux/power/smartreflex.h
12183 L:      linux-pm@vger.kernel.org
12184
12185 SMC91x ETHERNET DRIVER
12186 M:      Nicolas Pitre <nico@fluxnic.net>
12187 S:      Odd Fixes
12188 F:      drivers/net/ethernet/smsc/smc91x.*
12189
12190 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12191 M:      Sakari Ailus <sakari.ailus@iki.fi>
12192 L:      linux-media@vger.kernel.org
12193 S:      Maintained
12194 F:      drivers/media/i2c/smiapp/
12195 F:      include/media/i2c/smiapp.h
12196 F:      drivers/media/i2c/smiapp-pll.c
12197 F:      drivers/media/i2c/smiapp-pll.h
12198 F:      include/uapi/linux/smiapp.h
12199 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12200
12201 SMM665 HARDWARE MONITOR DRIVER
12202 M:      Guenter Roeck <linux@roeck-us.net>
12203 L:      linux-hwmon@vger.kernel.org
12204 S:      Maintained
12205 F:      Documentation/hwmon/smm665
12206 F:      drivers/hwmon/smm665.c
12207
12208 SMSC EMC2103 HARDWARE MONITOR DRIVER
12209 M:      Steve Glendinning <steve.glendinning@shawell.net>
12210 L:      linux-hwmon@vger.kernel.org
12211 S:      Maintained
12212 F:      Documentation/hwmon/emc2103
12213 F:      drivers/hwmon/emc2103.c
12214
12215 SMSC SCH5627 HARDWARE MONITOR DRIVER
12216 M:      Hans de Goede <hdegoede@redhat.com>
12217 L:      linux-hwmon@vger.kernel.org
12218 S:      Supported
12219 F:      Documentation/hwmon/sch5627
12220 F:      drivers/hwmon/sch5627.c
12221
12222 SMSC47B397 HARDWARE MONITOR DRIVER
12223 M:      Jean Delvare <jdelvare@suse.com>
12224 L:      linux-hwmon@vger.kernel.org
12225 S:      Maintained
12226 F:      Documentation/hwmon/smsc47b397
12227 F:      drivers/hwmon/smsc47b397.c
12228
12229 SMSC911x ETHERNET DRIVER
12230 M:      Steve Glendinning <steve.glendinning@shawell.net>
12231 L:      netdev@vger.kernel.org
12232 S:      Maintained
12233 F:      include/linux/smsc911x.h
12234 F:      drivers/net/ethernet/smsc/smsc911x.*
12235
12236 SMSC9420 PCI ETHERNET DRIVER
12237 M:      Steve Glendinning <steve.glendinning@shawell.net>
12238 L:      netdev@vger.kernel.org
12239 S:      Maintained
12240 F:      drivers/net/ethernet/smsc/smsc9420.*
12241
12242 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12243 M:      Steve Glendinning <steve.glendinning@shawell.net>
12244 L:      linux-fbdev@vger.kernel.org
12245 S:      Maintained
12246 F:      drivers/video/fbdev/smscufx.c
12247
12248 SOC-CAMERA V4L2 SUBSYSTEM
12249 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12250 L:      linux-media@vger.kernel.org
12251 T:      git git://linuxtv.org/media_tree.git
12252 S:      Maintained
12253 F:      include/media/soc*
12254 F:      drivers/media/i2c/soc_camera/
12255 F:      drivers/media/platform/soc_camera/
12256
12257 SOEKRIS NET48XX LED SUPPORT
12258 M:      Chris Boot <bootc@bootc.net>
12259 S:      Maintained
12260 F:      drivers/leds/leds-net48xx.c
12261
12262 SOFTLOGIC 6x10 MPEG CODEC
12263 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12264 M:      Anton Sviridenko <anton@corp.bluecherry.net>
12265 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12266 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12267 M:      Ismael Luceno <ismael@iodev.co.uk>
12268 L:      linux-media@vger.kernel.org
12269 S:      Supported
12270 F:      drivers/media/pci/solo6x10/
12271
12272 SOFTWARE RAID (Multiple Disks) SUPPORT
12273 M:      Shaohua Li <shli@kernel.org>
12274 L:      linux-raid@vger.kernel.org
12275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12276 S:      Supported
12277 F:      drivers/md/
12278 F:      include/linux/raid/
12279 F:      include/uapi/linux/raid/
12280
12281 SONIC NETWORK DRIVER
12282 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12283 L:      netdev@vger.kernel.org
12284 S:      Maintained
12285 F:      drivers/net/ethernet/natsemi/sonic.*
12286
12287 SONICS SILICON BACKPLANE DRIVER (SSB)
12288 M:      Michael Buesch <m@bues.ch>
12289 L:      linux-wireless@vger.kernel.org
12290 S:      Maintained
12291 F:      drivers/ssb/
12292 F:      include/linux/ssb/
12293
12294 SONY VAIO CONTROL DEVICE DRIVER
12295 M:      Mattia Dongili <malattia@linux.it>
12296 L:      platform-driver-x86@vger.kernel.org
12297 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12298 S:      Maintained
12299 F:      Documentation/laptops/sony-laptop.txt
12300 F:      drivers/char/sonypi.c
12301 F:      drivers/platform/x86/sony-laptop.c
12302 F:      include/linux/sony-laptop.h
12303
12304 SONY MEMORYSTICK CARD SUPPORT
12305 M:      Alex Dubov <oakad@yahoo.com>
12306 W:      http://tifmxx.berlios.de/
12307 S:      Maintained
12308 F:      drivers/memstick/host/tifm_ms.c
12309
12310 SONY MEMORYSTICK STANDARD SUPPORT
12311 M:      Maxim Levitsky <maximlevitsky@gmail.com>
12312 S:      Maintained
12313 F:      drivers/memstick/core/ms_block.*
12314
12315 SOUND
12316 M:      Jaroslav Kysela <perex@perex.cz>
12317 M:      Takashi Iwai <tiwai@suse.com>
12318 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12319 W:      http://www.alsa-project.org/
12320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12321 T:      git git://git.alsa-project.org/alsa-kernel.git
12322 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
12323 S:      Maintained
12324 F:      Documentation/sound/
12325 F:      include/sound/
12326 F:      include/uapi/sound/
12327 F:      sound/
12328
12329 SOUND - COMPRESSED AUDIO
12330 M:      Vinod Koul <vinod.koul@intel.com>
12331 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12333 S:      Supported
12334 F:      Documentation/sound/alsa/compress_offload.txt
12335 F:      include/sound/compress_driver.h
12336 F:      include/uapi/sound/compress_*
12337 F:      sound/core/compress_offload.c
12338 F:      sound/soc/soc-compress.c
12339
12340 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12341 M:      Liam Girdwood <lgirdwood@gmail.com>
12342 M:      Mark Brown <broonie@kernel.org>
12343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12345 W:      http://alsa-project.org/main/index.php/ASoC
12346 S:      Supported
12347 F:      Documentation/devicetree/bindings/sound/
12348 F:      Documentation/sound/alsa/soc/
12349 F:      sound/soc/
12350 F:      include/sound/soc*
12351
12352 SOUND - DMAENGINE HELPERS
12353 M:      Lars-Peter Clausen <lars@metafoo.de>
12354 S:      Supported
12355 F:      include/sound/dmaengine_pcm.h
12356 F:      sound/core/pcm_dmaengine.c
12357 F:      sound/soc/soc-generic-dmaengine-pcm.c
12358
12359 SP2 MEDIA DRIVER
12360 M:      Olli Salonen <olli.salonen@iki.fi>
12361 L:      linux-media@vger.kernel.org
12362 W:      https://linuxtv.org
12363 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12364 S:      Maintained
12365 F:      drivers/media/dvb-frontends/sp2*
12366
12367 SPARC + UltraSPARC (sparc/sparc64)
12368 M:      "David S. Miller" <davem@davemloft.net>
12369 L:      sparclinux@vger.kernel.org
12370 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12373 S:      Maintained
12374 F:      arch/sparc/
12375 F:      drivers/sbus/
12376
12377 SPARC SERIAL DRIVERS
12378 M:      "David S. Miller" <davem@davemloft.net>
12379 L:      sparclinux@vger.kernel.org
12380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12382 S:      Maintained
12383 F:      include/linux/sunserialcore.h
12384 F:      drivers/tty/serial/suncore.c
12385 F:      drivers/tty/serial/sunhv.c
12386 F:      drivers/tty/serial/sunsab.c
12387 F:      drivers/tty/serial/sunsab.h
12388 F:      drivers/tty/serial/sunsu.c
12389 F:      drivers/tty/serial/sunzilog.c
12390 F:      drivers/tty/serial/sunzilog.h
12391
12392 SPARSE CHECKER
12393 M:      "Christopher Li" <sparse@chrisli.org>
12394 L:      linux-sparse@vger.kernel.org
12395 W:      https://sparse.wiki.kernel.org/
12396 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12397 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12398 S:      Maintained
12399 F:      include/linux/compiler.h
12400
12401 SPEAR PLATFORM SUPPORT
12402 M:      Viresh Kumar <vireshk@kernel.org>
12403 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12405 W:      http://www.st.com/spear
12406 S:      Maintained
12407 F:      arch/arm/boot/dts/spear*
12408 F:      arch/arm/mach-spear/
12409
12410 SPEAR CLOCK FRAMEWORK SUPPORT
12411 M:      Viresh Kumar <vireshk@kernel.org>
12412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12413 W:      http://www.st.com/spear
12414 S:      Maintained
12415 F:      drivers/clk/spear/
12416
12417 SPI NOR SUBSYSTEM
12418 M:      Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12419 M:      Marek Vasut <marek.vasut@gmail.com>
12420 L:      linux-mtd@lists.infradead.org
12421 W:      http://www.linux-mtd.infradead.org/
12422 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12423 T:      git git://github.com/spi-nor/linux.git
12424 S:      Maintained
12425 F:      drivers/mtd/spi-nor/
12426 F:      include/linux/mtd/spi-nor.h
12427
12428 SPI SUBSYSTEM
12429 M:      Mark Brown <broonie@kernel.org>
12430 L:      linux-spi@vger.kernel.org
12431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12432 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
12433 S:      Maintained
12434 F:      Documentation/devicetree/bindings/spi/
12435 F:      Documentation/spi/
12436 F:      drivers/spi/
12437 F:      include/linux/spi/
12438 F:      include/uapi/linux/spi/
12439 F:      tools/spi/
12440
12441 SPIDERNET NETWORK DRIVER for CELL
12442 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12443 L:      netdev@vger.kernel.org
12444 S:      Supported
12445 F:      Documentation/networking/spider_net.txt
12446 F:      drivers/net/ethernet/toshiba/spider_net*
12447
12448 SPU FILE SYSTEM
12449 M:      Jeremy Kerr <jk@ozlabs.org>
12450 L:      linuxppc-dev@lists.ozlabs.org
12451 W:      http://www.ibm.com/developerworks/power/cell/
12452 S:      Supported
12453 F:      Documentation/filesystems/spufs.txt
12454 F:      arch/powerpc/platforms/cell/spufs/
12455
12456 SQUASHFS FILE SYSTEM
12457 M:      Phillip Lougher <phillip@squashfs.org.uk>
12458 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
12459 W:      http://squashfs.org.uk
12460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12461 S:      Maintained
12462 F:      Documentation/filesystems/squashfs.txt
12463 F:      fs/squashfs/
12464
12465 SRM (Alpha) environment access
12466 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
12467 S:      Maintained
12468 F:      arch/alpha/kernel/srm_env.c
12469
12470 STABLE BRANCH
12471 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12472 L:      stable@vger.kernel.org
12473 S:      Supported
12474 F:      Documentation/process/stable-kernel-rules.rst
12475
12476 STAGING SUBSYSTEM
12477 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12479 L:      devel@driverdev.osuosl.org
12480 S:      Supported
12481 F:      drivers/staging/
12482
12483 STAGING - COMEDI
12484 M:      Ian Abbott <abbotti@mev.co.uk>
12485 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
12486 S:      Odd Fixes
12487 F:      drivers/staging/comedi/
12488
12489 STAGING - FLARION FT1000 DRIVERS
12490 M:      Marek Belisko <marek.belisko@gmail.com>
12491 S:      Odd Fixes
12492 F:      drivers/staging/ft1000/
12493
12494 STAGING - INDUSTRIAL IO
12495 M:      Jonathan Cameron <jic23@kernel.org>
12496 L:      linux-iio@vger.kernel.org
12497 S:      Odd Fixes
12498 F:      Documentation/devicetree/bindings/staging/iio/
12499 F:      drivers/staging/iio/
12500
12501 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12502 M:      Jarod Wilson <jarod@wilsonet.com>
12503 W:      http://www.lirc.org/
12504 S:      Odd Fixes
12505 F:      drivers/staging/media/lirc/
12506
12507 STAGING - LUSTRE PARALLEL FILESYSTEM
12508 M:      Oleg Drokin <oleg.drokin@intel.com>
12509 M:      Andreas Dilger <andreas.dilger@intel.com>
12510 M:      James Simmons <jsimmons@infradead.org>
12511 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
12512 W:      http://wiki.lustre.org/
12513 S:      Maintained
12514 F:      drivers/staging/lustre
12515
12516 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12517 M:      Marc Dietrich <marvin24@gmx.de>
12518 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
12519 L:      linux-tegra@vger.kernel.org
12520 S:      Maintained
12521 F:      drivers/staging/nvec/
12522
12523 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12524 M:      Jens Frederich <jfrederich@gmail.com>
12525 M:      Daniel Drake <dsd@laptop.org>
12526 M:      Jon Nettleton <jon.nettleton@gmail.com>
12527 W:      http://wiki.laptop.org/go/DCON
12528 S:      Maintained
12529 F:      drivers/staging/olpc_dcon/
12530
12531 STAGING - REALTEK RTL8712U DRIVERS
12532 M:      Larry Finger <Larry.Finger@lwfinger.net>
12533 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12534 S:      Odd Fixes
12535 F:      drivers/staging/rtl8712/
12536
12537 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12538 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12539 M:      Teddy Wang <teddy.wang@siliconmotion.com>
12540 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12541 L:      linux-fbdev@vger.kernel.org
12542 S:      Maintained
12543 F:      drivers/staging/sm750fb/
12544
12545 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12546 M:      William Hubbs <w.d.hubbs@gmail.com>
12547 M:      Chris Brannon <chris@the-brannons.com>
12548 M:      Kirk Reiser <kirk@reisers.ca>
12549 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
12550 L:      speakup@linux-speakup.org
12551 W:      http://www.linux-speakup.org/
12552 S:      Odd Fixes
12553 F:      drivers/staging/speakup/
12554
12555 STAGING - VIA VT665X DRIVERS
12556 M:      Forest Bond <forest@alittletooquiet.net>
12557 S:      Odd Fixes
12558 F:      drivers/staging/vt665?/
12559
12560 STAGING - WILC1000 WIFI DRIVER
12561 M:      Aditya Shankar <aditya.shankar@microchip.com>
12562 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
12563 L:      linux-wireless@vger.kernel.org
12564 S:      Supported
12565 F:      drivers/staging/wilc1000/
12566
12567 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12568 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
12569 S:      Odd Fixes
12570 F:      drivers/staging/xgifb/
12571
12572 STARFIRE/DURALAN NETWORK DRIVER
12573 M:      Ion Badulescu <ionut@badula.org>
12574 S:      Odd Fixes
12575 F:      drivers/net/ethernet/adaptec/starfire*
12576
12577 SUN3/3X
12578 M:      Sam Creasey <sammy@sammy.net>
12579 W:      http://sammy.net/sun3/
12580 S:      Maintained
12581 F:      arch/m68k/kernel/*sun3*
12582 F:      arch/m68k/sun3*/
12583 F:      arch/m68k/include/asm/sun3*
12584 F:      drivers/net/ethernet/i825xx/sun3*
12585
12586 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12587 M:      Hans de Goede <hdegoede@redhat.com>
12588 L:      linux-input@vger.kernel.org
12589 S:      Maintained
12590 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12591 F:      drivers/input/keyboard/sun4i-lradc-keys.c
12592
12593 SUNDANCE NETWORK DRIVER
12594 M:      Denis Kirjanov <kda@linux-powerpc.org>
12595 L:      netdev@vger.kernel.org
12596 S:      Maintained
12597 F:      drivers/net/ethernet/dlink/sundance.c
12598
12599 SUPERH
12600 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
12601 M:      Rich Felker <dalias@libc.org>
12602 L:      linux-sh@vger.kernel.org
12603 Q:      http://patchwork.kernel.org/project/linux-sh/list/
12604 S:      Maintained
12605 F:      Documentation/sh/
12606 F:      arch/sh/
12607 F:      drivers/sh/
12608
12609 SUSPEND TO RAM
12610 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
12611 M:      Len Brown <len.brown@intel.com>
12612 M:      Pavel Machek <pavel@ucw.cz>
12613 L:      linux-pm@vger.kernel.org
12614 B:      https://bugzilla.kernel.org
12615 S:      Supported
12616 F:      Documentation/power/
12617 F:      arch/x86/kernel/acpi/
12618 F:      drivers/base/power/
12619 F:      kernel/power/
12620 F:      include/linux/suspend.h
12621 F:      include/linux/freezer.h
12622 F:      include/linux/pm.h
12623
12624 SVGA HANDLING
12625 M:      Martin Mares <mj@ucw.cz>
12626 L:      linux-video@atrey.karlin.mff.cuni.cz
12627 S:      Maintained
12628 F:      Documentation/svga.txt
12629 F:      arch/x86/boot/video*
12630
12631 SWIOTLB SUBSYSTEM
12632 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12633 L:      linux-kernel@vger.kernel.org
12634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12635 S:      Supported
12636 F:      lib/swiotlb.c
12637 F:      arch/*/kernel/pci-swiotlb.c
12638 F:      include/linux/swiotlb.h
12639
12640 SWITCHDEV
12641 M:      Jiri Pirko <jiri@resnulli.us>
12642 M:      Ivan Vecera <ivecera@redhat.com>
12643 L:      netdev@vger.kernel.org
12644 S:      Supported
12645 F:      net/switchdev/
12646 F:      include/net/switchdev.h
12647
12648 SYNOPSYS ARC ARCHITECTURE
12649 M:      Vineet Gupta <vgupta@synopsys.com>
12650 L:      linux-snps-arc@lists.infradead.org
12651 S:      Supported
12652 F:      arch/arc/
12653 F:      Documentation/devicetree/bindings/arc/*
12654 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12655 F:      drivers/clocksource/arc_timer.c
12656 F:      drivers/tty/serial/arc_uart.c
12657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12658
12659 SYNOPSYS ARC SDP platform support
12660 M:      Alexey Brodkin <abrodkin@synopsys.com>
12661 S:      Supported
12662 F:      arch/arc/plat-axs10x
12663 F:      arch/arc/boot/dts/ax*
12664 F:      Documentation/devicetree/bindings/arc/axs10*
12665
12666 SYSTEM CONFIGURATION (SYSCON)
12667 M:      Lee Jones <lee.jones@linaro.org>
12668 M:      Arnd Bergmann <arnd@arndb.de>
12669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12670 S:      Supported
12671 F:      drivers/mfd/syscon.c
12672
12673 SYSTEM RESET/SHUTDOWN DRIVERS
12674 M:      Sebastian Reichel <sre@kernel.org>
12675 L:      linux-pm@vger.kernel.org
12676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12677 S:      Maintained
12678 F:      Documentation/devicetree/bindings/power/reset/
12679 F:      drivers/power/reset/
12680
12681 SYSV FILESYSTEM
12682 M:      Christoph Hellwig <hch@infradead.org>
12683 S:      Maintained
12684 F:      Documentation/filesystems/sysv-fs.txt
12685 F:      fs/sysv/
12686 F:      include/linux/sysv_fs.h
12687
12688 TARGET SUBSYSTEM
12689 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
12690 L:      linux-scsi@vger.kernel.org
12691 L:      target-devel@vger.kernel.org
12692 W:      http://www.linux-iscsi.org
12693 W:      http://groups.google.com/group/linux-iscsi-target-dev
12694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
12695 S:      Supported
12696 F:      drivers/target/
12697 F:      include/target/
12698 F:      Documentation/target/
12699
12700 TASKSTATS STATISTICS INTERFACE
12701 M:      Balbir Singh <bsingharora@gmail.com>
12702 S:      Maintained
12703 F:      Documentation/accounting/taskstats*
12704 F:      include/linux/taskstats*
12705 F:      kernel/taskstats.c
12706
12707 TC subsystem
12708 M:      Jamal Hadi Salim <jhs@mojatatu.com>
12709 M:      Cong Wang <xiyou.wangcong@gmail.com>
12710 M:      Jiri Pirko <jiri@resnulli.us>
12711 L:      netdev@vger.kernel.org
12712 S:      Maintained
12713 F:      include/net/pkt_cls.h
12714 F:      include/net/pkt_sched.h
12715 F:      include/net/tc_act/
12716 F:      include/uapi/linux/pkt_cls.h
12717 F:      include/uapi/linux/pkt_sched.h
12718 F:      include/uapi/linux/tc_act/
12719 F:      include/uapi/linux/tc_ematch/
12720 F:      net/sched/
12721
12722 TCP LOW PRIORITY MODULE
12723 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
12724 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
12725 W:      http://tcp-lp-mod.sourceforge.net/
12726 S:      Maintained
12727 F:      net/ipv4/tcp_lp.c
12728
12729 TDA10071 MEDIA DRIVER
12730 M:      Antti Palosaari <crope@iki.fi>
12731 L:      linux-media@vger.kernel.org
12732 W:      https://linuxtv.org
12733 W:      http://palosaari.fi/linux/
12734 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12735 T:      git git://linuxtv.org/anttip/media_tree.git
12736 S:      Maintained
12737 F:      drivers/media/dvb-frontends/tda10071*
12738
12739 TDA18212 MEDIA DRIVER
12740 M:      Antti Palosaari <crope@iki.fi>
12741 L:      linux-media@vger.kernel.org
12742 W:      https://linuxtv.org
12743 W:      http://palosaari.fi/linux/
12744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12745 T:      git git://linuxtv.org/anttip/media_tree.git
12746 S:      Maintained
12747 F:      drivers/media/tuners/tda18212*
12748
12749 TDA18218 MEDIA DRIVER
12750 M:      Antti Palosaari <crope@iki.fi>
12751 L:      linux-media@vger.kernel.org
12752 W:      https://linuxtv.org
12753 W:      http://palosaari.fi/linux/
12754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12755 T:      git git://linuxtv.org/anttip/media_tree.git
12756 S:      Maintained
12757 F:      drivers/media/tuners/tda18218*
12758
12759 TDA18271 MEDIA DRIVER
12760 M:      Michael Krufky <mkrufky@linuxtv.org>
12761 L:      linux-media@vger.kernel.org
12762 W:      https://linuxtv.org
12763 W:      http://github.com/mkrufky
12764 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12765 T:      git git://linuxtv.org/mkrufky/tuners.git
12766 S:      Maintained
12767 F:      drivers/media/tuners/tda18271*
12768
12769 TDA827x MEDIA DRIVER
12770 M:      Michael Krufky <mkrufky@linuxtv.org>
12771 L:      linux-media@vger.kernel.org
12772 W:      https://linuxtv.org
12773 W:      http://github.com/mkrufky
12774 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12775 T:      git git://linuxtv.org/mkrufky/tuners.git
12776 S:      Maintained
12777 F:      drivers/media/tuners/tda8290.*
12778
12779 TDA8290 MEDIA DRIVER
12780 M:      Michael Krufky <mkrufky@linuxtv.org>
12781 L:      linux-media@vger.kernel.org
12782 W:      https://linuxtv.org
12783 W:      http://github.com/mkrufky
12784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12785 T:      git git://linuxtv.org/mkrufky/tuners.git
12786 S:      Maintained
12787 F:      drivers/media/tuners/tda8290.*
12788
12789 TDA9840 MEDIA DRIVER
12790 M:      Hans Verkuil <hverkuil@xs4all.nl>
12791 L:      linux-media@vger.kernel.org
12792 T:      git git://linuxtv.org/media_tree.git
12793 W:      https://linuxtv.org
12794 S:      Maintained
12795 F:      drivers/media/i2c/tda9840*
12796
12797 TEA5761 TUNER DRIVER
12798 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12799 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12800 L:      linux-media@vger.kernel.org
12801 W:      https://linuxtv.org
12802 T:      git git://linuxtv.org/media_tree.git
12803 S:      Odd fixes
12804 F:      drivers/media/tuners/tea5761.*
12805
12806 TEA5767 TUNER DRIVER
12807 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12808 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12809 L:      linux-media@vger.kernel.org
12810 W:      https://linuxtv.org
12811 T:      git git://linuxtv.org/media_tree.git
12812 S:      Maintained
12813 F:      drivers/media/tuners/tea5767.*
12814
12815 TEA6415C MEDIA DRIVER
12816 M:      Hans Verkuil <hverkuil@xs4all.nl>
12817 L:      linux-media@vger.kernel.org
12818 T:      git git://linuxtv.org/media_tree.git
12819 W:      https://linuxtv.org
12820 S:      Maintained
12821 F:      drivers/media/i2c/tea6415c*
12822
12823 TEA6420 MEDIA DRIVER
12824 M:      Hans Verkuil <hverkuil@xs4all.nl>
12825 L:      linux-media@vger.kernel.org
12826 T:      git git://linuxtv.org/media_tree.git
12827 W:      https://linuxtv.org
12828 S:      Maintained
12829 F:      drivers/media/i2c/tea6420*
12830
12831 TEAM DRIVER
12832 M:      Jiri Pirko <jiri@resnulli.us>
12833 L:      netdev@vger.kernel.org
12834 S:      Supported
12835 F:      drivers/net/team/
12836 F:      include/linux/if_team.h
12837 F:      include/uapi/linux/if_team.h
12838
12839 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
12840 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
12841 S:      Maintained
12842 F:      arch/x86/platform/ts5500/
12843
12844 TECHNOTREND USB IR RECEIVER
12845 M:      Sean Young <sean@mess.org>
12846 L:      linux-media@vger.kernel.org
12847 S:      Maintained
12848 F:      drivers/media/rc/ttusbir.c
12849
12850 TEGRA ARCHITECTURE SUPPORT
12851 M:      Thierry Reding <thierry.reding@gmail.com>
12852 M:      Jonathan Hunter <jonathanh@nvidia.com>
12853 L:      linux-tegra@vger.kernel.org
12854 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
12855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
12856 S:      Supported
12857 N:      [^a-z]tegra
12858
12859 TEGRA CLOCK DRIVER
12860 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
12861 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
12862 S:      Supported
12863 F:      drivers/clk/tegra/
12864
12865 TEGRA DMA DRIVERS
12866 M:      Laxman Dewangan <ldewangan@nvidia.com>
12867 M:      Jon Hunter <jonathanh@nvidia.com>
12868 S:      Supported
12869 F:      drivers/dma/tegra*
12870
12871 TEGRA I2C DRIVER
12872 M:      Laxman Dewangan <ldewangan@nvidia.com>
12873 S:      Supported
12874 F:      drivers/i2c/busses/i2c-tegra.c
12875
12876 TEGRA IOMMU DRIVERS
12877 M:      Hiroshi Doyu <hdoyu@nvidia.com>
12878 S:      Supported
12879 F:      drivers/iommu/tegra*
12880
12881 TEGRA KBC DRIVER
12882 M:      Rakesh Iyer <riyer@nvidia.com>
12883 M:      Laxman Dewangan <ldewangan@nvidia.com>
12884 S:      Supported
12885 F:      drivers/input/keyboard/tegra-kbc.c
12886
12887 TEGRA PWM DRIVER
12888 M:      Thierry Reding <thierry.reding@gmail.com>
12889 S:      Supported
12890 F:      drivers/pwm/pwm-tegra.c
12891
12892 TEGRA SERIAL DRIVER
12893 M:      Laxman Dewangan <ldewangan@nvidia.com>
12894 S:      Supported
12895 F:      drivers/tty/serial/serial-tegra.c
12896
12897 TEGRA SPI DRIVER
12898 M:      Laxman Dewangan <ldewangan@nvidia.com>
12899 S:      Supported
12900 F:      drivers/spi/spi-tegra*
12901
12902 TEHUTI ETHERNET DRIVER
12903 M:      Andy Gospodarek <andy@greyhouse.net>
12904 L:      netdev@vger.kernel.org
12905 S:      Supported
12906 F:      drivers/net/ethernet/tehuti/*
12907
12908 Telecom Clock Driver for MCPL0010
12909 M:      Mark Gross <mark.gross@intel.com>
12910 S:      Supported
12911 F:      drivers/char/tlclk.c
12912
12913 TENSILICA XTENSA PORT (xtensa)
12914 M:      Chris Zankel <chris@zankel.net>
12915 M:      Max Filippov <jcmvbkbc@gmail.com>
12916 L:      linux-xtensa@linux-xtensa.org
12917 T:      git git://github.com/czankel/xtensa-linux.git
12918 S:      Maintained
12919 F:      arch/xtensa/
12920 F:      drivers/irqchip/irq-xtensa-*
12921
12922 Texas Instruments' System Control Interface (TISCI) Protocol Driver
12923 M:      Nishanth Menon <nm@ti.com>
12924 M:      Tero Kristo <t-kristo@ti.com>
12925 M:      Santosh Shilimkar <ssantosh@kernel.org>
12926 L:      linux-arm-kernel@lists.infradead.org
12927 S:      Maintained
12928 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
12929 F:      drivers/firmware/ti_sci*
12930 F:      include/linux/soc/ti/ti_sci_protocol.h
12931 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
12932 F:      include/dt-bindings/genpd/k2g.h
12933 F:      drivers/soc/ti/ti_sci_pm_domains.c
12934 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.txt
12935 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.txt
12936 F:      drivers/clk/keystone/sci-clk.c
12937 F:      drivers/reset/reset-ti-sci.c
12938
12939 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
12940 M:      Hans Verkuil <hverkuil@xs4all.nl>
12941 L:      linux-media@vger.kernel.org
12942 T:      git git://linuxtv.org/media_tree.git
12943 W:      https://linuxtv.org
12944 S:      Maintained
12945 F:      drivers/media/radio/radio-raremono.c
12946
12947 THERMAL
12948 M:      Zhang Rui <rui.zhang@intel.com>
12949 M:      Eduardo Valentin <edubezval@gmail.com>
12950 L:      linux-pm@vger.kernel.org
12951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
12952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
12953 Q:      https://patchwork.kernel.org/project/linux-pm/list/
12954 S:      Supported
12955 F:      drivers/thermal/
12956 F:      include/linux/thermal.h
12957 F:      include/uapi/linux/thermal.h
12958 F:      include/linux/cpu_cooling.h
12959 F:      Documentation/devicetree/bindings/thermal/
12960
12961 THERMAL/CPU_COOLING
12962 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
12963 M:      Viresh Kumar <viresh.kumar@linaro.org>
12964 M:      Javi Merino <javi.merino@kernel.org>
12965 L:      linux-pm@vger.kernel.org
12966 S:      Supported
12967 F:      Documentation/thermal/cpu-cooling-api.txt
12968 F:      drivers/thermal/cpu_cooling.c
12969 F:      include/linux/cpu_cooling.h
12970
12971 THINKPAD ACPI EXTRAS DRIVER
12972 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
12973 L:      ibm-acpi-devel@lists.sourceforge.net
12974 L:      platform-driver-x86@vger.kernel.org
12975 W:      http://ibm-acpi.sourceforge.net
12976 W:      http://thinkwiki.org/wiki/Ibm-acpi
12977 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
12978 S:      Maintained
12979 F:      drivers/platform/x86/thinkpad_acpi.c
12980
12981 TI BANDGAP AND THERMAL DRIVER
12982 M:      Eduardo Valentin <edubezval@gmail.com>
12983 M:      Keerthy <j-keerthy@ti.com>
12984 L:      linux-pm@vger.kernel.org
12985 L:      linux-omap@vger.kernel.org
12986 S:      Maintained
12987 F:      drivers/thermal/ti-soc-thermal/
12988
12989 TI VPE/CAL DRIVERS
12990 M:      Benoit Parrot <bparrot@ti.com>
12991 L:      linux-media@vger.kernel.org
12992 W:      http://linuxtv.org/
12993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12994 S:      Maintained
12995 F:      drivers/media/platform/ti-vpe/
12996
12997 TI CDCE706 CLOCK DRIVER
12998 M:      Max Filippov <jcmvbkbc@gmail.com>
12999 S:      Maintained
13000 F:      drivers/clk/clk-cdce706.c
13001
13002 TI CLOCK DRIVER
13003 M:      Tero Kristo <t-kristo@ti.com>
13004 L:      linux-omap@vger.kernel.org
13005 S:      Maintained
13006 F:      drivers/clk/ti/
13007 F:      include/linux/clk/ti.h
13008
13009 TI ETHERNET SWITCH DRIVER (CPSW)
13010 R:      Grygorii Strashko <grygorii.strashko@ti.com>
13011 L:      linux-omap@vger.kernel.org
13012 L:      netdev@vger.kernel.org
13013 S:      Maintained
13014 F:      drivers/net/ethernet/ti/cpsw*
13015 F:      drivers/net/ethernet/ti/davinci*
13016
13017 TI FLASH MEDIA INTERFACE DRIVER
13018 M:      Alex Dubov <oakad@yahoo.com>
13019 S:      Maintained
13020 F:      drivers/misc/tifm*
13021 F:      drivers/mmc/host/tifm_sd.c
13022 F:      include/linux/tifm.h
13023
13024 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13025 M:      Santosh Shilimkar <ssantosh@kernel.org>
13026 L:      linux-kernel@vger.kernel.org
13027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13028 S:      Maintained
13029 F:      drivers/soc/ti/*
13030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13031
13032
13033 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13034 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
13035 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13037 S:      Maintained
13038 F:      sound/soc/codecs/lm49453*
13039 F:      sound/soc/codecs/isabelle*
13040
13041 TI LP855x BACKLIGHT DRIVER
13042 M:      Milo Kim <milo.kim@ti.com>
13043 S:      Maintained
13044 F:      Documentation/backlight/lp855x-driver.txt
13045 F:      drivers/video/backlight/lp855x_bl.c
13046 F:      include/linux/platform_data/lp855x.h
13047
13048 TI LP8727 CHARGER DRIVER
13049 M:      Milo Kim <milo.kim@ti.com>
13050 S:      Maintained
13051 F:      drivers/power/supply/lp8727_charger.c
13052 F:      include/linux/platform_data/lp8727.h
13053
13054 TI LP8788 MFD DRIVER
13055 M:      Milo Kim <milo.kim@ti.com>
13056 S:      Maintained
13057 F:      drivers/iio/adc/lp8788_adc.c
13058 F:      drivers/leds/leds-lp8788.c
13059 F:      drivers/mfd/lp8788*.c
13060 F:      drivers/power/supply/lp8788-charger.c
13061 F:      drivers/regulator/lp8788-*.c
13062 F:      include/linux/mfd/lp8788*.h
13063
13064 TI NETCP ETHERNET DRIVER
13065 M:      Wingman Kwok <w-kwok2@ti.com>
13066 M:      Murali Karicheri <m-karicheri2@ti.com>
13067 L:      netdev@vger.kernel.org
13068 S:      Maintained
13069 F:      drivers/net/ethernet/ti/netcp*
13070
13071 TI TAS571X FAMILY ASoC CODEC DRIVER
13072 M:      Kevin Cernekee <cernekee@chromium.org>
13073 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13074 S:      Odd Fixes
13075 F:      sound/soc/codecs/tas571x*
13076
13077 TI TWL4030 SERIES SOC CODEC DRIVER
13078 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
13079 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13080 S:      Maintained
13081 F:      sound/soc/codecs/twl4030*
13082
13083 TI WILINK WIRELESS DRIVERS
13084 L:      linux-wireless@vger.kernel.org
13085 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
13086 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
13087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13088 S:      Orphan
13089 F:      drivers/net/wireless/ti/
13090 F:      include/linux/wl12xx.h
13091
13092 TIPC NETWORK LAYER
13093 M:      Jon Maloy <jon.maloy@ericsson.com>
13094 M:      Ying Xue <ying.xue@windriver.com>
13095 L:      netdev@vger.kernel.org (core kernel code)
13096 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13097 W:      http://tipc.sourceforge.net/
13098 S:      Maintained
13099 F:      include/uapi/linux/tipc*.h
13100 F:      net/tipc/
13101
13102 TILE ARCHITECTURE
13103 M:      Chris Metcalf <cmetcalf@mellanox.com>
13104 W:      http://www.mellanox.com/repository/solutions/tile-scm/
13105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
13106 S:      Supported
13107 F:      arch/tile/
13108 F:      drivers/char/tile-srom.c
13109 F:      drivers/edac/tile_edac.c
13110 F:      drivers/net/ethernet/tile/
13111 F:      drivers/rtc/rtc-tile.c
13112 F:      drivers/tty/hvc/hvc_tile.c
13113 F:      drivers/tty/serial/tilegx.c
13114 F:      drivers/usb/host/*-tilegx.c
13115 F:      include/linux/usb/tilegx.h
13116
13117 TLAN NETWORK DRIVER
13118 M:      Samuel Chessman <chessman@tux.org>
13119 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
13120 W:      http://sourceforge.net/projects/tlan/
13121 S:      Maintained
13122 F:      Documentation/networking/tlan.txt
13123 F:      drivers/net/ethernet/ti/tlan.*
13124
13125 TOMOYO SECURITY MODULE
13126 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
13127 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13128 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13129 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13130 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13131 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13132 W:      http://tomoyo.sourceforge.jp/
13133 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13134 S:      Maintained
13135 F:      security/tomoyo/
13136
13137 TOPSTAR LAPTOP EXTRAS DRIVER
13138 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
13139 L:      platform-driver-x86@vger.kernel.org
13140 S:      Maintained
13141 F:      drivers/platform/x86/topstar-laptop.c
13142
13143 TOSHIBA ACPI EXTRAS DRIVER
13144 M:      Azael Avalos <coproscefalo@gmail.com>
13145 L:      platform-driver-x86@vger.kernel.org
13146 S:      Maintained
13147 F:      drivers/platform/x86/toshiba_acpi.c
13148
13149 TOSHIBA BLUETOOTH DRIVER
13150 M:      Azael Avalos <coproscefalo@gmail.com>
13151 L:      platform-driver-x86@vger.kernel.org
13152 S:      Maintained
13153 F:      drivers/platform/x86/toshiba_bluetooth.c
13154
13155 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13156 M:      Azael Avalos <coproscefalo@gmail.com>
13157 L:      platform-driver-x86@vger.kernel.org
13158 S:      Maintained
13159 F:      drivers/platform/x86/toshiba_haps.c
13160
13161 TOSHIBA WMI HOTKEYS DRIVER
13162 M:      Azael Avalos <coproscefalo@gmail.com>
13163 L:      platform-driver-x86@vger.kernel.org
13164 S:      Maintained
13165 F:      drivers/platform/x86/toshiba-wmi.c
13166
13167 TOSHIBA SMM DRIVER
13168 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
13169 W:      http://www.buzzard.org.uk/toshiba/
13170 S:      Maintained
13171 F:      drivers/char/toshiba.c
13172 F:      include/linux/toshiba.h
13173 F:      include/uapi/linux/toshiba.h
13174
13175 TOSHIBA TC358743 DRIVER
13176 M:      Mats Randgaard <matrandg@cisco.com>
13177 L:      linux-media@vger.kernel.org
13178 S:      Maintained
13179 F:      drivers/media/i2c/tc358743*
13180 F:      include/media/i2c/tc358743.h
13181
13182 TMIO/SDHI MMC DRIVER
13183 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
13184 L:      linux-mmc@vger.kernel.org
13185 S:      Supported
13186 F:      drivers/mmc/host/tmio_mmc*
13187 F:      drivers/mmc/host/renesas_sdhi*
13188 F:      include/linux/mfd/tmio.h
13189
13190 TMP401 HARDWARE MONITOR DRIVER
13191 M:      Guenter Roeck <linux@roeck-us.net>
13192 L:      linux-hwmon@vger.kernel.org
13193 S:      Maintained
13194 F:      Documentation/hwmon/tmp401
13195 F:      drivers/hwmon/tmp401.c
13196
13197 TMPFS (SHMEM FILESYSTEM)
13198 M:      Hugh Dickins <hughd@google.com>
13199 L:      linux-mm@kvack.org
13200 S:      Maintained
13201 F:      include/linux/shmem_fs.h
13202 F:      mm/shmem.c
13203
13204 TM6000 VIDEO4LINUX DRIVER
13205 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13206 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13207 L:      linux-media@vger.kernel.org
13208 W:      https://linuxtv.org
13209 T:      git git://linuxtv.org/media_tree.git
13210 S:      Odd fixes
13211 F:      drivers/media/usb/tm6000/
13212 F:      Documentation/media/v4l-drivers/tm6000*
13213
13214 TW5864 VIDEO4LINUX DRIVER
13215 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13216 M:      Anton Sviridenko <anton@corp.bluecherry.net>
13217 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13218 M:      Andrey Utkin <andrey_utkin@fastmail.com>
13219 L:      linux-media@vger.kernel.org
13220 S:      Supported
13221 F:      drivers/media/pci/tw5864/
13222
13223 TW68 VIDEO4LINUX DRIVER
13224 M:      Hans Verkuil <hverkuil@xs4all.nl>
13225 L:      linux-media@vger.kernel.org
13226 T:      git git://linuxtv.org/media_tree.git
13227 W:      https://linuxtv.org
13228 S:      Odd Fixes
13229 F:      drivers/media/pci/tw68/
13230
13231 TW686X VIDEO4LINUX DRIVER
13232 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13233 L:      linux-media@vger.kernel.org
13234 T:      git git://linuxtv.org/media_tree.git
13235 W:      http://linuxtv.org
13236 S:      Maintained
13237 F:      drivers/media/pci/tw686x/
13238
13239 TPM DEVICE DRIVER
13240 M:      Peter Huewe <peterhuewe@gmx.de>
13241 M:      Marcel Selhorst <tpmdd@selhorst.net>
13242 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13243 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13244 W:      http://tpmdd.sourceforge.net
13245 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13246 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
13247 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
13248 S:      Maintained
13249 F:      drivers/char/tpm/
13250
13251 TPM IBM_VTPM DEVICE DRIVER
13252 M:      Ashley Lai <ashleydlai@gmail.com>
13253 W:      http://tpmdd.sourceforge.net
13254 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13255 S:      Maintained
13256 F:      drivers/char/tpm/tpm_ibmvtpm*
13257
13258 TRACING
13259 M:      Steven Rostedt <rostedt@goodmis.org>
13260 M:      Ingo Molnar <mingo@redhat.com>
13261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13262 S:      Maintained
13263 F:      Documentation/trace/ftrace.txt
13264 F:      arch/*/*/*/ftrace.h
13265 F:      arch/*/kernel/ftrace.c
13266 F:      include/*/ftrace.h
13267 F:      include/linux/trace*.h
13268 F:      include/trace/
13269 F:      kernel/trace/
13270 F:      tools/testing/selftests/ftrace/
13271
13272 TRACING MMIO ACCESSES (MMIOTRACE)
13273 M:      Steven Rostedt <rostedt@goodmis.org>
13274 M:      Ingo Molnar <mingo@kernel.org>
13275 R:      Karol Herbst <karolherbst@gmail.com>
13276 R:      Pekka Paalanen <ppaalanen@gmail.com>
13277 S:      Maintained
13278 L:      linux-kernel@vger.kernel.org
13279 L:      nouveau@lists.freedesktop.org
13280 F:      kernel/trace/trace_mmiotrace.c
13281 F:      include/linux/mmiotrace.h
13282 F:      arch/x86/mm/kmmio.c
13283 F:      arch/x86/mm/mmio-mod.c
13284 F:      arch/x86/mm/testmmiotrace.c
13285
13286 TRIVIAL PATCHES
13287 M:      Jiri Kosina <trivial@kernel.org>
13288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13289 S:      Maintained
13290 K:      ^Subject:.*(?i)trivial
13291
13292 TTY LAYER
13293 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13294 M:      Jiri Slaby <jslaby@suse.com>
13295 S:      Supported
13296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13297 F:      Documentation/serial/
13298 F:      drivers/tty/
13299 F:      drivers/tty/serial/serial_core.c
13300 F:      include/linux/serial_core.h
13301 F:      include/linux/serial.h
13302 F:      include/linux/tty.h
13303 F:      include/uapi/linux/serial_core.h
13304 F:      include/uapi/linux/serial.h
13305 F:      include/uapi/linux/tty.h
13306
13307 TUA9001 MEDIA DRIVER
13308 M:      Antti Palosaari <crope@iki.fi>
13309 L:      linux-media@vger.kernel.org
13310 W:      https://linuxtv.org
13311 W:      http://palosaari.fi/linux/
13312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13313 T:      git git://linuxtv.org/anttip/media_tree.git
13314 S:      Maintained
13315 F:      drivers/media/tuners/tua9001*
13316
13317 TULIP NETWORK DRIVERS
13318 L:      netdev@vger.kernel.org
13319 L:      linux-parisc@vger.kernel.org
13320 S:      Orphan
13321 F:      drivers/net/ethernet/dec/tulip/
13322
13323 TUN/TAP driver
13324 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
13325 W:      http://vtun.sourceforge.net/tun
13326 S:      Maintained
13327 F:      Documentation/networking/tuntap.txt
13328 F:      arch/um/os-Linux/drivers/
13329
13330 TURBOCHANNEL SUBSYSTEM
13331 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
13332 M:      Ralf Baechle <ralf@linux-mips.org>
13333 L:      linux-mips@linux-mips.org
13334 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
13335 S:      Maintained
13336 F:      drivers/tc/
13337 F:      include/linux/tc.h
13338
13339 UBI FILE SYSTEM (UBIFS)
13340 M:      Richard Weinberger <richard@nod.at>
13341 M:      Artem Bityutskiy <dedekind1@gmail.com>
13342 M:      Adrian Hunter <adrian.hunter@intel.com>
13343 L:      linux-mtd@lists.infradead.org
13344 T:      git git://git.infradead.org/ubifs-2.6.git
13345 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
13346 S:      Supported
13347 F:      Documentation/filesystems/ubifs.txt
13348 F:      fs/ubifs/
13349
13350 UCLINUX (M68KNOMMU AND COLDFIRE)
13351 M:      Greg Ungerer <gerg@linux-m68k.org>
13352 W:      http://www.linux-m68k.org/
13353 W:      http://www.uclinux.org/
13354 L:      linux-m68k@lists.linux-m68k.org
13355 L:      uclinux-dev@uclinux.org  (subscribers-only)
13356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13357 S:      Maintained
13358 F:      arch/m68k/coldfire/
13359 F:      arch/m68k/68*/
13360 F:      arch/m68k/*/*_no.*
13361 F:      arch/m68k/include/asm/*_no.*
13362
13363 UDF FILESYSTEM
13364 M:      Jan Kara <jack@suse.com>
13365 S:      Maintained
13366 F:      Documentation/filesystems/udf.txt
13367 F:      fs/udf/
13368
13369 UDRAW TABLET
13370 M:      Bastien Nocera <hadess@hadess.net>
13371 L:      linux-input@vger.kernel.org
13372 S:      Maintained
13373 F:      drivers/hid/hid-udraw.c
13374
13375 UFS FILESYSTEM
13376 M:      Evgeniy Dushistov <dushistov@mail.ru>
13377 S:      Maintained
13378 F:      Documentation/filesystems/ufs.txt
13379 F:      fs/ufs/
13380
13381 UHID USERSPACE HID IO DRIVER:
13382 M:      David Herrmann <dh.herrmann@googlemail.com>
13383 L:      linux-input@vger.kernel.org
13384 S:      Maintained
13385 F:      drivers/hid/uhid.c
13386 F:      include/uapi/linux/uhid.h
13387
13388 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13389 L:      linux-usb@vger.kernel.org
13390 S:      Orphan
13391 F:      drivers/uwb/
13392 F:      include/linux/uwb.h
13393 F:      include/linux/uwb/
13394
13395 UNICORE32 ARCHITECTURE:
13396 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
13397 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13398 S:      Maintained
13399 T:      git git://github.com/gxt/linux.git
13400 F:      arch/unicore32/
13401
13402 UNIFDEF
13403 M:      Tony Finch <dot@dotat.at>
13404 W:      http://dotat.at/prog/unifdef
13405 S:      Maintained
13406 F:      scripts/unifdef.c
13407
13408 UNIFORM CDROM DRIVER
13409 M:      Jens Axboe <axboe@kernel.dk>
13410 W:      http://www.kernel.dk
13411 S:      Maintained
13412 F:      Documentation/cdrom/
13413 F:      drivers/cdrom/cdrom.c
13414 F:      include/linux/cdrom.h
13415 F:      include/uapi/linux/cdrom.h
13416
13417 UNISYS S-PAR DRIVERS
13418 M:      David Kershner <david.kershner@unisys.com>
13419 L:      sparmaintainer@unisys.com (Unisys internal)
13420 S:      Supported
13421 F:      drivers/staging/unisys/
13422
13423 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13424 M:      Vinayak Holikatti <vinholikatti@gmail.com>
13425 L:      linux-scsi@vger.kernel.org
13426 S:      Supported
13427 F:      Documentation/scsi/ufs.txt
13428 F:      drivers/scsi/ufs/
13429
13430 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13431 M:      Manjunath M Bettegowda <manjumb@synopsys.com>
13432 M:      Prabu Thangamuthu <prabut@synopsys.com>
13433 L:      linux-scsi@vger.kernel.org
13434 S:      Supported
13435 F:      drivers/scsi/ufs/*dwc*
13436
13437 UNSORTED BLOCK IMAGES (UBI)
13438 M:      Artem Bityutskiy <dedekind1@gmail.com>
13439 M:      Richard Weinberger <richard@nod.at>
13440 W:      http://www.linux-mtd.infradead.org/
13441 L:      linux-mtd@lists.infradead.org
13442 T:      git git://git.infradead.org/ubifs-2.6.git
13443 S:      Supported
13444 F:      drivers/mtd/ubi/
13445 F:      include/linux/mtd/ubi.h
13446 F:      include/uapi/mtd/ubi-user.h
13447
13448 USB ACM DRIVER
13449 M:      Oliver Neukum <oneukum@suse.com>
13450 L:      linux-usb@vger.kernel.org
13451 S:      Maintained
13452 F:      Documentation/usb/acm.txt
13453 F:      drivers/usb/class/cdc-acm.*
13454
13455 USB AR5523 WIRELESS DRIVER
13456 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
13457 L:      linux-wireless@vger.kernel.org
13458 S:      Maintained
13459 F:      drivers/net/wireless/ath/ar5523/
13460
13461 USB ATTACHED SCSI
13462 M:      Oliver Neukum <oneukum@suse.com>
13463 L:      linux-usb@vger.kernel.org
13464 L:      linux-scsi@vger.kernel.org
13465 S:      Maintained
13466 F:      drivers/usb/storage/uas.c
13467
13468 USB CDC ETHERNET DRIVER
13469 M:      Oliver Neukum <oliver@neukum.org>
13470 L:      linux-usb@vger.kernel.org
13471 S:      Maintained
13472 F:      drivers/net/usb/cdc_*.c
13473 F:      include/uapi/linux/usb/cdc.h
13474
13475 USB CHAOSKEY DRIVER
13476 M:      Keith Packard <keithp@keithp.com>
13477 L:      linux-usb@vger.kernel.org
13478 S:      Maintained
13479 F:      drivers/usb/misc/chaoskey.c
13480
13481 USB CYPRESS C67X00 DRIVER
13482 M:      Peter Korsgaard <jacmet@sunsite.dk>
13483 L:      linux-usb@vger.kernel.org
13484 S:      Maintained
13485 F:      drivers/usb/c67x00/
13486
13487 USB DAVICOM DM9601 DRIVER
13488 M:      Peter Korsgaard <jacmet@sunsite.dk>
13489 L:      netdev@vger.kernel.org
13490 W:      http://www.linux-usb.org/usbnet
13491 S:      Maintained
13492 F:      drivers/net/usb/dm9601.c
13493
13494 USB DIAMOND RIO500 DRIVER
13495 M:      Cesar Miquel <miquel@df.uba.ar>
13496 L:      rio500-users@lists.sourceforge.net
13497 W:      http://rio500.sourceforge.net
13498 S:      Maintained
13499 F:      drivers/usb/misc/rio500*
13500
13501 USB EHCI DRIVER
13502 M:      Alan Stern <stern@rowland.harvard.edu>
13503 L:      linux-usb@vger.kernel.org
13504 S:      Maintained
13505 F:      Documentation/usb/ehci.txt
13506 F:      drivers/usb/host/ehci*
13507
13508 USB GADGET/PERIPHERAL SUBSYSTEM
13509 M:      Felipe Balbi <balbi@kernel.org>
13510 L:      linux-usb@vger.kernel.org
13511 W:      http://www.linux-usb.org/gadget
13512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13513 S:      Maintained
13514 F:      drivers/usb/gadget/
13515 F:      include/linux/usb/gadget*
13516
13517 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13518 M:      Jiri Kosina <jikos@kernel.org>
13519 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
13520 L:      linux-usb@vger.kernel.org
13521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13522 S:      Maintained
13523 F:      Documentation/hid/hiddev.txt
13524 F:      drivers/hid/usbhid/
13525
13526 USB ISP116X DRIVER
13527 M:      Olav Kongas <ok@artecdesign.ee>
13528 L:      linux-usb@vger.kernel.org
13529 S:      Maintained
13530 F:      drivers/usb/host/isp116x*
13531 F:      include/linux/usb/isp116x.h
13532
13533 USB LAN78XX ETHERNET DRIVER
13534 M:      Woojung Huh <woojung.huh@microchip.com>
13535 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13536 L:      netdev@vger.kernel.org
13537 S:      Maintained
13538 F:      drivers/net/usb/lan78xx.*
13539
13540 USB MASS STORAGE DRIVER
13541 M:      Alan Stern <stern@rowland.harvard.edu>
13542 L:      linux-usb@vger.kernel.org
13543 L:      usb-storage@lists.one-eyed-alien.net
13544 S:      Maintained
13545 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
13546 F:      drivers/usb/storage/
13547
13548 USB MIDI DRIVER
13549 M:      Clemens Ladisch <clemens@ladisch.de>
13550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13551 T:      git git://git.alsa-project.org/alsa-kernel.git
13552 S:      Maintained
13553 F:      sound/usb/midi.*
13554
13555 USB NETWORKING DRIVERS
13556 L:      linux-usb@vger.kernel.org
13557 S:      Odd Fixes
13558 F:      drivers/net/usb/
13559
13560 USB OHCI DRIVER
13561 M:      Alan Stern <stern@rowland.harvard.edu>
13562 L:      linux-usb@vger.kernel.org
13563 S:      Maintained
13564 F:      Documentation/usb/ohci.txt
13565 F:      drivers/usb/host/ohci*
13566
13567 USB OTG FSM (Finite State Machine)
13568 M:      Peter Chen <Peter.Chen@nxp.com>
13569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
13570 L:      linux-usb@vger.kernel.org
13571 S:      Maintained
13572 F:      drivers/usb/common/usb-otg-fsm.c
13573
13574 USB OVER IP DRIVER
13575 M:      Valentina Manea <valentina.manea.m@gmail.com>
13576 M:      Shuah Khan <shuahkh@osg.samsung.com>
13577 M:      Shuah Khan <shuah@kernel.org>
13578 L:      linux-usb@vger.kernel.org
13579 S:      Maintained
13580 F:      Documentation/usb/usbip_protocol.txt
13581 F:      drivers/usb/usbip/
13582 F:      tools/usb/usbip/
13583
13584 USB PEGASUS DRIVER
13585 M:      Petko Manolov <petkan@nucleusys.com>
13586 L:      linux-usb@vger.kernel.org
13587 L:      netdev@vger.kernel.org
13588 T:      git git://github.com/petkan/pegasus.git
13589 W:      https://github.com/petkan/pegasus
13590 S:      Maintained
13591 F:      drivers/net/usb/pegasus.*
13592
13593 USB PHY LAYER
13594 M:      Felipe Balbi <balbi@kernel.org>
13595 L:      linux-usb@vger.kernel.org
13596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13597 S:      Maintained
13598 F:      drivers/usb/phy/
13599
13600 USB PRINTER DRIVER (usblp)
13601 M:      Pete Zaitcev <zaitcev@redhat.com>
13602 L:      linux-usb@vger.kernel.org
13603 S:      Supported
13604 F:      drivers/usb/class/usblp.c
13605
13606 USB QMI WWAN NETWORK DRIVER
13607 M:      Bjørn Mork <bjorn@mork.no>
13608 L:      netdev@vger.kernel.org
13609 S:      Maintained
13610 F:      Documentation/ABI/testing/sysfs-class-net-qmi
13611 F:      drivers/net/usb/qmi_wwan.c
13612
13613 USB RTL8150 DRIVER
13614 M:      Petko Manolov <petkan@nucleusys.com>
13615 L:      linux-usb@vger.kernel.org
13616 L:      netdev@vger.kernel.org
13617 T:      git git://github.com/petkan/rtl8150.git
13618 W:      https://github.com/petkan/rtl8150
13619 S:      Maintained
13620 F:      drivers/net/usb/rtl8150.c
13621
13622 USB SERIAL SUBSYSTEM
13623 M:      Johan Hovold <johan@kernel.org>
13624 L:      linux-usb@vger.kernel.org
13625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
13626 S:      Maintained
13627 F:      Documentation/usb/usb-serial.txt
13628 F:      drivers/usb/serial/
13629 F:      include/linux/usb/serial.h
13630
13631 USB SMSC75XX ETHERNET DRIVER
13632 M:      Steve Glendinning <steve.glendinning@shawell.net>
13633 L:      netdev@vger.kernel.org
13634 S:      Maintained
13635 F:      drivers/net/usb/smsc75xx.*
13636
13637 USB SMSC95XX ETHERNET DRIVER
13638 M:      Steve Glendinning <steve.glendinning@shawell.net>
13639 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13640 L:      netdev@vger.kernel.org
13641 S:      Maintained
13642 F:      drivers/net/usb/smsc95xx.*
13643
13644 USB SUBSYSTEM
13645 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13646 L:      linux-usb@vger.kernel.org
13647 W:      http://www.linux-usb.org
13648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
13649 S:      Supported
13650 F:      Documentation/devicetree/bindings/usb/
13651 F:      Documentation/usb/
13652 F:      drivers/usb/
13653 F:      include/linux/usb.h
13654 F:      include/linux/usb/
13655
13656 USB TYPEC SUBSYSTEM
13657 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
13658 L:      linux-usb@vger.kernel.org
13659 S:      Maintained
13660 F:      Documentation/ABI/testing/sysfs-class-typec
13661 F:      Documentation/usb/typec.rst
13662 F:      drivers/usb/typec/
13663 F:      include/linux/usb/typec.h
13664
13665 USB UHCI DRIVER
13666 M:      Alan Stern <stern@rowland.harvard.edu>
13667 L:      linux-usb@vger.kernel.org
13668 S:      Maintained
13669 F:      drivers/usb/host/uhci*
13670
13671 USB "USBNET" DRIVER FRAMEWORK
13672 M:      Oliver Neukum <oneukum@suse.com>
13673 L:      netdev@vger.kernel.org
13674 W:      http://www.linux-usb.org/usbnet
13675 S:      Maintained
13676 F:      drivers/net/usb/usbnet.c
13677 F:      include/linux/usb/usbnet.h
13678
13679 USB VIDEO CLASS
13680 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13681 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
13682 L:      linux-media@vger.kernel.org
13683 T:      git git://linuxtv.org/media_tree.git
13684 W:      http://www.ideasonboard.org/uvc/
13685 S:      Maintained
13686 F:      drivers/media/usb/uvc/
13687 F:      include/uapi/linux/uvcvideo.h
13688
13689 USB VISION DRIVER
13690 M:      Hans Verkuil <hverkuil@xs4all.nl>
13691 L:      linux-media@vger.kernel.org
13692 T:      git git://linuxtv.org/media_tree.git
13693 W:      https://linuxtv.org
13694 S:      Odd Fixes
13695 F:      drivers/media/usb/usbvision/
13696
13697 USB WEBCAM GADGET
13698 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13699 L:      linux-usb@vger.kernel.org
13700 S:      Maintained
13701 F:      drivers/usb/gadget/function/*uvc*
13702 F:      drivers/usb/gadget/legacy/webcam.c
13703
13704 USB WIRELESS RNDIS DRIVER (rndis_wlan)
13705 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
13706 L:      linux-wireless@vger.kernel.org
13707 S:      Maintained
13708 F:      drivers/net/wireless/rndis_wlan.c
13709
13710 USB XHCI DRIVER
13711 M:      Mathias Nyman <mathias.nyman@intel.com>
13712 L:      linux-usb@vger.kernel.org
13713 S:      Supported
13714 F:      drivers/usb/host/xhci*
13715 F:      drivers/usb/host/pci-quirks*
13716
13717 USB ZD1201 DRIVER
13718 L:      linux-wireless@vger.kernel.org
13719 W:      http://linux-lc100020.sourceforge.net
13720 S:      Orphan
13721 F:      drivers/net/wireless/zydas/zd1201.*
13722
13723 USB ZR364XX DRIVER
13724 M:      Antoine Jacquet <royale@zerezo.com>
13725 L:      linux-usb@vger.kernel.org
13726 L:      linux-media@vger.kernel.org
13727 T:      git git://linuxtv.org/media_tree.git
13728 W:      http://royale.zerezo.com/zr364xx/
13729 S:      Maintained
13730 F:      Documentation/media/v4l-drivers/zr364xx*
13731 F:      drivers/media/usb/zr364xx/
13732
13733 ULPI BUS
13734 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
13735 L:      linux-usb@vger.kernel.org
13736 S:      Maintained
13737 F:      drivers/usb/common/ulpi.c
13738 F:      include/linux/ulpi/
13739
13740 USER-MODE LINUX (UML)
13741 M:      Jeff Dike <jdike@addtoit.com>
13742 M:      Richard Weinberger <richard@nod.at>
13743 L:      user-mode-linux-devel@lists.sourceforge.net
13744 L:      user-mode-linux-user@lists.sourceforge.net
13745 W:      http://user-mode-linux.sourceforge.net
13746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
13747 S:      Maintained
13748 F:      Documentation/virtual/uml/
13749 F:      arch/um/
13750 F:      arch/x86/um/
13751 F:      fs/hostfs/
13752 F:      fs/hppfs/
13753
13754 USERSPACE I/O (UIO)
13755 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13756 S:      Maintained
13757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
13758 F:      Documentation/driver-api/uio-howto.rst
13759 F:      drivers/uio/
13760 F:      include/linux/uio*.h
13761
13762 UTIL-LINUX PACKAGE
13763 M:      Karel Zak <kzak@redhat.com>
13764 L:      util-linux@vger.kernel.org
13765 W:      http://en.wikipedia.org/wiki/Util-linux
13766 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
13767 S:      Maintained
13768
13769 UUID HELPERS
13770 M:      Christoph Hellwig <hch@lst.de>
13771 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13772 L:      linux-kernel@vger.kernel.org
13773 T:      git git://git.infradead.org/users/hch/uuid.git
13774 F:      lib/uuid.c
13775 F:      lib/test_uuid.c
13776 F:      include/linux/uuid.h
13777 F:      include/uapi/linux/uuid.h
13778 S:      Maintained
13779
13780 UVESAFB DRIVER
13781 M:      Michal Januszewski <spock@gentoo.org>
13782 L:      linux-fbdev@vger.kernel.org
13783 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
13784 S:      Maintained
13785 F:      Documentation/fb/uvesafb.txt
13786 F:      drivers/video/fbdev/uvesafb.*
13787
13788 VF610 NAND DRIVER
13789 M:      Stefan Agner <stefan@agner.ch>
13790 L:      linux-mtd@lists.infradead.org
13791 S:      Supported
13792 F:      drivers/mtd/nand/vf610_nfc.c
13793
13794 VFAT/FAT/MSDOS FILESYSTEM
13795 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
13796 S:      Maintained
13797 F:      Documentation/filesystems/vfat.txt
13798 F:      fs/fat/
13799
13800 VFIO DRIVER
13801 M:      Alex Williamson <alex.williamson@redhat.com>
13802 L:      kvm@vger.kernel.org
13803 T:      git git://github.com/awilliam/linux-vfio.git
13804 S:      Maintained
13805 F:      Documentation/vfio.txt
13806 F:      drivers/vfio/
13807 F:      include/linux/vfio.h
13808 F:      include/uapi/linux/vfio.h
13809
13810 VFIO MEDIATED DEVICE DRIVERS
13811 M:      Kirti Wankhede <kwankhede@nvidia.com>
13812 L:      kvm@vger.kernel.org
13813 S:      Maintained
13814 F:      Documentation/vfio-mediated-device.txt
13815 F:      drivers/vfio/mdev/
13816 F:      include/linux/mdev.h
13817 F:      samples/vfio-mdev/
13818
13819 VFIO PLATFORM DRIVER
13820 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
13821 L:      kvm@vger.kernel.org
13822 S:      Maintained
13823 F:      drivers/vfio/platform/
13824
13825 VGA_SWITCHEROO
13826 R:      Lukas Wunner <lukas@wunner.de>
13827 S:      Maintained
13828 F:      Documentation/gpu/vga-switcheroo.rst
13829 F:      drivers/gpu/vga/vga_switcheroo.c
13830 F:      include/linux/vga_switcheroo.h
13831 T:      git git://anongit.freedesktop.org/drm/drm-misc
13832
13833 VIDEOBUF2 FRAMEWORK
13834 M:      Pawel Osciak <pawel@osciak.com>
13835 M:      Marek Szyprowski <m.szyprowski@samsung.com>
13836 M:      Kyungmin Park <kyungmin.park@samsung.com>
13837 L:      linux-media@vger.kernel.org
13838 S:      Maintained
13839 F:      drivers/media/v4l2-core/videobuf2-*
13840 F:      include/media/videobuf2-*
13841
13842 VIDEO MULTIPLEXER DRIVER
13843 M:      Philipp Zabel <p.zabel@pengutronix.de>
13844 L:      linux-media@vger.kernel.org
13845 S:      Maintained
13846 F:      drivers/media/platform/video-mux.c
13847
13848 VIRTIO AND VHOST VSOCK DRIVER
13849 M:      Stefan Hajnoczi <stefanha@redhat.com>
13850 L:      kvm@vger.kernel.org
13851 L:      virtualization@lists.linux-foundation.org
13852 L:      netdev@vger.kernel.org
13853 S:      Maintained
13854 F:      include/linux/virtio_vsock.h
13855 F:      include/uapi/linux/virtio_vsock.h
13856 F:      include/uapi/linux/vsockmon.h
13857 F:      net/vmw_vsock/af_vsock_tap.c
13858 F:      net/vmw_vsock/virtio_transport_common.c
13859 F:      net/vmw_vsock/virtio_transport.c
13860 F:      drivers/net/vsockmon.c
13861 F:      drivers/vhost/vsock.c
13862 F:      drivers/vhost/vsock.h
13863
13864 VIRTUAL SERIO DEVICE DRIVER
13865 M:      Stephen Chandler Paul <thatslyude@gmail.com>
13866 S:      Maintained
13867 F:      drivers/input/serio/userio.c
13868 F:      include/uapi/linux/userio.h
13869
13870 VIRTIO CONSOLE DRIVER
13871 M:      Amit Shah <amit@kernel.org>
13872 L:      virtualization@lists.linux-foundation.org
13873 S:      Maintained
13874 F:      drivers/char/virtio_console.c
13875 F:      include/linux/virtio_console.h
13876 F:      include/uapi/linux/virtio_console.h
13877
13878 VIRTIO CORE, NET AND BLOCK DRIVERS
13879 M:      "Michael S. Tsirkin" <mst@redhat.com>
13880 M:      Jason Wang <jasowang@redhat.com>
13881 L:      virtualization@lists.linux-foundation.org
13882 S:      Maintained
13883 F:      Documentation/devicetree/bindings/virtio/
13884 F:      drivers/virtio/
13885 F:      tools/virtio/
13886 F:      drivers/net/virtio_net.c
13887 F:      drivers/block/virtio_blk.c
13888 F:      include/linux/virtio*.h
13889 F:      include/uapi/linux/virtio_*.h
13890 F:      drivers/crypto/virtio/
13891
13892 VIRTIO DRIVERS FOR S390
13893 M:      Cornelia Huck <cohuck@redhat.com>
13894 M:      Halil Pasic <pasic@linux.vnet.ibm.com>
13895 L:      linux-s390@vger.kernel.org
13896 L:      virtualization@lists.linux-foundation.org
13897 L:      kvm@vger.kernel.org
13898 S:      Supported
13899 F:      drivers/s390/virtio/
13900
13901 VIRTIO GPU DRIVER
13902 M:      David Airlie <airlied@linux.ie>
13903 M:      Gerd Hoffmann <kraxel@redhat.com>
13904 L:      dri-devel@lists.freedesktop.org
13905 L:      virtualization@lists.linux-foundation.org
13906 T:      git git://anongit.freedesktop.org/drm/drm-misc
13907 S:      Maintained
13908 F:      drivers/gpu/drm/virtio/
13909 F:      include/uapi/linux/virtio_gpu.h
13910
13911 VIRTIO HOST (VHOST)
13912 M:      "Michael S. Tsirkin" <mst@redhat.com>
13913 M:      Jason Wang <jasowang@redhat.com>
13914 L:      kvm@vger.kernel.org
13915 L:      virtualization@lists.linux-foundation.org
13916 L:      netdev@vger.kernel.org
13917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
13918 S:      Maintained
13919 F:      drivers/vhost/
13920 F:      include/uapi/linux/vhost.h
13921
13922 VIRTIO INPUT DRIVER
13923 M:      Gerd Hoffmann <kraxel@redhat.com>
13924 S:      Maintained
13925 F:      drivers/virtio/virtio_input.c
13926 F:      include/uapi/linux/virtio_input.h
13927
13928 VIRTIO CRYPTO DRIVER
13929 M:  Gonglei <arei.gonglei@huawei.com>
13930 L:  virtualization@lists.linux-foundation.org
13931 L:  linux-crypto@vger.kernel.org
13932 S:  Maintained
13933 F:  drivers/crypto/virtio/
13934 F:  include/uapi/linux/virtio_crypto.h
13935
13936 VIA RHINE NETWORK DRIVER
13937 S:      Orphan
13938 F:      drivers/net/ethernet/via/via-rhine.c
13939
13940 VIA SD/MMC CARD CONTROLLER DRIVER
13941 M:      Bruce Chang <brucechang@via.com.tw>
13942 M:      Harald Welte <HaraldWelte@viatech.com>
13943 S:      Maintained
13944 F:      drivers/mmc/host/via-sdmmc.c
13945
13946 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
13947 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
13948 L:      linux-fbdev@vger.kernel.org
13949 S:      Maintained
13950 F:      include/linux/via-core.h
13951 F:      include/linux/via-gpio.h
13952 F:      include/linux/via_i2c.h
13953 F:      drivers/video/fbdev/via/
13954
13955 VIA VELOCITY NETWORK DRIVER
13956 M:      Francois Romieu <romieu@fr.zoreil.com>
13957 L:      netdev@vger.kernel.org
13958 S:      Maintained
13959 F:      drivers/net/ethernet/via/via-velocity.*
13960
13961 VIRT LIB
13962 M:      Alex Williamson <alex.williamson@redhat.com>
13963 M:      Paolo Bonzini <pbonzini@redhat.com>
13964 L:      kvm@vger.kernel.org
13965 S:      Supported
13966 F:      virt/lib/
13967
13968 VIVID VIRTUAL VIDEO DRIVER
13969 M:      Hans Verkuil <hverkuil@xs4all.nl>
13970 L:      linux-media@vger.kernel.org
13971 T:      git git://linuxtv.org/media_tree.git
13972 W:      https://linuxtv.org
13973 S:      Maintained
13974 F:      drivers/media/platform/vivid/*
13975
13976 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
13977 M:      Helen Koike <helen.koike@collabora.com>
13978 L:      linux-media@vger.kernel.org
13979 T:      git git://linuxtv.org/media_tree.git
13980 W:      https://linuxtv.org
13981 S:      Maintained
13982 F:      drivers/media/platform/vimc/*
13983
13984 VLYNQ BUS
13985 M:      Florian Fainelli <f.fainelli@gmail.com>
13986 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
13987 S:      Maintained
13988 F:      drivers/vlynq/vlynq.c
13989 F:      include/linux/vlynq.h
13990
13991 VME SUBSYSTEM
13992 M:      Martyn Welch <martyn@welchs.me.uk>
13993 M:      Manohar Vanga <manohar.vanga@gmail.com>
13994 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13995 L:      devel@driverdev.osuosl.org
13996 S:      Maintained
13997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
13998 F:      Documentation/driver-api/vme.rst
13999 F:      drivers/staging/vme/
14000 F:      drivers/vme/
14001 F:      include/linux/vme*
14002
14003 VMWARE HYPERVISOR INTERFACE
14004 M:      Alok Kataria <akataria@vmware.com>
14005 L:      virtualization@lists.linux-foundation.org
14006 S:      Supported
14007 F:      arch/x86/kernel/cpu/vmware.c
14008
14009 VMWARE BALLOON DRIVER
14010 M:      Xavier Deguillard <xdeguillard@vmware.com>
14011 M:      Philip Moltmann <moltmann@vmware.com>
14012 M:      "VMware, Inc." <pv-drivers@vmware.com>
14013 L:      linux-kernel@vger.kernel.org
14014 S:      Maintained
14015 F:      drivers/misc/vmw_balloon.c
14016
14017 VMWARE VMMOUSE SUBDRIVER
14018 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14019 M:      "VMware, Inc." <pv-drivers@vmware.com>
14020 L:      linux-input@vger.kernel.org
14021 S:      Maintained
14022 F:      drivers/input/mouse/vmmouse.c
14023 F:      drivers/input/mouse/vmmouse.h
14024
14025 VMWARE VMXNET3 ETHERNET DRIVER
14026 M:      Shrikrishna Khare <skhare@vmware.com>
14027 M:      "VMware, Inc." <pv-drivers@vmware.com>
14028 L:      netdev@vger.kernel.org
14029 S:      Maintained
14030 F:      drivers/net/vmxnet3/
14031
14032 VMware PVSCSI driver
14033 M:      Jim Gill <jgill@vmware.com>
14034 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14035 L:      linux-scsi@vger.kernel.org
14036 S:      Maintained
14037 F:      drivers/scsi/vmw_pvscsi.c
14038 F:      drivers/scsi/vmw_pvscsi.h
14039
14040 VMWARE PVRDMA DRIVER
14041 M:      Adit Ranadive <aditr@vmware.com>
14042 M:      VMware PV-Drivers <pv-drivers@vmware.com>
14043 L:      linux-rdma@vger.kernel.org
14044 S:      Maintained
14045 F:      drivers/infiniband/hw/vmw_pvrdma/
14046
14047 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14048 M:      Liam Girdwood <lgirdwood@gmail.com>
14049 M:      Mark Brown <broonie@kernel.org>
14050 L:      linux-kernel@vger.kernel.org
14051 W:      http://www.slimlogic.co.uk/?p=48
14052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14053 S:      Supported
14054 F:      Documentation/devicetree/bindings/regulator/
14055 F:      drivers/regulator/
14056 F:      include/dt-bindings/regulator/
14057 F:      include/linux/regulator/
14058
14059 VRF
14060 M:      David Ahern <dsa@cumulusnetworks.com>
14061 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
14062 L:      netdev@vger.kernel.org
14063 S:      Maintained
14064 F:      drivers/net/vrf.c
14065 F:      Documentation/networking/vrf.txt
14066
14067 VT1211 HARDWARE MONITOR DRIVER
14068 M:      Juerg Haefliger <juergh@gmail.com>
14069 L:      linux-hwmon@vger.kernel.org
14070 S:      Maintained
14071 F:      Documentation/hwmon/vt1211
14072 F:      drivers/hwmon/vt1211.c
14073
14074 VT8231 HARDWARE MONITOR DRIVER
14075 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
14076 L:      linux-hwmon@vger.kernel.org
14077 S:      Maintained
14078 F:      drivers/hwmon/vt8231.c
14079
14080 VUB300 USB to SDIO/SD/MMC bridge chip
14081 M:      Tony Olech <tony.olech@elandigitalsystems.com>
14082 L:      linux-mmc@vger.kernel.org
14083 L:      linux-usb@vger.kernel.org
14084 S:      Supported
14085 F:      drivers/mmc/host/vub300.c
14086
14087 W1 DALLAS'S 1-WIRE BUS
14088 M:      Evgeniy Polyakov <zbr@ioremap.net>
14089 S:      Maintained
14090 F:      Documentation/w1/
14091 F:      drivers/w1/
14092 F:      include/linux/w1.h
14093
14094 W83791D HARDWARE MONITORING DRIVER
14095 M:      Marc Hulsman <m.hulsman@tudelft.nl>
14096 L:      linux-hwmon@vger.kernel.org
14097 S:      Maintained
14098 F:      Documentation/hwmon/w83791d
14099 F:      drivers/hwmon/w83791d.c
14100
14101 W83793 HARDWARE MONITORING DRIVER
14102 M:      Rudolf Marek <r.marek@assembler.cz>
14103 L:      linux-hwmon@vger.kernel.org
14104 S:      Maintained
14105 F:      Documentation/hwmon/w83793
14106 F:      drivers/hwmon/w83793.c
14107
14108 W83795 HARDWARE MONITORING DRIVER
14109 M:      Jean Delvare <jdelvare@suse.com>
14110 L:      linux-hwmon@vger.kernel.org
14111 S:      Maintained
14112 F:      drivers/hwmon/w83795.c
14113
14114 W83L51xD SD/MMC CARD INTERFACE DRIVER
14115 M:      Pierre Ossman <pierre@ossman.eu>
14116 S:      Maintained
14117 F:      drivers/mmc/host/wbsd.*
14118
14119 WACOM PROTOCOL 4 SERIAL TABLETS
14120 M:      Julian Squires <julian@cipht.net>
14121 M:      Hans de Goede <hdegoede@redhat.com>
14122 L:      linux-input@vger.kernel.org
14123 S:      Maintained
14124 F:      drivers/input/tablet/wacom_serial4.c
14125
14126 WATCHDOG DEVICE DRIVERS
14127 M:      Wim Van Sebroeck <wim@iguana.be>
14128 R:      Guenter Roeck <linux@roeck-us.net>
14129 L:      linux-watchdog@vger.kernel.org
14130 W:      http://www.linux-watchdog.org/
14131 T:      git git://www.linux-watchdog.org/linux-watchdog.git
14132 S:      Maintained
14133 F:      Documentation/devicetree/bindings/watchdog/
14134 F:      Documentation/watchdog/
14135 F:      drivers/watchdog/
14136 F:      include/linux/watchdog.h
14137 F:      include/uapi/linux/watchdog.h
14138
14139 WIIMOTE HID DRIVER
14140 M:      David Herrmann <dh.herrmann@googlemail.com>
14141 L:      linux-input@vger.kernel.org
14142 S:      Maintained
14143 F:      drivers/hid/hid-wiimote*
14144
14145 WINBOND CIR DRIVER
14146 M:      David Härdeman <david@hardeman.nu>
14147 S:      Maintained
14148 F:      drivers/media/rc/winbond-cir.c
14149
14150 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14151 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
14152 L:      linux-watchdog@vger.kernel.org
14153 S:      Maintained
14154 F:      drivers/watchdog/ebc-c384_wdt.c
14155
14156 WINSYSTEMS WS16C48 GPIO DRIVER
14157 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
14158 L:      linux-gpio@vger.kernel.org
14159 S:      Maintained
14160 F:      drivers/gpio/gpio-ws16c48.c
14161
14162 WIMAX STACK
14163 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14164 M:      linux-wimax@intel.com
14165 L:      wimax@linuxwimax.org (subscribers-only)
14166 S:      Supported
14167 W:      http://linuxwimax.org
14168 F:      Documentation/wimax/README.wimax
14169 F:      include/linux/wimax/debug.h
14170 F:      include/net/wimax.h
14171 F:      include/uapi/linux/wimax.h
14172 F:      net/wimax/
14173
14174 WISTRON LAPTOP BUTTON DRIVER
14175 M:      Miloslav Trmac <mitr@volny.cz>
14176 S:      Maintained
14177 F:      drivers/input/misc/wistron_btns.c
14178
14179 WL3501 WIRELESS PCMCIA CARD DRIVER
14180 L:      linux-wireless@vger.kernel.org
14181 S:      Odd fixes
14182 F:      drivers/net/wireless/wl3501*
14183
14184 WOLFSON MICROELECTRONICS DRIVERS
14185 L:      patches@opensource.cirrus.com
14186 T:      git https://github.com/CirrusLogic/linux-drivers.git
14187 W:      https://github.com/CirrusLogic/linux-drivers/wiki
14188 S:      Supported
14189 F:      Documentation/hwmon/wm83??
14190 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14191 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14192 F:      Documentation/devicetree/bindings/mfd/arizona.txt
14193 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
14194 F:      arch/arm/mach-s3c64xx/mach-crag6410*
14195 F:      drivers/clk/clk-wm83*.c
14196 F:      drivers/extcon/extcon-arizona.c
14197 F:      drivers/leds/leds-wm83*.c
14198 F:      drivers/gpio/gpio-*wm*.c
14199 F:      drivers/gpio/gpio-arizona.c
14200 F:      drivers/hwmon/wm83??-hwmon.c
14201 F:      drivers/input/misc/wm831x-on.c
14202 F:      drivers/input/touchscreen/wm831x-ts.c
14203 F:      drivers/input/touchscreen/wm97*.c
14204 F:      drivers/mfd/arizona*
14205 F:      drivers/mfd/wm*.c
14206 F:      drivers/mfd/cs47l24*
14207 F:      drivers/power/supply/wm83*.c
14208 F:      drivers/rtc/rtc-wm83*.c
14209 F:      drivers/regulator/wm8*.c
14210 F:      drivers/regulator/arizona*
14211 F:      drivers/video/backlight/wm83*_bl.c
14212 F:      drivers/watchdog/wm83*_wdt.c
14213 F:      include/linux/mfd/arizona/
14214 F:      include/linux/mfd/wm831x/
14215 F:      include/linux/mfd/wm8350/
14216 F:      include/linux/mfd/wm8400*
14217 F:      include/linux/regulator/arizona*
14218 F:      include/linux/wm97xx.h
14219 F:      include/sound/wm????.h
14220 F:      sound/soc/codecs/arizona.?
14221 F:      sound/soc/codecs/wm*
14222 F:      sound/soc/codecs/cs47l24*
14223
14224 WORKQUEUE
14225 M:      Tejun Heo <tj@kernel.org>
14226 R:      Lai Jiangshan <jiangshanlai@gmail.com>
14227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14228 S:      Maintained
14229 F:      include/linux/workqueue.h
14230 F:      kernel/workqueue.c
14231 F:      Documentation/core-api/workqueue.rst
14232
14233 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14234 M:      Chen-Yu Tsai <wens@csie.org>
14235 L:      linux-kernel@vger.kernel.org
14236 S:      Maintained
14237 N:      axp[128]
14238
14239 X.25 NETWORK LAYER
14240 M:      Andrew Hendry <andrew.hendry@gmail.com>
14241 L:      linux-x25@vger.kernel.org
14242 S:      Odd Fixes
14243 F:      Documentation/networking/x25*
14244 F:      include/net/x25*
14245 F:      net/x25/
14246
14247 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14248 M:      Thomas Gleixner <tglx@linutronix.de>
14249 M:      Ingo Molnar <mingo@redhat.com>
14250 M:      "H. Peter Anvin" <hpa@zytor.com>
14251 M:      x86@kernel.org
14252 L:      linux-kernel@vger.kernel.org
14253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14254 S:      Maintained
14255 F:      Documentation/x86/
14256 F:      arch/x86/
14257
14258 X86 PLATFORM DRIVERS
14259 M:      Darren Hart <dvhart@infradead.org>
14260 M:      Andy Shevchenko <andy@infradead.org>
14261 L:      platform-driver-x86@vger.kernel.org
14262 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14263 S:      Maintained
14264 F:      drivers/platform/x86/
14265 F:      drivers/platform/olpc/
14266
14267 X86 MCE INFRASTRUCTURE
14268 M:      Tony Luck <tony.luck@intel.com>
14269 M:      Borislav Petkov <bp@alien8.de>
14270 L:      linux-edac@vger.kernel.org
14271 S:      Maintained
14272 F:      arch/x86/kernel/cpu/mcheck/*
14273
14274 X86 MICROCODE UPDATE SUPPORT
14275 M:      Borislav Petkov <bp@alien8.de>
14276 S:      Maintained
14277 F:      arch/x86/kernel/cpu/microcode/*
14278
14279 X86 VDSO
14280 M:      Andy Lutomirski <luto@amacapital.net>
14281 L:      linux-kernel@vger.kernel.org
14282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14283 S:      Maintained
14284 F:      arch/x86/entry/vdso/
14285
14286 XC2028/3028 TUNER DRIVER
14287 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
14288 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
14289 L:      linux-media@vger.kernel.org
14290 W:      https://linuxtv.org
14291 T:      git git://linuxtv.org/media_tree.git
14292 S:      Maintained
14293 F:      drivers/media/tuners/tuner-xc2028.*
14294
14295 XEN HYPERVISOR INTERFACE
14296 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
14297 M:      Juergen Gross <jgross@suse.com>
14298 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14300 S:      Supported
14301 F:      arch/x86/xen/
14302 F:      drivers/*/xen-*front.c
14303 F:      drivers/xen/
14304 F:      arch/x86/include/asm/xen/
14305 F:      include/xen/
14306 F:      include/uapi/xen/
14307 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
14308 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
14309
14310 XEN HYPERVISOR ARM
14311 M:      Stefano Stabellini <sstabellini@kernel.org>
14312 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14313 S:      Maintained
14314 F:      arch/arm/xen/
14315 F:      arch/arm/include/asm/xen/
14316
14317 XEN HYPERVISOR ARM64
14318 M:      Stefano Stabellini <sstabellini@kernel.org>
14319 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14320 S:      Maintained
14321 F:      arch/arm64/xen/
14322 F:      arch/arm64/include/asm/xen/
14323
14324 XEN NETWORK BACKEND DRIVER
14325 M:      Wei Liu <wei.liu2@citrix.com>
14326 M:      Paul Durrant <paul.durrant@citrix.com>
14327 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14328 L:      netdev@vger.kernel.org
14329 S:      Supported
14330 F:      drivers/net/xen-netback/*
14331
14332 XEN PCI SUBSYSTEM
14333 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14334 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14335 S:      Supported
14336 F:      arch/x86/pci/*xen*
14337 F:      drivers/pci/*xen*
14338
14339 XEN BLOCK SUBSYSTEM
14340 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14341 M:      Roger Pau Monné <roger.pau@citrix.com>
14342 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14343 S:      Supported
14344 F:      drivers/block/xen-blkback/*
14345 F:      drivers/block/xen*
14346
14347 XEN PVSCSI DRIVERS
14348 M:      Juergen Gross <jgross@suse.com>
14349 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14350 L:      linux-scsi@vger.kernel.org
14351 S:      Supported
14352 F:      drivers/scsi/xen-scsifront.c
14353 F:      drivers/xen/xen-scsiback.c
14354 F:      include/xen/interface/io/vscsiif.h
14355
14356 XEN SWIOTLB SUBSYSTEM
14357 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14358 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
14359 S:      Supported
14360 F:      arch/x86/xen/*swiotlb*
14361 F:      drivers/xen/*swiotlb*
14362
14363 XFS FILESYSTEM
14364 M:      Darrick J. Wong <darrick.wong@oracle.com>
14365 M:      linux-xfs@vger.kernel.org
14366 L:      linux-xfs@vger.kernel.org
14367 W:      http://xfs.org/
14368 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
14369 S:      Supported
14370 F:      Documentation/filesystems/xfs.txt
14371 F:      fs/xfs/
14372
14373 XILINX AXI ETHERNET DRIVER
14374 M:      Anirudha Sarangi <anirudh@xilinx.com>
14375 M:      John Linn <John.Linn@xilinx.com>
14376 S:      Maintained
14377 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
14378
14379 XILINX UARTLITE SERIAL DRIVER
14380 M:      Peter Korsgaard <jacmet@sunsite.dk>
14381 L:      linux-serial@vger.kernel.org
14382 S:      Maintained
14383 F:      drivers/tty/serial/uartlite.c
14384
14385 XILINX VIDEO IP CORES
14386 M:      Hyun Kwon <hyun.kwon@xilinx.com>
14387 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14388 L:      linux-media@vger.kernel.org
14389 T:      git git://linuxtv.org/media_tree.git
14390 S:      Supported
14391 F:      Documentation/devicetree/bindings/media/xilinx/
14392 F:      drivers/media/platform/xilinx/
14393 F:      include/uapi/linux/xilinx-v4l2-controls.h
14394
14395 XILLYBUS DRIVER
14396 M:      Eli Billauer <eli.billauer@gmail.com>
14397 L:      linux-kernel@vger.kernel.org
14398 S:      Supported
14399 F:      drivers/char/xillybus/
14400
14401 XRA1403 GPIO EXPANDER
14402 M:      Nandor Han <nandor.han@ge.com>
14403 M:      Semi Malinen <semi.malinen@ge.com>
14404 L:      linux-gpio@vger.kernel.org
14405 S:      Maintained
14406 F:      drivers/gpio/gpio-xra1403.c
14407 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
14408
14409 XTENSA XTFPGA PLATFORM SUPPORT
14410 M:      Max Filippov <jcmvbkbc@gmail.com>
14411 L:      linux-xtensa@linux-xtensa.org
14412 S:      Maintained
14413 F:      drivers/spi/spi-xtensa-xtfpga.c
14414 F:      sound/soc/xtensa/xtfpga-i2s.c
14415
14416 YAM DRIVER FOR AX.25
14417 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
14418 L:      linux-hams@vger.kernel.org
14419 S:      Maintained
14420 F:      drivers/net/hamradio/yam*
14421 F:      include/linux/yam.h
14422
14423 YEALINK PHONE DRIVER
14424 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
14425 L:      usbb2k-api-dev@nongnu.org
14426 S:      Maintained
14427 F:      Documentation/input/yealink.rst
14428 F:      drivers/input/misc/yealink.*
14429
14430 Z8530 DRIVER FOR AX.25
14431 M:      Joerg Reuter <jreuter@yaina.de>
14432 W:      http://yaina.de/jreuter/
14433 W:      http://www.qsl.net/dl1bke/
14434 L:      linux-hams@vger.kernel.org
14435 S:      Maintained
14436 F:      Documentation/networking/z8530drv.txt
14437 F:      drivers/net/hamradio/*scc.c
14438 F:      drivers/net/hamradio/z8530.h
14439
14440 ZBUD COMPRESSED PAGE ALLOCATOR
14441 M:      Seth Jennings <sjenning@redhat.com>
14442 M:      Dan Streetman <ddstreet@ieee.org>
14443 L:      linux-mm@kvack.org
14444 S:      Maintained
14445 F:      mm/zbud.c
14446 F:      include/linux/zbud.h
14447
14448 ZD1211RW WIRELESS DRIVER
14449 M:      Daniel Drake <dsd@gentoo.org>
14450 M:      Ulrich Kunitz <kune@deine-taler.de>
14451 W:      http://zd1211.ath.cx/wiki/DriverRewrite
14452 L:      linux-wireless@vger.kernel.org
14453 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
14454 S:      Maintained
14455 F:      drivers/net/wireless/zydas/zd1211rw/
14456
14457 ZD1301_DEMOD MEDIA DRIVER
14458 M:      Antti Palosaari <crope@iki.fi>
14459 L:      linux-media@vger.kernel.org
14460 W:      https://linuxtv.org/
14461 W:      http://palosaari.fi/linux/
14462 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14463 S:      Maintained
14464 F:      drivers/media/dvb-frontends/zd1301_demod*
14465
14466 ZD1301 MEDIA DRIVER
14467 M:      Antti Palosaari <crope@iki.fi>
14468 L:      linux-media@vger.kernel.org
14469 W:      https://linuxtv.org/
14470 W:      http://palosaari.fi/linux/
14471 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14472 S:      Maintained
14473 F:      drivers/media/usb/dvb-usb-v2/zd1301*
14474
14475 ZPOOL COMPRESSED PAGE STORAGE API
14476 M:      Dan Streetman <ddstreet@ieee.org>
14477 L:      linux-mm@kvack.org
14478 S:      Maintained
14479 F:      mm/zpool.c
14480 F:      include/linux/zpool.h
14481
14482 ZR36067 VIDEO FOR LINUX DRIVER
14483 L:      mjpeg-users@lists.sourceforge.net
14484 L:      linux-media@vger.kernel.org
14485 W:      http://mjpeg.sourceforge.net/driver-zoran/
14486 T:      hg https://linuxtv.org/hg/v4l-dvb
14487 S:      Odd Fixes
14488 F:      drivers/media/pci/zoran/
14489
14490 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14491 M:      Minchan Kim <minchan@kernel.org>
14492 M:      Nitin Gupta <ngupta@vflare.org>
14493 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14494 L:      linux-kernel@vger.kernel.org
14495 S:      Maintained
14496 F:      drivers/block/zram/
14497 F:      Documentation/blockdev/zram.txt
14498
14499 ZS DECSTATION Z85C30 SERIAL DRIVER
14500 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
14501 S:      Maintained
14502 F:      drivers/tty/serial/zs.*
14503
14504 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14505 M:      Minchan Kim <minchan@kernel.org>
14506 M:      Nitin Gupta <ngupta@vflare.org>
14507 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14508 L:      linux-mm@kvack.org
14509 S:      Maintained
14510 F:      mm/zsmalloc.c
14511 F:      include/linux/zsmalloc.h
14512 F:      Documentation/vm/zsmalloc.txt
14513
14514 ZSWAP COMPRESSED SWAP CACHING
14515 M:      Seth Jennings <sjenning@redhat.com>
14516 M:      Dan Streetman <ddstreet@ieee.org>
14517 L:      linux-mm@kvack.org
14518 S:      Maintained
14519 F:      mm/zswap.c
14520
14521 THE REST
14522 M:      Linus Torvalds <torvalds@linux-foundation.org>
14523 L:      linux-kernel@vger.kernel.org
14524 Q:      http://patchwork.kernel.org/project/LKML/list/
14525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14526 S:      Buried alive in reporters
14527 F:      *
14528 F:      */