[media] cec: always check all_device_types and features
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle 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/SubmittingPatches 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/SubmittingPatches.
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         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <aar@pengutronix.de>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      https://linuxtv.org
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      include/linux/syscalls.h
226 F:      kernel/sys_ni.c
227
228 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
229 M:      Hans de Goede <hdegoede@redhat.com>
230 L:      linux-hwmon@vger.kernel.org
231 S:      Maintained
232 F:      drivers/hwmon/abituguru.c
233
234 ABIT UGURU 3 HARDWARE MONITOR DRIVER
235 M:      Alistair John Strachan <alistair@devzero.co.uk>
236 L:      linux-hwmon@vger.kernel.org
237 S:      Maintained
238 F:      drivers/hwmon/abituguru3.c
239
240 ACCES 104-DIO-48E GPIO DRIVER
241 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
242 L:      linux-gpio@vger.kernel.org
243 S:      Maintained
244 F:      drivers/gpio/gpio-104-dio-48e.c
245
246 ACCES 104-IDI-48 GPIO DRIVER
247 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
248 L:      linux-gpio@vger.kernel.org
249 S:      Maintained
250 F:      drivers/gpio/gpio-104-idi-48.c
251
252 ACCES 104-IDIO-16 GPIO DRIVER
253 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
254 L:      linux-gpio@vger.kernel.org
255 S:      Maintained
256 F:      drivers/gpio/gpio-104-idio-16.c
257
258 ACENIC DRIVER
259 M:      Jes Sorensen <jes@trained-monkey.org>
260 L:      linux-acenic@sunsite.dk
261 S:      Maintained
262 F:      drivers/net/ethernet/alteon/acenic*
263
264 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
265 M:      Peter Feuerer <peter@piie.net>
266 L:      platform-driver-x86@vger.kernel.org
267 W:      http://piie.net/?section=acerhdf
268 S:      Maintained
269 F:      drivers/platform/x86/acerhdf.c
270
271 ACER WMI LAPTOP EXTRAS
272 M:      "Lee, Chun-Yi" <jlee@suse.com>
273 L:      platform-driver-x86@vger.kernel.org
274 S:      Maintained
275 F:      drivers/platform/x86/acer-wmi.c
276
277 ACPI
278 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
279 M:      Len Brown <lenb@kernel.org>
280 L:      linux-acpi@vger.kernel.org
281 W:      https://01.org/linux-acpi
282 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
284 S:      Supported
285 F:      drivers/acpi/
286 F:      drivers/pnp/pnpacpi/
287 F:      include/linux/acpi.h
288 F:      include/acpi/
289 F:      Documentation/acpi/
290 F:      Documentation/ABI/testing/sysfs-bus-acpi
291 F:      drivers/pci/*acpi*
292 F:      drivers/pci/*/*acpi*
293 F:      drivers/pci/*/*/*acpi*
294 F:      tools/power/acpi/
295
296 ACPI COMPONENT ARCHITECTURE (ACPICA)
297 M:      Robert Moore <robert.moore@intel.com>
298 M:      Lv Zheng <lv.zheng@intel.com>
299 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
300 L:      linux-acpi@vger.kernel.org
301 L:      devel@acpica.org
302 W:      https://acpica.org/
303 W:      https://github.com/acpica/acpica/
304 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
306 S:      Supported
307 F:      drivers/acpi/acpica/
308 F:      include/acpi/
309 F:      tools/power/acpi/
310
311 ACPI FAN DRIVER
312 M:      Zhang Rui <rui.zhang@intel.com>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 S:      Supported
316 F:      drivers/acpi/fan.c
317
318 ACPI THERMAL DRIVER
319 M:      Zhang Rui <rui.zhang@intel.com>
320 L:      linux-acpi@vger.kernel.org
321 W:      https://01.org/linux-acpi
322 S:      Supported
323 F:      drivers/acpi/*thermal*
324
325 ACPI VIDEO DRIVER
326 M:      Zhang Rui <rui.zhang@intel.com>
327 L:      linux-acpi@vger.kernel.org
328 W:      https://01.org/linux-acpi
329 S:      Supported
330 F:      drivers/acpi/acpi_video.c
331
332 ACPI WMI DRIVER
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Orphan
335 F:      drivers/platform/x86/wmi.c
336
337 AD1889 ALSA SOUND DRIVER
338 M:      Thibaut Varene <T-Bone@parisc-linux.org>
339 W:      http://wiki.parisc-linux.org/AD1889
340 L:      linux-parisc@vger.kernel.org
341 S:      Maintained
342 F:      sound/pci/ad1889.*
343
344 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
345 M:      Michael Hennerich <michael.hennerich@analog.com>
346 W:      http://wiki.analog.com/AD5254
347 W:      http://ez.analog.com/community/linux-device-drivers
348 S:      Supported
349 F:      drivers/misc/ad525x_dpot.c
350
351 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
352 M:      Michael Hennerich <michael.hennerich@analog.com>
353 W:      http://wiki.analog.com/AD5398
354 W:      http://ez.analog.com/community/linux-device-drivers
355 S:      Supported
356 F:      drivers/regulator/ad5398.c
357
358 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
359 M:      Michael Hennerich <michael.hennerich@analog.com>
360 W:      http://wiki.analog.com/AD7142
361 W:      http://ez.analog.com/community/linux-device-drivers
362 S:      Supported
363 F:      drivers/input/misc/ad714x.c
364
365 AD7877 TOUCHSCREEN DRIVER
366 M:      Michael Hennerich <michael.hennerich@analog.com>
367 W:      http://wiki.analog.com/AD7877
368 W:      http://ez.analog.com/community/linux-device-drivers
369 S:      Supported
370 F:      drivers/input/touchscreen/ad7877.c
371
372 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
373 M:      Michael Hennerich <michael.hennerich@analog.com>
374 W:      http://wiki.analog.com/AD7879
375 W:      http://ez.analog.com/community/linux-device-drivers
376 S:      Supported
377 F:      drivers/input/touchscreen/ad7879.c
378
379 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
380 M:      Jiri Kosina <jikos@kernel.org>
381 S:      Maintained
382
383 ADF7242 IEEE 802.15.4 RADIO DRIVER
384 M:      Michael Hennerich <michael.hennerich@analog.com>
385 W:      https://wiki.analog.com/ADF7242
386 W:      http://ez.analog.com/community/linux-device-drivers
387 L:      linux-wpan@vger.kernel.org
388 S:      Supported
389 F:      drivers/net/ieee802154/adf7242.c
390 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
391
392 ADM1025 HARDWARE MONITOR DRIVER
393 M:      Jean Delvare <jdelvare@suse.com>
394 L:      linux-hwmon@vger.kernel.org
395 S:      Maintained
396 F:      Documentation/hwmon/adm1025
397 F:      drivers/hwmon/adm1025.c
398
399 ADM1029 HARDWARE MONITOR DRIVER
400 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
401 L:      linux-hwmon@vger.kernel.org
402 S:      Maintained
403 F:      drivers/hwmon/adm1029.c
404
405 ADM8211 WIRELESS DRIVER
406 L:      linux-wireless@vger.kernel.org
407 W:      http://wireless.kernel.org/
408 S:      Orphan
409 F:      drivers/net/wireless/admtek/adm8211.*
410
411 ADP1653 FLASH CONTROLLER DRIVER
412 M:      Sakari Ailus <sakari.ailus@iki.fi>
413 L:      linux-media@vger.kernel.org
414 S:      Maintained
415 F:      drivers/media/i2c/adp1653.c
416 F:      include/media/i2c/adp1653.h
417
418 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/ADP5520
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/mfd/adp5520.c
424 F:      drivers/video/backlight/adp5520_bl.c
425 F:      drivers/leds/leds-adp5520.c
426 F:      drivers/gpio/gpio-adp5520.c
427 F:      drivers/input/keyboard/adp5520-keys.c
428
429 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
430 M:      Michael Hennerich <michael.hennerich@analog.com>
431 W:      http://wiki.analog.com/ADP5588
432 W:      http://ez.analog.com/community/linux-device-drivers
433 S:      Supported
434 F:      drivers/input/keyboard/adp5588-keys.c
435 F:      drivers/gpio/gpio-adp5588.c
436
437 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
438 M:      Michael Hennerich <michael.hennerich@analog.com>
439 W:      http://wiki.analog.com/ADP8860
440 W:      http://ez.analog.com/community/linux-device-drivers
441 S:      Supported
442 F:      drivers/video/backlight/adp8860_bl.c
443
444 ADS1015 HARDWARE MONITOR DRIVER
445 M:      Dirk Eibach <eibach@gdsys.de>
446 L:      linux-hwmon@vger.kernel.org
447 S:      Maintained
448 F:      Documentation/hwmon/ads1015
449 F:      drivers/hwmon/ads1015.c
450 F:      include/linux/i2c/ads1015.h
451
452 ADT746X FAN DRIVER
453 M:      Colin Leroy <colin@colino.net>
454 S:      Maintained
455 F:      drivers/macintosh/therm_adt746x.c
456
457 ADT7475 HARDWARE MONITOR DRIVER
458 M:      Jean Delvare <jdelvare@suse.com>
459 L:      linux-hwmon@vger.kernel.org
460 S:      Maintained
461 F:      Documentation/hwmon/adt7475
462 F:      drivers/hwmon/adt7475.c
463
464 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
465 M:      Michael Hennerich <michael.hennerich@analog.com>
466 W:      http://wiki.analog.com/ADXL345
467 W:      http://ez.analog.com/community/linux-device-drivers
468 S:      Supported
469 F:      drivers/input/misc/adxl34x.c
470
471 ADVANSYS SCSI DRIVER
472 M:      Matthew Wilcox <matthew@wil.cx>
473 M:      Hannes Reinecke <hare@suse.com>
474 L:      linux-scsi@vger.kernel.org
475 S:      Maintained
476 F:      Documentation/scsi/advansys.txt
477 F:      drivers/scsi/advansys.c
478
479 AEDSP16 DRIVER
480 M:      Riccardo Facchetti <fizban@tin.it>
481 S:      Maintained
482 F:      sound/oss/aedsp16.c
483
484 AF9013 MEDIA DRIVER
485 M:      Antti Palosaari <crope@iki.fi>
486 L:      linux-media@vger.kernel.org
487 W:      https://linuxtv.org
488 W:      http://palosaari.fi/linux/
489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
490 T:      git git://linuxtv.org/anttip/media_tree.git
491 S:      Maintained
492 F:      drivers/media/dvb-frontends/af9013*
493
494 AF9033 MEDIA DRIVER
495 M:      Antti Palosaari <crope@iki.fi>
496 L:      linux-media@vger.kernel.org
497 W:      https://linuxtv.org
498 W:      http://palosaari.fi/linux/
499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
500 T:      git git://linuxtv.org/anttip/media_tree.git
501 S:      Maintained
502 F:      drivers/media/dvb-frontends/af9033*
503
504 AFFS FILE SYSTEM
505 L:      linux-fsdevel@vger.kernel.org
506 S:      Orphan
507 F:      Documentation/filesystems/affs.txt
508 F:      fs/affs/
509
510 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
511 M:      David Howells <dhowells@redhat.com>
512 L:      linux-afs@lists.infradead.org
513 S:      Supported
514 F:      fs/afs/
515 F:      include/net/af_rxrpc.h
516 F:      net/rxrpc/af_rxrpc.c
517
518 AGPGART DRIVER
519 M:      David Airlie <airlied@linux.ie>
520 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
521 S:      Maintained
522 F:      drivers/char/agp/
523 F:      include/linux/agp*
524 F:      include/uapi/linux/agp*
525
526 AHA152X SCSI DRIVER
527 M:      "Juergen E. Fischer" <fischer@norbit.de>
528 L:      linux-scsi@vger.kernel.org
529 S:      Maintained
530 F:      drivers/scsi/aha152x*
531 F:      drivers/scsi/pcmcia/aha152x*
532
533 AIC7XXX / AIC79XX SCSI DRIVER
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      drivers/scsi/aic7xxx/
538
539 AIMSLAB FM RADIO RECEIVER DRIVER
540 M:      Hans Verkuil <hverkuil@xs4all.nl>
541 L:      linux-media@vger.kernel.org
542 T:      git git://linuxtv.org/media_tree.git
543 W:      https://linuxtv.org
544 S:      Maintained
545 F:      drivers/media/radio/radio-aimslab*
546
547 AIO
548 M:      Benjamin LaHaise <bcrl@kvack.org>
549 L:      linux-aio@kvack.org
550 S:      Supported
551 F:      fs/aio.c
552 F:      include/linux/*aio*.h
553
554 AIRSPY MEDIA DRIVER
555 M:      Antti Palosaari <crope@iki.fi>
556 L:      linux-media@vger.kernel.org
557 W:      https://linuxtv.org
558 W:      http://palosaari.fi/linux/
559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
560 T:      git git://linuxtv.org/anttip/media_tree.git
561 S:      Maintained
562 F:      drivers/media/usb/airspy/
563
564 ALCATEL SPEEDTOUCH USB DRIVER
565 M:      Duncan Sands <duncan.sands@free.fr>
566 L:      linux-usb@vger.kernel.org
567 W:      http://www.linux-usb.org/SpeedTouch/
568 S:      Maintained
569 F:      drivers/usb/atm/speedtch.c
570 F:      drivers/usb/atm/usbatm.c
571
572 ALCHEMY AU1XX0 MMC DRIVER
573 M:      Manuel Lauss <manuel.lauss@gmail.com>
574 S:      Maintained
575 F:      drivers/mmc/host/au1xmmc.c
576
577 ALI1563 I2C DRIVER
578 M:      Rudolf Marek <r.marek@assembler.cz>
579 L:      linux-i2c@vger.kernel.org
580 S:      Maintained
581 F:      Documentation/i2c/busses/i2c-ali1563
582 F:      drivers/i2c/busses/i2c-ali1563.c
583
584 ALLWINNER SECURITY SYSTEM
585 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
586 L:      linux-crypto@vger.kernel.org
587 S:      Maintained
588 F:      drivers/crypto/sunxi-ss/
589
590 ALPHA PORT
591 M:      Richard Henderson <rth@twiddle.net>
592 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
593 M:      Matt Turner <mattst88@gmail.com>
594 S:      Odd Fixes
595 L:      linux-alpha@vger.kernel.org
596 F:      arch/alpha/
597
598 ALPS PS/2 TOUCHPAD DRIVER
599 R:      Pali Rohár <pali.rohar@gmail.com>
600 F:      drivers/input/mouse/alps.*
601
602 ALTERA MAILBOX DRIVER
603 M:      Ley Foon Tan <lftan@altera.com>
604 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
605 S:      Maintained
606 F:      drivers/mailbox/mailbox-altera.c
607
608 ALTERA PIO DRIVER
609 M:      Tien Hock Loh <thloh@altera.com>
610 L:      linux-gpio@vger.kernel.org
611 S:      Maintained
612 F:      drivers/gpio/gpio-altera.c
613
614 ALTERA TRIPLE SPEED ETHERNET DRIVER
615 M:      Vince Bridgers <vbridger@opensource.altera.com>
616 L:      netdev@vger.kernel.org
617 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
618 S:      Maintained
619 F:      drivers/net/ethernet/altera/
620
621 ALTERA UART/JTAG UART SERIAL DRIVERS
622 M:      Tobias Klauser <tklauser@distanz.ch>
623 L:      linux-serial@vger.kernel.org
624 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
625 S:      Maintained
626 F:      drivers/tty/serial/altera_uart.c
627 F:      drivers/tty/serial/altera_jtaguart.c
628 F:      include/linux/altera_uart.h
629 F:      include/linux/altera_jtaguart.h
630
631 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
632 M:      Tom Lendacky <thomas.lendacky@amd.com>
633 M:      Gary Hook <gary.hook@amd.com>
634 L:      linux-crypto@vger.kernel.org
635 S:      Supported
636 F:      drivers/crypto/ccp/
637 F:      include/linux/ccp.h
638
639 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
640 M:      Huang Rui <ray.huang@amd.com>
641 L:      linux-hwmon@vger.kernel.org
642 S:      Supported
643 F:      Documentation/hwmon/fam15h_power
644 F:      drivers/hwmon/fam15h_power.c
645
646 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
647 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
648 S:      Orphan
649 F:      drivers/usb/gadget/udc/amd5536udc.*
650
651 AMD GEODE PROCESSOR/CHIPSET SUPPORT
652 P:      Andres Salomon <dilinger@queued.net>
653 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
654 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
655 S:      Supported
656 F:      drivers/char/hw_random/geode-rng.c
657 F:      drivers/crypto/geode*
658 F:      drivers/video/fbdev/geode/
659 F:      arch/x86/include/asm/geode.h
660
661 AMD IOMMU (AMD-VI)
662 M:      Joerg Roedel <joro@8bytes.org>
663 L:      iommu@lists.linux-foundation.org
664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
665 S:      Maintained
666 F:      drivers/iommu/amd_iommu*.[ch]
667 F:      include/linux/amd-iommu.h
668
669 AMD KFD
670 M:      Oded Gabbay <oded.gabbay@gmail.com>
671 L:      dri-devel@lists.freedesktop.org
672 T:      git git://people.freedesktop.org/~gabbayo/linux.git
673 S:      Supported
674 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
675 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
676 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
677 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
678 F:      drivers/gpu/drm/amd/amdkfd/
679 F:      drivers/gpu/drm/amd/include/cik_structs.h
680 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
681 F:      drivers/gpu/drm/amd/include/vi_structs.h
682 F:      drivers/gpu/drm/radeon/radeon_kfd.c
683 F:      drivers/gpu/drm/radeon/radeon_kfd.h
684 F:      include/uapi/linux/kfd_ioctl.h
685
686 AMD SEATTLE DEVICE TREE SUPPORT
687 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
688 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
689 M:      Tom Lendacky <thomas.lendacky@amd.com>
690 S:      Supported
691 F:      arch/arm64/boot/dts/amd/
692
693 AMD XGBE DRIVER
694 M:      Tom Lendacky <thomas.lendacky@amd.com>
695 L:      netdev@vger.kernel.org
696 S:      Supported
697 F:      drivers/net/ethernet/amd/xgbe/
698 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
699
700 AMS (Apple Motion Sensor) DRIVER
701 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
702 S:      Supported
703 F:      drivers/macintosh/ams/
704
705 ANALOG DEVICES INC AD9389B DRIVER
706 M:      Hans Verkuil <hans.verkuil@cisco.com>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 F:      drivers/media/i2c/ad9389b*
710
711 ANALOG DEVICES INC ADV7180 DRIVER
712 M:      Lars-Peter Clausen <lars@metafoo.de>
713 L:      linux-media@vger.kernel.org
714 W:      http://ez.analog.com/community/linux-device-drivers
715 S:      Supported
716 F:      drivers/media/i2c/adv7180.c
717
718 ANALOG DEVICES INC ADV7511 DRIVER
719 M:      Hans Verkuil <hans.verkuil@cisco.com>
720 L:      linux-media@vger.kernel.org
721 S:      Maintained
722 F:      drivers/media/i2c/adv7511*
723
724 ANALOG DEVICES INC ADV7604 DRIVER
725 M:      Hans Verkuil <hans.verkuil@cisco.com>
726 L:      linux-media@vger.kernel.org
727 S:      Maintained
728 F:      drivers/media/i2c/adv7604*
729
730 ANALOG DEVICES INC ADV7842 DRIVER
731 M:      Hans Verkuil <hans.verkuil@cisco.com>
732 L:      linux-media@vger.kernel.org
733 S:      Maintained
734 F:      drivers/media/i2c/adv7842*
735
736 ANALOG DEVICES INC ASOC CODEC DRIVERS
737 M:      Lars-Peter Clausen <lars@metafoo.de>
738 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
739 W:      http://wiki.analog.com/
740 W:      http://ez.analog.com/community/linux-device-drivers
741 S:      Supported
742 F:      sound/soc/codecs/adau*
743 F:      sound/soc/codecs/adav*
744 F:      sound/soc/codecs/ad1*
745 F:      sound/soc/codecs/ad7*
746 F:      sound/soc/codecs/ssm*
747 F:      sound/soc/codecs/sigmadsp.*
748
749 ANALOG DEVICES INC ASOC DRIVERS
750 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
752 W:      http://blackfin.uclinux.org/
753 S:      Supported
754 F:      sound/soc/blackfin/*
755
756 ANALOG DEVICES INC IIO DRIVERS
757 M:      Lars-Peter Clausen <lars@metafoo.de>
758 M:      Michael Hennerich <Michael.Hennerich@analog.com>
759 W:      http://wiki.analog.com/
760 W:      http://ez.analog.com/community/linux-device-drivers
761 S:      Supported
762 F:      drivers/iio/*/ad*
763 X:      drivers/iio/*/adjd*
764 F:      drivers/staging/iio/*/ad*
765 F:      staging/iio/trigger/iio-trig-bfin-timer.c
766
767 ANALOG DEVICES INC DMA DRIVERS
768 M:      Lars-Peter Clausen <lars@metafoo.de>
769 W:      http://ez.analog.com/community/linux-device-drivers
770 S:      Supported
771 F:      drivers/dma/dma-axi-dmac.c
772
773 ANDROID DRIVERS
774 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
775 M:      Arve Hjønnevåg <arve@android.com>
776 M:      Riley Andrews <riandrews@android.com>
777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
778 L:      devel@driverdev.osuosl.org
779 S:      Supported
780 F:      drivers/android/
781 F:      drivers/staging/android/
782
783 ANDROID ION DRIVER
784 M:      Laura Abbott <labbott@redhat.com>
785 M:      Sumit Semwal <sumit.semwal@linaro.org>
786 L:      devel@driverdev.osuosl.org
787 S:      Supported
788 F:      drivers/staging/android/ion
789 F:      drivers/staging/android/uapi/ion.h
790 F:      drivers/staging/android/uapi/ion_test.h
791
792 AOA (Apple Onboard Audio) ALSA DRIVER
793 M:      Johannes Berg <johannes@sipsolutions.net>
794 L:      linuxppc-dev@lists.ozlabs.org
795 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
796 S:      Maintained
797 F:      sound/aoa/
798
799 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
800 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
801 L:      linux-iio@vger.kernel.org
802 S:      Maintained
803 F:      drivers/iio/dac/stx104.c
804
805 APM DRIVER
806 M:      Jiri Kosina <jikos@kernel.org>
807 S:      Odd fixes
808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
809 F:      arch/x86/kernel/apm_32.c
810 F:      include/linux/apm_bios.h
811 F:      include/uapi/linux/apm_bios.h
812 F:      drivers/char/apm-emulation.c
813
814 APPLE BCM5974 MULTITOUCH DRIVER
815 M:      Henrik Rydberg <rydberg@bitmath.org>
816 L:      linux-input@vger.kernel.org
817 S:      Odd fixes
818 F:      drivers/input/mouse/bcm5974.c
819
820 APPLE SMC DRIVER
821 M:      Henrik Rydberg <rydberg@bitmath.org>
822 L:      linux-hwmon@vger.kernel.org
823 S:      Odd fixes
824 F:      drivers/hwmon/applesmc.c
825
826 APPLETALK NETWORK LAYER
827 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
828 S:      Maintained
829 F:      drivers/net/appletalk/
830 F:      net/appletalk/
831
832 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
833 M:      Duc Dang <dhdang@apm.com>
834 S:      Supported
835 F:      arch/arm64/boot/dts/apm/
836
837 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
838 M:      Iyappan Subramanian <isubramanian@apm.com>
839 M:      Keyur Chudgar <kchudgar@apm.com>
840 S:      Supported
841 F:      drivers/net/ethernet/apm/xgene/
842 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
843
844 APTINA CAMERA SENSOR PLL
845 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
846 L:      linux-media@vger.kernel.org
847 S:      Maintained
848 F:      drivers/media/i2c/aptina-pll.*
849
850 ARC FRAMEBUFFER DRIVER
851 M:      Jaya Kumar <jayalk@intworks.biz>
852 S:      Maintained
853 F:      drivers/video/fbdev/arcfb.c
854 F:      drivers/video/fbdev/core/fb_defio.c
855
856 ARCNET NETWORK LAYER
857 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
858 L:      netdev@vger.kernel.org
859 S:      Maintained
860 F:      drivers/net/arcnet/
861 F:      include/uapi/linux/if_arcnet.h
862
863 ARC PGU DRM DRIVER
864 M:      Alexey Brodkin <abrodkin@synopsys.com>
865 S:      Supported
866 F:      drivers/gpu/drm/arc/
867 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
868
869 ARM HDLCD DRM DRIVER
870 M:      Liviu Dudau <liviu.dudau@arm.com>
871 S:      Supported
872 F:      drivers/gpu/drm/arm/
873 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
874
875 ARM MFM AND FLOPPY DRIVERS
876 M:      Ian Molton <spyro@f2s.com>
877 S:      Maintained
878 F:      arch/arm/lib/floppydma.S
879 F:      arch/arm/include/asm/floppy.h
880
881 ARM PMU PROFILING AND DEBUGGING
882 M:      Will Deacon <will.deacon@arm.com>
883 R:      Mark Rutland <mark.rutland@arm.com>
884 S:      Maintained
885 F:      arch/arm*/kernel/perf_*
886 F:      arch/arm/oprofile/common.c
887 F:      arch/arm*/kernel/hw_breakpoint.c
888 F:      arch/arm*/include/asm/hw_breakpoint.h
889 F:      arch/arm*/include/asm/perf_event.h
890 F:      drivers/perf/arm_pmu.c
891 F:      include/linux/perf/arm_pmu.h
892
893 ARM PORT
894 M:      Russell King <linux@armlinux.org.uk>
895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
896 W:      http://www.armlinux.org.uk/
897 S:      Maintained
898 F:      arch/arm/
899
900 ARM SUB-ARCHITECTURES
901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
902 S:      Maintained
903 F:      arch/arm/mach-*/
904 F:      arch/arm/plat-*/
905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
906
907 ARM PRIMECELL AACI PL041 DRIVER
908 M:      Russell King <linux@armlinux.org.uk>
909 S:      Maintained
910 F:      sound/arm/aaci.*
911
912 ARM PRIMECELL CLCD PL110 DRIVER
913 M:      Russell King <linux@armlinux.org.uk>
914 S:      Maintained
915 F:      drivers/video/fbdev/amba-clcd.*
916
917 ARM PRIMECELL KMI PL050 DRIVER
918 M:      Russell King <linux@armlinux.org.uk>
919 S:      Maintained
920 F:      drivers/input/serio/ambakmi.*
921 F:      include/linux/amba/kmi.h
922
923 ARM PRIMECELL MMCI PL180/1 DRIVER
924 M:      Russell King <linux@armlinux.org.uk>
925 S:      Maintained
926 F:      drivers/mmc/host/mmci.*
927 F:      include/linux/amba/mmci.h
928
929 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
930 M:      Russell King <linux@armlinux.org.uk>
931 S:      Maintained
932 F:      drivers/tty/serial/amba-pl01*.c
933 F:      include/linux/amba/serial.h
934
935 ARM PRIMECELL BUS SUPPORT
936 M:      Russell King <linux@armlinux.org.uk>
937 S:      Maintained
938 F:      drivers/amba/
939 F:      include/linux/amba/bus.h
940
941 ARM/ADS SPHERE MACHINE SUPPORT
942 M:      Lennert Buytenhek <kernel@wantstofly.org>
943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 S:      Maintained
945
946 ARM/AFEB9260 MACHINE SUPPORT
947 M:      Sergey Lapin <slapin@ossfans.org>
948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
949 S:      Maintained
950
951 ARM/AJECO 1ARM MACHINE SUPPORT
952 M:      Lennert Buytenhek <kernel@wantstofly.org>
953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
954 S:      Maintained
955
956 ARM/Allwinner sunXi SoC support
957 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
958 M:      Chen-Yu Tsai <wens@csie.org>
959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
960 S:      Maintained
961 N:      sun[x456789]i
962
963 ARM/Allwinner SoC Clock Support
964 M:      Emilio López <emilio@elopez.com.ar>
965 S:      Maintained
966 F:      drivers/clk/sunxi/
967
968 ARM/Amlogic Meson SoC support
969 M:      Carlo Caione <carlo@caione.org>
970 M:      Kevin Hilman <khilman@baylibre.com>
971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
972 L:      linux-amlogic@lists.infradead.org
973 W:      http://linux-meson.com/
974 S:      Maintained
975 F:      arch/arm/mach-meson/
976 F:      arch/arm/boot/dts/meson*
977 F:      arch/arm64/boot/dts/amlogic/
978 F:      drivers/pinctrl/meson/
979 N:      meson
980
981 ARM/Annapurna Labs ALPINE ARCHITECTURE
982 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
983 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
984 S:      Maintained
985 F:      arch/arm/mach-alpine/
986 F:      arch/arm/boot/dts/alpine*
987 F:      arch/arm64/boot/dts/al/
988 F:      drivers/*/*alpine*
989
990 ARM/ARTPEC MACHINE SUPPORT
991 M:      Jesper Nilsson <jesper.nilsson@axis.com>
992 M:      Lars Persson <lars.persson@axis.com>
993 M:      Niklas Cassel <niklas.cassel@axis.com>
994 S:      Maintained
995 L:      linux-arm-kernel@axis.com
996 F:      arch/arm/mach-artpec
997 F:      arch/arm/boot/dts/artpec6*
998 F:      drivers/clk/axis
999
1000 ARM/ASPEED MACHINE SUPPORT
1001 M:      Joel Stanley <joel@jms.id.au>
1002 S:      Maintained
1003 F:      arch/arm/mach-aspeed/
1004 F:      arch/arm/boot/dts/aspeed-*
1005 F:      drivers/*/*aspeed*
1006
1007 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1008 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1009 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1010 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 W:      http://www.linux4sam.org
1013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1014 S:      Supported
1015 F:      arch/arm/mach-at91/
1016 F:      include/soc/at91/
1017 F:      arch/arm/boot/dts/at91*.dts
1018 F:      arch/arm/boot/dts/at91*.dtsi
1019 F:      arch/arm/boot/dts/sama*.dts
1020 F:      arch/arm/boot/dts/sama*.dtsi
1021 F:      arch/arm/include/debug/at91.S
1022
1023 ARM/ATMEL AT91 Clock Support
1024 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1025 S:      Maintained
1026 F:      drivers/clk/at91
1027
1028 ARM/CALXEDA HIGHBANK ARCHITECTURE
1029 M:      Rob Herring <robh@kernel.org>
1030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1031 S:      Maintained
1032 F:      arch/arm/mach-highbank/
1033 F:      arch/arm/boot/dts/highbank.dts
1034 F:      arch/arm/boot/dts/ecx-*.dts*
1035
1036 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1037 M:      Krzysztof Halasa <khalasa@piap.pl>
1038 S:      Maintained
1039 F:      arch/arm/mach-cns3xxx/
1040
1041 ARM/CAVIUM THUNDER NETWORK DRIVER
1042 M:      Sunil Goutham <sgoutham@cavium.com>
1043 M:      Robert Richter <rric@kernel.org>
1044 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1045 S:      Supported
1046 F:      drivers/net/ethernet/cavium/thunder/
1047
1048 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1049 M:      Alexander Shiyan <shc_work@mail.ru>
1050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1051 S:      Odd Fixes
1052 N:      clps711x
1053
1054 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1055 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1056 M:      Ryan Mallon <rmallon@gmail.com>
1057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058 S:      Maintained
1059 F:      arch/arm/mach-ep93xx/
1060 F:      arch/arm/mach-ep93xx/include/mach/
1061
1062 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1063 M:      Lennert Buytenhek <kernel@wantstofly.org>
1064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1065 S:      Maintained
1066
1067 ARM/CLKDEV SUPPORT
1068 M:      Russell King <linux@armlinux.org.uk>
1069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 S:      Maintained
1071 F:      arch/arm/include/asm/clkdev.h
1072 F:      drivers/clk/clkdev.c
1073
1074 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1075 M:      Mike Rapoport <mike@compulab.co.il>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078
1079 ARM/CONTEC MICRO9 MACHINE SUPPORT
1080 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1081 S:      Maintained
1082 F:      arch/arm/mach-ep93xx/micro9.c
1083
1084 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1085 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1087 S:      Maintained
1088 F:      drivers/hwtracing/coresight/*
1089 F:      Documentation/trace/coresight.txt
1090 F:      Documentation/devicetree/bindings/arm/coresight.txt
1091 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1092
1093 ARM/CORGI MACHINE SUPPORT
1094 M:      Richard Purdie <rpurdie@rpsys.net>
1095 S:      Maintained
1096
1097 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1098 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1100 T:      git git://github.com/ulli-kroll/linux.git
1101 S:      Maintained
1102 F:      arch/arm/mach-gemini/
1103 F:      drivers/rtc/rtc-gemini.c
1104
1105 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1106 M:      Barry Song <baohua@kernel.org>
1107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1109 S:      Maintained
1110 F:      arch/arm/boot/dts/prima2*
1111 F:      arch/arm/mach-prima2/
1112 F:      drivers/clk/sirf/
1113 F:      drivers/clocksource/timer-prima2.c
1114 F:      drivers/clocksource/timer-atlas7.c
1115 N:      [^a-z]sirf
1116
1117 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1118 M:      Baruch Siach <baruch@tkos.co.il>
1119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1120 S:      Maintained
1121 F:      arch/arm/boot/dts/cx92755*
1122 N:      digicolor
1123
1124 ARM/EBSA110 MACHINE SUPPORT
1125 M:      Russell King <linux@armlinux.org.uk>
1126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1127 W:      http://www.armlinux.org.uk/
1128 S:      Maintained
1129 F:      arch/arm/mach-ebsa110/
1130 F:      drivers/net/ethernet/amd/am79c961a.*
1131
1132 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1133 M:      Uwe Kleine-König <kernel@pengutronix.de>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 S:      Maintained
1136 N:      efm32
1137
1138 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1139 M:      Daniel Ribeiro <drwyrm@gmail.com>
1140 M:      Stefan Schmidt <stefan@openezx.org>
1141 M:      Harald Welte <laforge@openezx.org>
1142 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1143 W:      http://www.openezx.org/
1144 S:      Maintained
1145 T:      topgit git://git.openezx.org/openezx.git
1146 F:      arch/arm/mach-pxa/ezx.c
1147
1148 ARM/FARADAY FA526 PORT
1149 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1151 S:      Maintained
1152 T:      git git://git.berlios.de/gemini-board
1153 F:      arch/arm/mm/*-fa*
1154
1155 ARM/FOOTBRIDGE ARCHITECTURE
1156 M:      Russell King <linux@armlinux.org.uk>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 W:      http://www.armlinux.org.uk/
1159 S:      Maintained
1160 F:      arch/arm/include/asm/hardware/dec21285.h
1161 F:      arch/arm/mach-footbridge/
1162
1163 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1164 M:      Shawn Guo <shawnguo@kernel.org>
1165 M:      Sascha Hauer <kernel@pengutronix.de>
1166 R:      Fabio Estevam <fabio.estevam@nxp.com>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 S:      Maintained
1169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1170 F:      arch/arm/mach-imx/
1171 F:      arch/arm/mach-mxs/
1172 F:      arch/arm/boot/dts/imx*
1173 F:      arch/arm/configs/imx*_defconfig
1174 F:      drivers/clk/imx/
1175 F:      include/soc/imx/
1176
1177 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1178 M:      Shawn Guo <shawnguo@kernel.org>
1179 M:      Sascha Hauer <kernel@pengutronix.de>
1180 R:      Stefan Agner <stefan@agner.ch>
1181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1182 S:      Maintained
1183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1184 F:      arch/arm/mach-imx/*vf610*
1185 F:      arch/arm/boot/dts/vf*
1186
1187 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1188 M:      Lennert Buytenhek <kernel@wantstofly.org>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191
1192 ARM/GUMSTIX MACHINE SUPPORT
1193 M:      Steve Sakoman <sakoman@gmail.com>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S:      Maintained
1196
1197 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1198 M:      Philipp Zabel <philipp.zabel@gmail.com>
1199 M:      Paul Parsons <lost.distance@yahoo.com>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202 F:      arch/arm/mach-pxa/hx4700.c
1203 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1204 F:      sound/soc/pxa/hx4700.c
1205
1206 ARM/HISILICON SOC SUPPORT
1207 M:      Wei Xu <xuwei5@hisilicon.com>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 W:      http://www.hisilicon.com
1210 S:      Supported
1211 T:      git git://github.com/hisilicon/linux-hisi.git
1212 F:      arch/arm/mach-hisi/
1213 F:      arch/arm/boot/dts/hi3*
1214 F:      arch/arm/boot/dts/hip*
1215 F:      arch/arm/boot/dts/hisi*
1216 F:      arch/arm64/boot/dts/hisilicon/
1217
1218 ARM/HP JORNADA 7XX MACHINE SUPPORT
1219 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1220 W:      www.jlime.com
1221 S:      Maintained
1222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1223 F:      arch/arm/mach-sa1100/jornada720.c
1224 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1225
1226 ARM/IGEP MACHINE SUPPORT
1227 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1228 M:      Javier Martinez Canillas <javier@dowhile0.org>
1229 L:      linux-omap@vger.kernel.org
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 S:      Maintained
1232 F:      arch/arm/boot/dts/omap3-igep*
1233
1234 ARM/INCOME PXA270 SUPPORT
1235 M:      Marek Vasut <marek.vasut@gmail.com>
1236 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237 S:      Maintained
1238 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1239
1240 ARM/INTEL IOP32X ARM ARCHITECTURE
1241 M:      Lennert Buytenhek <kernel@wantstofly.org>
1242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 S:      Maintained
1244
1245 ARM/INTEL IOP33X ARM ARCHITECTURE
1246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1247 S:      Orphan
1248
1249 ARM/INTEL IOP13XX ARM ARCHITECTURE
1250 M:      Lennert Buytenhek <kernel@wantstofly.org>
1251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252 S:      Maintained
1253
1254 ARM/INTEL IQ81342EX MACHINE SUPPORT
1255 M:      Lennert Buytenhek <kernel@wantstofly.org>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 S:      Maintained
1258
1259 ARM/INTEL IXDP2850 MACHINE SUPPORT
1260 M:      Lennert Buytenhek <kernel@wantstofly.org>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 S:      Maintained
1263
1264 ARM/INTEL IXP4XX ARM ARCHITECTURE
1265 M:      Imre Kaloz <kaloz@openwrt.org>
1266 M:      Krzysztof Halasa <khalasa@piap.pl>
1267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1268 S:      Maintained
1269 F:      arch/arm/mach-ixp4xx/
1270
1271 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1272 M:      Jonathan Cameron <jic23@cam.ac.uk>
1273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1274 S:      Maintained
1275 F:      arch/arm/mach-pxa/stargate2.c
1276 F:      drivers/pcmcia/pxa2xx_stargate2.c
1277
1278 ARM/INTEL XSC3 (MANZANO) ARM CORE
1279 M:      Lennert Buytenhek <kernel@wantstofly.org>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 S:      Maintained
1282
1283 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1284 M:      Lennert Buytenhek <kernel@wantstofly.org>
1285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1286 S:      Maintained
1287
1288 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1289 M:      Santosh Shilimkar <ssantosh@kernel.org>
1290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 S:      Maintained
1292 F:      arch/arm/mach-keystone/
1293 F:      arch/arm/boot/dts/keystone-*
1294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1295
1296 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1297 M:      Santosh Shilimkar <ssantosh@kernel.org>
1298 L:      linux-kernel@vger.kernel.org
1299 S:      Maintained
1300 F:      drivers/clk/keystone/
1301
1302 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1303 M:      Santosh Shilimkar <ssantosh@kernel.org>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 L:      linux-kernel@vger.kernel.org
1306 S:      Maintained
1307 F:      drivers/clocksource/timer-keystone.c
1308
1309 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1310 M:      Santosh Shilimkar <ssantosh@kernel.org>
1311 L:      linux-kernel@vger.kernel.org
1312 S:      Maintained
1313 F:      drivers/power/reset/keystone-reset.c
1314
1315 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1316 M:      Santosh Shilimkar <ssantosh@kernel.org>
1317 L:      linux-kernel@vger.kernel.org
1318 S:      Maintained
1319 F:      drivers/memory/*emif*
1320
1321 ARM/LG1K ARCHITECTURE
1322 M:      Chanho Min <chanho.min@lge.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm64/boot/dts/lg/
1326
1327 ARM/LOGICPD PXA270 MACHINE SUPPORT
1328 M:      Lennert Buytenhek <kernel@wantstofly.org>
1329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330 S:      Maintained
1331
1332 ARM/LPC18XX ARCHITECTURE
1333 M:      Joachim Eastwood <manabian@gmail.com>
1334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 S:      Maintained
1336 F:      arch/arm/boot/dts/lpc43*
1337 F:      drivers/clk/nxp/clk-lpc18xx*
1338 F:      drivers/clocksource/time-lpc32xx.c
1339 F:      drivers/i2c/busses/i2c-lpc2k.c
1340 F:      drivers/memory/pl172.c
1341 F:      drivers/mtd/spi-nor/nxp-spifi.c
1342 F:      drivers/rtc/rtc-lpc24xx.c
1343 N:      lpc18xx
1344
1345 ARM/LPC32XX SOC SUPPORT
1346 M:      Vladimir Zapolskiy <vz@mleia.com>
1347 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1350 S:      Maintained
1351 F:      arch/arm/boot/dts/lpc32*
1352 F:      arch/arm/mach-lpc32xx/
1353 F:      drivers/i2c/busses/i2c-pnx.c
1354 F:      drivers/net/ethernet/nxp/lpc_eth.c
1355 F:      drivers/usb/host/ohci-nxp.c
1356 F:      drivers/watchdog/pnx4008_wdt.c
1357 N:      lpc32xx
1358
1359 ARM/MAGICIAN MACHINE SUPPORT
1360 M:      Philipp Zabel <philipp.zabel@gmail.com>
1361 S:      Maintained
1362
1363 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1364 M:      Jason Cooper <jason@lakedaemon.net>
1365 M:      Andrew Lunn <andrew@lunn.ch>
1366 M:      Gregory Clement <gregory.clement@free-electrons.com>
1367 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1369 S:      Maintained
1370 F:      arch/arm/mach-mvebu/
1371 F:      drivers/rtc/rtc-armada38x.c
1372 F:      arch/arm/boot/dts/armada*
1373 F:      arch/arm/boot/dts/kirkwood*
1374 F:      arch/arm64/boot/dts/marvell/armada*
1375 F:      drivers/cpufreq/mvebu-cpufreq.c
1376 F:      arch/arm/configs/mvebu_*_defconfig
1377
1378 ARM/Marvell Berlin SoC support
1379 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1381 S:      Maintained
1382 F:      arch/arm/mach-berlin/
1383 F:      arch/arm/boot/dts/berlin*
1384 F:      arch/arm64/boot/dts/marvell/berlin*
1385
1386
1387 ARM/Marvell Dove/MV78xx0/Orion SOC support
1388 M:      Jason Cooper <jason@lakedaemon.net>
1389 M:      Andrew Lunn <andrew@lunn.ch>
1390 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1391 M:      Gregory Clement <gregory.clement@free-electrons.com>
1392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1393 S:      Maintained
1394 F:      arch/arm/mach-dove/
1395 F:      arch/arm/mach-mv78xx0/
1396 F:      arch/arm/mach-orion5x/
1397 F:      arch/arm/plat-orion/
1398 F:      arch/arm/boot/dts/dove*
1399 F:      arch/arm/boot/dts/orion5x*
1400
1401
1402 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1403 M:      Alexander Clouter <alex@digriz.org.uk>
1404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1405 W:      http://www.digriz.org.uk/ts78xx/kernel
1406 S:      Maintained
1407 F:      arch/arm/mach-orion5x/ts78xx-*
1408
1409 ARM/OXNAS platform support
1410 M:      Neil Armstrong <narmstrong@baylibre.com>
1411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1412 S:      Maintained
1413 F:      arch/arm/mach-oxnas/
1414 F:      arch/arm/boot/dts/oxnas*
1415 F:      arch/arm/boot/dts/wd-mbwe.dts
1416 N:      oxnas
1417
1418 ARM/Mediatek RTC DRIVER
1419 M:      Eddie Huang <eddie.huang@mediatek.com>
1420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1421 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1422 S:      Maintained
1423 F:      drivers/rtc/rtc-mt6397.c
1424
1425 ARM/Mediatek SoC support
1426 M:      Matthias Brugger <matthias.bgg@gmail.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      arch/arm/boot/dts/mt6*
1431 F:      arch/arm/boot/dts/mt8*
1432 F:      arch/arm/mach-mediatek/
1433 N:      mtk
1434 K:      mediatek
1435
1436 ARM/Mediatek USB3 PHY DRIVER
1437 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1439 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1440 S:      Maintained
1441 F:      drivers/phy/phy-mt65xx-usb3.c
1442
1443 ARM/MICREL KS8695 ARCHITECTURE
1444 M:      Greg Ungerer <gerg@uclinux.org>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 F:      arch/arm/mach-ks8695/
1447 S:      Odd Fixes
1448
1449 ARM/MIOA701 MACHINE SUPPORT
1450 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 F:      arch/arm/mach-pxa/mioa701.c
1453 S:      Maintained
1454
1455 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1456 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1457 S:      Maintained
1458
1459 ARM/NOMADIK ARCHITECTURE
1460 M:      Alessandro Rubini <rubini@unipv.it>
1461 M:      Linus Walleij <linus.walleij@linaro.org>
1462 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1463 S:      Maintained
1464 F:      arch/arm/mach-nomadik/
1465 F:      drivers/pinctrl/nomadik/
1466 F:      drivers/i2c/busses/i2c-nomadik.c
1467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1468
1469 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1470 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1471 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1472 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1473 S:      Supported
1474
1475 ARM/TOSA MACHINE SUPPORT
1476 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1477 M:      Dirk Opfer <dirk@opfer-online.de>
1478 S:      Maintained
1479
1480 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1481 M:      Marek Vasut <marek.vasut@gmail.com>
1482 L:      linux-arm-kernel@lists.infradead.org
1483 W:      http://hackndev.com
1484 S:      Maintained
1485 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1486 F:      arch/arm/mach-pxa/palmtx.c
1487 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1488 F:      arch/arm/mach-pxa/palmt5.c
1489 F:      arch/arm/mach-pxa/include/mach/palmld.h
1490 F:      arch/arm/mach-pxa/palmld.c
1491 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1492 F:      arch/arm/mach-pxa/palmte2.c
1493 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1494 F:      arch/arm/mach-pxa/palmtc.c
1495
1496 ARM/PALM TREO SUPPORT
1497 M:      Tomas Cech <sleep_walker@suse.com>
1498 L:      linux-arm-kernel@lists.infradead.org
1499 W:      http://hackndev.com
1500 S:      Maintained
1501 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1502 F:      arch/arm/mach-pxa/palmtreo.c
1503
1504 ARM/PALMZ72 SUPPORT
1505 M:      Sergey Lapin <slapin@ossfans.org>
1506 L:      linux-arm-kernel@lists.infradead.org
1507 W:      http://hackndev.com
1508 S:      Maintained
1509 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1510 F:      arch/arm/mach-pxa/palmz72.c
1511
1512 ARM/PLEB SUPPORT
1513 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1514 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1515 S:      Maintained
1516
1517 ARM/PT DIGITAL BOARD PORT
1518 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 W:      http://www.armlinux.org.uk/
1521 S:      Maintained
1522
1523 ARM/QUALCOMM SUPPORT
1524 M:      Andy Gross <andy.gross@linaro.org>
1525 M:      David Brown <david.brown@linaro.org>
1526 L:      linux-arm-msm@vger.kernel.org
1527 L:      linux-soc@vger.kernel.org
1528 S:      Maintained
1529 F:      arch/arm/boot/dts/qcom-*.dts
1530 F:      arch/arm/boot/dts/qcom-*.dtsi
1531 F:      arch/arm/mach-qcom/
1532 F:      arch/arm64/boot/dts/qcom/*
1533 F:      drivers/i2c/busses/i2c-qup.c
1534 F:      drivers/clk/qcom/
1535 F:      drivers/soc/qcom/
1536 F:      drivers/spi/spi-qup.c
1537 F:      drivers/tty/serial/msm_serial.h
1538 F:      drivers/tty/serial/msm_serial.c
1539 F:      drivers/*/pm8???-*
1540 F:      drivers/mfd/ssbi.c
1541 F:      drivers/firmware/qcom_scm.c
1542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1543
1544 ARM/RADISYS ENP2611 MACHINE SUPPORT
1545 M:      Lennert Buytenhek <kernel@wantstofly.org>
1546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1547 S:      Maintained
1548
1549 ARM/RENESAS ARM64 ARCHITECTURE
1550 M:      Simon Horman <horms@verge.net.au>
1551 M:      Magnus Damm <magnus.damm@gmail.com>
1552 L:      linux-renesas-soc@vger.kernel.org
1553 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1555 S:      Supported
1556 F:      arch/arm64/boot/dts/renesas/
1557 F:      drivers/soc/renesas/
1558 F:      include/linux/soc/renesas/
1559
1560 ARM/RISCPC ARCHITECTURE
1561 M:      Russell King <linux@armlinux.org.uk>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 W:      http://www.armlinux.org.uk/
1564 S:      Maintained
1565 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1566 F:      arch/arm/include/asm/hardware/ioc.h
1567 F:      arch/arm/include/asm/hardware/iomd.h
1568 F:      arch/arm/include/asm/hardware/memc.h
1569 F:      arch/arm/mach-rpc/
1570 F:      drivers/net/ethernet/8390/etherh.c
1571 F:      drivers/net/ethernet/i825xx/ether1*
1572 F:      drivers/net/ethernet/seeq/ether3*
1573 F:      drivers/scsi/arm/
1574
1575 ARM/Rockchip SoC support
1576 M:      Heiko Stuebner <heiko@sntech.de>
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 L:      linux-rockchip@lists.infradead.org
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1580 S:      Maintained
1581 F:      arch/arm/boot/dts/rk3*
1582 F:      arch/arm/mach-rockchip/
1583 F:      drivers/clk/rockchip/
1584 F:      drivers/i2c/busses/i2c-rk3x.c
1585 F:      drivers/*/*rockchip*
1586 F:      drivers/*/*/*rockchip*
1587 F:      sound/soc/rockchip/
1588 N:      rockchip
1589
1590 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1591 M:      Kukjin Kim <kgene@kernel.org>
1592 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      arch/arm/boot/dts/s3c*
1597 F:      arch/arm/boot/dts/s5p*
1598 F:      arch/arm/boot/dts/samsung*
1599 F:      arch/arm/boot/dts/exynos*
1600 F:      arch/arm64/boot/dts/exynos/
1601 F:      arch/arm/plat-samsung/
1602 F:      arch/arm/mach-s3c24*/
1603 F:      arch/arm/mach-s3c64xx/
1604 F:      arch/arm/mach-s5p*/
1605 F:      arch/arm/mach-exynos*/
1606 F:      drivers/*/*s3c2410*
1607 F:      drivers/*/*/*s3c2410*
1608 F:      drivers/memory/samsung/*
1609 F:      drivers/soc/samsung/*
1610 F:      drivers/spi/spi-s3c*
1611 F:      sound/soc/samsung/*
1612 F:      Documentation/arm/Samsung/
1613 F:      Documentation/devicetree/bindings/arm/samsung/
1614 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1615 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1616 N:      exynos
1617
1618 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1619 M:      Kyungmin Park <kyungmin.park@samsung.com>
1620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1621 S:      Maintained
1622 F:      arch/arm/mach-s5pv210/
1623
1624 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1625 M:      Kyungmin Park <kyungmin.park@samsung.com>
1626 M:      Kamil Debski <k.debski@samsung.com>
1627 L:      linux-arm-kernel@lists.infradead.org
1628 L:      linux-media@vger.kernel.org
1629 S:      Maintained
1630 F:      drivers/media/platform/s5p-g2d/
1631
1632 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1633 M:      Kyungmin Park <kyungmin.park@samsung.com>
1634 M:      Kamil Debski <k.debski@samsung.com>
1635 M:      Jeongtae Park <jtp.park@samsung.com>
1636 L:      linux-arm-kernel@lists.infradead.org
1637 L:      linux-media@vger.kernel.org
1638 S:      Maintained
1639 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1640 F:      drivers/media/platform/s5p-mfc/
1641
1642 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1643 M:      Kyungmin Park <kyungmin.park@samsung.com>
1644 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1645 L:      linux-arm-kernel@lists.infradead.org
1646 L:      linux-media@vger.kernel.org
1647 S:      Maintained
1648 F:      drivers/media/platform/s5p-tv/
1649
1650 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1651 M:      Kyungmin Park <kyungmin.park@samsung.com>
1652 L:      linux-arm-kernel@lists.infradead.org
1653 L:      linux-media@vger.kernel.org
1654 S:      Maintained
1655 F:      drivers/staging/media/platform/s5p-cec/
1656
1657 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1658 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1659 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1660 L:      linux-arm-kernel@lists.infradead.org
1661 L:      linux-media@vger.kernel.org
1662 S:      Maintained
1663 F:      drivers/media/platform/s5p-jpeg/
1664
1665 ARM/SHMOBILE ARM ARCHITECTURE
1666 M:      Simon Horman <horms@verge.net.au>
1667 M:      Magnus Damm <magnus.damm@gmail.com>
1668 L:      linux-renesas-soc@vger.kernel.org
1669 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1671 S:      Supported
1672 F:      arch/arm/boot/dts/emev2*
1673 F:      arch/arm/boot/dts/r7s*
1674 F:      arch/arm/boot/dts/r8a*
1675 F:      arch/arm/boot/dts/sh*
1676 F:      arch/arm/configs/shmobile_defconfig
1677 F:      arch/arm/include/debug/renesas-scif.S
1678 F:      arch/arm/mach-shmobile/
1679 F:      drivers/sh/
1680 F:      drivers/soc/renesas/
1681 F:      include/linux/soc/renesas/
1682
1683 ARM/SOCFPGA ARCHITECTURE
1684 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1685 S:      Maintained
1686 F:      arch/arm/mach-socfpga/
1687 F:      arch/arm/boot/dts/socfpga*
1688 F:      arch/arm/configs/socfpga_defconfig
1689 F:      arch/arm64/boot/dts/altera/
1690 W:      http://www.rocketboards.org
1691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1692
1693 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1694 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1695 S:      Maintained
1696 F:      drivers/clk/socfpga/
1697
1698 ARM/SOCFPGA EDAC SUPPORT
1699 M:      Thor Thayer <tthayer@opensource.altera.com>
1700 S:      Maintained
1701 F:      drivers/edac/altera_edac.
1702
1703 ARM/STI ARCHITECTURE
1704 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1705 M:      Maxime Coquelin <maxime.coquelin@st.com>
1706 M:      Patrice Chotard <patrice.chotard@st.com>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 L:      kernel@stlinux.com
1709 W:      http://www.stlinux.com
1710 S:      Maintained
1711 F:      arch/arm/mach-sti/
1712 F:      arch/arm/boot/dts/sti*
1713 F:      drivers/char/hw_random/st-rng.c
1714 F:      drivers/clocksource/arm_global_timer.c
1715 F:      drivers/clocksource/clksrc_st_lpc.c
1716 F:      drivers/cpufreq/sti-cpufreq.c
1717 F:      drivers/i2c/busses/i2c-st.c
1718 F:      drivers/media/rc/st_rc.c
1719 F:      drivers/media/platform/sti/c8sectpfe/
1720 F:      drivers/mmc/host/sdhci-st.c
1721 F:      drivers/phy/phy-miphy28lp.c
1722 F:      drivers/phy/phy-miphy365x.c
1723 F:      drivers/phy/phy-stih407-usb.c
1724 F:      drivers/phy/phy-stih41x-usb.c
1725 F:      drivers/pinctrl/pinctrl-st.c
1726 F:      drivers/remoteproc/st_remoteproc.c
1727 F:      drivers/reset/sti/
1728 F:      drivers/rtc/rtc-st-lpc.c
1729 F:      drivers/tty/serial/st-asc.c
1730 F:      drivers/usb/dwc3/dwc3-st.c
1731 F:      drivers/usb/host/ehci-st.c
1732 F:      drivers/usb/host/ohci-st.c
1733 F:      drivers/watchdog/st_lpc_wdt.c
1734 F:      drivers/ata/ahci_st.c
1735
1736 ARM/STM32 ARCHITECTURE
1737 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1741 N:      stm32
1742 F:      drivers/clocksource/armv7m_systick.c
1743
1744 ARM/TANGO ARCHITECTURE
1745 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1746 L:      linux-arm-kernel@lists.infradead.org
1747 S:      Maintained
1748 F:      arch/arm/mach-tango/
1749 F:      arch/arm/boot/dts/tango*
1750
1751 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1752 M:      Lennert Buytenhek <kernel@wantstofly.org>
1753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1754 S:      Maintained
1755
1756 ARM/TETON BGA MACHINE SUPPORT
1757 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1759 S:      Maintained
1760
1761 ARM/THECUS N2100 MACHINE SUPPORT
1762 M:      Lennert Buytenhek <kernel@wantstofly.org>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S:      Maintained
1765
1766 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1767 M:      Wan ZongShun <mcuos.com@gmail.com>
1768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1769 W:      http://www.mcuos.com
1770 S:      Maintained
1771 F:      arch/arm/mach-w90x900/
1772 F:      drivers/input/keyboard/w90p910_keypad.c
1773 F:      drivers/input/touchscreen/w90p910_ts.c
1774 F:      drivers/watchdog/nuc900_wdt.c
1775 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1776 F:      drivers/mtd/nand/nuc900_nand.c
1777 F:      drivers/rtc/rtc-nuc900.c
1778 F:      drivers/spi/spi-nuc900.c
1779 F:      drivers/usb/host/ehci-w90x900.c
1780 F:      drivers/video/fbdev/nuc900fb.c
1781
1782 ARM/U300 MACHINE SUPPORT
1783 M:      Linus Walleij <linus.walleij@linaro.org>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Supported
1786 F:      arch/arm/mach-u300/
1787 F:      drivers/clocksource/timer-u300.c
1788 F:      drivers/i2c/busses/i2c-stu300.c
1789 F:      drivers/rtc/rtc-coh901331.c
1790 F:      drivers/watchdog/coh901327_wdt.c
1791 F:      drivers/dma/coh901318*
1792 F:      drivers/mfd/ab3100*
1793 F:      drivers/rtc/rtc-ab3100.c
1794 F:      drivers/rtc/rtc-coh901331.c
1795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1796
1797 ARM/UNIPHIER ARCHITECTURE
1798 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 S:      Maintained
1801 F:      arch/arm/boot/dts/uniphier*
1802 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1803 F:      arch/arm/mach-uniphier/
1804 F:      arch/arm/mm/cache-uniphier.c
1805 F:      arch/arm64/boot/dts/socionext/
1806 F:      drivers/bus/uniphier-system-bus.c
1807 F:      drivers/i2c/busses/i2c-uniphier*
1808 F:      drivers/pinctrl/uniphier/
1809 F:      drivers/tty/serial/8250/8250_uniphier.c
1810 N:      uniphier
1811
1812 ARM/Ux500 ARM ARCHITECTURE
1813 M:      Linus Walleij <linus.walleij@linaro.org>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 F:      arch/arm/mach-ux500/
1817 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1818 F:      drivers/dma/ste_dma40*
1819 F:      drivers/hwspinlock/u8500_hsem.c
1820 F:      drivers/mfd/abx500*
1821 F:      drivers/mfd/ab8500*
1822 F:      drivers/mfd/dbx500*
1823 F:      drivers/mfd/db8500*
1824 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1825 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1826 F:      drivers/rtc/rtc-ab8500.c
1827 F:      drivers/rtc/rtc-pl031.c
1828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1829
1830 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1831 M:      Ulf Hansson <ulf.hansson@linaro.org>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 T:      git git://git.linaro.org/people/ulfh/clk.git
1834 S:      Maintained
1835 F:      drivers/clk/ux500/
1836 F:      include/linux/platform_data/clk-ux500.h
1837
1838 ARM/VERSATILE EXPRESS PLATFORM
1839 M:      Liviu Dudau <liviu.dudau@arm.com>
1840 M:      Sudeep Holla <sudeep.holla@arm.com>
1841 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843 S:      Maintained
1844 F:      arch/arm/boot/dts/vexpress*
1845 F:      arch/arm64/boot/dts/arm/
1846 F:      arch/arm/mach-vexpress/
1847 F:      */*/vexpress*
1848 F:      */*/*/vexpress*
1849 F:      drivers/clk/versatile/clk-vexpress-osc.c
1850 F:      drivers/clocksource/versatile.c
1851 N:      mps2
1852
1853 ARM/VFP SUPPORT
1854 M:      Russell King <linux@armlinux.org.uk>
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 W:      http://www.armlinux.org.uk/
1857 S:      Maintained
1858 F:      arch/arm/vfp/
1859
1860 ARM/VOIPAC PXA270 SUPPORT
1861 M:      Marek Vasut <marek.vasut@gmail.com>
1862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1863 S:      Maintained
1864 F:      arch/arm/mach-pxa/vpac270.c
1865 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1866
1867 ARM/VT8500 ARM ARCHITECTURE
1868 M:      Tony Prisk <linux@prisktech.co.nz>
1869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1870 S:      Maintained
1871 F:      arch/arm/mach-vt8500/
1872 F:      drivers/clocksource/vt8500_timer.c
1873 F:      drivers/i2c/busses/i2c-wmt.c
1874 F:      drivers/mmc/host/wmt-sdmmc.c
1875 F:      drivers/pwm/pwm-vt8500.c
1876 F:      drivers/rtc/rtc-vt8500.c
1877 F:      drivers/tty/serial/vt8500_serial.c
1878 F:      drivers/usb/host/ehci-platform.c
1879 F:      drivers/usb/host/uhci-platform.c
1880 F:      drivers/video/fbdev/vt8500lcdfb.*
1881 F:      drivers/video/fbdev/wm8505fb*
1882 F:      drivers/video/fbdev/wmt_ge_rops.*
1883
1884 ARM/ZIPIT Z2 SUPPORT
1885 M:      Marek Vasut <marek.vasut@gmail.com>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 S:      Maintained
1888 F:      arch/arm/mach-pxa/z2.c
1889 F:      arch/arm/mach-pxa/include/mach/z2.h
1890
1891 ARM/ZTE ARCHITECTURE
1892 M:      Jun Nie <jun.nie@linaro.org>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Maintained
1895 F:      arch/arm/mach-zx/
1896 F:      drivers/clk/zte/
1897 F:      Documentation/devicetree/bindings/arm/zte.txt
1898 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1899
1900 ARM/ZYNQ ARCHITECTURE
1901 M:      Michal Simek <michal.simek@xilinx.com>
1902 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 W:      http://wiki.xilinx.com
1905 T:      git https://github.com/Xilinx/linux-xlnx.git
1906 S:      Supported
1907 F:      arch/arm/mach-zynq/
1908 F:      drivers/cpuidle/cpuidle-zynq.c
1909 F:      drivers/block/xsysace.c
1910 N:      zynq
1911 N:      xilinx
1912 F:      drivers/clocksource/cadence_ttc_timer.c
1913 F:      drivers/i2c/busses/i2c-cadence.c
1914 F:      drivers/mmc/host/sdhci-of-arasan.c
1915 F:      drivers/edac/synopsys_edac.c
1916
1917 ARM SMMU DRIVERS
1918 M:      Will Deacon <will.deacon@arm.com>
1919 R:      Robin Murphy <robin.murphy@arm.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922 F:      drivers/iommu/arm-smmu.c
1923 F:      drivers/iommu/arm-smmu-v3.c
1924 F:      drivers/iommu/io-pgtable-arm.c
1925 F:      drivers/iommu/io-pgtable-arm-v7s.c
1926
1927 ARM64 PORT (AARCH64 ARCHITECTURE)
1928 M:      Catalin Marinas <catalin.marinas@arm.com>
1929 M:      Will Deacon <will.deacon@arm.com>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1932 S:      Maintained
1933 F:      arch/arm64/
1934 F:      Documentation/arm64/
1935
1936 AS3645A LED FLASH CONTROLLER DRIVER
1937 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1938 L:      linux-media@vger.kernel.org
1939 T:      git git://linuxtv.org/media_tree.git
1940 S:      Maintained
1941 F:      drivers/media/i2c/as3645a.c
1942 F:      include/media/i2c/as3645a.h
1943
1944 ASC7621 HARDWARE MONITOR DRIVER
1945 M:      George Joseph <george.joseph@fairview5.com>
1946 L:      linux-hwmon@vger.kernel.org
1947 S:      Maintained
1948 F:      Documentation/hwmon/asc7621
1949 F:      drivers/hwmon/asc7621.c
1950
1951 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1952 M:      Corentin Chary <corentin.chary@gmail.com>
1953 L:      acpi4asus-user@lists.sourceforge.net
1954 L:      platform-driver-x86@vger.kernel.org
1955 W:      http://acpi4asus.sf.net
1956 S:      Maintained
1957 F:      drivers/platform/x86/asus*.c
1958 F:      drivers/platform/x86/eeepc*.c
1959
1960 ASUS WIRELESS RADIO CONTROL DRIVER
1961 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1962 L:      platform-driver-x86@vger.kernel.org
1963 S:      Maintained
1964 F:      drivers/platform/x86/asus-wireless.c
1965
1966 ASYMMETRIC KEYS
1967 M:      David Howells <dhowells@redhat.com>
1968 L:      keyrings@vger.kernel.org
1969 S:      Maintained
1970 F:      Documentation/crypto/asymmetric-keys.txt
1971 F:      include/linux/verification.h
1972 F:      include/crypto/public_key.h
1973 F:      include/crypto/pkcs7.h
1974 F:      crypto/asymmetric_keys/
1975
1976 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1977 R:      Dan Williams <dan.j.williams@intel.com>
1978 W:      http://sourceforge.net/projects/xscaleiop
1979 S:      Odd fixes
1980 F:      Documentation/crypto/async-tx-api.txt
1981 F:      crypto/async_tx/
1982 F:      drivers/dma/
1983 F:      include/linux/dmaengine.h
1984 F:      include/linux/async_tx.h
1985
1986 AT24 EEPROM DRIVER
1987 M:      Wolfram Sang <wsa@the-dreams.de>
1988 L:      linux-i2c@vger.kernel.org
1989 S:      Maintained
1990 F:      drivers/misc/eeprom/at24.c
1991 F:      include/linux/platform_data/at24.h
1992
1993 ATA OVER ETHERNET (AOE) DRIVER
1994 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1995 W:      http://www.openaoe.org/
1996 S:      Supported
1997 F:      Documentation/aoe/
1998 F:      drivers/block/aoe/
1999
2000 ATHEROS 71XX/9XXX GPIO DRIVER
2001 M:      Alban Bedel <albeu@free.fr>
2002 W:      https://github.com/AlbanBedel/linux
2003 T:      git git://github.com/AlbanBedel/linux
2004 S:      Maintained
2005 F:      drivers/gpio/gpio-ath79.c
2006 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2007
2008 ATHEROS ATH GENERIC UTILITIES
2009 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2010 L:      linux-wireless@vger.kernel.org
2011 S:      Supported
2012 F:      drivers/net/wireless/ath/*
2013
2014 ATHEROS ATH5K WIRELESS DRIVER
2015 M:      Jiri Slaby <jirislaby@gmail.com>
2016 M:      Nick Kossifidis <mickflemm@gmail.com>
2017 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2018 L:      linux-wireless@vger.kernel.org
2019 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2020 S:      Maintained
2021 F:      drivers/net/wireless/ath/ath5k/
2022
2023 ATHEROS ATH6KL WIRELESS DRIVER
2024 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2025 L:      linux-wireless@vger.kernel.org
2026 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2028 S:      Supported
2029 F:      drivers/net/wireless/ath/ath6kl/
2030
2031 WILOCITY WIL6210 WIRELESS DRIVER
2032 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2033 L:      linux-wireless@vger.kernel.org
2034 L:      wil6210@qca.qualcomm.com
2035 S:      Supported
2036 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2037 F:      drivers/net/wireless/ath/wil6210/
2038 F:      include/uapi/linux/wil6210_uapi.h
2039
2040 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2041 M:      Christian Lamparter <chunkeey@googlemail.com>
2042 L:      linux-wireless@vger.kernel.org
2043 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2044 S:      Maintained
2045 F:      drivers/net/wireless/ath/carl9170/
2046
2047 ATK0110 HWMON DRIVER
2048 M:      Luca Tettamanti <kronos.it@gmail.com>
2049 L:      linux-hwmon@vger.kernel.org
2050 S:      Maintained
2051 F:      drivers/hwmon/asus_atk0110.c
2052
2053 ATI_REMOTE2 DRIVER
2054 M:      Ville Syrjala <syrjala@sci.fi>
2055 S:      Maintained
2056 F:      drivers/input/misc/ati_remote2.c
2057
2058 ATLX ETHERNET DRIVERS
2059 M:      Jay Cliburn <jcliburn@gmail.com>
2060 M:      Chris Snook <chris.snook@gmail.com>
2061 L:      netdev@vger.kernel.org
2062 W:      http://sourceforge.net/projects/atl1
2063 W:      http://atl1.sourceforge.net
2064 S:      Maintained
2065 F:      drivers/net/ethernet/atheros/
2066
2067 ATM
2068 M:      Chas Williams <3chas3@gmail.com>
2069 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2070 L:      netdev@vger.kernel.org
2071 W:      http://linux-atm.sourceforge.net
2072 S:      Maintained
2073 F:      drivers/atm/
2074 F:      include/linux/atm*
2075 F:      include/uapi/linux/atm*
2076
2077 ATMEL AT91 / AT32 MCI DRIVER
2078 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2079 S:      Maintained
2080 F:      drivers/mmc/host/atmel-mci.c
2081
2082 ATMEL AT91 / AT32 SERIAL DRIVER
2083 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2084 S:      Supported
2085 F:      drivers/tty/serial/atmel_serial.c
2086
2087 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2088 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2089 S:      Supported
2090 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2091
2092 ATMEL SAMA5D2 ADC DRIVER
2093 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2094 L:      linux-iio@vger.kernel.org
2095 S:      Supported
2096 F:      drivers/iio/adc/at91-sama5d2_adc.c
2097
2098 ATMEL Audio ALSA driver
2099 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2101 S:      Supported
2102 F:      sound/soc/atmel
2103
2104 ATMEL DMA DRIVER
2105 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Supported
2108 F:      drivers/dma/at_hdmac.c
2109 F:      drivers/dma/at_hdmac_regs.h
2110 F:      include/linux/platform_data/dma-atmel.h
2111
2112 ATMEL XDMA DRIVER
2113 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2114 L:      linux-arm-kernel@lists.infradead.org
2115 L:      dmaengine@vger.kernel.org
2116 S:      Supported
2117 F:      drivers/dma/at_xdmac.c
2118
2119 ATMEL I2C DRIVER
2120 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2121 L:      linux-i2c@vger.kernel.org
2122 S:      Supported
2123 F:      drivers/i2c/busses/i2c-at91.c
2124
2125 ATMEL ISI DRIVER
2126 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2127 L:      linux-media@vger.kernel.org
2128 S:      Supported
2129 F:      drivers/media/platform/soc_camera/atmel-isi.c
2130 F:      include/media/atmel-isi.h
2131
2132 ATMEL LCDFB DRIVER
2133 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2134 L:      linux-fbdev@vger.kernel.org
2135 S:      Maintained
2136 F:      drivers/video/fbdev/atmel_lcdfb.c
2137 F:      include/video/atmel_lcdc.h
2138
2139 ATMEL MACB ETHERNET DRIVER
2140 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2141 S:      Supported
2142 F:      drivers/net/ethernet/cadence/
2143
2144 ATMEL NAND DRIVER
2145 M:      Wenyou Yang <wenyou.yang@atmel.com>
2146 M:      Josh Wu <rainyfeeling@outlook.com>
2147 L:      linux-mtd@lists.infradead.org
2148 S:      Supported
2149 F:      drivers/mtd/nand/atmel_nand*
2150
2151 ATMEL SDMMC DRIVER
2152 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2153 L:      linux-mmc@vger.kernel.org
2154 S:      Supported
2155 F:      drivers/mmc/host/sdhci-of-at91.c
2156
2157 ATMEL SPI DRIVER
2158 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2159 S:      Supported
2160 F:      drivers/spi/spi-atmel.*
2161
2162 ATMEL SSC DRIVER
2163 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Supported
2166 F:      drivers/misc/atmel-ssc.c
2167 F:      include/linux/atmel-ssc.h
2168
2169 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2170 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Supported
2173 F:      drivers/misc/atmel_tclib.c
2174 F:      drivers/clocksource/tcb_clksrc.c
2175
2176 ATMEL USBA UDC DRIVER
2177 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2179 S:      Supported
2180 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2181
2182 ATMEL WIRELESS DRIVER
2183 M:      Simon Kelley <simon@thekelleys.org.uk>
2184 L:      linux-wireless@vger.kernel.org
2185 W:      http://www.thekelleys.org.uk/atmel
2186 W:      http://atmelwlandriver.sourceforge.net/
2187 S:      Maintained
2188 F:      drivers/net/wireless/atmel/atmel*
2189
2190 ATMEL MAXTOUCH DRIVER
2191 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2192 T:      git git://github.com/atmel-maxtouch/linux.git
2193 S:      Supported
2194 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2195 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2196 F:      include/linux/platform_data/atmel_mxt_ts.h
2197
2198 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2199 M:      Bradley Grove <linuxdrivers@attotech.com>
2200 L:      linux-scsi@vger.kernel.org
2201 W:      http://www.attotech.com
2202 S:      Supported
2203 F:      drivers/scsi/esas2r
2204
2205 ATUSB IEEE 802.15.4 RADIO DRIVER
2206 M:      Stefan Schmidt <stefan@osg.samsung.com>
2207 L:      linux-wpan@vger.kernel.org
2208 S:      Maintained
2209 F:      drivers/net/ieee802154/atusb.c
2210 F:      drivers/net/ieee802154/atusb.h
2211 F:      drivers/net/ieee802154/at86rf230.h
2212
2213 AUDIT SUBSYSTEM
2214 M:      Paul Moore <paul@paul-moore.com>
2215 M:      Eric Paris <eparis@redhat.com>
2216 L:      linux-audit@redhat.com (moderated for non-subscribers)
2217 W:      http://people.redhat.com/sgrubb/audit/
2218 T:      git git://git.infradead.org/users/pcmoore/audit
2219 S:      Maintained
2220 F:      include/linux/audit.h
2221 F:      include/uapi/linux/audit.h
2222 F:      kernel/audit*
2223
2224 AUXILIARY DISPLAY DRIVERS
2225 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2226 W:      http://miguelojeda.es/auxdisplay.htm
2227 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2228 S:      Maintained
2229 F:      drivers/auxdisplay/
2230 F:      include/linux/cfag12864b.h
2231
2232 AVR32 ARCHITECTURE
2233 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2234 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2235 W:      http://www.atmel.com/products/AVR32/
2236 W:      http://mirror.egtvedt.no/avr32linux.org/
2237 W:      http://avrfreaks.net/
2238 S:      Maintained
2239 F:      arch/avr32/
2240
2241 AVR32/AT32AP MACHINE SUPPORT
2242 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2243 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2244 S:      Maintained
2245 F:      arch/avr32/mach-at32ap/
2246
2247 AX.25 NETWORK LAYER
2248 M:      Ralf Baechle <ralf@linux-mips.org>
2249 L:      linux-hams@vger.kernel.org
2250 W:      http://www.linux-ax25.org/
2251 S:      Maintained
2252 F:      include/uapi/linux/ax25.h
2253 F:      include/net/ax25.h
2254 F:      net/ax25/
2255
2256 AZ6007 DVB DRIVER
2257 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2258 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2259 L:      linux-media@vger.kernel.org
2260 W:      https://linuxtv.org
2261 T:      git git://linuxtv.org/media_tree.git
2262 S:      Maintained
2263 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2264
2265 AZTECH FM RADIO RECEIVER DRIVER
2266 M:      Hans Verkuil <hverkuil@xs4all.nl>
2267 L:      linux-media@vger.kernel.org
2268 T:      git git://linuxtv.org/media_tree.git
2269 W:      https://linuxtv.org
2270 S:      Maintained
2271 F:      drivers/media/radio/radio-aztech*
2272
2273 B43 WIRELESS DRIVER
2274 L:      linux-wireless@vger.kernel.org
2275 L:      b43-dev@lists.infradead.org
2276 W:      http://wireless.kernel.org/en/users/Drivers/b43
2277 S:      Odd Fixes
2278 F:      drivers/net/wireless/broadcom/b43/
2279
2280 B43LEGACY WIRELESS DRIVER
2281 M:      Larry Finger <Larry.Finger@lwfinger.net>
2282 L:      linux-wireless@vger.kernel.org
2283 L:      b43-dev@lists.infradead.org
2284 W:      http://wireless.kernel.org/en/users/Drivers/b43
2285 S:      Maintained
2286 F:      drivers/net/wireless/broadcom/b43legacy/
2287
2288 BACKLIGHT CLASS/SUBSYSTEM
2289 M:      Jingoo Han <jingoohan1@gmail.com>
2290 M:      Lee Jones <lee.jones@linaro.org>
2291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2292 S:      Maintained
2293 F:      drivers/video/backlight/
2294 F:      include/linux/backlight.h
2295
2296 BATMAN ADVANCED
2297 M:      Marek Lindner <mareklindner@neomailbox.ch>
2298 M:      Simon Wunderlich <sw@simonwunderlich.de>
2299 M:      Antonio Quartulli <a@unstable.cc>
2300 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2301 W:      https://www.open-mesh.org/
2302 Q:      https://patchwork.open-mesh.org/project/batman/list/
2303 S:      Maintained
2304 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2305 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2306 F:      Documentation/networking/batman-adv.txt
2307 F:      net/batman-adv/
2308
2309 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2310 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2311 L:      linux-hams@vger.kernel.org
2312 W:      http://www.baycom.org/~tom/ham/ham.html
2313 S:      Maintained
2314 F:      drivers/net/hamradio/baycom*
2315
2316 BCACHE (BLOCK LAYER CACHE)
2317 M:      Kent Overstreet <kent.overstreet@gmail.com>
2318 L:      linux-bcache@vger.kernel.org
2319 W:      http://bcache.evilpiepirate.org
2320 S:      Orphan
2321 F:      drivers/md/bcache/
2322
2323 BDISP ST MEDIA DRIVER
2324 M:      Fabien Dessenne <fabien.dessenne@st.com>
2325 L:      linux-media@vger.kernel.org
2326 T:      git git://linuxtv.org/media_tree.git
2327 W:      https://linuxtv.org
2328 S:      Supported
2329 F:      drivers/media/platform/sti/bdisp
2330
2331 BEFS FILE SYSTEM
2332 S:      Orphan
2333 F:      Documentation/filesystems/befs.txt
2334 F:      fs/befs/
2335
2336 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2337 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2338 L:      netdev@vger.kernel.org
2339 S:      Maintained
2340 F:      drivers/net/ethernet/ec_bhf.c
2341
2342 BFS FILE SYSTEM
2343 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2344 S:      Maintained
2345 F:      Documentation/filesystems/bfs.txt
2346 F:      fs/bfs/
2347 F:      include/uapi/linux/bfs_fs.h
2348
2349 BLACKFIN ARCHITECTURE
2350 M:      Steven Miao <realmz6@gmail.com>
2351 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2352 T:      git git://git.code.sf.net/p/adi-linux/code
2353 W:      http://blackfin.uclinux.org
2354 S:      Supported
2355 F:      arch/blackfin/
2356
2357 BLACKFIN EMAC DRIVER
2358 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2359 W:      http://blackfin.uclinux.org
2360 S:      Supported
2361 F:      drivers/net/ethernet/adi/
2362
2363 BLACKFIN RTC DRIVER
2364 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2365 W:      http://blackfin.uclinux.org
2366 S:      Supported
2367 F:      drivers/rtc/rtc-bfin.c
2368
2369 BLACKFIN SDH DRIVER
2370 M:      Sonic Zhang <sonic.zhang@analog.com>
2371 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2372 W:      http://blackfin.uclinux.org
2373 S:      Supported
2374 F:      drivers/mmc/host/bfin_sdh.c
2375
2376 BLACKFIN SERIAL DRIVER
2377 M:      Sonic Zhang <sonic.zhang@analog.com>
2378 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2379 W:      http://blackfin.uclinux.org
2380 S:      Supported
2381 F:      drivers/tty/serial/bfin_uart.c
2382
2383 BLACKFIN WATCHDOG DRIVER
2384 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2385 W:      http://blackfin.uclinux.org
2386 S:      Supported
2387 F:      drivers/watchdog/bfin_wdt.c
2388
2389 BLACKFIN I2C TWI DRIVER
2390 M:      Sonic Zhang <sonic.zhang@analog.com>
2391 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2392 W:      http://blackfin.uclinux.org/
2393 S:      Supported
2394 F:      drivers/i2c/busses/i2c-bfin-twi.c
2395
2396 BLACKFIN MEDIA DRIVER
2397 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2398 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2399 W:      http://blackfin.uclinux.org/
2400 S:      Supported
2401 F:      drivers/media/platform/blackfin/
2402 F:      drivers/media/i2c/adv7183*
2403 F:      drivers/media/i2c/vs6624*
2404
2405 BLINKM RGB LED DRIVER
2406 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2407 S:      Maintained
2408 F:      drivers/leds/leds-blinkm.c
2409
2410 BLOCK LAYER
2411 M:      Jens Axboe <axboe@kernel.dk>
2412 L:      linux-block@vger.kernel.org
2413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2414 S:      Maintained
2415 F:      block/
2416 F:      kernel/trace/blktrace.c
2417
2418 BLOCK2MTD DRIVER
2419 M:      Joern Engel <joern@lazybastard.org>
2420 L:      linux-mtd@lists.infradead.org
2421 S:      Maintained
2422 F:      drivers/mtd/devices/block2mtd.c
2423
2424 BLUETOOTH DRIVERS
2425 M:      Marcel Holtmann <marcel@holtmann.org>
2426 M:      Gustavo Padovan <gustavo@padovan.org>
2427 M:      Johan Hedberg <johan.hedberg@gmail.com>
2428 L:      linux-bluetooth@vger.kernel.org
2429 W:      http://www.bluez.org/
2430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2432 S:      Maintained
2433 F:      drivers/bluetooth/
2434
2435 BLUETOOTH SUBSYSTEM
2436 M:      Marcel Holtmann <marcel@holtmann.org>
2437 M:      Gustavo Padovan <gustavo@padovan.org>
2438 M:      Johan Hedberg <johan.hedberg@gmail.com>
2439 L:      linux-bluetooth@vger.kernel.org
2440 W:      http://www.bluez.org/
2441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2443 S:      Maintained
2444 F:      net/bluetooth/
2445 F:      include/net/bluetooth/
2446
2447 BONDING DRIVER
2448 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2449 M:      Veaceslav Falico <vfalico@gmail.com>
2450 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2451 L:      netdev@vger.kernel.org
2452 W:      http://sourceforge.net/projects/bonding/
2453 S:      Supported
2454 F:      drivers/net/bonding/
2455 F:      include/uapi/linux/if_bonding.h
2456
2457 BPF (Safe dynamic programs and tools)
2458 M:      Alexei Starovoitov <ast@kernel.org>
2459 L:      netdev@vger.kernel.org
2460 L:      linux-kernel@vger.kernel.org
2461 S:      Supported
2462 F:      kernel/bpf/
2463
2464 BROADCOM B44 10/100 ETHERNET DRIVER
2465 M:      Gary Zambrano <zambrano@broadcom.com>
2466 L:      netdev@vger.kernel.org
2467 S:      Supported
2468 F:      drivers/net/ethernet/broadcom/b44.*
2469
2470 BROADCOM GENET ETHERNET DRIVER
2471 M:      Florian Fainelli <f.fainelli@gmail.com>
2472 L:      netdev@vger.kernel.org
2473 S:      Supported
2474 F:      drivers/net/ethernet/broadcom/genet/
2475
2476 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2477 M:      Sony Chacko <sony.chacko@qlogic.com>
2478 M:      Dept-HSGLinuxNICDev@qlogic.com
2479 L:      netdev@vger.kernel.org
2480 S:      Supported
2481 F:      drivers/net/ethernet/broadcom/bnx2.*
2482 F:      drivers/net/ethernet/broadcom/bnx2_*
2483
2484 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2485 M:      Ariel Elior <ariel.elior@qlogic.com>
2486 L:      netdev@vger.kernel.org
2487 S:      Supported
2488 F:      drivers/net/ethernet/broadcom/bnx2x/
2489
2490 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2491 M:      Florian Fainelli <f.fainelli@gmail.com>
2492 M:      Ray Jui <rjui@broadcom.com>
2493 M:      Scott Branden <sbranden@broadcom.com>
2494 L:      bcm-kernel-feedback-list@broadcom.com
2495 T:      git git://github.com/broadcom/mach-bcm
2496 S:      Maintained
2497 F:      arch/arm/mach-bcm/
2498 F:      arch/arm/boot/dts/bcm113*
2499 F:      arch/arm/boot/dts/bcm216*
2500 F:      arch/arm/boot/dts/bcm281*
2501 F:      arch/arm64/boot/dts/broadcom/
2502 F:      arch/arm/configs/bcm_defconfig
2503 F:      drivers/mmc/host/sdhci-bcm-kona.c
2504 F:      drivers/clocksource/bcm_kona_timer.c
2505
2506 BROADCOM BCM2835 ARM ARCHITECTURE
2507 M:      Stephen Warren <swarren@wwwdotorg.org>
2508 M:      Lee Jones <lee@kernel.org>
2509 M:      Eric Anholt <eric@anholt.net>
2510 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2513 S:      Maintained
2514 N:      bcm2835
2515
2516 BROADCOM BCM47XX MIPS ARCHITECTURE
2517 M:      Hauke Mehrtens <hauke@hauke-m.de>
2518 M:      Rafał Miłecki <zajec5@gmail.com>
2519 L:      linux-mips@linux-mips.org
2520 S:      Maintained
2521 F:      Documentation/devicetree/bindings/mips/brcm/
2522 F:      arch/mips/bcm47xx/*
2523 F:      arch/mips/include/asm/mach-bcm47xx/*
2524
2525 BROADCOM BCM5301X ARM ARCHITECTURE
2526 M:      Hauke Mehrtens <hauke@hauke-m.de>
2527 L:      linux-arm-kernel@lists.infradead.org
2528 S:      Maintained
2529 F:      arch/arm/mach-bcm/bcm_5301x.c
2530 F:      arch/arm/boot/dts/bcm5301x.dtsi
2531 F:      arch/arm/boot/dts/bcm470*
2532
2533 BROADCOM BCM63XX ARM ARCHITECTURE
2534 M:      Florian Fainelli <f.fainelli@gmail.com>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 L:      bcm-kernel-feedback-list@broadcom.com
2537 T:      git git://github.com/broadcom/stblinux.git
2538 S:      Maintained
2539 F:      arch/arm/mach-bcm/bcm63xx.c
2540 F:      arch/arm/include/debug/bcm63xx.S
2541
2542 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2543 M:      Kevin Cernekee <cernekee@gmail.com>
2544 L:      linux-usb@vger.kernel.org
2545 S:      Maintained
2546 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2547
2548 BROADCOM BCM7XXX ARM ARCHITECTURE
2549 M:      Brian Norris <computersforpeace@gmail.com>
2550 M:      Gregory Fong <gregory.0xf0@gmail.com>
2551 M:      Florian Fainelli <f.fainelli@gmail.com>
2552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2553 L:      bcm-kernel-feedback-list@broadcom.com
2554 T:      git git://github.com/broadcom/stblinux.git
2555 S:      Maintained
2556 F:      arch/arm/mach-bcm/*brcmstb*
2557 F:      arch/arm/boot/dts/bcm7*.dts*
2558 F:      drivers/bus/brcmstb_gisb.c
2559 N:      brcmstb
2560
2561 BROADCOM BMIPS MIPS ARCHITECTURE
2562 M:      Kevin Cernekee <cernekee@gmail.com>
2563 M:      Florian Fainelli <f.fainelli@gmail.com>
2564 L:      linux-mips@linux-mips.org
2565 T:      git git://github.com/broadcom/stblinux.git
2566 S:      Maintained
2567 F:      arch/mips/bmips/*
2568 F:      arch/mips/include/asm/mach-bmips/*
2569 F:      arch/mips/kernel/*bmips*
2570 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2571 F:      drivers/irqchip/irq-bcm63*
2572 F:      drivers/irqchip/irq-bcm7*
2573 F:      drivers/irqchip/irq-brcmstb*
2574 F:      include/linux/bcm963xx_nvram.h
2575 F:      include/linux/bcm963xx_tag.h
2576
2577 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2578 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2579 M:      Prashant Sreedharan <prashant@broadcom.com>
2580 M:      Michael Chan <mchan@broadcom.com>
2581 L:      netdev@vger.kernel.org
2582 S:      Supported
2583 F:      drivers/net/ethernet/broadcom/tg3.*
2584
2585 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2586 M:      Brett Rudley <brudley@broadcom.com>
2587 M:      Arend van Spriel <arend@broadcom.com>
2588 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2589 M:      Hante Meuleman <meuleman@broadcom.com>
2590 L:      linux-wireless@vger.kernel.org
2591 L:      brcm80211-dev-list@broadcom.com
2592 S:      Supported
2593 F:      drivers/net/wireless/broadcom/brcm80211/
2594
2595 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2596 M:      QLogic-Storage-Upstream@qlogic.com
2597 L:      linux-scsi@vger.kernel.org
2598 S:      Supported
2599 F:      drivers/scsi/bnx2fc/
2600
2601 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2602 M:      QLogic-Storage-Upstream@qlogic.com
2603 L:      linux-scsi@vger.kernel.org
2604 S:      Supported
2605 F:      drivers/scsi/bnx2i/
2606
2607 BROADCOM IPROC ARM ARCHITECTURE
2608 M:      Ray Jui <rjui@broadcom.com>
2609 M:      Scott Branden <sbranden@broadcom.com>
2610 M:      Jon Mason <jonmason@broadcom.com>
2611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2612 L:      bcm-kernel-feedback-list@broadcom.com
2613 T:      git git://github.com/broadcom/cygnus-linux.git
2614 S:      Maintained
2615 N:      iproc
2616 N:      cygnus
2617 N:      nsp
2618 N:      bcm9113*
2619 N:      bcm9583*
2620 N:      bcm9585*
2621 N:      bcm9586*
2622 N:      bcm988312
2623 N:      bcm113*
2624 N:      bcm583*
2625 N:      bcm585*
2626 N:      bcm586*
2627 N:      bcm88312
2628
2629 BROADCOM BRCMSTB GPIO DRIVER
2630 M:      Gregory Fong <gregory.0xf0@gmail.com>
2631 L:      bcm-kernel-feedback-list@broadcom.com
2632 S:      Supported
2633 F:      drivers/gpio/gpio-brcmstb.c
2634 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2635
2636 BROADCOM KONA GPIO DRIVER
2637 M:      Ray Jui <rjui@broadcom.com>
2638 L:      bcm-kernel-feedback-list@broadcom.com
2639 S:      Supported
2640 F:      drivers/gpio/gpio-bcm-kona.c
2641 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2642
2643 BROADCOM NVRAM DRIVER
2644 M:      Rafał Miłecki <zajec5@gmail.com>
2645 L:      linux-mips@linux-mips.org
2646 S:      Maintained
2647 F:      drivers/firmware/broadcom/*
2648
2649 BROADCOM STB NAND FLASH DRIVER
2650 M:      Brian Norris <computersforpeace@gmail.com>
2651 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2652 L:      linux-mtd@lists.infradead.org
2653 L:      bcm-kernel-feedback-list@broadcom.com
2654 S:      Maintained
2655 F:      drivers/mtd/nand/brcmnand/
2656
2657 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2658 M:      Rafał Miłecki <zajec5@gmail.com>
2659 L:      linux-wireless@vger.kernel.org
2660 S:      Maintained
2661 F:      drivers/bcma/
2662 F:      include/linux/bcma/
2663
2664 BROADCOM SYSTEMPORT ETHERNET DRIVER
2665 M:      Florian Fainelli <f.fainelli@gmail.com>
2666 L:      netdev@vger.kernel.org
2667 S:      Supported
2668 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2669
2670 BROADCOM VULCAN ARM64 SOC
2671 M:      Jayachandran C. <jchandra@broadcom.com>
2672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2673 L:      bcm-kernel-feedback-list@broadcom.com
2674 S:      Maintained
2675 F:      arch/arm64/boot/dts/broadcom/vulcan*
2676
2677 BROCADE BFA FC SCSI DRIVER
2678 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2679 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2680 L:      linux-scsi@vger.kernel.org
2681 S:      Supported
2682 F:      drivers/scsi/bfa/
2683
2684 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2685 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2686 L:      netdev@vger.kernel.org
2687 S:      Supported
2688 F:      drivers/net/ethernet/brocade/bna/
2689
2690 BSG (block layer generic sg v4 driver)
2691 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2692 L:      linux-scsi@vger.kernel.org
2693 S:      Supported
2694 F:      block/bsg.c
2695 F:      include/linux/bsg.h
2696 F:      include/uapi/linux/bsg.h
2697
2698 BT87X AUDIO DRIVER
2699 M:      Clemens Ladisch <clemens@ladisch.de>
2700 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2701 T:      git git://git.alsa-project.org/alsa-kernel.git
2702 S:      Maintained
2703 F:      Documentation/sound/alsa/Bt87x.txt
2704 F:      sound/pci/bt87x.c
2705
2706 BT8XXGPIO DRIVER
2707 M:      Michael Buesch <m@bues.ch>
2708 W:      http://bu3sch.de/btgpio.php
2709 S:      Maintained
2710 F:      drivers/gpio/gpio-bt8xx.c
2711
2712 BTRFS FILE SYSTEM
2713 M:      Chris Mason <clm@fb.com>
2714 M:      Josef Bacik <jbacik@fb.com>
2715 M:      David Sterba <dsterba@suse.com>
2716 L:      linux-btrfs@vger.kernel.org
2717 W:      http://btrfs.wiki.kernel.org/
2718 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2720 S:      Maintained
2721 F:      Documentation/filesystems/btrfs.txt
2722 F:      fs/btrfs/
2723
2724 BTTV VIDEO4LINUX DRIVER
2725 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2726 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2727 L:      linux-media@vger.kernel.org
2728 W:      https://linuxtv.org
2729 T:      git git://linuxtv.org/media_tree.git
2730 S:      Odd fixes
2731 F:      Documentation/video4linux/bttv/
2732 F:      drivers/media/pci/bt8xx/bttv*
2733
2734 BUSLOGIC SCSI DRIVER
2735 M:      Khalid Aziz <khalid@gonehiking.org>
2736 L:      linux-scsi@vger.kernel.org
2737 S:      Maintained
2738 F:      drivers/scsi/BusLogic.*
2739 F:      drivers/scsi/FlashPoint.*
2740
2741 C-MEDIA CMI8788 DRIVER
2742 M:      Clemens Ladisch <clemens@ladisch.de>
2743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2744 T:      git git://git.alsa-project.org/alsa-kernel.git
2745 S:      Maintained
2746 F:      sound/pci/oxygen/
2747
2748 C6X ARCHITECTURE
2749 M:      Mark Salter <msalter@redhat.com>
2750 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2751 L:      linux-c6x-dev@linux-c6x.org
2752 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2753 S:      Maintained
2754 F:      arch/c6x/
2755
2756 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2757 M:      David Howells <dhowells@redhat.com>
2758 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2759 S:      Supported
2760 F:      Documentation/filesystems/caching/cachefiles.txt
2761 F:      fs/cachefiles/
2762
2763 CADET FM/AM RADIO RECEIVER DRIVER
2764 M:      Hans Verkuil <hverkuil@xs4all.nl>
2765 L:      linux-media@vger.kernel.org
2766 T:      git git://linuxtv.org/media_tree.git
2767 W:      https://linuxtv.org
2768 S:      Maintained
2769 F:      drivers/media/radio/radio-cadet*
2770
2771 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2772 M:      Jonathan Corbet <corbet@lwn.net>
2773 L:      linux-media@vger.kernel.org
2774 T:      git git://linuxtv.org/media_tree.git
2775 S:      Maintained
2776 F:      Documentation/video4linux/cafe_ccic
2777 F:      drivers/media/platform/marvell-ccic/
2778
2779 CAIF NETWORK LAYER
2780 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2781 L:      netdev@vger.kernel.org
2782 S:      Supported
2783 F:      Documentation/networking/caif/
2784 F:      drivers/net/caif/
2785 F:      include/uapi/linux/caif/
2786 F:      include/net/caif/
2787 F:      net/caif/
2788
2789 CALGARY x86-64 IOMMU
2790 M:      Muli Ben-Yehuda <mulix@mulix.org>
2791 M:      Jon Mason <jdmason@kudzu.us>
2792 L:      iommu@lists.linux-foundation.org
2793 S:      Maintained
2794 F:      arch/x86/kernel/pci-calgary_64.c
2795 F:      arch/x86/kernel/tce_64.c
2796 F:      arch/x86/include/asm/calgary.h
2797 F:      arch/x86/include/asm/tce.h
2798
2799 CAN NETWORK LAYER
2800 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2801 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2802 L:      linux-can@vger.kernel.org
2803 W:      https://github.com/linux-can
2804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2806 S:      Maintained
2807 F:      Documentation/networking/can.txt
2808 F:      net/can/
2809 F:      include/linux/can/core.h
2810 F:      include/uapi/linux/can.h
2811 F:      include/uapi/linux/can/bcm.h
2812 F:      include/uapi/linux/can/raw.h
2813 F:      include/uapi/linux/can/gw.h
2814
2815 CAN NETWORK DRIVERS
2816 M:      Wolfgang Grandegger <wg@grandegger.com>
2817 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2818 L:      linux-can@vger.kernel.org
2819 W:      https://github.com/linux-can
2820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2822 S:      Maintained
2823 F:      drivers/net/can/
2824 F:      include/linux/can/dev.h
2825 F:      include/linux/can/platform/
2826 F:      include/uapi/linux/can/error.h
2827 F:      include/uapi/linux/can/netlink.h
2828
2829 CAPABILITIES
2830 M:      Serge Hallyn <serge.hallyn@canonical.com>
2831 L:      linux-security-module@vger.kernel.org
2832 S:      Supported
2833 F:      include/linux/capability.h
2834 F:      include/uapi/linux/capability.h
2835 F:      security/commoncap.c
2836 F:      kernel/capability.c
2837
2838 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2839 M:      Kevin Tsai <ktsai@capellamicro.com>
2840 S:      Maintained
2841 F:      drivers/iio/light/cm*
2842 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2843
2844 CAVIUM LIQUIDIO NETWORK DRIVER
2845 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2846 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2847 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2848 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2849 L:     netdev@vger.kernel.org
2850 W:     http://www.cavium.com
2851 S:     Supported
2852 F:     drivers/net/ethernet/cavium/liquidio/
2853
2854 CC2520 IEEE-802.15.4 RADIO DRIVER
2855 M:      Varka Bhadram <varkabhadram@gmail.com>
2856 L:      linux-wpan@vger.kernel.org
2857 S:      Maintained
2858 F:      drivers/net/ieee802154/cc2520.c
2859 F:      include/linux/spi/cc2520.h
2860 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2861
2862 CEC DRIVER
2863 M:      Hans Verkuil <hans.verkuil@cisco.com>
2864 L:      linux-media@vger.kernel.org
2865 T:      git git://linuxtv.org/media_tree.git
2866 W:      http://linuxtv.org
2867 S:      Supported
2868 F:      Documentation/cec.txt
2869 F:      Documentation/DocBook/media/v4l/cec*
2870 F:      drivers/staging/media/cec/
2871 F:      drivers/media/cec-edid.c
2872 F:      drivers/media/rc/keymaps/rc-cec.c
2873 F:      include/media/cec.h
2874 F:      include/media/cec-edid.h
2875 F:      include/linux/cec.h
2876 F:      include/linux/cec-funcs.h
2877
2878 CELL BROADBAND ENGINE ARCHITECTURE
2879 M:      Arnd Bergmann <arnd@arndb.de>
2880 L:      linuxppc-dev@lists.ozlabs.org
2881 W:      http://www.ibm.com/developerworks/power/cell/
2882 S:      Supported
2883 F:      arch/powerpc/include/asm/cell*.h
2884 F:      arch/powerpc/include/asm/spu*.h
2885 F:      arch/powerpc/include/uapi/asm/spu*.h
2886 F:      arch/powerpc/oprofile/*cell*
2887 F:      arch/powerpc/platforms/cell/
2888
2889 CEPH COMMON CODE (LIBCEPH)
2890 M:      Ilya Dryomov <idryomov@gmail.com>
2891 M:      "Yan, Zheng" <zyan@redhat.com>
2892 M:      Sage Weil <sage@redhat.com>
2893 L:      ceph-devel@vger.kernel.org
2894 W:      http://ceph.com/
2895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2896 T:      git git://github.com/ceph/ceph-client.git
2897 S:      Supported
2898 F:      net/ceph/
2899 F:      include/linux/ceph/
2900 F:      include/linux/crush/
2901
2902 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2903 M:      "Yan, Zheng" <zyan@redhat.com>
2904 M:      Sage Weil <sage@redhat.com>
2905 M:      Ilya Dryomov <idryomov@gmail.com>
2906 L:      ceph-devel@vger.kernel.org
2907 W:      http://ceph.com/
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2909 T:      git git://github.com/ceph/ceph-client.git
2910 S:      Supported
2911 F:      Documentation/filesystems/ceph.txt
2912 F:      fs/ceph/
2913
2914 CERTIFICATE HANDLING:
2915 M:      David Howells <dhowells@redhat.com>
2916 M:      David Woodhouse <dwmw2@infradead.org>
2917 L:      keyrings@vger.kernel.org
2918 S:      Maintained
2919 F:      Documentation/module-signing.txt
2920 F:      certs/
2921 F:      scripts/sign-file.c
2922 F:      scripts/extract-cert.c
2923
2924 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2925 L:      linux-usb@vger.kernel.org
2926 S:      Orphan
2927 F:      Documentation/usb/WUSB-Design-overview.txt
2928 F:      Documentation/usb/wusb-cbaf
2929 F:      drivers/usb/host/hwa-hc.c
2930 F:      drivers/usb/host/whci/
2931 F:      drivers/usb/wusbcore/
2932 F:      include/linux/usb/wusb*
2933
2934 CFAG12864B LCD DRIVER
2935 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2936 W:      http://miguelojeda.es/auxdisplay.htm
2937 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2938 S:      Maintained
2939 F:      drivers/auxdisplay/cfag12864b.c
2940 F:      include/linux/cfag12864b.h
2941
2942 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2943 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2944 W:      http://miguelojeda.es/auxdisplay.htm
2945 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2946 S:      Maintained
2947 F:      drivers/auxdisplay/cfag12864bfb.c
2948 F:      include/linux/cfag12864b.h
2949
2950 CFG80211 and NL80211
2951 M:      Johannes Berg <johannes@sipsolutions.net>
2952 L:      linux-wireless@vger.kernel.org
2953 W:      http://wireless.kernel.org/
2954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2956 S:      Maintained
2957 F:      include/uapi/linux/nl80211.h
2958 F:      include/net/cfg80211.h
2959 F:      net/wireless/*
2960 X:      net/wireless/wext*
2961
2962 CHAR and MISC DRIVERS
2963 M:      Arnd Bergmann <arnd@arndb.de>
2964 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2966 S:      Supported
2967 F:      drivers/char/*
2968 F:      drivers/misc/*
2969 F:      include/linux/miscdevice.h
2970
2971 CHECKPATCH
2972 M:      Andy Whitcroft <apw@canonical.com>
2973 M:      Joe Perches <joe@perches.com>
2974 S:      Maintained
2975 F:      scripts/checkpatch.pl
2976
2977 CHINESE DOCUMENTATION
2978 M:      Harry Wei <harryxiyou@gmail.com>
2979 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2980 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      Documentation/zh_CN/
2983
2984 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2985 M:      Peter Chen <Peter.Chen@nxp.com>
2986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2987 L:      linux-usb@vger.kernel.org
2988 S:      Maintained
2989 F:      drivers/usb/chipidea/
2990
2991 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2992 M:      Hans de Goede <hdegoede@redhat.com>
2993 L:      linux-input@vger.kernel.org
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2996 F:      drivers/input/touchscreen/chipone_icn8318.c
2997
2998 CHROME HARDWARE PLATFORM SUPPORT
2999 M:      Olof Johansson <olof@lixom.net>
3000 S:      Maintained
3001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3002 F:      drivers/platform/chrome/
3003
3004 CISCO VIC ETHERNET NIC DRIVER
3005 M:      Christian Benvenuti <benve@cisco.com>
3006 M:      Sujith Sankar <ssujith@cisco.com>
3007 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3008 M:      Neel Patel <neepatel@cisco.com>
3009 S:      Supported
3010 F:      drivers/net/ethernet/cisco/enic/
3011
3012 CISCO VIC LOW LATENCY NIC DRIVER
3013 M:      Christian Benvenuti <benve@cisco.com>
3014 M:      Dave Goodell <dgoodell@cisco.com>
3015 S:      Supported
3016 F:      drivers/infiniband/hw/usnic/
3017
3018 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3019 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3020 L:      netdev@vger.kernel.org
3021 S:      Maintained
3022 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3023
3024 CIRRUS LOGIC AUDIO CODEC DRIVERS
3025 M:      Brian Austin <brian.austin@cirrus.com>
3026 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3027 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3028 S:      Maintained
3029 F:      sound/soc/codecs/cs*
3030
3031 CLEANCACHE API
3032 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3033 L:      linux-kernel@vger.kernel.org
3034 S:      Maintained
3035 F:      mm/cleancache.c
3036 F:      include/linux/cleancache.h
3037
3038 CLK API
3039 M:      Russell King <linux@armlinux.org.uk>
3040 L:      linux-clk@vger.kernel.org
3041 S:      Maintained
3042 F:      include/linux/clk.h
3043
3044 CLOCKSOURCE, CLOCKEVENT DRIVERS
3045 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3046 M:      Thomas Gleixner <tglx@linutronix.de>
3047 L:      linux-kernel@vger.kernel.org
3048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3049 S:      Supported
3050 F:      drivers/clocksource
3051
3052 CISCO FCOE HBA DRIVER
3053 M:      Hiral Patel <hiralpat@cisco.com>
3054 M:      Suma Ramars <sramars@cisco.com>
3055 M:      Brian Uchino <buchino@cisco.com>
3056 L:      linux-scsi@vger.kernel.org
3057 S:      Supported
3058 F:      drivers/scsi/fnic/
3059
3060 CISCO SCSI HBA DRIVER
3061 M:      Narsimhulu Musini <nmusini@cisco.com>
3062 M:      Sesidhar Baddela <sebaddel@cisco.com>
3063 L:      linux-scsi@vger.kernel.org
3064 S:      Supported
3065 F:      drivers/scsi/snic/
3066
3067 CMPC ACPI DRIVER
3068 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3069 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3070 L:      platform-driver-x86@vger.kernel.org
3071 S:      Supported
3072 F:      drivers/platform/x86/classmate-laptop.c
3073
3074 COBALT MEDIA DRIVER
3075 M:      Hans Verkuil <hans.verkuil@cisco.com>
3076 L:      linux-media@vger.kernel.org
3077 T:      git git://linuxtv.org/media_tree.git
3078 W:      https://linuxtv.org
3079 S:      Supported
3080 F:      drivers/media/pci/cobalt/
3081
3082 COCCINELLE/Semantic Patches (SmPL)
3083 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3084 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3085 M:      Nicolas Palix <nicolas.palix@imag.fr>
3086 M:      Michal Marek <mmarek@suse.com>
3087 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3089 W:      http://coccinelle.lip6.fr/
3090 S:      Supported
3091 F:      Documentation/coccinelle.txt
3092 F:      scripts/coccinelle/
3093 F:      scripts/coccicheck
3094
3095 CODA FILE SYSTEM
3096 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3097 M:      coda@cs.cmu.edu
3098 L:      codalist@coda.cs.cmu.edu
3099 W:      http://www.coda.cs.cmu.edu/
3100 S:      Maintained
3101 F:      Documentation/filesystems/coda.txt
3102 F:      fs/coda/
3103 F:      include/linux/coda*.h
3104 F:      include/uapi/linux/coda*.h
3105
3106 CODA V4L2 MEM2MEM DRIVER
3107 M:      Philipp Zabel <p.zabel@pengutronix.de>
3108 L:      linux-media@vger.kernel.org
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/media/coda.txt
3111 F:      drivers/media/platform/coda/
3112
3113 COMMON CLK FRAMEWORK
3114 M:      Michael Turquette <mturquette@baylibre.com>
3115 M:      Stephen Boyd <sboyd@codeaurora.org>
3116 L:      linux-clk@vger.kernel.org
3117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3118 S:      Maintained
3119 F:      Documentation/devicetree/bindings/clock/
3120 F:      drivers/clk/
3121 X:      drivers/clk/clkdev.c
3122 F:      include/linux/clk-pr*
3123 F:      include/linux/clk/
3124
3125 COMMON INTERNET FILE SYSTEM (CIFS)
3126 M:      Steve French <sfrench@samba.org>
3127 L:      linux-cifs@vger.kernel.org
3128 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3129 W:      http://linux-cifs.samba.org/
3130 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3131 S:      Supported
3132 F:      Documentation/filesystems/cifs/
3133 F:      fs/cifs/
3134
3135 COMPACTPCI HOTPLUG CORE
3136 M:      Scott Murray <scott@spiteful.org>
3137 L:      linux-pci@vger.kernel.org
3138 S:      Maintained
3139 F:      drivers/pci/hotplug/cpci_hotplug*
3140
3141 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3142 M:      Scott Murray <scott@spiteful.org>
3143 L:      linux-pci@vger.kernel.org
3144 S:      Maintained
3145 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3146
3147 COMPACTPCI HOTPLUG GENERIC DRIVER
3148 M:      Scott Murray <scott@spiteful.org>
3149 L:      linux-pci@vger.kernel.org
3150 S:      Maintained
3151 F:      drivers/pci/hotplug/cpcihp_generic.c
3152
3153 COMPAL LAPTOP SUPPORT
3154 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3155 L:      platform-driver-x86@vger.kernel.org
3156 S:      Maintained
3157 F:      drivers/platform/x86/compal-laptop.c
3158
3159 CONEXANT ACCESSRUNNER USB DRIVER
3160 L:      accessrunner-general@lists.sourceforge.net
3161 W:      http://accessrunner.sourceforge.net/
3162 S:      Orphan
3163 F:      drivers/usb/atm/cxacru.c
3164
3165 CONFIGFS
3166 M:      Joel Becker <jlbec@evilplan.org>
3167 M:      Christoph Hellwig <hch@lst.de>
3168 T:      git git://git.infradead.org/users/hch/configfs.git
3169 S:      Supported
3170 F:      fs/configfs/
3171 F:      include/linux/configfs.h
3172
3173 CONNECTOR
3174 M:      Evgeniy Polyakov <zbr@ioremap.net>
3175 L:      netdev@vger.kernel.org
3176 S:      Maintained
3177 F:      drivers/connector/
3178
3179 CONTROL GROUP (CGROUP)
3180 M:      Tejun Heo <tj@kernel.org>
3181 M:      Li Zefan <lizefan@huawei.com>
3182 M:      Johannes Weiner <hannes@cmpxchg.org>
3183 L:      cgroups@vger.kernel.org
3184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3185 S:      Maintained
3186 F:      Documentation/cgroups/
3187 F:      include/linux/cgroup*
3188 F:      kernel/cgroup*
3189
3190 CONTROL GROUP - CPUSET
3191 M:      Li Zefan <lizefan@huawei.com>
3192 L:      cgroups@vger.kernel.org
3193 W:      http://www.bullopensource.org/cpuset/
3194 W:      http://oss.sgi.com/projects/cpusets/
3195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3196 S:      Maintained
3197 F:      Documentation/cgroups/cpusets.txt
3198 F:      include/linux/cpuset.h
3199 F:      kernel/cpuset.c
3200
3201 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3202 M:      Johannes Weiner <hannes@cmpxchg.org>
3203 M:      Michal Hocko <mhocko@kernel.org>
3204 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3205 L:      cgroups@vger.kernel.org
3206 L:      linux-mm@kvack.org
3207 S:      Maintained
3208 F:      mm/memcontrol.c
3209 F:      mm/swap_cgroup.c
3210
3211 CORETEMP HARDWARE MONITORING DRIVER
3212 M:      Fenghua Yu <fenghua.yu@intel.com>
3213 L:      linux-hwmon@vger.kernel.org
3214 S:      Maintained
3215 F:      Documentation/hwmon/coretemp
3216 F:      drivers/hwmon/coretemp.c
3217
3218 COSA/SRP SYNC SERIAL DRIVER
3219 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3220 W:      http://www.fi.muni.cz/~kas/cosa/
3221 S:      Maintained
3222 F:      drivers/net/wan/cosa*
3223
3224 CPMAC ETHERNET DRIVER
3225 M:      Florian Fainelli <florian@openwrt.org>
3226 L:      netdev@vger.kernel.org
3227 S:      Maintained
3228 F:      drivers/net/ethernet/ti/cpmac.c
3229
3230 CPU FREQUENCY DRIVERS
3231 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3232 M:      Viresh Kumar <viresh.kumar@linaro.org>
3233 L:      linux-pm@vger.kernel.org
3234 S:      Maintained
3235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3236 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3237 F:      drivers/cpufreq/
3238 F:      include/linux/cpufreq.h
3239
3240 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3241 M:      Viresh Kumar <viresh.kumar@linaro.org>
3242 M:      Sudeep Holla <sudeep.holla@arm.com>
3243 L:      linux-pm@vger.kernel.org
3244 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3245 S:      Maintained
3246 F:      drivers/cpufreq/arm_big_little.h
3247 F:      drivers/cpufreq/arm_big_little.c
3248 F:      drivers/cpufreq/arm_big_little_dt.c
3249
3250 CPUIDLE DRIVER - ARM BIG LITTLE
3251 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3252 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3253 L:      linux-pm@vger.kernel.org
3254 L:      linux-arm-kernel@lists.infradead.org
3255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3256 S:      Maintained
3257 F:      drivers/cpuidle/cpuidle-big_little.c
3258
3259 CPUIDLE DRIVER - ARM EXYNOS
3260 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3261 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3262 M:      Kukjin Kim <kgene@kernel.org>
3263 L:      linux-pm@vger.kernel.org
3264 L:      linux-samsung-soc@vger.kernel.org
3265 S:      Supported
3266 F:      drivers/cpuidle/cpuidle-exynos.c
3267 F:      arch/arm/mach-exynos/pm.c
3268
3269 CPUIDLE DRIVERS
3270 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3271 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3272 L:      linux-pm@vger.kernel.org
3273 S:      Maintained
3274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3275 F:      drivers/cpuidle/*
3276 F:      include/linux/cpuidle.h
3277
3278 CPUID/MSR DRIVER
3279 M:      "H. Peter Anvin" <hpa@zytor.com>
3280 S:      Maintained
3281 F:      arch/x86/kernel/cpuid.c
3282 F:      arch/x86/kernel/msr.c
3283
3284 CPU POWER MONITORING SUBSYSTEM
3285 M:      Thomas Renninger <trenn@suse.com>
3286 L:      linux-pm@vger.kernel.org
3287 S:      Maintained
3288 F:      tools/power/cpupower/
3289
3290 CRAMFS FILESYSTEM
3291 W:      http://sourceforge.net/projects/cramfs/
3292 S:      Orphan / Obsolete
3293 F:      Documentation/filesystems/cramfs.txt
3294 F:      fs/cramfs/
3295
3296 CRIS PORT
3297 M:      Mikael Starvik <starvik@axis.com>
3298 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3299 L:      linux-cris-kernel@axis.com
3300 W:      http://developer.axis.com
3301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3302 S:      Maintained
3303 F:      arch/cris/
3304 F:      drivers/tty/serial/crisv10.*
3305
3306 CRYPTO API
3307 M:      Herbert Xu <herbert@gondor.apana.org.au>
3308 M:      "David S. Miller" <davem@davemloft.net>
3309 L:      linux-crypto@vger.kernel.org
3310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3312 S:      Maintained
3313 F:      Documentation/crypto/
3314 F:      Documentation/DocBook/crypto-API.tmpl
3315 F:      arch/*/crypto/
3316 F:      crypto/
3317 F:      drivers/crypto/
3318 F:      include/crypto/
3319
3320 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3321 M:      Neil Horman <nhorman@tuxdriver.com>
3322 L:      linux-crypto@vger.kernel.org
3323 S:      Maintained
3324 F:      crypto/ansi_cprng.c
3325 F:      crypto/rng.c
3326
3327 CS3308 MEDIA DRIVER
3328 M:      Hans Verkuil <hverkuil@xs4all.nl>
3329 L:      linux-media@vger.kernel.org
3330 T:      git git://linuxtv.org/media_tree.git
3331 W:      http://linuxtv.org
3332 S:      Odd Fixes
3333 F:      drivers/media/i2c/cs3308.c
3334 F:      drivers/media/i2c/cs3308.h
3335
3336 CS5535 Audio ALSA driver
3337 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3338 S:      Maintained
3339 F:      sound/pci/cs5535audio/
3340
3341 CW1200 WLAN driver
3342 M:      Solomon Peachy <pizza@shaftnet.org>
3343 S:      Maintained
3344 F:      drivers/net/wireless/st/cw1200/
3345
3346 CX18 VIDEO4LINUX DRIVER
3347 M:      Andy Walls <awalls@md.metrocast.net>
3348 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3349 L:      linux-media@vger.kernel.org
3350 T:      git git://linuxtv.org/media_tree.git
3351 W:      https://linuxtv.org
3352 W:      http://www.ivtvdriver.org/index.php/Cx18
3353 S:      Maintained
3354 F:      Documentation/video4linux/cx18.txt
3355 F:      drivers/media/pci/cx18/
3356 F:      include/uapi/linux/ivtv*
3357
3358 CX2341X MPEG ENCODER HELPER MODULE
3359 M:      Hans Verkuil <hverkuil@xs4all.nl>
3360 L:      linux-media@vger.kernel.org
3361 T:      git git://linuxtv.org/media_tree.git
3362 W:      https://linuxtv.org
3363 S:      Maintained
3364 F:      drivers/media/common/cx2341x*
3365 F:      include/media/cx2341x*
3366
3367 CX24120 MEDIA DRIVER
3368 M:      Jemma Denson <jdenson@gmail.com>
3369 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3370 L:      linux-media@vger.kernel.org
3371 W:      https://linuxtv.org
3372 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3373 S:      Maintained
3374 F:      drivers/media/dvb-frontends/cx24120*
3375
3376 CX88 VIDEO4LINUX DRIVER
3377 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3378 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3379 L:      linux-media@vger.kernel.org
3380 W:      https://linuxtv.org
3381 T:      git git://linuxtv.org/media_tree.git
3382 S:      Odd fixes
3383 F:      Documentation/video4linux/cx88/
3384 F:      drivers/media/pci/cx88/
3385
3386 CXD2820R MEDIA DRIVER
3387 M:      Antti Palosaari <crope@iki.fi>
3388 L:      linux-media@vger.kernel.org
3389 W:      https://linuxtv.org
3390 W:      http://palosaari.fi/linux/
3391 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3392 T:      git git://linuxtv.org/anttip/media_tree.git
3393 S:      Maintained
3394 F:      drivers/media/dvb-frontends/cxd2820r*
3395
3396 CXGB3 ETHERNET DRIVER (CXGB3)
3397 M:      Santosh Raspatur <santosh@chelsio.com>
3398 L:      netdev@vger.kernel.org
3399 W:      http://www.chelsio.com
3400 S:      Supported
3401 F:      drivers/net/ethernet/chelsio/cxgb3/
3402
3403 CXGB3 ISCSI DRIVER (CXGB3I)
3404 M:      Karen Xie <kxie@chelsio.com>
3405 L:      linux-scsi@vger.kernel.org
3406 W:      http://www.chelsio.com
3407 S:      Supported
3408 F:      drivers/scsi/cxgbi/cxgb3i
3409
3410 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3411 M:      Steve Wise <swise@chelsio.com>
3412 L:      linux-rdma@vger.kernel.org
3413 W:      http://www.openfabrics.org
3414 S:      Supported
3415 F:      drivers/infiniband/hw/cxgb3/
3416
3417 CXGB4 ETHERNET DRIVER (CXGB4)
3418 M:      Hariprasad S <hariprasad@chelsio.com>
3419 L:      netdev@vger.kernel.org
3420 W:      http://www.chelsio.com
3421 S:      Supported
3422 F:      drivers/net/ethernet/chelsio/cxgb4/
3423
3424 CXGB4 ISCSI DRIVER (CXGB4I)
3425 M:      Karen Xie <kxie@chelsio.com>
3426 L:      linux-scsi@vger.kernel.org
3427 W:      http://www.chelsio.com
3428 S:      Supported
3429 F:      drivers/scsi/cxgbi/cxgb4i
3430
3431 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3432 M:      Steve Wise <swise@chelsio.com>
3433 L:      linux-rdma@vger.kernel.org
3434 W:      http://www.openfabrics.org
3435 S:      Supported
3436 F:      drivers/infiniband/hw/cxgb4/
3437
3438 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3439 M:      Casey Leedom <leedom@chelsio.com>
3440 L:      netdev@vger.kernel.org
3441 W:      http://www.chelsio.com
3442 S:      Supported
3443 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3444
3445 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3446 M:      Ian Munsie <imunsie@au1.ibm.com>
3447 M:      Michael Neuling <mikey@neuling.org>
3448 L:      linuxppc-dev@lists.ozlabs.org
3449 S:      Supported
3450 F:      drivers/misc/cxl/
3451 F:      include/misc/cxl*
3452 F:      include/uapi/misc/cxl.h
3453 F:      Documentation/powerpc/cxl.txt
3454 F:      Documentation/powerpc/cxl.txt
3455 F:      Documentation/ABI/testing/sysfs-class-cxl
3456
3457 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3458 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3459 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3460 L:      linux-scsi@vger.kernel.org
3461 S:      Supported
3462 F:      drivers/scsi/cxlflash/
3463 F:      include/uapi/scsi/cxlflash_ioctls.h
3464 F:      Documentation/powerpc/cxlflash.txt
3465
3466 STMMAC ETHERNET DRIVER
3467 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3468 M:      Alexandre Torgue <alexandre.torgue@st.com>
3469 L:      netdev@vger.kernel.org
3470 W:      http://www.stlinux.com
3471 S:      Supported
3472 F:      drivers/net/ethernet/stmicro/stmmac/
3473
3474 CYBERPRO FB DRIVER
3475 M:      Russell King <linux@armlinux.org.uk>
3476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3477 W:      http://www.armlinux.org.uk/
3478 S:      Maintained
3479 F:      drivers/video/fbdev/cyber2000fb.*
3480
3481 CYCLADES ASYNC MUX DRIVER
3482 W:      http://www.cyclades.com/
3483 S:      Orphan
3484 F:      drivers/tty/cyclades.c
3485 F:      include/linux/cyclades.h
3486 F:      include/uapi/linux/cyclades.h
3487
3488 CYCLADES PC300 DRIVER
3489 W:      http://www.cyclades.com/
3490 S:      Orphan
3491 F:      drivers/net/wan/pc300*
3492
3493 CYPRESS_FIRMWARE MEDIA DRIVER
3494 M:      Antti Palosaari <crope@iki.fi>
3495 L:      linux-media@vger.kernel.org
3496 W:      https://linuxtv.org
3497 W:      http://palosaari.fi/linux/
3498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3499 T:      git git://linuxtv.org/anttip/media_tree.git
3500 S:      Maintained
3501 F:      drivers/media/common/cypress_firmware*
3502
3503 CYTTSP TOUCHSCREEN DRIVER
3504 M:      Ferruh Yigit <fery@cypress.com>
3505 L:      linux-input@vger.kernel.org
3506 S:      Supported
3507 F:      drivers/input/touchscreen/cyttsp*
3508 F:      include/linux/input/cyttsp.h
3509
3510 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3511 M:      Joshua Kinard <kumba@gentoo.org>
3512 S:      Maintained
3513 F:      drivers/rtc/rtc-ds1685.c
3514 F:      include/linux/rtc/ds1685.h
3515
3516 DAMA SLAVE for AX.25
3517 M:      Joerg Reuter <jreuter@yaina.de>
3518 W:      http://yaina.de/jreuter/
3519 W:      http://www.qsl.net/dl1bke/
3520 L:      linux-hams@vger.kernel.org
3521 S:      Maintained
3522 F:      net/ax25/af_ax25.c
3523 F:      net/ax25/ax25_dev.c
3524 F:      net/ax25/ax25_ds_*
3525 F:      net/ax25/ax25_in.c
3526 F:      net/ax25/ax25_out.c
3527 F:      net/ax25/ax25_timer.c
3528 F:      net/ax25/sysctl_net_ax25.c
3529
3530 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3531 L:      netdev@vger.kernel.org
3532 S:      Orphan
3533 F:      Documentation/networking/dmfe.txt
3534 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3535
3536 DC390/AM53C974 SCSI driver
3537 M:      Hannes Reinecke <hare@suse.com>
3538 L:      linux-scsi@vger.kernel.org
3539 S:      Maintained
3540 F:      drivers/scsi/am53c974.c
3541
3542 DC395x SCSI driver
3543 M:      Oliver Neukum <oliver@neukum.org>
3544 M:      Ali Akcaagac <aliakc@web.de>
3545 M:      Jamie Lenehan <lenehan@twibble.org>
3546 L:      dc395x@twibble.org
3547 W:      http://twibble.org/dist/dc395x/
3548 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3549 S:      Maintained
3550 F:      Documentation/scsi/dc395x.txt
3551 F:      drivers/scsi/dc395x.*
3552
3553 DCCP PROTOCOL
3554 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3555 L:      dccp@vger.kernel.org
3556 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3557 S:      Maintained
3558 F:      include/linux/dccp.h
3559 F:      include/uapi/linux/dccp.h
3560 F:      include/linux/tfrc.h
3561 F:      net/dccp/
3562
3563 DECnet NETWORK LAYER
3564 W:      http://linux-decnet.sourceforge.net
3565 L:      linux-decnet-user@lists.sourceforge.net
3566 S:      Orphan
3567 F:      Documentation/networking/decnet.txt
3568 F:      net/decnet/
3569
3570 DECSTATION PLATFORM SUPPORT
3571 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3572 L:      linux-mips@linux-mips.org
3573 W:      http://www.linux-mips.org/wiki/DECstation
3574 S:      Maintained
3575 F:      arch/mips/dec/
3576 F:      arch/mips/include/asm/dec/
3577 F:      arch/mips/include/asm/mach-dec/
3578
3579 DEFXX FDDI NETWORK DRIVER
3580 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3581 S:      Maintained
3582 F:      drivers/net/fddi/defxx.*
3583
3584 DELL LAPTOP DRIVER
3585 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3586 M:      Pali Rohár <pali.rohar@gmail.com>
3587 L:      platform-driver-x86@vger.kernel.org
3588 S:      Maintained
3589 F:      drivers/platform/x86/dell-laptop.c
3590
3591 DELL LAPTOP RBTN DRIVER
3592 M:      Pali Rohár <pali.rohar@gmail.com>
3593 S:      Maintained
3594 F:      drivers/platform/x86/dell-rbtn.*
3595
3596 DELL LAPTOP FREEFALL DRIVER
3597 M:      Pali Rohár <pali.rohar@gmail.com>
3598 S:      Maintained
3599 F:      drivers/platform/x86/dell-smo8800.c
3600
3601 DELL LAPTOP SMM DRIVER
3602 M:      Pali Rohár <pali.rohar@gmail.com>
3603 S:      Maintained
3604 F:      drivers/hwmon/dell-smm-hwmon.c
3605 F:      include/uapi/linux/i8k.h
3606
3607 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3608 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3609 S:      Maintained
3610 F:      Documentation/dcdbas.txt
3611 F:      drivers/firmware/dcdbas.*
3612
3613 DELL WMI EXTRAS DRIVER
3614 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3615 M:      Pali Rohár <pali.rohar@gmail.com>
3616 S:      Maintained
3617 F:      drivers/platform/x86/dell-wmi.c
3618
3619 DESIGNWARE USB2 DRD IP DRIVER
3620 M:      John Youn <johnyoun@synopsys.com>
3621 L:      linux-usb@vger.kernel.org
3622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3623 S:      Maintained
3624 F:      drivers/usb/dwc2/
3625
3626 DESIGNWARE USB3 DRD IP DRIVER
3627 M:      Felipe Balbi <balbi@kernel.org>
3628 L:      linux-usb@vger.kernel.org
3629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3630 S:      Maintained
3631 F:      drivers/usb/dwc3/
3632
3633 DEVICE COREDUMP (DEV_COREDUMP)
3634 M:      Johannes Berg <johannes@sipsolutions.net>
3635 L:      linux-kernel@vger.kernel.org
3636 S:      Maintained
3637 F:      drivers/base/devcoredump.c
3638 F:      include/linux/devcoredump.h
3639
3640 DEVICE FREQUENCY (DEVFREQ)
3641 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3642 M:      Kyungmin Park <kyungmin.park@samsung.com>
3643 L:      linux-pm@vger.kernel.org
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3645 S:      Maintained
3646 F:      drivers/devfreq/
3647 F:      include/linux/devfreq.h
3648 F:      Documentation/devicetree/bindings/devfreq/
3649
3650 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3651 M:      Chanwoo Choi <cw00.choi@samsung.com>
3652 L:      linux-pm@vger.kernel.org
3653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3654 S:      Supported
3655 F:      drivers/devfreq/event/
3656 F:      drivers/devfreq/devfreq-event.c
3657 F:      include/linux/devfreq-event.h
3658 F:      Documentation/devicetree/bindings/devfreq/event/
3659
3660 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3661 M:      Chanwoo Choi <cw00.choi@samsung.com>
3662 L:      linux-pm@vger.kernel.org
3663 L:      linux-samsung-soc@vger.kernel.org
3664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3665 S:      Maintained
3666 F:      drivers/devfreq/exynos-bus.c
3667 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3668
3669 DEVICE NUMBER REGISTRY
3670 M:      Torben Mathiasen <device@lanana.org>
3671 W:      http://lanana.org/docs/device-list/index.html
3672 S:      Maintained
3673
3674 DEVICE-MAPPER  (LVM)
3675 M:      Alasdair Kergon <agk@redhat.com>
3676 M:      Mike Snitzer <snitzer@redhat.com>
3677 M:      dm-devel@redhat.com
3678 L:      dm-devel@redhat.com
3679 W:      http://sources.redhat.com/dm
3680 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3682 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3683 S:      Maintained
3684 F:      Documentation/device-mapper/
3685 F:      drivers/md/dm*
3686 F:      drivers/md/persistent-data/
3687 F:      include/linux/device-mapper.h
3688 F:      include/linux/dm-*.h
3689 F:      include/uapi/linux/dm-*.h
3690
3691 DEVLINK
3692 M:      Jiri Pirko <jiri@mellanox.com>
3693 L:      netdev@vger.kernel.org
3694 S:      Supported
3695 F:      net/core/devlink.c
3696 F:      include/net/devlink.h
3697 F:      include/uapi/linux/devlink.h
3698
3699 DIALOG SEMICONDUCTOR DRIVERS
3700 M:      Support Opensource <support.opensource@diasemi.com>
3701 W:      http://www.dialog-semiconductor.com/products
3702 S:      Supported
3703 F:      Documentation/hwmon/da90??
3704 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3705 F:      drivers/gpio/gpio-da90??.c
3706 F:      drivers/hwmon/da90??-hwmon.c
3707 F:      drivers/iio/adc/da91??-*.c
3708 F:      drivers/input/misc/da90??_onkey.c
3709 F:      drivers/input/touchscreen/da9052_tsi.c
3710 F:      drivers/leds/leds-da90??.c
3711 F:      drivers/mfd/da903x.c
3712 F:      drivers/mfd/da90??-*.c
3713 F:      drivers/mfd/da91??-*.c
3714 F:      drivers/power/da9052-battery.c
3715 F:      drivers/power/da91??-*.c
3716 F:      drivers/regulator/da903x.c
3717 F:      drivers/regulator/da9???-regulator.[ch]
3718 F:      drivers/rtc/rtc-da90??.c
3719 F:      drivers/video/backlight/da90??_bl.c
3720 F:      drivers/watchdog/da90??_wdt.c
3721 F:      include/linux/mfd/da903x.h
3722 F:      include/linux/mfd/da9052/
3723 F:      include/linux/mfd/da9055/
3724 F:      include/linux/mfd/da9063/
3725 F:      include/linux/mfd/da9150/
3726 F:      include/sound/da[79]*.h
3727 F:      sound/soc/codecs/da[79]*.[ch]
3728
3729 DIGI NEO AND CLASSIC PCI PRODUCTS
3730 M:      Lidza Louina <lidza.louina@gmail.com>
3731 M:      Mark Hounschell <markh@compro.net>
3732 L:      driverdev-devel@linuxdriverproject.org
3733 S:      Maintained
3734 F:      drivers/staging/dgnc/
3735
3736 DIOLAN U2C-12 I2C DRIVER
3737 M:      Guenter Roeck <linux@roeck-us.net>
3738 L:      linux-i2c@vger.kernel.org
3739 S:      Maintained
3740 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3741
3742 DIRECT ACCESS (DAX)
3743 M:      Matthew Wilcox <willy@linux.intel.com>
3744 L:      linux-fsdevel@vger.kernel.org
3745 S:      Supported
3746 F:      fs/dax.c
3747
3748 DIRECTORY NOTIFICATION (DNOTIFY)
3749 M:      Eric Paris <eparis@parisplace.org>
3750 S:      Maintained
3751 F:      Documentation/filesystems/dnotify.txt
3752 F:      fs/notify/dnotify/
3753 F:      include/linux/dnotify.h
3754
3755 DISK GEOMETRY AND PARTITION HANDLING
3756 M:      Andries Brouwer <aeb@cwi.nl>
3757 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3758 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3759 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3760 S:      Maintained
3761
3762 DISKQUOTA
3763 M:      Jan Kara <jack@suse.com>
3764 S:      Maintained
3765 F:      Documentation/filesystems/quota.txt
3766 F:      fs/quota/
3767 F:      include/linux/quota*.h
3768 F:      include/uapi/linux/quota*.h
3769
3770 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3771 M:      Bernie Thompson <bernie@plugable.com>
3772 L:      linux-fbdev@vger.kernel.org
3773 S:      Maintained
3774 W:      http://plugable.com/category/projects/udlfb/
3775 F:      drivers/video/fbdev/udlfb.c
3776 F:      include/video/udlfb.h
3777 F:      Documentation/fb/udlfb.txt
3778
3779 DISTRIBUTED LOCK MANAGER (DLM)
3780 M:      Christine Caulfield <ccaulfie@redhat.com>
3781 M:      David Teigland <teigland@redhat.com>
3782 L:      cluster-devel@redhat.com
3783 W:      http://sources.redhat.com/cluster/
3784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3785 S:      Supported
3786 F:      fs/dlm/
3787
3788 DMA BUFFER SHARING FRAMEWORK
3789 M:      Sumit Semwal <sumit.semwal@linaro.org>
3790 S:      Maintained
3791 L:      linux-media@vger.kernel.org
3792 L:      dri-devel@lists.freedesktop.org
3793 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3794 F:      drivers/dma-buf/
3795 F:      include/linux/dma-buf*
3796 F:      include/linux/reservation.h
3797 F:      include/linux/*fence.h
3798 F:      Documentation/dma-buf-sharing.txt
3799 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3800
3801 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3802 M:      Vinod Koul <vinod.koul@intel.com>
3803 L:      dmaengine@vger.kernel.org
3804 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3805 S:      Maintained
3806 F:      drivers/dma/
3807 F:      include/linux/dmaengine.h
3808 F:      Documentation/devicetree/bindings/dma/
3809 F:      Documentation/dmaengine/
3810 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3811
3812 DME1737 HARDWARE MONITOR DRIVER
3813 M:      Juerg Haefliger <juergh@gmail.com>
3814 L:      linux-hwmon@vger.kernel.org
3815 S:      Maintained
3816 F:      Documentation/hwmon/dme1737
3817 F:      drivers/hwmon/dme1737.c
3818
3819 DMI/SMBIOS SUPPORT
3820 M:      Jean Delvare <jdelvare@suse.com>
3821 S:      Maintained
3822 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3823 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3824 F:      drivers/firmware/dmi-id.c
3825 F:      drivers/firmware/dmi_scan.c
3826 F:      include/linux/dmi.h
3827
3828 DOCUMENTATION
3829 M:      Jonathan Corbet <corbet@lwn.net>
3830 L:      linux-doc@vger.kernel.org
3831 S:      Maintained
3832 F:      Documentation/
3833 F:      scripts/docproc.c
3834 F:      scripts/kernel-doc*
3835 X:      Documentation/ABI/
3836 X:      Documentation/devicetree/
3837 X:      Documentation/acpi
3838 X:      Documentation/power
3839 X:      Documentation/spi
3840 X:      Documentation/DocBook/media
3841 T:      git git://git.lwn.net/linux.git docs-next
3842
3843 DOUBLETALK DRIVER
3844 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3845 L:      blinux-list@redhat.com
3846 S:      Maintained
3847 F:      drivers/char/dtlk.c
3848 F:      include/linux/dtlk.h
3849
3850 DPT_I2O SCSI RAID DRIVER
3851 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3852 L:      linux-scsi@vger.kernel.org
3853 W:      http://www.adaptec.com/
3854 S:      Maintained
3855 F:      drivers/scsi/dpt*
3856 F:      drivers/scsi/dpt/
3857
3858 DRBD DRIVER
3859 M:      Philipp Reisner <philipp.reisner@linbit.com>
3860 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3861 L:      drbd-dev@lists.linbit.com
3862 W:      http://www.drbd.org
3863 T:      git git://git.linbit.com/linux-drbd.git
3864 T:      git git://git.linbit.com/drbd-8.4.git
3865 S:      Supported
3866 F:      drivers/block/drbd/
3867 F:      lib/lru_cache.c
3868 F:      Documentation/blockdev/drbd/
3869
3870 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3871 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3873 S:      Supported
3874 F:      Documentation/kobject.txt
3875 F:      drivers/base/
3876 F:      fs/debugfs/
3877 F:      fs/kernfs/
3878 F:      fs/sysfs/
3879 F:      include/linux/debugfs.h
3880 F:      include/linux/kobj*
3881 F:      lib/kobj*
3882
3883 DRM DRIVERS
3884 M:      David Airlie <airlied@linux.ie>
3885 L:      dri-devel@lists.freedesktop.org
3886 T:      git git://people.freedesktop.org/~airlied/linux
3887 S:      Maintained
3888 F:      drivers/gpu/drm/
3889 F:      drivers/gpu/vga/
3890 F:      Documentation/DocBook/gpu.*
3891 F:      include/drm/
3892 F:      include/uapi/drm/
3893
3894 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
3895 M:      Dave Airlie <airlied@redhat.com>
3896 S:      Odd Fixes
3897 F:      drivers/gpu/drm/ast/
3898
3899 DRM DRIVER FOR BOCHS VIRTUAL GPU
3900 M:      Gerd Hoffmann <kraxel@redhat.com>
3901 S:      Odd Fixes
3902 F:      drivers/gpu/drm/bochs/
3903
3904 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
3905 M:      Dave Airlie <airlied@redhat.com>
3906 S:      Odd Fixes
3907 F:      drivers/gpu/drm/cirrus/
3908
3909 RADEON and AMDGPU DRM DRIVERS
3910 M:      Alex Deucher <alexander.deucher@amd.com>
3911 M:      Christian König <christian.koenig@amd.com>
3912 L:      dri-devel@lists.freedesktop.org
3913 T:      git git://people.freedesktop.org/~agd5f/linux
3914 S:      Supported
3915 F:      drivers/gpu/drm/radeon/
3916 F:      include/uapi/drm/radeon_drm.h
3917 F:      drivers/gpu/drm/amd/
3918 F:      include/uapi/drm/amdgpu_drm.h
3919
3920 DRM PANEL DRIVERS
3921 M:      Thierry Reding <thierry.reding@gmail.com>
3922 L:      dri-devel@lists.freedesktop.org
3923 T:      git git://anongit.freedesktop.org/tegra/linux.git
3924 S:      Maintained
3925 F:      drivers/gpu/drm/drm_panel.c
3926 F:      drivers/gpu/drm/panel/
3927 F:      include/drm/drm_panel.h
3928 F:      Documentation/devicetree/bindings/display/panel/
3929
3930 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3931 M:      Daniel Vetter <daniel.vetter@intel.com>
3932 M:      Jani Nikula <jani.nikula@linux.intel.com>
3933 L:      intel-gfx@lists.freedesktop.org
3934 L:      dri-devel@lists.freedesktop.org
3935 W:      https://01.org/linuxgraphics/
3936 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3937 T:      git git://anongit.freedesktop.org/drm-intel
3938 S:      Supported
3939 F:      drivers/gpu/drm/i915/
3940 F:      include/drm/i915*
3941 F:      include/uapi/drm/i915_drm.h
3942
3943 DRM DRIVERS FOR ATMEL HLCDC
3944 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3945 L:      dri-devel@lists.freedesktop.org
3946 S:      Supported
3947 F:      drivers/gpu/drm/atmel-hlcdc/
3948 F:      Documentation/devicetree/bindings/drm/atmel/
3949
3950 DRM DRIVERS FOR ALLWINNER A10
3951 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
3952 L:      dri-devel@lists.freedesktop.org
3953 S:      Supported
3954 F:      drivers/gpu/drm/sun4i/
3955 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
3956
3957 DRM DRIVERS FOR EXYNOS
3958 M:      Inki Dae <inki.dae@samsung.com>
3959 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3960 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3961 M:      Kyungmin Park <kyungmin.park@samsung.com>
3962 L:      dri-devel@lists.freedesktop.org
3963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3964 S:      Supported
3965 F:      drivers/gpu/drm/exynos/
3966 F:      include/uapi/drm/exynos_drm.h
3967 F:      Documentation/devicetree/bindings/display/exynos/
3968
3969 DRM DRIVERS FOR FREESCALE DCU
3970 M:      Stefan Agner <stefan@agner.ch>
3971 M:      Alison Wang <alison.wang@freescale.com>
3972 L:      dri-devel@lists.freedesktop.org
3973 S:      Supported
3974 F:      drivers/gpu/drm/fsl-dcu/
3975 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3976 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
3977 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3978
3979 DRM DRIVERS FOR FREESCALE IMX
3980 M:      Philipp Zabel <p.zabel@pengutronix.de>
3981 L:      dri-devel@lists.freedesktop.org
3982 S:      Maintained
3983 F:      drivers/gpu/drm/imx/
3984 F:      drivers/gpu/ipu-v3/
3985 F:      Documentation/devicetree/bindings/display/imx/
3986
3987 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3988 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3989 L:      dri-devel@lists.freedesktop.org
3990 T:      git git://github.com/patjak/drm-gma500
3991 S:      Maintained
3992 F:      drivers/gpu/drm/gma500/
3993
3994 DRM DRIVERS FOR HISILICON
3995 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
3996 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
3997 R:      Chen Feng <puck.chen@hisilicon.com>
3998 L:      dri-devel@lists.freedesktop.org
3999 T:      git git://github.com/xin3liang/linux.git
4000 S:      Maintained
4001 F:      drivers/gpu/drm/hisilicon/
4002 F:      Documentation/devicetree/bindings/display/hisilicon/
4003
4004 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4005 S:      Orphan / Obsolete
4006 F:      drivers/gpu/drm/i810/
4007 F:      include/uapi/drm/i810_drm.h
4008
4009 DRM DRIVER FOR MSM ADRENO GPU
4010 M:      Rob Clark <robdclark@gmail.com>
4011 L:      linux-arm-msm@vger.kernel.org
4012 L:      dri-devel@lists.freedesktop.org
4013 L:      freedreno@lists.freedesktop.org
4014 T:      git git://people.freedesktop.org/~robclark/linux
4015 S:      Maintained
4016 F:      drivers/gpu/drm/msm/
4017 F:      include/uapi/drm/msm_drm.h
4018 F:      Documentation/devicetree/bindings/display/msm/
4019
4020 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4021 M:      Ben Skeggs <bskeggs@redhat.com>
4022 L:      dri-devel@lists.freedesktop.org
4023 L:      nouveau@lists.freedesktop.org
4024 T:      git git://github.com/skeggsb/linux
4025 S:      Supported
4026 F:      drivers/gpu/drm/nouveau/
4027 F:      include/uapi/drm/nouveau_drm.h
4028
4029 DRM DRIVERS FOR NVIDIA TEGRA
4030 M:      Thierry Reding <thierry.reding@gmail.com>
4031 L:      dri-devel@lists.freedesktop.org
4032 L:      linux-tegra@vger.kernel.org
4033 T:      git git://anongit.freedesktop.org/tegra/linux.git
4034 S:      Supported
4035 F:      drivers/gpu/drm/tegra/
4036 F:      drivers/gpu/host1x/
4037 F:      include/linux/host1x.h
4038 F:      include/uapi/drm/tegra_drm.h
4039 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4040
4041 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4042 S:      Orphan / Obsolete
4043 F:      drivers/gpu/drm/mga/
4044 F:      include/uapi/drm/mga_drm.h
4045
4046 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4047 M:      Dave Airlie <airlied@redhat.com>
4048 S:      Odd Fixes
4049 F:      drivers/gpu/drm/mgag200/
4050
4051 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4052 S:      Orphan / Obsolete
4053 F:      drivers/gpu/drm/r128/
4054 F:      include/uapi/drm/r128_drm.h
4055
4056 DRM DRIVERS FOR RENESAS
4057 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4058 L:      dri-devel@lists.freedesktop.org
4059 L:      linux-renesas-soc@vger.kernel.org
4060 T:      git git://linuxtv.org/pinchartl/fbdev
4061 S:      Supported
4062 F:      drivers/gpu/drm/rcar-du/
4063 F:      drivers/gpu/drm/shmobile/
4064 F:      include/linux/platform_data/shmob_drm.h
4065 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4066
4067 DRM DRIVER FOR QXL VIRTUAL GPU
4068 M:      Dave Airlie <airlied@redhat.com>
4069 S:      Odd Fixes
4070 F:      drivers/gpu/drm/qxl/
4071 F:      include/uapi/drm/qxl_drm.h
4072
4073 DRM DRIVERS FOR ROCKCHIP
4074 M:      Mark Yao <mark.yao@rock-chips.com>
4075 L:      dri-devel@lists.freedesktop.org
4076 S:      Maintained
4077 F:      drivers/gpu/drm/rockchip/
4078 F:      Documentation/devicetree/bindings/display/rockchip/
4079
4080 DRM DRIVER FOR SAVAGE VIDEO CARDS
4081 S:      Orphan / Obsolete
4082 F:      drivers/gpu/drm/savage/
4083 F:      include/uapi/drm/savage_drm.h
4084
4085 DRM DRIVER FOR SIS VIDEO CARDS
4086 S:      Orphan / Obsolete
4087 F:      drivers/gpu/drm/sis/
4088 F:      include/uapi/drm/sis_drm.h
4089
4090 DRM DRIVERS FOR STI
4091 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4092 M:      Vincent Abriou <vincent.abriou@st.com>
4093 L:      dri-devel@lists.freedesktop.org
4094 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
4095 S:      Maintained
4096 F:      drivers/gpu/drm/sti
4097 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4098
4099 DRM DRIVER FOR TDFX VIDEO CARDS
4100 S:      Orphan / Obsolete
4101 F:      drivers/gpu/drm/tdfx/
4102
4103 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4104 M:      Dave Airlie <airlied@redhat.com>
4105 S:      Odd Fixes
4106 F:      drivers/gpu/drm/udl/
4107
4108 DRM DRIVERS FOR VIVANTE GPU IP
4109 M:      Lucas Stach <l.stach@pengutronix.de>
4110 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4111 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4112 L:      dri-devel@lists.freedesktop.org
4113 S:      Maintained
4114 F:      drivers/gpu/drm/etnaviv/
4115 F:      include/uapi/drm/etnaviv_drm.h
4116 F:      Documentation/devicetree/bindings/display/etnaviv/
4117
4118 DRM DRIVER FOR VMWARE VIRTUAL GPU
4119 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4120 M:      Sinclair Yeh <syeh@vmware.com>
4121 M:      Thomas Hellstrom <thellstrom@vmware.com>
4122 L:      dri-devel@lists.freedesktop.org
4123 T:      git git://people.freedesktop.org/~syeh/repos_linux
4124 T:      git git://people.freedesktop.org/~thomash/linux
4125 S:      Supported
4126 F:      drivers/gpu/drm/vmwgfx/
4127 F:      include/uapi/drm/vmwgfx_drm.h
4128
4129 DRM DRIVERS FOR VC4
4130 M:      Eric Anholt <eric@anholt.net>
4131 T:      git git://github.com/anholt/linux
4132 S:      Supported
4133 F:      drivers/gpu/drm/vc4/
4134 F:      include/uapi/drm/vc4_drm.h
4135 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4136
4137 DSBR100 USB FM RADIO DRIVER
4138 M:      Alexey Klimov <klimov.linux@gmail.com>
4139 L:      linux-media@vger.kernel.org
4140 T:      git git://linuxtv.org/media_tree.git
4141 S:      Maintained
4142 F:      drivers/media/radio/dsbr100.c
4143
4144 DSCC4 DRIVER
4145 M:      Francois Romieu <romieu@fr.zoreil.com>
4146 L:      netdev@vger.kernel.org
4147 S:      Maintained
4148 F:      drivers/net/wan/dscc4.c
4149
4150 DT3155 MEDIA DRIVER
4151 M:      Hans Verkuil <hverkuil@xs4all.nl>
4152 L:      linux-media@vger.kernel.org
4153 T:      git git://linuxtv.org/media_tree.git
4154 W:      https://linuxtv.org
4155 S:      Odd Fixes
4156 F:      drivers/media/pci/dt3155/
4157
4158 DVB_USB_AF9015 MEDIA DRIVER
4159 M:      Antti Palosaari <crope@iki.fi>
4160 L:      linux-media@vger.kernel.org
4161 W:      https://linuxtv.org
4162 W:      http://palosaari.fi/linux/
4163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4164 T:      git git://linuxtv.org/anttip/media_tree.git
4165 S:      Maintained
4166 F:      drivers/media/usb/dvb-usb-v2/af9015*
4167
4168 DVB_USB_AF9035 MEDIA DRIVER
4169 M:      Antti Palosaari <crope@iki.fi>
4170 L:      linux-media@vger.kernel.org
4171 W:      https://linuxtv.org
4172 W:      http://palosaari.fi/linux/
4173 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4174 T:      git git://linuxtv.org/anttip/media_tree.git
4175 S:      Maintained
4176 F:      drivers/media/usb/dvb-usb-v2/af9035*
4177
4178 DVB_USB_ANYSEE MEDIA DRIVER
4179 M:      Antti Palosaari <crope@iki.fi>
4180 L:      linux-media@vger.kernel.org
4181 W:      https://linuxtv.org
4182 W:      http://palosaari.fi/linux/
4183 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4184 T:      git git://linuxtv.org/anttip/media_tree.git
4185 S:      Maintained
4186 F:      drivers/media/usb/dvb-usb-v2/anysee*
4187
4188 DVB_USB_AU6610 MEDIA DRIVER
4189 M:      Antti Palosaari <crope@iki.fi>
4190 L:      linux-media@vger.kernel.org
4191 W:      https://linuxtv.org
4192 W:      http://palosaari.fi/linux/
4193 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4194 T:      git git://linuxtv.org/anttip/media_tree.git
4195 S:      Maintained
4196 F:      drivers/media/usb/dvb-usb-v2/au6610*
4197
4198 DVB_USB_CE6230 MEDIA DRIVER
4199 M:      Antti Palosaari <crope@iki.fi>
4200 L:      linux-media@vger.kernel.org
4201 W:      https://linuxtv.org
4202 W:      http://palosaari.fi/linux/
4203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4204 T:      git git://linuxtv.org/anttip/media_tree.git
4205 S:      Maintained
4206 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4207
4208 DVB_USB_CXUSB MEDIA DRIVER
4209 M:      Michael Krufky <mkrufky@linuxtv.org>
4210 L:      linux-media@vger.kernel.org
4211 W:      https://linuxtv.org
4212 W:      http://github.com/mkrufky
4213 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4214 T:      git git://linuxtv.org/media_tree.git
4215 S:      Maintained
4216 F:      drivers/media/usb/dvb-usb/cxusb*
4217
4218 DVB_USB_EC168 MEDIA DRIVER
4219 M:      Antti Palosaari <crope@iki.fi>
4220 L:      linux-media@vger.kernel.org
4221 W:      https://linuxtv.org
4222 W:      http://palosaari.fi/linux/
4223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4224 T:      git git://linuxtv.org/anttip/media_tree.git
4225 S:      Maintained
4226 F:      drivers/media/usb/dvb-usb-v2/ec168*
4227
4228 DVB_USB_GL861 MEDIA DRIVER
4229 M:      Antti Palosaari <crope@iki.fi>
4230 L:      linux-media@vger.kernel.org
4231 W:      https://linuxtv.org
4232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4233 T:      git git://linuxtv.org/anttip/media_tree.git
4234 S:      Maintained
4235 F:      drivers/media/usb/dvb-usb-v2/gl861*
4236
4237 DVB_USB_MXL111SF MEDIA DRIVER
4238 M:      Michael Krufky <mkrufky@linuxtv.org>
4239 L:      linux-media@vger.kernel.org
4240 W:      https://linuxtv.org
4241 W:      http://github.com/mkrufky
4242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4243 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4244 S:      Maintained
4245 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4246
4247 DVB_USB_RTL28XXU MEDIA DRIVER
4248 M:      Antti Palosaari <crope@iki.fi>
4249 L:      linux-media@vger.kernel.org
4250 W:      https://linuxtv.org
4251 W:      http://palosaari.fi/linux/
4252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4253 T:      git git://linuxtv.org/anttip/media_tree.git
4254 S:      Maintained
4255 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4256
4257 DVB_USB_V2 MEDIA DRIVER
4258 M:      Antti Palosaari <crope@iki.fi>
4259 L:      linux-media@vger.kernel.org
4260 W:      https://linuxtv.org
4261 W:      http://palosaari.fi/linux/
4262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4263 T:      git git://linuxtv.org/anttip/media_tree.git
4264 S:      Maintained
4265 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4266 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4267
4268 DYNAMIC DEBUG
4269 M:      Jason Baron <jbaron@akamai.com>
4270 S:      Maintained
4271 F:      lib/dynamic_debug.c
4272 F:      include/linux/dynamic_debug.h
4273
4274 DZ DECSTATION DZ11 SERIAL DRIVER
4275 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4276 S:      Maintained
4277 F:      drivers/tty/serial/dz.*
4278
4279 E3X0 POWER BUTTON DRIVER
4280 M:      Moritz Fischer <moritz.fischer@ettus.com>
4281 L:      usrp-users@lists.ettus.com
4282 W:      http://www.ettus.com
4283 S:      Supported
4284 F:      drivers/input/misc/e3x0-button.c
4285 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4286
4287 E4000 MEDIA DRIVER
4288 M:      Antti Palosaari <crope@iki.fi>
4289 L:      linux-media@vger.kernel.org
4290 W:      https://linuxtv.org
4291 W:      http://palosaari.fi/linux/
4292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4293 T:      git git://linuxtv.org/anttip/media_tree.git
4294 S:      Maintained
4295 F:      drivers/media/tuners/e4000*
4296
4297 EATA ISA/EISA/PCI SCSI DRIVER
4298 M:      Dario Ballabio <ballabio_dario@emc.com>
4299 L:      linux-scsi@vger.kernel.org
4300 S:      Maintained
4301 F:      drivers/scsi/eata.c
4302
4303 EC100 MEDIA DRIVER
4304 M:      Antti Palosaari <crope@iki.fi>
4305 L:      linux-media@vger.kernel.org
4306 W:      https://linuxtv.org
4307 W:      http://palosaari.fi/linux/
4308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4309 T:      git git://linuxtv.org/anttip/media_tree.git
4310 S:      Maintained
4311 F:      drivers/media/dvb-frontends/ec100*
4312
4313 ECRYPT FILE SYSTEM
4314 M:      Tyler Hicks <tyhicks@canonical.com>
4315 L:      ecryptfs@vger.kernel.org
4316 W:      http://ecryptfs.org
4317 W:      https://launchpad.net/ecryptfs
4318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4319 S:      Supported
4320 F:      Documentation/filesystems/ecryptfs.txt
4321 F:      fs/ecryptfs/
4322
4323 EDAC-CORE
4324 M:      Doug Thompson <dougthompson@xmission.com>
4325 M:      Borislav Petkov <bp@alien8.de>
4326 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4328 L:      linux-edac@vger.kernel.org
4329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4331 S:      Supported
4332 F:      Documentation/edac.txt
4333 F:      drivers/edac/
4334 F:      include/linux/edac.h
4335
4336 EDAC-AMD64
4337 M:      Doug Thompson <dougthompson@xmission.com>
4338 M:      Borislav Petkov <bp@alien8.de>
4339 L:      linux-edac@vger.kernel.org
4340 S:      Maintained
4341 F:      drivers/edac/amd64_edac*
4342
4343 EDAC-CALXEDA
4344 M:      Doug Thompson <dougthompson@xmission.com>
4345 M:      Robert Richter <rric@kernel.org>
4346 L:      linux-edac@vger.kernel.org
4347 S:      Maintained
4348 F:      drivers/edac/highbank*
4349
4350 EDAC-CAVIUM
4351 M:      Ralf Baechle <ralf@linux-mips.org>
4352 M:      David Daney <david.daney@cavium.com>
4353 L:      linux-edac@vger.kernel.org
4354 L:      linux-mips@linux-mips.org
4355 S:      Supported
4356 F:      drivers/edac/octeon_edac*
4357
4358 EDAC-E752X
4359 M:      Mark Gross <mark.gross@intel.com>
4360 M:      Doug Thompson <dougthompson@xmission.com>
4361 L:      linux-edac@vger.kernel.org
4362 S:      Maintained
4363 F:      drivers/edac/e752x_edac.c
4364
4365 EDAC-E7XXX
4366 M:      Doug Thompson <dougthompson@xmission.com>
4367 L:      linux-edac@vger.kernel.org
4368 S:      Maintained
4369 F:      drivers/edac/e7xxx_edac.c
4370
4371 EDAC-GHES
4372 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4373 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4374 L:      linux-edac@vger.kernel.org
4375 S:      Maintained
4376 F:      drivers/edac/ghes_edac.c
4377
4378 EDAC-I82443BXGX
4379 M:      Tim Small <tim@buttersideup.com>
4380 L:      linux-edac@vger.kernel.org
4381 S:      Maintained
4382 F:      drivers/edac/i82443bxgx_edac.c
4383
4384 EDAC-I3000
4385 M:      Jason Uhlenkott <juhlenko@akamai.com>
4386 L:      linux-edac@vger.kernel.org
4387 S:      Maintained
4388 F:      drivers/edac/i3000_edac.c
4389
4390 EDAC-I5000
4391 M:      Doug Thompson <dougthompson@xmission.com>
4392 L:      linux-edac@vger.kernel.org
4393 S:      Maintained
4394 F:      drivers/edac/i5000_edac.c
4395
4396 EDAC-I5400
4397 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4398 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4399 L:      linux-edac@vger.kernel.org
4400 S:      Maintained
4401 F:      drivers/edac/i5400_edac.c
4402
4403 EDAC-I7300
4404 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4405 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4406 L:      linux-edac@vger.kernel.org
4407 S:      Maintained
4408 F:      drivers/edac/i7300_edac.c
4409
4410 EDAC-I7CORE
4411 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4412 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4413 L:      linux-edac@vger.kernel.org
4414 S:      Maintained
4415 F:      drivers/edac/i7core_edac.c
4416
4417 EDAC-I82975X
4418 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4419 M:      "Arvind R." <arvino55@gmail.com>
4420 L:      linux-edac@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/edac/i82975x_edac.c
4423
4424 EDAC-IE31200
4425 M:      Jason Baron <jbaron@akamai.com>
4426 L:      linux-edac@vger.kernel.org
4427 S:      Maintained
4428 F:      drivers/edac/ie31200_edac.c
4429
4430 EDAC-MPC85XX
4431 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4432 L:      linux-edac@vger.kernel.org
4433 S:      Maintained
4434 F:      drivers/edac/mpc85xx_edac.[ch]
4435
4436 EDAC-PASEMI
4437 M:      Egor Martovetsky <egor@pasemi.com>
4438 L:      linux-edac@vger.kernel.org
4439 S:      Maintained
4440 F:      drivers/edac/pasemi_edac.c
4441
4442 EDAC-R82600
4443 M:      Tim Small <tim@buttersideup.com>
4444 L:      linux-edac@vger.kernel.org
4445 S:      Maintained
4446 F:      drivers/edac/r82600_edac.c
4447
4448 EDAC-SBRIDGE
4449 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4450 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4451 L:      linux-edac@vger.kernel.org
4452 S:      Maintained
4453 F:      drivers/edac/sb_edac.c
4454
4455 EDAC-XGENE
4456 APPLIED MICRO (APM) X-GENE SOC EDAC
4457 M:     Loc Ho <lho@apm.com>
4458 S:     Supported
4459 F:     drivers/edac/xgene_edac.c
4460 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4461
4462 EDIROL UA-101/UA-1000 DRIVER
4463 M:      Clemens Ladisch <clemens@ladisch.de>
4464 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4465 T:      git git://git.alsa-project.org/alsa-kernel.git
4466 S:      Maintained
4467 F:      sound/usb/misc/ua101.c
4468
4469 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4470 M:      Matt Fleming <matt@codeblueprint.co.uk>
4471 L:      linux-efi@vger.kernel.org
4472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4473 S:      Maintained
4474 F:      Documentation/efi-stub.txt
4475 F:      arch/ia64/kernel/efi.c
4476 F:      arch/x86/boot/compressed/eboot.[ch]
4477 F:      arch/x86/include/asm/efi.h
4478 F:      arch/x86/platform/efi/
4479 F:      drivers/firmware/efi/
4480 F:      include/linux/efi*.h
4481
4482 EFI VARIABLE FILESYSTEM
4483 M:      Matthew Garrett <matthew.garrett@nebula.com>
4484 M:      Jeremy Kerr <jk@ozlabs.org>
4485 M:      Matt Fleming <matt@codeblueprint.co.uk>
4486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4487 L:      linux-efi@vger.kernel.org
4488 S:      Maintained
4489 F:      fs/efivarfs/
4490
4491 EFIFB FRAMEBUFFER DRIVER
4492 L:      linux-fbdev@vger.kernel.org
4493 M:      Peter Jones <pjones@redhat.com>
4494 S:      Maintained
4495 F:      drivers/video/fbdev/efifb.c
4496
4497 EFS FILESYSTEM
4498 W:      http://aeschi.ch.eu.org/efs/
4499 S:      Orphan
4500 F:      fs/efs/
4501
4502 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4503 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4504 L:      netdev@vger.kernel.org
4505 S:      Maintained
4506 F:      drivers/net/ethernet/ibm/ehea/
4507
4508 EM28XX VIDEO4LINUX DRIVER
4509 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4510 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4511 L:      linux-media@vger.kernel.org
4512 W:      https://linuxtv.org
4513 T:      git git://linuxtv.org/media_tree.git
4514 S:      Maintained
4515 F:      drivers/media/usb/em28xx/
4516
4517 EMBEDDED LINUX
4518 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4519 M:      Matt Mackall <mpm@selenic.com>
4520 M:      David Woodhouse <dwmw2@infradead.org>
4521 L:      linux-embedded@vger.kernel.org
4522 S:      Maintained
4523
4524 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4525 M:      James Smart <james.smart@avagotech.com>
4526 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4527 L:      linux-scsi@vger.kernel.org
4528 W:      http://www.avagotech.com
4529 S:      Supported
4530 F:      drivers/scsi/lpfc/
4531
4532 ENE CB710 FLASH CARD READER DRIVER
4533 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4534 S:      Maintained
4535 F:      drivers/misc/cb710/
4536 F:      drivers/mmc/host/cb710-mmc.*
4537 F:      include/linux/cb710.h
4538
4539 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4540 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4541 S:      Maintained
4542 F:      drivers/media/rc/ene_ir.*
4543
4544 EPSON S1D13XXX FRAMEBUFFER DRIVER
4545 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4546 S:      Maintained
4547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4548 F:      drivers/video/fbdev/s1d13xxxfb.c
4549 F:      include/video/s1d13xxxfb.h
4550
4551 ET131X NETWORK DRIVER
4552 M:      Mark Einon <mark.einon@gmail.com>
4553 S:      Odd Fixes
4554 F:      drivers/net/ethernet/agere/
4555
4556 ETHERNET BRIDGE
4557 M:      Stephen Hemminger <stephen@networkplumber.org>
4558 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4559 L:      netdev@vger.kernel.org
4560 W:      http://www.linuxfoundation.org/en/Net:Bridge
4561 S:      Maintained
4562 F:      include/linux/netfilter_bridge/
4563 F:      net/bridge/
4564
4565 ETHERNET PHY LIBRARY
4566 M:      Florian Fainelli <f.fainelli@gmail.com>
4567 L:      netdev@vger.kernel.org
4568 S:      Maintained
4569 F:      include/linux/phy.h
4570 F:      include/linux/phy_fixed.h
4571 F:      drivers/net/phy/
4572 F:      Documentation/networking/phy.txt
4573 F:      drivers/of/of_mdio.c
4574 F:      drivers/of/of_net.c
4575
4576 EXT2 FILE SYSTEM
4577 M:      Jan Kara <jack@suse.com>
4578 L:      linux-ext4@vger.kernel.org
4579 S:      Maintained
4580 F:      Documentation/filesystems/ext2.txt
4581 F:      fs/ext2/
4582 F:      include/linux/ext2*
4583
4584 EXT4 FILE SYSTEM
4585 M:      "Theodore Ts'o" <tytso@mit.edu>
4586 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4587 L:      linux-ext4@vger.kernel.org
4588 W:      http://ext4.wiki.kernel.org
4589 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4591 S:      Maintained
4592 F:      Documentation/filesystems/ext4.txt
4593 F:      fs/ext4/
4594
4595 Extended Verification Module (EVM)
4596 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4597 L:      linux-ima-devel@lists.sourceforge.net
4598 L:      linux-security-module@vger.kernel.org
4599 S:      Supported
4600 F:      security/integrity/evm/
4601
4602 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4603 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4604 M:      Chanwoo Choi <cw00.choi@samsung.com>
4605 L:      linux-kernel@vger.kernel.org
4606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4607 S:      Maintained
4608 F:      drivers/extcon/
4609 F:      include/linux/extcon/
4610 F:      include/linux/extcon.h
4611 F:      Documentation/extcon/
4612 F:      Documentation/devicetree/bindings/extcon/
4613
4614 EXYNOS DP DRIVER
4615 M:      Jingoo Han <jingoohan1@gmail.com>
4616 L:      dri-devel@lists.freedesktop.org
4617 S:      Maintained
4618 F:      drivers/gpu/drm/exynos/exynos_dp*
4619
4620 EXYNOS SYSMMU (IOMMU) driver
4621 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4622 L:      iommu@lists.linux-foundation.org
4623 S:      Maintained
4624 F:      drivers/iommu/exynos-iommu.c
4625
4626 EXYNOS MIPI DISPLAY DRIVERS
4627 M:      Inki Dae <inki.dae@samsung.com>
4628 M:      Donghwa Lee <dh09.lee@samsung.com>
4629 M:      Kyungmin Park <kyungmin.park@samsung.com>
4630 L:      linux-fbdev@vger.kernel.org
4631 S:      Maintained
4632 F:      drivers/video/fbdev/exynos/exynos_mipi*
4633 F:      include/video/exynos_mipi*
4634
4635 EZchip NPS platform support
4636 M:      Noam Camus <noamc@ezchip.com>
4637 S:      Supported
4638 F:      arch/arc/plat-eznps
4639 F:      arch/arc/boot/dts/eznps.dts
4640
4641 F71805F HARDWARE MONITORING DRIVER
4642 M:      Jean Delvare <jdelvare@suse.com>
4643 L:      linux-hwmon@vger.kernel.org
4644 S:      Maintained
4645 F:      Documentation/hwmon/f71805f
4646 F:      drivers/hwmon/f71805f.c
4647
4648 FC0011 TUNER DRIVER
4649 M:      Michael Buesch <m@bues.ch>
4650 L:      linux-media@vger.kernel.org
4651 S:      Maintained
4652 F:      drivers/media/tuners/fc0011.h
4653 F:      drivers/media/tuners/fc0011.c
4654
4655 FC2580 MEDIA DRIVER
4656 M:      Antti Palosaari <crope@iki.fi>
4657 L:      linux-media@vger.kernel.org
4658 W:      https://linuxtv.org
4659 W:      http://palosaari.fi/linux/
4660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4661 T:      git git://linuxtv.org/anttip/media_tree.git
4662 S:      Maintained
4663 F:      drivers/media/tuners/fc2580*
4664
4665 FANOTIFY
4666 M:      Eric Paris <eparis@redhat.com>
4667 S:      Maintained
4668 F:      fs/notify/fanotify/
4669 F:      include/linux/fanotify.h
4670 F:      include/uapi/linux/fanotify.h
4671
4672 FARSYNC SYNCHRONOUS DRIVER
4673 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4674 W:      http://www.farsite.co.uk/
4675 S:      Supported
4676 F:      drivers/net/wan/farsync.*
4677
4678 FAULT INJECTION SUPPORT
4679 M:      Akinobu Mita <akinobu.mita@gmail.com>
4680 S:      Supported
4681 F:      Documentation/fault-injection/
4682 F:      lib/fault-inject.c
4683
4684 FBTFT Framebuffer drivers
4685 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4686 M:      Noralf Trønnes <noralf@tronnes.org>
4687 S:      Maintained
4688 F:      drivers/staging/fbtft/
4689
4690 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4691 M:      Vasu Dev <vasu.dev@intel.com>
4692 L:      fcoe-devel@open-fcoe.org
4693 W:      www.Open-FCoE.org
4694 S:      Supported
4695 F:      drivers/scsi/libfc/
4696 F:      drivers/scsi/fcoe/
4697 F:      include/scsi/fc/
4698 F:      include/scsi/libfc.h
4699 F:      include/scsi/libfcoe.h
4700 F:      include/uapi/scsi/fc/
4701
4702 FILE LOCKING (flock() and fcntl()/lockf())
4703 M:      Jeff Layton <jlayton@poochiereds.net>
4704 M:      "J. Bruce Fields" <bfields@fieldses.org>
4705 L:      linux-fsdevel@vger.kernel.org
4706 S:      Maintained
4707 F:      include/linux/fcntl.h
4708 F:      include/linux/fs.h
4709 F:      include/uapi/linux/fcntl.h
4710 F:      include/uapi/linux/fs.h
4711 F:      fs/fcntl.c
4712 F:      fs/locks.c
4713
4714 FILESYSTEMS (VFS and infrastructure)
4715 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4716 L:      linux-fsdevel@vger.kernel.org
4717 S:      Maintained
4718 F:      fs/*
4719
4720 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4721 M:      Riku Voipio <riku.voipio@iki.fi>
4722 L:      linux-hwmon@vger.kernel.org
4723 S:      Maintained
4724 F:      drivers/hwmon/f75375s.c
4725 F:      include/linux/f75375s.h
4726
4727 FIREWIRE AUDIO DRIVERS
4728 M:      Clemens Ladisch <clemens@ladisch.de>
4729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4730 T:      git git://git.alsa-project.org/alsa-kernel.git
4731 S:      Maintained
4732 F:      sound/firewire/
4733
4734 FIREWIRE MEDIA DRIVERS (firedtv)
4735 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4736 L:      linux-media@vger.kernel.org
4737 L:      linux1394-devel@lists.sourceforge.net
4738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4739 S:      Maintained
4740 F:      drivers/media/firewire/
4741
4742 FIREWIRE SBP-2 TARGET
4743 M:      Chris Boot <bootc@bootc.net>
4744 L:      linux-scsi@vger.kernel.org
4745 L:      target-devel@vger.kernel.org
4746 L:      linux1394-devel@lists.sourceforge.net
4747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4748 S:      Maintained
4749 F:      drivers/target/sbp/
4750
4751 FIREWIRE SUBSYSTEM
4752 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4753 L:      linux1394-devel@lists.sourceforge.net
4754 W:      http://ieee1394.wiki.kernel.org/
4755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4756 S:      Maintained
4757 F:      drivers/firewire/
4758 F:      include/linux/firewire.h
4759 F:      include/uapi/linux/firewire*.h
4760 F:      tools/firewire/
4761
4762 FIRMWARE LOADER (request_firmware)
4763 M:      Ming Lei <ming.lei@canonical.com>
4764 L:      linux-kernel@vger.kernel.org
4765 S:      Maintained
4766 F:      Documentation/firmware_class/
4767 F:      drivers/base/firmware*.c
4768 F:      include/linux/firmware.h
4769
4770 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4771 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4772 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4773 S:      Maintained
4774 F:      drivers/block/rsxx/
4775
4776 FLOPPY DRIVER
4777 M:      Jiri Kosina <jikos@kernel.org>
4778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4779 S:      Odd fixes
4780 F:      drivers/block/floppy.c
4781
4782 FMC SUBSYSTEM
4783 M:      Alessandro Rubini <rubini@gnudd.com>
4784 W:      http://www.ohwr.org/projects/fmc-bus
4785 S:      Supported
4786 F:      drivers/fmc/
4787 F:      include/linux/fmc*.h
4788 F:      include/linux/ipmi-fru.h
4789 K:      fmc_d.*register
4790
4791 FPGA MANAGER FRAMEWORK
4792 M:      Alan Tull <atull@opensource.altera.com>
4793 R:      Moritz Fischer <moritz.fischer@ettus.com>
4794 S:      Maintained
4795 F:      drivers/fpga/
4796 F:      include/linux/fpga/fpga-mgr.h
4797 W:      http://www.rocketboards.org
4798
4799 FPU EMULATOR
4800 M:      Bill Metzenthen <billm@melbpc.org.au>
4801 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4802 S:      Maintained
4803 F:      arch/x86/math-emu/
4804
4805 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4806 L:      netdev@vger.kernel.org
4807 S:      Orphan
4808 F:      drivers/net/wan/dlci.c
4809 F:      drivers/net/wan/sdla.c
4810
4811 FRAMEBUFFER LAYER
4812 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4813 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4814 L:      linux-fbdev@vger.kernel.org
4815 W:      http://linux-fbdev.sourceforge.net/
4816 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4818 S:      Maintained
4819 F:      Documentation/fb/
4820 F:      drivers/video/
4821 F:      include/video/
4822 F:      include/linux/fb.h
4823 F:      include/uapi/video/
4824 F:      include/uapi/linux/fb.h
4825
4826 FREESCALE DIU FRAMEBUFFER DRIVER
4827 M:      Timur Tabi <timur@tabi.org>
4828 L:      linux-fbdev@vger.kernel.org
4829 S:      Maintained
4830 F:      drivers/video/fbdev/fsl-diu-fb.*
4831
4832 FREESCALE DMA DRIVER
4833 M:      Li Yang <leoli@freescale.com>
4834 M:      Zhang Wei <zw@zh-kernel.org>
4835 L:      linuxppc-dev@lists.ozlabs.org
4836 S:      Maintained
4837 F:      drivers/dma/fsldma.*
4838
4839 FREESCALE GPMI NAND DRIVER
4840 M:      Han Xu <han.xu@nxp.com>
4841 L:      linux-mtd@lists.infradead.org
4842 S:      Maintained
4843 F:      drivers/mtd/nand/gpmi-nand/*
4844
4845 FREESCALE I2C CPM DRIVER
4846 M:      Jochen Friedrich <jochen@scram.de>
4847 L:      linuxppc-dev@lists.ozlabs.org
4848 L:      linux-i2c@vger.kernel.org
4849 S:      Maintained
4850 F:      drivers/i2c/busses/i2c-cpm.c
4851
4852 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4853 M:      Sascha Hauer <kernel@pengutronix.de>
4854 L:      linux-fbdev@vger.kernel.org
4855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4856 S:      Maintained
4857 F:      include/linux/platform_data/video-imxfb.h
4858 F:      drivers/video/fbdev/imxfb.c
4859
4860 FREESCALE QUAD SPI DRIVER
4861 M:      Han Xu <han.xu@nxp.com>
4862 L:      linux-mtd@lists.infradead.org
4863 S:      Maintained
4864 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4865
4866 FREESCALE SOC FS_ENET DRIVER
4867 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4868 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4869 L:      linuxppc-dev@lists.ozlabs.org
4870 L:      netdev@vger.kernel.org
4871 S:      Maintained
4872 F:      drivers/net/ethernet/freescale/fs_enet/
4873 F:      include/linux/fs_enet_pd.h
4874
4875 FREESCALE IMX / MXC FEC DRIVER
4876 M:      Fugang Duan <fugang.duan@nxp.com>
4877 L:      netdev@vger.kernel.org
4878 S:      Maintained
4879 F:      drivers/net/ethernet/freescale/fec_main.c
4880 F:      drivers/net/ethernet/freescale/fec_ptp.c
4881 F:      drivers/net/ethernet/freescale/fec.h
4882 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4883
4884 FREESCALE QUICC ENGINE LIBRARY
4885 L:      linuxppc-dev@lists.ozlabs.org
4886 S:      Orphan
4887 F:      drivers/soc/fsl/qe/
4888 F:      include/soc/fsl/*qe*.h
4889 F:      include/soc/fsl/*ucc*.h
4890
4891 FREESCALE USB PERIPHERAL DRIVERS
4892 M:      Li Yang <leoli@freescale.com>
4893 L:      linux-usb@vger.kernel.org
4894 L:      linuxppc-dev@lists.ozlabs.org
4895 S:      Maintained
4896 F:      drivers/usb/gadget/udc/fsl*
4897
4898 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4899 M:      Li Yang <leoli@freescale.com>
4900 L:      netdev@vger.kernel.org
4901 L:      linuxppc-dev@lists.ozlabs.org
4902 S:      Maintained
4903 F:      drivers/net/ethernet/freescale/ucc_geth*
4904
4905 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4906 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4907 L:      netdev@vger.kernel.org
4908 S:      Maintained
4909 F:      drivers/net/ethernet/freescale/gianfar*
4910 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4911 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4912
4913 FREESCALE QUICC ENGINE UCC UART DRIVER
4914 M:      Timur Tabi <timur@tabi.org>
4915 L:      linuxppc-dev@lists.ozlabs.org
4916 S:      Maintained
4917 F:      drivers/tty/serial/ucc_uart.c
4918
4919 FREESCALE SOC SOUND DRIVERS
4920 M:      Timur Tabi <timur@tabi.org>
4921 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4922 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4923 R:      Fabio Estevam <fabio.estevam@nxp.com>
4924 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4925 L:      linuxppc-dev@lists.ozlabs.org
4926 S:      Maintained
4927 F:      sound/soc/fsl/fsl*
4928 F:      sound/soc/fsl/imx*
4929 F:      sound/soc/fsl/mpc8610_hpcd.c
4930
4931 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4932 M:      "J. German Rivera" <German.Rivera@freescale.com>
4933 M:      Stuart Yoder <stuart.yoder@nxp.com>
4934 L:      linux-kernel@vger.kernel.org
4935 S:      Maintained
4936 F:      drivers/staging/fsl-mc/
4937
4938 FREEVXFS FILESYSTEM
4939 M:      Christoph Hellwig <hch@infradead.org>
4940 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4941 S:      Maintained
4942 F:      fs/freevxfs/
4943
4944 FREEZER
4945 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4946 M:      Pavel Machek <pavel@ucw.cz>
4947 L:      linux-pm@vger.kernel.org
4948 S:      Supported
4949 F:      Documentation/power/freezing-of-tasks.txt
4950 F:      include/linux/freezer.h
4951 F:      kernel/freezer.c
4952
4953 FRONTSWAP API
4954 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4955 L:      linux-kernel@vger.kernel.org
4956 S:      Maintained
4957 F:      mm/frontswap.c
4958 F:      include/linux/frontswap.h
4959
4960 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4961 M:      David Howells <dhowells@redhat.com>
4962 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4963 S:      Supported
4964 F:      Documentation/filesystems/caching/
4965 F:      fs/fscache/
4966 F:      include/linux/fscache*.h
4967
4968 F2FS FILE SYSTEM
4969 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4970 M:      Changman Lee <cm224.lee@samsung.com>
4971 R:      Chao Yu <yuchao0@huawei.com>
4972 L:      linux-f2fs-devel@lists.sourceforge.net
4973 W:      http://en.wikipedia.org/wiki/F2FS
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4975 S:      Maintained
4976 F:      Documentation/filesystems/f2fs.txt
4977 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4978 F:      fs/f2fs/
4979 F:      include/linux/f2fs_fs.h
4980 F:      include/trace/events/f2fs.h
4981
4982 FUJITSU FR-V (FRV) PORT
4983 S:      Orphan
4984 F:      arch/frv/
4985
4986 FUJITSU LAPTOP EXTRAS
4987 M:      Jonathan Woithe <jwoithe@just42.net>
4988 L:      platform-driver-x86@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/platform/x86/fujitsu-laptop.c
4991
4992 FUJITSU M-5MO LS CAMERA ISP DRIVER
4993 M:      Kyungmin Park <kyungmin.park@samsung.com>
4994 M:      Heungjun Kim <riverful.kim@samsung.com>
4995 L:      linux-media@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/media/i2c/m5mols/
4998 F:      include/media/i2c/m5mols.h
4999
5000 FUJITSU TABLET EXTRAS
5001 M:      Robert Gerlach <khnz@gmx.de>
5002 L:      platform-driver-x86@vger.kernel.org
5003 S:      Maintained
5004 F:      drivers/platform/x86/fujitsu-tablet.c
5005
5006 FUSE: FILESYSTEM IN USERSPACE
5007 M:      Miklos Szeredi <miklos@szeredi.hu>
5008 L:      linux-fsdevel@vger.kernel.org
5009 W:      http://fuse.sourceforge.net/
5010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5011 S:      Maintained
5012 F:      fs/fuse/
5013 F:      include/uapi/linux/fuse.h
5014 F:      Documentation/filesystems/fuse.txt
5015
5016 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5017 M:      Rik Faith <faith@cs.unc.edu>
5018 L:      linux-scsi@vger.kernel.org
5019 S:      Odd Fixes (e.g., new signatures)
5020 F:      drivers/scsi/fdomain.*
5021
5022 GCOV BASED KERNEL PROFILING
5023 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5024 S:      Maintained
5025 F:      kernel/gcov/
5026 F:      Documentation/gcov.txt
5027
5028 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5029 M:      Achim Leubner <achim_leubner@adaptec.com>
5030 L:      linux-scsi@vger.kernel.org
5031 W:      http://www.icp-vortex.com/
5032 S:      Supported
5033 F:      drivers/scsi/gdt*
5034
5035 GDB KERNEL DEBUGGING HELPER SCRIPTS
5036 M:      Jan Kiszka <jan.kiszka@siemens.com>
5037 M:      Kieran Bingham <kieran@bingham.xyz>
5038 S:      Supported
5039 F:      scripts/gdb/
5040
5041 GEMTEK FM RADIO RECEIVER DRIVER
5042 M:      Hans Verkuil <hverkuil@xs4all.nl>
5043 L:      linux-media@vger.kernel.org
5044 T:      git git://linuxtv.org/media_tree.git
5045 W:      https://linuxtv.org
5046 S:      Maintained
5047 F:      drivers/media/radio/radio-gemtek*
5048
5049 GENERIC GPIO I2C DRIVER
5050 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5051 S:      Supported
5052 F:      drivers/i2c/busses/i2c-gpio.c
5053 F:      include/linux/i2c-gpio.h
5054
5055 GENERIC GPIO I2C MULTIPLEXER DRIVER
5056 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5057 L:      linux-i2c@vger.kernel.org
5058 S:      Supported
5059 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5060 F:      include/linux/i2c-mux-gpio.h
5061 F:      Documentation/i2c/muxes/i2c-mux-gpio
5062
5063 GENERIC HDLC (WAN) DRIVERS
5064 M:      Krzysztof Halasa <khc@pm.waw.pl>
5065 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5066 S:      Maintained
5067 F:      drivers/net/wan/c101.c
5068 F:      drivers/net/wan/hd6457*
5069 F:      drivers/net/wan/hdlc*
5070 F:      drivers/net/wan/n2.c
5071 F:      drivers/net/wan/pc300too.c
5072 F:      drivers/net/wan/pci200syn.c
5073 F:      drivers/net/wan/wanxl*
5074
5075 GENERIC INCLUDE/ASM HEADER FILES
5076 M:      Arnd Bergmann <arnd@arndb.de>
5077 L:      linux-arch@vger.kernel.org
5078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5079 S:      Maintained
5080 F:      include/asm-generic/
5081 F:      include/uapi/asm-generic/
5082
5083 GENERIC PHY FRAMEWORK
5084 M:      Kishon Vijay Abraham I <kishon@ti.com>
5085 L:      linux-kernel@vger.kernel.org
5086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5087 S:      Supported
5088 F:      drivers/phy/
5089 F:      include/linux/phy/
5090
5091 GENERIC PM DOMAINS
5092 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5093 M:      Kevin Hilman <khilman@kernel.org>
5094 M:      Ulf Hansson <ulf.hansson@linaro.org>
5095 L:      linux-pm@vger.kernel.org
5096 S:      Supported
5097 F:      drivers/base/power/domain*.c
5098 F:      include/linux/pm_domain.h
5099
5100 GENERIC UIO DRIVER FOR PCI DEVICES
5101 M:      "Michael S. Tsirkin" <mst@redhat.com>
5102 L:      kvm@vger.kernel.org
5103 S:      Supported
5104 F:      drivers/uio/uio_pci_generic.c
5105
5106 GET_MAINTAINER SCRIPT
5107 M:      Joe Perches <joe@perches.com>
5108 S:      Maintained
5109 F:      scripts/get_maintainer.pl
5110
5111 GFS2 FILE SYSTEM
5112 M:      Steven Whitehouse <swhiteho@redhat.com>
5113 M:      Bob Peterson <rpeterso@redhat.com>
5114 L:      cluster-devel@redhat.com
5115 W:      http://sources.redhat.com/cluster/
5116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5117 S:      Supported
5118 F:      Documentation/filesystems/gfs2*.txt
5119 F:      fs/gfs2/
5120 F:      include/uapi/linux/gfs2_ondisk.h
5121
5122 GIGASET ISDN DRIVERS
5123 M:      Paul Bolle <pebolle@tiscali.nl>
5124 L:      gigaset307x-common@lists.sourceforge.net
5125 W:      http://gigaset307x.sourceforge.net/
5126 S:      Odd Fixes
5127 F:      Documentation/isdn/README.gigaset
5128 F:      drivers/isdn/gigaset/
5129 F:      include/uapi/linux/gigaset_dev.h
5130
5131 GO7007 MPEG CODEC
5132 M:      Hans Verkuil <hans.verkuil@cisco.com>
5133 L:      linux-media@vger.kernel.org
5134 S:      Maintained
5135 F:      drivers/media/usb/go7007/
5136
5137 GOODIX TOUCHSCREEN
5138 M:      Bastien Nocera <hadess@hadess.net>
5139 L:      linux-input@vger.kernel.org
5140 S:      Maintained
5141 F:      drivers/input/touchscreen/goodix.c
5142
5143 GPIO SUBSYSTEM
5144 M:      Linus Walleij <linus.walleij@linaro.org>
5145 M:      Alexandre Courbot <gnurou@gmail.com>
5146 L:      linux-gpio@vger.kernel.org
5147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5148 S:      Maintained
5149 F:      Documentation/devicetree/bindings/gpio/
5150 F:      Documentation/gpio/
5151 F:      Documentation/ABI/testing/gpio-cdev
5152 F:      Documentation/ABI/obsolete/sysfs-gpio
5153 F:      drivers/gpio/
5154 F:      include/linux/gpio/
5155 F:      include/linux/gpio.h
5156 F:      include/asm-generic/gpio.h
5157 F:      include/uapi/linux/gpio.h
5158 F:      tools/gpio/
5159
5160 GRE DEMULTIPLEXER DRIVER
5161 M:      Dmitry Kozlov <xeb@mail.ru>
5162 L:      netdev@vger.kernel.org
5163 S:      Maintained
5164 F:      net/ipv4/gre_demux.c
5165 F:      net/ipv4/gre_offload.c
5166 F:      include/net/gre.h
5167
5168 GRETH 10/100/1G Ethernet MAC device driver
5169 M:      Andreas Larsson <andreas@gaisler.com>
5170 L:      netdev@vger.kernel.org
5171 S:      Maintained
5172 F:      drivers/net/ethernet/aeroflex/
5173
5174 GSPCA FINEPIX SUBDRIVER
5175 M:      Frank Zago <frank@zago.net>
5176 L:      linux-media@vger.kernel.org
5177 T:      git git://linuxtv.org/media_tree.git
5178 S:      Maintained
5179 F:      drivers/media/usb/gspca/finepix.c
5180
5181 GSPCA GL860 SUBDRIVER
5182 M:      Olivier Lorin <o.lorin@laposte.net>
5183 L:      linux-media@vger.kernel.org
5184 T:      git git://linuxtv.org/media_tree.git
5185 S:      Maintained
5186 F:      drivers/media/usb/gspca/gl860/
5187
5188 GSPCA M5602 SUBDRIVER
5189 M:      Erik Andren <erik.andren@gmail.com>
5190 L:      linux-media@vger.kernel.org
5191 T:      git git://linuxtv.org/media_tree.git
5192 S:      Maintained
5193 F:      drivers/media/usb/gspca/m5602/
5194
5195 GSPCA PAC207 SONIXB SUBDRIVER
5196 M:      Hans Verkuil <hverkuil@xs4all.nl>
5197 L:      linux-media@vger.kernel.org
5198 T:      git git://linuxtv.org/media_tree.git
5199 S:      Odd Fixes
5200 F:      drivers/media/usb/gspca/pac207.c
5201
5202 GSPCA SN9C20X SUBDRIVER
5203 M:      Brian Johnson <brijohn@gmail.com>
5204 L:      linux-media@vger.kernel.org
5205 T:      git git://linuxtv.org/media_tree.git
5206 S:      Maintained
5207 F:      drivers/media/usb/gspca/sn9c20x.c
5208
5209 GSPCA T613 SUBDRIVER
5210 M:      Leandro Costantino <lcostantino@gmail.com>
5211 L:      linux-media@vger.kernel.org
5212 T:      git git://linuxtv.org/media_tree.git
5213 S:      Maintained
5214 F:      drivers/media/usb/gspca/t613.c
5215
5216 GSPCA USB WEBCAM DRIVER
5217 M:      Hans Verkuil <hverkuil@xs4all.nl>
5218 L:      linux-media@vger.kernel.org
5219 T:      git git://linuxtv.org/media_tree.git
5220 S:      Odd Fixes
5221 F:      drivers/media/usb/gspca/
5222
5223 GUID PARTITION TABLE (GPT)
5224 M:      Davidlohr Bueso <dave@stgolabs.net>
5225 L:      linux-efi@vger.kernel.org
5226 S:      Maintained
5227 F:      block/partitions/efi.*
5228
5229 STK1160 USB VIDEO CAPTURE DRIVER
5230 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5231 L:      linux-media@vger.kernel.org
5232 T:      git git://linuxtv.org/media_tree.git
5233 S:      Maintained
5234 F:      drivers/media/usb/stk1160/
5235
5236 H8/300 ARCHITECTURE
5237 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5238 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5239 W:      http://uclinux-h8.sourceforge.jp
5240 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5241 S:      Maintained
5242 F:      arch/h8300/
5243 F:      drivers/clocksource/h8300_*.c
5244 F:      drivers/clk/h8300/
5245 F:      drivers/irqchip/irq-renesas-h8*.c
5246
5247 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5248 M:      Frank Seidel <frank@f-seidel.de>
5249 L:      platform-driver-x86@vger.kernel.org
5250 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5251 S:      Maintained
5252 F:      drivers/platform/x86/hdaps.c
5253
5254 HDPVR USB VIDEO ENCODER DRIVER
5255 M:      Hans Verkuil <hverkuil@xs4all.nl>
5256 L:      linux-media@vger.kernel.org
5257 T:      git git://linuxtv.org/media_tree.git
5258 W:      https://linuxtv.org
5259 S:      Odd Fixes
5260 F:      drivers/media/usb/hdpvr/
5261
5262 HWPOISON MEMORY FAILURE HANDLING
5263 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5264 L:      linux-mm@kvack.org
5265 S:      Maintained
5266 F:      mm/memory-failure.c
5267 F:      mm/hwpoison-inject.c
5268
5269 HYPERVISOR VIRTUAL CONSOLE DRIVER
5270 L:      linuxppc-dev@lists.ozlabs.org
5271 S:      Odd Fixes
5272 F:      drivers/tty/hvc/
5273
5274 HACKRF MEDIA DRIVER
5275 M:      Antti Palosaari <crope@iki.fi>
5276 L:      linux-media@vger.kernel.org
5277 W:      https://linuxtv.org
5278 W:      http://palosaari.fi/linux/
5279 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5280 T:      git git://linuxtv.org/anttip/media_tree.git
5281 S:      Maintained
5282 F:      drivers/media/usb/hackrf/
5283
5284 HARDWARE MONITORING
5285 M:      Jean Delvare <jdelvare@suse.com>
5286 M:      Guenter Roeck <linux@roeck-us.net>
5287 L:      linux-hwmon@vger.kernel.org
5288 W:      http://hwmon.wiki.kernel.org/
5289 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5291 S:      Maintained
5292 F:      Documentation/hwmon/
5293 F:      drivers/hwmon/
5294 F:      include/linux/hwmon*.h
5295
5296 HARDWARE RANDOM NUMBER GENERATOR CORE
5297 M:      Matt Mackall <mpm@selenic.com>
5298 M:      Herbert Xu <herbert@gondor.apana.org.au>
5299 L:      linux-crypto@vger.kernel.org
5300 S:      Odd fixes
5301 F:      Documentation/hw_random.txt
5302 F:      drivers/char/hw_random/
5303 F:      include/linux/hw_random.h
5304
5305 HARDWARE SPINLOCK CORE
5306 M:      Ohad Ben-Cohen <ohad@wizery.com>
5307 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5308 L:      linux-remoteproc@vger.kernel.org
5309 S:      Maintained
5310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5311 F:      Documentation/hwspinlock.txt
5312 F:      drivers/hwspinlock/hwspinlock_*
5313 F:      include/linux/hwspinlock.h
5314
5315 HARMONY SOUND DRIVER
5316 L:      linux-parisc@vger.kernel.org
5317 S:      Maintained
5318 F:      sound/parisc/harmony.*
5319
5320 HD29L2 MEDIA DRIVER
5321 M:      Antti Palosaari <crope@iki.fi>
5322 L:      linux-media@vger.kernel.org
5323 W:      https://linuxtv.org
5324 W:      http://palosaari.fi/linux/
5325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5326 T:      git git://linuxtv.org/anttip/media_tree.git
5327 S:      Maintained
5328 F:      drivers/media/dvb-frontends/hd29l2*
5329
5330 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5331 M:      Don Brace <don.brace@microsemi.com>
5332 L:      iss_storagedev@hp.com
5333 L:      esc.storagedev@microsemi.com
5334 L:      linux-scsi@vger.kernel.org
5335 S:      Supported
5336 F:      Documentation/scsi/hpsa.txt
5337 F:      drivers/scsi/hpsa*.[ch]
5338 F:      include/linux/cciss*.h
5339 F:      include/uapi/linux/cciss*.h
5340
5341 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5342 M:      Don Brace <don.brace@microsemi.com>
5343 L:      iss_storagedev@hp.com
5344 L:      esc.storagedev@microsemi.com
5345 L:      linux-scsi@vger.kernel.org
5346 S:      Supported
5347 F:      Documentation/blockdev/cciss.txt
5348 F:      drivers/block/cciss*
5349 F:      include/linux/cciss_ioctl.h
5350 F:      include/uapi/linux/cciss_ioctl.h
5351
5352 HFI1 DRIVER
5353 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
5354 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
5355 L:      linux-rdma@vger.kernel.org
5356 S:      Supported
5357 F:      drivers/infiniband/hw/hfi1
5358
5359 HFS FILESYSTEM
5360 L:      linux-fsdevel@vger.kernel.org
5361 S:      Orphan
5362 F:      Documentation/filesystems/hfs.txt
5363 F:      fs/hfs/
5364
5365 HFSPLUS FILESYSTEM
5366 L:      linux-fsdevel@vger.kernel.org
5367 S:      Orphan
5368 F:      Documentation/filesystems/hfsplus.txt
5369 F:      fs/hfsplus/
5370
5371 HGA FRAMEBUFFER DRIVER
5372 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5373 L:      linux-nvidia@lists.surfsouth.com
5374 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5375 S:      Maintained
5376 F:      drivers/video/fbdev/hgafb.c
5377
5378 HIBERNATION (aka Software Suspend, aka swsusp)
5379 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5380 M:      Pavel Machek <pavel@ucw.cz>
5381 L:      linux-pm@vger.kernel.org
5382 S:      Supported
5383 F:      arch/x86/power/
5384 F:      drivers/base/power/
5385 F:      kernel/power/
5386 F:      include/linux/suspend.h
5387 F:      include/linux/freezer.h
5388 F:      include/linux/pm.h
5389 F:      arch/*/include/asm/suspend*.h
5390
5391 HID CORE LAYER
5392 M:      Jiri Kosina <jikos@kernel.org>
5393 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5394 L:      linux-input@vger.kernel.org
5395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5396 S:      Maintained
5397 F:      drivers/hid/
5398 F:      include/linux/hid*
5399 F:      include/uapi/linux/hid*
5400
5401 HID SENSOR HUB DRIVERS
5402 M:      Jiri Kosina <jikos@kernel.org>
5403 M:      Jonathan Cameron <jic23@kernel.org>
5404 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5405 L:      linux-input@vger.kernel.org
5406 L:      linux-iio@vger.kernel.org
5407 S:      Maintained
5408 F:      Documentation/hid/hid-sensor*
5409 F:      drivers/hid/hid-sensor-*
5410 F:      drivers/iio/*/hid-*
5411 F:      include/linux/hid-sensor-*
5412
5413 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5414 M:      Thomas Gleixner <tglx@linutronix.de>
5415 L:      linux-kernel@vger.kernel.org
5416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5417 S:      Maintained
5418 F:      Documentation/timers/
5419 F:      kernel/time/hrtimer.c
5420 F:      kernel/time/clockevents.c
5421 F:      kernel/time/tick*.*
5422 F:      kernel/time/timer_*.c
5423 F:      include/linux/clockchips.h
5424 F:      include/linux/hrtimer.h
5425
5426 HIGH-SPEED SCC DRIVER FOR AX.25
5427 L:      linux-hams@vger.kernel.org
5428 S:      Orphan
5429 F:      drivers/net/hamradio/dmascc.c
5430 F:      drivers/net/hamradio/scc.c
5431
5432 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5433 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5434 W:      http://www.highpoint-tech.com
5435 S:      Supported
5436 F:      Documentation/scsi/hptiop.txt
5437 F:      drivers/scsi/hptiop.c
5438
5439 HIPPI
5440 M:      Jes Sorensen <jes@trained-monkey.org>
5441 L:      linux-hippi@sunsite.dk
5442 S:      Maintained
5443 F:      include/linux/hippidevice.h
5444 F:      include/uapi/linux/if_hippi.h
5445 F:      net/802/hippi.c
5446 F:      drivers/net/hippi/
5447
5448 HISILICON SAS Controller
5449 M:      John Garry <john.garry@huawei.com>
5450 W:      http://www.hisilicon.com
5451 S:      Supported
5452 F:      drivers/scsi/hisi_sas/
5453 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5454
5455 HOST AP DRIVER
5456 M:      Jouni Malinen <j@w1.fi>
5457 L:      hostap@shmoo.com (subscribers-only)
5458 L:      linux-wireless@vger.kernel.org
5459 W:      http://hostap.epitest.fi/
5460 S:      Maintained
5461 F:      drivers/net/wireless/intersil/hostap/
5462
5463 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5464 L:      platform-driver-x86@vger.kernel.org
5465 S:      Orphan
5466 F:      drivers/platform/x86/tc1100-wmi.c
5467
5468 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5469 M:      Jaroslav Kysela <perex@perex.cz>
5470 S:      Maintained
5471 F:      drivers/net/ethernet/hp/hp100.*
5472
5473 HPET:   High Precision Event Timers driver
5474 M:      Clemens Ladisch <clemens@ladisch.de>
5475 S:      Maintained
5476 F:      Documentation/timers/hpet.txt
5477 F:      drivers/char/hpet.c
5478 F:      include/linux/hpet.h
5479 F:      include/uapi/linux/hpet.h
5480
5481 HPET:   x86
5482 S:      Orphan
5483 F:      arch/x86/kernel/hpet.c
5484 F:      arch/x86/include/asm/hpet.h
5485
5486 HPFS FILESYSTEM
5487 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5488 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5489 S:      Maintained
5490 F:      fs/hpfs/
5491
5492 HSI SUBSYSTEM
5493 M:      Sebastian Reichel <sre@kernel.org>
5494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5495 S:      Maintained
5496 F:      Documentation/ABI/testing/sysfs-bus-hsi
5497 F:      Documentation/hsi.txt
5498 F:      drivers/hsi/
5499 F:      include/linux/hsi/
5500 F:      include/uapi/linux/hsi/
5501
5502 HSO 3G MODEM DRIVER
5503 M:      Jan Dumon <j.dumon@option.com>
5504 W:      http://www.pharscape.org
5505 S:      Maintained
5506 F:      drivers/net/usb/hso.c
5507
5508 HSR NETWORK PROTOCOL
5509 M:      Arvid Brodin <arvid.brodin@alten.se>
5510 L:      netdev@vger.kernel.org
5511 S:      Maintained
5512 F:      net/hsr/
5513
5514 HTCPEN TOUCHSCREEN DRIVER
5515 M:      Pau Oliva Fora <pof@eslack.org>
5516 L:      linux-input@vger.kernel.org
5517 S:      Maintained
5518 F:      drivers/input/touchscreen/htcpen.c
5519
5520 HUGETLB FILESYSTEM
5521 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5522 S:      Maintained
5523 F:      fs/hugetlbfs/
5524
5525 Hyper-V CORE AND DRIVERS
5526 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5527 M:      Haiyang Zhang <haiyangz@microsoft.com>
5528 L:      devel@linuxdriverproject.org
5529 S:      Maintained
5530 F:      arch/x86/include/asm/mshyperv.h
5531 F:      arch/x86/include/uapi/asm/hyperv.h
5532 F:      arch/x86/kernel/cpu/mshyperv.c
5533 F:      drivers/hid/hid-hyperv.c
5534 F:      drivers/hv/
5535 F:      drivers/input/serio/hyperv-keyboard.c
5536 F:      drivers/pci/host/pci-hyperv.c
5537 F:      drivers/net/hyperv/
5538 F:      drivers/scsi/storvsc_drv.c
5539 F:      drivers/video/fbdev/hyperv_fb.c
5540 F:      include/linux/hyperv.h
5541 F:      tools/hv/
5542 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5543
5544 I2C MUXES
5545 M:      Peter Rosin <peda@axentia.se>
5546 L:      linux-i2c@vger.kernel.org
5547 S:      Maintained
5548 F:      Documentation/i2c/i2c-topology
5549 F:      Documentation/i2c/muxes/
5550 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5551 F:      drivers/i2c/i2c-mux.c
5552 F:      drivers/i2c/muxes/
5553 F:      include/linux/i2c-mux.h
5554
5555 I2C OVER PARALLEL PORT
5556 M:      Jean Delvare <jdelvare@suse.com>
5557 L:      linux-i2c@vger.kernel.org
5558 S:      Maintained
5559 F:      Documentation/i2c/busses/i2c-parport
5560 F:      Documentation/i2c/busses/i2c-parport-light
5561 F:      drivers/i2c/busses/i2c-parport.c
5562 F:      drivers/i2c/busses/i2c-parport-light.c
5563
5564 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5565 M:      Jean Delvare <jdelvare@suse.com>
5566 L:      linux-i2c@vger.kernel.org
5567 S:      Maintained
5568 F:      Documentation/i2c/busses/i2c-ali1535
5569 F:      Documentation/i2c/busses/i2c-ali1563
5570 F:      Documentation/i2c/busses/i2c-ali15x3
5571 F:      Documentation/i2c/busses/i2c-amd756
5572 F:      Documentation/i2c/busses/i2c-amd8111
5573 F:      Documentation/i2c/busses/i2c-i801
5574 F:      Documentation/i2c/busses/i2c-nforce2
5575 F:      Documentation/i2c/busses/i2c-piix4
5576 F:      Documentation/i2c/busses/i2c-sis5595
5577 F:      Documentation/i2c/busses/i2c-sis630
5578 F:      Documentation/i2c/busses/i2c-sis96x
5579 F:      Documentation/i2c/busses/i2c-via
5580 F:      Documentation/i2c/busses/i2c-viapro
5581 F:      drivers/i2c/busses/i2c-ali1535.c
5582 F:      drivers/i2c/busses/i2c-ali1563.c
5583 F:      drivers/i2c/busses/i2c-ali15x3.c
5584 F:      drivers/i2c/busses/i2c-amd756.c
5585 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5586 F:      drivers/i2c/busses/i2c-amd8111.c
5587 F:      drivers/i2c/busses/i2c-i801.c
5588 F:      drivers/i2c/busses/i2c-isch.c
5589 F:      drivers/i2c/busses/i2c-nforce2.c
5590 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5591 F:      drivers/i2c/busses/i2c-piix4.c
5592 F:      drivers/i2c/busses/i2c-sis5595.c
5593 F:      drivers/i2c/busses/i2c-sis630.c
5594 F:      drivers/i2c/busses/i2c-sis96x.c
5595 F:      drivers/i2c/busses/i2c-via.c
5596 F:      drivers/i2c/busses/i2c-viapro.c
5597
5598 I2C/SMBUS ISMT DRIVER
5599 M:      Seth Heasley <seth.heasley@intel.com>
5600 M:      Neil Horman <nhorman@tuxdriver.com>
5601 L:      linux-i2c@vger.kernel.org
5602 F:      drivers/i2c/busses/i2c-ismt.c
5603 F:      Documentation/i2c/busses/i2c-ismt
5604
5605 I2C/SMBUS STUB DRIVER
5606 M:      Jean Delvare <jdelvare@suse.com>
5607 L:      linux-i2c@vger.kernel.org
5608 S:      Maintained
5609 F:      drivers/i2c/i2c-stub.c
5610
5611 I2C SUBSYSTEM
5612 M:      Wolfram Sang <wsa@the-dreams.de>
5613 L:      linux-i2c@vger.kernel.org
5614 W:      https://i2c.wiki.kernel.org/
5615 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5617 S:      Maintained
5618 F:      Documentation/devicetree/bindings/i2c/
5619 F:      Documentation/i2c/
5620 F:      drivers/i2c/
5621 F:      drivers/i2c/*/
5622 F:      include/linux/i2c.h
5623 F:      include/linux/i2c-*.h
5624 F:      include/uapi/linux/i2c.h
5625 F:      include/uapi/linux/i2c-*.h
5626
5627 I2C ACPI SUPPORT
5628 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5629 L:      linux-i2c@vger.kernel.org
5630 L:      linux-acpi@vger.kernel.org
5631 S:      Maintained
5632
5633 I2C-TAOS-EVM DRIVER
5634 M:      Jean Delvare <jdelvare@suse.com>
5635 L:      linux-i2c@vger.kernel.org
5636 S:      Maintained
5637 F:      Documentation/i2c/busses/i2c-taos-evm
5638 F:      drivers/i2c/busses/i2c-taos-evm.c
5639
5640 I2C-TINY-USB DRIVER
5641 M:      Till Harbaum <till@harbaum.org>
5642 L:      linux-i2c@vger.kernel.org
5643 W:      http://www.harbaum.org/till/i2c_tiny_usb
5644 S:      Maintained
5645 F:      drivers/i2c/busses/i2c-tiny-usb.c
5646
5647 i386 BOOT CODE
5648 M:      "H. Peter Anvin" <hpa@zytor.com>
5649 S:      Maintained
5650 F:      arch/x86/boot/
5651
5652 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5653 M:      "H. Peter Anvin" <hpa@zytor.com>
5654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5655 S:      Maintained
5656
5657 IA64 (Itanium) PLATFORM
5658 M:      Tony Luck <tony.luck@intel.com>
5659 M:      Fenghua Yu <fenghua.yu@intel.com>
5660 L:      linux-ia64@vger.kernel.org
5661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5662 S:      Maintained
5663 F:      arch/ia64/
5664
5665 IBM Power VMX Cryptographic instructions
5666 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5667 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5668 L:      linux-crypto@vger.kernel.org
5669 S:      Supported
5670 F:      drivers/crypto/vmx/Makefile
5671 F:      drivers/crypto/vmx/Kconfig
5672 F:      drivers/crypto/vmx/vmx.c
5673 F:      drivers/crypto/vmx/aes*
5674 F:      drivers/crypto/vmx/ghash*
5675 F:      drivers/crypto/vmx/ppc-xlate.pl
5676
5677 IBM Power in-Nest Crypto Acceleration
5678 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5679 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5680 L:      linux-crypto@vger.kernel.org
5681 S:      Supported
5682 F:      drivers/crypto/nx/Makefile
5683 F:      drivers/crypto/nx/Kconfig
5684 F:      drivers/crypto/nx/nx-aes*
5685 F:      drivers/crypto/nx/nx-sha*
5686 F:      drivers/crypto/nx/nx.*
5687 F:      drivers/crypto/nx/nx_csbcpb.h
5688 F:      drivers/crypto/nx/nx_debugfs.h
5689
5690 IBM Power 842 compression accelerator
5691 M:      Dan Streetman <ddstreet@ieee.org>
5692 S:      Supported
5693 F:      drivers/crypto/nx/Makefile
5694 F:      drivers/crypto/nx/Kconfig
5695 F:      drivers/crypto/nx/nx-842*
5696 F:      include/linux/sw842.h
5697 F:      crypto/842.c
5698 F:      lib/842/
5699
5700 IBM Power Linux RAID adapter
5701 M:      Brian King <brking@us.ibm.com>
5702 S:      Supported
5703 F:      drivers/scsi/ipr.*
5704
5705 IBM Power Virtual Ethernet Device Driver
5706 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5707 L:      netdev@vger.kernel.org
5708 S:      Supported
5709 F:      drivers/net/ethernet/ibm/ibmveth.*
5710
5711 IBM Power SRIOV Virtual NIC Device Driver
5712 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5713 M:      John Allen <jallen@linux.vnet.ibm.com>
5714 L:      netdev@vger.kernel.org
5715 S:      Supported
5716 F:      drivers/net/ethernet/ibm/ibmvnic.*
5717
5718 IBM Power Virtual SCSI Device Drivers
5719 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5720 L:      linux-scsi@vger.kernel.org
5721 S:      Supported
5722 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5723 F:      drivers/scsi/ibmvscsi/viosrp.h
5724
5725 IBM Power Virtual FC Device Drivers
5726 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5727 L:      linux-scsi@vger.kernel.org
5728 S:      Supported
5729 F:      drivers/scsi/ibmvscsi/ibmvfc*
5730
5731 IBM ServeRAID RAID DRIVER
5732 S:      Orphan
5733 F:      drivers/scsi/ips.*
5734
5735 ICH LPC AND GPIO DRIVER
5736 M:      Peter Tyser <ptyser@xes-inc.com>
5737 S:      Maintained
5738 F:      drivers/mfd/lpc_ich.c
5739 F:      drivers/gpio/gpio-ich.c
5740
5741 IDE SUBSYSTEM
5742 M:      "David S. Miller" <davem@davemloft.net>
5743 L:      linux-ide@vger.kernel.org
5744 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5746 S:      Maintained
5747 F:      Documentation/ide/
5748 F:      drivers/ide/
5749 F:      include/linux/ide.h
5750
5751 IDEAPAD LAPTOP EXTRAS DRIVER
5752 M:      Ike Panhc <ike.pan@canonical.com>
5753 L:      platform-driver-x86@vger.kernel.org
5754 W:      http://launchpad.net/ideapad-laptop
5755 S:      Maintained
5756 F:      drivers/platform/x86/ideapad-laptop.c
5757
5758 IDEAPAD LAPTOP SLIDEBAR DRIVER
5759 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5760 L:      linux-input@vger.kernel.org
5761 W:      https://github.com/o2genum/ideapad-slidebar
5762 S:      Maintained
5763 F:      drivers/input/misc/ideapad_slidebar.c
5764
5765 IDE/ATAPI DRIVERS
5766 M:      Borislav Petkov <bp@alien8.de>
5767 L:      linux-ide@vger.kernel.org
5768 S:      Maintained
5769 F:      Documentation/cdrom/ide-cd
5770 F:      drivers/ide/ide-cd*
5771
5772 IDLE-I7300
5773 M:      Andy Henroid <andrew.d.henroid@intel.com>
5774 L:      linux-pm@vger.kernel.org
5775 S:      Supported
5776 F:      drivers/idle/i7300_idle.c
5777
5778 IEEE 802.15.4 SUBSYSTEM
5779 M:      Alexander Aring <aar@pengutronix.de>
5780 L:      linux-wpan@vger.kernel.org
5781 W:      http://wpan.cakelab.org/
5782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5784 S:      Maintained
5785 F:      net/ieee802154/
5786 F:      net/mac802154/
5787 F:      drivers/net/ieee802154/
5788 F:      include/linux/nl802154.h
5789 F:      include/linux/ieee802154.h
5790 F:      include/net/nl802154.h
5791 F:      include/net/mac802154.h
5792 F:      include/net/af_ieee802154.h
5793 F:      include/net/cfg802154.h
5794 F:      include/net/ieee802154_netdev.h
5795 F:      Documentation/networking/ieee802154.txt
5796
5797 IGORPLUG-USB IR RECEIVER
5798 M:      Sean Young <sean@mess.org>
5799 L:      linux-media@vger.kernel.org
5800 S:      Maintained
5801 F:      drivers/media/rc/igorplugusb.c
5802
5803 IGUANAWORKS USB IR TRANSCEIVER
5804 M:      Sean Young <sean@mess.org>
5805 L:      linux-media@vger.kernel.org
5806 S:      Maintained
5807 F:      drivers/media/rc/iguanair.c
5808
5809 IIO SUBSYSTEM AND DRIVERS
5810 M:      Jonathan Cameron <jic23@kernel.org>
5811 R:      Hartmut Knaack <knaack.h@gmx.de>
5812 R:      Lars-Peter Clausen <lars@metafoo.de>
5813 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
5814 L:      linux-iio@vger.kernel.org
5815 S:      Maintained
5816 F:      drivers/iio/
5817 F:      drivers/staging/iio/
5818 F:      include/linux/iio/
5819 F:      tools/iio/
5820
5821 IKANOS/ADI EAGLE ADSL USB DRIVER
5822 M:      Matthieu Castet <castet.matthieu@free.fr>
5823 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5824 S:      Maintained
5825 F:      drivers/usb/atm/ueagle-atm.c
5826
5827 INA209 HARDWARE MONITOR DRIVER
5828 M:      Guenter Roeck <linux@roeck-us.net>
5829 L:      linux-hwmon@vger.kernel.org
5830 S:      Maintained
5831 F:      Documentation/hwmon/ina209
5832 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5833 F:      drivers/hwmon/ina209.c
5834
5835 INA2XX HARDWARE MONITOR DRIVER
5836 M:      Guenter Roeck <linux@roeck-us.net>
5837 L:      linux-hwmon@vger.kernel.org
5838 S:      Maintained
5839 F:      Documentation/hwmon/ina2xx
5840 F:      drivers/hwmon/ina2xx.c
5841 F:      include/linux/platform_data/ina2xx.h
5842
5843 INDUSTRY PACK SUBSYSTEM (IPACK)
5844 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5845 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5846 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5847 L:      industrypack-devel@lists.sourceforge.net
5848 W:      http://industrypack.sourceforge.net
5849 S:      Maintained
5850 F:      drivers/ipack/
5851
5852 INGENIC JZ4780 DMA Driver
5853 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5854 S:      Maintained
5855 F:      drivers/dma/dma-jz4780.c
5856
5857 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5858 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5859 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5860 L:      linux-ima-devel@lists.sourceforge.net
5861 L:      linux-ima-user@lists.sourceforge.net
5862 L:      linux-security-module@vger.kernel.org
5863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5864 S:      Supported
5865 F:      security/integrity/ima/
5866
5867 IMGTEC IR DECODER DRIVER
5868 M:      James Hogan <james.hogan@imgtec.com>
5869 S:      Maintained
5870 F:      drivers/media/rc/img-ir/
5871
5872 IMS TWINTURBO FRAMEBUFFER DRIVER
5873 L:      linux-fbdev@vger.kernel.org
5874 S:      Orphan
5875 F:      drivers/video/fbdev/imsttfb.c
5876
5877 INFINIBAND SUBSYSTEM
5878 M:      Doug Ledford <dledford@redhat.com>
5879 M:      Sean Hefty <sean.hefty@intel.com>
5880 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5881 L:      linux-rdma@vger.kernel.org
5882 W:      http://www.openfabrics.org/
5883 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5885 S:      Supported
5886 F:      Documentation/infiniband/
5887 F:      drivers/infiniband/
5888 F:      include/uapi/linux/if_infiniband.h
5889 F:      include/uapi/rdma/
5890 F:      include/rdma/
5891
5892 INOTIFY
5893 M:      John McCutchan <john@johnmccutchan.com>
5894 M:      Robert Love <rlove@rlove.org>
5895 M:      Eric Paris <eparis@parisplace.org>
5896 S:      Maintained
5897 F:      Documentation/filesystems/inotify.txt
5898 F:      fs/notify/inotify/
5899 F:      include/linux/inotify.h
5900 F:      include/uapi/linux/inotify.h
5901
5902 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5903 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5904 L:      linux-input@vger.kernel.org
5905 Q:      http://patchwork.kernel.org/project/linux-input/list/
5906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5907 S:      Maintained
5908 F:      drivers/input/
5909 F:      include/linux/input.h
5910 F:      include/uapi/linux/input.h
5911 F:      include/linux/input/
5912 F:      Documentation/devicetree/bindings/input/
5913
5914 INPUT MULTITOUCH (MT) PROTOCOL
5915 M:      Henrik Rydberg <rydberg@bitmath.org>
5916 L:      linux-input@vger.kernel.org
5917 S:      Odd fixes
5918 F:      Documentation/input/multi-touch-protocol.txt
5919 F:      drivers/input/input-mt.c
5920 K:      \b(ABS|SYN)_MT_
5921
5922 INTEL ASoC BDW/HSW DRIVERS
5923 M:      Jie Yang <yang.jie@linux.intel.com>
5924 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5925 S:      Supported
5926 F:      sound/soc/intel/common/sst-dsp*
5927 F:      sound/soc/intel/common/sst-firmware.c
5928 F:      sound/soc/intel/boards/broadwell.c
5929 F:      sound/soc/intel/haswell/
5930
5931 INTEL C600 SERIES SAS CONTROLLER DRIVER
5932 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5933 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5934 L:      linux-scsi@vger.kernel.org
5935 T:      git git://git.code.sf.net/p/intel-sas/isci
5936 S:      Supported
5937 F:      drivers/scsi/isci/
5938
5939 INTEL HID EVENT DRIVER
5940 M:      Alex Hung <alex.hung@canonical.com>
5941 L:      platform-driver-x86@vger.kernel.org
5942 S:      Maintained
5943 F:      drivers/platform/x86/intel-hid.c
5944
5945 INTEL IDLE DRIVER
5946 M:      Len Brown <lenb@kernel.org>
5947 L:      linux-pm@vger.kernel.org
5948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5949 S:      Supported
5950 F:      drivers/idle/intel_idle.c
5951
5952 INTEL PSTATE DRIVER
5953 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5954 M:      Len Brown <lenb@kernel.org>
5955 L:      linux-pm@vger.kernel.org
5956 S:      Supported
5957 F:      drivers/cpufreq/intel_pstate.c
5958
5959 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5960 M:      Maik Broemme <mbroemme@plusserver.de>
5961 L:      linux-fbdev@vger.kernel.org
5962 S:      Maintained
5963 F:      Documentation/fb/intelfb.txt
5964 F:      drivers/video/fbdev/intelfb/
5965
5966 INTEL 810/815 FRAMEBUFFER DRIVER
5967 M:      Antonino Daplas <adaplas@gmail.com>
5968 L:      linux-fbdev@vger.kernel.org
5969 S:      Maintained
5970 F:      drivers/video/fbdev/i810/
5971
5972 INTEL MENLOW THERMAL DRIVER
5973 M:      Sujith Thomas <sujith.thomas@intel.com>
5974 L:      platform-driver-x86@vger.kernel.org
5975 W:      https://01.org/linux-acpi
5976 S:      Supported
5977 F:      drivers/platform/x86/intel_menlow.c
5978
5979 INTEL I/OAT DMA DRIVER
5980 M:      Dave Jiang <dave.jiang@intel.com>
5981 R:      Dan Williams <dan.j.williams@intel.com>
5982 L:      dmaengine@vger.kernel.org
5983 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5984 S:      Supported
5985 F:      drivers/dma/ioat*
5986
5987 INTEL IOMMU (VT-d)
5988 M:      David Woodhouse <dwmw2@infradead.org>
5989 L:      iommu@lists.linux-foundation.org
5990 T:      git git://git.infradead.org/iommu-2.6.git
5991 S:      Supported
5992 F:      drivers/iommu/intel-iommu.c
5993 F:      include/linux/intel-iommu.h
5994
5995 INTEL IOP-ADMA DMA DRIVER
5996 R:      Dan Williams <dan.j.williams@intel.com>
5997 S:      Odd fixes
5998 F:      drivers/dma/iop-adma.c
5999
6000 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6001 M:      Krzysztof Halasa <khalasa@piap.pl>
6002 S:      Maintained
6003 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6004 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6005 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6006 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6007 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6008 F:      drivers/net/wan/ixp4xx_hss.c
6009
6010 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6011 M:      Deepak Saxena <dsaxena@plexity.net>
6012 S:      Maintained
6013 F:      drivers/char/hw_random/ixp4xx-rng.c
6014
6015 INTEL ETHERNET DRIVERS
6016 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6017 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6018 W:      http://www.intel.com/support/feedback.htm
6019 W:      http://e1000.sourceforge.net/
6020 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6023 S:      Supported
6024 F:      Documentation/networking/e100.txt
6025 F:      Documentation/networking/e1000.txt
6026 F:      Documentation/networking/e1000e.txt
6027 F:      Documentation/networking/igb.txt
6028 F:      Documentation/networking/igbvf.txt
6029 F:      Documentation/networking/ixgb.txt
6030 F:      Documentation/networking/ixgbe.txt
6031 F:      Documentation/networking/ixgbevf.txt
6032 F:      Documentation/networking/i40e.txt
6033 F:      Documentation/networking/i40evf.txt
6034 F:      drivers/net/ethernet/intel/
6035 F:      drivers/net/ethernet/intel/*/
6036
6037 INTEL RDMA RNIC DRIVER
6038 M:     Faisal Latif <faisal.latif@intel.com>
6039 R:     Chien Tin Tung <chien.tin.tung@intel.com>
6040 R:     Mustafa Ismail <mustafa.ismail@intel.com>
6041 R:     Shiraz Saleem <shiraz.saleem@intel.com>
6042 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
6043 L:     linux-rdma@vger.kernel.org
6044 S:     Supported
6045 F:     drivers/infiniband/hw/i40iw/
6046
6047 INTEL-MID GPIO DRIVER
6048 M:      David Cohen <david.a.cohen@linux.intel.com>
6049 L:      linux-gpio@vger.kernel.org
6050 S:      Maintained
6051 F:      drivers/gpio/gpio-intel-mid.c
6052
6053 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6054 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
6055 L:      linux-wireless@vger.kernel.org
6056 S:      Maintained
6057 F:      Documentation/networking/README.ipw2100
6058 F:      Documentation/networking/README.ipw2200
6059 F:      drivers/net/wireless/intel/ipw2x00/
6060
6061 INTEL(R) TRACE HUB
6062 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6063 S:      Supported
6064 F:      Documentation/trace/intel_th.txt
6065 F:      drivers/hwtracing/intel_th/
6066
6067 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6068 M:      Ning Sun <ning.sun@intel.com>
6069 L:      tboot-devel@lists.sourceforge.net
6070 W:      http://tboot.sourceforge.net
6071 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6072 S:      Supported
6073 F:      Documentation/intel_txt.txt
6074 F:      include/linux/tboot.h
6075 F:      arch/x86/kernel/tboot.c
6076
6077 INTEL WIRELESS WIMAX CONNECTION 2400
6078 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6079 M:      linux-wimax@intel.com
6080 L:      wimax@linuxwimax.org (subscribers-only)
6081 S:      Supported
6082 W:      http://linuxwimax.org
6083 F:      Documentation/wimax/README.i2400m
6084 F:      drivers/net/wimax/i2400m/
6085 F:      include/uapi/linux/wimax/i2400m.h
6086
6087 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6088 M:      Stanislaw Gruszka <sgruszka@redhat.com>
6089 L:      linux-wireless@vger.kernel.org
6090 S:      Supported
6091 F:      drivers/net/wireless/intel/iwlegacy/
6092
6093 INTEL WIRELESS WIFI LINK (iwlwifi)
6094 M:      Johannes Berg <johannes.berg@intel.com>
6095 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6096 M:      Luca Coelho <luciano.coelho@intel.com>
6097 M:      Intel Linux Wireless <linuxwifi@intel.com>
6098 L:      linux-wireless@vger.kernel.org
6099 W:      http://intellinuxwireless.org
6100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6101 S:      Supported
6102 F:      drivers/net/wireless/intel/iwlwifi/
6103
6104 INTEL MANAGEMENT ENGINE (mei)
6105 M:      Tomas Winkler <tomas.winkler@intel.com>
6106 L:      linux-kernel@vger.kernel.org
6107 S:      Supported
6108 F:      include/uapi/linux/mei.h
6109 F:      include/linux/mei_cl_bus.h
6110 F:      drivers/misc/mei/*
6111 F:      drivers/watchdog/mei_wdt.c
6112 F:      Documentation/misc-devices/mei/*
6113
6114 INTEL MIC DRIVERS (mic)
6115 M:      Sudeep Dutt <sudeep.dutt@intel.com>
6116 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
6117 S:      Supported
6118 W:      https://github.com/sudeepdutt/mic
6119 W:      http://software.intel.com/en-us/mic-developer
6120 F:      include/linux/mic_bus.h
6121 F:      include/linux/scif.h
6122 F:      include/uapi/linux/mic_common.h
6123 F:      include/uapi/linux/mic_ioctl.h
6124 F:      include/uapi/linux/scif_ioctl.h
6125 F:      drivers/misc/mic/
6126 F:      drivers/dma/mic_x100_dma.c
6127 F:      drivers/dma/mic_x100_dma.h
6128 F:      Documentation/mic/
6129
6130 INTEL PMC/P-Unit IPC DRIVER
6131 M:      Zha Qipeng<qipeng.zha@intel.com>
6132 L:      platform-driver-x86@vger.kernel.org
6133 S:      Maintained
6134 F:      drivers/platform/x86/intel_pmc_ipc.c
6135 F:      drivers/platform/x86/intel_punit_ipc.c
6136 F:      arch/x86/include/asm/intel_pmc_ipc.h
6137 F:      arch/x86/include/asm/intel_punit_ipc.h
6138
6139 INTEL TELEMETRY DRIVER
6140 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6141 L:      platform-driver-x86@vger.kernel.org
6142 S:      Maintained
6143 F:      arch/x86/include/asm/intel_telemetry.h
6144 F:      drivers/platform/x86/intel_telemetry*
6145
6146 INTEL PMC CORE DRIVER
6147 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6148 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6149 L:      platform-driver-x86@vger.kernel.org
6150 S:      Maintained
6151 F:      arch/x86/include/asm/pmc_core.h
6152 F:      drivers/platform/x86/intel_pmc_core*
6153
6154 IOC3 ETHERNET DRIVER
6155 M:      Ralf Baechle <ralf@linux-mips.org>
6156 L:      linux-mips@linux-mips.org
6157 S:      Maintained
6158 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6159
6160 IOC3 SERIAL DRIVER
6161 M:      Pat Gefre <pfg@sgi.com>
6162 L:      linux-serial@vger.kernel.org
6163 S:      Maintained
6164 F:      drivers/tty/serial/ioc3_serial.c
6165
6166 IOMMU DRIVERS
6167 M:      Joerg Roedel <joro@8bytes.org>
6168 L:      iommu@lists.linux-foundation.org
6169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6170 S:      Maintained
6171 F:      drivers/iommu/
6172
6173 IP MASQUERADING
6174 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6175 S:      Maintained
6176 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6177
6178 IPMI SUBSYSTEM
6179 M:      Corey Minyard <minyard@acm.org>
6180 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
6181 W:      http://openipmi.sourceforge.net/
6182 S:      Supported
6183 F:      Documentation/IPMI.txt
6184 F:      drivers/char/ipmi/
6185 F:      include/linux/ipmi*
6186 F:      include/uapi/linux/ipmi*
6187
6188 QCOM AUDIO (ASoC) DRIVERS
6189 M:      Patrick Lai <plai@codeaurora.org>
6190 M:      Banajit Goswami <bgoswami@codeaurora.org>
6191 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6192 S:      Supported
6193 F:      sound/soc/qcom/
6194
6195 IPS SCSI RAID DRIVER
6196 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6197 L:      linux-scsi@vger.kernel.org
6198 W:      http://www.adaptec.com/
6199 S:      Maintained
6200 F:      drivers/scsi/ips*
6201
6202 IPVS
6203 M:      Wensong Zhang <wensong@linux-vs.org>
6204 M:      Simon Horman <horms@verge.net.au>
6205 M:      Julian Anastasov <ja@ssi.bg>
6206 L:      netdev@vger.kernel.org
6207 L:      lvs-devel@vger.kernel.org
6208 S:      Maintained
6209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6211 F:      Documentation/networking/ipvs-sysctl.txt
6212 F:      include/net/ip_vs.h
6213 F:      include/uapi/linux/ip_vs.h
6214 F:      net/netfilter/ipvs/
6215
6216 IPWIRELESS DRIVER
6217 M:      Jiri Kosina <jikos@kernel.org>
6218 M:      David Sterba <dsterba@suse.com>
6219 S:      Odd Fixes
6220 F:      drivers/tty/ipwireless/
6221
6222 IPX NETWORK LAYER
6223 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6224 L:      netdev@vger.kernel.org
6225 S:      Maintained
6226 F:      include/net/ipx.h
6227 F:      include/uapi/linux/ipx.h
6228 F:      net/ipx/
6229
6230 IRDA SUBSYSTEM
6231 M:      Samuel Ortiz <samuel@sortiz.org>
6232 L:      irda-users@lists.sourceforge.net (subscribers-only)
6233 L:      netdev@vger.kernel.org
6234 W:      http://irda.sourceforge.net/
6235 S:      Maintained
6236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6237 F:      Documentation/networking/irda.txt
6238 F:      drivers/net/irda/
6239 F:      include/net/irda/
6240 F:      net/irda/
6241
6242 IRQ SUBSYSTEM
6243 M:      Thomas Gleixner <tglx@linutronix.de>
6244 L:      linux-kernel@vger.kernel.org
6245 S:      Maintained
6246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6247 F:      kernel/irq/
6248
6249 IRQCHIP DRIVERS
6250 M:      Thomas Gleixner <tglx@linutronix.de>
6251 M:      Jason Cooper <jason@lakedaemon.net>
6252 M:      Marc Zyngier <marc.zyngier@arm.com>
6253 L:      linux-kernel@vger.kernel.org
6254 S:      Maintained
6255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6256 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6257 F:      Documentation/devicetree/bindings/interrupt-controller/
6258 F:      drivers/irqchip/
6259
6260 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6261 M:      Jiang Liu <jiang.liu@linux.intel.com>
6262 M:      Marc Zyngier <marc.zyngier@arm.com>
6263 S:      Maintained
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6265 F:      Documentation/IRQ-domain.txt
6266 F:      include/linux/irqdomain.h
6267 F:      kernel/irq/irqdomain.c
6268 F:      kernel/irq/msi.c
6269
6270 ISA
6271 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6272 S:      Maintained
6273 F:      Documentation/isa.txt
6274 F:      drivers/base/isa.c
6275 F:      include/linux/isa.h
6276
6277 ISAPNP
6278 M:      Jaroslav Kysela <perex@perex.cz>
6279 S:      Maintained
6280 F:      Documentation/isapnp.txt
6281 F:      drivers/pnp/isapnp/
6282 F:      include/linux/isapnp.h
6283
6284 ISA RADIO MODULE
6285 M:      Hans Verkuil <hverkuil@xs4all.nl>
6286 L:      linux-media@vger.kernel.org
6287 T:      git git://linuxtv.org/media_tree.git
6288 W:      https://linuxtv.org
6289 S:      Maintained
6290 F:      drivers/media/radio/radio-isa*
6291
6292 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6293 M:      Peter Jones <pjones@redhat.com>
6294 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6295 S:      Maintained
6296 F:      drivers/firmware/iscsi_ibft*
6297
6298 ISCSI
6299 M:      Mike Christie <michaelc@cs.wisc.edu>
6300 L:      open-iscsi@googlegroups.com
6301 W:      www.open-iscsi.org
6302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6303 S:      Maintained
6304 F:      drivers/scsi/*iscsi*
6305 F:      include/scsi/*iscsi*
6306
6307 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6308 M:      Or Gerlitz <ogerlitz@mellanox.com>
6309 M:      Sagi Grimberg <sagi@grimberg.me>
6310 M:      Roi Dayan <roid@mellanox.com>
6311 L:      linux-rdma@vger.kernel.org
6312 S:      Supported
6313 W:      http://www.openfabrics.org
6314 W:      www.open-iscsi.org
6315 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6316 F:      drivers/infiniband/ulp/iser/
6317
6318 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6319 M:      Sagi Grimberg <sagi@grimberg.me>
6320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6321 L:      linux-rdma@vger.kernel.org
6322 L:      target-devel@vger.kernel.org
6323 S:      Supported
6324 W:      http://www.linux-iscsi.org
6325 F:      drivers/infiniband/ulp/isert
6326
6327 ISDN SUBSYSTEM
6328 M:      Karsten Keil <isdn@linux-pingi.de>
6329 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6330 L:      netdev@vger.kernel.org
6331 W:      http://www.isdn4linux.de
6332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6333 S:      Maintained
6334 F:      Documentation/isdn/
6335 F:      drivers/isdn/
6336 F:      include/linux/isdn.h
6337 F:      include/linux/isdn/
6338 F:      include/uapi/linux/isdn.h
6339 F:      include/uapi/linux/isdn/
6340
6341 ISDN SUBSYSTEM (Eicon active card driver)
6342 M:      Armin Schindler <mac@melware.de>
6343 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6344 W:      http://www.melware.de
6345 S:      Maintained
6346 F:      drivers/isdn/hardware/eicon/
6347
6348 IT87 HARDWARE MONITORING DRIVER
6349 M:      Jean Delvare <jdelvare@suse.com>
6350 L:      linux-hwmon@vger.kernel.org
6351 S:      Maintained
6352 F:      Documentation/hwmon/it87
6353 F:      drivers/hwmon/it87.c
6354
6355 IT913X MEDIA DRIVER
6356 M:      Antti Palosaari <crope@iki.fi>
6357 L:      linux-media@vger.kernel.org
6358 W:      https://linuxtv.org
6359 W:      http://palosaari.fi/linux/
6360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6361 T:      git git://linuxtv.org/anttip/media_tree.git
6362 S:      Maintained
6363 F:      drivers/media/tuners/it913x*
6364
6365 IVTV VIDEO4LINUX DRIVER
6366 M:      Andy Walls <awalls@md.metrocast.net>
6367 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6368 L:      linux-media@vger.kernel.org
6369 T:      git git://linuxtv.org/media_tree.git
6370 W:      http://www.ivtvdriver.org
6371 S:      Maintained
6372 F:      Documentation/video4linux/*.ivtv
6373 F:      drivers/media/pci/ivtv/
6374 F:      include/uapi/linux/ivtv*
6375
6376 IX2505V MEDIA DRIVER
6377 M:      Malcolm Priestley <tvboxspy@gmail.com>
6378 L:      linux-media@vger.kernel.org
6379 W:      https://linuxtv.org
6380 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6381 S:      Maintained
6382 F:      drivers/media/dvb-frontends/ix2505v*
6383
6384 JC42.4 TEMPERATURE SENSOR DRIVER
6385 M:      Guenter Roeck <linux@roeck-us.net>
6386 L:      linux-hwmon@vger.kernel.org
6387 S:      Maintained
6388 F:      drivers/hwmon/jc42.c
6389 F:      Documentation/hwmon/jc42
6390
6391 JFS FILESYSTEM
6392 M:      Dave Kleikamp <shaggy@kernel.org>
6393 L:      jfs-discussion@lists.sourceforge.net
6394 W:      http://jfs.sourceforge.net/
6395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6396 S:      Maintained
6397 F:      Documentation/filesystems/jfs.txt
6398 F:      fs/jfs/
6399
6400 JME NETWORK DRIVER
6401 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6402 L:      netdev@vger.kernel.org
6403 S:      Maintained
6404 F:      drivers/net/ethernet/jme.*
6405
6406 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6407 M:      David Woodhouse <dwmw2@infradead.org>
6408 L:      linux-mtd@lists.infradead.org
6409 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6410 S:      Maintained
6411 F:      fs/jffs2/
6412 F:      include/uapi/linux/jffs2.h
6413
6414 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6415 M:      "Theodore Ts'o" <tytso@mit.edu>
6416 M:      Jan Kara <jack@suse.com>
6417 L:      linux-ext4@vger.kernel.org
6418 S:      Maintained
6419 F:      fs/jbd2/
6420 F:      include/linux/jbd2.h
6421
6422 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6423 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6424 L:      linux-media@vger.kernel.org
6425 S:      Maintained
6426 F:      drivers/media/platform/rcar_jpu.c
6427
6428 JSM Neo PCI based serial card
6429 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6430 L:      linux-serial@vger.kernel.org
6431 S:      Maintained
6432 F:      drivers/tty/serial/jsm/
6433
6434 K10TEMP HARDWARE MONITORING DRIVER
6435 M:      Clemens Ladisch <clemens@ladisch.de>
6436 L:      linux-hwmon@vger.kernel.org
6437 S:      Maintained
6438 F:      Documentation/hwmon/k10temp
6439 F:      drivers/hwmon/k10temp.c
6440
6441 K8TEMP HARDWARE MONITORING DRIVER
6442 M:      Rudolf Marek <r.marek@assembler.cz>
6443 L:      linux-hwmon@vger.kernel.org
6444 S:      Maintained
6445 F:      Documentation/hwmon/k8temp
6446 F:      drivers/hwmon/k8temp.c
6447
6448 KASAN
6449 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6450 R:      Alexander Potapenko <glider@google.com>
6451 R:      Dmitry Vyukov <dvyukov@google.com>
6452 L:      kasan-dev@googlegroups.com
6453 S:      Maintained
6454 F:      arch/*/include/asm/kasan.h
6455 F:      arch/*/mm/kasan_init*
6456 F:      Documentation/kasan.txt
6457 F:      include/linux/kasan*.h
6458 F:      lib/test_kasan.c
6459 F:      mm/kasan/
6460 F:      scripts/Makefile.kasan
6461
6462 KCONFIG
6463 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6464 L:      linux-kbuild@vger.kernel.org
6465 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6466 S:      Maintained
6467 F:      Documentation/kbuild/kconfig-language.txt
6468 F:      scripts/kconfig/
6469
6470 KDUMP
6471 M:      Dave Young <dyoung@redhat.com>
6472 M:      Baoquan He <bhe@redhat.com>
6473 R:      Vivek Goyal <vgoyal@redhat.com>
6474 L:      kexec@lists.infradead.org
6475 W:      http://lse.sourceforge.net/kdump/
6476 S:      Maintained
6477 F:      Documentation/kdump/
6478
6479 KEENE FM RADIO TRANSMITTER DRIVER
6480 M:      Hans Verkuil <hverkuil@xs4all.nl>
6481 L:      linux-media@vger.kernel.org
6482 T:      git git://linuxtv.org/media_tree.git
6483 W:      https://linuxtv.org
6484 S:      Maintained
6485 F:      drivers/media/radio/radio-keene*
6486
6487 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6488 M:      Ian Kent <raven@themaw.net>
6489 L:      autofs@vger.kernel.org
6490 S:      Maintained
6491 F:      fs/autofs4/
6492
6493 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6494 M:      Michal Marek <mmarek@suse.com>
6495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6497 L:      linux-kbuild@vger.kernel.org
6498 S:      Maintained
6499 F:      Documentation/kbuild/
6500 F:      Makefile
6501 F:      scripts/Makefile.*
6502 F:      scripts/basic/
6503 F:      scripts/mk*
6504 F:      scripts/package/
6505
6506 KERNEL JANITORS
6507 L:      kernel-janitors@vger.kernel.org
6508 W:      http://kernelnewbies.org/KernelJanitors
6509 S:      Odd Fixes
6510
6511 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6512 M:      "J. Bruce Fields" <bfields@fieldses.org>
6513 M:      Jeff Layton <jlayton@poochiereds.net>
6514 L:      linux-nfs@vger.kernel.org
6515 W:      http://nfs.sourceforge.net/
6516 T:      git git://linux-nfs.org/~bfields/linux.git
6517 S:      Supported
6518 F:      fs/nfsd/
6519 F:      include/uapi/linux/nfsd/
6520 F:      fs/lockd/
6521 F:      fs/nfs_common/
6522 F:      net/sunrpc/
6523 F:      include/linux/lockd/
6524 F:      include/linux/sunrpc/
6525 F:      include/uapi/linux/sunrpc/
6526
6527 KERNEL SELFTEST FRAMEWORK
6528 M:      Shuah Khan <shuahkh@osg.samsung.com>
6529 M:      Shuah Khan <shuah@kernel.org>
6530 L:      linux-kselftest@vger.kernel.org
6531 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6532 S:      Maintained
6533 F:      tools/testing/selftests
6534
6535 KERNEL VIRTUAL MACHINE (KVM)
6536 M:      Paolo Bonzini <pbonzini@redhat.com>
6537 M:      Radim Krčmář <rkrcmar@redhat.com>
6538 L:      kvm@vger.kernel.org
6539 W:      http://www.linux-kvm.org
6540 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6541 S:      Supported
6542 F:      Documentation/*/kvm*.txt
6543 F:      Documentation/virtual/kvm/
6544 F:      arch/*/kvm/
6545 F:      arch/x86/kernel/kvm.c
6546 F:      arch/x86/kernel/kvmclock.c
6547 F:      arch/*/include/asm/kvm*
6548 F:      include/linux/kvm*
6549 F:      include/uapi/linux/kvm*
6550 F:      virt/kvm/
6551 F:      tools/kvm/
6552
6553 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6554 M:      Joerg Roedel <joro@8bytes.org>
6555 L:      kvm@vger.kernel.org
6556 W:      http://www.linux-kvm.org/
6557 S:      Maintained
6558 F:      arch/x86/include/asm/svm.h
6559 F:      arch/x86/kvm/svm.c
6560
6561 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6562 M:      Alexander Graf <agraf@suse.com>
6563 L:      kvm-ppc@vger.kernel.org
6564 W:      http://www.linux-kvm.org/
6565 T:      git git://github.com/agraf/linux-2.6.git
6566 S:      Supported
6567 F:      arch/powerpc/include/asm/kvm*
6568 F:      arch/powerpc/kvm/
6569
6570 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6571 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6572 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6573 L:      linux-s390@vger.kernel.org
6574 W:      http://www.ibm.com/developerworks/linux/linux390/
6575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6576 S:      Supported
6577 F:      Documentation/s390/kvm.txt
6578 F:      arch/s390/include/asm/kvm*
6579 F:      arch/s390/kvm/
6580
6581 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6582 M:      Christoffer Dall <christoffer.dall@linaro.org>
6583 M:      Marc Zyngier <marc.zyngier@arm.com>
6584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6585 L:      kvmarm@lists.cs.columbia.edu
6586 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6588 S:      Supported
6589 F:      arch/arm/include/uapi/asm/kvm*
6590 F:      arch/arm/include/asm/kvm*
6591 F:      arch/arm/kvm/
6592 F:      virt/kvm/arm/
6593 F:      include/kvm/arm_*
6594
6595 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6596 M:      Christoffer Dall <christoffer.dall@linaro.org>
6597 M:      Marc Zyngier <marc.zyngier@arm.com>
6598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6599 L:      kvmarm@lists.cs.columbia.edu
6600 S:      Maintained
6601 F:      arch/arm64/include/uapi/asm/kvm*
6602 F:      arch/arm64/include/asm/kvm*
6603 F:      arch/arm64/kvm/
6604
6605 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6606 M:      James Hogan <james.hogan@imgtec.com>
6607 L:      linux-mips@linux-mips.org
6608 S:      Supported
6609 F:      arch/mips/include/uapi/asm/kvm*
6610 F:      arch/mips/include/asm/kvm*
6611 F:      arch/mips/kvm/
6612
6613 KEXEC
6614 M:      Eric Biederman <ebiederm@xmission.com>
6615 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6616 L:      kexec@lists.infradead.org
6617 S:      Maintained
6618 F:      include/linux/kexec.h
6619 F:      include/uapi/linux/kexec.h
6620 F:      kernel/kexec*
6621
6622 KEYS/KEYRINGS:
6623 M:      David Howells <dhowells@redhat.com>
6624 L:      keyrings@vger.kernel.org
6625 S:      Maintained
6626 F:      Documentation/security/keys.txt
6627 F:      include/linux/key.h
6628 F:      include/linux/key-type.h
6629 F:      include/linux/keyctl.h
6630 F:      include/uapi/linux/keyctl.h
6631 F:      include/keys/
6632 F:      security/keys/
6633
6634 KEYS-TRUSTED
6635 M:      David Safford <safford@us.ibm.com>
6636 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6637 L:      linux-security-module@vger.kernel.org
6638 L:      keyrings@vger.kernel.org
6639 S:      Supported
6640 F:      Documentation/security/keys-trusted-encrypted.txt
6641 F:      include/keys/trusted-type.h
6642 F:      security/keys/trusted.c
6643 F:      security/keys/trusted.h
6644
6645 KEYS-ENCRYPTED
6646 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6647 M:      David Safford <safford@us.ibm.com>
6648 L:      linux-security-module@vger.kernel.org
6649 L:      keyrings@vger.kernel.org
6650 S:      Supported
6651 F:      Documentation/security/keys-trusted-encrypted.txt
6652 F:      include/keys/encrypted-type.h
6653 F:      security/keys/encrypted-keys/
6654
6655 KGDB / KDB /debug_core
6656 M:      Jason Wessel <jason.wessel@windriver.com>
6657 W:      http://kgdb.wiki.kernel.org/
6658 L:      kgdb-bugreport@lists.sourceforge.net
6659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6660 S:      Maintained
6661 F:      Documentation/DocBook/kgdb.tmpl
6662 F:      drivers/misc/kgdbts.c
6663 F:      drivers/tty/serial/kgdboc.c
6664 F:      include/linux/kdb.h
6665 F:      include/linux/kgdb.h
6666 F:      kernel/debug/
6667
6668 KMEMCHECK
6669 M:      Vegard Nossum <vegardno@ifi.uio.no>
6670 M:      Pekka Enberg <penberg@kernel.org>
6671 S:      Maintained
6672 F:      Documentation/kmemcheck.txt
6673 F:      arch/x86/include/asm/kmemcheck.h
6674 F:      arch/x86/mm/kmemcheck/
6675 F:      include/linux/kmemcheck.h
6676 F:      mm/kmemcheck.c
6677
6678 KMEMLEAK
6679 M:      Catalin Marinas <catalin.marinas@arm.com>
6680 S:      Maintained
6681 F:      Documentation/kmemleak.txt
6682 F:      include/linux/kmemleak.h
6683 F:      mm/kmemleak.c
6684 F:      mm/kmemleak-test.c
6685
6686 KPROBES
6687 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6688 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6689 M:      "David S. Miller" <davem@davemloft.net>
6690 M:      Masami Hiramatsu <mhiramat@kernel.org>
6691 S:      Maintained
6692 F:      Documentation/kprobes.txt
6693 F:      include/linux/kprobes.h
6694 F:      kernel/kprobes.c
6695
6696 KS0108 LCD CONTROLLER DRIVER
6697 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6698 W:      http://miguelojeda.es/auxdisplay.htm
6699 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6700 S:      Maintained
6701 F:      Documentation/auxdisplay/ks0108
6702 F:      drivers/auxdisplay/ks0108.c
6703 F:      include/linux/ks0108.h
6704
6705 L3MDEV
6706 M:      David Ahern <dsa@cumulusnetworks.com>
6707 L:      netdev@vger.kernel.org
6708 S:      Maintained
6709 F:      net/l3mdev
6710 F:      include/net/l3mdev.h
6711
6712 LANTIQ MIPS ARCHITECTURE
6713 M:      John Crispin <john@phrozen.org>
6714 L:      linux-mips@linux-mips.org
6715 S:      Maintained
6716 F:      arch/mips/lantiq
6717
6718 LAPB module
6719 L:      linux-x25@vger.kernel.org
6720 S:      Orphan
6721 F:      Documentation/networking/lapb-module.txt
6722 F:      include/*/lapb.h
6723 F:      net/lapb/
6724
6725 LASI 53c700 driver for PARISC
6726 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6727 L:      linux-scsi@vger.kernel.org
6728 S:      Maintained
6729 F:      Documentation/scsi/53c700.txt
6730 F:      drivers/scsi/53c700*
6731
6732 LED SUBSYSTEM
6733 M:      Richard Purdie <rpurdie@rpsys.net>
6734 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6735 L:      linux-leds@vger.kernel.org
6736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6737 S:      Maintained
6738 F:      drivers/leds/
6739 F:      include/linux/leds.h
6740
6741 LEGACY EEPROM DRIVER
6742 M:      Jean Delvare <jdelvare@suse.com>
6743 S:      Maintained
6744 F:      Documentation/misc-devices/eeprom
6745 F:      drivers/misc/eeprom/eeprom.c
6746
6747 LEGO USB Tower driver
6748 M:      Juergen Stuber <starblue@users.sourceforge.net>
6749 L:      legousb-devel@lists.sourceforge.net
6750 W:      http://legousb.sourceforge.net/
6751 S:      Maintained
6752 F:      drivers/usb/misc/legousbtower.c
6753
6754 LG2160 MEDIA DRIVER
6755 M:      Michael Krufky <mkrufky@linuxtv.org>
6756 L:      linux-media@vger.kernel.org
6757 W:      https://linuxtv.org
6758 W:      http://github.com/mkrufky
6759 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6760 T:      git git://linuxtv.org/mkrufky/tuners.git
6761 S:      Maintained
6762 F:      drivers/media/dvb-frontends/lg2160.*
6763
6764 LGDT3305 MEDIA DRIVER
6765 M:      Michael Krufky <mkrufky@linuxtv.org>
6766 L:      linux-media@vger.kernel.org
6767 W:      https://linuxtv.org
6768 W:      http://github.com/mkrufky
6769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6770 T:      git git://linuxtv.org/mkrufky/tuners.git
6771 S:      Maintained
6772 F:      drivers/media/dvb-frontends/lgdt3305.*
6773
6774 LGUEST
6775 M:      Rusty Russell <rusty@rustcorp.com.au>
6776 L:      lguest@lists.ozlabs.org
6777 W:      http://lguest.ozlabs.org/
6778 S:      Odd Fixes
6779 F:      arch/x86/include/asm/lguest*.h
6780 F:      arch/x86/lguest/
6781 F:      drivers/lguest/
6782 F:      include/linux/lguest*.h
6783 F:      tools/lguest/
6784
6785 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6786 M:      Tejun Heo <tj@kernel.org>
6787 L:      linux-ide@vger.kernel.org
6788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6789 S:      Maintained
6790 F:      drivers/ata/
6791 F:      include/linux/ata.h
6792 F:      include/linux/libata.h
6793
6794 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6795 M:      Viresh Kumar <vireshk@kernel.org>
6796 L:      linux-ide@vger.kernel.org
6797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6798 S:      Maintained
6799 F:      include/linux/pata_arasan_cf_data.h
6800 F:      drivers/ata/pata_arasan_cf.c
6801
6802 LIBATA PATA DRIVERS
6803 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6804 M:      Tejun Heo <tj@kernel.org>
6805 L:      linux-ide@vger.kernel.org
6806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6807 S:      Maintained
6808 F:      drivers/ata/pata_*.c
6809 F:      drivers/ata/ata_generic.c
6810
6811 LIBATA SATA AHCI PLATFORM devices support
6812 M:      Hans de Goede <hdegoede@redhat.com>
6813 M:      Tejun Heo <tj@kernel.org>
6814 L:      linux-ide@vger.kernel.org
6815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6816 S:      Maintained
6817 F:      drivers/ata/ahci_platform.c
6818 F:      drivers/ata/libahci_platform.c
6819 F:      include/linux/ahci_platform.h
6820
6821 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6822 M:      Mikael Pettersson <mikpelinux@gmail.com>
6823 L:      linux-ide@vger.kernel.org
6824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6825 S:      Maintained
6826 F:      drivers/ata/sata_promise.*
6827
6828 LIBLOCKDEP
6829 M:      Sasha Levin <sasha.levin@oracle.com>
6830 S:      Maintained
6831 F:      tools/lib/lockdep/
6832
6833 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6834 M:      Dan Williams <dan.j.williams@intel.com>
6835 L:      linux-nvdimm@lists.01.org
6836 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6838 S:      Supported
6839 F:      drivers/nvdimm/*
6840 F:      include/linux/nd.h
6841 F:      include/linux/libnvdimm.h
6842 F:      include/uapi/linux/ndctl.h
6843
6844 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6845 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6846 L:      linux-nvdimm@lists.01.org
6847 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6848 S:      Supported
6849 F:      drivers/nvdimm/blk.c
6850 F:      drivers/nvdimm/region_devs.c
6851 F:      drivers/acpi/nfit*
6852
6853 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6854 M:      Vishal Verma <vishal.l.verma@intel.com>
6855 L:      linux-nvdimm@lists.01.org
6856 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6857 S:      Supported
6858 F:      drivers/nvdimm/btt*
6859
6860 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6861 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6862 L:      linux-nvdimm@lists.01.org
6863 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6864 S:      Supported
6865 F:      drivers/nvdimm/pmem.c
6866 F:      include/linux/pmem.h
6867 F:      arch/*/include/asm/pmem.h
6868
6869 LIGHTNVM PLATFORM SUPPORT
6870 M:      Matias Bjorling <mb@lightnvm.io>
6871 W:      http://github/OpenChannelSSD
6872 L:      linux-block@vger.kernel.org
6873 S:      Maintained
6874 F:      drivers/lightnvm/
6875 F:      include/linux/lightnvm.h
6876 F:      include/uapi/linux/lightnvm.h
6877
6878 LINUX FOR IBM pSERIES (RS/6000)
6879 M:      Paul Mackerras <paulus@au.ibm.com>
6880 W:      http://www.ibm.com/linux/ltc/projects/ppc
6881 S:      Supported
6882 F:      arch/powerpc/boot/rs6000.h
6883
6884 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6885 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6886 M:      Paul Mackerras <paulus@samba.org>
6887 M:      Michael Ellerman <mpe@ellerman.id.au>
6888 W:      http://www.penguinppc.org/
6889 L:      linuxppc-dev@lists.ozlabs.org
6890 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6892 S:      Supported
6893 F:      Documentation/powerpc/
6894 F:      arch/powerpc/
6895 F:      drivers/char/tpm/tpm_ibmvtpm*
6896 F:      drivers/crypto/nx/
6897 F:      drivers/crypto/vmx/
6898 F:      drivers/net/ethernet/ibm/ibmveth.*
6899 F:      drivers/net/ethernet/ibm/ibmvnic.*
6900 F:      drivers/pci/hotplug/rpa*
6901 F:      drivers/scsi/ibmvscsi/
6902 N:      opal
6903 N:      /pmac
6904 N:      powermac
6905 N:      powernv
6906 N:      [^a-z0-9]ps3
6907 N:      pseries
6908
6909 LINUX FOR POWER MACINTOSH
6910 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6911 W:      http://www.penguinppc.org/
6912 L:      linuxppc-dev@lists.ozlabs.org
6913 S:      Maintained
6914 F:      arch/powerpc/platforms/powermac/
6915 F:      drivers/macintosh/
6916
6917 LINUX FOR POWERPC EMBEDDED MPC5XXX
6918 M:      Anatolij Gustschin <agust@denx.de>
6919 L:      linuxppc-dev@lists.ozlabs.org
6920 T:      git git://git.denx.de/linux-denx-agust.git
6921 S:      Maintained
6922 F:      arch/powerpc/platforms/512x/
6923 F:      arch/powerpc/platforms/52xx/
6924
6925 LINUX FOR POWERPC EMBEDDED PPC4XX
6926 M:      Alistair Popple <alistair@popple.id.au>
6927 M:      Matt Porter <mporter@kernel.crashing.org>
6928 W:      http://www.penguinppc.org/
6929 L:      linuxppc-dev@lists.ozlabs.org
6930 S:      Maintained
6931 F:      arch/powerpc/platforms/40x/
6932 F:      arch/powerpc/platforms/44x/
6933
6934 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6935 L:      linuxppc-dev@lists.ozlabs.org
6936 S:      Orphan
6937 F:      arch/powerpc/*/*virtex*
6938 F:      arch/powerpc/*/*/*virtex*
6939
6940 LINUX FOR POWERPC EMBEDDED PPC8XX
6941 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6942 W:      http://www.penguinppc.org/
6943 L:      linuxppc-dev@lists.ozlabs.org
6944 S:      Maintained
6945 F:      arch/powerpc/platforms/8xx/
6946
6947 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6948 M:      Scott Wood <oss@buserror.net>
6949 M:      Kumar Gala <galak@kernel.crashing.org>
6950 W:      http://www.penguinppc.org/
6951 L:      linuxppc-dev@lists.ozlabs.org
6952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6953 S:      Maintained
6954 F:      arch/powerpc/platforms/83xx/
6955 F:      arch/powerpc/platforms/85xx/
6956
6957 LINUX FOR POWERPC PA SEMI PWRFICIENT
6958 M:      Olof Johansson <olof@lixom.net>
6959 L:      linuxppc-dev@lists.ozlabs.org
6960 S:      Maintained
6961 F:      arch/powerpc/platforms/pasemi/
6962 F:      drivers/*/*pasemi*
6963 F:      drivers/*/*/*pasemi*
6964
6965 LINUX SECURITY MODULE (LSM) FRAMEWORK
6966 M:      Chris Wright <chrisw@sous-sol.org>
6967 L:      linux-security-module@vger.kernel.org
6968 S:      Supported
6969
6970 LIS3LV02D ACCELEROMETER DRIVER
6971 M:      Eric Piel <eric.piel@tremplin-utc.net>
6972 S:      Maintained
6973 F:      Documentation/misc-devices/lis3lv02d
6974 F:      drivers/misc/lis3lv02d/
6975 F:      drivers/platform/x86/hp_accel.c
6976
6977 LIVE PATCHING
6978 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6979 M:      Jessica Yu <jeyu@redhat.com>
6980 M:      Jiri Kosina <jikos@kernel.org>
6981 M:      Miroslav Benes <mbenes@suse.cz>
6982 R:      Petr Mladek <pmladek@suse.com>
6983 S:      Maintained
6984 F:      kernel/livepatch/
6985 F:      include/linux/livepatch.h
6986 F:      arch/x86/include/asm/livepatch.h
6987 F:      arch/x86/kernel/livepatch.c
6988 F:      Documentation/livepatch/
6989 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6990 F:      samples/livepatch/
6991 L:      live-patching@vger.kernel.org
6992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6993
6994 LINUX KERNEL DUMP TEST MODULE (LKDTM)
6995 M:      Kees Cook <keescook@chromium.org>
6996 S:      Maintained
6997 F:      drivers/misc/lkdtm.c
6998
6999 LLC (802.2)
7000 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
7001 S:      Maintained
7002 F:      include/linux/llc.h
7003 F:      include/uapi/linux/llc.h
7004 F:      include/net/llc*
7005 F:      net/llc/
7006
7007 LM73 HARDWARE MONITOR DRIVER
7008 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
7009 L:      linux-hwmon@vger.kernel.org
7010 S:      Maintained
7011 F:      drivers/hwmon/lm73.c
7012
7013 LM78 HARDWARE MONITOR DRIVER
7014 M:      Jean Delvare <jdelvare@suse.com>
7015 L:      linux-hwmon@vger.kernel.org
7016 S:      Maintained
7017 F:      Documentation/hwmon/lm78
7018 F:      drivers/hwmon/lm78.c
7019
7020 LM83 HARDWARE MONITOR DRIVER
7021 M:      Jean Delvare <jdelvare@suse.com>
7022 L:      linux-hwmon@vger.kernel.org
7023 S:      Maintained
7024 F:      Documentation/hwmon/lm83
7025 F:      drivers/hwmon/lm83.c
7026
7027 LM90 HARDWARE MONITOR DRIVER
7028 M:      Jean Delvare <jdelvare@suse.com>
7029 L:      linux-hwmon@vger.kernel.org
7030 S:      Maintained
7031 F:      Documentation/hwmon/lm90
7032 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7033 F:      drivers/hwmon/lm90.c
7034
7035 LM95234 HARDWARE MONITOR DRIVER
7036 M:      Guenter Roeck <linux@roeck-us.net>
7037 L:      linux-hwmon@vger.kernel.org
7038 S:      Maintained
7039 F:      Documentation/hwmon/lm95234
7040 F:      drivers/hwmon/lm95234.c
7041
7042 LME2510 MEDIA DRIVER
7043 M:      Malcolm Priestley <tvboxspy@gmail.com>
7044 L:      linux-media@vger.kernel.org
7045 W:      https://linuxtv.org
7046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7047 S:      Maintained
7048 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7049
7050 LOCKDEP AND LOCKSTAT
7051 M:      Peter Zijlstra <peterz@infradead.org>
7052 M:      Ingo Molnar <mingo@redhat.com>
7053 L:      linux-kernel@vger.kernel.org
7054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
7055 S:      Maintained
7056 F:      Documentation/locking/lockdep*.txt
7057 F:      Documentation/locking/lockstat.txt
7058 F:      include/linux/lockdep.h
7059 F:      kernel/locking/
7060
7061 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7062 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
7063 L:      linux-ntfs-dev@lists.sourceforge.net
7064 W:      http://www.linux-ntfs.org/content/view/19/37/
7065 S:      Maintained
7066 F:      Documentation/ldm.txt
7067 F:      block/partitions/ldm.*
7068
7069 LogFS
7070 M:      Joern Engel <joern@logfs.org>
7071 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
7072 L:      logfs@logfs.org
7073 W:      logfs.org
7074 S:      Maintained
7075 F:      fs/logfs/
7076
7077 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7078 M:      Sathya Prakash <sathya.prakash@broadcom.com>
7079 M:      Chaitra P B <chaitra.basappa@broadcom.com>
7080 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7081 L:      MPT-FusionLinux.pdl@broadcom.com
7082 L:      linux-scsi@vger.kernel.org
7083 W:      http://www.avagotech.com/support/
7084 S:      Supported
7085 F:      drivers/message/fusion/
7086 F:      drivers/scsi/mpt2sas/
7087 F:      drivers/scsi/mpt3sas/
7088
7089 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7090 M:      Matthew Wilcox <matthew@wil.cx>
7091 L:      linux-scsi@vger.kernel.org
7092 S:      Maintained
7093 F:      drivers/scsi/sym53c8xx_2/
7094
7095 LTC4261 HARDWARE MONITOR DRIVER
7096 M:      Guenter Roeck <linux@roeck-us.net>
7097 L:      linux-hwmon@vger.kernel.org
7098 S:      Maintained
7099 F:      Documentation/hwmon/ltc4261
7100 F:      drivers/hwmon/ltc4261.c
7101
7102 LTP (Linux Test Project)
7103 M:      Mike Frysinger <vapier@gentoo.org>
7104 M:      Cyril Hrubis <chrubis@suse.cz>
7105 M:      Wanlong Gao <wanlong.gao@gmail.com>
7106 M:      Jan Stancek <jstancek@redhat.com>
7107 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7108 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
7109 L:      ltp@lists.linux.it (subscribers-only)
7110 W:      http://linux-test-project.github.io/
7111 T:      git git://github.com/linux-test-project/ltp.git
7112 S:      Maintained
7113
7114 M32R ARCHITECTURE
7115 W:      http://www.linux-m32r.org/
7116 S:      Orphan
7117 F:      arch/m32r/
7118
7119 M68K ARCHITECTURE
7120 M:      Geert Uytterhoeven <geert@linux-m68k.org>
7121 L:      linux-m68k@lists.linux-m68k.org
7122 W:      http://www.linux-m68k.org/
7123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7124 S:      Maintained
7125 F:      arch/m68k/
7126 F:      drivers/zorro/
7127
7128 M68K ON APPLE MACINTOSH
7129 M:      Joshua Thompson <funaho@jurai.org>
7130 W:      http://www.mac.linux-m68k.org/
7131 L:      linux-m68k@lists.linux-m68k.org
7132 S:      Maintained
7133 F:      arch/m68k/mac/
7134
7135 M68K ON HP9000/300
7136 M:      Philip Blundell <philb@gnu.org>
7137 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7138 S:      Maintained
7139 F:      arch/m68k/hp300/
7140
7141 M88DS3103 MEDIA DRIVER
7142 M:      Antti Palosaari <crope@iki.fi>
7143 L:      linux-media@vger.kernel.org
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 S:      Maintained
7149 F:      drivers/media/dvb-frontends/m88ds3103*
7150
7151 M88RS2000 MEDIA DRIVER
7152 M:      Malcolm Priestley <tvboxspy@gmail.com>
7153 L:      linux-media@vger.kernel.org
7154 W:      https://linuxtv.org
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 S:      Maintained
7157 F:      drivers/media/dvb-frontends/m88rs2000*
7158
7159 MA901 MASTERKIT USB FM RADIO DRIVER
7160 M:      Alexey Klimov <klimov.linux@gmail.com>
7161 L:      linux-media@vger.kernel.org
7162 T:      git git://linuxtv.org/media_tree.git
7163 S:      Maintained
7164 F:      drivers/media/radio/radio-ma901.c
7165
7166 MAC80211
7167 M:      Johannes Berg <johannes@sipsolutions.net>
7168 L:      linux-wireless@vger.kernel.org
7169 W:      http://wireless.kernel.org/
7170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7172 S:      Maintained
7173 F:      Documentation/networking/mac80211-injection.txt
7174 F:      include/net/mac80211.h
7175 F:      net/mac80211/
7176 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7177
7178 MACVLAN DRIVER
7179 M:      Patrick McHardy <kaber@trash.net>
7180 L:      netdev@vger.kernel.org
7181 S:      Maintained
7182 F:      drivers/net/macvlan.c
7183 F:      include/linux/if_macvlan.h
7184
7185 MAILBOX API
7186 M:      Jassi Brar <jassisinghbrar@gmail.com>
7187 L:      linux-kernel@vger.kernel.org
7188 S:      Maintained
7189 F:      drivers/mailbox/
7190 F:      include/linux/mailbox_client.h
7191 F:      include/linux/mailbox_controller.h
7192
7193 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7194 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7195 W:      http://www.kernel.org/doc/man-pages
7196 L:      linux-man@vger.kernel.org
7197 S:      Maintained
7198
7199 MARVELL ARMADA DRM SUPPORT
7200 M:      Russell King <rmk+kernel@armlinux.org.uk>
7201 S:      Maintained
7202 F:      drivers/gpu/drm/armada/
7203 F:      include/uapi/drm/armada_drm.h
7204 F:      Documentation/devicetree/bindings/display/armada/
7205
7206 MARVELL 88E6352 DSA support
7207 M:      Guenter Roeck <linux@roeck-us.net>
7208 S:      Maintained
7209 F:      drivers/net/dsa/mv88e6352.c
7210
7211 MARVELL CRYPTO DRIVER
7212 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7213 M:      Arnaud Ebalard <arno@natisbad.org>
7214 F:      drivers/crypto/marvell/
7215 S:      Maintained
7216 L:      linux-crypto@vger.kernel.org
7217
7218 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7219 M:      Mirko Lindner <mlindner@marvell.com>
7220 M:      Stephen Hemminger <stephen@networkplumber.org>
7221 L:      netdev@vger.kernel.org
7222 S:      Maintained
7223 F:      drivers/net/ethernet/marvell/sk*
7224
7225 MARVELL LIBERTAS WIRELESS DRIVER
7226 L:      libertas-dev@lists.infradead.org
7227 S:      Orphan
7228 F:      drivers/net/wireless/marvell/libertas/
7229
7230 MARVELL MV643XX ETHERNET DRIVER
7231 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7232 L:      netdev@vger.kernel.org
7233 S:      Maintained
7234 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7235 F:      include/linux/mv643xx.h
7236
7237 MARVELL MVNETA ETHERNET DRIVER
7238 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7239 L:      netdev@vger.kernel.org
7240 S:      Maintained
7241 F:      drivers/net/ethernet/marvell/mvneta.*
7242
7243 MARVELL MWIFIEX WIRELESS DRIVER
7244 M:      Amitkumar Karwar <akarwar@marvell.com>
7245 M:      Nishant Sarmukadam <nishants@marvell.com>
7246 L:      linux-wireless@vger.kernel.org
7247 S:      Maintained
7248 F:      drivers/net/wireless/marvell/mwifiex/
7249
7250 MARVELL MWL8K WIRELESS DRIVER
7251 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7252 L:      linux-wireless@vger.kernel.org
7253 S:      Odd Fixes
7254 F:      drivers/net/wireless/marvell/mwl8k.c
7255
7256 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7257 M:      Nicolas Pitre <nico@fluxnic.net>
7258 S:      Odd Fixes
7259 F:      drivers/mmc/host/mvsdio.*
7260
7261 MATROX FRAMEBUFFER DRIVER
7262 L:      linux-fbdev@vger.kernel.org
7263 S:      Orphan
7264 F:      drivers/video/fbdev/matrox/matroxfb_*
7265 F:      include/uapi/linux/matroxfb.h
7266
7267 MAX16065 HARDWARE MONITOR DRIVER
7268 M:      Guenter Roeck <linux@roeck-us.net>
7269 L:      linux-hwmon@vger.kernel.org
7270 S:      Maintained
7271 F:      Documentation/hwmon/max16065
7272 F:      drivers/hwmon/max16065.c
7273
7274 MAX20751 HARDWARE MONITOR DRIVER
7275 M:      Guenter Roeck <linux@roeck-us.net>
7276 L:      linux-hwmon@vger.kernel.org
7277 S:      Maintained
7278 F:      Documentation/hwmon/max20751
7279 F:      drivers/hwmon/max20751.c
7280
7281 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7282 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7283 L:      linux-hwmon@vger.kernel.org
7284 S:      Maintained
7285 F:      Documentation/hwmon/max6650
7286 F:      drivers/hwmon/max6650.c
7287
7288 MAX6697 HARDWARE MONITOR DRIVER
7289 M:      Guenter Roeck <linux@roeck-us.net>
7290 L:      linux-hwmon@vger.kernel.org
7291 S:      Maintained
7292 F:      Documentation/hwmon/max6697
7293 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7294 F:      drivers/hwmon/max6697.c
7295 F:      include/linux/platform_data/max6697.h
7296
7297 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7298 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7299 L:      linux-pm@vger.kernel.org
7300 S:      Supported
7301 F:      drivers/power/max14577_charger.c
7302 F:      drivers/power/max77693_charger.c
7303
7304 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7305 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7306 L:      linux-kernel@vger.kernel.org
7307 S:      Supported
7308 F:      drivers/*/*max77802*.c
7309 F:      Documentation/devicetree/bindings/*/*max77802.txt
7310 F:      include/dt-bindings/*/*max77802.h
7311
7312 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7313 M:      Chanwoo Choi <cw00.choi@samsung.com>
7314 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7315 L:      linux-kernel@vger.kernel.org
7316 S:      Supported
7317 F:      drivers/*/max14577*.c
7318 F:      drivers/*/max77686*.c
7319 F:      drivers/*/max77693*.c
7320 F:      drivers/extcon/extcon-max14577.c
7321 F:      drivers/extcon/extcon-max77693.c
7322 F:      drivers/rtc/rtc-max77686.c
7323 F:      drivers/clk/clk-max77686.c
7324 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7325 F:      Documentation/devicetree/bindings/*/max77686.txt
7326 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7327 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7328 F:      include/linux/mfd/max14577*.h
7329 F:      include/linux/mfd/max77686*.h
7330 F:      include/linux/mfd/max77693*.h
7331
7332 MAXIRADIO FM RADIO RECEIVER DRIVER
7333 M:      Hans Verkuil <hverkuil@xs4all.nl>
7334 L:      linux-media@vger.kernel.org
7335 T:      git git://linuxtv.org/media_tree.git
7336 W:      https://linuxtv.org
7337 S:      Maintained
7338 F:      drivers/media/radio/radio-maxiradio*
7339
7340 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7341 M:      Peter Rosin <peda@axentia.se>
7342 L:      linux-iio@vger.kernel.org
7343 S:      Maintained
7344 F:      drivers/iio/potentiometer/mcp4531.c
7345
7346 MEDIA DRIVERS FOR RENESAS - FCP
7347 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7348 L:      linux-media@vger.kernel.org
7349 L:      linux-renesas-soc@vger.kernel.org
7350 T:      git git://linuxtv.org/media_tree.git
7351 S:      Supported
7352 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
7353 F:      drivers/media/platform/rcar-fcp.c
7354 F:      include/media/rcar-fcp.h
7355
7356 MEDIA DRIVERS FOR RENESAS - VSP1
7357 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7358 L:      linux-media@vger.kernel.org
7359 L:      linux-renesas-soc@vger.kernel.org
7360 T:      git git://linuxtv.org/media_tree.git
7361 S:      Supported
7362 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7363 F:      drivers/media/platform/vsp1/
7364
7365 MEDIA DRIVERS FOR HELENE
7366 M:      Abylay Ospan <aospan@netup.ru>
7367 L:      linux-media@vger.kernel.org
7368 W:      https://linuxtv.org
7369 W:      http://netup.tv/
7370 T:      git git://linuxtv.org/media_tree.git
7371 S:      Supported
7372 F:      drivers/media/dvb-frontends/helene*
7373
7374 MEDIA DRIVERS FOR ASCOT2E
7375 M:      Sergey Kozlov <serjk@netup.ru>
7376 M:      Abylay Ospan <aospan@netup.ru>
7377 L:      linux-media@vger.kernel.org
7378 W:      https://linuxtv.org
7379 W:      http://netup.tv/
7380 T:      git git://linuxtv.org/media_tree.git
7381 S:      Supported
7382 F:      drivers/media/dvb-frontends/ascot2e*
7383
7384 MEDIA DRIVERS FOR CXD2841ER
7385 M:      Sergey Kozlov <serjk@netup.ru>
7386 M:      Abylay Ospan <aospan@netup.ru>
7387 L:      linux-media@vger.kernel.org
7388 W:      https://linuxtv.org
7389 W:      http://netup.tv/
7390 T:      git git://linuxtv.org/media_tree.git
7391 S:      Supported
7392 F:      drivers/media/dvb-frontends/cxd2841er*
7393
7394 MEDIA DRIVERS FOR HORUS3A
7395 M:      Sergey Kozlov <serjk@netup.ru>
7396 M:      Abylay Ospan <aospan@netup.ru>
7397 L:      linux-media@vger.kernel.org
7398 W:      https://linuxtv.org
7399 W:      http://netup.tv/
7400 T:      git git://linuxtv.org/media_tree.git
7401 S:      Supported
7402 F:      drivers/media/dvb-frontends/horus3a*
7403
7404 MEDIA DRIVERS FOR LNBH25
7405 M:      Sergey Kozlov <serjk@netup.ru>
7406 M:      Abylay Ospan <aospan@netup.ru>
7407 L:      linux-media@vger.kernel.org
7408 W:      https://linuxtv.org
7409 W:      http://netup.tv/
7410 T:      git git://linuxtv.org/media_tree.git
7411 S:      Supported
7412 F:      drivers/media/dvb-frontends/lnbh25*
7413
7414 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7415 M:      Sergey Kozlov <serjk@netup.ru>
7416 M:      Abylay Ospan <aospan@netup.ru>
7417 L:      linux-media@vger.kernel.org
7418 W:      https://linuxtv.org
7419 W:      http://netup.tv/
7420 T:      git git://linuxtv.org/media_tree.git
7421 S:      Supported
7422 F:      drivers/media/pci/netup_unidvb/*
7423
7424 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7425 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
7426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7427 P:      LinuxTV.org Project
7428 L:      linux-media@vger.kernel.org
7429 W:      https://linuxtv.org
7430 Q:      http://patchwork.kernel.org/project/linux-media/list/
7431 T:      git git://linuxtv.org/media_tree.git
7432 S:      Maintained
7433 F:      Documentation/dvb/
7434 F:      Documentation/video4linux/
7435 F:      Documentation/DocBook/media/
7436 F:      drivers/media/
7437 F:      drivers/staging/media/
7438 F:      include/linux/platform_data/media/
7439 F:      include/media/
7440 F:      include/uapi/linux/dvb/
7441 F:      include/uapi/linux/videodev2.h
7442 F:      include/uapi/linux/media.h
7443 F:      include/uapi/linux/v4l2-*
7444 F:      include/uapi/linux/meye.h
7445 F:      include/uapi/linux/ivtv*
7446 F:      include/uapi/linux/uvcvideo.h
7447
7448 MEDIATEK ETHERNET DRIVER
7449 M:      Felix Fietkau <nbd@openwrt.org>
7450 M:      John Crispin <blogic@openwrt.org>
7451 L:      netdev@vger.kernel.org
7452 S:      Maintained
7453 F:      drivers/net/ethernet/mediatek/
7454
7455 MEDIATEK MT7601U WIRELESS LAN DRIVER
7456 M:      Jakub Kicinski <kubakici@wp.pl>
7457 L:      linux-wireless@vger.kernel.org
7458 S:      Maintained
7459 F:      drivers/net/wireless/mediatek/mt7601u/
7460
7461 MEGARAID SCSI/SAS DRIVERS
7462 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7463 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7464 M:      Uday Lingala <uday.lingala@avagotech.com>
7465 L:      megaraidlinux.pdl@avagotech.com
7466 L:      linux-scsi@vger.kernel.org
7467 W:      http://www.lsi.com
7468 S:      Maintained
7469 F:      Documentation/scsi/megaraid.txt
7470 F:      drivers/scsi/megaraid.*
7471 F:      drivers/scsi/megaraid/
7472
7473 MELLANOX ETHERNET DRIVER (mlx4_en)
7474 M:      Tariq Toukan <tariqt@mellanox.com>
7475 L:      netdev@vger.kernel.org
7476 S:      Supported
7477 W:      http://www.mellanox.com
7478 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7479 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7480
7481 MELLANOX ETHERNET DRIVER (mlx5e)
7482 M:      Saeed Mahameed <saeedm@mellanox.com>
7483 L:      netdev@vger.kernel.org
7484 S:      Supported
7485 W:      http://www.mellanox.com
7486 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7487 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7488
7489 MELLANOX ETHERNET SWITCH DRIVERS
7490 M:      Jiri Pirko <jiri@mellanox.com>
7491 M:      Ido Schimmel <idosch@mellanox.com>
7492 L:      netdev@vger.kernel.org
7493 S:      Supported
7494 W:      http://www.mellanox.com
7495 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7496 F:      drivers/net/ethernet/mellanox/mlxsw/
7497
7498 MEMBARRIER SUPPORT
7499 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7500 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7501 L:      linux-kernel@vger.kernel.org
7502 S:      Supported
7503 F:      kernel/membarrier.c
7504 F:      include/uapi/linux/membarrier.h
7505
7506 MEMORY MANAGEMENT
7507 L:      linux-mm@kvack.org
7508 W:      http://www.linux-mm.org
7509 S:      Maintained
7510 F:      include/linux/mm.h
7511 F:      include/linux/gfp.h
7512 F:      include/linux/mmzone.h
7513 F:      include/linux/memory_hotplug.h
7514 F:      include/linux/vmalloc.h
7515 F:      mm/
7516
7517 MEMORY TECHNOLOGY DEVICES (MTD)
7518 M:      David Woodhouse <dwmw2@infradead.org>
7519 M:      Brian Norris <computersforpeace@gmail.com>
7520 L:      linux-mtd@lists.infradead.org
7521 W:      http://www.linux-mtd.infradead.org/
7522 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7523 T:      git git://git.infradead.org/linux-mtd.git
7524 T:      git git://git.infradead.org/l2-mtd.git
7525 S:      Maintained
7526 F:      drivers/mtd/
7527 F:      include/linux/mtd/
7528 F:      include/uapi/mtd/
7529
7530 MEN A21 WATCHDOG DRIVER
7531 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7532 L:      linux-watchdog@vger.kernel.org
7533 S:      Maintained
7534 F:      drivers/watchdog/mena21_wdt.c
7535
7536 MEN CHAMELEON BUS (mcb)
7537 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7538 S:      Maintained
7539 F:      drivers/mcb/
7540 F:      include/linux/mcb.h
7541 F:      Documentation/men-chameleon-bus.txt
7542
7543 MEN F21BMC (Board Management Controller)
7544 M:      Andreas Werner <andreas.werner@men.de>
7545 S:      Supported
7546 F:      drivers/mfd/menf21bmc.c
7547 F:      drivers/watchdog/menf21bmc_wdt.c
7548 F:      drivers/leds/leds-menf21bmc.c
7549 F:      drivers/hwmon/menf21bmc_hwmon.c
7550 F:      Documentation/hwmon/menf21bmc
7551
7552 METAG ARCHITECTURE
7553 M:      James Hogan <james.hogan@imgtec.com>
7554 L:      linux-metag@vger.kernel.org
7555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7556 S:      Odd Fixes
7557 F:      arch/metag/
7558 F:      Documentation/metag/
7559 F:      Documentation/devicetree/bindings/metag/
7560 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7561 F:      drivers/clocksource/metag_generic.c
7562 F:      drivers/irqchip/irq-metag.c
7563 F:      drivers/irqchip/irq-metag-ext.c
7564 F:      drivers/tty/metag_da.c
7565
7566 MICROBLAZE ARCHITECTURE
7567 M:      Michal Simek <monstr@monstr.eu>
7568 W:      http://www.monstr.eu/fdt/
7569 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7570 S:      Supported
7571 F:      arch/microblaze/
7572
7573 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7574 M:      Chen Yu <yu.c.chen@intel.com>
7575 L:      platform-driver-x86@vger.kernel.org
7576 S:      Supported
7577 F:      drivers/platform/x86/surfacepro3_button.c
7578
7579 MICROTEK X6 SCANNER
7580 M:      Oliver Neukum <oliver@neukum.org>
7581 S:      Maintained
7582 F:      drivers/usb/image/microtek.*
7583
7584 MIPS
7585 M:      Ralf Baechle <ralf@linux-mips.org>
7586 L:      linux-mips@linux-mips.org
7587 W:      http://www.linux-mips.org/
7588 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7589 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7590 S:      Supported
7591 F:      Documentation/devicetree/bindings/mips/
7592 F:      Documentation/mips/
7593 F:      arch/mips/
7594
7595 MIPS/LOONGSON1 ARCHITECTURE
7596 M:      Keguang Zhang <keguang.zhang@gmail.com>
7597 L:      linux-mips@linux-mips.org
7598 S:      Maintained
7599 F:      arch/mips/loongson32/
7600 F:      arch/mips/include/asm/mach-loongson32/
7601 F:      drivers/*/*loongson1*
7602 F:      drivers/*/*/*loongson1*
7603
7604 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7605 M:      Hans Verkuil <hverkuil@xs4all.nl>
7606 L:      linux-media@vger.kernel.org
7607 T:      git git://linuxtv.org/media_tree.git
7608 W:      https://linuxtv.org
7609 S:      Odd Fixes
7610 F:      drivers/media/radio/radio-miropcm20*
7611
7612 MELLANOX MLX4 core VPI driver
7613 M:      Yishai Hadas <yishaih@mellanox.com>
7614 L:      netdev@vger.kernel.org
7615 L:      linux-rdma@vger.kernel.org
7616 W:      http://www.mellanox.com
7617 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7618 S:      Supported
7619 F:      drivers/net/ethernet/mellanox/mlx4/
7620 F:      include/linux/mlx4/
7621
7622 MELLANOX MLX4 IB driver
7623 M:      Yishai Hadas <yishaih@mellanox.com>
7624 L:      linux-rdma@vger.kernel.org
7625 W:      http://www.mellanox.com
7626 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7627 S:      Supported
7628 F:      drivers/infiniband/hw/mlx4/
7629 F:      include/linux/mlx4/
7630
7631 MELLANOX MLX5 core VPI driver
7632 M:      Matan Barak <matanb@mellanox.com>
7633 M:      Leon Romanovsky <leonro@mellanox.com>
7634 L:      netdev@vger.kernel.org
7635 L:      linux-rdma@vger.kernel.org
7636 W:      http://www.mellanox.com
7637 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7638 S:      Supported
7639 F:      drivers/net/ethernet/mellanox/mlx5/core/
7640 F:      include/linux/mlx5/
7641
7642 MELLANOX MLX5 IB driver
7643 M:      Matan Barak <matanb@mellanox.com>
7644 M:      Leon Romanovsky <leonro@mellanox.com>
7645 L:      linux-rdma@vger.kernel.org
7646 W:      http://www.mellanox.com
7647 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7648 S:      Supported
7649 F:      drivers/infiniband/hw/mlx5/
7650 F:      include/linux/mlx5/
7651
7652 MELEXIS MLX90614 DRIVER
7653 M:      Crt Mori <cmo@melexis.com>
7654 L:      linux-iio@vger.kernel.org
7655 W:      http://www.melexis.com
7656 S:      Supported
7657 F:      drivers/iio/temperature/mlx90614.c
7658
7659 MN88472 MEDIA DRIVER
7660 M:      Antti Palosaari <crope@iki.fi>
7661 L:      linux-media@vger.kernel.org
7662 W:      https://linuxtv.org
7663 W:      http://palosaari.fi/linux/
7664 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7665 S:      Maintained
7666 F:      drivers/media/dvb-frontends/mn88472*
7667
7668 MN88473 MEDIA DRIVER
7669 M:      Antti Palosaari <crope@iki.fi>
7670 L:      linux-media@vger.kernel.org
7671 W:      https://linuxtv.org
7672 W:      http://palosaari.fi/linux/
7673 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7674 S:      Maintained
7675 F:      drivers/media/dvb-frontends/mn88473*
7676
7677 MODULE SUPPORT
7678 M:      Rusty Russell <rusty@rustcorp.com.au>
7679 S:      Maintained
7680 F:      include/linux/module.h
7681 F:      kernel/module.c
7682
7683 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7684 W:      http://popies.net/meye/
7685 S:      Orphan
7686 F:      Documentation/video4linux/meye.txt
7687 F:      drivers/media/pci/meye/
7688 F:      include/uapi/linux/meye.h
7689
7690 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7691 M:      Jiri Slaby <jirislaby@gmail.com>
7692 S:      Maintained
7693 F:      Documentation/serial/moxa-smartio
7694 F:      drivers/tty/mxser.*
7695
7696 MR800 AVERMEDIA USB FM RADIO DRIVER
7697 M:      Alexey Klimov <klimov.linux@gmail.com>
7698 L:      linux-media@vger.kernel.org
7699 T:      git git://linuxtv.org/media_tree.git
7700 S:      Maintained
7701 F:      drivers/media/radio/radio-mr800.c
7702
7703 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7704 M:      Alan Ott <alan@signal11.us>
7705 L:      linux-wpan@vger.kernel.org
7706 S:      Maintained
7707 F:      drivers/net/ieee802154/mrf24j40.c
7708 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7709
7710 MSI LAPTOP SUPPORT
7711 M:      "Lee, Chun-Yi" <jlee@suse.com>
7712 L:      platform-driver-x86@vger.kernel.org
7713 S:      Maintained
7714 F:      drivers/platform/x86/msi-laptop.c
7715
7716 MSI WMI SUPPORT
7717 L:      platform-driver-x86@vger.kernel.org
7718 S:      Orphan
7719 F:      drivers/platform/x86/msi-wmi.c
7720
7721 MSI001 MEDIA DRIVER
7722 M:      Antti Palosaari <crope@iki.fi>
7723 L:      linux-media@vger.kernel.org
7724 W:      https://linuxtv.org
7725 W:      http://palosaari.fi/linux/
7726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7727 T:      git git://linuxtv.org/anttip/media_tree.git
7728 S:      Maintained
7729 F:      drivers/media/tuners/msi001*
7730
7731 MSI2500 MEDIA DRIVER
7732 M:      Antti Palosaari <crope@iki.fi>
7733 L:      linux-media@vger.kernel.org
7734 W:      https://linuxtv.org
7735 W:      http://palosaari.fi/linux/
7736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7737 T:      git git://linuxtv.org/anttip/media_tree.git
7738 S:      Maintained
7739 F:      drivers/media/usb/msi2500/
7740
7741 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7742 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7743 L:      linux-mtd@lists.infradead.org
7744 S:      Maintained
7745 F:      drivers/mtd/devices/docg3*
7746
7747 MT9M032 APTINA SENSOR DRIVER
7748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7749 L:      linux-media@vger.kernel.org
7750 T:      git git://linuxtv.org/media_tree.git
7751 S:      Maintained
7752 F:      drivers/media/i2c/mt9m032.c
7753 F:      include/media/i2c/mt9m032.h
7754
7755 MT9P031 APTINA CAMERA SENSOR
7756 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7757 L:      linux-media@vger.kernel.org
7758 T:      git git://linuxtv.org/media_tree.git
7759 S:      Maintained
7760 F:      drivers/media/i2c/mt9p031.c
7761 F:      include/media/i2c/mt9p031.h
7762
7763 MT9T001 APTINA CAMERA SENSOR
7764 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7765 L:      linux-media@vger.kernel.org
7766 T:      git git://linuxtv.org/media_tree.git
7767 S:      Maintained
7768 F:      drivers/media/i2c/mt9t001.c
7769 F:      include/media/i2c/mt9t001.h
7770
7771 MT9V032 APTINA CAMERA SENSOR
7772 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7773 L:      linux-media@vger.kernel.org
7774 T:      git git://linuxtv.org/media_tree.git
7775 S:      Maintained
7776 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7777 F:      drivers/media/i2c/mt9v032.c
7778 F:      include/media/i2c/mt9v032.h
7779
7780 MULTIFUNCTION DEVICES (MFD)
7781 M:      Lee Jones <lee.jones@linaro.org>
7782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7783 S:      Supported
7784 F:      drivers/mfd/
7785 F:      include/linux/mfd/
7786
7787 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7788 M:      Ulf Hansson <ulf.hansson@linaro.org>
7789 L:      linux-mmc@vger.kernel.org
7790 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7791 S:      Maintained
7792 F:      drivers/mmc/
7793 F:      include/linux/mmc/
7794 F:      include/uapi/linux/mmc/
7795
7796 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7797 S:      Orphan
7798 F:      drivers/mmc/host/mmc_spi.c
7799 F:      include/linux/spi/mmc_spi.h
7800
7801 MULTISOUND SOUND DRIVER
7802 M:      Andrew Veliath <andrewtv@usa.net>
7803 S:      Maintained
7804 F:      Documentation/sound/oss/MultiSound
7805 F:      sound/oss/msnd*
7806
7807 MULTITECH MULTIPORT CARD (ISICOM)
7808 S:      Orphan
7809 F:      drivers/tty/isicom.c
7810 F:      include/linux/isicom.h
7811
7812 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7813 M:      Bin Liu <b-liu@ti.com>
7814 L:      linux-usb@vger.kernel.org
7815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7816 S:      Maintained
7817 F:      drivers/usb/musb/
7818
7819 MXL5007T MEDIA DRIVER
7820 M:      Michael Krufky <mkrufky@linuxtv.org>
7821 L:      linux-media@vger.kernel.org
7822 W:      https://linuxtv.org
7823 W:      http://github.com/mkrufky
7824 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7825 T:      git git://linuxtv.org/mkrufky/tuners.git
7826 S:      Maintained
7827 F:      drivers/media/tuners/mxl5007t.*
7828
7829 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7830 M:      Hyong-Youb Kim <hykim@myri.com>
7831 L:      netdev@vger.kernel.org
7832 W:      https://www.myricom.com/support/downloads/myri10ge.html
7833 S:      Supported
7834 F:      drivers/net/ethernet/myricom/myri10ge/
7835
7836 NAND FLASH SUBSYSTEM
7837 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7838 R:      Richard Weinberger <richard@nod.at>
7839 L:      linux-mtd@lists.infradead.org
7840 W:      http://www.linux-mtd.infradead.org/
7841 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7842 T:      git git://github.com/linux-nand/linux.git
7843 S:      Maintained
7844 F:      drivers/mtd/nand/
7845 F:      include/linux/mtd/nand*.h
7846
7847 NATSEMI ETHERNET DRIVER (DP8381x)
7848 S:      Orphan
7849 F:      drivers/net/ethernet/natsemi/natsemi.c
7850
7851 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7852 M:      Daniel Mack <zonque@gmail.com>
7853 S:      Maintained
7854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7855 W:      http://www.native-instruments.com
7856 F:      sound/usb/caiaq/
7857
7858 NCP FILESYSTEM
7859 M:      Petr Vandrovec <petr@vandrovec.name>
7860 S:      Odd Fixes
7861 F:      fs/ncpfs/
7862
7863 NCR 5380 SCSI DRIVERS
7864 M:      Finn Thain <fthain@telegraphics.com.au>
7865 M:      Michael Schmitz <schmitzmic@gmail.com>
7866 L:      linux-scsi@vger.kernel.org
7867 S:      Maintained
7868 F:      Documentation/scsi/g_NCR5380.txt
7869 F:      Documentation/scsi/dtc3x80.txt
7870 F:      drivers/scsi/NCR5380.*
7871 F:      drivers/scsi/arm/cumana_1.c
7872 F:      drivers/scsi/arm/oak.c
7873 F:      drivers/scsi/atari_scsi.*
7874 F:      drivers/scsi/dmx3191d.c
7875 F:      drivers/scsi/dtc.*
7876 F:      drivers/scsi/g_NCR5380.*
7877 F:      drivers/scsi/g_NCR5380_mmio.c
7878 F:      drivers/scsi/mac_scsi.*
7879 F:      drivers/scsi/pas16.*
7880 F:      drivers/scsi/sun3_scsi.*
7881 F:      drivers/scsi/sun3_scsi_vme.c
7882 F:      drivers/scsi/t128.*
7883
7884 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7885 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7886 L:      linux-scsi@vger.kernel.org
7887 S:      Maintained
7888 F:      drivers/scsi/NCR_D700.*
7889
7890 NCT6775 HARDWARE MONITOR DRIVER
7891 M:      Guenter Roeck <linux@roeck-us.net>
7892 L:      linux-hwmon@vger.kernel.org
7893 S:      Maintained
7894 F:      Documentation/hwmon/nct6775
7895 F:      drivers/hwmon/nct6775.c
7896
7897 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7898 M:      Faisal Latif <faisal.latif@intel.com>
7899 L:      linux-rdma@vger.kernel.org
7900 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7901 S:      Supported
7902 F:      drivers/infiniband/hw/nes/
7903
7904 NETEM NETWORK EMULATOR
7905 M:      Stephen Hemminger <stephen@networkplumber.org>
7906 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7907 S:      Maintained
7908 F:      net/sched/sch_netem.c
7909
7910 NETERION 10GbE DRIVERS (s2io/vxge)
7911 M:      Jon Mason <jdmason@kudzu.us>
7912 L:      netdev@vger.kernel.org
7913 S:      Supported
7914 F:      Documentation/networking/s2io.txt
7915 F:      Documentation/networking/vxge.txt
7916 F:      drivers/net/ethernet/neterion/
7917
7918 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7919 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7920 M:      Patrick McHardy <kaber@trash.net>
7921 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7922 L:      netfilter-devel@vger.kernel.org
7923 L:      coreteam@netfilter.org
7924 W:      http://www.netfilter.org/
7925 W:      http://www.iptables.org/
7926 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7929 S:      Supported
7930 F:      include/linux/netfilter*
7931 F:      include/linux/netfilter/
7932 F:      include/net/netfilter/
7933 F:      include/uapi/linux/netfilter*
7934 F:      include/uapi/linux/netfilter/
7935 F:      net/*/netfilter.c
7936 F:      net/*/netfilter/
7937 F:      net/netfilter/
7938 F:      net/bridge/br_netfilter*.c
7939
7940 NETLABEL
7941 M:      Paul Moore <paul@paul-moore.com>
7942 W:      http://netlabel.sf.net
7943 L:      netdev@vger.kernel.org
7944 S:      Maintained
7945 F:      Documentation/netlabel/
7946 F:      include/net/netlabel.h
7947 F:      net/netlabel/
7948
7949 NETROM NETWORK LAYER
7950 M:      Ralf Baechle <ralf@linux-mips.org>
7951 L:      linux-hams@vger.kernel.org
7952 W:      http://www.linux-ax25.org/
7953 S:      Maintained
7954 F:      include/net/netrom.h
7955 F:      include/uapi/linux/netrom.h
7956 F:      net/netrom/
7957
7958 NETRONOME ETHERNET DRIVERS
7959 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7960 L:      oss-drivers@netronome.com
7961 S:      Maintained
7962 F:      drivers/net/ethernet/netronome/
7963
7964 NETWORK BLOCK DEVICE (NBD)
7965 M:      Markus Pargmann <mpa@pengutronix.de>
7966 S:      Maintained
7967 L:      nbd-general@lists.sourceforge.net
7968 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7969 F:      Documentation/blockdev/nbd.txt
7970 F:      drivers/block/nbd.c
7971 F:      include/uapi/linux/nbd.h
7972
7973 NETWORK DROP MONITOR
7974 M:      Neil Horman <nhorman@tuxdriver.com>
7975 L:      netdev@vger.kernel.org
7976 S:      Maintained
7977 W:      https://fedorahosted.org/dropwatch/
7978 F:      net/core/drop_monitor.c
7979
7980 NETWORKING [GENERAL]
7981 M:      "David S. Miller" <davem@davemloft.net>
7982 L:      netdev@vger.kernel.org
7983 W:      http://www.linuxfoundation.org/en/Net
7984 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7987 S:      Maintained
7988 F:      net/
7989 F:      include/net/
7990 F:      include/linux/in.h
7991 F:      include/linux/net.h
7992 F:      include/linux/netdevice.h
7993 F:      include/uapi/linux/in.h
7994 F:      include/uapi/linux/net.h
7995 F:      include/uapi/linux/netdevice.h
7996 F:      include/uapi/linux/net_namespace.h
7997 F:      tools/net/
7998 F:      tools/testing/selftests/net/
7999 F:      lib/random32.c
8000 F:      lib/test_bpf.c
8001
8002 NETWORKING [IPv4/IPv6]
8003 M:      "David S. Miller" <davem@davemloft.net>
8004 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8005 M:      James Morris <jmorris@namei.org>
8006 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
8007 M:      Patrick McHardy <kaber@trash.net>
8008 L:      netdev@vger.kernel.org
8009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8010 S:      Maintained
8011 F:      net/ipv4/
8012 F:      net/ipv6/
8013 F:      include/net/ip*
8014 F:      arch/x86/net/*
8015
8016 NETWORKING [IPSEC]
8017 M:      Steffen Klassert <steffen.klassert@secunet.com>
8018 M:      Herbert Xu <herbert@gondor.apana.org.au>
8019 M:      "David S. Miller" <davem@davemloft.net>
8020 L:      netdev@vger.kernel.org
8021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
8022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
8023 S:      Maintained
8024 F:      net/core/flow.c
8025 F:      net/xfrm/
8026 F:      net/key/
8027 F:      net/ipv4/xfrm*
8028 F:      net/ipv4/esp4.c
8029 F:      net/ipv4/ah4.c
8030 F:      net/ipv4/ipcomp.c
8031 F:      net/ipv4/ip_vti.c
8032 F:      net/ipv6/xfrm*
8033 F:      net/ipv6/esp6.c
8034 F:      net/ipv6/ah6.c
8035 F:      net/ipv6/ipcomp6.c
8036 F:      net/ipv6/ip6_vti.c
8037 F:      include/uapi/linux/xfrm.h
8038 F:      include/net/xfrm.h
8039
8040 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
8041 M:      Paul Moore <paul@paul-moore.com>
8042 L:      netdev@vger.kernel.org
8043 S:      Maintained
8044
8045 NETWORKING [WIRELESS]
8046 L:      linux-wireless@vger.kernel.org
8047 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8048
8049 NETWORKING DRIVERS
8050 L:      netdev@vger.kernel.org
8051 W:      http://www.linuxfoundation.org/en/Net
8052 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8055 S:      Odd Fixes
8056 F:      Documentation/devicetree/bindings/net/
8057 F:      drivers/net/
8058 F:      include/linux/if_*
8059 F:      include/linux/netdevice.h
8060 F:      include/linux/etherdevice.h
8061 F:      include/linux/fcdevice.h
8062 F:      include/linux/fddidevice.h
8063 F:      include/linux/hippidevice.h
8064 F:      include/linux/inetdevice.h
8065 F:      include/uapi/linux/if_*
8066 F:      include/uapi/linux/netdevice.h
8067
8068 NETWORKING DRIVERS (WIRELESS)
8069 M:      Kalle Valo <kvalo@codeaurora.org>
8070 L:      linux-wireless@vger.kernel.org
8071 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
8073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
8074 S:      Maintained
8075 F:      Documentation/devicetree/bindings/net/wireless/
8076 F:      drivers/net/wireless/
8077
8078 NETXEN (1/10) GbE SUPPORT
8079 M:      Manish Chopra <manish.chopra@qlogic.com>
8080 M:      Sony Chacko <sony.chacko@qlogic.com>
8081 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
8082 L:      netdev@vger.kernel.org
8083 W:      http://www.qlogic.com
8084 S:      Supported
8085 F:      drivers/net/ethernet/qlogic/netxen/
8086
8087 NFC SUBSYSTEM
8088 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
8089 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8090 M:      Samuel Ortiz <sameo@linux.intel.com>
8091 L:      linux-wireless@vger.kernel.org
8092 L:      linux-nfc@lists.01.org (subscribers-only)
8093 S:      Supported
8094 F:      net/nfc/
8095 F:      include/net/nfc/
8096 F:      include/uapi/linux/nfc.h
8097 F:      drivers/nfc/
8098 F:      include/linux/platform_data/nfcmrvl.h
8099 F:      include/linux/platform_data/nxp-nci.h
8100 F:      include/linux/platform_data/pn544.h
8101 F:      include/linux/platform_data/st21nfca.h
8102 F:      include/linux/platform_data/st-nci.h
8103 F:      Documentation/devicetree/bindings/net/nfc/
8104
8105 NFS, SUNRPC, AND LOCKD CLIENTS
8106 M:      Trond Myklebust <trond.myklebust@primarydata.com>
8107 M:      Anna Schumaker <anna.schumaker@netapp.com>
8108 L:      linux-nfs@vger.kernel.org
8109 W:      http://client.linux-nfs.org
8110 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
8111 S:      Maintained
8112 F:      fs/lockd/
8113 F:      fs/nfs/
8114 F:      fs/nfs_common/
8115 F:      net/sunrpc/
8116 F:      include/linux/lockd/
8117 F:      include/linux/nfs*
8118 F:      include/linux/sunrpc/
8119 F:      include/uapi/linux/nfs*
8120 F:      include/uapi/linux/sunrpc/
8121
8122 NILFS2 FILESYSTEM
8123 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
8124 L:      linux-nilfs@vger.kernel.org
8125 W:      http://nilfs.sourceforge.net/
8126 W:      http://nilfs.osdn.jp/
8127 T:      git git://github.com/konis/nilfs2.git
8128 S:      Supported
8129 F:      Documentation/filesystems/nilfs2.txt
8130 F:      fs/nilfs2/
8131 F:      include/linux/nilfs2_fs.h
8132 F:      include/trace/events/nilfs2.h
8133
8134 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
8135 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8136 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8137 S:      Maintained
8138 F:      Documentation/scsi/NinjaSCSI.txt
8139 F:      drivers/scsi/pcmcia/nsp_*
8140
8141 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
8142 M:      GOTO Masanori <gotom@debian.or.jp>
8143 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8144 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8145 S:      Maintained
8146 F:      Documentation/scsi/NinjaSCSI.txt
8147 F:      drivers/scsi/nsp32*
8148
8149 NIOS2 ARCHITECTURE
8150 M:      Ley Foon Tan <lftan@altera.com>
8151 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
8152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
8153 S:      Maintained
8154 F:      arch/nios2/
8155
8156 NOKIA N900 POWER SUPPLY DRIVERS
8157 R:      Pali Rohár <pali.rohar@gmail.com>
8158 F:      include/linux/power/bq2415x_charger.h
8159 F:      include/linux/power/bq27xxx_battery.h
8160 F:      include/linux/power/isp1704_charger.h
8161 F:      drivers/power/bq2415x_charger.c
8162 F:      drivers/power/bq27xxx_battery.c
8163 F:      drivers/power/bq27xxx_battery_i2c.c
8164 F:      drivers/power/isp1704_charger.c
8165 F:      drivers/power/rx51_battery.c
8166
8167 NTB DRIVER CORE
8168 M:      Jon Mason <jdmason@kudzu.us>
8169 M:      Dave Jiang <dave.jiang@intel.com>
8170 M:      Allen Hubbe <Allen.Hubbe@emc.com>
8171 L:      linux-ntb@googlegroups.com
8172 S:      Supported
8173 W:      https://github.com/jonmason/ntb/wiki
8174 T:      git git://github.com/jonmason/ntb.git
8175 F:      drivers/ntb/
8176 F:      drivers/net/ntb_netdev.c
8177 F:      include/linux/ntb.h
8178 F:      include/linux/ntb_transport.h
8179
8180 NTB INTEL DRIVER
8181 M:      Jon Mason <jdmason@kudzu.us>
8182 M:      Dave Jiang <dave.jiang@intel.com>
8183 L:      linux-ntb@googlegroups.com
8184 S:      Supported
8185 W:      https://github.com/jonmason/ntb/wiki
8186 T:      git git://github.com/jonmason/ntb.git
8187 F:      drivers/ntb/hw/intel/
8188
8189 NTB AMD DRIVER
8190 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
8191 L:      linux-ntb@googlegroups.com
8192 S:      Supported
8193 F:      drivers/ntb/hw/amd/
8194
8195 NTFS FILESYSTEM
8196 M:      Anton Altaparmakov <anton@tuxera.com>
8197 L:      linux-ntfs-dev@lists.sourceforge.net
8198 W:      http://www.tuxera.com/
8199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
8200 S:      Supported
8201 F:      Documentation/filesystems/ntfs.txt
8202 F:      fs/ntfs/
8203
8204 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
8205 M:      Antonino Daplas <adaplas@gmail.com>
8206 L:      linux-fbdev@vger.kernel.org
8207 S:      Maintained
8208 F:      drivers/video/fbdev/riva/
8209 F:      drivers/video/fbdev/nvidia/
8210
8211 NVM EXPRESS DRIVER
8212 M:      Keith Busch <keith.busch@intel.com>
8213 M:      Jens Axboe <axboe@fb.com>
8214 L:      linux-nvme@lists.infradead.org
8215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8216 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
8217 S:      Supported
8218 F:      drivers/nvme/host/
8219 F:      include/linux/nvme.h
8220
8221 NVMEM FRAMEWORK
8222 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8223 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8224 S:      Maintained
8225 F:      drivers/nvmem/
8226 F:      Documentation/devicetree/bindings/nvmem/
8227 F:      include/linux/nvmem-consumer.h
8228 F:      include/linux/nvmem-provider.h
8229
8230 NXP-NCI NFC DRIVER
8231 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8232 R:      Charles Gorand <charles.gorand@effinnov.com>
8233 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8234 S:      Supported
8235 F:      drivers/nfc/nxp-nci
8236
8237 NXP TDA998X DRM DRIVER
8238 M:      Russell King <rmk+kernel@armlinux.org.uk>
8239 S:      Supported
8240 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8241 F:      include/drm/i2c/tda998x.h
8242
8243 NXP TFA9879 DRIVER
8244 M:      Peter Rosin <peda@axentia.se>
8245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8246 S:      Maintained
8247 F:      sound/soc/codecs/tfa9879*
8248
8249 OBJTOOL
8250 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8251 S:      Supported
8252 F:      tools/objtool/
8253
8254 OMAP SUPPORT
8255 M:      Tony Lindgren <tony@atomide.com>
8256 L:      linux-omap@vger.kernel.org
8257 W:      http://www.muru.com/linux/omap/
8258 W:      http://linux.omap.com/
8259 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8261 S:      Maintained
8262 F:      arch/arm/*omap*/
8263 F:      arch/arm/configs/omap1_defconfig
8264 F:      arch/arm/configs/omap2plus_defconfig
8265 F:      drivers/i2c/busses/i2c-omap.c
8266 F:      drivers/irqchip/irq-omap-intc.c
8267 F:      drivers/mfd/*omap*.c
8268 F:      drivers/mfd/menelaus.c
8269 F:      drivers/mfd/palmas.c
8270 F:      drivers/mfd/tps65217.c
8271 F:      drivers/mfd/tps65218.c
8272 F:      drivers/mfd/tps65910.c
8273 F:      drivers/mfd/twl-core.[ch]
8274 F:      drivers/mfd/twl4030*.c
8275 F:      drivers/mfd/twl6030*.c
8276 F:      drivers/mfd/twl6040*.c
8277 F:      drivers/regulator/palmas-regulator*.c
8278 F:      drivers/regulator/pbias-regulator.c
8279 F:      drivers/regulator/tps65217-regulator.c
8280 F:      drivers/regulator/tps65218-regulator.c
8281 F:      drivers/regulator/tps65910-regulator.c
8282 F:      drivers/regulator/twl-regulator.c
8283 F:      include/linux/i2c-omap.h
8284
8285 OMAP DEVICE TREE SUPPORT
8286 M:      Benoît Cousson <bcousson@baylibre.com>
8287 M:      Tony Lindgren <tony@atomide.com>
8288 L:      linux-omap@vger.kernel.org
8289 L:      devicetree@vger.kernel.org
8290 S:      Maintained
8291 F:      arch/arm/boot/dts/*omap*
8292 F:      arch/arm/boot/dts/*am3*
8293 F:      arch/arm/boot/dts/*am4*
8294 F:      arch/arm/boot/dts/*am5*
8295 F:      arch/arm/boot/dts/*dra7*
8296
8297 OMAP CLOCK FRAMEWORK SUPPORT
8298 M:      Paul Walmsley <paul@pwsan.com>
8299 L:      linux-omap@vger.kernel.org
8300 S:      Maintained
8301 F:      arch/arm/*omap*/*clock*
8302
8303 OMAP POWER MANAGEMENT SUPPORT
8304 M:      Kevin Hilman <khilman@kernel.org>
8305 L:      linux-omap@vger.kernel.org
8306 S:      Maintained
8307 F:      arch/arm/*omap*/*pm*
8308 F:      drivers/cpufreq/omap-cpufreq.c
8309
8310 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8311 M:      Rajendra Nayak <rnayak@codeaurora.org>
8312 M:      Paul Walmsley <paul@pwsan.com>
8313 L:      linux-omap@vger.kernel.org
8314 S:      Maintained
8315 F:      arch/arm/mach-omap2/prm*
8316
8317 OMAP AUDIO SUPPORT
8318 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8319 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8320 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8321 L:      linux-omap@vger.kernel.org
8322 S:      Maintained
8323 F:      sound/soc/omap/
8324
8325 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8326 M:      Roger Quadros <rogerq@ti.com>
8327 M:      Tony Lindgren <tony@atomide.com>
8328 L:      linux-omap@vger.kernel.org
8329 S:      Maintained
8330 F:      drivers/memory/omap-gpmc.c
8331 F:      arch/arm/mach-omap2/*gpmc*
8332
8333 OMAP FRAMEBUFFER SUPPORT
8334 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8335 L:      linux-fbdev@vger.kernel.org
8336 L:      linux-omap@vger.kernel.org
8337 S:      Maintained
8338 F:      drivers/video/fbdev/omap/
8339
8340 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8341 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8342 L:      linux-omap@vger.kernel.org
8343 L:      linux-fbdev@vger.kernel.org
8344 S:      Maintained
8345 F:      drivers/video/fbdev/omap2/
8346 F:      Documentation/arm/OMAP/DSS
8347
8348 OMAP HARDWARE SPINLOCK SUPPORT
8349 M:      Ohad Ben-Cohen <ohad@wizery.com>
8350 L:      linux-omap@vger.kernel.org
8351 S:      Maintained
8352 F:      drivers/hwspinlock/omap_hwspinlock.c
8353
8354 OMAP MMC SUPPORT
8355 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8356 L:      linux-omap@vger.kernel.org
8357 S:      Maintained
8358 F:      drivers/mmc/host/omap.c
8359
8360 OMAP HS MMC SUPPORT
8361 L:      linux-mmc@vger.kernel.org
8362 L:      linux-omap@vger.kernel.org
8363 S:      Orphan
8364 F:      drivers/mmc/host/omap_hsmmc.c
8365
8366 OMAP RANDOM NUMBER GENERATOR SUPPORT
8367 M:      Deepak Saxena <dsaxena@plexity.net>
8368 S:      Maintained
8369 F:      drivers/char/hw_random/omap-rng.c
8370
8371 OMAP HWMOD SUPPORT
8372 M:      Benoît Cousson <bcousson@baylibre.com>
8373 M:      Paul Walmsley <paul@pwsan.com>
8374 L:      linux-omap@vger.kernel.org
8375 S:      Maintained
8376 F:      arch/arm/mach-omap2/omap_hwmod.*
8377
8378 OMAP HWMOD DATA
8379 M:      Paul Walmsley <paul@pwsan.com>
8380 L:      linux-omap@vger.kernel.org
8381 S:      Maintained
8382 F:      arch/arm/mach-omap2/omap_hwmod*data*
8383
8384 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8385 M:      Benoît Cousson <bcousson@baylibre.com>
8386 L:      linux-omap@vger.kernel.org
8387 S:      Maintained
8388 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8389
8390 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8391 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8392 L:      linux-media@vger.kernel.org
8393 S:      Maintained
8394 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8395 F:      drivers/media/platform/omap3isp/
8396 F:      drivers/staging/media/omap4iss/
8397
8398 OMAP USB SUPPORT
8399 L:      linux-usb@vger.kernel.org
8400 L:      linux-omap@vger.kernel.org
8401 S:      Orphan
8402 F:      drivers/usb/*/*omap*
8403 F:      arch/arm/*omap*/usb*
8404
8405 OMAP GPIO DRIVER
8406 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8407 M:      Santosh Shilimkar <ssantosh@kernel.org>
8408 M:      Kevin Hilman <khilman@kernel.org>
8409 L:      linux-omap@vger.kernel.org
8410 S:      Maintained
8411 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8412 F:      drivers/gpio/gpio-omap.c
8413
8414 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8415 M:      Mark Jackson <mpfj@newflow.co.uk>
8416 L:      linux-omap@vger.kernel.org
8417 S:      Maintained
8418 F:      arch/arm/boot/dts/am335x-nano.dts
8419
8420 OMFS FILESYSTEM
8421 M:      Bob Copeland <me@bobcopeland.com>
8422 L:      linux-karma-devel@lists.sourceforge.net
8423 S:      Maintained
8424 F:      Documentation/filesystems/omfs.txt
8425 F:      fs/omfs/
8426
8427 OMNIKEY CARDMAN 4000 DRIVER
8428 M:      Harald Welte <laforge@gnumonks.org>
8429 S:      Maintained
8430 F:      drivers/char/pcmcia/cm4000_cs.c
8431 F:      include/linux/cm4000_cs.h
8432 F:      include/uapi/linux/cm4000_cs.h
8433
8434 OMNIKEY CARDMAN 4040 DRIVER
8435 M:      Harald Welte <laforge@gnumonks.org>
8436 S:      Maintained
8437 F:      drivers/char/pcmcia/cm4040_cs.*
8438
8439 OMNIVISION OV7670 SENSOR DRIVER
8440 M:      Jonathan Corbet <corbet@lwn.net>
8441 L:      linux-media@vger.kernel.org
8442 T:      git git://linuxtv.org/media_tree.git
8443 S:      Maintained
8444 F:      drivers/media/i2c/ov7670.c
8445
8446 ONENAND FLASH DRIVER
8447 M:      Kyungmin Park <kyungmin.park@samsung.com>
8448 L:      linux-mtd@lists.infradead.org
8449 S:      Maintained
8450 F:      drivers/mtd/onenand/
8451 F:      include/linux/mtd/onenand*.h
8452
8453 ONSTREAM SCSI TAPE DRIVER
8454 M:      Willem Riede <osst@riede.org>
8455 L:      osst-users@lists.sourceforge.net
8456 L:      linux-scsi@vger.kernel.org
8457 S:      Maintained
8458 F:      Documentation/scsi/osst.txt
8459 F:      drivers/scsi/osst.*
8460 F:      drivers/scsi/osst_*.h
8461 F:      drivers/scsi/st.h
8462
8463 OPENCORES I2C BUS DRIVER
8464 M:      Peter Korsgaard <jacmet@sunsite.dk>
8465 L:      linux-i2c@vger.kernel.org
8466 S:      Maintained
8467 F:      Documentation/i2c/busses/i2c-ocores
8468 F:      drivers/i2c/busses/i2c-ocores.c
8469
8470 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8471 M:      Rob Herring <robh+dt@kernel.org>
8472 M:      Frank Rowand <frowand.list@gmail.com>
8473 L:      devicetree@vger.kernel.org
8474 W:      http://www.devicetree.org/
8475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8476 S:      Maintained
8477 F:      drivers/of/
8478 F:      include/linux/of*.h
8479 F:      scripts/dtc/
8480
8481 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8482 M:      Rob Herring <robh+dt@kernel.org>
8483 M:      Mark Rutland <mark.rutland@arm.com>
8484 L:      devicetree@vger.kernel.org
8485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8486 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
8487 S:      Maintained
8488 F:      Documentation/devicetree/
8489 F:      arch/*/boot/dts/
8490 F:      include/dt-bindings/
8491
8492 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8493 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8494 L:      devicetree@vger.kernel.org
8495 S:      Maintained
8496 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8497 F:      Documentation/devicetree/overlay-notes.txt
8498 F:      drivers/of/overlay.c
8499 F:      drivers/of/resolver.c
8500
8501 OPENRISC ARCHITECTURE
8502 M:      Jonas Bonn <jonas@southpole.se>
8503 W:      http://openrisc.net
8504 S:      Maintained
8505 T:      git git://openrisc.net/~jonas/linux
8506 F:      arch/openrisc/
8507
8508 OPENVSWITCH
8509 M:      Pravin Shelar <pshelar@nicira.com>
8510 L:      netdev@vger.kernel.org
8511 L:      dev@openvswitch.org
8512 W:      http://openvswitch.org
8513 S:      Maintained
8514 F:      net/openvswitch/
8515 F:      include/uapi/linux/openvswitch.h
8516
8517 OPERATING PERFORMANCE POINTS (OPP)
8518 M:      Viresh Kumar <vireshk@kernel.org>
8519 M:      Nishanth Menon <nm@ti.com>
8520 M:      Stephen Boyd <sboyd@codeaurora.org>
8521 L:      linux-pm@vger.kernel.org
8522 S:      Maintained
8523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8524 F:      drivers/base/power/opp/
8525 F:      include/linux/pm_opp.h
8526 F:      Documentation/power/opp.txt
8527 F:      Documentation/devicetree/bindings/opp/
8528
8529 OPL4 DRIVER
8530 M:      Clemens Ladisch <clemens@ladisch.de>
8531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8532 T:      git git://git.alsa-project.org/alsa-kernel.git
8533 S:      Maintained
8534 F:      sound/drivers/opl4/
8535
8536 OPROFILE
8537 M:      Robert Richter <rric@kernel.org>
8538 L:      oprofile-list@lists.sf.net
8539 S:      Maintained
8540 F:      arch/*/include/asm/oprofile*.h
8541 F:      arch/*/oprofile/
8542 F:      drivers/oprofile/
8543 F:      include/linux/oprofile.h
8544
8545 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8546 M:      Mark Fasheh <mfasheh@suse.com>
8547 M:      Joel Becker <jlbec@evilplan.org>
8548 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8549 W:      http://ocfs2.wiki.kernel.org
8550 S:      Supported
8551 F:      Documentation/filesystems/ocfs2.txt
8552 F:      Documentation/filesystems/dlmfs.txt
8553 F:      fs/ocfs2/
8554
8555 ORINOCO DRIVER
8556 L:      linux-wireless@vger.kernel.org
8557 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8558 W:      http://www.nongnu.org/orinoco/
8559 S:      Orphan
8560 F:      drivers/net/wireless/intersil/orinoco/
8561
8562 OSD LIBRARY and FILESYSTEM
8563 M:      Boaz Harrosh <ooo@electrozaur.com>
8564 M:      Benny Halevy <bhalevy@primarydata.com>
8565 L:      osd-dev@open-osd.org
8566 W:      http://open-osd.org
8567 T:      git git://git.open-osd.org/open-osd.git
8568 S:      Maintained
8569 F:      drivers/scsi/osd/
8570 F:      include/scsi/osd_*
8571 F:      fs/exofs/
8572
8573 OVERLAY FILESYSTEM
8574 M:      Miklos Szeredi <miklos@szeredi.hu>
8575 L:      linux-unionfs@vger.kernel.org
8576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8577 S:      Supported
8578 F:      fs/overlayfs/
8579 F:      Documentation/filesystems/overlayfs.txt
8580
8581 ORANGEFS FILESYSTEM
8582 M:      Mike Marshall <hubcap@omnibond.com>
8583 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8585 S:      Supported
8586 F:      fs/orangefs/
8587 F:      Documentation/filesystems/orangefs.txt
8588
8589 P54 WIRELESS DRIVER
8590 M:      Christian Lamparter <chunkeey@googlemail.com>
8591 L:      linux-wireless@vger.kernel.org
8592 W:      http://wireless.kernel.org/en/users/Drivers/p54
8593 S:      Maintained
8594 F:      drivers/net/wireless/intersil/p54/
8595
8596 PA SEMI ETHERNET DRIVER
8597 M:      Olof Johansson <olof@lixom.net>
8598 L:      netdev@vger.kernel.org
8599 S:      Maintained
8600 F:      drivers/net/ethernet/pasemi/*
8601
8602 PA SEMI SMBUS DRIVER
8603 M:      Olof Johansson <olof@lixom.net>
8604 L:      linux-i2c@vger.kernel.org
8605 S:      Maintained
8606 F:      drivers/i2c/busses/i2c-pasemi.c
8607
8608 PADATA PARALLEL EXECUTION MECHANISM
8609 M:      Steffen Klassert <steffen.klassert@secunet.com>
8610 L:      linux-crypto@vger.kernel.org
8611 S:      Maintained
8612 F:      kernel/padata.c
8613 F:      include/linux/padata.h
8614 F:      Documentation/padata.txt
8615
8616 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8617 M:      Harald Welte <laforge@gnumonks.org>
8618 L:      platform-driver-x86@vger.kernel.org
8619 S:      Maintained
8620 F:      drivers/platform/x86/panasonic-laptop.c
8621
8622 PANASONIC MN10300/AM33/AM34 PORT
8623 M:      David Howells <dhowells@redhat.com>
8624 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8625 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8626 S:      Maintained
8627 F:      Documentation/mn10300/
8628 F:      arch/mn10300/
8629
8630 PARALLEL LCD/KEYPAD PANEL DRIVER
8631 M:      Willy Tarreau <willy@haproxy.com>
8632 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8633 S:      Odd Fixes
8634 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8635 F:      drivers/misc/panel.c
8636
8637 PARALLEL PORT SUBSYSTEM
8638 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8639 M:      Sudip Mukherjee <sudip@vectorindia.org>
8640 L:      linux-parport@lists.infradead.org (subscribers-only)
8641 S:      Maintained
8642 F:      drivers/parport/
8643 F:      include/linux/parport*.h
8644 F:      drivers/char/ppdev.c
8645 F:      include/uapi/linux/ppdev.h
8646 F:      Documentation/parport*.txt
8647
8648 PARAVIRT_OPS INTERFACE
8649 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8650 M:      Chris Wright <chrisw@sous-sol.org>
8651 M:      Alok Kataria <akataria@vmware.com>
8652 M:      Rusty Russell <rusty@rustcorp.com.au>
8653 L:      virtualization@lists.linux-foundation.org
8654 S:      Supported
8655 F:      Documentation/virtual/paravirt_ops.txt
8656 F:      arch/*/kernel/paravirt*
8657 F:      arch/*/include/asm/paravirt.h
8658
8659 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8660 M:      Tim Waugh <tim@cyberelk.net>
8661 L:      linux-parport@lists.infradead.org (subscribers-only)
8662 S:      Maintained
8663 F:      Documentation/blockdev/paride.txt
8664 F:      drivers/block/paride/
8665
8666 PARISC ARCHITECTURE
8667 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8668 M:      Helge Deller <deller@gmx.de>
8669 L:      linux-parisc@vger.kernel.org
8670 W:      http://www.parisc-linux.org/
8671 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8674 S:      Maintained
8675 F:      arch/parisc/
8676 F:      Documentation/parisc/
8677 F:      drivers/parisc/
8678 F:      drivers/char/agp/parisc-agp.c
8679 F:      drivers/input/serio/gscps2.c
8680 F:      drivers/parport/parport_gsc.*
8681 F:      drivers/tty/serial/8250/8250_gsc.c
8682 F:      drivers/video/fbdev/sti*
8683 F:      drivers/video/console/sti*
8684 F:      drivers/video/logo/logo_parisc*
8685
8686 PC87360 HARDWARE MONITORING DRIVER
8687 M:      Jim Cromie <jim.cromie@gmail.com>
8688 L:      linux-hwmon@vger.kernel.org
8689 S:      Maintained
8690 F:      Documentation/hwmon/pc87360
8691 F:      drivers/hwmon/pc87360.c
8692
8693 PC8736x GPIO DRIVER
8694 M:      Jim Cromie <jim.cromie@gmail.com>
8695 S:      Maintained
8696 F:      drivers/char/pc8736x_gpio.c
8697
8698 PC87427 HARDWARE MONITORING DRIVER
8699 M:      Jean Delvare <jdelvare@suse.com>
8700 L:      linux-hwmon@vger.kernel.org
8701 S:      Maintained
8702 F:      Documentation/hwmon/pc87427
8703 F:      drivers/hwmon/pc87427.c
8704
8705 PCA9532 LED DRIVER
8706 M:      Riku Voipio <riku.voipio@iki.fi>
8707 S:      Maintained
8708 F:      drivers/leds/leds-pca9532.c
8709 F:      include/linux/leds-pca9532.h
8710
8711 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8712 M:      Guenter Roeck <linux@roeck-us.net>
8713 L:      linux-i2c@vger.kernel.org
8714 S:      Maintained
8715 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8716
8717 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8718 M:      Khalid Aziz <khalid@gonehiking.org>
8719 S:      Maintained
8720 F:      drivers/firmware/pcdp.*
8721
8722 PCI ERROR RECOVERY
8723 M:      Linas Vepstas <linasvepstas@gmail.com>
8724 L:      linux-pci@vger.kernel.org
8725 S:      Supported
8726 F:      Documentation/PCI/pci-error-recovery.txt
8727
8728 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8729 M:      Russell Currey <ruscur@russell.cc>
8730 L:      linuxppc-dev@lists.ozlabs.org
8731 S:      Supported
8732 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8733 F:      arch/powerpc/kernel/eeh*.c
8734 F:      arch/powerpc/platforms/*/eeh*.c
8735 F:      arch/powerpc/include/*/eeh*.h
8736
8737 PCI SUBSYSTEM
8738 M:      Bjorn Helgaas <bhelgaas@google.com>
8739 L:      linux-pci@vger.kernel.org
8740 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8742 S:      Supported
8743 F:      Documentation/PCI/
8744 F:      drivers/pci/
8745 F:      include/linux/pci*
8746 F:      arch/x86/pci/
8747 F:      arch/x86/kernel/quirks.c
8748
8749 PCI DRIVER FOR ALTERA PCIE IP
8750 M:      Ley Foon Tan <lftan@altera.com>
8751 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8752 L:      linux-pci@vger.kernel.org
8753 S:      Supported
8754 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8755 F:      drivers/pci/host/pcie-altera.c
8756
8757 PCI DRIVER FOR ARM VERSATILE PLATFORM
8758 M:      Rob Herring <robh@kernel.org>
8759 L:      linux-pci@vger.kernel.org
8760 L:      linux-arm-kernel@lists.infradead.org
8761 S:      Maintained
8762 F:      Documentation/devicetree/bindings/pci/versatile.txt
8763 F:      drivers/pci/host/pci-versatile.c
8764
8765 PCI DRIVER FOR APPLIEDMICRO XGENE
8766 M:      Tanmay Inamdar <tinamdar@apm.com>
8767 L:      linux-pci@vger.kernel.org
8768 L:      linux-arm-kernel@lists.infradead.org
8769 S:      Maintained
8770 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8771 F:      drivers/pci/host/pci-xgene.c
8772
8773 PCI DRIVER FOR FREESCALE LAYERSCAPE
8774 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8775 M:      Mingkai Hu <mingkai.hu@freescale.com>
8776 M:      Roy Zang <tie-fei.zang@freescale.com>
8777 L:      linuxppc-dev@lists.ozlabs.org
8778 L:      linux-pci@vger.kernel.org
8779 L:      linux-arm-kernel@lists.infradead.org
8780 S:      Maintained
8781 F:      drivers/pci/host/*layerscape*
8782
8783 PCI DRIVER FOR IMX6
8784 M:      Richard Zhu <Richard.Zhu@freescale.com>
8785 M:      Lucas Stach <l.stach@pengutronix.de>
8786 L:      linux-pci@vger.kernel.org
8787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8788 S:      Maintained
8789 F:      drivers/pci/host/*imx6*
8790
8791 PCI DRIVER FOR TI KEYSTONE
8792 M:      Murali Karicheri <m-karicheri2@ti.com>
8793 L:      linux-pci@vger.kernel.org
8794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8795 S:      Maintained
8796 F:      drivers/pci/host/*keystone*
8797
8798 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8799 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8800 M:      Jason Cooper <jason@lakedaemon.net>
8801 L:      linux-pci@vger.kernel.org
8802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8803 S:      Maintained
8804 F:      drivers/pci/host/*mvebu*
8805
8806 PCI DRIVER FOR NVIDIA TEGRA
8807 M:      Thierry Reding <thierry.reding@gmail.com>
8808 L:      linux-tegra@vger.kernel.org
8809 L:      linux-pci@vger.kernel.org
8810 S:      Supported
8811 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8812 F:      drivers/pci/host/pci-tegra.c
8813
8814 PCI DRIVER FOR TI DRA7XX
8815 M:      Kishon Vijay Abraham I <kishon@ti.com>
8816 L:      linux-omap@vger.kernel.org
8817 L:      linux-pci@vger.kernel.org
8818 S:      Supported
8819 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8820 F:      drivers/pci/host/pci-dra7xx.c
8821
8822 PCI DRIVER FOR RENESAS R-CAR
8823 M:      Simon Horman <horms@verge.net.au>
8824 L:      linux-pci@vger.kernel.org
8825 L:      linux-renesas-soc@vger.kernel.org
8826 S:      Maintained
8827 F:      drivers/pci/host/*rcar*
8828
8829 PCI DRIVER FOR SAMSUNG EXYNOS
8830 M:      Jingoo Han <jingoohan1@gmail.com>
8831 L:      linux-pci@vger.kernel.org
8832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8833 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8834 S:      Maintained
8835 F:      drivers/pci/host/pci-exynos.c
8836
8837 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8838 M:      Jingoo Han <jingoohan1@gmail.com>
8839 M:      Pratyush Anand <pratyush.anand@gmail.com>
8840 L:      linux-pci@vger.kernel.org
8841 S:      Maintained
8842 F:      drivers/pci/host/*designware*
8843
8844 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8845 M:      Joao Pinto <jpinto@synopsys.com>
8846 L:      linux-pci@vger.kernel.org
8847 S:      Maintained
8848 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8849 F:      drivers/pci/host/pcie-designware-plat.c
8850
8851 PCI DRIVER FOR GENERIC OF HOSTS
8852 M:      Will Deacon <will.deacon@arm.com>
8853 L:      linux-pci@vger.kernel.org
8854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8855 S:      Maintained
8856 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8857 F:      drivers/pci/host/pci-host-common.c
8858 F:      drivers/pci/host/pci-host-generic.c
8859
8860 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8861 M:      Keith Busch <keith.busch@intel.com>
8862 L:      linux-pci@vger.kernel.org
8863 S:      Supported
8864 F:      arch/x86/pci/vmd.c
8865
8866 PCIE DRIVER FOR ST SPEAR13XX
8867 M:      Pratyush Anand <pratyush.anand@gmail.com>
8868 L:      linux-pci@vger.kernel.org
8869 S:      Maintained
8870 F:      drivers/pci/host/*spear*
8871
8872 PCI MSI DRIVER FOR ALTERA MSI IP
8873 M:      Ley Foon Tan <lftan@altera.com>
8874 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8875 L:      linux-pci@vger.kernel.org
8876 S:      Supported
8877 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8878 F:      drivers/pci/host/pcie-altera-msi.c
8879
8880 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8881 M:      Duc Dang <dhdang@apm.com>
8882 L:      linux-pci@vger.kernel.org
8883 L:      linux-arm-kernel@lists.infradead.org
8884 S:      Maintained
8885 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8886 F:      drivers/pci/host/pci-xgene-msi.c
8887
8888 PCIE DRIVER FOR HISILICON
8889 M:      Zhou Wang <wangzhou1@hisilicon.com>
8890 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8891 L:      linux-pci@vger.kernel.org
8892 S:      Maintained
8893 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8894 F:      drivers/pci/host/pcie-hisi.c
8895
8896 PCIE DRIVER FOR QUALCOMM MSM
8897 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8898 L:     linux-pci@vger.kernel.org
8899 L:     linux-arm-msm@vger.kernel.org
8900 S:     Maintained
8901 F:     drivers/pci/host/*qcom*
8902
8903 PCIE DRIVER FOR CAVIUM THUNDERX
8904 M:      David Daney <david.daney@cavium.com>
8905 L:      linux-pci@vger.kernel.org
8906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8907 S:      Supported
8908 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8909 F:      drivers/pci/host/pci-thunder-*
8910
8911 PCMCIA SUBSYSTEM
8912 P:      Linux PCMCIA Team
8913 L:      linux-pcmcia@lists.infradead.org
8914 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8916 S:      Maintained
8917 F:      Documentation/pcmcia/
8918 F:      drivers/pcmcia/
8919 F:      include/pcmcia/
8920
8921 PCNET32 NETWORK DRIVER
8922 M:      Don Fry <pcnet32@frontier.com>
8923 L:      netdev@vger.kernel.org
8924 S:      Maintained
8925 F:      drivers/net/ethernet/amd/pcnet32.c
8926
8927 PCRYPT PARALLEL CRYPTO ENGINE
8928 M:      Steffen Klassert <steffen.klassert@secunet.com>
8929 L:      linux-crypto@vger.kernel.org
8930 S:      Maintained
8931 F:      crypto/pcrypt.c
8932 F:      include/crypto/pcrypt.h
8933
8934 PER-CPU MEMORY ALLOCATOR
8935 M:      Tejun Heo <tj@kernel.org>
8936 M:      Christoph Lameter <cl@linux.com>
8937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8938 S:      Maintained
8939 F:      include/linux/percpu*.h
8940 F:      mm/percpu*.c
8941 F:      arch/*/include/asm/percpu.h
8942
8943 PER-TASK DELAY ACCOUNTING
8944 M:      Balbir Singh <bsingharora@gmail.com>
8945 S:      Maintained
8946 F:      include/linux/delayacct.h
8947 F:      kernel/delayacct.c
8948
8949 PERFORMANCE EVENTS SUBSYSTEM
8950 M:      Peter Zijlstra <peterz@infradead.org>
8951 M:      Ingo Molnar <mingo@redhat.com>
8952 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8953 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8954 L:      linux-kernel@vger.kernel.org
8955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8956 S:      Supported
8957 F:      kernel/events/*
8958 F:      include/linux/perf_event.h
8959 F:      include/uapi/linux/perf_event.h
8960 F:      arch/*/kernel/perf_event*.c
8961 F:      arch/*/kernel/*/perf_event*.c
8962 F:      arch/*/kernel/*/*/perf_event*.c
8963 F:      arch/*/include/asm/perf_event.h
8964 F:      arch/*/kernel/perf_callchain.c
8965 F:      arch/*/events/*
8966 F:      tools/perf/
8967
8968 PERSONALITY HANDLING
8969 M:      Christoph Hellwig <hch@infradead.org>
8970 L:      linux-abi-devel@lists.sourceforge.net
8971 S:      Maintained
8972 F:      include/linux/personality.h
8973 F:      include/uapi/linux/personality.h
8974
8975 PHONET PROTOCOL
8976 M:      Remi Denis-Courmont <courmisch@gmail.com>
8977 S:      Supported
8978 F:      Documentation/networking/phonet.txt
8979 F:      include/linux/phonet.h
8980 F:      include/net/phonet/
8981 F:      include/uapi/linux/phonet.h
8982 F:      net/phonet/
8983
8984 PHRAM MTD DRIVER
8985 M:      Joern Engel <joern@lazybastard.org>
8986 L:      linux-mtd@lists.infradead.org
8987 S:      Maintained
8988 F:      drivers/mtd/devices/phram.c
8989
8990 PICOLCD HID DRIVER
8991 M:      Bruno Prémont <bonbons@linux-vserver.org>
8992 L:      linux-input@vger.kernel.org
8993 S:      Maintained
8994 F:      drivers/hid/hid-picolcd*
8995
8996 PICOXCELL SUPPORT
8997 M:      Jamie Iles <jamie@jamieiles.com>
8998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8999 T:      git git://github.com/jamieiles/linux-2.6-ji.git
9000 S:      Supported
9001 F:      arch/arm/boot/dts/picoxcell*
9002 F:      arch/arm/mach-picoxcell/
9003 F:      drivers/crypto/picoxcell*
9004
9005 PIN CONTROL SUBSYSTEM
9006 M:      Linus Walleij <linus.walleij@linaro.org>
9007 L:      linux-gpio@vger.kernel.org
9008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
9009 S:      Maintained
9010 F:      Documentation/devicetree/bindings/pinctrl/
9011 F:      Documentation/pinctrl.txt
9012 F:      drivers/pinctrl/
9013 F:      include/linux/pinctrl/
9014
9015 PIN CONTROLLER - ATMEL AT91
9016 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
9017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9018 S:      Maintained
9019 F:      drivers/pinctrl/pinctrl-at91.*
9020
9021 PIN CONTROLLER - ATMEL AT91 PIO4
9022 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
9023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9024 L:      linux-gpio@vger.kernel.org
9025 S:      Supported
9026 F:      drivers/pinctrl/pinctrl-at91-pio4.*
9027
9028 PIN CONTROLLER - INTEL
9029 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9030 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
9031 S:      Maintained
9032 F:      drivers/pinctrl/intel/
9033
9034 PIN CONTROLLER - RENESAS
9035 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9036 M:      Geert Uytterhoeven <geert+renesas@glider.be>
9037 L:      linux-renesas-soc@vger.kernel.org
9038 S:      Maintained
9039 F:      drivers/pinctrl/sh-pfc/
9040
9041 PIN CONTROLLER - SAMSUNG
9042 M:      Tomasz Figa <tomasz.figa@gmail.com>
9043 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9044 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9046 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9047 S:      Maintained
9048 F:      drivers/pinctrl/samsung/
9049
9050 PIN CONTROLLER - SINGLE
9051 M:      Tony Lindgren <tony@atomide.com>
9052 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
9053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9054 L:      linux-omap@vger.kernel.org
9055 S:      Maintained
9056 F:      drivers/pinctrl/pinctrl-single.c
9057
9058 PIN CONTROLLER - ST SPEAR
9059 M:      Viresh Kumar <vireshk@kernel.org>
9060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9061 W:      http://www.st.com/spear
9062 S:      Maintained
9063 F:      drivers/pinctrl/spear/
9064
9065 PKTCDVD DRIVER
9066 M:      Jiri Kosina <jikos@kernel.org>
9067 S:      Maintained
9068 F:      drivers/block/pktcdvd.c
9069 F:      include/linux/pktcdvd.h
9070 F:      include/uapi/linux/pktcdvd.h
9071
9072 PKUNITY SOC DRIVERS
9073 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9074 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9075 S:      Maintained
9076 T:      git git://github.com/gxt/linux.git
9077 F:      drivers/input/serio/i8042-unicore32io.h
9078 F:      drivers/i2c/busses/i2c-puv3.c
9079 F:      drivers/video/fbdev/fb-puv3.c
9080 F:      drivers/rtc/rtc-puv3.c
9081
9082 PMBUS HARDWARE MONITORING DRIVERS
9083 M:      Guenter Roeck <linux@roeck-us.net>
9084 L:      linux-hwmon@vger.kernel.org
9085 W:      http://hwmon.wiki.kernel.org/
9086 W:      http://www.roeck-us.net/linux/drivers/
9087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9088 S:      Maintained
9089 F:      Documentation/hwmon/pmbus
9090 F:      drivers/hwmon/pmbus/
9091 F:      include/linux/i2c/pmbus.h
9092
9093 PMC SIERRA MaxRAID DRIVER
9094 L:      linux-scsi@vger.kernel.org
9095 W:      http://www.pmc-sierra.com/
9096 S:      Orphan
9097 F:      drivers/scsi/pmcraid.*
9098
9099 PMC SIERRA PM8001 DRIVER
9100 M:      Jack Wang <jinpu.wang@profitbricks.com>
9101 M:      lindar_liu@usish.com
9102 L:      pmchba@pmcs.com
9103 L:      linux-scsi@vger.kernel.org
9104 S:      Supported
9105 F:      drivers/scsi/pm8001/
9106
9107 POSIX CLOCKS and TIMERS
9108 M:      Thomas Gleixner <tglx@linutronix.de>
9109 L:      linux-kernel@vger.kernel.org
9110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9111 S:      Maintained
9112 F:      fs/timerfd.c
9113 F:      include/linux/timer*
9114 F:      kernel/time/*timer*
9115
9116 POWER MANAGEMENT CORE
9117 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9118 L:      linux-pm@vger.kernel.org
9119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
9120 S:      Supported
9121 F:      drivers/base/power/
9122 F:      include/linux/pm.h
9123 F:      include/linux/pm_*
9124 F:      include/linux/powercap.h
9125 F:      drivers/powercap/
9126
9127 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
9128 M:      Sebastian Reichel <sre@kernel.org>
9129 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
9130 M:      David Woodhouse <dwmw2@infradead.org>
9131 L:      linux-pm@vger.kernel.org
9132 T:      git git://git.infradead.org/battery-2.6.git
9133 S:      Maintained
9134 F:      include/linux/power_supply.h
9135 F:      drivers/power/
9136 X:      drivers/power/avs/
9137
9138 POWER STATE COORDINATION INTERFACE (PSCI)
9139 M:      Mark Rutland <mark.rutland@arm.com>
9140 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
9141 L:      linux-arm-kernel@lists.infradead.org
9142 S:      Maintained
9143 F:      drivers/firmware/psci.c
9144 F:      include/linux/psci.h
9145 F:      include/uapi/linux/psci.h
9146
9147 PNP SUPPORT
9148 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
9149 S:      Maintained
9150 F:      drivers/pnp/
9151
9152 PPP PROTOCOL DRIVERS AND COMPRESSORS
9153 M:      Paul Mackerras <paulus@samba.org>
9154 L:      linux-ppp@vger.kernel.org
9155 S:      Maintained
9156 F:      drivers/net/ppp/ppp_*
9157
9158 PPP OVER ATM (RFC 2364)
9159 M:      Mitchell Blank Jr <mitch@sfgoth.com>
9160 S:      Maintained
9161 F:      net/atm/pppoatm.c
9162 F:      include/uapi/linux/atmppp.h
9163
9164 PPP OVER ETHERNET
9165 M:      Michal Ostrowski <mostrows@earthlink.net>
9166 S:      Maintained
9167 F:      drivers/net/ppp/pppoe.c
9168 F:      drivers/net/ppp/pppox.c
9169
9170 PPP OVER L2TP
9171 M:      James Chapman <jchapman@katalix.com>
9172 S:      Maintained
9173 F:      net/l2tp/l2tp_ppp.c
9174 F:      include/linux/if_pppol2tp.h
9175 F:      include/uapi/linux/if_pppol2tp.h
9176
9177 PPS SUPPORT
9178 M:      Rodolfo Giometti <giometti@enneenne.com>
9179 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
9180 L:      linuxpps@ml.enneenne.com (subscribers-only)
9181 S:      Maintained
9182 F:      Documentation/pps/
9183 F:      drivers/pps/
9184 F:      include/linux/pps*.h
9185
9186 PPTP DRIVER
9187 M:      Dmitry Kozlov <xeb@mail.ru>
9188 L:      netdev@vger.kernel.org
9189 S:      Maintained
9190 F:      drivers/net/ppp/pptp.c
9191 W:      http://sourceforge.net/projects/accel-pptp
9192
9193 PREEMPTIBLE KERNEL
9194 M:      Robert Love <rml@tech9.net>
9195 L:      kpreempt-tech@lists.sourceforge.net
9196 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
9197 S:      Supported
9198 F:      Documentation/preempt-locking.txt
9199 F:      include/linux/preempt.h
9200
9201 PRISM54 WIRELESS DRIVER
9202 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
9203 L:      linux-wireless@vger.kernel.org
9204 W:      http://wireless.kernel.org/en/users/Drivers/p54
9205 S:      Obsolete
9206 F:      drivers/net/wireless/intersil/prism54/
9207
9208 PS3 NETWORK SUPPORT
9209 M:      Geoff Levand <geoff@infradead.org>
9210 L:      netdev@vger.kernel.org
9211 L:      linuxppc-dev@lists.ozlabs.org
9212 S:      Maintained
9213 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
9214
9215 PS3 PLATFORM SUPPORT
9216 M:      Geoff Levand <geoff@infradead.org>
9217 L:      linuxppc-dev@lists.ozlabs.org
9218 S:      Maintained
9219 F:      arch/powerpc/boot/ps3*
9220 F:      arch/powerpc/include/asm/lv1call.h
9221 F:      arch/powerpc/include/asm/ps3*.h
9222 F:      arch/powerpc/platforms/ps3/
9223 F:      drivers/*/ps3*
9224 F:      drivers/ps3/
9225 F:      drivers/rtc/rtc-ps3.c
9226 F:      drivers/usb/host/*ps3.c
9227 F:      sound/ppc/snd_ps3*
9228
9229 PS3VRAM DRIVER
9230 M:      Jim Paris <jim@jtan.com>
9231 M:      Geoff Levand <geoff@infradead.org>
9232 L:      linuxppc-dev@lists.ozlabs.org
9233 S:      Maintained
9234 F:      drivers/block/ps3vram.c
9235
9236 PSTORE FILESYSTEM
9237 M:      Anton Vorontsov <anton@enomsg.org>
9238 M:      Colin Cross <ccross@android.com>
9239 M:      Kees Cook <keescook@chromium.org>
9240 M:      Tony Luck <tony.luck@intel.com>
9241 S:      Maintained
9242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9243 F:      fs/pstore/
9244 F:      include/linux/pstore*
9245 F:      drivers/firmware/efi/efi-pstore.c
9246 F:      drivers/acpi/apei/erst.c
9247
9248 PTP HARDWARE CLOCK SUPPORT
9249 M:      Richard Cochran <richardcochran@gmail.com>
9250 L:      netdev@vger.kernel.org
9251 S:      Maintained
9252 W:      http://linuxptp.sourceforge.net/
9253 F:      Documentation/ABI/testing/sysfs-ptp
9254 F:      Documentation/ptp/*
9255 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9256 F:      drivers/net/phy/dp83640*
9257 F:      drivers/ptp/*
9258 F:      include/linux/ptp_cl*
9259
9260 PTRACE SUPPORT
9261 M:      Roland McGrath <roland@hack.frob.com>
9262 M:      Oleg Nesterov <oleg@redhat.com>
9263 S:      Maintained
9264 F:      include/asm-generic/syscall.h
9265 F:      include/linux/ptrace.h
9266 F:      include/linux/regset.h
9267 F:      include/linux/tracehook.h
9268 F:      include/uapi/linux/ptrace.h
9269 F:      kernel/ptrace.c
9270
9271 PULSE8-CEC DRIVER
9272 M:      Hans Verkuil <hverkuil@xs4all.nl>
9273 L:      linux-media@vger.kernel.org
9274 T:      git git://linuxtv.org/media_tree.git
9275 S:      Maintained
9276 F:      drivers/staging/media/pulse8-cec
9277
9278 PVRUSB2 VIDEO4LINUX DRIVER
9279 M:      Mike Isely <isely@pobox.com>
9280 L:      pvrusb2@isely.net       (subscribers-only)
9281 L:      linux-media@vger.kernel.org
9282 W:      http://www.isely.net/pvrusb2/
9283 T:      git git://linuxtv.org/media_tree.git
9284 S:      Maintained
9285 F:      Documentation/video4linux/README.pvrusb2
9286 F:      drivers/media/usb/pvrusb2/
9287
9288 PWC WEBCAM DRIVER
9289 M:      Hans Verkuil <hverkuil@xs4all.nl>
9290 L:      linux-media@vger.kernel.org
9291 T:      git git://linuxtv.org/media_tree.git
9292 S:      Odd Fixes
9293 F:      drivers/media/usb/pwc/*
9294
9295 PWM FAN DRIVER
9296 M:      Kamil Debski <k.debski@samsung.com>
9297 L:      linux-hwmon@vger.kernel.org
9298 S:      Supported
9299 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9300 F:      Documentation/hwmon/pwm-fan
9301 F:      drivers/hwmon/pwm-fan.c
9302
9303 PWM SUBSYSTEM
9304 M:      Thierry Reding <thierry.reding@gmail.com>
9305 L:      linux-pwm@vger.kernel.org
9306 S:      Maintained
9307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9308 F:      Documentation/pwm.txt
9309 F:      Documentation/devicetree/bindings/pwm/
9310 F:      include/linux/pwm.h
9311 F:      drivers/pwm/
9312 F:      drivers/video/backlight/pwm_bl.c
9313 F:      include/linux/pwm_backlight.h
9314
9315 PXA2xx/PXA3xx SUPPORT
9316 M:      Daniel Mack <daniel@zonque.org>
9317 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9318 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9320 T:      git git://github.com/hzhuang1/linux.git
9321 T:      git git://github.com/rjarzmik/linux.git
9322 S:      Maintained
9323 F:      arch/arm/boot/dts/pxa*
9324 F:      arch/arm/mach-pxa/
9325 F:      drivers/dma/pxa*
9326 F:      drivers/pcmcia/pxa2xx*
9327 F:      drivers/pinctrl/pxa/
9328 F:      drivers/spi/spi-pxa2xx*
9329 F:      drivers/usb/gadget/udc/pxa2*
9330 F:      include/sound/pxa2xx-lib.h
9331 F:      sound/arm/pxa*
9332 F:      sound/soc/pxa/
9333
9334 PXA GPIO DRIVER
9335 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9336 L:      linux-gpio@vger.kernel.org
9337 S:      Maintained
9338 F:      drivers/gpio/gpio-pxa.c
9339
9340 PXA3xx NAND FLASH DRIVER
9341 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9342 L:      linux-mtd@lists.infradead.org
9343 S:      Maintained
9344 F:      drivers/mtd/nand/pxa3xx_nand.c
9345
9346 MMP SUPPORT
9347 M:      Eric Miao <eric.y.miao@gmail.com>
9348 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9350 T:      git git://github.com/hzhuang1/linux.git
9351 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9352 S:      Maintained
9353 F:      arch/arm/boot/dts/mmp*
9354 F:      arch/arm/mach-mmp/
9355
9356 PXA MMCI DRIVER
9357 S:      Orphan
9358
9359 PXA RTC DRIVER
9360 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9361 L:      rtc-linux@googlegroups.com
9362 S:      Maintained
9363
9364 QAT DRIVER
9365 M:      Tadeusz Struk <tadeusz.struk@intel.com>
9366 L:      qat-linux@intel.com
9367 S:      Supported
9368 F:      drivers/crypto/qat/
9369
9370 QIB DRIVER
9371 M:      Mike Marciniszyn <infinipath@intel.com>
9372 L:      linux-rdma@vger.kernel.org
9373 S:      Supported
9374 F:      drivers/infiniband/hw/qib/
9375
9376 QLOGIC QLA1280 SCSI DRIVER
9377 M:      Michael Reed <mdr@sgi.com>
9378 L:      linux-scsi@vger.kernel.org
9379 S:      Maintained
9380 F:      drivers/scsi/qla1280.[ch]
9381
9382 QLOGIC QLA2XXX FC-SCSI DRIVER
9383 M:      qla2xxx-upstream@qlogic.com
9384 L:      linux-scsi@vger.kernel.org
9385 S:      Supported
9386 F:      Documentation/scsi/LICENSE.qla2xxx
9387 F:      drivers/scsi/qla2xxx/
9388
9389 QLOGIC QLA4XXX iSCSI DRIVER
9390 M:      QLogic-Storage-Upstream@qlogic.com
9391 L:      linux-scsi@vger.kernel.org
9392 S:      Supported
9393 F:      Documentation/scsi/LICENSE.qla4xxx
9394 F:      drivers/scsi/qla4xxx/
9395
9396 QLOGIC QLA3XXX NETWORK DRIVER
9397 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9398 M:      Ron Mercer <ron.mercer@qlogic.com>
9399 M:      linux-driver@qlogic.com
9400 L:      netdev@vger.kernel.org
9401 S:      Supported
9402 F:      Documentation/networking/LICENSE.qla3xxx
9403 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9404
9405 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9406 M:      Dept-GELinuxNICDev@qlogic.com
9407 L:      netdev@vger.kernel.org
9408 S:      Supported
9409 F:      drivers/net/ethernet/qlogic/qlcnic/
9410
9411 QLOGIC QLGE 10Gb ETHERNET DRIVER
9412 M:      Harish Patil <harish.patil@qlogic.com>
9413 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9414 M:      Dept-GELinuxNICDev@qlogic.com
9415 M:      linux-driver@qlogic.com
9416 L:      netdev@vger.kernel.org
9417 S:      Supported
9418 F:      drivers/net/ethernet/qlogic/qlge/
9419
9420 QLOGIC QL4xxx ETHERNET DRIVER
9421 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9422 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9423 M:      everest-linux-l2@qlogic.com
9424 L:      netdev@vger.kernel.org
9425 S:      Supported
9426 F:      drivers/net/ethernet/qlogic/qed/
9427 F:      include/linux/qed/
9428 F:      drivers/net/ethernet/qlogic/qede/
9429
9430 QNX4 FILESYSTEM
9431 M:      Anders Larsen <al@alarsen.net>
9432 W:      http://www.alarsen.net/linux/qnx4fs/
9433 S:      Maintained
9434 F:      fs/qnx4/
9435 F:      include/uapi/linux/qnx4_fs.h
9436 F:      include/uapi/linux/qnxtypes.h
9437
9438 QT1010 MEDIA DRIVER
9439 M:      Antti Palosaari <crope@iki.fi>
9440 L:      linux-media@vger.kernel.org
9441 W:      https://linuxtv.org
9442 W:      http://palosaari.fi/linux/
9443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9444 T:      git git://linuxtv.org/anttip/media_tree.git
9445 S:      Maintained
9446 F:      drivers/media/tuners/qt1010*
9447
9448 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9449 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9450 L:      linux-wireless@vger.kernel.org
9451 L:      ath9k-devel@lists.ath9k.org
9452 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9453 S:      Supported
9454 F:      drivers/net/wireless/ath/ath9k/
9455
9456 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9457 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9458 L:      ath10k@lists.infradead.org
9459 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9461 S:      Supported
9462 F:      drivers/net/wireless/ath/ath10k/
9463
9464 QUALCOMM HEXAGON ARCHITECTURE
9465 M:      Richard Kuo <rkuo@codeaurora.org>
9466 L:      linux-hexagon@vger.kernel.org
9467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9468 S:      Supported
9469 F:      arch/hexagon/
9470
9471 QUALCOMM WCN36XX WIRELESS DRIVER
9472 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9473 L:      wcn36xx@lists.infradead.org
9474 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9475 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9476 S:      Supported
9477 F:      drivers/net/wireless/ath/wcn36xx/
9478
9479 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9480 M:      Gabriel Somlo <somlo@cmu.edu>
9481 M:      "Michael S. Tsirkin" <mst@redhat.com>
9482 L:      qemu-devel@nongnu.org
9483 S:      Maintained
9484 F:      drivers/firmware/qemu_fw_cfg.c
9485
9486 RADOS BLOCK DEVICE (RBD)
9487 M:      Ilya Dryomov <idryomov@gmail.com>
9488 M:      Sage Weil <sage@redhat.com>
9489 M:      Alex Elder <elder@kernel.org>
9490 L:      ceph-devel@vger.kernel.org
9491 W:      http://ceph.com/
9492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9493 T:      git git://github.com/ceph/ceph-client.git
9494 S:      Supported
9495 F:      Documentation/ABI/testing/sysfs-bus-rbd
9496 F:      drivers/block/rbd.c
9497 F:      drivers/block/rbd_types.h
9498
9499 RADEON FRAMEBUFFER DISPLAY DRIVER
9500 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9501 L:      linux-fbdev@vger.kernel.org
9502 S:      Maintained
9503 F:      drivers/video/fbdev/aty/radeon*
9504 F:      include/uapi/linux/radeonfb.h
9505
9506 RADIOSHARK RADIO DRIVER
9507 M:      Hans Verkuil <hverkuil@xs4all.nl>
9508 L:      linux-media@vger.kernel.org
9509 T:      git git://linuxtv.org/media_tree.git
9510 S:      Maintained
9511 F:      drivers/media/radio/radio-shark.c
9512
9513 RADIOSHARK2 RADIO DRIVER
9514 M:      Hans Verkuil <hverkuil@xs4all.nl>
9515 L:      linux-media@vger.kernel.org
9516 T:      git git://linuxtv.org/media_tree.git
9517 S:      Maintained
9518 F:      drivers/media/radio/radio-shark2.c
9519 F:      drivers/media/radio/radio-tea5777.c
9520
9521 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9522 M:      Paul Mackerras <paulus@samba.org>
9523 L:      linux-fbdev@vger.kernel.org
9524 S:      Maintained
9525 F:      drivers/video/fbdev/aty/aty128fb.c
9526
9527 RALINK MIPS ARCHITECTURE
9528 M:      John Crispin <john@phrozen.org>
9529 L:      linux-mips@linux-mips.org
9530 S:      Maintained
9531 F:      arch/mips/ralink
9532
9533 RALINK RT2X00 WIRELESS LAN DRIVER
9534 P:      rt2x00 project
9535 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9536 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9537 L:      linux-wireless@vger.kernel.org
9538 S:      Maintained
9539 F:      drivers/net/wireless/ralink/rt2x00/
9540
9541 RAMDISK RAM BLOCK DEVICE DRIVER
9542 M:      Jens Axboe <axboe@kernel.dk>
9543 S:      Maintained
9544 F:      Documentation/blockdev/ramdisk.txt
9545 F:      drivers/block/brd.c
9546
9547 RANDOM NUMBER DRIVER
9548 M:      "Theodore Ts'o" <tytso@mit.edu>
9549 S:      Maintained
9550 F:      drivers/char/random.c
9551
9552 RAPIDIO SUBSYSTEM
9553 M:      Matt Porter <mporter@kernel.crashing.org>
9554 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9555 S:      Maintained
9556 F:      drivers/rapidio/
9557
9558 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9559 L:      linux-wireless@vger.kernel.org
9560 S:      Orphan
9561 F:      drivers/net/wireless/ray*
9562
9563 RCUTORTURE MODULE
9564 M:      Josh Triplett <josh@joshtriplett.org>
9565 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9566 L:      linux-kernel@vger.kernel.org
9567 S:      Supported
9568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9569 F:      Documentation/RCU/torture.txt
9570 F:      kernel/rcu/rcutorture.c
9571
9572 RCUTORTURE TEST FRAMEWORK
9573 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9574 M:      Josh Triplett <josh@joshtriplett.org>
9575 R:      Steven Rostedt <rostedt@goodmis.org>
9576 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9577 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9578 L:      linux-kernel@vger.kernel.org
9579 S:      Supported
9580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9581 F:      tools/testing/selftests/rcutorture
9582
9583 RDC R-321X SoC
9584 M:      Florian Fainelli <florian@openwrt.org>
9585 S:      Maintained
9586
9587 RDC R6040 FAST ETHERNET DRIVER
9588 M:      Florian Fainelli <florian@openwrt.org>
9589 L:      netdev@vger.kernel.org
9590 S:      Maintained
9591 F:      drivers/net/ethernet/rdc/r6040.c
9592
9593 RDS - RELIABLE DATAGRAM SOCKETS
9594 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9595 L:      netdev@vger.kernel.org
9596 L:      linux-rdma@vger.kernel.org
9597 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9598 W:      https://oss.oracle.com/projects/rds/
9599 S:      Supported
9600 F:      net/rds/
9601 F:      Documentation/networking/rds.txt
9602
9603 RDMAVT - RDMA verbs software
9604 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9605 L:      linux-rdma@vger.kernel.org
9606 S:      Supported
9607 F:      drivers/infiniband/sw/rdmavt
9608
9609 READ-COPY UPDATE (RCU)
9610 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9611 M:      Josh Triplett <josh@joshtriplett.org>
9612 R:      Steven Rostedt <rostedt@goodmis.org>
9613 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9614 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9615 L:      linux-kernel@vger.kernel.org
9616 W:      http://www.rdrop.com/users/paulmck/RCU/
9617 S:      Supported
9618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9619 F:      Documentation/RCU/
9620 X:      Documentation/RCU/torture.txt
9621 F:      include/linux/rcu*
9622 X:      include/linux/srcu.h
9623 F:      kernel/rcu/
9624 X:      kernel/torture.c
9625
9626 REAL TIME CLOCK (RTC) SUBSYSTEM
9627 M:      Alessandro Zummo <a.zummo@towertech.it>
9628 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9629 L:      rtc-linux@googlegroups.com
9630 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9632 S:      Maintained
9633 F:      Documentation/rtc.txt
9634 F:      drivers/rtc/
9635 F:      include/linux/rtc.h
9636 F:      include/uapi/linux/rtc.h
9637
9638 REALTEK AUDIO CODECS
9639 M:      Bard Liao <bardliao@realtek.com>
9640 M:      Oder Chiou <oder_chiou@realtek.com>
9641 S:      Maintained
9642 F:      sound/soc/codecs/rt*
9643 F:      include/sound/rt*.h
9644
9645 REISERFS FILE SYSTEM
9646 L:      reiserfs-devel@vger.kernel.org
9647 S:      Supported
9648 F:      fs/reiserfs/
9649
9650 REGISTER MAP ABSTRACTION
9651 M:      Mark Brown <broonie@kernel.org>
9652 L:      linux-kernel@vger.kernel.org
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9654 S:      Supported
9655 F:      drivers/base/regmap/
9656 F:      include/linux/regmap.h
9657
9658 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9659 M:      Ohad Ben-Cohen <ohad@wizery.com>
9660 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9661 L:      linux-remoteproc@vger.kernel.org
9662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9663 S:      Maintained
9664 F:      drivers/remoteproc/
9665 F:      Documentation/remoteproc.txt
9666 F:      include/linux/remoteproc.h
9667
9668 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9669 M:      Ohad Ben-Cohen <ohad@wizery.com>
9670 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9671 L:      linux-remoteproc@vger.kernel.org
9672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9673 S:      Maintained
9674 F:      drivers/rpmsg/
9675 F:      Documentation/rpmsg.txt
9676 F:      include/linux/rpmsg.h
9677
9678 RENESAS ETHERNET DRIVERS
9679 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9680 L:      netdev@vger.kernel.org
9681 L:      linux-renesas-soc@vger.kernel.org
9682 F:      drivers/net/ethernet/renesas/
9683 F:      include/linux/sh_eth.h
9684
9685 RENESAS USB2 PHY DRIVER
9686 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9687 L:      linux-renesas-soc@vger.kernel.org
9688 S:      Maintained
9689 F:      drivers/phy/phy-rcar-gen3-usb2.c
9690
9691 RESET CONTROLLER FRAMEWORK
9692 M:      Philipp Zabel <p.zabel@pengutronix.de>
9693 T:      git git://git.pengutronix.de/git/pza/linux
9694 S:      Maintained
9695 F:      drivers/reset/
9696 F:      Documentation/devicetree/bindings/reset/
9697 F:      include/dt-bindings/reset/
9698 F:      include/linux/reset.h
9699 F:      include/linux/reset-controller.h
9700
9701 RFKILL
9702 M:      Johannes Berg <johannes@sipsolutions.net>
9703 L:      linux-wireless@vger.kernel.org
9704 W:      http://wireless.kernel.org/
9705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9707 S:      Maintained
9708 F:      Documentation/rfkill.txt
9709 F:      net/rfkill/
9710
9711 RHASHTABLE
9712 M:      Thomas Graf <tgraf@suug.ch>
9713 L:      netdev@vger.kernel.org
9714 S:      Maintained
9715 F:      lib/rhashtable.c
9716 F:      include/linux/rhashtable.h
9717
9718 RICOH SMARTMEDIA/XD DRIVER
9719 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9720 S:      Maintained
9721 F:      drivers/mtd/nand/r852.c
9722 F:      drivers/mtd/nand/r852.h
9723
9724 RICOH R5C592 MEMORYSTICK DRIVER
9725 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9726 S:      Maintained
9727 F:      drivers/memstick/host/r592.*
9728
9729 ROCCAT DRIVERS
9730 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9731 W:      http://sourceforge.net/projects/roccat/
9732 S:      Maintained
9733 F:      drivers/hid/hid-roccat*
9734 F:      include/linux/hid-roccat*
9735 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9736
9737 ROCKER DRIVER
9738 M:      Jiri Pirko <jiri@resnulli.us>
9739 M:      Scott Feldman <sfeldma@gmail.com>
9740 L:      netdev@vger.kernel.org
9741 S:      Supported
9742 F:      drivers/net/ethernet/rocker/
9743
9744 ROCKETPORT DRIVER
9745 P:      Comtrol Corp.
9746 W:      http://www.comtrol.com
9747 S:      Maintained
9748 F:      Documentation/serial/rocket.txt
9749 F:      drivers/tty/rocket*
9750
9751 ROCKETPORT EXPRESS/INFINITY DRIVER
9752 M:      Kevin Cernekee <cernekee@gmail.com>
9753 L:      linux-serial@vger.kernel.org
9754 S:      Odd Fixes
9755 F:      drivers/tty/serial/rp2.*
9756
9757 ROSE NETWORK LAYER
9758 M:      Ralf Baechle <ralf@linux-mips.org>
9759 L:      linux-hams@vger.kernel.org
9760 W:      http://www.linux-ax25.org/
9761 S:      Maintained
9762 F:      include/net/rose.h
9763 F:      include/uapi/linux/rose.h
9764 F:      net/rose/
9765
9766 RTL2830 MEDIA DRIVER
9767 M:      Antti Palosaari <crope@iki.fi>
9768 L:      linux-media@vger.kernel.org
9769 W:      https://linuxtv.org
9770 W:      http://palosaari.fi/linux/
9771 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9772 T:      git git://linuxtv.org/anttip/media_tree.git
9773 S:      Maintained
9774 F:      drivers/media/dvb-frontends/rtl2830*
9775
9776 RTL2832 MEDIA DRIVER
9777 M:      Antti Palosaari <crope@iki.fi>
9778 L:      linux-media@vger.kernel.org
9779 W:      https://linuxtv.org
9780 W:      http://palosaari.fi/linux/
9781 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9782 T:      git git://linuxtv.org/anttip/media_tree.git
9783 S:      Maintained
9784 F:      drivers/media/dvb-frontends/rtl2832*
9785
9786 RTL2832_SDR MEDIA DRIVER
9787 M:      Antti Palosaari <crope@iki.fi>
9788 L:      linux-media@vger.kernel.org
9789 W:      https://linuxtv.org
9790 W:      http://palosaari.fi/linux/
9791 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9792 T:      git git://linuxtv.org/anttip/media_tree.git
9793 S:      Maintained
9794 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9795
9796 RTL8180 WIRELESS DRIVER
9797 L:      linux-wireless@vger.kernel.org
9798 W:      http://wireless.kernel.org/
9799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9800 S:      Orphan
9801 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9802
9803 RTL8187 WIRELESS DRIVER
9804 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9805 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9806 M:      Larry Finger <Larry.Finger@lwfinger.net>
9807 L:      linux-wireless@vger.kernel.org
9808 W:      http://wireless.kernel.org/
9809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9810 S:      Maintained
9811 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9812
9813 RTL8192CE WIRELESS DRIVER
9814 M:      Larry Finger <Larry.Finger@lwfinger.net>
9815 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9816 L:      linux-wireless@vger.kernel.org
9817 W:      http://wireless.kernel.org/
9818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9819 S:      Maintained
9820 F:      drivers/net/wireless/realtek/rtlwifi/
9821 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9822
9823 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9824 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9825 L:      linux-wireless@vger.kernel.org
9826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
9827 S:      Maintained
9828 F:      drivers/net/wireless/realtek/rtl8xxxu/
9829
9830 S3 SAVAGE FRAMEBUFFER DRIVER
9831 M:      Antonino Daplas <adaplas@gmail.com>
9832 L:      linux-fbdev@vger.kernel.org
9833 S:      Maintained
9834 F:      drivers/video/fbdev/savage/
9835
9836 S390
9837 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9838 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9839 L:      linux-s390@vger.kernel.org
9840 W:      http://www.ibm.com/developerworks/linux/linux390/
9841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9842 S:      Supported
9843 F:      arch/s390/
9844 F:      drivers/s390/
9845 F:      Documentation/s390/
9846 F:      Documentation/DocBook/s390*
9847
9848 S390 COMMON I/O LAYER
9849 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9850 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9851 L:      linux-s390@vger.kernel.org
9852 W:      http://www.ibm.com/developerworks/linux/linux390/
9853 S:      Supported
9854 F:      drivers/s390/cio/
9855
9856 S390 DASD DRIVER
9857 M:      Stefan Weinhuber <wein@de.ibm.com>
9858 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9859 L:      linux-s390@vger.kernel.org
9860 W:      http://www.ibm.com/developerworks/linux/linux390/
9861 S:      Supported
9862 F:      drivers/s390/block/dasd*
9863 F:      block/partitions/ibm.c
9864
9865 S390 NETWORK DRIVERS
9866 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9867 L:      linux-s390@vger.kernel.org
9868 W:      http://www.ibm.com/developerworks/linux/linux390/
9869 S:      Supported
9870 F:      drivers/s390/net/
9871
9872 S390 PCI SUBSYSTEM
9873 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9874 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9875 L:      linux-s390@vger.kernel.org
9876 W:      http://www.ibm.com/developerworks/linux/linux390/
9877 S:      Supported
9878 F:      arch/s390/pci/
9879 F:      drivers/pci/hotplug/s390_pci_hpc.c
9880
9881 S390 ZCRYPT DRIVER
9882 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9883 L:      linux-s390@vger.kernel.org
9884 W:      http://www.ibm.com/developerworks/linux/linux390/
9885 S:      Supported
9886 F:      drivers/s390/crypto/
9887
9888 S390 ZFCP DRIVER
9889 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9890 L:      linux-s390@vger.kernel.org
9891 W:      http://www.ibm.com/developerworks/linux/linux390/
9892 S:      Supported
9893 F:      drivers/s390/scsi/zfcp_*
9894
9895 S390 IUCV NETWORK LAYER
9896 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9897 L:      linux-s390@vger.kernel.org
9898 W:      http://www.ibm.com/developerworks/linux/linux390/
9899 S:      Supported
9900 F:      drivers/s390/net/*iucv*
9901 F:      include/net/iucv/
9902 F:      net/iucv/
9903
9904 S390 IOMMU (PCI)
9905 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9906 L:      linux-s390@vger.kernel.org
9907 W:      http://www.ibm.com/developerworks/linux/linux390/
9908 S:      Supported
9909 F:      drivers/iommu/s390-iommu.c
9910
9911 S3C24XX SD/MMC Driver
9912 M:      Ben Dooks <ben-linux@fluff.org>
9913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9914 S:      Supported
9915 F:      drivers/mmc/host/s3cmci.*
9916
9917 SAA6588 RDS RECEIVER DRIVER
9918 M:      Hans Verkuil <hverkuil@xs4all.nl>
9919 L:      linux-media@vger.kernel.org
9920 T:      git git://linuxtv.org/media_tree.git
9921 W:      https://linuxtv.org
9922 S:      Odd Fixes
9923 F:      drivers/media/i2c/saa6588*
9924
9925 SAA7134 VIDEO4LINUX DRIVER
9926 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
9927 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
9928 L:      linux-media@vger.kernel.org
9929 W:      https://linuxtv.org
9930 T:      git git://linuxtv.org/media_tree.git
9931 S:      Odd fixes
9932 F:      Documentation/video4linux/*.saa7134
9933 F:      drivers/media/pci/saa7134/
9934
9935 SAA7146 VIDEO4LINUX-2 DRIVER
9936 M:      Hans Verkuil <hverkuil@xs4all.nl>
9937 L:      linux-media@vger.kernel.org
9938 T:      git git://linuxtv.org/media_tree.git
9939 S:      Maintained
9940 F:      drivers/media/common/saa7146/
9941 F:      drivers/media/pci/saa7146/
9942 F:      include/media/saa7146*
9943
9944 SAMSUNG LAPTOP DRIVER
9945 M:      Corentin Chary <corentin.chary@gmail.com>
9946 L:      platform-driver-x86@vger.kernel.org
9947 S:      Maintained
9948 F:      drivers/platform/x86/samsung-laptop.c
9949
9950 SAMSUNG AUDIO (ASoC) DRIVERS
9951 M:      Sangbeom Kim <sbkim73@samsung.com>
9952 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9953 S:      Supported
9954 F:      sound/soc/samsung/
9955
9956 SAMSUNG FRAMEBUFFER DRIVER
9957 M:      Jingoo Han <jingoohan1@gmail.com>
9958 L:      linux-fbdev@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/video/fbdev/s3c-fb.c
9961
9962 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9963 M:      Sangbeom Kim <sbkim73@samsung.com>
9964 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9965 L:      linux-kernel@vger.kernel.org
9966 L:      linux-samsung-soc@vger.kernel.org
9967 S:      Supported
9968 F:      drivers/mfd/sec*.c
9969 F:      drivers/regulator/s2m*.c
9970 F:      drivers/regulator/s5m*.c
9971 F:      drivers/clk/clk-s2mps11.c
9972 F:      drivers/rtc/rtc-s5m.c
9973 F:      include/linux/mfd/samsung/
9974 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9975 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9976 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9977 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9978
9979 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9980 M:      Kyungmin Park <kyungmin.park@samsung.com>
9981 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9982 L:      linux-media@vger.kernel.org
9983 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9984 S:      Supported
9985 F:      drivers/media/platform/exynos4-is/
9986
9987 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9988 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9989 L:      linux-media@vger.kernel.org
9990 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9991 S:      Maintained
9992 F:      drivers/media/platform/s3c-camif/
9993 F:      include/media/drv-intf/s3c_camif.h
9994
9995 SAMSUNG S5C73M3 CAMERA DRIVER
9996 M:      Kyungmin Park <kyungmin.park@samsung.com>
9997 M:      Andrzej Hajda <a.hajda@samsung.com>
9998 L:      linux-media@vger.kernel.org
9999 S:      Supported
10000 F:      drivers/media/i2c/s5c73m3/*
10001
10002 SAMSUNG S5K5BAF CAMERA DRIVER
10003 M:      Kyungmin Park <kyungmin.park@samsung.com>
10004 M:      Andrzej Hajda <a.hajda@samsung.com>
10005 L:      linux-media@vger.kernel.org
10006 S:      Supported
10007 F:      drivers/media/i2c/s5k5baf.c
10008
10009 SAMSUNG S3FWRN5 NFC DRIVER
10010 M:      Robert Baldyga <r.baldyga@samsung.com>
10011 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
10012 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
10013 S:      Supported
10014 F:      drivers/nfc/s3fwrn5
10015
10016 SAMSUNG SOC CLOCK DRIVERS
10017 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10018 M:      Tomasz Figa <tomasz.figa@gmail.com>
10019 S:      Supported
10020 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10021 F:      drivers/clk/samsung/
10022
10023 SAMSUNG SXGBE DRIVERS
10024 M:      Byungho An <bh74.an@samsung.com>
10025 M:      Girish K S <ks.giri@samsung.com>
10026 M:      Vipul Pandya <vipul.pandya@samsung.com>
10027 S:      Supported
10028 L:      netdev@vger.kernel.org
10029 F:      drivers/net/ethernet/samsung/sxgbe/
10030
10031 SAMSUNG THERMAL DRIVER
10032 M:      Lukasz Majewski <l.majewski@samsung.com>
10033 L:      linux-pm@vger.kernel.org
10034 L:      linux-samsung-soc@vger.kernel.org
10035 S:      Supported
10036 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
10037 F:      drivers/thermal/samsung/
10038
10039 SAMSUNG USB2 PHY DRIVER
10040 M:      Kamil Debski <k.debski@samsung.com>
10041 L:      linux-kernel@vger.kernel.org
10042 S:      Supported
10043 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
10044 F:      Documentation/phy/samsung-usb2.txt
10045 F:      drivers/phy/phy-exynos4210-usb2.c
10046 F:      drivers/phy/phy-exynos4x12-usb2.c
10047 F:      drivers/phy/phy-exynos5250-usb2.c
10048 F:      drivers/phy/phy-s5pv210-usb2.c
10049 F:      drivers/phy/phy-samsung-usb2.c
10050 F:      drivers/phy/phy-samsung-usb2.h
10051
10052 SERIAL DRIVERS
10053 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10054 L:      linux-serial@vger.kernel.org
10055 S:      Maintained
10056 F:      drivers/tty/serial/
10057
10058 SYNOPSYS DESIGNWARE DMAC DRIVER
10059 M:      Viresh Kumar <vireshk@kernel.org>
10060 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10061 S:      Maintained
10062 F:      include/linux/dma/dw.h
10063 F:      include/linux/platform_data/dma-dw.h
10064 F:      drivers/dma/dw/
10065
10066 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
10067 M: Lars Persson <lars.persson@axis.com>
10068 L: netdev@vger.kernel.org
10069 S: Supported
10070 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
10071 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
10072
10073 SYNOPSYS DESIGNWARE I2C DRIVER
10074 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10075 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10076 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
10077 L:      linux-i2c@vger.kernel.org
10078 S:      Maintained
10079 F:      drivers/i2c/busses/i2c-designware-*
10080 F:      include/linux/platform_data/i2c-designware.h
10081
10082 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
10083 M:      Jaehoon Chung <jh80.chung@samsung.com>
10084 L:      linux-mmc@vger.kernel.org
10085 S:      Maintained
10086 F:      include/linux/mmc/dw_mmc.h
10087 F:      drivers/mmc/host/dw_mmc*
10088
10089 SYSTEM TRACE MODULE CLASS
10090 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10091 S:      Maintained
10092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
10093 F:      Documentation/trace/stm.txt
10094 F:      drivers/hwtracing/stm/
10095 F:      include/linux/stm.h
10096 F:      include/uapi/linux/stm.h
10097
10098 THUNDERBOLT DRIVER
10099 M:      Andreas Noever <andreas.noever@gmail.com>
10100 S:      Maintained
10101 F:      drivers/thunderbolt/
10102
10103 TI BQ27XXX POWER SUPPLY DRIVER
10104 R:      Andrew F. Davis <afd@ti.com>
10105 F:      include/linux/power/bq27xxx_battery.h
10106 F:      drivers/power/bq27xxx_battery.c
10107 F:      drivers/power/bq27xxx_battery_i2c.c
10108
10109 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
10110 M:      John Stultz <john.stultz@linaro.org>
10111 M:      Thomas Gleixner <tglx@linutronix.de>
10112 L:      linux-kernel@vger.kernel.org
10113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10114 S:      Supported
10115 F:      include/linux/clocksource.h
10116 F:      include/linux/time.h
10117 F:      include/linux/timex.h
10118 F:      include/uapi/linux/time.h
10119 F:      include/uapi/linux/timex.h
10120 F:      kernel/time/clocksource.c
10121 F:      kernel/time/time*.c
10122 F:      kernel/time/alarmtimer.c
10123 F:      kernel/time/ntp.c
10124 F:      tools/testing/selftests/timers/
10125
10126 SC1200 WDT DRIVER
10127 M:      Zwane Mwaikambo <zwanem@gmail.com>
10128 S:      Maintained
10129 F:      drivers/watchdog/sc1200wdt.c
10130
10131 SCHEDULER
10132 M:      Ingo Molnar <mingo@redhat.com>
10133 M:      Peter Zijlstra <peterz@infradead.org>
10134 L:      linux-kernel@vger.kernel.org
10135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
10136 S:      Maintained
10137 F:      kernel/sched/
10138 F:      include/linux/sched.h
10139 F:      include/uapi/linux/sched.h
10140 F:      include/linux/wait.h
10141
10142 SCORE ARCHITECTURE
10143 M:      Chen Liqin <liqin.linux@gmail.com>
10144 M:      Lennox Wu <lennox.wu@gmail.com>
10145 W:      http://www.sunplus.com
10146 S:      Supported
10147 F:      arch/score/
10148
10149 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
10150 M:      Sudeep Holla <sudeep.holla@arm.com>
10151 L:      linux-arm-kernel@lists.infradead.org
10152 S:      Maintained
10153 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
10154 F:      drivers/clk/clk-scpi.c
10155 F:      drivers/cpufreq/scpi-cpufreq.c
10156 F:      drivers/firmware/arm_scpi.c
10157 F:      include/linux/scpi_protocol.h
10158
10159 SCSI CDROM DRIVER
10160 M:      Jens Axboe <axboe@kernel.dk>
10161 L:      linux-scsi@vger.kernel.org
10162 W:      http://www.kernel.dk
10163 S:      Maintained
10164 F:      drivers/scsi/sr*
10165
10166 SCSI RDMA PROTOCOL (SRP) INITIATOR
10167 M:      Bart Van Assche <bart.vanassche@sandisk.com>
10168 L:      linux-rdma@vger.kernel.org
10169 S:      Supported
10170 W:      http://www.openfabrics.org
10171 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
10173 F:      drivers/infiniband/ulp/srp/
10174 F:      include/scsi/srp.h
10175
10176 SCSI SG DRIVER
10177 M:      Doug Gilbert <dgilbert@interlog.com>
10178 L:      linux-scsi@vger.kernel.org
10179 W:      http://sg.danny.cz/sg
10180 S:      Maintained
10181 F:      Documentation/scsi/scsi-generic.txt
10182 F:      drivers/scsi/sg.c
10183 F:      include/scsi/sg.h
10184
10185 SCSI SUBSYSTEM
10186 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
10187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
10188 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
10189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
10190 L:      linux-scsi@vger.kernel.org
10191 S:      Maintained
10192 F:      drivers/scsi/
10193 F:      include/scsi/
10194
10195 SCSI TAPE DRIVER
10196 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
10197 L:      linux-scsi@vger.kernel.org
10198 S:      Maintained
10199 F:      Documentation/scsi/st.txt
10200 F:      drivers/scsi/st.*
10201 F:      drivers/scsi/st_*.h
10202
10203 SCTP PROTOCOL
10204 M:      Vlad Yasevich <vyasevich@gmail.com>
10205 M:      Neil Horman <nhorman@tuxdriver.com>
10206 L:      linux-sctp@vger.kernel.org
10207 W:      http://lksctp.sourceforge.net
10208 S:      Maintained
10209 F:      Documentation/networking/sctp.txt
10210 F:      include/linux/sctp.h
10211 F:      include/uapi/linux/sctp.h
10212 F:      include/net/sctp/
10213 F:      net/sctp/
10214
10215 SCx200 CPU SUPPORT
10216 M:      Jim Cromie <jim.cromie@gmail.com>
10217 S:      Odd Fixes
10218 F:      Documentation/i2c/busses/scx200_acb
10219 F:      arch/x86/platform/scx200/
10220 F:      drivers/watchdog/scx200_wdt.c
10221 F:      drivers/i2c/busses/scx200*
10222 F:      drivers/mtd/maps/scx200_docflash.c
10223 F:      include/linux/scx200.h
10224
10225 SCx200 GPIO DRIVER
10226 M:      Jim Cromie <jim.cromie@gmail.com>
10227 S:      Maintained
10228 F:      drivers/char/scx200_gpio.c
10229 F:      include/linux/scx200_gpio.h
10230
10231 SCx200 HRT CLOCKSOURCE DRIVER
10232 M:      Jim Cromie <jim.cromie@gmail.com>
10233 S:      Maintained
10234 F:      drivers/clocksource/scx200_hrt.c
10235
10236 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10237 M:      Sascha Sommer <saschasommer@freenet.de>
10238 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10239 S:      Maintained
10240 F:      drivers/mmc/host/sdricoh_cs.c
10241
10242 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10243 M:      Adrian Hunter <adrian.hunter@intel.com>
10244 L:      linux-mmc@vger.kernel.org
10245 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10246 S:      Maintained
10247 F:      drivers/mmc/host/sdhci*
10248 F:      include/linux/mmc/sdhci*
10249
10250 SECURE COMPUTING
10251 M:      Kees Cook <keescook@chromium.org>
10252 R:      Andy Lutomirski <luto@amacapital.net>
10253 R:      Will Drewry <wad@chromium.org>
10254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10255 S:      Supported
10256 F:      kernel/seccomp.c
10257 F:      include/uapi/linux/seccomp.h
10258 F:      include/linux/seccomp.h
10259 F:      tools/testing/selftests/seccomp/*
10260 K:      \bsecure_computing
10261 K:      \bTIF_SECCOMP\b
10262
10263 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10264 M:      Ben Dooks <ben-linux@fluff.org>
10265 M:      Jaehoon Chung <jh80.chung@samsung.com>
10266 L:      linux-mmc@vger.kernel.org
10267 S:      Maintained
10268 F:      drivers/mmc/host/sdhci-s3c*
10269
10270 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10271 M:      Viresh Kumar <vireshk@kernel.org>
10272 L:      linux-mmc@vger.kernel.org
10273 S:      Maintained
10274 F:      drivers/mmc/host/sdhci-spear.c
10275
10276 SECURITY SUBSYSTEM
10277 M:      James Morris <james.l.morris@oracle.com>
10278 M:      "Serge E. Hallyn" <serge@hallyn.com>
10279 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10281 W:      http://kernsec.org/
10282 S:      Supported
10283 F:      security/
10284
10285 SECURITY CONTACT
10286 M:      Security Officers <security@kernel.org>
10287 S:      Supported
10288
10289 SELINUX SECURITY MODULE
10290 M:      Paul Moore <paul@paul-moore.com>
10291 M:      Stephen Smalley <sds@tycho.nsa.gov>
10292 M:      Eric Paris <eparis@parisplace.org>
10293 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10294 W:      http://selinuxproject.org
10295 T:      git git://git.infradead.org/users/pcmoore/selinux
10296 S:      Supported
10297 F:      include/linux/selinux*
10298 F:      security/selinux/
10299 F:      scripts/selinux/
10300
10301 APPARMOR SECURITY MODULE
10302 M:      John Johansen <john.johansen@canonical.com>
10303 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10304 W:      apparmor.wiki.kernel.org
10305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10306 S:      Supported
10307 F:      security/apparmor/
10308
10309 LOADPIN SECURITY MODULE
10310 M:      Kees Cook <keescook@chromium.org>
10311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10312 S:      Supported
10313 F:      security/loadpin/
10314
10315 YAMA SECURITY MODULE
10316 M:      Kees Cook <keescook@chromium.org>
10317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10318 S:      Supported
10319 F:      security/yama/
10320
10321 SENSABLE PHANTOM
10322 M:      Jiri Slaby <jirislaby@gmail.com>
10323 S:      Maintained
10324 F:      drivers/misc/phantom.c
10325 F:      include/uapi/linux/phantom.h
10326
10327 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10328 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10329 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10330 M:      John Soni Jose <sony.john@avagotech.com>
10331 L:      linux-scsi@vger.kernel.org
10332 W:      http://www.avagotech.com
10333 S:      Supported
10334 F:      drivers/scsi/be2iscsi/
10335
10336 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
10337 M:      Sathya Perla <sathya.perla@broadcom.com>
10338 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10339 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10340 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10341 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10342 L:      netdev@vger.kernel.org
10343 W:      http://www.emulex.com
10344 S:      Supported
10345 F:      drivers/net/ethernet/emulex/benet/
10346
10347 EMULEX ONECONNECT ROCE DRIVER
10348 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10349 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10350 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10351 L:      linux-rdma@vger.kernel.org
10352 W:      http://www.emulex.com
10353 S:      Supported
10354 F:      drivers/infiniband/hw/ocrdma/
10355
10356 SFC NETWORK DRIVER
10357 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10358 M:      Edward Cree <ecree@solarflare.com>
10359 M:      Bert Kenward <bkenward@solarflare.com>
10360 L:      netdev@vger.kernel.org
10361 S:      Supported
10362 F:      drivers/net/ethernet/sfc/
10363
10364 SGI GRU DRIVER
10365 M:      Dimitri Sivanich <sivanich@sgi.com>
10366 S:      Maintained
10367 F:      drivers/misc/sgi-gru/
10368
10369 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10370 M:      Pat Gefre <pfg@sgi.com>
10371 L:      linux-ia64@vger.kernel.org
10372 S:      Supported
10373 F:      Documentation/ia64/serial.txt
10374 F:      drivers/tty/serial/ioc?_serial.c
10375 F:      include/linux/ioc?.h
10376
10377 SGI XP/XPC/XPNET DRIVER
10378 M:      Cliff Whickman <cpw@sgi.com>
10379 M:      Robin Holt <robinmholt@gmail.com>
10380 S:      Maintained
10381 F:      drivers/misc/sgi-xp/
10382
10383 SI2157 MEDIA DRIVER
10384 M:      Antti Palosaari <crope@iki.fi>
10385 L:      linux-media@vger.kernel.org
10386 W:      https://linuxtv.org
10387 W:      http://palosaari.fi/linux/
10388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10389 T:      git git://linuxtv.org/anttip/media_tree.git
10390 S:      Maintained
10391 F:      drivers/media/tuners/si2157*
10392
10393 SI2168 MEDIA DRIVER
10394 M:      Antti Palosaari <crope@iki.fi>
10395 L:      linux-media@vger.kernel.org
10396 W:      https://linuxtv.org
10397 W:      http://palosaari.fi/linux/
10398 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10399 T:      git git://linuxtv.org/anttip/media_tree.git
10400 S:      Maintained
10401 F:      drivers/media/dvb-frontends/si2168*
10402
10403 SI470X FM RADIO RECEIVER I2C DRIVER
10404 M:      Hans Verkuil <hverkuil@xs4all.nl>
10405 L:      linux-media@vger.kernel.org
10406 T:      git git://linuxtv.org/media_tree.git
10407 W:      https://linuxtv.org
10408 S:      Odd Fixes
10409 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10410
10411 SI470X FM RADIO RECEIVER USB DRIVER
10412 M:      Hans Verkuil <hverkuil@xs4all.nl>
10413 L:      linux-media@vger.kernel.org
10414 T:      git git://linuxtv.org/media_tree.git
10415 W:      https://linuxtv.org
10416 S:      Maintained
10417 F:      drivers/media/radio/si470x/radio-si470x-common.c
10418 F:      drivers/media/radio/si470x/radio-si470x.h
10419 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10420
10421 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10422 M:      Eduardo Valentin <edubezval@gmail.com>
10423 L:      linux-media@vger.kernel.org
10424 T:      git git://linuxtv.org/media_tree.git
10425 W:      https://linuxtv.org
10426 S:      Odd Fixes
10427 F:      drivers/media/radio/si4713/si4713.?
10428
10429 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10430 M:      Eduardo Valentin <edubezval@gmail.com>
10431 L:      linux-media@vger.kernel.org
10432 T:      git git://linuxtv.org/media_tree.git
10433 W:      https://linuxtv.org
10434 S:      Odd Fixes
10435 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10436
10437 SI4713 FM RADIO TRANSMITTER USB DRIVER
10438 M:      Hans Verkuil <hverkuil@xs4all.nl>
10439 L:      linux-media@vger.kernel.org
10440 T:      git git://linuxtv.org/media_tree.git
10441 W:      https://linuxtv.org
10442 S:      Maintained
10443 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10444
10445 SIANO DVB DRIVER
10446 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
10447 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10448 L:      linux-media@vger.kernel.org
10449 W:      https://linuxtv.org
10450 T:      git git://linuxtv.org/media_tree.git
10451 S:      Odd fixes
10452 F:      drivers/media/common/siano/
10453 F:      drivers/media/usb/siano/
10454 F:      drivers/media/usb/siano/
10455 F:      drivers/media/mmc/siano/
10456
10457 SIMPLEFB FB DRIVER
10458 M:      Hans de Goede <hdegoede@redhat.com>
10459 L:      linux-fbdev@vger.kernel.org
10460 S:      Maintained
10461 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10462 F:      drivers/video/fbdev/simplefb.c
10463 F:      include/linux/platform_data/simplefb.h
10464
10465 SH_VEU V4L2 MEM2MEM DRIVER
10466 L:      linux-media@vger.kernel.org
10467 S:      Orphan
10468 F:      drivers/media/platform/sh_veu.c
10469
10470 SH_VOU V4L2 OUTPUT DRIVER
10471 L:      linux-media@vger.kernel.org
10472 S:      Orphan
10473 F:      drivers/media/platform/sh_vou.c
10474 F:      include/media/drv-intf/sh_vou.h
10475
10476 SIMPLE FIRMWARE INTERFACE (SFI)
10477 M:      Len Brown <lenb@kernel.org>
10478 L:      sfi-devel@simplefirmware.org
10479 W:      http://simplefirmware.org/
10480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10481 S:      Supported
10482 F:      arch/x86/platform/sfi/
10483 F:      drivers/sfi/
10484 F:      include/linux/sfi*.h
10485
10486 SIMTEC EB110ATX (Chalice CATS)
10487 P:      Ben Dooks
10488 P:      Vincent Sanders <vince@simtec.co.uk>
10489 M:      Simtec Linux Team <linux@simtec.co.uk>
10490 W:      http://www.simtec.co.uk/products/EB110ATX/
10491 S:      Supported
10492
10493 SIMTEC EB2410ITX (BAST)
10494 P:      Ben Dooks
10495 P:      Vincent Sanders <vince@simtec.co.uk>
10496 M:      Simtec Linux Team <linux@simtec.co.uk>
10497 W:      http://www.simtec.co.uk/products/EB2410ITX/
10498 S:      Supported
10499 F:      arch/arm/mach-s3c24xx/mach-bast.c
10500 F:      arch/arm/mach-s3c24xx/bast-ide.c
10501 F:      arch/arm/mach-s3c24xx/bast-irq.c
10502
10503 TI DAVINCI MACHINE SUPPORT
10504 M:      Sekhar Nori <nsekhar@ti.com>
10505 M:      Kevin Hilman <khilman@kernel.org>
10506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10508 S:      Supported
10509 F:      arch/arm/mach-davinci/
10510 F:      drivers/i2c/busses/i2c-davinci.c
10511
10512 TI DAVINCI SERIES MEDIA DRIVER
10513 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10514 L:      linux-media@vger.kernel.org
10515 W:      https://linuxtv.org
10516 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10517 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10518 S:      Maintained
10519 F:      drivers/media/platform/davinci/
10520 F:      include/media/davinci/
10521
10522 TI AM437X VPFE DRIVER
10523 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10524 L:      linux-media@vger.kernel.org
10525 W:      https://linuxtv.org
10526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10527 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10528 S:      Maintained
10529 F:      drivers/media/platform/am437x/
10530
10531 OV2659 OMNIVISION SENSOR DRIVER
10532 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10533 L:      linux-media@vger.kernel.org
10534 W:      https://linuxtv.org
10535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10536 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10537 S:      Maintained
10538 F:      drivers/media/i2c/ov2659.c
10539 F:      include/media/i2c/ov2659.h
10540
10541 SILICON MOTION SM712 FRAME BUFFER DRIVER
10542 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10543 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10544 M:      Sudip Mukherjee <sudip@vectorindia.org>
10545 L:      linux-fbdev@vger.kernel.org
10546 S:      Maintained
10547 F:      drivers/video/fbdev/sm712*
10548 F:      Documentation/fb/sm712fb.txt
10549
10550 SIS 190 ETHERNET DRIVER
10551 M:      Francois Romieu <romieu@fr.zoreil.com>
10552 L:      netdev@vger.kernel.org
10553 S:      Maintained
10554 F:      drivers/net/ethernet/sis/sis190.c
10555
10556 SIS 900/7016 FAST ETHERNET DRIVER
10557 M:      Daniele Venzano <venza@brownhat.org>
10558 W:      http://www.brownhat.org/sis900.html
10559 L:      netdev@vger.kernel.org
10560 S:      Maintained
10561 F:      drivers/net/ethernet/sis/sis900.*
10562
10563 SIS FRAMEBUFFER DRIVER
10564 M:      Thomas Winischhofer <thomas@winischhofer.net>
10565 W:      http://www.winischhofer.net/linuxsisvga.shtml
10566 S:      Maintained
10567 F:      Documentation/fb/sisfb.txt
10568 F:      drivers/video/fbdev/sis/
10569 F:      include/video/sisfb.h
10570
10571 SIS USB2VGA DRIVER
10572 M:      Thomas Winischhofer <thomas@winischhofer.net>
10573 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10574 S:      Maintained
10575 F:      drivers/usb/misc/sisusbvga/
10576
10577 SLAB ALLOCATOR
10578 M:      Christoph Lameter <cl@linux.com>
10579 M:      Pekka Enberg <penberg@kernel.org>
10580 M:      David Rientjes <rientjes@google.com>
10581 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10582 M:      Andrew Morton <akpm@linux-foundation.org>
10583 L:      linux-mm@kvack.org
10584 S:      Maintained
10585 F:      include/linux/sl?b*.h
10586 F:      mm/sl?b*
10587
10588 SLEEPABLE READ-COPY UPDATE (SRCU)
10589 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10590 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10591 M:      Josh Triplett <josh@joshtriplett.org>
10592 R:      Steven Rostedt <rostedt@goodmis.org>
10593 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10594 L:      linux-kernel@vger.kernel.org
10595 W:      http://www.rdrop.com/users/paulmck/RCU/
10596 S:      Supported
10597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10598 F:      include/linux/srcu.h
10599 F:      kernel/rcu/srcu.c
10600
10601 SMACK SECURITY MODULE
10602 M:      Casey Schaufler <casey@schaufler-ca.com>
10603 L:      linux-security-module@vger.kernel.org
10604 W:      http://schaufler-ca.com
10605 T:      git git://git.gitorious.org/smack-next/kernel.git
10606 S:      Maintained
10607 F:      Documentation/security/Smack.txt
10608 F:      security/smack/
10609
10610 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10611 M:      Kevin Hilman <khilman@kernel.org>
10612 M:      Nishanth Menon <nm@ti.com>
10613 S:      Maintained
10614 F:      drivers/power/avs/
10615 F:      include/linux/power/smartreflex.h
10616 L:      linux-pm@vger.kernel.org
10617
10618 SMC91x ETHERNET DRIVER
10619 M:      Nicolas Pitre <nico@fluxnic.net>
10620 S:      Odd Fixes
10621 F:      drivers/net/ethernet/smsc/smc91x.*
10622
10623 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10624 M:      Sakari Ailus <sakari.ailus@iki.fi>
10625 L:      linux-media@vger.kernel.org
10626 S:      Maintained
10627 F:      drivers/media/i2c/smiapp/
10628 F:      include/media/i2c/smiapp.h
10629 F:      drivers/media/i2c/smiapp-pll.c
10630 F:      drivers/media/i2c/smiapp-pll.h
10631 F:      include/uapi/linux/smiapp.h
10632 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10633
10634 SMM665 HARDWARE MONITOR DRIVER
10635 M:      Guenter Roeck <linux@roeck-us.net>
10636 L:      linux-hwmon@vger.kernel.org
10637 S:      Maintained
10638 F:      Documentation/hwmon/smm665
10639 F:      drivers/hwmon/smm665.c
10640
10641 SMSC EMC2103 HARDWARE MONITOR DRIVER
10642 M:      Steve Glendinning <steve.glendinning@shawell.net>
10643 L:      linux-hwmon@vger.kernel.org
10644 S:      Maintained
10645 F:      Documentation/hwmon/emc2103
10646 F:      drivers/hwmon/emc2103.c
10647
10648 SMSC SCH5627 HARDWARE MONITOR DRIVER
10649 M:      Hans de Goede <hdegoede@redhat.com>
10650 L:      linux-hwmon@vger.kernel.org
10651 S:      Supported
10652 F:      Documentation/hwmon/sch5627
10653 F:      drivers/hwmon/sch5627.c
10654
10655 SMSC47B397 HARDWARE MONITOR DRIVER
10656 M:      Jean Delvare <jdelvare@suse.com>
10657 L:      linux-hwmon@vger.kernel.org
10658 S:      Maintained
10659 F:      Documentation/hwmon/smsc47b397
10660 F:      drivers/hwmon/smsc47b397.c
10661
10662 SMSC911x ETHERNET DRIVER
10663 M:      Steve Glendinning <steve.glendinning@shawell.net>
10664 L:      netdev@vger.kernel.org
10665 S:      Maintained
10666 F:      include/linux/smsc911x.h
10667 F:      drivers/net/ethernet/smsc/smsc911x.*
10668
10669 SMSC9420 PCI ETHERNET DRIVER
10670 M:      Steve Glendinning <steve.glendinning@shawell.net>
10671 L:      netdev@vger.kernel.org
10672 S:      Maintained
10673 F:      drivers/net/ethernet/smsc/smsc9420.*
10674
10675 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10676 M:      Steve Glendinning <steve.glendinning@shawell.net>
10677 L:      linux-fbdev@vger.kernel.org
10678 S:      Maintained
10679 F:      drivers/video/fbdev/smscufx.c
10680
10681 SOC-CAMERA V4L2 SUBSYSTEM
10682 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10683 L:      linux-media@vger.kernel.org
10684 T:      git git://linuxtv.org/media_tree.git
10685 S:      Maintained
10686 F:      include/media/soc*
10687 F:      drivers/media/i2c/soc_camera/
10688 F:      drivers/media/platform/soc_camera/
10689
10690 SOEKRIS NET48XX LED SUPPORT
10691 M:      Chris Boot <bootc@bootc.net>
10692 S:      Maintained
10693 F:      drivers/leds/leds-net48xx.c
10694
10695 SOFTLOGIC 6x10 MPEG CODEC
10696 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10697 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10698 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10699 M:      Ismael Luceno <ismael@iodev.co.uk>
10700 L:      linux-media@vger.kernel.org
10701 S:      Supported
10702 F:      drivers/media/pci/solo6x10/
10703
10704 SOFTWARE RAID (Multiple Disks) SUPPORT
10705 M:      Shaohua Li <shli@kernel.org>
10706 L:      linux-raid@vger.kernel.org
10707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10708 S:      Supported
10709 F:      drivers/md/
10710 F:      include/linux/raid/
10711 F:      include/uapi/linux/raid/
10712
10713 SONIC NETWORK DRIVER
10714 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10715 L:      netdev@vger.kernel.org
10716 S:      Maintained
10717 F:      drivers/net/ethernet/natsemi/sonic.*
10718
10719 SONICS SILICON BACKPLANE DRIVER (SSB)
10720 M:      Michael Buesch <m@bues.ch>
10721 L:      linux-wireless@vger.kernel.org
10722 S:      Maintained
10723 F:      drivers/ssb/
10724 F:      include/linux/ssb/
10725
10726 SONY VAIO CONTROL DEVICE DRIVER
10727 M:      Mattia Dongili <malattia@linux.it>
10728 L:      platform-driver-x86@vger.kernel.org
10729 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10730 S:      Maintained
10731 F:      Documentation/laptops/sony-laptop.txt
10732 F:      drivers/char/sonypi.c
10733 F:      drivers/platform/x86/sony-laptop.c
10734 F:      include/linux/sony-laptop.h
10735
10736 SONY MEMORYSTICK CARD SUPPORT
10737 M:      Alex Dubov <oakad@yahoo.com>
10738 W:      http://tifmxx.berlios.de/
10739 S:      Maintained
10740 F:      drivers/memstick/host/tifm_ms.c
10741
10742 SONY MEMORYSTICK STANDARD SUPPORT
10743 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10744 S:      Maintained
10745 F:      drivers/memstick/core/ms_block.*
10746
10747 SOUND
10748 M:      Jaroslav Kysela <perex@perex.cz>
10749 M:      Takashi Iwai <tiwai@suse.com>
10750 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10751 W:      http://www.alsa-project.org/
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10753 T:      git git://git.alsa-project.org/alsa-kernel.git
10754 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10755 S:      Maintained
10756 F:      Documentation/sound/
10757 F:      include/sound/
10758 F:      include/uapi/sound/
10759 F:      sound/
10760
10761 SOUND - COMPRESSED AUDIO
10762 M:      Vinod Koul <vinod.koul@intel.com>
10763 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10765 S:      Supported
10766 F:      Documentation/sound/alsa/compress_offload.txt
10767 F:      include/sound/compress_driver.h
10768 F:      include/uapi/sound/compress_*
10769 F:      sound/core/compress_offload.c
10770 F:      sound/soc/soc-compress.c
10771
10772 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10773 M:      Liam Girdwood <lgirdwood@gmail.com>
10774 M:      Mark Brown <broonie@kernel.org>
10775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10776 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10777 W:      http://alsa-project.org/main/index.php/ASoC
10778 S:      Supported
10779 F:      Documentation/sound/alsa/soc/
10780 F:      sound/soc/
10781 F:      include/sound/soc*
10782
10783 SOUND - DMAENGINE HELPERS
10784 M:      Lars-Peter Clausen <lars@metafoo.de>
10785 S:      Supported
10786 F:      include/sound/dmaengine_pcm.h
10787 F:      sound/core/pcm_dmaengine.c
10788 F:      sound/soc/soc-generic-dmaengine-pcm.c
10789
10790 SP2 MEDIA DRIVER
10791 M:      Olli Salonen <olli.salonen@iki.fi>
10792 L:      linux-media@vger.kernel.org
10793 W:      https://linuxtv.org
10794 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10795 S:      Maintained
10796 F:      drivers/media/dvb-frontends/sp2*
10797
10798 SPARC + UltraSPARC (sparc/sparc64)
10799 M:      "David S. Miller" <davem@davemloft.net>
10800 L:      sparclinux@vger.kernel.org
10801 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10804 S:      Maintained
10805 F:      arch/sparc/
10806 F:      drivers/sbus/
10807
10808 SPARC SERIAL DRIVERS
10809 M:      "David S. Miller" <davem@davemloft.net>
10810 L:      sparclinux@vger.kernel.org
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10813 S:      Maintained
10814 F:      include/linux/sunserialcore.h
10815 F:      drivers/tty/serial/suncore.c
10816 F:      drivers/tty/serial/sunhv.c
10817 F:      drivers/tty/serial/sunsab.c
10818 F:      drivers/tty/serial/sunsab.h
10819 F:      drivers/tty/serial/sunsu.c
10820 F:      drivers/tty/serial/sunzilog.c
10821 F:      drivers/tty/serial/sunzilog.h
10822
10823 SPARSE CHECKER
10824 M:      "Christopher Li" <sparse@chrisli.org>
10825 L:      linux-sparse@vger.kernel.org
10826 W:      https://sparse.wiki.kernel.org/
10827 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10828 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10829 S:      Maintained
10830 F:      include/linux/compiler.h
10831
10832 SPEAR PLATFORM SUPPORT
10833 M:      Viresh Kumar <vireshk@kernel.org>
10834 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10836 W:      http://www.st.com/spear
10837 S:      Maintained
10838 F:      arch/arm/boot/dts/spear*
10839 F:      arch/arm/mach-spear/
10840
10841 SPEAR CLOCK FRAMEWORK SUPPORT
10842 M:      Viresh Kumar <vireshk@kernel.org>
10843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10844 W:      http://www.st.com/spear
10845 S:      Maintained
10846 F:      drivers/clk/spear/
10847
10848 SPI SUBSYSTEM
10849 M:      Mark Brown <broonie@kernel.org>
10850 L:      linux-spi@vger.kernel.org
10851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10852 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10853 S:      Maintained
10854 F:      Documentation/spi/
10855 F:      drivers/spi/
10856 F:      include/linux/spi/
10857 F:      include/uapi/linux/spi/
10858
10859 SPIDERNET NETWORK DRIVER for CELL
10860 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10861 L:      netdev@vger.kernel.org
10862 S:      Supported
10863 F:      Documentation/networking/spider_net.txt
10864 F:      drivers/net/ethernet/toshiba/spider_net*
10865
10866 SPU FILE SYSTEM
10867 M:      Jeremy Kerr <jk@ozlabs.org>
10868 L:      linuxppc-dev@lists.ozlabs.org
10869 W:      http://www.ibm.com/developerworks/power/cell/
10870 S:      Supported
10871 F:      Documentation/filesystems/spufs.txt
10872 F:      arch/powerpc/platforms/cell/spufs/
10873
10874 SQUASHFS FILE SYSTEM
10875 M:      Phillip Lougher <phillip@squashfs.org.uk>
10876 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10877 W:      http://squashfs.org.uk
10878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10879 S:      Maintained
10880 F:      Documentation/filesystems/squashfs.txt
10881 F:      fs/squashfs/
10882
10883 SRM (Alpha) environment access
10884 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10885 S:      Maintained
10886 F:      arch/alpha/kernel/srm_env.c
10887
10888 STABLE BRANCH
10889 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10890 L:      stable@vger.kernel.org
10891 S:      Supported
10892 F:      Documentation/stable_kernel_rules.txt
10893
10894 STAGING SUBSYSTEM
10895 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10897 L:      devel@driverdev.osuosl.org
10898 S:      Supported
10899 F:      drivers/staging/
10900
10901 STAGING - COMEDI
10902 M:      Ian Abbott <abbotti@mev.co.uk>
10903 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10904 S:      Odd Fixes
10905 F:      drivers/staging/comedi/
10906
10907 STAGING - FLARION FT1000 DRIVERS
10908 M:      Marek Belisko <marek.belisko@gmail.com>
10909 S:      Odd Fixes
10910 F:      drivers/staging/ft1000/
10911
10912 STAGING - INDUSTRIAL IO
10913 M:      Jonathan Cameron <jic23@kernel.org>
10914 L:      linux-iio@vger.kernel.org
10915 S:      Odd Fixes
10916 F:      drivers/staging/iio/
10917
10918 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10919 M:      Jarod Wilson <jarod@wilsonet.com>
10920 W:      http://www.lirc.org/
10921 S:      Odd Fixes
10922 F:      drivers/staging/media/lirc/
10923
10924 STAGING - LUSTRE PARALLEL FILESYSTEM
10925 M:      Oleg Drokin <oleg.drokin@intel.com>
10926 M:      Andreas Dilger <andreas.dilger@intel.com>
10927 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10928 W:      http://wiki.lustre.org/
10929 S:      Maintained
10930 F:      drivers/staging/lustre
10931
10932 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10933 M:      Marc Dietrich <marvin24@gmx.de>
10934 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10935 L:      linux-tegra@vger.kernel.org
10936 S:      Maintained
10937 F:      drivers/staging/nvec/
10938
10939 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10940 M:      Jens Frederich <jfrederich@gmail.com>
10941 M:      Daniel Drake <dsd@laptop.org>
10942 M:      Jon Nettleton <jon.nettleton@gmail.com>
10943 W:      http://wiki.laptop.org/go/DCON
10944 S:      Maintained
10945 F:      drivers/staging/olpc_dcon/
10946
10947 STAGING - REALTEK RTL8712U DRIVERS
10948 M:      Larry Finger <Larry.Finger@lwfinger.net>
10949 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10950 S:      Odd Fixes
10951 F:      drivers/staging/rtl8712/
10952
10953 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10954 M:      Larry Finger <Larry.Finger@lwfinger.net>
10955 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10956 L:      linux-wireless@vger.kernel.org
10957 S:      Maintained
10958 F:      drivers/staging/rtl8723au/
10959
10960 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10961 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10962 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10963 M:      Sudip Mukherjee <sudip@vectorindia.org>
10964 L:      linux-fbdev@vger.kernel.org
10965 S:      Maintained
10966 F:      drivers/staging/sm750fb/
10967
10968 STAGING - SLICOSS
10969 M:      Lior Dotan <liodot@gmail.com>
10970 M:      Christopher Harrer <charrer@alacritech.com>
10971 S:      Odd Fixes
10972 F:      drivers/staging/slicoss/
10973
10974 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10975 M:      William Hubbs <w.d.hubbs@gmail.com>
10976 M:      Chris Brannon <chris@the-brannons.com>
10977 M:      Kirk Reiser <kirk@reisers.ca>
10978 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10979 L:      speakup@linux-speakup.org
10980 W:      http://www.linux-speakup.org/
10981 S:      Odd Fixes
10982 F:      drivers/staging/speakup/
10983
10984 STAGING - VIA VT665X DRIVERS
10985 M:      Forest Bond <forest@alittletooquiet.net>
10986 S:      Odd Fixes
10987 F:      drivers/staging/vt665?/
10988
10989 STAGING - WILC1000 WIFI DRIVER
10990 M:      Johnny Kim <johnny.kim@atmel.com>
10991 M:      Austin Shin <austin.shin@atmel.com>
10992 M:      Chris Park <chris.park@atmel.com>
10993 M:      Tony Cho <tony.cho@atmel.com>
10994 M:      Glen Lee <glen.lee@atmel.com>
10995 M:      Leo Kim <leo.kim@atmel.com>
10996 L:      linux-wireless@vger.kernel.org
10997 S:      Supported
10998 F:      drivers/staging/wilc1000/
10999
11000 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
11001 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
11002 S:      Odd Fixes
11003 F:      drivers/staging/xgifb/
11004
11005 STARFIRE/DURALAN NETWORK DRIVER
11006 M:      Ion Badulescu <ionut@badula.org>
11007 S:      Odd Fixes
11008 F:      drivers/net/ethernet/adaptec/starfire*
11009
11010 SUN3/3X
11011 M:      Sam Creasey <sammy@sammy.net>
11012 W:      http://sammy.net/sun3/
11013 S:      Maintained
11014 F:      arch/m68k/kernel/*sun3*
11015 F:      arch/m68k/sun3*/
11016 F:      arch/m68k/include/asm/sun3*
11017 F:      drivers/net/ethernet/i825xx/sun3*
11018
11019 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
11020 M:      Hans de Goede <hdegoede@redhat.com>
11021 L:      linux-input@vger.kernel.org
11022 S:      Maintained
11023 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
11024 F:      drivers/input/keyboard/sun4i-lradc-keys.c
11025
11026 SUNDANCE NETWORK DRIVER
11027 M:      Denis Kirjanov <kda@linux-powerpc.org>
11028 L:      netdev@vger.kernel.org
11029 S:      Maintained
11030 F:      drivers/net/ethernet/dlink/sundance.c
11031
11032 SUPERH
11033 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
11034 M:      Rich Felker <dalias@libc.org>
11035 L:      linux-sh@vger.kernel.org
11036 Q:      http://patchwork.kernel.org/project/linux-sh/list/
11037 S:      Maintained
11038 F:      Documentation/sh/
11039 F:      arch/sh/
11040 F:      drivers/sh/
11041
11042 SUSPEND TO RAM
11043 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11044 M:      Len Brown <len.brown@intel.com>
11045 M:      Pavel Machek <pavel@ucw.cz>
11046 L:      linux-pm@vger.kernel.org
11047 S:      Supported
11048 F:      Documentation/power/
11049 F:      arch/x86/kernel/acpi/
11050 F:      drivers/base/power/
11051 F:      kernel/power/
11052 F:      include/linux/suspend.h
11053 F:      include/linux/freezer.h
11054 F:      include/linux/pm.h
11055
11056 SVGA HANDLING
11057 M:      Martin Mares <mj@ucw.cz>
11058 L:      linux-video@atrey.karlin.mff.cuni.cz
11059 S:      Maintained
11060 F:      Documentation/svga.txt
11061 F:      arch/x86/boot/video*
11062
11063 SWIOTLB SUBSYSTEM
11064 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11065 L:      linux-kernel@vger.kernel.org
11066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
11067 S:      Supported
11068 F:      lib/swiotlb.c
11069 F:      arch/*/kernel/pci-swiotlb.c
11070 F:      include/linux/swiotlb.h
11071
11072 SWITCHDEV
11073 M:      Jiri Pirko <jiri@resnulli.us>
11074 L:      netdev@vger.kernel.org
11075 S:      Supported
11076 F:      net/switchdev/
11077 F:      include/net/switchdev.h
11078
11079 SYNOPSYS ARC ARCHITECTURE
11080 M:      Vineet Gupta <vgupta@synopsys.com>
11081 L:      linux-snps-arc@lists.infradead.org
11082 S:      Supported
11083 F:      arch/arc/
11084 F:      Documentation/devicetree/bindings/arc/*
11085 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
11086 F:      drivers/tty/serial/arc_uart.c
11087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
11088
11089 SYNOPSYS ARC SDP platform support
11090 M:      Alexey Brodkin <abrodkin@synopsys.com>
11091 S:      Supported
11092 F:      arch/arc/plat-axs10x
11093 F:      arch/arc/boot/dts/ax*
11094 F:      Documentation/devicetree/bindings/arc/axs10*
11095
11096 SYSTEM CONFIGURATION (SYSCON)
11097 M:      Lee Jones <lee.jones@linaro.org>
11098 M:      Arnd Bergmann <arnd@arndb.de>
11099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11100 S:      Supported
11101 F:      drivers/mfd/syscon.c
11102
11103 SYSV FILESYSTEM
11104 M:      Christoph Hellwig <hch@infradead.org>
11105 S:      Maintained
11106 F:      Documentation/filesystems/sysv-fs.txt
11107 F:      fs/sysv/
11108 F:      include/linux/sysv_fs.h
11109
11110 TARGET SUBSYSTEM
11111 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
11112 L:      linux-scsi@vger.kernel.org
11113 L:      target-devel@vger.kernel.org
11114 W:      http://www.linux-iscsi.org
11115 W:      http://groups.google.com/group/linux-iscsi-target-dev
11116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11117 S:      Supported
11118 F:      drivers/target/
11119 F:      include/target/
11120 F:      Documentation/target/
11121
11122 TASKSTATS STATISTICS INTERFACE
11123 M:      Balbir Singh <bsingharora@gmail.com>
11124 S:      Maintained
11125 F:      Documentation/accounting/taskstats*
11126 F:      include/linux/taskstats*
11127 F:      kernel/taskstats.c
11128
11129 TC CLASSIFIER
11130 M:      Jamal Hadi Salim <jhs@mojatatu.com>
11131 L:      netdev@vger.kernel.org
11132 S:      Maintained
11133 F:      include/net/pkt_cls.h
11134 F:      include/uapi/linux/pkt_cls.h
11135 F:      net/sched/
11136
11137 TCP LOW PRIORITY MODULE
11138 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
11139 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
11140 W:      http://tcp-lp-mod.sourceforge.net/
11141 S:      Maintained
11142 F:      net/ipv4/tcp_lp.c
11143
11144 TDA10071 MEDIA DRIVER
11145 M:      Antti Palosaari <crope@iki.fi>
11146 L:      linux-media@vger.kernel.org
11147 W:      https://linuxtv.org
11148 W:      http://palosaari.fi/linux/
11149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11150 T:      git git://linuxtv.org/anttip/media_tree.git
11151 S:      Maintained
11152 F:      drivers/media/dvb-frontends/tda10071*
11153
11154 TDA18212 MEDIA DRIVER
11155 M:      Antti Palosaari <crope@iki.fi>
11156 L:      linux-media@vger.kernel.org
11157 W:      https://linuxtv.org
11158 W:      http://palosaari.fi/linux/
11159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11160 T:      git git://linuxtv.org/anttip/media_tree.git
11161 S:      Maintained
11162 F:      drivers/media/tuners/tda18212*
11163
11164 TDA18218 MEDIA DRIVER
11165 M:      Antti Palosaari <crope@iki.fi>
11166 L:      linux-media@vger.kernel.org
11167 W:      https://linuxtv.org
11168 W:      http://palosaari.fi/linux/
11169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11170 T:      git git://linuxtv.org/anttip/media_tree.git
11171 S:      Maintained
11172 F:      drivers/media/tuners/tda18218*
11173
11174 TDA18271 MEDIA DRIVER
11175 M:      Michael Krufky <mkrufky@linuxtv.org>
11176 L:      linux-media@vger.kernel.org
11177 W:      https://linuxtv.org
11178 W:      http://github.com/mkrufky
11179 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11180 T:      git git://linuxtv.org/mkrufky/tuners.git
11181 S:      Maintained
11182 F:      drivers/media/tuners/tda18271*
11183
11184 TDA827x MEDIA DRIVER
11185 M:      Michael Krufky <mkrufky@linuxtv.org>
11186 L:      linux-media@vger.kernel.org
11187 W:      https://linuxtv.org
11188 W:      http://github.com/mkrufky
11189 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11190 T:      git git://linuxtv.org/mkrufky/tuners.git
11191 S:      Maintained
11192 F:      drivers/media/tuners/tda8290.*
11193
11194 TDA8290 MEDIA DRIVER
11195 M:      Michael Krufky <mkrufky@linuxtv.org>
11196 L:      linux-media@vger.kernel.org
11197 W:      https://linuxtv.org
11198 W:      http://github.com/mkrufky
11199 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11200 T:      git git://linuxtv.org/mkrufky/tuners.git
11201 S:      Maintained
11202 F:      drivers/media/tuners/tda8290.*
11203
11204 TDA9840 MEDIA DRIVER
11205 M:      Hans Verkuil <hverkuil@xs4all.nl>
11206 L:      linux-media@vger.kernel.org
11207 T:      git git://linuxtv.org/media_tree.git
11208 W:      https://linuxtv.org
11209 S:      Maintained
11210 F:      drivers/media/i2c/tda9840*
11211
11212 TEA5761 TUNER DRIVER
11213 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11214 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11215 L:      linux-media@vger.kernel.org
11216 W:      https://linuxtv.org
11217 T:      git git://linuxtv.org/media_tree.git
11218 S:      Odd fixes
11219 F:      drivers/media/tuners/tea5761.*
11220
11221 TEA5767 TUNER DRIVER
11222 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11223 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11224 L:      linux-media@vger.kernel.org
11225 W:      https://linuxtv.org
11226 T:      git git://linuxtv.org/media_tree.git
11227 S:      Maintained
11228 F:      drivers/media/tuners/tea5767.*
11229
11230 TEA6415C MEDIA DRIVER
11231 M:      Hans Verkuil <hverkuil@xs4all.nl>
11232 L:      linux-media@vger.kernel.org
11233 T:      git git://linuxtv.org/media_tree.git
11234 W:      https://linuxtv.org
11235 S:      Maintained
11236 F:      drivers/media/i2c/tea6415c*
11237
11238 TEA6420 MEDIA DRIVER
11239 M:      Hans Verkuil <hverkuil@xs4all.nl>
11240 L:      linux-media@vger.kernel.org
11241 T:      git git://linuxtv.org/media_tree.git
11242 W:      https://linuxtv.org
11243 S:      Maintained
11244 F:      drivers/media/i2c/tea6420*
11245
11246 TEAM DRIVER
11247 M:      Jiri Pirko <jiri@resnulli.us>
11248 L:      netdev@vger.kernel.org
11249 S:      Supported
11250 F:      drivers/net/team/
11251 F:      include/linux/if_team.h
11252 F:      include/uapi/linux/if_team.h
11253
11254 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11255 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11256 S:      Maintained
11257 F:      arch/x86/platform/ts5500/
11258
11259 TECHNOTREND USB IR RECEIVER
11260 M:      Sean Young <sean@mess.org>
11261 L:      linux-media@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/media/rc/ttusbir.c
11264
11265 TEGRA ARCHITECTURE SUPPORT
11266 M:      Stephen Warren <swarren@wwwdotorg.org>
11267 M:      Thierry Reding <thierry.reding@gmail.com>
11268 M:      Alexandre Courbot <gnurou@gmail.com>
11269 L:      linux-tegra@vger.kernel.org
11270 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11272 S:      Supported
11273 N:      [^a-z]tegra
11274
11275 TEGRA CLOCK DRIVER
11276 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11277 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11278 S:      Supported
11279 F:      drivers/clk/tegra/
11280
11281 TEGRA DMA DRIVERS
11282 M:      Laxman Dewangan <ldewangan@nvidia.com>
11283 M:      Jon Hunter <jonathanh@nvidia.com>
11284 S:      Supported
11285 F:      drivers/dma/tegra*
11286
11287 TEGRA I2C DRIVER
11288 M:      Laxman Dewangan <ldewangan@nvidia.com>
11289 S:      Supported
11290 F:      drivers/i2c/busses/i2c-tegra.c
11291
11292 TEGRA IOMMU DRIVERS
11293 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11294 S:      Supported
11295 F:      drivers/iommu/tegra*
11296
11297 TEGRA KBC DRIVER
11298 M:      Rakesh Iyer <riyer@nvidia.com>
11299 M:      Laxman Dewangan <ldewangan@nvidia.com>
11300 S:      Supported
11301 F:      drivers/input/keyboard/tegra-kbc.c
11302
11303 TEGRA PWM DRIVER
11304 M:      Thierry Reding <thierry.reding@gmail.com>
11305 S:      Supported
11306 F:      drivers/pwm/pwm-tegra.c
11307
11308 TEGRA SERIAL DRIVER
11309 M:      Laxman Dewangan <ldewangan@nvidia.com>
11310 S:      Supported
11311 F:      drivers/tty/serial/serial-tegra.c
11312
11313 TEGRA SPI DRIVER
11314 M:      Laxman Dewangan <ldewangan@nvidia.com>
11315 S:      Supported
11316 F:      drivers/spi/spi-tegra*
11317
11318 TEHUTI ETHERNET DRIVER
11319 M:      Andy Gospodarek <andy@greyhouse.net>
11320 L:      netdev@vger.kernel.org
11321 S:      Supported
11322 F:      drivers/net/ethernet/tehuti/*
11323
11324 Telecom Clock Driver for MCPL0010
11325 M:      Mark Gross <mark.gross@intel.com>
11326 S:      Supported
11327 F:      drivers/char/tlclk.c
11328
11329 TENSILICA XTENSA PORT (xtensa)
11330 M:      Chris Zankel <chris@zankel.net>
11331 M:      Max Filippov <jcmvbkbc@gmail.com>
11332 L:      linux-xtensa@linux-xtensa.org
11333 T:      git git://github.com/czankel/xtensa-linux.git
11334 S:      Maintained
11335 F:      arch/xtensa/
11336 F:      drivers/irqchip/irq-xtensa-*
11337
11338 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11339 M:      Hans Verkuil <hverkuil@xs4all.nl>
11340 L:      linux-media@vger.kernel.org
11341 T:      git git://linuxtv.org/media_tree.git
11342 W:      https://linuxtv.org
11343 S:      Maintained
11344 F:      drivers/media/radio/radio-raremono.c
11345
11346 THERMAL
11347 M:      Zhang Rui <rui.zhang@intel.com>
11348 M:      Eduardo Valentin <edubezval@gmail.com>
11349 L:      linux-pm@vger.kernel.org
11350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11352 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11353 S:      Supported
11354 F:      drivers/thermal/
11355 F:      include/linux/thermal.h
11356 F:      include/uapi/linux/thermal.h
11357 F:      include/linux/cpu_cooling.h
11358 F:      Documentation/devicetree/bindings/thermal/
11359
11360 THERMAL/CPU_COOLING
11361 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11362 M:      Viresh Kumar <viresh.kumar@linaro.org>
11363 M:      Javi Merino <javi.merino@arm.com>
11364 L:      linux-pm@vger.kernel.org
11365 S:      Supported
11366 F:      Documentation/thermal/cpu-cooling-api.txt
11367 F:      drivers/thermal/cpu_cooling.c
11368 F:      include/linux/cpu_cooling.h
11369
11370 THINGM BLINK(1) USB RGB LED DRIVER
11371 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11372 S:      Maintained
11373 F:      drivers/hid/hid-thingm.c
11374
11375 THINKPAD ACPI EXTRAS DRIVER
11376 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11377 L:      ibm-acpi-devel@lists.sourceforge.net
11378 L:      platform-driver-x86@vger.kernel.org
11379 W:      http://ibm-acpi.sourceforge.net
11380 W:      http://thinkwiki.org/wiki/Ibm-acpi
11381 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11382 S:      Maintained
11383 F:      drivers/platform/x86/thinkpad_acpi.c
11384
11385 TI BANDGAP AND THERMAL DRIVER
11386 M:      Eduardo Valentin <edubezval@gmail.com>
11387 M:      Keerthy <j-keerthy@ti.com>
11388 L:      linux-pm@vger.kernel.org
11389 L:      linux-omap@vger.kernel.org
11390 S:      Maintained
11391 F:      drivers/thermal/ti-soc-thermal/
11392
11393 TI VPE/CAL DRIVERS
11394 M:      Benoit Parrot <bparrot@ti.com>
11395 L:      linux-media@vger.kernel.org
11396 W:      http://linuxtv.org/
11397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11398 S:      Maintained
11399 F:      drivers/media/platform/ti-vpe/
11400
11401 TI CDCE706 CLOCK DRIVER
11402 M:      Max Filippov <jcmvbkbc@gmail.com>
11403 S:      Maintained
11404 F:      drivers/clk/clk-cdce706.c
11405
11406 TI CLOCK DRIVER
11407 M:      Tero Kristo <t-kristo@ti.com>
11408 L:      linux-omap@vger.kernel.org
11409 S:      Maintained
11410 F:      drivers/clk/ti/
11411 F:      include/linux/clk/ti.h
11412
11413 TI ETHERNET SWITCH DRIVER (CPSW)
11414 M:      Mugunthan V N <mugunthanvnm@ti.com>
11415 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11416 L:      linux-omap@vger.kernel.org
11417 L:      netdev@vger.kernel.org
11418 S:      Maintained
11419 F:      drivers/net/ethernet/ti/cpsw*
11420 F:      drivers/net/ethernet/ti/davinci*
11421
11422 TI FLASH MEDIA INTERFACE DRIVER
11423 M:      Alex Dubov <oakad@yahoo.com>
11424 S:      Maintained
11425 F:      drivers/misc/tifm*
11426 F:      drivers/mmc/host/tifm_sd.c
11427 F:      include/linux/tifm.h
11428
11429 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11430 M:      Santosh Shilimkar <ssantosh@kernel.org>
11431 L:      linux-kernel@vger.kernel.org
11432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11433 S:      Maintained
11434 F:      drivers/soc/ti/*
11435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11436
11437
11438 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11439 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11440 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11441 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11442 S:      Maintained
11443 F:      sound/soc/codecs/lm49453*
11444 F:      sound/soc/codecs/isabelle*
11445
11446 TI LP855x BACKLIGHT DRIVER
11447 M:      Milo Kim <milo.kim@ti.com>
11448 S:      Maintained
11449 F:      Documentation/backlight/lp855x-driver.txt
11450 F:      drivers/video/backlight/lp855x_bl.c
11451 F:      include/linux/platform_data/lp855x.h
11452
11453 TI LP8727 CHARGER DRIVER
11454 M:      Milo Kim <milo.kim@ti.com>
11455 S:      Maintained
11456 F:      drivers/power/lp8727_charger.c
11457 F:      include/linux/platform_data/lp8727.h
11458
11459 TI LP8788 MFD DRIVER
11460 M:      Milo Kim <milo.kim@ti.com>
11461 S:      Maintained
11462 F:      drivers/iio/adc/lp8788_adc.c
11463 F:      drivers/leds/leds-lp8788.c
11464 F:      drivers/mfd/lp8788*.c
11465 F:      drivers/power/lp8788-charger.c
11466 F:      drivers/regulator/lp8788-*.c
11467 F:      include/linux/mfd/lp8788*.h
11468
11469 TI NETCP ETHERNET DRIVER
11470 M:      Wingman Kwok <w-kwok2@ti.com>
11471 M:      Murali Karicheri <m-karicheri2@ti.com>
11472 L:      netdev@vger.kernel.org
11473 S:      Maintained
11474 F:      drivers/net/ethernet/ti/netcp*
11475
11476 TI TAS571X FAMILY ASoC CODEC DRIVER
11477 M:      Kevin Cernekee <cernekee@chromium.org>
11478 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11479 S:      Odd Fixes
11480 F:      sound/soc/codecs/tas571x*
11481
11482 TI TWL4030 SERIES SOC CODEC DRIVER
11483 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11484 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11485 S:      Maintained
11486 F:      sound/soc/codecs/twl4030*
11487
11488 TI WILINK WIRELESS DRIVERS
11489 L:      linux-wireless@vger.kernel.org
11490 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11491 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11493 S:      Orphan
11494 F:      drivers/net/wireless/ti/
11495 F:      include/linux/wl12xx.h
11496
11497 TIPC NETWORK LAYER
11498 M:      Jon Maloy <jon.maloy@ericsson.com>
11499 M:      Ying Xue <ying.xue@windriver.com>
11500 L:      netdev@vger.kernel.org (core kernel code)
11501 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11502 W:      http://tipc.sourceforge.net/
11503 S:      Maintained
11504 F:      include/uapi/linux/tipc*.h
11505 F:      net/tipc/
11506
11507 TILE ARCHITECTURE
11508 M:      Chris Metcalf <cmetcalf@mellanox.com>
11509 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11511 S:      Supported
11512 F:      arch/tile/
11513 F:      drivers/char/tile-srom.c
11514 F:      drivers/edac/tile_edac.c
11515 F:      drivers/net/ethernet/tile/
11516 F:      drivers/rtc/rtc-tile.c
11517 F:      drivers/tty/hvc/hvc_tile.c
11518 F:      drivers/tty/serial/tilegx.c
11519 F:      drivers/usb/host/*-tilegx.c
11520 F:      include/linux/usb/tilegx.h
11521
11522 TLAN NETWORK DRIVER
11523 M:      Samuel Chessman <chessman@tux.org>
11524 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11525 W:      http://sourceforge.net/projects/tlan/
11526 S:      Maintained
11527 F:      Documentation/networking/tlan.txt
11528 F:      drivers/net/ethernet/ti/tlan.*
11529
11530 TOMOYO SECURITY MODULE
11531 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11532 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11533 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11534 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11535 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11536 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11537 W:      http://tomoyo.sourceforge.jp/
11538 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11539 S:      Maintained
11540 F:      security/tomoyo/
11541
11542 TOPSTAR LAPTOP EXTRAS DRIVER
11543 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11544 L:      platform-driver-x86@vger.kernel.org
11545 S:      Maintained
11546 F:      drivers/platform/x86/topstar-laptop.c
11547
11548 TOSHIBA ACPI EXTRAS DRIVER
11549 M:      Azael Avalos <coproscefalo@gmail.com>
11550 L:      platform-driver-x86@vger.kernel.org
11551 S:      Maintained
11552 F:      drivers/platform/x86/toshiba_acpi.c
11553
11554 TOSHIBA BLUETOOTH DRIVER
11555 M:      Azael Avalos <coproscefalo@gmail.com>
11556 L:      platform-driver-x86@vger.kernel.org
11557 S:      Maintained
11558 F:      drivers/platform/x86/toshiba_bluetooth.c
11559
11560 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11561 M:      Azael Avalos <coproscefalo@gmail.com>
11562 L:      platform-driver-x86@vger.kernel.org
11563 S:      Maintained
11564 F:      drivers/platform/x86/toshiba_haps.c
11565
11566 TOSHIBA WMI HOTKEYS DRIVER
11567 M:      Azael Avalos <coproscefalo@gmail.com>
11568 L:      platform-driver-x86@vger.kernel.org
11569 S:      Maintained
11570 F:      drivers/platform/x86/toshiba-wmi.c
11571
11572 TOSHIBA SMM DRIVER
11573 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11574 W:      http://www.buzzard.org.uk/toshiba/
11575 S:      Maintained
11576 F:      drivers/char/toshiba.c
11577 F:      include/linux/toshiba.h
11578 F:      include/uapi/linux/toshiba.h
11579
11580 TOSHIBA TC358743 DRIVER
11581 M:      Mats Randgaard <matrandg@cisco.com>
11582 L:      linux-media@vger.kernel.org
11583 S:      Maintained
11584 F:      drivers/media/i2c/tc358743*
11585 F:      include/media/i2c/tc358743.h
11586
11587 TMIO/SDHI MMC DRIVER
11588 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11589 L:      linux-mmc@vger.kernel.org
11590 S:      Supported
11591 F:      drivers/mmc/host/tmio_mmc*
11592 F:      drivers/mmc/host/sh_mobile_sdhi.c
11593 F:      include/linux/mfd/tmio.h
11594
11595 TMP401 HARDWARE MONITOR DRIVER
11596 M:      Guenter Roeck <linux@roeck-us.net>
11597 L:      linux-hwmon@vger.kernel.org
11598 S:      Maintained
11599 F:      Documentation/hwmon/tmp401
11600 F:      drivers/hwmon/tmp401.c
11601
11602 TMPFS (SHMEM FILESYSTEM)
11603 M:      Hugh Dickins <hughd@google.com>
11604 L:      linux-mm@kvack.org
11605 S:      Maintained
11606 F:      include/linux/shmem_fs.h
11607 F:      mm/shmem.c
11608
11609 TM6000 VIDEO4LINUX DRIVER
11610 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11611 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11612 L:      linux-media@vger.kernel.org
11613 W:      https://linuxtv.org
11614 T:      git git://linuxtv.org/media_tree.git
11615 S:      Odd fixes
11616 F:      drivers/media/usb/tm6000/
11617
11618 TW68 VIDEO4LINUX DRIVER
11619 M:      Hans Verkuil <hverkuil@xs4all.nl>
11620 L:      linux-media@vger.kernel.org
11621 T:      git git://linuxtv.org/media_tree.git
11622 W:      https://linuxtv.org
11623 S:      Odd Fixes
11624 F:      drivers/media/pci/tw68/
11625
11626 TW686X VIDEO4LINUX DRIVER
11627 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11628 L:      linux-media@vger.kernel.org
11629 T:      git git://linuxtv.org/media_tree.git
11630 W:      http://linuxtv.org
11631 S:      Maintained
11632 F:      drivers/media/pci/tw686x/
11633
11634 TPM DEVICE DRIVER
11635 M:      Peter Huewe <peterhuewe@gmx.de>
11636 M:      Marcel Selhorst <tpmdd@selhorst.net>
11637 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11638 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11639 W:      http://tpmdd.sourceforge.net
11640 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11641 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11642 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11643 S:      Maintained
11644 F:      drivers/char/tpm/
11645
11646 TPM IBM_VTPM DEVICE DRIVER
11647 M:      Ashley Lai <ashleydlai@gmail.com>
11648 W:      http://tpmdd.sourceforge.net
11649 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11650 S:      Maintained
11651 F:      drivers/char/tpm/tpm_ibmvtpm*
11652
11653 TRACING
11654 M:      Steven Rostedt <rostedt@goodmis.org>
11655 M:      Ingo Molnar <mingo@redhat.com>
11656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11657 S:      Maintained
11658 F:      Documentation/trace/ftrace.txt
11659 F:      arch/*/*/*/ftrace.h
11660 F:      arch/*/kernel/ftrace.c
11661 F:      include/*/ftrace.h
11662 F:      include/linux/trace*.h
11663 F:      include/trace/
11664 F:      kernel/trace/
11665 F:      tools/testing/selftests/ftrace/
11666
11667 TRACING MMIO ACCESSES (MMIOTRACE)
11668 M:      Steven Rostedt <rostedt@goodmis.org>
11669 M:      Ingo Molnar <mingo@kernel.org>
11670 R:      Karol Herbst <karolherbst@gmail.com>
11671 R:      Pekka Paalanen <ppaalanen@gmail.com>
11672 S:      Maintained
11673 L:      linux-kernel@vger.kernel.org
11674 L:      nouveau@lists.freedesktop.org
11675 F:      kernel/trace/trace_mmiotrace.c
11676 F:      include/linux/mmiotrace.h
11677 F:      arch/x86/mm/kmmio.c
11678 F:      arch/x86/mm/mmio-mod.c
11679 F:      arch/x86/mm/testmmiotrace.c
11680
11681 TRIVIAL PATCHES
11682 M:      Jiri Kosina <trivial@kernel.org>
11683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11684 S:      Maintained
11685 K:      ^Subject:.*(?i)trivial
11686
11687 TTY LAYER
11688 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11689 M:      Jiri Slaby <jslaby@suse.com>
11690 S:      Supported
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11692 F:      Documentation/serial/
11693 F:      drivers/tty/
11694 F:      drivers/tty/serial/serial_core.c
11695 F:      include/linux/serial_core.h
11696 F:      include/linux/serial.h
11697 F:      include/linux/tty.h
11698 F:      include/uapi/linux/serial_core.h
11699 F:      include/uapi/linux/serial.h
11700 F:      include/uapi/linux/tty.h
11701
11702 TUA9001 MEDIA DRIVER
11703 M:      Antti Palosaari <crope@iki.fi>
11704 L:      linux-media@vger.kernel.org
11705 W:      https://linuxtv.org
11706 W:      http://palosaari.fi/linux/
11707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11708 T:      git git://linuxtv.org/anttip/media_tree.git
11709 S:      Maintained
11710 F:      drivers/media/tuners/tua9001*
11711
11712 TULIP NETWORK DRIVERS
11713 L:      netdev@vger.kernel.org
11714 L:      linux-parisc@vger.kernel.org
11715 S:      Orphan
11716 F:      drivers/net/ethernet/dec/tulip/
11717
11718 TUN/TAP driver
11719 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11720 W:      http://vtun.sourceforge.net/tun
11721 S:      Maintained
11722 F:      Documentation/networking/tuntap.txt
11723 F:      arch/um/os-Linux/drivers/
11724
11725 TURBOCHANNEL SUBSYSTEM
11726 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11727 M:      Ralf Baechle <ralf@linux-mips.org>
11728 L:      linux-mips@linux-mips.org
11729 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11730 S:      Maintained
11731 F:      drivers/tc/
11732 F:      include/linux/tc.h
11733
11734 U14-34F SCSI DRIVER
11735 M:      Dario Ballabio <ballabio_dario@emc.com>
11736 L:      linux-scsi@vger.kernel.org
11737 S:      Maintained
11738 F:      drivers/scsi/u14-34f.c
11739
11740 UBI FILE SYSTEM (UBIFS)
11741 M:      Richard Weinberger <richard@nod.at>
11742 M:      Artem Bityutskiy <dedekind1@gmail.com>
11743 M:      Adrian Hunter <adrian.hunter@intel.com>
11744 L:      linux-mtd@lists.infradead.org
11745 T:      git git://git.infradead.org/ubifs-2.6.git
11746 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11747 S:      Supported
11748 F:      Documentation/filesystems/ubifs.txt
11749 F:      fs/ubifs/
11750
11751 UCLINUX (M68KNOMMU AND COLDFIRE)
11752 M:      Greg Ungerer <gerg@linux-m68k.org>
11753 W:      http://www.linux-m68k.org/
11754 W:      http://www.uclinux.org/
11755 L:      linux-m68k@lists.linux-m68k.org
11756 L:      uclinux-dev@uclinux.org  (subscribers-only)
11757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11758 S:      Maintained
11759 F:      arch/m68k/coldfire/
11760 F:      arch/m68k/68*/
11761 F:      arch/m68k/*/*_no.*
11762 F:      arch/m68k/include/asm/*_no.*
11763
11764 UDF FILESYSTEM
11765 M:      Jan Kara <jack@suse.com>
11766 S:      Maintained
11767 F:      Documentation/filesystems/udf.txt
11768 F:      fs/udf/
11769
11770 UFS FILESYSTEM
11771 M:      Evgeniy Dushistov <dushistov@mail.ru>
11772 S:      Maintained
11773 F:      Documentation/filesystems/ufs.txt
11774 F:      fs/ufs/
11775
11776 UHID USERSPACE HID IO DRIVER:
11777 M:      David Herrmann <dh.herrmann@googlemail.com>
11778 L:      linux-input@vger.kernel.org
11779 S:      Maintained
11780 F:      drivers/hid/uhid.c
11781 F:      include/uapi/linux/uhid.h
11782
11783 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11784 L:      linux-usb@vger.kernel.org
11785 S:      Orphan
11786 F:      drivers/uwb/
11787 F:      include/linux/uwb.h
11788 F:      include/linux/uwb/
11789
11790 UNICORE32 ARCHITECTURE:
11791 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11792 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11793 S:      Maintained
11794 T:      git git://github.com/gxt/linux.git
11795 F:      arch/unicore32/
11796
11797 UNIFDEF
11798 M:      Tony Finch <dot@dotat.at>
11799 W:      http://dotat.at/prog/unifdef
11800 S:      Maintained
11801 F:      scripts/unifdef.c
11802
11803 UNIFORM CDROM DRIVER
11804 M:      Jens Axboe <axboe@kernel.dk>
11805 W:      http://www.kernel.dk
11806 S:      Maintained
11807 F:      Documentation/cdrom/
11808 F:      drivers/cdrom/cdrom.c
11809 F:      include/linux/cdrom.h
11810 F:      include/uapi/linux/cdrom.h
11811
11812 UNISYS S-PAR DRIVERS
11813 M:      David Kershner <david.kershner@unisys.com>
11814 L:      sparmaintainer@unisys.com (Unisys internal)
11815 S:      Supported
11816 F:      drivers/staging/unisys/
11817
11818 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11819 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11820 L:      linux-scsi@vger.kernel.org
11821 S:      Supported
11822 F:      Documentation/scsi/ufs.txt
11823 F:      drivers/scsi/ufs/
11824
11825 UNSORTED BLOCK IMAGES (UBI)
11826 M:      Artem Bityutskiy <dedekind1@gmail.com>
11827 M:      Richard Weinberger <richard@nod.at>
11828 W:      http://www.linux-mtd.infradead.org/
11829 L:      linux-mtd@lists.infradead.org
11830 T:      git git://git.infradead.org/ubifs-2.6.git
11831 S:      Supported
11832 F:      drivers/mtd/ubi/
11833 F:      include/linux/mtd/ubi.h
11834 F:      include/uapi/mtd/ubi-user.h
11835
11836 USB ACM DRIVER
11837 M:      Oliver Neukum <oneukum@suse.com>
11838 L:      linux-usb@vger.kernel.org
11839 S:      Maintained
11840 F:      Documentation/usb/acm.txt
11841 F:      drivers/usb/class/cdc-acm.*
11842
11843 USB AR5523 WIRELESS DRIVER
11844 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11845 L:      linux-wireless@vger.kernel.org
11846 S:      Maintained
11847 F:      drivers/net/wireless/ath/ar5523/
11848
11849 USB ATTACHED SCSI
11850 M:      Hans de Goede <hdegoede@redhat.com>
11851 M:      Gerd Hoffmann <kraxel@redhat.com>
11852 L:      linux-usb@vger.kernel.org
11853 L:      linux-scsi@vger.kernel.org
11854 S:      Maintained
11855 F:      drivers/usb/storage/uas.c
11856
11857 USB CDC ETHERNET DRIVER
11858 M:      Oliver Neukum <oliver@neukum.org>
11859 L:      linux-usb@vger.kernel.org
11860 S:      Maintained
11861 F:      drivers/net/usb/cdc_*.c
11862 F:      include/uapi/linux/usb/cdc.h
11863
11864 USB CHAOSKEY DRIVER
11865 M:      Keith Packard <keithp@keithp.com>
11866 L:      linux-usb@vger.kernel.org
11867 S:      Maintained
11868 F:      drivers/usb/misc/chaoskey.c
11869
11870 USB CYPRESS C67X00 DRIVER
11871 M:      Peter Korsgaard <jacmet@sunsite.dk>
11872 L:      linux-usb@vger.kernel.org
11873 S:      Maintained
11874 F:      drivers/usb/c67x00/
11875
11876 USB DAVICOM DM9601 DRIVER
11877 M:      Peter Korsgaard <jacmet@sunsite.dk>
11878 L:      netdev@vger.kernel.org
11879 W:      http://www.linux-usb.org/usbnet
11880 S:      Maintained
11881 F:      drivers/net/usb/dm9601.c
11882
11883 USB DIAMOND RIO500 DRIVER
11884 M:      Cesar Miquel <miquel@df.uba.ar>
11885 L:      rio500-users@lists.sourceforge.net
11886 W:      http://rio500.sourceforge.net
11887 S:      Maintained
11888 F:      drivers/usb/misc/rio500*
11889
11890 USB EHCI DRIVER
11891 M:      Alan Stern <stern@rowland.harvard.edu>
11892 L:      linux-usb@vger.kernel.org
11893 S:      Maintained
11894 F:      Documentation/usb/ehci.txt
11895 F:      drivers/usb/host/ehci*
11896
11897 USB GADGET/PERIPHERAL SUBSYSTEM
11898 M:      Felipe Balbi <balbi@kernel.org>
11899 L:      linux-usb@vger.kernel.org
11900 W:      http://www.linux-usb.org/gadget
11901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11902 S:      Maintained
11903 F:      drivers/usb/gadget/
11904 F:      include/linux/usb/gadget*
11905
11906 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11907 M:      Jiri Kosina <jikos@kernel.org>
11908 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11909 L:      linux-usb@vger.kernel.org
11910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11911 S:      Maintained
11912 F:      Documentation/hid/hiddev.txt
11913 F:      drivers/hid/usbhid/
11914
11915 USB ISP116X DRIVER
11916 M:      Olav Kongas <ok@artecdesign.ee>
11917 L:      linux-usb@vger.kernel.org
11918 S:      Maintained
11919 F:      drivers/usb/host/isp116x*
11920 F:      include/linux/usb/isp116x.h
11921
11922 USB LAN78XX ETHERNET DRIVER
11923 M:      Woojung Huh <woojung.huh@microchip.com>
11924 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11925 L:      netdev@vger.kernel.org
11926 S:      Maintained
11927 F:      drivers/net/usb/lan78xx.*
11928
11929 USB MASS STORAGE DRIVER
11930 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11931 L:      linux-usb@vger.kernel.org
11932 L:      usb-storage@lists.one-eyed-alien.net
11933 S:      Maintained
11934 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11935 F:      drivers/usb/storage/
11936
11937 USB MIDI DRIVER
11938 M:      Clemens Ladisch <clemens@ladisch.de>
11939 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11940 T:      git git://git.alsa-project.org/alsa-kernel.git
11941 S:      Maintained
11942 F:      sound/usb/midi.*
11943
11944 USB NETWORKING DRIVERS
11945 L:      linux-usb@vger.kernel.org
11946 S:      Odd Fixes
11947 F:      drivers/net/usb/
11948
11949 USB OHCI DRIVER
11950 M:      Alan Stern <stern@rowland.harvard.edu>
11951 L:      linux-usb@vger.kernel.org
11952 S:      Maintained
11953 F:      Documentation/usb/ohci.txt
11954 F:      drivers/usb/host/ohci*
11955
11956 USB OTG FSM (Finite State Machine)
11957 M:      Peter Chen <Peter.Chen@nxp.com>
11958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11959 L:      linux-usb@vger.kernel.org
11960 S:      Maintained
11961 F:      drivers/usb/common/usb-otg-fsm.c
11962
11963 USB OVER IP DRIVER
11964 M:      Valentina Manea <valentina.manea.m@gmail.com>
11965 M:      Shuah Khan <shuahkh@osg.samsung.com>
11966 M:      Shuah Khan <shuah@kernel.org>
11967 L:      linux-usb@vger.kernel.org
11968 S:      Maintained
11969 F:      Documentation/usb/usbip_protocol.txt
11970 F:      drivers/usb/usbip/
11971 F:      tools/usb/usbip/
11972
11973 USB PEGASUS DRIVER
11974 M:      Petko Manolov <petkan@nucleusys.com>
11975 L:      linux-usb@vger.kernel.org
11976 L:      netdev@vger.kernel.org
11977 T:      git git://github.com/petkan/pegasus.git
11978 W:      https://github.com/petkan/pegasus
11979 S:      Maintained
11980 F:      drivers/net/usb/pegasus.*
11981
11982 USB PHY LAYER
11983 M:      Felipe Balbi <balbi@kernel.org>
11984 L:      linux-usb@vger.kernel.org
11985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11986 S:      Maintained
11987 F:      drivers/usb/phy/
11988
11989 USB PRINTER DRIVER (usblp)
11990 M:      Pete Zaitcev <zaitcev@redhat.com>
11991 L:      linux-usb@vger.kernel.org
11992 S:      Supported
11993 F:      drivers/usb/class/usblp.c
11994
11995 USB QMI WWAN NETWORK DRIVER
11996 M:      Bjørn Mork <bjorn@mork.no>
11997 L:      netdev@vger.kernel.org
11998 S:      Maintained
11999 F:      Documentation/ABI/testing/sysfs-class-net-qmi
12000 F:      drivers/net/usb/qmi_wwan.c
12001
12002 USB RTL8150 DRIVER
12003 M:      Petko Manolov <petkan@nucleusys.com>
12004 L:      linux-usb@vger.kernel.org
12005 L:      netdev@vger.kernel.org
12006 T:      git git://github.com/petkan/rtl8150.git
12007 W:      https://github.com/petkan/rtl8150
12008 S:      Maintained
12009 F:      drivers/net/usb/rtl8150.c
12010
12011 USB SERIAL SUBSYSTEM
12012 M:      Johan Hovold <johan@kernel.org>
12013 L:      linux-usb@vger.kernel.org
12014 S:      Maintained
12015 F:      Documentation/usb/usb-serial.txt
12016 F:      drivers/usb/serial/
12017 F:      include/linux/usb/serial.h
12018
12019 USB SMSC75XX ETHERNET DRIVER
12020 M:      Steve Glendinning <steve.glendinning@shawell.net>
12021 L:      netdev@vger.kernel.org
12022 S:      Maintained
12023 F:      drivers/net/usb/smsc75xx.*
12024
12025 USB SMSC95XX ETHERNET DRIVER
12026 M:      Steve Glendinning <steve.glendinning@shawell.net>
12027 L:      netdev@vger.kernel.org
12028 S:      Maintained
12029 F:      drivers/net/usb/smsc95xx.*
12030
12031 USB SUBSYSTEM
12032 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12033 L:      linux-usb@vger.kernel.org
12034 W:      http://www.linux-usb.org
12035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
12036 S:      Supported
12037 F:      Documentation/devicetree/bindings/usb/
12038 F:      Documentation/usb/
12039 F:      drivers/usb/
12040 F:      include/linux/usb.h
12041 F:      include/linux/usb/
12042
12043 USB UHCI DRIVER
12044 M:      Alan Stern <stern@rowland.harvard.edu>
12045 L:      linux-usb@vger.kernel.org
12046 S:      Maintained
12047 F:      drivers/usb/host/uhci*
12048
12049 USB "USBNET" DRIVER FRAMEWORK
12050 M:      Oliver Neukum <oneukum@suse.com>
12051 L:      netdev@vger.kernel.org
12052 W:      http://www.linux-usb.org/usbnet
12053 S:      Maintained
12054 F:      drivers/net/usb/usbnet.c
12055 F:      include/linux/usb/usbnet.h
12056
12057 USB VIDEO CLASS
12058 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12059 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
12060 L:      linux-media@vger.kernel.org
12061 T:      git git://linuxtv.org/media_tree.git
12062 W:      http://www.ideasonboard.org/uvc/
12063 S:      Maintained
12064 F:      drivers/media/usb/uvc/
12065 F:      include/uapi/linux/uvcvideo.h
12066
12067 USB VISION DRIVER
12068 M:      Hans Verkuil <hverkuil@xs4all.nl>
12069 L:      linux-media@vger.kernel.org
12070 T:      git git://linuxtv.org/media_tree.git
12071 W:      https://linuxtv.org
12072 S:      Odd Fixes
12073 F:      drivers/media/usb/usbvision/
12074
12075 USB WEBCAM GADGET
12076 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12077 L:      linux-usb@vger.kernel.org
12078 S:      Maintained
12079 F:      drivers/usb/gadget/function/*uvc*
12080 F:      drivers/usb/gadget/legacy/webcam.c
12081
12082 USB WIRELESS RNDIS DRIVER (rndis_wlan)
12083 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
12084 L:      linux-wireless@vger.kernel.org
12085 S:      Maintained
12086 F:      drivers/net/wireless/rndis_wlan.c
12087
12088 USB XHCI DRIVER
12089 M:      Mathias Nyman <mathias.nyman@intel.com>
12090 L:      linux-usb@vger.kernel.org
12091 S:      Supported
12092 F:      drivers/usb/host/xhci*
12093 F:      drivers/usb/host/pci-quirks*
12094
12095 USB ZD1201 DRIVER
12096 L:      linux-wireless@vger.kernel.org
12097 W:      http://linux-lc100020.sourceforge.net
12098 S:      Orphan
12099 F:      drivers/net/wireless/zydas/zd1201.*
12100
12101 USB ZR364XX DRIVER
12102 M:      Antoine Jacquet <royale@zerezo.com>
12103 L:      linux-usb@vger.kernel.org
12104 L:      linux-media@vger.kernel.org
12105 T:      git git://linuxtv.org/media_tree.git
12106 W:      http://royale.zerezo.com/zr364xx/
12107 S:      Maintained
12108 F:      Documentation/video4linux/zr364xx.txt
12109 F:      drivers/media/usb/zr364xx/
12110
12111 ULPI BUS
12112 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
12113 L:      linux-usb@vger.kernel.org
12114 S:      Maintained
12115 F:      drivers/usb/common/ulpi.c
12116 F:      include/linux/ulpi/
12117
12118 USER-MODE LINUX (UML)
12119 M:      Jeff Dike <jdike@addtoit.com>
12120 M:      Richard Weinberger <richard@nod.at>
12121 L:      user-mode-linux-devel@lists.sourceforge.net
12122 L:      user-mode-linux-user@lists.sourceforge.net
12123 W:      http://user-mode-linux.sourceforge.net
12124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
12125 S:      Maintained
12126 F:      Documentation/virtual/uml/
12127 F:      arch/um/
12128 F:      arch/x86/um/
12129 F:      fs/hostfs/
12130 F:      fs/hppfs/
12131
12132 USERSPACE I/O (UIO)
12133 M:      "Hans J. Koch" <hjk@hansjkoch.de>
12134 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12135 S:      Maintained
12136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
12137 F:      Documentation/DocBook/uio-howto.tmpl
12138 F:      drivers/uio/
12139 F:      include/linux/uio*.h
12140
12141 UTIL-LINUX PACKAGE
12142 M:      Karel Zak <kzak@redhat.com>
12143 L:      util-linux@vger.kernel.org
12144 W:      http://en.wikipedia.org/wiki/Util-linux
12145 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
12146 S:      Maintained
12147
12148 UVESAFB DRIVER
12149 M:      Michal Januszewski <spock@gentoo.org>
12150 L:      linux-fbdev@vger.kernel.org
12151 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
12152 S:      Maintained
12153 F:      Documentation/fb/uvesafb.txt
12154 F:      drivers/video/fbdev/uvesafb.*
12155
12156 VF610 NAND DRIVER
12157 M:      Stefan Agner <stefan@agner.ch>
12158 L:      linux-mtd@lists.infradead.org
12159 S:      Supported
12160 F:      drivers/mtd/nand/vf610_nfc.c
12161
12162 VFAT/FAT/MSDOS FILESYSTEM
12163 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
12164 S:      Maintained
12165 F:      Documentation/filesystems/vfat.txt
12166 F:      fs/fat/
12167
12168 VFIO DRIVER
12169 M:      Alex Williamson <alex.williamson@redhat.com>
12170 L:      kvm@vger.kernel.org
12171 T:      git git://github.com/awilliam/linux-vfio.git
12172 S:      Maintained
12173 F:      Documentation/vfio.txt
12174 F:      drivers/vfio/
12175 F:      include/linux/vfio.h
12176 F:      include/uapi/linux/vfio.h
12177
12178 VFIO PLATFORM DRIVER
12179 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
12180 L:      kvm@vger.kernel.org
12181 S:      Maintained
12182 F:      drivers/vfio/platform/
12183
12184 VIDEOBUF2 FRAMEWORK
12185 M:      Pawel Osciak <pawel@osciak.com>
12186 M:      Marek Szyprowski <m.szyprowski@samsung.com>
12187 M:      Kyungmin Park <kyungmin.park@samsung.com>
12188 L:      linux-media@vger.kernel.org
12189 S:      Maintained
12190 F:      drivers/media/v4l2-core/videobuf2-*
12191 F:      include/media/videobuf2-*
12192
12193 VIRTUAL SERIO DEVICE DRIVER
12194 M:      Stephen Chandler Paul <thatslyude@gmail.com>
12195 S:      Maintained
12196 F:      drivers/input/serio/userio.c
12197 F:      include/uapi/linux/userio.h
12198
12199 VIRTIO CONSOLE DRIVER
12200 M:      Amit Shah <amit.shah@redhat.com>
12201 L:      virtualization@lists.linux-foundation.org
12202 S:      Maintained
12203 F:      drivers/char/virtio_console.c
12204 F:      include/linux/virtio_console.h
12205 F:      include/uapi/linux/virtio_console.h
12206
12207 VIRTIO CORE, NET AND BLOCK DRIVERS
12208 M:      "Michael S. Tsirkin" <mst@redhat.com>
12209 L:      virtualization@lists.linux-foundation.org
12210 S:      Maintained
12211 F:      Documentation/devicetree/bindings/virtio/
12212 F:      drivers/virtio/
12213 F:      tools/virtio/
12214 F:      drivers/net/virtio_net.c
12215 F:      drivers/block/virtio_blk.c
12216 F:      include/linux/virtio_*.h
12217 F:      include/uapi/linux/virtio_*.h
12218
12219 VIRTIO DRIVERS FOR S390
12220 M:      Christian Borntraeger <borntraeger@de.ibm.com>
12221 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
12222 L:      linux-s390@vger.kernel.org
12223 L:      virtualization@lists.linux-foundation.org
12224 L:      kvm@vger.kernel.org
12225 S:      Supported
12226 F:      drivers/s390/virtio/
12227
12228 VIRTIO GPU DRIVER
12229 M:      David Airlie <airlied@linux.ie>
12230 M:      Gerd Hoffmann <kraxel@redhat.com>
12231 L:      dri-devel@lists.freedesktop.org
12232 L:      virtualization@lists.linux-foundation.org
12233 S:      Maintained
12234 F:      drivers/gpu/drm/virtio/
12235 F:      include/uapi/linux/virtio_gpu.h
12236
12237 VIRTIO HOST (VHOST)
12238 M:      "Michael S. Tsirkin" <mst@redhat.com>
12239 L:      kvm@vger.kernel.org
12240 L:      virtualization@lists.linux-foundation.org
12241 L:      netdev@vger.kernel.org
12242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12243 S:      Maintained
12244 F:      drivers/vhost/
12245 F:      include/uapi/linux/vhost.h
12246
12247 VIRTIO INPUT DRIVER
12248 M:      Gerd Hoffmann <kraxel@redhat.com>
12249 S:      Maintained
12250 F:      drivers/virtio/virtio_input.c
12251 F:      include/uapi/linux/virtio_input.h
12252
12253 VIA RHINE NETWORK DRIVER
12254 S:      Orphan
12255 F:      drivers/net/ethernet/via/via-rhine.c
12256
12257 VIA SD/MMC CARD CONTROLLER DRIVER
12258 M:      Bruce Chang <brucechang@via.com.tw>
12259 M:      Harald Welte <HaraldWelte@viatech.com>
12260 S:      Maintained
12261 F:      drivers/mmc/host/via-sdmmc.c
12262
12263 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12264 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12265 L:      linux-fbdev@vger.kernel.org
12266 S:      Maintained
12267 F:      include/linux/via-core.h
12268 F:      include/linux/via-gpio.h
12269 F:      include/linux/via_i2c.h
12270 F:      drivers/video/fbdev/via/
12271
12272 VIA VELOCITY NETWORK DRIVER
12273 M:      Francois Romieu <romieu@fr.zoreil.com>
12274 L:      netdev@vger.kernel.org
12275 S:      Maintained
12276 F:      drivers/net/ethernet/via/via-velocity.*
12277
12278 VIRT LIB
12279 M:      Alex Williamson <alex.williamson@redhat.com>
12280 M:      Paolo Bonzini <pbonzini@redhat.com>
12281 L:      kvm@vger.kernel.org
12282 S:      Supported
12283 F:      virt/lib/
12284
12285 VIVID VIRTUAL VIDEO DRIVER
12286 M:      Hans Verkuil <hverkuil@xs4all.nl>
12287 L:      linux-media@vger.kernel.org
12288 T:      git git://linuxtv.org/media_tree.git
12289 W:      https://linuxtv.org
12290 S:      Maintained
12291 F:      drivers/media/platform/vivid/*
12292
12293 VLAN (802.1Q)
12294 M:      Patrick McHardy <kaber@trash.net>
12295 L:      netdev@vger.kernel.org
12296 S:      Maintained
12297 F:      drivers/net/macvlan.c
12298 F:      include/linux/if_*vlan.h
12299 F:      net/8021q/
12300
12301 VLYNQ BUS
12302 M:      Florian Fainelli <florian@openwrt.org>
12303 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12304 S:      Maintained
12305 F:      drivers/vlynq/vlynq.c
12306 F:      include/linux/vlynq.h
12307
12308 VME SUBSYSTEM
12309 M:      Martyn Welch <martyn@welchs.me.uk>
12310 M:      Manohar Vanga <manohar.vanga@gmail.com>
12311 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12312 L:      devel@driverdev.osuosl.org
12313 S:      Maintained
12314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12315 F:      Documentation/vme_api.txt
12316 F:      drivers/staging/vme/
12317 F:      drivers/vme/
12318 F:      include/linux/vme*
12319
12320 VMWARE HYPERVISOR INTERFACE
12321 M:      Alok Kataria <akataria@vmware.com>
12322 L:      virtualization@lists.linux-foundation.org
12323 S:      Supported
12324 F:      arch/x86/kernel/cpu/vmware.c
12325
12326 VMWARE BALLOON DRIVER
12327 M:      Xavier Deguillard <xdeguillard@vmware.com>
12328 M:      Philip Moltmann <moltmann@vmware.com>
12329 M:      "VMware, Inc." <pv-drivers@vmware.com>
12330 L:      linux-kernel@vger.kernel.org
12331 S:      Maintained
12332 F:      drivers/misc/vmw_balloon.c
12333
12334 VMWARE VMMOUSE SUBDRIVER
12335 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12336 M:      "VMware, Inc." <pv-drivers@vmware.com>
12337 L:      linux-input@vger.kernel.org
12338 S:      Maintained
12339 F:      drivers/input/mouse/vmmouse.c
12340 F:      drivers/input/mouse/vmmouse.h
12341
12342 VMWARE VMXNET3 ETHERNET DRIVER
12343 M:      Shrikrishna Khare <skhare@vmware.com>
12344 M:      "VMware, Inc." <pv-drivers@vmware.com>
12345 L:      netdev@vger.kernel.org
12346 S:      Maintained
12347 F:      drivers/net/vmxnet3/
12348
12349 VMware PVSCSI driver
12350 M:      Arvind Kumar <arvindkumar@vmware.com>
12351 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12352 L:      linux-scsi@vger.kernel.org
12353 S:      Maintained
12354 F:      drivers/scsi/vmw_pvscsi.c
12355 F:      drivers/scsi/vmw_pvscsi.h
12356
12357 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12358 M:      Liam Girdwood <lgirdwood@gmail.com>
12359 M:      Mark Brown <broonie@kernel.org>
12360 L:      linux-kernel@vger.kernel.org
12361 W:      http://www.slimlogic.co.uk/?p=48
12362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12363 S:      Supported
12364 F:      Documentation/devicetree/bindings/regulator/
12365 F:      drivers/regulator/
12366 F:      include/dt-bindings/regulator/
12367 F:      include/linux/regulator/
12368
12369 VRF
12370 M:      David Ahern <dsa@cumulusnetworks.com>
12371 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12372 L:      netdev@vger.kernel.org
12373 S:      Maintained
12374 F:      drivers/net/vrf.c
12375 F:      Documentation/networking/vrf.txt
12376
12377 VT1211 HARDWARE MONITOR DRIVER
12378 M:      Juerg Haefliger <juergh@gmail.com>
12379 L:      linux-hwmon@vger.kernel.org
12380 S:      Maintained
12381 F:      Documentation/hwmon/vt1211
12382 F:      drivers/hwmon/vt1211.c
12383
12384 VT8231 HARDWARE MONITOR DRIVER
12385 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12386 L:      linux-hwmon@vger.kernel.org
12387 S:      Maintained
12388 F:      drivers/hwmon/vt8231.c
12389
12390 VUB300 USB to SDIO/SD/MMC bridge chip
12391 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12392 L:      linux-mmc@vger.kernel.org
12393 L:      linux-usb@vger.kernel.org
12394 S:      Supported
12395 F:      drivers/mmc/host/vub300.c
12396
12397 W1 DALLAS'S 1-WIRE BUS
12398 M:      Evgeniy Polyakov <zbr@ioremap.net>
12399 S:      Maintained
12400 F:      Documentation/w1/
12401 F:      drivers/w1/
12402
12403 W83791D HARDWARE MONITORING DRIVER
12404 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12405 L:      linux-hwmon@vger.kernel.org
12406 S:      Maintained
12407 F:      Documentation/hwmon/w83791d
12408 F:      drivers/hwmon/w83791d.c
12409
12410 W83793 HARDWARE MONITORING DRIVER
12411 M:      Rudolf Marek <r.marek@assembler.cz>
12412 L:      linux-hwmon@vger.kernel.org
12413 S:      Maintained
12414 F:      Documentation/hwmon/w83793
12415 F:      drivers/hwmon/w83793.c
12416
12417 W83795 HARDWARE MONITORING DRIVER
12418 M:      Jean Delvare <jdelvare@suse.com>
12419 L:      linux-hwmon@vger.kernel.org
12420 S:      Maintained
12421 F:      drivers/hwmon/w83795.c
12422
12423 W83L51xD SD/MMC CARD INTERFACE DRIVER
12424 M:      Pierre Ossman <pierre@ossman.eu>
12425 S:      Maintained
12426 F:      drivers/mmc/host/wbsd.*
12427
12428 WACOM PROTOCOL 4 SERIAL TABLETS
12429 M:      Julian Squires <julian@cipht.net>
12430 M:      Hans de Goede <hdegoede@redhat.com>
12431 L:      linux-input@vger.kernel.org
12432 S:      Maintained
12433 F:      drivers/input/tablet/wacom_serial4.c
12434
12435 WATCHDOG DEVICE DRIVERS
12436 M:      Wim Van Sebroeck <wim@iguana.be>
12437 R:      Guenter Roeck <linux@roeck-us.net>
12438 L:      linux-watchdog@vger.kernel.org
12439 W:      http://www.linux-watchdog.org/
12440 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12441 S:      Maintained
12442 F:      Documentation/devicetree/bindings/watchdog/
12443 F:      Documentation/watchdog/
12444 F:      drivers/watchdog/
12445 F:      include/linux/watchdog.h
12446 F:      include/uapi/linux/watchdog.h
12447
12448 WD7000 SCSI DRIVER
12449 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12450 L:      linux-scsi@vger.kernel.org
12451 S:      Maintained
12452 F:      drivers/scsi/wd7000.c
12453
12454 WIIMOTE HID DRIVER
12455 M:      David Herrmann <dh.herrmann@googlemail.com>
12456 L:      linux-input@vger.kernel.org
12457 S:      Maintained
12458 F:      drivers/hid/hid-wiimote*
12459
12460 WINBOND CIR DRIVER
12461 M:      David Härdeman <david@hardeman.nu>
12462 S:      Maintained
12463 F:      drivers/media/rc/winbond-cir.c
12464
12465 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12466 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12467 L:      linux-watchdog@vger.kernel.org
12468 S:      Maintained
12469 F:      drivers/watchdog/ebc-c384_wdt.c
12470
12471 WINSYSTEMS WS16C48 GPIO DRIVER
12472 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12473 L:      linux-gpio@vger.kernel.org
12474 S:      Maintained
12475 F:      drivers/gpio/gpio-ws16c48.c
12476
12477 WIMAX STACK
12478 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12479 M:      linux-wimax@intel.com
12480 L:      wimax@linuxwimax.org (subscribers-only)
12481 S:      Supported
12482 W:      http://linuxwimax.org
12483 F:      Documentation/wimax/README.wimax
12484 F:      include/linux/wimax/debug.h
12485 F:      include/net/wimax.h
12486 F:      include/uapi/linux/wimax.h
12487 F:      net/wimax/
12488
12489 WISTRON LAPTOP BUTTON DRIVER
12490 M:      Miloslav Trmac <mitr@volny.cz>
12491 S:      Maintained
12492 F:      drivers/input/misc/wistron_btns.c
12493
12494 WL3501 WIRELESS PCMCIA CARD DRIVER
12495 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12496 L:      linux-wireless@vger.kernel.org
12497 W:      http://oops.ghostprotocols.net:81/blog
12498 S:      Maintained
12499 F:      drivers/net/wireless/wl3501*
12500
12501 WOLFSON MICROELECTRONICS DRIVERS
12502 L:      patches@opensource.wolfsonmicro.com
12503 T:      git https://github.com/CirrusLogic/linux-drivers.git
12504 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12505 S:      Supported
12506 F:      Documentation/hwmon/wm83??
12507 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12508 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12509 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12510 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12511 F:      drivers/clk/clk-wm83*.c
12512 F:      drivers/extcon/extcon-arizona.c
12513 F:      drivers/leds/leds-wm83*.c
12514 F:      drivers/gpio/gpio-*wm*.c
12515 F:      drivers/gpio/gpio-arizona.c
12516 F:      drivers/hwmon/wm83??-hwmon.c
12517 F:      drivers/input/misc/wm831x-on.c
12518 F:      drivers/input/touchscreen/wm831x-ts.c
12519 F:      drivers/input/touchscreen/wm97*.c
12520 F:      drivers/mfd/arizona*
12521 F:      drivers/mfd/wm*.c
12522 F:      drivers/mfd/cs47l24*
12523 F:      drivers/power/wm83*.c
12524 F:      drivers/rtc/rtc-wm83*.c
12525 F:      drivers/regulator/wm8*.c
12526 F:      drivers/video/backlight/wm83*_bl.c
12527 F:      drivers/watchdog/wm83*_wdt.c
12528 F:      include/linux/mfd/arizona/
12529 F:      include/linux/mfd/wm831x/
12530 F:      include/linux/mfd/wm8350/
12531 F:      include/linux/mfd/wm8400*
12532 F:      include/linux/wm97xx.h
12533 F:      include/sound/wm????.h
12534 F:      sound/soc/codecs/arizona.?
12535 F:      sound/soc/codecs/wm*
12536 F:      sound/soc/codecs/cs47l24*
12537
12538 WORKQUEUE
12539 M:      Tejun Heo <tj@kernel.org>
12540 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12542 S:      Maintained
12543 F:      include/linux/workqueue.h
12544 F:      kernel/workqueue.c
12545 F:      Documentation/workqueue.txt
12546
12547 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12548 M:      Chen-Yu Tsai <wens@csie.org>
12549 L:      linux-kernel@vger.kernel.org
12550 S:      Maintained
12551 N:      axp[128]
12552
12553 X.25 NETWORK LAYER
12554 M:      Andrew Hendry <andrew.hendry@gmail.com>
12555 L:      linux-x25@vger.kernel.org
12556 S:      Odd Fixes
12557 F:      Documentation/networking/x25*
12558 F:      include/net/x25*
12559 F:      net/x25/
12560
12561 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12562 M:      Thomas Gleixner <tglx@linutronix.de>
12563 M:      Ingo Molnar <mingo@redhat.com>
12564 M:      "H. Peter Anvin" <hpa@zytor.com>
12565 M:      x86@kernel.org
12566 L:      linux-kernel@vger.kernel.org
12567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12568 S:      Maintained
12569 F:      Documentation/x86/
12570 F:      arch/x86/
12571
12572 X86 PLATFORM DRIVERS
12573 M:      Darren Hart <dvhart@infradead.org>
12574 L:      platform-driver-x86@vger.kernel.org
12575 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12576 S:      Maintained
12577 F:      drivers/platform/x86/
12578 F:      drivers/platform/olpc/
12579
12580 X86 MCE INFRASTRUCTURE
12581 M:      Tony Luck <tony.luck@intel.com>
12582 M:      Borislav Petkov <bp@alien8.de>
12583 L:      linux-edac@vger.kernel.org
12584 S:      Maintained
12585 F:      arch/x86/kernel/cpu/mcheck/*
12586
12587 X86 MICROCODE UPDATE SUPPORT
12588 M:      Borislav Petkov <bp@alien8.de>
12589 S:      Maintained
12590 F:      arch/x86/kernel/cpu/microcode/*
12591
12592 X86 VDSO
12593 M:      Andy Lutomirski <luto@amacapital.net>
12594 L:      linux-kernel@vger.kernel.org
12595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12596 S:      Maintained
12597 F:      arch/x86/entry/vdso/
12598
12599 XC2028/3028 TUNER DRIVER
12600 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12601 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12602 L:      linux-media@vger.kernel.org
12603 W:      https://linuxtv.org
12604 T:      git git://linuxtv.org/media_tree.git
12605 S:      Maintained
12606 F:      drivers/media/tuners/tuner-xc2028.*
12607
12608 XEN HYPERVISOR INTERFACE
12609 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12610 M:      David Vrabel <david.vrabel@citrix.com>
12611 M:      Juergen Gross <jgross@suse.com>
12612 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12614 S:      Supported
12615 F:      arch/x86/xen/
12616 F:      drivers/*/xen-*front.c
12617 F:      drivers/xen/
12618 F:      arch/x86/include/asm/xen/
12619 F:      include/xen/
12620 F:      include/uapi/xen/
12621
12622 XEN HYPERVISOR ARM
12623 M:      Stefano Stabellini <sstabellini@kernel.org>
12624 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12625 S:      Maintained
12626 F:      arch/arm/xen/
12627 F:      arch/arm/include/asm/xen/
12628
12629 XEN HYPERVISOR ARM64
12630 M:      Stefano Stabellini <sstabellini@kernel.org>
12631 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12632 S:      Maintained
12633 F:      arch/arm64/xen/
12634 F:      arch/arm64/include/asm/xen/
12635
12636 XEN NETWORK BACKEND DRIVER
12637 M:      Wei Liu <wei.liu2@citrix.com>
12638 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12639 L:      netdev@vger.kernel.org
12640 S:      Supported
12641 F:      drivers/net/xen-netback/*
12642
12643 XEN PCI SUBSYSTEM
12644 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12645 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12646 S:      Supported
12647 F:      arch/x86/pci/*xen*
12648 F:      drivers/pci/*xen*
12649
12650 XEN BLOCK SUBSYSTEM
12651 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12652 M:      Roger Pau Monné <roger.pau@citrix.com>
12653 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12654 S:      Supported
12655 F:      drivers/block/xen-blkback/*
12656 F:      drivers/block/xen*
12657
12658 XEN PVSCSI DRIVERS
12659 M:      Juergen Gross <jgross@suse.com>
12660 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12661 L:      linux-scsi@vger.kernel.org
12662 S:      Supported
12663 F:      drivers/scsi/xen-scsifront.c
12664 F:      drivers/xen/xen-scsiback.c
12665 F:      include/xen/interface/io/vscsiif.h
12666
12667 XEN SWIOTLB SUBSYSTEM
12668 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12669 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12670 S:      Supported
12671 F:      arch/x86/xen/*swiotlb*
12672 F:      drivers/xen/*swiotlb*
12673
12674 XFS FILESYSTEM
12675 P:      Silicon Graphics Inc
12676 M:      Dave Chinner <david@fromorbit.com>
12677 M:      xfs@oss.sgi.com
12678 L:      xfs@oss.sgi.com
12679 W:      http://oss.sgi.com/projects/xfs
12680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12681 S:      Supported
12682 F:      Documentation/filesystems/xfs.txt
12683 F:      fs/xfs/
12684
12685 XILINX AXI ETHERNET DRIVER
12686 M:      Anirudha Sarangi <anirudh@xilinx.com>
12687 M:      John Linn <John.Linn@xilinx.com>
12688 S:      Maintained
12689 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12690
12691 XILINX UARTLITE SERIAL DRIVER
12692 M:      Peter Korsgaard <jacmet@sunsite.dk>
12693 L:      linux-serial@vger.kernel.org
12694 S:      Maintained
12695 F:      drivers/tty/serial/uartlite.c
12696
12697 XILINX VIDEO IP CORES
12698 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12699 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12700 L:      linux-media@vger.kernel.org
12701 T:      git git://linuxtv.org/media_tree.git
12702 S:      Supported
12703 F:      Documentation/devicetree/bindings/media/xilinx/
12704 F:      drivers/media/platform/xilinx/
12705 F:      include/uapi/linux/xilinx-v4l2-controls.h
12706
12707 XILLYBUS DRIVER
12708 M:      Eli Billauer <eli.billauer@gmail.com>
12709 L:      linux-kernel@vger.kernel.org
12710 S:      Supported
12711 F:      drivers/char/xillybus/
12712
12713 XTENSA XTFPGA PLATFORM SUPPORT
12714 M:      Max Filippov <jcmvbkbc@gmail.com>
12715 L:      linux-xtensa@linux-xtensa.org
12716 S:      Maintained
12717 F:      drivers/spi/spi-xtensa-xtfpga.c
12718 F:      sound/soc/xtensa/xtfpga-i2s.c
12719
12720 YAM DRIVER FOR AX.25
12721 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12722 L:      linux-hams@vger.kernel.org
12723 S:      Maintained
12724 F:      drivers/net/hamradio/yam*
12725 F:      include/linux/yam.h
12726
12727 YEALINK PHONE DRIVER
12728 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12729 L:      usbb2k-api-dev@nongnu.org
12730 S:      Maintained
12731 F:      Documentation/input/yealink.txt
12732 F:      drivers/input/misc/yealink.*
12733
12734 Z8530 DRIVER FOR AX.25
12735 M:      Joerg Reuter <jreuter@yaina.de>
12736 W:      http://yaina.de/jreuter/
12737 W:      http://www.qsl.net/dl1bke/
12738 L:      linux-hams@vger.kernel.org
12739 S:      Maintained
12740 F:      Documentation/networking/z8530drv.txt
12741 F:      drivers/net/hamradio/*scc.c
12742 F:      drivers/net/hamradio/z8530.h
12743
12744 ZBUD COMPRESSED PAGE ALLOCATOR
12745 M:      Seth Jennings <sjenning@redhat.com>
12746 L:      linux-mm@kvack.org
12747 S:      Maintained
12748 F:      mm/zbud.c
12749 F:      include/linux/zbud.h
12750
12751 ZD1211RW WIRELESS DRIVER
12752 M:      Daniel Drake <dsd@gentoo.org>
12753 M:      Ulrich Kunitz <kune@deine-taler.de>
12754 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12755 L:      linux-wireless@vger.kernel.org
12756 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12757 S:      Maintained
12758 F:      drivers/net/wireless/zydas/zd1211rw/
12759
12760 ZPOOL COMPRESSED PAGE STORAGE API
12761 M:      Dan Streetman <ddstreet@ieee.org>
12762 L:      linux-mm@kvack.org
12763 S:      Maintained
12764 F:      mm/zpool.c
12765 F:      include/linux/zpool.h
12766
12767 ZR36067 VIDEO FOR LINUX DRIVER
12768 L:      mjpeg-users@lists.sourceforge.net
12769 L:      linux-media@vger.kernel.org
12770 W:      http://mjpeg.sourceforge.net/driver-zoran/
12771 T:      hg https://linuxtv.org/hg/v4l-dvb
12772 S:      Odd Fixes
12773 F:      drivers/media/pci/zoran/
12774
12775 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12776 M:      Minchan Kim <minchan@kernel.org>
12777 M:      Nitin Gupta <ngupta@vflare.org>
12778 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12779 L:      linux-kernel@vger.kernel.org
12780 S:      Maintained
12781 F:      drivers/block/zram/
12782 F:      Documentation/blockdev/zram.txt
12783
12784 ZS DECSTATION Z85C30 SERIAL DRIVER
12785 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12786 S:      Maintained
12787 F:      drivers/tty/serial/zs.*
12788
12789 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12790 M:      Minchan Kim <minchan@kernel.org>
12791 M:      Nitin Gupta <ngupta@vflare.org>
12792 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12793 L:      linux-mm@kvack.org
12794 S:      Maintained
12795 F:      mm/zsmalloc.c
12796 F:      include/linux/zsmalloc.h
12797 F:      Documentation/vm/zsmalloc.txt
12798
12799 ZSWAP COMPRESSED SWAP CACHING
12800 M:      Seth Jennings <sjenning@redhat.com>
12801 L:      linux-mm@kvack.org
12802 S:      Maintained
12803 F:      mm/zswap.c
12804
12805 THE REST
12806 M:      Linus Torvalds <torvalds@linux-foundation.org>
12807 L:      linux-kernel@vger.kernel.org
12808 Q:      http://patchwork.kernel.org/project/LKML/list/
12809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12810 S:      Buried alive in reporters
12811 F:      *
12812 F:      */