Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux
[sfrench/cifs-2.6.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         B: Bug tracking system location.
85         S: Status, one of the following:
86            Supported:   Someone is actually paid to look after this.
87            Maintained:  Someone actually looks after it.
88            Odd Fixes:   It has a maintainer but they don't have time to do
89                         much other than throw the odd patch in. See below..
90            Orphan:      No current maintainer [but maybe you could take the
91                         role as you write your new code].
92            Obsolete:    Old code. Something tagged obsolete generally means
93                         it has been replaced by a better system and you
94                         should be using that.
95         F: Files and directories with wildcard patterns.
96            A trailing slash includes all files and subdirectory files.
97            F:   drivers/net/    all files in and below drivers/net
98            F:   drivers/net/*   all files in drivers/net, but not below
99            F:   */net/*         all files in "any top level directory"/net
100            One pattern per line.  Multiple F: lines acceptable.
101         N: Files and directories with regex patterns.
102            N:   [^a-z]tegra     all files whose path contains the word tegra
103            One pattern per line.  Multiple N: lines acceptable.
104            scripts/get_maintainer.pl has different behavior for files that
105            match F: pattern and matches of N: patterns.  By default,
106            get_maintainer will not look at git log history when an F: pattern
107            match occurs.  When an N: match occurs, git log history is used
108            to also notify the people that have git commit signatures.
109         X: Files and directories that are NOT maintained, same rules as F:
110            Files exclusions are tested before file matches.
111            Can be useful for excluding a specific subdirectory, for instance:
112            F:   net/
113            X:   net/ipv6/
114            matches all files in and below net excluding net/ipv6/
115         K: Keyword perl extended regex pattern to match content in a
116            patch or file.  For instance:
117            K: of_get_profile
118               matches patches or files that contain "of_get_profile"
119            K: \b(printk|pr_(info|err))\b
120               matches patches or files that contain one or more of the words
121               printk, pr_info or pr_err
122            One regex pattern per line.  Multiple K: lines acceptable.
123
124 Note: For the hard of thinking, this list is meant to remain in alphabetical
125 order. If you could add yourselves to it in alphabetical order that would be
126 so much easier [Ed]
127
128 Maintainers List (try to look for most precise areas first)
129
130                 -----------------------------------
131
132 3C59X NETWORK DRIVER
133 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
134 L:      netdev@vger.kernel.org
135 S:      Maintained
136 F:      Documentation/networking/vortex.txt
137 F:      drivers/net/ethernet/3com/3c59x.c
138
139 3CR990 NETWORK DRIVER
140 M:      David Dillow <dave@thedillows.org>
141 L:      netdev@vger.kernel.org
142 S:      Maintained
143 F:      drivers/net/ethernet/3com/typhoon*
144
145 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
146 M:      Adam Radford <linuxraid@lsi.com>
147 L:      linux-scsi@vger.kernel.org
148 W:      http://www.lsi.com
149 S:      Supported
150 F:      drivers/scsi/3w-*
151
152 53C700 AND 53C700-66 SCSI DRIVER
153 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
154 L:      linux-scsi@vger.kernel.org
155 S:      Maintained
156 F:      drivers/scsi/53c700*
157
158 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
159 M:      Alexander Aring <aar@pengutronix.de>
160 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
161 L:      linux-bluetooth@vger.kernel.org
162 L:      linux-wpan@vger.kernel.org
163 S:      Maintained
164 F:      net/6lowpan/
165 F:      include/net/6lowpan.h
166 F:      Documentation/networking/6lowpan.txt
167
168 6PACK NETWORK DRIVER FOR AX.25
169 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
170 L:      linux-hams@vger.kernel.org
171 S:      Maintained
172 F:      drivers/net/hamradio/6pack.c
173
174 8169 10/100/1000 GIGABIT ETHERNET DRIVER
175 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
176 L:      netdev@vger.kernel.org
177 S:      Maintained
178 F:      drivers/net/ethernet/realtek/r8169.c
179
180 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
181 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
182 L:      linux-serial@vger.kernel.org
183 S:      Maintained
184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
185 F:      drivers/tty/serial/8250*
186 F:      include/linux/serial_8250.h
187
188 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
189 L:      netdev@vger.kernel.org
190 S:      Orphan / Obsolete
191 F:      drivers/net/ethernet/8390/
192
193 9P FILE SYSTEM
194 M:      Eric Van Hensbergen <ericvh@gmail.com>
195 M:      Ron Minnich <rminnich@sandia.gov>
196 M:      Latchesar Ionkov <lucho@ionkov.net>
197 L:      v9fs-developer@lists.sourceforge.net
198 W:      http://swik.net/v9fs
199 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
201 S:      Maintained
202 F:      Documentation/filesystems/9p.txt
203 F:      fs/9p/
204 F:      net/9p/
205 F:      include/net/9p/
206 F:      include/uapi/linux/virtio_9p.h
207 F:      include/trace/events/9p.h
208
209
210 A8293 MEDIA DRIVER
211 M:      Antti Palosaari <crope@iki.fi>
212 L:      linux-media@vger.kernel.org
213 W:      https://linuxtv.org
214 W:      http://palosaari.fi/linux/
215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
216 T:      git git://linuxtv.org/anttip/media_tree.git
217 S:      Maintained
218 F:      drivers/media/dvb-frontends/a8293*
219
220 AACRAID SCSI RAID DRIVER
221 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
222 L:      linux-scsi@vger.kernel.org
223 W:      http://www.adaptec.com/
224 S:      Supported
225 F:      Documentation/scsi/aacraid.txt
226 F:      drivers/scsi/aacraid/
227
228 ABI/API
229 L:      linux-api@vger.kernel.org
230 F:      include/linux/syscalls.h
231 F:      kernel/sys_ni.c
232
233 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
234 M:      Hans de Goede <hdegoede@redhat.com>
235 L:      linux-hwmon@vger.kernel.org
236 S:      Maintained
237 F:      drivers/hwmon/abituguru.c
238
239 ABIT UGURU 3 HARDWARE MONITOR DRIVER
240 M:      Alistair John Strachan <alistair@devzero.co.uk>
241 L:      linux-hwmon@vger.kernel.org
242 S:      Maintained
243 F:      drivers/hwmon/abituguru3.c
244
245 ACCES 104-DIO-48E GPIO DRIVER
246 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
247 L:      linux-gpio@vger.kernel.org
248 S:      Maintained
249 F:      drivers/gpio/gpio-104-dio-48e.c
250
251 ACCES 104-IDI-48 GPIO DRIVER
252 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
253 L:      linux-gpio@vger.kernel.org
254 S:      Maintained
255 F:      drivers/gpio/gpio-104-idi-48.c
256
257 ACCES 104-IDIO-16 GPIO DRIVER
258 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
259 L:      linux-gpio@vger.kernel.org
260 S:      Maintained
261 F:      drivers/gpio/gpio-104-idio-16.c
262
263 ACENIC DRIVER
264 M:      Jes Sorensen <jes@trained-monkey.org>
265 L:      linux-acenic@sunsite.dk
266 S:      Maintained
267 F:      drivers/net/ethernet/alteon/acenic*
268
269 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
270 M:      Peter Feuerer <peter@piie.net>
271 L:      platform-driver-x86@vger.kernel.org
272 W:      http://piie.net/?section=acerhdf
273 S:      Maintained
274 F:      drivers/platform/x86/acerhdf.c
275
276 ACER WMI LAPTOP EXTRAS
277 M:      "Lee, Chun-Yi" <jlee@suse.com>
278 L:      platform-driver-x86@vger.kernel.org
279 S:      Maintained
280 F:      drivers/platform/x86/acer-wmi.c
281
282 ACPI
283 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
284 M:      Len Brown <lenb@kernel.org>
285 L:      linux-acpi@vger.kernel.org
286 W:      https://01.org/linux-acpi
287 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
289 B:      https://bugzilla.kernel.org
290 S:      Supported
291 F:      drivers/acpi/
292 F:      drivers/pnp/pnpacpi/
293 F:      include/linux/acpi.h
294 F:      include/acpi/
295 F:      Documentation/acpi/
296 F:      Documentation/ABI/testing/sysfs-bus-acpi
297 F:      Documentation/ABI/testing/configfs-acpi
298 F:      drivers/pci/*acpi*
299 F:      drivers/pci/*/*acpi*
300 F:      drivers/pci/*/*/*acpi*
301 F:      tools/power/acpi/
302
303 ACPI COMPONENT ARCHITECTURE (ACPICA)
304 M:      Robert Moore <robert.moore@intel.com>
305 M:      Lv Zheng <lv.zheng@intel.com>
306 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
307 L:      linux-acpi@vger.kernel.org
308 L:      devel@acpica.org
309 W:      https://acpica.org/
310 W:      https://github.com/acpica/acpica/
311 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
313 B:      https://bugzilla.kernel.org
314 B:      https://bugs.acpica.org
315 S:      Supported
316 F:      drivers/acpi/acpica/
317 F:      include/acpi/
318 F:      tools/power/acpi/
319
320 ACPI FAN DRIVER
321 M:      Zhang Rui <rui.zhang@intel.com>
322 L:      linux-acpi@vger.kernel.org
323 W:      https://01.org/linux-acpi
324 B:      https://bugzilla.kernel.org
325 S:      Supported
326 F:      drivers/acpi/fan.c
327
328 ACPI FOR ARM64 (ACPI/arm64)
329 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
330 M:      Hanjun Guo <hanjun.guo@linaro.org>
331 M:      Sudeep Holla <sudeep.holla@arm.com>
332 L:      linux-acpi@vger.kernel.org
333 S:      Maintained
334 F:      drivers/acpi/arm64
335
336 ACPI THERMAL DRIVER
337 M:      Zhang Rui <rui.zhang@intel.com>
338 L:      linux-acpi@vger.kernel.org
339 W:      https://01.org/linux-acpi
340 B:      https://bugzilla.kernel.org
341 S:      Supported
342 F:      drivers/acpi/*thermal*
343
344 ACPI VIDEO DRIVER
345 M:      Zhang Rui <rui.zhang@intel.com>
346 L:      linux-acpi@vger.kernel.org
347 W:      https://01.org/linux-acpi
348 B:      https://bugzilla.kernel.org
349 S:      Supported
350 F:      drivers/acpi/acpi_video.c
351
352 ACPI WMI DRIVER
353 L:      platform-driver-x86@vger.kernel.org
354 S:      Orphan
355 F:      drivers/platform/x86/wmi.c
356
357 AD1889 ALSA SOUND DRIVER
358 M:      Thibaut Varene <T-Bone@parisc-linux.org>
359 W:      http://wiki.parisc-linux.org/AD1889
360 L:      linux-parisc@vger.kernel.org
361 S:      Maintained
362 F:      sound/pci/ad1889.*
363
364 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
365 M:      Michael Hennerich <michael.hennerich@analog.com>
366 W:      http://wiki.analog.com/AD5254
367 W:      http://ez.analog.com/community/linux-device-drivers
368 S:      Supported
369 F:      drivers/misc/ad525x_dpot.c
370
371 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
372 M:      Michael Hennerich <michael.hennerich@analog.com>
373 W:      http://wiki.analog.com/AD5398
374 W:      http://ez.analog.com/community/linux-device-drivers
375 S:      Supported
376 F:      drivers/regulator/ad5398.c
377
378 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
379 M:      Michael Hennerich <michael.hennerich@analog.com>
380 W:      http://wiki.analog.com/AD7142
381 W:      http://ez.analog.com/community/linux-device-drivers
382 S:      Supported
383 F:      drivers/input/misc/ad714x.c
384
385 AD7877 TOUCHSCREEN DRIVER
386 M:      Michael Hennerich <michael.hennerich@analog.com>
387 W:      http://wiki.analog.com/AD7877
388 W:      http://ez.analog.com/community/linux-device-drivers
389 S:      Supported
390 F:      drivers/input/touchscreen/ad7877.c
391
392 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
393 M:      Michael Hennerich <michael.hennerich@analog.com>
394 W:      http://wiki.analog.com/AD7879
395 W:      http://ez.analog.com/community/linux-device-drivers
396 S:      Supported
397 F:      drivers/input/touchscreen/ad7879.c
398
399 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
400 M:      Jiri Kosina <jikos@kernel.org>
401 S:      Maintained
402
403 ADF7242 IEEE 802.15.4 RADIO DRIVER
404 M:      Michael Hennerich <michael.hennerich@analog.com>
405 W:      https://wiki.analog.com/ADF7242
406 W:      http://ez.analog.com/community/linux-device-drivers
407 L:      linux-wpan@vger.kernel.org
408 S:      Supported
409 F:      drivers/net/ieee802154/adf7242.c
410 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
411
412 ADM1025 HARDWARE MONITOR DRIVER
413 M:      Jean Delvare <jdelvare@suse.com>
414 L:      linux-hwmon@vger.kernel.org
415 S:      Maintained
416 F:      Documentation/hwmon/adm1025
417 F:      drivers/hwmon/adm1025.c
418
419 ADM1029 HARDWARE MONITOR DRIVER
420 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
421 L:      linux-hwmon@vger.kernel.org
422 S:      Maintained
423 F:      drivers/hwmon/adm1029.c
424
425 ADM8211 WIRELESS DRIVER
426 L:      linux-wireless@vger.kernel.org
427 W:      http://wireless.kernel.org/
428 S:      Orphan
429 F:      drivers/net/wireless/admtek/adm8211.*
430
431 ADP1653 FLASH CONTROLLER DRIVER
432 M:      Sakari Ailus <sakari.ailus@iki.fi>
433 L:      linux-media@vger.kernel.org
434 S:      Maintained
435 F:      drivers/media/i2c/adp1653.c
436 F:      include/media/i2c/adp1653.h
437
438 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
439 M:      Michael Hennerich <michael.hennerich@analog.com>
440 W:      http://wiki.analog.com/ADP5520
441 W:      http://ez.analog.com/community/linux-device-drivers
442 S:      Supported
443 F:      drivers/mfd/adp5520.c
444 F:      drivers/video/backlight/adp5520_bl.c
445 F:      drivers/leds/leds-adp5520.c
446 F:      drivers/gpio/gpio-adp5520.c
447 F:      drivers/input/keyboard/adp5520-keys.c
448
449 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
450 M:      Michael Hennerich <michael.hennerich@analog.com>
451 W:      http://wiki.analog.com/ADP5588
452 W:      http://ez.analog.com/community/linux-device-drivers
453 S:      Supported
454 F:      drivers/input/keyboard/adp5588-keys.c
455 F:      drivers/gpio/gpio-adp5588.c
456
457 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
458 M:      Michael Hennerich <michael.hennerich@analog.com>
459 W:      http://wiki.analog.com/ADP8860
460 W:      http://ez.analog.com/community/linux-device-drivers
461 S:      Supported
462 F:      drivers/video/backlight/adp8860_bl.c
463
464 ADS1015 HARDWARE MONITOR DRIVER
465 M:      Dirk Eibach <eibach@gdsys.de>
466 L:      linux-hwmon@vger.kernel.org
467 S:      Maintained
468 F:      Documentation/hwmon/ads1015
469 F:      drivers/hwmon/ads1015.c
470 F:      include/linux/i2c/ads1015.h
471
472 ADT746X FAN DRIVER
473 M:      Colin Leroy <colin@colino.net>
474 S:      Maintained
475 F:      drivers/macintosh/therm_adt746x.c
476
477 ADT7475 HARDWARE MONITOR DRIVER
478 M:      Jean Delvare <jdelvare@suse.com>
479 L:      linux-hwmon@vger.kernel.org
480 S:      Maintained
481 F:      Documentation/hwmon/adt7475
482 F:      drivers/hwmon/adt7475.c
483
484 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
485 M:      Michael Hennerich <michael.hennerich@analog.com>
486 W:      http://wiki.analog.com/ADXL345
487 W:      http://ez.analog.com/community/linux-device-drivers
488 S:      Supported
489 F:      drivers/input/misc/adxl34x.c
490
491 ADVANSYS SCSI DRIVER
492 M:      Matthew Wilcox <matthew@wil.cx>
493 M:      Hannes Reinecke <hare@suse.com>
494 L:      linux-scsi@vger.kernel.org
495 S:      Maintained
496 F:      Documentation/scsi/advansys.txt
497 F:      drivers/scsi/advansys.c
498
499 AEDSP16 DRIVER
500 M:      Riccardo Facchetti <fizban@tin.it>
501 S:      Maintained
502 F:      sound/oss/aedsp16.c
503
504 AF9013 MEDIA DRIVER
505 M:      Antti Palosaari <crope@iki.fi>
506 L:      linux-media@vger.kernel.org
507 W:      https://linuxtv.org
508 W:      http://palosaari.fi/linux/
509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
510 T:      git git://linuxtv.org/anttip/media_tree.git
511 S:      Maintained
512 F:      drivers/media/dvb-frontends/af9013*
513
514 AF9033 MEDIA DRIVER
515 M:      Antti Palosaari <crope@iki.fi>
516 L:      linux-media@vger.kernel.org
517 W:      https://linuxtv.org
518 W:      http://palosaari.fi/linux/
519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
520 T:      git git://linuxtv.org/anttip/media_tree.git
521 S:      Maintained
522 F:      drivers/media/dvb-frontends/af9033*
523
524 AFFS FILE SYSTEM
525 L:      linux-fsdevel@vger.kernel.org
526 S:      Orphan
527 F:      Documentation/filesystems/affs.txt
528 F:      fs/affs/
529
530 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
531 M:      David Howells <dhowells@redhat.com>
532 L:      linux-afs@lists.infradead.org
533 S:      Supported
534 F:      fs/afs/
535 F:      include/net/af_rxrpc.h
536 F:      net/rxrpc/af_rxrpc.c
537
538 AGPGART DRIVER
539 M:      David Airlie <airlied@linux.ie>
540 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
541 S:      Maintained
542 F:      drivers/char/agp/
543 F:      include/linux/agp*
544 F:      include/uapi/linux/agp*
545
546 AHA152X SCSI DRIVER
547 M:      "Juergen E. Fischer" <fischer@norbit.de>
548 L:      linux-scsi@vger.kernel.org
549 S:      Maintained
550 F:      drivers/scsi/aha152x*
551 F:      drivers/scsi/pcmcia/aha152x*
552
553 AIC7XXX / AIC79XX SCSI DRIVER
554 M:      Hannes Reinecke <hare@suse.com>
555 L:      linux-scsi@vger.kernel.org
556 S:      Maintained
557 F:      drivers/scsi/aic7xxx/
558
559 AIMSLAB FM RADIO RECEIVER DRIVER
560 M:      Hans Verkuil <hverkuil@xs4all.nl>
561 L:      linux-media@vger.kernel.org
562 T:      git git://linuxtv.org/media_tree.git
563 W:      https://linuxtv.org
564 S:      Maintained
565 F:      drivers/media/radio/radio-aimslab*
566
567 AIO
568 M:      Benjamin LaHaise <bcrl@kvack.org>
569 L:      linux-aio@kvack.org
570 S:      Supported
571 F:      fs/aio.c
572 F:      include/linux/*aio*.h
573
574 AIRSPY MEDIA DRIVER
575 M:      Antti Palosaari <crope@iki.fi>
576 L:      linux-media@vger.kernel.org
577 W:      https://linuxtv.org
578 W:      http://palosaari.fi/linux/
579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
580 T:      git git://linuxtv.org/anttip/media_tree.git
581 S:      Maintained
582 F:      drivers/media/usb/airspy/
583
584 ALACRITECH GIGABIT ETHERNET DRIVER
585 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
586 S:      Maintained
587 F:      drivers/net/ethernet/alacritech/*
588
589 ALCATEL SPEEDTOUCH USB DRIVER
590 M:      Duncan Sands <duncan.sands@free.fr>
591 L:      linux-usb@vger.kernel.org
592 W:      http://www.linux-usb.org/SpeedTouch/
593 S:      Maintained
594 F:      drivers/usb/atm/speedtch.c
595 F:      drivers/usb/atm/usbatm.c
596
597 ALCHEMY AU1XX0 MMC DRIVER
598 M:      Manuel Lauss <manuel.lauss@gmail.com>
599 S:      Maintained
600 F:      drivers/mmc/host/au1xmmc.c
601
602 ALI1563 I2C DRIVER
603 M:      Rudolf Marek <r.marek@assembler.cz>
604 L:      linux-i2c@vger.kernel.org
605 S:      Maintained
606 F:      Documentation/i2c/busses/i2c-ali1563
607 F:      drivers/i2c/busses/i2c-ali1563.c
608
609 ALLWINNER SECURITY SYSTEM
610 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
611 L:      linux-crypto@vger.kernel.org
612 S:      Maintained
613 F:      drivers/crypto/sunxi-ss/
614
615 ALPHA PORT
616 M:      Richard Henderson <rth@twiddle.net>
617 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
618 M:      Matt Turner <mattst88@gmail.com>
619 S:      Odd Fixes
620 L:      linux-alpha@vger.kernel.org
621 F:      arch/alpha/
622
623 ALPS PS/2 TOUCHPAD DRIVER
624 R:      Pali Rohár <pali.rohar@gmail.com>
625 F:      drivers/input/mouse/alps.*
626
627 ALTERA MAILBOX DRIVER
628 M:      Ley Foon Tan <lftan@altera.com>
629 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
630 S:      Maintained
631 F:      drivers/mailbox/mailbox-altera.c
632
633 ALTERA PIO DRIVER
634 M:      Tien Hock Loh <thloh@altera.com>
635 L:      linux-gpio@vger.kernel.org
636 S:      Maintained
637 F:      drivers/gpio/gpio-altera.c
638
639 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
640 M:      Thor Thayer <tthayer@opensource.altera.com>
641 S:      Maintained
642 F:      drivers/gpio/gpio-altera-a10sr.c
643 F:      drivers/mfd/altera-a10sr.c
644 F:      include/linux/mfd/altera-a10sr.h
645
646 ALTERA TRIPLE SPEED ETHERNET DRIVER
647 M:      Vince Bridgers <vbridger@opensource.altera.com>
648 L:      netdev@vger.kernel.org
649 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
650 S:      Maintained
651 F:      drivers/net/ethernet/altera/
652
653 ALTERA UART/JTAG UART SERIAL DRIVERS
654 M:      Tobias Klauser <tklauser@distanz.ch>
655 L:      linux-serial@vger.kernel.org
656 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
657 S:      Maintained
658 F:      drivers/tty/serial/altera_uart.c
659 F:      drivers/tty/serial/altera_jtaguart.c
660 F:      include/linux/altera_uart.h
661 F:      include/linux/altera_jtaguart.h
662
663 AMAZON ETHERNET DRIVERS
664 M:      Netanel Belgazal <netanel@annapurnalabs.com>
665 R:      Saeed Bishara <saeed@annapurnalabs.com>
666 R:      Zorik Machulsky <zorik@annapurnalabs.com>
667 L:      netdev@vger.kernel.org
668 S:      Supported
669 F:      Documentation/networking/ena.txt
670 F:      drivers/net/ethernet/amazon/
671
672 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
673 M:      Tom Lendacky <thomas.lendacky@amd.com>
674 M:      Gary Hook <gary.hook@amd.com>
675 L:      linux-crypto@vger.kernel.org
676 S:      Supported
677 F:      drivers/crypto/ccp/
678 F:      include/linux/ccp.h
679
680 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
681 M:      Huang Rui <ray.huang@amd.com>
682 L:      linux-hwmon@vger.kernel.org
683 S:      Supported
684 F:      Documentation/hwmon/fam15h_power
685 F:      drivers/hwmon/fam15h_power.c
686
687 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
688 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
689 S:      Orphan
690 F:      drivers/usb/gadget/udc/amd5536udc.*
691
692 AMD GEODE PROCESSOR/CHIPSET SUPPORT
693 P:      Andres Salomon <dilinger@queued.net>
694 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
695 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
696 S:      Supported
697 F:      drivers/char/hw_random/geode-rng.c
698 F:      drivers/crypto/geode*
699 F:      drivers/video/fbdev/geode/
700 F:      arch/x86/include/asm/geode.h
701
702 AMD IOMMU (AMD-VI)
703 M:      Joerg Roedel <joro@8bytes.org>
704 L:      iommu@lists.linux-foundation.org
705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
706 S:      Maintained
707 F:      drivers/iommu/amd_iommu*.[ch]
708 F:      include/linux/amd-iommu.h
709
710 AMD KFD
711 M:      Oded Gabbay <oded.gabbay@gmail.com>
712 L:      dri-devel@lists.freedesktop.org
713 T:      git git://people.freedesktop.org/~gabbayo/linux.git
714 S:      Supported
715 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
716 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
717 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
718 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
719 F:      drivers/gpu/drm/amd/amdkfd/
720 F:      drivers/gpu/drm/amd/include/cik_structs.h
721 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
722 F:      drivers/gpu/drm/amd/include/vi_structs.h
723 F:      drivers/gpu/drm/radeon/radeon_kfd.c
724 F:      drivers/gpu/drm/radeon/radeon_kfd.h
725 F:      include/uapi/linux/kfd_ioctl.h
726
727 AMD SEATTLE DEVICE TREE SUPPORT
728 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
729 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
730 M:      Tom Lendacky <thomas.lendacky@amd.com>
731 S:      Supported
732 F:      arch/arm64/boot/dts/amd/
733
734 AMD XGBE DRIVER
735 M:      Tom Lendacky <thomas.lendacky@amd.com>
736 L:      netdev@vger.kernel.org
737 S:      Supported
738 F:      drivers/net/ethernet/amd/xgbe/
739 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
740
741 AMS (Apple Motion Sensor) DRIVER
742 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
743 S:      Supported
744 F:      drivers/macintosh/ams/
745
746 ANALOG DEVICES INC AD9389B DRIVER
747 M:      Hans Verkuil <hans.verkuil@cisco.com>
748 L:      linux-media@vger.kernel.org
749 S:      Maintained
750 F:      drivers/media/i2c/ad9389b*
751
752 ANALOG DEVICES INC ADV7180 DRIVER
753 M:      Lars-Peter Clausen <lars@metafoo.de>
754 L:      linux-media@vger.kernel.org
755 W:      http://ez.analog.com/community/linux-device-drivers
756 S:      Supported
757 F:      drivers/media/i2c/adv7180.c
758
759 ANALOG DEVICES INC ADV7511 DRIVER
760 M:      Hans Verkuil <hans.verkuil@cisco.com>
761 L:      linux-media@vger.kernel.org
762 S:      Maintained
763 F:      drivers/media/i2c/adv7511*
764
765 ANALOG DEVICES INC ADV7604 DRIVER
766 M:      Hans Verkuil <hans.verkuil@cisco.com>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 F:      drivers/media/i2c/adv7604*
770
771 ANALOG DEVICES INC ADV7842 DRIVER
772 M:      Hans Verkuil <hans.verkuil@cisco.com>
773 L:      linux-media@vger.kernel.org
774 S:      Maintained
775 F:      drivers/media/i2c/adv7842*
776
777 ANALOG DEVICES INC ASOC CODEC DRIVERS
778 M:      Lars-Peter Clausen <lars@metafoo.de>
779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
780 W:      http://wiki.analog.com/
781 W:      http://ez.analog.com/community/linux-device-drivers
782 S:      Supported
783 F:      sound/soc/codecs/adau*
784 F:      sound/soc/codecs/adav*
785 F:      sound/soc/codecs/ad1*
786 F:      sound/soc/codecs/ad7*
787 F:      sound/soc/codecs/ssm*
788 F:      sound/soc/codecs/sigmadsp.*
789
790 ANALOG DEVICES INC ASOC DRIVERS
791 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
792 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
793 W:      http://blackfin.uclinux.org/
794 S:      Supported
795 F:      sound/soc/blackfin/*
796
797 ANALOG DEVICES INC IIO DRIVERS
798 M:      Lars-Peter Clausen <lars@metafoo.de>
799 M:      Michael Hennerich <Michael.Hennerich@analog.com>
800 W:      http://wiki.analog.com/
801 W:      http://ez.analog.com/community/linux-device-drivers
802 S:      Supported
803 F:      drivers/iio/*/ad*
804 X:      drivers/iio/*/adjd*
805 F:      drivers/staging/iio/*/ad*
806 F:      staging/iio/trigger/iio-trig-bfin-timer.c
807
808 ANALOG DEVICES INC DMA DRIVERS
809 M:      Lars-Peter Clausen <lars@metafoo.de>
810 W:      http://ez.analog.com/community/linux-device-drivers
811 S:      Supported
812 F:      drivers/dma/dma-axi-dmac.c
813
814 ANDROID CONFIG FRAGMENTS
815 M:      Rob Herring <robh@kernel.org>
816 S:      Supported
817 F:      kernel/configs/android*
818
819 ANDROID DRIVERS
820 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
821 M:      Arve Hjønnevåg <arve@android.com>
822 M:      Riley Andrews <riandrews@android.com>
823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
824 L:      devel@driverdev.osuosl.org
825 S:      Supported
826 F:      drivers/android/
827 F:      drivers/staging/android/
828
829 ANDROID ION DRIVER
830 M:      Laura Abbott <labbott@redhat.com>
831 M:      Sumit Semwal <sumit.semwal@linaro.org>
832 L:      devel@driverdev.osuosl.org
833 S:      Supported
834 F:      Documentation/devicetree/bindings/staging/ion/
835 F:      drivers/staging/android/ion
836 F:      drivers/staging/android/uapi/ion.h
837 F:      drivers/staging/android/uapi/ion_test.h
838
839 AOA (Apple Onboard Audio) ALSA DRIVER
840 M:      Johannes Berg <johannes@sipsolutions.net>
841 L:      linuxppc-dev@lists.ozlabs.org
842 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
843 S:      Maintained
844 F:      sound/aoa/
845
846 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
847 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
848 L:      linux-iio@vger.kernel.org
849 S:      Maintained
850 F:      drivers/iio/adc/stx104.c
851
852 APM DRIVER
853 M:      Jiri Kosina <jikos@kernel.org>
854 S:      Odd fixes
855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
856 F:      arch/x86/kernel/apm_32.c
857 F:      include/linux/apm_bios.h
858 F:      include/uapi/linux/apm_bios.h
859 F:      drivers/char/apm-emulation.c
860
861 APPLE BCM5974 MULTITOUCH DRIVER
862 M:      Henrik Rydberg <rydberg@bitmath.org>
863 L:      linux-input@vger.kernel.org
864 S:      Odd fixes
865 F:      drivers/input/mouse/bcm5974.c
866
867 APPLE SMC DRIVER
868 M:      Henrik Rydberg <rydberg@bitmath.org>
869 L:      linux-hwmon@vger.kernel.org
870 S:      Odd fixes
871 F:      drivers/hwmon/applesmc.c
872
873 APPLETALK NETWORK LAYER
874 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
875 S:      Maintained
876 F:      drivers/net/appletalk/
877 F:      net/appletalk/
878
879 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
880 M:      Duc Dang <dhdang@apm.com>
881 S:      Supported
882 F:      arch/arm64/boot/dts/apm/
883
884 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
885 M:      Iyappan Subramanian <isubramanian@apm.com>
886 M:      Keyur Chudgar <kchudgar@apm.com>
887 S:      Supported
888 F:      drivers/net/ethernet/apm/xgene/
889 F:      drivers/net/phy/mdio-xgene.c
890 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
891 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
892
893 APPLIED MICRO (APM) X-GENE SOC PMU
894 M:      Tai Nguyen <ttnguyen@apm.com>
895 S:      Supported
896 F:      drivers/perf/xgene_pmu.c
897 F:      Documentation/perf/xgene-pmu.txt
898 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
899
900 APTINA CAMERA SENSOR PLL
901 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
902 L:      linux-media@vger.kernel.org
903 S:      Maintained
904 F:      drivers/media/i2c/aptina-pll.*
905
906 ARC FRAMEBUFFER DRIVER
907 M:      Jaya Kumar <jayalk@intworks.biz>
908 S:      Maintained
909 F:      drivers/video/fbdev/arcfb.c
910 F:      drivers/video/fbdev/core/fb_defio.c
911
912 ARCNET NETWORK LAYER
913 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
914 L:      netdev@vger.kernel.org
915 S:      Maintained
916 F:      drivers/net/arcnet/
917 F:      include/uapi/linux/if_arcnet.h
918
919 ARC PGU DRM DRIVER
920 M:      Alexey Brodkin <abrodkin@synopsys.com>
921 S:      Supported
922 F:      drivers/gpu/drm/arc/
923 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
924
925 ARM ARCHITECTED TIMER DRIVER
926 M:      Mark Rutland <mark.rutland@arm.com>
927 M:      Marc Zyngier <marc.zyngier@arm.com>
928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
929 S:      Maintained
930 F:      arch/arm/include/asm/arch_timer.h
931 F:      arch/arm64/include/asm/arch_timer.h
932 F:      drivers/clocksource/arm_arch_timer.c
933
934 ARM HDLCD DRM DRIVER
935 M:      Liviu Dudau <liviu.dudau@arm.com>
936 S:      Supported
937 F:      drivers/gpu/drm/arm/hdlcd_*
938 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
939
940 ARM MALI-DP DRM DRIVER
941 M:      Liviu Dudau <liviu.dudau@arm.com>
942 M:      Brian Starkey <brian.starkey@arm.com>
943 M:      Mali DP Maintainers <malidp@foss.arm.com>
944 S:      Supported
945 F:      drivers/gpu/drm/arm/
946 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
947
948 ARM MFM AND FLOPPY DRIVERS
949 M:      Ian Molton <spyro@f2s.com>
950 S:      Maintained
951 F:      arch/arm/lib/floppydma.S
952 F:      arch/arm/include/asm/floppy.h
953
954 ARM PMU PROFILING AND DEBUGGING
955 M:      Will Deacon <will.deacon@arm.com>
956 M:      Mark Rutland <mark.rutland@arm.com>
957 S:      Maintained
958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959 F:      arch/arm*/kernel/perf_*
960 F:      arch/arm/oprofile/common.c
961 F:      arch/arm*/kernel/hw_breakpoint.c
962 F:      arch/arm*/include/asm/hw_breakpoint.h
963 F:      arch/arm*/include/asm/perf_event.h
964 F:      drivers/perf/*
965 F:      include/linux/perf/arm_pmu.h
966 F:      Documentation/devicetree/bindings/arm/pmu.txt
967
968 ARM PORT
969 M:      Russell King <linux@armlinux.org.uk>
970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971 W:      http://www.armlinux.org.uk/
972 S:      Maintained
973 F:      arch/arm/
974
975 ARM SUB-ARCHITECTURES
976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
977 S:      Maintained
978 F:      arch/arm/mach-*/
979 F:      arch/arm/plat-*/
980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
981
982 ARM PRIMECELL AACI PL041 DRIVER
983 M:      Russell King <linux@armlinux.org.uk>
984 S:      Maintained
985 F:      sound/arm/aaci.*
986
987 ARM PRIMECELL CLCD PL110 DRIVER
988 M:      Russell King <linux@armlinux.org.uk>
989 S:      Maintained
990 F:      drivers/video/fbdev/amba-clcd.*
991
992 ARM PRIMECELL KMI PL050 DRIVER
993 M:      Russell King <linux@armlinux.org.uk>
994 S:      Maintained
995 F:      drivers/input/serio/ambakmi.*
996 F:      include/linux/amba/kmi.h
997
998 ARM PRIMECELL MMCI PL180/1 DRIVER
999 M:      Russell King <linux@armlinux.org.uk>
1000 S:      Maintained
1001 F:      drivers/mmc/host/mmci.*
1002 F:      include/linux/amba/mmci.h
1003
1004 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1005 M:      Russell King <linux@armlinux.org.uk>
1006 S:      Maintained
1007 F:      drivers/tty/serial/amba-pl01*.c
1008 F:      include/linux/amba/serial.h
1009
1010 ARM PRIMECELL BUS SUPPORT
1011 M:      Russell King <linux@armlinux.org.uk>
1012 S:      Maintained
1013 F:      drivers/amba/
1014 F:      include/linux/amba/bus.h
1015
1016 ARM/ADS SPHERE MACHINE SUPPORT
1017 M:      Lennert Buytenhek <kernel@wantstofly.org>
1018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1019 S:      Maintained
1020
1021 ARM/AFEB9260 MACHINE SUPPORT
1022 M:      Sergey Lapin <slapin@ossfans.org>
1023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1024 S:      Maintained
1025
1026 ARM/AJECO 1ARM MACHINE SUPPORT
1027 M:      Lennert Buytenhek <kernel@wantstofly.org>
1028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1029 S:      Maintained
1030
1031 ARM/Allwinner sunXi SoC support
1032 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
1033 M:      Chen-Yu Tsai <wens@csie.org>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 S:      Maintained
1036 N:      sun[x456789]i
1037 F:      arch/arm/boot/dts/ntc-gr8*
1038
1039 ARM/Allwinner SoC Clock Support
1040 M:      Emilio López <emilio@elopez.com.ar>
1041 S:      Maintained
1042 F:      drivers/clk/sunxi/
1043
1044 ARM/Amlogic Meson SoC support
1045 M:      Carlo Caione <carlo@caione.org>
1046 M:      Kevin Hilman <khilman@baylibre.com>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 L:      linux-amlogic@lists.infradead.org
1049 W:      http://linux-meson.com/
1050 S:      Maintained
1051 F:      arch/arm/mach-meson/
1052 F:      arch/arm/boot/dts/meson*
1053 F:      arch/arm64/boot/dts/amlogic/
1054 F:      drivers/pinctrl/meson/
1055 F:      drivers/mmc/host/meson*
1056 N:      meson
1057
1058 ARM/Annapurna Labs ALPINE ARCHITECTURE
1059 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1060 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1062 S:      Maintained
1063 F:      arch/arm/mach-alpine/
1064 F:      arch/arm/boot/dts/alpine*
1065 F:      arch/arm64/boot/dts/al/
1066 F:      drivers/*/*alpine*
1067
1068 ARM/ARTPEC MACHINE SUPPORT
1069 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1070 M:      Lars Persson <lars.persson@axis.com>
1071 M:      Niklas Cassel <niklas.cassel@axis.com>
1072 S:      Maintained
1073 L:      linux-arm-kernel@axis.com
1074 F:      arch/arm/mach-artpec
1075 F:      arch/arm/boot/dts/artpec6*
1076 F:      drivers/clk/axis
1077
1078 ARM/ASPEED MACHINE SUPPORT
1079 M:      Joel Stanley <joel@jms.id.au>
1080 S:      Maintained
1081 F:      arch/arm/mach-aspeed/
1082 F:      arch/arm/boot/dts/aspeed-*
1083 F:      drivers/*/*aspeed*
1084
1085 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1086 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1087 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1088 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W:      http://www.linux4sam.org
1091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1092 S:      Supported
1093 F:      arch/arm/mach-at91/
1094 F:      include/soc/at91/
1095 F:      arch/arm/boot/dts/at91*.dts
1096 F:      arch/arm/boot/dts/at91*.dtsi
1097 F:      arch/arm/boot/dts/sama*.dts
1098 F:      arch/arm/boot/dts/sama*.dtsi
1099 F:      arch/arm/include/debug/at91.S
1100
1101 ARM/ATMEL AT91 Clock Support
1102 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1103 S:      Maintained
1104 F:      drivers/clk/at91
1105
1106 ARM/CALXEDA HIGHBANK ARCHITECTURE
1107 M:      Rob Herring <robh@kernel.org>
1108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1109 S:      Maintained
1110 F:      arch/arm/mach-highbank/
1111 F:      arch/arm/boot/dts/highbank.dts
1112 F:      arch/arm/boot/dts/ecx-*.dts*
1113
1114 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1115 M:      Krzysztof Halasa <khalasa@piap.pl>
1116 S:      Maintained
1117 F:      arch/arm/mach-cns3xxx/
1118
1119 ARM/CAVIUM THUNDER NETWORK DRIVER
1120 M:      Sunil Goutham <sgoutham@cavium.com>
1121 M:      Robert Richter <rric@kernel.org>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 S:      Supported
1124 F:      drivers/net/ethernet/cavium/thunder/
1125
1126 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1127 M:      Alexander Shiyan <shc_work@mail.ru>
1128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1129 S:      Odd Fixes
1130 N:      clps711x
1131
1132 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1133 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1134 M:      Ryan Mallon <rmallon@gmail.com>
1135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1136 S:      Maintained
1137 F:      arch/arm/mach-ep93xx/
1138 F:      arch/arm/mach-ep93xx/include/mach/
1139
1140 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1141 M:      Lennert Buytenhek <kernel@wantstofly.org>
1142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1143 S:      Maintained
1144
1145 ARM/CLKDEV SUPPORT
1146 M:      Russell King <linux@armlinux.org.uk>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 F:      arch/arm/include/asm/clkdev.h
1150 F:      drivers/clk/clkdev.c
1151
1152 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1153 M:      Mike Rapoport <mike@compulab.co.il>
1154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1155 S:      Maintained
1156
1157 ARM/CONTEC MICRO9 MACHINE SUPPORT
1158 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1159 S:      Maintained
1160 F:      arch/arm/mach-ep93xx/micro9.c
1161
1162 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1163 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1165 S:      Maintained
1166 F:      drivers/hwtracing/coresight/*
1167 F:      Documentation/trace/coresight.txt
1168 F:      Documentation/devicetree/bindings/arm/coresight.txt
1169 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1170 F:      tools/perf/arch/arm/util/pmu.c
1171 F:      tools/perf/arch/arm/util/auxtrace.c
1172 F:      tools/perf/arch/arm/util/cs-etm.c
1173 F:      tools/perf/arch/arm/util/cs-etm.h
1174 F:      tools/perf/util/cs-etm.h
1175
1176 ARM/CORGI MACHINE SUPPORT
1177 M:      Richard Purdie <rpurdie@rpsys.net>
1178 S:      Maintained
1179
1180 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1181 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1183 T:      git git://github.com/ulli-kroll/linux.git
1184 S:      Maintained
1185 F:      arch/arm/mach-gemini/
1186 F:      drivers/rtc/rtc-gemini.c
1187
1188 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1189 M:      Barry Song <baohua@kernel.org>
1190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1192 S:      Maintained
1193 F:      arch/arm/boot/dts/prima2*
1194 F:      arch/arm/mach-prima2/
1195 F:      drivers/clk/sirf/
1196 F:      drivers/clocksource/timer-prima2.c
1197 F:      drivers/clocksource/timer-atlas7.c
1198 N:      [^a-z]sirf
1199
1200 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1201 M:      Baruch Siach <baruch@tkos.co.il>
1202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203 S:      Maintained
1204 F:      arch/arm/boot/dts/cx92755*
1205 N:      digicolor
1206
1207 ARM/EBSA110 MACHINE SUPPORT
1208 M:      Russell King <linux@armlinux.org.uk>
1209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210 W:      http://www.armlinux.org.uk/
1211 S:      Maintained
1212 F:      arch/arm/mach-ebsa110/
1213 F:      drivers/net/ethernet/amd/am79c961a.*
1214
1215 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1216 M:      Uwe Kleine-König <kernel@pengutronix.de>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 N:      efm32
1220
1221 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1222 M:      Daniel Ribeiro <drwyrm@gmail.com>
1223 M:      Stefan Schmidt <stefan@openezx.org>
1224 M:      Harald Welte <laforge@openezx.org>
1225 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1226 W:      http://www.openezx.org/
1227 S:      Maintained
1228 T:      topgit git://git.openezx.org/openezx.git
1229 F:      arch/arm/mach-pxa/ezx.c
1230
1231 ARM/FARADAY FA526 PORT
1232 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235 T:      git git://git.berlios.de/gemini-board
1236 F:      arch/arm/mm/*-fa*
1237
1238 ARM/FOOTBRIDGE ARCHITECTURE
1239 M:      Russell King <linux@armlinux.org.uk>
1240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241 W:      http://www.armlinux.org.uk/
1242 S:      Maintained
1243 F:      arch/arm/include/asm/hardware/dec21285.h
1244 F:      arch/arm/mach-footbridge/
1245
1246 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1247 M:      Shawn Guo <shawnguo@kernel.org>
1248 M:      Sascha Hauer <kernel@pengutronix.de>
1249 R:      Fabio Estevam <fabio.estevam@nxp.com>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 S:      Maintained
1252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1253 F:      arch/arm/mach-imx/
1254 F:      arch/arm/mach-mxs/
1255 F:      arch/arm/boot/dts/imx*
1256 F:      arch/arm/configs/imx*_defconfig
1257 F:      drivers/clk/imx/
1258 F:      include/soc/imx/
1259
1260 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1261 M:      Shawn Guo <shawnguo@kernel.org>
1262 M:      Sascha Hauer <kernel@pengutronix.de>
1263 R:      Stefan Agner <stefan@agner.ch>
1264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265 S:      Maintained
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1267 F:      arch/arm/mach-imx/*vf610*
1268 F:      arch/arm/boot/dts/vf*
1269
1270 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1271 M:      Lennert Buytenhek <kernel@wantstofly.org>
1272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273 S:      Maintained
1274
1275 ARM/GUMSTIX MACHINE SUPPORT
1276 M:      Steve Sakoman <sakoman@gmail.com>
1277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278 S:      Maintained
1279
1280 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1281 M:      Philipp Zabel <philipp.zabel@gmail.com>
1282 M:      Paul Parsons <lost.distance@yahoo.com>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285 F:      arch/arm/mach-pxa/hx4700.c
1286 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1287 F:      sound/soc/pxa/hx4700.c
1288
1289 ARM/HISILICON SOC SUPPORT
1290 M:      Wei Xu <xuwei5@hisilicon.com>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 W:      http://www.hisilicon.com
1293 S:      Supported
1294 T:      git git://github.com/hisilicon/linux-hisi.git
1295 F:      arch/arm/mach-hisi/
1296 F:      arch/arm/boot/dts/hi3*
1297 F:      arch/arm/boot/dts/hip*
1298 F:      arch/arm/boot/dts/hisi*
1299 F:      arch/arm64/boot/dts/hisilicon/
1300
1301 ARM/HP JORNADA 7XX MACHINE SUPPORT
1302 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1303 W:      www.jlime.com
1304 S:      Maintained
1305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1306 F:      arch/arm/mach-sa1100/jornada720.c
1307 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1308
1309 ARM/IGEP MACHINE SUPPORT
1310 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1311 M:      Javier Martinez Canillas <javier@dowhile0.org>
1312 L:      linux-omap@vger.kernel.org
1313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1314 S:      Maintained
1315 F:      arch/arm/boot/dts/omap3-igep*
1316
1317 ARM/INCOME PXA270 SUPPORT
1318 M:      Marek Vasut <marek.vasut@gmail.com>
1319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1320 S:      Maintained
1321 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1322
1323 ARM/INTEL IOP32X ARM ARCHITECTURE
1324 M:      Lennert Buytenhek <kernel@wantstofly.org>
1325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1326 S:      Maintained
1327
1328 ARM/INTEL IOP33X ARM ARCHITECTURE
1329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330 S:      Orphan
1331
1332 ARM/INTEL IOP13XX ARM ARCHITECTURE
1333 M:      Lennert Buytenhek <kernel@wantstofly.org>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 S:      Maintained
1336
1337 ARM/INTEL IQ81342EX MACHINE SUPPORT
1338 M:      Lennert Buytenhek <kernel@wantstofly.org>
1339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 S:      Maintained
1341
1342 ARM/INTEL IXDP2850 MACHINE SUPPORT
1343 M:      Lennert Buytenhek <kernel@wantstofly.org>
1344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1345 S:      Maintained
1346
1347 ARM/INTEL IXP4XX ARM ARCHITECTURE
1348 M:      Imre Kaloz <kaloz@openwrt.org>
1349 M:      Krzysztof Halasa <khalasa@piap.pl>
1350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1351 S:      Maintained
1352 F:      arch/arm/mach-ixp4xx/
1353
1354 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1355 M:      Jonathan Cameron <jic23@cam.ac.uk>
1356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1357 S:      Maintained
1358 F:      arch/arm/mach-pxa/stargate2.c
1359 F:      drivers/pcmcia/pxa2xx_stargate2.c
1360
1361 ARM/INTEL XSC3 (MANZANO) ARM CORE
1362 M:      Lennert Buytenhek <kernel@wantstofly.org>
1363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1364 S:      Maintained
1365
1366 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1367 M:      Lennert Buytenhek <kernel@wantstofly.org>
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 S:      Maintained
1370
1371 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1372 M:      Santosh Shilimkar <ssantosh@kernel.org>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 S:      Maintained
1375 F:      arch/arm/mach-keystone/
1376 F:      arch/arm/boot/dts/keystone-*
1377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1378
1379 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1380 M:      Santosh Shilimkar <ssantosh@kernel.org>
1381 L:      linux-kernel@vger.kernel.org
1382 S:      Maintained
1383 F:      drivers/clk/keystone/
1384
1385 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1386 M:      Santosh Shilimkar <ssantosh@kernel.org>
1387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1388 L:      linux-kernel@vger.kernel.org
1389 S:      Maintained
1390 F:      drivers/clocksource/timer-keystone.c
1391
1392 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1393 M:      Santosh Shilimkar <ssantosh@kernel.org>
1394 L:      linux-kernel@vger.kernel.org
1395 S:      Maintained
1396 F:      drivers/power/reset/keystone-reset.c
1397
1398 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1399 M:      Santosh Shilimkar <ssantosh@kernel.org>
1400 L:      linux-kernel@vger.kernel.org
1401 S:      Maintained
1402 F:      drivers/memory/*emif*
1403
1404 ARM/LG1K ARCHITECTURE
1405 M:      Chanho Min <chanho.min@lge.com>
1406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1407 S:      Maintained
1408 F:      arch/arm64/boot/dts/lg/
1409
1410 ARM/LOGICPD PXA270 MACHINE SUPPORT
1411 M:      Lennert Buytenhek <kernel@wantstofly.org>
1412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1413 S:      Maintained
1414
1415 ARM/LPC18XX ARCHITECTURE
1416 M:      Joachim Eastwood <manabian@gmail.com>
1417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      arch/arm/boot/dts/lpc43*
1420 F:      drivers/clk/nxp/clk-lpc18xx*
1421 F:      drivers/clocksource/time-lpc32xx.c
1422 F:      drivers/i2c/busses/i2c-lpc2k.c
1423 F:      drivers/memory/pl172.c
1424 F:      drivers/mtd/spi-nor/nxp-spifi.c
1425 F:      drivers/rtc/rtc-lpc24xx.c
1426 N:      lpc18xx
1427
1428 ARM/LPC32XX SOC SUPPORT
1429 M:      Vladimir Zapolskiy <vz@mleia.com>
1430 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1433 S:      Maintained
1434 F:      arch/arm/boot/dts/lpc32*
1435 F:      arch/arm/mach-lpc32xx/
1436 F:      drivers/i2c/busses/i2c-pnx.c
1437 F:      drivers/net/ethernet/nxp/lpc_eth.c
1438 F:      drivers/usb/host/ohci-nxp.c
1439 F:      drivers/watchdog/pnx4008_wdt.c
1440 N:      lpc32xx
1441
1442 ARM/MAGICIAN MACHINE SUPPORT
1443 M:      Philipp Zabel <philipp.zabel@gmail.com>
1444 S:      Maintained
1445
1446 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1447 M:      Jason Cooper <jason@lakedaemon.net>
1448 M:      Andrew Lunn <andrew@lunn.ch>
1449 M:      Gregory Clement <gregory.clement@free-electrons.com>
1450 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-mvebu/
1454 F:      drivers/rtc/rtc-armada38x.c
1455 F:      arch/arm/boot/dts/armada*
1456 F:      arch/arm/boot/dts/kirkwood*
1457 F:      arch/arm64/boot/dts/marvell/armada*
1458 F:      drivers/cpufreq/mvebu-cpufreq.c
1459 F:      arch/arm/configs/mvebu_*_defconfig
1460
1461 ARM/Marvell Berlin SoC support
1462 M:      Jisheng Zhang <jszhang@marvell.com>
1463 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 S:      Maintained
1466 F:      arch/arm/mach-berlin/
1467 F:      arch/arm/boot/dts/berlin*
1468 F:      arch/arm64/boot/dts/marvell/berlin*
1469
1470
1471 ARM/Marvell Dove/MV78xx0/Orion SOC support
1472 M:      Jason Cooper <jason@lakedaemon.net>
1473 M:      Andrew Lunn <andrew@lunn.ch>
1474 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1475 M:      Gregory Clement <gregory.clement@free-electrons.com>
1476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1477 S:      Maintained
1478 F:      arch/arm/mach-dove/
1479 F:      arch/arm/mach-mv78xx0/
1480 F:      arch/arm/mach-orion5x/
1481 F:      arch/arm/plat-orion/
1482 F:      arch/arm/boot/dts/dove*
1483 F:      arch/arm/boot/dts/orion5x*
1484
1485
1486 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1487 M:      Alexander Clouter <alex@digriz.org.uk>
1488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 W:      http://www.digriz.org.uk/ts78xx/kernel
1490 S:      Maintained
1491 F:      arch/arm/mach-orion5x/ts78xx-*
1492
1493 ARM/OXNAS platform support
1494 M:      Neil Armstrong <narmstrong@baylibre.com>
1495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1496 L:      linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      arch/arm/mach-oxnas/
1499 F:      arch/arm/boot/dts/oxnas*
1500 F:      arch/arm/boot/dts/wd-mbwe.dts
1501 N:      oxnas
1502
1503 ARM/Mediatek RTC DRIVER
1504 M:      Eddie Huang <eddie.huang@mediatek.com>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1507 S:      Maintained
1508 F:      drivers/rtc/rtc-mt6397.c
1509
1510 ARM/Mediatek SoC support
1511 M:      Matthias Brugger <matthias.bgg@gmail.com>
1512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1513 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1514 S:      Maintained
1515 F:      arch/arm/boot/dts/mt6*
1516 F:      arch/arm/boot/dts/mt8*
1517 F:      arch/arm/mach-mediatek/
1518 N:      mtk
1519 K:      mediatek
1520
1521 ARM/Mediatek USB3 PHY DRIVER
1522 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1525 S:      Maintained
1526 F:      drivers/phy/phy-mt65xx-usb3.c
1527
1528 ARM/MICREL KS8695 ARCHITECTURE
1529 M:      Greg Ungerer <gerg@uclinux.org>
1530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1531 F:      arch/arm/mach-ks8695/
1532 S:      Odd Fixes
1533
1534 ARM/MIOA701 MACHINE SUPPORT
1535 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1537 F:      arch/arm/mach-pxa/mioa701.c
1538 S:      Maintained
1539
1540 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1541 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1542 S:      Maintained
1543
1544 ARM/NOMADIK ARCHITECTURE
1545 M:      Alessandro Rubini <rubini@unipv.it>
1546 M:      Linus Walleij <linus.walleij@linaro.org>
1547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1548 S:      Maintained
1549 F:      arch/arm/mach-nomadik/
1550 F:      drivers/pinctrl/nomadik/
1551 F:      drivers/i2c/busses/i2c-nomadik.c
1552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1553
1554 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1555 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1556 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1557 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1558 S:      Supported
1559
1560 ARM/TOSA MACHINE SUPPORT
1561 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1562 M:      Dirk Opfer <dirk@opfer-online.de>
1563 S:      Maintained
1564
1565 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1566 M:      Marek Vasut <marek.vasut@gmail.com>
1567 L:      linux-arm-kernel@lists.infradead.org
1568 W:      http://hackndev.com
1569 S:      Maintained
1570 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1571 F:      arch/arm/mach-pxa/palmtx.c
1572 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1573 F:      arch/arm/mach-pxa/palmt5.c
1574 F:      arch/arm/mach-pxa/include/mach/palmld.h
1575 F:      arch/arm/mach-pxa/palmld.c
1576 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1577 F:      arch/arm/mach-pxa/palmte2.c
1578 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1579 F:      arch/arm/mach-pxa/palmtc.c
1580
1581 ARM/PALM TREO SUPPORT
1582 M:      Tomas Cech <sleep_walker@suse.com>
1583 L:      linux-arm-kernel@lists.infradead.org
1584 W:      http://hackndev.com
1585 S:      Maintained
1586 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1587 F:      arch/arm/mach-pxa/palmtreo.c
1588
1589 ARM/PALMZ72 SUPPORT
1590 M:      Sergey Lapin <slapin@ossfans.org>
1591 L:      linux-arm-kernel@lists.infradead.org
1592 W:      http://hackndev.com
1593 S:      Maintained
1594 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1595 F:      arch/arm/mach-pxa/palmz72.c
1596
1597 ARM/PLEB SUPPORT
1598 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1599 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1600 S:      Maintained
1601
1602 ARM/PT DIGITAL BOARD PORT
1603 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 W:      http://www.armlinux.org.uk/
1606 S:      Maintained
1607
1608 ARM/QUALCOMM SUPPORT
1609 M:      Andy Gross <andy.gross@linaro.org>
1610 M:      David Brown <david.brown@linaro.org>
1611 L:      linux-arm-msm@vger.kernel.org
1612 L:      linux-soc@vger.kernel.org
1613 S:      Maintained
1614 F:      Documentation/devicetree/bindings/soc/qcom/
1615 F:      arch/arm/boot/dts/qcom-*.dts
1616 F:      arch/arm/boot/dts/qcom-*.dtsi
1617 F:      arch/arm/mach-qcom/
1618 F:      arch/arm64/boot/dts/qcom/*
1619 F:      drivers/i2c/busses/i2c-qup.c
1620 F:      drivers/clk/qcom/
1621 F:      drivers/soc/qcom/
1622 F:      drivers/spi/spi-qup.c
1623 F:      drivers/tty/serial/msm_serial.h
1624 F:      drivers/tty/serial/msm_serial.c
1625 F:      drivers/*/pm8???-*
1626 F:      drivers/mfd/ssbi.c
1627 F:      drivers/firmware/qcom_scm.c
1628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1629
1630 ARM/RADISYS ENP2611 MACHINE SUPPORT
1631 M:      Lennert Buytenhek <kernel@wantstofly.org>
1632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1633 S:      Maintained
1634
1635 ARM/RENESAS ARM64 ARCHITECTURE
1636 M:      Simon Horman <horms@verge.net.au>
1637 M:      Magnus Damm <magnus.damm@gmail.com>
1638 L:      linux-renesas-soc@vger.kernel.org
1639 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1641 S:      Supported
1642 F:      arch/arm64/boot/dts/renesas/
1643 F:      drivers/soc/renesas/
1644 F:      include/linux/soc/renesas/
1645
1646 ARM/RISCPC ARCHITECTURE
1647 M:      Russell King <linux@armlinux.org.uk>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 W:      http://www.armlinux.org.uk/
1650 S:      Maintained
1651 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1652 F:      arch/arm/include/asm/hardware/ioc.h
1653 F:      arch/arm/include/asm/hardware/iomd.h
1654 F:      arch/arm/include/asm/hardware/memc.h
1655 F:      arch/arm/mach-rpc/
1656 F:      drivers/net/ethernet/8390/etherh.c
1657 F:      drivers/net/ethernet/i825xx/ether1*
1658 F:      drivers/net/ethernet/seeq/ether3*
1659 F:      drivers/scsi/arm/
1660
1661 ARM/Rockchip SoC support
1662 M:      Heiko Stuebner <heiko@sntech.de>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 L:      linux-rockchip@lists.infradead.org
1665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1666 S:      Maintained
1667 F:      arch/arm/boot/dts/rk3*
1668 F:      arch/arm/mach-rockchip/
1669 F:      drivers/clk/rockchip/
1670 F:      drivers/i2c/busses/i2c-rk3x.c
1671 F:      drivers/*/*rockchip*
1672 F:      drivers/*/*/*rockchip*
1673 F:      sound/soc/rockchip/
1674 N:      rockchip
1675
1676 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1677 M:      Kukjin Kim <kgene@kernel.org>
1678 M:      Krzysztof Kozlowski <krzk@kernel.org>
1679 R:      Javier Martinez Canillas <javier@osg.samsung.com>
1680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1681 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1682 S:      Maintained
1683 F:      arch/arm/boot/dts/s3c*
1684 F:      arch/arm/boot/dts/s5p*
1685 F:      arch/arm/boot/dts/samsung*
1686 F:      arch/arm/boot/dts/exynos*
1687 F:      arch/arm64/boot/dts/exynos/
1688 F:      arch/arm/plat-samsung/
1689 F:      arch/arm/mach-s3c24*/
1690 F:      arch/arm/mach-s3c64xx/
1691 F:      arch/arm/mach-s5p*/
1692 F:      arch/arm/mach-exynos*/
1693 F:      drivers/*/*s3c24*
1694 F:      drivers/*/*/*s3c24*
1695 F:      drivers/*/*s3c64xx*
1696 F:      drivers/*/*s5pv210*
1697 F:      drivers/memory/samsung/*
1698 F:      drivers/soc/samsung/*
1699 F:      Documentation/arm/Samsung/
1700 F:      Documentation/devicetree/bindings/arm/samsung/
1701 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1702 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1703 N:      exynos
1704
1705 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1706 M:      Kyungmin Park <kyungmin.park@samsung.com>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      arch/arm/mach-s5pv210/
1710
1711 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1712 M:      Kyungmin Park <kyungmin.park@samsung.com>
1713 M:      Kamil Debski <kamil@wypas.org>
1714 M:      Andrzej Hajda <a.hajda@samsung.com>
1715 L:      linux-arm-kernel@lists.infradead.org
1716 L:      linux-media@vger.kernel.org
1717 S:      Maintained
1718 F:      drivers/media/platform/s5p-g2d/
1719
1720 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1721 M:      Kyungmin Park <kyungmin.park@samsung.com>
1722 M:      Kamil Debski <kamil@wypas.org>
1723 M:      Jeongtae Park <jtp.park@samsung.com>
1724 M:      Andrzej Hajda <a.hajda@samsung.com>
1725 L:      linux-arm-kernel@lists.infradead.org
1726 L:      linux-media@vger.kernel.org
1727 S:      Maintained
1728 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1729 F:      drivers/media/platform/s5p-mfc/
1730
1731 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1732 M:      Kyungmin Park <kyungmin.park@samsung.com>
1733 L:      linux-arm-kernel@lists.infradead.org
1734 L:      linux-media@vger.kernel.org
1735 S:      Maintained
1736 F:      drivers/staging/media/platform/s5p-cec/
1737
1738 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1739 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1740 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1741 L:      linux-arm-kernel@lists.infradead.org
1742 L:      linux-media@vger.kernel.org
1743 S:      Maintained
1744 F:      drivers/media/platform/s5p-jpeg/
1745
1746 ARM/SHMOBILE ARM ARCHITECTURE
1747 M:      Simon Horman <horms@verge.net.au>
1748 M:      Magnus Damm <magnus.damm@gmail.com>
1749 L:      linux-renesas-soc@vger.kernel.org
1750 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1752 S:      Supported
1753 F:      arch/arm/boot/dts/emev2*
1754 F:      arch/arm/boot/dts/r7s*
1755 F:      arch/arm/boot/dts/r8a*
1756 F:      arch/arm/boot/dts/sh*
1757 F:      arch/arm/configs/shmobile_defconfig
1758 F:      arch/arm/include/debug/renesas-scif.S
1759 F:      arch/arm/mach-shmobile/
1760 F:      drivers/soc/renesas/
1761 F:      include/linux/soc/renesas/
1762
1763 ARM/SOCFPGA ARCHITECTURE
1764 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1765 S:      Maintained
1766 F:      arch/arm/mach-socfpga/
1767 F:      arch/arm/boot/dts/socfpga*
1768 F:      arch/arm/configs/socfpga_defconfig
1769 F:      arch/arm64/boot/dts/altera/
1770 W:      http://www.rocketboards.org
1771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1772
1773 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1774 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1775 S:      Maintained
1776 F:      drivers/clk/socfpga/
1777
1778 ARM/SOCFPGA EDAC SUPPORT
1779 M:      Thor Thayer <tthayer@opensource.altera.com>
1780 S:      Maintained
1781 F:      drivers/edac/altera_edac.
1782
1783 ARM/STI ARCHITECTURE
1784 M:      Patrice Chotard <patrice.chotard@st.com>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 L:      kernel@stlinux.com
1787 W:      http://www.stlinux.com
1788 S:      Maintained
1789 F:      arch/arm/mach-sti/
1790 F:      arch/arm/boot/dts/sti*
1791 F:      drivers/char/hw_random/st-rng.c
1792 F:      drivers/clocksource/arm_global_timer.c
1793 F:      drivers/clocksource/clksrc_st_lpc.c
1794 F:      drivers/cpufreq/sti-cpufreq.c
1795 F:      drivers/dma/st_fdma*
1796 F:      drivers/i2c/busses/i2c-st.c
1797 F:      drivers/media/rc/st_rc.c
1798 F:      drivers/media/platform/sti/c8sectpfe/
1799 F:      drivers/mmc/host/sdhci-st.c
1800 F:      drivers/phy/phy-miphy28lp.c
1801 F:      drivers/phy/phy-miphy365x.c
1802 F:      drivers/phy/phy-stih407-usb.c
1803 F:      drivers/phy/phy-stih41x-usb.c
1804 F:      drivers/pinctrl/pinctrl-st.c
1805 F:      drivers/remoteproc/st_remoteproc.c
1806 F:      drivers/remoteproc/st_slim_rproc.c
1807 F:      drivers/reset/sti/
1808 F:      drivers/rtc/rtc-st-lpc.c
1809 F:      drivers/tty/serial/st-asc.c
1810 F:      drivers/usb/dwc3/dwc3-st.c
1811 F:      drivers/usb/host/ehci-st.c
1812 F:      drivers/usb/host/ohci-st.c
1813 F:      drivers/watchdog/st_lpc_wdt.c
1814 F:      drivers/ata/ahci_st.c
1815 F:      include/linux/remoteproc/st_slim_rproc.h
1816
1817 ARM/STM32 ARCHITECTURE
1818 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1819 M:      Alexandre Torgue <alexandre.torgue@st.com>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1823 N:      stm32
1824 F:      drivers/clocksource/armv7m_systick.c
1825
1826 ARM/TANGO ARCHITECTURE
1827 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1828 L:      linux-arm-kernel@lists.infradead.org
1829 S:      Maintained
1830 N:      tango
1831
1832 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1833 M:      Lennert Buytenhek <kernel@wantstofly.org>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836
1837 ARM/TETON BGA MACHINE SUPPORT
1838 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1840 S:      Maintained
1841
1842 ARM/THECUS N2100 MACHINE SUPPORT
1843 M:      Lennert Buytenhek <kernel@wantstofly.org>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846
1847 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1848 M:      Wan ZongShun <mcuos.com@gmail.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 W:      http://www.mcuos.com
1851 S:      Maintained
1852 F:      arch/arm/mach-w90x900/
1853 F:      drivers/input/keyboard/w90p910_keypad.c
1854 F:      drivers/input/touchscreen/w90p910_ts.c
1855 F:      drivers/watchdog/nuc900_wdt.c
1856 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1857 F:      drivers/mtd/nand/nuc900_nand.c
1858 F:      drivers/rtc/rtc-nuc900.c
1859 F:      drivers/spi/spi-nuc900.c
1860 F:      drivers/usb/host/ehci-w90x900.c
1861 F:      drivers/video/fbdev/nuc900fb.c
1862
1863 ARM/U300 MACHINE SUPPORT
1864 M:      Linus Walleij <linus.walleij@linaro.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Supported
1867 F:      arch/arm/mach-u300/
1868 F:      drivers/clocksource/timer-u300.c
1869 F:      drivers/i2c/busses/i2c-stu300.c
1870 F:      drivers/rtc/rtc-coh901331.c
1871 F:      drivers/watchdog/coh901327_wdt.c
1872 F:      drivers/dma/coh901318*
1873 F:      drivers/mfd/ab3100*
1874 F:      drivers/rtc/rtc-ab3100.c
1875 F:      drivers/rtc/rtc-coh901331.c
1876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1877
1878 ARM/UNIPHIER ARCHITECTURE
1879 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1882 S:      Maintained
1883 F:      arch/arm/boot/dts/uniphier*
1884 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1885 F:      arch/arm/mach-uniphier/
1886 F:      arch/arm/mm/cache-uniphier.c
1887 F:      arch/arm64/boot/dts/socionext/
1888 F:      drivers/bus/uniphier-system-bus.c
1889 F:      drivers/clk/uniphier/
1890 F:      drivers/i2c/busses/i2c-uniphier*
1891 F:      drivers/pinctrl/uniphier/
1892 F:      drivers/reset/reset-uniphier.c
1893 F:      drivers/tty/serial/8250/8250_uniphier.c
1894 N:      uniphier
1895
1896 ARM/Ux500 ARM ARCHITECTURE
1897 M:      Linus Walleij <linus.walleij@linaro.org>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 S:      Maintained
1900 F:      arch/arm/mach-ux500/
1901 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1902 F:      drivers/dma/ste_dma40*
1903 F:      drivers/hwspinlock/u8500_hsem.c
1904 F:      drivers/mfd/abx500*
1905 F:      drivers/mfd/ab8500*
1906 F:      drivers/mfd/dbx500*
1907 F:      drivers/mfd/db8500*
1908 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1909 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1910 F:      drivers/rtc/rtc-ab8500.c
1911 F:      drivers/rtc/rtc-pl031.c
1912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1913
1914 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1915 M:      Ulf Hansson <ulf.hansson@linaro.org>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 T:      git git://git.linaro.org/people/ulfh/clk.git
1918 S:      Maintained
1919 F:      drivers/clk/ux500/
1920
1921 ARM/VERSATILE EXPRESS PLATFORM
1922 M:      Liviu Dudau <liviu.dudau@arm.com>
1923 M:      Sudeep Holla <sudeep.holla@arm.com>
1924 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 F:      arch/arm/boot/dts/vexpress*
1928 F:      arch/arm64/boot/dts/arm/
1929 F:      arch/arm/mach-vexpress/
1930 F:      */*/vexpress*
1931 F:      */*/*/vexpress*
1932 F:      drivers/clk/versatile/clk-vexpress-osc.c
1933 F:      drivers/clocksource/versatile.c
1934 N:      mps2
1935
1936 ARM/VFP SUPPORT
1937 M:      Russell King <linux@armlinux.org.uk>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 W:      http://www.armlinux.org.uk/
1940 S:      Maintained
1941 F:      arch/arm/vfp/
1942
1943 ARM/VOIPAC PXA270 SUPPORT
1944 M:      Marek Vasut <marek.vasut@gmail.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      arch/arm/mach-pxa/vpac270.c
1948 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1949
1950 ARM/VT8500 ARM ARCHITECTURE
1951 M:      Tony Prisk <linux@prisktech.co.nz>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 F:      arch/arm/mach-vt8500/
1955 F:      drivers/clocksource/vt8500_timer.c
1956 F:      drivers/i2c/busses/i2c-wmt.c
1957 F:      drivers/mmc/host/wmt-sdmmc.c
1958 F:      drivers/pwm/pwm-vt8500.c
1959 F:      drivers/rtc/rtc-vt8500.c
1960 F:      drivers/tty/serial/vt8500_serial.c
1961 F:      drivers/usb/host/ehci-platform.c
1962 F:      drivers/usb/host/uhci-platform.c
1963 F:      drivers/video/fbdev/vt8500lcdfb.*
1964 F:      drivers/video/fbdev/wm8505fb*
1965 F:      drivers/video/fbdev/wmt_ge_rops.*
1966
1967 ARM/ZIPIT Z2 SUPPORT
1968 M:      Marek Vasut <marek.vasut@gmail.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 F:      arch/arm/mach-pxa/z2.c
1972 F:      arch/arm/mach-pxa/include/mach/z2.h
1973
1974 ARM/ZTE ARCHITECTURE
1975 M:      Jun Nie <jun.nie@linaro.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978 F:      arch/arm/mach-zx/
1979 F:      drivers/clk/zte/
1980 F:      Documentation/devicetree/bindings/arm/zte.txt
1981 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1982
1983 ARM/ZYNQ ARCHITECTURE
1984 M:      Michal Simek <michal.simek@xilinx.com>
1985 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1987 W:      http://wiki.xilinx.com
1988 T:      git https://github.com/Xilinx/linux-xlnx.git
1989 S:      Supported
1990 F:      arch/arm/mach-zynq/
1991 F:      drivers/cpuidle/cpuidle-zynq.c
1992 F:      drivers/block/xsysace.c
1993 N:      zynq
1994 N:      xilinx
1995 F:      drivers/clocksource/cadence_ttc_timer.c
1996 F:      drivers/i2c/busses/i2c-cadence.c
1997 F:      drivers/mmc/host/sdhci-of-arasan.c
1998 F:      drivers/edac/synopsys_edac.c
1999
2000 ARM SMMU DRIVERS
2001 M:      Will Deacon <will.deacon@arm.com>
2002 R:      Robin Murphy <robin.murphy@arm.com>
2003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 S:      Maintained
2005 F:      drivers/iommu/arm-smmu.c
2006 F:      drivers/iommu/arm-smmu-v3.c
2007 F:      drivers/iommu/io-pgtable-arm.c
2008 F:      drivers/iommu/io-pgtable-arm-v7s.c
2009
2010 ARM64 PORT (AARCH64 ARCHITECTURE)
2011 M:      Catalin Marinas <catalin.marinas@arm.com>
2012 M:      Will Deacon <will.deacon@arm.com>
2013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2015 S:      Maintained
2016 F:      arch/arm64/
2017 F:      Documentation/arm64/
2018
2019 AS3645A LED FLASH CONTROLLER DRIVER
2020 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2021 L:      linux-media@vger.kernel.org
2022 T:      git git://linuxtv.org/media_tree.git
2023 S:      Maintained
2024 F:      drivers/media/i2c/as3645a.c
2025 F:      include/media/i2c/as3645a.h
2026
2027 ASAHI KASEI AK8974 DRIVER
2028 M:      Linus Walleij <linus.walleij@linaro.org>
2029 L:      linux-iio@vger.kernel.org
2030 W:      http://www.akm.com/
2031 S:      Supported
2032 F:      drivers/iio/magnetometer/ak8974.c
2033
2034 ASC7621 HARDWARE MONITOR DRIVER
2035 M:      George Joseph <george.joseph@fairview5.com>
2036 L:      linux-hwmon@vger.kernel.org
2037 S:      Maintained
2038 F:      Documentation/hwmon/asc7621
2039 F:      drivers/hwmon/asc7621.c
2040
2041 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2042 M:      Corentin Chary <corentin.chary@gmail.com>
2043 L:      acpi4asus-user@lists.sourceforge.net
2044 L:      platform-driver-x86@vger.kernel.org
2045 W:      http://acpi4asus.sf.net
2046 S:      Maintained
2047 F:      drivers/platform/x86/asus*.c
2048 F:      drivers/platform/x86/eeepc*.c
2049
2050 ASUS WIRELESS RADIO CONTROL DRIVER
2051 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2052 L:      platform-driver-x86@vger.kernel.org
2053 S:      Maintained
2054 F:      drivers/platform/x86/asus-wireless.c
2055
2056 ASYMMETRIC KEYS
2057 M:      David Howells <dhowells@redhat.com>
2058 L:      keyrings@vger.kernel.org
2059 S:      Maintained
2060 F:      Documentation/crypto/asymmetric-keys.txt
2061 F:      include/linux/verification.h
2062 F:      include/crypto/public_key.h
2063 F:      include/crypto/pkcs7.h
2064 F:      crypto/asymmetric_keys/
2065
2066 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2067 R:      Dan Williams <dan.j.williams@intel.com>
2068 W:      http://sourceforge.net/projects/xscaleiop
2069 S:      Odd fixes
2070 F:      Documentation/crypto/async-tx-api.txt
2071 F:      crypto/async_tx/
2072 F:      drivers/dma/
2073 F:      include/linux/dmaengine.h
2074 F:      include/linux/async_tx.h
2075
2076 AT24 EEPROM DRIVER
2077 M:      Wolfram Sang <wsa@the-dreams.de>
2078 L:      linux-i2c@vger.kernel.org
2079 S:      Maintained
2080 F:      drivers/misc/eeprom/at24.c
2081 F:      include/linux/platform_data/at24.h
2082
2083 ATA OVER ETHERNET (AOE) DRIVER
2084 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2085 W:      http://www.openaoe.org/
2086 S:      Supported
2087 F:      Documentation/aoe/
2088 F:      drivers/block/aoe/
2089
2090 ATHEROS 71XX/9XXX GPIO DRIVER
2091 M:      Alban Bedel <albeu@free.fr>
2092 W:      https://github.com/AlbanBedel/linux
2093 T:      git git://github.com/AlbanBedel/linux
2094 S:      Maintained
2095 F:      drivers/gpio/gpio-ath79.c
2096 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2097
2098 ATHEROS ATH GENERIC UTILITIES
2099 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2100 L:      linux-wireless@vger.kernel.org
2101 S:      Supported
2102 F:      drivers/net/wireless/ath/*
2103
2104 ATHEROS ATH5K WIRELESS DRIVER
2105 M:      Jiri Slaby <jirislaby@gmail.com>
2106 M:      Nick Kossifidis <mickflemm@gmail.com>
2107 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2108 L:      linux-wireless@vger.kernel.org
2109 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2110 S:      Maintained
2111 F:      drivers/net/wireless/ath/ath5k/
2112
2113 ATHEROS ATH6KL WIRELESS DRIVER
2114 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2115 L:      linux-wireless@vger.kernel.org
2116 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2118 S:      Supported
2119 F:      drivers/net/wireless/ath/ath6kl/
2120
2121 WILOCITY WIL6210 WIRELESS DRIVER
2122 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2123 L:      linux-wireless@vger.kernel.org
2124 L:      wil6210@qca.qualcomm.com
2125 S:      Supported
2126 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2127 F:      drivers/net/wireless/ath/wil6210/
2128 F:      include/uapi/linux/wil6210_uapi.h
2129
2130 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2131 M:      Christian Lamparter <chunkeey@googlemail.com>
2132 L:      linux-wireless@vger.kernel.org
2133 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2134 S:      Maintained
2135 F:      drivers/net/wireless/ath/carl9170/
2136
2137 ATK0110 HWMON DRIVER
2138 M:      Luca Tettamanti <kronos.it@gmail.com>
2139 L:      linux-hwmon@vger.kernel.org
2140 S:      Maintained
2141 F:      drivers/hwmon/asus_atk0110.c
2142
2143 ATI_REMOTE2 DRIVER
2144 M:      Ville Syrjala <syrjala@sci.fi>
2145 S:      Maintained
2146 F:      drivers/input/misc/ati_remote2.c
2147
2148 ATLX ETHERNET DRIVERS
2149 M:      Jay Cliburn <jcliburn@gmail.com>
2150 M:      Chris Snook <chris.snook@gmail.com>
2151 L:      netdev@vger.kernel.org
2152 W:      http://sourceforge.net/projects/atl1
2153 W:      http://atl1.sourceforge.net
2154 S:      Maintained
2155 F:      drivers/net/ethernet/atheros/
2156
2157 ATM
2158 M:      Chas Williams <3chas3@gmail.com>
2159 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2160 L:      netdev@vger.kernel.org
2161 W:      http://linux-atm.sourceforge.net
2162 S:      Maintained
2163 F:      drivers/atm/
2164 F:      include/linux/atm*
2165 F:      include/uapi/linux/atm*
2166
2167 ATMEL AT91 / AT32 MCI DRIVER
2168 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2169 S:      Maintained
2170 F:      drivers/mmc/host/atmel-mci.c
2171
2172 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2173 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2174 S:      Supported
2175 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2176
2177 ATMEL SAMA5D2 ADC DRIVER
2178 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2179 L:      linux-iio@vger.kernel.org
2180 S:      Supported
2181 F:      drivers/iio/adc/at91-sama5d2_adc.c
2182
2183 ATMEL Audio ALSA driver
2184 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2185 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2186 S:      Supported
2187 F:      sound/soc/atmel
2188
2189 ATMEL DMA DRIVER
2190 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Supported
2193 F:      drivers/dma/at_hdmac.c
2194 F:      drivers/dma/at_hdmac_regs.h
2195 F:      include/linux/platform_data/dma-atmel.h
2196
2197 ATMEL XDMA DRIVER
2198 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2199 L:      linux-arm-kernel@lists.infradead.org
2200 L:      dmaengine@vger.kernel.org
2201 S:      Supported
2202 F:      drivers/dma/at_xdmac.c
2203
2204 ATMEL I2C DRIVER
2205 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2206 L:      linux-i2c@vger.kernel.org
2207 S:      Supported
2208 F:      drivers/i2c/busses/i2c-at91.c
2209
2210 ATMEL ISI DRIVER
2211 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2212 L:      linux-media@vger.kernel.org
2213 S:      Supported
2214 F:      drivers/media/platform/soc_camera/atmel-isi.c
2215 F:      include/media/atmel-isi.h
2216
2217 ATMEL LCDFB DRIVER
2218 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2219 L:      linux-fbdev@vger.kernel.org
2220 S:      Maintained
2221 F:      drivers/video/fbdev/atmel_lcdfb.c
2222 F:      include/video/atmel_lcdc.h
2223
2224 ATMEL MACB ETHERNET DRIVER
2225 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2226 S:      Supported
2227 F:      drivers/net/ethernet/cadence/
2228
2229 ATMEL NAND DRIVER
2230 M:      Wenyou Yang <wenyou.yang@atmel.com>
2231 M:      Josh Wu <rainyfeeling@outlook.com>
2232 L:      linux-mtd@lists.infradead.org
2233 S:      Supported
2234 F:      drivers/mtd/nand/atmel_nand*
2235
2236 ATMEL SDMMC DRIVER
2237 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2238 L:      linux-mmc@vger.kernel.org
2239 S:      Supported
2240 F:      drivers/mmc/host/sdhci-of-at91.c
2241
2242 ATMEL SPI DRIVER
2243 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2244 S:      Supported
2245 F:      drivers/spi/spi-atmel.*
2246
2247 ATMEL SSC DRIVER
2248 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 S:      Supported
2251 F:      drivers/misc/atmel-ssc.c
2252 F:      include/linux/atmel-ssc.h
2253
2254 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2255 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2257 S:      Supported
2258 F:      drivers/misc/atmel_tclib.c
2259 F:      drivers/clocksource/tcb_clksrc.c
2260
2261 ATMEL USBA UDC DRIVER
2262 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2264 S:      Supported
2265 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2266
2267 ATMEL WIRELESS DRIVER
2268 M:      Simon Kelley <simon@thekelleys.org.uk>
2269 L:      linux-wireless@vger.kernel.org
2270 W:      http://www.thekelleys.org.uk/atmel
2271 W:      http://atmelwlandriver.sourceforge.net/
2272 S:      Maintained
2273 F:      drivers/net/wireless/atmel/atmel*
2274
2275 ATMEL MAXTOUCH DRIVER
2276 M:      Nick Dyer <nick@shmanahar.org>
2277 T:      git git://github.com/ndyer/linux.git
2278 S:      Maintained
2279 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2280 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2281 F:      include/linux/platform_data/atmel_mxt_ts.h
2282
2283 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2284 M:      Bradley Grove <linuxdrivers@attotech.com>
2285 L:      linux-scsi@vger.kernel.org
2286 W:      http://www.attotech.com
2287 S:      Supported
2288 F:      drivers/scsi/esas2r
2289
2290 ATUSB IEEE 802.15.4 RADIO DRIVER
2291 M:      Stefan Schmidt <stefan@osg.samsung.com>
2292 L:      linux-wpan@vger.kernel.org
2293 S:      Maintained
2294 F:      drivers/net/ieee802154/atusb.c
2295 F:      drivers/net/ieee802154/atusb.h
2296 F:      drivers/net/ieee802154/at86rf230.h
2297
2298 AUDIT SUBSYSTEM
2299 M:      Paul Moore <paul@paul-moore.com>
2300 M:      Eric Paris <eparis@redhat.com>
2301 L:      linux-audit@redhat.com (moderated for non-subscribers)
2302 W:      http://people.redhat.com/sgrubb/audit/
2303 T:      git git://git.infradead.org/users/pcmoore/audit
2304 S:      Maintained
2305 F:      include/linux/audit.h
2306 F:      include/uapi/linux/audit.h
2307 F:      kernel/audit*
2308
2309 AUXILIARY DISPLAY DRIVERS
2310 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2311 W:      http://miguelojeda.es/auxdisplay.htm
2312 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2313 S:      Maintained
2314 F:      drivers/auxdisplay/
2315 F:      include/linux/cfag12864b.h
2316
2317 AVR32 ARCHITECTURE
2318 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2319 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2320 W:      http://www.atmel.com/products/AVR32/
2321 W:      http://mirror.egtvedt.no/avr32linux.org/
2322 W:      http://avrfreaks.net/
2323 S:      Maintained
2324 F:      arch/avr32/
2325
2326 AVR32/AT32AP MACHINE SUPPORT
2327 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2328 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2329 S:      Maintained
2330 F:      arch/avr32/mach-at32ap/
2331
2332 AX.25 NETWORK LAYER
2333 M:      Ralf Baechle <ralf@linux-mips.org>
2334 L:      linux-hams@vger.kernel.org
2335 W:      http://www.linux-ax25.org/
2336 S:      Maintained
2337 F:      include/uapi/linux/ax25.h
2338 F:      include/net/ax25.h
2339 F:      net/ax25/
2340
2341 AZ6007 DVB DRIVER
2342 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2343 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2344 L:      linux-media@vger.kernel.org
2345 W:      https://linuxtv.org
2346 T:      git git://linuxtv.org/media_tree.git
2347 S:      Maintained
2348 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2349
2350 AZTECH FM RADIO RECEIVER DRIVER
2351 M:      Hans Verkuil <hverkuil@xs4all.nl>
2352 L:      linux-media@vger.kernel.org
2353 T:      git git://linuxtv.org/media_tree.git
2354 W:      https://linuxtv.org
2355 S:      Maintained
2356 F:      drivers/media/radio/radio-aztech*
2357
2358 B43 WIRELESS DRIVER
2359 L:      linux-wireless@vger.kernel.org
2360 L:      b43-dev@lists.infradead.org
2361 W:      http://wireless.kernel.org/en/users/Drivers/b43
2362 S:      Odd Fixes
2363 F:      drivers/net/wireless/broadcom/b43/
2364
2365 B43LEGACY WIRELESS DRIVER
2366 M:      Larry Finger <Larry.Finger@lwfinger.net>
2367 L:      linux-wireless@vger.kernel.org
2368 L:      b43-dev@lists.infradead.org
2369 W:      http://wireless.kernel.org/en/users/Drivers/b43
2370 S:      Maintained
2371 F:      drivers/net/wireless/broadcom/b43legacy/
2372
2373 BACKLIGHT CLASS/SUBSYSTEM
2374 M:      Jingoo Han <jingoohan1@gmail.com>
2375 M:      Lee Jones <lee.jones@linaro.org>
2376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2377 S:      Maintained
2378 F:      drivers/video/backlight/
2379 F:      include/linux/backlight.h
2380
2381 BATMAN ADVANCED
2382 M:      Marek Lindner <mareklindner@neomailbox.ch>
2383 M:      Simon Wunderlich <sw@simonwunderlich.de>
2384 M:      Antonio Quartulli <a@unstable.cc>
2385 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2386 W:      https://www.open-mesh.org/
2387 Q:      https://patchwork.open-mesh.org/project/batman/list/
2388 S:      Maintained
2389 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2390 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2391 F:      Documentation/networking/batman-adv.txt
2392 F:      include/uapi/linux/batman_adv.h
2393 F:      net/batman-adv/
2394
2395 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2396 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2397 L:      linux-hams@vger.kernel.org
2398 W:      http://www.baycom.org/~tom/ham/ham.html
2399 S:      Maintained
2400 F:      drivers/net/hamradio/baycom*
2401
2402 BCACHE (BLOCK LAYER CACHE)
2403 M:      Kent Overstreet <kent.overstreet@gmail.com>
2404 L:      linux-bcache@vger.kernel.org
2405 W:      http://bcache.evilpiepirate.org
2406 S:      Orphan
2407 F:      drivers/md/bcache/
2408
2409 BDISP ST MEDIA DRIVER
2410 M:      Fabien Dessenne <fabien.dessenne@st.com>
2411 L:      linux-media@vger.kernel.org
2412 T:      git git://linuxtv.org/media_tree.git
2413 W:      https://linuxtv.org
2414 S:      Supported
2415 F:      drivers/media/platform/sti/bdisp
2416
2417 BEFS FILE SYSTEM
2418 M:      Luis de Bethencourt <luisbg@osg.samsung.com>
2419 M:      Salah Triki <salah.triki@gmail.com>
2420 S:      Maintained
2421 T:      git git://github.com/luisbg/linux-befs.git
2422 F:      Documentation/filesystems/befs.txt
2423 F:      fs/befs/
2424
2425 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2426 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2427 L:      netdev@vger.kernel.org
2428 S:      Maintained
2429 F:      drivers/net/ethernet/ec_bhf.c
2430
2431 BFS FILE SYSTEM
2432 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2433 S:      Maintained
2434 F:      Documentation/filesystems/bfs.txt
2435 F:      fs/bfs/
2436 F:      include/uapi/linux/bfs_fs.h
2437
2438 BLACKFIN ARCHITECTURE
2439 M:      Steven Miao <realmz6@gmail.com>
2440 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2441 T:      git git://git.code.sf.net/p/adi-linux/code
2442 W:      http://blackfin.uclinux.org
2443 S:      Supported
2444 F:      arch/blackfin/
2445
2446 BLACKFIN EMAC DRIVER
2447 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2448 W:      http://blackfin.uclinux.org
2449 S:      Supported
2450 F:      drivers/net/ethernet/adi/
2451
2452 BLACKFIN RTC DRIVER
2453 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2454 W:      http://blackfin.uclinux.org
2455 S:      Supported
2456 F:      drivers/rtc/rtc-bfin.c
2457
2458 BLACKFIN SDH DRIVER
2459 M:      Sonic Zhang <sonic.zhang@analog.com>
2460 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2461 W:      http://blackfin.uclinux.org
2462 S:      Supported
2463 F:      drivers/mmc/host/bfin_sdh.c
2464
2465 BLACKFIN SERIAL DRIVER
2466 M:      Sonic Zhang <sonic.zhang@analog.com>
2467 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2468 W:      http://blackfin.uclinux.org
2469 S:      Supported
2470 F:      drivers/tty/serial/bfin_uart.c
2471
2472 BLACKFIN WATCHDOG DRIVER
2473 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2474 W:      http://blackfin.uclinux.org
2475 S:      Supported
2476 F:      drivers/watchdog/bfin_wdt.c
2477
2478 BLACKFIN I2C TWI DRIVER
2479 M:      Sonic Zhang <sonic.zhang@analog.com>
2480 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2481 W:      http://blackfin.uclinux.org/
2482 S:      Supported
2483 F:      drivers/i2c/busses/i2c-bfin-twi.c
2484
2485 BLACKFIN MEDIA DRIVER
2486 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2487 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2488 W:      http://blackfin.uclinux.org/
2489 S:      Supported
2490 F:      drivers/media/platform/blackfin/
2491 F:      drivers/media/i2c/adv7183*
2492 F:      drivers/media/i2c/vs6624*
2493
2494 BLINKM RGB LED DRIVER
2495 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2496 S:      Maintained
2497 F:      drivers/leds/leds-blinkm.c
2498
2499 BLOCK LAYER
2500 M:      Jens Axboe <axboe@kernel.dk>
2501 L:      linux-block@vger.kernel.org
2502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2503 S:      Maintained
2504 F:      block/
2505 F:      kernel/trace/blktrace.c
2506 F:      lib/sbitmap.c
2507
2508 BLOCK2MTD DRIVER
2509 M:      Joern Engel <joern@lazybastard.org>
2510 L:      linux-mtd@lists.infradead.org
2511 S:      Maintained
2512 F:      drivers/mtd/devices/block2mtd.c
2513
2514 BLUETOOTH DRIVERS
2515 M:      Marcel Holtmann <marcel@holtmann.org>
2516 M:      Gustavo Padovan <gustavo@padovan.org>
2517 M:      Johan Hedberg <johan.hedberg@gmail.com>
2518 L:      linux-bluetooth@vger.kernel.org
2519 W:      http://www.bluez.org/
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2522 S:      Maintained
2523 F:      drivers/bluetooth/
2524
2525 BLUETOOTH SUBSYSTEM
2526 M:      Marcel Holtmann <marcel@holtmann.org>
2527 M:      Gustavo Padovan <gustavo@padovan.org>
2528 M:      Johan Hedberg <johan.hedberg@gmail.com>
2529 L:      linux-bluetooth@vger.kernel.org
2530 W:      http://www.bluez.org/
2531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2533 S:      Maintained
2534 F:      net/bluetooth/
2535 F:      include/net/bluetooth/
2536
2537 BONDING DRIVER
2538 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2539 M:      Veaceslav Falico <vfalico@gmail.com>
2540 M:      Andy Gospodarek <andy@greyhouse.net>
2541 L:      netdev@vger.kernel.org
2542 W:      http://sourceforge.net/projects/bonding/
2543 S:      Supported
2544 F:      drivers/net/bonding/
2545 F:      include/uapi/linux/if_bonding.h
2546
2547 BPF (Safe dynamic programs and tools)
2548 M:      Alexei Starovoitov <ast@kernel.org>
2549 L:      netdev@vger.kernel.org
2550 L:      linux-kernel@vger.kernel.org
2551 S:      Supported
2552 F:      kernel/bpf/
2553 F:      tools/testing/selftests/bpf/
2554 F:      lib/test_bpf.c
2555
2556 BROADCOM B44 10/100 ETHERNET DRIVER
2557 M:      Michael Chan <michael.chan@broadcom.com>
2558 L:      netdev@vger.kernel.org
2559 S:      Supported
2560 F:      drivers/net/ethernet/broadcom/b44.*
2561
2562 BROADCOM B53 ETHERNET SWITCH DRIVER
2563 M:      Florian Fainelli <f.fainelli@gmail.com>
2564 L:      netdev@vger.kernel.org
2565 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2566 S:      Supported
2567 F:      drivers/net/dsa/b53/*
2568 F:      include/linux/platform_data/b53.h
2569
2570 BROADCOM GENET ETHERNET DRIVER
2571 M:      Florian Fainelli <f.fainelli@gmail.com>
2572 L:      netdev@vger.kernel.org
2573 S:      Supported
2574 F:      drivers/net/ethernet/broadcom/genet/
2575
2576 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2577 M:      Rasesh Mody <rasesh.mody@cavium.com>
2578 M:      Harish Patil <harish.patil@cavium.com>
2579 M:      Dept-GELinuxNICDev@cavium.com
2580 L:      netdev@vger.kernel.org
2581 S:      Supported
2582 F:      drivers/net/ethernet/broadcom/bnx2.*
2583 F:      drivers/net/ethernet/broadcom/bnx2_*
2584
2585 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2586 M:      Yuval Mintz <Yuval.Mintz@cavium.com>
2587 M:      Ariel Elior <ariel.elior@cavium.com>
2588 M:      everest-linux-l2@cavium.com
2589 L:      netdev@vger.kernel.org
2590 S:      Supported
2591 F:      drivers/net/ethernet/broadcom/bnx2x/
2592
2593 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2594 M:      Florian Fainelli <f.fainelli@gmail.com>
2595 M:      Ray Jui <rjui@broadcom.com>
2596 M:      Scott Branden <sbranden@broadcom.com>
2597 M:      bcm-kernel-feedback-list@broadcom.com
2598 T:      git git://github.com/broadcom/mach-bcm
2599 S:      Maintained
2600 N:      bcm281*
2601 N:      bcm113*
2602 N:      bcm216*
2603 N:      kona
2604 F:      arch/arm/mach-bcm/
2605
2606 BROADCOM BCM2835 ARM ARCHITECTURE
2607 M:      Stephen Warren <swarren@wwwdotorg.org>
2608 M:      Lee Jones <lee@kernel.org>
2609 M:      Eric Anholt <eric@anholt.net>
2610 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2613 S:      Maintained
2614 N:      bcm2835
2615
2616 BROADCOM BCM47XX MIPS ARCHITECTURE
2617 M:      Hauke Mehrtens <hauke@hauke-m.de>
2618 M:      Rafał Miłecki <zajec5@gmail.com>
2619 L:      linux-mips@linux-mips.org
2620 S:      Maintained
2621 F:      Documentation/devicetree/bindings/mips/brcm/
2622 F:      arch/mips/bcm47xx/*
2623 F:      arch/mips/include/asm/mach-bcm47xx/*
2624
2625 BROADCOM BCM5301X ARM ARCHITECTURE
2626 M:      Hauke Mehrtens <hauke@hauke-m.de>
2627 M:      Rafał Miłecki <zajec5@gmail.com>
2628 M:      bcm-kernel-feedback-list@broadcom.com
2629 L:      linux-arm-kernel@lists.infradead.org
2630 S:      Maintained
2631 F:      arch/arm/mach-bcm/bcm_5301x.c
2632 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2633 F:      arch/arm/boot/dts/bcm470*
2634
2635 BROADCOM BCM53573 ARM ARCHITECTURE
2636 M:      Rafał Miłecki <rafal@milecki.pl>
2637 L:      linux-arm-kernel@lists.infradead.org
2638 S:      Maintained
2639 F:      arch/arm/boot/dts/bcm53573*
2640 F:      arch/arm/boot/dts/bcm47189*
2641
2642 BROADCOM BCM63XX ARM ARCHITECTURE
2643 M:      Florian Fainelli <f.fainelli@gmail.com>
2644 M:      bcm-kernel-feedback-list@broadcom.com
2645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2646 T:      git git://github.com/broadcom/stblinux.git
2647 S:      Maintained
2648 N:      bcm63xx
2649
2650 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2651 M:      Kevin Cernekee <cernekee@gmail.com>
2652 L:      linux-usb@vger.kernel.org
2653 S:      Maintained
2654 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2655
2656 BROADCOM BCM7XXX ARM ARCHITECTURE
2657 M:      Brian Norris <computersforpeace@gmail.com>
2658 M:      Gregory Fong <gregory.0xf0@gmail.com>
2659 M:      Florian Fainelli <f.fainelli@gmail.com>
2660 M:      bcm-kernel-feedback-list@broadcom.com
2661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2662 T:      git git://github.com/broadcom/stblinux.git
2663 S:      Maintained
2664 F:      arch/arm/mach-bcm/*brcmstb*
2665 F:      arch/arm/boot/dts/bcm7*.dts*
2666 F:      drivers/bus/brcmstb_gisb.c
2667 N:      brcmstb
2668
2669 BROADCOM BMIPS MIPS ARCHITECTURE
2670 M:      Kevin Cernekee <cernekee@gmail.com>
2671 M:      Florian Fainelli <f.fainelli@gmail.com>
2672 L:      linux-mips@linux-mips.org
2673 T:      git git://github.com/broadcom/stblinux.git
2674 S:      Maintained
2675 F:      arch/mips/bmips/*
2676 F:      arch/mips/include/asm/mach-bmips/*
2677 F:      arch/mips/kernel/*bmips*
2678 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2679 F:      drivers/irqchip/irq-bcm63*
2680 F:      drivers/irqchip/irq-bcm7*
2681 F:      drivers/irqchip/irq-brcmstb*
2682 F:      include/linux/bcm963xx_nvram.h
2683 F:      include/linux/bcm963xx_tag.h
2684
2685 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2686 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2687 M:      Prashant Sreedharan <prashant@broadcom.com>
2688 M:      Michael Chan <mchan@broadcom.com>
2689 L:      netdev@vger.kernel.org
2690 S:      Supported
2691 F:      drivers/net/ethernet/broadcom/tg3.*
2692
2693 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2694 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2695 M:      Franky Lin <franky.lin@broadcom.com>
2696 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2697 L:      linux-wireless@vger.kernel.org
2698 L:      brcm80211-dev-list.pdl@broadcom.com
2699 S:      Supported
2700 F:      drivers/net/wireless/broadcom/brcm80211/
2701
2702 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2703 M:      QLogic-Storage-Upstream@qlogic.com
2704 L:      linux-scsi@vger.kernel.org
2705 S:      Supported
2706 F:      drivers/scsi/bnx2fc/
2707
2708 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2709 M:      QLogic-Storage-Upstream@qlogic.com
2710 L:      linux-scsi@vger.kernel.org
2711 S:      Supported
2712 F:      drivers/scsi/bnx2i/
2713
2714 BROADCOM IPROC ARM ARCHITECTURE
2715 M:      Ray Jui <rjui@broadcom.com>
2716 M:      Scott Branden <sbranden@broadcom.com>
2717 M:      Jon Mason <jonmason@broadcom.com>
2718 M:      bcm-kernel-feedback-list@broadcom.com
2719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2720 T:      git git://github.com/broadcom/cygnus-linux.git
2721 S:      Maintained
2722 N:      iproc
2723 N:      cygnus
2724 N:      bcm[-_]nsp
2725 N:      bcm9113*
2726 N:      bcm9583*
2727 N:      bcm9585*
2728 N:      bcm9586*
2729 N:      bcm988312
2730 N:      bcm113*
2731 N:      bcm583*
2732 N:      bcm585*
2733 N:      bcm586*
2734 N:      bcm88312
2735 F:      arch/arm64/boot/dts/broadcom/ns2*
2736 F:      drivers/clk/bcm/clk-ns*
2737 F:      drivers/pinctrl/bcm/pinctrl-ns*
2738
2739 BROADCOM BRCMSTB GPIO DRIVER
2740 M:      Gregory Fong <gregory.0xf0@gmail.com>
2741 L:      bcm-kernel-feedback-list@broadcom.com
2742 S:      Supported
2743 F:      drivers/gpio/gpio-brcmstb.c
2744 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2745
2746 BROADCOM KONA GPIO DRIVER
2747 M:      Ray Jui <rjui@broadcom.com>
2748 L:      bcm-kernel-feedback-list@broadcom.com
2749 S:      Supported
2750 F:      drivers/gpio/gpio-bcm-kona.c
2751 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2752
2753 BROADCOM NVRAM DRIVER
2754 M:      Rafał Miłecki <zajec5@gmail.com>
2755 L:      linux-mips@linux-mips.org
2756 S:      Maintained
2757 F:      drivers/firmware/broadcom/*
2758
2759 BROADCOM STB NAND FLASH DRIVER
2760 M:      Brian Norris <computersforpeace@gmail.com>
2761 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2762 L:      linux-mtd@lists.infradead.org
2763 L:      bcm-kernel-feedback-list@broadcom.com
2764 S:      Maintained
2765 F:      drivers/mtd/nand/brcmnand/
2766
2767 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2768 M:      Rafał Miłecki <zajec5@gmail.com>
2769 L:      linux-wireless@vger.kernel.org
2770 S:      Maintained
2771 F:      drivers/bcma/
2772 F:      include/linux/bcma/
2773
2774 BROADCOM SYSTEMPORT ETHERNET DRIVER
2775 M:      Florian Fainelli <f.fainelli@gmail.com>
2776 L:      netdev@vger.kernel.org
2777 S:      Supported
2778 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2779
2780 BROADCOM VULCAN ARM64 SOC
2781 M:      Jayachandran C. <jchandra@broadcom.com>
2782 M:      bcm-kernel-feedback-list@broadcom.com
2783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2784 S:      Maintained
2785 F:      arch/arm64/boot/dts/broadcom/vulcan*
2786
2787 BROCADE BFA FC SCSI DRIVER
2788 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2789 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2790 L:      linux-scsi@vger.kernel.org
2791 S:      Supported
2792 F:      drivers/scsi/bfa/
2793
2794 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2795 M:      Rasesh Mody <rasesh.mody@cavium.com>
2796 M:      Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2797 M:      Dept-GELinuxNICDev@cavium.com
2798 L:      netdev@vger.kernel.org
2799 S:      Supported
2800 F:      drivers/net/ethernet/brocade/bna/
2801
2802 BSG (block layer generic sg v4 driver)
2803 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2804 L:      linux-scsi@vger.kernel.org
2805 S:      Supported
2806 F:      block/bsg.c
2807 F:      include/linux/bsg.h
2808 F:      include/uapi/linux/bsg.h
2809
2810 BT87X AUDIO DRIVER
2811 M:      Clemens Ladisch <clemens@ladisch.de>
2812 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2813 T:      git git://git.alsa-project.org/alsa-kernel.git
2814 S:      Maintained
2815 F:      Documentation/sound/alsa/Bt87x.txt
2816 F:      sound/pci/bt87x.c
2817
2818 BT8XXGPIO DRIVER
2819 M:      Michael Buesch <m@bues.ch>
2820 W:      http://bu3sch.de/btgpio.php
2821 S:      Maintained
2822 F:      drivers/gpio/gpio-bt8xx.c
2823
2824 BTRFS FILE SYSTEM
2825 M:      Chris Mason <clm@fb.com>
2826 M:      Josef Bacik <jbacik@fb.com>
2827 M:      David Sterba <dsterba@suse.com>
2828 L:      linux-btrfs@vger.kernel.org
2829 W:      http://btrfs.wiki.kernel.org/
2830 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2832 S:      Maintained
2833 F:      Documentation/filesystems/btrfs.txt
2834 F:      fs/btrfs/
2835
2836 BTTV VIDEO4LINUX DRIVER
2837 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2838 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2839 L:      linux-media@vger.kernel.org
2840 W:      https://linuxtv.org
2841 T:      git git://linuxtv.org/media_tree.git
2842 S:      Odd fixes
2843 F:      Documentation/media/v4l-drivers/bttv*
2844 F:      drivers/media/pci/bt8xx/bttv*
2845
2846 BUSLOGIC SCSI DRIVER
2847 M:      Khalid Aziz <khalid@gonehiking.org>
2848 L:      linux-scsi@vger.kernel.org
2849 S:      Maintained
2850 F:      drivers/scsi/BusLogic.*
2851 F:      drivers/scsi/FlashPoint.*
2852
2853 C-MEDIA CMI8788 DRIVER
2854 M:      Clemens Ladisch <clemens@ladisch.de>
2855 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2856 T:      git git://git.alsa-project.org/alsa-kernel.git
2857 S:      Maintained
2858 F:      sound/pci/oxygen/
2859
2860 C6X ARCHITECTURE
2861 M:      Mark Salter <msalter@redhat.com>
2862 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2863 L:      linux-c6x-dev@linux-c6x.org
2864 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2865 S:      Maintained
2866 F:      arch/c6x/
2867
2868 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2869 M:      David Howells <dhowells@redhat.com>
2870 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2871 S:      Supported
2872 F:      Documentation/filesystems/caching/cachefiles.txt
2873 F:      fs/cachefiles/
2874
2875 CADET FM/AM RADIO RECEIVER DRIVER
2876 M:      Hans Verkuil <hverkuil@xs4all.nl>
2877 L:      linux-media@vger.kernel.org
2878 T:      git git://linuxtv.org/media_tree.git
2879 W:      https://linuxtv.org
2880 S:      Maintained
2881 F:      drivers/media/radio/radio-cadet*
2882
2883 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2884 M:      Jonathan Corbet <corbet@lwn.net>
2885 L:      linux-media@vger.kernel.org
2886 T:      git git://linuxtv.org/media_tree.git
2887 S:      Maintained
2888 F:      Documentation/media/v4l-drivers/cafe_ccic*
2889 F:      drivers/media/platform/marvell-ccic/
2890
2891 CAIF NETWORK LAYER
2892 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2893 L:      netdev@vger.kernel.org
2894 S:      Supported
2895 F:      Documentation/networking/caif/
2896 F:      drivers/net/caif/
2897 F:      include/uapi/linux/caif/
2898 F:      include/net/caif/
2899 F:      net/caif/
2900
2901 CALGARY x86-64 IOMMU
2902 M:      Muli Ben-Yehuda <mulix@mulix.org>
2903 M:      Jon Mason <jdmason@kudzu.us>
2904 L:      iommu@lists.linux-foundation.org
2905 S:      Maintained
2906 F:      arch/x86/kernel/pci-calgary_64.c
2907 F:      arch/x86/kernel/tce_64.c
2908 F:      arch/x86/include/asm/calgary.h
2909 F:      arch/x86/include/asm/tce.h
2910
2911 CAN NETWORK LAYER
2912 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2913 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2914 L:      linux-can@vger.kernel.org
2915 W:      https://github.com/linux-can
2916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2918 S:      Maintained
2919 F:      Documentation/networking/can.txt
2920 F:      net/can/
2921 F:      include/linux/can/core.h
2922 F:      include/uapi/linux/can.h
2923 F:      include/uapi/linux/can/bcm.h
2924 F:      include/uapi/linux/can/raw.h
2925 F:      include/uapi/linux/can/gw.h
2926
2927 CAN NETWORK DRIVERS
2928 M:      Wolfgang Grandegger <wg@grandegger.com>
2929 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2930 L:      linux-can@vger.kernel.org
2931 W:      https://github.com/linux-can
2932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2934 S:      Maintained
2935 F:      Documentation/devicetree/bindings/net/can/
2936 F:      drivers/net/can/
2937 F:      include/linux/can/dev.h
2938 F:      include/linux/can/platform/
2939 F:      include/uapi/linux/can/error.h
2940 F:      include/uapi/linux/can/netlink.h
2941
2942 CAPABILITIES
2943 M:      Serge Hallyn <serge@hallyn.com>
2944 L:      linux-security-module@vger.kernel.org
2945 S:      Supported
2946 F:      include/linux/capability.h
2947 F:      include/uapi/linux/capability.h
2948 F:      security/commoncap.c
2949 F:      kernel/capability.c
2950
2951 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2952 M:      Kevin Tsai <ktsai@capellamicro.com>
2953 S:      Maintained
2954 F:      drivers/iio/light/cm*
2955 F:      Documentation/devicetree/bindings/i2c/trivial-admin-guide/devices.rst
2956
2957 CAVIUM I2C DRIVER
2958 M:      Jan Glauber <jglauber@cavium.com>
2959 M:      David Daney <david.daney@cavium.com>
2960 W:      http://www.cavium.com
2961 S:      Supported
2962 F:      drivers/i2c/busses/i2c-octeon*
2963 F:      drivers/i2c/busses/i2c-thunderx*
2964
2965 CAVIUM LIQUIDIO NETWORK DRIVER
2966 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2967 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2968 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2969 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2970 L:     netdev@vger.kernel.org
2971 W:     http://www.cavium.com
2972 S:     Supported
2973 F:     drivers/net/ethernet/cavium/liquidio/
2974
2975 CC2520 IEEE-802.15.4 RADIO DRIVER
2976 M:      Varka Bhadram <varkabhadram@gmail.com>
2977 L:      linux-wpan@vger.kernel.org
2978 S:      Maintained
2979 F:      drivers/net/ieee802154/cc2520.c
2980 F:      include/linux/spi/cc2520.h
2981 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2982
2983 CEC DRIVER
2984 M:      Hans Verkuil <hans.verkuil@cisco.com>
2985 L:      linux-media@vger.kernel.org
2986 T:      git git://linuxtv.org/media_tree.git
2987 W:      http://linuxtv.org
2988 S:      Supported
2989 F:      Documentation/cec.txt
2990 F:      Documentation/media/uapi/cec
2991 F:      drivers/staging/media/cec/
2992 F:      drivers/media/cec-edid.c
2993 F:      drivers/media/rc/keymaps/rc-cec.c
2994 F:      include/media/cec.h
2995 F:      include/media/cec-edid.h
2996 F:      include/linux/cec.h
2997 F:      include/linux/cec-funcs.h
2998
2999 CELL BROADBAND ENGINE ARCHITECTURE
3000 M:      Arnd Bergmann <arnd@arndb.de>
3001 L:      linuxppc-dev@lists.ozlabs.org
3002 W:      http://www.ibm.com/developerworks/power/cell/
3003 S:      Supported
3004 F:      arch/powerpc/include/asm/cell*.h
3005 F:      arch/powerpc/include/asm/spu*.h
3006 F:      arch/powerpc/include/uapi/asm/spu*.h
3007 F:      arch/powerpc/oprofile/*cell*
3008 F:      arch/powerpc/platforms/cell/
3009
3010 CEPH COMMON CODE (LIBCEPH)
3011 M:      Ilya Dryomov <idryomov@gmail.com>
3012 M:      "Yan, Zheng" <zyan@redhat.com>
3013 M:      Sage Weil <sage@redhat.com>
3014 L:      ceph-devel@vger.kernel.org
3015 W:      http://ceph.com/
3016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3017 T:      git git://github.com/ceph/ceph-client.git
3018 S:      Supported
3019 F:      net/ceph/
3020 F:      include/linux/ceph/
3021 F:      include/linux/crush/
3022
3023 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3024 M:      "Yan, Zheng" <zyan@redhat.com>
3025 M:      Sage Weil <sage@redhat.com>
3026 M:      Ilya Dryomov <idryomov@gmail.com>
3027 L:      ceph-devel@vger.kernel.org
3028 W:      http://ceph.com/
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3030 T:      git git://github.com/ceph/ceph-client.git
3031 S:      Supported
3032 F:      Documentation/filesystems/ceph.txt
3033 F:      fs/ceph/
3034
3035 CERTIFICATE HANDLING:
3036 M:      David Howells <dhowells@redhat.com>
3037 M:      David Woodhouse <dwmw2@infradead.org>
3038 L:      keyrings@vger.kernel.org
3039 S:      Maintained
3040 F:      Documentation/module-signing.txt
3041 F:      certs/
3042 F:      scripts/sign-file.c
3043 F:      scripts/extract-cert.c
3044
3045 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3046 L:      linux-usb@vger.kernel.org
3047 S:      Orphan
3048 F:      Documentation/usb/WUSB-Design-overview.txt
3049 F:      Documentation/usb/wusb-cbaf
3050 F:      drivers/usb/host/hwa-hc.c
3051 F:      drivers/usb/host/whci/
3052 F:      drivers/usb/wusbcore/
3053 F:      include/linux/usb/wusb*
3054
3055 CFAG12864B LCD DRIVER
3056 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3057 W:      http://miguelojeda.es/auxdisplay.htm
3058 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3059 S:      Maintained
3060 F:      drivers/auxdisplay/cfag12864b.c
3061 F:      include/linux/cfag12864b.h
3062
3063 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3064 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3065 W:      http://miguelojeda.es/auxdisplay.htm
3066 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3067 S:      Maintained
3068 F:      drivers/auxdisplay/cfag12864bfb.c
3069 F:      include/linux/cfag12864b.h
3070
3071 CFG80211 and NL80211
3072 M:      Johannes Berg <johannes@sipsolutions.net>
3073 L:      linux-wireless@vger.kernel.org
3074 W:      http://wireless.kernel.org/
3075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3077 S:      Maintained
3078 F:      include/uapi/linux/nl80211.h
3079 F:      include/net/cfg80211.h
3080 F:      net/wireless/*
3081 X:      net/wireless/wext*
3082
3083 CHAR and MISC DRIVERS
3084 M:      Arnd Bergmann <arnd@arndb.de>
3085 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3087 S:      Supported
3088 F:      drivers/char/*
3089 F:      drivers/misc/*
3090 F:      include/linux/miscdevice.h
3091
3092 CHECKPATCH
3093 M:      Andy Whitcroft <apw@canonical.com>
3094 M:      Joe Perches <joe@perches.com>
3095 S:      Maintained
3096 F:      scripts/checkpatch.pl
3097
3098 CHINESE DOCUMENTATION
3099 M:      Harry Wei <harryxiyou@gmail.com>
3100 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3101 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3102 S:      Maintained
3103 F:      Documentation/translations/zh_CN/
3104
3105 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3106 M:      Peter Chen <Peter.Chen@nxp.com>
3107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3108 L:      linux-usb@vger.kernel.org
3109 S:      Maintained
3110 F:      drivers/usb/chipidea/
3111
3112 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3113 M:      Hans de Goede <hdegoede@redhat.com>
3114 L:      linux-input@vger.kernel.org
3115 S:      Maintained
3116 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3117 F:      drivers/input/touchscreen/chipone_icn8318.c
3118
3119 CHROME HARDWARE PLATFORM SUPPORT
3120 M:      Olof Johansson <olof@lixom.net>
3121 S:      Maintained
3122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3123 F:      drivers/platform/chrome/
3124
3125 CISCO VIC ETHERNET NIC DRIVER
3126 M:      Christian Benvenuti <benve@cisco.com>
3127 M:      Sujith Sankar <ssujith@cisco.com>
3128 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3129 M:      Neel Patel <neepatel@cisco.com>
3130 S:      Supported
3131 F:      drivers/net/ethernet/cisco/enic/
3132
3133 CISCO VIC LOW LATENCY NIC DRIVER
3134 M:      Christian Benvenuti <benve@cisco.com>
3135 M:      Dave Goodell <dgoodell@cisco.com>
3136 S:      Supported
3137 F:      drivers/infiniband/hw/usnic/
3138
3139 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3140 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3141 L:      netdev@vger.kernel.org
3142 S:      Maintained
3143 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3144
3145 CIRRUS LOGIC AUDIO CODEC DRIVERS
3146 M:      Brian Austin <brian.austin@cirrus.com>
3147 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3148 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3149 S:      Maintained
3150 F:      sound/soc/codecs/cs*
3151
3152 CLEANCACHE API
3153 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3154 L:      linux-kernel@vger.kernel.org
3155 S:      Maintained
3156 F:      mm/cleancache.c
3157 F:      include/linux/cleancache.h
3158
3159 CLK API
3160 M:      Russell King <linux@armlinux.org.uk>
3161 L:      linux-clk@vger.kernel.org
3162 S:      Maintained
3163 F:      include/linux/clk.h
3164
3165 CLOCKSOURCE, CLOCKEVENT DRIVERS
3166 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3167 M:      Thomas Gleixner <tglx@linutronix.de>
3168 L:      linux-kernel@vger.kernel.org
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3170 S:      Supported
3171 F:      drivers/clocksource
3172
3173 CISCO FCOE HBA DRIVER
3174 M:      Hiral Patel <hiralpat@cisco.com>
3175 M:      Suma Ramars <sramars@cisco.com>
3176 M:      Brian Uchino <buchino@cisco.com>
3177 L:      linux-scsi@vger.kernel.org
3178 S:      Supported
3179 F:      drivers/scsi/fnic/
3180
3181 CISCO SCSI HBA DRIVER
3182 M:      Narsimhulu Musini <nmusini@cisco.com>
3183 M:      Sesidhar Baddela <sebaddel@cisco.com>
3184 L:      linux-scsi@vger.kernel.org
3185 S:      Supported
3186 F:      drivers/scsi/snic/
3187
3188 CMPC ACPI DRIVER
3189 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3190 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3191 L:      platform-driver-x86@vger.kernel.org
3192 S:      Supported
3193 F:      drivers/platform/x86/classmate-laptop.c
3194
3195 COBALT MEDIA DRIVER
3196 M:      Hans Verkuil <hans.verkuil@cisco.com>
3197 L:      linux-media@vger.kernel.org
3198 T:      git git://linuxtv.org/media_tree.git
3199 W:      https://linuxtv.org
3200 S:      Supported
3201 F:      drivers/media/pci/cobalt/
3202
3203 COCCINELLE/Semantic Patches (SmPL)
3204 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3205 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3206 M:      Nicolas Palix <nicolas.palix@imag.fr>
3207 M:      Michal Marek <mmarek@suse.com>
3208 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3210 W:      http://coccinelle.lip6.fr/
3211 S:      Supported
3212 F:      Documentation/dev-tools/coccinelle.rst
3213 F:      scripts/coccinelle/
3214 F:      scripts/coccicheck
3215
3216 CODA FILE SYSTEM
3217 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3218 M:      coda@cs.cmu.edu
3219 L:      codalist@coda.cs.cmu.edu
3220 W:      http://www.coda.cs.cmu.edu/
3221 S:      Maintained
3222 F:      Documentation/filesystems/coda.txt
3223 F:      fs/coda/
3224 F:      include/linux/coda*.h
3225 F:      include/uapi/linux/coda*.h
3226
3227 CODA V4L2 MEM2MEM DRIVER
3228 M:      Philipp Zabel <p.zabel@pengutronix.de>
3229 L:      linux-media@vger.kernel.org
3230 S:      Maintained
3231 F:      Documentation/devicetree/bindings/media/coda.txt
3232 F:      drivers/media/platform/coda/
3233
3234 COMMON CLK FRAMEWORK
3235 M:      Michael Turquette <mturquette@baylibre.com>
3236 M:      Stephen Boyd <sboyd@codeaurora.org>
3237 L:      linux-clk@vger.kernel.org
3238 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3240 S:      Maintained
3241 F:      Documentation/devicetree/bindings/clock/
3242 F:      drivers/clk/
3243 X:      drivers/clk/clkdev.c
3244 F:      include/linux/clk-pr*
3245 F:      include/linux/clk/
3246
3247 COMMON INTERNET FILE SYSTEM (CIFS)
3248 M:      Steve French <sfrench@samba.org>
3249 L:      linux-cifs@vger.kernel.org
3250 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3251 W:      http://linux-cifs.samba.org/
3252 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3253 S:      Supported
3254 F:      Documentation/filesystems/cifs/
3255 F:      fs/cifs/
3256
3257 COMPACTPCI HOTPLUG CORE
3258 M:      Scott Murray <scott@spiteful.org>
3259 L:      linux-pci@vger.kernel.org
3260 S:      Maintained
3261 F:      drivers/pci/hotplug/cpci_hotplug*
3262
3263 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3264 M:      Scott Murray <scott@spiteful.org>
3265 L:      linux-pci@vger.kernel.org
3266 S:      Maintained
3267 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3268
3269 COMPACTPCI HOTPLUG GENERIC DRIVER
3270 M:      Scott Murray <scott@spiteful.org>
3271 L:      linux-pci@vger.kernel.org
3272 S:      Maintained
3273 F:      drivers/pci/hotplug/cpcihp_generic.c
3274
3275 COMPAL LAPTOP SUPPORT
3276 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3277 L:      platform-driver-x86@vger.kernel.org
3278 S:      Maintained
3279 F:      drivers/platform/x86/compal-laptop.c
3280
3281 CONEXANT ACCESSRUNNER USB DRIVER
3282 L:      accessrunner-general@lists.sourceforge.net
3283 W:      http://accessrunner.sourceforge.net/
3284 S:      Orphan
3285 F:      drivers/usb/atm/cxacru.c
3286
3287 CONFIGFS
3288 M:      Joel Becker <jlbec@evilplan.org>
3289 M:      Christoph Hellwig <hch@lst.de>
3290 T:      git git://git.infradead.org/users/hch/configfs.git
3291 S:      Supported
3292 F:      fs/configfs/
3293 F:      include/linux/configfs.h
3294
3295 CONNECTOR
3296 M:      Evgeniy Polyakov <zbr@ioremap.net>
3297 L:      netdev@vger.kernel.org
3298 S:      Maintained
3299 F:      drivers/connector/
3300
3301 CONTROL GROUP (CGROUP)
3302 M:      Tejun Heo <tj@kernel.org>
3303 M:      Li Zefan <lizefan@huawei.com>
3304 M:      Johannes Weiner <hannes@cmpxchg.org>
3305 L:      cgroups@vger.kernel.org
3306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3307 S:      Maintained
3308 F:      Documentation/cgroup*
3309 F:      include/linux/cgroup*
3310 F:      kernel/cgroup*
3311
3312 CONTROL GROUP - CPUSET
3313 M:      Li Zefan <lizefan@huawei.com>
3314 L:      cgroups@vger.kernel.org
3315 W:      http://www.bullopensource.org/cpuset/
3316 W:      http://oss.sgi.com/projects/cpusets/
3317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3318 S:      Maintained
3319 F:      Documentation/cgroup-v1/cpusets.txt
3320 F:      include/linux/cpuset.h
3321 F:      kernel/cpuset.c
3322
3323 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3324 M:      Johannes Weiner <hannes@cmpxchg.org>
3325 M:      Michal Hocko <mhocko@kernel.org>
3326 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3327 L:      cgroups@vger.kernel.org
3328 L:      linux-mm@kvack.org
3329 S:      Maintained
3330 F:      mm/memcontrol.c
3331 F:      mm/swap_cgroup.c
3332
3333 CORETEMP HARDWARE MONITORING DRIVER
3334 M:      Fenghua Yu <fenghua.yu@intel.com>
3335 L:      linux-hwmon@vger.kernel.org
3336 S:      Maintained
3337 F:      Documentation/hwmon/coretemp
3338 F:      drivers/hwmon/coretemp.c
3339
3340 COSA/SRP SYNC SERIAL DRIVER
3341 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3342 W:      http://www.fi.muni.cz/~kas/cosa/
3343 S:      Maintained
3344 F:      drivers/net/wan/cosa*
3345
3346 CPMAC ETHERNET DRIVER
3347 M:      Florian Fainelli <f.fainelli@gmail.com>
3348 L:      netdev@vger.kernel.org
3349 S:      Maintained
3350 F:      drivers/net/ethernet/ti/cpmac.c
3351
3352 CPU FREQUENCY DRIVERS
3353 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3354 M:      Viresh Kumar <viresh.kumar@linaro.org>
3355 L:      linux-pm@vger.kernel.org
3356 S:      Maintained
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3358 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3359 F:      Documentation/cpu-freq/
3360 F:      drivers/cpufreq/
3361 F:      include/linux/cpufreq.h
3362
3363 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3364 M:      Viresh Kumar <viresh.kumar@linaro.org>
3365 M:      Sudeep Holla <sudeep.holla@arm.com>
3366 L:      linux-pm@vger.kernel.org
3367 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3368 S:      Maintained
3369 F:      drivers/cpufreq/arm_big_little.h
3370 F:      drivers/cpufreq/arm_big_little.c
3371 F:      drivers/cpufreq/arm_big_little_dt.c
3372
3373 CPUIDLE DRIVER - ARM BIG LITTLE
3374 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3375 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3376 L:      linux-pm@vger.kernel.org
3377 L:      linux-arm-kernel@lists.infradead.org
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3379 S:      Maintained
3380 F:      drivers/cpuidle/cpuidle-big_little.c
3381
3382 CPUIDLE DRIVER - ARM EXYNOS
3383 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3384 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3385 M:      Kukjin Kim <kgene@kernel.org>
3386 L:      linux-pm@vger.kernel.org
3387 L:      linux-samsung-soc@vger.kernel.org
3388 S:      Supported
3389 F:      drivers/cpuidle/cpuidle-exynos.c
3390 F:      arch/arm/mach-exynos/pm.c
3391
3392 CPUIDLE DRIVERS
3393 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3394 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3395 L:      linux-pm@vger.kernel.org
3396 S:      Maintained
3397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3398 F:      drivers/cpuidle/*
3399 F:      include/linux/cpuidle.h
3400
3401 CPUID/MSR DRIVER
3402 M:      "H. Peter Anvin" <hpa@zytor.com>
3403 S:      Maintained
3404 F:      arch/x86/kernel/cpuid.c
3405 F:      arch/x86/kernel/msr.c
3406
3407 CPU POWER MONITORING SUBSYSTEM
3408 M:      Thomas Renninger <trenn@suse.com>
3409 L:      linux-pm@vger.kernel.org
3410 S:      Maintained
3411 F:      tools/power/cpupower/
3412
3413 CRAMFS FILESYSTEM
3414 W:      http://sourceforge.net/projects/cramfs/
3415 S:      Orphan / Obsolete
3416 F:      Documentation/filesystems/cramfs.txt
3417 F:      fs/cramfs/
3418
3419 CRIS PORT
3420 M:      Mikael Starvik <starvik@axis.com>
3421 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3422 L:      linux-cris-kernel@axis.com
3423 W:      http://developer.axis.com
3424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3425 S:      Maintained
3426 F:      arch/cris/
3427 F:      drivers/tty/serial/crisv10.*
3428
3429 CRYPTO API
3430 M:      Herbert Xu <herbert@gondor.apana.org.au>
3431 M:      "David S. Miller" <davem@davemloft.net>
3432 L:      linux-crypto@vger.kernel.org
3433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3435 S:      Maintained
3436 F:      Documentation/crypto/
3437 F:      Documentation/devicetree/bindings/crypto/
3438 F:      Documentation/DocBook/crypto-API.tmpl
3439 F:      arch/*/crypto/
3440 F:      crypto/
3441 F:      drivers/crypto/
3442 F:      include/crypto/
3443
3444 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3445 M:      Neil Horman <nhorman@tuxdriver.com>
3446 L:      linux-crypto@vger.kernel.org
3447 S:      Maintained
3448 F:      crypto/ansi_cprng.c
3449 F:      crypto/rng.c
3450
3451 CS3308 MEDIA DRIVER
3452 M:      Hans Verkuil <hverkuil@xs4all.nl>
3453 L:      linux-media@vger.kernel.org
3454 T:      git git://linuxtv.org/media_tree.git
3455 W:      http://linuxtv.org
3456 S:      Odd Fixes
3457 F:      drivers/media/i2c/cs3308.c
3458 F:      drivers/media/i2c/cs3308.h
3459
3460 CS5535 Audio ALSA driver
3461 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3462 S:      Maintained
3463 F:      sound/pci/cs5535audio/
3464
3465 CW1200 WLAN driver
3466 M:      Solomon Peachy <pizza@shaftnet.org>
3467 S:      Maintained
3468 F:      drivers/net/wireless/st/cw1200/
3469
3470 CX18 VIDEO4LINUX DRIVER
3471 M:      Andy Walls <awalls@md.metrocast.net>
3472 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3473 L:      linux-media@vger.kernel.org
3474 T:      git git://linuxtv.org/media_tree.git
3475 W:      https://linuxtv.org
3476 W:      http://www.ivtvdriver.org/index.php/Cx18
3477 S:      Maintained
3478 F:      Documentation/media/v4l-drivers/cx18*
3479 F:      drivers/media/pci/cx18/
3480 F:      include/uapi/linux/ivtv*
3481
3482 CX2341X MPEG ENCODER HELPER MODULE
3483 M:      Hans Verkuil <hverkuil@xs4all.nl>
3484 L:      linux-media@vger.kernel.org
3485 T:      git git://linuxtv.org/media_tree.git
3486 W:      https://linuxtv.org
3487 S:      Maintained
3488 F:      drivers/media/common/cx2341x*
3489 F:      include/media/cx2341x*
3490
3491 CX24120 MEDIA DRIVER
3492 M:      Jemma Denson <jdenson@gmail.com>
3493 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3494 L:      linux-media@vger.kernel.org
3495 W:      https://linuxtv.org
3496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3497 S:      Maintained
3498 F:      drivers/media/dvb-frontends/cx24120*
3499
3500 CX88 VIDEO4LINUX DRIVER
3501 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3502 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3503 L:      linux-media@vger.kernel.org
3504 W:      https://linuxtv.org
3505 T:      git git://linuxtv.org/media_tree.git
3506 S:      Odd fixes
3507 F:      Documentation/media/v4l-drivers/cx88*
3508 F:      drivers/media/pci/cx88/
3509
3510 CXD2820R MEDIA DRIVER
3511 M:      Antti Palosaari <crope@iki.fi>
3512 L:      linux-media@vger.kernel.org
3513 W:      https://linuxtv.org
3514 W:      http://palosaari.fi/linux/
3515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3516 T:      git git://linuxtv.org/anttip/media_tree.git
3517 S:      Maintained
3518 F:      drivers/media/dvb-frontends/cxd2820r*
3519
3520 CXGB3 ETHERNET DRIVER (CXGB3)
3521 M:      Santosh Raspatur <santosh@chelsio.com>
3522 L:      netdev@vger.kernel.org
3523 W:      http://www.chelsio.com
3524 S:      Supported
3525 F:      drivers/net/ethernet/chelsio/cxgb3/
3526
3527 CXGB3 ISCSI DRIVER (CXGB3I)
3528 M:      Karen Xie <kxie@chelsio.com>
3529 L:      linux-scsi@vger.kernel.org
3530 W:      http://www.chelsio.com
3531 S:      Supported
3532 F:      drivers/scsi/cxgbi/cxgb3i
3533
3534 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3535 M:      Steve Wise <swise@chelsio.com>
3536 L:      linux-rdma@vger.kernel.org
3537 W:      http://www.openfabrics.org
3538 S:      Supported
3539 F:      drivers/infiniband/hw/cxgb3/
3540 F:      include/uapi/rdma/cxgb3-abi.h
3541
3542 CXGB4 ETHERNET DRIVER (CXGB4)
3543 M:      Hariprasad S <hariprasad@chelsio.com>
3544 L:      netdev@vger.kernel.org
3545 W:      http://www.chelsio.com
3546 S:      Supported
3547 F:      drivers/net/ethernet/chelsio/cxgb4/
3548
3549 CXGB4 ISCSI DRIVER (CXGB4I)
3550 M:      Karen Xie <kxie@chelsio.com>
3551 L:      linux-scsi@vger.kernel.org
3552 W:      http://www.chelsio.com
3553 S:      Supported
3554 F:      drivers/scsi/cxgbi/cxgb4i
3555
3556 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3557 M:      Steve Wise <swise@chelsio.com>
3558 L:      linux-rdma@vger.kernel.org
3559 W:      http://www.openfabrics.org
3560 S:      Supported
3561 F:      drivers/infiniband/hw/cxgb4/
3562 F:      include/uapi/rdma/cxgb4-abi.h
3563
3564 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3565 M:      Casey Leedom <leedom@chelsio.com>
3566 L:      netdev@vger.kernel.org
3567 W:      http://www.chelsio.com
3568 S:      Supported
3569 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3570
3571 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3572 M:      Ian Munsie <imunsie@au1.ibm.com>
3573 M:      Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3574 L:      linuxppc-dev@lists.ozlabs.org
3575 S:      Supported
3576 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3577 F:      drivers/misc/cxl/
3578 F:      include/misc/cxl*
3579 F:      include/uapi/misc/cxl.h
3580 F:      Documentation/powerpc/cxl.txt
3581 F:      Documentation/ABI/testing/sysfs-class-cxl
3582
3583 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3584 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3585 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3586 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3587 L:      linux-scsi@vger.kernel.org
3588 S:      Supported
3589 F:      drivers/scsi/cxlflash/
3590 F:      include/uapi/scsi/cxlflash_ioctls.h
3591 F:      Documentation/powerpc/cxlflash.txt
3592
3593 STMMAC ETHERNET DRIVER
3594 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3595 M:      Alexandre Torgue <alexandre.torgue@st.com>
3596 L:      netdev@vger.kernel.org
3597 W:      http://www.stlinux.com
3598 S:      Supported
3599 F:      drivers/net/ethernet/stmicro/stmmac/
3600
3601 CYBERPRO FB DRIVER
3602 M:      Russell King <linux@armlinux.org.uk>
3603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3604 W:      http://www.armlinux.org.uk/
3605 S:      Maintained
3606 F:      drivers/video/fbdev/cyber2000fb.*
3607
3608 CYCLADES ASYNC MUX DRIVER
3609 W:      http://www.cyclades.com/
3610 S:      Orphan
3611 F:      drivers/tty/cyclades.c
3612 F:      include/linux/cyclades.h
3613 F:      include/uapi/linux/cyclades.h
3614
3615 CYCLADES PC300 DRIVER
3616 W:      http://www.cyclades.com/
3617 S:      Orphan
3618 F:      drivers/net/wan/pc300*
3619
3620 CYPRESS_FIRMWARE MEDIA DRIVER
3621 M:      Antti Palosaari <crope@iki.fi>
3622 L:      linux-media@vger.kernel.org
3623 W:      https://linuxtv.org
3624 W:      http://palosaari.fi/linux/
3625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3626 T:      git git://linuxtv.org/anttip/media_tree.git
3627 S:      Maintained
3628 F:      drivers/media/common/cypress_firmware*
3629
3630 CYTTSP TOUCHSCREEN DRIVER
3631 M:      Ferruh Yigit <fery@cypress.com>
3632 L:      linux-input@vger.kernel.org
3633 S:      Supported
3634 F:      drivers/input/touchscreen/cyttsp*
3635 F:      include/linux/input/cyttsp.h
3636
3637 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3638 M:      Joshua Kinard <kumba@gentoo.org>
3639 S:      Maintained
3640 F:      drivers/rtc/rtc-ds1685.c
3641 F:      include/linux/rtc/ds1685.h
3642
3643 DAMA SLAVE for AX.25
3644 M:      Joerg Reuter <jreuter@yaina.de>
3645 W:      http://yaina.de/jreuter/
3646 W:      http://www.qsl.net/dl1bke/
3647 L:      linux-hams@vger.kernel.org
3648 S:      Maintained
3649 F:      net/ax25/af_ax25.c
3650 F:      net/ax25/ax25_dev.c
3651 F:      net/ax25/ax25_ds_*
3652 F:      net/ax25/ax25_in.c
3653 F:      net/ax25/ax25_out.c
3654 F:      net/ax25/ax25_timer.c
3655 F:      net/ax25/sysctl_net_ax25.c
3656
3657 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3658 L:      netdev@vger.kernel.org
3659 S:      Orphan
3660 F:      Documentation/networking/dmfe.txt
3661 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3662
3663 DC390/AM53C974 SCSI driver
3664 M:      Hannes Reinecke <hare@suse.com>
3665 L:      linux-scsi@vger.kernel.org
3666 S:      Maintained
3667 F:      drivers/scsi/am53c974.c
3668
3669 DC395x SCSI driver
3670 M:      Oliver Neukum <oliver@neukum.org>
3671 M:      Ali Akcaagac <aliakc@web.de>
3672 M:      Jamie Lenehan <lenehan@twibble.org>
3673 L:      dc395x@twibble.org
3674 W:      http://twibble.org/dist/dc395x/
3675 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3676 S:      Maintained
3677 F:      Documentation/scsi/dc395x.txt
3678 F:      drivers/scsi/dc395x.*
3679
3680 DCCP PROTOCOL
3681 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3682 L:      dccp@vger.kernel.org
3683 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3684 S:      Maintained
3685 F:      include/linux/dccp.h
3686 F:      include/uapi/linux/dccp.h
3687 F:      include/linux/tfrc.h
3688 F:      net/dccp/
3689
3690 DECnet NETWORK LAYER
3691 W:      http://linux-decnet.sourceforge.net
3692 L:      linux-decnet-user@lists.sourceforge.net
3693 S:      Orphan
3694 F:      Documentation/networking/decnet.txt
3695 F:      net/decnet/
3696
3697 DECSTATION PLATFORM SUPPORT
3698 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3699 L:      linux-mips@linux-mips.org
3700 W:      http://www.linux-mips.org/wiki/DECstation
3701 S:      Maintained
3702 F:      arch/mips/dec/
3703 F:      arch/mips/include/asm/dec/
3704 F:      arch/mips/include/asm/mach-dec/
3705
3706 DEFXX FDDI NETWORK DRIVER
3707 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3708 S:      Maintained
3709 F:      drivers/net/fddi/defxx.*
3710
3711 DELL LAPTOP DRIVER
3712 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3713 M:      Pali Rohár <pali.rohar@gmail.com>
3714 L:      platform-driver-x86@vger.kernel.org
3715 S:      Maintained
3716 F:      drivers/platform/x86/dell-laptop.c
3717
3718 DELL LAPTOP RBTN DRIVER
3719 M:      Pali Rohár <pali.rohar@gmail.com>
3720 S:      Maintained
3721 F:      drivers/platform/x86/dell-rbtn.*
3722
3723 DELL LAPTOP FREEFALL DRIVER
3724 M:      Pali Rohár <pali.rohar@gmail.com>
3725 S:      Maintained
3726 F:      drivers/platform/x86/dell-smo8800.c
3727
3728 DELL LAPTOP SMM DRIVER
3729 M:      Pali Rohár <pali.rohar@gmail.com>
3730 S:      Maintained
3731 F:      drivers/hwmon/dell-smm-hwmon.c
3732 F:      include/uapi/linux/i8k.h
3733
3734 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3735 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3736 S:      Maintained
3737 F:      Documentation/dcdbas.txt
3738 F:      drivers/firmware/dcdbas.*
3739
3740 DELL WMI EXTRAS DRIVER
3741 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3742 M:      Pali Rohár <pali.rohar@gmail.com>
3743 S:      Maintained
3744 F:      drivers/platform/x86/dell-wmi.c
3745
3746 DESIGNWARE USB2 DRD IP DRIVER
3747 M:      John Youn <johnyoun@synopsys.com>
3748 L:      linux-usb@vger.kernel.org
3749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3750 S:      Maintained
3751 F:      drivers/usb/dwc2/
3752
3753 DESIGNWARE USB3 DRD IP DRIVER
3754 M:      Felipe Balbi <balbi@kernel.org>
3755 L:      linux-usb@vger.kernel.org
3756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3757 S:      Maintained
3758 F:      drivers/usb/dwc3/
3759
3760 DEVICE COREDUMP (DEV_COREDUMP)
3761 M:      Johannes Berg <johannes@sipsolutions.net>
3762 L:      linux-kernel@vger.kernel.org
3763 S:      Maintained
3764 F:      drivers/base/devcoredump.c
3765 F:      include/linux/devcoredump.h
3766
3767 DEVICE FREQUENCY (DEVFREQ)
3768 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3769 M:      Kyungmin Park <kyungmin.park@samsung.com>
3770 L:      linux-pm@vger.kernel.org
3771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3772 S:      Maintained
3773 F:      drivers/devfreq/
3774 F:      include/linux/devfreq.h
3775 F:      Documentation/devicetree/bindings/devfreq/
3776
3777 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3778 M:      Chanwoo Choi <cw00.choi@samsung.com>
3779 L:      linux-pm@vger.kernel.org
3780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3781 S:      Supported
3782 F:      drivers/devfreq/event/
3783 F:      drivers/devfreq/devfreq-event.c
3784 F:      include/linux/devfreq-event.h
3785 F:      Documentation/devicetree/bindings/devfreq/event/
3786
3787 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3788 M:      Chanwoo Choi <cw00.choi@samsung.com>
3789 L:      linux-pm@vger.kernel.org
3790 L:      linux-samsung-soc@vger.kernel.org
3791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3792 S:      Maintained
3793 F:      drivers/devfreq/exynos-bus.c
3794 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3795
3796 DEVICE NUMBER REGISTRY
3797 M:      Torben Mathiasen <device@lanana.org>
3798 W:      http://lanana.org/docs/device-list/index.html
3799 S:      Maintained
3800
3801 DEVICE-MAPPER  (LVM)
3802 M:      Alasdair Kergon <agk@redhat.com>
3803 M:      Mike Snitzer <snitzer@redhat.com>
3804 M:      dm-devel@redhat.com
3805 L:      dm-devel@redhat.com
3806 W:      http://sources.redhat.com/dm
3807 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3809 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3810 S:      Maintained
3811 F:      Documentation/device-mapper/
3812 F:      drivers/md/dm*
3813 F:      drivers/md/persistent-data/
3814 F:      include/linux/device-mapper.h
3815 F:      include/linux/dm-*.h
3816 F:      include/uapi/linux/dm-*.h
3817
3818 DEVLINK
3819 M:      Jiri Pirko <jiri@mellanox.com>
3820 L:      netdev@vger.kernel.org
3821 S:      Supported
3822 F:      net/core/devlink.c
3823 F:      include/net/devlink.h
3824 F:      include/uapi/linux/devlink.h
3825
3826 DIALOG SEMICONDUCTOR DRIVERS
3827 M:      Support Opensource <support.opensource@diasemi.com>
3828 W:      http://www.dialog-semiconductor.com/products
3829 S:      Supported
3830 F:      Documentation/hwmon/da90??
3831 F:      Documentation/devicetree/bindings/mfd/da90*.txt
3832 F:      Documentation/devicetree/bindings/regulator/da92*.txt
3833 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3834 F:      drivers/gpio/gpio-da90??.c
3835 F:      drivers/hwmon/da90??-hwmon.c
3836 F:      drivers/iio/adc/da91??-*.c
3837 F:      drivers/input/misc/da90??_onkey.c
3838 F:      drivers/input/touchscreen/da9052_tsi.c
3839 F:      drivers/leds/leds-da90??.c
3840 F:      drivers/mfd/da903x.c
3841 F:      drivers/mfd/da90??-*.c
3842 F:      drivers/mfd/da91??-*.c
3843 F:      drivers/power/supply/da9052-battery.c
3844 F:      drivers/power/supply/da91??-*.c
3845 F:      drivers/regulator/da903x.c
3846 F:      drivers/regulator/da9???-regulator.[ch]
3847 F:      drivers/rtc/rtc-da90??.c
3848 F:      drivers/video/backlight/da90??_bl.c
3849 F:      drivers/watchdog/da90??_wdt.c
3850 F:      include/linux/mfd/da903x.h
3851 F:      include/linux/mfd/da9052/
3852 F:      include/linux/mfd/da9055/
3853 F:      include/linux/mfd/da9062/
3854 F:      include/linux/mfd/da9063/
3855 F:      include/linux/mfd/da9150/
3856 F:      include/linux/regulator/da9211.h
3857 F:      include/sound/da[79]*.h
3858 F:      sound/soc/codecs/da[79]*.[ch]
3859
3860 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
3861 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
3862 L:      linux-gpio@vger.kernel.org
3863 S:      Maintained
3864 F:      drivers/gpio/gpio-gpio-mm.c
3865
3866 DIGI NEO AND CLASSIC PCI PRODUCTS
3867 M:      Lidza Louina <lidza.louina@gmail.com>
3868 M:      Mark Hounschell <markh@compro.net>
3869 L:      driverdev-devel@linuxdriverproject.org
3870 S:      Maintained
3871 F:      drivers/staging/dgnc/
3872
3873 DIOLAN U2C-12 I2C DRIVER
3874 M:      Guenter Roeck <linux@roeck-us.net>
3875 L:      linux-i2c@vger.kernel.org
3876 S:      Maintained
3877 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3878
3879 DIRECT ACCESS (DAX)
3880 M:      Matthew Wilcox <willy@linux.intel.com>
3881 L:      linux-fsdevel@vger.kernel.org
3882 S:      Supported
3883 F:      fs/dax.c
3884
3885 DIRECTORY NOTIFICATION (DNOTIFY)
3886 M:      Eric Paris <eparis@parisplace.org>
3887 S:      Maintained
3888 F:      Documentation/filesystems/dnotify.txt
3889 F:      fs/notify/dnotify/
3890 F:      include/linux/dnotify.h
3891
3892 DISK GEOMETRY AND PARTITION HANDLING
3893 M:      Andries Brouwer <aeb@cwi.nl>
3894 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3895 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3896 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3897 S:      Maintained
3898
3899 DISKQUOTA
3900 M:      Jan Kara <jack@suse.com>
3901 S:      Maintained
3902 F:      Documentation/filesystems/quota.txt
3903 F:      fs/quota/
3904 F:      include/linux/quota*.h
3905 F:      include/uapi/linux/quota*.h
3906
3907 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3908 M:      Bernie Thompson <bernie@plugable.com>
3909 L:      linux-fbdev@vger.kernel.org
3910 S:      Maintained
3911 W:      http://plugable.com/category/projects/udlfb/
3912 F:      drivers/video/fbdev/udlfb.c
3913 F:      include/video/udlfb.h
3914 F:      Documentation/fb/udlfb.txt
3915
3916 DISTRIBUTED LOCK MANAGER (DLM)
3917 M:      Christine Caulfield <ccaulfie@redhat.com>
3918 M:      David Teigland <teigland@redhat.com>
3919 L:      cluster-devel@redhat.com
3920 W:      http://sources.redhat.com/cluster/
3921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3922 S:      Supported
3923 F:      fs/dlm/
3924
3925 DMA BUFFER SHARING FRAMEWORK
3926 M:      Sumit Semwal <sumit.semwal@linaro.org>
3927 S:      Maintained
3928 L:      linux-media@vger.kernel.org
3929 L:      dri-devel@lists.freedesktop.org
3930 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3931 F:      drivers/dma-buf/
3932 F:      include/linux/dma-buf*
3933 F:      include/linux/reservation.h
3934 F:      include/linux/*fence.h
3935 F:      Documentation/dma-buf-sharing.txt
3936 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3937
3938 SYNC FILE FRAMEWORK
3939 M:      Sumit Semwal <sumit.semwal@linaro.org>
3940 R:      Gustavo Padovan <gustavo@padovan.org>
3941 S:      Maintained
3942 L:      linux-media@vger.kernel.org
3943 L:      dri-devel@lists.freedesktop.org
3944 F:      drivers/dma-buf/sync_file.c
3945 F:      include/linux/sync_file.h
3946 F:      Documentation/sync_file.txt
3947 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3948
3949 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3950 M:      Vinod Koul <vinod.koul@intel.com>
3951 L:      dmaengine@vger.kernel.org
3952 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3953 S:      Maintained
3954 F:      drivers/dma/
3955 F:      include/linux/dmaengine.h
3956 F:      Documentation/devicetree/bindings/dma/
3957 F:      Documentation/dmaengine/
3958 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3959
3960 DME1737 HARDWARE MONITOR DRIVER
3961 M:      Juerg Haefliger <juergh@gmail.com>
3962 L:      linux-hwmon@vger.kernel.org
3963 S:      Maintained
3964 F:      Documentation/hwmon/dme1737
3965 F:      drivers/hwmon/dme1737.c
3966
3967 DMI/SMBIOS SUPPORT
3968 M:      Jean Delvare <jdelvare@suse.com>
3969 S:      Maintained
3970 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3971 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3972 F:      drivers/firmware/dmi-id.c
3973 F:      drivers/firmware/dmi_scan.c
3974 F:      include/linux/dmi.h
3975
3976 DOCUMENTATION
3977 M:      Jonathan Corbet <corbet@lwn.net>
3978 L:      linux-doc@vger.kernel.org
3979 S:      Maintained
3980 F:      Documentation/
3981 F:      scripts/docproc.c
3982 F:      scripts/kernel-doc*
3983 X:      Documentation/ABI/
3984 X:      Documentation/devicetree/
3985 X:      Documentation/acpi
3986 X:      Documentation/power
3987 X:      Documentation/spi
3988 X:      Documentation/media
3989 T:      git git://git.lwn.net/linux.git docs-next
3990
3991 DOUBLETALK DRIVER
3992 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3993 L:      blinux-list@redhat.com
3994 S:      Maintained
3995 F:      drivers/char/dtlk.c
3996 F:      include/linux/dtlk.h
3997
3998 DPT_I2O SCSI RAID DRIVER
3999 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4000 L:      linux-scsi@vger.kernel.org
4001 W:      http://www.adaptec.com/
4002 S:      Maintained
4003 F:      drivers/scsi/dpt*
4004 F:      drivers/scsi/dpt/
4005
4006 DRBD DRIVER
4007 M:      Philipp Reisner <philipp.reisner@linbit.com>
4008 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
4009 L:      drbd-dev@lists.linbit.com
4010 W:      http://www.drbd.org
4011 T:      git git://git.linbit.com/linux-drbd.git
4012 T:      git git://git.linbit.com/drbd-8.4.git
4013 S:      Supported
4014 F:      drivers/block/drbd/
4015 F:      lib/lru_cache.c
4016 F:      Documentation/blockdev/drbd/
4017
4018 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
4019 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4021 S:      Supported
4022 F:      Documentation/kobject.txt
4023 F:      drivers/base/
4024 F:      fs/debugfs/
4025 F:      fs/kernfs/
4026 F:      fs/sysfs/
4027 F:      include/linux/debugfs.h
4028 F:      include/linux/kobj*
4029 F:      lib/kobj*
4030
4031 DRM DRIVERS
4032 M:      David Airlie <airlied@linux.ie>
4033 L:      dri-devel@lists.freedesktop.org
4034 T:      git git://people.freedesktop.org/~airlied/linux
4035 B:      https://bugs.freedesktop.org/
4036 C:      irc://chat.freenode.net/dri-devel
4037 S:      Maintained
4038 F:      drivers/gpu/drm/
4039 F:      drivers/gpu/vga/
4040 F:      Documentation/devicetree/bindings/display/
4041 F:      Documentation/devicetree/bindings/gpu/
4042 F:      Documentation/devicetree/bindings/video/
4043 F:      Documentation/gpu/
4044 F:      include/drm/
4045 F:      include/uapi/drm/
4046
4047 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4048 M:      Dave Airlie <airlied@redhat.com>
4049 S:      Odd Fixes
4050 F:      drivers/gpu/drm/ast/
4051
4052 DRM DRIVER FOR BOCHS VIRTUAL GPU
4053 M:      Gerd Hoffmann <kraxel@redhat.com>
4054 S:      Odd Fixes
4055 F:      drivers/gpu/drm/bochs/
4056
4057 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4058 M:      Dave Airlie <airlied@redhat.com>
4059 S:      Odd Fixes
4060 F:      drivers/gpu/drm/cirrus/
4061
4062 RADEON and AMDGPU DRM DRIVERS
4063 M:      Alex Deucher <alexander.deucher@amd.com>
4064 M:      Christian König <christian.koenig@amd.com>
4065 L:      dri-devel@lists.freedesktop.org
4066 T:      git git://people.freedesktop.org/~agd5f/linux
4067 S:      Supported
4068 F:      drivers/gpu/drm/radeon/
4069 F:      include/uapi/drm/radeon_drm.h
4070 F:      drivers/gpu/drm/amd/
4071 F:      include/uapi/drm/amdgpu_drm.h
4072
4073 DRM PANEL DRIVERS
4074 M:      Thierry Reding <thierry.reding@gmail.com>
4075 L:      dri-devel@lists.freedesktop.org
4076 T:      git git://anongit.freedesktop.org/tegra/linux.git
4077 S:      Maintained
4078 F:      drivers/gpu/drm/drm_panel.c
4079 F:      drivers/gpu/drm/panel/
4080 F:      include/drm/drm_panel.h
4081 F:      Documentation/devicetree/bindings/display/panel/
4082
4083 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4084 M:      Daniel Vetter <daniel.vetter@intel.com>
4085 M:      Jani Nikula <jani.nikula@linux.intel.com>
4086 L:      intel-gfx@lists.freedesktop.org
4087 L:      dri-devel@lists.freedesktop.org
4088 W:      https://01.org/linuxgraphics/
4089 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
4090 C:      irc://chat.freenode.net/intel-gfx
4091 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
4092 T:      git git://anongit.freedesktop.org/drm-intel
4093 S:      Supported
4094 F:      drivers/gpu/drm/i915/
4095 F:      include/drm/i915*
4096 F:      include/uapi/drm/i915_drm.h
4097 F:      Documentation/gpu/i915.rst
4098
4099 DRM DRIVERS FOR ATMEL HLCDC
4100 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4101 L:      dri-devel@lists.freedesktop.org
4102 S:      Supported
4103 F:      drivers/gpu/drm/atmel-hlcdc/
4104 F:      Documentation/devicetree/bindings/drm/atmel/
4105
4106 DRM DRIVERS FOR ALLWINNER A10
4107 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
4108 L:      dri-devel@lists.freedesktop.org
4109 S:      Supported
4110 F:      drivers/gpu/drm/sun4i/
4111 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4112
4113 DRM DRIVERS FOR EXYNOS
4114 M:      Inki Dae <inki.dae@samsung.com>
4115 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4116 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4117 M:      Kyungmin Park <kyungmin.park@samsung.com>
4118 L:      dri-devel@lists.freedesktop.org
4119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4120 S:      Supported
4121 F:      drivers/gpu/drm/exynos/
4122 F:      include/uapi/drm/exynos_drm.h
4123 F:      Documentation/devicetree/bindings/display/exynos/
4124
4125 DRM DRIVERS FOR FREESCALE DCU
4126 M:      Stefan Agner <stefan@agner.ch>
4127 M:      Alison Wang <alison.wang@freescale.com>
4128 L:      dri-devel@lists.freedesktop.org
4129 S:      Supported
4130 F:      drivers/gpu/drm/fsl-dcu/
4131 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4132 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4133 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4134
4135 DRM DRIVERS FOR FREESCALE IMX
4136 M:      Philipp Zabel <p.zabel@pengutronix.de>
4137 L:      dri-devel@lists.freedesktop.org
4138 S:      Maintained
4139 F:      drivers/gpu/drm/imx/
4140 F:      drivers/gpu/ipu-v3/
4141 F:      Documentation/devicetree/bindings/display/imx/
4142
4143 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4144 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4145 L:      dri-devel@lists.freedesktop.org
4146 T:      git git://github.com/patjak/drm-gma500
4147 S:      Maintained
4148 F:      drivers/gpu/drm/gma500/
4149
4150 DRM DRIVERS FOR HISILICON
4151 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4152 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4153 R:      Chen Feng <puck.chen@hisilicon.com>
4154 L:      dri-devel@lists.freedesktop.org
4155 T:      git git://github.com/xin3liang/linux.git
4156 S:      Maintained
4157 F:      drivers/gpu/drm/hisilicon/
4158 F:      Documentation/devicetree/bindings/display/hisilicon/
4159
4160 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4161 S:      Orphan / Obsolete
4162 F:      drivers/gpu/drm/i810/
4163 F:      include/uapi/drm/i810_drm.h
4164
4165 DRM DRIVERS FOR MEDIATEK
4166 M:      CK Hu <ck.hu@mediatek.com>
4167 M:      Philipp Zabel <p.zabel@pengutronix.de>
4168 L:      dri-devel@lists.freedesktop.org
4169 S:      Supported
4170 F:      drivers/gpu/drm/mediatek/
4171 F:      Documentation/devicetree/bindings/display/mediatek/
4172
4173 DRM DRIVER FOR MSM ADRENO GPU
4174 M:      Rob Clark <robdclark@gmail.com>
4175 L:      linux-arm-msm@vger.kernel.org
4176 L:      dri-devel@lists.freedesktop.org
4177 L:      freedreno@lists.freedesktop.org
4178 T:      git git://people.freedesktop.org/~robclark/linux
4179 S:      Maintained
4180 F:      drivers/gpu/drm/msm/
4181 F:      include/uapi/drm/msm_drm.h
4182 F:      Documentation/devicetree/bindings/display/msm/
4183
4184 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4185 M:      Ben Skeggs <bskeggs@redhat.com>
4186 L:      dri-devel@lists.freedesktop.org
4187 L:      nouveau@lists.freedesktop.org
4188 T:      git git://github.com/skeggsb/linux
4189 S:      Supported
4190 F:      drivers/gpu/drm/nouveau/
4191 F:      include/uapi/drm/nouveau_drm.h
4192
4193 DRM DRIVERS FOR NVIDIA TEGRA
4194 M:      Thierry Reding <thierry.reding@gmail.com>
4195 L:      dri-devel@lists.freedesktop.org
4196 L:      linux-tegra@vger.kernel.org
4197 T:      git git://anongit.freedesktop.org/tegra/linux.git
4198 S:      Supported
4199 F:      drivers/gpu/drm/tegra/
4200 F:      drivers/gpu/host1x/
4201 F:      include/linux/host1x.h
4202 F:      include/uapi/drm/tegra_drm.h
4203 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4204
4205 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4206 S:      Orphan / Obsolete
4207 F:      drivers/gpu/drm/mga/
4208 F:      include/uapi/drm/mga_drm.h
4209
4210 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4211 M:      Dave Airlie <airlied@redhat.com>
4212 S:      Odd Fixes
4213 F:      drivers/gpu/drm/mgag200/
4214
4215 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4216 S:      Orphan / Obsolete
4217 F:      drivers/gpu/drm/r128/
4218 F:      include/uapi/drm/r128_drm.h
4219
4220 DRM DRIVERS FOR RENESAS
4221 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4222 L:      dri-devel@lists.freedesktop.org
4223 L:      linux-renesas-soc@vger.kernel.org
4224 T:      git git://linuxtv.org/pinchartl/fbdev
4225 S:      Supported
4226 F:      drivers/gpu/drm/rcar-du/
4227 F:      drivers/gpu/drm/shmobile/
4228 F:      include/linux/platform_data/shmob_drm.h
4229 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4230
4231 DRM DRIVER FOR QXL VIRTUAL GPU
4232 M:      Dave Airlie <airlied@redhat.com>
4233 S:      Odd Fixes
4234 F:      drivers/gpu/drm/qxl/
4235 F:      include/uapi/drm/qxl_drm.h
4236
4237 DRM DRIVERS FOR ROCKCHIP
4238 M:      Mark Yao <mark.yao@rock-chips.com>
4239 L:      dri-devel@lists.freedesktop.org
4240 S:      Maintained
4241 F:      drivers/gpu/drm/rockchip/
4242 F:      Documentation/devicetree/bindings/display/rockchip/
4243
4244 DRM DRIVER FOR SAVAGE VIDEO CARDS
4245 S:      Orphan / Obsolete
4246 F:      drivers/gpu/drm/savage/
4247 F:      include/uapi/drm/savage_drm.h
4248
4249 DRM DRIVER FOR SIS VIDEO CARDS
4250 S:      Orphan / Obsolete
4251 F:      drivers/gpu/drm/sis/
4252 F:      include/uapi/drm/sis_drm.h
4253
4254 DRM DRIVERS FOR STI
4255 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4256 M:      Vincent Abriou <vincent.abriou@st.com>
4257 L:      dri-devel@lists.freedesktop.org
4258 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
4259 S:      Maintained
4260 F:      drivers/gpu/drm/sti
4261 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4262
4263 DRM DRIVER FOR TDFX VIDEO CARDS
4264 S:      Orphan / Obsolete
4265 F:      drivers/gpu/drm/tdfx/
4266
4267 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4268 M:      Dave Airlie <airlied@redhat.com>
4269 S:      Odd Fixes
4270 F:      drivers/gpu/drm/udl/
4271
4272 DRM DRIVERS FOR VIVANTE GPU IP
4273 M:      Lucas Stach <l.stach@pengutronix.de>
4274 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4275 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4276 L:      dri-devel@lists.freedesktop.org
4277 S:      Maintained
4278 F:      drivers/gpu/drm/etnaviv/
4279 F:      include/uapi/drm/etnaviv_drm.h
4280 F:      Documentation/devicetree/bindings/display/etnaviv/
4281
4282 DRM DRIVER FOR VMWARE VIRTUAL GPU
4283 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4284 M:      Sinclair Yeh <syeh@vmware.com>
4285 M:      Thomas Hellstrom <thellstrom@vmware.com>
4286 L:      dri-devel@lists.freedesktop.org
4287 T:      git git://people.freedesktop.org/~syeh/repos_linux
4288 T:      git git://people.freedesktop.org/~thomash/linux
4289 S:      Supported
4290 F:      drivers/gpu/drm/vmwgfx/
4291 F:      include/uapi/drm/vmwgfx_drm.h
4292
4293 DRM DRIVERS FOR VC4
4294 M:      Eric Anholt <eric@anholt.net>
4295 T:      git git://github.com/anholt/linux
4296 S:      Supported
4297 F:      drivers/gpu/drm/vc4/
4298 F:      include/uapi/drm/vc4_drm.h
4299 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4300
4301 DRM DRIVERS FOR TI OMAP
4302 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4303 L:      dri-devel@lists.freedesktop.org
4304 S:      Maintained
4305 F:      drivers/gpu/drm/omapdrm/
4306 F:      Documentation/devicetree/bindings/display/ti/
4307
4308 DRM DRIVERS FOR TI LCDC
4309 M:      Jyri Sarha <jsarha@ti.com>
4310 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4311 L:      dri-devel@lists.freedesktop.org
4312 S:      Maintained
4313 F:      drivers/gpu/drm/tilcdc/
4314 F:      Documentation/devicetree/bindings/display/tilcdc/
4315
4316 DSBR100 USB FM RADIO DRIVER
4317 M:      Alexey Klimov <klimov.linux@gmail.com>
4318 L:      linux-media@vger.kernel.org
4319 T:      git git://linuxtv.org/media_tree.git
4320 S:      Maintained
4321 F:      drivers/media/radio/dsbr100.c
4322
4323 DSCC4 DRIVER
4324 M:      Francois Romieu <romieu@fr.zoreil.com>
4325 L:      netdev@vger.kernel.org
4326 S:      Maintained
4327 F:      drivers/net/wan/dscc4.c
4328
4329 DT3155 MEDIA DRIVER
4330 M:      Hans Verkuil <hverkuil@xs4all.nl>
4331 L:      linux-media@vger.kernel.org
4332 T:      git git://linuxtv.org/media_tree.git
4333 W:      https://linuxtv.org
4334 S:      Odd Fixes
4335 F:      drivers/media/pci/dt3155/
4336
4337 DVB_USB_AF9015 MEDIA DRIVER
4338 M:      Antti Palosaari <crope@iki.fi>
4339 L:      linux-media@vger.kernel.org
4340 W:      https://linuxtv.org
4341 W:      http://palosaari.fi/linux/
4342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4343 T:      git git://linuxtv.org/anttip/media_tree.git
4344 S:      Maintained
4345 F:      drivers/media/usb/dvb-usb-v2/af9015*
4346
4347 DVB_USB_AF9035 MEDIA DRIVER
4348 M:      Antti Palosaari <crope@iki.fi>
4349 L:      linux-media@vger.kernel.org
4350 W:      https://linuxtv.org
4351 W:      http://palosaari.fi/linux/
4352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4353 T:      git git://linuxtv.org/anttip/media_tree.git
4354 S:      Maintained
4355 F:      drivers/media/usb/dvb-usb-v2/af9035*
4356
4357 DVB_USB_ANYSEE MEDIA DRIVER
4358 M:      Antti Palosaari <crope@iki.fi>
4359 L:      linux-media@vger.kernel.org
4360 W:      https://linuxtv.org
4361 W:      http://palosaari.fi/linux/
4362 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4363 T:      git git://linuxtv.org/anttip/media_tree.git
4364 S:      Maintained
4365 F:      drivers/media/usb/dvb-usb-v2/anysee*
4366
4367 DVB_USB_AU6610 MEDIA DRIVER
4368 M:      Antti Palosaari <crope@iki.fi>
4369 L:      linux-media@vger.kernel.org
4370 W:      https://linuxtv.org
4371 W:      http://palosaari.fi/linux/
4372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4373 T:      git git://linuxtv.org/anttip/media_tree.git
4374 S:      Maintained
4375 F:      drivers/media/usb/dvb-usb-v2/au6610*
4376
4377 DVB_USB_CE6230 MEDIA DRIVER
4378 M:      Antti Palosaari <crope@iki.fi>
4379 L:      linux-media@vger.kernel.org
4380 W:      https://linuxtv.org
4381 W:      http://palosaari.fi/linux/
4382 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4383 T:      git git://linuxtv.org/anttip/media_tree.git
4384 S:      Maintained
4385 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4386
4387 DVB_USB_CXUSB MEDIA DRIVER
4388 M:      Michael Krufky <mkrufky@linuxtv.org>
4389 L:      linux-media@vger.kernel.org
4390 W:      https://linuxtv.org
4391 W:      http://github.com/mkrufky
4392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4393 T:      git git://linuxtv.org/media_tree.git
4394 S:      Maintained
4395 F:      drivers/media/usb/dvb-usb/cxusb*
4396
4397 DVB_USB_EC168 MEDIA DRIVER
4398 M:      Antti Palosaari <crope@iki.fi>
4399 L:      linux-media@vger.kernel.org
4400 W:      https://linuxtv.org
4401 W:      http://palosaari.fi/linux/
4402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4403 T:      git git://linuxtv.org/anttip/media_tree.git
4404 S:      Maintained
4405 F:      drivers/media/usb/dvb-usb-v2/ec168*
4406
4407 DVB_USB_GL861 MEDIA DRIVER
4408 M:      Antti Palosaari <crope@iki.fi>
4409 L:      linux-media@vger.kernel.org
4410 W:      https://linuxtv.org
4411 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4412 T:      git git://linuxtv.org/anttip/media_tree.git
4413 S:      Maintained
4414 F:      drivers/media/usb/dvb-usb-v2/gl861*
4415
4416 DVB_USB_MXL111SF MEDIA DRIVER
4417 M:      Michael Krufky <mkrufky@linuxtv.org>
4418 L:      linux-media@vger.kernel.org
4419 W:      https://linuxtv.org
4420 W:      http://github.com/mkrufky
4421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4422 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4423 S:      Maintained
4424 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4425
4426 DVB_USB_RTL28XXU MEDIA DRIVER
4427 M:      Antti Palosaari <crope@iki.fi>
4428 L:      linux-media@vger.kernel.org
4429 W:      https://linuxtv.org
4430 W:      http://palosaari.fi/linux/
4431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4432 T:      git git://linuxtv.org/anttip/media_tree.git
4433 S:      Maintained
4434 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4435
4436 DVB_USB_V2 MEDIA DRIVER
4437 M:      Antti Palosaari <crope@iki.fi>
4438 L:      linux-media@vger.kernel.org
4439 W:      https://linuxtv.org
4440 W:      http://palosaari.fi/linux/
4441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4442 T:      git git://linuxtv.org/anttip/media_tree.git
4443 S:      Maintained
4444 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4445 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4446
4447 DYNAMIC DEBUG
4448 M:      Jason Baron <jbaron@akamai.com>
4449 S:      Maintained
4450 F:      lib/dynamic_debug.c
4451 F:      include/linux/dynamic_debug.h
4452
4453 DZ DECSTATION DZ11 SERIAL DRIVER
4454 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4455 S:      Maintained
4456 F:      drivers/tty/serial/dz.*
4457
4458 E3X0 POWER BUTTON DRIVER
4459 M:      Moritz Fischer <moritz.fischer@ettus.com>
4460 L:      usrp-users@lists.ettus.com
4461 W:      http://www.ettus.com
4462 S:      Supported
4463 F:      drivers/input/misc/e3x0-button.c
4464 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4465
4466 E4000 MEDIA DRIVER
4467 M:      Antti Palosaari <crope@iki.fi>
4468 L:      linux-media@vger.kernel.org
4469 W:      https://linuxtv.org
4470 W:      http://palosaari.fi/linux/
4471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4472 T:      git git://linuxtv.org/anttip/media_tree.git
4473 S:      Maintained
4474 F:      drivers/media/tuners/e4000*
4475
4476 EATA ISA/EISA/PCI SCSI DRIVER
4477 M:      Dario Ballabio <ballabio_dario@emc.com>
4478 L:      linux-scsi@vger.kernel.org
4479 S:      Maintained
4480 F:      drivers/scsi/eata.c
4481
4482 EC100 MEDIA DRIVER
4483 M:      Antti Palosaari <crope@iki.fi>
4484 L:      linux-media@vger.kernel.org
4485 W:      https://linuxtv.org
4486 W:      http://palosaari.fi/linux/
4487 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4488 T:      git git://linuxtv.org/anttip/media_tree.git
4489 S:      Maintained
4490 F:      drivers/media/dvb-frontends/ec100*
4491
4492 ECRYPT FILE SYSTEM
4493 M:      Tyler Hicks <tyhicks@canonical.com>
4494 L:      ecryptfs@vger.kernel.org
4495 W:      http://ecryptfs.org
4496 W:      https://launchpad.net/ecryptfs
4497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4498 S:      Supported
4499 F:      Documentation/filesystems/ecryptfs.txt
4500 F:      fs/ecryptfs/
4501
4502 EDAC-CORE
4503 M:      Borislav Petkov <bp@alien8.de>
4504 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4506 L:      linux-edac@vger.kernel.org
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4509 S:      Supported
4510 F:      Documentation/edac.txt
4511 F:      drivers/edac/
4512 F:      include/linux/edac.h
4513
4514 EDAC-AMD64
4515 M:      Borislav Petkov <bp@alien8.de>
4516 L:      linux-edac@vger.kernel.org
4517 S:      Maintained
4518 F:      drivers/edac/amd64_edac*
4519
4520 EDAC-CALXEDA
4521 M:      Robert Richter <rric@kernel.org>
4522 L:      linux-edac@vger.kernel.org
4523 S:      Maintained
4524 F:      drivers/edac/highbank*
4525
4526 EDAC-CAVIUM
4527 M:      Ralf Baechle <ralf@linux-mips.org>
4528 M:      David Daney <david.daney@cavium.com>
4529 L:      linux-edac@vger.kernel.org
4530 L:      linux-mips@linux-mips.org
4531 S:      Supported
4532 F:      drivers/edac/octeon_edac*
4533
4534 EDAC-E752X
4535 M:      Mark Gross <mark.gross@intel.com>
4536 L:      linux-edac@vger.kernel.org
4537 S:      Maintained
4538 F:      drivers/edac/e752x_edac.c
4539
4540 EDAC-E7XXX
4541 L:      linux-edac@vger.kernel.org
4542 S:      Maintained
4543 F:      drivers/edac/e7xxx_edac.c
4544
4545 EDAC-FSL_DDR
4546 M:      York Sun <york.sun@nxp.com>
4547 L:      linux-edac@vger.kernel.org
4548 S:      Maintained
4549 F:      drivers/edac/fsl_ddr_edac.*
4550
4551 EDAC-GHES
4552 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4553 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4554 L:      linux-edac@vger.kernel.org
4555 S:      Maintained
4556 F:      drivers/edac/ghes_edac.c
4557
4558 EDAC-I82443BXGX
4559 M:      Tim Small <tim@buttersideup.com>
4560 L:      linux-edac@vger.kernel.org
4561 S:      Maintained
4562 F:      drivers/edac/i82443bxgx_edac.c
4563
4564 EDAC-I3000
4565 L:      linux-edac@vger.kernel.org
4566 S:      Orphan
4567 F:      drivers/edac/i3000_edac.c
4568
4569 EDAC-I5000
4570 L:      linux-edac@vger.kernel.org
4571 S:      Maintained
4572 F:      drivers/edac/i5000_edac.c
4573
4574 EDAC-I5400
4575 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4576 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4577 L:      linux-edac@vger.kernel.org
4578 S:      Maintained
4579 F:      drivers/edac/i5400_edac.c
4580
4581 EDAC-I7300
4582 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4583 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4584 L:      linux-edac@vger.kernel.org
4585 S:      Maintained
4586 F:      drivers/edac/i7300_edac.c
4587
4588 EDAC-I7CORE
4589 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4590 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4591 L:      linux-edac@vger.kernel.org
4592 S:      Maintained
4593 F:      drivers/edac/i7core_edac.c
4594
4595 EDAC-I82975X
4596 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4597 M:      "Arvind R." <arvino55@gmail.com>
4598 L:      linux-edac@vger.kernel.org
4599 S:      Maintained
4600 F:      drivers/edac/i82975x_edac.c
4601
4602 EDAC-IE31200
4603 M:      Jason Baron <jbaron@akamai.com>
4604 L:      linux-edac@vger.kernel.org
4605 S:      Maintained
4606 F:      drivers/edac/ie31200_edac.c
4607
4608 EDAC-MPC85XX
4609 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4610 L:      linux-edac@vger.kernel.org
4611 S:      Maintained
4612 F:      drivers/edac/mpc85xx_edac.[ch]
4613
4614 EDAC-PASEMI
4615 M:      Egor Martovetsky <egor@pasemi.com>
4616 L:      linux-edac@vger.kernel.org
4617 S:      Maintained
4618 F:      drivers/edac/pasemi_edac.c
4619
4620 EDAC-R82600
4621 M:      Tim Small <tim@buttersideup.com>
4622 L:      linux-edac@vger.kernel.org
4623 S:      Maintained
4624 F:      drivers/edac/r82600_edac.c
4625
4626 EDAC-SBRIDGE
4627 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4628 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4629 L:      linux-edac@vger.kernel.org
4630 S:      Maintained
4631 F:      drivers/edac/sb_edac.c
4632
4633 EDAC-SKYLAKE
4634 M:      Tony Luck <tony.luck@intel.com>
4635 L:      linux-edac@vger.kernel.org
4636 S:      Maintained
4637 F:      drivers/edac/skx_edac.c
4638
4639 EDAC-XGENE
4640 APPLIED MICRO (APM) X-GENE SOC EDAC
4641 M:     Loc Ho <lho@apm.com>
4642 S:     Supported
4643 F:     drivers/edac/xgene_edac.c
4644 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4645
4646 EDIROL UA-101/UA-1000 DRIVER
4647 M:      Clemens Ladisch <clemens@ladisch.de>
4648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4649 T:      git git://git.alsa-project.org/alsa-kernel.git
4650 S:      Maintained
4651 F:      sound/usb/misc/ua101.c
4652
4653 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4654 M:      Matt Fleming <matt@codeblueprint.co.uk>
4655 M:      Ard Biesheuvel <ard.biesheuvel@linaro.org>
4656 L:      linux-efi@vger.kernel.org
4657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
4658 S:      Maintained
4659 F:      Documentation/efi-stub.txt
4660 F:      arch/*/kernel/efi.c
4661 F:      arch/x86/boot/compressed/eboot.[ch]
4662 F:      arch/*/include/asm/efi.h
4663 F:      arch/x86/platform/efi/
4664 F:      drivers/firmware/efi/
4665 F:      include/linux/efi*.h
4666 F:      arch/arm/boot/compressed/efi-header.S
4667 F:      arch/arm64/kernel/efi-entry.S
4668
4669 EFI VARIABLE FILESYSTEM
4670 M:      Matthew Garrett <matthew.garrett@nebula.com>
4671 M:      Jeremy Kerr <jk@ozlabs.org>
4672 M:      Matt Fleming <matt@codeblueprint.co.uk>
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4674 L:      linux-efi@vger.kernel.org
4675 S:      Maintained
4676 F:      fs/efivarfs/
4677
4678 EFIFB FRAMEBUFFER DRIVER
4679 L:      linux-fbdev@vger.kernel.org
4680 M:      Peter Jones <pjones@redhat.com>
4681 S:      Maintained
4682 F:      drivers/video/fbdev/efifb.c
4683
4684 EFI TEST DRIVER
4685 L:      linux-efi@vger.kernel.org
4686 M:      Ivan Hu <ivan.hu@canonical.com>
4687 M:      Matt Fleming <matt@codeblueprint.co.uk>
4688 S:      Maintained
4689 F:      drivers/firmware/efi/test/
4690
4691 EFS FILESYSTEM
4692 W:      http://aeschi.ch.eu.org/efs/
4693 S:      Orphan
4694 F:      fs/efs/
4695
4696 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4697 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
4698 L:      netdev@vger.kernel.org
4699 S:      Maintained
4700 F:      drivers/net/ethernet/ibm/ehea/
4701
4702 EM28XX VIDEO4LINUX DRIVER
4703 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4704 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4705 L:      linux-media@vger.kernel.org
4706 W:      https://linuxtv.org
4707 T:      git git://linuxtv.org/media_tree.git
4708 S:      Maintained
4709 F:      drivers/media/usb/em28xx/
4710 F:      Documentation/media/v4l-drivers/em28xx*
4711
4712 EMBEDDED LINUX
4713 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4714 M:      Matt Mackall <mpm@selenic.com>
4715 M:      David Woodhouse <dwmw2@infradead.org>
4716 L:      linux-embedded@vger.kernel.org
4717 S:      Maintained
4718
4719 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4720 M:      James Smart <james.smart@avagotech.com>
4721 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4722 L:      linux-scsi@vger.kernel.org
4723 W:      http://www.avagotech.com
4724 S:      Supported
4725 F:      drivers/scsi/lpfc/
4726
4727 ENE CB710 FLASH CARD READER DRIVER
4728 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4729 S:      Maintained
4730 F:      drivers/misc/cb710/
4731 F:      drivers/mmc/host/cb710-mmc.*
4732 F:      include/linux/cb710.h
4733
4734 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4735 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4736 S:      Maintained
4737 F:      drivers/media/rc/ene_ir.*
4738
4739 EPSON S1D13XXX FRAMEBUFFER DRIVER
4740 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4741 S:      Maintained
4742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4743 F:      drivers/video/fbdev/s1d13xxxfb.c
4744 F:      include/video/s1d13xxxfb.h
4745
4746 ET131X NETWORK DRIVER
4747 M:      Mark Einon <mark.einon@gmail.com>
4748 S:      Odd Fixes
4749 F:      drivers/net/ethernet/agere/
4750
4751 ETHERNET BRIDGE
4752 M:      Stephen Hemminger <stephen@networkplumber.org>
4753 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4754 L:      netdev@vger.kernel.org
4755 W:      http://www.linuxfoundation.org/en/Net:Bridge
4756 S:      Maintained
4757 F:      include/linux/netfilter_bridge/
4758 F:      net/bridge/
4759
4760 ETHERNET PHY LIBRARY
4761 M:      Florian Fainelli <f.fainelli@gmail.com>
4762 L:      netdev@vger.kernel.org
4763 S:      Maintained
4764 F:      include/linux/phy.h
4765 F:      include/linux/phy_fixed.h
4766 F:      drivers/net/phy/
4767 F:      Documentation/networking/phy.txt
4768 F:      drivers/of/of_mdio.c
4769 F:      drivers/of/of_net.c
4770
4771 EXT2 FILE SYSTEM
4772 M:      Jan Kara <jack@suse.com>
4773 L:      linux-ext4@vger.kernel.org
4774 S:      Maintained
4775 F:      Documentation/filesystems/ext2.txt
4776 F:      fs/ext2/
4777 F:      include/linux/ext2*
4778
4779 EXT4 FILE SYSTEM
4780 M:      "Theodore Ts'o" <tytso@mit.edu>
4781 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4782 L:      linux-ext4@vger.kernel.org
4783 W:      http://ext4.wiki.kernel.org
4784 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4786 S:      Maintained
4787 F:      Documentation/filesystems/ext4.txt
4788 F:      fs/ext4/
4789
4790 Extended Verification Module (EVM)
4791 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4792 L:      linux-ima-devel@lists.sourceforge.net
4793 L:      linux-security-module@vger.kernel.org
4794 S:      Supported
4795 F:      security/integrity/evm/
4796
4797 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4798 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4799 M:      Chanwoo Choi <cw00.choi@samsung.com>
4800 L:      linux-kernel@vger.kernel.org
4801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4802 S:      Maintained
4803 F:      drivers/extcon/
4804 F:      include/linux/extcon/
4805 F:      include/linux/extcon.h
4806 F:      Documentation/extcon/
4807 F:      Documentation/devicetree/bindings/extcon/
4808
4809 EXYNOS DP DRIVER
4810 M:      Jingoo Han <jingoohan1@gmail.com>
4811 L:      dri-devel@lists.freedesktop.org
4812 S:      Maintained
4813 F:      drivers/gpu/drm/exynos/exynos_dp*
4814
4815 EXYNOS SYSMMU (IOMMU) driver
4816 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4817 L:      iommu@lists.linux-foundation.org
4818 S:      Maintained
4819 F:      drivers/iommu/exynos-iommu.c
4820
4821 EZchip NPS platform support
4822 M:      Noam Camus <noamc@ezchip.com>
4823 S:      Supported
4824 F:      arch/arc/plat-eznps
4825 F:      arch/arc/boot/dts/eznps.dts
4826
4827 F71805F HARDWARE MONITORING DRIVER
4828 M:      Jean Delvare <jdelvare@suse.com>
4829 L:      linux-hwmon@vger.kernel.org
4830 S:      Maintained
4831 F:      Documentation/hwmon/f71805f
4832 F:      drivers/hwmon/f71805f.c
4833
4834 FC0011 TUNER DRIVER
4835 M:      Michael Buesch <m@bues.ch>
4836 L:      linux-media@vger.kernel.org
4837 S:      Maintained
4838 F:      drivers/media/tuners/fc0011.h
4839 F:      drivers/media/tuners/fc0011.c
4840
4841 FC2580 MEDIA DRIVER
4842 M:      Antti Palosaari <crope@iki.fi>
4843 L:      linux-media@vger.kernel.org
4844 W:      https://linuxtv.org
4845 W:      http://palosaari.fi/linux/
4846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4847 T:      git git://linuxtv.org/anttip/media_tree.git
4848 S:      Maintained
4849 F:      drivers/media/tuners/fc2580*
4850
4851 FANOTIFY
4852 M:      Eric Paris <eparis@redhat.com>
4853 S:      Maintained
4854 F:      fs/notify/fanotify/
4855 F:      include/linux/fanotify.h
4856 F:      include/uapi/linux/fanotify.h
4857
4858 FARSYNC SYNCHRONOUS DRIVER
4859 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4860 W:      http://www.farsite.co.uk/
4861 S:      Supported
4862 F:      drivers/net/wan/farsync.*
4863
4864 FAULT INJECTION SUPPORT
4865 M:      Akinobu Mita <akinobu.mita@gmail.com>
4866 S:      Supported
4867 F:      Documentation/fault-injection/
4868 F:      lib/fault-inject.c
4869
4870 FBTFT Framebuffer drivers
4871 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4872 M:      Noralf Trønnes <noralf@tronnes.org>
4873 S:      Maintained
4874 F:      drivers/staging/fbtft/
4875
4876 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4877 M:      Johannes Thumshirn <jth@kernel.org>
4878 L:      fcoe-devel@open-fcoe.org
4879 W:      www.Open-FCoE.org
4880 S:      Supported
4881 F:      drivers/scsi/libfc/
4882 F:      drivers/scsi/fcoe/
4883 F:      include/scsi/fc/
4884 F:      include/scsi/libfc.h
4885 F:      include/scsi/libfcoe.h
4886 F:      include/uapi/scsi/fc/
4887
4888 FILE LOCKING (flock() and fcntl()/lockf())
4889 M:      Jeff Layton <jlayton@poochiereds.net>
4890 M:      "J. Bruce Fields" <bfields@fieldses.org>
4891 L:      linux-fsdevel@vger.kernel.org
4892 S:      Maintained
4893 F:      include/linux/fcntl.h
4894 F:      include/linux/fs.h
4895 F:      include/uapi/linux/fcntl.h
4896 F:      include/uapi/linux/fs.h
4897 F:      fs/fcntl.c
4898 F:      fs/locks.c
4899
4900 FILESYSTEMS (VFS and infrastructure)
4901 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4902 L:      linux-fsdevel@vger.kernel.org
4903 S:      Maintained
4904 F:      fs/*
4905
4906 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4907 M:      Riku Voipio <riku.voipio@iki.fi>
4908 L:      linux-hwmon@vger.kernel.org
4909 S:      Maintained
4910 F:      drivers/hwmon/f75375s.c
4911 F:      include/linux/f75375s.h
4912
4913 FIREWIRE AUDIO DRIVERS
4914 M:      Clemens Ladisch <clemens@ladisch.de>
4915 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4916 T:      git git://git.alsa-project.org/alsa-kernel.git
4917 S:      Maintained
4918 F:      sound/firewire/
4919
4920 FIREWIRE MEDIA DRIVERS (firedtv)
4921 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4922 L:      linux-media@vger.kernel.org
4923 L:      linux1394-devel@lists.sourceforge.net
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4925 S:      Maintained
4926 F:      drivers/media/firewire/
4927
4928 FIREWIRE SBP-2 TARGET
4929 M:      Chris Boot <bootc@bootc.net>
4930 L:      linux-scsi@vger.kernel.org
4931 L:      target-devel@vger.kernel.org
4932 L:      linux1394-devel@lists.sourceforge.net
4933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4934 S:      Maintained
4935 F:      drivers/target/sbp/
4936
4937 FIREWIRE SUBSYSTEM
4938 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4939 L:      linux1394-devel@lists.sourceforge.net
4940 W:      http://ieee1394.wiki.kernel.org/
4941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4942 S:      Maintained
4943 F:      drivers/firewire/
4944 F:      include/linux/firewire.h
4945 F:      include/uapi/linux/firewire*.h
4946 F:      tools/firewire/
4947
4948 FIRMWARE LOADER (request_firmware)
4949 M:      Ming Lei <ming.lei@canonical.com>
4950 M:      Luis R. Rodriguez <mcgrof@kernel.org>
4951 L:      linux-kernel@vger.kernel.org
4952 S:      Maintained
4953 F:      Documentation/firmware_class/
4954 F:      drivers/base/firmware*.c
4955 F:      include/linux/firmware.h
4956
4957 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4958 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4959 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4960 S:      Maintained
4961 F:      drivers/block/rsxx/
4962
4963 FLOPPY DRIVER
4964 M:      Jiri Kosina <jikos@kernel.org>
4965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4966 S:      Odd fixes
4967 F:      drivers/block/floppy.c
4968
4969 FMC SUBSYSTEM
4970 M:      Alessandro Rubini <rubini@gnudd.com>
4971 W:      http://www.ohwr.org/projects/fmc-bus
4972 S:      Supported
4973 F:      drivers/fmc/
4974 F:      include/linux/fmc*.h
4975 F:      include/linux/ipmi-fru.h
4976 K:      fmc_d.*register
4977
4978 FPGA MANAGER FRAMEWORK
4979 M:      Alan Tull <atull@opensource.altera.com>
4980 R:      Moritz Fischer <moritz.fischer@ettus.com>
4981 S:      Maintained
4982 F:      drivers/fpga/
4983 F:      include/linux/fpga/fpga-mgr.h
4984 W:      http://www.rocketboards.org
4985
4986 FPU EMULATOR
4987 M:      Bill Metzenthen <billm@melbpc.org.au>
4988 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4989 S:      Maintained
4990 F:      arch/x86/math-emu/
4991
4992 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4993 L:      netdev@vger.kernel.org
4994 S:      Orphan
4995 F:      drivers/net/wan/dlci.c
4996 F:      drivers/net/wan/sdla.c
4997
4998 FRAMEBUFFER LAYER
4999 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
5000 L:      linux-fbdev@vger.kernel.org
5001 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5002 S:      Maintained
5003 F:      Documentation/fb/
5004 F:      drivers/video/
5005 F:      include/video/
5006 F:      include/linux/fb.h
5007 F:      include/uapi/video/
5008 F:      include/uapi/linux/fb.h
5009
5010 FREESCALE DIU FRAMEBUFFER DRIVER
5011 M:      Timur Tabi <timur@tabi.org>
5012 L:      linux-fbdev@vger.kernel.org
5013 S:      Maintained
5014 F:      drivers/video/fbdev/fsl-diu-fb.*
5015
5016 FREESCALE DMA DRIVER
5017 M:      Li Yang <leoli@freescale.com>
5018 M:      Zhang Wei <zw@zh-kernel.org>
5019 L:      linuxppc-dev@lists.ozlabs.org
5020 S:      Maintained
5021 F:      drivers/dma/fsldma.*
5022
5023 FREESCALE GPMI NAND DRIVER
5024 M:      Han Xu <han.xu@nxp.com>
5025 L:      linux-mtd@lists.infradead.org
5026 S:      Maintained
5027 F:      drivers/mtd/nand/gpmi-nand/*
5028
5029 FREESCALE I2C CPM DRIVER
5030 M:      Jochen Friedrich <jochen@scram.de>
5031 L:      linuxppc-dev@lists.ozlabs.org
5032 L:      linux-i2c@vger.kernel.org
5033 S:      Maintained
5034 F:      drivers/i2c/busses/i2c-cpm.c
5035
5036 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5037 M:      Sascha Hauer <kernel@pengutronix.de>
5038 L:      linux-fbdev@vger.kernel.org
5039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5040 S:      Maintained
5041 F:      include/linux/platform_data/video-imxfb.h
5042 F:      drivers/video/fbdev/imxfb.c
5043
5044 FREESCALE QUAD SPI DRIVER
5045 M:      Han Xu <han.xu@nxp.com>
5046 L:      linux-mtd@lists.infradead.org
5047 S:      Maintained
5048 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5049
5050 FREESCALE SOC FS_ENET DRIVER
5051 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
5052 M:      Vitaly Bordug <vbordug@ru.mvista.com>
5053 L:      linuxppc-dev@lists.ozlabs.org
5054 L:      netdev@vger.kernel.org
5055 S:      Maintained
5056 F:      drivers/net/ethernet/freescale/fs_enet/
5057 F:      include/linux/fs_enet_pd.h
5058
5059 FREESCALE IMX / MXC FEC DRIVER
5060 M:      Fugang Duan <fugang.duan@nxp.com>
5061 L:      netdev@vger.kernel.org
5062 S:      Maintained
5063 F:      drivers/net/ethernet/freescale/fec_main.c
5064 F:      drivers/net/ethernet/freescale/fec_ptp.c
5065 F:      drivers/net/ethernet/freescale/fec.h
5066 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5067
5068 FREESCALE QORIQ DPAA FMAN DRIVER
5069 M:      Madalin Bucur <madalin.bucur@nxp.com>
5070 L:      netdev@vger.kernel.org
5071 S:      Maintained
5072 F:      drivers/net/ethernet/freescale/fman
5073 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5074
5075 FREESCALE SOC DRIVERS
5076 M:      Scott Wood <oss@buserror.net>
5077 L:      linuxppc-dev@lists.ozlabs.org
5078 L:      linux-arm-kernel@lists.infradead.org
5079 S:      Maintained
5080 F:      drivers/soc/fsl/
5081 F:      include/linux/fsl/
5082
5083 FREESCALE QUICC ENGINE LIBRARY
5084 M:      Qiang Zhao <qiang.zhao@nxp.com>
5085 L:      linuxppc-dev@lists.ozlabs.org
5086 S:      Maintained
5087 F:      drivers/soc/fsl/qe/
5088 F:      include/soc/fsl/*qe*.h
5089 F:      include/soc/fsl/*ucc*.h
5090
5091 FREESCALE USB PERIPHERAL DRIVERS
5092 M:      Li Yang <leoli@freescale.com>
5093 L:      linux-usb@vger.kernel.org
5094 L:      linuxppc-dev@lists.ozlabs.org
5095 S:      Maintained
5096 F:      drivers/usb/gadget/udc/fsl*
5097
5098 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5099 M:      Li Yang <leoli@freescale.com>
5100 L:      netdev@vger.kernel.org
5101 L:      linuxppc-dev@lists.ozlabs.org
5102 S:      Maintained
5103 F:      drivers/net/ethernet/freescale/ucc_geth*
5104
5105 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5106 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5107 L:      netdev@vger.kernel.org
5108 S:      Maintained
5109 F:      drivers/net/ethernet/freescale/gianfar*
5110 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5111 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5112
5113 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5114 M:      Zhao Qiang <qiang.zhao@nxp.com>
5115 L:      netdev@vger.kernel.org
5116 L:      linuxppc-dev@lists.ozlabs.org
5117 S:      Maintained
5118 F:      drivers/net/wan/fsl_ucc_hdlc*
5119
5120 FREESCALE QUICC ENGINE UCC UART DRIVER
5121 M:      Timur Tabi <timur@tabi.org>
5122 L:      linuxppc-dev@lists.ozlabs.org
5123 S:      Maintained
5124 F:      drivers/tty/serial/ucc_uart.c
5125
5126 FREESCALE SOC SOUND DRIVERS
5127 M:      Timur Tabi <timur@tabi.org>
5128 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5129 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5130 R:      Fabio Estevam <fabio.estevam@nxp.com>
5131 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5132 L:      linuxppc-dev@lists.ozlabs.org
5133 S:      Maintained
5134 F:      sound/soc/fsl/fsl*
5135 F:      sound/soc/fsl/imx*
5136 F:      sound/soc/fsl/mpc8610_hpcd.c
5137
5138 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
5139 M:      "J. German Rivera" <German.Rivera@freescale.com>
5140 M:      Stuart Yoder <stuart.yoder@nxp.com>
5141 L:      linux-kernel@vger.kernel.org
5142 S:      Maintained
5143 F:      drivers/staging/fsl-mc/
5144
5145 FREEVXFS FILESYSTEM
5146 M:      Christoph Hellwig <hch@infradead.org>
5147 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5148 S:      Maintained
5149 F:      fs/freevxfs/
5150
5151 FREEZER
5152 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5153 M:      Pavel Machek <pavel@ucw.cz>
5154 L:      linux-pm@vger.kernel.org
5155 S:      Supported
5156 F:      Documentation/power/freezing-of-tasks.txt
5157 F:      include/linux/freezer.h
5158 F:      kernel/freezer.c
5159
5160 FRONTSWAP API
5161 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5162 L:      linux-kernel@vger.kernel.org
5163 S:      Maintained
5164 F:      mm/frontswap.c
5165 F:      include/linux/frontswap.h
5166
5167 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5168 M:      David Howells <dhowells@redhat.com>
5169 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5170 S:      Supported
5171 F:      Documentation/filesystems/caching/
5172 F:      fs/fscache/
5173 F:      include/linux/fscache*.h
5174
5175 FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5176 M:      Theodore Y. Ts'o <tytso@mit.edu>
5177 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5178 S:      Supported
5179 F:      fs/crypto/
5180 F:      include/linux/fscrypto.h
5181
5182 F2FS FILE SYSTEM
5183 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5184 M:      Chao Yu <yuchao0@huawei.com>
5185 L:      linux-f2fs-devel@lists.sourceforge.net
5186 W:      https://f2fs.wiki.kernel.org/
5187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5188 S:      Maintained
5189 F:      Documentation/filesystems/f2fs.txt
5190 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5191 F:      fs/f2fs/
5192 F:      include/linux/f2fs_fs.h
5193 F:      include/trace/events/f2fs.h
5194
5195 FUJITSU FR-V (FRV) PORT
5196 S:      Orphan
5197 F:      arch/frv/
5198
5199 FUJITSU LAPTOP EXTRAS
5200 M:      Jonathan Woithe <jwoithe@just42.net>
5201 L:      platform-driver-x86@vger.kernel.org
5202 S:      Maintained
5203 F:      drivers/platform/x86/fujitsu-laptop.c
5204
5205 FUJITSU M-5MO LS CAMERA ISP DRIVER
5206 M:      Kyungmin Park <kyungmin.park@samsung.com>
5207 M:      Heungjun Kim <riverful.kim@samsung.com>
5208 L:      linux-media@vger.kernel.org
5209 S:      Maintained
5210 F:      drivers/media/i2c/m5mols/
5211 F:      include/media/i2c/m5mols.h
5212
5213 FUJITSU TABLET EXTRAS
5214 M:      Robert Gerlach <khnz@gmx.de>
5215 L:      platform-driver-x86@vger.kernel.org
5216 S:      Maintained
5217 F:      drivers/platform/x86/fujitsu-tablet.c
5218
5219 FUSE: FILESYSTEM IN USERSPACE
5220 M:      Miklos Szeredi <miklos@szeredi.hu>
5221 L:      linux-fsdevel@vger.kernel.org
5222 W:      http://fuse.sourceforge.net/
5223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5224 S:      Maintained
5225 F:      fs/fuse/
5226 F:      include/uapi/linux/fuse.h
5227 F:      Documentation/filesystems/fuse.txt
5228
5229 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5230 M:      Rik Faith <faith@cs.unc.edu>
5231 L:      linux-scsi@vger.kernel.org
5232 S:      Odd Fixes (e.g., new signatures)
5233 F:      drivers/scsi/fdomain.*
5234
5235 GCC PLUGINS
5236 M:      Kees Cook <keescook@chromium.org>
5237 R:      Emese Revfy <re.emese@gmail.com>
5238 L:      kernel-hardening@lists.openwall.com
5239 S:      Maintained
5240 F:      scripts/gcc-plugins/
5241 F:      scripts/gcc-plugin.sh
5242 F:      Documentation/gcc-plugins.txt
5243
5244 GCOV BASED KERNEL PROFILING
5245 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5246 S:      Maintained
5247 F:      kernel/gcov/
5248 F:      Documentation/dev-tools/gcov.rst
5249
5250 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5251 M:      Achim Leubner <achim_leubner@adaptec.com>
5252 L:      linux-scsi@vger.kernel.org
5253 W:      http://www.icp-vortex.com/
5254 S:      Supported
5255 F:      drivers/scsi/gdt*
5256
5257 GDB KERNEL DEBUGGING HELPER SCRIPTS
5258 M:      Jan Kiszka <jan.kiszka@siemens.com>
5259 M:      Kieran Bingham <kieran@bingham.xyz>
5260 S:      Supported
5261 F:      scripts/gdb/
5262
5263 GEMTEK FM RADIO RECEIVER DRIVER
5264 M:      Hans Verkuil <hverkuil@xs4all.nl>
5265 L:      linux-media@vger.kernel.org
5266 T:      git git://linuxtv.org/media_tree.git
5267 W:      https://linuxtv.org
5268 S:      Maintained
5269 F:      drivers/media/radio/radio-gemtek*
5270
5271 GENERIC GPIO I2C DRIVER
5272 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5273 S:      Supported
5274 F:      drivers/i2c/busses/i2c-gpio.c
5275 F:      include/linux/i2c-gpio.h
5276
5277 GENERIC GPIO I2C MULTIPLEXER DRIVER
5278 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5279 L:      linux-i2c@vger.kernel.org
5280 S:      Supported
5281 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5282 F:      include/linux/i2c-mux-gpio.h
5283 F:      Documentation/i2c/muxes/i2c-mux-gpio
5284
5285 GENERIC HDLC (WAN) DRIVERS
5286 M:      Krzysztof Halasa <khc@pm.waw.pl>
5287 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5288 S:      Maintained
5289 F:      drivers/net/wan/c101.c
5290 F:      drivers/net/wan/hd6457*
5291 F:      drivers/net/wan/hdlc*
5292 F:      drivers/net/wan/n2.c
5293 F:      drivers/net/wan/pc300too.c
5294 F:      drivers/net/wan/pci200syn.c
5295 F:      drivers/net/wan/wanxl*
5296
5297 GENERIC INCLUDE/ASM HEADER FILES
5298 M:      Arnd Bergmann <arnd@arndb.de>
5299 L:      linux-arch@vger.kernel.org
5300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5301 S:      Maintained
5302 F:      include/asm-generic/
5303 F:      include/uapi/asm-generic/
5304
5305 GENERIC PHY FRAMEWORK
5306 M:      Kishon Vijay Abraham I <kishon@ti.com>
5307 L:      linux-kernel@vger.kernel.org
5308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5309 S:      Supported
5310 F:      drivers/phy/
5311 F:      include/linux/phy/
5312
5313 GENERIC PM DOMAINS
5314 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5315 M:      Kevin Hilman <khilman@kernel.org>
5316 M:      Ulf Hansson <ulf.hansson@linaro.org>
5317 L:      linux-pm@vger.kernel.org
5318 S:      Supported
5319 F:      drivers/base/power/domain*.c
5320 F:      include/linux/pm_domain.h
5321
5322 GENERIC UIO DRIVER FOR PCI DEVICES
5323 M:      "Michael S. Tsirkin" <mst@redhat.com>
5324 L:      kvm@vger.kernel.org
5325 S:      Supported
5326 F:      drivers/uio/uio_pci_generic.c
5327
5328 GET_MAINTAINER SCRIPT
5329 M:      Joe Perches <joe@perches.com>
5330 S:      Maintained
5331 F:      scripts/get_maintainer.pl
5332
5333 GENWQE (IBM Generic Workqueue Card)
5334 M:      Frank Haverkamp <haver@linux.vnet.ibm.com>
5335 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
5336 S:      Supported
5337 F:      drivers/misc/genwqe/
5338
5339 GFS2 FILE SYSTEM
5340 M:      Steven Whitehouse <swhiteho@redhat.com>
5341 M:      Bob Peterson <rpeterso@redhat.com>
5342 L:      cluster-devel@redhat.com
5343 W:      http://sources.redhat.com/cluster/
5344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5345 S:      Supported
5346 F:      Documentation/filesystems/gfs2*.txt
5347 F:      fs/gfs2/
5348 F:      include/uapi/linux/gfs2_ondisk.h
5349
5350 GIGASET ISDN DRIVERS
5351 M:      Paul Bolle <pebolle@tiscali.nl>
5352 L:      gigaset307x-common@lists.sourceforge.net
5353 W:      http://gigaset307x.sourceforge.net/
5354 S:      Odd Fixes
5355 F:      Documentation/isdn/README.gigaset
5356 F:      drivers/isdn/gigaset/
5357 F:      include/uapi/linux/gigaset_dev.h
5358
5359 GO7007 MPEG CODEC
5360 M:      Hans Verkuil <hans.verkuil@cisco.com>
5361 L:      linux-media@vger.kernel.org
5362 S:      Maintained
5363 F:      drivers/media/usb/go7007/
5364
5365 GOODIX TOUCHSCREEN
5366 M:      Bastien Nocera <hadess@hadess.net>
5367 L:      linux-input@vger.kernel.org
5368 S:      Maintained
5369 F:      drivers/input/touchscreen/goodix.c
5370
5371 GPIO MOCKUP DRIVER
5372 M:      Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5373 L:      linux-gpio@vger.kernel.org
5374 S:      Maintained
5375 F:      drivers/gpio/gpio-mockup.c
5376 F:      tools/testing/selftests/gpio/
5377
5378 GPIO SUBSYSTEM
5379 M:      Linus Walleij <linus.walleij@linaro.org>
5380 M:      Alexandre Courbot <gnurou@gmail.com>
5381 L:      linux-gpio@vger.kernel.org
5382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5383 S:      Maintained
5384 F:      Documentation/devicetree/bindings/gpio/
5385 F:      Documentation/gpio/
5386 F:      Documentation/ABI/testing/gpio-cdev
5387 F:      Documentation/ABI/obsolete/sysfs-gpio
5388 F:      drivers/gpio/
5389 F:      include/linux/gpio/
5390 F:      include/linux/gpio.h
5391 F:      include/asm-generic/gpio.h
5392 F:      include/uapi/linux/gpio.h
5393 F:      tools/gpio/
5394
5395 GRE DEMULTIPLEXER DRIVER
5396 M:      Dmitry Kozlov <xeb@mail.ru>
5397 L:      netdev@vger.kernel.org
5398 S:      Maintained
5399 F:      net/ipv4/gre_demux.c
5400 F:      net/ipv4/gre_offload.c
5401 F:      include/net/gre.h
5402
5403 GRETH 10/100/1G Ethernet MAC device driver
5404 M:      Andreas Larsson <andreas@gaisler.com>
5405 L:      netdev@vger.kernel.org
5406 S:      Maintained
5407 F:      drivers/net/ethernet/aeroflex/
5408
5409 GREYBUS SUBSYSTEM
5410 M:      Johan Hovold <johan@kernel.org>
5411 M:      Alex Elder <elder@kernel.org>
5412 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5413 S:      Maintained
5414 F:      drivers/staging/greybus/
5415
5416 GREYBUS AUDIO PROTOCOLS DRIVERS
5417 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
5418 M:      Mark Greer <mgreer@animalcreek.com>
5419 S:      Maintained
5420 F:      drivers/staging/greybus/audio_apbridgea.c
5421 F:      drivers/staging/greybus/audio_apbridgea.h
5422 F:      drivers/staging/greybus/audio_codec.c
5423 F:      drivers/staging/greybus/audio_codec.h
5424 F:      drivers/staging/greybus/audio_gb.c
5425 F:      drivers/staging/greybus/audio_manager.c
5426 F:      drivers/staging/greybus/audio_manager.h
5427 F:      drivers/staging/greybus/audio_manager_module.c
5428 F:      drivers/staging/greybus/audio_manager_private.h
5429 F:      drivers/staging/greybus/audio_manager_sysfs.c
5430 F:      drivers/staging/greybus/audio_module.c
5431 F:      drivers/staging/greybus/audio_topology.c
5432
5433 GREYBUS PROTOCOLS DRIVERS
5434 M:      Rui Miguel Silva <rmfrfs@gmail.com>
5435 S:      Maintained
5436 F:      drivers/staging/greybus/sdio.c
5437 F:      drivers/staging/greybus/light.c
5438 F:      drivers/staging/greybus/gpio.c
5439 F:      drivers/staging/greybus/power_supply.c
5440 F:      drivers/staging/greybus/spi.c
5441 F:      drivers/staging/greybus/spilib.c
5442
5443 GREYBUS PROTOCOLS DRIVERS
5444 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
5445 S:      Maintained
5446 F:      drivers/staging/greybus/loopback.c
5447 F:      drivers/staging/greybus/timesync.c
5448 F:      drivers/staging/greybus/timesync_platform.c
5449
5450 GREYBUS PROTOCOLS DRIVERS
5451 M:      Viresh Kumar <vireshk@kernel.org>
5452 S:      Maintained
5453 F:      drivers/staging/greybus/authentication.c
5454 F:      drivers/staging/greybus/bootrom.c
5455 F:      drivers/staging/greybus/firmware.h
5456 F:      drivers/staging/greybus/fw-core.c
5457 F:      drivers/staging/greybus/fw-download.c
5458 F:      drivers/staging/greybus/fw-managament.c
5459 F:      drivers/staging/greybus/greybus_authentication.h
5460 F:      drivers/staging/greybus/greybus_firmware.h
5461 F:      drivers/staging/greybus/hid.c
5462 F:      drivers/staging/greybus/i2c.c
5463 F:      drivers/staging/greybus/spi.c
5464 F:      drivers/staging/greybus/spilib.c
5465 F:      drivers/staging/greybus/spilib.h
5466
5467 GREYBUS PROTOCOLS DRIVERS
5468 M:      David Lin <dtwlin@gmail.com>
5469 S:      Maintained
5470 F:      drivers/staging/greybus/uart.c
5471 F:      drivers/staging/greybus/log.c
5472
5473 GREYBUS PLATFORM DRIVERS
5474 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5475 S:      Maintained
5476 F:      drivers/staging/greybus/arche-platform.c
5477 F:      drivers/staging/greybus/arche-apb-ctrl.c
5478 F:      drivers/staging/greybus/arche_platform.h
5479
5480 GS1662 VIDEO SERIALIZER
5481 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5482 L:      linux-media@vger.kernel.org
5483 T:      git git://linuxtv.org/media_tree.git
5484 S:      Maintained
5485 F:      drivers/media/spi/gs1662.c
5486
5487 GSPCA FINEPIX SUBDRIVER
5488 M:      Frank Zago <frank@zago.net>
5489 L:      linux-media@vger.kernel.org
5490 T:      git git://linuxtv.org/media_tree.git
5491 S:      Maintained
5492 F:      drivers/media/usb/gspca/finepix.c
5493
5494 GSPCA GL860 SUBDRIVER
5495 M:      Olivier Lorin <o.lorin@laposte.net>
5496 L:      linux-media@vger.kernel.org
5497 T:      git git://linuxtv.org/media_tree.git
5498 S:      Maintained
5499 F:      drivers/media/usb/gspca/gl860/
5500
5501 GSPCA M5602 SUBDRIVER
5502 M:      Erik Andren <erik.andren@gmail.com>
5503 L:      linux-media@vger.kernel.org
5504 T:      git git://linuxtv.org/media_tree.git
5505 S:      Maintained
5506 F:      drivers/media/usb/gspca/m5602/
5507
5508 GSPCA PAC207 SONIXB SUBDRIVER
5509 M:      Hans Verkuil <hverkuil@xs4all.nl>
5510 L:      linux-media@vger.kernel.org
5511 T:      git git://linuxtv.org/media_tree.git
5512 S:      Odd Fixes
5513 F:      drivers/media/usb/gspca/pac207.c
5514
5515 GSPCA SN9C20X SUBDRIVER
5516 M:      Brian Johnson <brijohn@gmail.com>
5517 L:      linux-media@vger.kernel.org
5518 T:      git git://linuxtv.org/media_tree.git
5519 S:      Maintained
5520 F:      drivers/media/usb/gspca/sn9c20x.c
5521
5522 GSPCA T613 SUBDRIVER
5523 M:      Leandro Costantino <lcostantino@gmail.com>
5524 L:      linux-media@vger.kernel.org
5525 T:      git git://linuxtv.org/media_tree.git
5526 S:      Maintained
5527 F:      drivers/media/usb/gspca/t613.c
5528
5529 GSPCA USB WEBCAM DRIVER
5530 M:      Hans Verkuil <hverkuil@xs4all.nl>
5531 L:      linux-media@vger.kernel.org
5532 T:      git git://linuxtv.org/media_tree.git
5533 S:      Odd Fixes
5534 F:      drivers/media/usb/gspca/
5535
5536 GUID PARTITION TABLE (GPT)
5537 M:      Davidlohr Bueso <dave@stgolabs.net>
5538 L:      linux-efi@vger.kernel.org
5539 S:      Maintained
5540 F:      block/partitions/efi.*
5541
5542 STK1160 USB VIDEO CAPTURE DRIVER
5543 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5544 L:      linux-media@vger.kernel.org
5545 T:      git git://linuxtv.org/media_tree.git
5546 S:      Maintained
5547 F:      drivers/media/usb/stk1160/
5548
5549 H8/300 ARCHITECTURE
5550 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5551 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5552 W:      http://uclinux-h8.sourceforge.jp
5553 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5554 S:      Maintained
5555 F:      arch/h8300/
5556 F:      drivers/clocksource/h8300_*.c
5557 F:      drivers/clk/h8300/
5558 F:      drivers/irqchip/irq-renesas-h8*.c
5559
5560 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5561 M:      Frank Seidel <frank@f-seidel.de>
5562 L:      platform-driver-x86@vger.kernel.org
5563 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5564 S:      Maintained
5565 F:      drivers/platform/x86/hdaps.c
5566
5567 HDPVR USB VIDEO ENCODER DRIVER
5568 M:      Hans Verkuil <hverkuil@xs4all.nl>
5569 L:      linux-media@vger.kernel.org
5570 T:      git git://linuxtv.org/media_tree.git
5571 W:      https://linuxtv.org
5572 S:      Odd Fixes
5573 F:      drivers/media/usb/hdpvr/
5574
5575 HWPOISON MEMORY FAILURE HANDLING
5576 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5577 L:      linux-mm@kvack.org
5578 S:      Maintained
5579 F:      mm/memory-failure.c
5580 F:      mm/hwpoison-inject.c
5581
5582 HYPERVISOR VIRTUAL CONSOLE DRIVER
5583 L:      linuxppc-dev@lists.ozlabs.org
5584 S:      Odd Fixes
5585 F:      drivers/tty/hvc/
5586
5587 HACKRF MEDIA DRIVER
5588 M:      Antti Palosaari <crope@iki.fi>
5589 L:      linux-media@vger.kernel.org
5590 W:      https://linuxtv.org
5591 W:      http://palosaari.fi/linux/
5592 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5593 T:      git git://linuxtv.org/anttip/media_tree.git
5594 S:      Maintained
5595 F:      drivers/media/usb/hackrf/
5596
5597 HARDWARE MONITORING
5598 M:      Jean Delvare <jdelvare@suse.com>
5599 M:      Guenter Roeck <linux@roeck-us.net>
5600 L:      linux-hwmon@vger.kernel.org
5601 W:      http://hwmon.wiki.kernel.org/
5602 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5604 S:      Maintained
5605 F:      Documentation/hwmon/
5606 F:      drivers/hwmon/
5607 F:      include/linux/hwmon*.h
5608
5609 HARDWARE RANDOM NUMBER GENERATOR CORE
5610 M:      Matt Mackall <mpm@selenic.com>
5611 M:      Herbert Xu <herbert@gondor.apana.org.au>
5612 L:      linux-crypto@vger.kernel.org
5613 S:      Odd fixes
5614 F:      Documentation/devicetree/bindings/rng/
5615 F:      Documentation/hw_random.txt
5616 F:      drivers/char/hw_random/
5617 F:      include/linux/hw_random.h
5618
5619 HARDWARE SPINLOCK CORE
5620 M:      Ohad Ben-Cohen <ohad@wizery.com>
5621 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5622 L:      linux-remoteproc@vger.kernel.org
5623 S:      Maintained
5624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5625 F:      Documentation/devicetree/bindings/hwlock/
5626 F:      Documentation/hwspinlock.txt
5627 F:      drivers/hwspinlock/
5628 F:      include/linux/hwspinlock.h
5629
5630 HARMONY SOUND DRIVER
5631 L:      linux-parisc@vger.kernel.org
5632 S:      Maintained
5633 F:      sound/parisc/harmony.*
5634
5635 HD29L2 MEDIA DRIVER
5636 M:      Antti Palosaari <crope@iki.fi>
5637 L:      linux-media@vger.kernel.org
5638 W:      https://linuxtv.org
5639 W:      http://palosaari.fi/linux/
5640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5641 T:      git git://linuxtv.org/anttip/media_tree.git
5642 S:      Maintained
5643 F:      drivers/media/dvb-frontends/hd29l2*
5644
5645 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
5646 M:      Brian Boylston <brian.boylston@hpe.com>
5647 S:      Supported
5648 F:      Documentation/watchdog/hpwdt.txt
5649 F:      drivers/watchdog/hpwdt.c
5650
5651 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5652 M:      Don Brace <don.brace@microsemi.com>
5653 L:      iss_storagedev@hp.com
5654 L:      esc.storagedev@microsemi.com
5655 L:      linux-scsi@vger.kernel.org
5656 S:      Supported
5657 F:      Documentation/scsi/hpsa.txt
5658 F:      drivers/scsi/hpsa*.[ch]
5659 F:      include/linux/cciss*.h
5660 F:      include/uapi/linux/cciss*.h
5661
5662 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5663 M:      Don Brace <don.brace@microsemi.com>
5664 L:      iss_storagedev@hp.com
5665 L:      esc.storagedev@microsemi.com
5666 L:      linux-scsi@vger.kernel.org
5667 S:      Supported
5668 F:      Documentation/blockdev/cciss.txt
5669 F:      drivers/block/cciss*
5670 F:      include/linux/cciss_ioctl.h
5671 F:      include/uapi/linux/cciss_ioctl.h
5672
5673 HFI1 DRIVER
5674 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
5675 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
5676 L:      linux-rdma@vger.kernel.org
5677 S:      Supported
5678 F:      drivers/infiniband/hw/hfi1
5679
5680 HFS FILESYSTEM
5681 L:      linux-fsdevel@vger.kernel.org
5682 S:      Orphan
5683 F:      Documentation/filesystems/hfs.txt
5684 F:      fs/hfs/
5685
5686 HFSPLUS FILESYSTEM
5687 L:      linux-fsdevel@vger.kernel.org
5688 S:      Orphan
5689 F:      Documentation/filesystems/hfsplus.txt
5690 F:      fs/hfsplus/
5691
5692 HGA FRAMEBUFFER DRIVER
5693 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5694 L:      linux-nvidia@lists.surfsouth.com
5695 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5696 S:      Maintained
5697 F:      drivers/video/fbdev/hgafb.c
5698
5699 HIBERNATION (aka Software Suspend, aka swsusp)
5700 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5701 M:      Pavel Machek <pavel@ucw.cz>
5702 L:      linux-pm@vger.kernel.org
5703 B:      https://bugzilla.kernel.org
5704 S:      Supported
5705 F:      arch/x86/power/
5706 F:      drivers/base/power/
5707 F:      kernel/power/
5708 F:      include/linux/suspend.h
5709 F:      include/linux/freezer.h
5710 F:      include/linux/pm.h
5711 F:      arch/*/include/asm/suspend*.h
5712
5713 HID CORE LAYER
5714 M:      Jiri Kosina <jikos@kernel.org>
5715 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5716 L:      linux-input@vger.kernel.org
5717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5718 S:      Maintained
5719 F:      drivers/hid/
5720 F:      include/linux/hid*
5721 F:      include/uapi/linux/hid*
5722
5723 HID SENSOR HUB DRIVERS
5724 M:      Jiri Kosina <jikos@kernel.org>
5725 M:      Jonathan Cameron <jic23@kernel.org>
5726 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5727 L:      linux-input@vger.kernel.org
5728 L:      linux-iio@vger.kernel.org
5729 S:      Maintained
5730 F:      Documentation/hid/hid-sensor*
5731 F:      drivers/hid/hid-sensor-*
5732 F:      drivers/iio/*/hid-*
5733 F:      include/linux/hid-sensor-*
5734
5735 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5736 M:      Thomas Gleixner <tglx@linutronix.de>
5737 L:      linux-kernel@vger.kernel.org
5738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5739 S:      Maintained
5740 F:      Documentation/timers/
5741 F:      kernel/time/hrtimer.c
5742 F:      kernel/time/clockevents.c
5743 F:      kernel/time/tick*.*
5744 F:      kernel/time/timer_*.c
5745 F:      include/linux/clockchips.h
5746 F:      include/linux/hrtimer.h
5747
5748 HIGH-SPEED SCC DRIVER FOR AX.25
5749 L:      linux-hams@vger.kernel.org
5750 S:      Orphan
5751 F:      drivers/net/hamradio/dmascc.c
5752 F:      drivers/net/hamradio/scc.c
5753
5754 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5755 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5756 W:      http://www.highpoint-tech.com
5757 S:      Supported
5758 F:      Documentation/scsi/hptiop.txt
5759 F:      drivers/scsi/hptiop.c
5760
5761 HIPPI
5762 M:      Jes Sorensen <jes@trained-monkey.org>
5763 L:      linux-hippi@sunsite.dk
5764 S:      Maintained
5765 F:      include/linux/hippidevice.h
5766 F:      include/uapi/linux/if_hippi.h
5767 F:      net/802/hippi.c
5768 F:      drivers/net/hippi/
5769
5770 HISILICON NETWORK SUBSYSTEM DRIVER
5771 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
5772 M:      Salil Mehta <salil.mehta@huawei.com>
5773 L:      netdev@vger.kernel.org
5774 W:      http://www.hisilicon.com
5775 S:      Maintained
5776 F:      drivers/net/ethernet/hisilicon/
5777 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
5778
5779 HISILICON ROCE DRIVER
5780 M:      Lijun Ou <oulijun@huawei.com>
5781 M:      Wei Hu(Xavier) <xavier.huwei@huawei.com>
5782 L:      linux-rdma@vger.kernel.org
5783 S:      Maintained
5784 F:      drivers/infiniband/hw/hns/
5785 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
5786
5787 HISILICON SAS Controller
5788 M:      John Garry <john.garry@huawei.com>
5789 W:      http://www.hisilicon.com
5790 S:      Supported
5791 F:      drivers/scsi/hisi_sas/
5792 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5793
5794 HOST AP DRIVER
5795 M:      Jouni Malinen <j@w1.fi>
5796 L:      linux-wireless@vger.kernel.org
5797 W:      http://w1.fi/hostap-driver.html
5798 S:      Obsolete
5799 F:      drivers/net/wireless/intersil/hostap/
5800
5801 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5802 L:      platform-driver-x86@vger.kernel.org
5803 S:      Orphan
5804 F:      drivers/platform/x86/tc1100-wmi.c
5805
5806 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5807 M:      Jaroslav Kysela <perex@perex.cz>
5808 S:      Maintained
5809 F:      drivers/net/ethernet/hp/hp100.*
5810
5811 HPET:   High Precision Event Timers driver
5812 M:      Clemens Ladisch <clemens@ladisch.de>
5813 S:      Maintained
5814 F:      Documentation/timers/hpet.txt
5815 F:      drivers/char/hpet.c
5816 F:      include/linux/hpet.h
5817 F:      include/uapi/linux/hpet.h
5818
5819 HPET:   x86
5820 S:      Orphan
5821 F:      arch/x86/kernel/hpet.c
5822 F:      arch/x86/include/asm/hpet.h
5823
5824 HPFS FILESYSTEM
5825 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5826 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5827 S:      Maintained
5828 F:      fs/hpfs/
5829
5830 HSI SUBSYSTEM
5831 M:      Sebastian Reichel <sre@kernel.org>
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5833 S:      Maintained
5834 F:      Documentation/ABI/testing/sysfs-bus-hsi
5835 F:      Documentation/device-drivers/serial-interfaces.rst
5836 F:      drivers/hsi/
5837 F:      include/linux/hsi/
5838 F:      include/uapi/linux/hsi/
5839
5840 HSO 3G MODEM DRIVER
5841 M:      Jan Dumon <j.dumon@option.com>
5842 W:      http://www.pharscape.org
5843 S:      Maintained
5844 F:      drivers/net/usb/hso.c
5845
5846 HSR NETWORK PROTOCOL
5847 M:      Arvid Brodin <arvid.brodin@alten.se>
5848 L:      netdev@vger.kernel.org
5849 S:      Maintained
5850 F:      net/hsr/
5851
5852 HTCPEN TOUCHSCREEN DRIVER
5853 M:      Pau Oliva Fora <pof@eslack.org>
5854 L:      linux-input@vger.kernel.org
5855 S:      Maintained
5856 F:      drivers/input/touchscreen/htcpen.c
5857
5858 HUGETLB FILESYSTEM
5859 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5860 S:      Maintained
5861 F:      fs/hugetlbfs/
5862
5863 HVA ST MEDIA DRIVER
5864 M:      Jean-Christophe Trotin <jean-christophe.trotin@st.com>
5865 L:      linux-media@vger.kernel.org
5866 T:      git git://linuxtv.org/media_tree.git
5867 W:      https://linuxtv.org
5868 S:      Supported
5869 F:      drivers/media/platform/sti/hva
5870
5871 Hyper-V CORE AND DRIVERS
5872 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5873 M:      Haiyang Zhang <haiyangz@microsoft.com>
5874 L:      devel@linuxdriverproject.org
5875 S:      Maintained
5876 F:      arch/x86/include/asm/mshyperv.h
5877 F:      arch/x86/include/uapi/asm/hyperv.h
5878 F:      arch/x86/kernel/cpu/mshyperv.c
5879 F:      drivers/hid/hid-hyperv.c
5880 F:      drivers/hv/
5881 F:      drivers/input/serio/hyperv-keyboard.c
5882 F:      drivers/pci/host/pci-hyperv.c
5883 F:      drivers/net/hyperv/
5884 F:      drivers/scsi/storvsc_drv.c
5885 F:      drivers/video/fbdev/hyperv_fb.c
5886 F:      include/linux/hyperv.h
5887 F:      tools/hv/
5888 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5889
5890 I2C MUXES
5891 M:      Peter Rosin <peda@axentia.se>
5892 L:      linux-i2c@vger.kernel.org
5893 S:      Maintained
5894 F:      Documentation/i2c/i2c-topology
5895 F:      Documentation/i2c/muxes/
5896 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5897 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
5898 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
5899 F:      drivers/i2c/i2c-mux.c
5900 F:      drivers/i2c/muxes/
5901 F:      include/linux/i2c-mux.h
5902
5903 I2C OVER PARALLEL PORT
5904 M:      Jean Delvare <jdelvare@suse.com>
5905 L:      linux-i2c@vger.kernel.org
5906 S:      Maintained
5907 F:      Documentation/i2c/busses/i2c-parport
5908 F:      Documentation/i2c/busses/i2c-parport-light
5909 F:      drivers/i2c/busses/i2c-parport.c
5910 F:      drivers/i2c/busses/i2c-parport-light.c
5911
5912 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5913 M:      Jean Delvare <jdelvare@suse.com>
5914 L:      linux-i2c@vger.kernel.org
5915 S:      Maintained
5916 F:      Documentation/i2c/busses/i2c-ali1535
5917 F:      Documentation/i2c/busses/i2c-ali1563
5918 F:      Documentation/i2c/busses/i2c-ali15x3
5919 F:      Documentation/i2c/busses/i2c-amd756
5920 F:      Documentation/i2c/busses/i2c-amd8111
5921 F:      Documentation/i2c/busses/i2c-i801
5922 F:      Documentation/i2c/busses/i2c-nforce2
5923 F:      Documentation/i2c/busses/i2c-piix4
5924 F:      Documentation/i2c/busses/i2c-sis5595
5925 F:      Documentation/i2c/busses/i2c-sis630
5926 F:      Documentation/i2c/busses/i2c-sis96x
5927 F:      Documentation/i2c/busses/i2c-via
5928 F:      Documentation/i2c/busses/i2c-viapro
5929 F:      drivers/i2c/busses/i2c-ali1535.c
5930 F:      drivers/i2c/busses/i2c-ali1563.c
5931 F:      drivers/i2c/busses/i2c-ali15x3.c
5932 F:      drivers/i2c/busses/i2c-amd756.c
5933 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5934 F:      drivers/i2c/busses/i2c-amd8111.c
5935 F:      drivers/i2c/busses/i2c-i801.c
5936 F:      drivers/i2c/busses/i2c-isch.c
5937 F:      drivers/i2c/busses/i2c-nforce2.c
5938 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5939 F:      drivers/i2c/busses/i2c-piix4.c
5940 F:      drivers/i2c/busses/i2c-sis5595.c
5941 F:      drivers/i2c/busses/i2c-sis630.c
5942 F:      drivers/i2c/busses/i2c-sis96x.c
5943 F:      drivers/i2c/busses/i2c-via.c
5944 F:      drivers/i2c/busses/i2c-viapro.c
5945
5946 I2C/SMBUS ISMT DRIVER
5947 M:      Seth Heasley <seth.heasley@intel.com>
5948 M:      Neil Horman <nhorman@tuxdriver.com>
5949 L:      linux-i2c@vger.kernel.org
5950 F:      drivers/i2c/busses/i2c-ismt.c
5951 F:      Documentation/i2c/busses/i2c-ismt
5952
5953 I2C/SMBUS STUB DRIVER
5954 M:      Jean Delvare <jdelvare@suse.com>
5955 L:      linux-i2c@vger.kernel.org
5956 S:      Maintained
5957 F:      drivers/i2c/i2c-stub.c
5958
5959 I2C SUBSYSTEM
5960 M:      Wolfram Sang <wsa@the-dreams.de>
5961 L:      linux-i2c@vger.kernel.org
5962 W:      https://i2c.wiki.kernel.org/
5963 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5965 S:      Maintained
5966 F:      Documentation/devicetree/bindings/i2c/
5967 F:      Documentation/i2c/
5968 F:      drivers/i2c/
5969 F:      drivers/i2c/*/
5970 F:      include/linux/i2c.h
5971 F:      include/linux/i2c-*.h
5972 F:      include/uapi/linux/i2c.h
5973 F:      include/uapi/linux/i2c-*.h
5974
5975 I2C ACPI SUPPORT
5976 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5977 L:      linux-i2c@vger.kernel.org
5978 L:      linux-acpi@vger.kernel.org
5979 S:      Maintained
5980
5981 I2C-TAOS-EVM DRIVER
5982 M:      Jean Delvare <jdelvare@suse.com>
5983 L:      linux-i2c@vger.kernel.org
5984 S:      Maintained
5985 F:      Documentation/i2c/busses/i2c-taos-evm
5986 F:      drivers/i2c/busses/i2c-taos-evm.c
5987
5988 I2C-TINY-USB DRIVER
5989 M:      Till Harbaum <till@harbaum.org>
5990 L:      linux-i2c@vger.kernel.org
5991 W:      http://www.harbaum.org/till/i2c_tiny_usb
5992 S:      Maintained
5993 F:      drivers/i2c/busses/i2c-tiny-usb.c
5994
5995 i386 BOOT CODE
5996 M:      "H. Peter Anvin" <hpa@zytor.com>
5997 S:      Maintained
5998 F:      arch/x86/boot/
5999
6000 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6001 M:      "H. Peter Anvin" <hpa@zytor.com>
6002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6003 S:      Maintained
6004
6005 IA64 (Itanium) PLATFORM
6006 M:      Tony Luck <tony.luck@intel.com>
6007 M:      Fenghua Yu <fenghua.yu@intel.com>
6008 L:      linux-ia64@vger.kernel.org
6009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6010 S:      Maintained
6011 F:      arch/ia64/
6012
6013 IBM Power VMX Cryptographic instructions
6014 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6015 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6016 L:      linux-crypto@vger.kernel.org
6017 S:      Supported
6018 F:      drivers/crypto/vmx/Makefile
6019 F:      drivers/crypto/vmx/Kconfig
6020 F:      drivers/crypto/vmx/vmx.c
6021 F:      drivers/crypto/vmx/aes*
6022 F:      drivers/crypto/vmx/ghash*
6023 F:      drivers/crypto/vmx/ppc-xlate.pl
6024
6025 IBM Power in-Nest Crypto Acceleration
6026 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6027 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6028 L:      linux-crypto@vger.kernel.org
6029 S:      Supported
6030 F:      drivers/crypto/nx/Makefile
6031 F:      drivers/crypto/nx/Kconfig
6032 F:      drivers/crypto/nx/nx-aes*
6033 F:      drivers/crypto/nx/nx-sha*
6034 F:      drivers/crypto/nx/nx.*
6035 F:      drivers/crypto/nx/nx_csbcpb.h
6036 F:      drivers/crypto/nx/nx_debugfs.h
6037
6038 IBM Power 842 compression accelerator
6039 M:      Dan Streetman <ddstreet@ieee.org>
6040 S:      Supported
6041 F:      drivers/crypto/nx/Makefile
6042 F:      drivers/crypto/nx/Kconfig
6043 F:      drivers/crypto/nx/nx-842*
6044 F:      include/linux/sw842.h
6045 F:      crypto/842.c
6046 F:      lib/842/
6047
6048 IBM Power Linux RAID adapter
6049 M:      Brian King <brking@us.ibm.com>
6050 S:      Supported
6051 F:      drivers/scsi/ipr.*
6052
6053 IBM Power Virtual Ethernet Device Driver
6054 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6055 L:      netdev@vger.kernel.org
6056 S:      Supported
6057 F:      drivers/net/ethernet/ibm/ibmveth.*
6058
6059 IBM Power SRIOV Virtual NIC Device Driver
6060 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6061 M:      John Allen <jallen@linux.vnet.ibm.com>
6062 L:      netdev@vger.kernel.org
6063 S:      Supported
6064 F:      drivers/net/ethernet/ibm/ibmvnic.*
6065
6066 IBM Power Virtual SCSI Device Drivers
6067 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6068 L:      linux-scsi@vger.kernel.org
6069 S:      Supported
6070 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6071 F:      include/scsi/viosrp.h
6072
6073 IBM Power Virtual SCSI Device Target Driver
6074 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6075 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
6076 L:      linux-scsi@vger.kernel.org
6077 L:      target-devel@vger.kernel.org
6078 S:      Supported
6079 F:      drivers/scsi/ibmvscsi_tgt/
6080
6081 IBM Power Virtual FC Device Drivers
6082 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6083 L:      linux-scsi@vger.kernel.org
6084 S:      Supported
6085 F:      drivers/scsi/ibmvscsi/ibmvfc*
6086
6087 IBM ServeRAID RAID DRIVER
6088 S:      Orphan
6089 F:      drivers/scsi/ips.*
6090
6091 ICH LPC AND GPIO DRIVER
6092 M:      Peter Tyser <ptyser@xes-inc.com>
6093 S:      Maintained
6094 F:      drivers/mfd/lpc_ich.c
6095 F:      drivers/gpio/gpio-ich.c
6096
6097 IDE SUBSYSTEM
6098 M:      "David S. Miller" <davem@davemloft.net>
6099 L:      linux-ide@vger.kernel.org
6100 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6102 S:      Maintained
6103 F:      Documentation/ide/
6104 F:      drivers/ide/
6105 F:      include/linux/ide.h
6106
6107 IDEAPAD LAPTOP EXTRAS DRIVER
6108 M:      Ike Panhc <ike.pan@canonical.com>
6109 L:      platform-driver-x86@vger.kernel.org
6110 W:      http://launchpad.net/ideapad-laptop
6111 S:      Maintained
6112 F:      drivers/platform/x86/ideapad-laptop.c
6113
6114 IDEAPAD LAPTOP SLIDEBAR DRIVER
6115 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
6116 L:      linux-input@vger.kernel.org
6117 W:      https://github.com/o2genum/ideapad-slidebar
6118 S:      Maintained
6119 F:      drivers/input/misc/ideapad_slidebar.c
6120
6121 IDE/ATAPI DRIVERS
6122 M:      Borislav Petkov <bp@alien8.de>
6123 L:      linux-ide@vger.kernel.org
6124 S:      Maintained
6125 F:      Documentation/cdrom/ide-cd
6126 F:      drivers/ide/ide-cd*
6127
6128 IEEE 802.15.4 SUBSYSTEM
6129 M:      Alexander Aring <aar@pengutronix.de>
6130 M:      Stefan Schmidt <stefan@osg.samsung.com>
6131 L:      linux-wpan@vger.kernel.org
6132 W:      http://wpan.cakelab.org/
6133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6135 S:      Maintained
6136 F:      net/ieee802154/
6137 F:      net/mac802154/
6138 F:      drivers/net/ieee802154/
6139 F:      include/linux/nl802154.h
6140 F:      include/linux/ieee802154.h
6141 F:      include/net/nl802154.h
6142 F:      include/net/mac802154.h
6143 F:      include/net/af_ieee802154.h
6144 F:      include/net/cfg802154.h
6145 F:      include/net/ieee802154_netdev.h
6146 F:      Documentation/networking/ieee802154.txt
6147
6148 IGORPLUG-USB IR RECEIVER
6149 M:      Sean Young <sean@mess.org>
6150 L:      linux-media@vger.kernel.org
6151 S:      Maintained
6152 F:      drivers/media/rc/igorplugusb.c
6153
6154 IGUANAWORKS USB IR TRANSCEIVER
6155 M:      Sean Young <sean@mess.org>
6156 L:      linux-media@vger.kernel.org
6157 S:      Maintained
6158 F:      drivers/media/rc/iguanair.c
6159
6160 IIO SUBSYSTEM AND DRIVERS
6161 M:      Jonathan Cameron <jic23@kernel.org>
6162 R:      Hartmut Knaack <knaack.h@gmx.de>
6163 R:      Lars-Peter Clausen <lars@metafoo.de>
6164 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6165 L:      linux-iio@vger.kernel.org
6166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6167 S:      Maintained
6168 F:      Documentation/devicetree/bindings/iio/
6169 F:      drivers/iio/
6170 F:      drivers/staging/iio/
6171 F:      include/linux/iio/
6172 F:      tools/iio/
6173
6174 IKANOS/ADI EAGLE ADSL USB DRIVER
6175 M:      Matthieu Castet <castet.matthieu@free.fr>
6176 M:      Stanislaw Gruszka <stf_xl@wp.pl>
6177 S:      Maintained
6178 F:      drivers/usb/atm/ueagle-atm.c
6179
6180 IMGTEC ASCII LCD DRIVER
6181 M:      Paul Burton <paul.burton@imgtec.com>
6182 S:      Maintained
6183 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6184 F:      drivers/auxdisplay/img-ascii-lcd.c
6185
6186 INA209 HARDWARE MONITOR DRIVER
6187 M:      Guenter Roeck <linux@roeck-us.net>
6188 L:      linux-hwmon@vger.kernel.org
6189 S:      Maintained
6190 F:      Documentation/hwmon/ina209
6191 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6192 F:      drivers/hwmon/ina209.c
6193
6194 INA2XX HARDWARE MONITOR DRIVER
6195 M:      Guenter Roeck <linux@roeck-us.net>
6196 L:      linux-hwmon@vger.kernel.org
6197 S:      Maintained
6198 F:      Documentation/hwmon/ina2xx
6199 F:      drivers/hwmon/ina2xx.c
6200 F:      include/linux/platform_data/ina2xx.h
6201
6202 INDUSTRY PACK SUBSYSTEM (IPACK)
6203 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6204 M:      Jens Taprogge <jens.taprogge@taprogge.org>
6205 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6206 L:      industrypack-devel@lists.sourceforge.net
6207 W:      http://industrypack.sourceforge.net
6208 S:      Maintained
6209 F:      drivers/ipack/
6210
6211 INGENIC JZ4780 DMA Driver
6212 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6213 S:      Maintained
6214 F:      drivers/dma/dma-jz4780.c
6215
6216 INGENIC JZ4780 NAND DRIVER
6217 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
6218 L:      linux-mtd@lists.infradead.org
6219 S:      Maintained
6220 F:      drivers/mtd/nand/jz4780_*
6221
6222 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6223 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6224 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6225 L:      linux-ima-devel@lists.sourceforge.net
6226 L:      linux-ima-user@lists.sourceforge.net
6227 L:      linux-security-module@vger.kernel.org
6228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6229 S:      Supported
6230 F:      security/integrity/ima/
6231
6232 IMGTEC IR DECODER DRIVER
6233 M:      James Hogan <james.hogan@imgtec.com>
6234 S:      Maintained
6235 F:      drivers/media/rc/img-ir/
6236
6237 IMS TWINTURBO FRAMEBUFFER DRIVER
6238 L:      linux-fbdev@vger.kernel.org
6239 S:      Orphan
6240 F:      drivers/video/fbdev/imsttfb.c
6241
6242 INFINIBAND SUBSYSTEM
6243 M:      Doug Ledford <dledford@redhat.com>
6244 M:      Sean Hefty <sean.hefty@intel.com>
6245 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
6246 L:      linux-rdma@vger.kernel.org
6247 W:      http://www.openfabrics.org/
6248 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6250 S:      Supported
6251 F:      Documentation/infiniband/
6252 F:      drivers/infiniband/
6253 F:      include/uapi/linux/if_infiniband.h
6254 F:      include/uapi/rdma/
6255 F:      include/rdma/
6256
6257 INOTIFY
6258 M:      John McCutchan <john@johnmccutchan.com>
6259 M:      Robert Love <rlove@rlove.org>
6260 M:      Eric Paris <eparis@parisplace.org>
6261 S:      Maintained
6262 F:      Documentation/filesystems/inotify.txt
6263 F:      fs/notify/inotify/
6264 F:      include/linux/inotify.h
6265 F:      include/uapi/linux/inotify.h
6266
6267 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6268 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6269 L:      linux-input@vger.kernel.org
6270 Q:      http://patchwork.kernel.org/project/linux-input/list/
6271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6272 S:      Maintained
6273 F:      drivers/input/
6274 F:      include/linux/input.h
6275 F:      include/uapi/linux/input.h
6276 F:      include/linux/input/
6277 F:      Documentation/devicetree/bindings/input/
6278
6279 INPUT MULTITOUCH (MT) PROTOCOL
6280 M:      Henrik Rydberg <rydberg@bitmath.org>
6281 L:      linux-input@vger.kernel.org
6282 S:      Odd fixes
6283 F:      Documentation/input/multi-touch-protocol.txt
6284 F:      drivers/input/input-mt.c
6285 K:      \b(ABS|SYN)_MT_
6286
6287 INTEL ASoC BDW/HSW DRIVERS
6288 M:      Jie Yang <yang.jie@linux.intel.com>
6289 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6290 S:      Supported
6291 F:      sound/soc/intel/common/sst-dsp*
6292 F:      sound/soc/intel/common/sst-firmware.c
6293 F:      sound/soc/intel/boards/broadwell.c
6294 F:      sound/soc/intel/haswell/
6295
6296 INTEL C600 SERIES SAS CONTROLLER DRIVER
6297 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
6298 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6299 L:      linux-scsi@vger.kernel.org
6300 T:      git git://git.code.sf.net/p/intel-sas/isci
6301 S:      Supported
6302 F:      drivers/scsi/isci/
6303
6304 INTEL HID EVENT DRIVER
6305 M:      Alex Hung <alex.hung@canonical.com>
6306 L:      platform-driver-x86@vger.kernel.org
6307 S:      Maintained
6308 F:      drivers/platform/x86/intel-hid.c
6309
6310 INTEL VIRTUAL BUTTON DRIVER
6311 M:      AceLan Kao <acelan.kao@canonical.com>
6312 L:      platform-driver-x86@vger.kernel.org
6313 S:      Maintained
6314 F:      drivers/platform/x86/intel-vbtn.c
6315
6316 INTEL IDLE DRIVER
6317 M:      Len Brown <lenb@kernel.org>
6318 L:      linux-pm@vger.kernel.org
6319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6320 S:      Supported
6321 F:      drivers/idle/intel_idle.c
6322
6323 INTEL INTEGRATED SENSOR HUB DRIVER
6324 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6325 M:      Jiri Kosina <jikos@kernel.org>
6326 L:      linux-input@vger.kernel.org
6327 S:      Maintained
6328 F:      drivers/hid/intel-ish-hid/
6329
6330 INTEL PSTATE DRIVER
6331 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6332 M:      Len Brown <lenb@kernel.org>
6333 L:      linux-pm@vger.kernel.org
6334 S:      Supported
6335 F:      drivers/cpufreq/intel_pstate.c
6336
6337 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6338 M:      Maik Broemme <mbroemme@libmpq.org>
6339 L:      linux-fbdev@vger.kernel.org
6340 S:      Maintained
6341 F:      Documentation/fb/intelfb.txt
6342 F:      drivers/video/fbdev/intelfb/
6343
6344 INTEL 810/815 FRAMEBUFFER DRIVER
6345 M:      Antonino Daplas <adaplas@gmail.com>
6346 L:      linux-fbdev@vger.kernel.org
6347 S:      Maintained
6348 F:      drivers/video/fbdev/i810/
6349
6350 INTEL MENLOW THERMAL DRIVER
6351 M:      Sujith Thomas <sujith.thomas@intel.com>
6352 L:      platform-driver-x86@vger.kernel.org
6353 W:      https://01.org/linux-acpi
6354 S:      Supported
6355 F:      drivers/platform/x86/intel_menlow.c
6356
6357 INTEL I/OAT DMA DRIVER
6358 M:      Dave Jiang <dave.jiang@intel.com>
6359 R:      Dan Williams <dan.j.williams@intel.com>
6360 L:      dmaengine@vger.kernel.org
6361 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6362 S:      Supported
6363 F:      drivers/dma/ioat*
6364
6365 INTEL IOMMU (VT-d)
6366 M:      David Woodhouse <dwmw2@infradead.org>
6367 L:      iommu@lists.linux-foundation.org
6368 T:      git git://git.infradead.org/iommu-2.6.git
6369 S:      Supported
6370 F:      drivers/iommu/intel-iommu.c
6371 F:      include/linux/intel-iommu.h
6372
6373 INTEL IOP-ADMA DMA DRIVER
6374 R:      Dan Williams <dan.j.williams@intel.com>
6375 S:      Odd fixes
6376 F:      drivers/dma/iop-adma.c
6377
6378 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6379 M:      Krzysztof Halasa <khalasa@piap.pl>
6380 S:      Maintained
6381 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6382 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6383 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6384 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6385 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6386 F:      drivers/net/wan/ixp4xx_hss.c
6387
6388 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6389 M:      Deepak Saxena <dsaxena@plexity.net>
6390 S:      Maintained
6391 F:      drivers/char/hw_random/ixp4xx-rng.c
6392
6393 INTEL ETHERNET DRIVERS
6394 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6395 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6396 W:      http://www.intel.com/support/feedback.htm
6397 W:      http://e1000.sourceforge.net/
6398 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6401 S:      Supported
6402 F:      Documentation/networking/e100.txt
6403 F:      Documentation/networking/e1000.txt
6404 F:      Documentation/networking/e1000e.txt
6405 F:      Documentation/networking/igb.txt
6406 F:      Documentation/networking/igbvf.txt
6407 F:      Documentation/networking/ixgb.txt
6408 F:      Documentation/networking/ixgbe.txt
6409 F:      Documentation/networking/ixgbevf.txt
6410 F:      Documentation/networking/i40e.txt
6411 F:      Documentation/networking/i40evf.txt
6412 F:      drivers/net/ethernet/intel/
6413 F:      drivers/net/ethernet/intel/*/
6414
6415 INTEL RDMA RNIC DRIVER
6416 M:     Faisal Latif <faisal.latif@intel.com>
6417 R:     Chien Tin Tung <chien.tin.tung@intel.com>
6418 R:     Mustafa Ismail <mustafa.ismail@intel.com>
6419 R:     Shiraz Saleem <shiraz.saleem@intel.com>
6420 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
6421 L:     linux-rdma@vger.kernel.org
6422 S:     Supported
6423 F:     drivers/infiniband/hw/i40iw/
6424
6425 INTEL MERRIFIELD GPIO DRIVER
6426 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6427 L:      linux-gpio@vger.kernel.org
6428 S:      Maintained
6429 F:      drivers/gpio/gpio-merrifield.c
6430
6431 INTEL-MID GPIO DRIVER
6432 M:      David Cohen <david.a.cohen@linux.intel.com>
6433 L:      linux-gpio@vger.kernel.org
6434 S:      Maintained
6435 F:      drivers/gpio/gpio-intel-mid.c
6436
6437 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6438 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
6439 L:      linux-wireless@vger.kernel.org
6440 S:      Maintained
6441 F:      Documentation/networking/README.ipw2100
6442 F:      Documentation/networking/README.ipw2200
6443 F:      drivers/net/wireless/intel/ipw2x00/
6444
6445 INTEL(R) TRACE HUB
6446 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6447 S:      Supported
6448 F:      Documentation/trace/intel_th.txt
6449 F:      drivers/hwtracing/intel_th/
6450
6451 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6452 M:      Ning Sun <ning.sun@intel.com>
6453 L:      tboot-devel@lists.sourceforge.net
6454 W:      http://tboot.sourceforge.net
6455 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6456 S:      Supported
6457 F:      Documentation/intel_txt.txt
6458 F:      include/linux/tboot.h
6459 F:      arch/x86/kernel/tboot.c
6460
6461 INTEL WIRELESS WIMAX CONNECTION 2400
6462 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6463 M:      linux-wimax@intel.com
6464 L:      wimax@linuxwimax.org (subscribers-only)
6465 S:      Supported
6466 W:      http://linuxwimax.org
6467 F:      Documentation/wimax/README.i2400m
6468 F:      drivers/net/wimax/i2400m/
6469 F:      include/uapi/linux/wimax/i2400m.h
6470
6471 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6472 M:      Stanislaw Gruszka <sgruszka@redhat.com>
6473 L:      linux-wireless@vger.kernel.org
6474 S:      Supported
6475 F:      drivers/net/wireless/intel/iwlegacy/
6476
6477 INTEL WIRELESS WIFI LINK (iwlwifi)
6478 M:      Johannes Berg <johannes.berg@intel.com>
6479 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6480 M:      Luca Coelho <luciano.coelho@intel.com>
6481 M:      Intel Linux Wireless <linuxwifi@intel.com>
6482 L:      linux-wireless@vger.kernel.org
6483 W:      http://intellinuxwireless.org
6484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6485 S:      Supported
6486 F:      drivers/net/wireless/intel/iwlwifi/
6487
6488 INTEL MANAGEMENT ENGINE (mei)
6489 M:      Tomas Winkler <tomas.winkler@intel.com>
6490 L:      linux-kernel@vger.kernel.org
6491 S:      Supported
6492 F:      include/uapi/linux/mei.h
6493 F:      include/linux/mei_cl_bus.h
6494 F:      drivers/misc/mei/*
6495 F:      drivers/watchdog/mei_wdt.c
6496 F:      Documentation/misc-devices/mei/*
6497 F:      samples/mei/*
6498
6499 INTEL MIC DRIVERS (mic)
6500 M:      Sudeep Dutt <sudeep.dutt@intel.com>
6501 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
6502 S:      Supported
6503 W:      https://github.com/sudeepdutt/mic
6504 W:      http://software.intel.com/en-us/mic-developer
6505 F:      include/linux/mic_bus.h
6506 F:      include/linux/scif.h
6507 F:      include/uapi/linux/mic_common.h
6508 F:      include/uapi/linux/mic_ioctl.h
6509 F:      include/uapi/linux/scif_ioctl.h
6510 F:      drivers/misc/mic/
6511 F:      drivers/dma/mic_x100_dma.c
6512 F:      drivers/dma/mic_x100_dma.h
6513 F:      Documentation/mic/
6514
6515 INTEL PMC/P-Unit IPC DRIVER
6516 M:      Zha Qipeng<qipeng.zha@intel.com>
6517 L:      platform-driver-x86@vger.kernel.org
6518 S:      Maintained
6519 F:      drivers/platform/x86/intel_pmc_ipc.c
6520 F:      drivers/platform/x86/intel_punit_ipc.c
6521 F:      arch/x86/include/asm/intel_pmc_ipc.h
6522 F:      arch/x86/include/asm/intel_punit_ipc.h
6523
6524 INTEL TELEMETRY DRIVER
6525 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6526 L:      platform-driver-x86@vger.kernel.org
6527 S:      Maintained
6528 F:      arch/x86/include/asm/intel_telemetry.h
6529 F:      drivers/platform/x86/intel_telemetry*
6530
6531 INTEL PMC CORE DRIVER
6532 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6533 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6534 L:      platform-driver-x86@vger.kernel.org
6535 S:      Maintained
6536 F:      arch/x86/include/asm/pmc_core.h
6537 F:      drivers/platform/x86/intel_pmc_core*
6538
6539 IOC3 ETHERNET DRIVER
6540 M:      Ralf Baechle <ralf@linux-mips.org>
6541 L:      linux-mips@linux-mips.org
6542 S:      Maintained
6543 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6544
6545 IOC3 SERIAL DRIVER
6546 M:      Pat Gefre <pfg@sgi.com>
6547 L:      linux-serial@vger.kernel.org
6548 S:      Maintained
6549 F:      drivers/tty/serial/ioc3_serial.c
6550
6551 IOMMU DRIVERS
6552 M:      Joerg Roedel <joro@8bytes.org>
6553 L:      iommu@lists.linux-foundation.org
6554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6555 S:      Maintained
6556 F:      Documentation/devicetree/bindings/iommu/
6557 F:      drivers/iommu/
6558
6559 IP MASQUERADING
6560 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6561 S:      Maintained
6562 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6563
6564 IPMI SUBSYSTEM
6565 M:      Corey Minyard <minyard@acm.org>
6566 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
6567 W:      http://openipmi.sourceforge.net/
6568 S:      Supported
6569 F:      Documentation/IPMI.txt
6570 F:      drivers/char/ipmi/
6571 F:      include/linux/ipmi*
6572 F:      include/uapi/linux/ipmi*
6573
6574 QCOM AUDIO (ASoC) DRIVERS
6575 M:      Patrick Lai <plai@codeaurora.org>
6576 M:      Banajit Goswami <bgoswami@codeaurora.org>
6577 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6578 S:      Supported
6579 F:      sound/soc/qcom/
6580
6581 IPS SCSI RAID DRIVER
6582 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6583 L:      linux-scsi@vger.kernel.org
6584 W:      http://www.adaptec.com/
6585 S:      Maintained
6586 F:      drivers/scsi/ips*
6587
6588 IPVS
6589 M:      Wensong Zhang <wensong@linux-vs.org>
6590 M:      Simon Horman <horms@verge.net.au>
6591 M:      Julian Anastasov <ja@ssi.bg>
6592 L:      netdev@vger.kernel.org
6593 L:      lvs-devel@vger.kernel.org
6594 S:      Maintained
6595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6597 F:      Documentation/networking/ipvs-sysctl.txt
6598 F:      include/net/ip_vs.h
6599 F:      include/uapi/linux/ip_vs.h
6600 F:      net/netfilter/ipvs/
6601
6602 IPWIRELESS DRIVER
6603 M:      Jiri Kosina <jikos@kernel.org>
6604 M:      David Sterba <dsterba@suse.com>
6605 S:      Odd Fixes
6606 F:      drivers/tty/ipwireless/
6607
6608 IPX NETWORK LAYER
6609 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6610 L:      netdev@vger.kernel.org
6611 S:      Maintained
6612 F:      include/net/ipx.h
6613 F:      include/uapi/linux/ipx.h
6614 F:      net/ipx/
6615
6616 IRDA SUBSYSTEM
6617 M:      Samuel Ortiz <samuel@sortiz.org>
6618 L:      irda-users@lists.sourceforge.net (subscribers-only)
6619 L:      netdev@vger.kernel.org
6620 W:      http://irda.sourceforge.net/
6621 S:      Maintained
6622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6623 F:      Documentation/networking/irda.txt
6624 F:      drivers/net/irda/
6625 F:      include/net/irda/
6626 F:      net/irda/
6627
6628 IRQ SUBSYSTEM
6629 M:      Thomas Gleixner <tglx@linutronix.de>
6630 L:      linux-kernel@vger.kernel.org
6631 S:      Maintained
6632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6633 F:      kernel/irq/
6634
6635 IRQCHIP DRIVERS
6636 M:      Thomas Gleixner <tglx@linutronix.de>
6637 M:      Jason Cooper <jason@lakedaemon.net>
6638 M:      Marc Zyngier <marc.zyngier@arm.com>
6639 L:      linux-kernel@vger.kernel.org
6640 S:      Maintained
6641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6642 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6643 F:      Documentation/devicetree/bindings/interrupt-controller/
6644 F:      drivers/irqchip/
6645
6646 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6647 M:      Marc Zyngier <marc.zyngier@arm.com>
6648 S:      Maintained
6649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6650 F:      Documentation/IRQ-domain.txt
6651 F:      include/linux/irqdomain.h
6652 F:      kernel/irq/irqdomain.c
6653 F:      kernel/irq/msi.c
6654
6655 ISA
6656 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6657 S:      Maintained
6658 F:      Documentation/isa.txt
6659 F:      drivers/base/isa.c
6660 F:      include/linux/isa.h
6661
6662 ISAPNP
6663 M:      Jaroslav Kysela <perex@perex.cz>
6664 S:      Maintained
6665 F:      Documentation/isapnp.txt
6666 F:      drivers/pnp/isapnp/
6667 F:      include/linux/isapnp.h
6668
6669 ISA RADIO MODULE
6670 M:      Hans Verkuil <hverkuil@xs4all.nl>
6671 L:      linux-media@vger.kernel.org
6672 T:      git git://linuxtv.org/media_tree.git
6673 W:      https://linuxtv.org
6674 S:      Maintained
6675 F:      drivers/media/radio/radio-isa*
6676
6677 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6678 M:      Peter Jones <pjones@redhat.com>
6679 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6680 S:      Maintained
6681 F:      drivers/firmware/iscsi_ibft*
6682
6683 ISCSI
6684 M:      Lee Duncan <lduncan@suse.com>
6685 M:      Chris Leech <cleech@redhat.com>
6686 L:      open-iscsi@googlegroups.com
6687 W:      www.open-iscsi.com
6688 S:      Maintained
6689 F:      drivers/scsi/*iscsi*
6690 F:      include/scsi/*iscsi*
6691
6692 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6693 M:      Or Gerlitz <ogerlitz@mellanox.com>
6694 M:      Sagi Grimberg <sagi@grimberg.me>
6695 M:      Roi Dayan <roid@mellanox.com>
6696 L:      linux-rdma@vger.kernel.org
6697 S:      Supported
6698 W:      http://www.openfabrics.org
6699 W:      www.open-iscsi.org
6700 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6701 F:      drivers/infiniband/ulp/iser/
6702
6703 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6704 M:      Sagi Grimberg <sagi@grimberg.me>
6705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6706 L:      linux-rdma@vger.kernel.org
6707 L:      target-devel@vger.kernel.org
6708 S:      Supported
6709 W:      http://www.linux-iscsi.org
6710 F:      drivers/infiniband/ulp/isert
6711
6712 ISDN SUBSYSTEM
6713 M:      Karsten Keil <isdn@linux-pingi.de>
6714 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6715 L:      netdev@vger.kernel.org
6716 W:      http://www.isdn4linux.de
6717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6718 S:      Maintained
6719 F:      Documentation/isdn/
6720 F:      drivers/isdn/
6721 F:      include/linux/isdn.h
6722 F:      include/linux/isdn/
6723 F:      include/uapi/linux/isdn.h
6724 F:      include/uapi/linux/isdn/
6725
6726 ISDN SUBSYSTEM (Eicon active card driver)
6727 M:      Armin Schindler <mac@melware.de>
6728 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6729 W:      http://www.melware.de
6730 S:      Maintained
6731 F:      drivers/isdn/hardware/eicon/
6732
6733 IT87 HARDWARE MONITORING DRIVER
6734 M:      Jean Delvare <jdelvare@suse.com>
6735 L:      linux-hwmon@vger.kernel.org
6736 S:      Maintained
6737 F:      Documentation/hwmon/it87
6738 F:      drivers/hwmon/it87.c
6739
6740 IT913X MEDIA DRIVER
6741 M:      Antti Palosaari <crope@iki.fi>
6742 L:      linux-media@vger.kernel.org
6743 W:      https://linuxtv.org
6744 W:      http://palosaari.fi/linux/
6745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6746 T:      git git://linuxtv.org/anttip/media_tree.git
6747 S:      Maintained
6748 F:      drivers/media/tuners/it913x*
6749
6750 IVTV VIDEO4LINUX DRIVER
6751 M:      Andy Walls <awalls@md.metrocast.net>
6752 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6753 L:      linux-media@vger.kernel.org
6754 T:      git git://linuxtv.org/media_tree.git
6755 W:      http://www.ivtvdriver.org
6756 S:      Maintained
6757 F:      Documentation/media/v4l-drivers/ivtv*
6758 F:      drivers/media/pci/ivtv/
6759 F:      include/uapi/linux/ivtv*
6760
6761 IX2505V MEDIA DRIVER
6762 M:      Malcolm Priestley <tvboxspy@gmail.com>
6763 L:      linux-media@vger.kernel.org
6764 W:      https://linuxtv.org
6765 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6766 S:      Maintained
6767 F:      drivers/media/dvb-frontends/ix2505v*
6768
6769 JC42.4 TEMPERATURE SENSOR DRIVER
6770 M:      Guenter Roeck <linux@roeck-us.net>
6771 L:      linux-hwmon@vger.kernel.org
6772 S:      Maintained
6773 F:      drivers/hwmon/jc42.c
6774 F:      Documentation/hwmon/jc42
6775
6776 JFS FILESYSTEM
6777 M:      Dave Kleikamp <shaggy@kernel.org>
6778 L:      jfs-discussion@lists.sourceforge.net
6779 W:      http://jfs.sourceforge.net/
6780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6781 S:      Maintained
6782 F:      Documentation/filesystems/jfs.txt
6783 F:      fs/jfs/
6784
6785 JME NETWORK DRIVER
6786 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6787 L:      netdev@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/net/ethernet/jme.*
6790
6791 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6792 M:      David Woodhouse <dwmw2@infradead.org>
6793 L:      linux-mtd@lists.infradead.org
6794 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6795 S:      Maintained
6796 F:      fs/jffs2/
6797 F:      include/uapi/linux/jffs2.h
6798
6799 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6800 M:      "Theodore Ts'o" <tytso@mit.edu>
6801 M:      Jan Kara <jack@suse.com>
6802 L:      linux-ext4@vger.kernel.org
6803 S:      Maintained
6804 F:      fs/jbd2/
6805 F:      include/linux/jbd2.h
6806
6807 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6808 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6809 L:      linux-media@vger.kernel.org
6810 S:      Maintained
6811 F:      drivers/media/platform/rcar_jpu.c
6812
6813 JSM Neo PCI based serial card
6814 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6815 L:      linux-serial@vger.kernel.org
6816 S:      Maintained
6817 F:      drivers/tty/serial/jsm/
6818
6819 K10TEMP HARDWARE MONITORING DRIVER
6820 M:      Clemens Ladisch <clemens@ladisch.de>
6821 L:      linux-hwmon@vger.kernel.org
6822 S:      Maintained
6823 F:      Documentation/hwmon/k10temp
6824 F:      drivers/hwmon/k10temp.c
6825
6826 K8TEMP HARDWARE MONITORING DRIVER
6827 M:      Rudolf Marek <r.marek@assembler.cz>
6828 L:      linux-hwmon@vger.kernel.org
6829 S:      Maintained
6830 F:      Documentation/hwmon/k8temp
6831 F:      drivers/hwmon/k8temp.c
6832
6833 KASAN
6834 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6835 R:      Alexander Potapenko <glider@google.com>
6836 R:      Dmitry Vyukov <dvyukov@google.com>
6837 L:      kasan-dev@googlegroups.com
6838 S:      Maintained
6839 F:      arch/*/include/asm/kasan.h
6840 F:      arch/*/mm/kasan_init*
6841 F:      Documentation/dev-tools/kasan.rst
6842 F:      include/linux/kasan*.h
6843 F:      lib/test_kasan.c
6844 F:      mm/kasan/
6845 F:      scripts/Makefile.kasan
6846
6847 KCONFIG
6848 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6849 L:      linux-kbuild@vger.kernel.org
6850 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6851 S:      Maintained
6852 F:      Documentation/kbuild/kconfig-language.txt
6853 F:      scripts/kconfig/
6854
6855 KDUMP
6856 M:      Dave Young <dyoung@redhat.com>
6857 M:      Baoquan He <bhe@redhat.com>
6858 R:      Vivek Goyal <vgoyal@redhat.com>
6859 L:      kexec@lists.infradead.org
6860 W:      http://lse.sourceforge.net/kdump/
6861 S:      Maintained
6862 F:      Documentation/kdump/
6863
6864 KEENE FM RADIO TRANSMITTER DRIVER
6865 M:      Hans Verkuil <hverkuil@xs4all.nl>
6866 L:      linux-media@vger.kernel.org
6867 T:      git git://linuxtv.org/media_tree.git
6868 W:      https://linuxtv.org
6869 S:      Maintained
6870 F:      drivers/media/radio/radio-keene*
6871
6872 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6873 M:      Ian Kent <raven@themaw.net>
6874 L:      autofs@vger.kernel.org
6875 S:      Maintained
6876 F:      fs/autofs4/
6877
6878 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6879 M:      Michal Marek <mmarek@suse.com>
6880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6882 L:      linux-kbuild@vger.kernel.org
6883 S:      Maintained
6884 F:      Documentation/kbuild/
6885 F:      Makefile
6886 F:      scripts/Makefile.*
6887 F:      scripts/basic/
6888 F:      scripts/mk*
6889 F:      scripts/package/
6890
6891 KERNEL JANITORS
6892 L:      kernel-janitors@vger.kernel.org
6893 W:      http://kernelnewbies.org/KernelJanitors
6894 S:      Odd Fixes
6895
6896 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6897 M:      "J. Bruce Fields" <bfields@fieldses.org>
6898 M:      Jeff Layton <jlayton@poochiereds.net>
6899 L:      linux-nfs@vger.kernel.org
6900 W:      http://nfs.sourceforge.net/
6901 T:      git git://linux-nfs.org/~bfields/linux.git
6902 S:      Supported
6903 F:      fs/nfsd/
6904 F:      include/uapi/linux/nfsd/
6905 F:      fs/lockd/
6906 F:      fs/nfs_common/
6907 F:      net/sunrpc/
6908 F:      include/linux/lockd/
6909 F:      include/linux/sunrpc/
6910 F:      include/uapi/linux/sunrpc/
6911
6912 KERNEL SELFTEST FRAMEWORK
6913 M:      Shuah Khan <shuahkh@osg.samsung.com>
6914 M:      Shuah Khan <shuah@kernel.org>
6915 L:      linux-kselftest@vger.kernel.org
6916 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6917 S:      Maintained
6918 F:      tools/testing/selftests
6919
6920 KERNEL VIRTUAL MACHINE (KVM)
6921 M:      Paolo Bonzini <pbonzini@redhat.com>
6922 M:      Radim Krčmář <rkrcmar@redhat.com>
6923 L:      kvm@vger.kernel.org
6924 W:      http://www.linux-kvm.org
6925 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6926 S:      Supported
6927 F:      Documentation/*/kvm*.txt
6928 F:      Documentation/virtual/kvm/
6929 F:      arch/*/kvm/
6930 F:      arch/x86/kernel/kvm.c
6931 F:      arch/x86/kernel/kvmclock.c
6932 F:      arch/*/include/asm/kvm*
6933 F:      include/linux/kvm*
6934 F:      include/uapi/linux/kvm*
6935 F:      virt/kvm/
6936 F:      tools/kvm/
6937
6938 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6939 M:      Joerg Roedel <joro@8bytes.org>
6940 L:      kvm@vger.kernel.org
6941 W:      http://www.linux-kvm.org/
6942 S:      Maintained
6943 F:      arch/x86/include/asm/svm.h
6944 F:      arch/x86/kvm/svm.c
6945
6946 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6947 M:      Alexander Graf <agraf@suse.com>
6948 L:      kvm-ppc@vger.kernel.org
6949 W:      http://www.linux-kvm.org/
6950 T:      git git://github.com/agraf/linux-2.6.git
6951 S:      Supported
6952 F:      arch/powerpc/include/asm/kvm*
6953 F:      arch/powerpc/kvm/
6954
6955 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6956 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6957 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6958 L:      linux-s390@vger.kernel.org
6959 W:      http://www.ibm.com/developerworks/linux/linux390/
6960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6961 S:      Supported
6962 F:      Documentation/s390/kvm.txt
6963 F:      arch/s390/include/asm/kvm*
6964 F:      arch/s390/kvm/
6965
6966 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6967 M:      Christoffer Dall <christoffer.dall@linaro.org>
6968 M:      Marc Zyngier <marc.zyngier@arm.com>
6969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6970 L:      kvmarm@lists.cs.columbia.edu
6971 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6973 S:      Supported
6974 F:      arch/arm/include/uapi/asm/kvm*
6975 F:      arch/arm/include/asm/kvm*
6976 F:      arch/arm/kvm/
6977 F:      virt/kvm/arm/
6978 F:      include/kvm/arm_*
6979
6980 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6981 M:      Christoffer Dall <christoffer.dall@linaro.org>
6982 M:      Marc Zyngier <marc.zyngier@arm.com>
6983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6984 L:      kvmarm@lists.cs.columbia.edu
6985 S:      Maintained
6986 F:      arch/arm64/include/uapi/asm/kvm*
6987 F:      arch/arm64/include/asm/kvm*
6988 F:      arch/arm64/kvm/
6989
6990 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6991 M:      James Hogan <james.hogan@imgtec.com>
6992 L:      linux-mips@linux-mips.org
6993 S:      Supported
6994 F:      arch/mips/include/uapi/asm/kvm*
6995 F:      arch/mips/include/asm/kvm*
6996 F:      arch/mips/kvm/
6997
6998 KEXEC
6999 M:      Eric Biederman <ebiederm@xmission.com>
7000 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7001 L:      kexec@lists.infradead.org
7002 S:      Maintained
7003 F:      include/linux/kexec.h
7004 F:      include/uapi/linux/kexec.h
7005 F:      kernel/kexec*
7006
7007 KEYS/KEYRINGS:
7008 M:      David Howells <dhowells@redhat.com>
7009 L:      keyrings@vger.kernel.org
7010 S:      Maintained
7011 F:      Documentation/security/keys.txt
7012 F:      include/linux/key.h
7013 F:      include/linux/key-type.h
7014 F:      include/linux/keyctl.h
7015 F:      include/uapi/linux/keyctl.h
7016 F:      include/keys/
7017 F:      security/keys/
7018
7019 KEYS-TRUSTED
7020 M:      David Safford <safford@us.ibm.com>
7021 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7022 L:      linux-security-module@vger.kernel.org
7023 L:      keyrings@vger.kernel.org
7024 S:      Supported
7025 F:      Documentation/security/keys-trusted-encrypted.txt
7026 F:      include/keys/trusted-type.h
7027 F:      security/keys/trusted.c
7028 F:      security/keys/trusted.h
7029
7030 KEYS-ENCRYPTED
7031 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
7032 M:      David Safford <safford@us.ibm.com>
7033 L:      linux-security-module@vger.kernel.org
7034 L:      keyrings@vger.kernel.org
7035 S:      Supported
7036 F:      Documentation/security/keys-trusted-encrypted.txt
7037 F:      include/keys/encrypted-type.h
7038 F:      security/keys/encrypted-keys/
7039
7040 KGDB / KDB /debug_core
7041 M:      Jason Wessel <jason.wessel@windriver.com>
7042 W:      http://kgdb.wiki.kernel.org/
7043 L:      kgdb-bugreport@lists.sourceforge.net
7044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7045 S:      Maintained
7046 F:      Documentation/DocBook/kgdb.tmpl
7047 F:      drivers/misc/kgdbts.c
7048 F:      drivers/tty/serial/kgdboc.c
7049 F:      include/linux/kdb.h
7050 F:      include/linux/kgdb.h
7051 F:      kernel/debug/
7052
7053 KMEMCHECK
7054 M:      Vegard Nossum <vegardno@ifi.uio.no>
7055 M:      Pekka Enberg <penberg@kernel.org>
7056 S:      Maintained
7057 F:      Documentation/dev-tools/kmemcheck.rst
7058 F:      arch/x86/include/asm/kmemcheck.h
7059 F:      arch/x86/mm/kmemcheck/
7060 F:      include/linux/kmemcheck.h
7061 F:      mm/kmemcheck.c
7062
7063 KMEMLEAK
7064 M:      Catalin Marinas <catalin.marinas@arm.com>
7065 S:      Maintained
7066 F:      Documentation/dev-tools/kmemleak.rst
7067 F:      include/linux/kmemleak.h
7068 F:      mm/kmemleak.c
7069 F:      mm/kmemleak-test.c
7070
7071 KPROBES
7072 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7073 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7074 M:      "David S. Miller" <davem@davemloft.net>
7075 M:      Masami Hiramatsu <mhiramat@kernel.org>
7076 S:      Maintained
7077 F:      Documentation/kprobes.txt
7078 F:      include/linux/kprobes.h
7079 F:      kernel/kprobes.c
7080
7081 KS0108 LCD CONTROLLER DRIVER
7082 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7083 W:      http://miguelojeda.es/auxdisplay.htm
7084 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7085 S:      Maintained
7086 F:      Documentation/auxdisplay/ks0108
7087 F:      drivers/auxdisplay/ks0108.c
7088 F:      include/linux/ks0108.h
7089
7090 L3MDEV
7091 M:      David Ahern <dsa@cumulusnetworks.com>
7092 L:      netdev@vger.kernel.org
7093 S:      Maintained
7094 F:      net/l3mdev
7095 F:      include/net/l3mdev.h
7096
7097 LANTIQ MIPS ARCHITECTURE
7098 M:      John Crispin <john@phrozen.org>
7099 L:      linux-mips@linux-mips.org
7100 S:      Maintained
7101 F:      arch/mips/lantiq
7102
7103 LAPB module
7104 L:      linux-x25@vger.kernel.org
7105 S:      Orphan
7106 F:      Documentation/networking/lapb-module.txt
7107 F:      include/*/lapb.h
7108 F:      net/lapb/
7109
7110 LASI 53c700 driver for PARISC
7111 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7112 L:      linux-scsi@vger.kernel.org
7113 S:      Maintained
7114 F:      Documentation/scsi/53c700.txt
7115 F:      drivers/scsi/53c700*
7116
7117 LED SUBSYSTEM
7118 M:      Richard Purdie <rpurdie@rpsys.net>
7119 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
7120 M:      Pavel Machek <pavel@ucw.cz>
7121 L:      linux-leds@vger.kernel.org
7122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7123 S:      Maintained
7124 F:      Documentation/devicetree/bindings/leds/
7125 F:      drivers/leds/
7126 F:      include/linux/leds.h
7127
7128 LEGACY EEPROM DRIVER
7129 M:      Jean Delvare <jdelvare@suse.com>
7130 S:      Maintained
7131 F:      Documentation/misc-devices/eeprom
7132 F:      drivers/misc/eeprom/eeprom.c
7133
7134 LEGO USB Tower driver
7135 M:      Juergen Stuber <starblue@users.sourceforge.net>
7136 L:      legousb-devel@lists.sourceforge.net
7137 W:      http://legousb.sourceforge.net/
7138 S:      Maintained
7139 F:      drivers/usb/misc/legousbtower.c
7140
7141 LG2160 MEDIA DRIVER
7142 M:      Michael Krufky <mkrufky@linuxtv.org>
7143 L:      linux-media@vger.kernel.org
7144 W:      https://linuxtv.org
7145 W:      http://github.com/mkrufky
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/mkrufky/tuners.git
7148 S:      Maintained
7149 F:      drivers/media/dvb-frontends/lg2160.*
7150
7151 LGDT3305 MEDIA DRIVER
7152 M:      Michael Krufky <mkrufky@linuxtv.org>
7153 L:      linux-media@vger.kernel.org
7154 W:      https://linuxtv.org
7155 W:      http://github.com/mkrufky
7156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7157 T:      git git://linuxtv.org/mkrufky/tuners.git
7158 S:      Maintained
7159 F:      drivers/media/dvb-frontends/lgdt3305.*
7160
7161 LGUEST
7162 M:      Rusty Russell <rusty@rustcorp.com.au>
7163 L:      lguest@lists.ozlabs.org
7164 W:      http://lguest.ozlabs.org/
7165 S:      Odd Fixes
7166 F:      arch/x86/include/asm/lguest*.h
7167 F:      arch/x86/lguest/
7168 F:      drivers/lguest/
7169 F:      include/linux/lguest*.h
7170 F:      tools/lguest/
7171
7172 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7173 M:      Tejun Heo <tj@kernel.org>
7174 L:      linux-ide@vger.kernel.org
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7176 S:      Maintained
7177 F:      drivers/ata/
7178 F:      include/linux/ata.h
7179 F:      include/linux/libata.h
7180 F:      Documentation/devicetree/bindings/ata/
7181
7182 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7183 M:      Viresh Kumar <vireshk@kernel.org>
7184 L:      linux-ide@vger.kernel.org
7185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7186 S:      Maintained
7187 F:      include/linux/pata_arasan_cf_data.h
7188 F:      drivers/ata/pata_arasan_cf.c
7189
7190 LIBATA PATA DRIVERS
7191 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7192 M:      Tejun Heo <tj@kernel.org>
7193 L:      linux-ide@vger.kernel.org
7194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7195 S:      Maintained
7196 F:      drivers/ata/pata_*.c
7197 F:      drivers/ata/ata_generic.c
7198
7199 LIBATA SATA AHCI PLATFORM devices support
7200 M:      Hans de Goede <hdegoede@redhat.com>
7201 M:      Tejun Heo <tj@kernel.org>
7202 L:      linux-ide@vger.kernel.org
7203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7204 S:      Maintained
7205 F:      drivers/ata/ahci_platform.c
7206 F:      drivers/ata/libahci_platform.c
7207 F:      include/linux/ahci_platform.h
7208
7209 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7210 M:      Mikael Pettersson <mikpelinux@gmail.com>
7211 L:      linux-ide@vger.kernel.org
7212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7213 S:      Maintained
7214 F:      drivers/ata/sata_promise.*
7215
7216 LIBLOCKDEP
7217 M:      Sasha Levin <sasha.levin@oracle.com>
7218 S:      Maintained
7219 F:      tools/lib/lockdep/
7220
7221 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7222 M:      Dan Williams <dan.j.williams@intel.com>
7223 L:      linux-nvdimm@lists.01.org
7224 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7226 S:      Supported
7227 F:      drivers/nvdimm/*
7228 F:      include/linux/nd.h
7229 F:      include/linux/libnvdimm.h
7230 F:      include/uapi/linux/ndctl.h
7231
7232 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7233 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7234 L:      linux-nvdimm@lists.01.org
7235 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7236 S:      Supported
7237 F:      drivers/nvdimm/blk.c
7238 F:      drivers/nvdimm/region_devs.c
7239 F:      drivers/acpi/nfit*
7240
7241 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7242 M:      Vishal Verma <vishal.l.verma@intel.com>
7243 L:      linux-nvdimm@lists.01.org
7244 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7245 S:      Supported
7246 F:      drivers/nvdimm/btt*
7247
7248 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7249 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7250 L:      linux-nvdimm@lists.01.org
7251 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7252 S:      Supported
7253 F:      drivers/nvdimm/pmem.c
7254 F:      include/linux/pmem.h
7255 F:      arch/*/include/asm/pmem.h
7256
7257 LIGHTNVM PLATFORM SUPPORT
7258 M:      Matias Bjorling <mb@lightnvm.io>
7259 W:      http://github/OpenChannelSSD
7260 L:      linux-block@vger.kernel.org
7261 S:      Maintained
7262 F:      drivers/lightnvm/
7263 F:      include/linux/lightnvm.h
7264 F:      include/uapi/linux/lightnvm.h
7265
7266 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7267 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7268 M:      Paul Mackerras <paulus@samba.org>
7269 M:      Michael Ellerman <mpe@ellerman.id.au>
7270 W:      https://github.com/linuxppc/linux/wiki
7271 L:      linuxppc-dev@lists.ozlabs.org
7272 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7274 S:      Supported
7275 F:      Documentation/powerpc/
7276 F:      arch/powerpc/
7277 F:      drivers/char/tpm/tpm_ibmvtpm*
7278 F:      drivers/crypto/nx/
7279 F:      drivers/crypto/vmx/
7280 F:      drivers/net/ethernet/ibm/ibmveth.*
7281 F:      drivers/net/ethernet/ibm/ibmvnic.*
7282 F:      drivers/pci/hotplug/pnv_php.c
7283 F:      drivers/pci/hotplug/rpa*
7284 F:      drivers/scsi/ibmvscsi/
7285 F:      tools/testing/selftests/powerpc
7286 N:      opal
7287 N:      /pmac
7288 N:      powermac
7289 N:      powernv
7290 N:      [^a-z0-9]ps3
7291 N:      pseries
7292
7293 LINUX FOR POWER MACINTOSH
7294 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7295 W:      http://www.penguinppc.org/
7296 L:      linuxppc-dev@lists.ozlabs.org
7297 S:      Maintained
7298 F:      arch/powerpc/platforms/powermac/
7299 F:      drivers/macintosh/
7300
7301 LINUX FOR POWERPC EMBEDDED MPC5XXX
7302 M:      Anatolij Gustschin <agust@denx.de>
7303 L:      linuxppc-dev@lists.ozlabs.org
7304 T:      git git://git.denx.de/linux-denx-agust.git
7305 S:      Maintained
7306 F:      arch/powerpc/platforms/512x/
7307 F:      arch/powerpc/platforms/52xx/
7308
7309 LINUX FOR POWERPC EMBEDDED PPC4XX
7310 M:      Alistair Popple <alistair@popple.id.au>
7311 M:      Matt Porter <mporter@kernel.crashing.org>
7312 W:      http://www.penguinppc.org/
7313 L:      linuxppc-dev@lists.ozlabs.org
7314 S:      Maintained
7315 F:      arch/powerpc/platforms/40x/
7316 F:      arch/powerpc/platforms/44x/
7317
7318 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7319 L:      linuxppc-dev@lists.ozlabs.org
7320 S:      Orphan
7321 F:      arch/powerpc/*/*virtex*
7322 F:      arch/powerpc/*/*/*virtex*
7323
7324 LINUX FOR POWERPC EMBEDDED PPC8XX
7325 M:      Vitaly Bordug <vitb@kernel.crashing.org>
7326 W:      http://www.penguinppc.org/
7327 L:      linuxppc-dev@lists.ozlabs.org
7328 S:      Maintained
7329 F:      arch/powerpc/platforms/8xx/
7330
7331 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7332 M:      Scott Wood <oss@buserror.net>
7333 M:      Kumar Gala <galak@kernel.crashing.org>
7334 W:      http://www.penguinppc.org/
7335 L:      linuxppc-dev@lists.ozlabs.org
7336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7337 S:      Maintained
7338 F:      arch/powerpc/platforms/83xx/
7339 F:      arch/powerpc/platforms/85xx/
7340
7341 LINUX FOR POWERPC PA SEMI PWRFICIENT
7342 L:      linuxppc-dev@lists.ozlabs.org
7343 S:      Orphan
7344 F:      arch/powerpc/platforms/pasemi/
7345 F:      drivers/*/*pasemi*
7346 F:      drivers/*/*/*pasemi*
7347
7348 LINUX SECURITY MODULE (LSM) FRAMEWORK
7349 M:      Chris Wright <chrisw@sous-sol.org>
7350 L:      linux-security-module@vger.kernel.org
7351 S:      Supported
7352
7353 LIS3LV02D ACCELEROMETER DRIVER
7354 M:      Eric Piel <eric.piel@tremplin-utc.net>
7355 S:      Maintained
7356 F:      Documentation/misc-devices/lis3lv02d
7357 F:      drivers/misc/lis3lv02d/
7358 F:      drivers/platform/x86/hp_accel.c
7359
7360 LIVE PATCHING
7361 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7362 M:      Jessica Yu <jeyu@redhat.com>
7363 M:      Jiri Kosina <jikos@kernel.org>
7364 M:      Miroslav Benes <mbenes@suse.cz>
7365 R:      Petr Mladek <pmladek@suse.com>
7366 S:      Maintained
7367 F:      kernel/livepatch/
7368 F:      include/linux/livepatch.h
7369 F:      arch/x86/include/asm/livepatch.h
7370 F:      arch/x86/kernel/livepatch.c
7371 F:      Documentation/livepatch/
7372 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
7373 F:      samples/livepatch/
7374 L:      live-patching@vger.kernel.org
7375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7376
7377 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7378 M:      Kees Cook <keescook@chromium.org>
7379 S:      Maintained
7380 F:      drivers/misc/lkdtm*
7381
7382 LLC (802.2)
7383 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
7384 S:      Maintained
7385 F:      include/linux/llc.h
7386 F:      include/uapi/linux/llc.h
7387 F:      include/net/llc*
7388 F:      net/llc/
7389
7390 LM73 HARDWARE MONITOR DRIVER
7391 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
7392 L:      linux-hwmon@vger.kernel.org
7393 S:      Maintained
7394 F:      drivers/hwmon/lm73.c
7395
7396 LM78 HARDWARE MONITOR DRIVER
7397 M:      Jean Delvare <jdelvare@suse.com>
7398 L:      linux-hwmon@vger.kernel.org
7399 S:      Maintained
7400 F:      Documentation/hwmon/lm78
7401 F:      drivers/hwmon/lm78.c
7402
7403 LM83 HARDWARE MONITOR DRIVER
7404 M:      Jean Delvare <jdelvare@suse.com>
7405 L:      linux-hwmon@vger.kernel.org
7406 S:      Maintained
7407 F:      Documentation/hwmon/lm83
7408 F:      drivers/hwmon/lm83.c
7409
7410 LM90 HARDWARE MONITOR DRIVER
7411 M:      Jean Delvare <jdelvare@suse.com>
7412 L:      linux-hwmon@vger.kernel.org
7413 S:      Maintained
7414 F:      Documentation/hwmon/lm90
7415 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7416 F:      drivers/hwmon/lm90.c
7417
7418 LM95234 HARDWARE MONITOR DRIVER
7419 M:      Guenter Roeck <linux@roeck-us.net>
7420 L:      linux-hwmon@vger.kernel.org
7421 S:      Maintained
7422 F:      Documentation/hwmon/lm95234
7423 F:      drivers/hwmon/lm95234.c
7424
7425 LME2510 MEDIA DRIVER
7426 M:      Malcolm Priestley <tvboxspy@gmail.com>
7427 L:      linux-media@vger.kernel.org
7428 W:      https://linuxtv.org
7429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7430 S:      Maintained
7431 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7432
7433 LOCKING PRIMITIVES
7434 M:      Peter Zijlstra <peterz@infradead.org>
7435 M:      Ingo Molnar <mingo@redhat.com>
7436 L:      linux-kernel@vger.kernel.org
7437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7438 S:      Maintained
7439 F:      Documentation/locking/
7440 F:      include/linux/lockdep.h
7441 F:      include/linux/spinlock*.h
7442 F:      arch/*/include/asm/spinlock*.h
7443 F:      include/linux/rwlock*.h
7444 F:      include/linux/mutex*.h
7445 F:      arch/*/include/asm/mutex*.h
7446 F:      include/linux/rwsem*.h
7447 F:      arch/*/include/asm/rwsem.h
7448 F:      include/linux/seqlock.h
7449 F:      lib/locking*.[ch]
7450 F:      kernel/locking/
7451
7452 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7453 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
7454 L:      linux-ntfs-dev@lists.sourceforge.net
7455 W:      http://www.linux-ntfs.org/content/view/19/37/
7456 S:      Maintained
7457 F:      Documentation/ldm.txt
7458 F:      block/partitions/ldm.*
7459
7460 LogFS
7461 M:      Joern Engel <joern@logfs.org>
7462 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
7463 L:      logfs@logfs.org
7464 W:      logfs.org
7465 S:      Maintained
7466 F:      fs/logfs/
7467
7468 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7469 M:      Sathya Prakash <sathya.prakash@broadcom.com>
7470 M:      Chaitra P B <chaitra.basappa@broadcom.com>
7471 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7472 L:      MPT-FusionLinux.pdl@broadcom.com
7473 L:      linux-scsi@vger.kernel.org
7474 W:      http://www.avagotech.com/support/
7475 S:      Supported
7476 F:      drivers/message/fusion/
7477 F:      drivers/scsi/mpt2sas/
7478 F:      drivers/scsi/mpt3sas/
7479
7480 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7481 M:      Matthew Wilcox <matthew@wil.cx>
7482 L:      linux-scsi@vger.kernel.org
7483 S:      Maintained
7484 F:      drivers/scsi/sym53c8xx_2/
7485
7486 LTC4261 HARDWARE MONITOR DRIVER
7487 M:      Guenter Roeck <linux@roeck-us.net>
7488 L:      linux-hwmon@vger.kernel.org
7489 S:      Maintained
7490 F:      Documentation/hwmon/ltc4261
7491 F:      drivers/hwmon/ltc4261.c
7492
7493 LTP (Linux Test Project)
7494 M:      Mike Frysinger <vapier@gentoo.org>
7495 M:      Cyril Hrubis <chrubis@suse.cz>
7496 M:      Wanlong Gao <wanlong.gao@gmail.com>
7497 M:      Jan Stancek <jstancek@redhat.com>
7498 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7499 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
7500 L:      ltp@lists.linux.it (subscribers-only)
7501 W:      http://linux-test-project.github.io/
7502 T:      git git://github.com/linux-test-project/ltp.git
7503 S:      Maintained
7504
7505 M32R ARCHITECTURE
7506 W:      http://www.linux-m32r.org/
7507 S:      Orphan
7508 F:      arch/m32r/
7509
7510 M68K ARCHITECTURE
7511 M:      Geert Uytterhoeven <geert@linux-m68k.org>
7512 L:      linux-m68k@lists.linux-m68k.org
7513 W:      http://www.linux-m68k.org/
7514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7515 S:      Maintained
7516 F:      arch/m68k/
7517 F:      drivers/zorro/
7518
7519 M68K ON APPLE MACINTOSH
7520 M:      Joshua Thompson <funaho@jurai.org>
7521 W:      http://www.mac.linux-m68k.org/
7522 L:      linux-m68k@lists.linux-m68k.org
7523 S:      Maintained
7524 F:      arch/m68k/mac/
7525
7526 M68K ON HP9000/300
7527 M:      Philip Blundell <philb@gnu.org>
7528 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7529 S:      Maintained
7530 F:      arch/m68k/hp300/
7531
7532 M88DS3103 MEDIA DRIVER
7533 M:      Antti Palosaari <crope@iki.fi>
7534 L:      linux-media@vger.kernel.org
7535 W:      https://linuxtv.org
7536 W:      http://palosaari.fi/linux/
7537 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7538 T:      git git://linuxtv.org/anttip/media_tree.git
7539 S:      Maintained
7540 F:      drivers/media/dvb-frontends/m88ds3103*
7541
7542 M88RS2000 MEDIA DRIVER
7543 M:      Malcolm Priestley <tvboxspy@gmail.com>
7544 L:      linux-media@vger.kernel.org
7545 W:      https://linuxtv.org
7546 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7547 S:      Maintained
7548 F:      drivers/media/dvb-frontends/m88rs2000*
7549
7550 MA901 MASTERKIT USB FM RADIO DRIVER
7551 M:      Alexey Klimov <klimov.linux@gmail.com>
7552 L:      linux-media@vger.kernel.org
7553 T:      git git://linuxtv.org/media_tree.git
7554 S:      Maintained
7555 F:      drivers/media/radio/radio-ma901.c
7556
7557 MAC80211
7558 M:      Johannes Berg <johannes@sipsolutions.net>
7559 L:      linux-wireless@vger.kernel.org
7560 W:      http://wireless.kernel.org/
7561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7563 S:      Maintained
7564 F:      Documentation/networking/mac80211-injection.txt
7565 F:      include/net/mac80211.h
7566 F:      net/mac80211/
7567 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7568
7569 MACVLAN DRIVER
7570 M:      Patrick McHardy <kaber@trash.net>
7571 L:      netdev@vger.kernel.org
7572 S:      Maintained
7573 F:      drivers/net/macvlan.c
7574 F:      include/linux/if_macvlan.h
7575
7576 MAILBOX API
7577 M:      Jassi Brar <jassisinghbrar@gmail.com>
7578 L:      linux-kernel@vger.kernel.org
7579 S:      Maintained
7580 F:      drivers/mailbox/
7581 F:      include/linux/mailbox_client.h
7582 F:      include/linux/mailbox_controller.h
7583
7584 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7585 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7586 W:      http://www.kernel.org/doc/man-pages
7587 L:      linux-man@vger.kernel.org
7588 S:      Maintained
7589
7590 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
7591 M:      Andrew Lunn <andrew@lunn.ch>
7592 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7593 L:      netdev@vger.kernel.org
7594 S:      Maintained
7595 F:      drivers/net/dsa/mv88e6xxx/
7596 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
7597
7598 MARVELL ARMADA DRM SUPPORT
7599 M:      Russell King <rmk+kernel@armlinux.org.uk>
7600 S:      Maintained
7601 F:      drivers/gpu/drm/armada/
7602 F:      include/uapi/drm/armada_drm.h
7603 F:      Documentation/devicetree/bindings/display/armada/
7604
7605 MARVELL CRYPTO DRIVER
7606 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7607 M:      Arnaud Ebalard <arno@natisbad.org>
7608 F:      drivers/crypto/marvell/
7609 S:      Maintained
7610 L:      linux-crypto@vger.kernel.org
7611
7612 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7613 M:      Mirko Lindner <mlindner@marvell.com>
7614 M:      Stephen Hemminger <stephen@networkplumber.org>
7615 L:      netdev@vger.kernel.org
7616 S:      Maintained
7617 F:      drivers/net/ethernet/marvell/sk*
7618
7619 MARVELL LIBERTAS WIRELESS DRIVER
7620 L:      libertas-dev@lists.infradead.org
7621 S:      Orphan
7622 F:      drivers/net/wireless/marvell/libertas/
7623
7624 MARVELL MV643XX ETHERNET DRIVER
7625 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7626 L:      netdev@vger.kernel.org
7627 S:      Maintained
7628 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7629 F:      include/linux/mv643xx.h
7630
7631 MARVELL MVNETA ETHERNET DRIVER
7632 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7633 L:      netdev@vger.kernel.org
7634 S:      Maintained
7635 F:      drivers/net/ethernet/marvell/mvneta.*
7636
7637 MARVELL MWIFIEX WIRELESS DRIVER
7638 M:      Amitkumar Karwar <akarwar@marvell.com>
7639 M:      Nishant Sarmukadam <nishants@marvell.com>
7640 L:      linux-wireless@vger.kernel.org
7641 S:      Maintained
7642 F:      drivers/net/wireless/marvell/mwifiex/
7643
7644 MARVELL MWL8K WIRELESS DRIVER
7645 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7646 L:      linux-wireless@vger.kernel.org
7647 S:      Odd Fixes
7648 F:      drivers/net/wireless/marvell/mwl8k.c
7649
7650 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7651 M:      Nicolas Pitre <nico@fluxnic.net>
7652 S:      Odd Fixes
7653 F:      drivers/mmc/host/mvsdio.*
7654
7655 MATROX FRAMEBUFFER DRIVER
7656 L:      linux-fbdev@vger.kernel.org
7657 S:      Orphan
7658 F:      drivers/video/fbdev/matrox/matroxfb_*
7659 F:      include/uapi/linux/matroxfb.h
7660
7661 MAX16065 HARDWARE MONITOR DRIVER
7662 M:      Guenter Roeck <linux@roeck-us.net>
7663 L:      linux-hwmon@vger.kernel.org
7664 S:      Maintained
7665 F:      Documentation/hwmon/max16065
7666 F:      drivers/hwmon/max16065.c
7667
7668 MAX20751 HARDWARE MONITOR DRIVER
7669 M:      Guenter Roeck <linux@roeck-us.net>
7670 L:      linux-hwmon@vger.kernel.org
7671 S:      Maintained
7672 F:      Documentation/hwmon/max20751
7673 F:      drivers/hwmon/max20751.c
7674
7675 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7676 L:      linux-hwmon@vger.kernel.org
7677 S:      Orphan
7678 F:      Documentation/hwmon/max6650
7679 F:      drivers/hwmon/max6650.c
7680
7681 MAX6697 HARDWARE MONITOR DRIVER
7682 M:      Guenter Roeck <linux@roeck-us.net>
7683 L:      linux-hwmon@vger.kernel.org
7684 S:      Maintained
7685 F:      Documentation/hwmon/max6697
7686 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7687 F:      drivers/hwmon/max6697.c
7688 F:      include/linux/platform_data/max6697.h
7689
7690 MAX9860 MONO AUDIO VOICE CODEC DRIVER
7691 M:      Peter Rosin <peda@axentia.se>
7692 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7693 S:      Maintained
7694 F:      Documentation/devicetree/bindings/sound/max9860.txt
7695 F:      sound/soc/codecs/max9860.*
7696
7697 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7698 M:      Krzysztof Kozlowski <krzk@kernel.org>
7699 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7700 L:      linux-pm@vger.kernel.org
7701 S:      Supported
7702 F:      drivers/power/supply/max14577_charger.c
7703 F:      drivers/power/supply/max77693_charger.c
7704
7705 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7706 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7707 L:      linux-kernel@vger.kernel.org
7708 S:      Supported
7709 F:      drivers/*/*max77802*.c
7710 F:      Documentation/devicetree/bindings/*/*max77802.txt
7711 F:      include/dt-bindings/*/*max77802.h
7712
7713 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7714 M:      Chanwoo Choi <cw00.choi@samsung.com>
7715 M:      Krzysztof Kozlowski <krzk@kernel.org>
7716 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7717 L:      linux-kernel@vger.kernel.org
7718 S:      Supported
7719 F:      drivers/*/max14577*.c
7720 F:      drivers/*/max77686*.c
7721 F:      drivers/*/max77693*.c
7722 F:      drivers/extcon/extcon-max14577.c
7723 F:      drivers/extcon/extcon-max77693.c
7724 F:      drivers/rtc/rtc-max77686.c
7725 F:      drivers/clk/clk-max77686.c
7726 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7727 F:      Documentation/devicetree/bindings/*/max77686.txt
7728 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7729 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7730 F:      include/linux/mfd/max14577*.h
7731 F:      include/linux/mfd/max77686*.h
7732 F:      include/linux/mfd/max77693*.h
7733
7734 MAXIRADIO FM RADIO RECEIVER DRIVER
7735 M:      Hans Verkuil <hverkuil@xs4all.nl>
7736 L:      linux-media@vger.kernel.org
7737 T:      git git://linuxtv.org/media_tree.git
7738 W:      https://linuxtv.org
7739 S:      Maintained
7740 F:      drivers/media/radio/radio-maxiradio*
7741
7742 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7743 M:      Peter Rosin <peda@axentia.se>
7744 L:      linux-iio@vger.kernel.org
7745 S:      Maintained
7746 F:      drivers/iio/potentiometer/mcp4531.c
7747
7748 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
7749 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
7750 L:      linux-iio@vger.kernel.org
7751 S:      Maintained
7752 F:      drivers/iio/dac/cio-dac.c
7753
7754 MEDIA DRIVERS FOR RENESAS - FCP
7755 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7756 L:      linux-media@vger.kernel.org
7757 L:      linux-renesas-soc@vger.kernel.org
7758 T:      git git://linuxtv.org/media_tree.git
7759 S:      Supported
7760 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
7761 F:      drivers/media/platform/rcar-fcp.c
7762 F:      include/media/rcar-fcp.h
7763
7764 MEDIA DRIVERS FOR RENESAS - VIN
7765 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
7766 L:      linux-media@vger.kernel.org
7767 L:      linux-renesas-soc@vger.kernel.org
7768 T:      git git://linuxtv.org/media_tree.git
7769 S:      Supported
7770 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
7771 F:      drivers/media/platform/rcar-vin/
7772
7773 MEDIA DRIVERS FOR RENESAS - VSP1
7774 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7775 L:      linux-media@vger.kernel.org
7776 L:      linux-renesas-soc@vger.kernel.org
7777 T:      git git://linuxtv.org/media_tree.git
7778 S:      Supported
7779 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7780 F:      drivers/media/platform/vsp1/
7781
7782 MEDIA DRIVERS FOR HELENE
7783 M:      Abylay Ospan <aospan@netup.ru>
7784 L:      linux-media@vger.kernel.org
7785 W:      https://linuxtv.org
7786 W:      http://netup.tv/
7787 T:      git git://linuxtv.org/media_tree.git
7788 S:      Supported
7789 F:      drivers/media/dvb-frontends/helene*
7790
7791 MEDIA DRIVERS FOR ASCOT2E
7792 M:      Sergey Kozlov <serjk@netup.ru>
7793 M:      Abylay Ospan <aospan@netup.ru>
7794 L:      linux-media@vger.kernel.org
7795 W:      https://linuxtv.org
7796 W:      http://netup.tv/
7797 T:      git git://linuxtv.org/media_tree.git
7798 S:      Supported
7799 F:      drivers/media/dvb-frontends/ascot2e*
7800
7801 MEDIA DRIVERS FOR CXD2841ER
7802 M:      Sergey Kozlov <serjk@netup.ru>
7803 M:      Abylay Ospan <aospan@netup.ru>
7804 L:      linux-media@vger.kernel.org
7805 W:      https://linuxtv.org
7806 W:      http://netup.tv/
7807 T:      git git://linuxtv.org/media_tree.git
7808 S:      Supported
7809 F:      drivers/media/dvb-frontends/cxd2841er*
7810
7811 MEDIA DRIVERS FOR HORUS3A
7812 M:      Sergey Kozlov <serjk@netup.ru>
7813 M:      Abylay Ospan <aospan@netup.ru>
7814 L:      linux-media@vger.kernel.org
7815 W:      https://linuxtv.org
7816 W:      http://netup.tv/
7817 T:      git git://linuxtv.org/media_tree.git
7818 S:      Supported
7819 F:      drivers/media/dvb-frontends/horus3a*
7820
7821 MEDIA DRIVERS FOR LNBH25
7822 M:      Sergey Kozlov <serjk@netup.ru>
7823 M:      Abylay Ospan <aospan@netup.ru>
7824 L:      linux-media@vger.kernel.org
7825 W:      https://linuxtv.org
7826 W:      http://netup.tv/
7827 T:      git git://linuxtv.org/media_tree.git
7828 S:      Supported
7829 F:      drivers/media/dvb-frontends/lnbh25*
7830
7831 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7832 M:      Sergey Kozlov <serjk@netup.ru>
7833 M:      Abylay Ospan <aospan@netup.ru>
7834 L:      linux-media@vger.kernel.org
7835 W:      https://linuxtv.org
7836 W:      http://netup.tv/
7837 T:      git git://linuxtv.org/media_tree.git
7838 S:      Supported
7839 F:      drivers/media/pci/netup_unidvb/*
7840
7841 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7842 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
7843 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7844 P:      LinuxTV.org Project
7845 L:      linux-media@vger.kernel.org
7846 W:      https://linuxtv.org
7847 Q:      http://patchwork.kernel.org/project/linux-media/list/
7848 T:      git git://linuxtv.org/media_tree.git
7849 S:      Maintained
7850 F:      Documentation/media/
7851 F:      drivers/media/
7852 F:      drivers/staging/media/
7853 F:      include/linux/platform_data/media/
7854 F:      include/media/
7855 F:      include/uapi/linux/dvb/
7856 F:      include/uapi/linux/videodev2.h
7857 F:      include/uapi/linux/media.h
7858 F:      include/uapi/linux/v4l2-*
7859 F:      include/uapi/linux/meye.h
7860 F:      include/uapi/linux/ivtv*
7861 F:      include/uapi/linux/uvcvideo.h
7862
7863 MEDIATEK ETHERNET DRIVER
7864 M:      Felix Fietkau <nbd@openwrt.org>
7865 M:      John Crispin <blogic@openwrt.org>
7866 L:      netdev@vger.kernel.org
7867 S:      Maintained
7868 F:      drivers/net/ethernet/mediatek/
7869
7870 MEDIATEK MT7601U WIRELESS LAN DRIVER
7871 M:      Jakub Kicinski <kubakici@wp.pl>
7872 L:      linux-wireless@vger.kernel.org
7873 S:      Maintained
7874 F:      drivers/net/wireless/mediatek/mt7601u/
7875
7876 MEGARAID SCSI/SAS DRIVERS
7877 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7878 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7879 M:      Uday Lingala <uday.lingala@avagotech.com>
7880 L:      megaraidlinux.pdl@avagotech.com
7881 L:      linux-scsi@vger.kernel.org
7882 W:      http://www.lsi.com
7883 S:      Maintained
7884 F:      Documentation/scsi/megaraid.txt
7885 F:      drivers/scsi/megaraid.*
7886 F:      drivers/scsi/megaraid/
7887
7888 MELFAS MIP4 TOUCHSCREEN DRIVER
7889 M:      Sangwon Jee <jeesw@melfas.com>
7890 W:      http://www.melfas.com
7891 S:      Supported
7892 F:      drivers/input/touchscreen/melfas_mip4.c
7893 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
7894
7895 MELLANOX ETHERNET DRIVER (mlx4_en)
7896 M:      Tariq Toukan <tariqt@mellanox.com>
7897 L:      netdev@vger.kernel.org
7898 S:      Supported
7899 W:      http://www.mellanox.com
7900 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7901 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7902
7903 MELLANOX ETHERNET DRIVER (mlx5e)
7904 M:      Saeed Mahameed <saeedm@mellanox.com>
7905 L:      netdev@vger.kernel.org
7906 S:      Supported
7907 W:      http://www.mellanox.com
7908 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7909 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7910
7911 MELLANOX ETHERNET SWITCH DRIVERS
7912 M:      Jiri Pirko <jiri@mellanox.com>
7913 M:      Ido Schimmel <idosch@mellanox.com>
7914 L:      netdev@vger.kernel.org
7915 S:      Supported
7916 W:      http://www.mellanox.com
7917 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7918 F:      drivers/net/ethernet/mellanox/mlxsw/
7919
7920 MELLANOX MLXCPLD LED DRIVER
7921 M:      Vadim Pasternak <vadimp@mellanox.com>
7922 L:      linux-leds@vger.kernel.org
7923 S:      Supported
7924 F:      drivers/leds/leds-mlxcpld.c
7925 F:      Documentation/leds/leds-mlxcpld.txt
7926
7927 MELLANOX PLATFORM DRIVER
7928 M:      Vadim Pasternak <vadimp@mellanox.com>
7929 L:      platform-driver-x86@vger.kernel.org
7930 S:      Supported
7931 F:      arch/x86/platform/mellanox/mlx-platform.c
7932
7933 SOFT-ROCE DRIVER (rxe)
7934 M:      Moni Shoua <monis@mellanox.com>
7935 L:      linux-rdma@vger.kernel.org
7936 S:      Supported
7937 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
7938 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7939 F:      drivers/infiniband/sw/rxe/
7940 F:      include/uapi/rdma/rdma_user_rxe.h
7941
7942 MEMBARRIER SUPPORT
7943 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7944 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7945 L:      linux-kernel@vger.kernel.org
7946 S:      Supported
7947 F:      kernel/membarrier.c
7948 F:      include/uapi/linux/membarrier.h
7949
7950 MEMORY MANAGEMENT
7951 L:      linux-mm@kvack.org
7952 W:      http://www.linux-mm.org
7953 S:      Maintained
7954 F:      include/linux/mm.h
7955 F:      include/linux/gfp.h
7956 F:      include/linux/mmzone.h
7957 F:      include/linux/memory_hotplug.h
7958 F:      include/linux/vmalloc.h
7959 F:      mm/
7960
7961 MEMORY TECHNOLOGY DEVICES (MTD)
7962 M:      David Woodhouse <dwmw2@infradead.org>
7963 M:      Brian Norris <computersforpeace@gmail.com>
7964 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7965 M:      Marek Vasut <marek.vasut@gmail.com>
7966 M:      Richard Weinberger <richard@nod.at>
7967 M:      Cyrille Pitchen <cyrille.pitchen@atmel.com>
7968 L:      linux-mtd@lists.infradead.org
7969 W:      http://www.linux-mtd.infradead.org/
7970 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7971 T:      git git://git.infradead.org/linux-mtd.git
7972 T:      git git://git.infradead.org/l2-mtd.git
7973 S:      Maintained
7974 F:      Documentation/devicetree/bindings/mtd/
7975 F:      drivers/mtd/
7976 F:      include/linux/mtd/
7977 F:      include/uapi/mtd/
7978
7979 MEN A21 WATCHDOG DRIVER
7980 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7981 L:      linux-watchdog@vger.kernel.org
7982 S:      Maintained
7983 F:      drivers/watchdog/mena21_wdt.c
7984
7985 MEN CHAMELEON BUS (mcb)
7986 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7987 S:      Maintained
7988 F:      drivers/mcb/
7989 F:      include/linux/mcb.h
7990 F:      Documentation/men-chameleon-bus.txt
7991
7992 MEN F21BMC (Board Management Controller)
7993 M:      Andreas Werner <andreas.werner@men.de>
7994 S:      Supported
7995 F:      drivers/mfd/menf21bmc.c
7996 F:      drivers/watchdog/menf21bmc_wdt.c
7997 F:      drivers/leds/leds-menf21bmc.c
7998 F:      drivers/hwmon/menf21bmc_hwmon.c
7999 F:      Documentation/hwmon/menf21bmc
8000
8001 METAG ARCHITECTURE
8002 M:      James Hogan <james.hogan@imgtec.com>
8003 L:      linux-metag@vger.kernel.org
8004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8005 S:      Odd Fixes
8006 F:      arch/metag/
8007 F:      Documentation/metag/
8008 F:      Documentation/devicetree/bindings/metag/
8009 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
8010 F:      drivers/clocksource/metag_generic.c
8011 F:      drivers/irqchip/irq-metag.c
8012 F:      drivers/irqchip/irq-metag-ext.c
8013 F:      drivers/tty/metag_da.c
8014
8015 MICROBLAZE ARCHITECTURE
8016 M:      Michal Simek <monstr@monstr.eu>
8017 W:      http://www.monstr.eu/fdt/
8018 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
8019 S:      Supported
8020 F:      arch/microblaze/
8021
8022 MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER
8023 M:      Richard Genoud <richard.genoud@gmail.com>
8024 S:      Maintained
8025 F:      drivers/tty/serial/atmel_serial.c
8026 F:      include/linux/atmel_serial.h
8027
8028 MICROCHIP / ATMEL ISC DRIVER
8029 M:      Songjun Wu <songjun.wu@microchip.com>
8030 L:      linux-media@vger.kernel.org
8031 S:      Supported
8032 F:      drivers/media/platform/atmel/atmel-isc.c
8033 F:      drivers/media/platform/atmel/atmel-isc-regs.h
8034 F:      devicetree/bindings/media/atmel-isc.txt
8035
8036 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8037 M:      Chen Yu <yu.c.chen@intel.com>
8038 L:      platform-driver-x86@vger.kernel.org
8039 S:      Supported
8040 F:      drivers/platform/x86/surfacepro3_button.c
8041
8042 MICROTEK X6 SCANNER
8043 M:      Oliver Neukum <oliver@neukum.org>
8044 S:      Maintained
8045 F:      drivers/usb/image/microtek.*
8046
8047 MIPS
8048 M:      Ralf Baechle <ralf@linux-mips.org>
8049 L:      linux-mips@linux-mips.org
8050 W:      http://www.linux-mips.org/
8051 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
8052 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
8053 S:      Supported
8054 F:      Documentation/devicetree/bindings/mips/
8055 F:      Documentation/mips/
8056 F:      arch/mips/
8057
8058 MIPS/LOONGSON1 ARCHITECTURE
8059 M:      Keguang Zhang <keguang.zhang@gmail.com>
8060 L:      linux-mips@linux-mips.org
8061 S:      Maintained
8062 F:      arch/mips/loongson32/
8063 F:      arch/mips/include/asm/mach-loongson32/
8064 F:      drivers/*/*loongson1*
8065 F:      drivers/*/*/*loongson1*
8066
8067 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8068 M:      Hans Verkuil <hverkuil@xs4all.nl>
8069 L:      linux-media@vger.kernel.org
8070 T:      git git://linuxtv.org/media_tree.git
8071 W:      https://linuxtv.org
8072 S:      Odd Fixes
8073 F:      drivers/media/radio/radio-miropcm20*
8074
8075 MELLANOX MLX4 core VPI driver
8076 M:      Yishai Hadas <yishaih@mellanox.com>
8077 L:      netdev@vger.kernel.org
8078 L:      linux-rdma@vger.kernel.org
8079 W:      http://www.mellanox.com
8080 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8081 S:      Supported
8082 F:      drivers/net/ethernet/mellanox/mlx4/
8083 F:      include/linux/mlx4/
8084 F:      include/uapi/rdma/mlx4-abi.h
8085
8086 MELLANOX MLX4 IB driver
8087 M:      Yishai Hadas <yishaih@mellanox.com>
8088 L:      linux-rdma@vger.kernel.org
8089 W:      http://www.mellanox.com
8090 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8091 S:      Supported
8092 F:      drivers/infiniband/hw/mlx4/
8093 F:      include/linux/mlx4/
8094
8095 MELLANOX MLX5 core VPI driver
8096 M:      Saeed Mahameed <saeedm@mellanox.com>
8097 M:      Matan Barak <matanb@mellanox.com>
8098 M:      Leon Romanovsky <leonro@mellanox.com>
8099 L:      netdev@vger.kernel.org
8100 L:      linux-rdma@vger.kernel.org
8101 W:      http://www.mellanox.com
8102 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8103 S:      Supported
8104 F:      drivers/net/ethernet/mellanox/mlx5/core/
8105 F:      include/linux/mlx5/
8106 F:      include/uapi/rdma/mlx5-abi.h
8107
8108 MELLANOX MLX5 IB driver
8109 M:      Matan Barak <matanb@mellanox.com>
8110 M:      Leon Romanovsky <leonro@mellanox.com>
8111 L:      linux-rdma@vger.kernel.org
8112 W:      http://www.mellanox.com
8113 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8114 S:      Supported
8115 F:      drivers/infiniband/hw/mlx5/
8116 F:      include/linux/mlx5/
8117
8118 MELEXIS MLX90614 DRIVER
8119 M:      Crt Mori <cmo@melexis.com>
8120 L:      linux-iio@vger.kernel.org
8121 W:      http://www.melexis.com
8122 S:      Supported
8123 F:      drivers/iio/temperature/mlx90614.c
8124
8125 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8126 M:      Don Brace <don.brace@microsemi.com>
8127 L:      esc.storagedev@microsemi.com
8128 L:      linux-scsi@vger.kernel.org
8129 S:      Supported
8130 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
8131 F:      drivers/scsi/smartpqi/Kconfig
8132 F:      drivers/scsi/smartpqi/Makefile
8133 F:      include/linux/cciss*.h
8134 F:      include/uapi/linux/cciss*.h
8135 F:      Documentation/scsi/smartpqi.txt
8136
8137 MN88472 MEDIA DRIVER
8138 M:      Antti Palosaari <crope@iki.fi>
8139 L:      linux-media@vger.kernel.org
8140 W:      https://linuxtv.org
8141 W:      http://palosaari.fi/linux/
8142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8143 S:      Maintained
8144 F:      drivers/media/dvb-frontends/mn88472*
8145
8146 MN88473 MEDIA DRIVER
8147 M:      Antti Palosaari <crope@iki.fi>
8148 L:      linux-media@vger.kernel.org
8149 W:      https://linuxtv.org
8150 W:      http://palosaari.fi/linux/
8151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8152 S:      Maintained
8153 F:      drivers/media/dvb-frontends/mn88473*
8154
8155 MODULE SUPPORT
8156 M:      Jessica Yu <jeyu@redhat.com>
8157 M:      Rusty Russell <rusty@rustcorp.com.au>
8158 S:      Maintained
8159 F:      include/linux/module.h
8160 F:      kernel/module.c
8161
8162 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
8163 W:      http://popies.net/meye/
8164 S:      Orphan
8165 F:      Documentation/media/v4l-drivers/meye*
8166 F:      drivers/media/pci/meye/
8167 F:      include/uapi/linux/meye.h
8168
8169 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
8170 M:      Jiri Slaby <jirislaby@gmail.com>
8171 S:      Maintained
8172 F:      Documentation/serial/moxa-smartio
8173 F:      drivers/tty/mxser.*
8174
8175 MR800 AVERMEDIA USB FM RADIO DRIVER
8176 M:      Alexey Klimov <klimov.linux@gmail.com>
8177 L:      linux-media@vger.kernel.org
8178 T:      git git://linuxtv.org/media_tree.git
8179 S:      Maintained
8180 F:      drivers/media/radio/radio-mr800.c
8181
8182 MRF24J40 IEEE 802.15.4 RADIO DRIVER
8183 M:      Alan Ott <alan@signal11.us>
8184 L:      linux-wpan@vger.kernel.org
8185 S:      Maintained
8186 F:      drivers/net/ieee802154/mrf24j40.c
8187 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
8188
8189 MSI LAPTOP SUPPORT
8190 M:      "Lee, Chun-Yi" <jlee@suse.com>
8191 L:      platform-driver-x86@vger.kernel.org
8192 S:      Maintained
8193 F:      drivers/platform/x86/msi-laptop.c
8194
8195 MSI WMI SUPPORT
8196 L:      platform-driver-x86@vger.kernel.org
8197 S:      Orphan
8198 F:      drivers/platform/x86/msi-wmi.c
8199
8200 MSI001 MEDIA DRIVER
8201 M:      Antti Palosaari <crope@iki.fi>
8202 L:      linux-media@vger.kernel.org
8203 W:      https://linuxtv.org
8204 W:      http://palosaari.fi/linux/
8205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8206 T:      git git://linuxtv.org/anttip/media_tree.git
8207 S:      Maintained
8208 F:      drivers/media/tuners/msi001*
8209
8210 MSI2500 MEDIA DRIVER
8211 M:      Antti Palosaari <crope@iki.fi>
8212 L:      linux-media@vger.kernel.org
8213 W:      https://linuxtv.org
8214 W:      http://palosaari.fi/linux/
8215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8216 T:      git git://linuxtv.org/anttip/media_tree.git
8217 S:      Maintained
8218 F:      drivers/media/usb/msi2500/
8219
8220 MSYSTEMS DISKONCHIP G3 MTD DRIVER
8221 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8222 L:      linux-mtd@lists.infradead.org
8223 S:      Maintained
8224 F:      drivers/mtd/devices/docg3*
8225
8226 MT9M032 APTINA SENSOR DRIVER
8227 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8228 L:      linux-media@vger.kernel.org
8229 T:      git git://linuxtv.org/media_tree.git
8230 S:      Maintained
8231 F:      drivers/media/i2c/mt9m032.c
8232 F:      include/media/i2c/mt9m032.h
8233
8234 MT9P031 APTINA CAMERA SENSOR
8235 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8236 L:      linux-media@vger.kernel.org
8237 T:      git git://linuxtv.org/media_tree.git
8238 S:      Maintained
8239 F:      drivers/media/i2c/mt9p031.c
8240 F:      include/media/i2c/mt9p031.h
8241
8242 MT9T001 APTINA CAMERA SENSOR
8243 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8244 L:      linux-media@vger.kernel.org
8245 T:      git git://linuxtv.org/media_tree.git
8246 S:      Maintained
8247 F:      drivers/media/i2c/mt9t001.c
8248 F:      include/media/i2c/mt9t001.h
8249
8250 MT9V032 APTINA CAMERA SENSOR
8251 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8252 L:      linux-media@vger.kernel.org
8253 T:      git git://linuxtv.org/media_tree.git
8254 S:      Maintained
8255 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
8256 F:      drivers/media/i2c/mt9v032.c
8257 F:      include/media/i2c/mt9v032.h
8258
8259 MULTIFUNCTION DEVICES (MFD)
8260 M:      Lee Jones <lee.jones@linaro.org>
8261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
8262 S:      Supported
8263 F:      Documentation/devicetree/bindings/mfd/
8264 F:      drivers/mfd/
8265 F:      include/linux/mfd/
8266
8267 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8268 M:      Ulf Hansson <ulf.hansson@linaro.org>
8269 L:      linux-mmc@vger.kernel.org
8270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
8271 S:      Maintained
8272 F:      Documentation/devicetree/bindings/mmc/
8273 F:      drivers/mmc/
8274 F:      include/linux/mmc/
8275 F:      include/uapi/linux/mmc/
8276
8277 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8278 S:      Orphan
8279 F:      drivers/mmc/host/mmc_spi.c
8280 F:      include/linux/spi/mmc_spi.h
8281
8282 MULTISOUND SOUND DRIVER
8283 M:      Andrew Veliath <andrewtv@usa.net>
8284 S:      Maintained
8285 F:      Documentation/sound/oss/MultiSound
8286 F:      sound/oss/msnd*
8287
8288 MULTITECH MULTIPORT CARD (ISICOM)
8289 S:      Orphan
8290 F:      drivers/tty/isicom.c
8291 F:      include/linux/isicom.h
8292
8293 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8294 M:      Bin Liu <b-liu@ti.com>
8295 L:      linux-usb@vger.kernel.org
8296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8297 S:      Maintained
8298 F:      drivers/usb/musb/
8299
8300 MXL5007T MEDIA DRIVER
8301 M:      Michael Krufky <mkrufky@linuxtv.org>
8302 L:      linux-media@vger.kernel.org
8303 W:      https://linuxtv.org
8304 W:      http://github.com/mkrufky
8305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8306 T:      git git://linuxtv.org/mkrufky/tuners.git
8307 S:      Maintained
8308 F:      drivers/media/tuners/mxl5007t.*
8309
8310 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8311 M:      Hyong-Youb Kim <hykim@myri.com>
8312 L:      netdev@vger.kernel.org
8313 W:      https://www.myricom.com/support/downloads/myri10ge.html
8314 S:      Supported
8315 F:      drivers/net/ethernet/myricom/myri10ge/
8316
8317 NAND FLASH SUBSYSTEM
8318 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8319 R:      Richard Weinberger <richard@nod.at>
8320 L:      linux-mtd@lists.infradead.org
8321 W:      http://www.linux-mtd.infradead.org/
8322 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8323 T:      git git://github.com/linux-nand/linux.git
8324 S:      Maintained
8325 F:      drivers/mtd/nand/
8326 F:      include/linux/mtd/nand*.h
8327
8328 NATSEMI ETHERNET DRIVER (DP8381x)
8329 S:      Orphan
8330 F:      drivers/net/ethernet/natsemi/natsemi.c
8331
8332 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8333 M:      Daniel Mack <zonque@gmail.com>
8334 S:      Maintained
8335 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8336 W:      http://www.native-instruments.com
8337 F:      sound/usb/caiaq/
8338
8339 NCP FILESYSTEM
8340 M:      Petr Vandrovec <petr@vandrovec.name>
8341 S:      Odd Fixes
8342 F:      fs/ncpfs/
8343
8344 NCR 5380 SCSI DRIVERS
8345 M:      Finn Thain <fthain@telegraphics.com.au>
8346 M:      Michael Schmitz <schmitzmic@gmail.com>
8347 L:      linux-scsi@vger.kernel.org
8348 S:      Maintained
8349 F:      Documentation/scsi/g_NCR5380.txt
8350 F:      drivers/scsi/NCR5380.*
8351 F:      drivers/scsi/arm/cumana_1.c
8352 F:      drivers/scsi/arm/oak.c
8353 F:      drivers/scsi/atari_scsi.*
8354 F:      drivers/scsi/dmx3191d.c
8355 F:      drivers/scsi/g_NCR5380.*
8356 F:      drivers/scsi/g_NCR5380_mmio.c
8357 F:      drivers/scsi/mac_scsi.*
8358 F:      drivers/scsi/sun3_scsi.*
8359 F:      drivers/scsi/sun3_scsi_vme.c
8360
8361 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
8362 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8363 L:      linux-scsi@vger.kernel.org
8364 S:      Maintained
8365 F:      drivers/scsi/NCR_D700.*
8366
8367 NCT6775 HARDWARE MONITOR DRIVER
8368 M:      Guenter Roeck <linux@roeck-us.net>
8369 L:      linux-hwmon@vger.kernel.org
8370 S:      Maintained
8371 F:      Documentation/hwmon/nct6775
8372 F:      drivers/hwmon/nct6775.c
8373
8374 NETEFFECT IWARP RNIC DRIVER (IW_NES)
8375 M:      Faisal Latif <faisal.latif@intel.com>
8376 L:      linux-rdma@vger.kernel.org
8377 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
8378 S:      Supported
8379 F:      drivers/infiniband/hw/nes/
8380 F:      include/uapi/rdma/nes-abi.h
8381
8382 NETEM NETWORK EMULATOR
8383 M:      Stephen Hemminger <stephen@networkplumber.org>
8384 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
8385 S:      Maintained
8386 F:      net/sched/sch_netem.c
8387
8388 NETERION 10GbE DRIVERS (s2io/vxge)
8389 M:      Jon Mason <jdmason@kudzu.us>
8390 L:      netdev@vger.kernel.org
8391 S:      Supported
8392 F:      Documentation/networking/s2io.txt
8393 F:      Documentation/networking/vxge.txt
8394 F:      drivers/net/ethernet/neterion/
8395
8396 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
8397 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8398 M:      Patrick McHardy <kaber@trash.net>
8399 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
8400 L:      netfilter-devel@vger.kernel.org
8401 L:      coreteam@netfilter.org
8402 W:      http://www.netfilter.org/
8403 W:      http://www.iptables.org/
8404 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
8405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
8406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
8407 S:      Supported
8408 F:      include/linux/netfilter*
8409 F:      include/linux/netfilter/
8410 F:      include/net/netfilter/
8411 F:      include/uapi/linux/netfilter*
8412 F:      include/uapi/linux/netfilter/
8413 F:      net/*/netfilter.c
8414 F:      net/*/netfilter/
8415 F:      net/netfilter/
8416 F:      net/bridge/br_netfilter*.c
8417
8418 NETLABEL
8419 M:      Paul Moore <paul@paul-moore.com>
8420 W:      http://netlabel.sf.net
8421 L:      netdev@vger.kernel.org
8422 S:      Maintained
8423 F:      Documentation/netlabel/
8424 F:      include/net/netlabel.h
8425 F:      net/netlabel/
8426
8427 NETROM NETWORK LAYER
8428 M:      Ralf Baechle <ralf@linux-mips.org>
8429 L:      linux-hams@vger.kernel.org
8430 W:      http://www.linux-ax25.org/
8431 S:      Maintained
8432 F:      include/net/netrom.h
8433 F:      include/uapi/linux/netrom.h
8434 F:      net/netrom/
8435
8436 NETRONOME ETHERNET DRIVERS
8437 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
8438 L:      oss-drivers@netronome.com
8439 S:      Maintained
8440 F:      drivers/net/ethernet/netronome/
8441
8442 NETWORK BLOCK DEVICE (NBD)
8443 M:      Markus Pargmann <mpa@pengutronix.de>
8444 S:      Maintained
8445 L:      nbd-general@lists.sourceforge.net
8446 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
8447 F:      Documentation/blockdev/nbd.txt
8448 F:      drivers/block/nbd.c
8449 F:      include/uapi/linux/nbd.h
8450
8451 NETWORK DROP MONITOR
8452 M:      Neil Horman <nhorman@tuxdriver.com>
8453 L:      netdev@vger.kernel.org
8454 S:      Maintained
8455 W:      https://fedorahosted.org/dropwatch/
8456 F:      net/core/drop_monitor.c
8457
8458 NETWORKING [DSA]
8459 M:      Andrew Lunn <andrew@lunn.ch>
8460 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8461 M:      Florian Fainelli <f.fainelli@gmail.com>
8462 S:      Maintained
8463 F:      net/dsa/
8464 F:      include/net/dsa.h
8465 F:      drivers/net/dsa/
8466
8467 NETWORKING [GENERAL]
8468 M:      "David S. Miller" <davem@davemloft.net>
8469 L:      netdev@vger.kernel.org
8470 W:      http://www.linuxfoundation.org/en/Net
8471 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8474 S:      Maintained
8475 F:      net/
8476 F:      include/net/
8477 F:      include/linux/in.h
8478 F:      include/linux/net.h
8479 F:      include/linux/netdevice.h
8480 F:      include/uapi/linux/in.h
8481 F:      include/uapi/linux/net.h
8482 F:      include/uapi/linux/netdevice.h
8483 F:      include/uapi/linux/net_namespace.h
8484 F:      tools/net/
8485 F:      tools/testing/selftests/net/
8486 F:      lib/random32.c
8487
8488 NETWORKING [IPv4/IPv6]
8489 M:      "David S. Miller" <davem@davemloft.net>
8490 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8491 M:      James Morris <jmorris@namei.org>
8492 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
8493 M:      Patrick McHardy <kaber@trash.net>
8494 L:      netdev@vger.kernel.org
8495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8496 S:      Maintained
8497 F:      net/ipv4/
8498 F:      net/ipv6/
8499 F:      include/net/ip*
8500 F:      arch/x86/net/*
8501
8502 NETWORKING [IPSEC]
8503 M:      Steffen Klassert <steffen.klassert@secunet.com>
8504 M:      Herbert Xu <herbert@gondor.apana.org.au>
8505 M:      "David S. Miller" <davem@davemloft.net>
8506 L:      netdev@vger.kernel.org
8507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
8508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
8509 S:      Maintained
8510 F:      net/core/flow.c
8511 F:      net/xfrm/
8512 F:      net/key/
8513 F:      net/ipv4/xfrm*
8514 F:      net/ipv4/esp4.c
8515 F:      net/ipv4/ah4.c
8516 F:      net/ipv4/ipcomp.c
8517 F:      net/ipv4/ip_vti.c
8518 F:      net/ipv6/xfrm*
8519 F:      net/ipv6/esp6.c
8520 F:      net/ipv6/ah6.c
8521 F:      net/ipv6/ipcomp6.c
8522 F:      net/ipv6/ip6_vti.c
8523 F:      include/uapi/linux/xfrm.h
8524 F:      include/net/xfrm.h
8525
8526 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
8527 M:      Paul Moore <paul@paul-moore.com>
8528 L:      netdev@vger.kernel.org
8529 S:      Maintained
8530
8531 NETWORKING [WIRELESS]
8532 L:      linux-wireless@vger.kernel.org
8533 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8534
8535 NETWORKING DRIVERS
8536 L:      netdev@vger.kernel.org
8537 W:      http://www.linuxfoundation.org/en/Net
8538 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8541 S:      Odd Fixes
8542 F:      Documentation/devicetree/bindings/net/
8543 F:      drivers/net/
8544 F:      include/linux/if_*
8545 F:      include/linux/netdevice.h
8546 F:      include/linux/etherdevice.h
8547 F:      include/linux/fcdevice.h
8548 F:      include/linux/fddidevice.h
8549 F:      include/linux/hippidevice.h
8550 F:      include/linux/inetdevice.h
8551 F:      include/uapi/linux/if_*
8552 F:      include/uapi/linux/netdevice.h
8553
8554 NETWORKING DRIVERS (WIRELESS)
8555 M:      Kalle Valo <kvalo@codeaurora.org>
8556 L:      linux-wireless@vger.kernel.org
8557 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
8559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
8560 S:      Maintained
8561 F:      Documentation/devicetree/bindings/net/wireless/
8562 F:      drivers/net/wireless/
8563
8564 NETXEN (1/10) GbE SUPPORT
8565 M:      Manish Chopra <manish.chopra@cavium.com>
8566 M:      Rahul Verma <rahul.verma@cavium.com>
8567 M:      Dept-GELinuxNICDev@cavium.com
8568 L:      netdev@vger.kernel.org
8569 S:      Supported
8570 F:      drivers/net/ethernet/qlogic/netxen/
8571
8572 NFC SUBSYSTEM
8573 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
8574 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8575 M:      Samuel Ortiz <sameo@linux.intel.com>
8576 L:      linux-wireless@vger.kernel.org
8577 L:      linux-nfc@lists.01.org (subscribers-only)
8578 S:      Supported
8579 F:      net/nfc/
8580 F:      include/net/nfc/
8581 F:      include/uapi/linux/nfc.h
8582 F:      drivers/nfc/
8583 F:      include/linux/platform_data/nfcmrvl.h
8584 F:      include/linux/platform_data/nxp-nci.h
8585 F:      include/linux/platform_data/pn544.h
8586 F:      include/linux/platform_data/st21nfca.h
8587 F:      include/linux/platform_data/st-nci.h
8588 F:      Documentation/devicetree/bindings/net/nfc/
8589
8590 NFS, SUNRPC, AND LOCKD CLIENTS
8591 M:      Trond Myklebust <trond.myklebust@primarydata.com>
8592 M:      Anna Schumaker <anna.schumaker@netapp.com>
8593 L:      linux-nfs@vger.kernel.org
8594 W:      http://client.linux-nfs.org
8595 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
8596 S:      Maintained
8597 F:      fs/lockd/
8598 F:      fs/nfs/
8599 F:      fs/nfs_common/
8600 F:      net/sunrpc/
8601 F:      include/linux/lockd/
8602 F:      include/linux/nfs*
8603 F:      include/linux/sunrpc/
8604 F:      include/uapi/linux/nfs*
8605 F:      include/uapi/linux/sunrpc/
8606
8607 NILFS2 FILESYSTEM
8608 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
8609 L:      linux-nilfs@vger.kernel.org
8610 W:      http://nilfs.sourceforge.net/
8611 W:      http://nilfs.osdn.jp/
8612 T:      git git://github.com/konis/nilfs2.git
8613 S:      Supported
8614 F:      Documentation/filesystems/nilfs2.txt
8615 F:      fs/nilfs2/
8616 F:      include/trace/events/nilfs2.h
8617 F:      include/uapi/linux/nilfs2_api.h
8618 F:      include/uapi/linux/nilfs2_ondisk.h
8619
8620 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
8621 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8622 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8623 S:      Maintained
8624 F:      Documentation/scsi/NinjaSCSI.txt
8625 F:      drivers/scsi/pcmcia/nsp_*
8626
8627 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
8628 M:      GOTO Masanori <gotom@debian.or.jp>
8629 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8630 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8631 S:      Maintained
8632 F:      Documentation/scsi/NinjaSCSI.txt
8633 F:      drivers/scsi/nsp32*
8634
8635 NIOS2 ARCHITECTURE
8636 M:      Ley Foon Tan <lftan@altera.com>
8637 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
8639 S:      Maintained
8640 F:      arch/nios2/
8641
8642 NOKIA N900 POWER SUPPLY DRIVERS
8643 R:      Pali Rohár <pali.rohar@gmail.com>
8644 F:      include/linux/power/bq2415x_charger.h
8645 F:      include/linux/power/bq27xxx_battery.h
8646 F:      include/linux/power/isp1704_charger.h
8647 F:      drivers/power/supply/bq2415x_charger.c
8648 F:      drivers/power/supply/bq27xxx_battery.c
8649 F:      drivers/power/supply/bq27xxx_battery_i2c.c
8650 F:      drivers/power/supply/isp1704_charger.c
8651 F:      drivers/power/supply/rx51_battery.c
8652
8653 NTB DRIVER CORE
8654 M:      Jon Mason <jdmason@kudzu.us>
8655 M:      Dave Jiang <dave.jiang@intel.com>
8656 M:      Allen Hubbe <Allen.Hubbe@emc.com>
8657 L:      linux-ntb@googlegroups.com
8658 S:      Supported
8659 W:      https://github.com/jonmason/ntb/wiki
8660 T:      git git://github.com/jonmason/ntb.git
8661 F:      drivers/ntb/
8662 F:      drivers/net/ntb_netdev.c
8663 F:      include/linux/ntb.h
8664 F:      include/linux/ntb_transport.h
8665 F:      tools/testing/selftests/ntb/
8666
8667 NTB INTEL DRIVER
8668 M:      Jon Mason <jdmason@kudzu.us>
8669 M:      Dave Jiang <dave.jiang@intel.com>
8670 L:      linux-ntb@googlegroups.com
8671 S:      Supported
8672 W:      https://github.com/jonmason/ntb/wiki
8673 T:      git git://github.com/jonmason/ntb.git
8674 F:      drivers/ntb/hw/intel/
8675
8676 NTB AMD DRIVER
8677 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
8678 L:      linux-ntb@googlegroups.com
8679 S:      Supported
8680 F:      drivers/ntb/hw/amd/
8681
8682 NTFS FILESYSTEM
8683 M:      Anton Altaparmakov <anton@tuxera.com>
8684 L:      linux-ntfs-dev@lists.sourceforge.net
8685 W:      http://www.tuxera.com/
8686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
8687 S:      Supported
8688 F:      Documentation/filesystems/ntfs.txt
8689 F:      fs/ntfs/
8690
8691 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
8692 M:      Antonino Daplas <adaplas@gmail.com>
8693 L:      linux-fbdev@vger.kernel.org
8694 S:      Maintained
8695 F:      drivers/video/fbdev/riva/
8696 F:      drivers/video/fbdev/nvidia/
8697
8698 NVM EXPRESS DRIVER
8699 M:      Keith Busch <keith.busch@intel.com>
8700 M:      Jens Axboe <axboe@fb.com>
8701 L:      linux-nvme@lists.infradead.org
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8703 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
8704 S:      Supported
8705 F:      drivers/nvme/host/
8706 F:      include/linux/nvme.h
8707
8708 NVM EXPRESS TARGET DRIVER
8709 M:      Christoph Hellwig <hch@lst.de>
8710 M:      Sagi Grimberg <sagi@grimberg.me>
8711 L:      linux-nvme@lists.infradead.org
8712 S:      Supported
8713 F:      drivers/nvme/target/
8714
8715 NVMEM FRAMEWORK
8716 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8717 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8718 S:      Maintained
8719 F:      drivers/nvmem/
8720 F:      Documentation/devicetree/bindings/nvmem/
8721 F:      include/linux/nvmem-consumer.h
8722 F:      include/linux/nvmem-provider.h
8723
8724 NXP-NCI NFC DRIVER
8725 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8726 R:      Charles Gorand <charles.gorand@effinnov.com>
8727 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8728 S:      Supported
8729 F:      drivers/nfc/nxp-nci
8730
8731 NXP TDA998X DRM DRIVER
8732 M:      Russell King <rmk+kernel@armlinux.org.uk>
8733 S:      Supported
8734 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8735 F:      include/drm/i2c/tda998x.h
8736
8737 NXP TFA9879 DRIVER
8738 M:      Peter Rosin <peda@axentia.se>
8739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8740 S:      Maintained
8741 F:      sound/soc/codecs/tfa9879*
8742
8743 OBJTOOL
8744 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8745 S:      Supported
8746 F:      tools/objtool/
8747
8748 OMAP SUPPORT
8749 M:      Tony Lindgren <tony@atomide.com>
8750 L:      linux-omap@vger.kernel.org
8751 W:      http://www.muru.com/linux/omap/
8752 W:      http://linux.omap.com/
8753 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8755 S:      Maintained
8756 F:      arch/arm/*omap*/
8757 F:      arch/arm/configs/omap1_defconfig
8758 F:      arch/arm/configs/omap2plus_defconfig
8759 F:      drivers/i2c/busses/i2c-omap.c
8760 F:      drivers/irqchip/irq-omap-intc.c
8761 F:      drivers/mfd/*omap*.c
8762 F:      drivers/mfd/menelaus.c
8763 F:      drivers/mfd/palmas.c
8764 F:      drivers/mfd/tps65217.c
8765 F:      drivers/mfd/tps65218.c
8766 F:      drivers/mfd/tps65910.c
8767 F:      drivers/mfd/twl-core.[ch]
8768 F:      drivers/mfd/twl4030*.c
8769 F:      drivers/mfd/twl6030*.c
8770 F:      drivers/mfd/twl6040*.c
8771 F:      drivers/regulator/palmas-regulator*.c
8772 F:      drivers/regulator/pbias-regulator.c
8773 F:      drivers/regulator/tps65217-regulator.c
8774 F:      drivers/regulator/tps65218-regulator.c
8775 F:      drivers/regulator/tps65910-regulator.c
8776 F:      drivers/regulator/twl-regulator.c
8777 F:      drivers/regulator/twl6030-regulator.c
8778 F:      include/linux/i2c-omap.h
8779
8780 OMAP DEVICE TREE SUPPORT
8781 M:      Benoît Cousson <bcousson@baylibre.com>
8782 M:      Tony Lindgren <tony@atomide.com>
8783 L:      linux-omap@vger.kernel.org
8784 L:      devicetree@vger.kernel.org
8785 S:      Maintained
8786 F:      arch/arm/boot/dts/*omap*
8787 F:      arch/arm/boot/dts/*am3*
8788 F:      arch/arm/boot/dts/*am4*
8789 F:      arch/arm/boot/dts/*am5*
8790 F:      arch/arm/boot/dts/*dra7*
8791
8792 OMAP CLOCK FRAMEWORK SUPPORT
8793 M:      Paul Walmsley <paul@pwsan.com>
8794 L:      linux-omap@vger.kernel.org
8795 S:      Maintained
8796 F:      arch/arm/*omap*/*clock*
8797
8798 OMAP POWER MANAGEMENT SUPPORT
8799 M:      Kevin Hilman <khilman@kernel.org>
8800 L:      linux-omap@vger.kernel.org
8801 S:      Maintained
8802 F:      arch/arm/*omap*/*pm*
8803 F:      drivers/cpufreq/omap-cpufreq.c
8804
8805 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8806 M:      Rajendra Nayak <rnayak@codeaurora.org>
8807 M:      Paul Walmsley <paul@pwsan.com>
8808 L:      linux-omap@vger.kernel.org
8809 S:      Maintained
8810 F:      arch/arm/mach-omap2/prm*
8811
8812 OMAP AUDIO SUPPORT
8813 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8814 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8815 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8816 L:      linux-omap@vger.kernel.org
8817 S:      Maintained
8818 F:      sound/soc/omap/
8819
8820 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8821 M:      Roger Quadros <rogerq@ti.com>
8822 M:      Tony Lindgren <tony@atomide.com>
8823 L:      linux-omap@vger.kernel.org
8824 S:      Maintained
8825 F:      drivers/memory/omap-gpmc.c
8826 F:      arch/arm/mach-omap2/*gpmc*
8827
8828 OMAP FRAMEBUFFER SUPPORT
8829 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8830 L:      linux-fbdev@vger.kernel.org
8831 L:      linux-omap@vger.kernel.org
8832 S:      Maintained
8833 F:      drivers/video/fbdev/omap/
8834
8835 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8836 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8837 L:      linux-omap@vger.kernel.org
8838 L:      linux-fbdev@vger.kernel.org
8839 S:      Maintained
8840 F:      drivers/video/fbdev/omap2/
8841 F:      Documentation/arm/OMAP/DSS
8842
8843 OMAP HARDWARE SPINLOCK SUPPORT
8844 M:      Ohad Ben-Cohen <ohad@wizery.com>
8845 L:      linux-omap@vger.kernel.org
8846 S:      Maintained
8847 F:      drivers/hwspinlock/omap_hwspinlock.c
8848
8849 OMAP MMC SUPPORT
8850 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8851 L:      linux-omap@vger.kernel.org
8852 S:      Maintained
8853 F:      drivers/mmc/host/omap.c
8854
8855 OMAP HS MMC SUPPORT
8856 L:      linux-mmc@vger.kernel.org
8857 L:      linux-omap@vger.kernel.org
8858 S:      Orphan
8859 F:      drivers/mmc/host/omap_hsmmc.c
8860
8861 OMAP RANDOM NUMBER GENERATOR SUPPORT
8862 M:      Deepak Saxena <dsaxena@plexity.net>
8863 S:      Maintained
8864 F:      drivers/char/hw_random/omap-rng.c
8865
8866 OMAP HWMOD SUPPORT
8867 M:      Benoît Cousson <bcousson@baylibre.com>
8868 M:      Paul Walmsley <paul@pwsan.com>
8869 L:      linux-omap@vger.kernel.org
8870 S:      Maintained
8871 F:      arch/arm/mach-omap2/omap_hwmod.*
8872
8873 OMAP HWMOD DATA
8874 M:      Paul Walmsley <paul@pwsan.com>
8875 L:      linux-omap@vger.kernel.org
8876 S:      Maintained
8877 F:      arch/arm/mach-omap2/omap_hwmod*data*
8878
8879 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8880 M:      Benoît Cousson <bcousson@baylibre.com>
8881 L:      linux-omap@vger.kernel.org
8882 S:      Maintained
8883 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8884
8885 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8886 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8887 L:      linux-media@vger.kernel.org
8888 S:      Maintained
8889 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8890 F:      drivers/media/platform/omap3isp/
8891 F:      drivers/staging/media/omap4iss/
8892
8893 OMAP USB SUPPORT
8894 L:      linux-usb@vger.kernel.org
8895 L:      linux-omap@vger.kernel.org
8896 S:      Orphan
8897 F:      drivers/usb/*/*omap*
8898 F:      arch/arm/*omap*/usb*
8899
8900 OMAP GPIO DRIVER
8901 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8902 M:      Santosh Shilimkar <ssantosh@kernel.org>
8903 M:      Kevin Hilman <khilman@kernel.org>
8904 L:      linux-omap@vger.kernel.org
8905 S:      Maintained
8906 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8907 F:      drivers/gpio/gpio-omap.c
8908
8909 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8910 M:      Mark Jackson <mpfj@newflow.co.uk>
8911 L:      linux-omap@vger.kernel.org
8912 S:      Maintained
8913 F:      arch/arm/boot/dts/am335x-nano.dts
8914
8915 OMFS FILESYSTEM
8916 M:      Bob Copeland <me@bobcopeland.com>
8917 L:      linux-karma-devel@lists.sourceforge.net
8918 S:      Maintained
8919 F:      Documentation/filesystems/omfs.txt
8920 F:      fs/omfs/
8921
8922 OMNIKEY CARDMAN 4000 DRIVER
8923 M:      Harald Welte <laforge@gnumonks.org>
8924 S:      Maintained
8925 F:      drivers/char/pcmcia/cm4000_cs.c
8926 F:      include/linux/cm4000_cs.h
8927 F:      include/uapi/linux/cm4000_cs.h
8928
8929 OMNIKEY CARDMAN 4040 DRIVER
8930 M:      Harald Welte <laforge@gnumonks.org>
8931 S:      Maintained
8932 F:      drivers/char/pcmcia/cm4040_cs.*
8933
8934 OMNIVISION OV7670 SENSOR DRIVER
8935 M:      Jonathan Corbet <corbet@lwn.net>
8936 L:      linux-media@vger.kernel.org
8937 T:      git git://linuxtv.org/media_tree.git
8938 S:      Maintained
8939 F:      drivers/media/i2c/ov7670.c
8940
8941 ONENAND FLASH DRIVER
8942 M:      Kyungmin Park <kyungmin.park@samsung.com>
8943 L:      linux-mtd@lists.infradead.org
8944 S:      Maintained
8945 F:      drivers/mtd/onenand/
8946 F:      include/linux/mtd/onenand*.h
8947
8948 ONSTREAM SCSI TAPE DRIVER
8949 M:      Willem Riede <osst@riede.org>
8950 L:      osst-users@lists.sourceforge.net
8951 L:      linux-scsi@vger.kernel.org
8952 S:      Maintained
8953 F:      Documentation/scsi/osst.txt
8954 F:      drivers/scsi/osst.*
8955 F:      drivers/scsi/osst_*.h
8956 F:      drivers/scsi/st.h
8957
8958 OPENCORES I2C BUS DRIVER
8959 M:      Peter Korsgaard <jacmet@sunsite.dk>
8960 L:      linux-i2c@vger.kernel.org
8961 S:      Maintained
8962 F:      Documentation/i2c/busses/i2c-ocores
8963 F:      drivers/i2c/busses/i2c-ocores.c
8964
8965 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8966 M:      Rob Herring <robh+dt@kernel.org>
8967 M:      Frank Rowand <frowand.list@gmail.com>
8968 L:      devicetree@vger.kernel.org
8969 W:      http://www.devicetree.org/
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8971 S:      Maintained
8972 F:      drivers/of/
8973 F:      include/linux/of*.h
8974 F:      scripts/dtc/
8975
8976 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8977 M:      Rob Herring <robh+dt@kernel.org>
8978 M:      Mark Rutland <mark.rutland@arm.com>
8979 L:      devicetree@vger.kernel.org
8980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8981 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
8982 S:      Maintained
8983 F:      Documentation/devicetree/
8984 F:      arch/*/boot/dts/
8985 F:      include/dt-bindings/
8986
8987 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8988 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8989 L:      devicetree@vger.kernel.org
8990 S:      Maintained
8991 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8992 F:      Documentation/devicetree/overlay-notes.txt
8993 F:      drivers/of/overlay.c
8994 F:      drivers/of/resolver.c
8995
8996 OPENRISC ARCHITECTURE
8997 M:      Jonas Bonn <jonas@southpole.se>
8998 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
8999 M:      Stafford Horne <shorne@gmail.com>
9000 L:      openrisc@lists.librecores.org
9001 W:      http://openrisc.io
9002 S:      Maintained
9003 F:      arch/openrisc/
9004
9005 OPENVSWITCH
9006 M:      Pravin Shelar <pshelar@nicira.com>
9007 L:      netdev@vger.kernel.org
9008 L:      dev@openvswitch.org
9009 W:      http://openvswitch.org
9010 S:      Maintained
9011 F:      net/openvswitch/
9012 F:      include/uapi/linux/openvswitch.h
9013
9014 OPERATING PERFORMANCE POINTS (OPP)
9015 M:      Viresh Kumar <vireshk@kernel.org>
9016 M:      Nishanth Menon <nm@ti.com>
9017 M:      Stephen Boyd <sboyd@codeaurora.org>
9018 L:      linux-pm@vger.kernel.org
9019 S:      Maintained
9020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
9021 F:      drivers/base/power/opp/
9022 F:      include/linux/pm_opp.h
9023 F:      Documentation/power/opp.txt
9024 F:      Documentation/devicetree/bindings/opp/
9025
9026 OPL4 DRIVER
9027 M:      Clemens Ladisch <clemens@ladisch.de>
9028 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9029 T:      git git://git.alsa-project.org/alsa-kernel.git
9030 S:      Maintained
9031 F:      sound/drivers/opl4/
9032
9033 OPROFILE
9034 M:      Robert Richter <rric@kernel.org>
9035 L:      oprofile-list@lists.sf.net
9036 S:      Maintained
9037 F:      arch/*/include/asm/oprofile*.h
9038 F:      arch/*/oprofile/
9039 F:      drivers/oprofile/
9040 F:      include/linux/oprofile.h
9041
9042 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
9043 M:      Mark Fasheh <mfasheh@versity.com>
9044 M:      Joel Becker <jlbec@evilplan.org>
9045 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
9046 W:      http://ocfs2.wiki.kernel.org
9047 S:      Supported
9048 F:      Documentation/filesystems/ocfs2.txt
9049 F:      Documentation/filesystems/dlmfs.txt
9050 F:      fs/ocfs2/
9051
9052 ORINOCO DRIVER
9053 L:      linux-wireless@vger.kernel.org
9054 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
9055 W:      http://www.nongnu.org/orinoco/
9056 S:      Orphan
9057 F:      drivers/net/wireless/intersil/orinoco/
9058
9059 OSD LIBRARY and FILESYSTEM
9060 M:      Boaz Harrosh <ooo@electrozaur.com>
9061 M:      Benny Halevy <bhalevy@primarydata.com>
9062 L:      osd-dev@open-osd.org
9063 W:      http://open-osd.org
9064 T:      git git://git.open-osd.org/open-osd.git
9065 S:      Maintained
9066 F:      drivers/scsi/osd/
9067 F:      include/scsi/osd_*
9068 F:      fs/exofs/
9069
9070 OVERLAY FILESYSTEM
9071 M:      Miklos Szeredi <miklos@szeredi.hu>
9072 L:      linux-unionfs@vger.kernel.org
9073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
9074 S:      Supported
9075 F:      fs/overlayfs/
9076 F:      Documentation/filesystems/overlayfs.txt
9077
9078 ORANGEFS FILESYSTEM
9079 M:      Mike Marshall <hubcap@omnibond.com>
9080 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
9081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
9082 S:      Supported
9083 F:      fs/orangefs/
9084 F:      Documentation/filesystems/orangefs.txt
9085
9086 P54 WIRELESS DRIVER
9087 M:      Christian Lamparter <chunkeey@googlemail.com>
9088 L:      linux-wireless@vger.kernel.org
9089 W:      http://wireless.kernel.org/en/users/Drivers/p54
9090 S:      Maintained
9091 F:      drivers/net/wireless/intersil/p54/
9092
9093 PA SEMI ETHERNET DRIVER
9094 L:      netdev@vger.kernel.org
9095 S:      Orphan
9096 F:      drivers/net/ethernet/pasemi/*
9097
9098 PA SEMI SMBUS DRIVER
9099 L:      linux-i2c@vger.kernel.org
9100 S:      Orphan
9101 F:      drivers/i2c/busses/i2c-pasemi.c
9102
9103 PADATA PARALLEL EXECUTION MECHANISM
9104 M:      Steffen Klassert <steffen.klassert@secunet.com>
9105 L:      linux-crypto@vger.kernel.org
9106 S:      Maintained
9107 F:      kernel/padata.c
9108 F:      include/linux/padata.h
9109 F:      Documentation/padata.txt
9110
9111 PANASONIC LAPTOP ACPI EXTRAS DRIVER
9112 M:      Harald Welte <laforge@gnumonks.org>
9113 L:      platform-driver-x86@vger.kernel.org
9114 S:      Maintained
9115 F:      drivers/platform/x86/panasonic-laptop.c
9116
9117 PANASONIC MN10300/AM33/AM34 PORT
9118 M:      David Howells <dhowells@redhat.com>
9119 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
9120 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
9121 S:      Maintained
9122 F:      Documentation/mn10300/
9123 F:      arch/mn10300/
9124
9125 PARALLEL LCD/KEYPAD PANEL DRIVER
9126 M:      Willy Tarreau <willy@haproxy.com>
9127 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
9128 S:      Odd Fixes
9129 F:      Documentation/misc-devices/lcd-panel-cgram.txt
9130 F:      drivers/misc/panel.c
9131
9132 PARALLEL PORT SUBSYSTEM
9133 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9134 M:      Sudip Mukherjee <sudip@vectorindia.org>
9135 L:      linux-parport@lists.infradead.org (subscribers-only)
9136 S:      Maintained
9137 F:      drivers/parport/
9138 F:      include/linux/parport*.h
9139 F:      drivers/char/ppdev.c
9140 F:      include/uapi/linux/ppdev.h
9141 F:      Documentation/parport*.txt
9142
9143 PARAVIRT_OPS INTERFACE
9144 M:      Jeremy Fitzhardinge <jeremy@goop.org>
9145 M:      Chris Wright <chrisw@sous-sol.org>
9146 M:      Alok Kataria <akataria@vmware.com>
9147 M:      Rusty Russell <rusty@rustcorp.com.au>
9148 L:      virtualization@lists.linux-foundation.org
9149 S:      Supported
9150 F:      Documentation/virtual/paravirt_ops.txt
9151 F:      arch/*/kernel/paravirt*
9152 F:      arch/*/include/asm/paravirt.h
9153 F:      include/linux/hypervisor.h
9154
9155 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
9156 M:      Tim Waugh <tim@cyberelk.net>
9157 L:      linux-parport@lists.infradead.org (subscribers-only)
9158 S:      Maintained
9159 F:      Documentation/blockdev/paride.txt
9160 F:      drivers/block/paride/
9161
9162 PARISC ARCHITECTURE
9163 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
9164 M:      Helge Deller <deller@gmx.de>
9165 L:      linux-parisc@vger.kernel.org
9166 W:      http://www.parisc-linux.org/
9167 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
9168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
9169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
9170 S:      Maintained
9171 F:      arch/parisc/
9172 F:      Documentation/parisc/
9173 F:      drivers/parisc/
9174 F:      drivers/char/agp/parisc-agp.c
9175 F:      drivers/input/serio/gscps2.c
9176 F:      drivers/parport/parport_gsc.*
9177 F:      drivers/tty/serial/8250/8250_gsc.c
9178 F:      drivers/video/fbdev/sti*
9179 F:      drivers/video/console/sti*
9180 F:      drivers/video/logo/logo_parisc*
9181
9182 PC87360 HARDWARE MONITORING DRIVER
9183 M:      Jim Cromie <jim.cromie@gmail.com>
9184 L:      linux-hwmon@vger.kernel.org
9185 S:      Maintained
9186 F:      Documentation/hwmon/pc87360
9187 F:      drivers/hwmon/pc87360.c
9188
9189 PC8736x GPIO DRIVER
9190 M:      Jim Cromie <jim.cromie@gmail.com>
9191 S:      Maintained
9192 F:      drivers/char/pc8736x_gpio.c
9193
9194 PC87427 HARDWARE MONITORING DRIVER
9195 M:      Jean Delvare <jdelvare@suse.com>
9196 L:      linux-hwmon@vger.kernel.org
9197 S:      Maintained
9198 F:      Documentation/hwmon/pc87427
9199 F:      drivers/hwmon/pc87427.c
9200
9201 PCA9532 LED DRIVER
9202 M:      Riku Voipio <riku.voipio@iki.fi>
9203 S:      Maintained
9204 F:      drivers/leds/leds-pca9532.c
9205 F:      include/linux/leds-pca9532.h
9206
9207 PCA9541 I2C BUS MASTER SELECTOR DRIVER
9208 M:      Guenter Roeck <linux@roeck-us.net>
9209 L:      linux-i2c@vger.kernel.org
9210 S:      Maintained
9211 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
9212
9213 PCDP - PRIMARY CONSOLE AND DEBUG PORT
9214 M:      Khalid Aziz <khalid@gonehiking.org>
9215 S:      Maintained
9216 F:      drivers/firmware/pcdp.*
9217
9218 PCI ERROR RECOVERY
9219 M:      Linas Vepstas <linasvepstas@gmail.com>
9220 L:      linux-pci@vger.kernel.org
9221 S:      Supported
9222 F:      Documentation/PCI/pci-error-recovery.txt
9223
9224 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
9225 M:      Russell Currey <ruscur@russell.cc>
9226 L:      linuxppc-dev@lists.ozlabs.org
9227 S:      Supported
9228 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
9229 F:      arch/powerpc/kernel/eeh*.c
9230 F:      arch/powerpc/platforms/*/eeh*.c
9231 F:      arch/powerpc/include/*/eeh*.h
9232
9233 PCI SUBSYSTEM
9234 M:      Bjorn Helgaas <bhelgaas@google.com>
9235 L:      linux-pci@vger.kernel.org
9236 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
9237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
9238 S:      Supported
9239 F:      Documentation/devicetree/bindings/pci/
9240 F:      Documentation/PCI/
9241 F:      drivers/pci/
9242 F:      include/linux/pci*
9243 F:      arch/x86/pci/
9244 F:      arch/x86/kernel/quirks.c
9245
9246 PCI DRIVER FOR ALTERA PCIE IP
9247 M:      Ley Foon Tan <lftan@altera.com>
9248 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
9249 L:      linux-pci@vger.kernel.org
9250 S:      Supported
9251 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
9252 F:      drivers/pci/host/pcie-altera.c
9253
9254 PCI DRIVER FOR ARM VERSATILE PLATFORM
9255 M:      Rob Herring <robh@kernel.org>
9256 L:      linux-pci@vger.kernel.org
9257 L:      linux-arm-kernel@lists.infradead.org
9258 S:      Maintained
9259 F:      Documentation/devicetree/bindings/pci/versatile.txt
9260 F:      drivers/pci/host/pci-versatile.c
9261
9262 PCI DRIVER FOR ARMADA 8K
9263 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9264 L:      linux-pci@vger.kernel.org
9265 L:      linux-arm-kernel@lists.infradead.org
9266 S:      Maintained
9267 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
9268 F:      drivers/pci/host/pcie-armada8k.c
9269
9270 PCI DRIVER FOR APPLIEDMICRO XGENE
9271 M:      Tanmay Inamdar <tinamdar@apm.com>
9272 L:      linux-pci@vger.kernel.org
9273 L:      linux-arm-kernel@lists.infradead.org
9274 S:      Maintained
9275 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
9276 F:      drivers/pci/host/pci-xgene.c
9277
9278 PCI DRIVER FOR FREESCALE LAYERSCAPE
9279 M:      Minghuan Lian <minghuan.Lian@freescale.com>
9280 M:      Mingkai Hu <mingkai.hu@freescale.com>
9281 M:      Roy Zang <tie-fei.zang@freescale.com>
9282 L:      linuxppc-dev@lists.ozlabs.org
9283 L:      linux-pci@vger.kernel.org
9284 L:      linux-arm-kernel@lists.infradead.org
9285 S:      Maintained
9286 F:      drivers/pci/host/*layerscape*
9287
9288 PCI DRIVER FOR IMX6
9289 M:      Richard Zhu <hongxing.zhu@nxp.com>
9290 M:      Lucas Stach <l.stach@pengutronix.de>
9291 L:      linux-pci@vger.kernel.org
9292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9293 S:      Maintained
9294 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
9295 F:      drivers/pci/host/*imx6*
9296
9297 PCI DRIVER FOR TI KEYSTONE
9298 M:      Murali Karicheri <m-karicheri2@ti.com>
9299 L:      linux-pci@vger.kernel.org
9300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9301 S:      Maintained
9302 F:      drivers/pci/host/*keystone*
9303
9304 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
9305 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9306 M:      Jason Cooper <jason@lakedaemon.net>
9307 L:      linux-pci@vger.kernel.org
9308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9309 S:      Maintained
9310 F:      drivers/pci/host/*mvebu*
9311
9312 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
9313 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9314 L:      linux-pci@vger.kernel.org
9315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9316 S:      Maintained
9317 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
9318 F:      drivers/pci/host/pci-aardvark.c
9319
9320 PCI DRIVER FOR NVIDIA TEGRA
9321 M:      Thierry Reding <thierry.reding@gmail.com>
9322 L:      linux-tegra@vger.kernel.org
9323 L:      linux-pci@vger.kernel.org
9324 S:      Supported
9325 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
9326 F:      drivers/pci/host/pci-tegra.c
9327
9328 PCI DRIVER FOR TI DRA7XX
9329 M:      Kishon Vijay Abraham I <kishon@ti.com>
9330 L:      linux-omap@vger.kernel.org
9331 L:      linux-pci@vger.kernel.org
9332 S:      Supported
9333 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
9334 F:      drivers/pci/host/pci-dra7xx.c
9335
9336 PCI DRIVER FOR RENESAS R-CAR
9337 M:      Simon Horman <horms@verge.net.au>
9338 L:      linux-pci@vger.kernel.org
9339 L:      linux-renesas-soc@vger.kernel.org
9340 S:      Maintained
9341 F:      drivers/pci/host/*rcar*
9342
9343 PCI DRIVER FOR SAMSUNG EXYNOS
9344 M:      Jingoo Han <jingoohan1@gmail.com>
9345 L:      linux-pci@vger.kernel.org
9346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9347 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9348 S:      Maintained
9349 F:      drivers/pci/host/pci-exynos.c
9350
9351 PCI DRIVER FOR SYNOPSIS DESIGNWARE
9352 M:      Jingoo Han <jingoohan1@gmail.com>
9353 M:      Joao Pinto <Joao.Pinto@synopsys.com>
9354 L:      linux-pci@vger.kernel.org
9355 S:      Maintained
9356 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
9357 F:      drivers/pci/host/*designware*
9358
9359 PCI DRIVER FOR GENERIC OF HOSTS
9360 M:      Will Deacon <will.deacon@arm.com>
9361 L:      linux-pci@vger.kernel.org
9362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9363 S:      Maintained
9364 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
9365 F:      drivers/pci/host/pci-host-common.c
9366 F:      drivers/pci/host/pci-host-generic.c
9367
9368 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
9369 M:      Keith Busch <keith.busch@intel.com>
9370 L:      linux-pci@vger.kernel.org
9371 S:      Supported
9372 F:      drivers/pci/host/vmd.c
9373
9374 PCIE DRIVER FOR ST SPEAR13XX
9375 M:      Pratyush Anand <pratyush.anand@gmail.com>
9376 L:      linux-pci@vger.kernel.org
9377 S:      Maintained
9378 F:      drivers/pci/host/*spear*
9379
9380 PCI MSI DRIVER FOR ALTERA MSI IP
9381 M:      Ley Foon Tan <lftan@altera.com>
9382 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
9383 L:      linux-pci@vger.kernel.org
9384 S:      Supported
9385 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
9386 F:      drivers/pci/host/pcie-altera-msi.c
9387
9388 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
9389 M:      Duc Dang <dhdang@apm.com>
9390 L:      linux-pci@vger.kernel.org
9391 L:      linux-arm-kernel@lists.infradead.org
9392 S:      Maintained
9393 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
9394 F:      drivers/pci/host/pci-xgene-msi.c
9395
9396 PCIE DRIVER FOR AXIS ARTPEC
9397 M:      Niklas Cassel <niklas.cassel@axis.com>
9398 M:      Jesper Nilsson <jesper.nilsson@axis.com>
9399 L:      linux-arm-kernel@axis.com
9400 L:      linux-pci@vger.kernel.org
9401 S:      Maintained
9402 F:      Documentation/devicetree/bindings/pci/axis,artpec*
9403 F:      drivers/pci/host/*artpec*
9404
9405 PCIE DRIVER FOR HISILICON
9406 M:      Zhou Wang <wangzhou1@hisilicon.com>
9407 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
9408 L:      linux-pci@vger.kernel.org
9409 S:      Maintained
9410 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
9411 F:      drivers/pci/host/pcie-hisi.c
9412
9413 PCIE DRIVER FOR ROCKCHIP
9414 M:      Shawn Lin <shawn.lin@rock-chips.com>
9415 M:      Wenrui Li <wenrui.li@rock-chips.com>
9416 L:      linux-pci@vger.kernel.org
9417 L:      linux-rockchip@lists.infradead.org
9418 S:      Maintained
9419 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
9420 F:      drivers/pci/host/pcie-rockchip.c
9421
9422 PCIE DRIVER FOR QUALCOMM MSM
9423 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
9424 L:     linux-pci@vger.kernel.org
9425 L:     linux-arm-msm@vger.kernel.org
9426 S:     Maintained
9427 F:     drivers/pci/host/*qcom*
9428
9429 PCIE DRIVER FOR CAVIUM THUNDERX
9430 M:      David Daney <david.daney@cavium.com>
9431 L:      linux-pci@vger.kernel.org
9432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9433 S:      Supported
9434 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
9435 F:      drivers/pci/host/pci-thunder-*
9436
9437 PCMCIA SUBSYSTEM
9438 P:      Linux PCMCIA Team
9439 L:      linux-pcmcia@lists.infradead.org
9440 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
9441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
9442 S:      Maintained
9443 F:      Documentation/pcmcia/
9444 F:      tools/pcmcia/
9445 F:      drivers/pcmcia/
9446 F:      include/pcmcia/
9447
9448 PCNET32 NETWORK DRIVER
9449 M:      Don Fry <pcnet32@frontier.com>
9450 L:      netdev@vger.kernel.org
9451 S:      Maintained
9452 F:      drivers/net/ethernet/amd/pcnet32.c
9453
9454 PCRYPT PARALLEL CRYPTO ENGINE
9455 M:      Steffen Klassert <steffen.klassert@secunet.com>
9456 L:      linux-crypto@vger.kernel.org
9457 S:      Maintained
9458 F:      crypto/pcrypt.c
9459 F:      include/crypto/pcrypt.h
9460
9461 PER-CPU MEMORY ALLOCATOR
9462 M:      Tejun Heo <tj@kernel.org>
9463 M:      Christoph Lameter <cl@linux.com>
9464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
9465 S:      Maintained
9466 F:      include/linux/percpu*.h
9467 F:      mm/percpu*.c
9468 F:      arch/*/include/asm/percpu.h
9469
9470 PER-TASK DELAY ACCOUNTING
9471 M:      Balbir Singh <bsingharora@gmail.com>
9472 S:      Maintained
9473 F:      include/linux/delayacct.h
9474 F:      kernel/delayacct.c
9475
9476 PERFORMANCE EVENTS SUBSYSTEM
9477 M:      Peter Zijlstra <peterz@infradead.org>
9478 M:      Ingo Molnar <mingo@redhat.com>
9479 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
9480 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9481 L:      linux-kernel@vger.kernel.org
9482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9483 S:      Supported
9484 F:      kernel/events/*
9485 F:      include/linux/perf_event.h
9486 F:      include/uapi/linux/perf_event.h
9487 F:      arch/*/kernel/perf_event*.c
9488 F:      arch/*/kernel/*/perf_event*.c
9489 F:      arch/*/kernel/*/*/perf_event*.c
9490 F:      arch/*/include/asm/perf_event.h
9491 F:      arch/*/kernel/perf_callchain.c
9492 F:      arch/*/events/*
9493 F:      tools/perf/
9494
9495 PERSONALITY HANDLING
9496 M:      Christoph Hellwig <hch@infradead.org>
9497 L:      linux-abi-devel@lists.sourceforge.net
9498 S:      Maintained
9499 F:      include/linux/personality.h
9500 F:      include/uapi/linux/personality.h
9501
9502 PHONET PROTOCOL
9503 M:      Remi Denis-Courmont <courmisch@gmail.com>
9504 S:      Supported
9505 F:      Documentation/networking/phonet.txt
9506 F:      include/linux/phonet.h
9507 F:      include/net/phonet/
9508 F:      include/uapi/linux/phonet.h
9509 F:      net/phonet/
9510
9511 PHRAM MTD DRIVER
9512 M:      Joern Engel <joern@lazybastard.org>
9513 L:      linux-mtd@lists.infradead.org
9514 S:      Maintained
9515 F:      drivers/mtd/devices/phram.c
9516
9517 PICOLCD HID DRIVER
9518 M:      Bruno Prémont <bonbons@linux-vserver.org>
9519 L:      linux-input@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/hid/hid-picolcd*
9522
9523 PICOXCELL SUPPORT
9524 M:      Jamie Iles <jamie@jamieiles.com>
9525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9526 T:      git git://github.com/jamieiles/linux-2.6-ji.git
9527 S:      Supported
9528 F:      arch/arm/boot/dts/picoxcell*
9529 F:      arch/arm/mach-picoxcell/
9530 F:      drivers/crypto/picoxcell*
9531
9532 PIN CONTROL SUBSYSTEM
9533 M:      Linus Walleij <linus.walleij@linaro.org>
9534 L:      linux-gpio@vger.kernel.org
9535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
9536 S:      Maintained
9537 F:      Documentation/devicetree/bindings/pinctrl/
9538 F:      Documentation/pinctrl.txt
9539 F:      drivers/pinctrl/
9540 F:      include/linux/pinctrl/
9541
9542 PIN CONTROLLER - ATMEL AT91
9543 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
9544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9545 S:      Maintained
9546 F:      drivers/pinctrl/pinctrl-at91.*
9547
9548 PIN CONTROLLER - ATMEL AT91 PIO4
9549 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
9550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9551 L:      linux-gpio@vger.kernel.org
9552 S:      Supported
9553 F:      drivers/pinctrl/pinctrl-at91-pio4.*
9554
9555 PIN CONTROLLER - INTEL
9556 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9557 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
9558 S:      Maintained
9559 F:      drivers/pinctrl/intel/
9560
9561 PIN CONTROLLER - RENESAS
9562 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9563 M:      Geert Uytterhoeven <geert+renesas@glider.be>
9564 L:      linux-renesas-soc@vger.kernel.org
9565 S:      Maintained
9566 F:      drivers/pinctrl/sh-pfc/
9567
9568 PIN CONTROLLER - SAMSUNG
9569 M:      Tomasz Figa <tomasz.figa@gmail.com>
9570 M:      Krzysztof Kozlowski <krzk@kernel.org>
9571 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9573 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9574 S:      Maintained
9575 F:      drivers/pinctrl/samsung/
9576 F:      include/dt-bindings/pinctrl/samsung.h
9577 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
9578
9579 PIN CONTROLLER - SINGLE
9580 M:      Tony Lindgren <tony@atomide.com>
9581 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
9582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9583 L:      linux-omap@vger.kernel.org
9584 S:      Maintained
9585 F:      drivers/pinctrl/pinctrl-single.c
9586
9587 PIN CONTROLLER - ST SPEAR
9588 M:      Viresh Kumar <vireshk@kernel.org>
9589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9590 W:      http://www.st.com/spear
9591 S:      Maintained
9592 F:      drivers/pinctrl/spear/
9593
9594 PISTACHIO SOC SUPPORT
9595 M:      James Hartley <james.hartley@imgtec.com>
9596 M:      Ionela Voinescu <ionela.voinescu@imgtec.com>
9597 L:      linux-mips@linux-mips.org
9598 S:      Maintained
9599 F:      arch/mips/pistachio/
9600 F:      arch/mips/include/asm/mach-pistachio/
9601 F:      arch/mips/boot/dts/pistachio/
9602 F:      arch/mips/configs/pistachio*_defconfig
9603
9604 PKTCDVD DRIVER
9605 M:      Jiri Kosina <jikos@kernel.org>
9606 S:      Maintained
9607 F:      drivers/block/pktcdvd.c
9608 F:      include/linux/pktcdvd.h
9609 F:      include/uapi/linux/pktcdvd.h
9610
9611 PKUNITY SOC DRIVERS
9612 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9613 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9614 S:      Maintained
9615 T:      git git://github.com/gxt/linux.git
9616 F:      drivers/input/serio/i8042-unicore32io.h
9617 F:      drivers/i2c/busses/i2c-puv3.c
9618 F:      drivers/video/fbdev/fb-puv3.c
9619 F:      drivers/rtc/rtc-puv3.c
9620
9621 PMBUS HARDWARE MONITORING DRIVERS
9622 M:      Guenter Roeck <linux@roeck-us.net>
9623 L:      linux-hwmon@vger.kernel.org
9624 W:      http://hwmon.wiki.kernel.org/
9625 W:      http://www.roeck-us.net/linux/drivers/
9626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9627 S:      Maintained
9628 F:      Documentation/hwmon/pmbus
9629 F:      drivers/hwmon/pmbus/
9630 F:      include/linux/i2c/pmbus.h
9631
9632 PMC SIERRA MaxRAID DRIVER
9633 L:      linux-scsi@vger.kernel.org
9634 W:      http://www.pmc-sierra.com/
9635 S:      Orphan
9636 F:      drivers/scsi/pmcraid.*
9637
9638 PMC SIERRA PM8001 DRIVER
9639 M:      Jack Wang <jinpu.wang@profitbricks.com>
9640 M:      lindar_liu@usish.com
9641 L:      pmchba@pmcs.com
9642 L:      linux-scsi@vger.kernel.org
9643 S:      Supported
9644 F:      drivers/scsi/pm8001/
9645
9646 POSIX CLOCKS and TIMERS
9647 M:      Thomas Gleixner <tglx@linutronix.de>
9648 L:      linux-kernel@vger.kernel.org
9649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9650 S:      Maintained
9651 F:      fs/timerfd.c
9652 F:      include/linux/timer*
9653 F:      kernel/time/*timer*
9654
9655 POWER MANAGEMENT CORE
9656 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9657 L:      linux-pm@vger.kernel.org
9658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
9659 B:      https://bugzilla.kernel.org
9660 S:      Supported
9661 F:      drivers/base/power/
9662 F:      include/linux/pm.h
9663 F:      include/linux/pm_*
9664 F:      include/linux/powercap.h
9665 F:      drivers/powercap/
9666
9667 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
9668 M:      Sebastian Reichel <sre@kernel.org>
9669 L:      linux-pm@vger.kernel.org
9670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
9671 S:      Maintained
9672 F:      Documentation/devicetree/bindings/power/supply/
9673 F:      include/linux/power_supply.h
9674 F:      drivers/power/supply/
9675
9676 POWER STATE COORDINATION INTERFACE (PSCI)
9677 M:      Mark Rutland <mark.rutland@arm.com>
9678 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
9679 L:      linux-arm-kernel@lists.infradead.org
9680 S:      Maintained
9681 F:      drivers/firmware/psci.c
9682 F:      include/linux/psci.h
9683 F:      include/uapi/linux/psci.h
9684
9685 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
9686 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
9687 L:      linuxppc-dev@lists.ozlabs.org
9688 S:      Maintained
9689 F:      drivers/char/powernv-op-panel.c
9690
9691 PNP SUPPORT
9692 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
9693 S:      Maintained
9694 F:      drivers/pnp/
9695
9696 PPP PROTOCOL DRIVERS AND COMPRESSORS
9697 M:      Paul Mackerras <paulus@samba.org>
9698 L:      linux-ppp@vger.kernel.org
9699 S:      Maintained
9700 F:      drivers/net/ppp/ppp_*
9701
9702 PPP OVER ATM (RFC 2364)
9703 M:      Mitchell Blank Jr <mitch@sfgoth.com>
9704 S:      Maintained
9705 F:      net/atm/pppoatm.c
9706 F:      include/uapi/linux/atmppp.h
9707
9708 PPP OVER ETHERNET
9709 M:      Michal Ostrowski <mostrows@earthlink.net>
9710 S:      Maintained
9711 F:      drivers/net/ppp/pppoe.c
9712 F:      drivers/net/ppp/pppox.c
9713
9714 PPP OVER L2TP
9715 M:      James Chapman <jchapman@katalix.com>
9716 S:      Maintained
9717 F:      net/l2tp/l2tp_ppp.c
9718 F:      include/linux/if_pppol2tp.h
9719 F:      include/uapi/linux/if_pppol2tp.h
9720
9721 PPS SUPPORT
9722 M:      Rodolfo Giometti <giometti@enneenne.com>
9723 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
9724 L:      linuxpps@ml.enneenne.com (subscribers-only)
9725 S:      Maintained
9726 F:      Documentation/pps/
9727 F:      drivers/pps/
9728 F:      include/linux/pps*.h
9729
9730 PPTP DRIVER
9731 M:      Dmitry Kozlov <xeb@mail.ru>
9732 L:      netdev@vger.kernel.org
9733 S:      Maintained
9734 F:      drivers/net/ppp/pptp.c
9735 W:      http://sourceforge.net/projects/accel-pptp
9736
9737 PREEMPTIBLE KERNEL
9738 M:      Robert Love <rml@tech9.net>
9739 L:      kpreempt-tech@lists.sourceforge.net
9740 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
9741 S:      Supported
9742 F:      Documentation/preempt-locking.txt
9743 F:      include/linux/preempt.h
9744
9745 PRISM54 WIRELESS DRIVER
9746 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
9747 L:      linux-wireless@vger.kernel.org
9748 W:      http://wireless.kernel.org/en/users/Drivers/p54
9749 S:      Obsolete
9750 F:      drivers/net/wireless/intersil/prism54/
9751
9752 PS3 NETWORK SUPPORT
9753 M:      Geoff Levand <geoff@infradead.org>
9754 L:      netdev@vger.kernel.org
9755 L:      linuxppc-dev@lists.ozlabs.org
9756 S:      Maintained
9757 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
9758
9759 PS3 PLATFORM SUPPORT
9760 M:      Geoff Levand <geoff@infradead.org>
9761 L:      linuxppc-dev@lists.ozlabs.org
9762 S:      Maintained
9763 F:      arch/powerpc/boot/ps3*
9764 F:      arch/powerpc/include/asm/lv1call.h
9765 F:      arch/powerpc/include/asm/ps3*.h
9766 F:      arch/powerpc/platforms/ps3/
9767 F:      drivers/*/ps3*
9768 F:      drivers/ps3/
9769 F:      drivers/rtc/rtc-ps3.c
9770 F:      drivers/usb/host/*ps3.c
9771 F:      sound/ppc/snd_ps3*
9772
9773 PS3VRAM DRIVER
9774 M:      Jim Paris <jim@jtan.com>
9775 M:      Geoff Levand <geoff@infradead.org>
9776 L:      linuxppc-dev@lists.ozlabs.org
9777 S:      Maintained
9778 F:      drivers/block/ps3vram.c
9779
9780 PSTORE FILESYSTEM
9781 M:      Anton Vorontsov <anton@enomsg.org>
9782 M:      Colin Cross <ccross@android.com>
9783 M:      Kees Cook <keescook@chromium.org>
9784 M:      Tony Luck <tony.luck@intel.com>
9785 S:      Maintained
9786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9787 F:      fs/pstore/
9788 F:      include/linux/pstore*
9789 F:      drivers/firmware/efi/efi-pstore.c
9790 F:      drivers/acpi/apei/erst.c
9791
9792 PTP HARDWARE CLOCK SUPPORT
9793 M:      Richard Cochran <richardcochran@gmail.com>
9794 L:      netdev@vger.kernel.org
9795 S:      Maintained
9796 W:      http://linuxptp.sourceforge.net/
9797 F:      Documentation/ABI/testing/sysfs-ptp
9798 F:      Documentation/ptp/*
9799 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9800 F:      drivers/net/phy/dp83640*
9801 F:      drivers/ptp/*
9802 F:      include/linux/ptp_cl*
9803
9804 PTRACE SUPPORT
9805 M:      Roland McGrath <roland@hack.frob.com>
9806 M:      Oleg Nesterov <oleg@redhat.com>
9807 S:      Maintained
9808 F:      include/asm-generic/syscall.h
9809 F:      include/linux/ptrace.h
9810 F:      include/linux/regset.h
9811 F:      include/linux/tracehook.h
9812 F:      include/uapi/linux/ptrace.h
9813 F:      kernel/ptrace.c
9814
9815 PULSE8-CEC DRIVER
9816 M:      Hans Verkuil <hverkuil@xs4all.nl>
9817 L:      linux-media@vger.kernel.org
9818 T:      git git://linuxtv.org/media_tree.git
9819 S:      Maintained
9820 F:      drivers/staging/media/pulse8-cec
9821
9822 PVRUSB2 VIDEO4LINUX DRIVER
9823 M:      Mike Isely <isely@pobox.com>
9824 L:      pvrusb2@isely.net       (subscribers-only)
9825 L:      linux-media@vger.kernel.org
9826 W:      http://www.isely.net/pvrusb2/
9827 T:      git git://linuxtv.org/media_tree.git
9828 S:      Maintained
9829 F:      Documentation/media/v4l-drivers/pvrusb2*
9830 F:      drivers/media/usb/pvrusb2/
9831
9832 PWC WEBCAM DRIVER
9833 M:      Hans Verkuil <hverkuil@xs4all.nl>
9834 L:      linux-media@vger.kernel.org
9835 T:      git git://linuxtv.org/media_tree.git
9836 S:      Odd Fixes
9837 F:      drivers/media/usb/pwc/*
9838
9839 PWM FAN DRIVER
9840 M:      Kamil Debski <kamil@wypas.org>
9841 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
9842 L:      linux-hwmon@vger.kernel.org
9843 S:      Supported
9844 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9845 F:      Documentation/hwmon/pwm-fan
9846 F:      drivers/hwmon/pwm-fan.c
9847
9848 PWM SUBSYSTEM
9849 M:      Thierry Reding <thierry.reding@gmail.com>
9850 L:      linux-pwm@vger.kernel.org
9851 S:      Maintained
9852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9853 F:      Documentation/pwm.txt
9854 F:      Documentation/devicetree/bindings/pwm/
9855 F:      include/linux/pwm.h
9856 F:      drivers/pwm/
9857 F:      drivers/video/backlight/pwm_bl.c
9858 F:      include/linux/pwm_backlight.h
9859
9860 PXA2xx/PXA3xx SUPPORT
9861 M:      Daniel Mack <daniel@zonque.org>
9862 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9863 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9865 T:      git git://github.com/hzhuang1/linux.git
9866 T:      git git://github.com/rjarzmik/linux.git
9867 S:      Maintained
9868 F:      arch/arm/boot/dts/pxa*
9869 F:      arch/arm/mach-pxa/
9870 F:      drivers/dma/pxa*
9871 F:      drivers/pcmcia/pxa2xx*
9872 F:      drivers/pinctrl/pxa/
9873 F:      drivers/spi/spi-pxa2xx*
9874 F:      drivers/usb/gadget/udc/pxa2*
9875 F:      include/sound/pxa2xx-lib.h
9876 F:      sound/arm/pxa*
9877 F:      sound/soc/pxa/
9878
9879 PXA GPIO DRIVER
9880 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9881 L:      linux-gpio@vger.kernel.org
9882 S:      Maintained
9883 F:      drivers/gpio/gpio-pxa.c
9884
9885 PXA3xx NAND FLASH DRIVER
9886 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9887 L:      linux-mtd@lists.infradead.org
9888 S:      Maintained
9889 F:      drivers/mtd/nand/pxa3xx_nand.c
9890
9891 MMP SUPPORT
9892 M:      Eric Miao <eric.y.miao@gmail.com>
9893 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9895 T:      git git://github.com/hzhuang1/linux.git
9896 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9897 S:      Maintained
9898 F:      arch/arm/boot/dts/mmp*
9899 F:      arch/arm/mach-mmp/
9900
9901 PXA MMCI DRIVER
9902 S:      Orphan
9903
9904 PXA RTC DRIVER
9905 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9906 L:      rtc-linux@googlegroups.com
9907 S:      Maintained
9908
9909 QAT DRIVER
9910 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
9911 M:      Salvatore Benedetto <salvatore.benedetto@intel.com>
9912 L:      qat-linux@intel.com
9913 S:      Supported
9914 F:      drivers/crypto/qat/
9915
9916 QIB DRIVER
9917 M:      Mike Marciniszyn <infinipath@intel.com>
9918 L:      linux-rdma@vger.kernel.org
9919 S:      Supported
9920 F:      drivers/infiniband/hw/qib/
9921
9922 QLOGIC QLA1280 SCSI DRIVER
9923 M:      Michael Reed <mdr@sgi.com>
9924 L:      linux-scsi@vger.kernel.org
9925 S:      Maintained
9926 F:      drivers/scsi/qla1280.[ch]
9927
9928 QLOGIC QLA2XXX FC-SCSI DRIVER
9929 M:      qla2xxx-upstream@qlogic.com
9930 L:      linux-scsi@vger.kernel.org
9931 S:      Supported
9932 F:      Documentation/scsi/LICENSE.qla2xxx
9933 F:      drivers/scsi/qla2xxx/
9934
9935 QLOGIC QLA4XXX iSCSI DRIVER
9936 M:      QLogic-Storage-Upstream@qlogic.com
9937 L:      linux-scsi@vger.kernel.org
9938 S:      Supported
9939 F:      Documentation/scsi/LICENSE.qla4xxx
9940 F:      drivers/scsi/qla4xxx/
9941
9942 QLOGIC QLA3XXX NETWORK DRIVER
9943 M:      Dept-GELinuxNICDev@cavium.com
9944 L:      netdev@vger.kernel.org
9945 S:      Supported
9946 F:      Documentation/networking/LICENSE.qla3xxx
9947 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9948
9949 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9950 M:      Harish Patil <harish.patil@cavium.com>
9951 M:      Manish Chopra <manish.chopra@cavium.com>
9952 M:      Dept-GELinuxNICDev@cavium.com
9953 L:      netdev@vger.kernel.org
9954 S:      Supported
9955 F:      drivers/net/ethernet/qlogic/qlcnic/
9956
9957 QLOGIC QLGE 10Gb ETHERNET DRIVER
9958 M:      Harish Patil <harish.patil@cavium.com>
9959 M:      Manish Chopra <manish.chopra@cavium.com>
9960 M:      Dept-GELinuxNICDev@cavium.com
9961 L:      netdev@vger.kernel.org
9962 S:      Supported
9963 F:      drivers/net/ethernet/qlogic/qlge/
9964
9965 QLOGIC QL4xxx ETHERNET DRIVER
9966 M:      Yuval Mintz <Yuval.Mintz@cavium.com>
9967 M:      Ariel Elior <Ariel.Elior@cavium.com>
9968 M:      everest-linux-l2@cavium.com
9969 L:      netdev@vger.kernel.org
9970 S:      Supported
9971 F:      drivers/net/ethernet/qlogic/qed/
9972 F:      include/linux/qed/
9973 F:      drivers/net/ethernet/qlogic/qede/
9974
9975 QNX4 FILESYSTEM
9976 M:      Anders Larsen <al@alarsen.net>
9977 W:      http://www.alarsen.net/linux/qnx4fs/
9978 S:      Maintained
9979 F:      fs/qnx4/
9980 F:      include/uapi/linux/qnx4_fs.h
9981 F:      include/uapi/linux/qnxtypes.h
9982
9983 QT1010 MEDIA DRIVER
9984 M:      Antti Palosaari <crope@iki.fi>
9985 L:      linux-media@vger.kernel.org
9986 W:      https://linuxtv.org
9987 W:      http://palosaari.fi/linux/
9988 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9989 T:      git git://linuxtv.org/anttip/media_tree.git
9990 S:      Maintained
9991 F:      drivers/media/tuners/qt1010*
9992
9993 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9994 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9995 L:      linux-wireless@vger.kernel.org
9996 L:      ath9k-devel@lists.ath9k.org
9997 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9998 S:      Supported
9999 F:      drivers/net/wireless/ath/ath9k/
10000
10001 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
10002 M:      Kalle Valo <kvalo@qca.qualcomm.com>
10003 L:      ath10k@lists.infradead.org
10004 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
10005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
10006 S:      Supported
10007 F:      drivers/net/wireless/ath/ath10k/
10008
10009 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
10010 M:      Timur Tabi <timur@codeaurora.org>
10011 L:      netdev@vger.kernel.org
10012 S:      Supported
10013 F:      drivers/net/ethernet/qualcomm/emac/
10014
10015 QUALCOMM HEXAGON ARCHITECTURE
10016 M:      Richard Kuo <rkuo@codeaurora.org>
10017 L:      linux-hexagon@vger.kernel.org
10018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
10019 S:      Supported
10020 F:      arch/hexagon/
10021
10022 QUALCOMM WCN36XX WIRELESS DRIVER
10023 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
10024 L:      wcn36xx@lists.infradead.org
10025 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
10026 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
10027 S:      Supported
10028 F:      drivers/net/wireless/ath/wcn36xx/
10029
10030 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
10031 M:      Gabriel Somlo <somlo@cmu.edu>
10032 M:      "Michael S. Tsirkin" <mst@redhat.com>
10033 L:      qemu-devel@nongnu.org
10034 S:      Maintained
10035 F:      drivers/firmware/qemu_fw_cfg.c
10036
10037 RADOS BLOCK DEVICE (RBD)
10038 M:      Ilya Dryomov <idryomov@gmail.com>
10039 M:      Sage Weil <sage@redhat.com>
10040 M:      Alex Elder <elder@kernel.org>
10041 L:      ceph-devel@vger.kernel.org
10042 W:      http://ceph.com/
10043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
10044 T:      git git://github.com/ceph/ceph-client.git
10045 S:      Supported
10046 F:      Documentation/ABI/testing/sysfs-bus-rbd
10047 F:      drivers/block/rbd.c
10048 F:      drivers/block/rbd_types.h
10049
10050 RADEON FRAMEBUFFER DISPLAY DRIVER
10051 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10052 L:      linux-fbdev@vger.kernel.org
10053 S:      Maintained
10054 F:      drivers/video/fbdev/aty/radeon*
10055 F:      include/uapi/linux/radeonfb.h
10056
10057 RADIOSHARK RADIO DRIVER
10058 M:      Hans Verkuil <hverkuil@xs4all.nl>
10059 L:      linux-media@vger.kernel.org
10060 T:      git git://linuxtv.org/media_tree.git
10061 S:      Maintained
10062 F:      drivers/media/radio/radio-shark.c
10063
10064 RADIOSHARK2 RADIO DRIVER
10065 M:      Hans Verkuil <hverkuil@xs4all.nl>
10066 L:      linux-media@vger.kernel.org
10067 T:      git git://linuxtv.org/media_tree.git
10068 S:      Maintained
10069 F:      drivers/media/radio/radio-shark2.c
10070 F:      drivers/media/radio/radio-tea5777.c
10071
10072 RAGE128 FRAMEBUFFER DISPLAY DRIVER
10073 M:      Paul Mackerras <paulus@samba.org>
10074 L:      linux-fbdev@vger.kernel.org
10075 S:      Maintained
10076 F:      drivers/video/fbdev/aty/aty128fb.c
10077
10078 RALINK MIPS ARCHITECTURE
10079 M:      John Crispin <john@phrozen.org>
10080 L:      linux-mips@linux-mips.org
10081 S:      Maintained
10082 F:      arch/mips/ralink
10083
10084 RALINK RT2X00 WIRELESS LAN DRIVER
10085 P:      rt2x00 project
10086 M:      Stanislaw Gruszka <sgruszka@redhat.com>
10087 M:      Helmut Schaa <helmut.schaa@googlemail.com>
10088 L:      linux-wireless@vger.kernel.org
10089 S:      Maintained
10090 F:      drivers/net/wireless/ralink/rt2x00/
10091
10092 RAMDISK RAM BLOCK DEVICE DRIVER
10093 M:      Jens Axboe <axboe@kernel.dk>
10094 S:      Maintained
10095 F:      Documentation/blockdev/ramdisk.txt
10096 F:      drivers/block/brd.c
10097
10098 RANDOM NUMBER DRIVER
10099 M:      "Theodore Ts'o" <tytso@mit.edu>
10100 S:      Maintained
10101 F:      drivers/char/random.c
10102
10103 RAPIDIO SUBSYSTEM
10104 M:      Matt Porter <mporter@kernel.crashing.org>
10105 M:      Alexandre Bounine <alexandre.bounine@idt.com>
10106 S:      Maintained
10107 F:      drivers/rapidio/
10108
10109 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
10110 L:      linux-wireless@vger.kernel.org
10111 S:      Orphan
10112 F:      drivers/net/wireless/ray*
10113
10114 RCUTORTURE MODULE
10115 M:      Josh Triplett <josh@joshtriplett.org>
10116 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10117 L:      linux-kernel@vger.kernel.org
10118 S:      Supported
10119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10120 F:      Documentation/RCU/torture.txt
10121 F:      kernel/rcu/rcutorture.c
10122
10123 RCUTORTURE TEST FRAMEWORK
10124 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10125 M:      Josh Triplett <josh@joshtriplett.org>
10126 R:      Steven Rostedt <rostedt@goodmis.org>
10127 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10128 R:      Lai Jiangshan <jiangshanlai@gmail.com>
10129 L:      linux-kernel@vger.kernel.org
10130 S:      Supported
10131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10132 F:      tools/testing/selftests/rcutorture
10133
10134 RDC R-321X SoC
10135 M:      Florian Fainelli <florian@openwrt.org>
10136 S:      Maintained
10137
10138 RDC R6040 FAST ETHERNET DRIVER
10139 M:      Florian Fainelli <f.fainelli@gmail.com>
10140 L:      netdev@vger.kernel.org
10141 S:      Maintained
10142 F:      drivers/net/ethernet/rdc/r6040.c
10143
10144 RDS - RELIABLE DATAGRAM SOCKETS
10145 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
10146 L:      netdev@vger.kernel.org
10147 L:      linux-rdma@vger.kernel.org
10148 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
10149 W:      https://oss.oracle.com/projects/rds/
10150 S:      Supported
10151 F:      net/rds/
10152 F:      Documentation/networking/rds.txt
10153
10154 RDMAVT - RDMA verbs software
10155 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
10156 L:      linux-rdma@vger.kernel.org
10157 S:      Supported
10158 F:      drivers/infiniband/sw/rdmavt
10159
10160 READ-COPY UPDATE (RCU)
10161 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10162 M:      Josh Triplett <josh@joshtriplett.org>
10163 R:      Steven Rostedt <rostedt@goodmis.org>
10164 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10165 R:      Lai Jiangshan <jiangshanlai@gmail.com>
10166 L:      linux-kernel@vger.kernel.org
10167 W:      http://www.rdrop.com/users/paulmck/RCU/
10168 S:      Supported
10169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10170 F:      Documentation/RCU/
10171 X:      Documentation/RCU/torture.txt
10172 F:      include/linux/rcu*
10173 X:      include/linux/srcu.h
10174 F:      kernel/rcu/
10175 X:      kernel/torture.c
10176
10177 REAL TIME CLOCK (RTC) SUBSYSTEM
10178 M:      Alessandro Zummo <a.zummo@towertech.it>
10179 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
10180 L:      rtc-linux@googlegroups.com
10181 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
10182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
10183 S:      Maintained
10184 F:      Documentation/devicetree/bindings/rtc/
10185 F:      Documentation/rtc.txt
10186 F:      drivers/rtc/
10187 F:      include/linux/rtc.h
10188 F:      include/uapi/linux/rtc.h
10189 F:      include/linux/rtc/
10190 F:      include/linux/platform_data/rtc-*
10191 F:      tools/testing/selftests/timers/rtctest.c
10192
10193 REALTEK AUDIO CODECS
10194 M:      Bard Liao <bardliao@realtek.com>
10195 M:      Oder Chiou <oder_chiou@realtek.com>
10196 S:      Maintained
10197 F:      sound/soc/codecs/rt*
10198 F:      include/sound/rt*.h
10199
10200 REISERFS FILE SYSTEM
10201 L:      reiserfs-devel@vger.kernel.org
10202 S:      Supported
10203 F:      fs/reiserfs/
10204
10205 REGISTER MAP ABSTRACTION
10206 M:      Mark Brown <broonie@kernel.org>
10207 L:      linux-kernel@vger.kernel.org
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
10209 S:      Supported
10210 F:      Documentation/devicetree/bindings/regmap/
10211 F:      drivers/base/regmap/
10212 F:      include/linux/regmap.h
10213
10214 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
10215 M:      Ohad Ben-Cohen <ohad@wizery.com>
10216 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10217 L:      linux-remoteproc@vger.kernel.org
10218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
10219 S:      Maintained
10220 F:      Documentation/devicetree/bindings/remoteproc/
10221 F:      Documentation/remoteproc.txt
10222 F:      drivers/remoteproc/
10223 F:      include/linux/remoteproc.h
10224
10225 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
10226 M:      Ohad Ben-Cohen <ohad@wizery.com>
10227 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
10228 L:      linux-remoteproc@vger.kernel.org
10229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
10230 S:      Maintained
10231 F:      drivers/rpmsg/
10232 F:      Documentation/rpmsg.txt
10233 F:      include/linux/rpmsg.h
10234
10235 RENESAS CLOCK DRIVERS
10236 M:      Geert Uytterhoeven <geert+renesas@glider.be>
10237 L:      linux-renesas-soc@vger.kernel.org
10238 S:      Supported
10239 F:      drivers/clk/renesas/
10240
10241 RENESAS ETHERNET DRIVERS
10242 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
10243 L:      netdev@vger.kernel.org
10244 L:      linux-renesas-soc@vger.kernel.org
10245 F:      drivers/net/ethernet/renesas/
10246 F:      include/linux/sh_eth.h
10247
10248 RENESAS USB2 PHY DRIVER
10249 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
10250 L:      linux-renesas-soc@vger.kernel.org
10251 S:      Maintained
10252 F:      drivers/phy/phy-rcar-gen3-usb2.c
10253
10254 RESET CONTROLLER FRAMEWORK
10255 M:      Philipp Zabel <p.zabel@pengutronix.de>
10256 T:      git git://git.pengutronix.de/git/pza/linux
10257 S:      Maintained
10258 F:      drivers/reset/
10259 F:      Documentation/devicetree/bindings/reset/
10260 F:      include/dt-bindings/reset/
10261 F:      include/linux/reset.h
10262 F:      include/linux/reset-controller.h
10263
10264 RFKILL
10265 M:      Johannes Berg <johannes@sipsolutions.net>
10266 L:      linux-wireless@vger.kernel.org
10267 W:      http://wireless.kernel.org/
10268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10270 S:      Maintained
10271 F:      Documentation/rfkill.txt
10272 F:      net/rfkill/
10273
10274 RHASHTABLE
10275 M:      Thomas Graf <tgraf@suug.ch>
10276 M:      Herbert Xu <herbert@gondor.apana.org.au>
10277 L:      netdev@vger.kernel.org
10278 S:      Maintained
10279 F:      lib/rhashtable.c
10280 F:      include/linux/rhashtable.h
10281
10282 RICOH SMARTMEDIA/XD DRIVER
10283 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10284 S:      Maintained
10285 F:      drivers/mtd/nand/r852.c
10286 F:      drivers/mtd/nand/r852.h
10287
10288 RICOH R5C592 MEMORYSTICK DRIVER
10289 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10290 S:      Maintained
10291 F:      drivers/memstick/host/r592.*
10292
10293 ROCCAT DRIVERS
10294 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
10295 W:      http://sourceforge.net/projects/roccat/
10296 S:      Maintained
10297 F:      drivers/hid/hid-roccat*
10298 F:      include/linux/hid-roccat*
10299 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
10300
10301 ROCKER DRIVER
10302 M:      Jiri Pirko <jiri@resnulli.us>
10303 L:      netdev@vger.kernel.org
10304 S:      Supported
10305 F:      drivers/net/ethernet/rocker/
10306
10307 ROCKETPORT DRIVER
10308 P:      Comtrol Corp.
10309 W:      http://www.comtrol.com
10310 S:      Maintained
10311 F:      Documentation/serial/rocket.txt
10312 F:      drivers/tty/rocket*
10313
10314 ROCKETPORT EXPRESS/INFINITY DRIVER
10315 M:      Kevin Cernekee <cernekee@gmail.com>
10316 L:      linux-serial@vger.kernel.org
10317 S:      Odd Fixes
10318 F:      drivers/tty/serial/rp2.*
10319
10320 ROSE NETWORK LAYER
10321 M:      Ralf Baechle <ralf@linux-mips.org>
10322 L:      linux-hams@vger.kernel.org
10323 W:      http://www.linux-ax25.org/
10324 S:      Maintained
10325 F:      include/net/rose.h
10326 F:      include/uapi/linux/rose.h
10327 F:      net/rose/
10328
10329 RTL2830 MEDIA DRIVER
10330 M:      Antti Palosaari <crope@iki.fi>
10331 L:      linux-media@vger.kernel.org
10332 W:      https://linuxtv.org
10333 W:      http://palosaari.fi/linux/
10334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10335 T:      git git://linuxtv.org/anttip/media_tree.git
10336 S:      Maintained
10337 F:      drivers/media/dvb-frontends/rtl2830*
10338
10339 RTL2832 MEDIA DRIVER
10340 M:      Antti Palosaari <crope@iki.fi>
10341 L:      linux-media@vger.kernel.org
10342 W:      https://linuxtv.org
10343 W:      http://palosaari.fi/linux/
10344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10345 T:      git git://linuxtv.org/anttip/media_tree.git
10346 S:      Maintained
10347 F:      drivers/media/dvb-frontends/rtl2832*
10348
10349 RTL2832_SDR MEDIA DRIVER
10350 M:      Antti Palosaari <crope@iki.fi>
10351 L:      linux-media@vger.kernel.org
10352 W:      https://linuxtv.org
10353 W:      http://palosaari.fi/linux/
10354 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10355 T:      git git://linuxtv.org/anttip/media_tree.git
10356 S:      Maintained
10357 F:      drivers/media/dvb-frontends/rtl2832_sdr*
10358
10359 RTL8180 WIRELESS DRIVER
10360 L:      linux-wireless@vger.kernel.org
10361 W:      http://wireless.kernel.org/
10362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10363 S:      Orphan
10364 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
10365
10366 RTL8187 WIRELESS DRIVER
10367 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10368 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
10369 M:      Larry Finger <Larry.Finger@lwfinger.net>
10370 L:      linux-wireless@vger.kernel.org
10371 W:      http://wireless.kernel.org/
10372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10373 S:      Maintained
10374 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
10375
10376 RTL8192CE WIRELESS DRIVER
10377 M:      Larry Finger <Larry.Finger@lwfinger.net>
10378 M:      Chaoming Li <chaoming_li@realsil.com.cn>
10379 L:      linux-wireless@vger.kernel.org
10380 W:      http://wireless.kernel.org/
10381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10382 S:      Maintained
10383 F:      drivers/net/wireless/realtek/rtlwifi/
10384 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
10385
10386 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
10387 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10388 L:      linux-wireless@vger.kernel.org
10389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
10390 S:      Maintained
10391 F:      drivers/net/wireless/realtek/rtl8xxxu/
10392
10393 S3 SAVAGE FRAMEBUFFER DRIVER
10394 M:      Antonino Daplas <adaplas@gmail.com>
10395 L:      linux-fbdev@vger.kernel.org
10396 S:      Maintained
10397 F:      drivers/video/fbdev/savage/
10398
10399 S390
10400 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
10401 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
10402 L:      linux-s390@vger.kernel.org
10403 W:      http://www.ibm.com/developerworks/linux/linux390/
10404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
10405 S:      Supported
10406 F:      arch/s390/
10407 F:      drivers/s390/
10408 F:      Documentation/s390/
10409 F:      Documentation/DocBook/s390*
10410
10411 S390 COMMON I/O LAYER
10412 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
10413 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
10414 L:      linux-s390@vger.kernel.org
10415 W:      http://www.ibm.com/developerworks/linux/linux390/
10416 S:      Supported
10417 F:      drivers/s390/cio/
10418
10419 S390 DASD DRIVER
10420 M:      Stefan Haberland <sth@linux.vnet.ibm.com>
10421 M:      Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
10422 L:      linux-s390@vger.kernel.org
10423 W:      http://www.ibm.com/developerworks/linux/linux390/
10424 S:      Supported
10425 F:      drivers/s390/block/dasd*
10426 F:      block/partitions/ibm.c
10427
10428 S390 NETWORK DRIVERS
10429 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
10430 L:      linux-s390@vger.kernel.org
10431 W:      http://www.ibm.com/developerworks/linux/linux390/
10432 S:      Supported
10433 F:      drivers/s390/net/
10434
10435 S390 PCI SUBSYSTEM
10436 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
10437 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
10438 L:      linux-s390@vger.kernel.org
10439 W:      http://www.ibm.com/developerworks/linux/linux390/
10440 S:      Supported
10441 F:      arch/s390/pci/
10442 F:      drivers/pci/hotplug/s390_pci_hpc.c
10443
10444 S390 ZCRYPT DRIVER
10445 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
10446 L:      linux-s390@vger.kernel.org
10447 W:      http://www.ibm.com/developerworks/linux/linux390/
10448 S:      Supported
10449 F:      drivers/s390/crypto/
10450
10451 S390 ZFCP DRIVER
10452 M:      Steffen Maier <maier@linux.vnet.ibm.com>
10453 L:      linux-s390@vger.kernel.org
10454 W:      http://www.ibm.com/developerworks/linux/linux390/
10455 S:      Supported
10456 F:      drivers/s390/scsi/zfcp_*
10457
10458 S390 IUCV NETWORK LAYER
10459 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
10460 L:      linux-s390@vger.kernel.org
10461 W:      http://www.ibm.com/developerworks/linux/linux390/
10462 S:      Supported
10463 F:      drivers/s390/net/*iucv*
10464 F:      include/net/iucv/
10465 F:      net/iucv/
10466
10467 S390 IOMMU (PCI)
10468 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
10469 L:      linux-s390@vger.kernel.org
10470 W:      http://www.ibm.com/developerworks/linux/linux390/
10471 S:      Supported
10472 F:      drivers/iommu/s390-iommu.c
10473
10474 S3C24XX SD/MMC Driver
10475 M:      Ben Dooks <ben-linux@fluff.org>
10476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10477 S:      Supported
10478 F:      drivers/mmc/host/s3cmci.*
10479
10480 SAA6588 RDS RECEIVER DRIVER
10481 M:      Hans Verkuil <hverkuil@xs4all.nl>
10482 L:      linux-media@vger.kernel.org
10483 T:      git git://linuxtv.org/media_tree.git
10484 W:      https://linuxtv.org
10485 S:      Odd Fixes
10486 F:      drivers/media/i2c/saa6588*
10487
10488 SAA7134 VIDEO4LINUX DRIVER
10489 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
10490 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10491 L:      linux-media@vger.kernel.org
10492 W:      https://linuxtv.org
10493 T:      git git://linuxtv.org/media_tree.git
10494 S:      Odd fixes
10495 F:      Documentation/media/v4l-drivers/saa7134*
10496 F:      drivers/media/pci/saa7134/
10497
10498 SAA7146 VIDEO4LINUX-2 DRIVER
10499 M:      Hans Verkuil <hverkuil@xs4all.nl>
10500 L:      linux-media@vger.kernel.org
10501 T:      git git://linuxtv.org/media_tree.git
10502 S:      Maintained
10503 F:      drivers/media/common/saa7146/
10504 F:      drivers/media/pci/saa7146/
10505 F:      include/media/saa7146*
10506
10507 SAMSUNG LAPTOP DRIVER
10508 M:      Corentin Chary <corentin.chary@gmail.com>
10509 L:      platform-driver-x86@vger.kernel.org
10510 S:      Maintained
10511 F:      drivers/platform/x86/samsung-laptop.c
10512
10513 SAMSUNG AUDIO (ASoC) DRIVERS
10514 M:      Krzysztof Kozlowski <krzk@kernel.org>
10515 M:      Sangbeom Kim <sbkim73@samsung.com>
10516 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10517 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10518 S:      Supported
10519 F:      sound/soc/samsung/
10520
10521 SAMSUNG FRAMEBUFFER DRIVER
10522 M:      Jingoo Han <jingoohan1@gmail.com>
10523 L:      linux-fbdev@vger.kernel.org
10524 S:      Maintained
10525 F:      drivers/video/fbdev/s3c-fb.c
10526
10527 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
10528 M:      Sangbeom Kim <sbkim73@samsung.com>
10529 M:      Krzysztof Kozlowski <krzk@kernel.org>
10530 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10531 L:      linux-kernel@vger.kernel.org
10532 L:      linux-samsung-soc@vger.kernel.org
10533 S:      Supported
10534 F:      drivers/mfd/sec*.c
10535 F:      drivers/regulator/s2m*.c
10536 F:      drivers/regulator/s5m*.c
10537 F:      drivers/clk/clk-s2mps11.c
10538 F:      drivers/rtc/rtc-s5m.c
10539 F:      include/linux/mfd/samsung/
10540 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
10541 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
10542 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
10543 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
10544
10545 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
10546 M:      Kyungmin Park <kyungmin.park@samsung.com>
10547 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10548 L:      linux-media@vger.kernel.org
10549 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
10550 S:      Supported
10551 F:      drivers/media/platform/exynos4-is/
10552
10553 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
10554 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
10555 L:      linux-media@vger.kernel.org
10556 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10557 S:      Maintained
10558 F:      drivers/media/platform/s3c-camif/
10559 F:      include/media/drv-intf/s3c_camif.h
10560
10561 SAMSUNG S5C73M3 CAMERA DRIVER
10562 M:      Kyungmin Park <kyungmin.park@samsung.com>
10563 M:      Andrzej Hajda <a.hajda@samsung.com>
10564 L:      linux-media@vger.kernel.org
10565 S:      Supported
10566 F:      drivers/media/i2c/s5c73m3/*
10567
10568 SAMSUNG S5K5BAF CAMERA DRIVER
10569 M:      Kyungmin Park <kyungmin.park@samsung.com>
10570 M:      Andrzej Hajda <a.hajda@samsung.com>
10571 L:      linux-media@vger.kernel.org
10572 S:      Supported
10573 F:      drivers/media/i2c/s5k5baf.c
10574
10575 SAMSUNG S3FWRN5 NFC DRIVER
10576 M:      Robert Baldyga <r.baldyga@samsung.com>
10577 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
10578 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
10579 S:      Supported
10580 F:      drivers/nfc/s3fwrn5
10581
10582 SAMSUNG SOC CLOCK DRIVERS
10583 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10584 M:      Tomasz Figa <tomasz.figa@gmail.com>
10585 M:      Chanwoo Choi <cw00.choi@samsung.com>
10586 S:      Supported
10587 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10588 F:      drivers/clk/samsung/
10589 F:      include/dt-bindings/clock/exynos*.h
10590 F:      Documentation/devicetree/bindings/clock/exynos*.txt
10591
10592 SAMSUNG SPI DRIVERS
10593 M:      Kukjin Kim <kgene@kernel.org>
10594 M:      Krzysztof Kozlowski <krzk@kernel.org>
10595 M:      Andi Shyti <andi.shyti@samsung.com>
10596 L:      linux-spi@vger.kernel.org
10597 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10598 S:      Maintained
10599 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
10600 F:      drivers/spi/spi-s3c*
10601 F:      include/linux/platform_data/spi-s3c64xx.h
10602
10603 SAMSUNG SXGBE DRIVERS
10604 M:      Byungho An <bh74.an@samsung.com>
10605 M:      Girish K S <ks.giri@samsung.com>
10606 M:      Vipul Pandya <vipul.pandya@samsung.com>
10607 S:      Supported
10608 L:      netdev@vger.kernel.org
10609 F:      drivers/net/ethernet/samsung/sxgbe/
10610
10611 SAMSUNG THERMAL DRIVER
10612 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10613 L:      linux-pm@vger.kernel.org
10614 L:      linux-samsung-soc@vger.kernel.org
10615 S:      Supported
10616 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
10617 F:      drivers/thermal/samsung/
10618
10619 SAMSUNG USB2 PHY DRIVER
10620 M:      Kamil Debski <kamil@wypas.org>
10621 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10622 L:      linux-kernel@vger.kernel.org
10623 S:      Supported
10624 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
10625 F:      Documentation/phy/samsung-usb2.txt
10626 F:      drivers/phy/phy-exynos4210-usb2.c
10627 F:      drivers/phy/phy-exynos4x12-usb2.c
10628 F:      drivers/phy/phy-exynos5250-usb2.c
10629 F:      drivers/phy/phy-s5pv210-usb2.c
10630 F:      drivers/phy/phy-samsung-usb2.c
10631 F:      drivers/phy/phy-samsung-usb2.h
10632
10633 SERIAL DRIVERS
10634 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10635 L:      linux-serial@vger.kernel.org
10636 S:      Maintained
10637 F:      Documentation/devicetree/bindings/serial/
10638 F:      drivers/tty/serial/
10639
10640 STI CEC DRIVER
10641 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
10642 L:      kernel@stlinux.com
10643 S:      Maintained
10644 F:      drivers/staging/media/st-cec/
10645 F:      Documentation/devicetree/bindings/media/stih-cec.txt
10646
10647 SYNOPSYS DESIGNWARE DMAC DRIVER
10648 M:      Viresh Kumar <vireshk@kernel.org>
10649 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10650 S:      Maintained
10651 F:      include/linux/dma/dw.h
10652 F:      include/linux/platform_data/dma-dw.h
10653 F:      drivers/dma/dw/
10654
10655 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
10656 M: Lars Persson <lars.persson@axis.com>
10657 L: netdev@vger.kernel.org
10658 S: Supported
10659 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
10660 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
10661
10662 SYNOPSYS DESIGNWARE I2C DRIVER
10663 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10664 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10665 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
10666 L:      linux-i2c@vger.kernel.org
10667 S:      Maintained
10668 F:      drivers/i2c/busses/i2c-designware-*
10669 F:      include/linux/platform_data/i2c-designware.h
10670
10671 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
10672 M:      Jaehoon Chung <jh80.chung@samsung.com>
10673 L:      linux-mmc@vger.kernel.org
10674 S:      Maintained
10675 F:      include/linux/mmc/dw_mmc.h
10676 F:      drivers/mmc/host/dw_mmc*
10677
10678 SYSTEM TRACE MODULE CLASS
10679 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10680 S:      Maintained
10681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
10682 F:      Documentation/trace/stm.txt
10683 F:      drivers/hwtracing/stm/
10684 F:      include/linux/stm.h
10685 F:      include/uapi/linux/stm.h
10686
10687 THUNDERBOLT DRIVER
10688 M:      Andreas Noever <andreas.noever@gmail.com>
10689 S:      Maintained
10690 F:      drivers/thunderbolt/
10691
10692 TI BQ27XXX POWER SUPPLY DRIVER
10693 R:      Andrew F. Davis <afd@ti.com>
10694 F:      include/linux/power/bq27xxx_battery.h
10695 F:      drivers/power/supply/bq27xxx_battery.c
10696 F:      drivers/power/supply/bq27xxx_battery_i2c.c
10697
10698 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
10699 M:      John Stultz <john.stultz@linaro.org>
10700 M:      Thomas Gleixner <tglx@linutronix.de>
10701 L:      linux-kernel@vger.kernel.org
10702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10703 S:      Supported
10704 F:      include/linux/clocksource.h
10705 F:      include/linux/time.h
10706 F:      include/linux/timex.h
10707 F:      include/uapi/linux/time.h
10708 F:      include/uapi/linux/timex.h
10709 F:      kernel/time/clocksource.c
10710 F:      kernel/time/time*.c
10711 F:      kernel/time/alarmtimer.c
10712 F:      kernel/time/ntp.c
10713 F:      tools/testing/selftests/timers/
10714
10715 SC1200 WDT DRIVER
10716 M:      Zwane Mwaikambo <zwanem@gmail.com>
10717 S:      Maintained
10718 F:      drivers/watchdog/sc1200wdt.c
10719
10720 SCHEDULER
10721 M:      Ingo Molnar <mingo@redhat.com>
10722 M:      Peter Zijlstra <peterz@infradead.org>
10723 L:      linux-kernel@vger.kernel.org
10724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
10725 S:      Maintained
10726 F:      kernel/sched/
10727 F:      include/linux/sched.h
10728 F:      include/uapi/linux/sched.h
10729 F:      include/linux/wait.h
10730
10731 SCORE ARCHITECTURE
10732 M:      Chen Liqin <liqin.linux@gmail.com>
10733 M:      Lennox Wu <lennox.wu@gmail.com>
10734 W:      http://www.sunplus.com
10735 S:      Supported
10736 F:      arch/score/
10737
10738 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
10739 M:      Sudeep Holla <sudeep.holla@arm.com>
10740 L:      linux-arm-kernel@lists.infradead.org
10741 S:      Maintained
10742 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
10743 F:      drivers/clk/clk-scpi.c
10744 F:      drivers/cpufreq/scpi-cpufreq.c
10745 F:      drivers/firmware/arm_scpi.c
10746 F:      include/linux/scpi_protocol.h
10747
10748 SCSI CDROM DRIVER
10749 M:      Jens Axboe <axboe@kernel.dk>
10750 L:      linux-scsi@vger.kernel.org
10751 W:      http://www.kernel.dk
10752 S:      Maintained
10753 F:      drivers/scsi/sr*
10754
10755 SCSI RDMA PROTOCOL (SRP) INITIATOR
10756 M:      Bart Van Assche <bart.vanassche@sandisk.com>
10757 L:      linux-rdma@vger.kernel.org
10758 S:      Supported
10759 W:      http://www.openfabrics.org
10760 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
10762 F:      drivers/infiniband/ulp/srp/
10763 F:      include/scsi/srp.h
10764
10765 SCSI SG DRIVER
10766 M:      Doug Gilbert <dgilbert@interlog.com>
10767 L:      linux-scsi@vger.kernel.org
10768 W:      http://sg.danny.cz/sg
10769 S:      Maintained
10770 F:      Documentation/scsi/scsi-generic.txt
10771 F:      drivers/scsi/sg.c
10772 F:      include/scsi/sg.h
10773
10774 SCSI SUBSYSTEM
10775 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
10776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
10777 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
10778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
10779 L:      linux-scsi@vger.kernel.org
10780 S:      Maintained
10781 F:      Documentation/devicetree/bindings/scsi/
10782 F:      drivers/scsi/
10783 F:      include/scsi/
10784
10785 SCSI TAPE DRIVER
10786 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
10787 L:      linux-scsi@vger.kernel.org
10788 S:      Maintained
10789 F:      Documentation/scsi/st.txt
10790 F:      drivers/scsi/st.*
10791 F:      drivers/scsi/st_*.h
10792
10793 SCTP PROTOCOL
10794 M:      Vlad Yasevich <vyasevich@gmail.com>
10795 M:      Neil Horman <nhorman@tuxdriver.com>
10796 L:      linux-sctp@vger.kernel.org
10797 W:      http://lksctp.sourceforge.net
10798 S:      Maintained
10799 F:      Documentation/networking/sctp.txt
10800 F:      include/linux/sctp.h
10801 F:      include/uapi/linux/sctp.h
10802 F:      include/net/sctp/
10803 F:      net/sctp/
10804
10805 SCx200 CPU SUPPORT
10806 M:      Jim Cromie <jim.cromie@gmail.com>
10807 S:      Odd Fixes
10808 F:      Documentation/i2c/busses/scx200_acb
10809 F:      arch/x86/platform/scx200/
10810 F:      drivers/watchdog/scx200_wdt.c
10811 F:      drivers/i2c/busses/scx200*
10812 F:      drivers/mtd/maps/scx200_docflash.c
10813 F:      include/linux/scx200.h
10814
10815 SCx200 GPIO DRIVER
10816 M:      Jim Cromie <jim.cromie@gmail.com>
10817 S:      Maintained
10818 F:      drivers/char/scx200_gpio.c
10819 F:      include/linux/scx200_gpio.h
10820
10821 SCx200 HRT CLOCKSOURCE DRIVER
10822 M:      Jim Cromie <jim.cromie@gmail.com>
10823 S:      Maintained
10824 F:      drivers/clocksource/scx200_hrt.c
10825
10826 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10827 M:      Sascha Sommer <saschasommer@freenet.de>
10828 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10829 S:      Maintained
10830 F:      drivers/mmc/host/sdricoh_cs.c
10831
10832 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10833 M:      Adrian Hunter <adrian.hunter@intel.com>
10834 L:      linux-mmc@vger.kernel.org
10835 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10836 S:      Maintained
10837 F:      drivers/mmc/host/sdhci*
10838 F:      include/linux/mmc/sdhci*
10839
10840 SECURE COMPUTING
10841 M:      Kees Cook <keescook@chromium.org>
10842 R:      Andy Lutomirski <luto@amacapital.net>
10843 R:      Will Drewry <wad@chromium.org>
10844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10845 S:      Supported
10846 F:      kernel/seccomp.c
10847 F:      include/uapi/linux/seccomp.h
10848 F:      include/linux/seccomp.h
10849 F:      tools/testing/selftests/seccomp/*
10850 K:      \bsecure_computing
10851 K:      \bTIF_SECCOMP\b
10852
10853 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
10854 M:      Al Cooper <alcooperx@gmail.com>
10855 L:      linux-mmc@vger.kernel.org
10856 L:      bcm-kernel-feedback-list@broadcom.com
10857 S:      Maintained
10858 F:      drivers/mmc/host/sdhci-brcmstb*
10859
10860 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10861 M:      Ben Dooks <ben-linux@fluff.org>
10862 M:      Jaehoon Chung <jh80.chung@samsung.com>
10863 L:      linux-mmc@vger.kernel.org
10864 S:      Maintained
10865 F:      drivers/mmc/host/sdhci-s3c*
10866
10867 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10868 M:      Viresh Kumar <vireshk@kernel.org>
10869 L:      linux-mmc@vger.kernel.org
10870 S:      Maintained
10871 F:      drivers/mmc/host/sdhci-spear.c
10872
10873 SECURITY SUBSYSTEM
10874 M:      James Morris <james.l.morris@oracle.com>
10875 M:      "Serge E. Hallyn" <serge@hallyn.com>
10876 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10878 W:      http://kernsec.org/
10879 S:      Supported
10880 F:      security/
10881
10882 SECURITY CONTACT
10883 M:      Security Officers <security@kernel.org>
10884 S:      Supported
10885
10886 SELINUX SECURITY MODULE
10887 M:      Paul Moore <paul@paul-moore.com>
10888 M:      Stephen Smalley <sds@tycho.nsa.gov>
10889 M:      Eric Paris <eparis@parisplace.org>
10890 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10891 W:      http://selinuxproject.org
10892 T:      git git://git.infradead.org/users/pcmoore/selinux
10893 S:      Supported
10894 F:      include/linux/selinux*
10895 F:      security/selinux/
10896 F:      scripts/selinux/
10897
10898 APPARMOR SECURITY MODULE
10899 M:      John Johansen <john.johansen@canonical.com>
10900 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10901 W:      apparmor.wiki.kernel.org
10902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10903 S:      Supported
10904 F:      security/apparmor/
10905
10906 LOADPIN SECURITY MODULE
10907 M:      Kees Cook <keescook@chromium.org>
10908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10909 S:      Supported
10910 F:      security/loadpin/
10911
10912 YAMA SECURITY MODULE
10913 M:      Kees Cook <keescook@chromium.org>
10914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10915 S:      Supported
10916 F:      security/yama/
10917
10918 SENSABLE PHANTOM
10919 M:      Jiri Slaby <jirislaby@gmail.com>
10920 S:      Maintained
10921 F:      drivers/misc/phantom.c
10922 F:      include/uapi/linux/phantom.h
10923
10924 Emulex 10Gbps iSCSI - OneConnect DRIVER
10925 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
10926 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
10927 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
10928 L:      linux-scsi@vger.kernel.org
10929 W:      http://www.broadcom.com
10930 S:      Supported
10931 F:      drivers/scsi/be2iscsi/
10932
10933 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
10934 M:      Sathya Perla <sathya.perla@broadcom.com>
10935 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10936 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10937 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10938 L:      netdev@vger.kernel.org
10939 W:      http://www.emulex.com
10940 S:      Supported
10941 F:      drivers/net/ethernet/emulex/benet/
10942
10943 EMULEX ONECONNECT ROCE DRIVER
10944 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10945 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10946 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10947 L:      linux-rdma@vger.kernel.org
10948 W:      http://www.emulex.com
10949 S:      Supported
10950 F:      drivers/infiniband/hw/ocrdma/
10951 F:      include/uapi/rdma/ocrdma-abi.h
10952
10953 SFC NETWORK DRIVER
10954 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10955 M:      Edward Cree <ecree@solarflare.com>
10956 M:      Bert Kenward <bkenward@solarflare.com>
10957 L:      netdev@vger.kernel.org
10958 S:      Supported
10959 F:      drivers/net/ethernet/sfc/
10960
10961 SGI GRU DRIVER
10962 M:      Dimitri Sivanich <sivanich@sgi.com>
10963 S:      Maintained
10964 F:      drivers/misc/sgi-gru/
10965
10966 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10967 M:      Pat Gefre <pfg@sgi.com>
10968 L:      linux-ia64@vger.kernel.org
10969 S:      Supported
10970 F:      Documentation/ia64/serial.txt
10971 F:      drivers/tty/serial/ioc?_serial.c
10972 F:      include/linux/ioc?.h
10973
10974 SGI XP/XPC/XPNET DRIVER
10975 M:      Cliff Whickman <cpw@sgi.com>
10976 M:      Robin Holt <robinmholt@gmail.com>
10977 S:      Maintained
10978 F:      drivers/misc/sgi-xp/
10979
10980 SI2157 MEDIA DRIVER
10981 M:      Antti Palosaari <crope@iki.fi>
10982 L:      linux-media@vger.kernel.org
10983 W:      https://linuxtv.org
10984 W:      http://palosaari.fi/linux/
10985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10986 T:      git git://linuxtv.org/anttip/media_tree.git
10987 S:      Maintained
10988 F:      drivers/media/tuners/si2157*
10989
10990 SI2168 MEDIA DRIVER
10991 M:      Antti Palosaari <crope@iki.fi>
10992 L:      linux-media@vger.kernel.org
10993 W:      https://linuxtv.org
10994 W:      http://palosaari.fi/linux/
10995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10996 T:      git git://linuxtv.org/anttip/media_tree.git
10997 S:      Maintained
10998 F:      drivers/media/dvb-frontends/si2168*
10999
11000 SI470X FM RADIO RECEIVER I2C DRIVER
11001 M:      Hans Verkuil <hverkuil@xs4all.nl>
11002 L:      linux-media@vger.kernel.org
11003 T:      git git://linuxtv.org/media_tree.git
11004 W:      https://linuxtv.org
11005 S:      Odd Fixes
11006 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
11007
11008 SI470X FM RADIO RECEIVER USB DRIVER
11009 M:      Hans Verkuil <hverkuil@xs4all.nl>
11010 L:      linux-media@vger.kernel.org
11011 T:      git git://linuxtv.org/media_tree.git
11012 W:      https://linuxtv.org
11013 S:      Maintained
11014 F:      drivers/media/radio/si470x/radio-si470x-common.c
11015 F:      drivers/media/radio/si470x/radio-si470x.h
11016 F:      drivers/media/radio/si470x/radio-si470x-usb.c
11017
11018 SI4713 FM RADIO TRANSMITTER I2C DRIVER
11019 M:      Eduardo Valentin <edubezval@gmail.com>
11020 L:      linux-media@vger.kernel.org
11021 T:      git git://linuxtv.org/media_tree.git
11022 W:      https://linuxtv.org
11023 S:      Odd Fixes
11024 F:      drivers/media/radio/si4713/si4713.?
11025
11026 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
11027 M:      Eduardo Valentin <edubezval@gmail.com>
11028 L:      linux-media@vger.kernel.org
11029 T:      git git://linuxtv.org/media_tree.git
11030 W:      https://linuxtv.org
11031 S:      Odd Fixes
11032 F:      drivers/media/radio/si4713/radio-platform-si4713.c
11033
11034 SI4713 FM RADIO TRANSMITTER USB DRIVER
11035 M:      Hans Verkuil <hverkuil@xs4all.nl>
11036 L:      linux-media@vger.kernel.org
11037 T:      git git://linuxtv.org/media_tree.git
11038 W:      https://linuxtv.org
11039 S:      Maintained
11040 F:      drivers/media/radio/si4713/radio-usb-si4713.c
11041
11042 SIANO DVB DRIVER
11043 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11045 L:      linux-media@vger.kernel.org
11046 W:      https://linuxtv.org
11047 T:      git git://linuxtv.org/media_tree.git
11048 S:      Odd fixes
11049 F:      drivers/media/common/siano/
11050 F:      drivers/media/usb/siano/
11051 F:      drivers/media/usb/siano/
11052 F:      drivers/media/mmc/siano/
11053
11054 SIMPLEFB FB DRIVER
11055 M:      Hans de Goede <hdegoede@redhat.com>
11056 L:      linux-fbdev@vger.kernel.org
11057 S:      Maintained
11058 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
11059 F:      drivers/video/fbdev/simplefb.c
11060 F:      include/linux/platform_data/simplefb.h
11061
11062 SH_VEU V4L2 MEM2MEM DRIVER
11063 L:      linux-media@vger.kernel.org
11064 S:      Orphan
11065 F:      drivers/media/platform/sh_veu.c
11066
11067 SH_VOU V4L2 OUTPUT DRIVER
11068 L:      linux-media@vger.kernel.org
11069 S:      Orphan
11070 F:      drivers/media/platform/sh_vou.c
11071 F:      include/media/drv-intf/sh_vou.h
11072
11073 SIMPLE FIRMWARE INTERFACE (SFI)
11074 M:      Len Brown <lenb@kernel.org>
11075 L:      sfi-devel@simplefirmware.org
11076 W:      http://simplefirmware.org/
11077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
11078 S:      Supported
11079 F:      arch/x86/platform/sfi/
11080 F:      drivers/sfi/
11081 F:      include/linux/sfi*.h
11082
11083 SIMTEC EB110ATX (Chalice CATS)
11084 P:      Ben Dooks
11085 P:      Vincent Sanders <vince@simtec.co.uk>
11086 M:      Simtec Linux Team <linux@simtec.co.uk>
11087 W:      http://www.simtec.co.uk/products/EB110ATX/
11088 S:      Supported
11089
11090 SIMTEC EB2410ITX (BAST)
11091 P:      Ben Dooks
11092 P:      Vincent Sanders <vince@simtec.co.uk>
11093 M:      Simtec Linux Team <linux@simtec.co.uk>
11094 W:      http://www.simtec.co.uk/products/EB2410ITX/
11095 S:      Supported
11096 F:      arch/arm/mach-s3c24xx/mach-bast.c
11097 F:      arch/arm/mach-s3c24xx/bast-ide.c
11098 F:      arch/arm/mach-s3c24xx/bast-irq.c
11099
11100 TI DAVINCI MACHINE SUPPORT
11101 M:      Sekhar Nori <nsekhar@ti.com>
11102 M:      Kevin Hilman <khilman@kernel.org>
11103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
11105 S:      Supported
11106 F:      arch/arm/mach-davinci/
11107 F:      drivers/i2c/busses/i2c-davinci.c
11108
11109 TI DAVINCI SERIES MEDIA DRIVER
11110 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
11111 L:      linux-media@vger.kernel.org
11112 W:      https://linuxtv.org
11113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11114 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11115 S:      Maintained
11116 F:      drivers/media/platform/davinci/
11117 F:      include/media/davinci/
11118
11119 TI AM437X VPFE DRIVER
11120 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
11121 L:      linux-media@vger.kernel.org
11122 W:      https://linuxtv.org
11123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11124 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11125 S:      Maintained
11126 F:      drivers/media/platform/am437x/
11127
11128 OV2659 OMNIVISION SENSOR DRIVER
11129 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
11130 L:      linux-media@vger.kernel.org
11131 W:      https://linuxtv.org
11132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11133 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11134 S:      Maintained
11135 F:      drivers/media/i2c/ov2659.c
11136 F:      include/media/i2c/ov2659.h
11137
11138 SILICON MOTION SM712 FRAME BUFFER DRIVER
11139 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11140 M:      Teddy Wang <teddy.wang@siliconmotion.com>
11141 M:      Sudip Mukherjee <sudip@vectorindia.org>
11142 L:      linux-fbdev@vger.kernel.org
11143 S:      Maintained
11144 F:      drivers/video/fbdev/sm712*
11145 F:      Documentation/fb/sm712fb.txt
11146
11147 SIS 190 ETHERNET DRIVER
11148 M:      Francois Romieu <romieu@fr.zoreil.com>
11149 L:      netdev@vger.kernel.org
11150 S:      Maintained
11151 F:      drivers/net/ethernet/sis/sis190.c
11152
11153 SIS 900/7016 FAST ETHERNET DRIVER
11154 M:      Daniele Venzano <venza@brownhat.org>
11155 W:      http://www.brownhat.org/sis900.html
11156 L:      netdev@vger.kernel.org
11157 S:      Maintained
11158 F:      drivers/net/ethernet/sis/sis900.*
11159
11160 SIS FRAMEBUFFER DRIVER
11161 M:      Thomas Winischhofer <thomas@winischhofer.net>
11162 W:      http://www.winischhofer.net/linuxsisvga.shtml
11163 S:      Maintained
11164 F:      Documentation/fb/sisfb.txt
11165 F:      drivers/video/fbdev/sis/
11166 F:      include/video/sisfb.h
11167
11168 SIS USB2VGA DRIVER
11169 M:      Thomas Winischhofer <thomas@winischhofer.net>
11170 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
11171 S:      Maintained
11172 F:      drivers/usb/misc/sisusbvga/
11173
11174 SLAB ALLOCATOR
11175 M:      Christoph Lameter <cl@linux.com>
11176 M:      Pekka Enberg <penberg@kernel.org>
11177 M:      David Rientjes <rientjes@google.com>
11178 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
11179 M:      Andrew Morton <akpm@linux-foundation.org>
11180 L:      linux-mm@kvack.org
11181 S:      Maintained
11182 F:      include/linux/sl?b*.h
11183 F:      mm/sl?b*
11184
11185 SLEEPABLE READ-COPY UPDATE (SRCU)
11186 M:      Lai Jiangshan <jiangshanlai@gmail.com>
11187 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11188 M:      Josh Triplett <josh@joshtriplett.org>
11189 R:      Steven Rostedt <rostedt@goodmis.org>
11190 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11191 L:      linux-kernel@vger.kernel.org
11192 W:      http://www.rdrop.com/users/paulmck/RCU/
11193 S:      Supported
11194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11195 F:      include/linux/srcu.h
11196 F:      kernel/rcu/srcu.c
11197
11198 SMACK SECURITY MODULE
11199 M:      Casey Schaufler <casey@schaufler-ca.com>
11200 L:      linux-security-module@vger.kernel.org
11201 W:      http://schaufler-ca.com
11202 T:      git git://github.com/cschaufler/smack-next
11203 S:      Maintained
11204 F:      Documentation/security/Smack.txt
11205 F:      security/smack/
11206
11207 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
11208 M:      Kevin Hilman <khilman@kernel.org>
11209 M:      Nishanth Menon <nm@ti.com>
11210 S:      Maintained
11211 F:      drivers/power/avs/
11212 F:      include/linux/power/smartreflex.h
11213 L:      linux-pm@vger.kernel.org
11214
11215 SMC91x ETHERNET DRIVER
11216 M:      Nicolas Pitre <nico@fluxnic.net>
11217 S:      Odd Fixes
11218 F:      drivers/net/ethernet/smsc/smc91x.*
11219
11220 SMIA AND SMIA++ IMAGE SENSOR DRIVER
11221 M:      Sakari Ailus <sakari.ailus@iki.fi>
11222 L:      linux-media@vger.kernel.org
11223 S:      Maintained
11224 F:      drivers/media/i2c/smiapp/
11225 F:      include/media/i2c/smiapp.h
11226 F:      drivers/media/i2c/smiapp-pll.c
11227 F:      drivers/media/i2c/smiapp-pll.h
11228 F:      include/uapi/linux/smiapp.h
11229 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
11230
11231 SMM665 HARDWARE MONITOR DRIVER
11232 M:      Guenter Roeck <linux@roeck-us.net>
11233 L:      linux-hwmon@vger.kernel.org
11234 S:      Maintained
11235 F:      Documentation/hwmon/smm665
11236 F:      drivers/hwmon/smm665.c
11237
11238 SMSC EMC2103 HARDWARE MONITOR DRIVER
11239 M:      Steve Glendinning <steve.glendinning@shawell.net>
11240 L:      linux-hwmon@vger.kernel.org
11241 S:      Maintained
11242 F:      Documentation/hwmon/emc2103
11243 F:      drivers/hwmon/emc2103.c
11244
11245 SMSC SCH5627 HARDWARE MONITOR DRIVER
11246 M:      Hans de Goede <hdegoede@redhat.com>
11247 L:      linux-hwmon@vger.kernel.org
11248 S:      Supported
11249 F:      Documentation/hwmon/sch5627
11250 F:      drivers/hwmon/sch5627.c
11251
11252 SMSC47B397 HARDWARE MONITOR DRIVER
11253 M:      Jean Delvare <jdelvare@suse.com>
11254 L:      linux-hwmon@vger.kernel.org
11255 S:      Maintained
11256 F:      Documentation/hwmon/smsc47b397
11257 F:      drivers/hwmon/smsc47b397.c
11258
11259 SMSC911x ETHERNET DRIVER
11260 M:      Steve Glendinning <steve.glendinning@shawell.net>
11261 L:      netdev@vger.kernel.org
11262 S:      Maintained
11263 F:      include/linux/smsc911x.h
11264 F:      drivers/net/ethernet/smsc/smsc911x.*
11265
11266 SMSC9420 PCI ETHERNET DRIVER
11267 M:      Steve Glendinning <steve.glendinning@shawell.net>
11268 L:      netdev@vger.kernel.org
11269 S:      Maintained
11270 F:      drivers/net/ethernet/smsc/smsc9420.*
11271
11272 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
11273 M:      Steve Glendinning <steve.glendinning@shawell.net>
11274 L:      linux-fbdev@vger.kernel.org
11275 S:      Maintained
11276 F:      drivers/video/fbdev/smscufx.c
11277
11278 SOC-CAMERA V4L2 SUBSYSTEM
11279 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
11280 L:      linux-media@vger.kernel.org
11281 T:      git git://linuxtv.org/media_tree.git
11282 S:      Maintained
11283 F:      include/media/soc*
11284 F:      drivers/media/i2c/soc_camera/
11285 F:      drivers/media/platform/soc_camera/
11286
11287 SOEKRIS NET48XX LED SUPPORT
11288 M:      Chris Boot <bootc@bootc.net>
11289 S:      Maintained
11290 F:      drivers/leds/leds-net48xx.c
11291
11292 SOFTLOGIC 6x10 MPEG CODEC
11293 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
11294 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
11295 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
11296 M:      Ismael Luceno <ismael@iodev.co.uk>
11297 L:      linux-media@vger.kernel.org
11298 S:      Supported
11299 F:      drivers/media/pci/solo6x10/
11300
11301 SOFTWARE RAID (Multiple Disks) SUPPORT
11302 M:      Shaohua Li <shli@kernel.org>
11303 L:      linux-raid@vger.kernel.org
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
11305 S:      Supported
11306 F:      drivers/md/
11307 F:      include/linux/raid/
11308 F:      include/uapi/linux/raid/
11309
11310 SONIC NETWORK DRIVER
11311 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11312 L:      netdev@vger.kernel.org
11313 S:      Maintained
11314 F:      drivers/net/ethernet/natsemi/sonic.*
11315
11316 SONICS SILICON BACKPLANE DRIVER (SSB)
11317 M:      Michael Buesch <m@bues.ch>
11318 L:      linux-wireless@vger.kernel.org
11319 S:      Maintained
11320 F:      drivers/ssb/
11321 F:      include/linux/ssb/
11322
11323 SONY VAIO CONTROL DEVICE DRIVER
11324 M:      Mattia Dongili <malattia@linux.it>
11325 L:      platform-driver-x86@vger.kernel.org
11326 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
11327 S:      Maintained
11328 F:      Documentation/laptops/sony-laptop.txt
11329 F:      drivers/char/sonypi.c
11330 F:      drivers/platform/x86/sony-laptop.c
11331 F:      include/linux/sony-laptop.h
11332
11333 SONY MEMORYSTICK CARD SUPPORT
11334 M:      Alex Dubov <oakad@yahoo.com>
11335 W:      http://tifmxx.berlios.de/
11336 S:      Maintained
11337 F:      drivers/memstick/host/tifm_ms.c
11338
11339 SONY MEMORYSTICK STANDARD SUPPORT
11340 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11341 S:      Maintained
11342 F:      drivers/memstick/core/ms_block.*
11343
11344 SOUND
11345 M:      Jaroslav Kysela <perex@perex.cz>
11346 M:      Takashi Iwai <tiwai@suse.com>
11347 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11348 W:      http://www.alsa-project.org/
11349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11350 T:      git git://git.alsa-project.org/alsa-kernel.git
11351 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
11352 S:      Maintained
11353 F:      Documentation/sound/
11354 F:      include/sound/
11355 F:      include/uapi/sound/
11356 F:      sound/
11357
11358 SOUND - COMPRESSED AUDIO
11359 M:      Vinod Koul <vinod.koul@intel.com>
11360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11362 S:      Supported
11363 F:      Documentation/sound/alsa/compress_offload.txt
11364 F:      include/sound/compress_driver.h
11365 F:      include/uapi/sound/compress_*
11366 F:      sound/core/compress_offload.c
11367 F:      sound/soc/soc-compress.c
11368
11369 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
11370 M:      Liam Girdwood <lgirdwood@gmail.com>
11371 M:      Mark Brown <broonie@kernel.org>
11372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
11373 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11374 W:      http://alsa-project.org/main/index.php/ASoC
11375 S:      Supported
11376 F:      Documentation/devicetree/bindings/sound/
11377 F:      Documentation/sound/alsa/soc/
11378 F:      sound/soc/
11379 F:      include/sound/soc*
11380
11381 SOUND - DMAENGINE HELPERS
11382 M:      Lars-Peter Clausen <lars@metafoo.de>
11383 S:      Supported
11384 F:      include/sound/dmaengine_pcm.h
11385 F:      sound/core/pcm_dmaengine.c
11386 F:      sound/soc/soc-generic-dmaengine-pcm.c
11387
11388 SP2 MEDIA DRIVER
11389 M:      Olli Salonen <olli.salonen@iki.fi>
11390 L:      linux-media@vger.kernel.org
11391 W:      https://linuxtv.org
11392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11393 S:      Maintained
11394 F:      drivers/media/dvb-frontends/sp2*
11395
11396 SPARC + UltraSPARC (sparc/sparc64)
11397 M:      "David S. Miller" <davem@davemloft.net>
11398 L:      sparclinux@vger.kernel.org
11399 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
11400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
11401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
11402 S:      Maintained
11403 F:      arch/sparc/
11404 F:      drivers/sbus/
11405
11406 SPARC SERIAL DRIVERS
11407 M:      "David S. Miller" <davem@davemloft.net>
11408 L:      sparclinux@vger.kernel.org
11409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
11410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
11411 S:      Maintained
11412 F:      include/linux/sunserialcore.h
11413 F:      drivers/tty/serial/suncore.c
11414 F:      drivers/tty/serial/sunhv.c
11415 F:      drivers/tty/serial/sunsab.c
11416 F:      drivers/tty/serial/sunsab.h
11417 F:      drivers/tty/serial/sunsu.c
11418 F:      drivers/tty/serial/sunzilog.c
11419 F:      drivers/tty/serial/sunzilog.h
11420
11421 SPARSE CHECKER
11422 M:      "Christopher Li" <sparse@chrisli.org>
11423 L:      linux-sparse@vger.kernel.org
11424 W:      https://sparse.wiki.kernel.org/
11425 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
11426 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
11427 S:      Maintained
11428 F:      include/linux/compiler.h
11429
11430 SPEAR PLATFORM SUPPORT
11431 M:      Viresh Kumar <vireshk@kernel.org>
11432 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
11433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11434 W:      http://www.st.com/spear
11435 S:      Maintained
11436 F:      arch/arm/boot/dts/spear*
11437 F:      arch/arm/mach-spear/
11438
11439 SPEAR CLOCK FRAMEWORK SUPPORT
11440 M:      Viresh Kumar <vireshk@kernel.org>
11441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11442 W:      http://www.st.com/spear
11443 S:      Maintained
11444 F:      drivers/clk/spear/
11445
11446 SPI NOR SUBSYSTEM
11447 M:      Cyrille Pitchen <cyrille.pitchen@atmel.com>
11448 M:      Marek Vasut <marek.vasut@gmail.com>
11449 L:      linux-mtd@lists.infradead.org
11450 W:      http://www.linux-mtd.infradead.org/
11451 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
11452 T:      git git://github.com/spi-nor/linux.git
11453 S:      Maintained
11454 F:      drivers/mtd/spi-nor/
11455 F:      include/linux/mtd/spi-nor.h
11456
11457 SPI SUBSYSTEM
11458 M:      Mark Brown <broonie@kernel.org>
11459 L:      linux-spi@vger.kernel.org
11460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
11461 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
11462 S:      Maintained
11463 F:      Documentation/devicetree/bindings/spi/
11464 F:      Documentation/spi/
11465 F:      drivers/spi/
11466 F:      include/linux/spi/
11467 F:      include/uapi/linux/spi/
11468 F:      tools/spi/
11469
11470 SPIDERNET NETWORK DRIVER for CELL
11471 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
11472 L:      netdev@vger.kernel.org
11473 S:      Supported
11474 F:      Documentation/networking/spider_net.txt
11475 F:      drivers/net/ethernet/toshiba/spider_net*
11476
11477 SPU FILE SYSTEM
11478 M:      Jeremy Kerr <jk@ozlabs.org>
11479 L:      linuxppc-dev@lists.ozlabs.org
11480 W:      http://www.ibm.com/developerworks/power/cell/
11481 S:      Supported
11482 F:      Documentation/filesystems/spufs.txt
11483 F:      arch/powerpc/platforms/cell/spufs/
11484
11485 SQUASHFS FILE SYSTEM
11486 M:      Phillip Lougher <phillip@squashfs.org.uk>
11487 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
11488 W:      http://squashfs.org.uk
11489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
11490 S:      Maintained
11491 F:      Documentation/filesystems/squashfs.txt
11492 F:      fs/squashfs/
11493
11494 SRM (Alpha) environment access
11495 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
11496 S:      Maintained
11497 F:      arch/alpha/kernel/srm_env.c
11498
11499 STABLE BRANCH
11500 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11501 L:      stable@vger.kernel.org
11502 S:      Supported
11503 F:      Documentation/process/stable-kernel-rules.rst
11504
11505 STAGING SUBSYSTEM
11506 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
11508 L:      devel@driverdev.osuosl.org
11509 S:      Supported
11510 F:      drivers/staging/
11511
11512 STAGING - COMEDI
11513 M:      Ian Abbott <abbotti@mev.co.uk>
11514 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
11515 S:      Odd Fixes
11516 F:      drivers/staging/comedi/
11517
11518 STAGING - FLARION FT1000 DRIVERS
11519 M:      Marek Belisko <marek.belisko@gmail.com>
11520 S:      Odd Fixes
11521 F:      drivers/staging/ft1000/
11522
11523 STAGING - INDUSTRIAL IO
11524 M:      Jonathan Cameron <jic23@kernel.org>
11525 L:      linux-iio@vger.kernel.org
11526 S:      Odd Fixes
11527 F:      Documentation/devicetree/bindings/staging/iio/
11528 F:      drivers/staging/iio/
11529
11530 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
11531 M:      Jarod Wilson <jarod@wilsonet.com>
11532 W:      http://www.lirc.org/
11533 S:      Odd Fixes
11534 F:      drivers/staging/media/lirc/
11535
11536 STAGING - LUSTRE PARALLEL FILESYSTEM
11537 M:      Oleg Drokin <oleg.drokin@intel.com>
11538 M:      Andreas Dilger <andreas.dilger@intel.com>
11539 M:      James Simmons <jsimmons@infradead.org>
11540 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
11541 W:      http://wiki.lustre.org/
11542 S:      Maintained
11543 F:      drivers/staging/lustre
11544
11545 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
11546 M:      Marc Dietrich <marvin24@gmx.de>
11547 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
11548 L:      linux-tegra@vger.kernel.org
11549 S:      Maintained
11550 F:      drivers/staging/nvec/
11551
11552 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
11553 M:      Jens Frederich <jfrederich@gmail.com>
11554 M:      Daniel Drake <dsd@laptop.org>
11555 M:      Jon Nettleton <jon.nettleton@gmail.com>
11556 W:      http://wiki.laptop.org/go/DCON
11557 S:      Maintained
11558 F:      drivers/staging/olpc_dcon/
11559
11560 STAGING - REALTEK RTL8712U DRIVERS
11561 M:      Larry Finger <Larry.Finger@lwfinger.net>
11562 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
11563 S:      Odd Fixes
11564 F:      drivers/staging/rtl8712/
11565
11566 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
11567 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11568 M:      Teddy Wang <teddy.wang@siliconmotion.com>
11569 M:      Sudip Mukherjee <sudip@vectorindia.org>
11570 L:      linux-fbdev@vger.kernel.org
11571 S:      Maintained
11572 F:      drivers/staging/sm750fb/
11573
11574 STAGING - SLICOSS
11575 M:      Lior Dotan <liodot@gmail.com>
11576 M:      Christopher Harrer <charrer@alacritech.com>
11577 S:      Odd Fixes
11578 F:      drivers/staging/slicoss/
11579
11580 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
11581 M:      William Hubbs <w.d.hubbs@gmail.com>
11582 M:      Chris Brannon <chris@the-brannons.com>
11583 M:      Kirk Reiser <kirk@reisers.ca>
11584 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
11585 L:      speakup@linux-speakup.org
11586 W:      http://www.linux-speakup.org/
11587 S:      Odd Fixes
11588 F:      drivers/staging/speakup/
11589
11590 STAGING - VIA VT665X DRIVERS
11591 M:      Forest Bond <forest@alittletooquiet.net>
11592 S:      Odd Fixes
11593 F:      drivers/staging/vt665?/
11594
11595 STAGING - WILC1000 WIFI DRIVER
11596 M:      Aditya Shankar <aditya.shankar@microchip.com>
11597 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
11598 L:      linux-wireless@vger.kernel.org
11599 S:      Supported
11600 F:      drivers/staging/wilc1000/
11601
11602 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
11603 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
11604 S:      Odd Fixes
11605 F:      drivers/staging/xgifb/
11606
11607 STARFIRE/DURALAN NETWORK DRIVER
11608 M:      Ion Badulescu <ionut@badula.org>
11609 S:      Odd Fixes
11610 F:      drivers/net/ethernet/adaptec/starfire*
11611
11612 SUN3/3X
11613 M:      Sam Creasey <sammy@sammy.net>
11614 W:      http://sammy.net/sun3/
11615 S:      Maintained
11616 F:      arch/m68k/kernel/*sun3*
11617 F:      arch/m68k/sun3*/
11618 F:      arch/m68k/include/asm/sun3*
11619 F:      drivers/net/ethernet/i825xx/sun3*
11620
11621 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
11622 M:      Hans de Goede <hdegoede@redhat.com>
11623 L:      linux-input@vger.kernel.org
11624 S:      Maintained
11625 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
11626 F:      drivers/input/keyboard/sun4i-lradc-keys.c
11627
11628 SUNDANCE NETWORK DRIVER
11629 M:      Denis Kirjanov <kda@linux-powerpc.org>
11630 L:      netdev@vger.kernel.org
11631 S:      Maintained
11632 F:      drivers/net/ethernet/dlink/sundance.c
11633
11634 SUPERH
11635 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
11636 M:      Rich Felker <dalias@libc.org>
11637 L:      linux-sh@vger.kernel.org
11638 Q:      http://patchwork.kernel.org/project/linux-sh/list/
11639 S:      Maintained
11640 F:      Documentation/sh/
11641 F:      arch/sh/
11642 F:      drivers/sh/
11643
11644 SUSPEND TO RAM
11645 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11646 M:      Len Brown <len.brown@intel.com>
11647 M:      Pavel Machek <pavel@ucw.cz>
11648 L:      linux-pm@vger.kernel.org
11649 B:      https://bugzilla.kernel.org
11650 S:      Supported
11651 F:      Documentation/power/
11652 F:      arch/x86/kernel/acpi/
11653 F:      drivers/base/power/
11654 F:      kernel/power/
11655 F:      include/linux/suspend.h
11656 F:      include/linux/freezer.h
11657 F:      include/linux/pm.h
11658
11659 SVGA HANDLING
11660 M:      Martin Mares <mj@ucw.cz>
11661 L:      linux-video@atrey.karlin.mff.cuni.cz
11662 S:      Maintained
11663 F:      Documentation/svga.txt
11664 F:      arch/x86/boot/video*
11665
11666 SWIOTLB SUBSYSTEM
11667 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11668 L:      linux-kernel@vger.kernel.org
11669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
11670 S:      Supported
11671 F:      lib/swiotlb.c
11672 F:      arch/*/kernel/pci-swiotlb.c
11673 F:      include/linux/swiotlb.h
11674
11675 SWITCHDEV
11676 M:      Jiri Pirko <jiri@resnulli.us>
11677 L:      netdev@vger.kernel.org
11678 S:      Supported
11679 F:      net/switchdev/
11680 F:      include/net/switchdev.h
11681
11682 SYNOPSYS ARC ARCHITECTURE
11683 M:      Vineet Gupta <vgupta@synopsys.com>
11684 L:      linux-snps-arc@lists.infradead.org
11685 S:      Supported
11686 F:      arch/arc/
11687 F:      Documentation/devicetree/bindings/arc/*
11688 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
11689 F:      drivers/tty/serial/arc_uart.c
11690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
11691
11692 SYNOPSYS ARC SDP platform support
11693 M:      Alexey Brodkin <abrodkin@synopsys.com>
11694 S:      Supported
11695 F:      arch/arc/plat-axs10x
11696 F:      arch/arc/boot/dts/ax*
11697 F:      Documentation/devicetree/bindings/arc/axs10*
11698
11699 SYSTEM CONFIGURATION (SYSCON)
11700 M:      Lee Jones <lee.jones@linaro.org>
11701 M:      Arnd Bergmann <arnd@arndb.de>
11702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11703 S:      Supported
11704 F:      drivers/mfd/syscon.c
11705
11706 SYSTEM RESET/SHUTDOWN DRIVERS
11707 M:      Sebastian Reichel <sre@kernel.org>
11708 L:      linux-pm@vger.kernel.org
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
11710 S:      Maintained
11711 F:      Documentation/devicetree/bindings/power/reset/
11712 F:      drivers/power/reset/
11713
11714 SYSV FILESYSTEM
11715 M:      Christoph Hellwig <hch@infradead.org>
11716 S:      Maintained
11717 F:      Documentation/filesystems/sysv-fs.txt
11718 F:      fs/sysv/
11719 F:      include/linux/sysv_fs.h
11720
11721 TARGET SUBSYSTEM
11722 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
11723 L:      linux-scsi@vger.kernel.org
11724 L:      target-devel@vger.kernel.org
11725 W:      http://www.linux-iscsi.org
11726 W:      http://groups.google.com/group/linux-iscsi-target-dev
11727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11728 S:      Supported
11729 F:      drivers/target/
11730 F:      include/target/
11731 F:      Documentation/target/
11732
11733 TASKSTATS STATISTICS INTERFACE
11734 M:      Balbir Singh <bsingharora@gmail.com>
11735 S:      Maintained
11736 F:      Documentation/accounting/taskstats*
11737 F:      include/linux/taskstats*
11738 F:      kernel/taskstats.c
11739
11740 TC CLASSIFIER
11741 M:      Jamal Hadi Salim <jhs@mojatatu.com>
11742 L:      netdev@vger.kernel.org
11743 S:      Maintained
11744 F:      include/net/pkt_cls.h
11745 F:      include/uapi/linux/pkt_cls.h
11746 F:      net/sched/
11747
11748 TCP LOW PRIORITY MODULE
11749 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
11750 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
11751 W:      http://tcp-lp-mod.sourceforge.net/
11752 S:      Maintained
11753 F:      net/ipv4/tcp_lp.c
11754
11755 TDA10071 MEDIA DRIVER
11756 M:      Antti Palosaari <crope@iki.fi>
11757 L:      linux-media@vger.kernel.org
11758 W:      https://linuxtv.org
11759 W:      http://palosaari.fi/linux/
11760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11761 T:      git git://linuxtv.org/anttip/media_tree.git
11762 S:      Maintained
11763 F:      drivers/media/dvb-frontends/tda10071*
11764
11765 TDA18212 MEDIA DRIVER
11766 M:      Antti Palosaari <crope@iki.fi>
11767 L:      linux-media@vger.kernel.org
11768 W:      https://linuxtv.org
11769 W:      http://palosaari.fi/linux/
11770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11771 T:      git git://linuxtv.org/anttip/media_tree.git
11772 S:      Maintained
11773 F:      drivers/media/tuners/tda18212*
11774
11775 TDA18218 MEDIA DRIVER
11776 M:      Antti Palosaari <crope@iki.fi>
11777 L:      linux-media@vger.kernel.org
11778 W:      https://linuxtv.org
11779 W:      http://palosaari.fi/linux/
11780 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11781 T:      git git://linuxtv.org/anttip/media_tree.git
11782 S:      Maintained
11783 F:      drivers/media/tuners/tda18218*
11784
11785 TDA18271 MEDIA DRIVER
11786 M:      Michael Krufky <mkrufky@linuxtv.org>
11787 L:      linux-media@vger.kernel.org
11788 W:      https://linuxtv.org
11789 W:      http://github.com/mkrufky
11790 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11791 T:      git git://linuxtv.org/mkrufky/tuners.git
11792 S:      Maintained
11793 F:      drivers/media/tuners/tda18271*
11794
11795 TDA827x MEDIA DRIVER
11796 M:      Michael Krufky <mkrufky@linuxtv.org>
11797 L:      linux-media@vger.kernel.org
11798 W:      https://linuxtv.org
11799 W:      http://github.com/mkrufky
11800 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11801 T:      git git://linuxtv.org/mkrufky/tuners.git
11802 S:      Maintained
11803 F:      drivers/media/tuners/tda8290.*
11804
11805 TDA8290 MEDIA DRIVER
11806 M:      Michael Krufky <mkrufky@linuxtv.org>
11807 L:      linux-media@vger.kernel.org
11808 W:      https://linuxtv.org
11809 W:      http://github.com/mkrufky
11810 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11811 T:      git git://linuxtv.org/mkrufky/tuners.git
11812 S:      Maintained
11813 F:      drivers/media/tuners/tda8290.*
11814
11815 TDA9840 MEDIA DRIVER
11816 M:      Hans Verkuil <hverkuil@xs4all.nl>
11817 L:      linux-media@vger.kernel.org
11818 T:      git git://linuxtv.org/media_tree.git
11819 W:      https://linuxtv.org
11820 S:      Maintained
11821 F:      drivers/media/i2c/tda9840*
11822
11823 TEA5761 TUNER DRIVER
11824 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11826 L:      linux-media@vger.kernel.org
11827 W:      https://linuxtv.org
11828 T:      git git://linuxtv.org/media_tree.git
11829 S:      Odd fixes
11830 F:      drivers/media/tuners/tea5761.*
11831
11832 TEA5767 TUNER DRIVER
11833 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11834 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11835 L:      linux-media@vger.kernel.org
11836 W:      https://linuxtv.org
11837 T:      git git://linuxtv.org/media_tree.git
11838 S:      Maintained
11839 F:      drivers/media/tuners/tea5767.*
11840
11841 TEA6415C MEDIA DRIVER
11842 M:      Hans Verkuil <hverkuil@xs4all.nl>
11843 L:      linux-media@vger.kernel.org
11844 T:      git git://linuxtv.org/media_tree.git
11845 W:      https://linuxtv.org
11846 S:      Maintained
11847 F:      drivers/media/i2c/tea6415c*
11848
11849 TEA6420 MEDIA DRIVER
11850 M:      Hans Verkuil <hverkuil@xs4all.nl>
11851 L:      linux-media@vger.kernel.org
11852 T:      git git://linuxtv.org/media_tree.git
11853 W:      https://linuxtv.org
11854 S:      Maintained
11855 F:      drivers/media/i2c/tea6420*
11856
11857 TEAM DRIVER
11858 M:      Jiri Pirko <jiri@resnulli.us>
11859 L:      netdev@vger.kernel.org
11860 S:      Supported
11861 F:      drivers/net/team/
11862 F:      include/linux/if_team.h
11863 F:      include/uapi/linux/if_team.h
11864
11865 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11866 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11867 S:      Maintained
11868 F:      arch/x86/platform/ts5500/
11869
11870 TECHNOTREND USB IR RECEIVER
11871 M:      Sean Young <sean@mess.org>
11872 L:      linux-media@vger.kernel.org
11873 S:      Maintained
11874 F:      drivers/media/rc/ttusbir.c
11875
11876 TEGRA ARCHITECTURE SUPPORT
11877 M:      Stephen Warren <swarren@wwwdotorg.org>
11878 M:      Thierry Reding <thierry.reding@gmail.com>
11879 M:      Alexandre Courbot <gnurou@gmail.com>
11880 L:      linux-tegra@vger.kernel.org
11881 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11883 S:      Supported
11884 N:      [^a-z]tegra
11885
11886 TEGRA CLOCK DRIVER
11887 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11888 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11889 S:      Supported
11890 F:      drivers/clk/tegra/
11891
11892 TEGRA DMA DRIVERS
11893 M:      Laxman Dewangan <ldewangan@nvidia.com>
11894 M:      Jon Hunter <jonathanh@nvidia.com>
11895 S:      Supported
11896 F:      drivers/dma/tegra*
11897
11898 TEGRA I2C DRIVER
11899 M:      Laxman Dewangan <ldewangan@nvidia.com>
11900 S:      Supported
11901 F:      drivers/i2c/busses/i2c-tegra.c
11902
11903 TEGRA IOMMU DRIVERS
11904 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11905 S:      Supported
11906 F:      drivers/iommu/tegra*
11907
11908 TEGRA KBC DRIVER
11909 M:      Rakesh Iyer <riyer@nvidia.com>
11910 M:      Laxman Dewangan <ldewangan@nvidia.com>
11911 S:      Supported
11912 F:      drivers/input/keyboard/tegra-kbc.c
11913
11914 TEGRA PWM DRIVER
11915 M:      Thierry Reding <thierry.reding@gmail.com>
11916 S:      Supported
11917 F:      drivers/pwm/pwm-tegra.c
11918
11919 TEGRA SERIAL DRIVER
11920 M:      Laxman Dewangan <ldewangan@nvidia.com>
11921 S:      Supported
11922 F:      drivers/tty/serial/serial-tegra.c
11923
11924 TEGRA SPI DRIVER
11925 M:      Laxman Dewangan <ldewangan@nvidia.com>
11926 S:      Supported
11927 F:      drivers/spi/spi-tegra*
11928
11929 TEHUTI ETHERNET DRIVER
11930 M:      Andy Gospodarek <andy@greyhouse.net>
11931 L:      netdev@vger.kernel.org
11932 S:      Supported
11933 F:      drivers/net/ethernet/tehuti/*
11934
11935 Telecom Clock Driver for MCPL0010
11936 M:      Mark Gross <mark.gross@intel.com>
11937 S:      Supported
11938 F:      drivers/char/tlclk.c
11939
11940 TENSILICA XTENSA PORT (xtensa)
11941 M:      Chris Zankel <chris@zankel.net>
11942 M:      Max Filippov <jcmvbkbc@gmail.com>
11943 L:      linux-xtensa@linux-xtensa.org
11944 T:      git git://github.com/czankel/xtensa-linux.git
11945 S:      Maintained
11946 F:      arch/xtensa/
11947 F:      drivers/irqchip/irq-xtensa-*
11948
11949 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11950 M:      Hans Verkuil <hverkuil@xs4all.nl>
11951 L:      linux-media@vger.kernel.org
11952 T:      git git://linuxtv.org/media_tree.git
11953 W:      https://linuxtv.org
11954 S:      Maintained
11955 F:      drivers/media/radio/radio-raremono.c
11956
11957 THERMAL
11958 M:      Zhang Rui <rui.zhang@intel.com>
11959 M:      Eduardo Valentin <edubezval@gmail.com>
11960 L:      linux-pm@vger.kernel.org
11961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11963 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11964 S:      Supported
11965 F:      drivers/thermal/
11966 F:      include/linux/thermal.h
11967 F:      include/uapi/linux/thermal.h
11968 F:      include/linux/cpu_cooling.h
11969 F:      Documentation/devicetree/bindings/thermal/
11970
11971 THERMAL/CPU_COOLING
11972 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11973 M:      Viresh Kumar <viresh.kumar@linaro.org>
11974 M:      Javi Merino <javi.merino@kernel.org>
11975 L:      linux-pm@vger.kernel.org
11976 S:      Supported
11977 F:      Documentation/thermal/cpu-cooling-api.txt
11978 F:      drivers/thermal/cpu_cooling.c
11979 F:      include/linux/cpu_cooling.h
11980
11981 THINKPAD ACPI EXTRAS DRIVER
11982 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11983 L:      ibm-acpi-devel@lists.sourceforge.net
11984 L:      platform-driver-x86@vger.kernel.org
11985 W:      http://ibm-acpi.sourceforge.net
11986 W:      http://thinkwiki.org/wiki/Ibm-acpi
11987 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11988 S:      Maintained
11989 F:      drivers/platform/x86/thinkpad_acpi.c
11990
11991 TI BANDGAP AND THERMAL DRIVER
11992 M:      Eduardo Valentin <edubezval@gmail.com>
11993 M:      Keerthy <j-keerthy@ti.com>
11994 L:      linux-pm@vger.kernel.org
11995 L:      linux-omap@vger.kernel.org
11996 S:      Maintained
11997 F:      drivers/thermal/ti-soc-thermal/
11998
11999 TI VPE/CAL DRIVERS
12000 M:      Benoit Parrot <bparrot@ti.com>
12001 L:      linux-media@vger.kernel.org
12002 W:      http://linuxtv.org/
12003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12004 S:      Maintained
12005 F:      drivers/media/platform/ti-vpe/
12006
12007 TI CDCE706 CLOCK DRIVER
12008 M:      Max Filippov <jcmvbkbc@gmail.com>
12009 S:      Maintained
12010 F:      drivers/clk/clk-cdce706.c
12011
12012 TI CLOCK DRIVER
12013 M:      Tero Kristo <t-kristo@ti.com>
12014 L:      linux-omap@vger.kernel.org
12015 S:      Maintained
12016 F:      drivers/clk/ti/
12017 F:      include/linux/clk/ti.h
12018
12019 TI ETHERNET SWITCH DRIVER (CPSW)
12020 M:      Mugunthan V N <mugunthanvnm@ti.com>
12021 R:      Grygorii Strashko <grygorii.strashko@ti.com>
12022 L:      linux-omap@vger.kernel.org
12023 L:      netdev@vger.kernel.org
12024 S:      Maintained
12025 F:      drivers/net/ethernet/ti/cpsw*
12026 F:      drivers/net/ethernet/ti/davinci*
12027
12028 TI FLASH MEDIA INTERFACE DRIVER
12029 M:      Alex Dubov <oakad@yahoo.com>
12030 S:      Maintained
12031 F:      drivers/misc/tifm*
12032 F:      drivers/mmc/host/tifm_sd.c
12033 F:      include/linux/tifm.h
12034
12035 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
12036 M:      Santosh Shilimkar <ssantosh@kernel.org>
12037 L:      linux-kernel@vger.kernel.org
12038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12039 S:      Maintained
12040 F:      drivers/soc/ti/*
12041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
12042
12043
12044 TI LM49xxx FAMILY ASoC CODEC DRIVERS
12045 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
12046 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
12047 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12048 S:      Maintained
12049 F:      sound/soc/codecs/lm49453*
12050 F:      sound/soc/codecs/isabelle*
12051
12052 TI LP855x BACKLIGHT DRIVER
12053 M:      Milo Kim <milo.kim@ti.com>
12054 S:      Maintained
12055 F:      Documentation/backlight/lp855x-driver.txt
12056 F:      drivers/video/backlight/lp855x_bl.c
12057 F:      include/linux/platform_data/lp855x.h
12058
12059 TI LP8727 CHARGER DRIVER
12060 M:      Milo Kim <milo.kim@ti.com>
12061 S:      Maintained
12062 F:      drivers/power/supply/lp8727_charger.c
12063 F:      include/linux/platform_data/lp8727.h
12064
12065 TI LP8788 MFD DRIVER
12066 M:      Milo Kim <milo.kim@ti.com>
12067 S:      Maintained
12068 F:      drivers/iio/adc/lp8788_adc.c
12069 F:      drivers/leds/leds-lp8788.c
12070 F:      drivers/mfd/lp8788*.c
12071 F:      drivers/power/supply/lp8788-charger.c
12072 F:      drivers/regulator/lp8788-*.c
12073 F:      include/linux/mfd/lp8788*.h
12074
12075 TI NETCP ETHERNET DRIVER
12076 M:      Wingman Kwok <w-kwok2@ti.com>
12077 M:      Murali Karicheri <m-karicheri2@ti.com>
12078 L:      netdev@vger.kernel.org
12079 S:      Maintained
12080 F:      drivers/net/ethernet/ti/netcp*
12081
12082 TI TAS571X FAMILY ASoC CODEC DRIVER
12083 M:      Kevin Cernekee <cernekee@chromium.org>
12084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12085 S:      Odd Fixes
12086 F:      sound/soc/codecs/tas571x*
12087
12088 TI TWL4030 SERIES SOC CODEC DRIVER
12089 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
12090 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12091 S:      Maintained
12092 F:      sound/soc/codecs/twl4030*
12093
12094 TI WILINK WIRELESS DRIVERS
12095 L:      linux-wireless@vger.kernel.org
12096 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
12097 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
12098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
12099 S:      Orphan
12100 F:      drivers/net/wireless/ti/
12101 F:      include/linux/wl12xx.h
12102
12103 TIPC NETWORK LAYER
12104 M:      Jon Maloy <jon.maloy@ericsson.com>
12105 M:      Ying Xue <ying.xue@windriver.com>
12106 L:      netdev@vger.kernel.org (core kernel code)
12107 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
12108 W:      http://tipc.sourceforge.net/
12109 S:      Maintained
12110 F:      include/uapi/linux/tipc*.h
12111 F:      net/tipc/
12112
12113 TILE ARCHITECTURE
12114 M:      Chris Metcalf <cmetcalf@mellanox.com>
12115 W:      http://www.mellanox.com/repository/solutions/tile-scm/
12116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
12117 S:      Supported
12118 F:      arch/tile/
12119 F:      drivers/char/tile-srom.c
12120 F:      drivers/edac/tile_edac.c
12121 F:      drivers/net/ethernet/tile/
12122 F:      drivers/rtc/rtc-tile.c
12123 F:      drivers/tty/hvc/hvc_tile.c
12124 F:      drivers/tty/serial/tilegx.c
12125 F:      drivers/usb/host/*-tilegx.c
12126 F:      include/linux/usb/tilegx.h
12127
12128 TLAN NETWORK DRIVER
12129 M:      Samuel Chessman <chessman@tux.org>
12130 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
12131 W:      http://sourceforge.net/projects/tlan/
12132 S:      Maintained
12133 F:      Documentation/networking/tlan.txt
12134 F:      drivers/net/ethernet/ti/tlan.*
12135
12136 TOMOYO SECURITY MODULE
12137 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
12138 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
12139 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
12140 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
12141 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
12142 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
12143 W:      http://tomoyo.sourceforge.jp/
12144 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
12145 S:      Maintained
12146 F:      security/tomoyo/
12147
12148 TOPSTAR LAPTOP EXTRAS DRIVER
12149 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
12150 L:      platform-driver-x86@vger.kernel.org
12151 S:      Maintained
12152 F:      drivers/platform/x86/topstar-laptop.c
12153
12154 TOSHIBA ACPI EXTRAS DRIVER
12155 M:      Azael Avalos <coproscefalo@gmail.com>
12156 L:      platform-driver-x86@vger.kernel.org
12157 S:      Maintained
12158 F:      drivers/platform/x86/toshiba_acpi.c
12159
12160 TOSHIBA BLUETOOTH DRIVER
12161 M:      Azael Avalos <coproscefalo@gmail.com>
12162 L:      platform-driver-x86@vger.kernel.org
12163 S:      Maintained
12164 F:      drivers/platform/x86/toshiba_bluetooth.c
12165
12166 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
12167 M:      Azael Avalos <coproscefalo@gmail.com>
12168 L:      platform-driver-x86@vger.kernel.org
12169 S:      Maintained
12170 F:      drivers/platform/x86/toshiba_haps.c
12171
12172 TOSHIBA WMI HOTKEYS DRIVER
12173 M:      Azael Avalos <coproscefalo@gmail.com>
12174 L:      platform-driver-x86@vger.kernel.org
12175 S:      Maintained
12176 F:      drivers/platform/x86/toshiba-wmi.c
12177
12178 TOSHIBA SMM DRIVER
12179 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
12180 W:      http://www.buzzard.org.uk/toshiba/
12181 S:      Maintained
12182 F:      drivers/char/toshiba.c
12183 F:      include/linux/toshiba.h
12184 F:      include/uapi/linux/toshiba.h
12185
12186 TOSHIBA TC358743 DRIVER
12187 M:      Mats Randgaard <matrandg@cisco.com>
12188 L:      linux-media@vger.kernel.org
12189 S:      Maintained
12190 F:      drivers/media/i2c/tc358743*
12191 F:      include/media/i2c/tc358743.h
12192
12193 TMIO/SDHI MMC DRIVER
12194 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
12195 L:      linux-mmc@vger.kernel.org
12196 S:      Supported
12197 F:      drivers/mmc/host/tmio_mmc*
12198 F:      drivers/mmc/host/sh_mobile_sdhi.c
12199 F:      include/linux/mfd/tmio.h
12200
12201 TMP401 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/tmp401
12206 F:      drivers/hwmon/tmp401.c
12207
12208 TMPFS (SHMEM FILESYSTEM)
12209 M:      Hugh Dickins <hughd@google.com>
12210 L:      linux-mm@kvack.org
12211 S:      Maintained
12212 F:      include/linux/shmem_fs.h
12213 F:      mm/shmem.c
12214
12215 TM6000 VIDEO4LINUX DRIVER
12216 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12217 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12218 L:      linux-media@vger.kernel.org
12219 W:      https://linuxtv.org
12220 T:      git git://linuxtv.org/media_tree.git
12221 S:      Odd fixes
12222 F:      drivers/media/usb/tm6000/
12223 F:      Documentation/media/v4l-drivers/tm6000*
12224
12225 TW5864 VIDEO4LINUX DRIVER
12226 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12227 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12228 M:      Andrey Utkin <andrey_utkin@fastmail.com>
12229 L:      linux-media@vger.kernel.org
12230 S:      Supported
12231 F:      drivers/media/pci/tw5864/
12232
12233 TW68 VIDEO4LINUX DRIVER
12234 M:      Hans Verkuil <hverkuil@xs4all.nl>
12235 L:      linux-media@vger.kernel.org
12236 T:      git git://linuxtv.org/media_tree.git
12237 W:      https://linuxtv.org
12238 S:      Odd Fixes
12239 F:      drivers/media/pci/tw68/
12240
12241 TW686X VIDEO4LINUX DRIVER
12242 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
12243 L:      linux-media@vger.kernel.org
12244 T:      git git://linuxtv.org/media_tree.git
12245 W:      http://linuxtv.org
12246 S:      Maintained
12247 F:      drivers/media/pci/tw686x/
12248
12249 TPM DEVICE DRIVER
12250 M:      Peter Huewe <peterhuewe@gmx.de>
12251 M:      Marcel Selhorst <tpmdd@selhorst.net>
12252 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
12253 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
12254 W:      http://tpmdd.sourceforge.net
12255 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
12256 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
12257 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
12258 S:      Maintained
12259 F:      drivers/char/tpm/
12260
12261 TPM IBM_VTPM DEVICE DRIVER
12262 M:      Ashley Lai <ashleydlai@gmail.com>
12263 W:      http://tpmdd.sourceforge.net
12264 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
12265 S:      Maintained
12266 F:      drivers/char/tpm/tpm_ibmvtpm*
12267
12268 TRACING
12269 M:      Steven Rostedt <rostedt@goodmis.org>
12270 M:      Ingo Molnar <mingo@redhat.com>
12271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12272 S:      Maintained
12273 F:      Documentation/trace/ftrace.txt
12274 F:      arch/*/*/*/ftrace.h
12275 F:      arch/*/kernel/ftrace.c
12276 F:      include/*/ftrace.h
12277 F:      include/linux/trace*.h
12278 F:      include/trace/
12279 F:      kernel/trace/
12280 F:      tools/testing/selftests/ftrace/
12281
12282 TRACING MMIO ACCESSES (MMIOTRACE)
12283 M:      Steven Rostedt <rostedt@goodmis.org>
12284 M:      Ingo Molnar <mingo@kernel.org>
12285 R:      Karol Herbst <karolherbst@gmail.com>
12286 R:      Pekka Paalanen <ppaalanen@gmail.com>
12287 S:      Maintained
12288 L:      linux-kernel@vger.kernel.org
12289 L:      nouveau@lists.freedesktop.org
12290 F:      kernel/trace/trace_mmiotrace.c
12291 F:      include/linux/mmiotrace.h
12292 F:      arch/x86/mm/kmmio.c
12293 F:      arch/x86/mm/mmio-mod.c
12294 F:      arch/x86/mm/testmmiotrace.c
12295
12296 TRIVIAL PATCHES
12297 M:      Jiri Kosina <trivial@kernel.org>
12298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
12299 S:      Maintained
12300 K:      ^Subject:.*(?i)trivial
12301
12302 TTY LAYER
12303 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12304 M:      Jiri Slaby <jslaby@suse.com>
12305 S:      Supported
12306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
12307 F:      Documentation/serial/
12308 F:      drivers/tty/
12309 F:      drivers/tty/serial/serial_core.c
12310 F:      include/linux/serial_core.h
12311 F:      include/linux/serial.h
12312 F:      include/linux/tty.h
12313 F:      include/uapi/linux/serial_core.h
12314 F:      include/uapi/linux/serial.h
12315 F:      include/uapi/linux/tty.h
12316
12317 TUA9001 MEDIA DRIVER
12318 M:      Antti Palosaari <crope@iki.fi>
12319 L:      linux-media@vger.kernel.org
12320 W:      https://linuxtv.org
12321 W:      http://palosaari.fi/linux/
12322 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12323 T:      git git://linuxtv.org/anttip/media_tree.git
12324 S:      Maintained
12325 F:      drivers/media/tuners/tua9001*
12326
12327 TULIP NETWORK DRIVERS
12328 L:      netdev@vger.kernel.org
12329 L:      linux-parisc@vger.kernel.org
12330 S:      Orphan
12331 F:      drivers/net/ethernet/dec/tulip/
12332
12333 TUN/TAP driver
12334 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
12335 W:      http://vtun.sourceforge.net/tun
12336 S:      Maintained
12337 F:      Documentation/networking/tuntap.txt
12338 F:      arch/um/os-Linux/drivers/
12339
12340 TURBOCHANNEL SUBSYSTEM
12341 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12342 M:      Ralf Baechle <ralf@linux-mips.org>
12343 L:      linux-mips@linux-mips.org
12344 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
12345 S:      Maintained
12346 F:      drivers/tc/
12347 F:      include/linux/tc.h
12348
12349 UBI FILE SYSTEM (UBIFS)
12350 M:      Richard Weinberger <richard@nod.at>
12351 M:      Artem Bityutskiy <dedekind1@gmail.com>
12352 M:      Adrian Hunter <adrian.hunter@intel.com>
12353 L:      linux-mtd@lists.infradead.org
12354 T:      git git://git.infradead.org/ubifs-2.6.git
12355 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
12356 S:      Supported
12357 F:      Documentation/filesystems/ubifs.txt
12358 F:      fs/ubifs/
12359
12360 UCLINUX (M68KNOMMU AND COLDFIRE)
12361 M:      Greg Ungerer <gerg@linux-m68k.org>
12362 W:      http://www.linux-m68k.org/
12363 W:      http://www.uclinux.org/
12364 L:      linux-m68k@lists.linux-m68k.org
12365 L:      uclinux-dev@uclinux.org  (subscribers-only)
12366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
12367 S:      Maintained
12368 F:      arch/m68k/coldfire/
12369 F:      arch/m68k/68*/
12370 F:      arch/m68k/*/*_no.*
12371 F:      arch/m68k/include/asm/*_no.*
12372
12373 UDF FILESYSTEM
12374 M:      Jan Kara <jack@suse.com>
12375 S:      Maintained
12376 F:      Documentation/filesystems/udf.txt
12377 F:      fs/udf/
12378
12379 UFS FILESYSTEM
12380 M:      Evgeniy Dushistov <dushistov@mail.ru>
12381 S:      Maintained
12382 F:      Documentation/filesystems/ufs.txt
12383 F:      fs/ufs/
12384
12385 UHID USERSPACE HID IO DRIVER:
12386 M:      David Herrmann <dh.herrmann@googlemail.com>
12387 L:      linux-input@vger.kernel.org
12388 S:      Maintained
12389 F:      drivers/hid/uhid.c
12390 F:      include/uapi/linux/uhid.h
12391
12392 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
12393 L:      linux-usb@vger.kernel.org
12394 S:      Orphan
12395 F:      drivers/uwb/
12396 F:      include/linux/uwb.h
12397 F:      include/linux/uwb/
12398
12399 UNICORE32 ARCHITECTURE:
12400 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
12401 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12402 S:      Maintained
12403 T:      git git://github.com/gxt/linux.git
12404 F:      arch/unicore32/
12405
12406 UNIFDEF
12407 M:      Tony Finch <dot@dotat.at>
12408 W:      http://dotat.at/prog/unifdef
12409 S:      Maintained
12410 F:      scripts/unifdef.c
12411
12412 UNIFORM CDROM DRIVER
12413 M:      Jens Axboe <axboe@kernel.dk>
12414 W:      http://www.kernel.dk
12415 S:      Maintained
12416 F:      Documentation/cdrom/
12417 F:      drivers/cdrom/cdrom.c
12418 F:      include/linux/cdrom.h
12419 F:      include/uapi/linux/cdrom.h
12420
12421 UNISYS S-PAR DRIVERS
12422 M:      David Kershner <david.kershner@unisys.com>
12423 L:      sparmaintainer@unisys.com (Unisys internal)
12424 S:      Supported
12425 F:      drivers/staging/unisys/
12426
12427 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
12428 M:      Vinayak Holikatti <vinholikatti@gmail.com>
12429 L:      linux-scsi@vger.kernel.org
12430 S:      Supported
12431 F:      Documentation/scsi/ufs.txt
12432 F:      drivers/scsi/ufs/
12433
12434 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
12435 M:      Joao Pinto <Joao.Pinto@synopsys.com>
12436 L:      linux-scsi@vger.kernel.org
12437 S:      Supported
12438 F:      drivers/scsi/ufs/*dwc*
12439
12440 UNSORTED BLOCK IMAGES (UBI)
12441 M:      Artem Bityutskiy <dedekind1@gmail.com>
12442 M:      Richard Weinberger <richard@nod.at>
12443 W:      http://www.linux-mtd.infradead.org/
12444 L:      linux-mtd@lists.infradead.org
12445 T:      git git://git.infradead.org/ubifs-2.6.git
12446 S:      Supported
12447 F:      drivers/mtd/ubi/
12448 F:      include/linux/mtd/ubi.h
12449 F:      include/uapi/mtd/ubi-user.h
12450
12451 USB ACM DRIVER
12452 M:      Oliver Neukum <oneukum@suse.com>
12453 L:      linux-usb@vger.kernel.org
12454 S:      Maintained
12455 F:      Documentation/usb/acm.txt
12456 F:      drivers/usb/class/cdc-acm.*
12457
12458 USB AR5523 WIRELESS DRIVER
12459 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
12460 L:      linux-wireless@vger.kernel.org
12461 S:      Maintained
12462 F:      drivers/net/wireless/ath/ar5523/
12463
12464 USB ATTACHED SCSI
12465 M:      Oliver Neukum <oneukum@suse.com>
12466 L:      linux-usb@vger.kernel.org
12467 L:      linux-scsi@vger.kernel.org
12468 S:      Maintained
12469 F:      drivers/usb/storage/uas.c
12470
12471 USB CDC ETHERNET DRIVER
12472 M:      Oliver Neukum <oliver@neukum.org>
12473 L:      linux-usb@vger.kernel.org
12474 S:      Maintained
12475 F:      drivers/net/usb/cdc_*.c
12476 F:      include/uapi/linux/usb/cdc.h
12477
12478 USB CHAOSKEY DRIVER
12479 M:      Keith Packard <keithp@keithp.com>
12480 L:      linux-usb@vger.kernel.org
12481 S:      Maintained
12482 F:      drivers/usb/misc/chaoskey.c
12483
12484 USB CYPRESS C67X00 DRIVER
12485 M:      Peter Korsgaard <jacmet@sunsite.dk>
12486 L:      linux-usb@vger.kernel.org
12487 S:      Maintained
12488 F:      drivers/usb/c67x00/
12489
12490 USB DAVICOM DM9601 DRIVER
12491 M:      Peter Korsgaard <jacmet@sunsite.dk>
12492 L:      netdev@vger.kernel.org
12493 W:      http://www.linux-usb.org/usbnet
12494 S:      Maintained
12495 F:      drivers/net/usb/dm9601.c
12496
12497 USB DIAMOND RIO500 DRIVER
12498 M:      Cesar Miquel <miquel@df.uba.ar>
12499 L:      rio500-users@lists.sourceforge.net
12500 W:      http://rio500.sourceforge.net
12501 S:      Maintained
12502 F:      drivers/usb/misc/rio500*
12503
12504 USB EHCI DRIVER
12505 M:      Alan Stern <stern@rowland.harvard.edu>
12506 L:      linux-usb@vger.kernel.org
12507 S:      Maintained
12508 F:      Documentation/usb/ehci.txt
12509 F:      drivers/usb/host/ehci*
12510
12511 USB GADGET/PERIPHERAL SUBSYSTEM
12512 M:      Felipe Balbi <balbi@kernel.org>
12513 L:      linux-usb@vger.kernel.org
12514 W:      http://www.linux-usb.org/gadget
12515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
12516 S:      Maintained
12517 F:      drivers/usb/gadget/
12518 F:      include/linux/usb/gadget*
12519
12520 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
12521 M:      Jiri Kosina <jikos@kernel.org>
12522 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
12523 L:      linux-usb@vger.kernel.org
12524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
12525 S:      Maintained
12526 F:      Documentation/hid/hiddev.txt
12527 F:      drivers/hid/usbhid/
12528
12529 USB ISP116X DRIVER
12530 M:      Olav Kongas <ok@artecdesign.ee>
12531 L:      linux-usb@vger.kernel.org
12532 S:      Maintained
12533 F:      drivers/usb/host/isp116x*
12534 F:      include/linux/usb/isp116x.h
12535
12536 USB LAN78XX ETHERNET DRIVER
12537 M:      Woojung Huh <woojung.huh@microchip.com>
12538 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12539 L:      netdev@vger.kernel.org
12540 S:      Maintained
12541 F:      drivers/net/usb/lan78xx.*
12542
12543 USB MASS STORAGE DRIVER
12544 M:      Alan Stern <stern@rowland.harvard.edu>
12545 L:      linux-usb@vger.kernel.org
12546 L:      usb-storage@lists.one-eyed-alien.net
12547 S:      Maintained
12548 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
12549 F:      drivers/usb/storage/
12550
12551 USB MIDI DRIVER
12552 M:      Clemens Ladisch <clemens@ladisch.de>
12553 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12554 T:      git git://git.alsa-project.org/alsa-kernel.git
12555 S:      Maintained
12556 F:      sound/usb/midi.*
12557
12558 USB NETWORKING DRIVERS
12559 L:      linux-usb@vger.kernel.org
12560 S:      Odd Fixes
12561 F:      drivers/net/usb/
12562
12563 USB OHCI DRIVER
12564 M:      Alan Stern <stern@rowland.harvard.edu>
12565 L:      linux-usb@vger.kernel.org
12566 S:      Maintained
12567 F:      Documentation/usb/ohci.txt
12568 F:      drivers/usb/host/ohci*
12569
12570 USB OTG FSM (Finite State Machine)
12571 M:      Peter Chen <Peter.Chen@nxp.com>
12572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
12573 L:      linux-usb@vger.kernel.org
12574 S:      Maintained
12575 F:      drivers/usb/common/usb-otg-fsm.c
12576
12577 USB OVER IP DRIVER
12578 M:      Valentina Manea <valentina.manea.m@gmail.com>
12579 M:      Shuah Khan <shuahkh@osg.samsung.com>
12580 M:      Shuah Khan <shuah@kernel.org>
12581 L:      linux-usb@vger.kernel.org
12582 S:      Maintained
12583 F:      Documentation/usb/usbip_protocol.txt
12584 F:      drivers/usb/usbip/
12585 F:      tools/usb/usbip/
12586
12587 USB PEGASUS DRIVER
12588 M:      Petko Manolov <petkan@nucleusys.com>
12589 L:      linux-usb@vger.kernel.org
12590 L:      netdev@vger.kernel.org
12591 T:      git git://github.com/petkan/pegasus.git
12592 W:      https://github.com/petkan/pegasus
12593 S:      Maintained
12594 F:      drivers/net/usb/pegasus.*
12595
12596 USB PHY LAYER
12597 M:      Felipe Balbi <balbi@kernel.org>
12598 L:      linux-usb@vger.kernel.org
12599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
12600 S:      Maintained
12601 F:      drivers/usb/phy/
12602
12603 USB PRINTER DRIVER (usblp)
12604 M:      Pete Zaitcev <zaitcev@redhat.com>
12605 L:      linux-usb@vger.kernel.org
12606 S:      Supported
12607 F:      drivers/usb/class/usblp.c
12608
12609 USB QMI WWAN NETWORK DRIVER
12610 M:      Bjørn Mork <bjorn@mork.no>
12611 L:      netdev@vger.kernel.org
12612 S:      Maintained
12613 F:      Documentation/ABI/testing/sysfs-class-net-qmi
12614 F:      drivers/net/usb/qmi_wwan.c
12615
12616 USB RTL8150 DRIVER
12617 M:      Petko Manolov <petkan@nucleusys.com>
12618 L:      linux-usb@vger.kernel.org
12619 L:      netdev@vger.kernel.org
12620 T:      git git://github.com/petkan/rtl8150.git
12621 W:      https://github.com/petkan/rtl8150
12622 S:      Maintained
12623 F:      drivers/net/usb/rtl8150.c
12624
12625 USB SERIAL SUBSYSTEM
12626 M:      Johan Hovold <johan@kernel.org>
12627 L:      linux-usb@vger.kernel.org
12628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
12629 S:      Maintained
12630 F:      Documentation/usb/usb-serial.txt
12631 F:      drivers/usb/serial/
12632 F:      include/linux/usb/serial.h
12633
12634 USB SMSC75XX ETHERNET DRIVER
12635 M:      Steve Glendinning <steve.glendinning@shawell.net>
12636 L:      netdev@vger.kernel.org
12637 S:      Maintained
12638 F:      drivers/net/usb/smsc75xx.*
12639
12640 USB SMSC95XX ETHERNET DRIVER
12641 M:      Steve Glendinning <steve.glendinning@shawell.net>
12642 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12643 L:      netdev@vger.kernel.org
12644 S:      Maintained
12645 F:      drivers/net/usb/smsc95xx.*
12646
12647 USB SUBSYSTEM
12648 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12649 L:      linux-usb@vger.kernel.org
12650 W:      http://www.linux-usb.org
12651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
12652 S:      Supported
12653 F:      Documentation/devicetree/bindings/usb/
12654 F:      Documentation/usb/
12655 F:      drivers/usb/
12656 F:      include/linux/usb.h
12657 F:      include/linux/usb/
12658
12659 USB UHCI DRIVER
12660 M:      Alan Stern <stern@rowland.harvard.edu>
12661 L:      linux-usb@vger.kernel.org
12662 S:      Maintained
12663 F:      drivers/usb/host/uhci*
12664
12665 USB "USBNET" DRIVER FRAMEWORK
12666 M:      Oliver Neukum <oneukum@suse.com>
12667 L:      netdev@vger.kernel.org
12668 W:      http://www.linux-usb.org/usbnet
12669 S:      Maintained
12670 F:      drivers/net/usb/usbnet.c
12671 F:      include/linux/usb/usbnet.h
12672
12673 USB VIDEO CLASS
12674 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12675 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
12676 L:      linux-media@vger.kernel.org
12677 T:      git git://linuxtv.org/media_tree.git
12678 W:      http://www.ideasonboard.org/uvc/
12679 S:      Maintained
12680 F:      drivers/media/usb/uvc/
12681 F:      include/uapi/linux/uvcvideo.h
12682
12683 USB VISION DRIVER
12684 M:      Hans Verkuil <hverkuil@xs4all.nl>
12685 L:      linux-media@vger.kernel.org
12686 T:      git git://linuxtv.org/media_tree.git
12687 W:      https://linuxtv.org
12688 S:      Odd Fixes
12689 F:      drivers/media/usb/usbvision/
12690
12691 USB WEBCAM GADGET
12692 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12693 L:      linux-usb@vger.kernel.org
12694 S:      Maintained
12695 F:      drivers/usb/gadget/function/*uvc*
12696 F:      drivers/usb/gadget/legacy/webcam.c
12697
12698 USB WIRELESS RNDIS DRIVER (rndis_wlan)
12699 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
12700 L:      linux-wireless@vger.kernel.org
12701 S:      Maintained
12702 F:      drivers/net/wireless/rndis_wlan.c
12703
12704 USB XHCI DRIVER
12705 M:      Mathias Nyman <mathias.nyman@intel.com>
12706 L:      linux-usb@vger.kernel.org
12707 S:      Supported
12708 F:      drivers/usb/host/xhci*
12709 F:      drivers/usb/host/pci-quirks*
12710
12711 USB ZD1201 DRIVER
12712 L:      linux-wireless@vger.kernel.org
12713 W:      http://linux-lc100020.sourceforge.net
12714 S:      Orphan
12715 F:      drivers/net/wireless/zydas/zd1201.*
12716
12717 USB ZR364XX DRIVER
12718 M:      Antoine Jacquet <royale@zerezo.com>
12719 L:      linux-usb@vger.kernel.org
12720 L:      linux-media@vger.kernel.org
12721 T:      git git://linuxtv.org/media_tree.git
12722 W:      http://royale.zerezo.com/zr364xx/
12723 S:      Maintained
12724 F:      Documentation/media/v4l-drivers/zr364xx*
12725 F:      drivers/media/usb/zr364xx/
12726
12727 ULPI BUS
12728 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
12729 L:      linux-usb@vger.kernel.org
12730 S:      Maintained
12731 F:      drivers/usb/common/ulpi.c
12732 F:      include/linux/ulpi/
12733
12734 USER-MODE LINUX (UML)
12735 M:      Jeff Dike <jdike@addtoit.com>
12736 M:      Richard Weinberger <richard@nod.at>
12737 L:      user-mode-linux-devel@lists.sourceforge.net
12738 L:      user-mode-linux-user@lists.sourceforge.net
12739 W:      http://user-mode-linux.sourceforge.net
12740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
12741 S:      Maintained
12742 F:      Documentation/virtual/uml/
12743 F:      arch/um/
12744 F:      arch/x86/um/
12745 F:      fs/hostfs/
12746 F:      fs/hppfs/
12747
12748 USERSPACE I/O (UIO)
12749 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12750 S:      Maintained
12751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
12752 F:      Documentation/DocBook/uio-howto.tmpl
12753 F:      drivers/uio/
12754 F:      include/linux/uio*.h
12755
12756 UTIL-LINUX PACKAGE
12757 M:      Karel Zak <kzak@redhat.com>
12758 L:      util-linux@vger.kernel.org
12759 W:      http://en.wikipedia.org/wiki/Util-linux
12760 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
12761 S:      Maintained
12762
12763 UVESAFB DRIVER
12764 M:      Michal Januszewski <spock@gentoo.org>
12765 L:      linux-fbdev@vger.kernel.org
12766 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
12767 S:      Maintained
12768 F:      Documentation/fb/uvesafb.txt
12769 F:      drivers/video/fbdev/uvesafb.*
12770
12771 VF610 NAND DRIVER
12772 M:      Stefan Agner <stefan@agner.ch>
12773 L:      linux-mtd@lists.infradead.org
12774 S:      Supported
12775 F:      drivers/mtd/nand/vf610_nfc.c
12776
12777 VFAT/FAT/MSDOS FILESYSTEM
12778 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
12779 S:      Maintained
12780 F:      Documentation/filesystems/vfat.txt
12781 F:      fs/fat/
12782
12783 VFIO DRIVER
12784 M:      Alex Williamson <alex.williamson@redhat.com>
12785 L:      kvm@vger.kernel.org
12786 T:      git git://github.com/awilliam/linux-vfio.git
12787 S:      Maintained
12788 F:      Documentation/vfio.txt
12789 F:      drivers/vfio/
12790 F:      include/linux/vfio.h
12791 F:      include/uapi/linux/vfio.h
12792
12793 VFIO PLATFORM DRIVER
12794 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
12795 L:      kvm@vger.kernel.org
12796 S:      Maintained
12797 F:      drivers/vfio/platform/
12798
12799 VIDEOBUF2 FRAMEWORK
12800 M:      Pawel Osciak <pawel@osciak.com>
12801 M:      Marek Szyprowski <m.szyprowski@samsung.com>
12802 M:      Kyungmin Park <kyungmin.park@samsung.com>
12803 L:      linux-media@vger.kernel.org
12804 S:      Maintained
12805 F:      drivers/media/v4l2-core/videobuf2-*
12806 F:      include/media/videobuf2-*
12807
12808 VIRTIO AND VHOST VSOCK DRIVER
12809 M:      Stefan Hajnoczi <stefanha@redhat.com>
12810 L:      kvm@vger.kernel.org
12811 L:      virtualization@lists.linux-foundation.org
12812 L:      netdev@vger.kernel.org
12813 S:      Maintained
12814 F:      include/linux/virtio_vsock.h
12815 F:      include/uapi/linux/virtio_vsock.h
12816 F:      net/vmw_vsock/virtio_transport_common.c
12817 F:      net/vmw_vsock/virtio_transport.c
12818 F:      drivers/vhost/vsock.c
12819 F:      drivers/vhost/vsock.h
12820
12821 VIRTUAL SERIO DEVICE DRIVER
12822 M:      Stephen Chandler Paul <thatslyude@gmail.com>
12823 S:      Maintained
12824 F:      drivers/input/serio/userio.c
12825 F:      include/uapi/linux/userio.h
12826
12827 VIRTIO CONSOLE DRIVER
12828 M:      Amit Shah <amit.shah@redhat.com>
12829 L:      virtualization@lists.linux-foundation.org
12830 S:      Maintained
12831 F:      drivers/char/virtio_console.c
12832 F:      include/linux/virtio_console.h
12833 F:      include/uapi/linux/virtio_console.h
12834
12835 VIRTIO CORE, NET AND BLOCK DRIVERS
12836 M:      "Michael S. Tsirkin" <mst@redhat.com>
12837 M:      Jason Wang <jasowang@redhat.com>
12838 L:      virtualization@lists.linux-foundation.org
12839 S:      Maintained
12840 F:      Documentation/devicetree/bindings/virtio/
12841 F:      drivers/virtio/
12842 F:      tools/virtio/
12843 F:      drivers/net/virtio_net.c
12844 F:      drivers/block/virtio_blk.c
12845 F:      include/linux/virtio_*.h
12846 F:      include/uapi/linux/virtio_*.h
12847
12848 VIRTIO DRIVERS FOR S390
12849 M:      Christian Borntraeger <borntraeger@de.ibm.com>
12850 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
12851 L:      linux-s390@vger.kernel.org
12852 L:      virtualization@lists.linux-foundation.org
12853 L:      kvm@vger.kernel.org
12854 S:      Supported
12855 F:      drivers/s390/virtio/
12856
12857 VIRTIO GPU DRIVER
12858 M:      David Airlie <airlied@linux.ie>
12859 M:      Gerd Hoffmann <kraxel@redhat.com>
12860 L:      dri-devel@lists.freedesktop.org
12861 L:      virtualization@lists.linux-foundation.org
12862 S:      Maintained
12863 F:      drivers/gpu/drm/virtio/
12864 F:      include/uapi/linux/virtio_gpu.h
12865
12866 VIRTIO HOST (VHOST)
12867 M:      "Michael S. Tsirkin" <mst@redhat.com>
12868 M:      Jason Wang <jasowang@redhat.com>
12869 L:      kvm@vger.kernel.org
12870 L:      virtualization@lists.linux-foundation.org
12871 L:      netdev@vger.kernel.org
12872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12873 S:      Maintained
12874 F:      drivers/vhost/
12875 F:      include/uapi/linux/vhost.h
12876
12877 VIRTIO INPUT DRIVER
12878 M:      Gerd Hoffmann <kraxel@redhat.com>
12879 S:      Maintained
12880 F:      drivers/virtio/virtio_input.c
12881 F:      include/uapi/linux/virtio_input.h
12882
12883 VIA RHINE NETWORK DRIVER
12884 S:      Orphan
12885 F:      drivers/net/ethernet/via/via-rhine.c
12886
12887 VIA SD/MMC CARD CONTROLLER DRIVER
12888 M:      Bruce Chang <brucechang@via.com.tw>
12889 M:      Harald Welte <HaraldWelte@viatech.com>
12890 S:      Maintained
12891 F:      drivers/mmc/host/via-sdmmc.c
12892
12893 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12894 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12895 L:      linux-fbdev@vger.kernel.org
12896 S:      Maintained
12897 F:      include/linux/via-core.h
12898 F:      include/linux/via-gpio.h
12899 F:      include/linux/via_i2c.h
12900 F:      drivers/video/fbdev/via/
12901
12902 VIA VELOCITY NETWORK DRIVER
12903 M:      Francois Romieu <romieu@fr.zoreil.com>
12904 L:      netdev@vger.kernel.org
12905 S:      Maintained
12906 F:      drivers/net/ethernet/via/via-velocity.*
12907
12908 VIRT LIB
12909 M:      Alex Williamson <alex.williamson@redhat.com>
12910 M:      Paolo Bonzini <pbonzini@redhat.com>
12911 L:      kvm@vger.kernel.org
12912 S:      Supported
12913 F:      virt/lib/
12914
12915 VIVID VIRTUAL VIDEO DRIVER
12916 M:      Hans Verkuil <hverkuil@xs4all.nl>
12917 L:      linux-media@vger.kernel.org
12918 T:      git git://linuxtv.org/media_tree.git
12919 W:      https://linuxtv.org
12920 S:      Maintained
12921 F:      drivers/media/platform/vivid/*
12922
12923 VLAN (802.1Q)
12924 M:      Patrick McHardy <kaber@trash.net>
12925 L:      netdev@vger.kernel.org
12926 S:      Maintained
12927 F:      drivers/net/macvlan.c
12928 F:      include/linux/if_*vlan.h
12929 F:      net/8021q/
12930
12931 VLYNQ BUS
12932 M:      Florian Fainelli <f.fainelli@gmail.com>
12933 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12934 S:      Maintained
12935 F:      drivers/vlynq/vlynq.c
12936 F:      include/linux/vlynq.h
12937
12938 VME SUBSYSTEM
12939 M:      Martyn Welch <martyn@welchs.me.uk>
12940 M:      Manohar Vanga <manohar.vanga@gmail.com>
12941 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12942 L:      devel@driverdev.osuosl.org
12943 S:      Maintained
12944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12945 F:      Documentation/driver-api/vme.rst
12946 F:      drivers/staging/vme/
12947 F:      drivers/vme/
12948 F:      include/linux/vme*
12949
12950 VMWARE HYPERVISOR INTERFACE
12951 M:      Alok Kataria <akataria@vmware.com>
12952 L:      virtualization@lists.linux-foundation.org
12953 S:      Supported
12954 F:      arch/x86/kernel/cpu/vmware.c
12955
12956 VMWARE BALLOON DRIVER
12957 M:      Xavier Deguillard <xdeguillard@vmware.com>
12958 M:      Philip Moltmann <moltmann@vmware.com>
12959 M:      "VMware, Inc." <pv-drivers@vmware.com>
12960 L:      linux-kernel@vger.kernel.org
12961 S:      Maintained
12962 F:      drivers/misc/vmw_balloon.c
12963
12964 VMWARE VMMOUSE SUBDRIVER
12965 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12966 M:      "VMware, Inc." <pv-drivers@vmware.com>
12967 L:      linux-input@vger.kernel.org
12968 S:      Maintained
12969 F:      drivers/input/mouse/vmmouse.c
12970 F:      drivers/input/mouse/vmmouse.h
12971
12972 VMWARE VMXNET3 ETHERNET DRIVER
12973 M:      Shrikrishna Khare <skhare@vmware.com>
12974 M:      "VMware, Inc." <pv-drivers@vmware.com>
12975 L:      netdev@vger.kernel.org
12976 S:      Maintained
12977 F:      drivers/net/vmxnet3/
12978
12979 VMware PVSCSI driver
12980 M:      Jim Gill <jgill@vmware.com>
12981 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12982 L:      linux-scsi@vger.kernel.org
12983 S:      Maintained
12984 F:      drivers/scsi/vmw_pvscsi.c
12985 F:      drivers/scsi/vmw_pvscsi.h
12986
12987 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12988 M:      Liam Girdwood <lgirdwood@gmail.com>
12989 M:      Mark Brown <broonie@kernel.org>
12990 L:      linux-kernel@vger.kernel.org
12991 W:      http://www.slimlogic.co.uk/?p=48
12992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12993 S:      Supported
12994 F:      Documentation/devicetree/bindings/regulator/
12995 F:      drivers/regulator/
12996 F:      include/dt-bindings/regulator/
12997 F:      include/linux/regulator/
12998
12999 VRF
13000 M:      David Ahern <dsa@cumulusnetworks.com>
13001 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
13002 L:      netdev@vger.kernel.org
13003 S:      Maintained
13004 F:      drivers/net/vrf.c
13005 F:      Documentation/networking/vrf.txt
13006
13007 VT1211 HARDWARE MONITOR DRIVER
13008 M:      Juerg Haefliger <juergh@gmail.com>
13009 L:      linux-hwmon@vger.kernel.org
13010 S:      Maintained
13011 F:      Documentation/hwmon/vt1211
13012 F:      drivers/hwmon/vt1211.c
13013
13014 VT8231 HARDWARE MONITOR DRIVER
13015 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
13016 L:      linux-hwmon@vger.kernel.org
13017 S:      Maintained
13018 F:      drivers/hwmon/vt8231.c
13019
13020 VUB300 USB to SDIO/SD/MMC bridge chip
13021 M:      Tony Olech <tony.olech@elandigitalsystems.com>
13022 L:      linux-mmc@vger.kernel.org
13023 L:      linux-usb@vger.kernel.org
13024 S:      Supported
13025 F:      drivers/mmc/host/vub300.c
13026
13027 W1 DALLAS'S 1-WIRE BUS
13028 M:      Evgeniy Polyakov <zbr@ioremap.net>
13029 S:      Maintained
13030 F:      Documentation/w1/
13031 F:      drivers/w1/
13032
13033 W83791D HARDWARE MONITORING DRIVER
13034 M:      Marc Hulsman <m.hulsman@tudelft.nl>
13035 L:      linux-hwmon@vger.kernel.org
13036 S:      Maintained
13037 F:      Documentation/hwmon/w83791d
13038 F:      drivers/hwmon/w83791d.c
13039
13040 W83793 HARDWARE MONITORING DRIVER
13041 M:      Rudolf Marek <r.marek@assembler.cz>
13042 L:      linux-hwmon@vger.kernel.org
13043 S:      Maintained
13044 F:      Documentation/hwmon/w83793
13045 F:      drivers/hwmon/w83793.c
13046
13047 W83795 HARDWARE MONITORING DRIVER
13048 M:      Jean Delvare <jdelvare@suse.com>
13049 L:      linux-hwmon@vger.kernel.org
13050 S:      Maintained
13051 F:      drivers/hwmon/w83795.c
13052
13053 W83L51xD SD/MMC CARD INTERFACE DRIVER
13054 M:      Pierre Ossman <pierre@ossman.eu>
13055 S:      Maintained
13056 F:      drivers/mmc/host/wbsd.*
13057
13058 WACOM PROTOCOL 4 SERIAL TABLETS
13059 M:      Julian Squires <julian@cipht.net>
13060 M:      Hans de Goede <hdegoede@redhat.com>
13061 L:      linux-input@vger.kernel.org
13062 S:      Maintained
13063 F:      drivers/input/tablet/wacom_serial4.c
13064
13065 WATCHDOG DEVICE DRIVERS
13066 M:      Wim Van Sebroeck <wim@iguana.be>
13067 R:      Guenter Roeck <linux@roeck-us.net>
13068 L:      linux-watchdog@vger.kernel.org
13069 W:      http://www.linux-watchdog.org/
13070 T:      git git://www.linux-watchdog.org/linux-watchdog.git
13071 S:      Maintained
13072 F:      Documentation/devicetree/bindings/watchdog/
13073 F:      Documentation/watchdog/
13074 F:      drivers/watchdog/
13075 F:      include/linux/watchdog.h
13076 F:      include/uapi/linux/watchdog.h
13077
13078 WIIMOTE HID DRIVER
13079 M:      David Herrmann <dh.herrmann@googlemail.com>
13080 L:      linux-input@vger.kernel.org
13081 S:      Maintained
13082 F:      drivers/hid/hid-wiimote*
13083
13084 WINBOND CIR DRIVER
13085 M:      David Härdeman <david@hardeman.nu>
13086 S:      Maintained
13087 F:      drivers/media/rc/winbond-cir.c
13088
13089 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
13090 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
13091 L:      linux-watchdog@vger.kernel.org
13092 S:      Maintained
13093 F:      drivers/watchdog/ebc-c384_wdt.c
13094
13095 WINSYSTEMS WS16C48 GPIO DRIVER
13096 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
13097 L:      linux-gpio@vger.kernel.org
13098 S:      Maintained
13099 F:      drivers/gpio/gpio-ws16c48.c
13100
13101 WIMAX STACK
13102 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
13103 M:      linux-wimax@intel.com
13104 L:      wimax@linuxwimax.org (subscribers-only)
13105 S:      Supported
13106 W:      http://linuxwimax.org
13107 F:      Documentation/wimax/README.wimax
13108 F:      include/linux/wimax/debug.h
13109 F:      include/net/wimax.h
13110 F:      include/uapi/linux/wimax.h
13111 F:      net/wimax/
13112
13113 WISTRON LAPTOP BUTTON DRIVER
13114 M:      Miloslav Trmac <mitr@volny.cz>
13115 S:      Maintained
13116 F:      drivers/input/misc/wistron_btns.c
13117
13118 WL3501 WIRELESS PCMCIA CARD DRIVER
13119 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
13120 L:      linux-wireless@vger.kernel.org
13121 W:      http://oops.ghostprotocols.net:81/blog
13122 S:      Maintained
13123 F:      drivers/net/wireless/wl3501*
13124
13125 WOLFSON MICROELECTRONICS DRIVERS
13126 L:      patches@opensource.wolfsonmicro.com
13127 T:      git https://github.com/CirrusLogic/linux-drivers.git
13128 W:      https://github.com/CirrusLogic/linux-drivers/wiki
13129 S:      Supported
13130 F:      Documentation/hwmon/wm83??
13131 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
13132 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
13133 F:      Documentation/devicetree/bindings/mfd/arizona.txt
13134 F:      arch/arm/mach-s3c64xx/mach-crag6410*
13135 F:      drivers/clk/clk-wm83*.c
13136 F:      drivers/extcon/extcon-arizona.c
13137 F:      drivers/leds/leds-wm83*.c
13138 F:      drivers/gpio/gpio-*wm*.c
13139 F:      drivers/gpio/gpio-arizona.c
13140 F:      drivers/hwmon/wm83??-hwmon.c
13141 F:      drivers/input/misc/wm831x-on.c
13142 F:      drivers/input/touchscreen/wm831x-ts.c
13143 F:      drivers/input/touchscreen/wm97*.c
13144 F:      drivers/mfd/arizona*
13145 F:      drivers/mfd/wm*.c
13146 F:      drivers/mfd/cs47l24*
13147 F:      drivers/power/supply/wm83*.c
13148 F:      drivers/rtc/rtc-wm83*.c
13149 F:      drivers/regulator/wm8*.c
13150 F:      drivers/video/backlight/wm83*_bl.c
13151 F:      drivers/watchdog/wm83*_wdt.c
13152 F:      include/linux/mfd/arizona/
13153 F:      include/linux/mfd/wm831x/
13154 F:      include/linux/mfd/wm8350/
13155 F:      include/linux/mfd/wm8400*
13156 F:      include/linux/wm97xx.h
13157 F:      include/sound/wm????.h
13158 F:      sound/soc/codecs/arizona.?
13159 F:      sound/soc/codecs/wm*
13160 F:      sound/soc/codecs/cs47l24*
13161
13162 WORKQUEUE
13163 M:      Tejun Heo <tj@kernel.org>
13164 R:      Lai Jiangshan <jiangshanlai@gmail.com>
13165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
13166 S:      Maintained
13167 F:      include/linux/workqueue.h
13168 F:      kernel/workqueue.c
13169 F:      Documentation/core-api/workqueue.rst
13170
13171 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
13172 M:      Chen-Yu Tsai <wens@csie.org>
13173 L:      linux-kernel@vger.kernel.org
13174 S:      Maintained
13175 N:      axp[128]
13176
13177 X.25 NETWORK LAYER
13178 M:      Andrew Hendry <andrew.hendry@gmail.com>
13179 L:      linux-x25@vger.kernel.org
13180 S:      Odd Fixes
13181 F:      Documentation/networking/x25*
13182 F:      include/net/x25*
13183 F:      net/x25/
13184
13185 X86 ARCHITECTURE (32-BIT AND 64-BIT)
13186 M:      Thomas Gleixner <tglx@linutronix.de>
13187 M:      Ingo Molnar <mingo@redhat.com>
13188 M:      "H. Peter Anvin" <hpa@zytor.com>
13189 M:      x86@kernel.org
13190 L:      linux-kernel@vger.kernel.org
13191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
13192 S:      Maintained
13193 F:      Documentation/x86/
13194 F:      arch/x86/
13195
13196 X86 PLATFORM DRIVERS
13197 M:      Darren Hart <dvhart@infradead.org>
13198 L:      platform-driver-x86@vger.kernel.org
13199 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
13200 S:      Maintained
13201 F:      drivers/platform/x86/
13202 F:      drivers/platform/olpc/
13203
13204 X86 MCE INFRASTRUCTURE
13205 M:      Tony Luck <tony.luck@intel.com>
13206 M:      Borislav Petkov <bp@alien8.de>
13207 L:      linux-edac@vger.kernel.org
13208 S:      Maintained
13209 F:      arch/x86/kernel/cpu/mcheck/*
13210
13211 X86 MICROCODE UPDATE SUPPORT
13212 M:      Borislav Petkov <bp@alien8.de>
13213 S:      Maintained
13214 F:      arch/x86/kernel/cpu/microcode/*
13215
13216 X86 VDSO
13217 M:      Andy Lutomirski <luto@amacapital.net>
13218 L:      linux-kernel@vger.kernel.org
13219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
13220 S:      Maintained
13221 F:      arch/x86/entry/vdso/
13222
13223 XC2028/3028 TUNER DRIVER
13224 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
13225 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13226 L:      linux-media@vger.kernel.org
13227 W:      https://linuxtv.org
13228 T:      git git://linuxtv.org/media_tree.git
13229 S:      Maintained
13230 F:      drivers/media/tuners/tuner-xc2028.*
13231
13232 XEN HYPERVISOR INTERFACE
13233 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
13234 M:      David Vrabel <david.vrabel@citrix.com>
13235 M:      Juergen Gross <jgross@suse.com>
13236 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
13238 S:      Supported
13239 F:      arch/x86/xen/
13240 F:      drivers/*/xen-*front.c
13241 F:      drivers/xen/
13242 F:      arch/x86/include/asm/xen/
13243 F:      include/xen/
13244 F:      include/uapi/xen/
13245
13246 XEN HYPERVISOR ARM
13247 M:      Stefano Stabellini <sstabellini@kernel.org>
13248 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13249 S:      Maintained
13250 F:      arch/arm/xen/
13251 F:      arch/arm/include/asm/xen/
13252
13253 XEN HYPERVISOR ARM64
13254 M:      Stefano Stabellini <sstabellini@kernel.org>
13255 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13256 S:      Maintained
13257 F:      arch/arm64/xen/
13258 F:      arch/arm64/include/asm/xen/
13259
13260 XEN NETWORK BACKEND DRIVER
13261 M:      Wei Liu <wei.liu2@citrix.com>
13262 M:      Paul Durrant <paul.durrant@citrix.com>
13263 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13264 L:      netdev@vger.kernel.org
13265 S:      Supported
13266 F:      drivers/net/xen-netback/*
13267
13268 XEN PCI SUBSYSTEM
13269 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13270 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13271 S:      Supported
13272 F:      arch/x86/pci/*xen*
13273 F:      drivers/pci/*xen*
13274
13275 XEN BLOCK SUBSYSTEM
13276 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13277 M:      Roger Pau Monné <roger.pau@citrix.com>
13278 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13279 S:      Supported
13280 F:      drivers/block/xen-blkback/*
13281 F:      drivers/block/xen*
13282
13283 XEN PVSCSI DRIVERS
13284 M:      Juergen Gross <jgross@suse.com>
13285 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13286 L:      linux-scsi@vger.kernel.org
13287 S:      Supported
13288 F:      drivers/scsi/xen-scsifront.c
13289 F:      drivers/xen/xen-scsiback.c
13290 F:      include/xen/interface/io/vscsiif.h
13291
13292 XEN SWIOTLB SUBSYSTEM
13293 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
13294 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
13295 S:      Supported
13296 F:      arch/x86/xen/*swiotlb*
13297 F:      drivers/xen/*swiotlb*
13298
13299 XFS FILESYSTEM
13300 M:      Dave Chinner <david@fromorbit.com>
13301 M:      linux-xfs@vger.kernel.org
13302 L:      linux-xfs@vger.kernel.org
13303 W:      http://xfs.org/
13304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
13305 S:      Supported
13306 F:      Documentation/filesystems/xfs.txt
13307 F:      fs/xfs/
13308
13309 XILINX AXI ETHERNET DRIVER
13310 M:      Anirudha Sarangi <anirudh@xilinx.com>
13311 M:      John Linn <John.Linn@xilinx.com>
13312 S:      Maintained
13313 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
13314
13315 XILINX UARTLITE SERIAL DRIVER
13316 M:      Peter Korsgaard <jacmet@sunsite.dk>
13317 L:      linux-serial@vger.kernel.org
13318 S:      Maintained
13319 F:      drivers/tty/serial/uartlite.c
13320
13321 XILINX VIDEO IP CORES
13322 M:      Hyun Kwon <hyun.kwon@xilinx.com>
13323 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13324 L:      linux-media@vger.kernel.org
13325 T:      git git://linuxtv.org/media_tree.git
13326 S:      Supported
13327 F:      Documentation/devicetree/bindings/media/xilinx/
13328 F:      drivers/media/platform/xilinx/
13329 F:      include/uapi/linux/xilinx-v4l2-controls.h
13330
13331 XILLYBUS DRIVER
13332 M:      Eli Billauer <eli.billauer@gmail.com>
13333 L:      linux-kernel@vger.kernel.org
13334 S:      Supported
13335 F:      drivers/char/xillybus/
13336
13337 XTENSA XTFPGA PLATFORM SUPPORT
13338 M:      Max Filippov <jcmvbkbc@gmail.com>
13339 L:      linux-xtensa@linux-xtensa.org
13340 S:      Maintained
13341 F:      drivers/spi/spi-xtensa-xtfpga.c
13342 F:      sound/soc/xtensa/xtfpga-i2s.c
13343
13344 YAM DRIVER FOR AX.25
13345 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
13346 L:      linux-hams@vger.kernel.org
13347 S:      Maintained
13348 F:      drivers/net/hamradio/yam*
13349 F:      include/linux/yam.h
13350
13351 YEALINK PHONE DRIVER
13352 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
13353 L:      usbb2k-api-dev@nongnu.org
13354 S:      Maintained
13355 F:      Documentation/input/yealink.txt
13356 F:      drivers/input/misc/yealink.*
13357
13358 Z8530 DRIVER FOR AX.25
13359 M:      Joerg Reuter <jreuter@yaina.de>
13360 W:      http://yaina.de/jreuter/
13361 W:      http://www.qsl.net/dl1bke/
13362 L:      linux-hams@vger.kernel.org
13363 S:      Maintained
13364 F:      Documentation/networking/z8530drv.txt
13365 F:      drivers/net/hamradio/*scc.c
13366 F:      drivers/net/hamradio/z8530.h
13367
13368 ZBUD COMPRESSED PAGE ALLOCATOR
13369 M:      Seth Jennings <sjenning@redhat.com>
13370 L:      linux-mm@kvack.org
13371 S:      Maintained
13372 F:      mm/zbud.c
13373 F:      include/linux/zbud.h
13374
13375 ZD1211RW WIRELESS DRIVER
13376 M:      Daniel Drake <dsd@gentoo.org>
13377 M:      Ulrich Kunitz <kune@deine-taler.de>
13378 W:      http://zd1211.ath.cx/wiki/DriverRewrite
13379 L:      linux-wireless@vger.kernel.org
13380 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
13381 S:      Maintained
13382 F:      drivers/net/wireless/zydas/zd1211rw/
13383
13384 ZPOOL COMPRESSED PAGE STORAGE API
13385 M:      Dan Streetman <ddstreet@ieee.org>
13386 L:      linux-mm@kvack.org
13387 S:      Maintained
13388 F:      mm/zpool.c
13389 F:      include/linux/zpool.h
13390
13391 ZR36067 VIDEO FOR LINUX DRIVER
13392 L:      mjpeg-users@lists.sourceforge.net
13393 L:      linux-media@vger.kernel.org
13394 W:      http://mjpeg.sourceforge.net/driver-zoran/
13395 T:      hg https://linuxtv.org/hg/v4l-dvb
13396 S:      Odd Fixes
13397 F:      drivers/media/pci/zoran/
13398
13399 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
13400 M:      Minchan Kim <minchan@kernel.org>
13401 M:      Nitin Gupta <ngupta@vflare.org>
13402 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
13403 L:      linux-kernel@vger.kernel.org
13404 S:      Maintained
13405 F:      drivers/block/zram/
13406 F:      Documentation/blockdev/zram.txt
13407
13408 ZS DECSTATION Z85C30 SERIAL DRIVER
13409 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
13410 S:      Maintained
13411 F:      drivers/tty/serial/zs.*
13412
13413 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
13414 M:      Minchan Kim <minchan@kernel.org>
13415 M:      Nitin Gupta <ngupta@vflare.org>
13416 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
13417 L:      linux-mm@kvack.org
13418 S:      Maintained
13419 F:      mm/zsmalloc.c
13420 F:      include/linux/zsmalloc.h
13421 F:      Documentation/vm/zsmalloc.txt
13422
13423 ZSWAP COMPRESSED SWAP CACHING
13424 M:      Seth Jennings <sjenning@redhat.com>
13425 L:      linux-mm@kvack.org
13426 S:      Maintained
13427 F:      mm/zswap.c
13428
13429 THE REST
13430 M:      Linus Torvalds <torvalds@linux-foundation.org>
13431 L:      linux-kernel@vger.kernel.org
13432 Q:      http://patchwork.kernel.org/project/LKML/list/
13433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
13434 S:      Buried alive in reporters
13435 F:      *
13436 F:      */