Merge tag 'clk-for-linus-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/clk...
[sfrench/cifs-2.6.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/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@microsemi.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:      Documentation/ABI/testing/configfs-acpi
292 F:      drivers/pci/*acpi*
293 F:      drivers/pci/*/*acpi*
294 F:      drivers/pci/*/*/*acpi*
295 F:      tools/power/acpi/
296
297 ACPI COMPONENT ARCHITECTURE (ACPICA)
298 M:      Robert Moore <robert.moore@intel.com>
299 M:      Lv Zheng <lv.zheng@intel.com>
300 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
301 L:      linux-acpi@vger.kernel.org
302 L:      devel@acpica.org
303 W:      https://acpica.org/
304 W:      https://github.com/acpica/acpica/
305 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307 S:      Supported
308 F:      drivers/acpi/acpica/
309 F:      include/acpi/
310 F:      tools/power/acpi/
311
312 ACPI FAN DRIVER
313 M:      Zhang Rui <rui.zhang@intel.com>
314 L:      linux-acpi@vger.kernel.org
315 W:      https://01.org/linux-acpi
316 S:      Supported
317 F:      drivers/acpi/fan.c
318
319 ACPI THERMAL DRIVER
320 M:      Zhang Rui <rui.zhang@intel.com>
321 L:      linux-acpi@vger.kernel.org
322 W:      https://01.org/linux-acpi
323 S:      Supported
324 F:      drivers/acpi/*thermal*
325
326 ACPI VIDEO DRIVER
327 M:      Zhang Rui <rui.zhang@intel.com>
328 L:      linux-acpi@vger.kernel.org
329 W:      https://01.org/linux-acpi
330 S:      Supported
331 F:      drivers/acpi/acpi_video.c
332
333 ACPI WMI DRIVER
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Orphan
336 F:      drivers/platform/x86/wmi.c
337
338 AD1889 ALSA SOUND DRIVER
339 M:      Thibaut Varene <T-Bone@parisc-linux.org>
340 W:      http://wiki.parisc-linux.org/AD1889
341 L:      linux-parisc@vger.kernel.org
342 S:      Maintained
343 F:      sound/pci/ad1889.*
344
345 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
346 M:      Michael Hennerich <michael.hennerich@analog.com>
347 W:      http://wiki.analog.com/AD5254
348 W:      http://ez.analog.com/community/linux-device-drivers
349 S:      Supported
350 F:      drivers/misc/ad525x_dpot.c
351
352 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
353 M:      Michael Hennerich <michael.hennerich@analog.com>
354 W:      http://wiki.analog.com/AD5398
355 W:      http://ez.analog.com/community/linux-device-drivers
356 S:      Supported
357 F:      drivers/regulator/ad5398.c
358
359 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
360 M:      Michael Hennerich <michael.hennerich@analog.com>
361 W:      http://wiki.analog.com/AD7142
362 W:      http://ez.analog.com/community/linux-device-drivers
363 S:      Supported
364 F:      drivers/input/misc/ad714x.c
365
366 AD7877 TOUCHSCREEN DRIVER
367 M:      Michael Hennerich <michael.hennerich@analog.com>
368 W:      http://wiki.analog.com/AD7877
369 W:      http://ez.analog.com/community/linux-device-drivers
370 S:      Supported
371 F:      drivers/input/touchscreen/ad7877.c
372
373 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
374 M:      Michael Hennerich <michael.hennerich@analog.com>
375 W:      http://wiki.analog.com/AD7879
376 W:      http://ez.analog.com/community/linux-device-drivers
377 S:      Supported
378 F:      drivers/input/touchscreen/ad7879.c
379
380 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
381 M:      Jiri Kosina <jikos@kernel.org>
382 S:      Maintained
383
384 ADF7242 IEEE 802.15.4 RADIO DRIVER
385 M:      Michael Hennerich <michael.hennerich@analog.com>
386 W:      https://wiki.analog.com/ADF7242
387 W:      http://ez.analog.com/community/linux-device-drivers
388 L:      linux-wpan@vger.kernel.org
389 S:      Supported
390 F:      drivers/net/ieee802154/adf7242.c
391 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
392
393 ADM1025 HARDWARE MONITOR DRIVER
394 M:      Jean Delvare <jdelvare@suse.com>
395 L:      linux-hwmon@vger.kernel.org
396 S:      Maintained
397 F:      Documentation/hwmon/adm1025
398 F:      drivers/hwmon/adm1025.c
399
400 ADM1029 HARDWARE MONITOR DRIVER
401 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
402 L:      linux-hwmon@vger.kernel.org
403 S:      Maintained
404 F:      drivers/hwmon/adm1029.c
405
406 ADM8211 WIRELESS DRIVER
407 L:      linux-wireless@vger.kernel.org
408 W:      http://wireless.kernel.org/
409 S:      Orphan
410 F:      drivers/net/wireless/admtek/adm8211.*
411
412 ADP1653 FLASH CONTROLLER DRIVER
413 M:      Sakari Ailus <sakari.ailus@iki.fi>
414 L:      linux-media@vger.kernel.org
415 S:      Maintained
416 F:      drivers/media/i2c/adp1653.c
417 F:      include/media/i2c/adp1653.h
418
419 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP5520
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/mfd/adp5520.c
425 F:      drivers/video/backlight/adp5520_bl.c
426 F:      drivers/leds/leds-adp5520.c
427 F:      drivers/gpio/gpio-adp5520.c
428 F:      drivers/input/keyboard/adp5520-keys.c
429
430 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
431 M:      Michael Hennerich <michael.hennerich@analog.com>
432 W:      http://wiki.analog.com/ADP5588
433 W:      http://ez.analog.com/community/linux-device-drivers
434 S:      Supported
435 F:      drivers/input/keyboard/adp5588-keys.c
436 F:      drivers/gpio/gpio-adp5588.c
437
438 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
439 M:      Michael Hennerich <michael.hennerich@analog.com>
440 W:      http://wiki.analog.com/ADP8860
441 W:      http://ez.analog.com/community/linux-device-drivers
442 S:      Supported
443 F:      drivers/video/backlight/adp8860_bl.c
444
445 ADS1015 HARDWARE MONITOR DRIVER
446 M:      Dirk Eibach <eibach@gdsys.de>
447 L:      linux-hwmon@vger.kernel.org
448 S:      Maintained
449 F:      Documentation/hwmon/ads1015
450 F:      drivers/hwmon/ads1015.c
451 F:      include/linux/i2c/ads1015.h
452
453 ADT746X FAN DRIVER
454 M:      Colin Leroy <colin@colino.net>
455 S:      Maintained
456 F:      drivers/macintosh/therm_adt746x.c
457
458 ADT7475 HARDWARE MONITOR DRIVER
459 M:      Jean Delvare <jdelvare@suse.com>
460 L:      linux-hwmon@vger.kernel.org
461 S:      Maintained
462 F:      Documentation/hwmon/adt7475
463 F:      drivers/hwmon/adt7475.c
464
465 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 W:      http://wiki.analog.com/ADXL345
468 W:      http://ez.analog.com/community/linux-device-drivers
469 S:      Supported
470 F:      drivers/input/misc/adxl34x.c
471
472 ADVANSYS SCSI DRIVER
473 M:      Matthew Wilcox <matthew@wil.cx>
474 M:      Hannes Reinecke <hare@suse.com>
475 L:      linux-scsi@vger.kernel.org
476 S:      Maintained
477 F:      Documentation/scsi/advansys.txt
478 F:      drivers/scsi/advansys.c
479
480 AEDSP16 DRIVER
481 M:      Riccardo Facchetti <fizban@tin.it>
482 S:      Maintained
483 F:      sound/oss/aedsp16.c
484
485 AF9013 MEDIA DRIVER
486 M:      Antti Palosaari <crope@iki.fi>
487 L:      linux-media@vger.kernel.org
488 W:      https://linuxtv.org
489 W:      http://palosaari.fi/linux/
490 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
491 T:      git git://linuxtv.org/anttip/media_tree.git
492 S:      Maintained
493 F:      drivers/media/dvb-frontends/af9013*
494
495 AF9033 MEDIA DRIVER
496 M:      Antti Palosaari <crope@iki.fi>
497 L:      linux-media@vger.kernel.org
498 W:      https://linuxtv.org
499 W:      http://palosaari.fi/linux/
500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
501 T:      git git://linuxtv.org/anttip/media_tree.git
502 S:      Maintained
503 F:      drivers/media/dvb-frontends/af9033*
504
505 AFFS FILE SYSTEM
506 L:      linux-fsdevel@vger.kernel.org
507 S:      Orphan
508 F:      Documentation/filesystems/affs.txt
509 F:      fs/affs/
510
511 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
512 M:      David Howells <dhowells@redhat.com>
513 L:      linux-afs@lists.infradead.org
514 S:      Supported
515 F:      fs/afs/
516 F:      include/net/af_rxrpc.h
517 F:      net/rxrpc/af_rxrpc.c
518
519 AGPGART DRIVER
520 M:      David Airlie <airlied@linux.ie>
521 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
522 S:      Maintained
523 F:      drivers/char/agp/
524 F:      include/linux/agp*
525 F:      include/uapi/linux/agp*
526
527 AHA152X SCSI DRIVER
528 M:      "Juergen E. Fischer" <fischer@norbit.de>
529 L:      linux-scsi@vger.kernel.org
530 S:      Maintained
531 F:      drivers/scsi/aha152x*
532 F:      drivers/scsi/pcmcia/aha152x*
533
534 AIC7XXX / AIC79XX SCSI DRIVER
535 M:      Hannes Reinecke <hare@suse.com>
536 L:      linux-scsi@vger.kernel.org
537 S:      Maintained
538 F:      drivers/scsi/aic7xxx/
539
540 AIMSLAB FM RADIO RECEIVER DRIVER
541 M:      Hans Verkuil <hverkuil@xs4all.nl>
542 L:      linux-media@vger.kernel.org
543 T:      git git://linuxtv.org/media_tree.git
544 W:      https://linuxtv.org
545 S:      Maintained
546 F:      drivers/media/radio/radio-aimslab*
547
548 AIO
549 M:      Benjamin LaHaise <bcrl@kvack.org>
550 L:      linux-aio@kvack.org
551 S:      Supported
552 F:      fs/aio.c
553 F:      include/linux/*aio*.h
554
555 AIRSPY MEDIA DRIVER
556 M:      Antti Palosaari <crope@iki.fi>
557 L:      linux-media@vger.kernel.org
558 W:      https://linuxtv.org
559 W:      http://palosaari.fi/linux/
560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
561 T:      git git://linuxtv.org/anttip/media_tree.git
562 S:      Maintained
563 F:      drivers/media/usb/airspy/
564
565 ALCATEL SPEEDTOUCH USB DRIVER
566 M:      Duncan Sands <duncan.sands@free.fr>
567 L:      linux-usb@vger.kernel.org
568 W:      http://www.linux-usb.org/SpeedTouch/
569 S:      Maintained
570 F:      drivers/usb/atm/speedtch.c
571 F:      drivers/usb/atm/usbatm.c
572
573 ALCHEMY AU1XX0 MMC DRIVER
574 M:      Manuel Lauss <manuel.lauss@gmail.com>
575 S:      Maintained
576 F:      drivers/mmc/host/au1xmmc.c
577
578 ALI1563 I2C DRIVER
579 M:      Rudolf Marek <r.marek@assembler.cz>
580 L:      linux-i2c@vger.kernel.org
581 S:      Maintained
582 F:      Documentation/i2c/busses/i2c-ali1563
583 F:      drivers/i2c/busses/i2c-ali1563.c
584
585 ALLWINNER SECURITY SYSTEM
586 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
587 L:      linux-crypto@vger.kernel.org
588 S:      Maintained
589 F:      drivers/crypto/sunxi-ss/
590
591 ALPHA PORT
592 M:      Richard Henderson <rth@twiddle.net>
593 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
594 M:      Matt Turner <mattst88@gmail.com>
595 S:      Odd Fixes
596 L:      linux-alpha@vger.kernel.org
597 F:      arch/alpha/
598
599 ALPS PS/2 TOUCHPAD DRIVER
600 R:      Pali Rohár <pali.rohar@gmail.com>
601 F:      drivers/input/mouse/alps.*
602
603 ALTERA MAILBOX DRIVER
604 M:      Ley Foon Tan <lftan@altera.com>
605 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
606 S:      Maintained
607 F:      drivers/mailbox/mailbox-altera.c
608
609 ALTERA PIO DRIVER
610 M:      Tien Hock Loh <thloh@altera.com>
611 L:      linux-gpio@vger.kernel.org
612 S:      Maintained
613 F:      drivers/gpio/gpio-altera.c
614
615 ALTERA TRIPLE SPEED ETHERNET DRIVER
616 M:      Vince Bridgers <vbridger@opensource.altera.com>
617 L:      netdev@vger.kernel.org
618 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
619 S:      Maintained
620 F:      drivers/net/ethernet/altera/
621
622 ALTERA UART/JTAG UART SERIAL DRIVERS
623 M:      Tobias Klauser <tklauser@distanz.ch>
624 L:      linux-serial@vger.kernel.org
625 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
626 S:      Maintained
627 F:      drivers/tty/serial/altera_uart.c
628 F:      drivers/tty/serial/altera_jtaguart.c
629 F:      include/linux/altera_uart.h
630 F:      include/linux/altera_jtaguart.h
631
632 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
633 M:      Tom Lendacky <thomas.lendacky@amd.com>
634 M:      Gary Hook <gary.hook@amd.com>
635 L:      linux-crypto@vger.kernel.org
636 S:      Supported
637 F:      drivers/crypto/ccp/
638 F:      include/linux/ccp.h
639
640 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
641 M:      Huang Rui <ray.huang@amd.com>
642 L:      linux-hwmon@vger.kernel.org
643 S:      Supported
644 F:      Documentation/hwmon/fam15h_power
645 F:      drivers/hwmon/fam15h_power.c
646
647 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
648 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
649 S:      Orphan
650 F:      drivers/usb/gadget/udc/amd5536udc.*
651
652 AMD GEODE PROCESSOR/CHIPSET SUPPORT
653 P:      Andres Salomon <dilinger@queued.net>
654 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
655 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
656 S:      Supported
657 F:      drivers/char/hw_random/geode-rng.c
658 F:      drivers/crypto/geode*
659 F:      drivers/video/fbdev/geode/
660 F:      arch/x86/include/asm/geode.h
661
662 AMD IOMMU (AMD-VI)
663 M:      Joerg Roedel <joro@8bytes.org>
664 L:      iommu@lists.linux-foundation.org
665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
666 S:      Maintained
667 F:      drivers/iommu/amd_iommu*.[ch]
668 F:      include/linux/amd-iommu.h
669
670 AMD KFD
671 M:      Oded Gabbay <oded.gabbay@gmail.com>
672 L:      dri-devel@lists.freedesktop.org
673 T:      git git://people.freedesktop.org/~gabbayo/linux.git
674 S:      Supported
675 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
676 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
677 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
678 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
679 F:      drivers/gpu/drm/amd/amdkfd/
680 F:      drivers/gpu/drm/amd/include/cik_structs.h
681 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
682 F:      drivers/gpu/drm/amd/include/vi_structs.h
683 F:      drivers/gpu/drm/radeon/radeon_kfd.c
684 F:      drivers/gpu/drm/radeon/radeon_kfd.h
685 F:      include/uapi/linux/kfd_ioctl.h
686
687 AMD SEATTLE DEVICE TREE SUPPORT
688 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
689 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
690 M:      Tom Lendacky <thomas.lendacky@amd.com>
691 S:      Supported
692 F:      arch/arm64/boot/dts/amd/
693
694 AMD XGBE DRIVER
695 M:      Tom Lendacky <thomas.lendacky@amd.com>
696 L:      netdev@vger.kernel.org
697 S:      Supported
698 F:      drivers/net/ethernet/amd/xgbe/
699 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
700
701 AMS (Apple Motion Sensor) DRIVER
702 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
703 S:      Supported
704 F:      drivers/macintosh/ams/
705
706 ANALOG DEVICES INC AD9389B DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/ad9389b*
711
712 ANALOG DEVICES INC ADV7180 DRIVER
713 M:      Lars-Peter Clausen <lars@metafoo.de>
714 L:      linux-media@vger.kernel.org
715 W:      http://ez.analog.com/community/linux-device-drivers
716 S:      Supported
717 F:      drivers/media/i2c/adv7180.c
718
719 ANALOG DEVICES INC ADV7511 DRIVER
720 M:      Hans Verkuil <hans.verkuil@cisco.com>
721 L:      linux-media@vger.kernel.org
722 S:      Maintained
723 F:      drivers/media/i2c/adv7511*
724
725 ANALOG DEVICES INC ADV7604 DRIVER
726 M:      Hans Verkuil <hans.verkuil@cisco.com>
727 L:      linux-media@vger.kernel.org
728 S:      Maintained
729 F:      drivers/media/i2c/adv7604*
730
731 ANALOG DEVICES INC ADV7842 DRIVER
732 M:      Hans Verkuil <hans.verkuil@cisco.com>
733 L:      linux-media@vger.kernel.org
734 S:      Maintained
735 F:      drivers/media/i2c/adv7842*
736
737 ANALOG DEVICES INC ASOC CODEC DRIVERS
738 M:      Lars-Peter Clausen <lars@metafoo.de>
739 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
740 W:      http://wiki.analog.com/
741 W:      http://ez.analog.com/community/linux-device-drivers
742 S:      Supported
743 F:      sound/soc/codecs/adau*
744 F:      sound/soc/codecs/adav*
745 F:      sound/soc/codecs/ad1*
746 F:      sound/soc/codecs/ad7*
747 F:      sound/soc/codecs/ssm*
748 F:      sound/soc/codecs/sigmadsp.*
749
750 ANALOG DEVICES INC ASOC DRIVERS
751 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
753 W:      http://blackfin.uclinux.org/
754 S:      Supported
755 F:      sound/soc/blackfin/*
756
757 ANALOG DEVICES INC IIO DRIVERS
758 M:      Lars-Peter Clausen <lars@metafoo.de>
759 M:      Michael Hennerich <Michael.Hennerich@analog.com>
760 W:      http://wiki.analog.com/
761 W:      http://ez.analog.com/community/linux-device-drivers
762 S:      Supported
763 F:      drivers/iio/*/ad*
764 X:      drivers/iio/*/adjd*
765 F:      drivers/staging/iio/*/ad*
766 F:      staging/iio/trigger/iio-trig-bfin-timer.c
767
768 ANALOG DEVICES INC DMA DRIVERS
769 M:      Lars-Peter Clausen <lars@metafoo.de>
770 W:      http://ez.analog.com/community/linux-device-drivers
771 S:      Supported
772 F:      drivers/dma/dma-axi-dmac.c
773
774 ANDROID DRIVERS
775 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
776 M:      Arve Hjønnevåg <arve@android.com>
777 M:      Riley Andrews <riandrews@android.com>
778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
779 L:      devel@driverdev.osuosl.org
780 S:      Supported
781 F:      drivers/android/
782 F:      drivers/staging/android/
783
784 ANDROID ION DRIVER
785 M:      Laura Abbott <labbott@redhat.com>
786 M:      Sumit Semwal <sumit.semwal@linaro.org>
787 L:      devel@driverdev.osuosl.org
788 S:      Supported
789 F:      drivers/staging/android/ion
790 F:      drivers/staging/android/uapi/ion.h
791 F:      drivers/staging/android/uapi/ion_test.h
792
793 AOA (Apple Onboard Audio) ALSA DRIVER
794 M:      Johannes Berg <johannes@sipsolutions.net>
795 L:      linuxppc-dev@lists.ozlabs.org
796 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
797 S:      Maintained
798 F:      sound/aoa/
799
800 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
801 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
802 L:      linux-iio@vger.kernel.org
803 S:      Maintained
804 F:      drivers/iio/dac/stx104.c
805
806 APM DRIVER
807 M:      Jiri Kosina <jikos@kernel.org>
808 S:      Odd fixes
809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
810 F:      arch/x86/kernel/apm_32.c
811 F:      include/linux/apm_bios.h
812 F:      include/uapi/linux/apm_bios.h
813 F:      drivers/char/apm-emulation.c
814
815 APPLE BCM5974 MULTITOUCH DRIVER
816 M:      Henrik Rydberg <rydberg@bitmath.org>
817 L:      linux-input@vger.kernel.org
818 S:      Odd fixes
819 F:      drivers/input/mouse/bcm5974.c
820
821 APPLE SMC DRIVER
822 M:      Henrik Rydberg <rydberg@bitmath.org>
823 L:      linux-hwmon@vger.kernel.org
824 S:      Odd fixes
825 F:      drivers/hwmon/applesmc.c
826
827 APPLETALK NETWORK LAYER
828 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
829 S:      Maintained
830 F:      drivers/net/appletalk/
831 F:      net/appletalk/
832
833 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
834 M:      Duc Dang <dhdang@apm.com>
835 S:      Supported
836 F:      arch/arm64/boot/dts/apm/
837
838 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
839 M:      Iyappan Subramanian <isubramanian@apm.com>
840 M:      Keyur Chudgar <kchudgar@apm.com>
841 S:      Supported
842 F:      drivers/net/ethernet/apm/xgene/
843 F:      drivers/net/phy/mdio-xgene.c
844 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
845 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
846
847 APTINA CAMERA SENSOR PLL
848 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
849 L:      linux-media@vger.kernel.org
850 S:      Maintained
851 F:      drivers/media/i2c/aptina-pll.*
852
853 ARC FRAMEBUFFER DRIVER
854 M:      Jaya Kumar <jayalk@intworks.biz>
855 S:      Maintained
856 F:      drivers/video/fbdev/arcfb.c
857 F:      drivers/video/fbdev/core/fb_defio.c
858
859 ARCNET NETWORK LAYER
860 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
861 L:      netdev@vger.kernel.org
862 S:      Maintained
863 F:      drivers/net/arcnet/
864 F:      include/uapi/linux/if_arcnet.h
865
866 ARC PGU DRM DRIVER
867 M:      Alexey Brodkin <abrodkin@synopsys.com>
868 S:      Supported
869 F:      drivers/gpu/drm/arc/
870 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
871
872 ARM HDLCD DRM DRIVER
873 M:      Liviu Dudau <liviu.dudau@arm.com>
874 S:      Supported
875 F:      drivers/gpu/drm/arm/
876 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
877
878 ARM MFM AND FLOPPY DRIVERS
879 M:      Ian Molton <spyro@f2s.com>
880 S:      Maintained
881 F:      arch/arm/lib/floppydma.S
882 F:      arch/arm/include/asm/floppy.h
883
884 ARM PMU PROFILING AND DEBUGGING
885 M:      Will Deacon <will.deacon@arm.com>
886 R:      Mark Rutland <mark.rutland@arm.com>
887 S:      Maintained
888 F:      arch/arm*/kernel/perf_*
889 F:      arch/arm/oprofile/common.c
890 F:      arch/arm*/kernel/hw_breakpoint.c
891 F:      arch/arm*/include/asm/hw_breakpoint.h
892 F:      arch/arm*/include/asm/perf_event.h
893 F:      drivers/perf/arm_pmu.c
894 F:      include/linux/perf/arm_pmu.h
895
896 ARM PORT
897 M:      Russell King <linux@armlinux.org.uk>
898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
899 W:      http://www.armlinux.org.uk/
900 S:      Maintained
901 F:      arch/arm/
902
903 ARM SUB-ARCHITECTURES
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906 F:      arch/arm/mach-*/
907 F:      arch/arm/plat-*/
908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
909
910 ARM PRIMECELL AACI PL041 DRIVER
911 M:      Russell King <linux@armlinux.org.uk>
912 S:      Maintained
913 F:      sound/arm/aaci.*
914
915 ARM PRIMECELL CLCD PL110 DRIVER
916 M:      Russell King <linux@armlinux.org.uk>
917 S:      Maintained
918 F:      drivers/video/fbdev/amba-clcd.*
919
920 ARM PRIMECELL KMI PL050 DRIVER
921 M:      Russell King <linux@armlinux.org.uk>
922 S:      Maintained
923 F:      drivers/input/serio/ambakmi.*
924 F:      include/linux/amba/kmi.h
925
926 ARM PRIMECELL MMCI PL180/1 DRIVER
927 M:      Russell King <linux@armlinux.org.uk>
928 S:      Maintained
929 F:      drivers/mmc/host/mmci.*
930 F:      include/linux/amba/mmci.h
931
932 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
933 M:      Russell King <linux@armlinux.org.uk>
934 S:      Maintained
935 F:      drivers/tty/serial/amba-pl01*.c
936 F:      include/linux/amba/serial.h
937
938 ARM PRIMECELL BUS SUPPORT
939 M:      Russell King <linux@armlinux.org.uk>
940 S:      Maintained
941 F:      drivers/amba/
942 F:      include/linux/amba/bus.h
943
944 ARM/ADS SPHERE MACHINE SUPPORT
945 M:      Lennert Buytenhek <kernel@wantstofly.org>
946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947 S:      Maintained
948
949 ARM/AFEB9260 MACHINE SUPPORT
950 M:      Sergey Lapin <slapin@ossfans.org>
951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952 S:      Maintained
953
954 ARM/AJECO 1ARM MACHINE SUPPORT
955 M:      Lennert Buytenhek <kernel@wantstofly.org>
956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957 S:      Maintained
958
959 ARM/Allwinner sunXi SoC support
960 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
961 M:      Chen-Yu Tsai <wens@csie.org>
962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
963 S:      Maintained
964 N:      sun[x456789]i
965
966 ARM/Allwinner SoC Clock Support
967 M:      Emilio López <emilio@elopez.com.ar>
968 S:      Maintained
969 F:      drivers/clk/sunxi/
970
971 ARM/Amlogic Meson SoC support
972 M:      Carlo Caione <carlo@caione.org>
973 M:      Kevin Hilman <khilman@baylibre.com>
974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975 L:      linux-amlogic@lists.infradead.org
976 W:      http://linux-meson.com/
977 S:      Maintained
978 F:      arch/arm/mach-meson/
979 F:      arch/arm/boot/dts/meson*
980 F:      arch/arm64/boot/dts/amlogic/
981 F:      drivers/pinctrl/meson/
982 N:      meson
983
984 ARM/Annapurna Labs ALPINE ARCHITECTURE
985 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
986 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
987 S:      Maintained
988 F:      arch/arm/mach-alpine/
989 F:      arch/arm/boot/dts/alpine*
990 F:      arch/arm64/boot/dts/al/
991 F:      drivers/*/*alpine*
992
993 ARM/ARTPEC MACHINE SUPPORT
994 M:      Jesper Nilsson <jesper.nilsson@axis.com>
995 M:      Lars Persson <lars.persson@axis.com>
996 M:      Niklas Cassel <niklas.cassel@axis.com>
997 S:      Maintained
998 L:      linux-arm-kernel@axis.com
999 F:      arch/arm/mach-artpec
1000 F:      arch/arm/boot/dts/artpec6*
1001 F:      drivers/clk/axis
1002
1003 ARM/ASPEED MACHINE SUPPORT
1004 M:      Joel Stanley <joel@jms.id.au>
1005 S:      Maintained
1006 F:      arch/arm/mach-aspeed/
1007 F:      arch/arm/boot/dts/aspeed-*
1008 F:      drivers/*/*aspeed*
1009
1010 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1011 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1012 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1013 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1015 W:      http://www.linux4sam.org
1016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1017 S:      Supported
1018 F:      arch/arm/mach-at91/
1019 F:      include/soc/at91/
1020 F:      arch/arm/boot/dts/at91*.dts
1021 F:      arch/arm/boot/dts/at91*.dtsi
1022 F:      arch/arm/boot/dts/sama*.dts
1023 F:      arch/arm/boot/dts/sama*.dtsi
1024 F:      arch/arm/include/debug/at91.S
1025
1026 ARM/ATMEL AT91 Clock Support
1027 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1028 S:      Maintained
1029 F:      drivers/clk/at91
1030
1031 ARM/CALXEDA HIGHBANK ARCHITECTURE
1032 M:      Rob Herring <robh@kernel.org>
1033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1034 S:      Maintained
1035 F:      arch/arm/mach-highbank/
1036 F:      arch/arm/boot/dts/highbank.dts
1037 F:      arch/arm/boot/dts/ecx-*.dts*
1038
1039 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1040 M:      Krzysztof Halasa <khalasa@piap.pl>
1041 S:      Maintained
1042 F:      arch/arm/mach-cns3xxx/
1043
1044 ARM/CAVIUM THUNDER NETWORK DRIVER
1045 M:      Sunil Goutham <sgoutham@cavium.com>
1046 M:      Robert Richter <rric@kernel.org>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Supported
1049 F:      drivers/net/ethernet/cavium/thunder/
1050
1051 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1052 M:      Alexander Shiyan <shc_work@mail.ru>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Odd Fixes
1055 N:      clps711x
1056
1057 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1058 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1059 M:      Ryan Mallon <rmallon@gmail.com>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 S:      Maintained
1062 F:      arch/arm/mach-ep93xx/
1063 F:      arch/arm/mach-ep93xx/include/mach/
1064
1065 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1066 M:      Lennert Buytenhek <kernel@wantstofly.org>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 S:      Maintained
1069
1070 ARM/CLKDEV SUPPORT
1071 M:      Russell King <linux@armlinux.org.uk>
1072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1073 S:      Maintained
1074 F:      arch/arm/include/asm/clkdev.h
1075 F:      drivers/clk/clkdev.c
1076
1077 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1078 M:      Mike Rapoport <mike@compulab.co.il>
1079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080 S:      Maintained
1081
1082 ARM/CONTEC MICRO9 MACHINE SUPPORT
1083 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1084 S:      Maintained
1085 F:      arch/arm/mach-ep93xx/micro9.c
1086
1087 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1088 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 S:      Maintained
1091 F:      drivers/hwtracing/coresight/*
1092 F:      Documentation/trace/coresight.txt
1093 F:      Documentation/devicetree/bindings/arm/coresight.txt
1094 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1095
1096 ARM/CORGI MACHINE SUPPORT
1097 M:      Richard Purdie <rpurdie@rpsys.net>
1098 S:      Maintained
1099
1100 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1101 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1103 T:      git git://github.com/ulli-kroll/linux.git
1104 S:      Maintained
1105 F:      arch/arm/mach-gemini/
1106 F:      drivers/rtc/rtc-gemini.c
1107
1108 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1109 M:      Barry Song <baohua@kernel.org>
1110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1112 S:      Maintained
1113 F:      arch/arm/boot/dts/prima2*
1114 F:      arch/arm/mach-prima2/
1115 F:      drivers/clk/sirf/
1116 F:      drivers/clocksource/timer-prima2.c
1117 F:      drivers/clocksource/timer-atlas7.c
1118 N:      [^a-z]sirf
1119
1120 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1121 M:      Baruch Siach <baruch@tkos.co.il>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 S:      Maintained
1124 F:      arch/arm/boot/dts/cx92755*
1125 N:      digicolor
1126
1127 ARM/EBSA110 MACHINE SUPPORT
1128 M:      Russell King <linux@armlinux.org.uk>
1129 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130 W:      http://www.armlinux.org.uk/
1131 S:      Maintained
1132 F:      arch/arm/mach-ebsa110/
1133 F:      drivers/net/ethernet/amd/am79c961a.*
1134
1135 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1136 M:      Uwe Kleine-König <kernel@pengutronix.de>
1137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138 S:      Maintained
1139 N:      efm32
1140
1141 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1142 M:      Daniel Ribeiro <drwyrm@gmail.com>
1143 M:      Stefan Schmidt <stefan@openezx.org>
1144 M:      Harald Welte <laforge@openezx.org>
1145 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1146 W:      http://www.openezx.org/
1147 S:      Maintained
1148 T:      topgit git://git.openezx.org/openezx.git
1149 F:      arch/arm/mach-pxa/ezx.c
1150
1151 ARM/FARADAY FA526 PORT
1152 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1154 S:      Maintained
1155 T:      git git://git.berlios.de/gemini-board
1156 F:      arch/arm/mm/*-fa*
1157
1158 ARM/FOOTBRIDGE ARCHITECTURE
1159 M:      Russell King <linux@armlinux.org.uk>
1160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161 W:      http://www.armlinux.org.uk/
1162 S:      Maintained
1163 F:      arch/arm/include/asm/hardware/dec21285.h
1164 F:      arch/arm/mach-footbridge/
1165
1166 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1167 M:      Shawn Guo <shawnguo@kernel.org>
1168 M:      Sascha Hauer <kernel@pengutronix.de>
1169 R:      Fabio Estevam <fabio.estevam@nxp.com>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1173 F:      arch/arm/mach-imx/
1174 F:      arch/arm/mach-mxs/
1175 F:      arch/arm/boot/dts/imx*
1176 F:      arch/arm/configs/imx*_defconfig
1177 F:      drivers/clk/imx/
1178 F:      include/soc/imx/
1179
1180 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1181 M:      Shawn Guo <shawnguo@kernel.org>
1182 M:      Sascha Hauer <kernel@pengutronix.de>
1183 R:      Stefan Agner <stefan@agner.ch>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1187 F:      arch/arm/mach-imx/*vf610*
1188 F:      arch/arm/boot/dts/vf*
1189
1190 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1191 M:      Lennert Buytenhek <kernel@wantstofly.org>
1192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1193 S:      Maintained
1194
1195 ARM/GUMSTIX MACHINE SUPPORT
1196 M:      Steve Sakoman <sakoman@gmail.com>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 S:      Maintained
1199
1200 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1201 M:      Philipp Zabel <philipp.zabel@gmail.com>
1202 M:      Paul Parsons <lost.distance@yahoo.com>
1203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1204 S:      Maintained
1205 F:      arch/arm/mach-pxa/hx4700.c
1206 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1207 F:      sound/soc/pxa/hx4700.c
1208
1209 ARM/HISILICON SOC SUPPORT
1210 M:      Wei Xu <xuwei5@hisilicon.com>
1211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1212 W:      http://www.hisilicon.com
1213 S:      Supported
1214 T:      git git://github.com/hisilicon/linux-hisi.git
1215 F:      arch/arm/mach-hisi/
1216 F:      arch/arm/boot/dts/hi3*
1217 F:      arch/arm/boot/dts/hip*
1218 F:      arch/arm/boot/dts/hisi*
1219 F:      arch/arm64/boot/dts/hisilicon/
1220
1221 ARM/HP JORNADA 7XX MACHINE SUPPORT
1222 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1223 W:      www.jlime.com
1224 S:      Maintained
1225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1226 F:      arch/arm/mach-sa1100/jornada720.c
1227 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1228
1229 ARM/IGEP MACHINE SUPPORT
1230 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1231 M:      Javier Martinez Canillas <javier@dowhile0.org>
1232 L:      linux-omap@vger.kernel.org
1233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234 S:      Maintained
1235 F:      arch/arm/boot/dts/omap3-igep*
1236
1237 ARM/INCOME PXA270 SUPPORT
1238 M:      Marek Vasut <marek.vasut@gmail.com>
1239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1240 S:      Maintained
1241 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1242
1243 ARM/INTEL IOP32X ARM ARCHITECTURE
1244 M:      Lennert Buytenhek <kernel@wantstofly.org>
1245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246 S:      Maintained
1247
1248 ARM/INTEL IOP33X ARM ARCHITECTURE
1249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 S:      Orphan
1251
1252 ARM/INTEL IOP13XX ARM ARCHITECTURE
1253 M:      Lennert Buytenhek <kernel@wantstofly.org>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256
1257 ARM/INTEL IQ81342EX MACHINE SUPPORT
1258 M:      Lennert Buytenhek <kernel@wantstofly.org>
1259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1260 S:      Maintained
1261
1262 ARM/INTEL IXDP2850 MACHINE SUPPORT
1263 M:      Lennert Buytenhek <kernel@wantstofly.org>
1264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1265 S:      Maintained
1266
1267 ARM/INTEL IXP4XX ARM ARCHITECTURE
1268 M:      Imre Kaloz <kaloz@openwrt.org>
1269 M:      Krzysztof Halasa <khalasa@piap.pl>
1270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271 S:      Maintained
1272 F:      arch/arm/mach-ixp4xx/
1273
1274 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1275 M:      Jonathan Cameron <jic23@cam.ac.uk>
1276 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1277 S:      Maintained
1278 F:      arch/arm/mach-pxa/stargate2.c
1279 F:      drivers/pcmcia/pxa2xx_stargate2.c
1280
1281 ARM/INTEL XSC3 (MANZANO) ARM CORE
1282 M:      Lennert Buytenhek <kernel@wantstofly.org>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285
1286 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1287 M:      Lennert Buytenhek <kernel@wantstofly.org>
1288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1289 S:      Maintained
1290
1291 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1292 M:      Santosh Shilimkar <ssantosh@kernel.org>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 S:      Maintained
1295 F:      arch/arm/mach-keystone/
1296 F:      arch/arm/boot/dts/keystone-*
1297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1298
1299 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1300 M:      Santosh Shilimkar <ssantosh@kernel.org>
1301 L:      linux-kernel@vger.kernel.org
1302 S:      Maintained
1303 F:      drivers/clk/keystone/
1304
1305 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1306 M:      Santosh Shilimkar <ssantosh@kernel.org>
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 L:      linux-kernel@vger.kernel.org
1309 S:      Maintained
1310 F:      drivers/clocksource/timer-keystone.c
1311
1312 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1313 M:      Santosh Shilimkar <ssantosh@kernel.org>
1314 L:      linux-kernel@vger.kernel.org
1315 S:      Maintained
1316 F:      drivers/power/reset/keystone-reset.c
1317
1318 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1319 M:      Santosh Shilimkar <ssantosh@kernel.org>
1320 L:      linux-kernel@vger.kernel.org
1321 S:      Maintained
1322 F:      drivers/memory/*emif*
1323
1324 ARM/LG1K ARCHITECTURE
1325 M:      Chanho Min <chanho.min@lge.com>
1326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327 S:      Maintained
1328 F:      arch/arm64/boot/dts/lg/
1329
1330 ARM/LOGICPD PXA270 MACHINE SUPPORT
1331 M:      Lennert Buytenhek <kernel@wantstofly.org>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 S:      Maintained
1334
1335 ARM/LPC18XX ARCHITECTURE
1336 M:      Joachim Eastwood <manabian@gmail.com>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 S:      Maintained
1339 F:      arch/arm/boot/dts/lpc43*
1340 F:      drivers/clk/nxp/clk-lpc18xx*
1341 F:      drivers/clocksource/time-lpc32xx.c
1342 F:      drivers/i2c/busses/i2c-lpc2k.c
1343 F:      drivers/memory/pl172.c
1344 F:      drivers/mtd/spi-nor/nxp-spifi.c
1345 F:      drivers/rtc/rtc-lpc24xx.c
1346 N:      lpc18xx
1347
1348 ARM/LPC32XX SOC SUPPORT
1349 M:      Vladimir Zapolskiy <vz@mleia.com>
1350 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1352 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1353 S:      Maintained
1354 F:      arch/arm/boot/dts/lpc32*
1355 F:      arch/arm/mach-lpc32xx/
1356 F:      drivers/i2c/busses/i2c-pnx.c
1357 F:      drivers/net/ethernet/nxp/lpc_eth.c
1358 F:      drivers/usb/host/ohci-nxp.c
1359 F:      drivers/watchdog/pnx4008_wdt.c
1360 N:      lpc32xx
1361
1362 ARM/MAGICIAN MACHINE SUPPORT
1363 M:      Philipp Zabel <philipp.zabel@gmail.com>
1364 S:      Maintained
1365
1366 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1367 M:      Jason Cooper <jason@lakedaemon.net>
1368 M:      Andrew Lunn <andrew@lunn.ch>
1369 M:      Gregory Clement <gregory.clement@free-electrons.com>
1370 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 S:      Maintained
1373 F:      arch/arm/mach-mvebu/
1374 F:      drivers/rtc/rtc-armada38x.c
1375 F:      arch/arm/boot/dts/armada*
1376 F:      arch/arm/boot/dts/kirkwood*
1377 F:      arch/arm64/boot/dts/marvell/armada*
1378 F:      drivers/cpufreq/mvebu-cpufreq.c
1379 F:      arch/arm/configs/mvebu_*_defconfig
1380
1381 ARM/Marvell Berlin SoC support
1382 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1384 S:      Maintained
1385 F:      arch/arm/mach-berlin/
1386 F:      arch/arm/boot/dts/berlin*
1387 F:      arch/arm64/boot/dts/marvell/berlin*
1388
1389
1390 ARM/Marvell Dove/MV78xx0/Orion SOC support
1391 M:      Jason Cooper <jason@lakedaemon.net>
1392 M:      Andrew Lunn <andrew@lunn.ch>
1393 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1394 M:      Gregory Clement <gregory.clement@free-electrons.com>
1395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1396 S:      Maintained
1397 F:      arch/arm/mach-dove/
1398 F:      arch/arm/mach-mv78xx0/
1399 F:      arch/arm/mach-orion5x/
1400 F:      arch/arm/plat-orion/
1401 F:      arch/arm/boot/dts/dove*
1402 F:      arch/arm/boot/dts/orion5x*
1403
1404
1405 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1406 M:      Alexander Clouter <alex@digriz.org.uk>
1407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 W:      http://www.digriz.org.uk/ts78xx/kernel
1409 S:      Maintained
1410 F:      arch/arm/mach-orion5x/ts78xx-*
1411
1412 ARM/OXNAS platform support
1413 M:      Neil Armstrong <narmstrong@baylibre.com>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416 F:      arch/arm/mach-oxnas/
1417 F:      arch/arm/boot/dts/oxnas*
1418 F:      arch/arm/boot/dts/wd-mbwe.dts
1419 N:      oxnas
1420
1421 ARM/Mediatek RTC DRIVER
1422 M:      Eddie Huang <eddie.huang@mediatek.com>
1423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1424 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426 F:      drivers/rtc/rtc-mt6397.c
1427
1428 ARM/Mediatek SoC support
1429 M:      Matthias Brugger <matthias.bgg@gmail.com>
1430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1431 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1432 S:      Maintained
1433 F:      arch/arm/boot/dts/mt6*
1434 F:      arch/arm/boot/dts/mt8*
1435 F:      arch/arm/mach-mediatek/
1436 N:      mtk
1437 K:      mediatek
1438
1439 ARM/Mediatek USB3 PHY DRIVER
1440 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1442 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1443 S:      Maintained
1444 F:      drivers/phy/phy-mt65xx-usb3.c
1445
1446 ARM/MICREL KS8695 ARCHITECTURE
1447 M:      Greg Ungerer <gerg@uclinux.org>
1448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1449 F:      arch/arm/mach-ks8695/
1450 S:      Odd Fixes
1451
1452 ARM/MIOA701 MACHINE SUPPORT
1453 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1454 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1455 F:      arch/arm/mach-pxa/mioa701.c
1456 S:      Maintained
1457
1458 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1459 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1460 S:      Maintained
1461
1462 ARM/NOMADIK ARCHITECTURE
1463 M:      Alessandro Rubini <rubini@unipv.it>
1464 M:      Linus Walleij <linus.walleij@linaro.org>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      arch/arm/mach-nomadik/
1468 F:      drivers/pinctrl/nomadik/
1469 F:      drivers/i2c/busses/i2c-nomadik.c
1470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1471
1472 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1473 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1474 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1475 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1476 S:      Supported
1477
1478 ARM/TOSA MACHINE SUPPORT
1479 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1480 M:      Dirk Opfer <dirk@opfer-online.de>
1481 S:      Maintained
1482
1483 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1484 M:      Marek Vasut <marek.vasut@gmail.com>
1485 L:      linux-arm-kernel@lists.infradead.org
1486 W:      http://hackndev.com
1487 S:      Maintained
1488 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1489 F:      arch/arm/mach-pxa/palmtx.c
1490 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1491 F:      arch/arm/mach-pxa/palmt5.c
1492 F:      arch/arm/mach-pxa/include/mach/palmld.h
1493 F:      arch/arm/mach-pxa/palmld.c
1494 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1495 F:      arch/arm/mach-pxa/palmte2.c
1496 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1497 F:      arch/arm/mach-pxa/palmtc.c
1498
1499 ARM/PALM TREO SUPPORT
1500 M:      Tomas Cech <sleep_walker@suse.com>
1501 L:      linux-arm-kernel@lists.infradead.org
1502 W:      http://hackndev.com
1503 S:      Maintained
1504 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1505 F:      arch/arm/mach-pxa/palmtreo.c
1506
1507 ARM/PALMZ72 SUPPORT
1508 M:      Sergey Lapin <slapin@ossfans.org>
1509 L:      linux-arm-kernel@lists.infradead.org
1510 W:      http://hackndev.com
1511 S:      Maintained
1512 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1513 F:      arch/arm/mach-pxa/palmz72.c
1514
1515 ARM/PLEB SUPPORT
1516 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1517 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1518 S:      Maintained
1519
1520 ARM/PT DIGITAL BOARD PORT
1521 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1523 W:      http://www.armlinux.org.uk/
1524 S:      Maintained
1525
1526 ARM/QUALCOMM SUPPORT
1527 M:      Andy Gross <andy.gross@linaro.org>
1528 M:      David Brown <david.brown@linaro.org>
1529 L:      linux-arm-msm@vger.kernel.org
1530 L:      linux-soc@vger.kernel.org
1531 S:      Maintained
1532 F:      arch/arm/boot/dts/qcom-*.dts
1533 F:      arch/arm/boot/dts/qcom-*.dtsi
1534 F:      arch/arm/mach-qcom/
1535 F:      arch/arm64/boot/dts/qcom/*
1536 F:      drivers/i2c/busses/i2c-qup.c
1537 F:      drivers/clk/qcom/
1538 F:      drivers/soc/qcom/
1539 F:      drivers/spi/spi-qup.c
1540 F:      drivers/tty/serial/msm_serial.h
1541 F:      drivers/tty/serial/msm_serial.c
1542 F:      drivers/*/pm8???-*
1543 F:      drivers/mfd/ssbi.c
1544 F:      drivers/firmware/qcom_scm.c
1545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1546
1547 ARM/RADISYS ENP2611 MACHINE SUPPORT
1548 M:      Lennert Buytenhek <kernel@wantstofly.org>
1549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 S:      Maintained
1551
1552 ARM/RENESAS ARM64 ARCHITECTURE
1553 M:      Simon Horman <horms@verge.net.au>
1554 M:      Magnus Damm <magnus.damm@gmail.com>
1555 L:      linux-renesas-soc@vger.kernel.org
1556 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1558 S:      Supported
1559 F:      arch/arm64/boot/dts/renesas/
1560 F:      drivers/soc/renesas/
1561 F:      include/linux/soc/renesas/
1562
1563 ARM/RISCPC ARCHITECTURE
1564 M:      Russell King <linux@armlinux.org.uk>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 W:      http://www.armlinux.org.uk/
1567 S:      Maintained
1568 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1569 F:      arch/arm/include/asm/hardware/ioc.h
1570 F:      arch/arm/include/asm/hardware/iomd.h
1571 F:      arch/arm/include/asm/hardware/memc.h
1572 F:      arch/arm/mach-rpc/
1573 F:      drivers/net/ethernet/8390/etherh.c
1574 F:      drivers/net/ethernet/i825xx/ether1*
1575 F:      drivers/net/ethernet/seeq/ether3*
1576 F:      drivers/scsi/arm/
1577
1578 ARM/Rockchip SoC support
1579 M:      Heiko Stuebner <heiko@sntech.de>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 L:      linux-rockchip@lists.infradead.org
1582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1583 S:      Maintained
1584 F:      arch/arm/boot/dts/rk3*
1585 F:      arch/arm/mach-rockchip/
1586 F:      drivers/clk/rockchip/
1587 F:      drivers/i2c/busses/i2c-rk3x.c
1588 F:      drivers/*/*rockchip*
1589 F:      drivers/*/*/*rockchip*
1590 F:      sound/soc/rockchip/
1591 N:      rockchip
1592
1593 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1594 M:      Kukjin Kim <kgene@kernel.org>
1595 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1598 S:      Maintained
1599 F:      arch/arm/boot/dts/s3c*
1600 F:      arch/arm/boot/dts/s5p*
1601 F:      arch/arm/boot/dts/samsung*
1602 F:      arch/arm/boot/dts/exynos*
1603 F:      arch/arm64/boot/dts/exynos/
1604 F:      arch/arm/plat-samsung/
1605 F:      arch/arm/mach-s3c24*/
1606 F:      arch/arm/mach-s3c64xx/
1607 F:      arch/arm/mach-s5p*/
1608 F:      arch/arm/mach-exynos*/
1609 F:      drivers/*/*s3c2410*
1610 F:      drivers/*/*/*s3c2410*
1611 F:      drivers/memory/samsung/*
1612 F:      drivers/soc/samsung/*
1613 F:      drivers/spi/spi-s3c*
1614 F:      sound/soc/samsung/*
1615 F:      Documentation/arm/Samsung/
1616 F:      Documentation/devicetree/bindings/arm/samsung/
1617 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1618 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1619 N:      exynos
1620
1621 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1622 M:      Kyungmin Park <kyungmin.park@samsung.com>
1623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1624 S:      Maintained
1625 F:      arch/arm/mach-s5pv210/
1626
1627 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1628 M:      Kyungmin Park <kyungmin.park@samsung.com>
1629 M:      Kamil Debski <k.debski@samsung.com>
1630 L:      linux-arm-kernel@lists.infradead.org
1631 L:      linux-media@vger.kernel.org
1632 S:      Maintained
1633 F:      drivers/media/platform/s5p-g2d/
1634
1635 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1636 M:      Kyungmin Park <kyungmin.park@samsung.com>
1637 M:      Kamil Debski <k.debski@samsung.com>
1638 M:      Jeongtae Park <jtp.park@samsung.com>
1639 L:      linux-arm-kernel@lists.infradead.org
1640 L:      linux-media@vger.kernel.org
1641 S:      Maintained
1642 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1643 F:      drivers/media/platform/s5p-mfc/
1644
1645 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1646 M:      Kyungmin Park <kyungmin.park@samsung.com>
1647 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1648 L:      linux-arm-kernel@lists.infradead.org
1649 L:      linux-media@vger.kernel.org
1650 S:      Maintained
1651 F:      drivers/media/platform/s5p-tv/
1652
1653 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1654 M:      Kyungmin Park <kyungmin.park@samsung.com>
1655 L:      linux-arm-kernel@lists.infradead.org
1656 L:      linux-media@vger.kernel.org
1657 S:      Maintained
1658 F:      drivers/staging/media/platform/s5p-cec/
1659
1660 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1661 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1662 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1663 L:      linux-arm-kernel@lists.infradead.org
1664 L:      linux-media@vger.kernel.org
1665 S:      Maintained
1666 F:      drivers/media/platform/s5p-jpeg/
1667
1668 ARM/SHMOBILE ARM ARCHITECTURE
1669 M:      Simon Horman <horms@verge.net.au>
1670 M:      Magnus Damm <magnus.damm@gmail.com>
1671 L:      linux-renesas-soc@vger.kernel.org
1672 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1674 S:      Supported
1675 F:      arch/arm/boot/dts/emev2*
1676 F:      arch/arm/boot/dts/r7s*
1677 F:      arch/arm/boot/dts/r8a*
1678 F:      arch/arm/boot/dts/sh*
1679 F:      arch/arm/configs/shmobile_defconfig
1680 F:      arch/arm/include/debug/renesas-scif.S
1681 F:      arch/arm/mach-shmobile/
1682 F:      drivers/soc/renesas/
1683 F:      include/linux/soc/renesas/
1684
1685 ARM/SOCFPGA ARCHITECTURE
1686 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1687 S:      Maintained
1688 F:      arch/arm/mach-socfpga/
1689 F:      arch/arm/boot/dts/socfpga*
1690 F:      arch/arm/configs/socfpga_defconfig
1691 F:      arch/arm64/boot/dts/altera/
1692 W:      http://www.rocketboards.org
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1694
1695 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1696 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1697 S:      Maintained
1698 F:      drivers/clk/socfpga/
1699
1700 ARM/SOCFPGA EDAC SUPPORT
1701 M:      Thor Thayer <tthayer@opensource.altera.com>
1702 S:      Maintained
1703 F:      drivers/edac/altera_edac.
1704
1705 ARM/STI ARCHITECTURE
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 M:      Alexandre Torgue <alexandre.torgue@st.com>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1742 N:      stm32
1743 F:      drivers/clocksource/armv7m_systick.c
1744
1745 ARM/TANGO ARCHITECTURE
1746 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1747 L:      linux-arm-kernel@lists.infradead.org
1748 S:      Maintained
1749 F:      arch/arm/mach-tango/
1750 F:      arch/arm/boot/dts/tango*
1751
1752 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1753 M:      Lennert Buytenhek <kernel@wantstofly.org>
1754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1755 S:      Maintained
1756
1757 ARM/TETON BGA MACHINE SUPPORT
1758 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 S:      Maintained
1761
1762 ARM/THECUS N2100 MACHINE SUPPORT
1763 M:      Lennert Buytenhek <kernel@wantstofly.org>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 S:      Maintained
1766
1767 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1768 M:      Wan ZongShun <mcuos.com@gmail.com>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 W:      http://www.mcuos.com
1771 S:      Maintained
1772 F:      arch/arm/mach-w90x900/
1773 F:      drivers/input/keyboard/w90p910_keypad.c
1774 F:      drivers/input/touchscreen/w90p910_ts.c
1775 F:      drivers/watchdog/nuc900_wdt.c
1776 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1777 F:      drivers/mtd/nand/nuc900_nand.c
1778 F:      drivers/rtc/rtc-nuc900.c
1779 F:      drivers/spi/spi-nuc900.c
1780 F:      drivers/usb/host/ehci-w90x900.c
1781 F:      drivers/video/fbdev/nuc900fb.c
1782
1783 ARM/U300 MACHINE SUPPORT
1784 M:      Linus Walleij <linus.walleij@linaro.org>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S:      Supported
1787 F:      arch/arm/mach-u300/
1788 F:      drivers/clocksource/timer-u300.c
1789 F:      drivers/i2c/busses/i2c-stu300.c
1790 F:      drivers/rtc/rtc-coh901331.c
1791 F:      drivers/watchdog/coh901327_wdt.c
1792 F:      drivers/dma/coh901318*
1793 F:      drivers/mfd/ab3100*
1794 F:      drivers/rtc/rtc-ab3100.c
1795 F:      drivers/rtc/rtc-coh901331.c
1796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1797
1798 ARM/UNIPHIER ARCHITECTURE
1799 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      arch/arm/boot/dts/uniphier*
1803 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1804 F:      arch/arm/mach-uniphier/
1805 F:      arch/arm/mm/cache-uniphier.c
1806 F:      arch/arm64/boot/dts/socionext/
1807 F:      drivers/bus/uniphier-system-bus.c
1808 F:      drivers/i2c/busses/i2c-uniphier*
1809 F:      drivers/pinctrl/uniphier/
1810 F:      drivers/tty/serial/8250/8250_uniphier.c
1811 N:      uniphier
1812
1813 ARM/Ux500 ARM ARCHITECTURE
1814 M:      Linus Walleij <linus.walleij@linaro.org>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817 F:      arch/arm/mach-ux500/
1818 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1819 F:      drivers/dma/ste_dma40*
1820 F:      drivers/hwspinlock/u8500_hsem.c
1821 F:      drivers/mfd/abx500*
1822 F:      drivers/mfd/ab8500*
1823 F:      drivers/mfd/dbx500*
1824 F:      drivers/mfd/db8500*
1825 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1826 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1827 F:      drivers/rtc/rtc-ab8500.c
1828 F:      drivers/rtc/rtc-pl031.c
1829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1830
1831 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1832 M:      Ulf Hansson <ulf.hansson@linaro.org>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 T:      git git://git.linaro.org/people/ulfh/clk.git
1835 S:      Maintained
1836 F:      drivers/clk/ux500/
1837 F:      include/linux/platform_data/clk-ux500.h
1838
1839 ARM/VERSATILE EXPRESS PLATFORM
1840 M:      Liviu Dudau <liviu.dudau@arm.com>
1841 M:      Sudeep Holla <sudeep.holla@arm.com>
1842 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/boot/dts/vexpress*
1846 F:      arch/arm64/boot/dts/arm/
1847 F:      arch/arm/mach-vexpress/
1848 F:      */*/vexpress*
1849 F:      */*/*/vexpress*
1850 F:      drivers/clk/versatile/clk-vexpress-osc.c
1851 F:      drivers/clocksource/versatile.c
1852 N:      mps2
1853
1854 ARM/VFP SUPPORT
1855 M:      Russell King <linux@armlinux.org.uk>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 W:      http://www.armlinux.org.uk/
1858 S:      Maintained
1859 F:      arch/arm/vfp/
1860
1861 ARM/VOIPAC PXA270 SUPPORT
1862 M:      Marek Vasut <marek.vasut@gmail.com>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 F:      arch/arm/mach-pxa/vpac270.c
1866 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1867
1868 ARM/VT8500 ARM ARCHITECTURE
1869 M:      Tony Prisk <linux@prisktech.co.nz>
1870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1871 S:      Maintained
1872 F:      arch/arm/mach-vt8500/
1873 F:      drivers/clocksource/vt8500_timer.c
1874 F:      drivers/i2c/busses/i2c-wmt.c
1875 F:      drivers/mmc/host/wmt-sdmmc.c
1876 F:      drivers/pwm/pwm-vt8500.c
1877 F:      drivers/rtc/rtc-vt8500.c
1878 F:      drivers/tty/serial/vt8500_serial.c
1879 F:      drivers/usb/host/ehci-platform.c
1880 F:      drivers/usb/host/uhci-platform.c
1881 F:      drivers/video/fbdev/vt8500lcdfb.*
1882 F:      drivers/video/fbdev/wm8505fb*
1883 F:      drivers/video/fbdev/wmt_ge_rops.*
1884
1885 ARM/ZIPIT Z2 SUPPORT
1886 M:      Marek Vasut <marek.vasut@gmail.com>
1887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1888 S:      Maintained
1889 F:      arch/arm/mach-pxa/z2.c
1890 F:      arch/arm/mach-pxa/include/mach/z2.h
1891
1892 ARM/ZTE ARCHITECTURE
1893 M:      Jun Nie <jun.nie@linaro.org>
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896 F:      arch/arm/mach-zx/
1897 F:      drivers/clk/zte/
1898 F:      Documentation/devicetree/bindings/arm/zte.txt
1899 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1900
1901 ARM/ZYNQ ARCHITECTURE
1902 M:      Michal Simek <michal.simek@xilinx.com>
1903 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 W:      http://wiki.xilinx.com
1906 T:      git https://github.com/Xilinx/linux-xlnx.git
1907 S:      Supported
1908 F:      arch/arm/mach-zynq/
1909 F:      drivers/cpuidle/cpuidle-zynq.c
1910 F:      drivers/block/xsysace.c
1911 N:      zynq
1912 N:      xilinx
1913 F:      drivers/clocksource/cadence_ttc_timer.c
1914 F:      drivers/i2c/busses/i2c-cadence.c
1915 F:      drivers/mmc/host/sdhci-of-arasan.c
1916 F:      drivers/edac/synopsys_edac.c
1917
1918 ARM SMMU DRIVERS
1919 M:      Will Deacon <will.deacon@arm.com>
1920 R:      Robin Murphy <robin.murphy@arm.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      drivers/iommu/arm-smmu.c
1924 F:      drivers/iommu/arm-smmu-v3.c
1925 F:      drivers/iommu/io-pgtable-arm.c
1926 F:      drivers/iommu/io-pgtable-arm-v7s.c
1927
1928 ARM64 PORT (AARCH64 ARCHITECTURE)
1929 M:      Catalin Marinas <catalin.marinas@arm.com>
1930 M:      Will Deacon <will.deacon@arm.com>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1933 S:      Maintained
1934 F:      arch/arm64/
1935 F:      Documentation/arm64/
1936
1937 AS3645A LED FLASH CONTROLLER DRIVER
1938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1939 L:      linux-media@vger.kernel.org
1940 T:      git git://linuxtv.org/media_tree.git
1941 S:      Maintained
1942 F:      drivers/media/i2c/as3645a.c
1943 F:      include/media/i2c/as3645a.h
1944
1945 ASC7621 HARDWARE MONITOR DRIVER
1946 M:      George Joseph <george.joseph@fairview5.com>
1947 L:      linux-hwmon@vger.kernel.org
1948 S:      Maintained
1949 F:      Documentation/hwmon/asc7621
1950 F:      drivers/hwmon/asc7621.c
1951
1952 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1953 M:      Corentin Chary <corentin.chary@gmail.com>
1954 L:      acpi4asus-user@lists.sourceforge.net
1955 L:      platform-driver-x86@vger.kernel.org
1956 W:      http://acpi4asus.sf.net
1957 S:      Maintained
1958 F:      drivers/platform/x86/asus*.c
1959 F:      drivers/platform/x86/eeepc*.c
1960
1961 ASUS WIRELESS RADIO CONTROL DRIVER
1962 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1963 L:      platform-driver-x86@vger.kernel.org
1964 S:      Maintained
1965 F:      drivers/platform/x86/asus-wireless.c
1966
1967 ASYMMETRIC KEYS
1968 M:      David Howells <dhowells@redhat.com>
1969 L:      keyrings@vger.kernel.org
1970 S:      Maintained
1971 F:      Documentation/crypto/asymmetric-keys.txt
1972 F:      include/linux/verification.h
1973 F:      include/crypto/public_key.h
1974 F:      include/crypto/pkcs7.h
1975 F:      crypto/asymmetric_keys/
1976
1977 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1978 R:      Dan Williams <dan.j.williams@intel.com>
1979 W:      http://sourceforge.net/projects/xscaleiop
1980 S:      Odd fixes
1981 F:      Documentation/crypto/async-tx-api.txt
1982 F:      crypto/async_tx/
1983 F:      drivers/dma/
1984 F:      include/linux/dmaengine.h
1985 F:      include/linux/async_tx.h
1986
1987 AT24 EEPROM DRIVER
1988 M:      Wolfram Sang <wsa@the-dreams.de>
1989 L:      linux-i2c@vger.kernel.org
1990 S:      Maintained
1991 F:      drivers/misc/eeprom/at24.c
1992 F:      include/linux/platform_data/at24.h
1993
1994 ATA OVER ETHERNET (AOE) DRIVER
1995 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1996 W:      http://www.openaoe.org/
1997 S:      Supported
1998 F:      Documentation/aoe/
1999 F:      drivers/block/aoe/
2000
2001 ATHEROS 71XX/9XXX GPIO DRIVER
2002 M:      Alban Bedel <albeu@free.fr>
2003 W:      https://github.com/AlbanBedel/linux
2004 T:      git git://github.com/AlbanBedel/linux
2005 S:      Maintained
2006 F:      drivers/gpio/gpio-ath79.c
2007 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2008
2009 ATHEROS ATH GENERIC UTILITIES
2010 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2011 L:      linux-wireless@vger.kernel.org
2012 S:      Supported
2013 F:      drivers/net/wireless/ath/*
2014
2015 ATHEROS ATH5K WIRELESS DRIVER
2016 M:      Jiri Slaby <jirislaby@gmail.com>
2017 M:      Nick Kossifidis <mickflemm@gmail.com>
2018 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2019 L:      linux-wireless@vger.kernel.org
2020 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2021 S:      Maintained
2022 F:      drivers/net/wireless/ath/ath5k/
2023
2024 ATHEROS ATH6KL WIRELESS DRIVER
2025 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2026 L:      linux-wireless@vger.kernel.org
2027 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2029 S:      Supported
2030 F:      drivers/net/wireless/ath/ath6kl/
2031
2032 WILOCITY WIL6210 WIRELESS DRIVER
2033 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2034 L:      linux-wireless@vger.kernel.org
2035 L:      wil6210@qca.qualcomm.com
2036 S:      Supported
2037 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2038 F:      drivers/net/wireless/ath/wil6210/
2039 F:      include/uapi/linux/wil6210_uapi.h
2040
2041 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2042 M:      Christian Lamparter <chunkeey@googlemail.com>
2043 L:      linux-wireless@vger.kernel.org
2044 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2045 S:      Maintained
2046 F:      drivers/net/wireless/ath/carl9170/
2047
2048 ATK0110 HWMON DRIVER
2049 M:      Luca Tettamanti <kronos.it@gmail.com>
2050 L:      linux-hwmon@vger.kernel.org
2051 S:      Maintained
2052 F:      drivers/hwmon/asus_atk0110.c
2053
2054 ATI_REMOTE2 DRIVER
2055 M:      Ville Syrjala <syrjala@sci.fi>
2056 S:      Maintained
2057 F:      drivers/input/misc/ati_remote2.c
2058
2059 ATLX ETHERNET DRIVERS
2060 M:      Jay Cliburn <jcliburn@gmail.com>
2061 M:      Chris Snook <chris.snook@gmail.com>
2062 L:      netdev@vger.kernel.org
2063 W:      http://sourceforge.net/projects/atl1
2064 W:      http://atl1.sourceforge.net
2065 S:      Maintained
2066 F:      drivers/net/ethernet/atheros/
2067
2068 ATM
2069 M:      Chas Williams <3chas3@gmail.com>
2070 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2071 L:      netdev@vger.kernel.org
2072 W:      http://linux-atm.sourceforge.net
2073 S:      Maintained
2074 F:      drivers/atm/
2075 F:      include/linux/atm*
2076 F:      include/uapi/linux/atm*
2077
2078 ATMEL AT91 / AT32 MCI DRIVER
2079 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2080 S:      Maintained
2081 F:      drivers/mmc/host/atmel-mci.c
2082
2083 ATMEL AT91 / AT32 SERIAL DRIVER
2084 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2085 S:      Supported
2086 F:      drivers/tty/serial/atmel_serial.c
2087
2088 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2089 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2090 S:      Supported
2091 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2092
2093 ATMEL SAMA5D2 ADC DRIVER
2094 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2095 L:      linux-iio@vger.kernel.org
2096 S:      Supported
2097 F:      drivers/iio/adc/at91-sama5d2_adc.c
2098
2099 ATMEL Audio ALSA driver
2100 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2101 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2102 S:      Supported
2103 F:      sound/soc/atmel
2104
2105 ATMEL DMA DRIVER
2106 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Supported
2109 F:      drivers/dma/at_hdmac.c
2110 F:      drivers/dma/at_hdmac_regs.h
2111 F:      include/linux/platform_data/dma-atmel.h
2112
2113 ATMEL XDMA DRIVER
2114 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2115 L:      linux-arm-kernel@lists.infradead.org
2116 L:      dmaengine@vger.kernel.org
2117 S:      Supported
2118 F:      drivers/dma/at_xdmac.c
2119
2120 ATMEL I2C DRIVER
2121 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2122 L:      linux-i2c@vger.kernel.org
2123 S:      Supported
2124 F:      drivers/i2c/busses/i2c-at91.c
2125
2126 ATMEL ISI DRIVER
2127 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2128 L:      linux-media@vger.kernel.org
2129 S:      Supported
2130 F:      drivers/media/platform/soc_camera/atmel-isi.c
2131 F:      include/media/atmel-isi.h
2132
2133 ATMEL LCDFB DRIVER
2134 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2135 L:      linux-fbdev@vger.kernel.org
2136 S:      Maintained
2137 F:      drivers/video/fbdev/atmel_lcdfb.c
2138 F:      include/video/atmel_lcdc.h
2139
2140 ATMEL MACB ETHERNET DRIVER
2141 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2142 S:      Supported
2143 F:      drivers/net/ethernet/cadence/
2144
2145 ATMEL NAND DRIVER
2146 M:      Wenyou Yang <wenyou.yang@atmel.com>
2147 M:      Josh Wu <rainyfeeling@outlook.com>
2148 L:      linux-mtd@lists.infradead.org
2149 S:      Supported
2150 F:      drivers/mtd/nand/atmel_nand*
2151
2152 ATMEL SDMMC DRIVER
2153 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2154 L:      linux-mmc@vger.kernel.org
2155 S:      Supported
2156 F:      drivers/mmc/host/sdhci-of-at91.c
2157
2158 ATMEL SPI DRIVER
2159 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2160 S:      Supported
2161 F:      drivers/spi/spi-atmel.*
2162
2163 ATMEL SSC DRIVER
2164 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Supported
2167 F:      drivers/misc/atmel-ssc.c
2168 F:      include/linux/atmel-ssc.h
2169
2170 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2171 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2173 S:      Supported
2174 F:      drivers/misc/atmel_tclib.c
2175 F:      drivers/clocksource/tcb_clksrc.c
2176
2177 ATMEL USBA UDC DRIVER
2178 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 S:      Supported
2181 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2182
2183 ATMEL WIRELESS DRIVER
2184 M:      Simon Kelley <simon@thekelleys.org.uk>
2185 L:      linux-wireless@vger.kernel.org
2186 W:      http://www.thekelleys.org.uk/atmel
2187 W:      http://atmelwlandriver.sourceforge.net/
2188 S:      Maintained
2189 F:      drivers/net/wireless/atmel/atmel*
2190
2191 ATMEL MAXTOUCH DRIVER
2192 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2193 T:      git git://github.com/atmel-maxtouch/linux.git
2194 S:      Supported
2195 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2196 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2197 F:      include/linux/platform_data/atmel_mxt_ts.h
2198
2199 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2200 M:      Bradley Grove <linuxdrivers@attotech.com>
2201 L:      linux-scsi@vger.kernel.org
2202 W:      http://www.attotech.com
2203 S:      Supported
2204 F:      drivers/scsi/esas2r
2205
2206 ATUSB IEEE 802.15.4 RADIO DRIVER
2207 M:      Stefan Schmidt <stefan@osg.samsung.com>
2208 L:      linux-wpan@vger.kernel.org
2209 S:      Maintained
2210 F:      drivers/net/ieee802154/atusb.c
2211 F:      drivers/net/ieee802154/atusb.h
2212 F:      drivers/net/ieee802154/at86rf230.h
2213
2214 AUDIT SUBSYSTEM
2215 M:      Paul Moore <paul@paul-moore.com>
2216 M:      Eric Paris <eparis@redhat.com>
2217 L:      linux-audit@redhat.com (moderated for non-subscribers)
2218 W:      http://people.redhat.com/sgrubb/audit/
2219 T:      git git://git.infradead.org/users/pcmoore/audit
2220 S:      Maintained
2221 F:      include/linux/audit.h
2222 F:      include/uapi/linux/audit.h
2223 F:      kernel/audit*
2224
2225 AUXILIARY DISPLAY DRIVERS
2226 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2227 W:      http://miguelojeda.es/auxdisplay.htm
2228 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2229 S:      Maintained
2230 F:      drivers/auxdisplay/
2231 F:      include/linux/cfag12864b.h
2232
2233 AVR32 ARCHITECTURE
2234 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2235 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2236 W:      http://www.atmel.com/products/AVR32/
2237 W:      http://mirror.egtvedt.no/avr32linux.org/
2238 W:      http://avrfreaks.net/
2239 S:      Maintained
2240 F:      arch/avr32/
2241
2242 AVR32/AT32AP MACHINE SUPPORT
2243 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2244 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2245 S:      Maintained
2246 F:      arch/avr32/mach-at32ap/
2247
2248 AX.25 NETWORK LAYER
2249 M:      Ralf Baechle <ralf@linux-mips.org>
2250 L:      linux-hams@vger.kernel.org
2251 W:      http://www.linux-ax25.org/
2252 S:      Maintained
2253 F:      include/uapi/linux/ax25.h
2254 F:      include/net/ax25.h
2255 F:      net/ax25/
2256
2257 AZ6007 DVB DRIVER
2258 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2259 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2260 L:      linux-media@vger.kernel.org
2261 W:      https://linuxtv.org
2262 T:      git git://linuxtv.org/media_tree.git
2263 S:      Maintained
2264 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2265
2266 AZTECH FM RADIO RECEIVER DRIVER
2267 M:      Hans Verkuil <hverkuil@xs4all.nl>
2268 L:      linux-media@vger.kernel.org
2269 T:      git git://linuxtv.org/media_tree.git
2270 W:      https://linuxtv.org
2271 S:      Maintained
2272 F:      drivers/media/radio/radio-aztech*
2273
2274 B43 WIRELESS DRIVER
2275 L:      linux-wireless@vger.kernel.org
2276 L:      b43-dev@lists.infradead.org
2277 W:      http://wireless.kernel.org/en/users/Drivers/b43
2278 S:      Odd Fixes
2279 F:      drivers/net/wireless/broadcom/b43/
2280
2281 B43LEGACY WIRELESS DRIVER
2282 M:      Larry Finger <Larry.Finger@lwfinger.net>
2283 L:      linux-wireless@vger.kernel.org
2284 L:      b43-dev@lists.infradead.org
2285 W:      http://wireless.kernel.org/en/users/Drivers/b43
2286 S:      Maintained
2287 F:      drivers/net/wireless/broadcom/b43legacy/
2288
2289 BACKLIGHT CLASS/SUBSYSTEM
2290 M:      Jingoo Han <jingoohan1@gmail.com>
2291 M:      Lee Jones <lee.jones@linaro.org>
2292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2293 S:      Maintained
2294 F:      drivers/video/backlight/
2295 F:      include/linux/backlight.h
2296
2297 BATMAN ADVANCED
2298 M:      Marek Lindner <mareklindner@neomailbox.ch>
2299 M:      Simon Wunderlich <sw@simonwunderlich.de>
2300 M:      Antonio Quartulli <a@unstable.cc>
2301 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2302 W:      https://www.open-mesh.org/
2303 Q:      https://patchwork.open-mesh.org/project/batman/list/
2304 S:      Maintained
2305 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2306 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2307 F:      Documentation/networking/batman-adv.txt
2308 F:      include/uapi/linux/batman_adv.h
2309 F:      net/batman-adv/
2310
2311 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2312 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2313 L:      linux-hams@vger.kernel.org
2314 W:      http://www.baycom.org/~tom/ham/ham.html
2315 S:      Maintained
2316 F:      drivers/net/hamradio/baycom*
2317
2318 BCACHE (BLOCK LAYER CACHE)
2319 M:      Kent Overstreet <kent.overstreet@gmail.com>
2320 L:      linux-bcache@vger.kernel.org
2321 W:      http://bcache.evilpiepirate.org
2322 S:      Orphan
2323 F:      drivers/md/bcache/
2324
2325 BDISP ST MEDIA DRIVER
2326 M:      Fabien Dessenne <fabien.dessenne@st.com>
2327 L:      linux-media@vger.kernel.org
2328 T:      git git://linuxtv.org/media_tree.git
2329 W:      https://linuxtv.org
2330 S:      Supported
2331 F:      drivers/media/platform/sti/bdisp
2332
2333 BEFS FILE SYSTEM
2334 S:      Orphan
2335 F:      Documentation/filesystems/befs.txt
2336 F:      fs/befs/
2337
2338 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2339 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2340 L:      netdev@vger.kernel.org
2341 S:      Maintained
2342 F:      drivers/net/ethernet/ec_bhf.c
2343
2344 BFS FILE SYSTEM
2345 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2346 S:      Maintained
2347 F:      Documentation/filesystems/bfs.txt
2348 F:      fs/bfs/
2349 F:      include/uapi/linux/bfs_fs.h
2350
2351 BLACKFIN ARCHITECTURE
2352 M:      Steven Miao <realmz6@gmail.com>
2353 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2354 T:      git git://git.code.sf.net/p/adi-linux/code
2355 W:      http://blackfin.uclinux.org
2356 S:      Supported
2357 F:      arch/blackfin/
2358
2359 BLACKFIN EMAC DRIVER
2360 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2361 W:      http://blackfin.uclinux.org
2362 S:      Supported
2363 F:      drivers/net/ethernet/adi/
2364
2365 BLACKFIN RTC DRIVER
2366 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2367 W:      http://blackfin.uclinux.org
2368 S:      Supported
2369 F:      drivers/rtc/rtc-bfin.c
2370
2371 BLACKFIN SDH DRIVER
2372 M:      Sonic Zhang <sonic.zhang@analog.com>
2373 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2374 W:      http://blackfin.uclinux.org
2375 S:      Supported
2376 F:      drivers/mmc/host/bfin_sdh.c
2377
2378 BLACKFIN SERIAL DRIVER
2379 M:      Sonic Zhang <sonic.zhang@analog.com>
2380 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2381 W:      http://blackfin.uclinux.org
2382 S:      Supported
2383 F:      drivers/tty/serial/bfin_uart.c
2384
2385 BLACKFIN WATCHDOG DRIVER
2386 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2387 W:      http://blackfin.uclinux.org
2388 S:      Supported
2389 F:      drivers/watchdog/bfin_wdt.c
2390
2391 BLACKFIN I2C TWI DRIVER
2392 M:      Sonic Zhang <sonic.zhang@analog.com>
2393 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2394 W:      http://blackfin.uclinux.org/
2395 S:      Supported
2396 F:      drivers/i2c/busses/i2c-bfin-twi.c
2397
2398 BLACKFIN MEDIA DRIVER
2399 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2400 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2401 W:      http://blackfin.uclinux.org/
2402 S:      Supported
2403 F:      drivers/media/platform/blackfin/
2404 F:      drivers/media/i2c/adv7183*
2405 F:      drivers/media/i2c/vs6624*
2406
2407 BLINKM RGB LED DRIVER
2408 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2409 S:      Maintained
2410 F:      drivers/leds/leds-blinkm.c
2411
2412 BLOCK LAYER
2413 M:      Jens Axboe <axboe@kernel.dk>
2414 L:      linux-block@vger.kernel.org
2415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2416 S:      Maintained
2417 F:      block/
2418 F:      kernel/trace/blktrace.c
2419
2420 BLOCK2MTD DRIVER
2421 M:      Joern Engel <joern@lazybastard.org>
2422 L:      linux-mtd@lists.infradead.org
2423 S:      Maintained
2424 F:      drivers/mtd/devices/block2mtd.c
2425
2426 BLUETOOTH DRIVERS
2427 M:      Marcel Holtmann <marcel@holtmann.org>
2428 M:      Gustavo Padovan <gustavo@padovan.org>
2429 M:      Johan Hedberg <johan.hedberg@gmail.com>
2430 L:      linux-bluetooth@vger.kernel.org
2431 W:      http://www.bluez.org/
2432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2434 S:      Maintained
2435 F:      drivers/bluetooth/
2436
2437 BLUETOOTH SUBSYSTEM
2438 M:      Marcel Holtmann <marcel@holtmann.org>
2439 M:      Gustavo Padovan <gustavo@padovan.org>
2440 M:      Johan Hedberg <johan.hedberg@gmail.com>
2441 L:      linux-bluetooth@vger.kernel.org
2442 W:      http://www.bluez.org/
2443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2445 S:      Maintained
2446 F:      net/bluetooth/
2447 F:      include/net/bluetooth/
2448
2449 BONDING DRIVER
2450 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2451 M:      Veaceslav Falico <vfalico@gmail.com>
2452 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2453 L:      netdev@vger.kernel.org
2454 W:      http://sourceforge.net/projects/bonding/
2455 S:      Supported
2456 F:      drivers/net/bonding/
2457 F:      include/uapi/linux/if_bonding.h
2458
2459 BPF (Safe dynamic programs and tools)
2460 M:      Alexei Starovoitov <ast@kernel.org>
2461 L:      netdev@vger.kernel.org
2462 L:      linux-kernel@vger.kernel.org
2463 S:      Supported
2464 F:      kernel/bpf/
2465
2466 BROADCOM B44 10/100 ETHERNET DRIVER
2467 M:      Gary Zambrano <zambrano@broadcom.com>
2468 L:      netdev@vger.kernel.org
2469 S:      Supported
2470 F:      drivers/net/ethernet/broadcom/b44.*
2471
2472 BROADCOM B53 ETHERNET SWITCH DRIVER
2473 M:      Florian Fainelli <f.fainelli@gmail.com>
2474 L:      netdev@vger.kernel.org
2475 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2476 S:      Supported
2477 F:      drivers/net/dsa/b53/*
2478 F:      include/linux/platform_data/b53.h
2479
2480 BROADCOM GENET ETHERNET DRIVER
2481 M:      Florian Fainelli <f.fainelli@gmail.com>
2482 L:      netdev@vger.kernel.org
2483 S:      Supported
2484 F:      drivers/net/ethernet/broadcom/genet/
2485
2486 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2487 M:      Sony Chacko <sony.chacko@qlogic.com>
2488 M:      Dept-HSGLinuxNICDev@qlogic.com
2489 L:      netdev@vger.kernel.org
2490 S:      Supported
2491 F:      drivers/net/ethernet/broadcom/bnx2.*
2492 F:      drivers/net/ethernet/broadcom/bnx2_*
2493
2494 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2495 M:      Ariel Elior <ariel.elior@qlogic.com>
2496 L:      netdev@vger.kernel.org
2497 S:      Supported
2498 F:      drivers/net/ethernet/broadcom/bnx2x/
2499
2500 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2501 M:      Florian Fainelli <f.fainelli@gmail.com>
2502 M:      Ray Jui <rjui@broadcom.com>
2503 M:      Scott Branden <sbranden@broadcom.com>
2504 L:      bcm-kernel-feedback-list@broadcom.com
2505 T:      git git://github.com/broadcom/mach-bcm
2506 S:      Maintained
2507 F:      arch/arm/mach-bcm/
2508 F:      arch/arm/boot/dts/bcm113*
2509 F:      arch/arm/boot/dts/bcm216*
2510 F:      arch/arm/boot/dts/bcm281*
2511 F:      arch/arm64/boot/dts/broadcom/
2512 F:      arch/arm/configs/bcm_defconfig
2513 F:      drivers/mmc/host/sdhci-bcm-kona.c
2514 F:      drivers/clocksource/bcm_kona_timer.c
2515
2516 BROADCOM BCM2835 ARM ARCHITECTURE
2517 M:      Stephen Warren <swarren@wwwdotorg.org>
2518 M:      Lee Jones <lee@kernel.org>
2519 M:      Eric Anholt <eric@anholt.net>
2520 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2523 S:      Maintained
2524 N:      bcm2835
2525
2526 BROADCOM BCM47XX MIPS ARCHITECTURE
2527 M:      Hauke Mehrtens <hauke@hauke-m.de>
2528 M:      Rafał Miłecki <zajec5@gmail.com>
2529 L:      linux-mips@linux-mips.org
2530 S:      Maintained
2531 F:      Documentation/devicetree/bindings/mips/brcm/
2532 F:      arch/mips/bcm47xx/*
2533 F:      arch/mips/include/asm/mach-bcm47xx/*
2534
2535 BROADCOM BCM5301X ARM ARCHITECTURE
2536 M:      Hauke Mehrtens <hauke@hauke-m.de>
2537 L:      linux-arm-kernel@lists.infradead.org
2538 S:      Maintained
2539 F:      arch/arm/mach-bcm/bcm_5301x.c
2540 F:      arch/arm/boot/dts/bcm5301x.dtsi
2541 F:      arch/arm/boot/dts/bcm470*
2542
2543 BROADCOM BCM63XX ARM ARCHITECTURE
2544 M:      Florian Fainelli <f.fainelli@gmail.com>
2545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2546 L:      bcm-kernel-feedback-list@broadcom.com
2547 T:      git git://github.com/broadcom/stblinux.git
2548 S:      Maintained
2549 F:      arch/arm/mach-bcm/bcm63xx.c
2550 F:      arch/arm/include/debug/bcm63xx.S
2551
2552 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2553 M:      Kevin Cernekee <cernekee@gmail.com>
2554 L:      linux-usb@vger.kernel.org
2555 S:      Maintained
2556 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2557
2558 BROADCOM BCM7XXX ARM ARCHITECTURE
2559 M:      Brian Norris <computersforpeace@gmail.com>
2560 M:      Gregory Fong <gregory.0xf0@gmail.com>
2561 M:      Florian Fainelli <f.fainelli@gmail.com>
2562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2563 L:      bcm-kernel-feedback-list@broadcom.com
2564 T:      git git://github.com/broadcom/stblinux.git
2565 S:      Maintained
2566 F:      arch/arm/mach-bcm/*brcmstb*
2567 F:      arch/arm/boot/dts/bcm7*.dts*
2568 F:      drivers/bus/brcmstb_gisb.c
2569 N:      brcmstb
2570
2571 BROADCOM BMIPS MIPS ARCHITECTURE
2572 M:      Kevin Cernekee <cernekee@gmail.com>
2573 M:      Florian Fainelli <f.fainelli@gmail.com>
2574 L:      linux-mips@linux-mips.org
2575 T:      git git://github.com/broadcom/stblinux.git
2576 S:      Maintained
2577 F:      arch/mips/bmips/*
2578 F:      arch/mips/include/asm/mach-bmips/*
2579 F:      arch/mips/kernel/*bmips*
2580 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2581 F:      drivers/irqchip/irq-bcm63*
2582 F:      drivers/irqchip/irq-bcm7*
2583 F:      drivers/irqchip/irq-brcmstb*
2584 F:      include/linux/bcm963xx_nvram.h
2585 F:      include/linux/bcm963xx_tag.h
2586
2587 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2588 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2589 M:      Prashant Sreedharan <prashant@broadcom.com>
2590 M:      Michael Chan <mchan@broadcom.com>
2591 L:      netdev@vger.kernel.org
2592 S:      Supported
2593 F:      drivers/net/ethernet/broadcom/tg3.*
2594
2595 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2596 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2597 M:      Franky Lin <franky.lin@broadcom.com>
2598 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2599 L:      linux-wireless@vger.kernel.org
2600 L:      brcm80211-dev-list.pdl@broadcom.com
2601 S:      Supported
2602 F:      drivers/net/wireless/broadcom/brcm80211/
2603
2604 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2605 M:      QLogic-Storage-Upstream@qlogic.com
2606 L:      linux-scsi@vger.kernel.org
2607 S:      Supported
2608 F:      drivers/scsi/bnx2fc/
2609
2610 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2611 M:      QLogic-Storage-Upstream@qlogic.com
2612 L:      linux-scsi@vger.kernel.org
2613 S:      Supported
2614 F:      drivers/scsi/bnx2i/
2615
2616 BROADCOM IPROC ARM ARCHITECTURE
2617 M:      Ray Jui <rjui@broadcom.com>
2618 M:      Scott Branden <sbranden@broadcom.com>
2619 M:      Jon Mason <jonmason@broadcom.com>
2620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2621 L:      bcm-kernel-feedback-list@broadcom.com
2622 T:      git git://github.com/broadcom/cygnus-linux.git
2623 S:      Maintained
2624 N:      iproc
2625 N:      cygnus
2626 N:      nsp
2627 N:      bcm9113*
2628 N:      bcm9583*
2629 N:      bcm9585*
2630 N:      bcm9586*
2631 N:      bcm988312
2632 N:      bcm113*
2633 N:      bcm583*
2634 N:      bcm585*
2635 N:      bcm586*
2636 N:      bcm88312
2637
2638 BROADCOM BRCMSTB GPIO DRIVER
2639 M:      Gregory Fong <gregory.0xf0@gmail.com>
2640 L:      bcm-kernel-feedback-list@broadcom.com
2641 S:      Supported
2642 F:      drivers/gpio/gpio-brcmstb.c
2643 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2644
2645 BROADCOM KONA GPIO DRIVER
2646 M:      Ray Jui <rjui@broadcom.com>
2647 L:      bcm-kernel-feedback-list@broadcom.com
2648 S:      Supported
2649 F:      drivers/gpio/gpio-bcm-kona.c
2650 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2651
2652 BROADCOM NVRAM DRIVER
2653 M:      Rafał Miłecki <zajec5@gmail.com>
2654 L:      linux-mips@linux-mips.org
2655 S:      Maintained
2656 F:      drivers/firmware/broadcom/*
2657
2658 BROADCOM STB NAND FLASH DRIVER
2659 M:      Brian Norris <computersforpeace@gmail.com>
2660 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2661 L:      linux-mtd@lists.infradead.org
2662 L:      bcm-kernel-feedback-list@broadcom.com
2663 S:      Maintained
2664 F:      drivers/mtd/nand/brcmnand/
2665
2666 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2667 M:      Rafał Miłecki <zajec5@gmail.com>
2668 L:      linux-wireless@vger.kernel.org
2669 S:      Maintained
2670 F:      drivers/bcma/
2671 F:      include/linux/bcma/
2672
2673 BROADCOM SYSTEMPORT ETHERNET DRIVER
2674 M:      Florian Fainelli <f.fainelli@gmail.com>
2675 L:      netdev@vger.kernel.org
2676 S:      Supported
2677 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2678
2679 BROADCOM VULCAN ARM64 SOC
2680 M:      Jayachandran C. <jchandra@broadcom.com>
2681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2682 L:      bcm-kernel-feedback-list@broadcom.com
2683 S:      Maintained
2684 F:      arch/arm64/boot/dts/broadcom/vulcan*
2685
2686 BROCADE BFA FC SCSI DRIVER
2687 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2688 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2689 L:      linux-scsi@vger.kernel.org
2690 S:      Supported
2691 F:      drivers/scsi/bfa/
2692
2693 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2694 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2695 L:      netdev@vger.kernel.org
2696 S:      Supported
2697 F:      drivers/net/ethernet/brocade/bna/
2698
2699 BSG (block layer generic sg v4 driver)
2700 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2701 L:      linux-scsi@vger.kernel.org
2702 S:      Supported
2703 F:      block/bsg.c
2704 F:      include/linux/bsg.h
2705 F:      include/uapi/linux/bsg.h
2706
2707 BT87X AUDIO DRIVER
2708 M:      Clemens Ladisch <clemens@ladisch.de>
2709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2710 T:      git git://git.alsa-project.org/alsa-kernel.git
2711 S:      Maintained
2712 F:      Documentation/sound/alsa/Bt87x.txt
2713 F:      sound/pci/bt87x.c
2714
2715 BT8XXGPIO DRIVER
2716 M:      Michael Buesch <m@bues.ch>
2717 W:      http://bu3sch.de/btgpio.php
2718 S:      Maintained
2719 F:      drivers/gpio/gpio-bt8xx.c
2720
2721 BTRFS FILE SYSTEM
2722 M:      Chris Mason <clm@fb.com>
2723 M:      Josef Bacik <jbacik@fb.com>
2724 M:      David Sterba <dsterba@suse.com>
2725 L:      linux-btrfs@vger.kernel.org
2726 W:      http://btrfs.wiki.kernel.org/
2727 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2729 S:      Maintained
2730 F:      Documentation/filesystems/btrfs.txt
2731 F:      fs/btrfs/
2732
2733 BTTV VIDEO4LINUX DRIVER
2734 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2735 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2736 L:      linux-media@vger.kernel.org
2737 W:      https://linuxtv.org
2738 T:      git git://linuxtv.org/media_tree.git
2739 S:      Odd fixes
2740 F:      Documentation/video4linux/bttv/
2741 F:      drivers/media/pci/bt8xx/bttv*
2742
2743 BUSLOGIC SCSI DRIVER
2744 M:      Khalid Aziz <khalid@gonehiking.org>
2745 L:      linux-scsi@vger.kernel.org
2746 S:      Maintained
2747 F:      drivers/scsi/BusLogic.*
2748 F:      drivers/scsi/FlashPoint.*
2749
2750 C-MEDIA CMI8788 DRIVER
2751 M:      Clemens Ladisch <clemens@ladisch.de>
2752 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2753 T:      git git://git.alsa-project.org/alsa-kernel.git
2754 S:      Maintained
2755 F:      sound/pci/oxygen/
2756
2757 C6X ARCHITECTURE
2758 M:      Mark Salter <msalter@redhat.com>
2759 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2760 L:      linux-c6x-dev@linux-c6x.org
2761 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2762 S:      Maintained
2763 F:      arch/c6x/
2764
2765 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2766 M:      David Howells <dhowells@redhat.com>
2767 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2768 S:      Supported
2769 F:      Documentation/filesystems/caching/cachefiles.txt
2770 F:      fs/cachefiles/
2771
2772 CADET FM/AM RADIO RECEIVER DRIVER
2773 M:      Hans Verkuil <hverkuil@xs4all.nl>
2774 L:      linux-media@vger.kernel.org
2775 T:      git git://linuxtv.org/media_tree.git
2776 W:      https://linuxtv.org
2777 S:      Maintained
2778 F:      drivers/media/radio/radio-cadet*
2779
2780 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2781 M:      Jonathan Corbet <corbet@lwn.net>
2782 L:      linux-media@vger.kernel.org
2783 T:      git git://linuxtv.org/media_tree.git
2784 S:      Maintained
2785 F:      Documentation/video4linux/cafe_ccic
2786 F:      drivers/media/platform/marvell-ccic/
2787
2788 CAIF NETWORK LAYER
2789 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2790 L:      netdev@vger.kernel.org
2791 S:      Supported
2792 F:      Documentation/networking/caif/
2793 F:      drivers/net/caif/
2794 F:      include/uapi/linux/caif/
2795 F:      include/net/caif/
2796 F:      net/caif/
2797
2798 CALGARY x86-64 IOMMU
2799 M:      Muli Ben-Yehuda <mulix@mulix.org>
2800 M:      Jon Mason <jdmason@kudzu.us>
2801 L:      iommu@lists.linux-foundation.org
2802 S:      Maintained
2803 F:      arch/x86/kernel/pci-calgary_64.c
2804 F:      arch/x86/kernel/tce_64.c
2805 F:      arch/x86/include/asm/calgary.h
2806 F:      arch/x86/include/asm/tce.h
2807
2808 CAN NETWORK LAYER
2809 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2810 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2811 L:      linux-can@vger.kernel.org
2812 W:      https://github.com/linux-can
2813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2815 S:      Maintained
2816 F:      Documentation/networking/can.txt
2817 F:      net/can/
2818 F:      include/linux/can/core.h
2819 F:      include/uapi/linux/can.h
2820 F:      include/uapi/linux/can/bcm.h
2821 F:      include/uapi/linux/can/raw.h
2822 F:      include/uapi/linux/can/gw.h
2823
2824 CAN NETWORK DRIVERS
2825 M:      Wolfgang Grandegger <wg@grandegger.com>
2826 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2827 L:      linux-can@vger.kernel.org
2828 W:      https://github.com/linux-can
2829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2831 S:      Maintained
2832 F:      Documentation/devicetree/bindings/net/can/
2833 F:      drivers/net/can/
2834 F:      include/linux/can/dev.h
2835 F:      include/linux/can/platform/
2836 F:      include/uapi/linux/can/error.h
2837 F:      include/uapi/linux/can/netlink.h
2838
2839 CAPABILITIES
2840 M:      Serge Hallyn <serge@hallyn.com>
2841 L:      linux-security-module@vger.kernel.org
2842 S:      Supported
2843 F:      include/linux/capability.h
2844 F:      include/uapi/linux/capability.h
2845 F:      security/commoncap.c
2846 F:      kernel/capability.c
2847
2848 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2849 M:      Kevin Tsai <ktsai@capellamicro.com>
2850 S:      Maintained
2851 F:      drivers/iio/light/cm*
2852 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2853
2854 CAVIUM LIQUIDIO NETWORK DRIVER
2855 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2856 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2857 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2858 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2859 L:     netdev@vger.kernel.org
2860 W:     http://www.cavium.com
2861 S:     Supported
2862 F:     drivers/net/ethernet/cavium/liquidio/
2863
2864 CC2520 IEEE-802.15.4 RADIO DRIVER
2865 M:      Varka Bhadram <varkabhadram@gmail.com>
2866 L:      linux-wpan@vger.kernel.org
2867 S:      Maintained
2868 F:      drivers/net/ieee802154/cc2520.c
2869 F:      include/linux/spi/cc2520.h
2870 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2871
2872 CEC DRIVER
2873 M:      Hans Verkuil <hans.verkuil@cisco.com>
2874 L:      linux-media@vger.kernel.org
2875 T:      git git://linuxtv.org/media_tree.git
2876 W:      http://linuxtv.org
2877 S:      Supported
2878 F:      Documentation/cec.txt
2879 F:      Documentation/DocBook/media/v4l/cec*
2880 F:      drivers/staging/media/cec/
2881 F:      drivers/media/cec-edid.c
2882 F:      drivers/media/rc/keymaps/rc-cec.c
2883 F:      include/media/cec.h
2884 F:      include/media/cec-edid.h
2885 F:      include/linux/cec.h
2886 F:      include/linux/cec-funcs.h
2887
2888 CELL BROADBAND ENGINE ARCHITECTURE
2889 M:      Arnd Bergmann <arnd@arndb.de>
2890 L:      linuxppc-dev@lists.ozlabs.org
2891 W:      http://www.ibm.com/developerworks/power/cell/
2892 S:      Supported
2893 F:      arch/powerpc/include/asm/cell*.h
2894 F:      arch/powerpc/include/asm/spu*.h
2895 F:      arch/powerpc/include/uapi/asm/spu*.h
2896 F:      arch/powerpc/oprofile/*cell*
2897 F:      arch/powerpc/platforms/cell/
2898
2899 CEPH COMMON CODE (LIBCEPH)
2900 M:      Ilya Dryomov <idryomov@gmail.com>
2901 M:      "Yan, Zheng" <zyan@redhat.com>
2902 M:      Sage Weil <sage@redhat.com>
2903 L:      ceph-devel@vger.kernel.org
2904 W:      http://ceph.com/
2905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2906 T:      git git://github.com/ceph/ceph-client.git
2907 S:      Supported
2908 F:      net/ceph/
2909 F:      include/linux/ceph/
2910 F:      include/linux/crush/
2911
2912 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2913 M:      "Yan, Zheng" <zyan@redhat.com>
2914 M:      Sage Weil <sage@redhat.com>
2915 M:      Ilya Dryomov <idryomov@gmail.com>
2916 L:      ceph-devel@vger.kernel.org
2917 W:      http://ceph.com/
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2919 T:      git git://github.com/ceph/ceph-client.git
2920 S:      Supported
2921 F:      Documentation/filesystems/ceph.txt
2922 F:      fs/ceph/
2923
2924 CERTIFICATE HANDLING:
2925 M:      David Howells <dhowells@redhat.com>
2926 M:      David Woodhouse <dwmw2@infradead.org>
2927 L:      keyrings@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/module-signing.txt
2930 F:      certs/
2931 F:      scripts/sign-file.c
2932 F:      scripts/extract-cert.c
2933
2934 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2935 L:      linux-usb@vger.kernel.org
2936 S:      Orphan
2937 F:      Documentation/usb/WUSB-Design-overview.txt
2938 F:      Documentation/usb/wusb-cbaf
2939 F:      drivers/usb/host/hwa-hc.c
2940 F:      drivers/usb/host/whci/
2941 F:      drivers/usb/wusbcore/
2942 F:      include/linux/usb/wusb*
2943
2944 CFAG12864B LCD DRIVER
2945 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2946 W:      http://miguelojeda.es/auxdisplay.htm
2947 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2948 S:      Maintained
2949 F:      drivers/auxdisplay/cfag12864b.c
2950 F:      include/linux/cfag12864b.h
2951
2952 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2953 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2954 W:      http://miguelojeda.es/auxdisplay.htm
2955 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2956 S:      Maintained
2957 F:      drivers/auxdisplay/cfag12864bfb.c
2958 F:      include/linux/cfag12864b.h
2959
2960 CFG80211 and NL80211
2961 M:      Johannes Berg <johannes@sipsolutions.net>
2962 L:      linux-wireless@vger.kernel.org
2963 W:      http://wireless.kernel.org/
2964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2966 S:      Maintained
2967 F:      include/uapi/linux/nl80211.h
2968 F:      include/net/cfg80211.h
2969 F:      net/wireless/*
2970 X:      net/wireless/wext*
2971
2972 CHAR and MISC DRIVERS
2973 M:      Arnd Bergmann <arnd@arndb.de>
2974 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2976 S:      Supported
2977 F:      drivers/char/*
2978 F:      drivers/misc/*
2979 F:      include/linux/miscdevice.h
2980
2981 CHECKPATCH
2982 M:      Andy Whitcroft <apw@canonical.com>
2983 M:      Joe Perches <joe@perches.com>
2984 S:      Maintained
2985 F:      scripts/checkpatch.pl
2986
2987 CHINESE DOCUMENTATION
2988 M:      Harry Wei <harryxiyou@gmail.com>
2989 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2990 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2991 S:      Maintained
2992 F:      Documentation/zh_CN/
2993
2994 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2995 M:      Peter Chen <Peter.Chen@nxp.com>
2996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2997 L:      linux-usb@vger.kernel.org
2998 S:      Maintained
2999 F:      drivers/usb/chipidea/
3000
3001 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3002 M:      Hans de Goede <hdegoede@redhat.com>
3003 L:      linux-input@vger.kernel.org
3004 S:      Maintained
3005 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3006 F:      drivers/input/touchscreen/chipone_icn8318.c
3007
3008 CHROME HARDWARE PLATFORM SUPPORT
3009 M:      Olof Johansson <olof@lixom.net>
3010 S:      Maintained
3011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3012 F:      drivers/platform/chrome/
3013
3014 CISCO VIC ETHERNET NIC DRIVER
3015 M:      Christian Benvenuti <benve@cisco.com>
3016 M:      Sujith Sankar <ssujith@cisco.com>
3017 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3018 M:      Neel Patel <neepatel@cisco.com>
3019 S:      Supported
3020 F:      drivers/net/ethernet/cisco/enic/
3021
3022 CISCO VIC LOW LATENCY NIC DRIVER
3023 M:      Christian Benvenuti <benve@cisco.com>
3024 M:      Dave Goodell <dgoodell@cisco.com>
3025 S:      Supported
3026 F:      drivers/infiniband/hw/usnic/
3027
3028 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3029 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3030 L:      netdev@vger.kernel.org
3031 S:      Maintained
3032 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3033
3034 CIRRUS LOGIC AUDIO CODEC DRIVERS
3035 M:      Brian Austin <brian.austin@cirrus.com>
3036 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3037 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3038 S:      Maintained
3039 F:      sound/soc/codecs/cs*
3040
3041 CLEANCACHE API
3042 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3043 L:      linux-kernel@vger.kernel.org
3044 S:      Maintained
3045 F:      mm/cleancache.c
3046 F:      include/linux/cleancache.h
3047
3048 CLK API
3049 M:      Russell King <linux@armlinux.org.uk>
3050 L:      linux-clk@vger.kernel.org
3051 S:      Maintained
3052 F:      include/linux/clk.h
3053
3054 CLOCKSOURCE, CLOCKEVENT DRIVERS
3055 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3056 M:      Thomas Gleixner <tglx@linutronix.de>
3057 L:      linux-kernel@vger.kernel.org
3058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3059 S:      Supported
3060 F:      drivers/clocksource
3061
3062 CISCO FCOE HBA DRIVER
3063 M:      Hiral Patel <hiralpat@cisco.com>
3064 M:      Suma Ramars <sramars@cisco.com>
3065 M:      Brian Uchino <buchino@cisco.com>
3066 L:      linux-scsi@vger.kernel.org
3067 S:      Supported
3068 F:      drivers/scsi/fnic/
3069
3070 CISCO SCSI HBA DRIVER
3071 M:      Narsimhulu Musini <nmusini@cisco.com>
3072 M:      Sesidhar Baddela <sebaddel@cisco.com>
3073 L:      linux-scsi@vger.kernel.org
3074 S:      Supported
3075 F:      drivers/scsi/snic/
3076
3077 CMPC ACPI DRIVER
3078 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3079 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3080 L:      platform-driver-x86@vger.kernel.org
3081 S:      Supported
3082 F:      drivers/platform/x86/classmate-laptop.c
3083
3084 COBALT MEDIA DRIVER
3085 M:      Hans Verkuil <hans.verkuil@cisco.com>
3086 L:      linux-media@vger.kernel.org
3087 T:      git git://linuxtv.org/media_tree.git
3088 W:      https://linuxtv.org
3089 S:      Supported
3090 F:      drivers/media/pci/cobalt/
3091
3092 COCCINELLE/Semantic Patches (SmPL)
3093 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3094 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3095 M:      Nicolas Palix <nicolas.palix@imag.fr>
3096 M:      Michal Marek <mmarek@suse.com>
3097 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3099 W:      http://coccinelle.lip6.fr/
3100 S:      Supported
3101 F:      Documentation/coccinelle.txt
3102 F:      scripts/coccinelle/
3103 F:      scripts/coccicheck
3104
3105 CODA FILE SYSTEM
3106 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3107 M:      coda@cs.cmu.edu
3108 L:      codalist@coda.cs.cmu.edu
3109 W:      http://www.coda.cs.cmu.edu/
3110 S:      Maintained
3111 F:      Documentation/filesystems/coda.txt
3112 F:      fs/coda/
3113 F:      include/linux/coda*.h
3114 F:      include/uapi/linux/coda*.h
3115
3116 CODA V4L2 MEM2MEM DRIVER
3117 M:      Philipp Zabel <p.zabel@pengutronix.de>
3118 L:      linux-media@vger.kernel.org
3119 S:      Maintained
3120 F:      Documentation/devicetree/bindings/media/coda.txt
3121 F:      drivers/media/platform/coda/
3122
3123 COMMON CLK FRAMEWORK
3124 M:      Michael Turquette <mturquette@baylibre.com>
3125 M:      Stephen Boyd <sboyd@codeaurora.org>
3126 L:      linux-clk@vger.kernel.org
3127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3128 S:      Maintained
3129 F:      Documentation/devicetree/bindings/clock/
3130 F:      drivers/clk/
3131 X:      drivers/clk/clkdev.c
3132 F:      include/linux/clk-pr*
3133 F:      include/linux/clk/
3134
3135 COMMON INTERNET FILE SYSTEM (CIFS)
3136 M:      Steve French <sfrench@samba.org>
3137 L:      linux-cifs@vger.kernel.org
3138 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3139 W:      http://linux-cifs.samba.org/
3140 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3141 S:      Supported
3142 F:      Documentation/filesystems/cifs/
3143 F:      fs/cifs/
3144
3145 COMPACTPCI HOTPLUG CORE
3146 M:      Scott Murray <scott@spiteful.org>
3147 L:      linux-pci@vger.kernel.org
3148 S:      Maintained
3149 F:      drivers/pci/hotplug/cpci_hotplug*
3150
3151 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3152 M:      Scott Murray <scott@spiteful.org>
3153 L:      linux-pci@vger.kernel.org
3154 S:      Maintained
3155 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3156
3157 COMPACTPCI HOTPLUG GENERIC DRIVER
3158 M:      Scott Murray <scott@spiteful.org>
3159 L:      linux-pci@vger.kernel.org
3160 S:      Maintained
3161 F:      drivers/pci/hotplug/cpcihp_generic.c
3162
3163 COMPAL LAPTOP SUPPORT
3164 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3165 L:      platform-driver-x86@vger.kernel.org
3166 S:      Maintained
3167 F:      drivers/platform/x86/compal-laptop.c
3168
3169 CONEXANT ACCESSRUNNER USB DRIVER
3170 L:      accessrunner-general@lists.sourceforge.net
3171 W:      http://accessrunner.sourceforge.net/
3172 S:      Orphan
3173 F:      drivers/usb/atm/cxacru.c
3174
3175 CONFIGFS
3176 M:      Joel Becker <jlbec@evilplan.org>
3177 M:      Christoph Hellwig <hch@lst.de>
3178 T:      git git://git.infradead.org/users/hch/configfs.git
3179 S:      Supported
3180 F:      fs/configfs/
3181 F:      include/linux/configfs.h
3182
3183 CONNECTOR
3184 M:      Evgeniy Polyakov <zbr@ioremap.net>
3185 L:      netdev@vger.kernel.org
3186 S:      Maintained
3187 F:      drivers/connector/
3188
3189 CONTROL GROUP (CGROUP)
3190 M:      Tejun Heo <tj@kernel.org>
3191 M:      Li Zefan <lizefan@huawei.com>
3192 M:      Johannes Weiner <hannes@cmpxchg.org>
3193 L:      cgroups@vger.kernel.org
3194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3195 S:      Maintained
3196 F:      Documentation/cgroups/
3197 F:      include/linux/cgroup*
3198 F:      kernel/cgroup*
3199
3200 CONTROL GROUP - CPUSET
3201 M:      Li Zefan <lizefan@huawei.com>
3202 L:      cgroups@vger.kernel.org
3203 W:      http://www.bullopensource.org/cpuset/
3204 W:      http://oss.sgi.com/projects/cpusets/
3205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3206 S:      Maintained
3207 F:      Documentation/cgroups/cpusets.txt
3208 F:      include/linux/cpuset.h
3209 F:      kernel/cpuset.c
3210
3211 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3212 M:      Johannes Weiner <hannes@cmpxchg.org>
3213 M:      Michal Hocko <mhocko@kernel.org>
3214 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3215 L:      cgroups@vger.kernel.org
3216 L:      linux-mm@kvack.org
3217 S:      Maintained
3218 F:      mm/memcontrol.c
3219 F:      mm/swap_cgroup.c
3220
3221 CORETEMP HARDWARE MONITORING DRIVER
3222 M:      Fenghua Yu <fenghua.yu@intel.com>
3223 L:      linux-hwmon@vger.kernel.org
3224 S:      Maintained
3225 F:      Documentation/hwmon/coretemp
3226 F:      drivers/hwmon/coretemp.c
3227
3228 COSA/SRP SYNC SERIAL DRIVER
3229 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3230 W:      http://www.fi.muni.cz/~kas/cosa/
3231 S:      Maintained
3232 F:      drivers/net/wan/cosa*
3233
3234 CPMAC ETHERNET DRIVER
3235 M:      Florian Fainelli <florian@openwrt.org>
3236 L:      netdev@vger.kernel.org
3237 S:      Maintained
3238 F:      drivers/net/ethernet/ti/cpmac.c
3239
3240 CPU FREQUENCY DRIVERS
3241 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3242 M:      Viresh Kumar <viresh.kumar@linaro.org>
3243 L:      linux-pm@vger.kernel.org
3244 S:      Maintained
3245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3246 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3247 F:      drivers/cpufreq/
3248 F:      include/linux/cpufreq.h
3249
3250 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3251 M:      Viresh Kumar <viresh.kumar@linaro.org>
3252 M:      Sudeep Holla <sudeep.holla@arm.com>
3253 L:      linux-pm@vger.kernel.org
3254 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3255 S:      Maintained
3256 F:      drivers/cpufreq/arm_big_little.h
3257 F:      drivers/cpufreq/arm_big_little.c
3258 F:      drivers/cpufreq/arm_big_little_dt.c
3259
3260 CPUIDLE DRIVER - ARM BIG LITTLE
3261 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3262 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3263 L:      linux-pm@vger.kernel.org
3264 L:      linux-arm-kernel@lists.infradead.org
3265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3266 S:      Maintained
3267 F:      drivers/cpuidle/cpuidle-big_little.c
3268
3269 CPUIDLE DRIVER - ARM EXYNOS
3270 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3271 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3272 M:      Kukjin Kim <kgene@kernel.org>
3273 L:      linux-pm@vger.kernel.org
3274 L:      linux-samsung-soc@vger.kernel.org
3275 S:      Supported
3276 F:      drivers/cpuidle/cpuidle-exynos.c
3277 F:      arch/arm/mach-exynos/pm.c
3278
3279 CPUIDLE DRIVERS
3280 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3281 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3282 L:      linux-pm@vger.kernel.org
3283 S:      Maintained
3284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3285 F:      drivers/cpuidle/*
3286 F:      include/linux/cpuidle.h
3287
3288 CPUID/MSR DRIVER
3289 M:      "H. Peter Anvin" <hpa@zytor.com>
3290 S:      Maintained
3291 F:      arch/x86/kernel/cpuid.c
3292 F:      arch/x86/kernel/msr.c
3293
3294 CPU POWER MONITORING SUBSYSTEM
3295 M:      Thomas Renninger <trenn@suse.com>
3296 L:      linux-pm@vger.kernel.org
3297 S:      Maintained
3298 F:      tools/power/cpupower/
3299
3300 CRAMFS FILESYSTEM
3301 W:      http://sourceforge.net/projects/cramfs/
3302 S:      Orphan / Obsolete
3303 F:      Documentation/filesystems/cramfs.txt
3304 F:      fs/cramfs/
3305
3306 CRIS PORT
3307 M:      Mikael Starvik <starvik@axis.com>
3308 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3309 L:      linux-cris-kernel@axis.com
3310 W:      http://developer.axis.com
3311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3312 S:      Maintained
3313 F:      arch/cris/
3314 F:      drivers/tty/serial/crisv10.*
3315
3316 CRYPTO API
3317 M:      Herbert Xu <herbert@gondor.apana.org.au>
3318 M:      "David S. Miller" <davem@davemloft.net>
3319 L:      linux-crypto@vger.kernel.org
3320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3322 S:      Maintained
3323 F:      Documentation/crypto/
3324 F:      Documentation/devicetree/bindings/crypto/
3325 F:      Documentation/DocBook/crypto-API.tmpl
3326 F:      arch/*/crypto/
3327 F:      crypto/
3328 F:      drivers/crypto/
3329 F:      include/crypto/
3330
3331 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3332 M:      Neil Horman <nhorman@tuxdriver.com>
3333 L:      linux-crypto@vger.kernel.org
3334 S:      Maintained
3335 F:      crypto/ansi_cprng.c
3336 F:      crypto/rng.c
3337
3338 CS3308 MEDIA DRIVER
3339 M:      Hans Verkuil <hverkuil@xs4all.nl>
3340 L:      linux-media@vger.kernel.org
3341 T:      git git://linuxtv.org/media_tree.git
3342 W:      http://linuxtv.org
3343 S:      Odd Fixes
3344 F:      drivers/media/i2c/cs3308.c
3345 F:      drivers/media/i2c/cs3308.h
3346
3347 CS5535 Audio ALSA driver
3348 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3349 S:      Maintained
3350 F:      sound/pci/cs5535audio/
3351
3352 CW1200 WLAN driver
3353 M:      Solomon Peachy <pizza@shaftnet.org>
3354 S:      Maintained
3355 F:      drivers/net/wireless/st/cw1200/
3356
3357 CX18 VIDEO4LINUX DRIVER
3358 M:      Andy Walls <awalls@md.metrocast.net>
3359 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3360 L:      linux-media@vger.kernel.org
3361 T:      git git://linuxtv.org/media_tree.git
3362 W:      https://linuxtv.org
3363 W:      http://www.ivtvdriver.org/index.php/Cx18
3364 S:      Maintained
3365 F:      Documentation/video4linux/cx18.txt
3366 F:      drivers/media/pci/cx18/
3367 F:      include/uapi/linux/ivtv*
3368
3369 CX2341X MPEG ENCODER HELPER MODULE
3370 M:      Hans Verkuil <hverkuil@xs4all.nl>
3371 L:      linux-media@vger.kernel.org
3372 T:      git git://linuxtv.org/media_tree.git
3373 W:      https://linuxtv.org
3374 S:      Maintained
3375 F:      drivers/media/common/cx2341x*
3376 F:      include/media/cx2341x*
3377
3378 CX24120 MEDIA DRIVER
3379 M:      Jemma Denson <jdenson@gmail.com>
3380 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3381 L:      linux-media@vger.kernel.org
3382 W:      https://linuxtv.org
3383 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3384 S:      Maintained
3385 F:      drivers/media/dvb-frontends/cx24120*
3386
3387 CX88 VIDEO4LINUX DRIVER
3388 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3389 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3390 L:      linux-media@vger.kernel.org
3391 W:      https://linuxtv.org
3392 T:      git git://linuxtv.org/media_tree.git
3393 S:      Odd fixes
3394 F:      Documentation/video4linux/cx88/
3395 F:      drivers/media/pci/cx88/
3396
3397 CXD2820R MEDIA DRIVER
3398 M:      Antti Palosaari <crope@iki.fi>
3399 L:      linux-media@vger.kernel.org
3400 W:      https://linuxtv.org
3401 W:      http://palosaari.fi/linux/
3402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3403 T:      git git://linuxtv.org/anttip/media_tree.git
3404 S:      Maintained
3405 F:      drivers/media/dvb-frontends/cxd2820r*
3406
3407 CXGB3 ETHERNET DRIVER (CXGB3)
3408 M:      Santosh Raspatur <santosh@chelsio.com>
3409 L:      netdev@vger.kernel.org
3410 W:      http://www.chelsio.com
3411 S:      Supported
3412 F:      drivers/net/ethernet/chelsio/cxgb3/
3413
3414 CXGB3 ISCSI DRIVER (CXGB3I)
3415 M:      Karen Xie <kxie@chelsio.com>
3416 L:      linux-scsi@vger.kernel.org
3417 W:      http://www.chelsio.com
3418 S:      Supported
3419 F:      drivers/scsi/cxgbi/cxgb3i
3420
3421 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3422 M:      Steve Wise <swise@chelsio.com>
3423 L:      linux-rdma@vger.kernel.org
3424 W:      http://www.openfabrics.org
3425 S:      Supported
3426 F:      drivers/infiniband/hw/cxgb3/
3427
3428 CXGB4 ETHERNET DRIVER (CXGB4)
3429 M:      Hariprasad S <hariprasad@chelsio.com>
3430 L:      netdev@vger.kernel.org
3431 W:      http://www.chelsio.com
3432 S:      Supported
3433 F:      drivers/net/ethernet/chelsio/cxgb4/
3434
3435 CXGB4 ISCSI DRIVER (CXGB4I)
3436 M:      Karen Xie <kxie@chelsio.com>
3437 L:      linux-scsi@vger.kernel.org
3438 W:      http://www.chelsio.com
3439 S:      Supported
3440 F:      drivers/scsi/cxgbi/cxgb4i
3441
3442 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3443 M:      Steve Wise <swise@chelsio.com>
3444 L:      linux-rdma@vger.kernel.org
3445 W:      http://www.openfabrics.org
3446 S:      Supported
3447 F:      drivers/infiniband/hw/cxgb4/
3448
3449 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3450 M:      Casey Leedom <leedom@chelsio.com>
3451 L:      netdev@vger.kernel.org
3452 W:      http://www.chelsio.com
3453 S:      Supported
3454 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3455
3456 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3457 M:      Ian Munsie <imunsie@au1.ibm.com>
3458 M:      Michael Neuling <mikey@neuling.org>
3459 L:      linuxppc-dev@lists.ozlabs.org
3460 S:      Supported
3461 F:      drivers/misc/cxl/
3462 F:      include/misc/cxl*
3463 F:      include/uapi/misc/cxl.h
3464 F:      Documentation/powerpc/cxl.txt
3465 F:      Documentation/powerpc/cxl.txt
3466 F:      Documentation/ABI/testing/sysfs-class-cxl
3467
3468 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3469 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3470 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3471 L:      linux-scsi@vger.kernel.org
3472 S:      Supported
3473 F:      drivers/scsi/cxlflash/
3474 F:      include/uapi/scsi/cxlflash_ioctls.h
3475 F:      Documentation/powerpc/cxlflash.txt
3476
3477 STMMAC ETHERNET DRIVER
3478 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3479 M:      Alexandre Torgue <alexandre.torgue@st.com>
3480 L:      netdev@vger.kernel.org
3481 W:      http://www.stlinux.com
3482 S:      Supported
3483 F:      drivers/net/ethernet/stmicro/stmmac/
3484
3485 CYBERPRO FB DRIVER
3486 M:      Russell King <linux@armlinux.org.uk>
3487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3488 W:      http://www.armlinux.org.uk/
3489 S:      Maintained
3490 F:      drivers/video/fbdev/cyber2000fb.*
3491
3492 CYCLADES ASYNC MUX DRIVER
3493 W:      http://www.cyclades.com/
3494 S:      Orphan
3495 F:      drivers/tty/cyclades.c
3496 F:      include/linux/cyclades.h
3497 F:      include/uapi/linux/cyclades.h
3498
3499 CYCLADES PC300 DRIVER
3500 W:      http://www.cyclades.com/
3501 S:      Orphan
3502 F:      drivers/net/wan/pc300*
3503
3504 CYPRESS_FIRMWARE MEDIA DRIVER
3505 M:      Antti Palosaari <crope@iki.fi>
3506 L:      linux-media@vger.kernel.org
3507 W:      https://linuxtv.org
3508 W:      http://palosaari.fi/linux/
3509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3510 T:      git git://linuxtv.org/anttip/media_tree.git
3511 S:      Maintained
3512 F:      drivers/media/common/cypress_firmware*
3513
3514 CYTTSP TOUCHSCREEN DRIVER
3515 M:      Ferruh Yigit <fery@cypress.com>
3516 L:      linux-input@vger.kernel.org
3517 S:      Supported
3518 F:      drivers/input/touchscreen/cyttsp*
3519 F:      include/linux/input/cyttsp.h
3520
3521 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3522 M:      Joshua Kinard <kumba@gentoo.org>
3523 S:      Maintained
3524 F:      drivers/rtc/rtc-ds1685.c
3525 F:      include/linux/rtc/ds1685.h
3526
3527 DAMA SLAVE for AX.25
3528 M:      Joerg Reuter <jreuter@yaina.de>
3529 W:      http://yaina.de/jreuter/
3530 W:      http://www.qsl.net/dl1bke/
3531 L:      linux-hams@vger.kernel.org
3532 S:      Maintained
3533 F:      net/ax25/af_ax25.c
3534 F:      net/ax25/ax25_dev.c
3535 F:      net/ax25/ax25_ds_*
3536 F:      net/ax25/ax25_in.c
3537 F:      net/ax25/ax25_out.c
3538 F:      net/ax25/ax25_timer.c
3539 F:      net/ax25/sysctl_net_ax25.c
3540
3541 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3542 L:      netdev@vger.kernel.org
3543 S:      Orphan
3544 F:      Documentation/networking/dmfe.txt
3545 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3546
3547 DC390/AM53C974 SCSI driver
3548 M:      Hannes Reinecke <hare@suse.com>
3549 L:      linux-scsi@vger.kernel.org
3550 S:      Maintained
3551 F:      drivers/scsi/am53c974.c
3552
3553 DC395x SCSI driver
3554 M:      Oliver Neukum <oliver@neukum.org>
3555 M:      Ali Akcaagac <aliakc@web.de>
3556 M:      Jamie Lenehan <lenehan@twibble.org>
3557 L:      dc395x@twibble.org
3558 W:      http://twibble.org/dist/dc395x/
3559 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3560 S:      Maintained
3561 F:      Documentation/scsi/dc395x.txt
3562 F:      drivers/scsi/dc395x.*
3563
3564 DCCP PROTOCOL
3565 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3566 L:      dccp@vger.kernel.org
3567 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3568 S:      Maintained
3569 F:      include/linux/dccp.h
3570 F:      include/uapi/linux/dccp.h
3571 F:      include/linux/tfrc.h
3572 F:      net/dccp/
3573
3574 DECnet NETWORK LAYER
3575 W:      http://linux-decnet.sourceforge.net
3576 L:      linux-decnet-user@lists.sourceforge.net
3577 S:      Orphan
3578 F:      Documentation/networking/decnet.txt
3579 F:      net/decnet/
3580
3581 DECSTATION PLATFORM SUPPORT
3582 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3583 L:      linux-mips@linux-mips.org
3584 W:      http://www.linux-mips.org/wiki/DECstation
3585 S:      Maintained
3586 F:      arch/mips/dec/
3587 F:      arch/mips/include/asm/dec/
3588 F:      arch/mips/include/asm/mach-dec/
3589
3590 DEFXX FDDI NETWORK DRIVER
3591 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3592 S:      Maintained
3593 F:      drivers/net/fddi/defxx.*
3594
3595 DELL LAPTOP DRIVER
3596 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3597 M:      Pali Rohár <pali.rohar@gmail.com>
3598 L:      platform-driver-x86@vger.kernel.org
3599 S:      Maintained
3600 F:      drivers/platform/x86/dell-laptop.c
3601
3602 DELL LAPTOP RBTN DRIVER
3603 M:      Pali Rohár <pali.rohar@gmail.com>
3604 S:      Maintained
3605 F:      drivers/platform/x86/dell-rbtn.*
3606
3607 DELL LAPTOP FREEFALL DRIVER
3608 M:      Pali Rohár <pali.rohar@gmail.com>
3609 S:      Maintained
3610 F:      drivers/platform/x86/dell-smo8800.c
3611
3612 DELL LAPTOP SMM DRIVER
3613 M:      Pali Rohár <pali.rohar@gmail.com>
3614 S:      Maintained
3615 F:      drivers/hwmon/dell-smm-hwmon.c
3616 F:      include/uapi/linux/i8k.h
3617
3618 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3619 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3620 S:      Maintained
3621 F:      Documentation/dcdbas.txt
3622 F:      drivers/firmware/dcdbas.*
3623
3624 DELL WMI EXTRAS DRIVER
3625 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3626 M:      Pali Rohár <pali.rohar@gmail.com>
3627 S:      Maintained
3628 F:      drivers/platform/x86/dell-wmi.c
3629
3630 DESIGNWARE USB2 DRD IP DRIVER
3631 M:      John Youn <johnyoun@synopsys.com>
3632 L:      linux-usb@vger.kernel.org
3633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3634 S:      Maintained
3635 F:      drivers/usb/dwc2/
3636
3637 DESIGNWARE USB3 DRD IP DRIVER
3638 M:      Felipe Balbi <balbi@kernel.org>
3639 L:      linux-usb@vger.kernel.org
3640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3641 S:      Maintained
3642 F:      drivers/usb/dwc3/
3643
3644 DEVICE COREDUMP (DEV_COREDUMP)
3645 M:      Johannes Berg <johannes@sipsolutions.net>
3646 L:      linux-kernel@vger.kernel.org
3647 S:      Maintained
3648 F:      drivers/base/devcoredump.c
3649 F:      include/linux/devcoredump.h
3650
3651 DEVICE FREQUENCY (DEVFREQ)
3652 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3653 M:      Kyungmin Park <kyungmin.park@samsung.com>
3654 L:      linux-pm@vger.kernel.org
3655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3656 S:      Maintained
3657 F:      drivers/devfreq/
3658 F:      include/linux/devfreq.h
3659 F:      Documentation/devicetree/bindings/devfreq/
3660
3661 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3662 M:      Chanwoo Choi <cw00.choi@samsung.com>
3663 L:      linux-pm@vger.kernel.org
3664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3665 S:      Supported
3666 F:      drivers/devfreq/event/
3667 F:      drivers/devfreq/devfreq-event.c
3668 F:      include/linux/devfreq-event.h
3669 F:      Documentation/devicetree/bindings/devfreq/event/
3670
3671 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3672 M:      Chanwoo Choi <cw00.choi@samsung.com>
3673 L:      linux-pm@vger.kernel.org
3674 L:      linux-samsung-soc@vger.kernel.org
3675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3676 S:      Maintained
3677 F:      drivers/devfreq/exynos-bus.c
3678 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3679
3680 DEVICE NUMBER REGISTRY
3681 M:      Torben Mathiasen <device@lanana.org>
3682 W:      http://lanana.org/docs/device-list/index.html
3683 S:      Maintained
3684
3685 DEVICE-MAPPER  (LVM)
3686 M:      Alasdair Kergon <agk@redhat.com>
3687 M:      Mike Snitzer <snitzer@redhat.com>
3688 M:      dm-devel@redhat.com
3689 L:      dm-devel@redhat.com
3690 W:      http://sources.redhat.com/dm
3691 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3693 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3694 S:      Maintained
3695 F:      Documentation/device-mapper/
3696 F:      drivers/md/dm*
3697 F:      drivers/md/persistent-data/
3698 F:      include/linux/device-mapper.h
3699 F:      include/linux/dm-*.h
3700 F:      include/uapi/linux/dm-*.h
3701
3702 DEVLINK
3703 M:      Jiri Pirko <jiri@mellanox.com>
3704 L:      netdev@vger.kernel.org
3705 S:      Supported
3706 F:      net/core/devlink.c
3707 F:      include/net/devlink.h
3708 F:      include/uapi/linux/devlink.h
3709
3710 DIALOG SEMICONDUCTOR DRIVERS
3711 M:      Support Opensource <support.opensource@diasemi.com>
3712 W:      http://www.dialog-semiconductor.com/products
3713 S:      Supported
3714 F:      Documentation/hwmon/da90??
3715 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3716 F:      drivers/gpio/gpio-da90??.c
3717 F:      drivers/hwmon/da90??-hwmon.c
3718 F:      drivers/iio/adc/da91??-*.c
3719 F:      drivers/input/misc/da90??_onkey.c
3720 F:      drivers/input/touchscreen/da9052_tsi.c
3721 F:      drivers/leds/leds-da90??.c
3722 F:      drivers/mfd/da903x.c
3723 F:      drivers/mfd/da90??-*.c
3724 F:      drivers/mfd/da91??-*.c
3725 F:      drivers/power/da9052-battery.c
3726 F:      drivers/power/da91??-*.c
3727 F:      drivers/regulator/da903x.c
3728 F:      drivers/regulator/da9???-regulator.[ch]
3729 F:      drivers/rtc/rtc-da90??.c
3730 F:      drivers/video/backlight/da90??_bl.c
3731 F:      drivers/watchdog/da90??_wdt.c
3732 F:      include/linux/mfd/da903x.h
3733 F:      include/linux/mfd/da9052/
3734 F:      include/linux/mfd/da9055/
3735 F:      include/linux/mfd/da9063/
3736 F:      include/linux/mfd/da9150/
3737 F:      include/sound/da[79]*.h
3738 F:      sound/soc/codecs/da[79]*.[ch]
3739
3740 DIGI NEO AND CLASSIC PCI PRODUCTS
3741 M:      Lidza Louina <lidza.louina@gmail.com>
3742 M:      Mark Hounschell <markh@compro.net>
3743 L:      driverdev-devel@linuxdriverproject.org
3744 S:      Maintained
3745 F:      drivers/staging/dgnc/
3746
3747 DIOLAN U2C-12 I2C DRIVER
3748 M:      Guenter Roeck <linux@roeck-us.net>
3749 L:      linux-i2c@vger.kernel.org
3750 S:      Maintained
3751 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3752
3753 DIRECT ACCESS (DAX)
3754 M:      Matthew Wilcox <willy@linux.intel.com>
3755 L:      linux-fsdevel@vger.kernel.org
3756 S:      Supported
3757 F:      fs/dax.c
3758
3759 DIRECTORY NOTIFICATION (DNOTIFY)
3760 M:      Eric Paris <eparis@parisplace.org>
3761 S:      Maintained
3762 F:      Documentation/filesystems/dnotify.txt
3763 F:      fs/notify/dnotify/
3764 F:      include/linux/dnotify.h
3765
3766 DISK GEOMETRY AND PARTITION HANDLING
3767 M:      Andries Brouwer <aeb@cwi.nl>
3768 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3769 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3770 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3771 S:      Maintained
3772
3773 DISKQUOTA
3774 M:      Jan Kara <jack@suse.com>
3775 S:      Maintained
3776 F:      Documentation/filesystems/quota.txt
3777 F:      fs/quota/
3778 F:      include/linux/quota*.h
3779 F:      include/uapi/linux/quota*.h
3780
3781 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3782 M:      Bernie Thompson <bernie@plugable.com>
3783 L:      linux-fbdev@vger.kernel.org
3784 S:      Maintained
3785 W:      http://plugable.com/category/projects/udlfb/
3786 F:      drivers/video/fbdev/udlfb.c
3787 F:      include/video/udlfb.h
3788 F:      Documentation/fb/udlfb.txt
3789
3790 DISTRIBUTED LOCK MANAGER (DLM)
3791 M:      Christine Caulfield <ccaulfie@redhat.com>
3792 M:      David Teigland <teigland@redhat.com>
3793 L:      cluster-devel@redhat.com
3794 W:      http://sources.redhat.com/cluster/
3795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3796 S:      Supported
3797 F:      fs/dlm/
3798
3799 DMA BUFFER SHARING FRAMEWORK
3800 M:      Sumit Semwal <sumit.semwal@linaro.org>
3801 S:      Maintained
3802 L:      linux-media@vger.kernel.org
3803 L:      dri-devel@lists.freedesktop.org
3804 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3805 F:      drivers/dma-buf/
3806 F:      include/linux/dma-buf*
3807 F:      include/linux/reservation.h
3808 F:      include/linux/*fence.h
3809 F:      Documentation/dma-buf-sharing.txt
3810 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3811
3812 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3813 M:      Vinod Koul <vinod.koul@intel.com>
3814 L:      dmaengine@vger.kernel.org
3815 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3816 S:      Maintained
3817 F:      drivers/dma/
3818 F:      include/linux/dmaengine.h
3819 F:      Documentation/devicetree/bindings/dma/
3820 F:      Documentation/dmaengine/
3821 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3822
3823 DME1737 HARDWARE MONITOR DRIVER
3824 M:      Juerg Haefliger <juergh@gmail.com>
3825 L:      linux-hwmon@vger.kernel.org
3826 S:      Maintained
3827 F:      Documentation/hwmon/dme1737
3828 F:      drivers/hwmon/dme1737.c
3829
3830 DMI/SMBIOS SUPPORT
3831 M:      Jean Delvare <jdelvare@suse.com>
3832 S:      Maintained
3833 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3834 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3835 F:      drivers/firmware/dmi-id.c
3836 F:      drivers/firmware/dmi_scan.c
3837 F:      include/linux/dmi.h
3838
3839 DOCUMENTATION
3840 M:      Jonathan Corbet <corbet@lwn.net>
3841 L:      linux-doc@vger.kernel.org
3842 S:      Maintained
3843 F:      Documentation/
3844 F:      scripts/docproc.c
3845 F:      scripts/kernel-doc*
3846 X:      Documentation/ABI/
3847 X:      Documentation/devicetree/
3848 X:      Documentation/acpi
3849 X:      Documentation/power
3850 X:      Documentation/spi
3851 X:      Documentation/DocBook/media
3852 T:      git git://git.lwn.net/linux.git docs-next
3853
3854 DOUBLETALK DRIVER
3855 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3856 L:      blinux-list@redhat.com
3857 S:      Maintained
3858 F:      drivers/char/dtlk.c
3859 F:      include/linux/dtlk.h
3860
3861 DPT_I2O SCSI RAID DRIVER
3862 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3863 L:      linux-scsi@vger.kernel.org
3864 W:      http://www.adaptec.com/
3865 S:      Maintained
3866 F:      drivers/scsi/dpt*
3867 F:      drivers/scsi/dpt/
3868
3869 DRBD DRIVER
3870 M:      Philipp Reisner <philipp.reisner@linbit.com>
3871 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3872 L:      drbd-dev@lists.linbit.com
3873 W:      http://www.drbd.org
3874 T:      git git://git.linbit.com/linux-drbd.git
3875 T:      git git://git.linbit.com/drbd-8.4.git
3876 S:      Supported
3877 F:      drivers/block/drbd/
3878 F:      lib/lru_cache.c
3879 F:      Documentation/blockdev/drbd/
3880
3881 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3882 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3884 S:      Supported
3885 F:      Documentation/kobject.txt
3886 F:      drivers/base/
3887 F:      fs/debugfs/
3888 F:      fs/kernfs/
3889 F:      fs/sysfs/
3890 F:      include/linux/debugfs.h
3891 F:      include/linux/kobj*
3892 F:      lib/kobj*
3893
3894 DRM DRIVERS
3895 M:      David Airlie <airlied@linux.ie>
3896 L:      dri-devel@lists.freedesktop.org
3897 T:      git git://people.freedesktop.org/~airlied/linux
3898 S:      Maintained
3899 F:      drivers/gpu/drm/
3900 F:      drivers/gpu/vga/
3901 F:      Documentation/DocBook/gpu.*
3902 F:      include/drm/
3903 F:      include/uapi/drm/
3904
3905 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
3906 M:      Dave Airlie <airlied@redhat.com>
3907 S:      Odd Fixes
3908 F:      drivers/gpu/drm/ast/
3909
3910 DRM DRIVER FOR BOCHS VIRTUAL GPU
3911 M:      Gerd Hoffmann <kraxel@redhat.com>
3912 S:      Odd Fixes
3913 F:      drivers/gpu/drm/bochs/
3914
3915 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
3916 M:      Dave Airlie <airlied@redhat.com>
3917 S:      Odd Fixes
3918 F:      drivers/gpu/drm/cirrus/
3919
3920 RADEON and AMDGPU DRM DRIVERS
3921 M:      Alex Deucher <alexander.deucher@amd.com>
3922 M:      Christian König <christian.koenig@amd.com>
3923 L:      dri-devel@lists.freedesktop.org
3924 T:      git git://people.freedesktop.org/~agd5f/linux
3925 S:      Supported
3926 F:      drivers/gpu/drm/radeon/
3927 F:      include/uapi/drm/radeon_drm.h
3928 F:      drivers/gpu/drm/amd/
3929 F:      include/uapi/drm/amdgpu_drm.h
3930
3931 DRM PANEL DRIVERS
3932 M:      Thierry Reding <thierry.reding@gmail.com>
3933 L:      dri-devel@lists.freedesktop.org
3934 T:      git git://anongit.freedesktop.org/tegra/linux.git
3935 S:      Maintained
3936 F:      drivers/gpu/drm/drm_panel.c
3937 F:      drivers/gpu/drm/panel/
3938 F:      include/drm/drm_panel.h
3939 F:      Documentation/devicetree/bindings/display/panel/
3940
3941 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3942 M:      Daniel Vetter <daniel.vetter@intel.com>
3943 M:      Jani Nikula <jani.nikula@linux.intel.com>
3944 L:      intel-gfx@lists.freedesktop.org
3945 L:      dri-devel@lists.freedesktop.org
3946 W:      https://01.org/linuxgraphics/
3947 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3948 T:      git git://anongit.freedesktop.org/drm-intel
3949 S:      Supported
3950 F:      drivers/gpu/drm/i915/
3951 F:      include/drm/i915*
3952 F:      include/uapi/drm/i915_drm.h
3953
3954 DRM DRIVERS FOR ATMEL HLCDC
3955 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3956 L:      dri-devel@lists.freedesktop.org
3957 S:      Supported
3958 F:      drivers/gpu/drm/atmel-hlcdc/
3959 F:      Documentation/devicetree/bindings/drm/atmel/
3960
3961 DRM DRIVERS FOR ALLWINNER A10
3962 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
3963 L:      dri-devel@lists.freedesktop.org
3964 S:      Supported
3965 F:      drivers/gpu/drm/sun4i/
3966 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
3967
3968 DRM DRIVERS FOR EXYNOS
3969 M:      Inki Dae <inki.dae@samsung.com>
3970 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3971 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3972 M:      Kyungmin Park <kyungmin.park@samsung.com>
3973 L:      dri-devel@lists.freedesktop.org
3974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3975 S:      Supported
3976 F:      drivers/gpu/drm/exynos/
3977 F:      include/uapi/drm/exynos_drm.h
3978 F:      Documentation/devicetree/bindings/display/exynos/
3979
3980 DRM DRIVERS FOR FREESCALE DCU
3981 M:      Stefan Agner <stefan@agner.ch>
3982 M:      Alison Wang <alison.wang@freescale.com>
3983 L:      dri-devel@lists.freedesktop.org
3984 S:      Supported
3985 F:      drivers/gpu/drm/fsl-dcu/
3986 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3987 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
3988 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3989
3990 DRM DRIVERS FOR FREESCALE IMX
3991 M:      Philipp Zabel <p.zabel@pengutronix.de>
3992 L:      dri-devel@lists.freedesktop.org
3993 S:      Maintained
3994 F:      drivers/gpu/drm/imx/
3995 F:      drivers/gpu/ipu-v3/
3996 F:      Documentation/devicetree/bindings/display/imx/
3997
3998 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3999 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4000 L:      dri-devel@lists.freedesktop.org
4001 T:      git git://github.com/patjak/drm-gma500
4002 S:      Maintained
4003 F:      drivers/gpu/drm/gma500/
4004
4005 DRM DRIVERS FOR HISILICON
4006 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4007 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4008 R:      Chen Feng <puck.chen@hisilicon.com>
4009 L:      dri-devel@lists.freedesktop.org
4010 T:      git git://github.com/xin3liang/linux.git
4011 S:      Maintained
4012 F:      drivers/gpu/drm/hisilicon/
4013 F:      Documentation/devicetree/bindings/display/hisilicon/
4014
4015 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4016 S:      Orphan / Obsolete
4017 F:      drivers/gpu/drm/i810/
4018 F:      include/uapi/drm/i810_drm.h
4019
4020 DRM DRIVER FOR MSM ADRENO GPU
4021 M:      Rob Clark <robdclark@gmail.com>
4022 L:      linux-arm-msm@vger.kernel.org
4023 L:      dri-devel@lists.freedesktop.org
4024 L:      freedreno@lists.freedesktop.org
4025 T:      git git://people.freedesktop.org/~robclark/linux
4026 S:      Maintained
4027 F:      drivers/gpu/drm/msm/
4028 F:      include/uapi/drm/msm_drm.h
4029 F:      Documentation/devicetree/bindings/display/msm/
4030
4031 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4032 M:      Ben Skeggs <bskeggs@redhat.com>
4033 L:      dri-devel@lists.freedesktop.org
4034 L:      nouveau@lists.freedesktop.org
4035 T:      git git://github.com/skeggsb/linux
4036 S:      Supported
4037 F:      drivers/gpu/drm/nouveau/
4038 F:      include/uapi/drm/nouveau_drm.h
4039
4040 DRM DRIVERS FOR NVIDIA TEGRA
4041 M:      Thierry Reding <thierry.reding@gmail.com>
4042 L:      dri-devel@lists.freedesktop.org
4043 L:      linux-tegra@vger.kernel.org
4044 T:      git git://anongit.freedesktop.org/tegra/linux.git
4045 S:      Supported
4046 F:      drivers/gpu/drm/tegra/
4047 F:      drivers/gpu/host1x/
4048 F:      include/linux/host1x.h
4049 F:      include/uapi/drm/tegra_drm.h
4050 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4051
4052 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4053 S:      Orphan / Obsolete
4054 F:      drivers/gpu/drm/mga/
4055 F:      include/uapi/drm/mga_drm.h
4056
4057 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4058 M:      Dave Airlie <airlied@redhat.com>
4059 S:      Odd Fixes
4060 F:      drivers/gpu/drm/mgag200/
4061
4062 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4063 S:      Orphan / Obsolete
4064 F:      drivers/gpu/drm/r128/
4065 F:      include/uapi/drm/r128_drm.h
4066
4067 DRM DRIVERS FOR RENESAS
4068 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4069 L:      dri-devel@lists.freedesktop.org
4070 L:      linux-renesas-soc@vger.kernel.org
4071 T:      git git://linuxtv.org/pinchartl/fbdev
4072 S:      Supported
4073 F:      drivers/gpu/drm/rcar-du/
4074 F:      drivers/gpu/drm/shmobile/
4075 F:      include/linux/platform_data/shmob_drm.h
4076 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4077
4078 DRM DRIVER FOR QXL VIRTUAL GPU
4079 M:      Dave Airlie <airlied@redhat.com>
4080 S:      Odd Fixes
4081 F:      drivers/gpu/drm/qxl/
4082 F:      include/uapi/drm/qxl_drm.h
4083
4084 DRM DRIVERS FOR ROCKCHIP
4085 M:      Mark Yao <mark.yao@rock-chips.com>
4086 L:      dri-devel@lists.freedesktop.org
4087 S:      Maintained
4088 F:      drivers/gpu/drm/rockchip/
4089 F:      Documentation/devicetree/bindings/display/rockchip/
4090
4091 DRM DRIVER FOR SAVAGE VIDEO CARDS
4092 S:      Orphan / Obsolete
4093 F:      drivers/gpu/drm/savage/
4094 F:      include/uapi/drm/savage_drm.h
4095
4096 DRM DRIVER FOR SIS VIDEO CARDS
4097 S:      Orphan / Obsolete
4098 F:      drivers/gpu/drm/sis/
4099 F:      include/uapi/drm/sis_drm.h
4100
4101 DRM DRIVERS FOR STI
4102 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4103 M:      Vincent Abriou <vincent.abriou@st.com>
4104 L:      dri-devel@lists.freedesktop.org
4105 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
4106 S:      Maintained
4107 F:      drivers/gpu/drm/sti
4108 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4109
4110 DRM DRIVER FOR TDFX VIDEO CARDS
4111 S:      Orphan / Obsolete
4112 F:      drivers/gpu/drm/tdfx/
4113
4114 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4115 M:      Dave Airlie <airlied@redhat.com>
4116 S:      Odd Fixes
4117 F:      drivers/gpu/drm/udl/
4118
4119 DRM DRIVERS FOR VIVANTE GPU IP
4120 M:      Lucas Stach <l.stach@pengutronix.de>
4121 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4122 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4123 L:      dri-devel@lists.freedesktop.org
4124 S:      Maintained
4125 F:      drivers/gpu/drm/etnaviv/
4126 F:      include/uapi/drm/etnaviv_drm.h
4127 F:      Documentation/devicetree/bindings/display/etnaviv/
4128
4129 DRM DRIVER FOR VMWARE VIRTUAL GPU
4130 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4131 M:      Sinclair Yeh <syeh@vmware.com>
4132 M:      Thomas Hellstrom <thellstrom@vmware.com>
4133 L:      dri-devel@lists.freedesktop.org
4134 T:      git git://people.freedesktop.org/~syeh/repos_linux
4135 T:      git git://people.freedesktop.org/~thomash/linux
4136 S:      Supported
4137 F:      drivers/gpu/drm/vmwgfx/
4138 F:      include/uapi/drm/vmwgfx_drm.h
4139
4140 DRM DRIVERS FOR VC4
4141 M:      Eric Anholt <eric@anholt.net>
4142 T:      git git://github.com/anholt/linux
4143 S:      Supported
4144 F:      drivers/gpu/drm/vc4/
4145 F:      include/uapi/drm/vc4_drm.h
4146 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4147
4148 DSBR100 USB FM RADIO DRIVER
4149 M:      Alexey Klimov <klimov.linux@gmail.com>
4150 L:      linux-media@vger.kernel.org
4151 T:      git git://linuxtv.org/media_tree.git
4152 S:      Maintained
4153 F:      drivers/media/radio/dsbr100.c
4154
4155 DSCC4 DRIVER
4156 M:      Francois Romieu <romieu@fr.zoreil.com>
4157 L:      netdev@vger.kernel.org
4158 S:      Maintained
4159 F:      drivers/net/wan/dscc4.c
4160
4161 DT3155 MEDIA DRIVER
4162 M:      Hans Verkuil <hverkuil@xs4all.nl>
4163 L:      linux-media@vger.kernel.org
4164 T:      git git://linuxtv.org/media_tree.git
4165 W:      https://linuxtv.org
4166 S:      Odd Fixes
4167 F:      drivers/media/pci/dt3155/
4168
4169 DVB_USB_AF9015 MEDIA DRIVER
4170 M:      Antti Palosaari <crope@iki.fi>
4171 L:      linux-media@vger.kernel.org
4172 W:      https://linuxtv.org
4173 W:      http://palosaari.fi/linux/
4174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4175 T:      git git://linuxtv.org/anttip/media_tree.git
4176 S:      Maintained
4177 F:      drivers/media/usb/dvb-usb-v2/af9015*
4178
4179 DVB_USB_AF9035 MEDIA DRIVER
4180 M:      Antti Palosaari <crope@iki.fi>
4181 L:      linux-media@vger.kernel.org
4182 W:      https://linuxtv.org
4183 W:      http://palosaari.fi/linux/
4184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4185 T:      git git://linuxtv.org/anttip/media_tree.git
4186 S:      Maintained
4187 F:      drivers/media/usb/dvb-usb-v2/af9035*
4188
4189 DVB_USB_ANYSEE MEDIA DRIVER
4190 M:      Antti Palosaari <crope@iki.fi>
4191 L:      linux-media@vger.kernel.org
4192 W:      https://linuxtv.org
4193 W:      http://palosaari.fi/linux/
4194 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4195 T:      git git://linuxtv.org/anttip/media_tree.git
4196 S:      Maintained
4197 F:      drivers/media/usb/dvb-usb-v2/anysee*
4198
4199 DVB_USB_AU6610 MEDIA DRIVER
4200 M:      Antti Palosaari <crope@iki.fi>
4201 L:      linux-media@vger.kernel.org
4202 W:      https://linuxtv.org
4203 W:      http://palosaari.fi/linux/
4204 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4205 T:      git git://linuxtv.org/anttip/media_tree.git
4206 S:      Maintained
4207 F:      drivers/media/usb/dvb-usb-v2/au6610*
4208
4209 DVB_USB_CE6230 MEDIA DRIVER
4210 M:      Antti Palosaari <crope@iki.fi>
4211 L:      linux-media@vger.kernel.org
4212 W:      https://linuxtv.org
4213 W:      http://palosaari.fi/linux/
4214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4215 T:      git git://linuxtv.org/anttip/media_tree.git
4216 S:      Maintained
4217 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4218
4219 DVB_USB_CXUSB MEDIA DRIVER
4220 M:      Michael Krufky <mkrufky@linuxtv.org>
4221 L:      linux-media@vger.kernel.org
4222 W:      https://linuxtv.org
4223 W:      http://github.com/mkrufky
4224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4225 T:      git git://linuxtv.org/media_tree.git
4226 S:      Maintained
4227 F:      drivers/media/usb/dvb-usb/cxusb*
4228
4229 DVB_USB_EC168 MEDIA DRIVER
4230 M:      Antti Palosaari <crope@iki.fi>
4231 L:      linux-media@vger.kernel.org
4232 W:      https://linuxtv.org
4233 W:      http://palosaari.fi/linux/
4234 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4235 T:      git git://linuxtv.org/anttip/media_tree.git
4236 S:      Maintained
4237 F:      drivers/media/usb/dvb-usb-v2/ec168*
4238
4239 DVB_USB_GL861 MEDIA DRIVER
4240 M:      Antti Palosaari <crope@iki.fi>
4241 L:      linux-media@vger.kernel.org
4242 W:      https://linuxtv.org
4243 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4244 T:      git git://linuxtv.org/anttip/media_tree.git
4245 S:      Maintained
4246 F:      drivers/media/usb/dvb-usb-v2/gl861*
4247
4248 DVB_USB_MXL111SF MEDIA DRIVER
4249 M:      Michael Krufky <mkrufky@linuxtv.org>
4250 L:      linux-media@vger.kernel.org
4251 W:      https://linuxtv.org
4252 W:      http://github.com/mkrufky
4253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4254 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4255 S:      Maintained
4256 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4257
4258 DVB_USB_RTL28XXU MEDIA DRIVER
4259 M:      Antti Palosaari <crope@iki.fi>
4260 L:      linux-media@vger.kernel.org
4261 W:      https://linuxtv.org
4262 W:      http://palosaari.fi/linux/
4263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4264 T:      git git://linuxtv.org/anttip/media_tree.git
4265 S:      Maintained
4266 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4267
4268 DVB_USB_V2 MEDIA DRIVER
4269 M:      Antti Palosaari <crope@iki.fi>
4270 L:      linux-media@vger.kernel.org
4271 W:      https://linuxtv.org
4272 W:      http://palosaari.fi/linux/
4273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4274 T:      git git://linuxtv.org/anttip/media_tree.git
4275 S:      Maintained
4276 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4277 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4278
4279 DYNAMIC DEBUG
4280 M:      Jason Baron <jbaron@akamai.com>
4281 S:      Maintained
4282 F:      lib/dynamic_debug.c
4283 F:      include/linux/dynamic_debug.h
4284
4285 DZ DECSTATION DZ11 SERIAL DRIVER
4286 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4287 S:      Maintained
4288 F:      drivers/tty/serial/dz.*
4289
4290 E3X0 POWER BUTTON DRIVER
4291 M:      Moritz Fischer <moritz.fischer@ettus.com>
4292 L:      usrp-users@lists.ettus.com
4293 W:      http://www.ettus.com
4294 S:      Supported
4295 F:      drivers/input/misc/e3x0-button.c
4296 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4297
4298 E4000 MEDIA DRIVER
4299 M:      Antti Palosaari <crope@iki.fi>
4300 L:      linux-media@vger.kernel.org
4301 W:      https://linuxtv.org
4302 W:      http://palosaari.fi/linux/
4303 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4304 T:      git git://linuxtv.org/anttip/media_tree.git
4305 S:      Maintained
4306 F:      drivers/media/tuners/e4000*
4307
4308 EATA ISA/EISA/PCI SCSI DRIVER
4309 M:      Dario Ballabio <ballabio_dario@emc.com>
4310 L:      linux-scsi@vger.kernel.org
4311 S:      Maintained
4312 F:      drivers/scsi/eata.c
4313
4314 EC100 MEDIA DRIVER
4315 M:      Antti Palosaari <crope@iki.fi>
4316 L:      linux-media@vger.kernel.org
4317 W:      https://linuxtv.org
4318 W:      http://palosaari.fi/linux/
4319 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4320 T:      git git://linuxtv.org/anttip/media_tree.git
4321 S:      Maintained
4322 F:      drivers/media/dvb-frontends/ec100*
4323
4324 ECRYPT FILE SYSTEM
4325 M:      Tyler Hicks <tyhicks@canonical.com>
4326 L:      ecryptfs@vger.kernel.org
4327 W:      http://ecryptfs.org
4328 W:      https://launchpad.net/ecryptfs
4329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4330 S:      Supported
4331 F:      Documentation/filesystems/ecryptfs.txt
4332 F:      fs/ecryptfs/
4333
4334 EDAC-CORE
4335 M:      Doug Thompson <dougthompson@xmission.com>
4336 M:      Borislav Petkov <bp@alien8.de>
4337 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4338 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4339 L:      linux-edac@vger.kernel.org
4340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4342 S:      Supported
4343 F:      Documentation/edac.txt
4344 F:      drivers/edac/
4345 F:      include/linux/edac.h
4346
4347 EDAC-AMD64
4348 M:      Doug Thompson <dougthompson@xmission.com>
4349 M:      Borislav Petkov <bp@alien8.de>
4350 L:      linux-edac@vger.kernel.org
4351 S:      Maintained
4352 F:      drivers/edac/amd64_edac*
4353
4354 EDAC-CALXEDA
4355 M:      Doug Thompson <dougthompson@xmission.com>
4356 M:      Robert Richter <rric@kernel.org>
4357 L:      linux-edac@vger.kernel.org
4358 S:      Maintained
4359 F:      drivers/edac/highbank*
4360
4361 EDAC-CAVIUM
4362 M:      Ralf Baechle <ralf@linux-mips.org>
4363 M:      David Daney <david.daney@cavium.com>
4364 L:      linux-edac@vger.kernel.org
4365 L:      linux-mips@linux-mips.org
4366 S:      Supported
4367 F:      drivers/edac/octeon_edac*
4368
4369 EDAC-E752X
4370 M:      Mark Gross <mark.gross@intel.com>
4371 M:      Doug Thompson <dougthompson@xmission.com>
4372 L:      linux-edac@vger.kernel.org
4373 S:      Maintained
4374 F:      drivers/edac/e752x_edac.c
4375
4376 EDAC-E7XXX
4377 M:      Doug Thompson <dougthompson@xmission.com>
4378 L:      linux-edac@vger.kernel.org
4379 S:      Maintained
4380 F:      drivers/edac/e7xxx_edac.c
4381
4382 EDAC-GHES
4383 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4384 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4385 L:      linux-edac@vger.kernel.org
4386 S:      Maintained
4387 F:      drivers/edac/ghes_edac.c
4388
4389 EDAC-I82443BXGX
4390 M:      Tim Small <tim@buttersideup.com>
4391 L:      linux-edac@vger.kernel.org
4392 S:      Maintained
4393 F:      drivers/edac/i82443bxgx_edac.c
4394
4395 EDAC-I3000
4396 M:      Jason Uhlenkott <juhlenko@akamai.com>
4397 L:      linux-edac@vger.kernel.org
4398 S:      Maintained
4399 F:      drivers/edac/i3000_edac.c
4400
4401 EDAC-I5000
4402 M:      Doug Thompson <dougthompson@xmission.com>
4403 L:      linux-edac@vger.kernel.org
4404 S:      Maintained
4405 F:      drivers/edac/i5000_edac.c
4406
4407 EDAC-I5400
4408 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4409 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4410 L:      linux-edac@vger.kernel.org
4411 S:      Maintained
4412 F:      drivers/edac/i5400_edac.c
4413
4414 EDAC-I7300
4415 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4416 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4417 L:      linux-edac@vger.kernel.org
4418 S:      Maintained
4419 F:      drivers/edac/i7300_edac.c
4420
4421 EDAC-I7CORE
4422 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4423 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4424 L:      linux-edac@vger.kernel.org
4425 S:      Maintained
4426 F:      drivers/edac/i7core_edac.c
4427
4428 EDAC-I82975X
4429 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4430 M:      "Arvind R." <arvino55@gmail.com>
4431 L:      linux-edac@vger.kernel.org
4432 S:      Maintained
4433 F:      drivers/edac/i82975x_edac.c
4434
4435 EDAC-IE31200
4436 M:      Jason Baron <jbaron@akamai.com>
4437 L:      linux-edac@vger.kernel.org
4438 S:      Maintained
4439 F:      drivers/edac/ie31200_edac.c
4440
4441 EDAC-MPC85XX
4442 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4443 L:      linux-edac@vger.kernel.org
4444 S:      Maintained
4445 F:      drivers/edac/mpc85xx_edac.[ch]
4446
4447 EDAC-PASEMI
4448 M:      Egor Martovetsky <egor@pasemi.com>
4449 L:      linux-edac@vger.kernel.org
4450 S:      Maintained
4451 F:      drivers/edac/pasemi_edac.c
4452
4453 EDAC-R82600
4454 M:      Tim Small <tim@buttersideup.com>
4455 L:      linux-edac@vger.kernel.org
4456 S:      Maintained
4457 F:      drivers/edac/r82600_edac.c
4458
4459 EDAC-SBRIDGE
4460 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4461 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4462 L:      linux-edac@vger.kernel.org
4463 S:      Maintained
4464 F:      drivers/edac/sb_edac.c
4465
4466 EDAC-XGENE
4467 APPLIED MICRO (APM) X-GENE SOC EDAC
4468 M:     Loc Ho <lho@apm.com>
4469 S:     Supported
4470 F:     drivers/edac/xgene_edac.c
4471 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4472
4473 EDIROL UA-101/UA-1000 DRIVER
4474 M:      Clemens Ladisch <clemens@ladisch.de>
4475 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4476 T:      git git://git.alsa-project.org/alsa-kernel.git
4477 S:      Maintained
4478 F:      sound/usb/misc/ua101.c
4479
4480 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4481 M:      Matt Fleming <matt@codeblueprint.co.uk>
4482 L:      linux-efi@vger.kernel.org
4483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4484 S:      Maintained
4485 F:      Documentation/efi-stub.txt
4486 F:      arch/ia64/kernel/efi.c
4487 F:      arch/x86/boot/compressed/eboot.[ch]
4488 F:      arch/x86/include/asm/efi.h
4489 F:      arch/x86/platform/efi/
4490 F:      drivers/firmware/efi/
4491 F:      include/linux/efi*.h
4492
4493 EFI VARIABLE FILESYSTEM
4494 M:      Matthew Garrett <matthew.garrett@nebula.com>
4495 M:      Jeremy Kerr <jk@ozlabs.org>
4496 M:      Matt Fleming <matt@codeblueprint.co.uk>
4497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4498 L:      linux-efi@vger.kernel.org
4499 S:      Maintained
4500 F:      fs/efivarfs/
4501
4502 EFIFB FRAMEBUFFER DRIVER
4503 L:      linux-fbdev@vger.kernel.org
4504 M:      Peter Jones <pjones@redhat.com>
4505 S:      Maintained
4506 F:      drivers/video/fbdev/efifb.c
4507
4508 EFS FILESYSTEM
4509 W:      http://aeschi.ch.eu.org/efs/
4510 S:      Orphan
4511 F:      fs/efs/
4512
4513 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4514 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
4515 L:      netdev@vger.kernel.org
4516 S:      Maintained
4517 F:      drivers/net/ethernet/ibm/ehea/
4518
4519 EM28XX VIDEO4LINUX DRIVER
4520 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4521 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4522 L:      linux-media@vger.kernel.org
4523 W:      https://linuxtv.org
4524 T:      git git://linuxtv.org/media_tree.git
4525 S:      Maintained
4526 F:      drivers/media/usb/em28xx/
4527
4528 EMBEDDED LINUX
4529 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4530 M:      Matt Mackall <mpm@selenic.com>
4531 M:      David Woodhouse <dwmw2@infradead.org>
4532 L:      linux-embedded@vger.kernel.org
4533 S:      Maintained
4534
4535 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4536 M:      James Smart <james.smart@avagotech.com>
4537 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4538 L:      linux-scsi@vger.kernel.org
4539 W:      http://www.avagotech.com
4540 S:      Supported
4541 F:      drivers/scsi/lpfc/
4542
4543 ENE CB710 FLASH CARD READER DRIVER
4544 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4545 S:      Maintained
4546 F:      drivers/misc/cb710/
4547 F:      drivers/mmc/host/cb710-mmc.*
4548 F:      include/linux/cb710.h
4549
4550 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4551 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4552 S:      Maintained
4553 F:      drivers/media/rc/ene_ir.*
4554
4555 EPSON S1D13XXX FRAMEBUFFER DRIVER
4556 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4557 S:      Maintained
4558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4559 F:      drivers/video/fbdev/s1d13xxxfb.c
4560 F:      include/video/s1d13xxxfb.h
4561
4562 ET131X NETWORK DRIVER
4563 M:      Mark Einon <mark.einon@gmail.com>
4564 S:      Odd Fixes
4565 F:      drivers/net/ethernet/agere/
4566
4567 ETHERNET BRIDGE
4568 M:      Stephen Hemminger <stephen@networkplumber.org>
4569 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4570 L:      netdev@vger.kernel.org
4571 W:      http://www.linuxfoundation.org/en/Net:Bridge
4572 S:      Maintained
4573 F:      include/linux/netfilter_bridge/
4574 F:      net/bridge/
4575
4576 ETHERNET PHY LIBRARY
4577 M:      Florian Fainelli <f.fainelli@gmail.com>
4578 L:      netdev@vger.kernel.org
4579 S:      Maintained
4580 F:      include/linux/phy.h
4581 F:      include/linux/phy_fixed.h
4582 F:      drivers/net/phy/
4583 F:      Documentation/networking/phy.txt
4584 F:      drivers/of/of_mdio.c
4585 F:      drivers/of/of_net.c
4586
4587 EXT2 FILE SYSTEM
4588 M:      Jan Kara <jack@suse.com>
4589 L:      linux-ext4@vger.kernel.org
4590 S:      Maintained
4591 F:      Documentation/filesystems/ext2.txt
4592 F:      fs/ext2/
4593 F:      include/linux/ext2*
4594
4595 EXT4 FILE SYSTEM
4596 M:      "Theodore Ts'o" <tytso@mit.edu>
4597 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4598 L:      linux-ext4@vger.kernel.org
4599 W:      http://ext4.wiki.kernel.org
4600 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4602 S:      Maintained
4603 F:      Documentation/filesystems/ext4.txt
4604 F:      fs/ext4/
4605
4606 Extended Verification Module (EVM)
4607 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4608 L:      linux-ima-devel@lists.sourceforge.net
4609 L:      linux-security-module@vger.kernel.org
4610 S:      Supported
4611 F:      security/integrity/evm/
4612
4613 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4614 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4615 M:      Chanwoo Choi <cw00.choi@samsung.com>
4616 L:      linux-kernel@vger.kernel.org
4617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4618 S:      Maintained
4619 F:      drivers/extcon/
4620 F:      include/linux/extcon/
4621 F:      include/linux/extcon.h
4622 F:      Documentation/extcon/
4623 F:      Documentation/devicetree/bindings/extcon/
4624
4625 EXYNOS DP DRIVER
4626 M:      Jingoo Han <jingoohan1@gmail.com>
4627 L:      dri-devel@lists.freedesktop.org
4628 S:      Maintained
4629 F:      drivers/gpu/drm/exynos/exynos_dp*
4630
4631 EXYNOS SYSMMU (IOMMU) driver
4632 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4633 L:      iommu@lists.linux-foundation.org
4634 S:      Maintained
4635 F:      drivers/iommu/exynos-iommu.c
4636
4637 EXYNOS MIPI DISPLAY DRIVERS
4638 M:      Inki Dae <inki.dae@samsung.com>
4639 M:      Donghwa Lee <dh09.lee@samsung.com>
4640 M:      Kyungmin Park <kyungmin.park@samsung.com>
4641 L:      linux-fbdev@vger.kernel.org
4642 S:      Maintained
4643 F:      drivers/video/fbdev/exynos/exynos_mipi*
4644 F:      include/video/exynos_mipi*
4645
4646 EZchip NPS platform support
4647 M:      Noam Camus <noamc@ezchip.com>
4648 S:      Supported
4649 F:      arch/arc/plat-eznps
4650 F:      arch/arc/boot/dts/eznps.dts
4651
4652 F71805F HARDWARE MONITORING DRIVER
4653 M:      Jean Delvare <jdelvare@suse.com>
4654 L:      linux-hwmon@vger.kernel.org
4655 S:      Maintained
4656 F:      Documentation/hwmon/f71805f
4657 F:      drivers/hwmon/f71805f.c
4658
4659 FC0011 TUNER DRIVER
4660 M:      Michael Buesch <m@bues.ch>
4661 L:      linux-media@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/media/tuners/fc0011.h
4664 F:      drivers/media/tuners/fc0011.c
4665
4666 FC2580 MEDIA DRIVER
4667 M:      Antti Palosaari <crope@iki.fi>
4668 L:      linux-media@vger.kernel.org
4669 W:      https://linuxtv.org
4670 W:      http://palosaari.fi/linux/
4671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4672 T:      git git://linuxtv.org/anttip/media_tree.git
4673 S:      Maintained
4674 F:      drivers/media/tuners/fc2580*
4675
4676 FANOTIFY
4677 M:      Eric Paris <eparis@redhat.com>
4678 S:      Maintained
4679 F:      fs/notify/fanotify/
4680 F:      include/linux/fanotify.h
4681 F:      include/uapi/linux/fanotify.h
4682
4683 FARSYNC SYNCHRONOUS DRIVER
4684 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4685 W:      http://www.farsite.co.uk/
4686 S:      Supported
4687 F:      drivers/net/wan/farsync.*
4688
4689 FAULT INJECTION SUPPORT
4690 M:      Akinobu Mita <akinobu.mita@gmail.com>
4691 S:      Supported
4692 F:      Documentation/fault-injection/
4693 F:      lib/fault-inject.c
4694
4695 FBTFT Framebuffer drivers
4696 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4697 M:      Noralf Trønnes <noralf@tronnes.org>
4698 S:      Maintained
4699 F:      drivers/staging/fbtft/
4700
4701 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4702 M:      Johannes Thumshirn <jth@kernel.org>
4703 L:      fcoe-devel@open-fcoe.org
4704 W:      www.Open-FCoE.org
4705 S:      Supported
4706 F:      drivers/scsi/libfc/
4707 F:      drivers/scsi/fcoe/
4708 F:      include/scsi/fc/
4709 F:      include/scsi/libfc.h
4710 F:      include/scsi/libfcoe.h
4711 F:      include/uapi/scsi/fc/
4712
4713 FILE LOCKING (flock() and fcntl()/lockf())
4714 M:      Jeff Layton <jlayton@poochiereds.net>
4715 M:      "J. Bruce Fields" <bfields@fieldses.org>
4716 L:      linux-fsdevel@vger.kernel.org
4717 S:      Maintained
4718 F:      include/linux/fcntl.h
4719 F:      include/linux/fs.h
4720 F:      include/uapi/linux/fcntl.h
4721 F:      include/uapi/linux/fs.h
4722 F:      fs/fcntl.c
4723 F:      fs/locks.c
4724
4725 FILESYSTEMS (VFS and infrastructure)
4726 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4727 L:      linux-fsdevel@vger.kernel.org
4728 S:      Maintained
4729 F:      fs/*
4730
4731 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4732 M:      Riku Voipio <riku.voipio@iki.fi>
4733 L:      linux-hwmon@vger.kernel.org
4734 S:      Maintained
4735 F:      drivers/hwmon/f75375s.c
4736 F:      include/linux/f75375s.h
4737
4738 FIREWIRE AUDIO DRIVERS
4739 M:      Clemens Ladisch <clemens@ladisch.de>
4740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4741 T:      git git://git.alsa-project.org/alsa-kernel.git
4742 S:      Maintained
4743 F:      sound/firewire/
4744
4745 FIREWIRE MEDIA DRIVERS (firedtv)
4746 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4747 L:      linux-media@vger.kernel.org
4748 L:      linux1394-devel@lists.sourceforge.net
4749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4750 S:      Maintained
4751 F:      drivers/media/firewire/
4752
4753 FIREWIRE SBP-2 TARGET
4754 M:      Chris Boot <bootc@bootc.net>
4755 L:      linux-scsi@vger.kernel.org
4756 L:      target-devel@vger.kernel.org
4757 L:      linux1394-devel@lists.sourceforge.net
4758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4759 S:      Maintained
4760 F:      drivers/target/sbp/
4761
4762 FIREWIRE SUBSYSTEM
4763 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4764 L:      linux1394-devel@lists.sourceforge.net
4765 W:      http://ieee1394.wiki.kernel.org/
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4767 S:      Maintained
4768 F:      drivers/firewire/
4769 F:      include/linux/firewire.h
4770 F:      include/uapi/linux/firewire*.h
4771 F:      tools/firewire/
4772
4773 FIRMWARE LOADER (request_firmware)
4774 M:      Ming Lei <ming.lei@canonical.com>
4775 L:      linux-kernel@vger.kernel.org
4776 S:      Maintained
4777 F:      Documentation/firmware_class/
4778 F:      drivers/base/firmware*.c
4779 F:      include/linux/firmware.h
4780
4781 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4782 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4783 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4784 S:      Maintained
4785 F:      drivers/block/rsxx/
4786
4787 FLOPPY DRIVER
4788 M:      Jiri Kosina <jikos@kernel.org>
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4790 S:      Odd fixes
4791 F:      drivers/block/floppy.c
4792
4793 FMC SUBSYSTEM
4794 M:      Alessandro Rubini <rubini@gnudd.com>
4795 W:      http://www.ohwr.org/projects/fmc-bus
4796 S:      Supported
4797 F:      drivers/fmc/
4798 F:      include/linux/fmc*.h
4799 F:      include/linux/ipmi-fru.h
4800 K:      fmc_d.*register
4801
4802 FPGA MANAGER FRAMEWORK
4803 M:      Alan Tull <atull@opensource.altera.com>
4804 R:      Moritz Fischer <moritz.fischer@ettus.com>
4805 S:      Maintained
4806 F:      drivers/fpga/
4807 F:      include/linux/fpga/fpga-mgr.h
4808 W:      http://www.rocketboards.org
4809
4810 FPU EMULATOR
4811 M:      Bill Metzenthen <billm@melbpc.org.au>
4812 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4813 S:      Maintained
4814 F:      arch/x86/math-emu/
4815
4816 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4817 L:      netdev@vger.kernel.org
4818 S:      Orphan
4819 F:      drivers/net/wan/dlci.c
4820 F:      drivers/net/wan/sdla.c
4821
4822 FRAMEBUFFER LAYER
4823 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4824 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4825 L:      linux-fbdev@vger.kernel.org
4826 W:      http://linux-fbdev.sourceforge.net/
4827 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4829 S:      Maintained
4830 F:      Documentation/fb/
4831 F:      drivers/video/
4832 F:      include/video/
4833 F:      include/linux/fb.h
4834 F:      include/uapi/video/
4835 F:      include/uapi/linux/fb.h
4836
4837 FREESCALE DIU FRAMEBUFFER DRIVER
4838 M:      Timur Tabi <timur@tabi.org>
4839 L:      linux-fbdev@vger.kernel.org
4840 S:      Maintained
4841 F:      drivers/video/fbdev/fsl-diu-fb.*
4842
4843 FREESCALE DMA DRIVER
4844 M:      Li Yang <leoli@freescale.com>
4845 M:      Zhang Wei <zw@zh-kernel.org>
4846 L:      linuxppc-dev@lists.ozlabs.org
4847 S:      Maintained
4848 F:      drivers/dma/fsldma.*
4849
4850 FREESCALE GPMI NAND DRIVER
4851 M:      Han Xu <han.xu@nxp.com>
4852 L:      linux-mtd@lists.infradead.org
4853 S:      Maintained
4854 F:      drivers/mtd/nand/gpmi-nand/*
4855
4856 FREESCALE I2C CPM DRIVER
4857 M:      Jochen Friedrich <jochen@scram.de>
4858 L:      linuxppc-dev@lists.ozlabs.org
4859 L:      linux-i2c@vger.kernel.org
4860 S:      Maintained
4861 F:      drivers/i2c/busses/i2c-cpm.c
4862
4863 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4864 M:      Sascha Hauer <kernel@pengutronix.de>
4865 L:      linux-fbdev@vger.kernel.org
4866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4867 S:      Maintained
4868 F:      include/linux/platform_data/video-imxfb.h
4869 F:      drivers/video/fbdev/imxfb.c
4870
4871 FREESCALE QUAD SPI DRIVER
4872 M:      Han Xu <han.xu@nxp.com>
4873 L:      linux-mtd@lists.infradead.org
4874 S:      Maintained
4875 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4876
4877 FREESCALE SOC FS_ENET DRIVER
4878 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4879 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4880 L:      linuxppc-dev@lists.ozlabs.org
4881 L:      netdev@vger.kernel.org
4882 S:      Maintained
4883 F:      drivers/net/ethernet/freescale/fs_enet/
4884 F:      include/linux/fs_enet_pd.h
4885
4886 FREESCALE IMX / MXC FEC DRIVER
4887 M:      Fugang Duan <fugang.duan@nxp.com>
4888 L:      netdev@vger.kernel.org
4889 S:      Maintained
4890 F:      drivers/net/ethernet/freescale/fec_main.c
4891 F:      drivers/net/ethernet/freescale/fec_ptp.c
4892 F:      drivers/net/ethernet/freescale/fec.h
4893 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4894
4895 FREESCALE QUICC ENGINE LIBRARY
4896 L:      linuxppc-dev@lists.ozlabs.org
4897 S:      Orphan
4898 F:      drivers/soc/fsl/qe/
4899 F:      include/soc/fsl/*qe*.h
4900 F:      include/soc/fsl/*ucc*.h
4901
4902 FREESCALE USB PERIPHERAL DRIVERS
4903 M:      Li Yang <leoli@freescale.com>
4904 L:      linux-usb@vger.kernel.org
4905 L:      linuxppc-dev@lists.ozlabs.org
4906 S:      Maintained
4907 F:      drivers/usb/gadget/udc/fsl*
4908
4909 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4910 M:      Li Yang <leoli@freescale.com>
4911 L:      netdev@vger.kernel.org
4912 L:      linuxppc-dev@lists.ozlabs.org
4913 S:      Maintained
4914 F:      drivers/net/ethernet/freescale/ucc_geth*
4915
4916 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4917 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4918 L:      netdev@vger.kernel.org
4919 S:      Maintained
4920 F:      drivers/net/ethernet/freescale/gianfar*
4921 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4922 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4923
4924 FREESCALE QUICC ENGINE UCC HDLC DRIVER
4925 M:      Zhao Qiang <qiang.zhao@nxp.com>
4926 L:      netdev@vger.kernel.org
4927 L:      linuxppc-dev@lists.ozlabs.org
4928 S:      Maintained
4929 F:      drivers/net/wan/fsl_ucc_hdlc*
4930
4931 FREESCALE QUICC ENGINE UCC UART DRIVER
4932 M:      Timur Tabi <timur@tabi.org>
4933 L:      linuxppc-dev@lists.ozlabs.org
4934 S:      Maintained
4935 F:      drivers/tty/serial/ucc_uart.c
4936
4937 FREESCALE SOC SOUND DRIVERS
4938 M:      Timur Tabi <timur@tabi.org>
4939 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4940 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4941 R:      Fabio Estevam <fabio.estevam@nxp.com>
4942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4943 L:      linuxppc-dev@lists.ozlabs.org
4944 S:      Maintained
4945 F:      sound/soc/fsl/fsl*
4946 F:      sound/soc/fsl/imx*
4947 F:      sound/soc/fsl/mpc8610_hpcd.c
4948
4949 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4950 M:      "J. German Rivera" <German.Rivera@freescale.com>
4951 M:      Stuart Yoder <stuart.yoder@nxp.com>
4952 L:      linux-kernel@vger.kernel.org
4953 S:      Maintained
4954 F:      drivers/staging/fsl-mc/
4955
4956 FREEVXFS FILESYSTEM
4957 M:      Christoph Hellwig <hch@infradead.org>
4958 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4959 S:      Maintained
4960 F:      fs/freevxfs/
4961
4962 FREEZER
4963 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4964 M:      Pavel Machek <pavel@ucw.cz>
4965 L:      linux-pm@vger.kernel.org
4966 S:      Supported
4967 F:      Documentation/power/freezing-of-tasks.txt
4968 F:      include/linux/freezer.h
4969 F:      kernel/freezer.c
4970
4971 FRONTSWAP API
4972 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4973 L:      linux-kernel@vger.kernel.org
4974 S:      Maintained
4975 F:      mm/frontswap.c
4976 F:      include/linux/frontswap.h
4977
4978 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4979 M:      David Howells <dhowells@redhat.com>
4980 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4981 S:      Supported
4982 F:      Documentation/filesystems/caching/
4983 F:      fs/fscache/
4984 F:      include/linux/fscache*.h
4985
4986 FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
4987 M:      Theodore Y. Ts'o <tytso@mit.edu>
4988 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4989 S:      Supported
4990 F:      fs/crypto/
4991 F:      include/linux/fscrypto.h
4992
4993 F2FS FILE SYSTEM
4994 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4995 M:      Changman Lee <cm224.lee@samsung.com>
4996 R:      Chao Yu <yuchao0@huawei.com>
4997 L:      linux-f2fs-devel@lists.sourceforge.net
4998 W:      http://en.wikipedia.org/wiki/F2FS
4999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5000 S:      Maintained
5001 F:      Documentation/filesystems/f2fs.txt
5002 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5003 F:      fs/f2fs/
5004 F:      include/linux/f2fs_fs.h
5005 F:      include/trace/events/f2fs.h
5006
5007 FUJITSU FR-V (FRV) PORT
5008 S:      Orphan
5009 F:      arch/frv/
5010
5011 FUJITSU LAPTOP EXTRAS
5012 M:      Jonathan Woithe <jwoithe@just42.net>
5013 L:      platform-driver-x86@vger.kernel.org
5014 S:      Maintained
5015 F:      drivers/platform/x86/fujitsu-laptop.c
5016
5017 FUJITSU M-5MO LS CAMERA ISP DRIVER
5018 M:      Kyungmin Park <kyungmin.park@samsung.com>
5019 M:      Heungjun Kim <riverful.kim@samsung.com>
5020 L:      linux-media@vger.kernel.org
5021 S:      Maintained
5022 F:      drivers/media/i2c/m5mols/
5023 F:      include/media/i2c/m5mols.h
5024
5025 FUJITSU TABLET EXTRAS
5026 M:      Robert Gerlach <khnz@gmx.de>
5027 L:      platform-driver-x86@vger.kernel.org
5028 S:      Maintained
5029 F:      drivers/platform/x86/fujitsu-tablet.c
5030
5031 FUSE: FILESYSTEM IN USERSPACE
5032 M:      Miklos Szeredi <miklos@szeredi.hu>
5033 L:      linux-fsdevel@vger.kernel.org
5034 W:      http://fuse.sourceforge.net/
5035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5036 S:      Maintained
5037 F:      fs/fuse/
5038 F:      include/uapi/linux/fuse.h
5039 F:      Documentation/filesystems/fuse.txt
5040
5041 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5042 M:      Rik Faith <faith@cs.unc.edu>
5043 L:      linux-scsi@vger.kernel.org
5044 S:      Odd Fixes (e.g., new signatures)
5045 F:      drivers/scsi/fdomain.*
5046
5047 GCOV BASED KERNEL PROFILING
5048 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5049 S:      Maintained
5050 F:      kernel/gcov/
5051 F:      Documentation/gcov.txt
5052
5053 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5054 M:      Achim Leubner <achim_leubner@adaptec.com>
5055 L:      linux-scsi@vger.kernel.org
5056 W:      http://www.icp-vortex.com/
5057 S:      Supported
5058 F:      drivers/scsi/gdt*
5059
5060 GDB KERNEL DEBUGGING HELPER SCRIPTS
5061 M:      Jan Kiszka <jan.kiszka@siemens.com>
5062 M:      Kieran Bingham <kieran@bingham.xyz>
5063 S:      Supported
5064 F:      scripts/gdb/
5065
5066 GEMTEK FM RADIO RECEIVER DRIVER
5067 M:      Hans Verkuil <hverkuil@xs4all.nl>
5068 L:      linux-media@vger.kernel.org
5069 T:      git git://linuxtv.org/media_tree.git
5070 W:      https://linuxtv.org
5071 S:      Maintained
5072 F:      drivers/media/radio/radio-gemtek*
5073
5074 GENERIC GPIO I2C DRIVER
5075 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5076 S:      Supported
5077 F:      drivers/i2c/busses/i2c-gpio.c
5078 F:      include/linux/i2c-gpio.h
5079
5080 GENERIC GPIO I2C MULTIPLEXER DRIVER
5081 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5082 L:      linux-i2c@vger.kernel.org
5083 S:      Supported
5084 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5085 F:      include/linux/i2c-mux-gpio.h
5086 F:      Documentation/i2c/muxes/i2c-mux-gpio
5087
5088 GENERIC HDLC (WAN) DRIVERS
5089 M:      Krzysztof Halasa <khc@pm.waw.pl>
5090 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5091 S:      Maintained
5092 F:      drivers/net/wan/c101.c
5093 F:      drivers/net/wan/hd6457*
5094 F:      drivers/net/wan/hdlc*
5095 F:      drivers/net/wan/n2.c
5096 F:      drivers/net/wan/pc300too.c
5097 F:      drivers/net/wan/pci200syn.c
5098 F:      drivers/net/wan/wanxl*
5099
5100 GENERIC INCLUDE/ASM HEADER FILES
5101 M:      Arnd Bergmann <arnd@arndb.de>
5102 L:      linux-arch@vger.kernel.org
5103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5104 S:      Maintained
5105 F:      include/asm-generic/
5106 F:      include/uapi/asm-generic/
5107
5108 GENERIC PHY FRAMEWORK
5109 M:      Kishon Vijay Abraham I <kishon@ti.com>
5110 L:      linux-kernel@vger.kernel.org
5111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5112 S:      Supported
5113 F:      drivers/phy/
5114 F:      include/linux/phy/
5115
5116 GENERIC PM DOMAINS
5117 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5118 M:      Kevin Hilman <khilman@kernel.org>
5119 M:      Ulf Hansson <ulf.hansson@linaro.org>
5120 L:      linux-pm@vger.kernel.org
5121 S:      Supported
5122 F:      drivers/base/power/domain*.c
5123 F:      include/linux/pm_domain.h
5124
5125 GENERIC UIO DRIVER FOR PCI DEVICES
5126 M:      "Michael S. Tsirkin" <mst@redhat.com>
5127 L:      kvm@vger.kernel.org
5128 S:      Supported
5129 F:      drivers/uio/uio_pci_generic.c
5130
5131 GET_MAINTAINER SCRIPT
5132 M:      Joe Perches <joe@perches.com>
5133 S:      Maintained
5134 F:      scripts/get_maintainer.pl
5135
5136 GFS2 FILE SYSTEM
5137 M:      Steven Whitehouse <swhiteho@redhat.com>
5138 M:      Bob Peterson <rpeterso@redhat.com>
5139 L:      cluster-devel@redhat.com
5140 W:      http://sources.redhat.com/cluster/
5141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5142 S:      Supported
5143 F:      Documentation/filesystems/gfs2*.txt
5144 F:      fs/gfs2/
5145 F:      include/uapi/linux/gfs2_ondisk.h
5146
5147 GIGASET ISDN DRIVERS
5148 M:      Paul Bolle <pebolle@tiscali.nl>
5149 L:      gigaset307x-common@lists.sourceforge.net
5150 W:      http://gigaset307x.sourceforge.net/
5151 S:      Odd Fixes
5152 F:      Documentation/isdn/README.gigaset
5153 F:      drivers/isdn/gigaset/
5154 F:      include/uapi/linux/gigaset_dev.h
5155
5156 GO7007 MPEG CODEC
5157 M:      Hans Verkuil <hans.verkuil@cisco.com>
5158 L:      linux-media@vger.kernel.org
5159 S:      Maintained
5160 F:      drivers/media/usb/go7007/
5161
5162 GOODIX TOUCHSCREEN
5163 M:      Bastien Nocera <hadess@hadess.net>
5164 L:      linux-input@vger.kernel.org
5165 S:      Maintained
5166 F:      drivers/input/touchscreen/goodix.c
5167
5168 GPIO SUBSYSTEM
5169 M:      Linus Walleij <linus.walleij@linaro.org>
5170 M:      Alexandre Courbot <gnurou@gmail.com>
5171 L:      linux-gpio@vger.kernel.org
5172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5173 S:      Maintained
5174 F:      Documentation/devicetree/bindings/gpio/
5175 F:      Documentation/gpio/
5176 F:      Documentation/ABI/testing/gpio-cdev
5177 F:      Documentation/ABI/obsolete/sysfs-gpio
5178 F:      drivers/gpio/
5179 F:      include/linux/gpio/
5180 F:      include/linux/gpio.h
5181 F:      include/asm-generic/gpio.h
5182 F:      include/uapi/linux/gpio.h
5183 F:      tools/gpio/
5184
5185 GRE DEMULTIPLEXER DRIVER
5186 M:      Dmitry Kozlov <xeb@mail.ru>
5187 L:      netdev@vger.kernel.org
5188 S:      Maintained
5189 F:      net/ipv4/gre_demux.c
5190 F:      net/ipv4/gre_offload.c
5191 F:      include/net/gre.h
5192
5193 GRETH 10/100/1G Ethernet MAC device driver
5194 M:      Andreas Larsson <andreas@gaisler.com>
5195 L:      netdev@vger.kernel.org
5196 S:      Maintained
5197 F:      drivers/net/ethernet/aeroflex/
5198
5199 GSPCA FINEPIX SUBDRIVER
5200 M:      Frank Zago <frank@zago.net>
5201 L:      linux-media@vger.kernel.org
5202 T:      git git://linuxtv.org/media_tree.git
5203 S:      Maintained
5204 F:      drivers/media/usb/gspca/finepix.c
5205
5206 GSPCA GL860 SUBDRIVER
5207 M:      Olivier Lorin <o.lorin@laposte.net>
5208 L:      linux-media@vger.kernel.org
5209 T:      git git://linuxtv.org/media_tree.git
5210 S:      Maintained
5211 F:      drivers/media/usb/gspca/gl860/
5212
5213 GSPCA M5602 SUBDRIVER
5214 M:      Erik Andren <erik.andren@gmail.com>
5215 L:      linux-media@vger.kernel.org
5216 T:      git git://linuxtv.org/media_tree.git
5217 S:      Maintained
5218 F:      drivers/media/usb/gspca/m5602/
5219
5220 GSPCA PAC207 SONIXB SUBDRIVER
5221 M:      Hans Verkuil <hverkuil@xs4all.nl>
5222 L:      linux-media@vger.kernel.org
5223 T:      git git://linuxtv.org/media_tree.git
5224 S:      Odd Fixes
5225 F:      drivers/media/usb/gspca/pac207.c
5226
5227 GSPCA SN9C20X SUBDRIVER
5228 M:      Brian Johnson <brijohn@gmail.com>
5229 L:      linux-media@vger.kernel.org
5230 T:      git git://linuxtv.org/media_tree.git
5231 S:      Maintained
5232 F:      drivers/media/usb/gspca/sn9c20x.c
5233
5234 GSPCA T613 SUBDRIVER
5235 M:      Leandro Costantino <lcostantino@gmail.com>
5236 L:      linux-media@vger.kernel.org
5237 T:      git git://linuxtv.org/media_tree.git
5238 S:      Maintained
5239 F:      drivers/media/usb/gspca/t613.c
5240
5241 GSPCA USB WEBCAM DRIVER
5242 M:      Hans Verkuil <hverkuil@xs4all.nl>
5243 L:      linux-media@vger.kernel.org
5244 T:      git git://linuxtv.org/media_tree.git
5245 S:      Odd Fixes
5246 F:      drivers/media/usb/gspca/
5247
5248 GUID PARTITION TABLE (GPT)
5249 M:      Davidlohr Bueso <dave@stgolabs.net>
5250 L:      linux-efi@vger.kernel.org
5251 S:      Maintained
5252 F:      block/partitions/efi.*
5253
5254 STK1160 USB VIDEO CAPTURE DRIVER
5255 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5256 L:      linux-media@vger.kernel.org
5257 T:      git git://linuxtv.org/media_tree.git
5258 S:      Maintained
5259 F:      drivers/media/usb/stk1160/
5260
5261 H8/300 ARCHITECTURE
5262 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5263 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5264 W:      http://uclinux-h8.sourceforge.jp
5265 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5266 S:      Maintained
5267 F:      arch/h8300/
5268 F:      drivers/clocksource/h8300_*.c
5269 F:      drivers/clk/h8300/
5270 F:      drivers/irqchip/irq-renesas-h8*.c
5271
5272 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5273 M:      Frank Seidel <frank@f-seidel.de>
5274 L:      platform-driver-x86@vger.kernel.org
5275 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5276 S:      Maintained
5277 F:      drivers/platform/x86/hdaps.c
5278
5279 HDPVR USB VIDEO ENCODER DRIVER
5280 M:      Hans Verkuil <hverkuil@xs4all.nl>
5281 L:      linux-media@vger.kernel.org
5282 T:      git git://linuxtv.org/media_tree.git
5283 W:      https://linuxtv.org
5284 S:      Odd Fixes
5285 F:      drivers/media/usb/hdpvr/
5286
5287 HWPOISON MEMORY FAILURE HANDLING
5288 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5289 L:      linux-mm@kvack.org
5290 S:      Maintained
5291 F:      mm/memory-failure.c
5292 F:      mm/hwpoison-inject.c
5293
5294 HYPERVISOR VIRTUAL CONSOLE DRIVER
5295 L:      linuxppc-dev@lists.ozlabs.org
5296 S:      Odd Fixes
5297 F:      drivers/tty/hvc/
5298
5299 HACKRF MEDIA DRIVER
5300 M:      Antti Palosaari <crope@iki.fi>
5301 L:      linux-media@vger.kernel.org
5302 W:      https://linuxtv.org
5303 W:      http://palosaari.fi/linux/
5304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5305 T:      git git://linuxtv.org/anttip/media_tree.git
5306 S:      Maintained
5307 F:      drivers/media/usb/hackrf/
5308
5309 HARDWARE MONITORING
5310 M:      Jean Delvare <jdelvare@suse.com>
5311 M:      Guenter Roeck <linux@roeck-us.net>
5312 L:      linux-hwmon@vger.kernel.org
5313 W:      http://hwmon.wiki.kernel.org/
5314 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5316 S:      Maintained
5317 F:      Documentation/hwmon/
5318 F:      drivers/hwmon/
5319 F:      include/linux/hwmon*.h
5320
5321 HARDWARE RANDOM NUMBER GENERATOR CORE
5322 M:      Matt Mackall <mpm@selenic.com>
5323 M:      Herbert Xu <herbert@gondor.apana.org.au>
5324 L:      linux-crypto@vger.kernel.org
5325 S:      Odd fixes
5326 F:      Documentation/devicetree/bindings/rng/
5327 F:      Documentation/hw_random.txt
5328 F:      drivers/char/hw_random/
5329 F:      include/linux/hw_random.h
5330
5331 HARDWARE SPINLOCK CORE
5332 M:      Ohad Ben-Cohen <ohad@wizery.com>
5333 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5334 L:      linux-remoteproc@vger.kernel.org
5335 S:      Maintained
5336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5337 F:      Documentation/devicetree/bindings/hwlock/
5338 F:      Documentation/hwspinlock.txt
5339 F:      drivers/hwspinlock/
5340 F:      include/linux/hwspinlock.h
5341
5342 HARMONY SOUND DRIVER
5343 L:      linux-parisc@vger.kernel.org
5344 S:      Maintained
5345 F:      sound/parisc/harmony.*
5346
5347 HD29L2 MEDIA DRIVER
5348 M:      Antti Palosaari <crope@iki.fi>
5349 L:      linux-media@vger.kernel.org
5350 W:      https://linuxtv.org
5351 W:      http://palosaari.fi/linux/
5352 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5353 T:      git git://linuxtv.org/anttip/media_tree.git
5354 S:      Maintained
5355 F:      drivers/media/dvb-frontends/hd29l2*
5356
5357 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5358 M:      Don Brace <don.brace@microsemi.com>
5359 L:      iss_storagedev@hp.com
5360 L:      esc.storagedev@microsemi.com
5361 L:      linux-scsi@vger.kernel.org
5362 S:      Supported
5363 F:      Documentation/scsi/hpsa.txt
5364 F:      drivers/scsi/hpsa*.[ch]
5365 F:      include/linux/cciss*.h
5366 F:      include/uapi/linux/cciss*.h
5367
5368 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5369 M:      Don Brace <don.brace@microsemi.com>
5370 L:      iss_storagedev@hp.com
5371 L:      esc.storagedev@microsemi.com
5372 L:      linux-scsi@vger.kernel.org
5373 S:      Supported
5374 F:      Documentation/blockdev/cciss.txt
5375 F:      drivers/block/cciss*
5376 F:      include/linux/cciss_ioctl.h
5377 F:      include/uapi/linux/cciss_ioctl.h
5378
5379 HFI1 DRIVER
5380 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
5381 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
5382 L:      linux-rdma@vger.kernel.org
5383 S:      Supported
5384 F:      drivers/infiniband/hw/hfi1
5385
5386 HFS FILESYSTEM
5387 L:      linux-fsdevel@vger.kernel.org
5388 S:      Orphan
5389 F:      Documentation/filesystems/hfs.txt
5390 F:      fs/hfs/
5391
5392 HFSPLUS FILESYSTEM
5393 L:      linux-fsdevel@vger.kernel.org
5394 S:      Orphan
5395 F:      Documentation/filesystems/hfsplus.txt
5396 F:      fs/hfsplus/
5397
5398 HGA FRAMEBUFFER DRIVER
5399 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5400 L:      linux-nvidia@lists.surfsouth.com
5401 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5402 S:      Maintained
5403 F:      drivers/video/fbdev/hgafb.c
5404
5405 HIBERNATION (aka Software Suspend, aka swsusp)
5406 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5407 M:      Pavel Machek <pavel@ucw.cz>
5408 L:      linux-pm@vger.kernel.org
5409 S:      Supported
5410 F:      arch/x86/power/
5411 F:      drivers/base/power/
5412 F:      kernel/power/
5413 F:      include/linux/suspend.h
5414 F:      include/linux/freezer.h
5415 F:      include/linux/pm.h
5416 F:      arch/*/include/asm/suspend*.h
5417
5418 HID CORE LAYER
5419 M:      Jiri Kosina <jikos@kernel.org>
5420 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5421 L:      linux-input@vger.kernel.org
5422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5423 S:      Maintained
5424 F:      drivers/hid/
5425 F:      include/linux/hid*
5426 F:      include/uapi/linux/hid*
5427
5428 HID SENSOR HUB DRIVERS
5429 M:      Jiri Kosina <jikos@kernel.org>
5430 M:      Jonathan Cameron <jic23@kernel.org>
5431 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5432 L:      linux-input@vger.kernel.org
5433 L:      linux-iio@vger.kernel.org
5434 S:      Maintained
5435 F:      Documentation/hid/hid-sensor*
5436 F:      drivers/hid/hid-sensor-*
5437 F:      drivers/iio/*/hid-*
5438 F:      include/linux/hid-sensor-*
5439
5440 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5441 M:      Thomas Gleixner <tglx@linutronix.de>
5442 L:      linux-kernel@vger.kernel.org
5443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5444 S:      Maintained
5445 F:      Documentation/timers/
5446 F:      kernel/time/hrtimer.c
5447 F:      kernel/time/clockevents.c
5448 F:      kernel/time/tick*.*
5449 F:      kernel/time/timer_*.c
5450 F:      include/linux/clockchips.h
5451 F:      include/linux/hrtimer.h
5452
5453 HIGH-SPEED SCC DRIVER FOR AX.25
5454 L:      linux-hams@vger.kernel.org
5455 S:      Orphan
5456 F:      drivers/net/hamradio/dmascc.c
5457 F:      drivers/net/hamradio/scc.c
5458
5459 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5460 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5461 W:      http://www.highpoint-tech.com
5462 S:      Supported
5463 F:      Documentation/scsi/hptiop.txt
5464 F:      drivers/scsi/hptiop.c
5465
5466 HIPPI
5467 M:      Jes Sorensen <jes@trained-monkey.org>
5468 L:      linux-hippi@sunsite.dk
5469 S:      Maintained
5470 F:      include/linux/hippidevice.h
5471 F:      include/uapi/linux/if_hippi.h
5472 F:      net/802/hippi.c
5473 F:      drivers/net/hippi/
5474
5475 HISILICON NETWORK SUBSYSTEM DRIVER
5476 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
5477 M:      Salil Mehta <salil.mehta@huawei.com>
5478 L:      netdev@vger.kernel.org
5479 W:      http://www.hisilicon.com
5480 S:      Maintained
5481 F:      drivers/net/ethernet/hisilicon/
5482 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
5483
5484 HISILICON SAS Controller
5485 M:      John Garry <john.garry@huawei.com>
5486 W:      http://www.hisilicon.com
5487 S:      Supported
5488 F:      drivers/scsi/hisi_sas/
5489 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5490
5491 HOST AP DRIVER
5492 M:      Jouni Malinen <j@w1.fi>
5493 L:      hostap@shmoo.com (subscribers-only)
5494 L:      linux-wireless@vger.kernel.org
5495 W:      http://hostap.epitest.fi/
5496 S:      Maintained
5497 F:      drivers/net/wireless/intersil/hostap/
5498
5499 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5500 L:      platform-driver-x86@vger.kernel.org
5501 S:      Orphan
5502 F:      drivers/platform/x86/tc1100-wmi.c
5503
5504 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5505 M:      Jaroslav Kysela <perex@perex.cz>
5506 S:      Maintained
5507 F:      drivers/net/ethernet/hp/hp100.*
5508
5509 HPET:   High Precision Event Timers driver
5510 M:      Clemens Ladisch <clemens@ladisch.de>
5511 S:      Maintained
5512 F:      Documentation/timers/hpet.txt
5513 F:      drivers/char/hpet.c
5514 F:      include/linux/hpet.h
5515 F:      include/uapi/linux/hpet.h
5516
5517 HPET:   x86
5518 S:      Orphan
5519 F:      arch/x86/kernel/hpet.c
5520 F:      arch/x86/include/asm/hpet.h
5521
5522 HPFS FILESYSTEM
5523 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5524 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5525 S:      Maintained
5526 F:      fs/hpfs/
5527
5528 HSI SUBSYSTEM
5529 M:      Sebastian Reichel <sre@kernel.org>
5530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5531 S:      Maintained
5532 F:      Documentation/ABI/testing/sysfs-bus-hsi
5533 F:      Documentation/hsi.txt
5534 F:      drivers/hsi/
5535 F:      include/linux/hsi/
5536 F:      include/uapi/linux/hsi/
5537
5538 HSO 3G MODEM DRIVER
5539 M:      Jan Dumon <j.dumon@option.com>
5540 W:      http://www.pharscape.org
5541 S:      Maintained
5542 F:      drivers/net/usb/hso.c
5543
5544 HSR NETWORK PROTOCOL
5545 M:      Arvid Brodin <arvid.brodin@alten.se>
5546 L:      netdev@vger.kernel.org
5547 S:      Maintained
5548 F:      net/hsr/
5549
5550 HTCPEN TOUCHSCREEN DRIVER
5551 M:      Pau Oliva Fora <pof@eslack.org>
5552 L:      linux-input@vger.kernel.org
5553 S:      Maintained
5554 F:      drivers/input/touchscreen/htcpen.c
5555
5556 HUGETLB FILESYSTEM
5557 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5558 S:      Maintained
5559 F:      fs/hugetlbfs/
5560
5561 Hyper-V CORE AND DRIVERS
5562 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5563 M:      Haiyang Zhang <haiyangz@microsoft.com>
5564 L:      devel@linuxdriverproject.org
5565 S:      Maintained
5566 F:      arch/x86/include/asm/mshyperv.h
5567 F:      arch/x86/include/uapi/asm/hyperv.h
5568 F:      arch/x86/kernel/cpu/mshyperv.c
5569 F:      drivers/hid/hid-hyperv.c
5570 F:      drivers/hv/
5571 F:      drivers/input/serio/hyperv-keyboard.c
5572 F:      drivers/pci/host/pci-hyperv.c
5573 F:      drivers/net/hyperv/
5574 F:      drivers/scsi/storvsc_drv.c
5575 F:      drivers/video/fbdev/hyperv_fb.c
5576 F:      include/linux/hyperv.h
5577 F:      tools/hv/
5578 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5579
5580 I2C MUXES
5581 M:      Peter Rosin <peda@axentia.se>
5582 L:      linux-i2c@vger.kernel.org
5583 S:      Maintained
5584 F:      Documentation/i2c/i2c-topology
5585 F:      Documentation/i2c/muxes/
5586 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5587 F:      drivers/i2c/i2c-mux.c
5588 F:      drivers/i2c/muxes/
5589 F:      include/linux/i2c-mux.h
5590
5591 I2C OVER PARALLEL PORT
5592 M:      Jean Delvare <jdelvare@suse.com>
5593 L:      linux-i2c@vger.kernel.org
5594 S:      Maintained
5595 F:      Documentation/i2c/busses/i2c-parport
5596 F:      Documentation/i2c/busses/i2c-parport-light
5597 F:      drivers/i2c/busses/i2c-parport.c
5598 F:      drivers/i2c/busses/i2c-parport-light.c
5599
5600 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5601 M:      Jean Delvare <jdelvare@suse.com>
5602 L:      linux-i2c@vger.kernel.org
5603 S:      Maintained
5604 F:      Documentation/i2c/busses/i2c-ali1535
5605 F:      Documentation/i2c/busses/i2c-ali1563
5606 F:      Documentation/i2c/busses/i2c-ali15x3
5607 F:      Documentation/i2c/busses/i2c-amd756
5608 F:      Documentation/i2c/busses/i2c-amd8111
5609 F:      Documentation/i2c/busses/i2c-i801
5610 F:      Documentation/i2c/busses/i2c-nforce2
5611 F:      Documentation/i2c/busses/i2c-piix4
5612 F:      Documentation/i2c/busses/i2c-sis5595
5613 F:      Documentation/i2c/busses/i2c-sis630
5614 F:      Documentation/i2c/busses/i2c-sis96x
5615 F:      Documentation/i2c/busses/i2c-via
5616 F:      Documentation/i2c/busses/i2c-viapro
5617 F:      drivers/i2c/busses/i2c-ali1535.c
5618 F:      drivers/i2c/busses/i2c-ali1563.c
5619 F:      drivers/i2c/busses/i2c-ali15x3.c
5620 F:      drivers/i2c/busses/i2c-amd756.c
5621 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5622 F:      drivers/i2c/busses/i2c-amd8111.c
5623 F:      drivers/i2c/busses/i2c-i801.c
5624 F:      drivers/i2c/busses/i2c-isch.c
5625 F:      drivers/i2c/busses/i2c-nforce2.c
5626 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5627 F:      drivers/i2c/busses/i2c-piix4.c
5628 F:      drivers/i2c/busses/i2c-sis5595.c
5629 F:      drivers/i2c/busses/i2c-sis630.c
5630 F:      drivers/i2c/busses/i2c-sis96x.c
5631 F:      drivers/i2c/busses/i2c-via.c
5632 F:      drivers/i2c/busses/i2c-viapro.c
5633
5634 I2C/SMBUS ISMT DRIVER
5635 M:      Seth Heasley <seth.heasley@intel.com>
5636 M:      Neil Horman <nhorman@tuxdriver.com>
5637 L:      linux-i2c@vger.kernel.org
5638 F:      drivers/i2c/busses/i2c-ismt.c
5639 F:      Documentation/i2c/busses/i2c-ismt
5640
5641 I2C/SMBUS STUB DRIVER
5642 M:      Jean Delvare <jdelvare@suse.com>
5643 L:      linux-i2c@vger.kernel.org
5644 S:      Maintained
5645 F:      drivers/i2c/i2c-stub.c
5646
5647 I2C SUBSYSTEM
5648 M:      Wolfram Sang <wsa@the-dreams.de>
5649 L:      linux-i2c@vger.kernel.org
5650 W:      https://i2c.wiki.kernel.org/
5651 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5653 S:      Maintained
5654 F:      Documentation/devicetree/bindings/i2c/
5655 F:      Documentation/i2c/
5656 F:      drivers/i2c/
5657 F:      drivers/i2c/*/
5658 F:      include/linux/i2c.h
5659 F:      include/linux/i2c-*.h
5660 F:      include/uapi/linux/i2c.h
5661 F:      include/uapi/linux/i2c-*.h
5662
5663 I2C ACPI SUPPORT
5664 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5665 L:      linux-i2c@vger.kernel.org
5666 L:      linux-acpi@vger.kernel.org
5667 S:      Maintained
5668
5669 I2C-TAOS-EVM DRIVER
5670 M:      Jean Delvare <jdelvare@suse.com>
5671 L:      linux-i2c@vger.kernel.org
5672 S:      Maintained
5673 F:      Documentation/i2c/busses/i2c-taos-evm
5674 F:      drivers/i2c/busses/i2c-taos-evm.c
5675
5676 I2C-TINY-USB DRIVER
5677 M:      Till Harbaum <till@harbaum.org>
5678 L:      linux-i2c@vger.kernel.org
5679 W:      http://www.harbaum.org/till/i2c_tiny_usb
5680 S:      Maintained
5681 F:      drivers/i2c/busses/i2c-tiny-usb.c
5682
5683 i386 BOOT CODE
5684 M:      "H. Peter Anvin" <hpa@zytor.com>
5685 S:      Maintained
5686 F:      arch/x86/boot/
5687
5688 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5689 M:      "H. Peter Anvin" <hpa@zytor.com>
5690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5691 S:      Maintained
5692
5693 IA64 (Itanium) PLATFORM
5694 M:      Tony Luck <tony.luck@intel.com>
5695 M:      Fenghua Yu <fenghua.yu@intel.com>
5696 L:      linux-ia64@vger.kernel.org
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5698 S:      Maintained
5699 F:      arch/ia64/
5700
5701 IBM Power VMX Cryptographic instructions
5702 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5703 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5704 L:      linux-crypto@vger.kernel.org
5705 S:      Supported
5706 F:      drivers/crypto/vmx/Makefile
5707 F:      drivers/crypto/vmx/Kconfig
5708 F:      drivers/crypto/vmx/vmx.c
5709 F:      drivers/crypto/vmx/aes*
5710 F:      drivers/crypto/vmx/ghash*
5711 F:      drivers/crypto/vmx/ppc-xlate.pl
5712
5713 IBM Power in-Nest Crypto Acceleration
5714 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5715 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5716 L:      linux-crypto@vger.kernel.org
5717 S:      Supported
5718 F:      drivers/crypto/nx/Makefile
5719 F:      drivers/crypto/nx/Kconfig
5720 F:      drivers/crypto/nx/nx-aes*
5721 F:      drivers/crypto/nx/nx-sha*
5722 F:      drivers/crypto/nx/nx.*
5723 F:      drivers/crypto/nx/nx_csbcpb.h
5724 F:      drivers/crypto/nx/nx_debugfs.h
5725
5726 IBM Power 842 compression accelerator
5727 M:      Dan Streetman <ddstreet@ieee.org>
5728 S:      Supported
5729 F:      drivers/crypto/nx/Makefile
5730 F:      drivers/crypto/nx/Kconfig
5731 F:      drivers/crypto/nx/nx-842*
5732 F:      include/linux/sw842.h
5733 F:      crypto/842.c
5734 F:      lib/842/
5735
5736 IBM Power Linux RAID adapter
5737 M:      Brian King <brking@us.ibm.com>
5738 S:      Supported
5739 F:      drivers/scsi/ipr.*
5740
5741 IBM Power Virtual Ethernet Device Driver
5742 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5743 L:      netdev@vger.kernel.org
5744 S:      Supported
5745 F:      drivers/net/ethernet/ibm/ibmveth.*
5746
5747 IBM Power SRIOV Virtual NIC Device Driver
5748 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5749 M:      John Allen <jallen@linux.vnet.ibm.com>
5750 L:      netdev@vger.kernel.org
5751 S:      Supported
5752 F:      drivers/net/ethernet/ibm/ibmvnic.*
5753
5754 IBM Power Virtual SCSI Device Drivers
5755 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5756 L:      linux-scsi@vger.kernel.org
5757 S:      Supported
5758 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5759 F:      drivers/scsi/ibmvscsi/viosrp.h
5760
5761 IBM Power Virtual FC Device Drivers
5762 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5763 L:      linux-scsi@vger.kernel.org
5764 S:      Supported
5765 F:      drivers/scsi/ibmvscsi/ibmvfc*
5766
5767 IBM ServeRAID RAID DRIVER
5768 S:      Orphan
5769 F:      drivers/scsi/ips.*
5770
5771 ICH LPC AND GPIO DRIVER
5772 M:      Peter Tyser <ptyser@xes-inc.com>
5773 S:      Maintained
5774 F:      drivers/mfd/lpc_ich.c
5775 F:      drivers/gpio/gpio-ich.c
5776
5777 IDE SUBSYSTEM
5778 M:      "David S. Miller" <davem@davemloft.net>
5779 L:      linux-ide@vger.kernel.org
5780 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5782 S:      Maintained
5783 F:      Documentation/ide/
5784 F:      drivers/ide/
5785 F:      include/linux/ide.h
5786
5787 IDEAPAD LAPTOP EXTRAS DRIVER
5788 M:      Ike Panhc <ike.pan@canonical.com>
5789 L:      platform-driver-x86@vger.kernel.org
5790 W:      http://launchpad.net/ideapad-laptop
5791 S:      Maintained
5792 F:      drivers/platform/x86/ideapad-laptop.c
5793
5794 IDEAPAD LAPTOP SLIDEBAR DRIVER
5795 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5796 L:      linux-input@vger.kernel.org
5797 W:      https://github.com/o2genum/ideapad-slidebar
5798 S:      Maintained
5799 F:      drivers/input/misc/ideapad_slidebar.c
5800
5801 IDE/ATAPI DRIVERS
5802 M:      Borislav Petkov <bp@alien8.de>
5803 L:      linux-ide@vger.kernel.org
5804 S:      Maintained
5805 F:      Documentation/cdrom/ide-cd
5806 F:      drivers/ide/ide-cd*
5807
5808 IDLE-I7300
5809 M:      Andy Henroid <andrew.d.henroid@intel.com>
5810 L:      linux-pm@vger.kernel.org
5811 S:      Supported
5812 F:      drivers/idle/i7300_idle.c
5813
5814 IEEE 802.15.4 SUBSYSTEM
5815 M:      Alexander Aring <aar@pengutronix.de>
5816 L:      linux-wpan@vger.kernel.org
5817 W:      http://wpan.cakelab.org/
5818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5820 S:      Maintained
5821 F:      net/ieee802154/
5822 F:      net/mac802154/
5823 F:      drivers/net/ieee802154/
5824 F:      include/linux/nl802154.h
5825 F:      include/linux/ieee802154.h
5826 F:      include/net/nl802154.h
5827 F:      include/net/mac802154.h
5828 F:      include/net/af_ieee802154.h
5829 F:      include/net/cfg802154.h
5830 F:      include/net/ieee802154_netdev.h
5831 F:      Documentation/networking/ieee802154.txt
5832
5833 IGORPLUG-USB IR RECEIVER
5834 M:      Sean Young <sean@mess.org>
5835 L:      linux-media@vger.kernel.org
5836 S:      Maintained
5837 F:      drivers/media/rc/igorplugusb.c
5838
5839 IGUANAWORKS USB IR TRANSCEIVER
5840 M:      Sean Young <sean@mess.org>
5841 L:      linux-media@vger.kernel.org
5842 S:      Maintained
5843 F:      drivers/media/rc/iguanair.c
5844
5845 IIO SUBSYSTEM AND DRIVERS
5846 M:      Jonathan Cameron <jic23@kernel.org>
5847 R:      Hartmut Knaack <knaack.h@gmx.de>
5848 R:      Lars-Peter Clausen <lars@metafoo.de>
5849 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
5850 L:      linux-iio@vger.kernel.org
5851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
5852 S:      Maintained
5853 F:      Documentation/devicetree/bindings/iio/
5854 F:      drivers/iio/
5855 F:      drivers/staging/iio/
5856 F:      include/linux/iio/
5857 F:      tools/iio/
5858
5859 IKANOS/ADI EAGLE ADSL USB DRIVER
5860 M:      Matthieu Castet <castet.matthieu@free.fr>
5861 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5862 S:      Maintained
5863 F:      drivers/usb/atm/ueagle-atm.c
5864
5865 INA209 HARDWARE MONITOR DRIVER
5866 M:      Guenter Roeck <linux@roeck-us.net>
5867 L:      linux-hwmon@vger.kernel.org
5868 S:      Maintained
5869 F:      Documentation/hwmon/ina209
5870 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5871 F:      drivers/hwmon/ina209.c
5872
5873 INA2XX HARDWARE MONITOR DRIVER
5874 M:      Guenter Roeck <linux@roeck-us.net>
5875 L:      linux-hwmon@vger.kernel.org
5876 S:      Maintained
5877 F:      Documentation/hwmon/ina2xx
5878 F:      drivers/hwmon/ina2xx.c
5879 F:      include/linux/platform_data/ina2xx.h
5880
5881 INDUSTRY PACK SUBSYSTEM (IPACK)
5882 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5883 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5884 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5885 L:      industrypack-devel@lists.sourceforge.net
5886 W:      http://industrypack.sourceforge.net
5887 S:      Maintained
5888 F:      drivers/ipack/
5889
5890 INGENIC JZ4780 DMA Driver
5891 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5892 S:      Maintained
5893 F:      drivers/dma/dma-jz4780.c
5894
5895 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5896 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5897 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5898 L:      linux-ima-devel@lists.sourceforge.net
5899 L:      linux-ima-user@lists.sourceforge.net
5900 L:      linux-security-module@vger.kernel.org
5901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5902 S:      Supported
5903 F:      security/integrity/ima/
5904
5905 IMGTEC IR DECODER DRIVER
5906 M:      James Hogan <james.hogan@imgtec.com>
5907 S:      Maintained
5908 F:      drivers/media/rc/img-ir/
5909
5910 IMS TWINTURBO FRAMEBUFFER DRIVER
5911 L:      linux-fbdev@vger.kernel.org
5912 S:      Orphan
5913 F:      drivers/video/fbdev/imsttfb.c
5914
5915 INFINIBAND SUBSYSTEM
5916 M:      Doug Ledford <dledford@redhat.com>
5917 M:      Sean Hefty <sean.hefty@intel.com>
5918 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5919 L:      linux-rdma@vger.kernel.org
5920 W:      http://www.openfabrics.org/
5921 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5923 S:      Supported
5924 F:      Documentation/infiniband/
5925 F:      drivers/infiniband/
5926 F:      include/uapi/linux/if_infiniband.h
5927 F:      include/uapi/rdma/
5928 F:      include/rdma/
5929
5930 INOTIFY
5931 M:      John McCutchan <john@johnmccutchan.com>
5932 M:      Robert Love <rlove@rlove.org>
5933 M:      Eric Paris <eparis@parisplace.org>
5934 S:      Maintained
5935 F:      Documentation/filesystems/inotify.txt
5936 F:      fs/notify/inotify/
5937 F:      include/linux/inotify.h
5938 F:      include/uapi/linux/inotify.h
5939
5940 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5941 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5942 L:      linux-input@vger.kernel.org
5943 Q:      http://patchwork.kernel.org/project/linux-input/list/
5944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5945 S:      Maintained
5946 F:      drivers/input/
5947 F:      include/linux/input.h
5948 F:      include/uapi/linux/input.h
5949 F:      include/linux/input/
5950 F:      Documentation/devicetree/bindings/input/
5951
5952 INPUT MULTITOUCH (MT) PROTOCOL
5953 M:      Henrik Rydberg <rydberg@bitmath.org>
5954 L:      linux-input@vger.kernel.org
5955 S:      Odd fixes
5956 F:      Documentation/input/multi-touch-protocol.txt
5957 F:      drivers/input/input-mt.c
5958 K:      \b(ABS|SYN)_MT_
5959
5960 INTEL ASoC BDW/HSW DRIVERS
5961 M:      Jie Yang <yang.jie@linux.intel.com>
5962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5963 S:      Supported
5964 F:      sound/soc/intel/common/sst-dsp*
5965 F:      sound/soc/intel/common/sst-firmware.c
5966 F:      sound/soc/intel/boards/broadwell.c
5967 F:      sound/soc/intel/haswell/
5968
5969 INTEL C600 SERIES SAS CONTROLLER DRIVER
5970 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5971 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5972 L:      linux-scsi@vger.kernel.org
5973 T:      git git://git.code.sf.net/p/intel-sas/isci
5974 S:      Supported
5975 F:      drivers/scsi/isci/
5976
5977 INTEL HID EVENT DRIVER
5978 M:      Alex Hung <alex.hung@canonical.com>
5979 L:      platform-driver-x86@vger.kernel.org
5980 S:      Maintained
5981 F:      drivers/platform/x86/intel-hid.c
5982
5983 INTEL VIRTUAL BUTTON DRIVER
5984 M:      AceLan Kao <acelan.kao@canonical.com>
5985 L:      platform-driver-x86@vger.kernel.org
5986 S:      Maintained
5987 F:      drivers/platform/x86/intel-vbtn.c
5988
5989 INTEL IDLE DRIVER
5990 M:      Len Brown <lenb@kernel.org>
5991 L:      linux-pm@vger.kernel.org
5992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5993 S:      Supported
5994 F:      drivers/idle/intel_idle.c
5995
5996 INTEL PSTATE DRIVER
5997 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5998 M:      Len Brown <lenb@kernel.org>
5999 L:      linux-pm@vger.kernel.org
6000 S:      Supported
6001 F:      drivers/cpufreq/intel_pstate.c
6002
6003 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6004 M:      Maik Broemme <mbroemme@plusserver.de>
6005 L:      linux-fbdev@vger.kernel.org
6006 S:      Maintained
6007 F:      Documentation/fb/intelfb.txt
6008 F:      drivers/video/fbdev/intelfb/
6009
6010 INTEL 810/815 FRAMEBUFFER DRIVER
6011 M:      Antonino Daplas <adaplas@gmail.com>
6012 L:      linux-fbdev@vger.kernel.org
6013 S:      Maintained
6014 F:      drivers/video/fbdev/i810/
6015
6016 INTEL MENLOW THERMAL DRIVER
6017 M:      Sujith Thomas <sujith.thomas@intel.com>
6018 L:      platform-driver-x86@vger.kernel.org
6019 W:      https://01.org/linux-acpi
6020 S:      Supported
6021 F:      drivers/platform/x86/intel_menlow.c
6022
6023 INTEL I/OAT DMA DRIVER
6024 M:      Dave Jiang <dave.jiang@intel.com>
6025 R:      Dan Williams <dan.j.williams@intel.com>
6026 L:      dmaengine@vger.kernel.org
6027 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6028 S:      Supported
6029 F:      drivers/dma/ioat*
6030
6031 INTEL IOMMU (VT-d)
6032 M:      David Woodhouse <dwmw2@infradead.org>
6033 L:      iommu@lists.linux-foundation.org
6034 T:      git git://git.infradead.org/iommu-2.6.git
6035 S:      Supported
6036 F:      drivers/iommu/intel-iommu.c
6037 F:      include/linux/intel-iommu.h
6038
6039 INTEL IOP-ADMA DMA DRIVER
6040 R:      Dan Williams <dan.j.williams@intel.com>
6041 S:      Odd fixes
6042 F:      drivers/dma/iop-adma.c
6043
6044 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6045 M:      Krzysztof Halasa <khalasa@piap.pl>
6046 S:      Maintained
6047 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6048 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6049 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6050 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6051 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6052 F:      drivers/net/wan/ixp4xx_hss.c
6053
6054 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6055 M:      Deepak Saxena <dsaxena@plexity.net>
6056 S:      Maintained
6057 F:      drivers/char/hw_random/ixp4xx-rng.c
6058
6059 INTEL ETHERNET DRIVERS
6060 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6061 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6062 W:      http://www.intel.com/support/feedback.htm
6063 W:      http://e1000.sourceforge.net/
6064 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6067 S:      Supported
6068 F:      Documentation/networking/e100.txt
6069 F:      Documentation/networking/e1000.txt
6070 F:      Documentation/networking/e1000e.txt
6071 F:      Documentation/networking/igb.txt
6072 F:      Documentation/networking/igbvf.txt
6073 F:      Documentation/networking/ixgb.txt
6074 F:      Documentation/networking/ixgbe.txt
6075 F:      Documentation/networking/ixgbevf.txt
6076 F:      Documentation/networking/i40e.txt
6077 F:      Documentation/networking/i40evf.txt
6078 F:      drivers/net/ethernet/intel/
6079 F:      drivers/net/ethernet/intel/*/
6080
6081 INTEL RDMA RNIC DRIVER
6082 M:     Faisal Latif <faisal.latif@intel.com>
6083 R:     Chien Tin Tung <chien.tin.tung@intel.com>
6084 R:     Mustafa Ismail <mustafa.ismail@intel.com>
6085 R:     Shiraz Saleem <shiraz.saleem@intel.com>
6086 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
6087 L:     linux-rdma@vger.kernel.org
6088 S:     Supported
6089 F:     drivers/infiniband/hw/i40iw/
6090
6091 INTEL MERRIFIELD GPIO DRIVER
6092 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6093 L:      linux-gpio@vger.kernel.org
6094 S:      Maintained
6095 F:      drivers/gpio/gpio-merrifield.c
6096
6097 INTEL-MID GPIO DRIVER
6098 M:      David Cohen <david.a.cohen@linux.intel.com>
6099 L:      linux-gpio@vger.kernel.org
6100 S:      Maintained
6101 F:      drivers/gpio/gpio-intel-mid.c
6102
6103 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6104 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
6105 L:      linux-wireless@vger.kernel.org
6106 S:      Maintained
6107 F:      Documentation/networking/README.ipw2100
6108 F:      Documentation/networking/README.ipw2200
6109 F:      drivers/net/wireless/intel/ipw2x00/
6110
6111 INTEL(R) TRACE HUB
6112 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6113 S:      Supported
6114 F:      Documentation/trace/intel_th.txt
6115 F:      drivers/hwtracing/intel_th/
6116
6117 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6118 M:      Ning Sun <ning.sun@intel.com>
6119 L:      tboot-devel@lists.sourceforge.net
6120 W:      http://tboot.sourceforge.net
6121 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6122 S:      Supported
6123 F:      Documentation/intel_txt.txt
6124 F:      include/linux/tboot.h
6125 F:      arch/x86/kernel/tboot.c
6126
6127 INTEL WIRELESS WIMAX CONNECTION 2400
6128 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6129 M:      linux-wimax@intel.com
6130 L:      wimax@linuxwimax.org (subscribers-only)
6131 S:      Supported
6132 W:      http://linuxwimax.org
6133 F:      Documentation/wimax/README.i2400m
6134 F:      drivers/net/wimax/i2400m/
6135 F:      include/uapi/linux/wimax/i2400m.h
6136
6137 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6138 M:      Stanislaw Gruszka <sgruszka@redhat.com>
6139 L:      linux-wireless@vger.kernel.org
6140 S:      Supported
6141 F:      drivers/net/wireless/intel/iwlegacy/
6142
6143 INTEL WIRELESS WIFI LINK (iwlwifi)
6144 M:      Johannes Berg <johannes.berg@intel.com>
6145 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6146 M:      Luca Coelho <luciano.coelho@intel.com>
6147 M:      Intel Linux Wireless <linuxwifi@intel.com>
6148 L:      linux-wireless@vger.kernel.org
6149 W:      http://intellinuxwireless.org
6150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6151 S:      Supported
6152 F:      drivers/net/wireless/intel/iwlwifi/
6153
6154 INTEL MANAGEMENT ENGINE (mei)
6155 M:      Tomas Winkler <tomas.winkler@intel.com>
6156 L:      linux-kernel@vger.kernel.org
6157 S:      Supported
6158 F:      include/uapi/linux/mei.h
6159 F:      include/linux/mei_cl_bus.h
6160 F:      drivers/misc/mei/*
6161 F:      drivers/watchdog/mei_wdt.c
6162 F:      Documentation/misc-devices/mei/*
6163
6164 INTEL MIC DRIVERS (mic)
6165 M:      Sudeep Dutt <sudeep.dutt@intel.com>
6166 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
6167 S:      Supported
6168 W:      https://github.com/sudeepdutt/mic
6169 W:      http://software.intel.com/en-us/mic-developer
6170 F:      include/linux/mic_bus.h
6171 F:      include/linux/scif.h
6172 F:      include/uapi/linux/mic_common.h
6173 F:      include/uapi/linux/mic_ioctl.h
6174 F:      include/uapi/linux/scif_ioctl.h
6175 F:      drivers/misc/mic/
6176 F:      drivers/dma/mic_x100_dma.c
6177 F:      drivers/dma/mic_x100_dma.h
6178 F:      Documentation/mic/
6179
6180 INTEL PMC/P-Unit IPC DRIVER
6181 M:      Zha Qipeng<qipeng.zha@intel.com>
6182 L:      platform-driver-x86@vger.kernel.org
6183 S:      Maintained
6184 F:      drivers/platform/x86/intel_pmc_ipc.c
6185 F:      drivers/platform/x86/intel_punit_ipc.c
6186 F:      arch/x86/include/asm/intel_pmc_ipc.h
6187 F:      arch/x86/include/asm/intel_punit_ipc.h
6188
6189 INTEL TELEMETRY DRIVER
6190 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6191 L:      platform-driver-x86@vger.kernel.org
6192 S:      Maintained
6193 F:      arch/x86/include/asm/intel_telemetry.h
6194 F:      drivers/platform/x86/intel_telemetry*
6195
6196 INTEL PMC CORE DRIVER
6197 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6198 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6199 L:      platform-driver-x86@vger.kernel.org
6200 S:      Maintained
6201 F:      arch/x86/include/asm/pmc_core.h
6202 F:      drivers/platform/x86/intel_pmc_core*
6203
6204 IOC3 ETHERNET DRIVER
6205 M:      Ralf Baechle <ralf@linux-mips.org>
6206 L:      linux-mips@linux-mips.org
6207 S:      Maintained
6208 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6209
6210 IOC3 SERIAL DRIVER
6211 M:      Pat Gefre <pfg@sgi.com>
6212 L:      linux-serial@vger.kernel.org
6213 S:      Maintained
6214 F:      drivers/tty/serial/ioc3_serial.c
6215
6216 IOMMU DRIVERS
6217 M:      Joerg Roedel <joro@8bytes.org>
6218 L:      iommu@lists.linux-foundation.org
6219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6220 S:      Maintained
6221 F:      drivers/iommu/
6222
6223 IP MASQUERADING
6224 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6225 S:      Maintained
6226 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6227
6228 IPMI SUBSYSTEM
6229 M:      Corey Minyard <minyard@acm.org>
6230 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
6231 W:      http://openipmi.sourceforge.net/
6232 S:      Supported
6233 F:      Documentation/IPMI.txt
6234 F:      drivers/char/ipmi/
6235 F:      include/linux/ipmi*
6236 F:      include/uapi/linux/ipmi*
6237
6238 QCOM AUDIO (ASoC) DRIVERS
6239 M:      Patrick Lai <plai@codeaurora.org>
6240 M:      Banajit Goswami <bgoswami@codeaurora.org>
6241 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6242 S:      Supported
6243 F:      sound/soc/qcom/
6244
6245 IPS SCSI RAID DRIVER
6246 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6247 L:      linux-scsi@vger.kernel.org
6248 W:      http://www.adaptec.com/
6249 S:      Maintained
6250 F:      drivers/scsi/ips*
6251
6252 IPVS
6253 M:      Wensong Zhang <wensong@linux-vs.org>
6254 M:      Simon Horman <horms@verge.net.au>
6255 M:      Julian Anastasov <ja@ssi.bg>
6256 L:      netdev@vger.kernel.org
6257 L:      lvs-devel@vger.kernel.org
6258 S:      Maintained
6259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6261 F:      Documentation/networking/ipvs-sysctl.txt
6262 F:      include/net/ip_vs.h
6263 F:      include/uapi/linux/ip_vs.h
6264 F:      net/netfilter/ipvs/
6265
6266 IPWIRELESS DRIVER
6267 M:      Jiri Kosina <jikos@kernel.org>
6268 M:      David Sterba <dsterba@suse.com>
6269 S:      Odd Fixes
6270 F:      drivers/tty/ipwireless/
6271
6272 IPX NETWORK LAYER
6273 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6274 L:      netdev@vger.kernel.org
6275 S:      Maintained
6276 F:      include/net/ipx.h
6277 F:      include/uapi/linux/ipx.h
6278 F:      net/ipx/
6279
6280 IRDA SUBSYSTEM
6281 M:      Samuel Ortiz <samuel@sortiz.org>
6282 L:      irda-users@lists.sourceforge.net (subscribers-only)
6283 L:      netdev@vger.kernel.org
6284 W:      http://irda.sourceforge.net/
6285 S:      Maintained
6286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6287 F:      Documentation/networking/irda.txt
6288 F:      drivers/net/irda/
6289 F:      include/net/irda/
6290 F:      net/irda/
6291
6292 IRQ SUBSYSTEM
6293 M:      Thomas Gleixner <tglx@linutronix.de>
6294 L:      linux-kernel@vger.kernel.org
6295 S:      Maintained
6296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6297 F:      kernel/irq/
6298
6299 IRQCHIP DRIVERS
6300 M:      Thomas Gleixner <tglx@linutronix.de>
6301 M:      Jason Cooper <jason@lakedaemon.net>
6302 M:      Marc Zyngier <marc.zyngier@arm.com>
6303 L:      linux-kernel@vger.kernel.org
6304 S:      Maintained
6305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6306 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6307 F:      Documentation/devicetree/bindings/interrupt-controller/
6308 F:      drivers/irqchip/
6309
6310 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6311 M:      Marc Zyngier <marc.zyngier@arm.com>
6312 S:      Maintained
6313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6314 F:      Documentation/IRQ-domain.txt
6315 F:      include/linux/irqdomain.h
6316 F:      kernel/irq/irqdomain.c
6317 F:      kernel/irq/msi.c
6318
6319 ISA
6320 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6321 S:      Maintained
6322 F:      Documentation/isa.txt
6323 F:      drivers/base/isa.c
6324 F:      include/linux/isa.h
6325
6326 ISAPNP
6327 M:      Jaroslav Kysela <perex@perex.cz>
6328 S:      Maintained
6329 F:      Documentation/isapnp.txt
6330 F:      drivers/pnp/isapnp/
6331 F:      include/linux/isapnp.h
6332
6333 ISA RADIO MODULE
6334 M:      Hans Verkuil <hverkuil@xs4all.nl>
6335 L:      linux-media@vger.kernel.org
6336 T:      git git://linuxtv.org/media_tree.git
6337 W:      https://linuxtv.org
6338 S:      Maintained
6339 F:      drivers/media/radio/radio-isa*
6340
6341 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6342 M:      Peter Jones <pjones@redhat.com>
6343 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6344 S:      Maintained
6345 F:      drivers/firmware/iscsi_ibft*
6346
6347 ISCSI
6348 M:      Mike Christie <michaelc@cs.wisc.edu>
6349 L:      open-iscsi@googlegroups.com
6350 W:      www.open-iscsi.org
6351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6352 S:      Maintained
6353 F:      drivers/scsi/*iscsi*
6354 F:      include/scsi/*iscsi*
6355
6356 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6357 M:      Or Gerlitz <ogerlitz@mellanox.com>
6358 M:      Sagi Grimberg <sagi@grimberg.me>
6359 M:      Roi Dayan <roid@mellanox.com>
6360 L:      linux-rdma@vger.kernel.org
6361 S:      Supported
6362 W:      http://www.openfabrics.org
6363 W:      www.open-iscsi.org
6364 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6365 F:      drivers/infiniband/ulp/iser/
6366
6367 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6368 M:      Sagi Grimberg <sagi@grimberg.me>
6369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6370 L:      linux-rdma@vger.kernel.org
6371 L:      target-devel@vger.kernel.org
6372 S:      Supported
6373 W:      http://www.linux-iscsi.org
6374 F:      drivers/infiniband/ulp/isert
6375
6376 ISDN SUBSYSTEM
6377 M:      Karsten Keil <isdn@linux-pingi.de>
6378 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6379 L:      netdev@vger.kernel.org
6380 W:      http://www.isdn4linux.de
6381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6382 S:      Maintained
6383 F:      Documentation/isdn/
6384 F:      drivers/isdn/
6385 F:      include/linux/isdn.h
6386 F:      include/linux/isdn/
6387 F:      include/uapi/linux/isdn.h
6388 F:      include/uapi/linux/isdn/
6389
6390 ISDN SUBSYSTEM (Eicon active card driver)
6391 M:      Armin Schindler <mac@melware.de>
6392 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6393 W:      http://www.melware.de
6394 S:      Maintained
6395 F:      drivers/isdn/hardware/eicon/
6396
6397 IT87 HARDWARE MONITORING DRIVER
6398 M:      Jean Delvare <jdelvare@suse.com>
6399 L:      linux-hwmon@vger.kernel.org
6400 S:      Maintained
6401 F:      Documentation/hwmon/it87
6402 F:      drivers/hwmon/it87.c
6403
6404 IT913X MEDIA DRIVER
6405 M:      Antti Palosaari <crope@iki.fi>
6406 L:      linux-media@vger.kernel.org
6407 W:      https://linuxtv.org
6408 W:      http://palosaari.fi/linux/
6409 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6410 T:      git git://linuxtv.org/anttip/media_tree.git
6411 S:      Maintained
6412 F:      drivers/media/tuners/it913x*
6413
6414 IVTV VIDEO4LINUX DRIVER
6415 M:      Andy Walls <awalls@md.metrocast.net>
6416 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6417 L:      linux-media@vger.kernel.org
6418 T:      git git://linuxtv.org/media_tree.git
6419 W:      http://www.ivtvdriver.org
6420 S:      Maintained
6421 F:      Documentation/video4linux/*.ivtv
6422 F:      drivers/media/pci/ivtv/
6423 F:      include/uapi/linux/ivtv*
6424
6425 IX2505V MEDIA DRIVER
6426 M:      Malcolm Priestley <tvboxspy@gmail.com>
6427 L:      linux-media@vger.kernel.org
6428 W:      https://linuxtv.org
6429 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6430 S:      Maintained
6431 F:      drivers/media/dvb-frontends/ix2505v*
6432
6433 JC42.4 TEMPERATURE SENSOR DRIVER
6434 M:      Guenter Roeck <linux@roeck-us.net>
6435 L:      linux-hwmon@vger.kernel.org
6436 S:      Maintained
6437 F:      drivers/hwmon/jc42.c
6438 F:      Documentation/hwmon/jc42
6439
6440 JFS FILESYSTEM
6441 M:      Dave Kleikamp <shaggy@kernel.org>
6442 L:      jfs-discussion@lists.sourceforge.net
6443 W:      http://jfs.sourceforge.net/
6444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6445 S:      Maintained
6446 F:      Documentation/filesystems/jfs.txt
6447 F:      fs/jfs/
6448
6449 JME NETWORK DRIVER
6450 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6451 L:      netdev@vger.kernel.org
6452 S:      Maintained
6453 F:      drivers/net/ethernet/jme.*
6454
6455 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6456 M:      David Woodhouse <dwmw2@infradead.org>
6457 L:      linux-mtd@lists.infradead.org
6458 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6459 S:      Maintained
6460 F:      fs/jffs2/
6461 F:      include/uapi/linux/jffs2.h
6462
6463 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6464 M:      "Theodore Ts'o" <tytso@mit.edu>
6465 M:      Jan Kara <jack@suse.com>
6466 L:      linux-ext4@vger.kernel.org
6467 S:      Maintained
6468 F:      fs/jbd2/
6469 F:      include/linux/jbd2.h
6470
6471 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6472 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6473 L:      linux-media@vger.kernel.org
6474 S:      Maintained
6475 F:      drivers/media/platform/rcar_jpu.c
6476
6477 JSM Neo PCI based serial card
6478 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6479 L:      linux-serial@vger.kernel.org
6480 S:      Maintained
6481 F:      drivers/tty/serial/jsm/
6482
6483 K10TEMP HARDWARE MONITORING DRIVER
6484 M:      Clemens Ladisch <clemens@ladisch.de>
6485 L:      linux-hwmon@vger.kernel.org
6486 S:      Maintained
6487 F:      Documentation/hwmon/k10temp
6488 F:      drivers/hwmon/k10temp.c
6489
6490 K8TEMP HARDWARE MONITORING DRIVER
6491 M:      Rudolf Marek <r.marek@assembler.cz>
6492 L:      linux-hwmon@vger.kernel.org
6493 S:      Maintained
6494 F:      Documentation/hwmon/k8temp
6495 F:      drivers/hwmon/k8temp.c
6496
6497 KASAN
6498 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6499 R:      Alexander Potapenko <glider@google.com>
6500 R:      Dmitry Vyukov <dvyukov@google.com>
6501 L:      kasan-dev@googlegroups.com
6502 S:      Maintained
6503 F:      arch/*/include/asm/kasan.h
6504 F:      arch/*/mm/kasan_init*
6505 F:      Documentation/kasan.txt
6506 F:      include/linux/kasan*.h
6507 F:      lib/test_kasan.c
6508 F:      mm/kasan/
6509 F:      scripts/Makefile.kasan
6510
6511 KCONFIG
6512 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6513 L:      linux-kbuild@vger.kernel.org
6514 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6515 S:      Maintained
6516 F:      Documentation/kbuild/kconfig-language.txt
6517 F:      scripts/kconfig/
6518
6519 KDUMP
6520 M:      Dave Young <dyoung@redhat.com>
6521 M:      Baoquan He <bhe@redhat.com>
6522 R:      Vivek Goyal <vgoyal@redhat.com>
6523 L:      kexec@lists.infradead.org
6524 W:      http://lse.sourceforge.net/kdump/
6525 S:      Maintained
6526 F:      Documentation/kdump/
6527
6528 KEENE FM RADIO TRANSMITTER DRIVER
6529 M:      Hans Verkuil <hverkuil@xs4all.nl>
6530 L:      linux-media@vger.kernel.org
6531 T:      git git://linuxtv.org/media_tree.git
6532 W:      https://linuxtv.org
6533 S:      Maintained
6534 F:      drivers/media/radio/radio-keene*
6535
6536 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6537 M:      Ian Kent <raven@themaw.net>
6538 L:      autofs@vger.kernel.org
6539 S:      Maintained
6540 F:      fs/autofs4/
6541
6542 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6543 M:      Michal Marek <mmarek@suse.com>
6544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6546 L:      linux-kbuild@vger.kernel.org
6547 S:      Maintained
6548 F:      Documentation/kbuild/
6549 F:      Makefile
6550 F:      scripts/Makefile.*
6551 F:      scripts/basic/
6552 F:      scripts/mk*
6553 F:      scripts/package/
6554
6555 KERNEL JANITORS
6556 L:      kernel-janitors@vger.kernel.org
6557 W:      http://kernelnewbies.org/KernelJanitors
6558 S:      Odd Fixes
6559
6560 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6561 M:      "J. Bruce Fields" <bfields@fieldses.org>
6562 M:      Jeff Layton <jlayton@poochiereds.net>
6563 L:      linux-nfs@vger.kernel.org
6564 W:      http://nfs.sourceforge.net/
6565 T:      git git://linux-nfs.org/~bfields/linux.git
6566 S:      Supported
6567 F:      fs/nfsd/
6568 F:      include/uapi/linux/nfsd/
6569 F:      fs/lockd/
6570 F:      fs/nfs_common/
6571 F:      net/sunrpc/
6572 F:      include/linux/lockd/
6573 F:      include/linux/sunrpc/
6574 F:      include/uapi/linux/sunrpc/
6575
6576 KERNEL SELFTEST FRAMEWORK
6577 M:      Shuah Khan <shuahkh@osg.samsung.com>
6578 M:      Shuah Khan <shuah@kernel.org>
6579 L:      linux-kselftest@vger.kernel.org
6580 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6581 S:      Maintained
6582 F:      tools/testing/selftests
6583
6584 KERNEL VIRTUAL MACHINE (KVM)
6585 M:      Paolo Bonzini <pbonzini@redhat.com>
6586 M:      Radim Krčmář <rkrcmar@redhat.com>
6587 L:      kvm@vger.kernel.org
6588 W:      http://www.linux-kvm.org
6589 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6590 S:      Supported
6591 F:      Documentation/*/kvm*.txt
6592 F:      Documentation/virtual/kvm/
6593 F:      arch/*/kvm/
6594 F:      arch/x86/kernel/kvm.c
6595 F:      arch/x86/kernel/kvmclock.c
6596 F:      arch/*/include/asm/kvm*
6597 F:      include/linux/kvm*
6598 F:      include/uapi/linux/kvm*
6599 F:      virt/kvm/
6600 F:      tools/kvm/
6601
6602 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6603 M:      Joerg Roedel <joro@8bytes.org>
6604 L:      kvm@vger.kernel.org
6605 W:      http://www.linux-kvm.org/
6606 S:      Maintained
6607 F:      arch/x86/include/asm/svm.h
6608 F:      arch/x86/kvm/svm.c
6609
6610 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6611 M:      Alexander Graf <agraf@suse.com>
6612 L:      kvm-ppc@vger.kernel.org
6613 W:      http://www.linux-kvm.org/
6614 T:      git git://github.com/agraf/linux-2.6.git
6615 S:      Supported
6616 F:      arch/powerpc/include/asm/kvm*
6617 F:      arch/powerpc/kvm/
6618
6619 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6620 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6621 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6622 L:      linux-s390@vger.kernel.org
6623 W:      http://www.ibm.com/developerworks/linux/linux390/
6624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6625 S:      Supported
6626 F:      Documentation/s390/kvm.txt
6627 F:      arch/s390/include/asm/kvm*
6628 F:      arch/s390/kvm/
6629
6630 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6631 M:      Christoffer Dall <christoffer.dall@linaro.org>
6632 M:      Marc Zyngier <marc.zyngier@arm.com>
6633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6634 L:      kvmarm@lists.cs.columbia.edu
6635 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6637 S:      Supported
6638 F:      arch/arm/include/uapi/asm/kvm*
6639 F:      arch/arm/include/asm/kvm*
6640 F:      arch/arm/kvm/
6641 F:      virt/kvm/arm/
6642 F:      include/kvm/arm_*
6643
6644 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6645 M:      Christoffer Dall <christoffer.dall@linaro.org>
6646 M:      Marc Zyngier <marc.zyngier@arm.com>
6647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6648 L:      kvmarm@lists.cs.columbia.edu
6649 S:      Maintained
6650 F:      arch/arm64/include/uapi/asm/kvm*
6651 F:      arch/arm64/include/asm/kvm*
6652 F:      arch/arm64/kvm/
6653
6654 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6655 M:      James Hogan <james.hogan@imgtec.com>
6656 L:      linux-mips@linux-mips.org
6657 S:      Supported
6658 F:      arch/mips/include/uapi/asm/kvm*
6659 F:      arch/mips/include/asm/kvm*
6660 F:      arch/mips/kvm/
6661
6662 KEXEC
6663 M:      Eric Biederman <ebiederm@xmission.com>
6664 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6665 L:      kexec@lists.infradead.org
6666 S:      Maintained
6667 F:      include/linux/kexec.h
6668 F:      include/uapi/linux/kexec.h
6669 F:      kernel/kexec*
6670
6671 KEYS/KEYRINGS:
6672 M:      David Howells <dhowells@redhat.com>
6673 L:      keyrings@vger.kernel.org
6674 S:      Maintained
6675 F:      Documentation/security/keys.txt
6676 F:      include/linux/key.h
6677 F:      include/linux/key-type.h
6678 F:      include/linux/keyctl.h
6679 F:      include/uapi/linux/keyctl.h
6680 F:      include/keys/
6681 F:      security/keys/
6682
6683 KEYS-TRUSTED
6684 M:      David Safford <safford@us.ibm.com>
6685 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6686 L:      linux-security-module@vger.kernel.org
6687 L:      keyrings@vger.kernel.org
6688 S:      Supported
6689 F:      Documentation/security/keys-trusted-encrypted.txt
6690 F:      include/keys/trusted-type.h
6691 F:      security/keys/trusted.c
6692 F:      security/keys/trusted.h
6693
6694 KEYS-ENCRYPTED
6695 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6696 M:      David Safford <safford@us.ibm.com>
6697 L:      linux-security-module@vger.kernel.org
6698 L:      keyrings@vger.kernel.org
6699 S:      Supported
6700 F:      Documentation/security/keys-trusted-encrypted.txt
6701 F:      include/keys/encrypted-type.h
6702 F:      security/keys/encrypted-keys/
6703
6704 KGDB / KDB /debug_core
6705 M:      Jason Wessel <jason.wessel@windriver.com>
6706 W:      http://kgdb.wiki.kernel.org/
6707 L:      kgdb-bugreport@lists.sourceforge.net
6708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6709 S:      Maintained
6710 F:      Documentation/DocBook/kgdb.tmpl
6711 F:      drivers/misc/kgdbts.c
6712 F:      drivers/tty/serial/kgdboc.c
6713 F:      include/linux/kdb.h
6714 F:      include/linux/kgdb.h
6715 F:      kernel/debug/
6716
6717 KMEMCHECK
6718 M:      Vegard Nossum <vegardno@ifi.uio.no>
6719 M:      Pekka Enberg <penberg@kernel.org>
6720 S:      Maintained
6721 F:      Documentation/kmemcheck.txt
6722 F:      arch/x86/include/asm/kmemcheck.h
6723 F:      arch/x86/mm/kmemcheck/
6724 F:      include/linux/kmemcheck.h
6725 F:      mm/kmemcheck.c
6726
6727 KMEMLEAK
6728 M:      Catalin Marinas <catalin.marinas@arm.com>
6729 S:      Maintained
6730 F:      Documentation/kmemleak.txt
6731 F:      include/linux/kmemleak.h
6732 F:      mm/kmemleak.c
6733 F:      mm/kmemleak-test.c
6734
6735 KPROBES
6736 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6737 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6738 M:      "David S. Miller" <davem@davemloft.net>
6739 M:      Masami Hiramatsu <mhiramat@kernel.org>
6740 S:      Maintained
6741 F:      Documentation/kprobes.txt
6742 F:      include/linux/kprobes.h
6743 F:      kernel/kprobes.c
6744
6745 KS0108 LCD CONTROLLER DRIVER
6746 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6747 W:      http://miguelojeda.es/auxdisplay.htm
6748 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6749 S:      Maintained
6750 F:      Documentation/auxdisplay/ks0108
6751 F:      drivers/auxdisplay/ks0108.c
6752 F:      include/linux/ks0108.h
6753
6754 L3MDEV
6755 M:      David Ahern <dsa@cumulusnetworks.com>
6756 L:      netdev@vger.kernel.org
6757 S:      Maintained
6758 F:      net/l3mdev
6759 F:      include/net/l3mdev.h
6760
6761 LANTIQ MIPS ARCHITECTURE
6762 M:      John Crispin <john@phrozen.org>
6763 L:      linux-mips@linux-mips.org
6764 S:      Maintained
6765 F:      arch/mips/lantiq
6766
6767 LAPB module
6768 L:      linux-x25@vger.kernel.org
6769 S:      Orphan
6770 F:      Documentation/networking/lapb-module.txt
6771 F:      include/*/lapb.h
6772 F:      net/lapb/
6773
6774 LASI 53c700 driver for PARISC
6775 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6776 L:      linux-scsi@vger.kernel.org
6777 S:      Maintained
6778 F:      Documentation/scsi/53c700.txt
6779 F:      drivers/scsi/53c700*
6780
6781 LED SUBSYSTEM
6782 M:      Richard Purdie <rpurdie@rpsys.net>
6783 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6784 L:      linux-leds@vger.kernel.org
6785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6786 S:      Maintained
6787 F:      Documentation/devicetree/bindings/leds/
6788 F:      drivers/leds/
6789 F:      include/linux/leds.h
6790
6791 LEGACY EEPROM DRIVER
6792 M:      Jean Delvare <jdelvare@suse.com>
6793 S:      Maintained
6794 F:      Documentation/misc-devices/eeprom
6795 F:      drivers/misc/eeprom/eeprom.c
6796
6797 LEGO USB Tower driver
6798 M:      Juergen Stuber <starblue@users.sourceforge.net>
6799 L:      legousb-devel@lists.sourceforge.net
6800 W:      http://legousb.sourceforge.net/
6801 S:      Maintained
6802 F:      drivers/usb/misc/legousbtower.c
6803
6804 LG2160 MEDIA DRIVER
6805 M:      Michael Krufky <mkrufky@linuxtv.org>
6806 L:      linux-media@vger.kernel.org
6807 W:      https://linuxtv.org
6808 W:      http://github.com/mkrufky
6809 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6810 T:      git git://linuxtv.org/mkrufky/tuners.git
6811 S:      Maintained
6812 F:      drivers/media/dvb-frontends/lg2160.*
6813
6814 LGDT3305 MEDIA DRIVER
6815 M:      Michael Krufky <mkrufky@linuxtv.org>
6816 L:      linux-media@vger.kernel.org
6817 W:      https://linuxtv.org
6818 W:      http://github.com/mkrufky
6819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6820 T:      git git://linuxtv.org/mkrufky/tuners.git
6821 S:      Maintained
6822 F:      drivers/media/dvb-frontends/lgdt3305.*
6823
6824 LGUEST
6825 M:      Rusty Russell <rusty@rustcorp.com.au>
6826 L:      lguest@lists.ozlabs.org
6827 W:      http://lguest.ozlabs.org/
6828 S:      Odd Fixes
6829 F:      arch/x86/include/asm/lguest*.h
6830 F:      arch/x86/lguest/
6831 F:      drivers/lguest/
6832 F:      include/linux/lguest*.h
6833 F:      tools/lguest/
6834
6835 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6836 M:      Tejun Heo <tj@kernel.org>
6837 L:      linux-ide@vger.kernel.org
6838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6839 S:      Maintained
6840 F:      drivers/ata/
6841 F:      include/linux/ata.h
6842 F:      include/linux/libata.h
6843 F:      Documentation/devicetree/bindings/ata/
6844
6845 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6846 M:      Viresh Kumar <vireshk@kernel.org>
6847 L:      linux-ide@vger.kernel.org
6848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6849 S:      Maintained
6850 F:      include/linux/pata_arasan_cf_data.h
6851 F:      drivers/ata/pata_arasan_cf.c
6852
6853 LIBATA PATA DRIVERS
6854 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6855 M:      Tejun Heo <tj@kernel.org>
6856 L:      linux-ide@vger.kernel.org
6857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6858 S:      Maintained
6859 F:      drivers/ata/pata_*.c
6860 F:      drivers/ata/ata_generic.c
6861
6862 LIBATA SATA AHCI PLATFORM devices support
6863 M:      Hans de Goede <hdegoede@redhat.com>
6864 M:      Tejun Heo <tj@kernel.org>
6865 L:      linux-ide@vger.kernel.org
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6867 S:      Maintained
6868 F:      drivers/ata/ahci_platform.c
6869 F:      drivers/ata/libahci_platform.c
6870 F:      include/linux/ahci_platform.h
6871
6872 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6873 M:      Mikael Pettersson <mikpelinux@gmail.com>
6874 L:      linux-ide@vger.kernel.org
6875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6876 S:      Maintained
6877 F:      drivers/ata/sata_promise.*
6878
6879 LIBLOCKDEP
6880 M:      Sasha Levin <sasha.levin@oracle.com>
6881 S:      Maintained
6882 F:      tools/lib/lockdep/
6883
6884 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6885 M:      Dan Williams <dan.j.williams@intel.com>
6886 L:      linux-nvdimm@lists.01.org
6887 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6889 S:      Supported
6890 F:      drivers/nvdimm/*
6891 F:      include/linux/nd.h
6892 F:      include/linux/libnvdimm.h
6893 F:      include/uapi/linux/ndctl.h
6894
6895 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6896 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6897 L:      linux-nvdimm@lists.01.org
6898 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6899 S:      Supported
6900 F:      drivers/nvdimm/blk.c
6901 F:      drivers/nvdimm/region_devs.c
6902 F:      drivers/acpi/nfit*
6903
6904 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6905 M:      Vishal Verma <vishal.l.verma@intel.com>
6906 L:      linux-nvdimm@lists.01.org
6907 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6908 S:      Supported
6909 F:      drivers/nvdimm/btt*
6910
6911 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6912 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6913 L:      linux-nvdimm@lists.01.org
6914 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6915 S:      Supported
6916 F:      drivers/nvdimm/pmem.c
6917 F:      include/linux/pmem.h
6918 F:      arch/*/include/asm/pmem.h
6919
6920 LIGHTNVM PLATFORM SUPPORT
6921 M:      Matias Bjorling <mb@lightnvm.io>
6922 W:      http://github/OpenChannelSSD
6923 L:      linux-block@vger.kernel.org
6924 S:      Maintained
6925 F:      drivers/lightnvm/
6926 F:      include/linux/lightnvm.h
6927 F:      include/uapi/linux/lightnvm.h
6928
6929 LINUX FOR IBM pSERIES (RS/6000)
6930 M:      Paul Mackerras <paulus@au.ibm.com>
6931 W:      http://www.ibm.com/linux/ltc/projects/ppc
6932 S:      Supported
6933 F:      arch/powerpc/boot/rs6000.h
6934
6935 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6936 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6937 M:      Paul Mackerras <paulus@samba.org>
6938 M:      Michael Ellerman <mpe@ellerman.id.au>
6939 W:      http://www.penguinppc.org/
6940 L:      linuxppc-dev@lists.ozlabs.org
6941 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6943 S:      Supported
6944 F:      Documentation/powerpc/
6945 F:      arch/powerpc/
6946 F:      drivers/char/tpm/tpm_ibmvtpm*
6947 F:      drivers/crypto/nx/
6948 F:      drivers/crypto/vmx/
6949 F:      drivers/net/ethernet/ibm/ibmveth.*
6950 F:      drivers/net/ethernet/ibm/ibmvnic.*
6951 F:      drivers/pci/hotplug/rpa*
6952 F:      drivers/scsi/ibmvscsi/
6953 N:      opal
6954 N:      /pmac
6955 N:      powermac
6956 N:      powernv
6957 N:      [^a-z0-9]ps3
6958 N:      pseries
6959
6960 LINUX FOR POWER MACINTOSH
6961 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6962 W:      http://www.penguinppc.org/
6963 L:      linuxppc-dev@lists.ozlabs.org
6964 S:      Maintained
6965 F:      arch/powerpc/platforms/powermac/
6966 F:      drivers/macintosh/
6967
6968 LINUX FOR POWERPC EMBEDDED MPC5XXX
6969 M:      Anatolij Gustschin <agust@denx.de>
6970 L:      linuxppc-dev@lists.ozlabs.org
6971 T:      git git://git.denx.de/linux-denx-agust.git
6972 S:      Maintained
6973 F:      arch/powerpc/platforms/512x/
6974 F:      arch/powerpc/platforms/52xx/
6975
6976 LINUX FOR POWERPC EMBEDDED PPC4XX
6977 M:      Alistair Popple <alistair@popple.id.au>
6978 M:      Matt Porter <mporter@kernel.crashing.org>
6979 W:      http://www.penguinppc.org/
6980 L:      linuxppc-dev@lists.ozlabs.org
6981 S:      Maintained
6982 F:      arch/powerpc/platforms/40x/
6983 F:      arch/powerpc/platforms/44x/
6984
6985 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6986 L:      linuxppc-dev@lists.ozlabs.org
6987 S:      Orphan
6988 F:      arch/powerpc/*/*virtex*
6989 F:      arch/powerpc/*/*/*virtex*
6990
6991 LINUX FOR POWERPC EMBEDDED PPC8XX
6992 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6993 W:      http://www.penguinppc.org/
6994 L:      linuxppc-dev@lists.ozlabs.org
6995 S:      Maintained
6996 F:      arch/powerpc/platforms/8xx/
6997
6998 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6999 M:      Scott Wood <oss@buserror.net>
7000 M:      Kumar Gala <galak@kernel.crashing.org>
7001 W:      http://www.penguinppc.org/
7002 L:      linuxppc-dev@lists.ozlabs.org
7003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7004 S:      Maintained
7005 F:      arch/powerpc/platforms/83xx/
7006 F:      arch/powerpc/platforms/85xx/
7007
7008 LINUX FOR POWERPC PA SEMI PWRFICIENT
7009 M:      Olof Johansson <olof@lixom.net>
7010 L:      linuxppc-dev@lists.ozlabs.org
7011 S:      Maintained
7012 F:      arch/powerpc/platforms/pasemi/
7013 F:      drivers/*/*pasemi*
7014 F:      drivers/*/*/*pasemi*
7015
7016 LINUX SECURITY MODULE (LSM) FRAMEWORK
7017 M:      Chris Wright <chrisw@sous-sol.org>
7018 L:      linux-security-module@vger.kernel.org
7019 S:      Supported
7020
7021 LIS3LV02D ACCELEROMETER DRIVER
7022 M:      Eric Piel <eric.piel@tremplin-utc.net>
7023 S:      Maintained
7024 F:      Documentation/misc-devices/lis3lv02d
7025 F:      drivers/misc/lis3lv02d/
7026 F:      drivers/platform/x86/hp_accel.c
7027
7028 LIVE PATCHING
7029 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7030 M:      Jessica Yu <jeyu@redhat.com>
7031 M:      Jiri Kosina <jikos@kernel.org>
7032 M:      Miroslav Benes <mbenes@suse.cz>
7033 R:      Petr Mladek <pmladek@suse.com>
7034 S:      Maintained
7035 F:      kernel/livepatch/
7036 F:      include/linux/livepatch.h
7037 F:      arch/x86/include/asm/livepatch.h
7038 F:      arch/x86/kernel/livepatch.c
7039 F:      Documentation/livepatch/
7040 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
7041 F:      samples/livepatch/
7042 L:      live-patching@vger.kernel.org
7043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7044
7045 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7046 M:      Kees Cook <keescook@chromium.org>
7047 S:      Maintained
7048 F:      drivers/misc/lkdtm*
7049
7050 LLC (802.2)
7051 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
7052 S:      Maintained
7053 F:      include/linux/llc.h
7054 F:      include/uapi/linux/llc.h
7055 F:      include/net/llc*
7056 F:      net/llc/
7057
7058 LM73 HARDWARE MONITOR DRIVER
7059 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
7060 L:      linux-hwmon@vger.kernel.org
7061 S:      Maintained
7062 F:      drivers/hwmon/lm73.c
7063
7064 LM78 HARDWARE MONITOR DRIVER
7065 M:      Jean Delvare <jdelvare@suse.com>
7066 L:      linux-hwmon@vger.kernel.org
7067 S:      Maintained
7068 F:      Documentation/hwmon/lm78
7069 F:      drivers/hwmon/lm78.c
7070
7071 LM83 HARDWARE MONITOR DRIVER
7072 M:      Jean Delvare <jdelvare@suse.com>
7073 L:      linux-hwmon@vger.kernel.org
7074 S:      Maintained
7075 F:      Documentation/hwmon/lm83
7076 F:      drivers/hwmon/lm83.c
7077
7078 LM90 HARDWARE MONITOR DRIVER
7079 M:      Jean Delvare <jdelvare@suse.com>
7080 L:      linux-hwmon@vger.kernel.org
7081 S:      Maintained
7082 F:      Documentation/hwmon/lm90
7083 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7084 F:      drivers/hwmon/lm90.c
7085
7086 LM95234 HARDWARE MONITOR DRIVER
7087 M:      Guenter Roeck <linux@roeck-us.net>
7088 L:      linux-hwmon@vger.kernel.org
7089 S:      Maintained
7090 F:      Documentation/hwmon/lm95234
7091 F:      drivers/hwmon/lm95234.c
7092
7093 LME2510 MEDIA DRIVER
7094 M:      Malcolm Priestley <tvboxspy@gmail.com>
7095 L:      linux-media@vger.kernel.org
7096 W:      https://linuxtv.org
7097 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7098 S:      Maintained
7099 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7100
7101 LOCKING PRIMITIVES
7102 M:      Peter Zijlstra <peterz@infradead.org>
7103 M:      Ingo Molnar <mingo@redhat.com>
7104 L:      linux-kernel@vger.kernel.org
7105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7106 S:      Maintained
7107 F:      Documentation/locking/
7108 F:      include/linux/lockdep.h
7109 F:      include/linux/spinlock*.h
7110 F:      arch/*/include/asm/spinlock*.h
7111 F:      include/linux/rwlock*.h
7112 F:      include/linux/mutex*.h
7113 F:      arch/*/include/asm/mutex*.h
7114 F:      include/linux/rwsem*.h
7115 F:      arch/*/include/asm/rwsem.h
7116 F:      include/linux/seqlock.h
7117 F:      lib/locking*.[ch]
7118 F:      kernel/locking/
7119
7120 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7121 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
7122 L:      linux-ntfs-dev@lists.sourceforge.net
7123 W:      http://www.linux-ntfs.org/content/view/19/37/
7124 S:      Maintained
7125 F:      Documentation/ldm.txt
7126 F:      block/partitions/ldm.*
7127
7128 LogFS
7129 M:      Joern Engel <joern@logfs.org>
7130 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
7131 L:      logfs@logfs.org
7132 W:      logfs.org
7133 S:      Maintained
7134 F:      fs/logfs/
7135
7136 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7137 M:      Sathya Prakash <sathya.prakash@broadcom.com>
7138 M:      Chaitra P B <chaitra.basappa@broadcom.com>
7139 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7140 L:      MPT-FusionLinux.pdl@broadcom.com
7141 L:      linux-scsi@vger.kernel.org
7142 W:      http://www.avagotech.com/support/
7143 S:      Supported
7144 F:      drivers/message/fusion/
7145 F:      drivers/scsi/mpt2sas/
7146 F:      drivers/scsi/mpt3sas/
7147
7148 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7149 M:      Matthew Wilcox <matthew@wil.cx>
7150 L:      linux-scsi@vger.kernel.org
7151 S:      Maintained
7152 F:      drivers/scsi/sym53c8xx_2/
7153
7154 LTC4261 HARDWARE MONITOR DRIVER
7155 M:      Guenter Roeck <linux@roeck-us.net>
7156 L:      linux-hwmon@vger.kernel.org
7157 S:      Maintained
7158 F:      Documentation/hwmon/ltc4261
7159 F:      drivers/hwmon/ltc4261.c
7160
7161 LTP (Linux Test Project)
7162 M:      Mike Frysinger <vapier@gentoo.org>
7163 M:      Cyril Hrubis <chrubis@suse.cz>
7164 M:      Wanlong Gao <wanlong.gao@gmail.com>
7165 M:      Jan Stancek <jstancek@redhat.com>
7166 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7167 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
7168 L:      ltp@lists.linux.it (subscribers-only)
7169 W:      http://linux-test-project.github.io/
7170 T:      git git://github.com/linux-test-project/ltp.git
7171 S:      Maintained
7172
7173 M32R ARCHITECTURE
7174 W:      http://www.linux-m32r.org/
7175 S:      Orphan
7176 F:      arch/m32r/
7177
7178 M68K ARCHITECTURE
7179 M:      Geert Uytterhoeven <geert@linux-m68k.org>
7180 L:      linux-m68k@lists.linux-m68k.org
7181 W:      http://www.linux-m68k.org/
7182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7183 S:      Maintained
7184 F:      arch/m68k/
7185 F:      drivers/zorro/
7186
7187 M68K ON APPLE MACINTOSH
7188 M:      Joshua Thompson <funaho@jurai.org>
7189 W:      http://www.mac.linux-m68k.org/
7190 L:      linux-m68k@lists.linux-m68k.org
7191 S:      Maintained
7192 F:      arch/m68k/mac/
7193
7194 M68K ON HP9000/300
7195 M:      Philip Blundell <philb@gnu.org>
7196 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7197 S:      Maintained
7198 F:      arch/m68k/hp300/
7199
7200 M88DS3103 MEDIA DRIVER
7201 M:      Antti Palosaari <crope@iki.fi>
7202 L:      linux-media@vger.kernel.org
7203 W:      https://linuxtv.org
7204 W:      http://palosaari.fi/linux/
7205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7206 T:      git git://linuxtv.org/anttip/media_tree.git
7207 S:      Maintained
7208 F:      drivers/media/dvb-frontends/m88ds3103*
7209
7210 M88RS2000 MEDIA DRIVER
7211 M:      Malcolm Priestley <tvboxspy@gmail.com>
7212 L:      linux-media@vger.kernel.org
7213 W:      https://linuxtv.org
7214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7215 S:      Maintained
7216 F:      drivers/media/dvb-frontends/m88rs2000*
7217
7218 MA901 MASTERKIT USB FM RADIO DRIVER
7219 M:      Alexey Klimov <klimov.linux@gmail.com>
7220 L:      linux-media@vger.kernel.org
7221 T:      git git://linuxtv.org/media_tree.git
7222 S:      Maintained
7223 F:      drivers/media/radio/radio-ma901.c
7224
7225 MAC80211
7226 M:      Johannes Berg <johannes@sipsolutions.net>
7227 L:      linux-wireless@vger.kernel.org
7228 W:      http://wireless.kernel.org/
7229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7231 S:      Maintained
7232 F:      Documentation/networking/mac80211-injection.txt
7233 F:      include/net/mac80211.h
7234 F:      net/mac80211/
7235 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7236
7237 MACVLAN DRIVER
7238 M:      Patrick McHardy <kaber@trash.net>
7239 L:      netdev@vger.kernel.org
7240 S:      Maintained
7241 F:      drivers/net/macvlan.c
7242 F:      include/linux/if_macvlan.h
7243
7244 MAILBOX API
7245 M:      Jassi Brar <jassisinghbrar@gmail.com>
7246 L:      linux-kernel@vger.kernel.org
7247 S:      Maintained
7248 F:      drivers/mailbox/
7249 F:      include/linux/mailbox_client.h
7250 F:      include/linux/mailbox_controller.h
7251
7252 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7253 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7254 W:      http://www.kernel.org/doc/man-pages
7255 L:      linux-man@vger.kernel.org
7256 S:      Maintained
7257
7258 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
7259 M:      Andrew Lunn <andrew@lunn.ch>
7260 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7261 S:      Maintained
7262 F:      drivers/net/dsa/mv88e6xxx/
7263
7264 MARVELL ARMADA DRM SUPPORT
7265 M:      Russell King <rmk+kernel@armlinux.org.uk>
7266 S:      Maintained
7267 F:      drivers/gpu/drm/armada/
7268 F:      include/uapi/drm/armada_drm.h
7269 F:      Documentation/devicetree/bindings/display/armada/
7270
7271 MARVELL CRYPTO DRIVER
7272 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7273 M:      Arnaud Ebalard <arno@natisbad.org>
7274 F:      drivers/crypto/marvell/
7275 S:      Maintained
7276 L:      linux-crypto@vger.kernel.org
7277
7278 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7279 M:      Mirko Lindner <mlindner@marvell.com>
7280 M:      Stephen Hemminger <stephen@networkplumber.org>
7281 L:      netdev@vger.kernel.org
7282 S:      Maintained
7283 F:      drivers/net/ethernet/marvell/sk*
7284
7285 MARVELL LIBERTAS WIRELESS DRIVER
7286 L:      libertas-dev@lists.infradead.org
7287 S:      Orphan
7288 F:      drivers/net/wireless/marvell/libertas/
7289
7290 MARVELL MV643XX ETHERNET DRIVER
7291 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7292 L:      netdev@vger.kernel.org
7293 S:      Maintained
7294 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7295 F:      include/linux/mv643xx.h
7296
7297 MARVELL MVNETA ETHERNET DRIVER
7298 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7299 L:      netdev@vger.kernel.org
7300 S:      Maintained
7301 F:      drivers/net/ethernet/marvell/mvneta.*
7302
7303 MARVELL MWIFIEX WIRELESS DRIVER
7304 M:      Amitkumar Karwar <akarwar@marvell.com>
7305 M:      Nishant Sarmukadam <nishants@marvell.com>
7306 L:      linux-wireless@vger.kernel.org
7307 S:      Maintained
7308 F:      drivers/net/wireless/marvell/mwifiex/
7309
7310 MARVELL MWL8K WIRELESS DRIVER
7311 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7312 L:      linux-wireless@vger.kernel.org
7313 S:      Odd Fixes
7314 F:      drivers/net/wireless/marvell/mwl8k.c
7315
7316 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7317 M:      Nicolas Pitre <nico@fluxnic.net>
7318 S:      Odd Fixes
7319 F:      drivers/mmc/host/mvsdio.*
7320
7321 MATROX FRAMEBUFFER DRIVER
7322 L:      linux-fbdev@vger.kernel.org
7323 S:      Orphan
7324 F:      drivers/video/fbdev/matrox/matroxfb_*
7325 F:      include/uapi/linux/matroxfb.h
7326
7327 MAX16065 HARDWARE MONITOR DRIVER
7328 M:      Guenter Roeck <linux@roeck-us.net>
7329 L:      linux-hwmon@vger.kernel.org
7330 S:      Maintained
7331 F:      Documentation/hwmon/max16065
7332 F:      drivers/hwmon/max16065.c
7333
7334 MAX20751 HARDWARE MONITOR DRIVER
7335 M:      Guenter Roeck <linux@roeck-us.net>
7336 L:      linux-hwmon@vger.kernel.org
7337 S:      Maintained
7338 F:      Documentation/hwmon/max20751
7339 F:      drivers/hwmon/max20751.c
7340
7341 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7342 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7343 L:      linux-hwmon@vger.kernel.org
7344 S:      Maintained
7345 F:      Documentation/hwmon/max6650
7346 F:      drivers/hwmon/max6650.c
7347
7348 MAX6697 HARDWARE MONITOR DRIVER
7349 M:      Guenter Roeck <linux@roeck-us.net>
7350 L:      linux-hwmon@vger.kernel.org
7351 S:      Maintained
7352 F:      Documentation/hwmon/max6697
7353 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7354 F:      drivers/hwmon/max6697.c
7355 F:      include/linux/platform_data/max6697.h
7356
7357 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7358 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7359 L:      linux-pm@vger.kernel.org
7360 S:      Supported
7361 F:      drivers/power/max14577_charger.c
7362 F:      drivers/power/max77693_charger.c
7363
7364 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7365 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7366 L:      linux-kernel@vger.kernel.org
7367 S:      Supported
7368 F:      drivers/*/*max77802*.c
7369 F:      Documentation/devicetree/bindings/*/*max77802.txt
7370 F:      include/dt-bindings/*/*max77802.h
7371
7372 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7373 M:      Chanwoo Choi <cw00.choi@samsung.com>
7374 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7375 L:      linux-kernel@vger.kernel.org
7376 S:      Supported
7377 F:      drivers/*/max14577*.c
7378 F:      drivers/*/max77686*.c
7379 F:      drivers/*/max77693*.c
7380 F:      drivers/extcon/extcon-max14577.c
7381 F:      drivers/extcon/extcon-max77693.c
7382 F:      drivers/rtc/rtc-max77686.c
7383 F:      drivers/clk/clk-max77686.c
7384 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7385 F:      Documentation/devicetree/bindings/*/max77686.txt
7386 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7387 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7388 F:      include/linux/mfd/max14577*.h
7389 F:      include/linux/mfd/max77686*.h
7390 F:      include/linux/mfd/max77693*.h
7391
7392 MAXIRADIO FM RADIO RECEIVER DRIVER
7393 M:      Hans Verkuil <hverkuil@xs4all.nl>
7394 L:      linux-media@vger.kernel.org
7395 T:      git git://linuxtv.org/media_tree.git
7396 W:      https://linuxtv.org
7397 S:      Maintained
7398 F:      drivers/media/radio/radio-maxiradio*
7399
7400 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7401 M:      Peter Rosin <peda@axentia.se>
7402 L:      linux-iio@vger.kernel.org
7403 S:      Maintained
7404 F:      drivers/iio/potentiometer/mcp4531.c
7405
7406 MEDIA DRIVERS FOR RENESAS - FCP
7407 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7408 L:      linux-media@vger.kernel.org
7409 L:      linux-renesas-soc@vger.kernel.org
7410 T:      git git://linuxtv.org/media_tree.git
7411 S:      Supported
7412 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
7413 F:      drivers/media/platform/rcar-fcp.c
7414 F:      include/media/rcar-fcp.h
7415
7416 MEDIA DRIVERS FOR RENESAS - VSP1
7417 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7418 L:      linux-media@vger.kernel.org
7419 L:      linux-renesas-soc@vger.kernel.org
7420 T:      git git://linuxtv.org/media_tree.git
7421 S:      Supported
7422 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7423 F:      drivers/media/platform/vsp1/
7424
7425 MEDIA DRIVERS FOR HELENE
7426 M:      Abylay Ospan <aospan@netup.ru>
7427 L:      linux-media@vger.kernel.org
7428 W:      https://linuxtv.org
7429 W:      http://netup.tv/
7430 T:      git git://linuxtv.org/media_tree.git
7431 S:      Supported
7432 F:      drivers/media/dvb-frontends/helene*
7433
7434 MEDIA DRIVERS FOR ASCOT2E
7435 M:      Sergey Kozlov <serjk@netup.ru>
7436 M:      Abylay Ospan <aospan@netup.ru>
7437 L:      linux-media@vger.kernel.org
7438 W:      https://linuxtv.org
7439 W:      http://netup.tv/
7440 T:      git git://linuxtv.org/media_tree.git
7441 S:      Supported
7442 F:      drivers/media/dvb-frontends/ascot2e*
7443
7444 MEDIA DRIVERS FOR CXD2841ER
7445 M:      Sergey Kozlov <serjk@netup.ru>
7446 M:      Abylay Ospan <aospan@netup.ru>
7447 L:      linux-media@vger.kernel.org
7448 W:      https://linuxtv.org
7449 W:      http://netup.tv/
7450 T:      git git://linuxtv.org/media_tree.git
7451 S:      Supported
7452 F:      drivers/media/dvb-frontends/cxd2841er*
7453
7454 MEDIA DRIVERS FOR HORUS3A
7455 M:      Sergey Kozlov <serjk@netup.ru>
7456 M:      Abylay Ospan <aospan@netup.ru>
7457 L:      linux-media@vger.kernel.org
7458 W:      https://linuxtv.org
7459 W:      http://netup.tv/
7460 T:      git git://linuxtv.org/media_tree.git
7461 S:      Supported
7462 F:      drivers/media/dvb-frontends/horus3a*
7463
7464 MEDIA DRIVERS FOR LNBH25
7465 M:      Sergey Kozlov <serjk@netup.ru>
7466 M:      Abylay Ospan <aospan@netup.ru>
7467 L:      linux-media@vger.kernel.org
7468 W:      https://linuxtv.org
7469 W:      http://netup.tv/
7470 T:      git git://linuxtv.org/media_tree.git
7471 S:      Supported
7472 F:      drivers/media/dvb-frontends/lnbh25*
7473
7474 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7475 M:      Sergey Kozlov <serjk@netup.ru>
7476 M:      Abylay Ospan <aospan@netup.ru>
7477 L:      linux-media@vger.kernel.org
7478 W:      https://linuxtv.org
7479 W:      http://netup.tv/
7480 T:      git git://linuxtv.org/media_tree.git
7481 S:      Supported
7482 F:      drivers/media/pci/netup_unidvb/*
7483
7484 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7485 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
7486 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7487 P:      LinuxTV.org Project
7488 L:      linux-media@vger.kernel.org
7489 W:      https://linuxtv.org
7490 Q:      http://patchwork.kernel.org/project/linux-media/list/
7491 T:      git git://linuxtv.org/media_tree.git
7492 S:      Maintained
7493 F:      Documentation/dvb/
7494 F:      Documentation/video4linux/
7495 F:      Documentation/DocBook/media/
7496 F:      drivers/media/
7497 F:      drivers/staging/media/
7498 F:      include/linux/platform_data/media/
7499 F:      include/media/
7500 F:      include/uapi/linux/dvb/
7501 F:      include/uapi/linux/videodev2.h
7502 F:      include/uapi/linux/media.h
7503 F:      include/uapi/linux/v4l2-*
7504 F:      include/uapi/linux/meye.h
7505 F:      include/uapi/linux/ivtv*
7506 F:      include/uapi/linux/uvcvideo.h
7507
7508 MEDIATEK ETHERNET DRIVER
7509 M:      Felix Fietkau <nbd@openwrt.org>
7510 M:      John Crispin <blogic@openwrt.org>
7511 L:      netdev@vger.kernel.org
7512 S:      Maintained
7513 F:      drivers/net/ethernet/mediatek/
7514
7515 MEDIATEK MT7601U WIRELESS LAN DRIVER
7516 M:      Jakub Kicinski <kubakici@wp.pl>
7517 L:      linux-wireless@vger.kernel.org
7518 S:      Maintained
7519 F:      drivers/net/wireless/mediatek/mt7601u/
7520
7521 MEGARAID SCSI/SAS DRIVERS
7522 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7523 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7524 M:      Uday Lingala <uday.lingala@avagotech.com>
7525 L:      megaraidlinux.pdl@avagotech.com
7526 L:      linux-scsi@vger.kernel.org
7527 W:      http://www.lsi.com
7528 S:      Maintained
7529 F:      Documentation/scsi/megaraid.txt
7530 F:      drivers/scsi/megaraid.*
7531 F:      drivers/scsi/megaraid/
7532
7533 MELLANOX ETHERNET DRIVER (mlx4_en)
7534 M:      Tariq Toukan <tariqt@mellanox.com>
7535 L:      netdev@vger.kernel.org
7536 S:      Supported
7537 W:      http://www.mellanox.com
7538 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7539 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7540
7541 MELLANOX ETHERNET DRIVER (mlx5e)
7542 M:      Saeed Mahameed <saeedm@mellanox.com>
7543 L:      netdev@vger.kernel.org
7544 S:      Supported
7545 W:      http://www.mellanox.com
7546 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7547 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7548
7549 MELLANOX ETHERNET SWITCH DRIVERS
7550 M:      Jiri Pirko <jiri@mellanox.com>
7551 M:      Ido Schimmel <idosch@mellanox.com>
7552 L:      netdev@vger.kernel.org
7553 S:      Supported
7554 W:      http://www.mellanox.com
7555 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7556 F:      drivers/net/ethernet/mellanox/mlxsw/
7557
7558 MEMBARRIER SUPPORT
7559 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7560 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7561 L:      linux-kernel@vger.kernel.org
7562 S:      Supported
7563 F:      kernel/membarrier.c
7564 F:      include/uapi/linux/membarrier.h
7565
7566 MEMORY MANAGEMENT
7567 L:      linux-mm@kvack.org
7568 W:      http://www.linux-mm.org
7569 S:      Maintained
7570 F:      include/linux/mm.h
7571 F:      include/linux/gfp.h
7572 F:      include/linux/mmzone.h
7573 F:      include/linux/memory_hotplug.h
7574 F:      include/linux/vmalloc.h
7575 F:      mm/
7576
7577 MEMORY TECHNOLOGY DEVICES (MTD)
7578 M:      David Woodhouse <dwmw2@infradead.org>
7579 M:      Brian Norris <computersforpeace@gmail.com>
7580 L:      linux-mtd@lists.infradead.org
7581 W:      http://www.linux-mtd.infradead.org/
7582 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7583 T:      git git://git.infradead.org/linux-mtd.git
7584 T:      git git://git.infradead.org/l2-mtd.git
7585 S:      Maintained
7586 F:      Documentation/devicetree/bindings/mtd/
7587 F:      drivers/mtd/
7588 F:      include/linux/mtd/
7589 F:      include/uapi/mtd/
7590
7591 MEN A21 WATCHDOG DRIVER
7592 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7593 L:      linux-watchdog@vger.kernel.org
7594 S:      Maintained
7595 F:      drivers/watchdog/mena21_wdt.c
7596
7597 MEN CHAMELEON BUS (mcb)
7598 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7599 S:      Maintained
7600 F:      drivers/mcb/
7601 F:      include/linux/mcb.h
7602 F:      Documentation/men-chameleon-bus.txt
7603
7604 MEN F21BMC (Board Management Controller)
7605 M:      Andreas Werner <andreas.werner@men.de>
7606 S:      Supported
7607 F:      drivers/mfd/menf21bmc.c
7608 F:      drivers/watchdog/menf21bmc_wdt.c
7609 F:      drivers/leds/leds-menf21bmc.c
7610 F:      drivers/hwmon/menf21bmc_hwmon.c
7611 F:      Documentation/hwmon/menf21bmc
7612
7613 METAG ARCHITECTURE
7614 M:      James Hogan <james.hogan@imgtec.com>
7615 L:      linux-metag@vger.kernel.org
7616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7617 S:      Odd Fixes
7618 F:      arch/metag/
7619 F:      Documentation/metag/
7620 F:      Documentation/devicetree/bindings/metag/
7621 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7622 F:      drivers/clocksource/metag_generic.c
7623 F:      drivers/irqchip/irq-metag.c
7624 F:      drivers/irqchip/irq-metag-ext.c
7625 F:      drivers/tty/metag_da.c
7626
7627 MICROBLAZE ARCHITECTURE
7628 M:      Michal Simek <monstr@monstr.eu>
7629 W:      http://www.monstr.eu/fdt/
7630 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7631 S:      Supported
7632 F:      arch/microblaze/
7633
7634 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7635 M:      Chen Yu <yu.c.chen@intel.com>
7636 L:      platform-driver-x86@vger.kernel.org
7637 S:      Supported
7638 F:      drivers/platform/x86/surfacepro3_button.c
7639
7640 MICROTEK X6 SCANNER
7641 M:      Oliver Neukum <oliver@neukum.org>
7642 S:      Maintained
7643 F:      drivers/usb/image/microtek.*
7644
7645 MIPS
7646 M:      Ralf Baechle <ralf@linux-mips.org>
7647 L:      linux-mips@linux-mips.org
7648 W:      http://www.linux-mips.org/
7649 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7650 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7651 S:      Supported
7652 F:      Documentation/devicetree/bindings/mips/
7653 F:      Documentation/mips/
7654 F:      arch/mips/
7655
7656 MIPS/LOONGSON1 ARCHITECTURE
7657 M:      Keguang Zhang <keguang.zhang@gmail.com>
7658 L:      linux-mips@linux-mips.org
7659 S:      Maintained
7660 F:      arch/mips/loongson32/
7661 F:      arch/mips/include/asm/mach-loongson32/
7662 F:      drivers/*/*loongson1*
7663 F:      drivers/*/*/*loongson1*
7664
7665 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7666 M:      Hans Verkuil <hverkuil@xs4all.nl>
7667 L:      linux-media@vger.kernel.org
7668 T:      git git://linuxtv.org/media_tree.git
7669 W:      https://linuxtv.org
7670 S:      Odd Fixes
7671 F:      drivers/media/radio/radio-miropcm20*
7672
7673 MELLANOX MLX4 core VPI driver
7674 M:      Yishai Hadas <yishaih@mellanox.com>
7675 L:      netdev@vger.kernel.org
7676 L:      linux-rdma@vger.kernel.org
7677 W:      http://www.mellanox.com
7678 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7679 S:      Supported
7680 F:      drivers/net/ethernet/mellanox/mlx4/
7681 F:      include/linux/mlx4/
7682
7683 MELLANOX MLX4 IB driver
7684 M:      Yishai Hadas <yishaih@mellanox.com>
7685 L:      linux-rdma@vger.kernel.org
7686 W:      http://www.mellanox.com
7687 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7688 S:      Supported
7689 F:      drivers/infiniband/hw/mlx4/
7690 F:      include/linux/mlx4/
7691
7692 MELLANOX MLX5 core VPI driver
7693 M:      Matan Barak <matanb@mellanox.com>
7694 M:      Leon Romanovsky <leonro@mellanox.com>
7695 L:      netdev@vger.kernel.org
7696 L:      linux-rdma@vger.kernel.org
7697 W:      http://www.mellanox.com
7698 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7699 S:      Supported
7700 F:      drivers/net/ethernet/mellanox/mlx5/core/
7701 F:      include/linux/mlx5/
7702
7703 MELLANOX MLX5 IB driver
7704 M:      Matan Barak <matanb@mellanox.com>
7705 M:      Leon Romanovsky <leonro@mellanox.com>
7706 L:      linux-rdma@vger.kernel.org
7707 W:      http://www.mellanox.com
7708 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7709 S:      Supported
7710 F:      drivers/infiniband/hw/mlx5/
7711 F:      include/linux/mlx5/
7712
7713 MELEXIS MLX90614 DRIVER
7714 M:      Crt Mori <cmo@melexis.com>
7715 L:      linux-iio@vger.kernel.org
7716 W:      http://www.melexis.com
7717 S:      Supported
7718 F:      drivers/iio/temperature/mlx90614.c
7719
7720 MN88472 MEDIA DRIVER
7721 M:      Antti Palosaari <crope@iki.fi>
7722 L:      linux-media@vger.kernel.org
7723 W:      https://linuxtv.org
7724 W:      http://palosaari.fi/linux/
7725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7726 S:      Maintained
7727 F:      drivers/media/dvb-frontends/mn88472*
7728
7729 MN88473 MEDIA DRIVER
7730 M:      Antti Palosaari <crope@iki.fi>
7731 L:      linux-media@vger.kernel.org
7732 W:      https://linuxtv.org
7733 W:      http://palosaari.fi/linux/
7734 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7735 S:      Maintained
7736 F:      drivers/media/dvb-frontends/mn88473*
7737
7738 MODULE SUPPORT
7739 M:      Rusty Russell <rusty@rustcorp.com.au>
7740 S:      Maintained
7741 F:      include/linux/module.h
7742 F:      kernel/module.c
7743
7744 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7745 W:      http://popies.net/meye/
7746 S:      Orphan
7747 F:      Documentation/video4linux/meye.txt
7748 F:      drivers/media/pci/meye/
7749 F:      include/uapi/linux/meye.h
7750
7751 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7752 M:      Jiri Slaby <jirislaby@gmail.com>
7753 S:      Maintained
7754 F:      Documentation/serial/moxa-smartio
7755 F:      drivers/tty/mxser.*
7756
7757 MR800 AVERMEDIA USB FM RADIO DRIVER
7758 M:      Alexey Klimov <klimov.linux@gmail.com>
7759 L:      linux-media@vger.kernel.org
7760 T:      git git://linuxtv.org/media_tree.git
7761 S:      Maintained
7762 F:      drivers/media/radio/radio-mr800.c
7763
7764 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7765 M:      Alan Ott <alan@signal11.us>
7766 L:      linux-wpan@vger.kernel.org
7767 S:      Maintained
7768 F:      drivers/net/ieee802154/mrf24j40.c
7769 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7770
7771 MSI LAPTOP SUPPORT
7772 M:      "Lee, Chun-Yi" <jlee@suse.com>
7773 L:      platform-driver-x86@vger.kernel.org
7774 S:      Maintained
7775 F:      drivers/platform/x86/msi-laptop.c
7776
7777 MSI WMI SUPPORT
7778 L:      platform-driver-x86@vger.kernel.org
7779 S:      Orphan
7780 F:      drivers/platform/x86/msi-wmi.c
7781
7782 MSI001 MEDIA DRIVER
7783 M:      Antti Palosaari <crope@iki.fi>
7784 L:      linux-media@vger.kernel.org
7785 W:      https://linuxtv.org
7786 W:      http://palosaari.fi/linux/
7787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7788 T:      git git://linuxtv.org/anttip/media_tree.git
7789 S:      Maintained
7790 F:      drivers/media/tuners/msi001*
7791
7792 MSI2500 MEDIA DRIVER
7793 M:      Antti Palosaari <crope@iki.fi>
7794 L:      linux-media@vger.kernel.org
7795 W:      https://linuxtv.org
7796 W:      http://palosaari.fi/linux/
7797 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7798 T:      git git://linuxtv.org/anttip/media_tree.git
7799 S:      Maintained
7800 F:      drivers/media/usb/msi2500/
7801
7802 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7803 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7804 L:      linux-mtd@lists.infradead.org
7805 S:      Maintained
7806 F:      drivers/mtd/devices/docg3*
7807
7808 MT9M032 APTINA SENSOR DRIVER
7809 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7810 L:      linux-media@vger.kernel.org
7811 T:      git git://linuxtv.org/media_tree.git
7812 S:      Maintained
7813 F:      drivers/media/i2c/mt9m032.c
7814 F:      include/media/i2c/mt9m032.h
7815
7816 MT9P031 APTINA CAMERA SENSOR
7817 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7818 L:      linux-media@vger.kernel.org
7819 T:      git git://linuxtv.org/media_tree.git
7820 S:      Maintained
7821 F:      drivers/media/i2c/mt9p031.c
7822 F:      include/media/i2c/mt9p031.h
7823
7824 MT9T001 APTINA CAMERA SENSOR
7825 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7826 L:      linux-media@vger.kernel.org
7827 T:      git git://linuxtv.org/media_tree.git
7828 S:      Maintained
7829 F:      drivers/media/i2c/mt9t001.c
7830 F:      include/media/i2c/mt9t001.h
7831
7832 MT9V032 APTINA CAMERA SENSOR
7833 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7834 L:      linux-media@vger.kernel.org
7835 T:      git git://linuxtv.org/media_tree.git
7836 S:      Maintained
7837 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7838 F:      drivers/media/i2c/mt9v032.c
7839 F:      include/media/i2c/mt9v032.h
7840
7841 MULTIFUNCTION DEVICES (MFD)
7842 M:      Lee Jones <lee.jones@linaro.org>
7843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7844 S:      Supported
7845 F:      drivers/mfd/
7846 F:      include/linux/mfd/
7847
7848 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7849 M:      Ulf Hansson <ulf.hansson@linaro.org>
7850 L:      linux-mmc@vger.kernel.org
7851 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7852 S:      Maintained
7853 F:      drivers/mmc/
7854 F:      include/linux/mmc/
7855 F:      include/uapi/linux/mmc/
7856
7857 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7858 S:      Orphan
7859 F:      drivers/mmc/host/mmc_spi.c
7860 F:      include/linux/spi/mmc_spi.h
7861
7862 MULTISOUND SOUND DRIVER
7863 M:      Andrew Veliath <andrewtv@usa.net>
7864 S:      Maintained
7865 F:      Documentation/sound/oss/MultiSound
7866 F:      sound/oss/msnd*
7867
7868 MULTITECH MULTIPORT CARD (ISICOM)
7869 S:      Orphan
7870 F:      drivers/tty/isicom.c
7871 F:      include/linux/isicom.h
7872
7873 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7874 M:      Bin Liu <b-liu@ti.com>
7875 L:      linux-usb@vger.kernel.org
7876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7877 S:      Maintained
7878 F:      drivers/usb/musb/
7879
7880 MXL5007T MEDIA DRIVER
7881 M:      Michael Krufky <mkrufky@linuxtv.org>
7882 L:      linux-media@vger.kernel.org
7883 W:      https://linuxtv.org
7884 W:      http://github.com/mkrufky
7885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7886 T:      git git://linuxtv.org/mkrufky/tuners.git
7887 S:      Maintained
7888 F:      drivers/media/tuners/mxl5007t.*
7889
7890 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7891 M:      Hyong-Youb Kim <hykim@myri.com>
7892 L:      netdev@vger.kernel.org
7893 W:      https://www.myricom.com/support/downloads/myri10ge.html
7894 S:      Supported
7895 F:      drivers/net/ethernet/myricom/myri10ge/
7896
7897 NAND FLASH SUBSYSTEM
7898 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7899 R:      Richard Weinberger <richard@nod.at>
7900 L:      linux-mtd@lists.infradead.org
7901 W:      http://www.linux-mtd.infradead.org/
7902 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7903 T:      git git://github.com/linux-nand/linux.git
7904 S:      Maintained
7905 F:      drivers/mtd/nand/
7906 F:      include/linux/mtd/nand*.h
7907
7908 NATSEMI ETHERNET DRIVER (DP8381x)
7909 S:      Orphan
7910 F:      drivers/net/ethernet/natsemi/natsemi.c
7911
7912 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7913 M:      Daniel Mack <zonque@gmail.com>
7914 S:      Maintained
7915 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7916 W:      http://www.native-instruments.com
7917 F:      sound/usb/caiaq/
7918
7919 NCP FILESYSTEM
7920 M:      Petr Vandrovec <petr@vandrovec.name>
7921 S:      Odd Fixes
7922 F:      fs/ncpfs/
7923
7924 NCR 5380 SCSI DRIVERS
7925 M:      Finn Thain <fthain@telegraphics.com.au>
7926 M:      Michael Schmitz <schmitzmic@gmail.com>
7927 L:      linux-scsi@vger.kernel.org
7928 S:      Maintained
7929 F:      Documentation/scsi/g_NCR5380.txt
7930 F:      Documentation/scsi/dtc3x80.txt
7931 F:      drivers/scsi/NCR5380.*
7932 F:      drivers/scsi/arm/cumana_1.c
7933 F:      drivers/scsi/arm/oak.c
7934 F:      drivers/scsi/atari_scsi.*
7935 F:      drivers/scsi/dmx3191d.c
7936 F:      drivers/scsi/dtc.*
7937 F:      drivers/scsi/g_NCR5380.*
7938 F:      drivers/scsi/g_NCR5380_mmio.c
7939 F:      drivers/scsi/mac_scsi.*
7940 F:      drivers/scsi/pas16.*
7941 F:      drivers/scsi/sun3_scsi.*
7942 F:      drivers/scsi/sun3_scsi_vme.c
7943 F:      drivers/scsi/t128.*
7944
7945 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7946 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7947 L:      linux-scsi@vger.kernel.org
7948 S:      Maintained
7949 F:      drivers/scsi/NCR_D700.*
7950
7951 NCT6775 HARDWARE MONITOR DRIVER
7952 M:      Guenter Roeck <linux@roeck-us.net>
7953 L:      linux-hwmon@vger.kernel.org
7954 S:      Maintained
7955 F:      Documentation/hwmon/nct6775
7956 F:      drivers/hwmon/nct6775.c
7957
7958 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7959 M:      Faisal Latif <faisal.latif@intel.com>
7960 L:      linux-rdma@vger.kernel.org
7961 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7962 S:      Supported
7963 F:      drivers/infiniband/hw/nes/
7964
7965 NETEM NETWORK EMULATOR
7966 M:      Stephen Hemminger <stephen@networkplumber.org>
7967 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7968 S:      Maintained
7969 F:      net/sched/sch_netem.c
7970
7971 NETERION 10GbE DRIVERS (s2io/vxge)
7972 M:      Jon Mason <jdmason@kudzu.us>
7973 L:      netdev@vger.kernel.org
7974 S:      Supported
7975 F:      Documentation/networking/s2io.txt
7976 F:      Documentation/networking/vxge.txt
7977 F:      drivers/net/ethernet/neterion/
7978
7979 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7980 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7981 M:      Patrick McHardy <kaber@trash.net>
7982 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7983 L:      netfilter-devel@vger.kernel.org
7984 L:      coreteam@netfilter.org
7985 W:      http://www.netfilter.org/
7986 W:      http://www.iptables.org/
7987 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7990 S:      Supported
7991 F:      include/linux/netfilter*
7992 F:      include/linux/netfilter/
7993 F:      include/net/netfilter/
7994 F:      include/uapi/linux/netfilter*
7995 F:      include/uapi/linux/netfilter/
7996 F:      net/*/netfilter.c
7997 F:      net/*/netfilter/
7998 F:      net/netfilter/
7999 F:      net/bridge/br_netfilter*.c
8000
8001 NETLABEL
8002 M:      Paul Moore <paul@paul-moore.com>
8003 W:      http://netlabel.sf.net
8004 L:      netdev@vger.kernel.org
8005 S:      Maintained
8006 F:      Documentation/netlabel/
8007 F:      include/net/netlabel.h
8008 F:      net/netlabel/
8009
8010 NETROM NETWORK LAYER
8011 M:      Ralf Baechle <ralf@linux-mips.org>
8012 L:      linux-hams@vger.kernel.org
8013 W:      http://www.linux-ax25.org/
8014 S:      Maintained
8015 F:      include/net/netrom.h
8016 F:      include/uapi/linux/netrom.h
8017 F:      net/netrom/
8018
8019 NETRONOME ETHERNET DRIVERS
8020 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
8021 L:      oss-drivers@netronome.com
8022 S:      Maintained
8023 F:      drivers/net/ethernet/netronome/
8024
8025 NETWORK BLOCK DEVICE (NBD)
8026 M:      Markus Pargmann <mpa@pengutronix.de>
8027 S:      Maintained
8028 L:      nbd-general@lists.sourceforge.net
8029 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
8030 F:      Documentation/blockdev/nbd.txt
8031 F:      drivers/block/nbd.c
8032 F:      include/uapi/linux/nbd.h
8033
8034 NETWORK DROP MONITOR
8035 M:      Neil Horman <nhorman@tuxdriver.com>
8036 L:      netdev@vger.kernel.org
8037 S:      Maintained
8038 W:      https://fedorahosted.org/dropwatch/
8039 F:      net/core/drop_monitor.c
8040
8041 NETWORKING [GENERAL]
8042 M:      "David S. Miller" <davem@davemloft.net>
8043 L:      netdev@vger.kernel.org
8044 W:      http://www.linuxfoundation.org/en/Net
8045 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8048 S:      Maintained
8049 F:      net/
8050 F:      include/net/
8051 F:      include/linux/in.h
8052 F:      include/linux/net.h
8053 F:      include/linux/netdevice.h
8054 F:      include/uapi/linux/in.h
8055 F:      include/uapi/linux/net.h
8056 F:      include/uapi/linux/netdevice.h
8057 F:      include/uapi/linux/net_namespace.h
8058 F:      tools/net/
8059 F:      tools/testing/selftests/net/
8060 F:      lib/random32.c
8061 F:      lib/test_bpf.c
8062
8063 NETWORKING [IPv4/IPv6]
8064 M:      "David S. Miller" <davem@davemloft.net>
8065 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8066 M:      James Morris <jmorris@namei.org>
8067 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
8068 M:      Patrick McHardy <kaber@trash.net>
8069 L:      netdev@vger.kernel.org
8070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8071 S:      Maintained
8072 F:      net/ipv4/
8073 F:      net/ipv6/
8074 F:      include/net/ip*
8075 F:      arch/x86/net/*
8076
8077 NETWORKING [IPSEC]
8078 M:      Steffen Klassert <steffen.klassert@secunet.com>
8079 M:      Herbert Xu <herbert@gondor.apana.org.au>
8080 M:      "David S. Miller" <davem@davemloft.net>
8081 L:      netdev@vger.kernel.org
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
8084 S:      Maintained
8085 F:      net/core/flow.c
8086 F:      net/xfrm/
8087 F:      net/key/
8088 F:      net/ipv4/xfrm*
8089 F:      net/ipv4/esp4.c
8090 F:      net/ipv4/ah4.c
8091 F:      net/ipv4/ipcomp.c
8092 F:      net/ipv4/ip_vti.c
8093 F:      net/ipv6/xfrm*
8094 F:      net/ipv6/esp6.c
8095 F:      net/ipv6/ah6.c
8096 F:      net/ipv6/ipcomp6.c
8097 F:      net/ipv6/ip6_vti.c
8098 F:      include/uapi/linux/xfrm.h
8099 F:      include/net/xfrm.h
8100
8101 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
8102 M:      Paul Moore <paul@paul-moore.com>
8103 L:      netdev@vger.kernel.org
8104 S:      Maintained
8105
8106 NETWORKING [WIRELESS]
8107 L:      linux-wireless@vger.kernel.org
8108 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8109
8110 NETWORKING DRIVERS
8111 L:      netdev@vger.kernel.org
8112 W:      http://www.linuxfoundation.org/en/Net
8113 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8116 S:      Odd Fixes
8117 F:      Documentation/devicetree/bindings/net/
8118 F:      drivers/net/
8119 F:      include/linux/if_*
8120 F:      include/linux/netdevice.h
8121 F:      include/linux/etherdevice.h
8122 F:      include/linux/fcdevice.h
8123 F:      include/linux/fddidevice.h
8124 F:      include/linux/hippidevice.h
8125 F:      include/linux/inetdevice.h
8126 F:      include/uapi/linux/if_*
8127 F:      include/uapi/linux/netdevice.h
8128
8129 NETWORKING DRIVERS (WIRELESS)
8130 M:      Kalle Valo <kvalo@codeaurora.org>
8131 L:      linux-wireless@vger.kernel.org
8132 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
8134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
8135 S:      Maintained
8136 F:      Documentation/devicetree/bindings/net/wireless/
8137 F:      drivers/net/wireless/
8138
8139 NETXEN (1/10) GbE SUPPORT
8140 M:      Manish Chopra <manish.chopra@qlogic.com>
8141 M:      Sony Chacko <sony.chacko@qlogic.com>
8142 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
8143 L:      netdev@vger.kernel.org
8144 W:      http://www.qlogic.com
8145 S:      Supported
8146 F:      drivers/net/ethernet/qlogic/netxen/
8147
8148 NFC SUBSYSTEM
8149 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
8150 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8151 M:      Samuel Ortiz <sameo@linux.intel.com>
8152 L:      linux-wireless@vger.kernel.org
8153 L:      linux-nfc@lists.01.org (subscribers-only)
8154 S:      Supported
8155 F:      net/nfc/
8156 F:      include/net/nfc/
8157 F:      include/uapi/linux/nfc.h
8158 F:      drivers/nfc/
8159 F:      include/linux/platform_data/nfcmrvl.h
8160 F:      include/linux/platform_data/nxp-nci.h
8161 F:      include/linux/platform_data/pn544.h
8162 F:      include/linux/platform_data/st21nfca.h
8163 F:      include/linux/platform_data/st-nci.h
8164 F:      Documentation/devicetree/bindings/net/nfc/
8165
8166 NFS, SUNRPC, AND LOCKD CLIENTS
8167 M:      Trond Myklebust <trond.myklebust@primarydata.com>
8168 M:      Anna Schumaker <anna.schumaker@netapp.com>
8169 L:      linux-nfs@vger.kernel.org
8170 W:      http://client.linux-nfs.org
8171 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
8172 S:      Maintained
8173 F:      fs/lockd/
8174 F:      fs/nfs/
8175 F:      fs/nfs_common/
8176 F:      net/sunrpc/
8177 F:      include/linux/lockd/
8178 F:      include/linux/nfs*
8179 F:      include/linux/sunrpc/
8180 F:      include/uapi/linux/nfs*
8181 F:      include/uapi/linux/sunrpc/
8182
8183 NILFS2 FILESYSTEM
8184 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
8185 L:      linux-nilfs@vger.kernel.org
8186 W:      http://nilfs.sourceforge.net/
8187 W:      http://nilfs.osdn.jp/
8188 T:      git git://github.com/konis/nilfs2.git
8189 S:      Supported
8190 F:      Documentation/filesystems/nilfs2.txt
8191 F:      fs/nilfs2/
8192 F:      include/linux/nilfs2_fs.h
8193 F:      include/trace/events/nilfs2.h
8194
8195 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
8196 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8197 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8198 S:      Maintained
8199 F:      Documentation/scsi/NinjaSCSI.txt
8200 F:      drivers/scsi/pcmcia/nsp_*
8201
8202 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
8203 M:      GOTO Masanori <gotom@debian.or.jp>
8204 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8205 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8206 S:      Maintained
8207 F:      Documentation/scsi/NinjaSCSI.txt
8208 F:      drivers/scsi/nsp32*
8209
8210 NIOS2 ARCHITECTURE
8211 M:      Ley Foon Tan <lftan@altera.com>
8212 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
8213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
8214 S:      Maintained
8215 F:      arch/nios2/
8216
8217 NOKIA N900 POWER SUPPLY DRIVERS
8218 R:      Pali Rohár <pali.rohar@gmail.com>
8219 F:      include/linux/power/bq2415x_charger.h
8220 F:      include/linux/power/bq27xxx_battery.h
8221 F:      include/linux/power/isp1704_charger.h
8222 F:      drivers/power/bq2415x_charger.c
8223 F:      drivers/power/bq27xxx_battery.c
8224 F:      drivers/power/bq27xxx_battery_i2c.c
8225 F:      drivers/power/isp1704_charger.c
8226 F:      drivers/power/rx51_battery.c
8227
8228 NTB DRIVER CORE
8229 M:      Jon Mason <jdmason@kudzu.us>
8230 M:      Dave Jiang <dave.jiang@intel.com>
8231 M:      Allen Hubbe <Allen.Hubbe@emc.com>
8232 L:      linux-ntb@googlegroups.com
8233 S:      Supported
8234 W:      https://github.com/jonmason/ntb/wiki
8235 T:      git git://github.com/jonmason/ntb.git
8236 F:      drivers/ntb/
8237 F:      drivers/net/ntb_netdev.c
8238 F:      include/linux/ntb.h
8239 F:      include/linux/ntb_transport.h
8240
8241 NTB INTEL DRIVER
8242 M:      Jon Mason <jdmason@kudzu.us>
8243 M:      Dave Jiang <dave.jiang@intel.com>
8244 L:      linux-ntb@googlegroups.com
8245 S:      Supported
8246 W:      https://github.com/jonmason/ntb/wiki
8247 T:      git git://github.com/jonmason/ntb.git
8248 F:      drivers/ntb/hw/intel/
8249
8250 NTB AMD DRIVER
8251 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
8252 L:      linux-ntb@googlegroups.com
8253 S:      Supported
8254 F:      drivers/ntb/hw/amd/
8255
8256 NTFS FILESYSTEM
8257 M:      Anton Altaparmakov <anton@tuxera.com>
8258 L:      linux-ntfs-dev@lists.sourceforge.net
8259 W:      http://www.tuxera.com/
8260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
8261 S:      Supported
8262 F:      Documentation/filesystems/ntfs.txt
8263 F:      fs/ntfs/
8264
8265 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
8266 M:      Antonino Daplas <adaplas@gmail.com>
8267 L:      linux-fbdev@vger.kernel.org
8268 S:      Maintained
8269 F:      drivers/video/fbdev/riva/
8270 F:      drivers/video/fbdev/nvidia/
8271
8272 NVM EXPRESS DRIVER
8273 M:      Keith Busch <keith.busch@intel.com>
8274 M:      Jens Axboe <axboe@fb.com>
8275 L:      linux-nvme@lists.infradead.org
8276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8277 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
8278 S:      Supported
8279 F:      drivers/nvme/host/
8280 F:      include/linux/nvme.h
8281
8282 NVM EXPRESS TARGET DRIVER
8283 M:      Christoph Hellwig <hch@lst.de>
8284 M:      Sagi Grimberg <sagi@grimberg.me>
8285 L:      linux-nvme@lists.infradead.org
8286 S:      Supported
8287 F:      drivers/nvme/target/
8288
8289 NVMEM FRAMEWORK
8290 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8291 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8292 S:      Maintained
8293 F:      drivers/nvmem/
8294 F:      Documentation/devicetree/bindings/nvmem/
8295 F:      include/linux/nvmem-consumer.h
8296 F:      include/linux/nvmem-provider.h
8297
8298 NXP-NCI NFC DRIVER
8299 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8300 R:      Charles Gorand <charles.gorand@effinnov.com>
8301 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8302 S:      Supported
8303 F:      drivers/nfc/nxp-nci
8304
8305 NXP TDA998X DRM DRIVER
8306 M:      Russell King <rmk+kernel@armlinux.org.uk>
8307 S:      Supported
8308 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8309 F:      include/drm/i2c/tda998x.h
8310
8311 NXP TFA9879 DRIVER
8312 M:      Peter Rosin <peda@axentia.se>
8313 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8314 S:      Maintained
8315 F:      sound/soc/codecs/tfa9879*
8316
8317 OBJTOOL
8318 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8319 S:      Supported
8320 F:      tools/objtool/
8321
8322 OMAP SUPPORT
8323 M:      Tony Lindgren <tony@atomide.com>
8324 L:      linux-omap@vger.kernel.org
8325 W:      http://www.muru.com/linux/omap/
8326 W:      http://linux.omap.com/
8327 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8329 S:      Maintained
8330 F:      arch/arm/*omap*/
8331 F:      arch/arm/configs/omap1_defconfig
8332 F:      arch/arm/configs/omap2plus_defconfig
8333 F:      drivers/i2c/busses/i2c-omap.c
8334 F:      drivers/irqchip/irq-omap-intc.c
8335 F:      drivers/mfd/*omap*.c
8336 F:      drivers/mfd/menelaus.c
8337 F:      drivers/mfd/palmas.c
8338 F:      drivers/mfd/tps65217.c
8339 F:      drivers/mfd/tps65218.c
8340 F:      drivers/mfd/tps65910.c
8341 F:      drivers/mfd/twl-core.[ch]
8342 F:      drivers/mfd/twl4030*.c
8343 F:      drivers/mfd/twl6030*.c
8344 F:      drivers/mfd/twl6040*.c
8345 F:      drivers/regulator/palmas-regulator*.c
8346 F:      drivers/regulator/pbias-regulator.c
8347 F:      drivers/regulator/tps65217-regulator.c
8348 F:      drivers/regulator/tps65218-regulator.c
8349 F:      drivers/regulator/tps65910-regulator.c
8350 F:      drivers/regulator/twl-regulator.c
8351 F:      include/linux/i2c-omap.h
8352
8353 OMAP DEVICE TREE SUPPORT
8354 M:      Benoît Cousson <bcousson@baylibre.com>
8355 M:      Tony Lindgren <tony@atomide.com>
8356 L:      linux-omap@vger.kernel.org
8357 L:      devicetree@vger.kernel.org
8358 S:      Maintained
8359 F:      arch/arm/boot/dts/*omap*
8360 F:      arch/arm/boot/dts/*am3*
8361 F:      arch/arm/boot/dts/*am4*
8362 F:      arch/arm/boot/dts/*am5*
8363 F:      arch/arm/boot/dts/*dra7*
8364
8365 OMAP CLOCK FRAMEWORK SUPPORT
8366 M:      Paul Walmsley <paul@pwsan.com>
8367 L:      linux-omap@vger.kernel.org
8368 S:      Maintained
8369 F:      arch/arm/*omap*/*clock*
8370
8371 OMAP POWER MANAGEMENT SUPPORT
8372 M:      Kevin Hilman <khilman@kernel.org>
8373 L:      linux-omap@vger.kernel.org
8374 S:      Maintained
8375 F:      arch/arm/*omap*/*pm*
8376 F:      drivers/cpufreq/omap-cpufreq.c
8377
8378 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8379 M:      Rajendra Nayak <rnayak@codeaurora.org>
8380 M:      Paul Walmsley <paul@pwsan.com>
8381 L:      linux-omap@vger.kernel.org
8382 S:      Maintained
8383 F:      arch/arm/mach-omap2/prm*
8384
8385 OMAP AUDIO SUPPORT
8386 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8387 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8388 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8389 L:      linux-omap@vger.kernel.org
8390 S:      Maintained
8391 F:      sound/soc/omap/
8392
8393 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8394 M:      Roger Quadros <rogerq@ti.com>
8395 M:      Tony Lindgren <tony@atomide.com>
8396 L:      linux-omap@vger.kernel.org
8397 S:      Maintained
8398 F:      drivers/memory/omap-gpmc.c
8399 F:      arch/arm/mach-omap2/*gpmc*
8400
8401 OMAP FRAMEBUFFER SUPPORT
8402 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8403 L:      linux-fbdev@vger.kernel.org
8404 L:      linux-omap@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/video/fbdev/omap/
8407
8408 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8409 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8410 L:      linux-omap@vger.kernel.org
8411 L:      linux-fbdev@vger.kernel.org
8412 S:      Maintained
8413 F:      drivers/video/fbdev/omap2/
8414 F:      Documentation/arm/OMAP/DSS
8415
8416 OMAP HARDWARE SPINLOCK SUPPORT
8417 M:      Ohad Ben-Cohen <ohad@wizery.com>
8418 L:      linux-omap@vger.kernel.org
8419 S:      Maintained
8420 F:      drivers/hwspinlock/omap_hwspinlock.c
8421
8422 OMAP MMC SUPPORT
8423 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8424 L:      linux-omap@vger.kernel.org
8425 S:      Maintained
8426 F:      drivers/mmc/host/omap.c
8427
8428 OMAP HS MMC SUPPORT
8429 L:      linux-mmc@vger.kernel.org
8430 L:      linux-omap@vger.kernel.org
8431 S:      Orphan
8432 F:      drivers/mmc/host/omap_hsmmc.c
8433
8434 OMAP RANDOM NUMBER GENERATOR SUPPORT
8435 M:      Deepak Saxena <dsaxena@plexity.net>
8436 S:      Maintained
8437 F:      drivers/char/hw_random/omap-rng.c
8438
8439 OMAP HWMOD SUPPORT
8440 M:      Benoît Cousson <bcousson@baylibre.com>
8441 M:      Paul Walmsley <paul@pwsan.com>
8442 L:      linux-omap@vger.kernel.org
8443 S:      Maintained
8444 F:      arch/arm/mach-omap2/omap_hwmod.*
8445
8446 OMAP HWMOD DATA
8447 M:      Paul Walmsley <paul@pwsan.com>
8448 L:      linux-omap@vger.kernel.org
8449 S:      Maintained
8450 F:      arch/arm/mach-omap2/omap_hwmod*data*
8451
8452 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8453 M:      Benoît Cousson <bcousson@baylibre.com>
8454 L:      linux-omap@vger.kernel.org
8455 S:      Maintained
8456 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8457
8458 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8459 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8460 L:      linux-media@vger.kernel.org
8461 S:      Maintained
8462 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8463 F:      drivers/media/platform/omap3isp/
8464 F:      drivers/staging/media/omap4iss/
8465
8466 OMAP USB SUPPORT
8467 L:      linux-usb@vger.kernel.org
8468 L:      linux-omap@vger.kernel.org
8469 S:      Orphan
8470 F:      drivers/usb/*/*omap*
8471 F:      arch/arm/*omap*/usb*
8472
8473 OMAP GPIO DRIVER
8474 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8475 M:      Santosh Shilimkar <ssantosh@kernel.org>
8476 M:      Kevin Hilman <khilman@kernel.org>
8477 L:      linux-omap@vger.kernel.org
8478 S:      Maintained
8479 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8480 F:      drivers/gpio/gpio-omap.c
8481
8482 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8483 M:      Mark Jackson <mpfj@newflow.co.uk>
8484 L:      linux-omap@vger.kernel.org
8485 S:      Maintained
8486 F:      arch/arm/boot/dts/am335x-nano.dts
8487
8488 OMFS FILESYSTEM
8489 M:      Bob Copeland <me@bobcopeland.com>
8490 L:      linux-karma-devel@lists.sourceforge.net
8491 S:      Maintained
8492 F:      Documentation/filesystems/omfs.txt
8493 F:      fs/omfs/
8494
8495 OMNIKEY CARDMAN 4000 DRIVER
8496 M:      Harald Welte <laforge@gnumonks.org>
8497 S:      Maintained
8498 F:      drivers/char/pcmcia/cm4000_cs.c
8499 F:      include/linux/cm4000_cs.h
8500 F:      include/uapi/linux/cm4000_cs.h
8501
8502 OMNIKEY CARDMAN 4040 DRIVER
8503 M:      Harald Welte <laforge@gnumonks.org>
8504 S:      Maintained
8505 F:      drivers/char/pcmcia/cm4040_cs.*
8506
8507 OMNIVISION OV7670 SENSOR DRIVER
8508 M:      Jonathan Corbet <corbet@lwn.net>
8509 L:      linux-media@vger.kernel.org
8510 T:      git git://linuxtv.org/media_tree.git
8511 S:      Maintained
8512 F:      drivers/media/i2c/ov7670.c
8513
8514 ONENAND FLASH DRIVER
8515 M:      Kyungmin Park <kyungmin.park@samsung.com>
8516 L:      linux-mtd@lists.infradead.org
8517 S:      Maintained
8518 F:      drivers/mtd/onenand/
8519 F:      include/linux/mtd/onenand*.h
8520
8521 ONSTREAM SCSI TAPE DRIVER
8522 M:      Willem Riede <osst@riede.org>
8523 L:      osst-users@lists.sourceforge.net
8524 L:      linux-scsi@vger.kernel.org
8525 S:      Maintained
8526 F:      Documentation/scsi/osst.txt
8527 F:      drivers/scsi/osst.*
8528 F:      drivers/scsi/osst_*.h
8529 F:      drivers/scsi/st.h
8530
8531 OPENCORES I2C BUS DRIVER
8532 M:      Peter Korsgaard <jacmet@sunsite.dk>
8533 L:      linux-i2c@vger.kernel.org
8534 S:      Maintained
8535 F:      Documentation/i2c/busses/i2c-ocores
8536 F:      drivers/i2c/busses/i2c-ocores.c
8537
8538 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8539 M:      Rob Herring <robh+dt@kernel.org>
8540 M:      Frank Rowand <frowand.list@gmail.com>
8541 L:      devicetree@vger.kernel.org
8542 W:      http://www.devicetree.org/
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8544 S:      Maintained
8545 F:      drivers/of/
8546 F:      include/linux/of*.h
8547 F:      scripts/dtc/
8548
8549 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8550 M:      Rob Herring <robh+dt@kernel.org>
8551 M:      Mark Rutland <mark.rutland@arm.com>
8552 L:      devicetree@vger.kernel.org
8553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8554 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
8555 S:      Maintained
8556 F:      Documentation/devicetree/
8557 F:      arch/*/boot/dts/
8558 F:      include/dt-bindings/
8559
8560 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8561 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8562 L:      devicetree@vger.kernel.org
8563 S:      Maintained
8564 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8565 F:      Documentation/devicetree/overlay-notes.txt
8566 F:      drivers/of/overlay.c
8567 F:      drivers/of/resolver.c
8568
8569 OPENRISC ARCHITECTURE
8570 M:      Jonas Bonn <jonas@southpole.se>
8571 W:      http://openrisc.net
8572 S:      Maintained
8573 T:      git git://openrisc.net/~jonas/linux
8574 F:      arch/openrisc/
8575
8576 OPENVSWITCH
8577 M:      Pravin Shelar <pshelar@nicira.com>
8578 L:      netdev@vger.kernel.org
8579 L:      dev@openvswitch.org
8580 W:      http://openvswitch.org
8581 S:      Maintained
8582 F:      net/openvswitch/
8583 F:      include/uapi/linux/openvswitch.h
8584
8585 OPERATING PERFORMANCE POINTS (OPP)
8586 M:      Viresh Kumar <vireshk@kernel.org>
8587 M:      Nishanth Menon <nm@ti.com>
8588 M:      Stephen Boyd <sboyd@codeaurora.org>
8589 L:      linux-pm@vger.kernel.org
8590 S:      Maintained
8591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8592 F:      drivers/base/power/opp/
8593 F:      include/linux/pm_opp.h
8594 F:      Documentation/power/opp.txt
8595 F:      Documentation/devicetree/bindings/opp/
8596
8597 OPL4 DRIVER
8598 M:      Clemens Ladisch <clemens@ladisch.de>
8599 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8600 T:      git git://git.alsa-project.org/alsa-kernel.git
8601 S:      Maintained
8602 F:      sound/drivers/opl4/
8603
8604 OPROFILE
8605 M:      Robert Richter <rric@kernel.org>
8606 L:      oprofile-list@lists.sf.net
8607 S:      Maintained
8608 F:      arch/*/include/asm/oprofile*.h
8609 F:      arch/*/oprofile/
8610 F:      drivers/oprofile/
8611 F:      include/linux/oprofile.h
8612
8613 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8614 M:      Mark Fasheh <mfasheh@suse.com>
8615 M:      Joel Becker <jlbec@evilplan.org>
8616 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8617 W:      http://ocfs2.wiki.kernel.org
8618 S:      Supported
8619 F:      Documentation/filesystems/ocfs2.txt
8620 F:      Documentation/filesystems/dlmfs.txt
8621 F:      fs/ocfs2/
8622
8623 ORINOCO DRIVER
8624 L:      linux-wireless@vger.kernel.org
8625 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8626 W:      http://www.nongnu.org/orinoco/
8627 S:      Orphan
8628 F:      drivers/net/wireless/intersil/orinoco/
8629
8630 OSD LIBRARY and FILESYSTEM
8631 M:      Boaz Harrosh <ooo@electrozaur.com>
8632 M:      Benny Halevy <bhalevy@primarydata.com>
8633 L:      osd-dev@open-osd.org
8634 W:      http://open-osd.org
8635 T:      git git://git.open-osd.org/open-osd.git
8636 S:      Maintained
8637 F:      drivers/scsi/osd/
8638 F:      include/scsi/osd_*
8639 F:      fs/exofs/
8640
8641 OVERLAY FILESYSTEM
8642 M:      Miklos Szeredi <miklos@szeredi.hu>
8643 L:      linux-unionfs@vger.kernel.org
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8645 S:      Supported
8646 F:      fs/overlayfs/
8647 F:      Documentation/filesystems/overlayfs.txt
8648
8649 ORANGEFS FILESYSTEM
8650 M:      Mike Marshall <hubcap@omnibond.com>
8651 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8653 S:      Supported
8654 F:      fs/orangefs/
8655 F:      Documentation/filesystems/orangefs.txt
8656
8657 P54 WIRELESS DRIVER
8658 M:      Christian Lamparter <chunkeey@googlemail.com>
8659 L:      linux-wireless@vger.kernel.org
8660 W:      http://wireless.kernel.org/en/users/Drivers/p54
8661 S:      Maintained
8662 F:      drivers/net/wireless/intersil/p54/
8663
8664 PA SEMI ETHERNET DRIVER
8665 M:      Olof Johansson <olof@lixom.net>
8666 L:      netdev@vger.kernel.org
8667 S:      Maintained
8668 F:      drivers/net/ethernet/pasemi/*
8669
8670 PA SEMI SMBUS DRIVER
8671 M:      Olof Johansson <olof@lixom.net>
8672 L:      linux-i2c@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/i2c/busses/i2c-pasemi.c
8675
8676 PADATA PARALLEL EXECUTION MECHANISM
8677 M:      Steffen Klassert <steffen.klassert@secunet.com>
8678 L:      linux-crypto@vger.kernel.org
8679 S:      Maintained
8680 F:      kernel/padata.c
8681 F:      include/linux/padata.h
8682 F:      Documentation/padata.txt
8683
8684 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8685 M:      Harald Welte <laforge@gnumonks.org>
8686 L:      platform-driver-x86@vger.kernel.org
8687 S:      Maintained
8688 F:      drivers/platform/x86/panasonic-laptop.c
8689
8690 PANASONIC MN10300/AM33/AM34 PORT
8691 M:      David Howells <dhowells@redhat.com>
8692 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8693 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8694 S:      Maintained
8695 F:      Documentation/mn10300/
8696 F:      arch/mn10300/
8697
8698 PARALLEL LCD/KEYPAD PANEL DRIVER
8699 M:      Willy Tarreau <willy@haproxy.com>
8700 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8701 S:      Odd Fixes
8702 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8703 F:      drivers/misc/panel.c
8704
8705 PARALLEL PORT SUBSYSTEM
8706 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8707 M:      Sudip Mukherjee <sudip@vectorindia.org>
8708 L:      linux-parport@lists.infradead.org (subscribers-only)
8709 S:      Maintained
8710 F:      drivers/parport/
8711 F:      include/linux/parport*.h
8712 F:      drivers/char/ppdev.c
8713 F:      include/uapi/linux/ppdev.h
8714 F:      Documentation/parport*.txt
8715
8716 PARAVIRT_OPS INTERFACE
8717 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8718 M:      Chris Wright <chrisw@sous-sol.org>
8719 M:      Alok Kataria <akataria@vmware.com>
8720 M:      Rusty Russell <rusty@rustcorp.com.au>
8721 L:      virtualization@lists.linux-foundation.org
8722 S:      Supported
8723 F:      Documentation/virtual/paravirt_ops.txt
8724 F:      arch/*/kernel/paravirt*
8725 F:      arch/*/include/asm/paravirt.h
8726
8727 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8728 M:      Tim Waugh <tim@cyberelk.net>
8729 L:      linux-parport@lists.infradead.org (subscribers-only)
8730 S:      Maintained
8731 F:      Documentation/blockdev/paride.txt
8732 F:      drivers/block/paride/
8733
8734 PARISC ARCHITECTURE
8735 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8736 M:      Helge Deller <deller@gmx.de>
8737 L:      linux-parisc@vger.kernel.org
8738 W:      http://www.parisc-linux.org/
8739 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8742 S:      Maintained
8743 F:      arch/parisc/
8744 F:      Documentation/parisc/
8745 F:      drivers/parisc/
8746 F:      drivers/char/agp/parisc-agp.c
8747 F:      drivers/input/serio/gscps2.c
8748 F:      drivers/parport/parport_gsc.*
8749 F:      drivers/tty/serial/8250/8250_gsc.c
8750 F:      drivers/video/fbdev/sti*
8751 F:      drivers/video/console/sti*
8752 F:      drivers/video/logo/logo_parisc*
8753
8754 PC87360 HARDWARE MONITORING DRIVER
8755 M:      Jim Cromie <jim.cromie@gmail.com>
8756 L:      linux-hwmon@vger.kernel.org
8757 S:      Maintained
8758 F:      Documentation/hwmon/pc87360
8759 F:      drivers/hwmon/pc87360.c
8760
8761 PC8736x GPIO DRIVER
8762 M:      Jim Cromie <jim.cromie@gmail.com>
8763 S:      Maintained
8764 F:      drivers/char/pc8736x_gpio.c
8765
8766 PC87427 HARDWARE MONITORING DRIVER
8767 M:      Jean Delvare <jdelvare@suse.com>
8768 L:      linux-hwmon@vger.kernel.org
8769 S:      Maintained
8770 F:      Documentation/hwmon/pc87427
8771 F:      drivers/hwmon/pc87427.c
8772
8773 PCA9532 LED DRIVER
8774 M:      Riku Voipio <riku.voipio@iki.fi>
8775 S:      Maintained
8776 F:      drivers/leds/leds-pca9532.c
8777 F:      include/linux/leds-pca9532.h
8778
8779 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8780 M:      Guenter Roeck <linux@roeck-us.net>
8781 L:      linux-i2c@vger.kernel.org
8782 S:      Maintained
8783 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8784
8785 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8786 M:      Khalid Aziz <khalid@gonehiking.org>
8787 S:      Maintained
8788 F:      drivers/firmware/pcdp.*
8789
8790 PCI ERROR RECOVERY
8791 M:      Linas Vepstas <linasvepstas@gmail.com>
8792 L:      linux-pci@vger.kernel.org
8793 S:      Supported
8794 F:      Documentation/PCI/pci-error-recovery.txt
8795
8796 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8797 M:      Russell Currey <ruscur@russell.cc>
8798 L:      linuxppc-dev@lists.ozlabs.org
8799 S:      Supported
8800 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8801 F:      arch/powerpc/kernel/eeh*.c
8802 F:      arch/powerpc/platforms/*/eeh*.c
8803 F:      arch/powerpc/include/*/eeh*.h
8804
8805 PCI SUBSYSTEM
8806 M:      Bjorn Helgaas <bhelgaas@google.com>
8807 L:      linux-pci@vger.kernel.org
8808 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8810 S:      Supported
8811 F:      Documentation/PCI/
8812 F:      drivers/pci/
8813 F:      include/linux/pci*
8814 F:      arch/x86/pci/
8815 F:      arch/x86/kernel/quirks.c
8816
8817 PCI DRIVER FOR ALTERA PCIE IP
8818 M:      Ley Foon Tan <lftan@altera.com>
8819 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8820 L:      linux-pci@vger.kernel.org
8821 S:      Supported
8822 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8823 F:      drivers/pci/host/pcie-altera.c
8824
8825 PCI DRIVER FOR ARM VERSATILE PLATFORM
8826 M:      Rob Herring <robh@kernel.org>
8827 L:      linux-pci@vger.kernel.org
8828 L:      linux-arm-kernel@lists.infradead.org
8829 S:      Maintained
8830 F:      Documentation/devicetree/bindings/pci/versatile.txt
8831 F:      drivers/pci/host/pci-versatile.c
8832
8833 PCI DRIVER FOR APPLIEDMICRO XGENE
8834 M:      Tanmay Inamdar <tinamdar@apm.com>
8835 L:      linux-pci@vger.kernel.org
8836 L:      linux-arm-kernel@lists.infradead.org
8837 S:      Maintained
8838 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8839 F:      drivers/pci/host/pci-xgene.c
8840
8841 PCI DRIVER FOR FREESCALE LAYERSCAPE
8842 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8843 M:      Mingkai Hu <mingkai.hu@freescale.com>
8844 M:      Roy Zang <tie-fei.zang@freescale.com>
8845 L:      linuxppc-dev@lists.ozlabs.org
8846 L:      linux-pci@vger.kernel.org
8847 L:      linux-arm-kernel@lists.infradead.org
8848 S:      Maintained
8849 F:      drivers/pci/host/*layerscape*
8850
8851 PCI DRIVER FOR IMX6
8852 M:      Richard Zhu <Richard.Zhu@freescale.com>
8853 M:      Lucas Stach <l.stach@pengutronix.de>
8854 L:      linux-pci@vger.kernel.org
8855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8856 S:      Maintained
8857 F:      drivers/pci/host/*imx6*
8858
8859 PCI DRIVER FOR TI KEYSTONE
8860 M:      Murali Karicheri <m-karicheri2@ti.com>
8861 L:      linux-pci@vger.kernel.org
8862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8863 S:      Maintained
8864 F:      drivers/pci/host/*keystone*
8865
8866 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8867 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8868 M:      Jason Cooper <jason@lakedaemon.net>
8869 L:      linux-pci@vger.kernel.org
8870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8871 S:      Maintained
8872 F:      drivers/pci/host/*mvebu*
8873
8874 PCI DRIVER FOR NVIDIA TEGRA
8875 M:      Thierry Reding <thierry.reding@gmail.com>
8876 L:      linux-tegra@vger.kernel.org
8877 L:      linux-pci@vger.kernel.org
8878 S:      Supported
8879 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8880 F:      drivers/pci/host/pci-tegra.c
8881
8882 PCI DRIVER FOR TI DRA7XX
8883 M:      Kishon Vijay Abraham I <kishon@ti.com>
8884 L:      linux-omap@vger.kernel.org
8885 L:      linux-pci@vger.kernel.org
8886 S:      Supported
8887 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8888 F:      drivers/pci/host/pci-dra7xx.c
8889
8890 PCI DRIVER FOR RENESAS R-CAR
8891 M:      Simon Horman <horms@verge.net.au>
8892 L:      linux-pci@vger.kernel.org
8893 L:      linux-renesas-soc@vger.kernel.org
8894 S:      Maintained
8895 F:      drivers/pci/host/*rcar*
8896
8897 PCI DRIVER FOR SAMSUNG EXYNOS
8898 M:      Jingoo Han <jingoohan1@gmail.com>
8899 L:      linux-pci@vger.kernel.org
8900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8901 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8902 S:      Maintained
8903 F:      drivers/pci/host/pci-exynos.c
8904
8905 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8906 M:      Jingoo Han <jingoohan1@gmail.com>
8907 M:      Pratyush Anand <pratyush.anand@gmail.com>
8908 L:      linux-pci@vger.kernel.org
8909 S:      Maintained
8910 F:      drivers/pci/host/*designware*
8911
8912 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8913 M:      Joao Pinto <jpinto@synopsys.com>
8914 L:      linux-pci@vger.kernel.org
8915 S:      Maintained
8916 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8917 F:      drivers/pci/host/pcie-designware-plat.c
8918
8919 PCI DRIVER FOR GENERIC OF HOSTS
8920 M:      Will Deacon <will.deacon@arm.com>
8921 L:      linux-pci@vger.kernel.org
8922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8923 S:      Maintained
8924 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8925 F:      drivers/pci/host/pci-host-common.c
8926 F:      drivers/pci/host/pci-host-generic.c
8927
8928 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8929 M:      Keith Busch <keith.busch@intel.com>
8930 L:      linux-pci@vger.kernel.org
8931 S:      Supported
8932 F:      arch/x86/pci/vmd.c
8933
8934 PCIE DRIVER FOR ST SPEAR13XX
8935 M:      Pratyush Anand <pratyush.anand@gmail.com>
8936 L:      linux-pci@vger.kernel.org
8937 S:      Maintained
8938 F:      drivers/pci/host/*spear*
8939
8940 PCI MSI DRIVER FOR ALTERA MSI IP
8941 M:      Ley Foon Tan <lftan@altera.com>
8942 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8943 L:      linux-pci@vger.kernel.org
8944 S:      Supported
8945 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8946 F:      drivers/pci/host/pcie-altera-msi.c
8947
8948 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8949 M:      Duc Dang <dhdang@apm.com>
8950 L:      linux-pci@vger.kernel.org
8951 L:      linux-arm-kernel@lists.infradead.org
8952 S:      Maintained
8953 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8954 F:      drivers/pci/host/pci-xgene-msi.c
8955
8956 PCIE DRIVER FOR HISILICON
8957 M:      Zhou Wang <wangzhou1@hisilicon.com>
8958 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8959 L:      linux-pci@vger.kernel.org
8960 S:      Maintained
8961 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8962 F:      drivers/pci/host/pcie-hisi.c
8963
8964 PCIE DRIVER FOR QUALCOMM MSM
8965 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8966 L:     linux-pci@vger.kernel.org
8967 L:     linux-arm-msm@vger.kernel.org
8968 S:     Maintained
8969 F:     drivers/pci/host/*qcom*
8970
8971 PCIE DRIVER FOR CAVIUM THUNDERX
8972 M:      David Daney <david.daney@cavium.com>
8973 L:      linux-pci@vger.kernel.org
8974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8975 S:      Supported
8976 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8977 F:      drivers/pci/host/pci-thunder-*
8978
8979 PCMCIA SUBSYSTEM
8980 P:      Linux PCMCIA Team
8981 L:      linux-pcmcia@lists.infradead.org
8982 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8984 S:      Maintained
8985 F:      Documentation/pcmcia/
8986 F:      drivers/pcmcia/
8987 F:      include/pcmcia/
8988
8989 PCNET32 NETWORK DRIVER
8990 M:      Don Fry <pcnet32@frontier.com>
8991 L:      netdev@vger.kernel.org
8992 S:      Maintained
8993 F:      drivers/net/ethernet/amd/pcnet32.c
8994
8995 PCRYPT PARALLEL CRYPTO ENGINE
8996 M:      Steffen Klassert <steffen.klassert@secunet.com>
8997 L:      linux-crypto@vger.kernel.org
8998 S:      Maintained
8999 F:      crypto/pcrypt.c
9000 F:      include/crypto/pcrypt.h
9001
9002 PER-CPU MEMORY ALLOCATOR
9003 M:      Tejun Heo <tj@kernel.org>
9004 M:      Christoph Lameter <cl@linux.com>
9005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
9006 S:      Maintained
9007 F:      include/linux/percpu*.h
9008 F:      mm/percpu*.c
9009 F:      arch/*/include/asm/percpu.h
9010
9011 PER-TASK DELAY ACCOUNTING
9012 M:      Balbir Singh <bsingharora@gmail.com>
9013 S:      Maintained
9014 F:      include/linux/delayacct.h
9015 F:      kernel/delayacct.c
9016
9017 PERFORMANCE EVENTS SUBSYSTEM
9018 M:      Peter Zijlstra <peterz@infradead.org>
9019 M:      Ingo Molnar <mingo@redhat.com>
9020 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
9021 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9022 L:      linux-kernel@vger.kernel.org
9023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9024 S:      Supported
9025 F:      kernel/events/*
9026 F:      include/linux/perf_event.h
9027 F:      include/uapi/linux/perf_event.h
9028 F:      arch/*/kernel/perf_event*.c
9029 F:      arch/*/kernel/*/perf_event*.c
9030 F:      arch/*/kernel/*/*/perf_event*.c
9031 F:      arch/*/include/asm/perf_event.h
9032 F:      arch/*/kernel/perf_callchain.c
9033 F:      arch/*/events/*
9034 F:      tools/perf/
9035
9036 PERSONALITY HANDLING
9037 M:      Christoph Hellwig <hch@infradead.org>
9038 L:      linux-abi-devel@lists.sourceforge.net
9039 S:      Maintained
9040 F:      include/linux/personality.h
9041 F:      include/uapi/linux/personality.h
9042
9043 PHONET PROTOCOL
9044 M:      Remi Denis-Courmont <courmisch@gmail.com>
9045 S:      Supported
9046 F:      Documentation/networking/phonet.txt
9047 F:      include/linux/phonet.h
9048 F:      include/net/phonet/
9049 F:      include/uapi/linux/phonet.h
9050 F:      net/phonet/
9051
9052 PHRAM MTD DRIVER
9053 M:      Joern Engel <joern@lazybastard.org>
9054 L:      linux-mtd@lists.infradead.org
9055 S:      Maintained
9056 F:      drivers/mtd/devices/phram.c
9057
9058 PICOLCD HID DRIVER
9059 M:      Bruno Prémont <bonbons@linux-vserver.org>
9060 L:      linux-input@vger.kernel.org
9061 S:      Maintained
9062 F:      drivers/hid/hid-picolcd*
9063
9064 PICOXCELL SUPPORT
9065 M:      Jamie Iles <jamie@jamieiles.com>
9066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9067 T:      git git://github.com/jamieiles/linux-2.6-ji.git
9068 S:      Supported
9069 F:      arch/arm/boot/dts/picoxcell*
9070 F:      arch/arm/mach-picoxcell/
9071 F:      drivers/crypto/picoxcell*
9072
9073 PIN CONTROL SUBSYSTEM
9074 M:      Linus Walleij <linus.walleij@linaro.org>
9075 L:      linux-gpio@vger.kernel.org
9076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
9077 S:      Maintained
9078 F:      Documentation/devicetree/bindings/pinctrl/
9079 F:      Documentation/pinctrl.txt
9080 F:      drivers/pinctrl/
9081 F:      include/linux/pinctrl/
9082
9083 PIN CONTROLLER - ATMEL AT91
9084 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
9085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9086 S:      Maintained
9087 F:      drivers/pinctrl/pinctrl-at91.*
9088
9089 PIN CONTROLLER - ATMEL AT91 PIO4
9090 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
9091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9092 L:      linux-gpio@vger.kernel.org
9093 S:      Supported
9094 F:      drivers/pinctrl/pinctrl-at91-pio4.*
9095
9096 PIN CONTROLLER - INTEL
9097 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9098 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
9099 S:      Maintained
9100 F:      drivers/pinctrl/intel/
9101
9102 PIN CONTROLLER - RENESAS
9103 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9104 M:      Geert Uytterhoeven <geert+renesas@glider.be>
9105 L:      linux-renesas-soc@vger.kernel.org
9106 S:      Maintained
9107 F:      drivers/pinctrl/sh-pfc/
9108
9109 PIN CONTROLLER - SAMSUNG
9110 M:      Tomasz Figa <tomasz.figa@gmail.com>
9111 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9112 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9114 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9115 S:      Maintained
9116 F:      drivers/pinctrl/samsung/
9117
9118 PIN CONTROLLER - SINGLE
9119 M:      Tony Lindgren <tony@atomide.com>
9120 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
9121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9122 L:      linux-omap@vger.kernel.org
9123 S:      Maintained
9124 F:      drivers/pinctrl/pinctrl-single.c
9125
9126 PIN CONTROLLER - ST SPEAR
9127 M:      Viresh Kumar <vireshk@kernel.org>
9128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9129 W:      http://www.st.com/spear
9130 S:      Maintained
9131 F:      drivers/pinctrl/spear/
9132
9133 PKTCDVD DRIVER
9134 M:      Jiri Kosina <jikos@kernel.org>
9135 S:      Maintained
9136 F:      drivers/block/pktcdvd.c
9137 F:      include/linux/pktcdvd.h
9138 F:      include/uapi/linux/pktcdvd.h
9139
9140 PKUNITY SOC DRIVERS
9141 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9142 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9143 S:      Maintained
9144 T:      git git://github.com/gxt/linux.git
9145 F:      drivers/input/serio/i8042-unicore32io.h
9146 F:      drivers/i2c/busses/i2c-puv3.c
9147 F:      drivers/video/fbdev/fb-puv3.c
9148 F:      drivers/rtc/rtc-puv3.c
9149
9150 PMBUS HARDWARE MONITORING DRIVERS
9151 M:      Guenter Roeck <linux@roeck-us.net>
9152 L:      linux-hwmon@vger.kernel.org
9153 W:      http://hwmon.wiki.kernel.org/
9154 W:      http://www.roeck-us.net/linux/drivers/
9155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9156 S:      Maintained
9157 F:      Documentation/hwmon/pmbus
9158 F:      drivers/hwmon/pmbus/
9159 F:      include/linux/i2c/pmbus.h
9160
9161 PMC SIERRA MaxRAID DRIVER
9162 L:      linux-scsi@vger.kernel.org
9163 W:      http://www.pmc-sierra.com/
9164 S:      Orphan
9165 F:      drivers/scsi/pmcraid.*
9166
9167 PMC SIERRA PM8001 DRIVER
9168 M:      Jack Wang <jinpu.wang@profitbricks.com>
9169 M:      lindar_liu@usish.com
9170 L:      pmchba@pmcs.com
9171 L:      linux-scsi@vger.kernel.org
9172 S:      Supported
9173 F:      drivers/scsi/pm8001/
9174
9175 POSIX CLOCKS and TIMERS
9176 M:      Thomas Gleixner <tglx@linutronix.de>
9177 L:      linux-kernel@vger.kernel.org
9178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9179 S:      Maintained
9180 F:      fs/timerfd.c
9181 F:      include/linux/timer*
9182 F:      kernel/time/*timer*
9183
9184 POWER MANAGEMENT CORE
9185 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9186 L:      linux-pm@vger.kernel.org
9187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
9188 S:      Supported
9189 F:      drivers/base/power/
9190 F:      include/linux/pm.h
9191 F:      include/linux/pm_*
9192 F:      include/linux/powercap.h
9193 F:      drivers/powercap/
9194
9195 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
9196 M:      Sebastian Reichel <sre@kernel.org>
9197 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
9198 M:      David Woodhouse <dwmw2@infradead.org>
9199 L:      linux-pm@vger.kernel.org
9200 T:      git git://git.infradead.org/battery-2.6.git
9201 S:      Maintained
9202 F:      Documentation/devicetree/bindings/power/
9203 F:      Documentation/devicetree/bindings/power_supply/
9204 F:      include/linux/power_supply.h
9205 F:      drivers/power/
9206 X:      drivers/power/avs/
9207
9208 POWER STATE COORDINATION INTERFACE (PSCI)
9209 M:      Mark Rutland <mark.rutland@arm.com>
9210 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
9211 L:      linux-arm-kernel@lists.infradead.org
9212 S:      Maintained
9213 F:      drivers/firmware/psci.c
9214 F:      include/linux/psci.h
9215 F:      include/uapi/linux/psci.h
9216
9217 PNP SUPPORT
9218 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
9219 S:      Maintained
9220 F:      drivers/pnp/
9221
9222 PPP PROTOCOL DRIVERS AND COMPRESSORS
9223 M:      Paul Mackerras <paulus@samba.org>
9224 L:      linux-ppp@vger.kernel.org
9225 S:      Maintained
9226 F:      drivers/net/ppp/ppp_*
9227
9228 PPP OVER ATM (RFC 2364)
9229 M:      Mitchell Blank Jr <mitch@sfgoth.com>
9230 S:      Maintained
9231 F:      net/atm/pppoatm.c
9232 F:      include/uapi/linux/atmppp.h
9233
9234 PPP OVER ETHERNET
9235 M:      Michal Ostrowski <mostrows@earthlink.net>
9236 S:      Maintained
9237 F:      drivers/net/ppp/pppoe.c
9238 F:      drivers/net/ppp/pppox.c
9239
9240 PPP OVER L2TP
9241 M:      James Chapman <jchapman@katalix.com>
9242 S:      Maintained
9243 F:      net/l2tp/l2tp_ppp.c
9244 F:      include/linux/if_pppol2tp.h
9245 F:      include/uapi/linux/if_pppol2tp.h
9246
9247 PPS SUPPORT
9248 M:      Rodolfo Giometti <giometti@enneenne.com>
9249 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
9250 L:      linuxpps@ml.enneenne.com (subscribers-only)
9251 S:      Maintained
9252 F:      Documentation/pps/
9253 F:      drivers/pps/
9254 F:      include/linux/pps*.h
9255
9256 PPTP DRIVER
9257 M:      Dmitry Kozlov <xeb@mail.ru>
9258 L:      netdev@vger.kernel.org
9259 S:      Maintained
9260 F:      drivers/net/ppp/pptp.c
9261 W:      http://sourceforge.net/projects/accel-pptp
9262
9263 PREEMPTIBLE KERNEL
9264 M:      Robert Love <rml@tech9.net>
9265 L:      kpreempt-tech@lists.sourceforge.net
9266 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
9267 S:      Supported
9268 F:      Documentation/preempt-locking.txt
9269 F:      include/linux/preempt.h
9270
9271 PRISM54 WIRELESS DRIVER
9272 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
9273 L:      linux-wireless@vger.kernel.org
9274 W:      http://wireless.kernel.org/en/users/Drivers/p54
9275 S:      Obsolete
9276 F:      drivers/net/wireless/intersil/prism54/
9277
9278 PS3 NETWORK SUPPORT
9279 M:      Geoff Levand <geoff@infradead.org>
9280 L:      netdev@vger.kernel.org
9281 L:      linuxppc-dev@lists.ozlabs.org
9282 S:      Maintained
9283 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
9284
9285 PS3 PLATFORM SUPPORT
9286 M:      Geoff Levand <geoff@infradead.org>
9287 L:      linuxppc-dev@lists.ozlabs.org
9288 S:      Maintained
9289 F:      arch/powerpc/boot/ps3*
9290 F:      arch/powerpc/include/asm/lv1call.h
9291 F:      arch/powerpc/include/asm/ps3*.h
9292 F:      arch/powerpc/platforms/ps3/
9293 F:      drivers/*/ps3*
9294 F:      drivers/ps3/
9295 F:      drivers/rtc/rtc-ps3.c
9296 F:      drivers/usb/host/*ps3.c
9297 F:      sound/ppc/snd_ps3*
9298
9299 PS3VRAM DRIVER
9300 M:      Jim Paris <jim@jtan.com>
9301 M:      Geoff Levand <geoff@infradead.org>
9302 L:      linuxppc-dev@lists.ozlabs.org
9303 S:      Maintained
9304 F:      drivers/block/ps3vram.c
9305
9306 PSTORE FILESYSTEM
9307 M:      Anton Vorontsov <anton@enomsg.org>
9308 M:      Colin Cross <ccross@android.com>
9309 M:      Kees Cook <keescook@chromium.org>
9310 M:      Tony Luck <tony.luck@intel.com>
9311 S:      Maintained
9312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9313 F:      fs/pstore/
9314 F:      include/linux/pstore*
9315 F:      drivers/firmware/efi/efi-pstore.c
9316 F:      drivers/acpi/apei/erst.c
9317
9318 PTP HARDWARE CLOCK SUPPORT
9319 M:      Richard Cochran <richardcochran@gmail.com>
9320 L:      netdev@vger.kernel.org
9321 S:      Maintained
9322 W:      http://linuxptp.sourceforge.net/
9323 F:      Documentation/ABI/testing/sysfs-ptp
9324 F:      Documentation/ptp/*
9325 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9326 F:      drivers/net/phy/dp83640*
9327 F:      drivers/ptp/*
9328 F:      include/linux/ptp_cl*
9329
9330 PTRACE SUPPORT
9331 M:      Roland McGrath <roland@hack.frob.com>
9332 M:      Oleg Nesterov <oleg@redhat.com>
9333 S:      Maintained
9334 F:      include/asm-generic/syscall.h
9335 F:      include/linux/ptrace.h
9336 F:      include/linux/regset.h
9337 F:      include/linux/tracehook.h
9338 F:      include/uapi/linux/ptrace.h
9339 F:      kernel/ptrace.c
9340
9341 PULSE8-CEC DRIVER
9342 M:      Hans Verkuil <hverkuil@xs4all.nl>
9343 L:      linux-media@vger.kernel.org
9344 T:      git git://linuxtv.org/media_tree.git
9345 S:      Maintained
9346 F:      drivers/staging/media/pulse8-cec
9347
9348 PVRUSB2 VIDEO4LINUX DRIVER
9349 M:      Mike Isely <isely@pobox.com>
9350 L:      pvrusb2@isely.net       (subscribers-only)
9351 L:      linux-media@vger.kernel.org
9352 W:      http://www.isely.net/pvrusb2/
9353 T:      git git://linuxtv.org/media_tree.git
9354 S:      Maintained
9355 F:      Documentation/video4linux/README.pvrusb2
9356 F:      drivers/media/usb/pvrusb2/
9357
9358 PWC WEBCAM DRIVER
9359 M:      Hans Verkuil <hverkuil@xs4all.nl>
9360 L:      linux-media@vger.kernel.org
9361 T:      git git://linuxtv.org/media_tree.git
9362 S:      Odd Fixes
9363 F:      drivers/media/usb/pwc/*
9364
9365 PWM FAN DRIVER
9366 M:      Kamil Debski <k.debski@samsung.com>
9367 L:      linux-hwmon@vger.kernel.org
9368 S:      Supported
9369 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9370 F:      Documentation/hwmon/pwm-fan
9371 F:      drivers/hwmon/pwm-fan.c
9372
9373 PWM SUBSYSTEM
9374 M:      Thierry Reding <thierry.reding@gmail.com>
9375 L:      linux-pwm@vger.kernel.org
9376 S:      Maintained
9377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9378 F:      Documentation/pwm.txt
9379 F:      Documentation/devicetree/bindings/pwm/
9380 F:      include/linux/pwm.h
9381 F:      drivers/pwm/
9382 F:      drivers/video/backlight/pwm_bl.c
9383 F:      include/linux/pwm_backlight.h
9384
9385 PXA2xx/PXA3xx SUPPORT
9386 M:      Daniel Mack <daniel@zonque.org>
9387 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9388 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9390 T:      git git://github.com/hzhuang1/linux.git
9391 T:      git git://github.com/rjarzmik/linux.git
9392 S:      Maintained
9393 F:      arch/arm/boot/dts/pxa*
9394 F:      arch/arm/mach-pxa/
9395 F:      drivers/dma/pxa*
9396 F:      drivers/pcmcia/pxa2xx*
9397 F:      drivers/pinctrl/pxa/
9398 F:      drivers/spi/spi-pxa2xx*
9399 F:      drivers/usb/gadget/udc/pxa2*
9400 F:      include/sound/pxa2xx-lib.h
9401 F:      sound/arm/pxa*
9402 F:      sound/soc/pxa/
9403
9404 PXA GPIO DRIVER
9405 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9406 L:      linux-gpio@vger.kernel.org
9407 S:      Maintained
9408 F:      drivers/gpio/gpio-pxa.c
9409
9410 PXA3xx NAND FLASH DRIVER
9411 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9412 L:      linux-mtd@lists.infradead.org
9413 S:      Maintained
9414 F:      drivers/mtd/nand/pxa3xx_nand.c
9415
9416 MMP SUPPORT
9417 M:      Eric Miao <eric.y.miao@gmail.com>
9418 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9420 T:      git git://github.com/hzhuang1/linux.git
9421 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9422 S:      Maintained
9423 F:      arch/arm/boot/dts/mmp*
9424 F:      arch/arm/mach-mmp/
9425
9426 PXA MMCI DRIVER
9427 S:      Orphan
9428
9429 PXA RTC DRIVER
9430 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9431 L:      rtc-linux@googlegroups.com
9432 S:      Maintained
9433
9434 QAT DRIVER
9435 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
9436 M:      Salvatore Benedetto <salvatore.benedetto@intel.com>
9437 L:      qat-linux@intel.com
9438 S:      Supported
9439 F:      drivers/crypto/qat/
9440
9441 QIB DRIVER
9442 M:      Mike Marciniszyn <infinipath@intel.com>
9443 L:      linux-rdma@vger.kernel.org
9444 S:      Supported
9445 F:      drivers/infiniband/hw/qib/
9446
9447 QLOGIC QLA1280 SCSI DRIVER
9448 M:      Michael Reed <mdr@sgi.com>
9449 L:      linux-scsi@vger.kernel.org
9450 S:      Maintained
9451 F:      drivers/scsi/qla1280.[ch]
9452
9453 QLOGIC QLA2XXX FC-SCSI DRIVER
9454 M:      qla2xxx-upstream@qlogic.com
9455 L:      linux-scsi@vger.kernel.org
9456 S:      Supported
9457 F:      Documentation/scsi/LICENSE.qla2xxx
9458 F:      drivers/scsi/qla2xxx/
9459
9460 QLOGIC QLA4XXX iSCSI DRIVER
9461 M:      QLogic-Storage-Upstream@qlogic.com
9462 L:      linux-scsi@vger.kernel.org
9463 S:      Supported
9464 F:      Documentation/scsi/LICENSE.qla4xxx
9465 F:      drivers/scsi/qla4xxx/
9466
9467 QLOGIC QLA3XXX NETWORK DRIVER
9468 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9469 M:      Ron Mercer <ron.mercer@qlogic.com>
9470 M:      linux-driver@qlogic.com
9471 L:      netdev@vger.kernel.org
9472 S:      Supported
9473 F:      Documentation/networking/LICENSE.qla3xxx
9474 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9475
9476 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9477 M:      Dept-GELinuxNICDev@qlogic.com
9478 L:      netdev@vger.kernel.org
9479 S:      Supported
9480 F:      drivers/net/ethernet/qlogic/qlcnic/
9481
9482 QLOGIC QLGE 10Gb ETHERNET DRIVER
9483 M:      Harish Patil <harish.patil@qlogic.com>
9484 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9485 M:      Dept-GELinuxNICDev@qlogic.com
9486 M:      linux-driver@qlogic.com
9487 L:      netdev@vger.kernel.org
9488 S:      Supported
9489 F:      drivers/net/ethernet/qlogic/qlge/
9490
9491 QLOGIC QL4xxx ETHERNET DRIVER
9492 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9493 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9494 M:      everest-linux-l2@qlogic.com
9495 L:      netdev@vger.kernel.org
9496 S:      Supported
9497 F:      drivers/net/ethernet/qlogic/qed/
9498 F:      include/linux/qed/
9499 F:      drivers/net/ethernet/qlogic/qede/
9500
9501 QNX4 FILESYSTEM
9502 M:      Anders Larsen <al@alarsen.net>
9503 W:      http://www.alarsen.net/linux/qnx4fs/
9504 S:      Maintained
9505 F:      fs/qnx4/
9506 F:      include/uapi/linux/qnx4_fs.h
9507 F:      include/uapi/linux/qnxtypes.h
9508
9509 QT1010 MEDIA DRIVER
9510 M:      Antti Palosaari <crope@iki.fi>
9511 L:      linux-media@vger.kernel.org
9512 W:      https://linuxtv.org
9513 W:      http://palosaari.fi/linux/
9514 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9515 T:      git git://linuxtv.org/anttip/media_tree.git
9516 S:      Maintained
9517 F:      drivers/media/tuners/qt1010*
9518
9519 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9520 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9521 L:      linux-wireless@vger.kernel.org
9522 L:      ath9k-devel@lists.ath9k.org
9523 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9524 S:      Supported
9525 F:      drivers/net/wireless/ath/ath9k/
9526
9527 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9528 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9529 L:      ath10k@lists.infradead.org
9530 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9532 S:      Supported
9533 F:      drivers/net/wireless/ath/ath10k/
9534
9535 QUALCOMM HEXAGON ARCHITECTURE
9536 M:      Richard Kuo <rkuo@codeaurora.org>
9537 L:      linux-hexagon@vger.kernel.org
9538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9539 S:      Supported
9540 F:      arch/hexagon/
9541
9542 QUALCOMM WCN36XX WIRELESS DRIVER
9543 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9544 L:      wcn36xx@lists.infradead.org
9545 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9546 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9547 S:      Supported
9548 F:      drivers/net/wireless/ath/wcn36xx/
9549
9550 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9551 M:      Gabriel Somlo <somlo@cmu.edu>
9552 M:      "Michael S. Tsirkin" <mst@redhat.com>
9553 L:      qemu-devel@nongnu.org
9554 S:      Maintained
9555 F:      drivers/firmware/qemu_fw_cfg.c
9556
9557 RADOS BLOCK DEVICE (RBD)
9558 M:      Ilya Dryomov <idryomov@gmail.com>
9559 M:      Sage Weil <sage@redhat.com>
9560 M:      Alex Elder <elder@kernel.org>
9561 L:      ceph-devel@vger.kernel.org
9562 W:      http://ceph.com/
9563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9564 T:      git git://github.com/ceph/ceph-client.git
9565 S:      Supported
9566 F:      Documentation/ABI/testing/sysfs-bus-rbd
9567 F:      drivers/block/rbd.c
9568 F:      drivers/block/rbd_types.h
9569
9570 RADEON FRAMEBUFFER DISPLAY DRIVER
9571 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9572 L:      linux-fbdev@vger.kernel.org
9573 S:      Maintained
9574 F:      drivers/video/fbdev/aty/radeon*
9575 F:      include/uapi/linux/radeonfb.h
9576
9577 RADIOSHARK RADIO DRIVER
9578 M:      Hans Verkuil <hverkuil@xs4all.nl>
9579 L:      linux-media@vger.kernel.org
9580 T:      git git://linuxtv.org/media_tree.git
9581 S:      Maintained
9582 F:      drivers/media/radio/radio-shark.c
9583
9584 RADIOSHARK2 RADIO DRIVER
9585 M:      Hans Verkuil <hverkuil@xs4all.nl>
9586 L:      linux-media@vger.kernel.org
9587 T:      git git://linuxtv.org/media_tree.git
9588 S:      Maintained
9589 F:      drivers/media/radio/radio-shark2.c
9590 F:      drivers/media/radio/radio-tea5777.c
9591
9592 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9593 M:      Paul Mackerras <paulus@samba.org>
9594 L:      linux-fbdev@vger.kernel.org
9595 S:      Maintained
9596 F:      drivers/video/fbdev/aty/aty128fb.c
9597
9598 RALINK MIPS ARCHITECTURE
9599 M:      John Crispin <john@phrozen.org>
9600 L:      linux-mips@linux-mips.org
9601 S:      Maintained
9602 F:      arch/mips/ralink
9603
9604 RALINK RT2X00 WIRELESS LAN DRIVER
9605 P:      rt2x00 project
9606 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9607 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9608 L:      linux-wireless@vger.kernel.org
9609 S:      Maintained
9610 F:      drivers/net/wireless/ralink/rt2x00/
9611
9612 RAMDISK RAM BLOCK DEVICE DRIVER
9613 M:      Jens Axboe <axboe@kernel.dk>
9614 S:      Maintained
9615 F:      Documentation/blockdev/ramdisk.txt
9616 F:      drivers/block/brd.c
9617
9618 RANDOM NUMBER DRIVER
9619 M:      "Theodore Ts'o" <tytso@mit.edu>
9620 S:      Maintained
9621 F:      drivers/char/random.c
9622
9623 RAPIDIO SUBSYSTEM
9624 M:      Matt Porter <mporter@kernel.crashing.org>
9625 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9626 S:      Maintained
9627 F:      drivers/rapidio/
9628
9629 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9630 L:      linux-wireless@vger.kernel.org
9631 S:      Orphan
9632 F:      drivers/net/wireless/ray*
9633
9634 RCUTORTURE MODULE
9635 M:      Josh Triplett <josh@joshtriplett.org>
9636 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9637 L:      linux-kernel@vger.kernel.org
9638 S:      Supported
9639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9640 F:      Documentation/RCU/torture.txt
9641 F:      kernel/rcu/rcutorture.c
9642
9643 RCUTORTURE TEST FRAMEWORK
9644 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9645 M:      Josh Triplett <josh@joshtriplett.org>
9646 R:      Steven Rostedt <rostedt@goodmis.org>
9647 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9648 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9649 L:      linux-kernel@vger.kernel.org
9650 S:      Supported
9651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9652 F:      tools/testing/selftests/rcutorture
9653
9654 RDC R-321X SoC
9655 M:      Florian Fainelli <florian@openwrt.org>
9656 S:      Maintained
9657
9658 RDC R6040 FAST ETHERNET DRIVER
9659 M:      Florian Fainelli <f.fainelli@gmail.com>
9660 L:      netdev@vger.kernel.org
9661 S:      Maintained
9662 F:      drivers/net/ethernet/rdc/r6040.c
9663
9664 RDS - RELIABLE DATAGRAM SOCKETS
9665 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9666 L:      netdev@vger.kernel.org
9667 L:      linux-rdma@vger.kernel.org
9668 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9669 W:      https://oss.oracle.com/projects/rds/
9670 S:      Supported
9671 F:      net/rds/
9672 F:      Documentation/networking/rds.txt
9673
9674 RDMAVT - RDMA verbs software
9675 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9676 L:      linux-rdma@vger.kernel.org
9677 S:      Supported
9678 F:      drivers/infiniband/sw/rdmavt
9679
9680 READ-COPY UPDATE (RCU)
9681 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9682 M:      Josh Triplett <josh@joshtriplett.org>
9683 R:      Steven Rostedt <rostedt@goodmis.org>
9684 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9685 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9686 L:      linux-kernel@vger.kernel.org
9687 W:      http://www.rdrop.com/users/paulmck/RCU/
9688 S:      Supported
9689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9690 F:      Documentation/RCU/
9691 X:      Documentation/RCU/torture.txt
9692 F:      include/linux/rcu*
9693 X:      include/linux/srcu.h
9694 F:      kernel/rcu/
9695 X:      kernel/torture.c
9696
9697 REAL TIME CLOCK (RTC) SUBSYSTEM
9698 M:      Alessandro Zummo <a.zummo@towertech.it>
9699 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9700 L:      rtc-linux@googlegroups.com
9701 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9703 S:      Maintained
9704 F:      Documentation/rtc.txt
9705 F:      drivers/rtc/
9706 F:      include/linux/rtc.h
9707 F:      include/uapi/linux/rtc.h
9708
9709 REALTEK AUDIO CODECS
9710 M:      Bard Liao <bardliao@realtek.com>
9711 M:      Oder Chiou <oder_chiou@realtek.com>
9712 S:      Maintained
9713 F:      sound/soc/codecs/rt*
9714 F:      include/sound/rt*.h
9715
9716 REISERFS FILE SYSTEM
9717 L:      reiserfs-devel@vger.kernel.org
9718 S:      Supported
9719 F:      fs/reiserfs/
9720
9721 REGISTER MAP ABSTRACTION
9722 M:      Mark Brown <broonie@kernel.org>
9723 L:      linux-kernel@vger.kernel.org
9724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9725 S:      Supported
9726 F:      Documentation/devicetree/bindings/regmap/
9727 F:      drivers/base/regmap/
9728 F:      include/linux/regmap.h
9729
9730 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9731 M:      Ohad Ben-Cohen <ohad@wizery.com>
9732 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9733 L:      linux-remoteproc@vger.kernel.org
9734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9735 S:      Maintained
9736 F:      Documentation/devicetree/bindings/remoteproc/
9737 F:      Documentation/remoteproc.txt
9738 F:      drivers/remoteproc/
9739 F:      include/linux/remoteproc.h
9740
9741 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9742 M:      Ohad Ben-Cohen <ohad@wizery.com>
9743 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9744 L:      linux-remoteproc@vger.kernel.org
9745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9746 S:      Maintained
9747 F:      drivers/rpmsg/
9748 F:      Documentation/rpmsg.txt
9749 F:      include/linux/rpmsg.h
9750
9751 RENESAS ETHERNET DRIVERS
9752 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9753 L:      netdev@vger.kernel.org
9754 L:      linux-renesas-soc@vger.kernel.org
9755 F:      drivers/net/ethernet/renesas/
9756 F:      include/linux/sh_eth.h
9757
9758 RENESAS USB2 PHY DRIVER
9759 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9760 L:      linux-renesas-soc@vger.kernel.org
9761 S:      Maintained
9762 F:      drivers/phy/phy-rcar-gen3-usb2.c
9763
9764 RESET CONTROLLER FRAMEWORK
9765 M:      Philipp Zabel <p.zabel@pengutronix.de>
9766 T:      git git://git.pengutronix.de/git/pza/linux
9767 S:      Maintained
9768 F:      drivers/reset/
9769 F:      Documentation/devicetree/bindings/reset/
9770 F:      include/dt-bindings/reset/
9771 F:      include/linux/reset.h
9772 F:      include/linux/reset-controller.h
9773
9774 RFKILL
9775 M:      Johannes Berg <johannes@sipsolutions.net>
9776 L:      linux-wireless@vger.kernel.org
9777 W:      http://wireless.kernel.org/
9778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9780 S:      Maintained
9781 F:      Documentation/rfkill.txt
9782 F:      net/rfkill/
9783
9784 RHASHTABLE
9785 M:      Thomas Graf <tgraf@suug.ch>
9786 L:      netdev@vger.kernel.org
9787 S:      Maintained
9788 F:      lib/rhashtable.c
9789 F:      include/linux/rhashtable.h
9790
9791 RICOH SMARTMEDIA/XD DRIVER
9792 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9793 S:      Maintained
9794 F:      drivers/mtd/nand/r852.c
9795 F:      drivers/mtd/nand/r852.h
9796
9797 RICOH R5C592 MEMORYSTICK DRIVER
9798 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9799 S:      Maintained
9800 F:      drivers/memstick/host/r592.*
9801
9802 ROCCAT DRIVERS
9803 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9804 W:      http://sourceforge.net/projects/roccat/
9805 S:      Maintained
9806 F:      drivers/hid/hid-roccat*
9807 F:      include/linux/hid-roccat*
9808 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9809
9810 ROCKER DRIVER
9811 M:      Jiri Pirko <jiri@resnulli.us>
9812 L:      netdev@vger.kernel.org
9813 S:      Supported
9814 F:      drivers/net/ethernet/rocker/
9815
9816 ROCKETPORT DRIVER
9817 P:      Comtrol Corp.
9818 W:      http://www.comtrol.com
9819 S:      Maintained
9820 F:      Documentation/serial/rocket.txt
9821 F:      drivers/tty/rocket*
9822
9823 ROCKETPORT EXPRESS/INFINITY DRIVER
9824 M:      Kevin Cernekee <cernekee@gmail.com>
9825 L:      linux-serial@vger.kernel.org
9826 S:      Odd Fixes
9827 F:      drivers/tty/serial/rp2.*
9828
9829 ROSE NETWORK LAYER
9830 M:      Ralf Baechle <ralf@linux-mips.org>
9831 L:      linux-hams@vger.kernel.org
9832 W:      http://www.linux-ax25.org/
9833 S:      Maintained
9834 F:      include/net/rose.h
9835 F:      include/uapi/linux/rose.h
9836 F:      net/rose/
9837
9838 RTL2830 MEDIA DRIVER
9839 M:      Antti Palosaari <crope@iki.fi>
9840 L:      linux-media@vger.kernel.org
9841 W:      https://linuxtv.org
9842 W:      http://palosaari.fi/linux/
9843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9844 T:      git git://linuxtv.org/anttip/media_tree.git
9845 S:      Maintained
9846 F:      drivers/media/dvb-frontends/rtl2830*
9847
9848 RTL2832 MEDIA DRIVER
9849 M:      Antti Palosaari <crope@iki.fi>
9850 L:      linux-media@vger.kernel.org
9851 W:      https://linuxtv.org
9852 W:      http://palosaari.fi/linux/
9853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9854 T:      git git://linuxtv.org/anttip/media_tree.git
9855 S:      Maintained
9856 F:      drivers/media/dvb-frontends/rtl2832*
9857
9858 RTL2832_SDR MEDIA DRIVER
9859 M:      Antti Palosaari <crope@iki.fi>
9860 L:      linux-media@vger.kernel.org
9861 W:      https://linuxtv.org
9862 W:      http://palosaari.fi/linux/
9863 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9864 T:      git git://linuxtv.org/anttip/media_tree.git
9865 S:      Maintained
9866 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9867
9868 RTL8180 WIRELESS DRIVER
9869 L:      linux-wireless@vger.kernel.org
9870 W:      http://wireless.kernel.org/
9871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9872 S:      Orphan
9873 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9874
9875 RTL8187 WIRELESS DRIVER
9876 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9877 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9878 M:      Larry Finger <Larry.Finger@lwfinger.net>
9879 L:      linux-wireless@vger.kernel.org
9880 W:      http://wireless.kernel.org/
9881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9882 S:      Maintained
9883 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9884
9885 RTL8192CE WIRELESS DRIVER
9886 M:      Larry Finger <Larry.Finger@lwfinger.net>
9887 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9888 L:      linux-wireless@vger.kernel.org
9889 W:      http://wireless.kernel.org/
9890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9891 S:      Maintained
9892 F:      drivers/net/wireless/realtek/rtlwifi/
9893 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9894
9895 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9896 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9897 L:      linux-wireless@vger.kernel.org
9898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
9899 S:      Maintained
9900 F:      drivers/net/wireless/realtek/rtl8xxxu/
9901
9902 S3 SAVAGE FRAMEBUFFER DRIVER
9903 M:      Antonino Daplas <adaplas@gmail.com>
9904 L:      linux-fbdev@vger.kernel.org
9905 S:      Maintained
9906 F:      drivers/video/fbdev/savage/
9907
9908 S390
9909 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9910 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9911 L:      linux-s390@vger.kernel.org
9912 W:      http://www.ibm.com/developerworks/linux/linux390/
9913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9914 S:      Supported
9915 F:      arch/s390/
9916 F:      drivers/s390/
9917 F:      Documentation/s390/
9918 F:      Documentation/DocBook/s390*
9919
9920 S390 COMMON I/O LAYER
9921 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9922 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9923 L:      linux-s390@vger.kernel.org
9924 W:      http://www.ibm.com/developerworks/linux/linux390/
9925 S:      Supported
9926 F:      drivers/s390/cio/
9927
9928 S390 DASD DRIVER
9929 M:      Stefan Weinhuber <wein@de.ibm.com>
9930 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9931 L:      linux-s390@vger.kernel.org
9932 W:      http://www.ibm.com/developerworks/linux/linux390/
9933 S:      Supported
9934 F:      drivers/s390/block/dasd*
9935 F:      block/partitions/ibm.c
9936
9937 S390 NETWORK DRIVERS
9938 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9939 L:      linux-s390@vger.kernel.org
9940 W:      http://www.ibm.com/developerworks/linux/linux390/
9941 S:      Supported
9942 F:      drivers/s390/net/
9943
9944 S390 PCI SUBSYSTEM
9945 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9946 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9947 L:      linux-s390@vger.kernel.org
9948 W:      http://www.ibm.com/developerworks/linux/linux390/
9949 S:      Supported
9950 F:      arch/s390/pci/
9951 F:      drivers/pci/hotplug/s390_pci_hpc.c
9952
9953 S390 ZCRYPT DRIVER
9954 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9955 L:      linux-s390@vger.kernel.org
9956 W:      http://www.ibm.com/developerworks/linux/linux390/
9957 S:      Supported
9958 F:      drivers/s390/crypto/
9959
9960 S390 ZFCP DRIVER
9961 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9962 L:      linux-s390@vger.kernel.org
9963 W:      http://www.ibm.com/developerworks/linux/linux390/
9964 S:      Supported
9965 F:      drivers/s390/scsi/zfcp_*
9966
9967 S390 IUCV NETWORK LAYER
9968 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9969 L:      linux-s390@vger.kernel.org
9970 W:      http://www.ibm.com/developerworks/linux/linux390/
9971 S:      Supported
9972 F:      drivers/s390/net/*iucv*
9973 F:      include/net/iucv/
9974 F:      net/iucv/
9975
9976 S390 IOMMU (PCI)
9977 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9978 L:      linux-s390@vger.kernel.org
9979 W:      http://www.ibm.com/developerworks/linux/linux390/
9980 S:      Supported
9981 F:      drivers/iommu/s390-iommu.c
9982
9983 S3C24XX SD/MMC Driver
9984 M:      Ben Dooks <ben-linux@fluff.org>
9985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9986 S:      Supported
9987 F:      drivers/mmc/host/s3cmci.*
9988
9989 SAA6588 RDS RECEIVER DRIVER
9990 M:      Hans Verkuil <hverkuil@xs4all.nl>
9991 L:      linux-media@vger.kernel.org
9992 T:      git git://linuxtv.org/media_tree.git
9993 W:      https://linuxtv.org
9994 S:      Odd Fixes
9995 F:      drivers/media/i2c/saa6588*
9996
9997 SAA7134 VIDEO4LINUX DRIVER
9998 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
9999 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10000 L:      linux-media@vger.kernel.org
10001 W:      https://linuxtv.org
10002 T:      git git://linuxtv.org/media_tree.git
10003 S:      Odd fixes
10004 F:      Documentation/video4linux/*.saa7134
10005 F:      drivers/media/pci/saa7134/
10006
10007 SAA7146 VIDEO4LINUX-2 DRIVER
10008 M:      Hans Verkuil <hverkuil@xs4all.nl>
10009 L:      linux-media@vger.kernel.org
10010 T:      git git://linuxtv.org/media_tree.git
10011 S:      Maintained
10012 F:      drivers/media/common/saa7146/
10013 F:      drivers/media/pci/saa7146/
10014 F:      include/media/saa7146*
10015
10016 SAMSUNG LAPTOP DRIVER
10017 M:      Corentin Chary <corentin.chary@gmail.com>
10018 L:      platform-driver-x86@vger.kernel.org
10019 S:      Maintained
10020 F:      drivers/platform/x86/samsung-laptop.c
10021
10022 SAMSUNG AUDIO (ASoC) DRIVERS
10023 M:      Sangbeom Kim <sbkim73@samsung.com>
10024 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10025 S:      Supported
10026 F:      sound/soc/samsung/
10027
10028 SAMSUNG FRAMEBUFFER DRIVER
10029 M:      Jingoo Han <jingoohan1@gmail.com>
10030 L:      linux-fbdev@vger.kernel.org
10031 S:      Maintained
10032 F:      drivers/video/fbdev/s3c-fb.c
10033
10034 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
10035 M:      Sangbeom Kim <sbkim73@samsung.com>
10036 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
10037 L:      linux-kernel@vger.kernel.org
10038 L:      linux-samsung-soc@vger.kernel.org
10039 S:      Supported
10040 F:      drivers/mfd/sec*.c
10041 F:      drivers/regulator/s2m*.c
10042 F:      drivers/regulator/s5m*.c
10043 F:      drivers/clk/clk-s2mps11.c
10044 F:      drivers/rtc/rtc-s5m.c
10045 F:      include/linux/mfd/samsung/
10046 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
10047 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
10048 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
10049 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
10050
10051 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
10052 M:      Kyungmin Park <kyungmin.park@samsung.com>
10053 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10054 L:      linux-media@vger.kernel.org
10055 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
10056 S:      Supported
10057 F:      drivers/media/platform/exynos4-is/
10058
10059 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
10060 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
10061 L:      linux-media@vger.kernel.org
10062 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10063 S:      Maintained
10064 F:      drivers/media/platform/s3c-camif/
10065 F:      include/media/drv-intf/s3c_camif.h
10066
10067 SAMSUNG S5C73M3 CAMERA DRIVER
10068 M:      Kyungmin Park <kyungmin.park@samsung.com>
10069 M:      Andrzej Hajda <a.hajda@samsung.com>
10070 L:      linux-media@vger.kernel.org
10071 S:      Supported
10072 F:      drivers/media/i2c/s5c73m3/*
10073
10074 SAMSUNG S5K5BAF CAMERA DRIVER
10075 M:      Kyungmin Park <kyungmin.park@samsung.com>
10076 M:      Andrzej Hajda <a.hajda@samsung.com>
10077 L:      linux-media@vger.kernel.org
10078 S:      Supported
10079 F:      drivers/media/i2c/s5k5baf.c
10080
10081 SAMSUNG S3FWRN5 NFC DRIVER
10082 M:      Robert Baldyga <r.baldyga@samsung.com>
10083 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
10084 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
10085 S:      Supported
10086 F:      drivers/nfc/s3fwrn5
10087
10088 SAMSUNG SOC CLOCK DRIVERS
10089 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10090 M:      Tomasz Figa <tomasz.figa@gmail.com>
10091 S:      Supported
10092 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10093 F:      drivers/clk/samsung/
10094
10095 SAMSUNG SXGBE DRIVERS
10096 M:      Byungho An <bh74.an@samsung.com>
10097 M:      Girish K S <ks.giri@samsung.com>
10098 M:      Vipul Pandya <vipul.pandya@samsung.com>
10099 S:      Supported
10100 L:      netdev@vger.kernel.org
10101 F:      drivers/net/ethernet/samsung/sxgbe/
10102
10103 SAMSUNG THERMAL DRIVER
10104 M:      Lukasz Majewski <l.majewski@samsung.com>
10105 L:      linux-pm@vger.kernel.org
10106 L:      linux-samsung-soc@vger.kernel.org
10107 S:      Supported
10108 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
10109 F:      drivers/thermal/samsung/
10110
10111 SAMSUNG USB2 PHY DRIVER
10112 M:      Kamil Debski <k.debski@samsung.com>
10113 L:      linux-kernel@vger.kernel.org
10114 S:      Supported
10115 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
10116 F:      Documentation/phy/samsung-usb2.txt
10117 F:      drivers/phy/phy-exynos4210-usb2.c
10118 F:      drivers/phy/phy-exynos4x12-usb2.c
10119 F:      drivers/phy/phy-exynos5250-usb2.c
10120 F:      drivers/phy/phy-s5pv210-usb2.c
10121 F:      drivers/phy/phy-samsung-usb2.c
10122 F:      drivers/phy/phy-samsung-usb2.h
10123
10124 SERIAL DRIVERS
10125 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10126 L:      linux-serial@vger.kernel.org
10127 S:      Maintained
10128 F:      Documentation/devicetree/bindings/serial/
10129 F:      drivers/tty/serial/
10130
10131 SYNOPSYS DESIGNWARE DMAC DRIVER
10132 M:      Viresh Kumar <vireshk@kernel.org>
10133 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10134 S:      Maintained
10135 F:      include/linux/dma/dw.h
10136 F:      include/linux/platform_data/dma-dw.h
10137 F:      drivers/dma/dw/
10138
10139 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
10140 M: Lars Persson <lars.persson@axis.com>
10141 L: netdev@vger.kernel.org
10142 S: Supported
10143 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
10144 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
10145
10146 SYNOPSYS DESIGNWARE I2C DRIVER
10147 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10148 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10149 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
10150 L:      linux-i2c@vger.kernel.org
10151 S:      Maintained
10152 F:      drivers/i2c/busses/i2c-designware-*
10153 F:      include/linux/platform_data/i2c-designware.h
10154
10155 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
10156 M:      Jaehoon Chung <jh80.chung@samsung.com>
10157 L:      linux-mmc@vger.kernel.org
10158 S:      Maintained
10159 F:      include/linux/mmc/dw_mmc.h
10160 F:      drivers/mmc/host/dw_mmc*
10161
10162 SYSTEM TRACE MODULE CLASS
10163 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10164 S:      Maintained
10165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
10166 F:      Documentation/trace/stm.txt
10167 F:      drivers/hwtracing/stm/
10168 F:      include/linux/stm.h
10169 F:      include/uapi/linux/stm.h
10170
10171 THUNDERBOLT DRIVER
10172 M:      Andreas Noever <andreas.noever@gmail.com>
10173 S:      Maintained
10174 F:      drivers/thunderbolt/
10175
10176 TI BQ27XXX POWER SUPPLY DRIVER
10177 R:      Andrew F. Davis <afd@ti.com>
10178 F:      include/linux/power/bq27xxx_battery.h
10179 F:      drivers/power/bq27xxx_battery.c
10180 F:      drivers/power/bq27xxx_battery_i2c.c
10181
10182 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
10183 M:      John Stultz <john.stultz@linaro.org>
10184 M:      Thomas Gleixner <tglx@linutronix.de>
10185 L:      linux-kernel@vger.kernel.org
10186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10187 S:      Supported
10188 F:      include/linux/clocksource.h
10189 F:      include/linux/time.h
10190 F:      include/linux/timex.h
10191 F:      include/uapi/linux/time.h
10192 F:      include/uapi/linux/timex.h
10193 F:      kernel/time/clocksource.c
10194 F:      kernel/time/time*.c
10195 F:      kernel/time/alarmtimer.c
10196 F:      kernel/time/ntp.c
10197 F:      tools/testing/selftests/timers/
10198
10199 SC1200 WDT DRIVER
10200 M:      Zwane Mwaikambo <zwanem@gmail.com>
10201 S:      Maintained
10202 F:      drivers/watchdog/sc1200wdt.c
10203
10204 SCHEDULER
10205 M:      Ingo Molnar <mingo@redhat.com>
10206 M:      Peter Zijlstra <peterz@infradead.org>
10207 L:      linux-kernel@vger.kernel.org
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
10209 S:      Maintained
10210 F:      kernel/sched/
10211 F:      include/linux/sched.h
10212 F:      include/uapi/linux/sched.h
10213 F:      include/linux/wait.h
10214
10215 SCORE ARCHITECTURE
10216 M:      Chen Liqin <liqin.linux@gmail.com>
10217 M:      Lennox Wu <lennox.wu@gmail.com>
10218 W:      http://www.sunplus.com
10219 S:      Supported
10220 F:      arch/score/
10221
10222 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
10223 M:      Sudeep Holla <sudeep.holla@arm.com>
10224 L:      linux-arm-kernel@lists.infradead.org
10225 S:      Maintained
10226 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
10227 F:      drivers/clk/clk-scpi.c
10228 F:      drivers/cpufreq/scpi-cpufreq.c
10229 F:      drivers/firmware/arm_scpi.c
10230 F:      include/linux/scpi_protocol.h
10231
10232 SCSI CDROM DRIVER
10233 M:      Jens Axboe <axboe@kernel.dk>
10234 L:      linux-scsi@vger.kernel.org
10235 W:      http://www.kernel.dk
10236 S:      Maintained
10237 F:      drivers/scsi/sr*
10238
10239 SCSI RDMA PROTOCOL (SRP) INITIATOR
10240 M:      Bart Van Assche <bart.vanassche@sandisk.com>
10241 L:      linux-rdma@vger.kernel.org
10242 S:      Supported
10243 W:      http://www.openfabrics.org
10244 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
10246 F:      drivers/infiniband/ulp/srp/
10247 F:      include/scsi/srp.h
10248
10249 SCSI SG DRIVER
10250 M:      Doug Gilbert <dgilbert@interlog.com>
10251 L:      linux-scsi@vger.kernel.org
10252 W:      http://sg.danny.cz/sg
10253 S:      Maintained
10254 F:      Documentation/scsi/scsi-generic.txt
10255 F:      drivers/scsi/sg.c
10256 F:      include/scsi/sg.h
10257
10258 SCSI SUBSYSTEM
10259 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
10260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
10261 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
10262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
10263 L:      linux-scsi@vger.kernel.org
10264 S:      Maintained
10265 F:      Documentation/devicetree/bindings/scsi/
10266 F:      drivers/scsi/
10267 F:      include/scsi/
10268
10269 SCSI TAPE DRIVER
10270 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
10271 L:      linux-scsi@vger.kernel.org
10272 S:      Maintained
10273 F:      Documentation/scsi/st.txt
10274 F:      drivers/scsi/st.*
10275 F:      drivers/scsi/st_*.h
10276
10277 SCTP PROTOCOL
10278 M:      Vlad Yasevich <vyasevich@gmail.com>
10279 M:      Neil Horman <nhorman@tuxdriver.com>
10280 L:      linux-sctp@vger.kernel.org
10281 W:      http://lksctp.sourceforge.net
10282 S:      Maintained
10283 F:      Documentation/networking/sctp.txt
10284 F:      include/linux/sctp.h
10285 F:      include/uapi/linux/sctp.h
10286 F:      include/net/sctp/
10287 F:      net/sctp/
10288
10289 SCx200 CPU SUPPORT
10290 M:      Jim Cromie <jim.cromie@gmail.com>
10291 S:      Odd Fixes
10292 F:      Documentation/i2c/busses/scx200_acb
10293 F:      arch/x86/platform/scx200/
10294 F:      drivers/watchdog/scx200_wdt.c
10295 F:      drivers/i2c/busses/scx200*
10296 F:      drivers/mtd/maps/scx200_docflash.c
10297 F:      include/linux/scx200.h
10298
10299 SCx200 GPIO DRIVER
10300 M:      Jim Cromie <jim.cromie@gmail.com>
10301 S:      Maintained
10302 F:      drivers/char/scx200_gpio.c
10303 F:      include/linux/scx200_gpio.h
10304
10305 SCx200 HRT CLOCKSOURCE DRIVER
10306 M:      Jim Cromie <jim.cromie@gmail.com>
10307 S:      Maintained
10308 F:      drivers/clocksource/scx200_hrt.c
10309
10310 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10311 M:      Sascha Sommer <saschasommer@freenet.de>
10312 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10313 S:      Maintained
10314 F:      drivers/mmc/host/sdricoh_cs.c
10315
10316 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10317 M:      Adrian Hunter <adrian.hunter@intel.com>
10318 L:      linux-mmc@vger.kernel.org
10319 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10320 S:      Maintained
10321 F:      drivers/mmc/host/sdhci*
10322 F:      include/linux/mmc/sdhci*
10323
10324 SECURE COMPUTING
10325 M:      Kees Cook <keescook@chromium.org>
10326 R:      Andy Lutomirski <luto@amacapital.net>
10327 R:      Will Drewry <wad@chromium.org>
10328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10329 S:      Supported
10330 F:      kernel/seccomp.c
10331 F:      include/uapi/linux/seccomp.h
10332 F:      include/linux/seccomp.h
10333 F:      tools/testing/selftests/seccomp/*
10334 K:      \bsecure_computing
10335 K:      \bTIF_SECCOMP\b
10336
10337 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10338 M:      Ben Dooks <ben-linux@fluff.org>
10339 M:      Jaehoon Chung <jh80.chung@samsung.com>
10340 L:      linux-mmc@vger.kernel.org
10341 S:      Maintained
10342 F:      drivers/mmc/host/sdhci-s3c*
10343
10344 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10345 M:      Viresh Kumar <vireshk@kernel.org>
10346 L:      linux-mmc@vger.kernel.org
10347 S:      Maintained
10348 F:      drivers/mmc/host/sdhci-spear.c
10349
10350 SECURITY SUBSYSTEM
10351 M:      James Morris <james.l.morris@oracle.com>
10352 M:      "Serge E. Hallyn" <serge@hallyn.com>
10353 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10355 W:      http://kernsec.org/
10356 S:      Supported
10357 F:      security/
10358
10359 SECURITY CONTACT
10360 M:      Security Officers <security@kernel.org>
10361 S:      Supported
10362
10363 SELINUX SECURITY MODULE
10364 M:      Paul Moore <paul@paul-moore.com>
10365 M:      Stephen Smalley <sds@tycho.nsa.gov>
10366 M:      Eric Paris <eparis@parisplace.org>
10367 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10368 W:      http://selinuxproject.org
10369 T:      git git://git.infradead.org/users/pcmoore/selinux
10370 S:      Supported
10371 F:      include/linux/selinux*
10372 F:      security/selinux/
10373 F:      scripts/selinux/
10374
10375 APPARMOR SECURITY MODULE
10376 M:      John Johansen <john.johansen@canonical.com>
10377 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10378 W:      apparmor.wiki.kernel.org
10379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10380 S:      Supported
10381 F:      security/apparmor/
10382
10383 LOADPIN SECURITY MODULE
10384 M:      Kees Cook <keescook@chromium.org>
10385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10386 S:      Supported
10387 F:      security/loadpin/
10388
10389 YAMA SECURITY MODULE
10390 M:      Kees Cook <keescook@chromium.org>
10391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10392 S:      Supported
10393 F:      security/yama/
10394
10395 SENSABLE PHANTOM
10396 M:      Jiri Slaby <jirislaby@gmail.com>
10397 S:      Maintained
10398 F:      drivers/misc/phantom.c
10399 F:      include/uapi/linux/phantom.h
10400
10401 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10402 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10403 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10404 M:      John Soni Jose <sony.john@avagotech.com>
10405 L:      linux-scsi@vger.kernel.org
10406 W:      http://www.avagotech.com
10407 S:      Supported
10408 F:      drivers/scsi/be2iscsi/
10409
10410 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
10411 M:      Sathya Perla <sathya.perla@broadcom.com>
10412 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10413 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10414 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10415 L:      netdev@vger.kernel.org
10416 W:      http://www.emulex.com
10417 S:      Supported
10418 F:      drivers/net/ethernet/emulex/benet/
10419
10420 EMULEX ONECONNECT ROCE DRIVER
10421 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10422 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10423 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10424 L:      linux-rdma@vger.kernel.org
10425 W:      http://www.emulex.com
10426 S:      Supported
10427 F:      drivers/infiniband/hw/ocrdma/
10428
10429 SFC NETWORK DRIVER
10430 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10431 M:      Edward Cree <ecree@solarflare.com>
10432 M:      Bert Kenward <bkenward@solarflare.com>
10433 L:      netdev@vger.kernel.org
10434 S:      Supported
10435 F:      drivers/net/ethernet/sfc/
10436
10437 SGI GRU DRIVER
10438 M:      Dimitri Sivanich <sivanich@sgi.com>
10439 S:      Maintained
10440 F:      drivers/misc/sgi-gru/
10441
10442 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10443 M:      Pat Gefre <pfg@sgi.com>
10444 L:      linux-ia64@vger.kernel.org
10445 S:      Supported
10446 F:      Documentation/ia64/serial.txt
10447 F:      drivers/tty/serial/ioc?_serial.c
10448 F:      include/linux/ioc?.h
10449
10450 SGI XP/XPC/XPNET DRIVER
10451 M:      Cliff Whickman <cpw@sgi.com>
10452 M:      Robin Holt <robinmholt@gmail.com>
10453 S:      Maintained
10454 F:      drivers/misc/sgi-xp/
10455
10456 SI2157 MEDIA DRIVER
10457 M:      Antti Palosaari <crope@iki.fi>
10458 L:      linux-media@vger.kernel.org
10459 W:      https://linuxtv.org
10460 W:      http://palosaari.fi/linux/
10461 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10462 T:      git git://linuxtv.org/anttip/media_tree.git
10463 S:      Maintained
10464 F:      drivers/media/tuners/si2157*
10465
10466 SI2168 MEDIA DRIVER
10467 M:      Antti Palosaari <crope@iki.fi>
10468 L:      linux-media@vger.kernel.org
10469 W:      https://linuxtv.org
10470 W:      http://palosaari.fi/linux/
10471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10472 T:      git git://linuxtv.org/anttip/media_tree.git
10473 S:      Maintained
10474 F:      drivers/media/dvb-frontends/si2168*
10475
10476 SI470X FM RADIO RECEIVER I2C DRIVER
10477 M:      Hans Verkuil <hverkuil@xs4all.nl>
10478 L:      linux-media@vger.kernel.org
10479 T:      git git://linuxtv.org/media_tree.git
10480 W:      https://linuxtv.org
10481 S:      Odd Fixes
10482 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10483
10484 SI470X FM RADIO RECEIVER USB DRIVER
10485 M:      Hans Verkuil <hverkuil@xs4all.nl>
10486 L:      linux-media@vger.kernel.org
10487 T:      git git://linuxtv.org/media_tree.git
10488 W:      https://linuxtv.org
10489 S:      Maintained
10490 F:      drivers/media/radio/si470x/radio-si470x-common.c
10491 F:      drivers/media/radio/si470x/radio-si470x.h
10492 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10493
10494 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10495 M:      Eduardo Valentin <edubezval@gmail.com>
10496 L:      linux-media@vger.kernel.org
10497 T:      git git://linuxtv.org/media_tree.git
10498 W:      https://linuxtv.org
10499 S:      Odd Fixes
10500 F:      drivers/media/radio/si4713/si4713.?
10501
10502 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10503 M:      Eduardo Valentin <edubezval@gmail.com>
10504 L:      linux-media@vger.kernel.org
10505 T:      git git://linuxtv.org/media_tree.git
10506 W:      https://linuxtv.org
10507 S:      Odd Fixes
10508 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10509
10510 SI4713 FM RADIO TRANSMITTER USB DRIVER
10511 M:      Hans Verkuil <hverkuil@xs4all.nl>
10512 L:      linux-media@vger.kernel.org
10513 T:      git git://linuxtv.org/media_tree.git
10514 W:      https://linuxtv.org
10515 S:      Maintained
10516 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10517
10518 SIANO DVB DRIVER
10519 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
10520 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10521 L:      linux-media@vger.kernel.org
10522 W:      https://linuxtv.org
10523 T:      git git://linuxtv.org/media_tree.git
10524 S:      Odd fixes
10525 F:      drivers/media/common/siano/
10526 F:      drivers/media/usb/siano/
10527 F:      drivers/media/usb/siano/
10528 F:      drivers/media/mmc/siano/
10529
10530 SIMPLEFB FB DRIVER
10531 M:      Hans de Goede <hdegoede@redhat.com>
10532 L:      linux-fbdev@vger.kernel.org
10533 S:      Maintained
10534 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10535 F:      drivers/video/fbdev/simplefb.c
10536 F:      include/linux/platform_data/simplefb.h
10537
10538 SH_VEU V4L2 MEM2MEM DRIVER
10539 L:      linux-media@vger.kernel.org
10540 S:      Orphan
10541 F:      drivers/media/platform/sh_veu.c
10542
10543 SH_VOU V4L2 OUTPUT DRIVER
10544 L:      linux-media@vger.kernel.org
10545 S:      Orphan
10546 F:      drivers/media/platform/sh_vou.c
10547 F:      include/media/drv-intf/sh_vou.h
10548
10549 SIMPLE FIRMWARE INTERFACE (SFI)
10550 M:      Len Brown <lenb@kernel.org>
10551 L:      sfi-devel@simplefirmware.org
10552 W:      http://simplefirmware.org/
10553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10554 S:      Supported
10555 F:      arch/x86/platform/sfi/
10556 F:      drivers/sfi/
10557 F:      include/linux/sfi*.h
10558
10559 SIMTEC EB110ATX (Chalice CATS)
10560 P:      Ben Dooks
10561 P:      Vincent Sanders <vince@simtec.co.uk>
10562 M:      Simtec Linux Team <linux@simtec.co.uk>
10563 W:      http://www.simtec.co.uk/products/EB110ATX/
10564 S:      Supported
10565
10566 SIMTEC EB2410ITX (BAST)
10567 P:      Ben Dooks
10568 P:      Vincent Sanders <vince@simtec.co.uk>
10569 M:      Simtec Linux Team <linux@simtec.co.uk>
10570 W:      http://www.simtec.co.uk/products/EB2410ITX/
10571 S:      Supported
10572 F:      arch/arm/mach-s3c24xx/mach-bast.c
10573 F:      arch/arm/mach-s3c24xx/bast-ide.c
10574 F:      arch/arm/mach-s3c24xx/bast-irq.c
10575
10576 TI DAVINCI MACHINE SUPPORT
10577 M:      Sekhar Nori <nsekhar@ti.com>
10578 M:      Kevin Hilman <khilman@kernel.org>
10579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10581 S:      Supported
10582 F:      arch/arm/mach-davinci/
10583 F:      drivers/i2c/busses/i2c-davinci.c
10584
10585 TI DAVINCI SERIES MEDIA DRIVER
10586 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10587 L:      linux-media@vger.kernel.org
10588 W:      https://linuxtv.org
10589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10590 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10591 S:      Maintained
10592 F:      drivers/media/platform/davinci/
10593 F:      include/media/davinci/
10594
10595 TI AM437X VPFE DRIVER
10596 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10597 L:      linux-media@vger.kernel.org
10598 W:      https://linuxtv.org
10599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10600 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10601 S:      Maintained
10602 F:      drivers/media/platform/am437x/
10603
10604 OV2659 OMNIVISION SENSOR DRIVER
10605 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10606 L:      linux-media@vger.kernel.org
10607 W:      https://linuxtv.org
10608 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10609 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10610 S:      Maintained
10611 F:      drivers/media/i2c/ov2659.c
10612 F:      include/media/i2c/ov2659.h
10613
10614 SILICON MOTION SM712 FRAME BUFFER DRIVER
10615 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10616 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10617 M:      Sudip Mukherjee <sudip@vectorindia.org>
10618 L:      linux-fbdev@vger.kernel.org
10619 S:      Maintained
10620 F:      drivers/video/fbdev/sm712*
10621 F:      Documentation/fb/sm712fb.txt
10622
10623 SIS 190 ETHERNET DRIVER
10624 M:      Francois Romieu <romieu@fr.zoreil.com>
10625 L:      netdev@vger.kernel.org
10626 S:      Maintained
10627 F:      drivers/net/ethernet/sis/sis190.c
10628
10629 SIS 900/7016 FAST ETHERNET DRIVER
10630 M:      Daniele Venzano <venza@brownhat.org>
10631 W:      http://www.brownhat.org/sis900.html
10632 L:      netdev@vger.kernel.org
10633 S:      Maintained
10634 F:      drivers/net/ethernet/sis/sis900.*
10635
10636 SIS FRAMEBUFFER DRIVER
10637 M:      Thomas Winischhofer <thomas@winischhofer.net>
10638 W:      http://www.winischhofer.net/linuxsisvga.shtml
10639 S:      Maintained
10640 F:      Documentation/fb/sisfb.txt
10641 F:      drivers/video/fbdev/sis/
10642 F:      include/video/sisfb.h
10643
10644 SIS USB2VGA DRIVER
10645 M:      Thomas Winischhofer <thomas@winischhofer.net>
10646 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10647 S:      Maintained
10648 F:      drivers/usb/misc/sisusbvga/
10649
10650 SLAB ALLOCATOR
10651 M:      Christoph Lameter <cl@linux.com>
10652 M:      Pekka Enberg <penberg@kernel.org>
10653 M:      David Rientjes <rientjes@google.com>
10654 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10655 M:      Andrew Morton <akpm@linux-foundation.org>
10656 L:      linux-mm@kvack.org
10657 S:      Maintained
10658 F:      include/linux/sl?b*.h
10659 F:      mm/sl?b*
10660
10661 SLEEPABLE READ-COPY UPDATE (SRCU)
10662 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10663 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10664 M:      Josh Triplett <josh@joshtriplett.org>
10665 R:      Steven Rostedt <rostedt@goodmis.org>
10666 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10667 L:      linux-kernel@vger.kernel.org
10668 W:      http://www.rdrop.com/users/paulmck/RCU/
10669 S:      Supported
10670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10671 F:      include/linux/srcu.h
10672 F:      kernel/rcu/srcu.c
10673
10674 SMACK SECURITY MODULE
10675 M:      Casey Schaufler <casey@schaufler-ca.com>
10676 L:      linux-security-module@vger.kernel.org
10677 W:      http://schaufler-ca.com
10678 T:      git git://github.com/cschaufler/smack-next
10679 S:      Maintained
10680 F:      Documentation/security/Smack.txt
10681 F:      security/smack/
10682
10683 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10684 M:      Kevin Hilman <khilman@kernel.org>
10685 M:      Nishanth Menon <nm@ti.com>
10686 S:      Maintained
10687 F:      drivers/power/avs/
10688 F:      include/linux/power/smartreflex.h
10689 L:      linux-pm@vger.kernel.org
10690
10691 SMC91x ETHERNET DRIVER
10692 M:      Nicolas Pitre <nico@fluxnic.net>
10693 S:      Odd Fixes
10694 F:      drivers/net/ethernet/smsc/smc91x.*
10695
10696 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10697 M:      Sakari Ailus <sakari.ailus@iki.fi>
10698 L:      linux-media@vger.kernel.org
10699 S:      Maintained
10700 F:      drivers/media/i2c/smiapp/
10701 F:      include/media/i2c/smiapp.h
10702 F:      drivers/media/i2c/smiapp-pll.c
10703 F:      drivers/media/i2c/smiapp-pll.h
10704 F:      include/uapi/linux/smiapp.h
10705 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10706
10707 SMM665 HARDWARE MONITOR DRIVER
10708 M:      Guenter Roeck <linux@roeck-us.net>
10709 L:      linux-hwmon@vger.kernel.org
10710 S:      Maintained
10711 F:      Documentation/hwmon/smm665
10712 F:      drivers/hwmon/smm665.c
10713
10714 SMSC EMC2103 HARDWARE MONITOR DRIVER
10715 M:      Steve Glendinning <steve.glendinning@shawell.net>
10716 L:      linux-hwmon@vger.kernel.org
10717 S:      Maintained
10718 F:      Documentation/hwmon/emc2103
10719 F:      drivers/hwmon/emc2103.c
10720
10721 SMSC SCH5627 HARDWARE MONITOR DRIVER
10722 M:      Hans de Goede <hdegoede@redhat.com>
10723 L:      linux-hwmon@vger.kernel.org
10724 S:      Supported
10725 F:      Documentation/hwmon/sch5627
10726 F:      drivers/hwmon/sch5627.c
10727
10728 SMSC47B397 HARDWARE MONITOR DRIVER
10729 M:      Jean Delvare <jdelvare@suse.com>
10730 L:      linux-hwmon@vger.kernel.org
10731 S:      Maintained
10732 F:      Documentation/hwmon/smsc47b397
10733 F:      drivers/hwmon/smsc47b397.c
10734
10735 SMSC911x ETHERNET DRIVER
10736 M:      Steve Glendinning <steve.glendinning@shawell.net>
10737 L:      netdev@vger.kernel.org
10738 S:      Maintained
10739 F:      include/linux/smsc911x.h
10740 F:      drivers/net/ethernet/smsc/smsc911x.*
10741
10742 SMSC9420 PCI ETHERNET DRIVER
10743 M:      Steve Glendinning <steve.glendinning@shawell.net>
10744 L:      netdev@vger.kernel.org
10745 S:      Maintained
10746 F:      drivers/net/ethernet/smsc/smsc9420.*
10747
10748 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10749 M:      Steve Glendinning <steve.glendinning@shawell.net>
10750 L:      linux-fbdev@vger.kernel.org
10751 S:      Maintained
10752 F:      drivers/video/fbdev/smscufx.c
10753
10754 SOC-CAMERA V4L2 SUBSYSTEM
10755 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10756 L:      linux-media@vger.kernel.org
10757 T:      git git://linuxtv.org/media_tree.git
10758 S:      Maintained
10759 F:      include/media/soc*
10760 F:      drivers/media/i2c/soc_camera/
10761 F:      drivers/media/platform/soc_camera/
10762
10763 SOEKRIS NET48XX LED SUPPORT
10764 M:      Chris Boot <bootc@bootc.net>
10765 S:      Maintained
10766 F:      drivers/leds/leds-net48xx.c
10767
10768 SOFTLOGIC 6x10 MPEG CODEC
10769 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10770 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10771 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10772 M:      Ismael Luceno <ismael@iodev.co.uk>
10773 L:      linux-media@vger.kernel.org
10774 S:      Supported
10775 F:      drivers/media/pci/solo6x10/
10776
10777 SOFTWARE RAID (Multiple Disks) SUPPORT
10778 M:      Shaohua Li <shli@kernel.org>
10779 L:      linux-raid@vger.kernel.org
10780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10781 S:      Supported
10782 F:      drivers/md/
10783 F:      include/linux/raid/
10784 F:      include/uapi/linux/raid/
10785
10786 SONIC NETWORK DRIVER
10787 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10788 L:      netdev@vger.kernel.org
10789 S:      Maintained
10790 F:      drivers/net/ethernet/natsemi/sonic.*
10791
10792 SONICS SILICON BACKPLANE DRIVER (SSB)
10793 M:      Michael Buesch <m@bues.ch>
10794 L:      linux-wireless@vger.kernel.org
10795 S:      Maintained
10796 F:      drivers/ssb/
10797 F:      include/linux/ssb/
10798
10799 SONY VAIO CONTROL DEVICE DRIVER
10800 M:      Mattia Dongili <malattia@linux.it>
10801 L:      platform-driver-x86@vger.kernel.org
10802 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10803 S:      Maintained
10804 F:      Documentation/laptops/sony-laptop.txt
10805 F:      drivers/char/sonypi.c
10806 F:      drivers/platform/x86/sony-laptop.c
10807 F:      include/linux/sony-laptop.h
10808
10809 SONY MEMORYSTICK CARD SUPPORT
10810 M:      Alex Dubov <oakad@yahoo.com>
10811 W:      http://tifmxx.berlios.de/
10812 S:      Maintained
10813 F:      drivers/memstick/host/tifm_ms.c
10814
10815 SONY MEMORYSTICK STANDARD SUPPORT
10816 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10817 S:      Maintained
10818 F:      drivers/memstick/core/ms_block.*
10819
10820 SOUND
10821 M:      Jaroslav Kysela <perex@perex.cz>
10822 M:      Takashi Iwai <tiwai@suse.com>
10823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10824 W:      http://www.alsa-project.org/
10825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10826 T:      git git://git.alsa-project.org/alsa-kernel.git
10827 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10828 S:      Maintained
10829 F:      Documentation/sound/
10830 F:      include/sound/
10831 F:      include/uapi/sound/
10832 F:      sound/
10833
10834 SOUND - COMPRESSED AUDIO
10835 M:      Vinod Koul <vinod.koul@intel.com>
10836 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10838 S:      Supported
10839 F:      Documentation/sound/alsa/compress_offload.txt
10840 F:      include/sound/compress_driver.h
10841 F:      include/uapi/sound/compress_*
10842 F:      sound/core/compress_offload.c
10843 F:      sound/soc/soc-compress.c
10844
10845 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10846 M:      Liam Girdwood <lgirdwood@gmail.com>
10847 M:      Mark Brown <broonie@kernel.org>
10848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10850 W:      http://alsa-project.org/main/index.php/ASoC
10851 S:      Supported
10852 F:      Documentation/sound/alsa/soc/
10853 F:      sound/soc/
10854 F:      include/sound/soc*
10855
10856 SOUND - DMAENGINE HELPERS
10857 M:      Lars-Peter Clausen <lars@metafoo.de>
10858 S:      Supported
10859 F:      include/sound/dmaengine_pcm.h
10860 F:      sound/core/pcm_dmaengine.c
10861 F:      sound/soc/soc-generic-dmaengine-pcm.c
10862
10863 SP2 MEDIA DRIVER
10864 M:      Olli Salonen <olli.salonen@iki.fi>
10865 L:      linux-media@vger.kernel.org
10866 W:      https://linuxtv.org
10867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10868 S:      Maintained
10869 F:      drivers/media/dvb-frontends/sp2*
10870
10871 SPARC + UltraSPARC (sparc/sparc64)
10872 M:      "David S. Miller" <davem@davemloft.net>
10873 L:      sparclinux@vger.kernel.org
10874 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10877 S:      Maintained
10878 F:      arch/sparc/
10879 F:      drivers/sbus/
10880
10881 SPARC SERIAL DRIVERS
10882 M:      "David S. Miller" <davem@davemloft.net>
10883 L:      sparclinux@vger.kernel.org
10884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10886 S:      Maintained
10887 F:      include/linux/sunserialcore.h
10888 F:      drivers/tty/serial/suncore.c
10889 F:      drivers/tty/serial/sunhv.c
10890 F:      drivers/tty/serial/sunsab.c
10891 F:      drivers/tty/serial/sunsab.h
10892 F:      drivers/tty/serial/sunsu.c
10893 F:      drivers/tty/serial/sunzilog.c
10894 F:      drivers/tty/serial/sunzilog.h
10895
10896 SPARSE CHECKER
10897 M:      "Christopher Li" <sparse@chrisli.org>
10898 L:      linux-sparse@vger.kernel.org
10899 W:      https://sparse.wiki.kernel.org/
10900 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10901 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10902 S:      Maintained
10903 F:      include/linux/compiler.h
10904
10905 SPEAR PLATFORM SUPPORT
10906 M:      Viresh Kumar <vireshk@kernel.org>
10907 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10909 W:      http://www.st.com/spear
10910 S:      Maintained
10911 F:      arch/arm/boot/dts/spear*
10912 F:      arch/arm/mach-spear/
10913
10914 SPEAR CLOCK FRAMEWORK SUPPORT
10915 M:      Viresh Kumar <vireshk@kernel.org>
10916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10917 W:      http://www.st.com/spear
10918 S:      Maintained
10919 F:      drivers/clk/spear/
10920
10921 SPI SUBSYSTEM
10922 M:      Mark Brown <broonie@kernel.org>
10923 L:      linux-spi@vger.kernel.org
10924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10925 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10926 S:      Maintained
10927 F:      Documentation/devicetree/bindings/spi/
10928 F:      Documentation/spi/
10929 F:      drivers/spi/
10930 F:      include/linux/spi/
10931 F:      include/uapi/linux/spi/
10932
10933 SPIDERNET NETWORK DRIVER for CELL
10934 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10935 L:      netdev@vger.kernel.org
10936 S:      Supported
10937 F:      Documentation/networking/spider_net.txt
10938 F:      drivers/net/ethernet/toshiba/spider_net*
10939
10940 SPU FILE SYSTEM
10941 M:      Jeremy Kerr <jk@ozlabs.org>
10942 L:      linuxppc-dev@lists.ozlabs.org
10943 W:      http://www.ibm.com/developerworks/power/cell/
10944 S:      Supported
10945 F:      Documentation/filesystems/spufs.txt
10946 F:      arch/powerpc/platforms/cell/spufs/
10947
10948 SQUASHFS FILE SYSTEM
10949 M:      Phillip Lougher <phillip@squashfs.org.uk>
10950 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10951 W:      http://squashfs.org.uk
10952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10953 S:      Maintained
10954 F:      Documentation/filesystems/squashfs.txt
10955 F:      fs/squashfs/
10956
10957 SRM (Alpha) environment access
10958 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10959 S:      Maintained
10960 F:      arch/alpha/kernel/srm_env.c
10961
10962 STABLE BRANCH
10963 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10964 L:      stable@vger.kernel.org
10965 S:      Supported
10966 F:      Documentation/stable_kernel_rules.txt
10967
10968 STAGING SUBSYSTEM
10969 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10971 L:      devel@driverdev.osuosl.org
10972 S:      Supported
10973 F:      drivers/staging/
10974
10975 STAGING - COMEDI
10976 M:      Ian Abbott <abbotti@mev.co.uk>
10977 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10978 S:      Odd Fixes
10979 F:      drivers/staging/comedi/
10980
10981 STAGING - FLARION FT1000 DRIVERS
10982 M:      Marek Belisko <marek.belisko@gmail.com>
10983 S:      Odd Fixes
10984 F:      drivers/staging/ft1000/
10985
10986 STAGING - INDUSTRIAL IO
10987 M:      Jonathan Cameron <jic23@kernel.org>
10988 L:      linux-iio@vger.kernel.org
10989 S:      Odd Fixes
10990 F:      Documentation/devicetree/bindings/staging/iio/
10991 F:      drivers/staging/iio/
10992
10993 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10994 M:      Jarod Wilson <jarod@wilsonet.com>
10995 W:      http://www.lirc.org/
10996 S:      Odd Fixes
10997 F:      drivers/staging/media/lirc/
10998
10999 STAGING - LUSTRE PARALLEL FILESYSTEM
11000 M:      Oleg Drokin <oleg.drokin@intel.com>
11001 M:      Andreas Dilger <andreas.dilger@intel.com>
11002 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
11003 W:      http://wiki.lustre.org/
11004 S:      Maintained
11005 F:      drivers/staging/lustre
11006
11007 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
11008 M:      Marc Dietrich <marvin24@gmx.de>
11009 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
11010 L:      linux-tegra@vger.kernel.org
11011 S:      Maintained
11012 F:      drivers/staging/nvec/
11013
11014 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
11015 M:      Jens Frederich <jfrederich@gmail.com>
11016 M:      Daniel Drake <dsd@laptop.org>
11017 M:      Jon Nettleton <jon.nettleton@gmail.com>
11018 W:      http://wiki.laptop.org/go/DCON
11019 S:      Maintained
11020 F:      drivers/staging/olpc_dcon/
11021
11022 STAGING - REALTEK RTL8712U DRIVERS
11023 M:      Larry Finger <Larry.Finger@lwfinger.net>
11024 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
11025 S:      Odd Fixes
11026 F:      drivers/staging/rtl8712/
11027
11028 STAGING - REALTEK RTL8723U WIRELESS DRIVER
11029 M:      Larry Finger <Larry.Finger@lwfinger.net>
11030 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
11031 L:      linux-wireless@vger.kernel.org
11032 S:      Maintained
11033 F:      drivers/staging/rtl8723au/
11034
11035 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
11036 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11037 M:      Teddy Wang <teddy.wang@siliconmotion.com>
11038 M:      Sudip Mukherjee <sudip@vectorindia.org>
11039 L:      linux-fbdev@vger.kernel.org
11040 S:      Maintained
11041 F:      drivers/staging/sm750fb/
11042
11043 STAGING - SLICOSS
11044 M:      Lior Dotan <liodot@gmail.com>
11045 M:      Christopher Harrer <charrer@alacritech.com>
11046 S:      Odd Fixes
11047 F:      drivers/staging/slicoss/
11048
11049 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
11050 M:      William Hubbs <w.d.hubbs@gmail.com>
11051 M:      Chris Brannon <chris@the-brannons.com>
11052 M:      Kirk Reiser <kirk@reisers.ca>
11053 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
11054 L:      speakup@linux-speakup.org
11055 W:      http://www.linux-speakup.org/
11056 S:      Odd Fixes
11057 F:      drivers/staging/speakup/
11058
11059 STAGING - VIA VT665X DRIVERS
11060 M:      Forest Bond <forest@alittletooquiet.net>
11061 S:      Odd Fixes
11062 F:      drivers/staging/vt665?/
11063
11064 STAGING - WILC1000 WIFI DRIVER
11065 M:      Johnny Kim <johnny.kim@atmel.com>
11066 M:      Austin Shin <austin.shin@atmel.com>
11067 M:      Chris Park <chris.park@atmel.com>
11068 M:      Tony Cho <tony.cho@atmel.com>
11069 M:      Glen Lee <glen.lee@atmel.com>
11070 M:      Leo Kim <leo.kim@atmel.com>
11071 L:      linux-wireless@vger.kernel.org
11072 S:      Supported
11073 F:      drivers/staging/wilc1000/
11074
11075 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
11076 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
11077 S:      Odd Fixes
11078 F:      drivers/staging/xgifb/
11079
11080 STARFIRE/DURALAN NETWORK DRIVER
11081 M:      Ion Badulescu <ionut@badula.org>
11082 S:      Odd Fixes
11083 F:      drivers/net/ethernet/adaptec/starfire*
11084
11085 SUN3/3X
11086 M:      Sam Creasey <sammy@sammy.net>
11087 W:      http://sammy.net/sun3/
11088 S:      Maintained
11089 F:      arch/m68k/kernel/*sun3*
11090 F:      arch/m68k/sun3*/
11091 F:      arch/m68k/include/asm/sun3*
11092 F:      drivers/net/ethernet/i825xx/sun3*
11093
11094 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
11095 M:      Hans de Goede <hdegoede@redhat.com>
11096 L:      linux-input@vger.kernel.org
11097 S:      Maintained
11098 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
11099 F:      drivers/input/keyboard/sun4i-lradc-keys.c
11100
11101 SUNDANCE NETWORK DRIVER
11102 M:      Denis Kirjanov <kda@linux-powerpc.org>
11103 L:      netdev@vger.kernel.org
11104 S:      Maintained
11105 F:      drivers/net/ethernet/dlink/sundance.c
11106
11107 SUPERH
11108 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
11109 M:      Rich Felker <dalias@libc.org>
11110 L:      linux-sh@vger.kernel.org
11111 Q:      http://patchwork.kernel.org/project/linux-sh/list/
11112 S:      Maintained
11113 F:      Documentation/sh/
11114 F:      arch/sh/
11115 F:      drivers/sh/
11116
11117 SUSPEND TO RAM
11118 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11119 M:      Len Brown <len.brown@intel.com>
11120 M:      Pavel Machek <pavel@ucw.cz>
11121 L:      linux-pm@vger.kernel.org
11122 S:      Supported
11123 F:      Documentation/power/
11124 F:      arch/x86/kernel/acpi/
11125 F:      drivers/base/power/
11126 F:      kernel/power/
11127 F:      include/linux/suspend.h
11128 F:      include/linux/freezer.h
11129 F:      include/linux/pm.h
11130
11131 SVGA HANDLING
11132 M:      Martin Mares <mj@ucw.cz>
11133 L:      linux-video@atrey.karlin.mff.cuni.cz
11134 S:      Maintained
11135 F:      Documentation/svga.txt
11136 F:      arch/x86/boot/video*
11137
11138 SWIOTLB SUBSYSTEM
11139 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11140 L:      linux-kernel@vger.kernel.org
11141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
11142 S:      Supported
11143 F:      lib/swiotlb.c
11144 F:      arch/*/kernel/pci-swiotlb.c
11145 F:      include/linux/swiotlb.h
11146
11147 SWITCHDEV
11148 M:      Jiri Pirko <jiri@resnulli.us>
11149 L:      netdev@vger.kernel.org
11150 S:      Supported
11151 F:      net/switchdev/
11152 F:      include/net/switchdev.h
11153
11154 SYNOPSYS ARC ARCHITECTURE
11155 M:      Vineet Gupta <vgupta@synopsys.com>
11156 L:      linux-snps-arc@lists.infradead.org
11157 S:      Supported
11158 F:      arch/arc/
11159 F:      Documentation/devicetree/bindings/arc/*
11160 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
11161 F:      drivers/tty/serial/arc_uart.c
11162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
11163
11164 SYNOPSYS ARC SDP platform support
11165 M:      Alexey Brodkin <abrodkin@synopsys.com>
11166 S:      Supported
11167 F:      arch/arc/plat-axs10x
11168 F:      arch/arc/boot/dts/ax*
11169 F:      Documentation/devicetree/bindings/arc/axs10*
11170
11171 SYSTEM CONFIGURATION (SYSCON)
11172 M:      Lee Jones <lee.jones@linaro.org>
11173 M:      Arnd Bergmann <arnd@arndb.de>
11174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11175 S:      Supported
11176 F:      drivers/mfd/syscon.c
11177
11178 SYSV FILESYSTEM
11179 M:      Christoph Hellwig <hch@infradead.org>
11180 S:      Maintained
11181 F:      Documentation/filesystems/sysv-fs.txt
11182 F:      fs/sysv/
11183 F:      include/linux/sysv_fs.h
11184
11185 TARGET SUBSYSTEM
11186 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
11187 L:      linux-scsi@vger.kernel.org
11188 L:      target-devel@vger.kernel.org
11189 W:      http://www.linux-iscsi.org
11190 W:      http://groups.google.com/group/linux-iscsi-target-dev
11191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11192 S:      Supported
11193 F:      drivers/target/
11194 F:      include/target/
11195 F:      Documentation/target/
11196
11197 TASKSTATS STATISTICS INTERFACE
11198 M:      Balbir Singh <bsingharora@gmail.com>
11199 S:      Maintained
11200 F:      Documentation/accounting/taskstats*
11201 F:      include/linux/taskstats*
11202 F:      kernel/taskstats.c
11203
11204 TC CLASSIFIER
11205 M:      Jamal Hadi Salim <jhs@mojatatu.com>
11206 L:      netdev@vger.kernel.org
11207 S:      Maintained
11208 F:      include/net/pkt_cls.h
11209 F:      include/uapi/linux/pkt_cls.h
11210 F:      net/sched/
11211
11212 TCP LOW PRIORITY MODULE
11213 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
11214 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
11215 W:      http://tcp-lp-mod.sourceforge.net/
11216 S:      Maintained
11217 F:      net/ipv4/tcp_lp.c
11218
11219 TDA10071 MEDIA DRIVER
11220 M:      Antti Palosaari <crope@iki.fi>
11221 L:      linux-media@vger.kernel.org
11222 W:      https://linuxtv.org
11223 W:      http://palosaari.fi/linux/
11224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11225 T:      git git://linuxtv.org/anttip/media_tree.git
11226 S:      Maintained
11227 F:      drivers/media/dvb-frontends/tda10071*
11228
11229 TDA18212 MEDIA DRIVER
11230 M:      Antti Palosaari <crope@iki.fi>
11231 L:      linux-media@vger.kernel.org
11232 W:      https://linuxtv.org
11233 W:      http://palosaari.fi/linux/
11234 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11235 T:      git git://linuxtv.org/anttip/media_tree.git
11236 S:      Maintained
11237 F:      drivers/media/tuners/tda18212*
11238
11239 TDA18218 MEDIA DRIVER
11240 M:      Antti Palosaari <crope@iki.fi>
11241 L:      linux-media@vger.kernel.org
11242 W:      https://linuxtv.org
11243 W:      http://palosaari.fi/linux/
11244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11245 T:      git git://linuxtv.org/anttip/media_tree.git
11246 S:      Maintained
11247 F:      drivers/media/tuners/tda18218*
11248
11249 TDA18271 MEDIA DRIVER
11250 M:      Michael Krufky <mkrufky@linuxtv.org>
11251 L:      linux-media@vger.kernel.org
11252 W:      https://linuxtv.org
11253 W:      http://github.com/mkrufky
11254 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11255 T:      git git://linuxtv.org/mkrufky/tuners.git
11256 S:      Maintained
11257 F:      drivers/media/tuners/tda18271*
11258
11259 TDA827x MEDIA DRIVER
11260 M:      Michael Krufky <mkrufky@linuxtv.org>
11261 L:      linux-media@vger.kernel.org
11262 W:      https://linuxtv.org
11263 W:      http://github.com/mkrufky
11264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11265 T:      git git://linuxtv.org/mkrufky/tuners.git
11266 S:      Maintained
11267 F:      drivers/media/tuners/tda8290.*
11268
11269 TDA8290 MEDIA DRIVER
11270 M:      Michael Krufky <mkrufky@linuxtv.org>
11271 L:      linux-media@vger.kernel.org
11272 W:      https://linuxtv.org
11273 W:      http://github.com/mkrufky
11274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11275 T:      git git://linuxtv.org/mkrufky/tuners.git
11276 S:      Maintained
11277 F:      drivers/media/tuners/tda8290.*
11278
11279 TDA9840 MEDIA DRIVER
11280 M:      Hans Verkuil <hverkuil@xs4all.nl>
11281 L:      linux-media@vger.kernel.org
11282 T:      git git://linuxtv.org/media_tree.git
11283 W:      https://linuxtv.org
11284 S:      Maintained
11285 F:      drivers/media/i2c/tda9840*
11286
11287 TEA5761 TUNER DRIVER
11288 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11289 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11290 L:      linux-media@vger.kernel.org
11291 W:      https://linuxtv.org
11292 T:      git git://linuxtv.org/media_tree.git
11293 S:      Odd fixes
11294 F:      drivers/media/tuners/tea5761.*
11295
11296 TEA5767 TUNER DRIVER
11297 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11298 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11299 L:      linux-media@vger.kernel.org
11300 W:      https://linuxtv.org
11301 T:      git git://linuxtv.org/media_tree.git
11302 S:      Maintained
11303 F:      drivers/media/tuners/tea5767.*
11304
11305 TEA6415C MEDIA DRIVER
11306 M:      Hans Verkuil <hverkuil@xs4all.nl>
11307 L:      linux-media@vger.kernel.org
11308 T:      git git://linuxtv.org/media_tree.git
11309 W:      https://linuxtv.org
11310 S:      Maintained
11311 F:      drivers/media/i2c/tea6415c*
11312
11313 TEA6420 MEDIA DRIVER
11314 M:      Hans Verkuil <hverkuil@xs4all.nl>
11315 L:      linux-media@vger.kernel.org
11316 T:      git git://linuxtv.org/media_tree.git
11317 W:      https://linuxtv.org
11318 S:      Maintained
11319 F:      drivers/media/i2c/tea6420*
11320
11321 TEAM DRIVER
11322 M:      Jiri Pirko <jiri@resnulli.us>
11323 L:      netdev@vger.kernel.org
11324 S:      Supported
11325 F:      drivers/net/team/
11326 F:      include/linux/if_team.h
11327 F:      include/uapi/linux/if_team.h
11328
11329 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11330 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11331 S:      Maintained
11332 F:      arch/x86/platform/ts5500/
11333
11334 TECHNOTREND USB IR RECEIVER
11335 M:      Sean Young <sean@mess.org>
11336 L:      linux-media@vger.kernel.org
11337 S:      Maintained
11338 F:      drivers/media/rc/ttusbir.c
11339
11340 TEGRA ARCHITECTURE SUPPORT
11341 M:      Stephen Warren <swarren@wwwdotorg.org>
11342 M:      Thierry Reding <thierry.reding@gmail.com>
11343 M:      Alexandre Courbot <gnurou@gmail.com>
11344 L:      linux-tegra@vger.kernel.org
11345 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11347 S:      Supported
11348 N:      [^a-z]tegra
11349
11350 TEGRA CLOCK DRIVER
11351 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11352 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11353 S:      Supported
11354 F:      drivers/clk/tegra/
11355
11356 TEGRA DMA DRIVERS
11357 M:      Laxman Dewangan <ldewangan@nvidia.com>
11358 M:      Jon Hunter <jonathanh@nvidia.com>
11359 S:      Supported
11360 F:      drivers/dma/tegra*
11361
11362 TEGRA I2C DRIVER
11363 M:      Laxman Dewangan <ldewangan@nvidia.com>
11364 S:      Supported
11365 F:      drivers/i2c/busses/i2c-tegra.c
11366
11367 TEGRA IOMMU DRIVERS
11368 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11369 S:      Supported
11370 F:      drivers/iommu/tegra*
11371
11372 TEGRA KBC DRIVER
11373 M:      Rakesh Iyer <riyer@nvidia.com>
11374 M:      Laxman Dewangan <ldewangan@nvidia.com>
11375 S:      Supported
11376 F:      drivers/input/keyboard/tegra-kbc.c
11377
11378 TEGRA PWM DRIVER
11379 M:      Thierry Reding <thierry.reding@gmail.com>
11380 S:      Supported
11381 F:      drivers/pwm/pwm-tegra.c
11382
11383 TEGRA SERIAL DRIVER
11384 M:      Laxman Dewangan <ldewangan@nvidia.com>
11385 S:      Supported
11386 F:      drivers/tty/serial/serial-tegra.c
11387
11388 TEGRA SPI DRIVER
11389 M:      Laxman Dewangan <ldewangan@nvidia.com>
11390 S:      Supported
11391 F:      drivers/spi/spi-tegra*
11392
11393 TEHUTI ETHERNET DRIVER
11394 M:      Andy Gospodarek <andy@greyhouse.net>
11395 L:      netdev@vger.kernel.org
11396 S:      Supported
11397 F:      drivers/net/ethernet/tehuti/*
11398
11399 Telecom Clock Driver for MCPL0010
11400 M:      Mark Gross <mark.gross@intel.com>
11401 S:      Supported
11402 F:      drivers/char/tlclk.c
11403
11404 TENSILICA XTENSA PORT (xtensa)
11405 M:      Chris Zankel <chris@zankel.net>
11406 M:      Max Filippov <jcmvbkbc@gmail.com>
11407 L:      linux-xtensa@linux-xtensa.org
11408 T:      git git://github.com/czankel/xtensa-linux.git
11409 S:      Maintained
11410 F:      arch/xtensa/
11411 F:      drivers/irqchip/irq-xtensa-*
11412
11413 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11414 M:      Hans Verkuil <hverkuil@xs4all.nl>
11415 L:      linux-media@vger.kernel.org
11416 T:      git git://linuxtv.org/media_tree.git
11417 W:      https://linuxtv.org
11418 S:      Maintained
11419 F:      drivers/media/radio/radio-raremono.c
11420
11421 THERMAL
11422 M:      Zhang Rui <rui.zhang@intel.com>
11423 M:      Eduardo Valentin <edubezval@gmail.com>
11424 L:      linux-pm@vger.kernel.org
11425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11427 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11428 S:      Supported
11429 F:      drivers/thermal/
11430 F:      include/linux/thermal.h
11431 F:      include/uapi/linux/thermal.h
11432 F:      include/linux/cpu_cooling.h
11433 F:      Documentation/devicetree/bindings/thermal/
11434
11435 THERMAL/CPU_COOLING
11436 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11437 M:      Viresh Kumar <viresh.kumar@linaro.org>
11438 M:      Javi Merino <javi.merino@arm.com>
11439 L:      linux-pm@vger.kernel.org
11440 S:      Supported
11441 F:      Documentation/thermal/cpu-cooling-api.txt
11442 F:      drivers/thermal/cpu_cooling.c
11443 F:      include/linux/cpu_cooling.h
11444
11445 THINKPAD ACPI EXTRAS DRIVER
11446 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11447 L:      ibm-acpi-devel@lists.sourceforge.net
11448 L:      platform-driver-x86@vger.kernel.org
11449 W:      http://ibm-acpi.sourceforge.net
11450 W:      http://thinkwiki.org/wiki/Ibm-acpi
11451 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11452 S:      Maintained
11453 F:      drivers/platform/x86/thinkpad_acpi.c
11454
11455 TI BANDGAP AND THERMAL DRIVER
11456 M:      Eduardo Valentin <edubezval@gmail.com>
11457 M:      Keerthy <j-keerthy@ti.com>
11458 L:      linux-pm@vger.kernel.org
11459 L:      linux-omap@vger.kernel.org
11460 S:      Maintained
11461 F:      drivers/thermal/ti-soc-thermal/
11462
11463 TI VPE/CAL DRIVERS
11464 M:      Benoit Parrot <bparrot@ti.com>
11465 L:      linux-media@vger.kernel.org
11466 W:      http://linuxtv.org/
11467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11468 S:      Maintained
11469 F:      drivers/media/platform/ti-vpe/
11470
11471 TI CDCE706 CLOCK DRIVER
11472 M:      Max Filippov <jcmvbkbc@gmail.com>
11473 S:      Maintained
11474 F:      drivers/clk/clk-cdce706.c
11475
11476 TI CLOCK DRIVER
11477 M:      Tero Kristo <t-kristo@ti.com>
11478 L:      linux-omap@vger.kernel.org
11479 S:      Maintained
11480 F:      drivers/clk/ti/
11481 F:      include/linux/clk/ti.h
11482
11483 TI ETHERNET SWITCH DRIVER (CPSW)
11484 M:      Mugunthan V N <mugunthanvnm@ti.com>
11485 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11486 L:      linux-omap@vger.kernel.org
11487 L:      netdev@vger.kernel.org
11488 S:      Maintained
11489 F:      drivers/net/ethernet/ti/cpsw*
11490 F:      drivers/net/ethernet/ti/davinci*
11491
11492 TI FLASH MEDIA INTERFACE DRIVER
11493 M:      Alex Dubov <oakad@yahoo.com>
11494 S:      Maintained
11495 F:      drivers/misc/tifm*
11496 F:      drivers/mmc/host/tifm_sd.c
11497 F:      include/linux/tifm.h
11498
11499 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11500 M:      Santosh Shilimkar <ssantosh@kernel.org>
11501 L:      linux-kernel@vger.kernel.org
11502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11503 S:      Maintained
11504 F:      drivers/soc/ti/*
11505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11506
11507
11508 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11509 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11510 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11511 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11512 S:      Maintained
11513 F:      sound/soc/codecs/lm49453*
11514 F:      sound/soc/codecs/isabelle*
11515
11516 TI LP855x BACKLIGHT DRIVER
11517 M:      Milo Kim <milo.kim@ti.com>
11518 S:      Maintained
11519 F:      Documentation/backlight/lp855x-driver.txt
11520 F:      drivers/video/backlight/lp855x_bl.c
11521 F:      include/linux/platform_data/lp855x.h
11522
11523 TI LP8727 CHARGER DRIVER
11524 M:      Milo Kim <milo.kim@ti.com>
11525 S:      Maintained
11526 F:      drivers/power/lp8727_charger.c
11527 F:      include/linux/platform_data/lp8727.h
11528
11529 TI LP8788 MFD DRIVER
11530 M:      Milo Kim <milo.kim@ti.com>
11531 S:      Maintained
11532 F:      drivers/iio/adc/lp8788_adc.c
11533 F:      drivers/leds/leds-lp8788.c
11534 F:      drivers/mfd/lp8788*.c
11535 F:      drivers/power/lp8788-charger.c
11536 F:      drivers/regulator/lp8788-*.c
11537 F:      include/linux/mfd/lp8788*.h
11538
11539 TI NETCP ETHERNET DRIVER
11540 M:      Wingman Kwok <w-kwok2@ti.com>
11541 M:      Murali Karicheri <m-karicheri2@ti.com>
11542 L:      netdev@vger.kernel.org
11543 S:      Maintained
11544 F:      drivers/net/ethernet/ti/netcp*
11545
11546 TI TAS571X FAMILY ASoC CODEC DRIVER
11547 M:      Kevin Cernekee <cernekee@chromium.org>
11548 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11549 S:      Odd Fixes
11550 F:      sound/soc/codecs/tas571x*
11551
11552 TI TWL4030 SERIES SOC CODEC DRIVER
11553 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11555 S:      Maintained
11556 F:      sound/soc/codecs/twl4030*
11557
11558 TI WILINK WIRELESS DRIVERS
11559 L:      linux-wireless@vger.kernel.org
11560 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11561 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11563 S:      Orphan
11564 F:      drivers/net/wireless/ti/
11565 F:      include/linux/wl12xx.h
11566
11567 TIPC NETWORK LAYER
11568 M:      Jon Maloy <jon.maloy@ericsson.com>
11569 M:      Ying Xue <ying.xue@windriver.com>
11570 L:      netdev@vger.kernel.org (core kernel code)
11571 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11572 W:      http://tipc.sourceforge.net/
11573 S:      Maintained
11574 F:      include/uapi/linux/tipc*.h
11575 F:      net/tipc/
11576
11577 TILE ARCHITECTURE
11578 M:      Chris Metcalf <cmetcalf@mellanox.com>
11579 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11581 S:      Supported
11582 F:      arch/tile/
11583 F:      drivers/char/tile-srom.c
11584 F:      drivers/edac/tile_edac.c
11585 F:      drivers/net/ethernet/tile/
11586 F:      drivers/rtc/rtc-tile.c
11587 F:      drivers/tty/hvc/hvc_tile.c
11588 F:      drivers/tty/serial/tilegx.c
11589 F:      drivers/usb/host/*-tilegx.c
11590 F:      include/linux/usb/tilegx.h
11591
11592 TLAN NETWORK DRIVER
11593 M:      Samuel Chessman <chessman@tux.org>
11594 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11595 W:      http://sourceforge.net/projects/tlan/
11596 S:      Maintained
11597 F:      Documentation/networking/tlan.txt
11598 F:      drivers/net/ethernet/ti/tlan.*
11599
11600 TOMOYO SECURITY MODULE
11601 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11602 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11603 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11604 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11605 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11606 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11607 W:      http://tomoyo.sourceforge.jp/
11608 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11609 S:      Maintained
11610 F:      security/tomoyo/
11611
11612 TOPSTAR LAPTOP EXTRAS DRIVER
11613 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11614 L:      platform-driver-x86@vger.kernel.org
11615 S:      Maintained
11616 F:      drivers/platform/x86/topstar-laptop.c
11617
11618 TOSHIBA ACPI EXTRAS DRIVER
11619 M:      Azael Avalos <coproscefalo@gmail.com>
11620 L:      platform-driver-x86@vger.kernel.org
11621 S:      Maintained
11622 F:      drivers/platform/x86/toshiba_acpi.c
11623
11624 TOSHIBA BLUETOOTH DRIVER
11625 M:      Azael Avalos <coproscefalo@gmail.com>
11626 L:      platform-driver-x86@vger.kernel.org
11627 S:      Maintained
11628 F:      drivers/platform/x86/toshiba_bluetooth.c
11629
11630 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11631 M:      Azael Avalos <coproscefalo@gmail.com>
11632 L:      platform-driver-x86@vger.kernel.org
11633 S:      Maintained
11634 F:      drivers/platform/x86/toshiba_haps.c
11635
11636 TOSHIBA WMI HOTKEYS DRIVER
11637 M:      Azael Avalos <coproscefalo@gmail.com>
11638 L:      platform-driver-x86@vger.kernel.org
11639 S:      Maintained
11640 F:      drivers/platform/x86/toshiba-wmi.c
11641
11642 TOSHIBA SMM DRIVER
11643 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11644 W:      http://www.buzzard.org.uk/toshiba/
11645 S:      Maintained
11646 F:      drivers/char/toshiba.c
11647 F:      include/linux/toshiba.h
11648 F:      include/uapi/linux/toshiba.h
11649
11650 TOSHIBA TC358743 DRIVER
11651 M:      Mats Randgaard <matrandg@cisco.com>
11652 L:      linux-media@vger.kernel.org
11653 S:      Maintained
11654 F:      drivers/media/i2c/tc358743*
11655 F:      include/media/i2c/tc358743.h
11656
11657 TMIO/SDHI MMC DRIVER
11658 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11659 L:      linux-mmc@vger.kernel.org
11660 S:      Supported
11661 F:      drivers/mmc/host/tmio_mmc*
11662 F:      drivers/mmc/host/sh_mobile_sdhi.c
11663 F:      include/linux/mfd/tmio.h
11664
11665 TMP401 HARDWARE MONITOR DRIVER
11666 M:      Guenter Roeck <linux@roeck-us.net>
11667 L:      linux-hwmon@vger.kernel.org
11668 S:      Maintained
11669 F:      Documentation/hwmon/tmp401
11670 F:      drivers/hwmon/tmp401.c
11671
11672 TMPFS (SHMEM FILESYSTEM)
11673 M:      Hugh Dickins <hughd@google.com>
11674 L:      linux-mm@kvack.org
11675 S:      Maintained
11676 F:      include/linux/shmem_fs.h
11677 F:      mm/shmem.c
11678
11679 TM6000 VIDEO4LINUX DRIVER
11680 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11681 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11682 L:      linux-media@vger.kernel.org
11683 W:      https://linuxtv.org
11684 T:      git git://linuxtv.org/media_tree.git
11685 S:      Odd fixes
11686 F:      drivers/media/usb/tm6000/
11687
11688 TW68 VIDEO4LINUX DRIVER
11689 M:      Hans Verkuil <hverkuil@xs4all.nl>
11690 L:      linux-media@vger.kernel.org
11691 T:      git git://linuxtv.org/media_tree.git
11692 W:      https://linuxtv.org
11693 S:      Odd Fixes
11694 F:      drivers/media/pci/tw68/
11695
11696 TW686X VIDEO4LINUX DRIVER
11697 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11698 L:      linux-media@vger.kernel.org
11699 T:      git git://linuxtv.org/media_tree.git
11700 W:      http://linuxtv.org
11701 S:      Maintained
11702 F:      drivers/media/pci/tw686x/
11703
11704 TPM DEVICE DRIVER
11705 M:      Peter Huewe <peterhuewe@gmx.de>
11706 M:      Marcel Selhorst <tpmdd@selhorst.net>
11707 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11708 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11709 W:      http://tpmdd.sourceforge.net
11710 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11711 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11712 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11713 S:      Maintained
11714 F:      drivers/char/tpm/
11715
11716 TPM IBM_VTPM DEVICE DRIVER
11717 M:      Ashley Lai <ashleydlai@gmail.com>
11718 W:      http://tpmdd.sourceforge.net
11719 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11720 S:      Maintained
11721 F:      drivers/char/tpm/tpm_ibmvtpm*
11722
11723 TRACING
11724 M:      Steven Rostedt <rostedt@goodmis.org>
11725 M:      Ingo Molnar <mingo@redhat.com>
11726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11727 S:      Maintained
11728 F:      Documentation/trace/ftrace.txt
11729 F:      arch/*/*/*/ftrace.h
11730 F:      arch/*/kernel/ftrace.c
11731 F:      include/*/ftrace.h
11732 F:      include/linux/trace*.h
11733 F:      include/trace/
11734 F:      kernel/trace/
11735 F:      tools/testing/selftests/ftrace/
11736
11737 TRACING MMIO ACCESSES (MMIOTRACE)
11738 M:      Steven Rostedt <rostedt@goodmis.org>
11739 M:      Ingo Molnar <mingo@kernel.org>
11740 R:      Karol Herbst <karolherbst@gmail.com>
11741 R:      Pekka Paalanen <ppaalanen@gmail.com>
11742 S:      Maintained
11743 L:      linux-kernel@vger.kernel.org
11744 L:      nouveau@lists.freedesktop.org
11745 F:      kernel/trace/trace_mmiotrace.c
11746 F:      include/linux/mmiotrace.h
11747 F:      arch/x86/mm/kmmio.c
11748 F:      arch/x86/mm/mmio-mod.c
11749 F:      arch/x86/mm/testmmiotrace.c
11750
11751 TRIVIAL PATCHES
11752 M:      Jiri Kosina <trivial@kernel.org>
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11754 S:      Maintained
11755 K:      ^Subject:.*(?i)trivial
11756
11757 TTY LAYER
11758 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11759 M:      Jiri Slaby <jslaby@suse.com>
11760 S:      Supported
11761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11762 F:      Documentation/serial/
11763 F:      drivers/tty/
11764 F:      drivers/tty/serial/serial_core.c
11765 F:      include/linux/serial_core.h
11766 F:      include/linux/serial.h
11767 F:      include/linux/tty.h
11768 F:      include/uapi/linux/serial_core.h
11769 F:      include/uapi/linux/serial.h
11770 F:      include/uapi/linux/tty.h
11771
11772 TUA9001 MEDIA DRIVER
11773 M:      Antti Palosaari <crope@iki.fi>
11774 L:      linux-media@vger.kernel.org
11775 W:      https://linuxtv.org
11776 W:      http://palosaari.fi/linux/
11777 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11778 T:      git git://linuxtv.org/anttip/media_tree.git
11779 S:      Maintained
11780 F:      drivers/media/tuners/tua9001*
11781
11782 TULIP NETWORK DRIVERS
11783 L:      netdev@vger.kernel.org
11784 L:      linux-parisc@vger.kernel.org
11785 S:      Orphan
11786 F:      drivers/net/ethernet/dec/tulip/
11787
11788 TUN/TAP driver
11789 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11790 W:      http://vtun.sourceforge.net/tun
11791 S:      Maintained
11792 F:      Documentation/networking/tuntap.txt
11793 F:      arch/um/os-Linux/drivers/
11794
11795 TURBOCHANNEL SUBSYSTEM
11796 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11797 M:      Ralf Baechle <ralf@linux-mips.org>
11798 L:      linux-mips@linux-mips.org
11799 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11800 S:      Maintained
11801 F:      drivers/tc/
11802 F:      include/linux/tc.h
11803
11804 U14-34F SCSI DRIVER
11805 M:      Dario Ballabio <ballabio_dario@emc.com>
11806 L:      linux-scsi@vger.kernel.org
11807 S:      Maintained
11808 F:      drivers/scsi/u14-34f.c
11809
11810 UBI FILE SYSTEM (UBIFS)
11811 M:      Richard Weinberger <richard@nod.at>
11812 M:      Artem Bityutskiy <dedekind1@gmail.com>
11813 M:      Adrian Hunter <adrian.hunter@intel.com>
11814 L:      linux-mtd@lists.infradead.org
11815 T:      git git://git.infradead.org/ubifs-2.6.git
11816 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11817 S:      Supported
11818 F:      Documentation/filesystems/ubifs.txt
11819 F:      fs/ubifs/
11820
11821 UCLINUX (M68KNOMMU AND COLDFIRE)
11822 M:      Greg Ungerer <gerg@linux-m68k.org>
11823 W:      http://www.linux-m68k.org/
11824 W:      http://www.uclinux.org/
11825 L:      linux-m68k@lists.linux-m68k.org
11826 L:      uclinux-dev@uclinux.org  (subscribers-only)
11827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11828 S:      Maintained
11829 F:      arch/m68k/coldfire/
11830 F:      arch/m68k/68*/
11831 F:      arch/m68k/*/*_no.*
11832 F:      arch/m68k/include/asm/*_no.*
11833
11834 UDF FILESYSTEM
11835 M:      Jan Kara <jack@suse.com>
11836 S:      Maintained
11837 F:      Documentation/filesystems/udf.txt
11838 F:      fs/udf/
11839
11840 UFS FILESYSTEM
11841 M:      Evgeniy Dushistov <dushistov@mail.ru>
11842 S:      Maintained
11843 F:      Documentation/filesystems/ufs.txt
11844 F:      fs/ufs/
11845
11846 UHID USERSPACE HID IO DRIVER:
11847 M:      David Herrmann <dh.herrmann@googlemail.com>
11848 L:      linux-input@vger.kernel.org
11849 S:      Maintained
11850 F:      drivers/hid/uhid.c
11851 F:      include/uapi/linux/uhid.h
11852
11853 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11854 L:      linux-usb@vger.kernel.org
11855 S:      Orphan
11856 F:      drivers/uwb/
11857 F:      include/linux/uwb.h
11858 F:      include/linux/uwb/
11859
11860 UNICORE32 ARCHITECTURE:
11861 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11862 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11863 S:      Maintained
11864 T:      git git://github.com/gxt/linux.git
11865 F:      arch/unicore32/
11866
11867 UNIFDEF
11868 M:      Tony Finch <dot@dotat.at>
11869 W:      http://dotat.at/prog/unifdef
11870 S:      Maintained
11871 F:      scripts/unifdef.c
11872
11873 UNIFORM CDROM DRIVER
11874 M:      Jens Axboe <axboe@kernel.dk>
11875 W:      http://www.kernel.dk
11876 S:      Maintained
11877 F:      Documentation/cdrom/
11878 F:      drivers/cdrom/cdrom.c
11879 F:      include/linux/cdrom.h
11880 F:      include/uapi/linux/cdrom.h
11881
11882 UNISYS S-PAR DRIVERS
11883 M:      David Kershner <david.kershner@unisys.com>
11884 L:      sparmaintainer@unisys.com (Unisys internal)
11885 S:      Supported
11886 F:      drivers/staging/unisys/
11887
11888 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11889 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11890 L:      linux-scsi@vger.kernel.org
11891 S:      Supported
11892 F:      Documentation/scsi/ufs.txt
11893 F:      drivers/scsi/ufs/
11894
11895 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
11896 M:      Joao Pinto <Joao.Pinto@synopsys.com>
11897 L:      linux-scsi@vger.kernel.org
11898 S:      Supported
11899 F:      drivers/scsi/ufs/*dwc*
11900
11901 UNSORTED BLOCK IMAGES (UBI)
11902 M:      Artem Bityutskiy <dedekind1@gmail.com>
11903 M:      Richard Weinberger <richard@nod.at>
11904 W:      http://www.linux-mtd.infradead.org/
11905 L:      linux-mtd@lists.infradead.org
11906 T:      git git://git.infradead.org/ubifs-2.6.git
11907 S:      Supported
11908 F:      drivers/mtd/ubi/
11909 F:      include/linux/mtd/ubi.h
11910 F:      include/uapi/mtd/ubi-user.h
11911
11912 USB ACM DRIVER
11913 M:      Oliver Neukum <oneukum@suse.com>
11914 L:      linux-usb@vger.kernel.org
11915 S:      Maintained
11916 F:      Documentation/usb/acm.txt
11917 F:      drivers/usb/class/cdc-acm.*
11918
11919 USB AR5523 WIRELESS DRIVER
11920 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11921 L:      linux-wireless@vger.kernel.org
11922 S:      Maintained
11923 F:      drivers/net/wireless/ath/ar5523/
11924
11925 USB ATTACHED SCSI
11926 M:      Oliver Neukum <oneukum@suse.com>
11927 L:      linux-usb@vger.kernel.org
11928 L:      linux-scsi@vger.kernel.org
11929 S:      Maintained
11930 F:      drivers/usb/storage/uas.c
11931
11932 USB CDC ETHERNET DRIVER
11933 M:      Oliver Neukum <oliver@neukum.org>
11934 L:      linux-usb@vger.kernel.org
11935 S:      Maintained
11936 F:      drivers/net/usb/cdc_*.c
11937 F:      include/uapi/linux/usb/cdc.h
11938
11939 USB CHAOSKEY DRIVER
11940 M:      Keith Packard <keithp@keithp.com>
11941 L:      linux-usb@vger.kernel.org
11942 S:      Maintained
11943 F:      drivers/usb/misc/chaoskey.c
11944
11945 USB CYPRESS C67X00 DRIVER
11946 M:      Peter Korsgaard <jacmet@sunsite.dk>
11947 L:      linux-usb@vger.kernel.org
11948 S:      Maintained
11949 F:      drivers/usb/c67x00/
11950
11951 USB DAVICOM DM9601 DRIVER
11952 M:      Peter Korsgaard <jacmet@sunsite.dk>
11953 L:      netdev@vger.kernel.org
11954 W:      http://www.linux-usb.org/usbnet
11955 S:      Maintained
11956 F:      drivers/net/usb/dm9601.c
11957
11958 USB DIAMOND RIO500 DRIVER
11959 M:      Cesar Miquel <miquel@df.uba.ar>
11960 L:      rio500-users@lists.sourceforge.net
11961 W:      http://rio500.sourceforge.net
11962 S:      Maintained
11963 F:      drivers/usb/misc/rio500*
11964
11965 USB EHCI DRIVER
11966 M:      Alan Stern <stern@rowland.harvard.edu>
11967 L:      linux-usb@vger.kernel.org
11968 S:      Maintained
11969 F:      Documentation/usb/ehci.txt
11970 F:      drivers/usb/host/ehci*
11971
11972 USB GADGET/PERIPHERAL SUBSYSTEM
11973 M:      Felipe Balbi <balbi@kernel.org>
11974 L:      linux-usb@vger.kernel.org
11975 W:      http://www.linux-usb.org/gadget
11976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11977 S:      Maintained
11978 F:      drivers/usb/gadget/
11979 F:      include/linux/usb/gadget*
11980
11981 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11982 M:      Jiri Kosina <jikos@kernel.org>
11983 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11984 L:      linux-usb@vger.kernel.org
11985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11986 S:      Maintained
11987 F:      Documentation/hid/hiddev.txt
11988 F:      drivers/hid/usbhid/
11989
11990 USB ISP116X DRIVER
11991 M:      Olav Kongas <ok@artecdesign.ee>
11992 L:      linux-usb@vger.kernel.org
11993 S:      Maintained
11994 F:      drivers/usb/host/isp116x*
11995 F:      include/linux/usb/isp116x.h
11996
11997 USB LAN78XX ETHERNET DRIVER
11998 M:      Woojung Huh <woojung.huh@microchip.com>
11999 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12000 L:      netdev@vger.kernel.org
12001 S:      Maintained
12002 F:      drivers/net/usb/lan78xx.*
12003
12004 USB MASS STORAGE DRIVER
12005 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
12006 L:      linux-usb@vger.kernel.org
12007 L:      usb-storage@lists.one-eyed-alien.net
12008 S:      Maintained
12009 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
12010 F:      drivers/usb/storage/
12011
12012 USB MIDI DRIVER
12013 M:      Clemens Ladisch <clemens@ladisch.de>
12014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12015 T:      git git://git.alsa-project.org/alsa-kernel.git
12016 S:      Maintained
12017 F:      sound/usb/midi.*
12018
12019 USB NETWORKING DRIVERS
12020 L:      linux-usb@vger.kernel.org
12021 S:      Odd Fixes
12022 F:      drivers/net/usb/
12023
12024 USB OHCI DRIVER
12025 M:      Alan Stern <stern@rowland.harvard.edu>
12026 L:      linux-usb@vger.kernel.org
12027 S:      Maintained
12028 F:      Documentation/usb/ohci.txt
12029 F:      drivers/usb/host/ohci*
12030
12031 USB OTG FSM (Finite State Machine)
12032 M:      Peter Chen <Peter.Chen@nxp.com>
12033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
12034 L:      linux-usb@vger.kernel.org
12035 S:      Maintained
12036 F:      drivers/usb/common/usb-otg-fsm.c
12037
12038 USB OVER IP DRIVER
12039 M:      Valentina Manea <valentina.manea.m@gmail.com>
12040 M:      Shuah Khan <shuahkh@osg.samsung.com>
12041 M:      Shuah Khan <shuah@kernel.org>
12042 L:      linux-usb@vger.kernel.org
12043 S:      Maintained
12044 F:      Documentation/usb/usbip_protocol.txt
12045 F:      drivers/usb/usbip/
12046 F:      tools/usb/usbip/
12047
12048 USB PEGASUS DRIVER
12049 M:      Petko Manolov <petkan@nucleusys.com>
12050 L:      linux-usb@vger.kernel.org
12051 L:      netdev@vger.kernel.org
12052 T:      git git://github.com/petkan/pegasus.git
12053 W:      https://github.com/petkan/pegasus
12054 S:      Maintained
12055 F:      drivers/net/usb/pegasus.*
12056
12057 USB PHY LAYER
12058 M:      Felipe Balbi <balbi@kernel.org>
12059 L:      linux-usb@vger.kernel.org
12060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
12061 S:      Maintained
12062 F:      drivers/usb/phy/
12063
12064 USB PRINTER DRIVER (usblp)
12065 M:      Pete Zaitcev <zaitcev@redhat.com>
12066 L:      linux-usb@vger.kernel.org
12067 S:      Supported
12068 F:      drivers/usb/class/usblp.c
12069
12070 USB QMI WWAN NETWORK DRIVER
12071 M:      Bjørn Mork <bjorn@mork.no>
12072 L:      netdev@vger.kernel.org
12073 S:      Maintained
12074 F:      Documentation/ABI/testing/sysfs-class-net-qmi
12075 F:      drivers/net/usb/qmi_wwan.c
12076
12077 USB RTL8150 DRIVER
12078 M:      Petko Manolov <petkan@nucleusys.com>
12079 L:      linux-usb@vger.kernel.org
12080 L:      netdev@vger.kernel.org
12081 T:      git git://github.com/petkan/rtl8150.git
12082 W:      https://github.com/petkan/rtl8150
12083 S:      Maintained
12084 F:      drivers/net/usb/rtl8150.c
12085
12086 USB SERIAL SUBSYSTEM
12087 M:      Johan Hovold <johan@kernel.org>
12088 L:      linux-usb@vger.kernel.org
12089 S:      Maintained
12090 F:      Documentation/usb/usb-serial.txt
12091 F:      drivers/usb/serial/
12092 F:      include/linux/usb/serial.h
12093
12094 USB SMSC75XX ETHERNET DRIVER
12095 M:      Steve Glendinning <steve.glendinning@shawell.net>
12096 L:      netdev@vger.kernel.org
12097 S:      Maintained
12098 F:      drivers/net/usb/smsc75xx.*
12099
12100 USB SMSC95XX ETHERNET DRIVER
12101 M:      Steve Glendinning <steve.glendinning@shawell.net>
12102 L:      netdev@vger.kernel.org
12103 S:      Maintained
12104 F:      drivers/net/usb/smsc95xx.*
12105
12106 USB SUBSYSTEM
12107 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12108 L:      linux-usb@vger.kernel.org
12109 W:      http://www.linux-usb.org
12110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
12111 S:      Supported
12112 F:      Documentation/devicetree/bindings/usb/
12113 F:      Documentation/usb/
12114 F:      drivers/usb/
12115 F:      include/linux/usb.h
12116 F:      include/linux/usb/
12117
12118 USB UHCI DRIVER
12119 M:      Alan Stern <stern@rowland.harvard.edu>
12120 L:      linux-usb@vger.kernel.org
12121 S:      Maintained
12122 F:      drivers/usb/host/uhci*
12123
12124 USB "USBNET" DRIVER FRAMEWORK
12125 M:      Oliver Neukum <oneukum@suse.com>
12126 L:      netdev@vger.kernel.org
12127 W:      http://www.linux-usb.org/usbnet
12128 S:      Maintained
12129 F:      drivers/net/usb/usbnet.c
12130 F:      include/linux/usb/usbnet.h
12131
12132 USB VIDEO CLASS
12133 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12134 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
12135 L:      linux-media@vger.kernel.org
12136 T:      git git://linuxtv.org/media_tree.git
12137 W:      http://www.ideasonboard.org/uvc/
12138 S:      Maintained
12139 F:      drivers/media/usb/uvc/
12140 F:      include/uapi/linux/uvcvideo.h
12141
12142 USB VISION DRIVER
12143 M:      Hans Verkuil <hverkuil@xs4all.nl>
12144 L:      linux-media@vger.kernel.org
12145 T:      git git://linuxtv.org/media_tree.git
12146 W:      https://linuxtv.org
12147 S:      Odd Fixes
12148 F:      drivers/media/usb/usbvision/
12149
12150 USB WEBCAM GADGET
12151 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12152 L:      linux-usb@vger.kernel.org
12153 S:      Maintained
12154 F:      drivers/usb/gadget/function/*uvc*
12155 F:      drivers/usb/gadget/legacy/webcam.c
12156
12157 USB WIRELESS RNDIS DRIVER (rndis_wlan)
12158 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
12159 L:      linux-wireless@vger.kernel.org
12160 S:      Maintained
12161 F:      drivers/net/wireless/rndis_wlan.c
12162
12163 USB XHCI DRIVER
12164 M:      Mathias Nyman <mathias.nyman@intel.com>
12165 L:      linux-usb@vger.kernel.org
12166 S:      Supported
12167 F:      drivers/usb/host/xhci*
12168 F:      drivers/usb/host/pci-quirks*
12169
12170 USB ZD1201 DRIVER
12171 L:      linux-wireless@vger.kernel.org
12172 W:      http://linux-lc100020.sourceforge.net
12173 S:      Orphan
12174 F:      drivers/net/wireless/zydas/zd1201.*
12175
12176 USB ZR364XX DRIVER
12177 M:      Antoine Jacquet <royale@zerezo.com>
12178 L:      linux-usb@vger.kernel.org
12179 L:      linux-media@vger.kernel.org
12180 T:      git git://linuxtv.org/media_tree.git
12181 W:      http://royale.zerezo.com/zr364xx/
12182 S:      Maintained
12183 F:      Documentation/video4linux/zr364xx.txt
12184 F:      drivers/media/usb/zr364xx/
12185
12186 ULPI BUS
12187 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
12188 L:      linux-usb@vger.kernel.org
12189 S:      Maintained
12190 F:      drivers/usb/common/ulpi.c
12191 F:      include/linux/ulpi/
12192
12193 USER-MODE LINUX (UML)
12194 M:      Jeff Dike <jdike@addtoit.com>
12195 M:      Richard Weinberger <richard@nod.at>
12196 L:      user-mode-linux-devel@lists.sourceforge.net
12197 L:      user-mode-linux-user@lists.sourceforge.net
12198 W:      http://user-mode-linux.sourceforge.net
12199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
12200 S:      Maintained
12201 F:      Documentation/virtual/uml/
12202 F:      arch/um/
12203 F:      arch/x86/um/
12204 F:      fs/hostfs/
12205 F:      fs/hppfs/
12206
12207 USERSPACE I/O (UIO)
12208 M:      "Hans J. Koch" <hjk@hansjkoch.de>
12209 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12210 S:      Maintained
12211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
12212 F:      Documentation/DocBook/uio-howto.tmpl
12213 F:      drivers/uio/
12214 F:      include/linux/uio*.h
12215
12216 UTIL-LINUX PACKAGE
12217 M:      Karel Zak <kzak@redhat.com>
12218 L:      util-linux@vger.kernel.org
12219 W:      http://en.wikipedia.org/wiki/Util-linux
12220 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
12221 S:      Maintained
12222
12223 UVESAFB DRIVER
12224 M:      Michal Januszewski <spock@gentoo.org>
12225 L:      linux-fbdev@vger.kernel.org
12226 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
12227 S:      Maintained
12228 F:      Documentation/fb/uvesafb.txt
12229 F:      drivers/video/fbdev/uvesafb.*
12230
12231 VF610 NAND DRIVER
12232 M:      Stefan Agner <stefan@agner.ch>
12233 L:      linux-mtd@lists.infradead.org
12234 S:      Supported
12235 F:      drivers/mtd/nand/vf610_nfc.c
12236
12237 VFAT/FAT/MSDOS FILESYSTEM
12238 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
12239 S:      Maintained
12240 F:      Documentation/filesystems/vfat.txt
12241 F:      fs/fat/
12242
12243 VFIO DRIVER
12244 M:      Alex Williamson <alex.williamson@redhat.com>
12245 L:      kvm@vger.kernel.org
12246 T:      git git://github.com/awilliam/linux-vfio.git
12247 S:      Maintained
12248 F:      Documentation/vfio.txt
12249 F:      drivers/vfio/
12250 F:      include/linux/vfio.h
12251 F:      include/uapi/linux/vfio.h
12252
12253 VFIO PLATFORM DRIVER
12254 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
12255 L:      kvm@vger.kernel.org
12256 S:      Maintained
12257 F:      drivers/vfio/platform/
12258
12259 VIDEOBUF2 FRAMEWORK
12260 M:      Pawel Osciak <pawel@osciak.com>
12261 M:      Marek Szyprowski <m.szyprowski@samsung.com>
12262 M:      Kyungmin Park <kyungmin.park@samsung.com>
12263 L:      linux-media@vger.kernel.org
12264 S:      Maintained
12265 F:      drivers/media/v4l2-core/videobuf2-*
12266 F:      include/media/videobuf2-*
12267
12268 VIRTUAL SERIO DEVICE DRIVER
12269 M:      Stephen Chandler Paul <thatslyude@gmail.com>
12270 S:      Maintained
12271 F:      drivers/input/serio/userio.c
12272 F:      include/uapi/linux/userio.h
12273
12274 VIRTIO CONSOLE DRIVER
12275 M:      Amit Shah <amit.shah@redhat.com>
12276 L:      virtualization@lists.linux-foundation.org
12277 S:      Maintained
12278 F:      drivers/char/virtio_console.c
12279 F:      include/linux/virtio_console.h
12280 F:      include/uapi/linux/virtio_console.h
12281
12282 VIRTIO CORE, NET AND BLOCK DRIVERS
12283 M:      "Michael S. Tsirkin" <mst@redhat.com>
12284 L:      virtualization@lists.linux-foundation.org
12285 S:      Maintained
12286 F:      Documentation/devicetree/bindings/virtio/
12287 F:      drivers/virtio/
12288 F:      tools/virtio/
12289 F:      drivers/net/virtio_net.c
12290 F:      drivers/block/virtio_blk.c
12291 F:      include/linux/virtio_*.h
12292 F:      include/uapi/linux/virtio_*.h
12293
12294 VIRTIO DRIVERS FOR S390
12295 M:      Christian Borntraeger <borntraeger@de.ibm.com>
12296 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
12297 L:      linux-s390@vger.kernel.org
12298 L:      virtualization@lists.linux-foundation.org
12299 L:      kvm@vger.kernel.org
12300 S:      Supported
12301 F:      drivers/s390/virtio/
12302
12303 VIRTIO GPU DRIVER
12304 M:      David Airlie <airlied@linux.ie>
12305 M:      Gerd Hoffmann <kraxel@redhat.com>
12306 L:      dri-devel@lists.freedesktop.org
12307 L:      virtualization@lists.linux-foundation.org
12308 S:      Maintained
12309 F:      drivers/gpu/drm/virtio/
12310 F:      include/uapi/linux/virtio_gpu.h
12311
12312 VIRTIO HOST (VHOST)
12313 M:      "Michael S. Tsirkin" <mst@redhat.com>
12314 L:      kvm@vger.kernel.org
12315 L:      virtualization@lists.linux-foundation.org
12316 L:      netdev@vger.kernel.org
12317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12318 S:      Maintained
12319 F:      drivers/vhost/
12320 F:      include/uapi/linux/vhost.h
12321
12322 VIRTIO INPUT DRIVER
12323 M:      Gerd Hoffmann <kraxel@redhat.com>
12324 S:      Maintained
12325 F:      drivers/virtio/virtio_input.c
12326 F:      include/uapi/linux/virtio_input.h
12327
12328 VIA RHINE NETWORK DRIVER
12329 S:      Orphan
12330 F:      drivers/net/ethernet/via/via-rhine.c
12331
12332 VIA SD/MMC CARD CONTROLLER DRIVER
12333 M:      Bruce Chang <brucechang@via.com.tw>
12334 M:      Harald Welte <HaraldWelte@viatech.com>
12335 S:      Maintained
12336 F:      drivers/mmc/host/via-sdmmc.c
12337
12338 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12339 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12340 L:      linux-fbdev@vger.kernel.org
12341 S:      Maintained
12342 F:      include/linux/via-core.h
12343 F:      include/linux/via-gpio.h
12344 F:      include/linux/via_i2c.h
12345 F:      drivers/video/fbdev/via/
12346
12347 VIA VELOCITY NETWORK DRIVER
12348 M:      Francois Romieu <romieu@fr.zoreil.com>
12349 L:      netdev@vger.kernel.org
12350 S:      Maintained
12351 F:      drivers/net/ethernet/via/via-velocity.*
12352
12353 VIRT LIB
12354 M:      Alex Williamson <alex.williamson@redhat.com>
12355 M:      Paolo Bonzini <pbonzini@redhat.com>
12356 L:      kvm@vger.kernel.org
12357 S:      Supported
12358 F:      virt/lib/
12359
12360 VIVID VIRTUAL VIDEO DRIVER
12361 M:      Hans Verkuil <hverkuil@xs4all.nl>
12362 L:      linux-media@vger.kernel.org
12363 T:      git git://linuxtv.org/media_tree.git
12364 W:      https://linuxtv.org
12365 S:      Maintained
12366 F:      drivers/media/platform/vivid/*
12367
12368 VLAN (802.1Q)
12369 M:      Patrick McHardy <kaber@trash.net>
12370 L:      netdev@vger.kernel.org
12371 S:      Maintained
12372 F:      drivers/net/macvlan.c
12373 F:      include/linux/if_*vlan.h
12374 F:      net/8021q/
12375
12376 VLYNQ BUS
12377 M:      Florian Fainelli <florian@openwrt.org>
12378 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12379 S:      Maintained
12380 F:      drivers/vlynq/vlynq.c
12381 F:      include/linux/vlynq.h
12382
12383 VME SUBSYSTEM
12384 M:      Martyn Welch <martyn@welchs.me.uk>
12385 M:      Manohar Vanga <manohar.vanga@gmail.com>
12386 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12387 L:      devel@driverdev.osuosl.org
12388 S:      Maintained
12389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12390 F:      Documentation/vme_api.txt
12391 F:      drivers/staging/vme/
12392 F:      drivers/vme/
12393 F:      include/linux/vme*
12394
12395 VMWARE HYPERVISOR INTERFACE
12396 M:      Alok Kataria <akataria@vmware.com>
12397 L:      virtualization@lists.linux-foundation.org
12398 S:      Supported
12399 F:      arch/x86/kernel/cpu/vmware.c
12400
12401 VMWARE BALLOON DRIVER
12402 M:      Xavier Deguillard <xdeguillard@vmware.com>
12403 M:      Philip Moltmann <moltmann@vmware.com>
12404 M:      "VMware, Inc." <pv-drivers@vmware.com>
12405 L:      linux-kernel@vger.kernel.org
12406 S:      Maintained
12407 F:      drivers/misc/vmw_balloon.c
12408
12409 VMWARE VMMOUSE SUBDRIVER
12410 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12411 M:      "VMware, Inc." <pv-drivers@vmware.com>
12412 L:      linux-input@vger.kernel.org
12413 S:      Maintained
12414 F:      drivers/input/mouse/vmmouse.c
12415 F:      drivers/input/mouse/vmmouse.h
12416
12417 VMWARE VMXNET3 ETHERNET DRIVER
12418 M:      Shrikrishna Khare <skhare@vmware.com>
12419 M:      "VMware, Inc." <pv-drivers@vmware.com>
12420 L:      netdev@vger.kernel.org
12421 S:      Maintained
12422 F:      drivers/net/vmxnet3/
12423
12424 VMware PVSCSI driver
12425 M:      Jim Gill <jgill@vmware.com>
12426 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12427 L:      linux-scsi@vger.kernel.org
12428 S:      Maintained
12429 F:      drivers/scsi/vmw_pvscsi.c
12430 F:      drivers/scsi/vmw_pvscsi.h
12431
12432 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12433 M:      Liam Girdwood <lgirdwood@gmail.com>
12434 M:      Mark Brown <broonie@kernel.org>
12435 L:      linux-kernel@vger.kernel.org
12436 W:      http://www.slimlogic.co.uk/?p=48
12437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12438 S:      Supported
12439 F:      Documentation/devicetree/bindings/regulator/
12440 F:      drivers/regulator/
12441 F:      include/dt-bindings/regulator/
12442 F:      include/linux/regulator/
12443
12444 VRF
12445 M:      David Ahern <dsa@cumulusnetworks.com>
12446 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12447 L:      netdev@vger.kernel.org
12448 S:      Maintained
12449 F:      drivers/net/vrf.c
12450 F:      Documentation/networking/vrf.txt
12451
12452 VT1211 HARDWARE MONITOR DRIVER
12453 M:      Juerg Haefliger <juergh@gmail.com>
12454 L:      linux-hwmon@vger.kernel.org
12455 S:      Maintained
12456 F:      Documentation/hwmon/vt1211
12457 F:      drivers/hwmon/vt1211.c
12458
12459 VT8231 HARDWARE MONITOR DRIVER
12460 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12461 L:      linux-hwmon@vger.kernel.org
12462 S:      Maintained
12463 F:      drivers/hwmon/vt8231.c
12464
12465 VUB300 USB to SDIO/SD/MMC bridge chip
12466 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12467 L:      linux-mmc@vger.kernel.org
12468 L:      linux-usb@vger.kernel.org
12469 S:      Supported
12470 F:      drivers/mmc/host/vub300.c
12471
12472 W1 DALLAS'S 1-WIRE BUS
12473 M:      Evgeniy Polyakov <zbr@ioremap.net>
12474 S:      Maintained
12475 F:      Documentation/w1/
12476 F:      drivers/w1/
12477
12478 W83791D HARDWARE MONITORING DRIVER
12479 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12480 L:      linux-hwmon@vger.kernel.org
12481 S:      Maintained
12482 F:      Documentation/hwmon/w83791d
12483 F:      drivers/hwmon/w83791d.c
12484
12485 W83793 HARDWARE MONITORING DRIVER
12486 M:      Rudolf Marek <r.marek@assembler.cz>
12487 L:      linux-hwmon@vger.kernel.org
12488 S:      Maintained
12489 F:      Documentation/hwmon/w83793
12490 F:      drivers/hwmon/w83793.c
12491
12492 W83795 HARDWARE MONITORING DRIVER
12493 M:      Jean Delvare <jdelvare@suse.com>
12494 L:      linux-hwmon@vger.kernel.org
12495 S:      Maintained
12496 F:      drivers/hwmon/w83795.c
12497
12498 W83L51xD SD/MMC CARD INTERFACE DRIVER
12499 M:      Pierre Ossman <pierre@ossman.eu>
12500 S:      Maintained
12501 F:      drivers/mmc/host/wbsd.*
12502
12503 WACOM PROTOCOL 4 SERIAL TABLETS
12504 M:      Julian Squires <julian@cipht.net>
12505 M:      Hans de Goede <hdegoede@redhat.com>
12506 L:      linux-input@vger.kernel.org
12507 S:      Maintained
12508 F:      drivers/input/tablet/wacom_serial4.c
12509
12510 WATCHDOG DEVICE DRIVERS
12511 M:      Wim Van Sebroeck <wim@iguana.be>
12512 R:      Guenter Roeck <linux@roeck-us.net>
12513 L:      linux-watchdog@vger.kernel.org
12514 W:      http://www.linux-watchdog.org/
12515 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12516 S:      Maintained
12517 F:      Documentation/devicetree/bindings/watchdog/
12518 F:      Documentation/watchdog/
12519 F:      drivers/watchdog/
12520 F:      include/linux/watchdog.h
12521 F:      include/uapi/linux/watchdog.h
12522
12523 WD7000 SCSI DRIVER
12524 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12525 L:      linux-scsi@vger.kernel.org
12526 S:      Maintained
12527 F:      drivers/scsi/wd7000.c
12528
12529 WIIMOTE HID DRIVER
12530 M:      David Herrmann <dh.herrmann@googlemail.com>
12531 L:      linux-input@vger.kernel.org
12532 S:      Maintained
12533 F:      drivers/hid/hid-wiimote*
12534
12535 WINBOND CIR DRIVER
12536 M:      David Härdeman <david@hardeman.nu>
12537 S:      Maintained
12538 F:      drivers/media/rc/winbond-cir.c
12539
12540 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12541 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12542 L:      linux-watchdog@vger.kernel.org
12543 S:      Maintained
12544 F:      drivers/watchdog/ebc-c384_wdt.c
12545
12546 WINSYSTEMS WS16C48 GPIO DRIVER
12547 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12548 L:      linux-gpio@vger.kernel.org
12549 S:      Maintained
12550 F:      drivers/gpio/gpio-ws16c48.c
12551
12552 WIMAX STACK
12553 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12554 M:      linux-wimax@intel.com
12555 L:      wimax@linuxwimax.org (subscribers-only)
12556 S:      Supported
12557 W:      http://linuxwimax.org
12558 F:      Documentation/wimax/README.wimax
12559 F:      include/linux/wimax/debug.h
12560 F:      include/net/wimax.h
12561 F:      include/uapi/linux/wimax.h
12562 F:      net/wimax/
12563
12564 WISTRON LAPTOP BUTTON DRIVER
12565 M:      Miloslav Trmac <mitr@volny.cz>
12566 S:      Maintained
12567 F:      drivers/input/misc/wistron_btns.c
12568
12569 WL3501 WIRELESS PCMCIA CARD DRIVER
12570 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12571 L:      linux-wireless@vger.kernel.org
12572 W:      http://oops.ghostprotocols.net:81/blog
12573 S:      Maintained
12574 F:      drivers/net/wireless/wl3501*
12575
12576 WOLFSON MICROELECTRONICS DRIVERS
12577 L:      patches@opensource.wolfsonmicro.com
12578 T:      git https://github.com/CirrusLogic/linux-drivers.git
12579 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12580 S:      Supported
12581 F:      Documentation/hwmon/wm83??
12582 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12583 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12584 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12585 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12586 F:      drivers/clk/clk-wm83*.c
12587 F:      drivers/extcon/extcon-arizona.c
12588 F:      drivers/leds/leds-wm83*.c
12589 F:      drivers/gpio/gpio-*wm*.c
12590 F:      drivers/gpio/gpio-arizona.c
12591 F:      drivers/hwmon/wm83??-hwmon.c
12592 F:      drivers/input/misc/wm831x-on.c
12593 F:      drivers/input/touchscreen/wm831x-ts.c
12594 F:      drivers/input/touchscreen/wm97*.c
12595 F:      drivers/mfd/arizona*
12596 F:      drivers/mfd/wm*.c
12597 F:      drivers/mfd/cs47l24*
12598 F:      drivers/power/wm83*.c
12599 F:      drivers/rtc/rtc-wm83*.c
12600 F:      drivers/regulator/wm8*.c
12601 F:      drivers/video/backlight/wm83*_bl.c
12602 F:      drivers/watchdog/wm83*_wdt.c
12603 F:      include/linux/mfd/arizona/
12604 F:      include/linux/mfd/wm831x/
12605 F:      include/linux/mfd/wm8350/
12606 F:      include/linux/mfd/wm8400*
12607 F:      include/linux/wm97xx.h
12608 F:      include/sound/wm????.h
12609 F:      sound/soc/codecs/arizona.?
12610 F:      sound/soc/codecs/wm*
12611 F:      sound/soc/codecs/cs47l24*
12612
12613 WORKQUEUE
12614 M:      Tejun Heo <tj@kernel.org>
12615 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12617 S:      Maintained
12618 F:      include/linux/workqueue.h
12619 F:      kernel/workqueue.c
12620 F:      Documentation/workqueue.txt
12621
12622 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12623 M:      Chen-Yu Tsai <wens@csie.org>
12624 L:      linux-kernel@vger.kernel.org
12625 S:      Maintained
12626 N:      axp[128]
12627
12628 X.25 NETWORK LAYER
12629 M:      Andrew Hendry <andrew.hendry@gmail.com>
12630 L:      linux-x25@vger.kernel.org
12631 S:      Odd Fixes
12632 F:      Documentation/networking/x25*
12633 F:      include/net/x25*
12634 F:      net/x25/
12635
12636 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12637 M:      Thomas Gleixner <tglx@linutronix.de>
12638 M:      Ingo Molnar <mingo@redhat.com>
12639 M:      "H. Peter Anvin" <hpa@zytor.com>
12640 M:      x86@kernel.org
12641 L:      linux-kernel@vger.kernel.org
12642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12643 S:      Maintained
12644 F:      Documentation/x86/
12645 F:      arch/x86/
12646
12647 X86 PLATFORM DRIVERS
12648 M:      Darren Hart <dvhart@infradead.org>
12649 L:      platform-driver-x86@vger.kernel.org
12650 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12651 S:      Maintained
12652 F:      drivers/platform/x86/
12653 F:      drivers/platform/olpc/
12654
12655 X86 MCE INFRASTRUCTURE
12656 M:      Tony Luck <tony.luck@intel.com>
12657 M:      Borislav Petkov <bp@alien8.de>
12658 L:      linux-edac@vger.kernel.org
12659 S:      Maintained
12660 F:      arch/x86/kernel/cpu/mcheck/*
12661
12662 X86 MICROCODE UPDATE SUPPORT
12663 M:      Borislav Petkov <bp@alien8.de>
12664 S:      Maintained
12665 F:      arch/x86/kernel/cpu/microcode/*
12666
12667 X86 VDSO
12668 M:      Andy Lutomirski <luto@amacapital.net>
12669 L:      linux-kernel@vger.kernel.org
12670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12671 S:      Maintained
12672 F:      arch/x86/entry/vdso/
12673
12674 XC2028/3028 TUNER DRIVER
12675 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12676 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12677 L:      linux-media@vger.kernel.org
12678 W:      https://linuxtv.org
12679 T:      git git://linuxtv.org/media_tree.git
12680 S:      Maintained
12681 F:      drivers/media/tuners/tuner-xc2028.*
12682
12683 XEN HYPERVISOR INTERFACE
12684 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12685 M:      David Vrabel <david.vrabel@citrix.com>
12686 M:      Juergen Gross <jgross@suse.com>
12687 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12689 S:      Supported
12690 F:      arch/x86/xen/
12691 F:      drivers/*/xen-*front.c
12692 F:      drivers/xen/
12693 F:      arch/x86/include/asm/xen/
12694 F:      include/xen/
12695 F:      include/uapi/xen/
12696
12697 XEN HYPERVISOR ARM
12698 M:      Stefano Stabellini <sstabellini@kernel.org>
12699 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12700 S:      Maintained
12701 F:      arch/arm/xen/
12702 F:      arch/arm/include/asm/xen/
12703
12704 XEN HYPERVISOR ARM64
12705 M:      Stefano Stabellini <sstabellini@kernel.org>
12706 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12707 S:      Maintained
12708 F:      arch/arm64/xen/
12709 F:      arch/arm64/include/asm/xen/
12710
12711 XEN NETWORK BACKEND DRIVER
12712 M:      Wei Liu <wei.liu2@citrix.com>
12713 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12714 L:      netdev@vger.kernel.org
12715 S:      Supported
12716 F:      drivers/net/xen-netback/*
12717
12718 XEN PCI SUBSYSTEM
12719 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12720 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12721 S:      Supported
12722 F:      arch/x86/pci/*xen*
12723 F:      drivers/pci/*xen*
12724
12725 XEN BLOCK SUBSYSTEM
12726 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12727 M:      Roger Pau Monné <roger.pau@citrix.com>
12728 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12729 S:      Supported
12730 F:      drivers/block/xen-blkback/*
12731 F:      drivers/block/xen*
12732
12733 XEN PVSCSI DRIVERS
12734 M:      Juergen Gross <jgross@suse.com>
12735 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12736 L:      linux-scsi@vger.kernel.org
12737 S:      Supported
12738 F:      drivers/scsi/xen-scsifront.c
12739 F:      drivers/xen/xen-scsiback.c
12740 F:      include/xen/interface/io/vscsiif.h
12741
12742 XEN SWIOTLB SUBSYSTEM
12743 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12744 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12745 S:      Supported
12746 F:      arch/x86/xen/*swiotlb*
12747 F:      drivers/xen/*swiotlb*
12748
12749 XFS FILESYSTEM
12750 P:      Silicon Graphics Inc
12751 M:      Dave Chinner <david@fromorbit.com>
12752 M:      xfs@oss.sgi.com
12753 L:      xfs@oss.sgi.com
12754 W:      http://oss.sgi.com/projects/xfs
12755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12756 S:      Supported
12757 F:      Documentation/filesystems/xfs.txt
12758 F:      fs/xfs/
12759
12760 XILINX AXI ETHERNET DRIVER
12761 M:      Anirudha Sarangi <anirudh@xilinx.com>
12762 M:      John Linn <John.Linn@xilinx.com>
12763 S:      Maintained
12764 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12765
12766 XILINX UARTLITE SERIAL DRIVER
12767 M:      Peter Korsgaard <jacmet@sunsite.dk>
12768 L:      linux-serial@vger.kernel.org
12769 S:      Maintained
12770 F:      drivers/tty/serial/uartlite.c
12771
12772 XILINX VIDEO IP CORES
12773 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12774 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12775 L:      linux-media@vger.kernel.org
12776 T:      git git://linuxtv.org/media_tree.git
12777 S:      Supported
12778 F:      Documentation/devicetree/bindings/media/xilinx/
12779 F:      drivers/media/platform/xilinx/
12780 F:      include/uapi/linux/xilinx-v4l2-controls.h
12781
12782 XILLYBUS DRIVER
12783 M:      Eli Billauer <eli.billauer@gmail.com>
12784 L:      linux-kernel@vger.kernel.org
12785 S:      Supported
12786 F:      drivers/char/xillybus/
12787
12788 XTENSA XTFPGA PLATFORM SUPPORT
12789 M:      Max Filippov <jcmvbkbc@gmail.com>
12790 L:      linux-xtensa@linux-xtensa.org
12791 S:      Maintained
12792 F:      drivers/spi/spi-xtensa-xtfpga.c
12793 F:      sound/soc/xtensa/xtfpga-i2s.c
12794
12795 YAM DRIVER FOR AX.25
12796 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12797 L:      linux-hams@vger.kernel.org
12798 S:      Maintained
12799 F:      drivers/net/hamradio/yam*
12800 F:      include/linux/yam.h
12801
12802 YEALINK PHONE DRIVER
12803 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12804 L:      usbb2k-api-dev@nongnu.org
12805 S:      Maintained
12806 F:      Documentation/input/yealink.txt
12807 F:      drivers/input/misc/yealink.*
12808
12809 Z8530 DRIVER FOR AX.25
12810 M:      Joerg Reuter <jreuter@yaina.de>
12811 W:      http://yaina.de/jreuter/
12812 W:      http://www.qsl.net/dl1bke/
12813 L:      linux-hams@vger.kernel.org
12814 S:      Maintained
12815 F:      Documentation/networking/z8530drv.txt
12816 F:      drivers/net/hamradio/*scc.c
12817 F:      drivers/net/hamradio/z8530.h
12818
12819 ZBUD COMPRESSED PAGE ALLOCATOR
12820 M:      Seth Jennings <sjenning@redhat.com>
12821 L:      linux-mm@kvack.org
12822 S:      Maintained
12823 F:      mm/zbud.c
12824 F:      include/linux/zbud.h
12825
12826 ZD1211RW WIRELESS DRIVER
12827 M:      Daniel Drake <dsd@gentoo.org>
12828 M:      Ulrich Kunitz <kune@deine-taler.de>
12829 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12830 L:      linux-wireless@vger.kernel.org
12831 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12832 S:      Maintained
12833 F:      drivers/net/wireless/zydas/zd1211rw/
12834
12835 ZPOOL COMPRESSED PAGE STORAGE API
12836 M:      Dan Streetman <ddstreet@ieee.org>
12837 L:      linux-mm@kvack.org
12838 S:      Maintained
12839 F:      mm/zpool.c
12840 F:      include/linux/zpool.h
12841
12842 ZR36067 VIDEO FOR LINUX DRIVER
12843 L:      mjpeg-users@lists.sourceforge.net
12844 L:      linux-media@vger.kernel.org
12845 W:      http://mjpeg.sourceforge.net/driver-zoran/
12846 T:      hg https://linuxtv.org/hg/v4l-dvb
12847 S:      Odd Fixes
12848 F:      drivers/media/pci/zoran/
12849
12850 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12851 M:      Minchan Kim <minchan@kernel.org>
12852 M:      Nitin Gupta <ngupta@vflare.org>
12853 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12854 L:      linux-kernel@vger.kernel.org
12855 S:      Maintained
12856 F:      drivers/block/zram/
12857 F:      Documentation/blockdev/zram.txt
12858
12859 ZS DECSTATION Z85C30 SERIAL DRIVER
12860 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12861 S:      Maintained
12862 F:      drivers/tty/serial/zs.*
12863
12864 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12865 M:      Minchan Kim <minchan@kernel.org>
12866 M:      Nitin Gupta <ngupta@vflare.org>
12867 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12868 L:      linux-mm@kvack.org
12869 S:      Maintained
12870 F:      mm/zsmalloc.c
12871 F:      include/linux/zsmalloc.h
12872 F:      Documentation/vm/zsmalloc.txt
12873
12874 ZSWAP COMPRESSED SWAP CACHING
12875 M:      Seth Jennings <sjenning@redhat.com>
12876 L:      linux-mm@kvack.org
12877 S:      Maintained
12878 F:      mm/zswap.c
12879
12880 THE REST
12881 M:      Linus Torvalds <torvalds@linux-foundation.org>
12882 L:      linux-kernel@vger.kernel.org
12883 Q:      http://patchwork.kernel.org/project/LKML/list/
12884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12885 S:      Buried alive in reporters
12886 F:      *
12887 F:      */