]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - MAINTAINERS
Merge tag 'pci-v4.5-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
[mirror_ubuntu-artful-kernel.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 <alex.aring@gmail.com>
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 W: http://serial.sourceforge.net
179 S: Maintained
180 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F: drivers/tty/serial/8250*
182 F: include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L: netdev@vger.kernel.org
186 S: Orphan / Obsolete
187 F: drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M: Eric Van Hensbergen <ericvh@gmail.com>
191 M: Ron Minnich <rminnich@sandia.gov>
192 M: Latchesar Ionkov <lucho@ionkov.net>
193 L: v9fs-developer@lists.sourceforge.net
194 W: http://swik.net/v9fs
195 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
196 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S: Maintained
198 F: Documentation/filesystems/9p.txt
199 F: fs/9p/
200 F: net/9p/
201 F: include/net/9p/
202 F: include/uapi/linux/virtio_9p.h
203 F: include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M: Antti Palosaari <crope@iki.fi>
208 L: linux-media@vger.kernel.org
209 W: https://linuxtv.org
210 W: http://palosaari.fi/linux/
211 Q: http://patchwork.linuxtv.org/project/linux-media/list/
212 T: git git://linuxtv.org/anttip/media_tree.git
213 S: Maintained
214 F: drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L: linux-scsi@vger.kernel.org
219 W: http://www.adaptec.com/
220 S: Supported
221 F: Documentation/scsi/aacraid.txt
222 F: drivers/scsi/aacraid/
223
224 ABI/API
225 L: linux-api@vger.kernel.org
226 F: Documentation/ABI/
227 F: include/linux/syscalls.h
228 F: include/uapi/
229 F: kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M: Hans de Goede <hdegoede@redhat.com>
233 L: lm-sensors@lm-sensors.org
234 S: Maintained
235 F: drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M: Alistair John Strachan <alistair@devzero.co.uk>
239 L: lm-sensors@lm-sensors.org
240 S: Maintained
241 F: drivers/hwmon/abituguru3.c
242
243 ACCES 104-IDI-48 GPIO DRIVER
244 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L: linux-gpio@vger.kernel.org
246 S: Maintained
247 F: drivers/gpio/gpio-104-idi-48.c
248
249 ACCES 104-IDIO-16 GPIO DRIVER
250 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
251 L: linux-gpio@vger.kernel.org
252 S: Maintained
253 F: drivers/gpio/gpio-104-idio-16.c
254
255 ACENIC DRIVER
256 M: Jes Sorensen <jes@trained-monkey.org>
257 L: linux-acenic@sunsite.dk
258 S: Maintained
259 F: drivers/net/ethernet/alteon/acenic*
260
261 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
262 M: Peter Feuerer <peter@piie.net>
263 L: platform-driver-x86@vger.kernel.org
264 W: http://piie.net/?section=acerhdf
265 S: Maintained
266 F: drivers/platform/x86/acerhdf.c
267
268 ACER WMI LAPTOP EXTRAS
269 M: "Lee, Chun-Yi" <jlee@suse.com>
270 L: platform-driver-x86@vger.kernel.org
271 S: Maintained
272 F: drivers/platform/x86/acer-wmi.c
273
274 ACPI
275 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
276 M: Len Brown <lenb@kernel.org>
277 L: linux-acpi@vger.kernel.org
278 W: https://01.org/linux-acpi
279 Q: https://patchwork.kernel.org/project/linux-acpi/list/
280 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
281 S: Supported
282 F: drivers/acpi/
283 F: drivers/pnp/pnpacpi/
284 F: include/linux/acpi.h
285 F: include/acpi/
286 F: Documentation/acpi/
287 F: Documentation/ABI/testing/sysfs-bus-acpi
288 F: drivers/pci/*acpi*
289 F: drivers/pci/*/*acpi*
290 F: drivers/pci/*/*/*acpi*
291 F: tools/power/acpi/
292
293 ACPI COMPONENT ARCHITECTURE (ACPICA)
294 M: Robert Moore <robert.moore@intel.com>
295 M: Lv Zheng <lv.zheng@intel.com>
296 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
297 L: linux-acpi@vger.kernel.org
298 L: devel@acpica.org
299 W: https://acpica.org/
300 W: https://github.com/acpica/acpica/
301 Q: https://patchwork.kernel.org/project/linux-acpi/list/
302 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
303 S: Supported
304 F: drivers/acpi/acpica/
305 F: include/acpi/
306 F: tools/power/acpi/
307
308 ACPI FAN DRIVER
309 M: Zhang Rui <rui.zhang@intel.com>
310 L: linux-acpi@vger.kernel.org
311 W: https://01.org/linux-acpi
312 S: Supported
313 F: drivers/acpi/fan.c
314
315 ACPI THERMAL DRIVER
316 M: Zhang Rui <rui.zhang@intel.com>
317 L: linux-acpi@vger.kernel.org
318 W: https://01.org/linux-acpi
319 S: Supported
320 F: drivers/acpi/*thermal*
321
322 ACPI VIDEO DRIVER
323 M: Zhang Rui <rui.zhang@intel.com>
324 L: linux-acpi@vger.kernel.org
325 W: https://01.org/linux-acpi
326 S: Supported
327 F: drivers/acpi/acpi_video.c
328
329 ACPI WMI DRIVER
330 L: platform-driver-x86@vger.kernel.org
331 S: Orphan
332 F: drivers/platform/x86/wmi.c
333
334 AD1889 ALSA SOUND DRIVER
335 M: Thibaut Varene <T-Bone@parisc-linux.org>
336 W: http://wiki.parisc-linux.org/AD1889
337 L: linux-parisc@vger.kernel.org
338 S: Maintained
339 F: sound/pci/ad1889.*
340
341 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
342 M: Michael Hennerich <michael.hennerich@analog.com>
343 W: http://wiki.analog.com/AD5254
344 W: http://ez.analog.com/community/linux-device-drivers
345 S: Supported
346 F: drivers/misc/ad525x_dpot.c
347
348 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
349 M: Michael Hennerich <michael.hennerich@analog.com>
350 W: http://wiki.analog.com/AD5398
351 W: http://ez.analog.com/community/linux-device-drivers
352 S: Supported
353 F: drivers/regulator/ad5398.c
354
355 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
356 M: Michael Hennerich <michael.hennerich@analog.com>
357 W: http://wiki.analog.com/AD7142
358 W: http://ez.analog.com/community/linux-device-drivers
359 S: Supported
360 F: drivers/input/misc/ad714x.c
361
362 AD7877 TOUCHSCREEN DRIVER
363 M: Michael Hennerich <michael.hennerich@analog.com>
364 W: http://wiki.analog.com/AD7877
365 W: http://ez.analog.com/community/linux-device-drivers
366 S: Supported
367 F: drivers/input/touchscreen/ad7877.c
368
369 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
370 M: Michael Hennerich <michael.hennerich@analog.com>
371 W: http://wiki.analog.com/AD7879
372 W: http://ez.analog.com/community/linux-device-drivers
373 S: Supported
374 F: drivers/input/touchscreen/ad7879.c
375
376 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
377 M: Jiri Kosina <jikos@kernel.org>
378 S: Maintained
379
380 ADF7242 IEEE 802.15.4 RADIO DRIVER
381 M: Michael Hennerich <michael.hennerich@analog.com>
382 W: https://wiki.analog.com/ADF7242
383 W: http://ez.analog.com/community/linux-device-drivers
384 L: linux-wpan@vger.kernel.org
385 S: Supported
386 F: drivers/net/ieee802154/adf7242.c
387 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
388
389 ADM1025 HARDWARE MONITOR DRIVER
390 M: Jean Delvare <jdelvare@suse.com>
391 L: lm-sensors@lm-sensors.org
392 S: Maintained
393 F: Documentation/hwmon/adm1025
394 F: drivers/hwmon/adm1025.c
395
396 ADM1029 HARDWARE MONITOR DRIVER
397 M: Corentin Labbe <clabbe.montjoie@gmail.com>
398 L: lm-sensors@lm-sensors.org
399 S: Maintained
400 F: drivers/hwmon/adm1029.c
401
402 ADM8211 WIRELESS DRIVER
403 L: linux-wireless@vger.kernel.org
404 W: http://wireless.kernel.org/
405 S: Orphan
406 F: drivers/net/wireless/admtek/adm8211.*
407
408 ADP1653 FLASH CONTROLLER DRIVER
409 M: Sakari Ailus <sakari.ailus@iki.fi>
410 L: linux-media@vger.kernel.org
411 S: Maintained
412 F: drivers/media/i2c/adp1653.c
413 F: include/media/i2c/adp1653.h
414
415 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
416 M: Michael Hennerich <michael.hennerich@analog.com>
417 W: http://wiki.analog.com/ADP5520
418 W: http://ez.analog.com/community/linux-device-drivers
419 S: Supported
420 F: drivers/mfd/adp5520.c
421 F: drivers/video/backlight/adp5520_bl.c
422 F: drivers/leds/leds-adp5520.c
423 F: drivers/gpio/gpio-adp5520.c
424 F: drivers/input/keyboard/adp5520-keys.c
425
426 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
427 M: Michael Hennerich <michael.hennerich@analog.com>
428 W: http://wiki.analog.com/ADP5588
429 W: http://ez.analog.com/community/linux-device-drivers
430 S: Supported
431 F: drivers/input/keyboard/adp5588-keys.c
432 F: drivers/gpio/gpio-adp5588.c
433
434 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
435 M: Michael Hennerich <michael.hennerich@analog.com>
436 W: http://wiki.analog.com/ADP8860
437 W: http://ez.analog.com/community/linux-device-drivers
438 S: Supported
439 F: drivers/video/backlight/adp8860_bl.c
440
441 ADS1015 HARDWARE MONITOR DRIVER
442 M: Dirk Eibach <eibach@gdsys.de>
443 L: lm-sensors@lm-sensors.org
444 S: Maintained
445 F: Documentation/hwmon/ads1015
446 F: drivers/hwmon/ads1015.c
447 F: include/linux/i2c/ads1015.h
448
449 ADT746X FAN DRIVER
450 M: Colin Leroy <colin@colino.net>
451 S: Maintained
452 F: drivers/macintosh/therm_adt746x.c
453
454 ADT7475 HARDWARE MONITOR DRIVER
455 M: Jean Delvare <jdelvare@suse.com>
456 L: lm-sensors@lm-sensors.org
457 S: Maintained
458 F: Documentation/hwmon/adt7475
459 F: drivers/hwmon/adt7475.c
460
461 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
462 M: Michael Hennerich <michael.hennerich@analog.com>
463 W: http://wiki.analog.com/ADXL345
464 W: http://ez.analog.com/community/linux-device-drivers
465 S: Supported
466 F: drivers/input/misc/adxl34x.c
467
468 ADVANSYS SCSI DRIVER
469 M: Matthew Wilcox <matthew@wil.cx>
470 M: Hannes Reinecke <hare@suse.com>
471 L: linux-scsi@vger.kernel.org
472 S: Maintained
473 F: Documentation/scsi/advansys.txt
474 F: drivers/scsi/advansys.c
475
476 AEDSP16 DRIVER
477 M: Riccardo Facchetti <fizban@tin.it>
478 S: Maintained
479 F: sound/oss/aedsp16.c
480
481 AF9013 MEDIA DRIVER
482 M: Antti Palosaari <crope@iki.fi>
483 L: linux-media@vger.kernel.org
484 W: https://linuxtv.org
485 W: http://palosaari.fi/linux/
486 Q: http://patchwork.linuxtv.org/project/linux-media/list/
487 T: git git://linuxtv.org/anttip/media_tree.git
488 S: Maintained
489 F: drivers/media/dvb-frontends/af9013*
490
491 AF9033 MEDIA DRIVER
492 M: Antti Palosaari <crope@iki.fi>
493 L: linux-media@vger.kernel.org
494 W: https://linuxtv.org
495 W: http://palosaari.fi/linux/
496 Q: http://patchwork.linuxtv.org/project/linux-media/list/
497 T: git git://linuxtv.org/anttip/media_tree.git
498 S: Maintained
499 F: drivers/media/dvb-frontends/af9033*
500
501 AFFS FILE SYSTEM
502 L: linux-fsdevel@vger.kernel.org
503 S: Orphan
504 F: Documentation/filesystems/affs.txt
505 F: fs/affs/
506
507 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
508 M: David Howells <dhowells@redhat.com>
509 L: linux-afs@lists.infradead.org
510 S: Supported
511 F: fs/afs/
512 F: include/net/af_rxrpc.h
513 F: net/rxrpc/af_rxrpc.c
514
515 AGPGART DRIVER
516 M: David Airlie <airlied@linux.ie>
517 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
518 S: Maintained
519 F: drivers/char/agp/
520 F: include/linux/agp*
521 F: include/uapi/linux/agp*
522
523 AHA152X SCSI DRIVER
524 M: "Juergen E. Fischer" <fischer@norbit.de>
525 L: linux-scsi@vger.kernel.org
526 S: Maintained
527 F: drivers/scsi/aha152x*
528 F: drivers/scsi/pcmcia/aha152x*
529
530 AIC7XXX / AIC79XX SCSI DRIVER
531 M: Hannes Reinecke <hare@suse.com>
532 L: linux-scsi@vger.kernel.org
533 S: Maintained
534 F: drivers/scsi/aic7xxx/
535
536 AIMSLAB FM RADIO RECEIVER DRIVER
537 M: Hans Verkuil <hverkuil@xs4all.nl>
538 L: linux-media@vger.kernel.org
539 T: git git://linuxtv.org/media_tree.git
540 W: https://linuxtv.org
541 S: Maintained
542 F: drivers/media/radio/radio-aimslab*
543
544 AIO
545 M: Benjamin LaHaise <bcrl@kvack.org>
546 L: linux-aio@kvack.org
547 S: Supported
548 F: fs/aio.c
549 F: include/linux/*aio*.h
550
551 AIRSPY MEDIA DRIVER
552 M: Antti Palosaari <crope@iki.fi>
553 L: linux-media@vger.kernel.org
554 W: https://linuxtv.org
555 W: http://palosaari.fi/linux/
556 Q: http://patchwork.linuxtv.org/project/linux-media/list/
557 T: git git://linuxtv.org/anttip/media_tree.git
558 S: Maintained
559 F: drivers/media/usb/airspy/
560
561 ALCATEL SPEEDTOUCH USB DRIVER
562 M: Duncan Sands <duncan.sands@free.fr>
563 L: linux-usb@vger.kernel.org
564 W: http://www.linux-usb.org/SpeedTouch/
565 S: Maintained
566 F: drivers/usb/atm/speedtch.c
567 F: drivers/usb/atm/usbatm.c
568
569 ALCHEMY AU1XX0 MMC DRIVER
570 M: Manuel Lauss <manuel.lauss@gmail.com>
571 S: Maintained
572 F: drivers/mmc/host/au1xmmc.c
573
574 ALI1563 I2C DRIVER
575 M: Rudolf Marek <r.marek@assembler.cz>
576 L: linux-i2c@vger.kernel.org
577 S: Maintained
578 F: Documentation/i2c/busses/i2c-ali1563
579 F: drivers/i2c/busses/i2c-ali1563.c
580
581 ALLWINNER SECURITY SYSTEM
582 M: Corentin Labbe <clabbe.montjoie@gmail.com>
583 L: linux-crypto@vger.kernel.org
584 S: Maintained
585 F: drivers/crypto/sunxi-ss/
586
587 ALPHA PORT
588 M: Richard Henderson <rth@twiddle.net>
589 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
590 M: Matt Turner <mattst88@gmail.com>
591 S: Odd Fixes
592 L: linux-alpha@vger.kernel.org
593 F: arch/alpha/
594
595 ALTERA MAILBOX DRIVER
596 M: Ley Foon Tan <lftan@altera.com>
597 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
598 S: Maintained
599 F: drivers/mailbox/mailbox-altera.c
600
601 ALTERA PIO DRIVER
602 M: Tien Hock Loh <thloh@altera.com>
603 L: linux-gpio@vger.kernel.org
604 S: Maintained
605 F: drivers/gpio/gpio-altera.c
606
607 ALTERA TRIPLE SPEED ETHERNET DRIVER
608 M: Vince Bridgers <vbridger@opensource.altera.com>
609 L: netdev@vger.kernel.org
610 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
611 S: Maintained
612 F: drivers/net/ethernet/altera/
613
614 ALTERA UART/JTAG UART SERIAL DRIVERS
615 M: Tobias Klauser <tklauser@distanz.ch>
616 L: linux-serial@vger.kernel.org
617 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
618 S: Maintained
619 F: drivers/tty/serial/altera_uart.c
620 F: drivers/tty/serial/altera_jtaguart.c
621 F: include/linux/altera_uart.h
622 F: include/linux/altera_jtaguart.h
623
624 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
625 M: Tom Lendacky <thomas.lendacky@amd.com>
626 L: linux-crypto@vger.kernel.org
627 S: Supported
628 F: drivers/crypto/ccp/
629 F: include/linux/ccp.h
630
631 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
632 M: Huang Rui <ray.huang@amd.com>
633 L: lm-sensors@lm-sensors.org
634 S: Supported
635 F: Documentation/hwmon/fam15h_power
636 F: drivers/hwmon/fam15h_power.c
637
638 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
639 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
640 S: Orphan
641 F: drivers/usb/gadget/udc/amd5536udc.*
642
643 AMD GEODE PROCESSOR/CHIPSET SUPPORT
644 P: Andres Salomon <dilinger@queued.net>
645 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
646 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
647 S: Supported
648 F: drivers/char/hw_random/geode-rng.c
649 F: drivers/crypto/geode*
650 F: drivers/video/fbdev/geode/
651 F: arch/x86/include/asm/geode.h
652
653 AMD IOMMU (AMD-VI)
654 M: Joerg Roedel <joro@8bytes.org>
655 L: iommu@lists.linux-foundation.org
656 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
657 S: Maintained
658 F: drivers/iommu/amd_iommu*.[ch]
659 F: include/linux/amd-iommu.h
660
661 AMD KFD
662 M: Oded Gabbay <oded.gabbay@gmail.com>
663 L: dri-devel@lists.freedesktop.org
664 T: git git://people.freedesktop.org/~gabbayo/linux.git
665 S: Supported
666 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
667 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
668 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
669 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
670 F: drivers/gpu/drm/amd/amdkfd/
671 F: drivers/gpu/drm/amd/include/cik_structs.h
672 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
673 F: drivers/gpu/drm/amd/include/vi_structs.h
674 F: drivers/gpu/drm/radeon/radeon_kfd.c
675 F: drivers/gpu/drm/radeon/radeon_kfd.h
676 F: include/uapi/linux/kfd_ioctl.h
677
678 AMD XGBE DRIVER
679 M: Tom Lendacky <thomas.lendacky@amd.com>
680 L: netdev@vger.kernel.org
681 S: Supported
682 F: drivers/net/ethernet/amd/xgbe/
683
684 AMS (Apple Motion Sensor) DRIVER
685 M: Michael Hanselmann <linux-kernel@hansmi.ch>
686 S: Supported
687 F: drivers/macintosh/ams/
688
689 AMSO1100 RNIC DRIVER
690 M: Tom Tucker <tom@opengridcomputing.com>
691 M: Steve Wise <swise@opengridcomputing.com>
692 L: linux-rdma@vger.kernel.org
693 S: Maintained
694 F: drivers/infiniband/hw/amso1100/
695
696 ANALOG DEVICES INC AD9389B DRIVER
697 M: Hans Verkuil <hans.verkuil@cisco.com>
698 L: linux-media@vger.kernel.org
699 S: Maintained
700 F: drivers/media/i2c/ad9389b*
701
702 ANALOG DEVICES INC ADV7180 DRIVER
703 M: Lars-Peter Clausen <lars@metafoo.de>
704 L: linux-media@vger.kernel.org
705 W: http://ez.analog.com/community/linux-device-drivers
706 S: Supported
707 F: drivers/media/i2c/adv7180.c
708
709 ANALOG DEVICES INC ADV7511 DRIVER
710 M: Hans Verkuil <hans.verkuil@cisco.com>
711 L: linux-media@vger.kernel.org
712 S: Maintained
713 F: drivers/media/i2c/adv7511*
714
715 ANALOG DEVICES INC ADV7604 DRIVER
716 M: Hans Verkuil <hans.verkuil@cisco.com>
717 L: linux-media@vger.kernel.org
718 S: Maintained
719 F: drivers/media/i2c/adv7604*
720
721 ANALOG DEVICES INC ADV7842 DRIVER
722 M: Hans Verkuil <hans.verkuil@cisco.com>
723 L: linux-media@vger.kernel.org
724 S: Maintained
725 F: drivers/media/i2c/adv7842*
726
727 ANALOG DEVICES INC ASOC CODEC DRIVERS
728 M: Lars-Peter Clausen <lars@metafoo.de>
729 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
730 W: http://wiki.analog.com/
731 W: http://ez.analog.com/community/linux-device-drivers
732 S: Supported
733 F: sound/soc/codecs/adau*
734 F: sound/soc/codecs/adav*
735 F: sound/soc/codecs/ad1*
736 F: sound/soc/codecs/ad7*
737 F: sound/soc/codecs/ssm*
738 F: sound/soc/codecs/sigmadsp.*
739
740 ANALOG DEVICES INC ASOC DRIVERS
741 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
742 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
743 W: http://blackfin.uclinux.org/
744 S: Supported
745 F: sound/soc/blackfin/*
746
747 ANALOG DEVICES INC IIO DRIVERS
748 M: Lars-Peter Clausen <lars@metafoo.de>
749 M: Michael Hennerich <Michael.Hennerich@analog.com>
750 W: http://wiki.analog.com/
751 W: http://ez.analog.com/community/linux-device-drivers
752 S: Supported
753 F: drivers/iio/*/ad*
754 X: drivers/iio/*/adjd*
755 F: drivers/staging/iio/*/ad*
756 F: staging/iio/trigger/iio-trig-bfin-timer.c
757
758 ANALOG DEVICES INC DMA DRIVERS
759 M: Lars-Peter Clausen <lars@metafoo.de>
760 W: http://ez.analog.com/community/linux-device-drivers
761 S: Supported
762 F: drivers/dma/dma-axi-dmac.c
763
764 ANDROID DRIVERS
765 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
766 M: Arve HjønnevĂ¥g <arve@android.com>
767 M: Riley Andrews <riandrews@android.com>
768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
769 L: devel@driverdev.osuosl.org
770 S: Supported
771 F: drivers/android/
772 F: drivers/staging/android/
773
774 AOA (Apple Onboard Audio) ALSA DRIVER
775 M: Johannes Berg <johannes@sipsolutions.net>
776 L: linuxppc-dev@lists.ozlabs.org
777 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
778 S: Maintained
779 F: sound/aoa/
780
781 APM DRIVER
782 M: Jiri Kosina <jikos@kernel.org>
783 S: Odd fixes
784 F: arch/x86/kernel/apm_32.c
785 F: include/linux/apm_bios.h
786 F: include/uapi/linux/apm_bios.h
787 F: drivers/char/apm-emulation.c
788
789 APPLE BCM5974 MULTITOUCH DRIVER
790 M: Henrik Rydberg <rydberg@bitmath.org>
791 L: linux-input@vger.kernel.org
792 S: Odd fixes
793 F: drivers/input/mouse/bcm5974.c
794
795 APPLE SMC DRIVER
796 M: Henrik Rydberg <rydberg@bitmath.org>
797 L: lm-sensors@lm-sensors.org
798 S: Odd fixes
799 F: drivers/hwmon/applesmc.c
800
801 APPLETALK NETWORK LAYER
802 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
803 S: Maintained
804 F: drivers/net/appletalk/
805 F: net/appletalk/
806
807 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
808 M: Duc Dang <dhdang@apm.com>
809 S: Supported
810 F: arch/arm64/boot/dts/apm/
811
812 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
813 M: Iyappan Subramanian <isubramanian@apm.com>
814 M: Keyur Chudgar <kchudgar@apm.com>
815 S: Supported
816 F: drivers/net/ethernet/apm/xgene/
817 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
818
819 APTINA CAMERA SENSOR PLL
820 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
821 L: linux-media@vger.kernel.org
822 S: Maintained
823 F: drivers/media/i2c/aptina-pll.*
824
825 ARC FRAMEBUFFER DRIVER
826 M: Jaya Kumar <jayalk@intworks.biz>
827 S: Maintained
828 F: drivers/video/fbdev/arcfb.c
829 F: drivers/video/fbdev/core/fb_defio.c
830
831 ARCNET NETWORK LAYER
832 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
833 L: netdev@vger.kernel.org
834 S: Maintained
835 F: drivers/net/arcnet/
836 F: include/uapi/linux/if_arcnet.h
837
838 ARM MFM AND FLOPPY DRIVERS
839 M: Ian Molton <spyro@f2s.com>
840 S: Maintained
841 F: arch/arm/lib/floppydma.S
842 F: arch/arm/include/asm/floppy.h
843
844 ARM PMU PROFILING AND DEBUGGING
845 M: Will Deacon <will.deacon@arm.com>
846 R: Mark Rutland <mark.rutland@arm.com>
847 S: Maintained
848 F: arch/arm*/kernel/perf_*
849 F: arch/arm/oprofile/common.c
850 F: arch/arm*/kernel/hw_breakpoint.c
851 F: arch/arm*/include/asm/hw_breakpoint.h
852 F: arch/arm*/include/asm/perf_event.h
853 F: drivers/perf/arm_pmu.c
854 F: include/linux/perf/arm_pmu.h
855
856 ARM PORT
857 M: Russell King <linux@arm.linux.org.uk>
858 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 W: http://www.arm.linux.org.uk/
860 S: Maintained
861 F: arch/arm/
862
863 ARM SUB-ARCHITECTURES
864 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 S: Maintained
866 F: arch/arm/mach-*/
867 F: arch/arm/plat-*/
868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
869
870 ARM PRIMECELL AACI PL041 DRIVER
871 M: Russell King <linux@arm.linux.org.uk>
872 S: Maintained
873 F: sound/arm/aaci.*
874
875 ARM PRIMECELL CLCD PL110 DRIVER
876 M: Russell King <linux@arm.linux.org.uk>
877 S: Maintained
878 F: drivers/video/fbdev/amba-clcd.*
879
880 ARM PRIMECELL KMI PL050 DRIVER
881 M: Russell King <linux@arm.linux.org.uk>
882 S: Maintained
883 F: drivers/input/serio/ambakmi.*
884 F: include/linux/amba/kmi.h
885
886 ARM PRIMECELL MMCI PL180/1 DRIVER
887 M: Russell King <linux@arm.linux.org.uk>
888 S: Maintained
889 F: drivers/mmc/host/mmci.*
890 F: include/linux/amba/mmci.h
891
892 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
893 M: Russell King <linux@arm.linux.org.uk>
894 S: Maintained
895 F: drivers/tty/serial/amba-pl01*.c
896 F: include/linux/amba/serial.h
897
898 ARM PRIMECELL BUS SUPPORT
899 M: Russell King <linux@arm.linux.org.uk>
900 S: Maintained
901 F: drivers/amba/
902 F: include/linux/amba/bus.h
903
904 ARM/ADS SPHERE MACHINE SUPPORT
905 M: Lennert Buytenhek <kernel@wantstofly.org>
906 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S: Maintained
908
909 ARM/AFEB9260 MACHINE SUPPORT
910 M: Sergey Lapin <slapin@ossfans.org>
911 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S: Maintained
913
914 ARM/AJECO 1ARM MACHINE SUPPORT
915 M: Lennert Buytenhek <kernel@wantstofly.org>
916 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S: Maintained
918
919 ARM/Allwinner sunXi SoC support
920 M: Maxime Ripard <maxime.ripard@free-electrons.com>
921 M: Chen-Yu Tsai <wens@csie.org>
922 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S: Maintained
924 N: sun[x456789]i
925
926 ARM/Allwinner SoC Clock Support
927 M: Emilio LĂ³pez <emilio@elopez.com.ar>
928 S: Maintained
929 F: drivers/clk/sunxi/
930
931 ARM/Amlogic MesonX SoC support
932 M: Carlo Caione <carlo@caione.org>
933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 S: Maintained
935 F: drivers/media/rc/meson-ir.c
936 N: meson[x68]
937
938 ARM/Annapurna Labs ALPINE ARCHITECTURE
939 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
940 S: Maintained
941 F: arch/arm/mach-alpine/
942
943 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
944 M: Nicolas Ferre <nicolas.ferre@atmel.com>
945 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
946 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
947 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
948 W: http://www.linux4sam.org
949 S: Supported
950 F: arch/arm/mach-at91/
951 F: include/soc/at91/
952 F: arch/arm/boot/dts/at91*.dts
953 F: arch/arm/boot/dts/at91*.dtsi
954 F: arch/arm/boot/dts/sama*.dts
955 F: arch/arm/boot/dts/sama*.dtsi
956 F: arch/arm/include/debug/at91.S
957
958 ARM/ATMEL AT91 Clock Support
959 M: Boris Brezillon <boris.brezillon@free-electrons.com>
960 S: Maintained
961 F: drivers/clk/at91
962
963 ARM/CALXEDA HIGHBANK ARCHITECTURE
964 M: Rob Herring <robh@kernel.org>
965 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
966 S: Maintained
967 F: arch/arm/mach-highbank/
968
969 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
970 M: Krzysztof Halasa <khalasa@piap.pl>
971 S: Maintained
972 F: arch/arm/mach-cns3xxx/
973
974 ARM/CAVIUM THUNDER NETWORK DRIVER
975 M: Sunil Goutham <sgoutham@cavium.com>
976 M: Robert Richter <rric@kernel.org>
977 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S: Supported
979 F: drivers/net/ethernet/cavium/thunder/
980
981 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
982 M: Alexander Shiyan <shc_work@mail.ru>
983 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S: Odd Fixes
985 N: clps711x
986
987 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
988 M: Hartley Sweeten <hsweeten@visionengravers.com>
989 M: Ryan Mallon <rmallon@gmail.com>
990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S: Maintained
992 F: arch/arm/mach-ep93xx/
993 F: arch/arm/mach-ep93xx/include/mach/
994
995 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
996 M: Lennert Buytenhek <kernel@wantstofly.org>
997 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S: Maintained
999
1000 ARM/CLKDEV SUPPORT
1001 M: Russell King <linux@arm.linux.org.uk>
1002 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S: Maintained
1004 F: arch/arm/include/asm/clkdev.h
1005 F: drivers/clk/clkdev.c
1006
1007 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1008 M: Mike Rapoport <mike@compulab.co.il>
1009 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S: Maintained
1011
1012 ARM/CONTEC MICRO9 MACHINE SUPPORT
1013 M: Hubert Feurstein <hubert.feurstein@contec.at>
1014 S: Maintained
1015 F: arch/arm/mach-ep93xx/micro9.c
1016
1017 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1018 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1019 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S: Maintained
1021 F: drivers/hwtracing/coresight/*
1022 F: Documentation/trace/coresight.txt
1023 F: Documentation/devicetree/bindings/arm/coresight.txt
1024 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1025
1026 ARM/CORGI MACHINE SUPPORT
1027 M: Richard Purdie <rpurdie@rpsys.net>
1028 S: Maintained
1029
1030 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1031 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1032 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 T: git git://github.com/ulli-kroll/linux.git
1034 S: Maintained
1035 F: arch/arm/mach-gemini/
1036 F: drivers/rtc/rtc-gemini.c
1037
1038 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1039 M: Barry Song <baohua@kernel.org>
1040 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1042 S: Maintained
1043 F: arch/arm/mach-prima2/
1044 F: drivers/clk/sirf/
1045 F: drivers/clocksource/timer-prima2.c
1046 F: drivers/clocksource/timer-atlas7.c
1047 N: [^a-z]sirf
1048
1049 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1050 M: Baruch Siach <baruch@tkos.co.il>
1051 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 S: Maintained
1053 F: arch/arm/boot/dts/cx92755*
1054 N: digicolor
1055
1056 ARM/EBSA110 MACHINE SUPPORT
1057 M: Russell King <linux@arm.linux.org.uk>
1058 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1059 W: http://www.arm.linux.org.uk/
1060 S: Maintained
1061 F: arch/arm/mach-ebsa110/
1062 F: drivers/net/ethernet/amd/am79c961a.*
1063
1064 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1065 M: Uwe Kleine-König <kernel@pengutronix.de>
1066 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S: Maintained
1068 N: efm32
1069
1070 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1071 M: Daniel Ribeiro <drwyrm@gmail.com>
1072 M: Stefan Schmidt <stefan@openezx.org>
1073 M: Harald Welte <laforge@openezx.org>
1074 L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
1075 W: http://www.openezx.org/
1076 S: Maintained
1077 T: topgit git://git.openezx.org/openezx.git
1078 F: arch/arm/mach-pxa/ezx.c
1079
1080 ARM/FARADAY FA526 PORT
1081 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S: Maintained
1084 T: git git://git.berlios.de/gemini-board
1085 F: arch/arm/mm/*-fa*
1086
1087 ARM/FOOTBRIDGE ARCHITECTURE
1088 M: Russell King <linux@arm.linux.org.uk>
1089 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W: http://www.arm.linux.org.uk/
1091 S: Maintained
1092 F: arch/arm/include/asm/hardware/dec21285.h
1093 F: arch/arm/mach-footbridge/
1094
1095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1096 M: Shawn Guo <shawnguo@kernel.org>
1097 M: Sascha Hauer <kernel@pengutronix.de>
1098 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S: Maintained
1100 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1101 F: arch/arm/mach-imx/
1102 F: arch/arm/mach-mxs/
1103 F: arch/arm/boot/dts/imx*
1104 F: arch/arm/configs/imx*_defconfig
1105 F: drivers/clk/imx/
1106 F: include/soc/imx/
1107
1108 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1109 M: Shawn Guo <shawnguo@kernel.org>
1110 M: Sascha Hauer <kernel@pengutronix.de>
1111 R: Stefan Agner <stefan@agner.ch>
1112 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S: Maintained
1114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1115 F: arch/arm/mach-imx/*vf610*
1116 F: arch/arm/boot/dts/vf*
1117
1118 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1119 M: Lennert Buytenhek <kernel@wantstofly.org>
1120 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S: Maintained
1122
1123 ARM/GUMSTIX MACHINE SUPPORT
1124 M: Steve Sakoman <sakoman@gmail.com>
1125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 S: Maintained
1127
1128 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1129 M: Philipp Zabel <philipp.zabel@gmail.com>
1130 M: Paul Parsons <lost.distance@yahoo.com>
1131 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S: Maintained
1133 F: arch/arm/mach-pxa/hx4700.c
1134 F: arch/arm/mach-pxa/include/mach/hx4700.h
1135 F: sound/soc/pxa/hx4700.c
1136
1137 ARM/HISILICON SOC SUPPORT
1138 M: Wei Xu <xuwei5@hisilicon.com>
1139 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 W: http://www.hisilicon.com
1141 S: Supported
1142 T: git git://github.com/hisilicon/linux-hisi.git
1143 F: arch/arm/mach-hisi/
1144
1145 ARM/HP JORNADA 7XX MACHINE SUPPORT
1146 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1147 W: www.jlime.com
1148 S: Maintained
1149 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1150 F: arch/arm/mach-sa1100/jornada720.c
1151 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1152
1153 ARM/IGEP MACHINE SUPPORT
1154 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1155 M: Javier Martinez Canillas <javier@dowhile0.org>
1156 L: linux-omap@vger.kernel.org
1157 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S: Maintained
1159 F: arch/arm/boot/dts/omap3-igep*
1160
1161 ARM/INCOME PXA270 SUPPORT
1162 M: Marek Vasut <marek.vasut@gmail.com>
1163 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S: Maintained
1165 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1166
1167 ARM/INTEL IOP32X ARM ARCHITECTURE
1168 M: Lennert Buytenhek <kernel@wantstofly.org>
1169 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 S: Maintained
1171
1172 ARM/INTEL IOP33X ARM ARCHITECTURE
1173 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S: Orphan
1175
1176 ARM/INTEL IOP13XX ARM ARCHITECTURE
1177 M: Lennert Buytenhek <kernel@wantstofly.org>
1178 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S: Maintained
1180
1181 ARM/INTEL IQ81342EX MACHINE SUPPORT
1182 M: Lennert Buytenhek <kernel@wantstofly.org>
1183 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S: Maintained
1185
1186 ARM/INTEL IXDP2850 MACHINE SUPPORT
1187 M: Lennert Buytenhek <kernel@wantstofly.org>
1188 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S: Maintained
1190
1191 ARM/INTEL IXP4XX ARM ARCHITECTURE
1192 M: Imre Kaloz <kaloz@openwrt.org>
1193 M: Krzysztof Halasa <khalasa@piap.pl>
1194 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S: Maintained
1196 F: arch/arm/mach-ixp4xx/
1197
1198 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1199 M: Jonathan Cameron <jic23@cam.ac.uk>
1200 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S: Maintained
1202 F: arch/arm/mach-pxa/stargate2.c
1203 F: drivers/pcmcia/pxa2xx_stargate2.c
1204
1205 ARM/INTEL XSC3 (MANZANO) ARM CORE
1206 M: Lennert Buytenhek <kernel@wantstofly.org>
1207 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S: Maintained
1209
1210 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1211 M: Lennert Buytenhek <kernel@wantstofly.org>
1212 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S: Maintained
1214
1215 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1216 M: Santosh Shilimkar <ssantosh@kernel.org>
1217 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S: Maintained
1219 F: arch/arm/mach-keystone/
1220 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1221
1222 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1223 M: Santosh Shilimkar <ssantosh@kernel.org>
1224 L: linux-kernel@vger.kernel.org
1225 S: Maintained
1226 F: drivers/clk/keystone/
1227
1228 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1229 M: Santosh Shilimkar <ssantosh@kernel.org>
1230 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 L: linux-kernel@vger.kernel.org
1232 S: Maintained
1233 F: drivers/clocksource/timer-keystone.c
1234
1235 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1236 M: Santosh Shilimkar <ssantosh@kernel.org>
1237 L: linux-kernel@vger.kernel.org
1238 S: Maintained
1239 F: drivers/power/reset/keystone-reset.c
1240
1241 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1242 M: Santosh Shilimkar <ssantosh@kernel.org>
1243 L: linux-kernel@vger.kernel.org
1244 S: Maintained
1245 F: drivers/memory/*emif*
1246
1247 ARM/LOGICPD PXA270 MACHINE SUPPORT
1248 M: Lennert Buytenhek <kernel@wantstofly.org>
1249 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 S: Maintained
1251
1252 ARM/LPC18XX ARCHITECTURE
1253 M: Joachim Eastwood <manabian@gmail.com>
1254 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S: Maintained
1256 F: arch/arm/boot/dts/lpc43*
1257 F: drivers/clk/nxp/clk-lpc18xx*
1258 F: drivers/clocksource/time-lpc32xx.c
1259 F: drivers/i2c/busses/i2c-lpc2k.c
1260 F: drivers/memory/pl172.c
1261 F: drivers/mtd/spi-nor/nxp-spifi.c
1262 F: drivers/rtc/rtc-lpc24xx.c
1263 N: lpc18xx
1264
1265 ARM/MAGICIAN MACHINE SUPPORT
1266 M: Philipp Zabel <philipp.zabel@gmail.com>
1267 S: Maintained
1268
1269 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1270 M: Jason Cooper <jason@lakedaemon.net>
1271 M: Andrew Lunn <andrew@lunn.ch>
1272 M: Gregory Clement <gregory.clement@free-electrons.com>
1273 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1274 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S: Maintained
1276 F: arch/arm/mach-mvebu/
1277 F: drivers/rtc/rtc-armada38x.c
1278 F: arch/arm/boot/dts/armada*
1279 F: arch/arm/boot/dts/kirkwood*
1280
1281
1282 ARM/Marvell Berlin SoC support
1283 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1284 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 S: Maintained
1286 F: arch/arm/mach-berlin/
1287 F: arch/arm/boot/dts/berlin*
1288
1289
1290 ARM/Marvell Dove/MV78xx0/Orion SOC support
1291 M: Jason Cooper <jason@lakedaemon.net>
1292 M: Andrew Lunn <andrew@lunn.ch>
1293 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1294 M: Gregory Clement <gregory.clement@free-electrons.com>
1295 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 S: Maintained
1297 F: arch/arm/mach-dove/
1298 F: arch/arm/mach-mv78xx0/
1299 F: arch/arm/mach-orion5x/
1300 F: arch/arm/plat-orion/
1301 F: arch/arm/boot/dts/dove*
1302 F: arch/arm/boot/dts/orion5x*
1303
1304
1305 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1306 M: Alexander Clouter <alex@digriz.org.uk>
1307 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 W: http://www.digriz.org.uk/ts78xx/kernel
1309 S: Maintained
1310 F: arch/arm/mach-orion5x/ts78xx-*
1311
1312 ARM/Mediatek RTC DRIVER
1313 M: Eddie Huang <eddie.huang@mediatek.com>
1314 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1316 S: Maintained
1317 F: drivers/rtc/rtc-mt6397.c
1318
1319 ARM/Mediatek SoC support
1320 M: Matthias Brugger <matthias.bgg@gmail.com>
1321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1323 S: Maintained
1324 F: arch/arm/boot/dts/mt6*
1325 F: arch/arm/boot/dts/mt8*
1326 F: arch/arm/mach-mediatek/
1327 N: mtk
1328 K: mediatek
1329
1330 ARM/Mediatek USB3 PHY DRIVER
1331 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1334 S: Maintained
1335 F: drivers/phy/phy-mt65xx-usb3.c
1336
1337 ARM/MICREL KS8695 ARCHITECTURE
1338 M: Greg Ungerer <gerg@uclinux.org>
1339 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 F: arch/arm/mach-ks8695/
1341 S: Odd Fixes
1342
1343 ARM/MIOA701 MACHINE SUPPORT
1344 M: Robert Jarzmik <robert.jarzmik@free.fr>
1345 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 F: arch/arm/mach-pxa/mioa701.c
1347 S: Maintained
1348
1349 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1350 M: Michael Petchkovsky <mkpetch@internode.on.net>
1351 S: Maintained
1352
1353 ARM/NOMADIK ARCHITECTURE
1354 M: Alessandro Rubini <rubini@unipv.it>
1355 M: Linus Walleij <linus.walleij@linaro.org>
1356 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1357 S: Maintained
1358 F: arch/arm/mach-nomadik/
1359 F: drivers/pinctrl/nomadik/
1360 F: drivers/i2c/busses/i2c-nomadik.c
1361 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1362
1363 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1364 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1365 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1366 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1367 S: Supported
1368
1369 ARM/TOSA MACHINE SUPPORT
1370 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1371 M: Dirk Opfer <dirk@opfer-online.de>
1372 S: Maintained
1373
1374 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1375 M: Marek Vasut <marek.vasut@gmail.com>
1376 L: linux-arm-kernel@lists.infradead.org
1377 W: http://hackndev.com
1378 S: Maintained
1379 F: arch/arm/mach-pxa/include/mach/palmtx.h
1380 F: arch/arm/mach-pxa/palmtx.c
1381 F: arch/arm/mach-pxa/include/mach/palmt5.h
1382 F: arch/arm/mach-pxa/palmt5.c
1383 F: arch/arm/mach-pxa/include/mach/palmld.h
1384 F: arch/arm/mach-pxa/palmld.c
1385 F: arch/arm/mach-pxa/include/mach/palmte2.h
1386 F: arch/arm/mach-pxa/palmte2.c
1387 F: arch/arm/mach-pxa/include/mach/palmtc.h
1388 F: arch/arm/mach-pxa/palmtc.c
1389
1390 ARM/PALM TREO SUPPORT
1391 M: Tomas Cech <sleep_walker@suse.com>
1392 L: linux-arm-kernel@lists.infradead.org
1393 W: http://hackndev.com
1394 S: Maintained
1395 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1396 F: arch/arm/mach-pxa/palmtreo.c
1397
1398 ARM/PALMZ72 SUPPORT
1399 M: Sergey Lapin <slapin@ossfans.org>
1400 L: linux-arm-kernel@lists.infradead.org
1401 W: http://hackndev.com
1402 S: Maintained
1403 F: arch/arm/mach-pxa/include/mach/palmz72.h
1404 F: arch/arm/mach-pxa/palmz72.c
1405
1406 ARM/PLEB SUPPORT
1407 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1408 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1409 S: Maintained
1410
1411 ARM/PT DIGITAL BOARD PORT
1412 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 W: http://www.arm.linux.org.uk/
1415 S: Maintained
1416
1417 ARM/QUALCOMM SUPPORT
1418 M: Andy Gross <andy.gross@linaro.org>
1419 M: David Brown <david.brown@linaro.org>
1420 L: linux-arm-msm@vger.kernel.org
1421 L: linux-soc@vger.kernel.org
1422 S: Maintained
1423 F: arch/arm/boot/dts/qcom-*.dts
1424 F: arch/arm/boot/dts/qcom-*.dtsi
1425 F: arch/arm/mach-qcom/
1426 F: drivers/soc/qcom/
1427 F: drivers/tty/serial/msm_serial.h
1428 F: drivers/tty/serial/msm_serial.c
1429 F: drivers/*/pm8???-*
1430 F: drivers/mfd/ssbi.c
1431 F: drivers/firmware/qcom_scm.c
1432 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1433
1434 ARM/RADISYS ENP2611 MACHINE SUPPORT
1435 M: Lennert Buytenhek <kernel@wantstofly.org>
1436 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S: Maintained
1438
1439 ARM/RENESAS ARM64 ARCHITECTURE
1440 M: Simon Horman <horms@verge.net.au>
1441 M: Magnus Damm <magnus.damm@gmail.com>
1442 L: linux-sh@vger.kernel.org
1443 Q: http://patchwork.kernel.org/project/linux-sh/list/
1444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1445 S: Supported
1446 F: arch/arm64/boot/dts/renesas/
1447
1448 ARM/RISCPC ARCHITECTURE
1449 M: Russell King <linux@arm.linux.org.uk>
1450 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1451 W: http://www.arm.linux.org.uk/
1452 S: Maintained
1453 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1454 F: arch/arm/include/asm/hardware/ioc.h
1455 F: arch/arm/include/asm/hardware/iomd.h
1456 F: arch/arm/include/asm/hardware/memc.h
1457 F: arch/arm/mach-rpc/
1458 F: drivers/net/ethernet/8390/etherh.c
1459 F: drivers/net/ethernet/i825xx/ether1*
1460 F: drivers/net/ethernet/seeq/ether3*
1461 F: drivers/scsi/arm/
1462
1463 ARM/Rockchip SoC support
1464 M: Heiko Stuebner <heiko@sntech.de>
1465 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 L: linux-rockchip@lists.infradead.org
1467 S: Maintained
1468 F: arch/arm/boot/dts/rk3*
1469 F: arch/arm/mach-rockchip/
1470 F: drivers/clk/rockchip/
1471 F: drivers/i2c/busses/i2c-rk3x.c
1472 F: drivers/*/*rockchip*
1473 F: drivers/*/*/*rockchip*
1474 F: sound/soc/rockchip/
1475 N: rockchip
1476
1477 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1478 M: Kukjin Kim <kgene@kernel.org>
1479 M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
1480 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1481 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1482 S: Maintained
1483 F: arch/arm/boot/dts/s3c*
1484 F: arch/arm/boot/dts/exynos*
1485 F: arch/arm64/boot/dts/exynos/
1486 F: arch/arm/plat-samsung/
1487 F: arch/arm/mach-s3c24*/
1488 F: arch/arm/mach-s3c64xx/
1489 F: arch/arm/mach-s5p*/
1490 F: arch/arm/mach-exynos*/
1491 F: drivers/*/*s3c2410*
1492 F: drivers/*/*/*s3c2410*
1493 F: drivers/spi/spi-s3c*
1494 F: sound/soc/samsung/*
1495 F: Documentation/arm/Samsung/
1496 F: Documentation/devicetree/bindings/arm/samsung/
1497 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1498 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1499 N: exynos
1500
1501 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1502 M: Kyungmin Park <kyungmin.park@samsung.com>
1503 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 S: Maintained
1505 F: arch/arm/mach-s5pv210/
1506
1507 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1508 M: Kyungmin Park <kyungmin.park@samsung.com>
1509 M: Kamil Debski <k.debski@samsung.com>
1510 L: linux-arm-kernel@lists.infradead.org
1511 L: linux-media@vger.kernel.org
1512 S: Maintained
1513 F: drivers/media/platform/s5p-g2d/
1514
1515 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1516 M: Kyungmin Park <kyungmin.park@samsung.com>
1517 M: Kamil Debski <k.debski@samsung.com>
1518 M: Jeongtae Park <jtp.park@samsung.com>
1519 L: linux-arm-kernel@lists.infradead.org
1520 L: linux-media@vger.kernel.org
1521 S: Maintained
1522 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1523 F: drivers/media/platform/s5p-mfc/
1524
1525 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1526 M: Kyungmin Park <kyungmin.park@samsung.com>
1527 M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1528 L: linux-arm-kernel@lists.infradead.org
1529 L: linux-media@vger.kernel.org
1530 S: Maintained
1531 F: drivers/media/platform/s5p-tv/
1532
1533 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1534 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1535 M: Jacek Anaszewski <j.anaszewski@samsung.com>
1536 L: linux-arm-kernel@lists.infradead.org
1537 L: linux-media@vger.kernel.org
1538 S: Maintained
1539 F: drivers/media/platform/s5p-jpeg/
1540
1541 ARM/SHMOBILE ARM ARCHITECTURE
1542 M: Simon Horman <horms@verge.net.au>
1543 M: Magnus Damm <magnus.damm@gmail.com>
1544 L: linux-renesas-soc@vger.kernel.org
1545 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1546 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1547 S: Supported
1548 F: arch/arm/boot/dts/emev2*
1549 F: arch/arm/boot/dts/r7s*
1550 F: arch/arm/boot/dts/r8a*
1551 F: arch/arm/boot/dts/sh*
1552 F: arch/arm/configs/shmobile_defconfig
1553 F: arch/arm/include/debug/renesas-scif.S
1554 F: arch/arm/mach-shmobile/
1555 F: drivers/sh/
1556
1557 ARM/SOCFPGA ARCHITECTURE
1558 M: Dinh Nguyen <dinguyen@opensource.altera.com>
1559 S: Maintained
1560 F: arch/arm/mach-socfpga/
1561 F: arch/arm/boot/dts/socfpga*
1562 F: arch/arm/configs/socfpga_defconfig
1563 W: http://www.rocketboards.org
1564 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1565
1566 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1567 M: Dinh Nguyen <dinguyen@opensource.altera.com>
1568 S: Maintained
1569 F: drivers/clk/socfpga/
1570
1571 ARM/SOCFPGA EDAC SUPPORT
1572 M: Thor Thayer <tthayer@opensource.altera.com>
1573 S: Maintained
1574 F: drivers/edac/altera_edac.
1575
1576 ARM/STI ARCHITECTURE
1577 M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1578 M: Maxime Coquelin <maxime.coquelin@st.com>
1579 M: Patrice Chotard <patrice.chotard@st.com>
1580 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 L: kernel@stlinux.com
1582 W: http://www.stlinux.com
1583 S: Maintained
1584 F: arch/arm/mach-sti/
1585 F: arch/arm/boot/dts/sti*
1586 F: drivers/char/hw_random/st-rng.c
1587 F: drivers/clocksource/arm_global_timer.c
1588 F: drivers/clocksource/clksrc_st_lpc.c
1589 F: drivers/i2c/busses/i2c-st.c
1590 F: drivers/media/rc/st_rc.c
1591 F: drivers/media/platform/sti/c8sectpfe/
1592 F: drivers/mmc/host/sdhci-st.c
1593 F: drivers/phy/phy-miphy28lp.c
1594 F: drivers/phy/phy-miphy365x.c
1595 F: drivers/phy/phy-stih407-usb.c
1596 F: drivers/phy/phy-stih41x-usb.c
1597 F: drivers/pinctrl/pinctrl-st.c
1598 F: drivers/reset/sti/
1599 F: drivers/rtc/rtc-st-lpc.c
1600 F: drivers/tty/serial/st-asc.c
1601 F: drivers/usb/dwc3/dwc3-st.c
1602 F: drivers/usb/host/ehci-st.c
1603 F: drivers/usb/host/ohci-st.c
1604 F: drivers/watchdog/st_lpc_wdt.c
1605 F: drivers/ata/ahci_st.c
1606
1607 ARM/STM32 ARCHITECTURE
1608 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1609 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S: Maintained
1611 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1612 N: stm32
1613 F: drivers/clocksource/armv7m_systick.c
1614
1615 ARM/TANGO ARCHITECTURE
1616 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1617 L: linux-arm-kernel@lists.infradead.org
1618 S: Maintained
1619 F: arch/arm/mach-tango/
1620 F: arch/arm/boot/dts/tango*
1621
1622 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1623 M: Lennert Buytenhek <kernel@wantstofly.org>
1624 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S: Maintained
1626
1627 ARM/TETON BGA MACHINE SUPPORT
1628 M: "Mark F. Brown" <mark.brown314@gmail.com>
1629 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 S: Maintained
1631
1632 ARM/THECUS N2100 MACHINE SUPPORT
1633 M: Lennert Buytenhek <kernel@wantstofly.org>
1634 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S: Maintained
1636
1637 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1638 M: Wan ZongShun <mcuos.com@gmail.com>
1639 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 W: http://www.mcuos.com
1641 S: Maintained
1642 F: arch/arm/mach-w90x900/
1643 F: drivers/input/keyboard/w90p910_keypad.c
1644 F: drivers/input/touchscreen/w90p910_ts.c
1645 F: drivers/watchdog/nuc900_wdt.c
1646 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1647 F: drivers/mtd/nand/nuc900_nand.c
1648 F: drivers/rtc/rtc-nuc900.c
1649 F: drivers/spi/spi-nuc900.c
1650 F: drivers/usb/host/ehci-w90x900.c
1651 F: drivers/video/fbdev/nuc900fb.c
1652
1653 ARM/U300 MACHINE SUPPORT
1654 M: Linus Walleij <linus.walleij@linaro.org>
1655 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1656 S: Supported
1657 F: arch/arm/mach-u300/
1658 F: drivers/clocksource/timer-u300.c
1659 F: drivers/i2c/busses/i2c-stu300.c
1660 F: drivers/rtc/rtc-coh901331.c
1661 F: drivers/watchdog/coh901327_wdt.c
1662 F: drivers/dma/coh901318*
1663 F: drivers/mfd/ab3100*
1664 F: drivers/rtc/rtc-ab3100.c
1665 F: drivers/rtc/rtc-coh901331.c
1666 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1667
1668 ARM/UNIPHIER ARCHITECTURE
1669 M: Masahiro Yamada <yamada.masahiro@socionext.com>
1670 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S: Maintained
1672 F: arch/arm/boot/dts/uniphier*
1673 F: arch/arm/include/asm/hardware/cache-uniphier.h
1674 F: arch/arm/mach-uniphier/
1675 F: arch/arm/mm/cache-uniphier.c
1676 F: arch/arm64/boot/dts/socionext/
1677 F: drivers/bus/uniphier-system-bus.c
1678 F: drivers/i2c/busses/i2c-uniphier*
1679 F: drivers/pinctrl/uniphier/
1680 F: drivers/tty/serial/8250/8250_uniphier.c
1681 N: uniphier
1682
1683 ARM/Ux500 ARM ARCHITECTURE
1684 M: Linus Walleij <linus.walleij@linaro.org>
1685 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S: Maintained
1687 F: arch/arm/mach-ux500/
1688 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1689 F: drivers/dma/ste_dma40*
1690 F: drivers/hwspinlock/u8500_hsem.c
1691 F: drivers/mfd/abx500*
1692 F: drivers/mfd/ab8500*
1693 F: drivers/mfd/dbx500*
1694 F: drivers/mfd/db8500*
1695 F: drivers/pinctrl/nomadik/pinctrl-ab*
1696 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
1697 F: drivers/rtc/rtc-ab8500.c
1698 F: drivers/rtc/rtc-pl031.c
1699 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1700
1701 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1702 M: Ulf Hansson <ulf.hansson@linaro.org>
1703 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 T: git git://git.linaro.org/people/ulfh/clk.git
1705 S: Maintained
1706 F: drivers/clk/ux500/
1707 F: include/linux/platform_data/clk-ux500.h
1708
1709 ARM/VERSATILE EXPRESS PLATFORM
1710 M: Liviu Dudau <liviu.dudau@arm.com>
1711 M: Sudeep Holla <sudeep.holla@arm.com>
1712 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1713 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S: Maintained
1715 F: arch/arm/boot/dts/vexpress*
1716 F: arch/arm64/boot/dts/arm/vexpress*
1717 F: arch/arm/mach-vexpress/
1718 F: */*/vexpress*
1719 F: */*/*/vexpress*
1720 F: drivers/clk/versatile/clk-vexpress-osc.c
1721 F: drivers/clocksource/versatile.c
1722
1723 ARM/VFP SUPPORT
1724 M: Russell King <linux@arm.linux.org.uk>
1725 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 W: http://www.arm.linux.org.uk/
1727 S: Maintained
1728 F: arch/arm/vfp/
1729
1730 ARM/VOIPAC PXA270 SUPPORT
1731 M: Marek Vasut <marek.vasut@gmail.com>
1732 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 S: Maintained
1734 F: arch/arm/mach-pxa/vpac270.c
1735 F: arch/arm/mach-pxa/include/mach/vpac270.h
1736
1737 ARM/VT8500 ARM ARCHITECTURE
1738 M: Tony Prisk <linux@prisktech.co.nz>
1739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S: Maintained
1741 F: arch/arm/mach-vt8500/
1742 F: drivers/clocksource/vt8500_timer.c
1743 F: drivers/i2c/busses/i2c-wmt.c
1744 F: drivers/mmc/host/wmt-sdmmc.c
1745 F: drivers/pwm/pwm-vt8500.c
1746 F: drivers/rtc/rtc-vt8500.c
1747 F: drivers/tty/serial/vt8500_serial.c
1748 F: drivers/usb/host/ehci-platform.c
1749 F: drivers/usb/host/uhci-platform.c
1750 F: drivers/video/fbdev/vt8500lcdfb.*
1751 F: drivers/video/fbdev/wm8505fb*
1752 F: drivers/video/fbdev/wmt_ge_rops.*
1753
1754 ARM/ZIPIT Z2 SUPPORT
1755 M: Marek Vasut <marek.vasut@gmail.com>
1756 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S: Maintained
1758 F: arch/arm/mach-pxa/z2.c
1759 F: arch/arm/mach-pxa/include/mach/z2.h
1760
1761 ARM/ZTE ARCHITECTURE
1762 M: Jun Nie <jun.nie@linaro.org>
1763 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S: Maintained
1765 F: arch/arm/mach-zx/
1766 F: drivers/clk/zte/
1767 F: Documentation/devicetree/bindings/arm/zte.txt
1768 F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
1769
1770 ARM/ZYNQ ARCHITECTURE
1771 M: Michal Simek <michal.simek@xilinx.com>
1772 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
1773 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 W: http://wiki.xilinx.com
1775 T: git https://github.com/Xilinx/linux-xlnx.git
1776 S: Supported
1777 F: arch/arm/mach-zynq/
1778 F: drivers/cpuidle/cpuidle-zynq.c
1779 F: drivers/block/xsysace.c
1780 N: zynq
1781 N: xilinx
1782 F: drivers/clocksource/cadence_ttc_timer.c
1783 F: drivers/i2c/busses/i2c-cadence.c
1784 F: drivers/mmc/host/sdhci-of-arasan.c
1785 F: drivers/edac/synopsys_edac.c
1786
1787 ARM SMMU DRIVERS
1788 M: Will Deacon <will.deacon@arm.com>
1789 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S: Maintained
1791 F: drivers/iommu/arm-smmu.c
1792 F: drivers/iommu/arm-smmu-v3.c
1793 F: drivers/iommu/io-pgtable-arm.c
1794
1795 ARM64 PORT (AARCH64 ARCHITECTURE)
1796 M: Catalin Marinas <catalin.marinas@arm.com>
1797 M: Will Deacon <will.deacon@arm.com>
1798 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S: Maintained
1800 F: arch/arm64/
1801 F: Documentation/arm64/
1802
1803 AS3645A LED FLASH CONTROLLER DRIVER
1804 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1805 L: linux-media@vger.kernel.org
1806 T: git git://linuxtv.org/media_tree.git
1807 S: Maintained
1808 F: drivers/media/i2c/as3645a.c
1809 F: include/media/i2c/as3645a.h
1810
1811 ASC7621 HARDWARE MONITOR DRIVER
1812 M: George Joseph <george.joseph@fairview5.com>
1813 L: lm-sensors@lm-sensors.org
1814 S: Maintained
1815 F: Documentation/hwmon/asc7621
1816 F: drivers/hwmon/asc7621.c
1817
1818 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1819 M: Corentin Chary <corentin.chary@gmail.com>
1820 L: acpi4asus-user@lists.sourceforge.net
1821 L: platform-driver-x86@vger.kernel.org
1822 W: http://acpi4asus.sf.net
1823 S: Maintained
1824 F: drivers/platform/x86/asus*.c
1825 F: drivers/platform/x86/eeepc*.c
1826
1827 ASUS WIRELESS RADIO CONTROL DRIVER
1828 M: JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1829 L: platform-driver-x86@vger.kernel.org
1830 S: Maintained
1831 F: drivers/platform/x86/asus-wireless.c
1832
1833 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1834 R: Dan Williams <dan.j.williams@intel.com>
1835 W: http://sourceforge.net/projects/xscaleiop
1836 S: Odd fixes
1837 F: Documentation/crypto/async-tx-api.txt
1838 F: crypto/async_tx/
1839 F: drivers/dma/
1840 F: include/linux/dmaengine.h
1841 F: include/linux/async_tx.h
1842
1843 AT24 EEPROM DRIVER
1844 M: Wolfram Sang <wsa@the-dreams.de>
1845 L: linux-i2c@vger.kernel.org
1846 S: Maintained
1847 F: drivers/misc/eeprom/at24.c
1848 F: include/linux/platform_data/at24.h
1849
1850 ATA OVER ETHERNET (AOE) DRIVER
1851 M: "Ed L. Cashin" <ed.cashin@acm.org>
1852 W: http://www.openaoe.org/
1853 S: Supported
1854 F: Documentation/aoe/
1855 F: drivers/block/aoe/
1856
1857 ATHEROS 71XX/9XXX GPIO DRIVER
1858 M: Alban Bedel <albeu@free.fr>
1859 W: https://github.com/AlbanBedel/linux
1860 T: git git://github.com/AlbanBedel/linux
1861 S: Maintained
1862 F: drivers/gpio/gpio-ath79.c
1863 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1864
1865 ATHEROS ATH GENERIC UTILITIES
1866 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1867 L: linux-wireless@vger.kernel.org
1868 S: Supported
1869 F: drivers/net/wireless/ath/*
1870
1871 ATHEROS ATH5K WIRELESS DRIVER
1872 M: Jiri Slaby <jirislaby@gmail.com>
1873 M: Nick Kossifidis <mickflemm@gmail.com>
1874 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1875 L: linux-wireless@vger.kernel.org
1876 W: http://wireless.kernel.org/en/users/Drivers/ath5k
1877 S: Maintained
1878 F: drivers/net/wireless/ath/ath5k/
1879
1880 ATHEROS ATH6KL WIRELESS DRIVER
1881 M: Kalle Valo <kvalo@qca.qualcomm.com>
1882 L: linux-wireless@vger.kernel.org
1883 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1884 T: git git://github.com/kvalo/ath.git
1885 S: Supported
1886 F: drivers/net/wireless/ath/ath6kl/
1887
1888 WILOCITY WIL6210 WIRELESS DRIVER
1889 M: Maya Erez <qca_merez@qca.qualcomm.com>
1890 L: linux-wireless@vger.kernel.org
1891 L: wil6210@qca.qualcomm.com
1892 S: Supported
1893 W: http://wireless.kernel.org/en/users/Drivers/wil6210
1894 F: drivers/net/wireless/ath/wil6210/
1895 F: include/uapi/linux/wil6210_uapi.h
1896
1897 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1898 M: Christian Lamparter <chunkeey@googlemail.com>
1899 L: linux-wireless@vger.kernel.org
1900 W: http://wireless.kernel.org/en/users/Drivers/carl9170
1901 S: Maintained
1902 F: drivers/net/wireless/ath/carl9170/
1903
1904 ATK0110 HWMON DRIVER
1905 M: Luca Tettamanti <kronos.it@gmail.com>
1906 L: lm-sensors@lm-sensors.org
1907 S: Maintained
1908 F: drivers/hwmon/asus_atk0110.c
1909
1910 ATI_REMOTE2 DRIVER
1911 M: Ville Syrjala <syrjala@sci.fi>
1912 S: Maintained
1913 F: drivers/input/misc/ati_remote2.c
1914
1915 ATLX ETHERNET DRIVERS
1916 M: Jay Cliburn <jcliburn@gmail.com>
1917 M: Chris Snook <chris.snook@gmail.com>
1918 L: netdev@vger.kernel.org
1919 W: http://sourceforge.net/projects/atl1
1920 W: http://atl1.sourceforge.net
1921 S: Maintained
1922 F: drivers/net/ethernet/atheros/
1923
1924 ATM
1925 M: Chas Williams <3chas3@gmail.com>
1926 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1927 L: netdev@vger.kernel.org
1928 W: http://linux-atm.sourceforge.net
1929 S: Maintained
1930 F: drivers/atm/
1931 F: include/linux/atm*
1932 F: include/uapi/linux/atm*
1933
1934 ATMEL AT91 / AT32 MCI DRIVER
1935 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1936 S: Maintained
1937 F: drivers/mmc/host/atmel-mci.c
1938
1939 ATMEL AT91 / AT32 SERIAL DRIVER
1940 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1941 S: Supported
1942 F: drivers/tty/serial/atmel_serial.c
1943
1944 ATMEL Audio ALSA driver
1945 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1946 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1947 S: Supported
1948 F: sound/soc/atmel
1949
1950 ATMEL DMA DRIVER
1951 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1952 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S: Supported
1954 F: drivers/dma/at_hdmac.c
1955 F: drivers/dma/at_hdmac_regs.h
1956 F: include/linux/platform_data/dma-atmel.h
1957
1958 ATMEL XDMA DRIVER
1959 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1960 L: linux-arm-kernel@lists.infradead.org
1961 L: dmaengine@vger.kernel.org
1962 S: Supported
1963 F: drivers/dma/at_xdmac.c
1964
1965 ATMEL I2C DRIVER
1966 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1967 L: linux-i2c@vger.kernel.org
1968 S: Supported
1969 F: drivers/i2c/busses/i2c-at91.c
1970
1971 ATMEL ISI DRIVER
1972 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1973 L: linux-media@vger.kernel.org
1974 S: Supported
1975 F: drivers/media/platform/soc_camera/atmel-isi.c
1976 F: include/media/atmel-isi.h
1977
1978 ATMEL LCDFB DRIVER
1979 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1980 L: linux-fbdev@vger.kernel.org
1981 S: Maintained
1982 F: drivers/video/fbdev/atmel_lcdfb.c
1983 F: include/video/atmel_lcdc.h
1984
1985 ATMEL MACB ETHERNET DRIVER
1986 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1987 S: Supported
1988 F: drivers/net/ethernet/cadence/
1989
1990 ATMEL NAND DRIVER
1991 M: Wenyou Yang <wenyou.yang@atmel.com>
1992 M: Josh Wu <rainyfeeling@outlook.com>
1993 L: linux-mtd@lists.infradead.org
1994 S: Supported
1995 F: drivers/mtd/nand/atmel_nand*
1996
1997 ATMEL SDMMC DRIVER
1998 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1999 L: linux-mmc@vger.kernel.org
2000 S: Supported
2001 F: drivers/mmc/host/sdhci-of-at91.c
2002
2003 ATMEL SPI DRIVER
2004 M: Nicolas Ferre <nicolas.ferre@atmel.com>
2005 S: Supported
2006 F: drivers/spi/spi-atmel.*
2007
2008 ATMEL SSC DRIVER
2009 M: Nicolas Ferre <nicolas.ferre@atmel.com>
2010 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S: Supported
2012 F: drivers/misc/atmel-ssc.c
2013 F: include/linux/atmel-ssc.h
2014
2015 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2016 M: Nicolas Ferre <nicolas.ferre@atmel.com>
2017 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S: Supported
2019 F: drivers/misc/atmel_tclib.c
2020 F: drivers/clocksource/tcb_clksrc.c
2021
2022 ATMEL USBA UDC DRIVER
2023 M: Nicolas Ferre <nicolas.ferre@atmel.com>
2024 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S: Supported
2026 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2027
2028 ATMEL WIRELESS DRIVER
2029 M: Simon Kelley <simon@thekelleys.org.uk>
2030 L: linux-wireless@vger.kernel.org
2031 W: http://www.thekelleys.org.uk/atmel
2032 W: http://atmelwlandriver.sourceforge.net/
2033 S: Maintained
2034 F: drivers/net/wireless/atmel/atmel*
2035
2036 ATMEL MAXTOUCH DRIVER
2037 M: Nick Dyer <nick.dyer@itdev.co.uk>
2038 T: git git://github.com/atmel-maxtouch/linux.git
2039 S: Supported
2040 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2041 F: drivers/input/touchscreen/atmel_mxt_ts.c
2042 F: include/linux/platform_data/atmel_mxt_ts.h
2043
2044 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2045 M: Bradley Grove <linuxdrivers@attotech.com>
2046 L: linux-scsi@vger.kernel.org
2047 W: http://www.attotech.com
2048 S: Supported
2049 F: drivers/scsi/esas2r
2050
2051 ATUSB IEEE 802.15.4 RADIO DRIVER
2052 M: Stefan Schmidt <stefan@osg.samsung.com>
2053 L: linux-wpan@vger.kernel.org
2054 S: Maintained
2055 F: drivers/net/ieee802154/atusb.c
2056 F: drivers/net/ieee802154/atusb.h
2057 F: drivers/net/ieee802154/at86rf230.h
2058
2059 AUDIT SUBSYSTEM
2060 M: Paul Moore <paul@paul-moore.com>
2061 M: Eric Paris <eparis@redhat.com>
2062 L: linux-audit@redhat.com (moderated for non-subscribers)
2063 W: http://people.redhat.com/sgrubb/audit/
2064 T: git git://git.infradead.org/users/pcmoore/audit
2065 S: Maintained
2066 F: include/linux/audit.h
2067 F: include/uapi/linux/audit.h
2068 F: kernel/audit*
2069
2070 AUXILIARY DISPLAY DRIVERS
2071 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2072 W: http://miguelojeda.es/auxdisplay.htm
2073 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2074 S: Maintained
2075 F: drivers/auxdisplay/
2076 F: include/linux/cfag12864b.h
2077
2078 AVR32 ARCHITECTURE
2079 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2080 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2081 W: http://www.atmel.com/products/AVR32/
2082 W: http://mirror.egtvedt.no/avr32linux.org/
2083 W: http://avrfreaks.net/
2084 S: Maintained
2085 F: arch/avr32/
2086
2087 AVR32/AT32AP MACHINE SUPPORT
2088 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
2089 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
2090 S: Maintained
2091 F: arch/avr32/mach-at32ap/
2092
2093 AX.25 NETWORK LAYER
2094 M: Ralf Baechle <ralf@linux-mips.org>
2095 L: linux-hams@vger.kernel.org
2096 W: http://www.linux-ax25.org/
2097 S: Maintained
2098 F: include/uapi/linux/ax25.h
2099 F: include/net/ax25.h
2100 F: net/ax25/
2101
2102 AZ6007 DVB DRIVER
2103 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2104 L: linux-media@vger.kernel.org
2105 W: https://linuxtv.org
2106 T: git git://linuxtv.org/media_tree.git
2107 S: Maintained
2108 F: drivers/media/usb/dvb-usb-v2/az6007.c
2109
2110 AZTECH FM RADIO RECEIVER DRIVER
2111 M: Hans Verkuil <hverkuil@xs4all.nl>
2112 L: linux-media@vger.kernel.org
2113 T: git git://linuxtv.org/media_tree.git
2114 W: https://linuxtv.org
2115 S: Maintained
2116 F: drivers/media/radio/radio-aztech*
2117
2118 B43 WIRELESS DRIVER
2119 L: linux-wireless@vger.kernel.org
2120 L: b43-dev@lists.infradead.org
2121 W: http://wireless.kernel.org/en/users/Drivers/b43
2122 S: Odd Fixes
2123 F: drivers/net/wireless/broadcom/b43/
2124
2125 B43LEGACY WIRELESS DRIVER
2126 M: Larry Finger <Larry.Finger@lwfinger.net>
2127 L: linux-wireless@vger.kernel.org
2128 L: b43-dev@lists.infradead.org
2129 W: http://wireless.kernel.org/en/users/Drivers/b43
2130 S: Maintained
2131 F: drivers/net/wireless/broadcom/b43legacy/
2132
2133 BACKLIGHT CLASS/SUBSYSTEM
2134 M: Jingoo Han <jingoohan1@gmail.com>
2135 M: Lee Jones <lee.jones@linaro.org>
2136 S: Maintained
2137 F: drivers/video/backlight/
2138 F: include/linux/backlight.h
2139
2140 BATMAN ADVANCED
2141 M: Marek Lindner <mareklindner@neomailbox.ch>
2142 M: Simon Wunderlich <sw@simonwunderlich.de>
2143 M: Antonio Quartulli <a@unstable.cc>
2144 L: b.a.t.m.a.n@lists.open-mesh.org
2145 W: http://www.open-mesh.org/
2146 S: Maintained
2147 F: net/batman-adv/
2148
2149 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2150 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2151 L: linux-hams@vger.kernel.org
2152 W: http://www.baycom.org/~tom/ham/ham.html
2153 S: Maintained
2154 F: drivers/net/hamradio/baycom*
2155
2156 BCACHE (BLOCK LAYER CACHE)
2157 M: Kent Overstreet <kent.overstreet@gmail.com>
2158 L: linux-bcache@vger.kernel.org
2159 W: http://bcache.evilpiepirate.org
2160 S: Maintained
2161 F: drivers/md/bcache/
2162
2163 BDISP ST MEDIA DRIVER
2164 M: Fabien Dessenne <fabien.dessenne@st.com>
2165 L: linux-media@vger.kernel.org
2166 T: git git://linuxtv.org/media_tree.git
2167 W: https://linuxtv.org
2168 S: Supported
2169 F: drivers/media/platform/sti/bdisp
2170
2171 BEFS FILE SYSTEM
2172 S: Orphan
2173 F: Documentation/filesystems/befs.txt
2174 F: fs/befs/
2175
2176 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2177 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2178 L: netdev@vger.kernel.org
2179 S: Maintained
2180 F: drivers/net/ethernet/ec_bhf.c
2181
2182 BFS FILE SYSTEM
2183 M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2184 S: Maintained
2185 F: Documentation/filesystems/bfs.txt
2186 F: fs/bfs/
2187 F: include/uapi/linux/bfs_fs.h
2188
2189 BLACKFIN ARCHITECTURE
2190 M: Steven Miao <realmz6@gmail.com>
2191 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2192 T: git git://git.code.sf.net/p/adi-linux/code
2193 W: http://blackfin.uclinux.org
2194 S: Supported
2195 F: arch/blackfin/
2196
2197 BLACKFIN EMAC DRIVER
2198 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2199 W: http://blackfin.uclinux.org
2200 S: Supported
2201 F: drivers/net/ethernet/adi/
2202
2203 BLACKFIN RTC DRIVER
2204 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2205 W: http://blackfin.uclinux.org
2206 S: Supported
2207 F: drivers/rtc/rtc-bfin.c
2208
2209 BLACKFIN SDH DRIVER
2210 M: Sonic Zhang <sonic.zhang@analog.com>
2211 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2212 W: http://blackfin.uclinux.org
2213 S: Supported
2214 F: drivers/mmc/host/bfin_sdh.c
2215
2216 BLACKFIN SERIAL DRIVER
2217 M: Sonic Zhang <sonic.zhang@analog.com>
2218 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2219 W: http://blackfin.uclinux.org
2220 S: Supported
2221 F: drivers/tty/serial/bfin_uart.c
2222
2223 BLACKFIN WATCHDOG DRIVER
2224 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2225 W: http://blackfin.uclinux.org
2226 S: Supported
2227 F: drivers/watchdog/bfin_wdt.c
2228
2229 BLACKFIN I2C TWI DRIVER
2230 M: Sonic Zhang <sonic.zhang@analog.com>
2231 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2232 W: http://blackfin.uclinux.org/
2233 S: Supported
2234 F: drivers/i2c/busses/i2c-bfin-twi.c
2235
2236 BLACKFIN MEDIA DRIVER
2237 M: Scott Jiang <scott.jiang.linux@gmail.com>
2238 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2239 W: http://blackfin.uclinux.org/
2240 S: Supported
2241 F: drivers/media/platform/blackfin/
2242 F: drivers/media/i2c/adv7183*
2243 F: drivers/media/i2c/vs6624*
2244
2245 BLINKM RGB LED DRIVER
2246 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2247 S: Maintained
2248 F: drivers/leds/leds-blinkm.c
2249
2250 BLOCK LAYER
2251 M: Jens Axboe <axboe@kernel.dk>
2252 L: linux-block@vger.kernel.org
2253 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2254 S: Maintained
2255 F: block/
2256 F: kernel/trace/blktrace.c
2257
2258 BLOCK2MTD DRIVER
2259 M: Joern Engel <joern@lazybastard.org>
2260 L: linux-mtd@lists.infradead.org
2261 S: Maintained
2262 F: drivers/mtd/devices/block2mtd.c
2263
2264 BLUETOOTH DRIVERS
2265 M: Marcel Holtmann <marcel@holtmann.org>
2266 M: Gustavo Padovan <gustavo@padovan.org>
2267 M: Johan Hedberg <johan.hedberg@gmail.com>
2268 L: linux-bluetooth@vger.kernel.org
2269 W: http://www.bluez.org/
2270 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2271 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2272 S: Maintained
2273 F: drivers/bluetooth/
2274
2275 BLUETOOTH SUBSYSTEM
2276 M: Marcel Holtmann <marcel@holtmann.org>
2277 M: Gustavo Padovan <gustavo@padovan.org>
2278 M: Johan Hedberg <johan.hedberg@gmail.com>
2279 L: linux-bluetooth@vger.kernel.org
2280 W: http://www.bluez.org/
2281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2282 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2283 S: Maintained
2284 F: net/bluetooth/
2285 F: include/net/bluetooth/
2286
2287 BONDING DRIVER
2288 M: Jay Vosburgh <j.vosburgh@gmail.com>
2289 M: Veaceslav Falico <vfalico@gmail.com>
2290 M: Andy Gospodarek <gospo@cumulusnetworks.com>
2291 L: netdev@vger.kernel.org
2292 W: http://sourceforge.net/projects/bonding/
2293 S: Supported
2294 F: drivers/net/bonding/
2295 F: include/uapi/linux/if_bonding.h
2296
2297 BPF (Safe dynamic programs and tools)
2298 M: Alexei Starovoitov <ast@kernel.org>
2299 L: netdev@vger.kernel.org
2300 L: linux-kernel@vger.kernel.org
2301 S: Supported
2302 F: kernel/bpf/
2303
2304 BROADCOM B44 10/100 ETHERNET DRIVER
2305 M: Gary Zambrano <zambrano@broadcom.com>
2306 L: netdev@vger.kernel.org
2307 S: Supported
2308 F: drivers/net/ethernet/broadcom/b44.*
2309
2310 BROADCOM GENET ETHERNET DRIVER
2311 M: Florian Fainelli <f.fainelli@gmail.com>
2312 L: netdev@vger.kernel.org
2313 S: Supported
2314 F: drivers/net/ethernet/broadcom/genet/
2315
2316 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2317 M: Sony Chacko <sony.chacko@qlogic.com>
2318 M: Dept-HSGLinuxNICDev@qlogic.com
2319 L: netdev@vger.kernel.org
2320 S: Supported
2321 F: drivers/net/ethernet/broadcom/bnx2.*
2322 F: drivers/net/ethernet/broadcom/bnx2_*
2323
2324 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2325 M: Ariel Elior <ariel.elior@qlogic.com>
2326 L: netdev@vger.kernel.org
2327 S: Supported
2328 F: drivers/net/ethernet/broadcom/bnx2x/
2329
2330 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2331 M: Florian Fainelli <f.fainelli@gmail.com>
2332 M: Ray Jui <rjui@broadcom.com>
2333 M: Scott Branden <sbranden@broadcom.com>
2334 L: bcm-kernel-feedback-list@broadcom.com
2335 T: git git://github.com/broadcom/mach-bcm
2336 S: Maintained
2337 F: arch/arm/mach-bcm/
2338 F: arch/arm/boot/dts/bcm113*
2339 F: arch/arm/boot/dts/bcm216*
2340 F: arch/arm/boot/dts/bcm281*
2341 F: arch/arm/configs/bcm_defconfig
2342 F: drivers/mmc/host/sdhci-bcm-kona.c
2343 F: drivers/clocksource/bcm_kona_timer.c
2344
2345 BROADCOM BCM2835 ARM ARCHITECTURE
2346 M: Stephen Warren <swarren@wwwdotorg.org>
2347 M: Lee Jones <lee@kernel.org>
2348 M: Eric Anholt <eric@anholt.net>
2349 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2352 S: Maintained
2353 N: bcm2835
2354
2355 BROADCOM BCM33XX MIPS ARCHITECTURE
2356 M: Kevin Cernekee <cernekee@gmail.com>
2357 L: linux-mips@linux-mips.org
2358 S: Maintained
2359 F: arch/mips/bcm3384/*
2360 F: arch/mips/include/asm/mach-bcm3384/*
2361 F: arch/mips/kernel/*bmips*
2362
2363 BROADCOM BCM47XX MIPS ARCHITECTURE
2364 M: Hauke Mehrtens <hauke@hauke-m.de>
2365 M: Rafał Miłecki <zajec5@gmail.com>
2366 L: linux-mips@linux-mips.org
2367 S: Maintained
2368 F: arch/mips/bcm47xx/*
2369 F: arch/mips/include/asm/mach-bcm47xx/*
2370
2371 BROADCOM BCM5301X ARM ARCHITECTURE
2372 M: Hauke Mehrtens <hauke@hauke-m.de>
2373 L: linux-arm-kernel@lists.infradead.org
2374 S: Maintained
2375 F: arch/arm/mach-bcm/bcm_5301x.c
2376 F: arch/arm/boot/dts/bcm5301x.dtsi
2377 F: arch/arm/boot/dts/bcm470*
2378
2379 BROADCOM BCM63XX ARM ARCHITECTURE
2380 M: Florian Fainelli <f.fainelli@gmail.com>
2381 L: linux-arm-kernel@lists.infradead.org
2382 T: git git://github.com/broadcom/arm-bcm63xx.git
2383 S: Maintained
2384 F: arch/arm/mach-bcm/bcm63xx.c
2385 F: arch/arm/include/debug/bcm63xx.S
2386
2387 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2388 M: Kevin Cernekee <cernekee@gmail.com>
2389 L: linux-usb@vger.kernel.org
2390 S: Maintained
2391 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2392
2393 BROADCOM BCM7XXX ARM ARCHITECTURE
2394 M: Brian Norris <computersforpeace@gmail.com>
2395 M: Gregory Fong <gregory.0xf0@gmail.com>
2396 M: Florian Fainelli <f.fainelli@gmail.com>
2397 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 L: bcm-kernel-feedback-list@broadcom.com
2399 T: git git://github.com/broadcom/stblinux.git
2400 S: Maintained
2401 F: arch/arm/mach-bcm/*brcmstb*
2402 F: arch/arm/boot/dts/bcm7*.dts*
2403 F: drivers/bus/brcmstb_gisb.c
2404 N: brcmstb
2405
2406 BROADCOM BMIPS MIPS ARCHITECTURE
2407 M: Kevin Cernekee <cernekee@gmail.com>
2408 M: Florian Fainelli <f.fainelli@gmail.com>
2409 L: linux-mips@linux-mips.org
2410 T: git git://github.com/broadcom/stblinux.git
2411 S: Maintained
2412 F: arch/mips/bmips/*
2413 F: arch/mips/include/asm/mach-bmips/*
2414 F: arch/mips/kernel/*bmips*
2415 F: arch/mips/boot/dts/brcm/bcm*.dts*
2416 F: drivers/irqchip/irq-bcm7*
2417 F: drivers/irqchip/irq-brcmstb*
2418
2419 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2420 M: Prashant Sreedharan <prashant@broadcom.com>
2421 M: Michael Chan <mchan@broadcom.com>
2422 L: netdev@vger.kernel.org
2423 S: Supported
2424 F: drivers/net/ethernet/broadcom/tg3.*
2425
2426 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2427 M: Brett Rudley <brudley@broadcom.com>
2428 M: Arend van Spriel <arend@broadcom.com>
2429 M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
2430 M: Hante Meuleman <meuleman@broadcom.com>
2431 L: linux-wireless@vger.kernel.org
2432 L: brcm80211-dev-list@broadcom.com
2433 S: Supported
2434 F: drivers/net/wireless/broadcom/brcm80211/
2435
2436 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2437 M: QLogic-Storage-Upstream@qlogic.com
2438 L: linux-scsi@vger.kernel.org
2439 S: Supported
2440 F: drivers/scsi/bnx2fc/
2441
2442 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2443 M: QLogic-Storage-Upstream@qlogic.com
2444 L: linux-scsi@vger.kernel.org
2445 S: Supported
2446 F: drivers/scsi/bnx2i/
2447
2448 BROADCOM IPROC ARM ARCHITECTURE
2449 M: Ray Jui <rjui@broadcom.com>
2450 M: Scott Branden <sbranden@broadcom.com>
2451 M: Jon Mason <jonmason@broadcom.com>
2452 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453 L: bcm-kernel-feedback-list@broadcom.com
2454 T: git git://github.com/broadcom/cygnus-linux.git
2455 S: Maintained
2456 N: iproc
2457 N: cygnus
2458 N: nsp
2459 N: bcm9113*
2460 N: bcm9583*
2461 N: bcm9585*
2462 N: bcm9586*
2463 N: bcm988312
2464 N: bcm113*
2465 N: bcm583*
2466 N: bcm585*
2467 N: bcm586*
2468 N: bcm88312
2469
2470 BROADCOM BRCMSTB GPIO DRIVER
2471 M: Gregory Fong <gregory.0xf0@gmail.com>
2472 L: bcm-kernel-feedback-list@broadcom.com
2473 S: Supported
2474 F: drivers/gpio/gpio-brcmstb.c
2475 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2476
2477 BROADCOM KONA GPIO DRIVER
2478 M: Ray Jui <rjui@broadcom.com>
2479 L: bcm-kernel-feedback-list@broadcom.com
2480 S: Supported
2481 F: drivers/gpio/gpio-bcm-kona.c
2482 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2483
2484 BROADCOM NVRAM DRIVER
2485 M: Rafał Miłecki <zajec5@gmail.com>
2486 L: linux-mips@linux-mips.org
2487 S: Maintained
2488 F: drivers/firmware/broadcom/*
2489
2490 BROADCOM STB NAND FLASH DRIVER
2491 M: Brian Norris <computersforpeace@gmail.com>
2492 M: Kamal Dasu <kdasu.kdev@gmail.com>
2493 L: linux-mtd@lists.infradead.org
2494 L: bcm-kernel-feedback-list@broadcom.com
2495 S: Maintained
2496 F: drivers/mtd/nand/brcmnand/
2497
2498 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2499 M: Rafał Miłecki <zajec5@gmail.com>
2500 L: linux-wireless@vger.kernel.org
2501 S: Maintained
2502 F: drivers/bcma/
2503 F: include/linux/bcma/
2504
2505 BROADCOM SYSTEMPORT ETHERNET DRIVER
2506 M: Florian Fainelli <f.fainelli@gmail.com>
2507 L: netdev@vger.kernel.org
2508 S: Supported
2509 F: drivers/net/ethernet/broadcom/bcmsysport.*
2510
2511 BROCADE BFA FC SCSI DRIVER
2512 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2513 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2514 L: linux-scsi@vger.kernel.org
2515 S: Supported
2516 F: drivers/scsi/bfa/
2517
2518 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2519 M: Rasesh Mody <rasesh.mody@qlogic.com>
2520 L: netdev@vger.kernel.org
2521 S: Supported
2522 F: drivers/net/ethernet/brocade/bna/
2523
2524 BSG (block layer generic sg v4 driver)
2525 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2526 L: linux-scsi@vger.kernel.org
2527 S: Supported
2528 F: block/bsg.c
2529 F: include/linux/bsg.h
2530 F: include/uapi/linux/bsg.h
2531
2532 BT87X AUDIO DRIVER
2533 M: Clemens Ladisch <clemens@ladisch.de>
2534 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2535 T: git git://git.alsa-project.org/alsa-kernel.git
2536 S: Maintained
2537 F: Documentation/sound/alsa/Bt87x.txt
2538 F: sound/pci/bt87x.c
2539
2540 BT8XXGPIO DRIVER
2541 M: Michael Buesch <m@bues.ch>
2542 W: http://bu3sch.de/btgpio.php
2543 S: Maintained
2544 F: drivers/gpio/gpio-bt8xx.c
2545
2546 BTRFS FILE SYSTEM
2547 M: Chris Mason <clm@fb.com>
2548 M: Josef Bacik <jbacik@fb.com>
2549 M: David Sterba <dsterba@suse.com>
2550 L: linux-btrfs@vger.kernel.org
2551 W: http://btrfs.wiki.kernel.org/
2552 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
2553 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2554 S: Maintained
2555 F: Documentation/filesystems/btrfs.txt
2556 F: fs/btrfs/
2557
2558 BTTV VIDEO4LINUX DRIVER
2559 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2560 L: linux-media@vger.kernel.org
2561 W: https://linuxtv.org
2562 T: git git://linuxtv.org/media_tree.git
2563 S: Odd fixes
2564 F: Documentation/video4linux/bttv/
2565 F: drivers/media/pci/bt8xx/bttv*
2566
2567 BUSLOGIC SCSI DRIVER
2568 M: Khalid Aziz <khalid@gonehiking.org>
2569 L: linux-scsi@vger.kernel.org
2570 S: Maintained
2571 F: drivers/scsi/BusLogic.*
2572 F: drivers/scsi/FlashPoint.*
2573
2574 C-MEDIA CMI8788 DRIVER
2575 M: Clemens Ladisch <clemens@ladisch.de>
2576 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2577 T: git git://git.alsa-project.org/alsa-kernel.git
2578 S: Maintained
2579 F: sound/pci/oxygen/
2580
2581 C6X ARCHITECTURE
2582 M: Mark Salter <msalter@redhat.com>
2583 M: Aurelien Jacquiot <a-jacquiot@ti.com>
2584 L: linux-c6x-dev@linux-c6x.org
2585 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2586 S: Maintained
2587 F: arch/c6x/
2588
2589 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2590 M: David Howells <dhowells@redhat.com>
2591 L: linux-cachefs@redhat.com (moderated for non-subscribers)
2592 S: Supported
2593 F: Documentation/filesystems/caching/cachefiles.txt
2594 F: fs/cachefiles/
2595
2596 CADET FM/AM RADIO RECEIVER DRIVER
2597 M: Hans Verkuil <hverkuil@xs4all.nl>
2598 L: linux-media@vger.kernel.org
2599 T: git git://linuxtv.org/media_tree.git
2600 W: https://linuxtv.org
2601 S: Maintained
2602 F: drivers/media/radio/radio-cadet*
2603
2604 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2605 M: Jonathan Corbet <corbet@lwn.net>
2606 L: linux-media@vger.kernel.org
2607 T: git git://linuxtv.org/media_tree.git
2608 S: Maintained
2609 F: Documentation/video4linux/cafe_ccic
2610 F: drivers/media/platform/marvell-ccic/
2611
2612 CAIF NETWORK LAYER
2613 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2614 L: netdev@vger.kernel.org
2615 S: Supported
2616 F: Documentation/networking/caif/
2617 F: drivers/net/caif/
2618 F: include/uapi/linux/caif/
2619 F: include/net/caif/
2620 F: net/caif/
2621
2622 CALGARY x86-64 IOMMU
2623 M: Muli Ben-Yehuda <muli@il.ibm.com>
2624 M: "Jon D. Mason" <jdmason@kudzu.us>
2625 L: discuss@x86-64.org
2626 S: Maintained
2627 F: arch/x86/kernel/pci-calgary_64.c
2628 F: arch/x86/kernel/tce_64.c
2629 F: arch/x86/include/asm/calgary.h
2630 F: arch/x86/include/asm/tce.h
2631
2632 CAN NETWORK LAYER
2633 M: Oliver Hartkopp <socketcan@hartkopp.net>
2634 M: Marc Kleine-Budde <mkl@pengutronix.de>
2635 L: linux-can@vger.kernel.org
2636 W: https://github.com/linux-can
2637 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2639 S: Maintained
2640 F: Documentation/networking/can.txt
2641 F: net/can/
2642 F: include/linux/can/core.h
2643 F: include/uapi/linux/can.h
2644 F: include/uapi/linux/can/bcm.h
2645 F: include/uapi/linux/can/raw.h
2646 F: include/uapi/linux/can/gw.h
2647
2648 CAN NETWORK DRIVERS
2649 M: Wolfgang Grandegger <wg@grandegger.com>
2650 M: Marc Kleine-Budde <mkl@pengutronix.de>
2651 L: linux-can@vger.kernel.org
2652 W: https://github.com/linux-can
2653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2654 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2655 S: Maintained
2656 F: drivers/net/can/
2657 F: include/linux/can/dev.h
2658 F: include/linux/can/platform/
2659 F: include/uapi/linux/can/error.h
2660 F: include/uapi/linux/can/netlink.h
2661
2662 CAPABILITIES
2663 M: Serge Hallyn <serge.hallyn@canonical.com>
2664 L: linux-security-module@vger.kernel.org
2665 S: Supported
2666 F: include/linux/capability.h
2667 F: include/uapi/linux/capability.h
2668 F: security/commoncap.c
2669 F: kernel/capability.c
2670
2671 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2672 M: Kevin Tsai <ktsai@capellamicro.com>
2673 S: Maintained
2674 F: drivers/iio/light/cm*
2675 F: Documentation/devicetree/bindings/i2c/trivial-devices.txt
2676
2677 CAVIUM LIQUIDIO NETWORK DRIVER
2678 M: Derek Chickles <derek.chickles@caviumnetworks.com>
2679 M: Satanand Burla <satananda.burla@caviumnetworks.com>
2680 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
2681 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2682 L: netdev@vger.kernel.org
2683 W: http://www.cavium.com
2684 S: Supported
2685 F: drivers/net/ethernet/cavium/liquidio/
2686
2687 CC2520 IEEE-802.15.4 RADIO DRIVER
2688 M: Varka Bhadram <varkabhadram@gmail.com>
2689 L: linux-wpan@vger.kernel.org
2690 S: Maintained
2691 F: drivers/net/ieee802154/cc2520.c
2692 F: include/linux/spi/cc2520.h
2693 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2694
2695 CELL BROADBAND ENGINE ARCHITECTURE
2696 M: Arnd Bergmann <arnd@arndb.de>
2697 L: linuxppc-dev@lists.ozlabs.org
2698 W: http://www.ibm.com/developerworks/power/cell/
2699 S: Supported
2700 F: arch/powerpc/include/asm/cell*.h
2701 F: arch/powerpc/include/asm/spu*.h
2702 F: arch/powerpc/include/uapi/asm/spu*.h
2703 F: arch/powerpc/oprofile/*cell*
2704 F: arch/powerpc/platforms/cell/
2705
2706 CEPH COMMON CODE (LIBCEPH)
2707 M: Ilya Dryomov <idryomov@gmail.com>
2708 M: "Yan, Zheng" <zyan@redhat.com>
2709 M: Sage Weil <sage@redhat.com>
2710 L: ceph-devel@vger.kernel.org
2711 W: http://ceph.com/
2712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2713 T: git git://github.com/ceph/ceph-client.git
2714 S: Supported
2715 F: net/ceph/
2716 F: include/linux/ceph/
2717 F: include/linux/crush/
2718
2719 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2720 M: "Yan, Zheng" <zyan@redhat.com>
2721 M: Sage Weil <sage@redhat.com>
2722 M: Ilya Dryomov <idryomov@gmail.com>
2723 L: ceph-devel@vger.kernel.org
2724 W: http://ceph.com/
2725 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2726 T: git git://github.com/ceph/ceph-client.git
2727 S: Supported
2728 F: Documentation/filesystems/ceph.txt
2729 F: fs/ceph/
2730
2731 CERTIFICATE HANDLING:
2732 M: David Howells <dhowells@redhat.com>
2733 M: David Woodhouse <dwmw2@infradead.org>
2734 L: keyrings@vger.kernel.org
2735 S: Maintained
2736 F: Documentation/module-signing.txt
2737 F: certs/
2738 F: scripts/sign-file.c
2739 F: scripts/extract-cert.c
2740
2741 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2742 L: linux-usb@vger.kernel.org
2743 S: Orphan
2744 F: Documentation/usb/WUSB-Design-overview.txt
2745 F: Documentation/usb/wusb-cbaf
2746 F: drivers/usb/host/hwa-hc.c
2747 F: drivers/usb/host/whci/
2748 F: drivers/usb/wusbcore/
2749 F: include/linux/usb/wusb*
2750
2751 CFAG12864B LCD DRIVER
2752 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2753 W: http://miguelojeda.es/auxdisplay.htm
2754 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2755 S: Maintained
2756 F: drivers/auxdisplay/cfag12864b.c
2757 F: include/linux/cfag12864b.h
2758
2759 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2760 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2761 W: http://miguelojeda.es/auxdisplay.htm
2762 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2763 S: Maintained
2764 F: drivers/auxdisplay/cfag12864bfb.c
2765 F: include/linux/cfag12864b.h
2766
2767 CFG80211 and NL80211
2768 M: Johannes Berg <johannes@sipsolutions.net>
2769 L: linux-wireless@vger.kernel.org
2770 W: http://wireless.kernel.org/
2771 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2772 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2773 S: Maintained
2774 F: include/uapi/linux/nl80211.h
2775 F: include/net/cfg80211.h
2776 F: net/wireless/*
2777 X: net/wireless/wext*
2778
2779 CHAR and MISC DRIVERS
2780 M: Arnd Bergmann <arnd@arndb.de>
2781 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2782 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2783 S: Supported
2784 F: drivers/char/*
2785 F: drivers/misc/*
2786 F: include/linux/miscdevice.h
2787
2788 CHECKPATCH
2789 M: Andy Whitcroft <apw@canonical.com>
2790 M: Joe Perches <joe@perches.com>
2791 S: Maintained
2792 F: scripts/checkpatch.pl
2793
2794 CHINESE DOCUMENTATION
2795 M: Harry Wei <harryxiyou@gmail.com>
2796 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2797 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2798 S: Maintained
2799 F: Documentation/zh_CN/
2800
2801 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2802 M: Peter Chen <Peter.Chen@nxp.com>
2803 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2804 L: linux-usb@vger.kernel.org
2805 S: Maintained
2806 F: drivers/usb/chipidea/
2807
2808 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2809 M: Hans de Goede <hdegoede@redhat.com>
2810 L: linux-input@vger.kernel.org
2811 S: Maintained
2812 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2813 F: drivers/input/touchscreen/chipone_icn8318.c
2814
2815 CHROME HARDWARE PLATFORM SUPPORT
2816 M: Olof Johansson <olof@lixom.net>
2817 S: Maintained
2818 F: drivers/platform/chrome/
2819
2820 CISCO VIC ETHERNET NIC DRIVER
2821 M: Christian Benvenuti <benve@cisco.com>
2822 M: Sujith Sankar <ssujith@cisco.com>
2823 M: Govindarajulu Varadarajan <_govind@gmx.com>
2824 M: Neel Patel <neepatel@cisco.com>
2825 S: Supported
2826 F: drivers/net/ethernet/cisco/enic/
2827
2828 CISCO VIC LOW LATENCY NIC DRIVER
2829 M: Christian Benvenuti <benve@cisco.com>
2830 M: Dave Goodell <dgoodell@cisco.com>
2831 S: Supported
2832 F: drivers/infiniband/hw/usnic/
2833
2834 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2835 M: Hartley Sweeten <hsweeten@visionengravers.com>
2836 L: netdev@vger.kernel.org
2837 S: Maintained
2838 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
2839
2840 CIRRUS LOGIC AUDIO CODEC DRIVERS
2841 M: Brian Austin <brian.austin@cirrus.com>
2842 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2843 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2844 S: Maintained
2845 F: sound/soc/codecs/cs*
2846
2847 CLEANCACHE API
2848 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2849 L: linux-kernel@vger.kernel.org
2850 S: Maintained
2851 F: mm/cleancache.c
2852 F: include/linux/cleancache.h
2853
2854 CLK API
2855 M: Russell King <linux@arm.linux.org.uk>
2856 L: linux-clk@vger.kernel.org
2857 S: Maintained
2858 F: include/linux/clk.h
2859
2860 CLOCKSOURCE, CLOCKEVENT DRIVERS
2861 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2862 M: Thomas Gleixner <tglx@linutronix.de>
2863 L: linux-kernel@vger.kernel.org
2864 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2865 S: Supported
2866 F: drivers/clocksource
2867
2868 CISCO FCOE HBA DRIVER
2869 M: Hiral Patel <hiralpat@cisco.com>
2870 M: Suma Ramars <sramars@cisco.com>
2871 M: Brian Uchino <buchino@cisco.com>
2872 L: linux-scsi@vger.kernel.org
2873 S: Supported
2874 F: drivers/scsi/fnic/
2875
2876 CISCO SCSI HBA DRIVER
2877 M: Narsimhulu Musini <nmusini@cisco.com>
2878 M: Sesidhar Baddela <sebaddel@cisco.com>
2879 L: linux-scsi@vger.kernel.org
2880 S: Supported
2881 F: drivers/scsi/snic/
2882
2883 CMPC ACPI DRIVER
2884 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2885 M: Daniel Oliveira Nascimento <don@syst.com.br>
2886 L: platform-driver-x86@vger.kernel.org
2887 S: Supported
2888 F: drivers/platform/x86/classmate-laptop.c
2889
2890 COBALT MEDIA DRIVER
2891 M: Hans Verkuil <hans.verkuil@cisco.com>
2892 L: linux-media@vger.kernel.org
2893 T: git git://linuxtv.org/media_tree.git
2894 W: https://linuxtv.org
2895 S: Supported
2896 F: drivers/media/pci/cobalt/
2897
2898 COCCINELLE/Semantic Patches (SmPL)
2899 M: Julia Lawall <Julia.Lawall@lip6.fr>
2900 M: Gilles Muller <Gilles.Muller@lip6.fr>
2901 M: Nicolas Palix <nicolas.palix@imag.fr>
2902 M: Michal Marek <mmarek@suse.com>
2903 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
2904 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2905 W: http://coccinelle.lip6.fr/
2906 S: Supported
2907 F: Documentation/coccinelle.txt
2908 F: scripts/coccinelle/
2909 F: scripts/coccicheck
2910
2911 CODA FILE SYSTEM
2912 M: Jan Harkes <jaharkes@cs.cmu.edu>
2913 M: coda@cs.cmu.edu
2914 L: codalist@coda.cs.cmu.edu
2915 W: http://www.coda.cs.cmu.edu/
2916 S: Maintained
2917 F: Documentation/filesystems/coda.txt
2918 F: fs/coda/
2919 F: include/linux/coda*.h
2920 F: include/uapi/linux/coda*.h
2921
2922 CODA V4L2 MEM2MEM DRIVER
2923 M: Philipp Zabel <p.zabel@pengutronix.de>
2924 L: linux-media@vger.kernel.org
2925 S: Maintained
2926 F: Documentation/devicetree/bindings/media/coda.txt
2927 F: drivers/media/platform/coda/
2928
2929 COMMON CLK FRAMEWORK
2930 M: Michael Turquette <mturquette@baylibre.com>
2931 M: Stephen Boyd <sboyd@codeaurora.org>
2932 L: linux-clk@vger.kernel.org
2933 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2934 S: Maintained
2935 F: drivers/clk/
2936 X: drivers/clk/clkdev.c
2937 F: include/linux/clk-pr*
2938 F: include/linux/clk/
2939
2940 COMMON INTERNET FILE SYSTEM (CIFS)
2941 M: Steve French <sfrench@samba.org>
2942 L: linux-cifs@vger.kernel.org
2943 L: samba-technical@lists.samba.org (moderated for non-subscribers)
2944 W: http://linux-cifs.samba.org/
2945 T: git git://git.samba.org/sfrench/cifs-2.6.git
2946 S: Supported
2947 F: Documentation/filesystems/cifs/
2948 F: fs/cifs/
2949
2950 COMPACTPCI HOTPLUG CORE
2951 M: Scott Murray <scott@spiteful.org>
2952 L: linux-pci@vger.kernel.org
2953 S: Maintained
2954 F: drivers/pci/hotplug/cpci_hotplug*
2955
2956 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2957 M: Scott Murray <scott@spiteful.org>
2958 L: linux-pci@vger.kernel.org
2959 S: Maintained
2960 F: drivers/pci/hotplug/cpcihp_zt5550.*
2961
2962 COMPACTPCI HOTPLUG GENERIC DRIVER
2963 M: Scott Murray <scott@spiteful.org>
2964 L: linux-pci@vger.kernel.org
2965 S: Maintained
2966 F: drivers/pci/hotplug/cpcihp_generic.c
2967
2968 COMPAL LAPTOP SUPPORT
2969 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2970 L: platform-driver-x86@vger.kernel.org
2971 S: Maintained
2972 F: drivers/platform/x86/compal-laptop.c
2973
2974 CONEXANT ACCESSRUNNER USB DRIVER
2975 L: accessrunner-general@lists.sourceforge.net
2976 W: http://accessrunner.sourceforge.net/
2977 S: Orphan
2978 F: drivers/usb/atm/cxacru.c
2979
2980 CONFIGFS
2981 M: Joel Becker <jlbec@evilplan.org>
2982 M: Christoph Hellwig <hch@lst.de>
2983 T: git git://git.infradead.org/users/hch/configfs.git
2984 S: Supported
2985 F: fs/configfs/
2986 F: include/linux/configfs.h
2987
2988 CONNECTOR
2989 M: Evgeniy Polyakov <zbr@ioremap.net>
2990 L: netdev@vger.kernel.org
2991 S: Maintained
2992 F: drivers/connector/
2993
2994 CONTROL GROUP (CGROUP)
2995 M: Tejun Heo <tj@kernel.org>
2996 M: Li Zefan <lizefan@huawei.com>
2997 M: Johannes Weiner <hannes@cmpxchg.org>
2998 L: cgroups@vger.kernel.org
2999 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3000 S: Maintained
3001 F: Documentation/cgroups/
3002 F: include/linux/cgroup*
3003 F: kernel/cgroup*
3004
3005 CONTROL GROUP - CPUSET
3006 M: Li Zefan <lizefan@huawei.com>
3007 L: cgroups@vger.kernel.org
3008 W: http://www.bullopensource.org/cpuset/
3009 W: http://oss.sgi.com/projects/cpusets/
3010 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3011 S: Maintained
3012 F: Documentation/cgroups/cpusets.txt
3013 F: include/linux/cpuset.h
3014 F: kernel/cpuset.c
3015
3016 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3017 M: Johannes Weiner <hannes@cmpxchg.org>
3018 M: Michal Hocko <mhocko@kernel.org>
3019 M: Vladimir Davydov <vdavydov@virtuozzo.com>
3020 L: cgroups@vger.kernel.org
3021 L: linux-mm@kvack.org
3022 S: Maintained
3023 F: mm/memcontrol.c
3024 F: mm/swap_cgroup.c
3025
3026 CORETEMP HARDWARE MONITORING DRIVER
3027 M: Fenghua Yu <fenghua.yu@intel.com>
3028 L: lm-sensors@lm-sensors.org
3029 S: Maintained
3030 F: Documentation/hwmon/coretemp
3031 F: drivers/hwmon/coretemp.c
3032
3033 COSA/SRP SYNC SERIAL DRIVER
3034 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3035 W: http://www.fi.muni.cz/~kas/cosa/
3036 S: Maintained
3037 F: drivers/net/wan/cosa*
3038
3039 CPMAC ETHERNET DRIVER
3040 M: Florian Fainelli <florian@openwrt.org>
3041 L: netdev@vger.kernel.org
3042 S: Maintained
3043 F: drivers/net/ethernet/ti/cpmac.c
3044
3045 CPU FREQUENCY DRIVERS
3046 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3047 M: Viresh Kumar <viresh.kumar@linaro.org>
3048 L: linux-pm@vger.kernel.org
3049 S: Maintained
3050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3051 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3052 F: drivers/cpufreq/
3053 F: include/linux/cpufreq.h
3054
3055 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3056 M: Viresh Kumar <viresh.kumar@linaro.org>
3057 M: Sudeep Holla <sudeep.holla@arm.com>
3058 L: linux-pm@vger.kernel.org
3059 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3060 S: Maintained
3061 F: drivers/cpufreq/arm_big_little.h
3062 F: drivers/cpufreq/arm_big_little.c
3063 F: drivers/cpufreq/arm_big_little_dt.c
3064
3065 CPUIDLE DRIVER - ARM BIG LITTLE
3066 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3067 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3068 L: linux-pm@vger.kernel.org
3069 L: linux-arm-kernel@lists.infradead.org
3070 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3071 S: Maintained
3072 F: drivers/cpuidle/cpuidle-big_little.c
3073
3074 CPUIDLE DRIVER - ARM EXYNOS
3075 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3076 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3077 M: Kukjin Kim <kgene@kernel.org>
3078 L: linux-pm@vger.kernel.org
3079 L: linux-samsung-soc@vger.kernel.org
3080 S: Supported
3081 F: drivers/cpuidle/cpuidle-exynos.c
3082 F: arch/arm/mach-exynos/pm.c
3083
3084 CPUIDLE DRIVERS
3085 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3086 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3087 L: linux-pm@vger.kernel.org
3088 S: Maintained
3089 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3090 F: drivers/cpuidle/*
3091 F: include/linux/cpuidle.h
3092
3093 CPUID/MSR DRIVER
3094 M: "H. Peter Anvin" <hpa@zytor.com>
3095 S: Maintained
3096 F: arch/x86/kernel/cpuid.c
3097 F: arch/x86/kernel/msr.c
3098
3099 CPU POWER MONITORING SUBSYSTEM
3100 M: Thomas Renninger <trenn@suse.com>
3101 L: linux-pm@vger.kernel.org
3102 S: Maintained
3103 F: tools/power/cpupower/
3104
3105 CRAMFS FILESYSTEM
3106 W: http://sourceforge.net/projects/cramfs/
3107 S: Orphan / Obsolete
3108 F: Documentation/filesystems/cramfs.txt
3109 F: fs/cramfs/
3110
3111 CRIS PORT
3112 M: Mikael Starvik <starvik@axis.com>
3113 M: Jesper Nilsson <jesper.nilsson@axis.com>
3114 L: linux-cris-kernel@axis.com
3115 W: http://developer.axis.com
3116 S: Maintained
3117 F: arch/cris/
3118 F: drivers/tty/serial/crisv10.*
3119
3120 CRYPTO API
3121 M: Herbert Xu <herbert@gondor.apana.org.au>
3122 M: "David S. Miller" <davem@davemloft.net>
3123 L: linux-crypto@vger.kernel.org
3124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3125 S: Maintained
3126 F: Documentation/crypto/
3127 F: Documentation/DocBook/crypto-API.tmpl
3128 F: arch/*/crypto/
3129 F: crypto/
3130 F: drivers/crypto/
3131 F: include/crypto/
3132
3133 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3134 M: Neil Horman <nhorman@tuxdriver.com>
3135 L: linux-crypto@vger.kernel.org
3136 S: Maintained
3137 F: crypto/ansi_cprng.c
3138 F: crypto/rng.c
3139
3140 CS3308 MEDIA DRIVER
3141 M: Hans Verkuil <hverkuil@xs4all.nl>
3142 L: linux-media@vger.kernel.org
3143 T: git git://linuxtv.org/media_tree.git
3144 W: http://linuxtv.org
3145 S: Odd Fixes
3146 F: drivers/media/i2c/cs3308.c
3147 F: drivers/media/i2c/cs3308.h
3148
3149 CS5535 Audio ALSA driver
3150 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3151 S: Maintained
3152 F: sound/pci/cs5535audio/
3153
3154 CW1200 WLAN driver
3155 M: Solomon Peachy <pizza@shaftnet.org>
3156 S: Maintained
3157 F: drivers/net/wireless/st/cw1200/
3158
3159 CX18 VIDEO4LINUX DRIVER
3160 M: Andy Walls <awalls@md.metrocast.net>
3161 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3162 L: linux-media@vger.kernel.org
3163 T: git git://linuxtv.org/media_tree.git
3164 W: https://linuxtv.org
3165 W: http://www.ivtvdriver.org/index.php/Cx18
3166 S: Maintained
3167 F: Documentation/video4linux/cx18.txt
3168 F: drivers/media/pci/cx18/
3169 F: include/uapi/linux/ivtv*
3170
3171 CX2341X MPEG ENCODER HELPER MODULE
3172 M: Hans Verkuil <hverkuil@xs4all.nl>
3173 L: linux-media@vger.kernel.org
3174 T: git git://linuxtv.org/media_tree.git
3175 W: https://linuxtv.org
3176 S: Maintained
3177 F: drivers/media/common/cx2341x*
3178 F: include/media/cx2341x*
3179
3180 CX24120 MEDIA DRIVER
3181 M: Jemma Denson <jdenson@gmail.com>
3182 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3183 L: linux-media@vger.kernel.org
3184 W: https://linuxtv.org
3185 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3186 S: Maintained
3187 F: drivers/media/dvb-frontends/cx24120*
3188
3189 CX88 VIDEO4LINUX DRIVER
3190 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3191 L: linux-media@vger.kernel.org
3192 W: https://linuxtv.org
3193 T: git git://linuxtv.org/media_tree.git
3194 S: Odd fixes
3195 F: Documentation/video4linux/cx88/
3196 F: drivers/media/pci/cx88/
3197
3198 CXD2820R MEDIA DRIVER
3199 M: Antti Palosaari <crope@iki.fi>
3200 L: linux-media@vger.kernel.org
3201 W: https://linuxtv.org
3202 W: http://palosaari.fi/linux/
3203 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3204 T: git git://linuxtv.org/anttip/media_tree.git
3205 S: Maintained
3206 F: drivers/media/dvb-frontends/cxd2820r*
3207
3208 CXGB3 ETHERNET DRIVER (CXGB3)
3209 M: Santosh Raspatur <santosh@chelsio.com>
3210 L: netdev@vger.kernel.org
3211 W: http://www.chelsio.com
3212 S: Supported
3213 F: drivers/net/ethernet/chelsio/cxgb3/
3214
3215 CXGB3 ISCSI DRIVER (CXGB3I)
3216 M: Karen Xie <kxie@chelsio.com>
3217 L: linux-scsi@vger.kernel.org
3218 W: http://www.chelsio.com
3219 S: Supported
3220 F: drivers/scsi/cxgbi/cxgb3i
3221
3222 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3223 M: Steve Wise <swise@chelsio.com>
3224 L: linux-rdma@vger.kernel.org
3225 W: http://www.openfabrics.org
3226 S: Supported
3227 F: drivers/infiniband/hw/cxgb3/
3228
3229 CXGB4 ETHERNET DRIVER (CXGB4)
3230 M: Hariprasad S <hariprasad@chelsio.com>
3231 L: netdev@vger.kernel.org
3232 W: http://www.chelsio.com
3233 S: Supported
3234 F: drivers/net/ethernet/chelsio/cxgb4/
3235
3236 CXGB4 ISCSI DRIVER (CXGB4I)
3237 M: Karen Xie <kxie@chelsio.com>
3238 L: linux-scsi@vger.kernel.org
3239 W: http://www.chelsio.com
3240 S: Supported
3241 F: drivers/scsi/cxgbi/cxgb4i
3242
3243 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3244 M: Steve Wise <swise@chelsio.com>
3245 L: linux-rdma@vger.kernel.org
3246 W: http://www.openfabrics.org
3247 S: Supported
3248 F: drivers/infiniband/hw/cxgb4/
3249
3250 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3251 M: Casey Leedom <leedom@chelsio.com>
3252 L: netdev@vger.kernel.org
3253 W: http://www.chelsio.com
3254 S: Supported
3255 F: drivers/net/ethernet/chelsio/cxgb4vf/
3256
3257 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3258 M: Ian Munsie <imunsie@au1.ibm.com>
3259 M: Michael Neuling <mikey@neuling.org>
3260 L: linuxppc-dev@lists.ozlabs.org
3261 S: Supported
3262 F: drivers/misc/cxl/
3263 F: include/misc/cxl*
3264 F: include/uapi/misc/cxl.h
3265 F: Documentation/powerpc/cxl.txt
3266 F: Documentation/powerpc/cxl.txt
3267 F: Documentation/ABI/testing/sysfs-class-cxl
3268
3269 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3270 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3271 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3272 L: linux-scsi@vger.kernel.org
3273 S: Supported
3274 F: drivers/scsi/cxlflash/
3275 F: include/uapi/scsi/cxlflash_ioctls.h
3276 F: Documentation/powerpc/cxlflash.txt
3277
3278 STMMAC ETHERNET DRIVER
3279 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3280 L: netdev@vger.kernel.org
3281 W: http://www.stlinux.com
3282 S: Supported
3283 F: drivers/net/ethernet/stmicro/stmmac/
3284
3285 CYBERPRO FB DRIVER
3286 M: Russell King <linux@arm.linux.org.uk>
3287 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3288 W: http://www.arm.linux.org.uk/
3289 S: Maintained
3290 F: drivers/video/fbdev/cyber2000fb.*
3291
3292 CYCLADES ASYNC MUX DRIVER
3293 W: http://www.cyclades.com/
3294 S: Orphan
3295 F: drivers/tty/cyclades.c
3296 F: include/linux/cyclades.h
3297 F: include/uapi/linux/cyclades.h
3298
3299 CYCLADES PC300 DRIVER
3300 W: http://www.cyclades.com/
3301 S: Orphan
3302 F: drivers/net/wan/pc300*
3303
3304 CYPRESS_FIRMWARE MEDIA DRIVER
3305 M: Antti Palosaari <crope@iki.fi>
3306 L: linux-media@vger.kernel.org
3307 W: https://linuxtv.org
3308 W: http://palosaari.fi/linux/
3309 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3310 T: git git://linuxtv.org/anttip/media_tree.git
3311 S: Maintained
3312 F: drivers/media/common/cypress_firmware*
3313
3314 CYTTSP TOUCHSCREEN DRIVER
3315 M: Ferruh Yigit <fery@cypress.com>
3316 L: linux-input@vger.kernel.org
3317 S: Supported
3318 F: drivers/input/touchscreen/cyttsp*
3319 F: include/linux/input/cyttsp.h
3320
3321 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3322 M: Joshua Kinard <kumba@gentoo.org>
3323 S: Maintained
3324 F: drivers/rtc/rtc-ds1685.c
3325 F: include/linux/rtc/ds1685.h
3326
3327 DAMA SLAVE for AX.25
3328 M: Joerg Reuter <jreuter@yaina.de>
3329 W: http://yaina.de/jreuter/
3330 W: http://www.qsl.net/dl1bke/
3331 L: linux-hams@vger.kernel.org
3332 S: Maintained
3333 F: net/ax25/af_ax25.c
3334 F: net/ax25/ax25_dev.c
3335 F: net/ax25/ax25_ds_*
3336 F: net/ax25/ax25_in.c
3337 F: net/ax25/ax25_out.c
3338 F: net/ax25/ax25_timer.c
3339 F: net/ax25/sysctl_net_ax25.c
3340
3341 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3342 L: netdev@vger.kernel.org
3343 S: Orphan
3344 F: Documentation/networking/dmfe.txt
3345 F: drivers/net/ethernet/dec/tulip/dmfe.c
3346
3347 DC390/AM53C974 SCSI driver
3348 M: Hannes Reinecke <hare@suse.com>
3349 L: linux-scsi@vger.kernel.org
3350 S: Maintained
3351 F: drivers/scsi/am53c974.c
3352
3353 DC395x SCSI driver
3354 M: Oliver Neukum <oliver@neukum.org>
3355 M: Ali Akcaagac <aliakc@web.de>
3356 M: Jamie Lenehan <lenehan@twibble.org>
3357 L: dc395x@twibble.org
3358 W: http://twibble.org/dist/dc395x/
3359 W: http://lists.twibble.org/mailman/listinfo/dc395x/
3360 S: Maintained
3361 F: Documentation/scsi/dc395x.txt
3362 F: drivers/scsi/dc395x.*
3363
3364 DCCP PROTOCOL
3365 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
3366 L: dccp@vger.kernel.org
3367 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3368 S: Maintained
3369 F: include/linux/dccp.h
3370 F: include/uapi/linux/dccp.h
3371 F: include/linux/tfrc.h
3372 F: net/dccp/
3373
3374 DECnet NETWORK LAYER
3375 W: http://linux-decnet.sourceforge.net
3376 L: linux-decnet-user@lists.sourceforge.net
3377 S: Orphan
3378 F: Documentation/networking/decnet.txt
3379 F: net/decnet/
3380
3381 DECSTATION PLATFORM SUPPORT
3382 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3383 L: linux-mips@linux-mips.org
3384 W: http://www.linux-mips.org/wiki/DECstation
3385 S: Maintained
3386 F: arch/mips/dec/
3387 F: arch/mips/include/asm/dec/
3388 F: arch/mips/include/asm/mach-dec/
3389
3390 DEFXX FDDI NETWORK DRIVER
3391 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3392 S: Maintained
3393 F: drivers/net/fddi/defxx.*
3394
3395 DELL LAPTOP DRIVER
3396 M: Matthew Garrett <mjg59@srcf.ucam.org>
3397 M: Pali RohĂ¡r <pali.rohar@gmail.com>
3398 L: platform-driver-x86@vger.kernel.org
3399 S: Maintained
3400 F: drivers/platform/x86/dell-laptop.c
3401
3402 DELL LAPTOP RBTN DRIVER
3403 M: Pali RohĂ¡r <pali.rohar@gmail.com>
3404 S: Maintained
3405 F: drivers/platform/x86/dell-rbtn.*
3406
3407 DELL LAPTOP FREEFALL DRIVER
3408 M: Pali RohĂ¡r <pali.rohar@gmail.com>
3409 S: Maintained
3410 F: drivers/platform/x86/dell-smo8800.c
3411
3412 DELL LAPTOP SMM DRIVER
3413 M: Pali RohĂ¡r <pali.rohar@gmail.com>
3414 S: Maintained
3415 F: drivers/hwmon/dell-smm-hwmon.c
3416 F: include/uapi/linux/i8k.h
3417
3418 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3419 M: Doug Warzecha <Douglas_Warzecha@dell.com>
3420 S: Maintained
3421 F: Documentation/dcdbas.txt
3422 F: drivers/firmware/dcdbas.*
3423
3424 DELL WMI EXTRAS DRIVER
3425 M: Matthew Garrett <mjg59@srcf.ucam.org>
3426 M: Pali RohĂ¡r <pali.rohar@gmail.com>
3427 S: Maintained
3428 F: drivers/platform/x86/dell-wmi.c
3429
3430 DESIGNWARE USB2 DRD IP DRIVER
3431 M: John Youn <johnyoun@synopsys.com>
3432 L: linux-usb@vger.kernel.org
3433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3434 S: Maintained
3435 F: drivers/usb/dwc2/
3436
3437 DESIGNWARE USB3 DRD IP DRIVER
3438 M: Felipe Balbi <balbi@ti.com>
3439 L: linux-usb@vger.kernel.org
3440 L: linux-omap@vger.kernel.org
3441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3442 S: Maintained
3443 F: drivers/usb/dwc3/
3444
3445 DEVICE COREDUMP (DEV_COREDUMP)
3446 M: Johannes Berg <johannes@sipsolutions.net>
3447 L: linux-kernel@vger.kernel.org
3448 S: Maintained
3449 F: drivers/base/devcoredump.c
3450 F: include/linux/devcoredump.h
3451
3452 DEVICE FREQUENCY (DEVFREQ)
3453 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3454 M: Kyungmin Park <kyungmin.park@samsung.com>
3455 L: linux-pm@vger.kernel.org
3456 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3457 S: Maintained
3458 F: drivers/devfreq/
3459 F: include/linux/devfreq.h
3460 F: Documentation/devicetree/bindings/devfreq/
3461
3462 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3463 M: Chanwoo Choi <cw00.choi@samsung.com>
3464 L: linux-pm@vger.kernel.org
3465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3466 S: Supported
3467 F: drivers/devfreq/event/
3468 F: drivers/devfreq/devfreq-event.c
3469 F: include/linux/devfreq-event.h
3470 F: Documentation/devicetree/bindings/devfreq/event/
3471
3472 DEVICE NUMBER REGISTRY
3473 M: Torben Mathiasen <device@lanana.org>
3474 W: http://lanana.org/docs/device-list/index.html
3475 S: Maintained
3476
3477 DEVICE-MAPPER (LVM)
3478 M: Alasdair Kergon <agk@redhat.com>
3479 M: Mike Snitzer <snitzer@redhat.com>
3480 M: dm-devel@redhat.com
3481 L: dm-devel@redhat.com
3482 W: http://sources.redhat.com/dm
3483 Q: http://patchwork.kernel.org/project/dm-devel/list/
3484 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3485 T: quilt http://people.redhat.com/agk/patches/linux/editing/
3486 S: Maintained
3487 F: Documentation/device-mapper/
3488 F: drivers/md/dm*
3489 F: drivers/md/persistent-data/
3490 F: include/linux/device-mapper.h
3491 F: include/linux/dm-*.h
3492 F: include/uapi/linux/dm-*.h
3493
3494 DIALOG SEMICONDUCTOR DRIVERS
3495 M: Support Opensource <support.opensource@diasemi.com>
3496 W: http://www.dialog-semiconductor.com/products
3497 S: Supported
3498 F: Documentation/hwmon/da90??
3499 F: Documentation/devicetree/bindings/sound/da[79]*.txt
3500 F: drivers/gpio/gpio-da90??.c
3501 F: drivers/hwmon/da90??-hwmon.c
3502 F: drivers/iio/adc/da91??-*.c
3503 F: drivers/input/misc/da90??_onkey.c
3504 F: drivers/input/touchscreen/da9052_tsi.c
3505 F: drivers/leds/leds-da90??.c
3506 F: drivers/mfd/da903x.c
3507 F: drivers/mfd/da90??-*.c
3508 F: drivers/mfd/da91??-*.c
3509 F: drivers/power/da9052-battery.c
3510 F: drivers/power/da91??-*.c
3511 F: drivers/regulator/da903x.c
3512 F: drivers/regulator/da9???-regulator.[ch]
3513 F: drivers/rtc/rtc-da90??.c
3514 F: drivers/video/backlight/da90??_bl.c
3515 F: drivers/watchdog/da90??_wdt.c
3516 F: include/linux/mfd/da903x.h
3517 F: include/linux/mfd/da9052/
3518 F: include/linux/mfd/da9055/
3519 F: include/linux/mfd/da9063/
3520 F: include/linux/mfd/da9150/
3521 F: include/sound/da[79]*.h
3522 F: sound/soc/codecs/da[79]*.[ch]
3523
3524 DIGI NEO AND CLASSIC PCI PRODUCTS
3525 M: Lidza Louina <lidza.louina@gmail.com>
3526 M: Mark Hounschell <markh@compro.net>
3527 L: driverdev-devel@linuxdriverproject.org
3528 S: Maintained
3529 F: drivers/staging/dgnc/
3530
3531 DIGI EPCA PCI PRODUCTS
3532 M: Lidza Louina <lidza.louina@gmail.com>
3533 M: Daeseok Youn <daeseok.youn@gmail.com>
3534 L: driverdev-devel@linuxdriverproject.org
3535 S: Maintained
3536 F: drivers/staging/dgap/
3537
3538 DIOLAN U2C-12 I2C DRIVER
3539 M: Guenter Roeck <linux@roeck-us.net>
3540 L: linux-i2c@vger.kernel.org
3541 S: Maintained
3542 F: drivers/i2c/busses/i2c-diolan-u2c.c
3543
3544 DIRECT ACCESS (DAX)
3545 M: Matthew Wilcox <willy@linux.intel.com>
3546 L: linux-fsdevel@vger.kernel.org
3547 S: Supported
3548 F: fs/dax.c
3549
3550 DIRECTORY NOTIFICATION (DNOTIFY)
3551 M: Eric Paris <eparis@parisplace.org>
3552 S: Maintained
3553 F: Documentation/filesystems/dnotify.txt
3554 F: fs/notify/dnotify/
3555 F: include/linux/dnotify.h
3556
3557 DISK GEOMETRY AND PARTITION HANDLING
3558 M: Andries Brouwer <aeb@cwi.nl>
3559 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3560 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3561 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3562 S: Maintained
3563
3564 DISKQUOTA
3565 M: Jan Kara <jack@suse.com>
3566 S: Maintained
3567 F: Documentation/filesystems/quota.txt
3568 F: fs/quota/
3569 F: include/linux/quota*.h
3570 F: include/uapi/linux/quota*.h
3571
3572 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3573 M: Bernie Thompson <bernie@plugable.com>
3574 L: linux-fbdev@vger.kernel.org
3575 S: Maintained
3576 W: http://plugable.com/category/projects/udlfb/
3577 F: drivers/video/fbdev/udlfb.c
3578 F: include/video/udlfb.h
3579 F: Documentation/fb/udlfb.txt
3580
3581 DISTRIBUTED LOCK MANAGER (DLM)
3582 M: Christine Caulfield <ccaulfie@redhat.com>
3583 M: David Teigland <teigland@redhat.com>
3584 L: cluster-devel@redhat.com
3585 W: http://sources.redhat.com/cluster/
3586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3587 S: Supported
3588 F: fs/dlm/
3589
3590 DMA BUFFER SHARING FRAMEWORK
3591 M: Sumit Semwal <sumit.semwal@linaro.org>
3592 S: Maintained
3593 L: linux-media@vger.kernel.org
3594 L: dri-devel@lists.freedesktop.org
3595 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3596 F: drivers/dma-buf/
3597 F: include/linux/dma-buf*
3598 F: include/linux/reservation.h
3599 F: include/linux/*fence.h
3600 F: Documentation/dma-buf-sharing.txt
3601 T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3602
3603 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3604 M: Vinod Koul <vinod.koul@intel.com>
3605 L: dmaengine@vger.kernel.org
3606 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
3607 S: Maintained
3608 F: drivers/dma/
3609 F: include/linux/dmaengine.h
3610 F: Documentation/dmaengine/
3611 T: git git://git.infradead.org/users/vkoul/slave-dma.git
3612
3613 DME1737 HARDWARE MONITOR DRIVER
3614 M: Juerg Haefliger <juergh@gmail.com>
3615 L: lm-sensors@lm-sensors.org
3616 S: Maintained
3617 F: Documentation/hwmon/dme1737
3618 F: drivers/hwmon/dme1737.c
3619
3620 DMI/SMBIOS SUPPORT
3621 M: Jean Delvare <jdelvare@suse.com>
3622 S: Maintained
3623 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3624 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
3625 F: drivers/firmware/dmi-id.c
3626 F: drivers/firmware/dmi_scan.c
3627 F: include/linux/dmi.h
3628
3629 DOCUMENTATION
3630 M: Jonathan Corbet <corbet@lwn.net>
3631 L: linux-doc@vger.kernel.org
3632 S: Maintained
3633 F: Documentation/
3634 F: scripts/docproc.c
3635 F: scripts/kernel-doc*
3636 X: Documentation/ABI/
3637 X: Documentation/devicetree/
3638 X: Documentation/acpi
3639 X: Documentation/power
3640 X: Documentation/spi
3641 X: Documentation/DocBook/media
3642 T: git git://git.lwn.net/linux.git docs-next
3643
3644 DOUBLETALK DRIVER
3645 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
3646 L: blinux-list@redhat.com
3647 S: Maintained
3648 F: drivers/char/dtlk.c
3649 F: include/linux/dtlk.h
3650
3651 DPT_I2O SCSI RAID DRIVER
3652 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3653 L: linux-scsi@vger.kernel.org
3654 W: http://www.adaptec.com/
3655 S: Maintained
3656 F: drivers/scsi/dpt*
3657 F: drivers/scsi/dpt/
3658
3659 DRBD DRIVER
3660 P: Philipp Reisner
3661 P: Lars Ellenberg
3662 M: drbd-dev@lists.linbit.com
3663 L: drbd-user@lists.linbit.com
3664 W: http://www.drbd.org
3665 T: git git://git.drbd.org/linux-2.6-drbd.git drbd
3666 T: git git://git.drbd.org/drbd-8.3.git
3667 S: Supported
3668 F: drivers/block/drbd/
3669 F: lib/lru_cache.c
3670 F: Documentation/blockdev/drbd/
3671
3672 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3673 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3674 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3675 S: Supported
3676 F: Documentation/kobject.txt
3677 F: drivers/base/
3678 F: fs/debugfs/
3679 F: fs/kernfs/
3680 F: fs/sysfs/
3681 F: include/linux/debugfs.h
3682 F: include/linux/kobj*
3683 F: lib/kobj*
3684
3685 DRM DRIVERS
3686 M: David Airlie <airlied@linux.ie>
3687 L: dri-devel@lists.freedesktop.org
3688 T: git git://people.freedesktop.org/~airlied/linux
3689 S: Maintained
3690 F: drivers/gpu/drm/
3691 F: drivers/gpu/vga/
3692 F: include/drm/
3693 F: include/uapi/drm/
3694
3695 RADEON DRM DRIVERS
3696 M: Alex Deucher <alexander.deucher@amd.com>
3697 M: Christian König <christian.koenig@amd.com>
3698 L: dri-devel@lists.freedesktop.org
3699 T: git git://people.freedesktop.org/~agd5f/linux
3700 S: Supported
3701 F: drivers/gpu/drm/radeon/
3702 F: include/uapi/drm/radeon*
3703
3704 DRM PANEL DRIVERS
3705 M: Thierry Reding <thierry.reding@gmail.com>
3706 L: dri-devel@lists.freedesktop.org
3707 T: git git://anongit.freedesktop.org/tegra/linux.git
3708 S: Maintained
3709 F: drivers/gpu/drm/drm_panel.c
3710 F: drivers/gpu/drm/panel/
3711 F: include/drm/drm_panel.h
3712 F: Documentation/devicetree/bindings/display/panel/
3713
3714 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3715 M: Daniel Vetter <daniel.vetter@intel.com>
3716 M: Jani Nikula <jani.nikula@linux.intel.com>
3717 L: intel-gfx@lists.freedesktop.org
3718 L: dri-devel@lists.freedesktop.org
3719 W: https://01.org/linuxgraphics/
3720 Q: http://patchwork.freedesktop.org/project/intel-gfx/
3721 T: git git://anongit.freedesktop.org/drm-intel
3722 S: Supported
3723 F: drivers/gpu/drm/i915/
3724 F: include/drm/i915*
3725 F: include/uapi/drm/i915*
3726
3727 DRM DRIVERS FOR ATMEL HLCDC
3728 M: Boris Brezillon <boris.brezillon@free-electrons.com>
3729 L: dri-devel@lists.freedesktop.org
3730 S: Supported
3731 F: drivers/gpu/drm/atmel-hlcdc/
3732 F: Documentation/devicetree/bindings/drm/atmel/
3733
3734 DRM DRIVERS FOR EXYNOS
3735 M: Inki Dae <inki.dae@samsung.com>
3736 M: Joonyoung Shim <jy0922.shim@samsung.com>
3737 M: Seung-Woo Kim <sw0312.kim@samsung.com>
3738 M: Kyungmin Park <kyungmin.park@samsung.com>
3739 L: dri-devel@lists.freedesktop.org
3740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3741 S: Supported
3742 F: drivers/gpu/drm/exynos/
3743 F: include/drm/exynos*
3744 F: include/uapi/drm/exynos*
3745
3746 DRM DRIVERS FOR FREESCALE DCU
3747 M: Jianwei Wang <jianwei.wang.chn@gmail.com>
3748 M: Alison Wang <alison.wang@freescale.com>
3749 L: dri-devel@lists.freedesktop.org
3750 S: Supported
3751 F: drivers/gpu/drm/fsl-dcu/
3752 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
3753 F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3754
3755 DRM DRIVERS FOR FREESCALE IMX
3756 M: Philipp Zabel <p.zabel@pengutronix.de>
3757 L: dri-devel@lists.freedesktop.org
3758 S: Maintained
3759 F: drivers/gpu/drm/imx/
3760 F: drivers/gpu/ipu-v3/
3761 F: Documentation/devicetree/bindings/display/imx/
3762
3763 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3764 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3765 L: dri-devel@lists.freedesktop.org
3766 T: git git://github.com/patjak/drm-gma500
3767 S: Maintained
3768 F: drivers/gpu/drm/gma500
3769 F: include/drm/gma500*
3770
3771 DRM DRIVERS FOR NVIDIA TEGRA
3772 M: Thierry Reding <thierry.reding@gmail.com>
3773 M: Terje Bergström <tbergstrom@nvidia.com>
3774 L: dri-devel@lists.freedesktop.org
3775 L: linux-tegra@vger.kernel.org
3776 T: git git://anongit.freedesktop.org/tegra/linux.git
3777 S: Supported
3778 F: drivers/gpu/drm/tegra/
3779 F: drivers/gpu/host1x/
3780 F: include/linux/host1x.h
3781 F: include/uapi/drm/tegra_drm.h
3782 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3783
3784 DRM DRIVERS FOR RENESAS
3785 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3786 L: dri-devel@lists.freedesktop.org
3787 L: linux-renesas-soc@vger.kernel.org
3788 T: git git://people.freedesktop.org/~airlied/linux
3789 S: Supported
3790 F: drivers/gpu/drm/rcar-du/
3791 F: drivers/gpu/drm/shmobile/
3792 F: include/linux/platform_data/shmob_drm.h
3793
3794 DRM DRIVERS FOR ROCKCHIP
3795 M: Mark Yao <mark.yao@rock-chips.com>
3796 L: dri-devel@lists.freedesktop.org
3797 S: Maintained
3798 F: drivers/gpu/drm/rockchip/
3799 F: Documentation/devicetree/bindings/display/rockchip*
3800
3801 DRM DRIVERS FOR STI
3802 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
3803 M: Vincent Abriou <vincent.abriou@st.com>
3804 L: dri-devel@lists.freedesktop.org
3805 T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3806 S: Maintained
3807 F: drivers/gpu/drm/sti
3808 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
3809
3810 DRM DRIVERS FOR VIVANTE GPU IP
3811 M: Lucas Stach <l.stach@pengutronix.de>
3812 R: Russell King <linux+etnaviv@arm.linux.org.uk>
3813 R: Christian Gmeiner <christian.gmeiner@gmail.com>
3814 L: dri-devel@lists.freedesktop.org
3815 S: Maintained
3816 F: drivers/gpu/drm/etnaviv
3817 F: Documentation/devicetree/bindings/display/etnaviv
3818
3819 DSBR100 USB FM RADIO DRIVER
3820 M: Alexey Klimov <klimov.linux@gmail.com>
3821 L: linux-media@vger.kernel.org
3822 T: git git://linuxtv.org/media_tree.git
3823 S: Maintained
3824 F: drivers/media/radio/dsbr100.c
3825
3826 DSCC4 DRIVER
3827 M: Francois Romieu <romieu@fr.zoreil.com>
3828 L: netdev@vger.kernel.org
3829 S: Maintained
3830 F: drivers/net/wan/dscc4.c
3831
3832 DT3155 MEDIA DRIVER
3833 M: Hans Verkuil <hverkuil@xs4all.nl>
3834 L: linux-media@vger.kernel.org
3835 T: git git://linuxtv.org/media_tree.git
3836 W: https://linuxtv.org
3837 S: Odd Fixes
3838 F: drivers/media/pci/dt3155/
3839
3840 DVB_USB_AF9015 MEDIA DRIVER
3841 M: Antti Palosaari <crope@iki.fi>
3842 L: linux-media@vger.kernel.org
3843 W: https://linuxtv.org
3844 W: http://palosaari.fi/linux/
3845 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3846 T: git git://linuxtv.org/anttip/media_tree.git
3847 S: Maintained
3848 F: drivers/media/usb/dvb-usb-v2/af9015*
3849
3850 DVB_USB_AF9035 MEDIA DRIVER
3851 M: Antti Palosaari <crope@iki.fi>
3852 L: linux-media@vger.kernel.org
3853 W: https://linuxtv.org
3854 W: http://palosaari.fi/linux/
3855 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3856 T: git git://linuxtv.org/anttip/media_tree.git
3857 S: Maintained
3858 F: drivers/media/usb/dvb-usb-v2/af9035*
3859
3860 DVB_USB_ANYSEE MEDIA DRIVER
3861 M: Antti Palosaari <crope@iki.fi>
3862 L: linux-media@vger.kernel.org
3863 W: https://linuxtv.org
3864 W: http://palosaari.fi/linux/
3865 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3866 T: git git://linuxtv.org/anttip/media_tree.git
3867 S: Maintained
3868 F: drivers/media/usb/dvb-usb-v2/anysee*
3869
3870 DVB_USB_AU6610 MEDIA DRIVER
3871 M: Antti Palosaari <crope@iki.fi>
3872 L: linux-media@vger.kernel.org
3873 W: https://linuxtv.org
3874 W: http://palosaari.fi/linux/
3875 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3876 T: git git://linuxtv.org/anttip/media_tree.git
3877 S: Maintained
3878 F: drivers/media/usb/dvb-usb-v2/au6610*
3879
3880 DVB_USB_CE6230 MEDIA DRIVER
3881 M: Antti Palosaari <crope@iki.fi>
3882 L: linux-media@vger.kernel.org
3883 W: https://linuxtv.org
3884 W: http://palosaari.fi/linux/
3885 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3886 T: git git://linuxtv.org/anttip/media_tree.git
3887 S: Maintained
3888 F: drivers/media/usb/dvb-usb-v2/ce6230*
3889
3890 DVB_USB_CXUSB MEDIA DRIVER
3891 M: Michael Krufky <mkrufky@linuxtv.org>
3892 L: linux-media@vger.kernel.org
3893 W: https://linuxtv.org
3894 W: http://github.com/mkrufky
3895 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3896 T: git git://linuxtv.org/media_tree.git
3897 S: Maintained
3898 F: drivers/media/usb/dvb-usb/cxusb*
3899
3900 DVB_USB_EC168 MEDIA DRIVER
3901 M: Antti Palosaari <crope@iki.fi>
3902 L: linux-media@vger.kernel.org
3903 W: https://linuxtv.org
3904 W: http://palosaari.fi/linux/
3905 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3906 T: git git://linuxtv.org/anttip/media_tree.git
3907 S: Maintained
3908 F: drivers/media/usb/dvb-usb-v2/ec168*
3909
3910 DVB_USB_GL861 MEDIA DRIVER
3911 M: Antti Palosaari <crope@iki.fi>
3912 L: linux-media@vger.kernel.org
3913 W: https://linuxtv.org
3914 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3915 T: git git://linuxtv.org/anttip/media_tree.git
3916 S: Maintained
3917 F: drivers/media/usb/dvb-usb-v2/gl861*
3918
3919 DVB_USB_MXL111SF MEDIA DRIVER
3920 M: Michael Krufky <mkrufky@linuxtv.org>
3921 L: linux-media@vger.kernel.org
3922 W: https://linuxtv.org
3923 W: http://github.com/mkrufky
3924 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3925 T: git git://linuxtv.org/mkrufky/mxl111sf.git
3926 S: Maintained
3927 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3928
3929 DVB_USB_RTL28XXU MEDIA DRIVER
3930 M: Antti Palosaari <crope@iki.fi>
3931 L: linux-media@vger.kernel.org
3932 W: https://linuxtv.org
3933 W: http://palosaari.fi/linux/
3934 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3935 T: git git://linuxtv.org/anttip/media_tree.git
3936 S: Maintained
3937 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3938
3939 DVB_USB_V2 MEDIA DRIVER
3940 M: Antti Palosaari <crope@iki.fi>
3941 L: linux-media@vger.kernel.org
3942 W: https://linuxtv.org
3943 W: http://palosaari.fi/linux/
3944 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3945 T: git git://linuxtv.org/anttip/media_tree.git
3946 S: Maintained
3947 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3948 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3949
3950 DYNAMIC DEBUG
3951 M: Jason Baron <jbaron@akamai.com>
3952 S: Maintained
3953 F: lib/dynamic_debug.c
3954 F: include/linux/dynamic_debug.h
3955
3956 DZ DECSTATION DZ11 SERIAL DRIVER
3957 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3958 S: Maintained
3959 F: drivers/tty/serial/dz.*
3960
3961 E3X0 POWER BUTTON DRIVER
3962 M: Moritz Fischer <moritz.fischer@ettus.com>
3963 L: usrp-users@lists.ettus.com
3964 W: http://www.ettus.com
3965 S: Supported
3966 F: drivers/input/misc/e3x0-button.c
3967 F: Documentation/devicetree/bindings/input/e3x0-button.txt
3968
3969 E4000 MEDIA DRIVER
3970 M: Antti Palosaari <crope@iki.fi>
3971 L: linux-media@vger.kernel.org
3972 W: https://linuxtv.org
3973 W: http://palosaari.fi/linux/
3974 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3975 T: git git://linuxtv.org/anttip/media_tree.git
3976 S: Maintained
3977 F: drivers/media/tuners/e4000*
3978
3979 EATA ISA/EISA/PCI SCSI DRIVER
3980 M: Dario Ballabio <ballabio_dario@emc.com>
3981 L: linux-scsi@vger.kernel.org
3982 S: Maintained
3983 F: drivers/scsi/eata.c
3984
3985 EC100 MEDIA DRIVER
3986 M: Antti Palosaari <crope@iki.fi>
3987 L: linux-media@vger.kernel.org
3988 W: https://linuxtv.org
3989 W: http://palosaari.fi/linux/
3990 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3991 T: git git://linuxtv.org/anttip/media_tree.git
3992 S: Maintained
3993 F: drivers/media/dvb-frontends/ec100*
3994
3995 ECRYPT FILE SYSTEM
3996 M: Tyler Hicks <tyhicks@canonical.com>
3997 L: ecryptfs@vger.kernel.org
3998 W: http://ecryptfs.org
3999 W: https://launchpad.net/ecryptfs
4000 S: Supported
4001 F: Documentation/filesystems/ecryptfs.txt
4002 F: fs/ecryptfs/
4003
4004 EDAC-CORE
4005 M: Doug Thompson <dougthompson@xmission.com>
4006 M: Borislav Petkov <bp@alien8.de>
4007 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4008 L: linux-edac@vger.kernel.org
4009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4010 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4011 S: Supported
4012 F: Documentation/edac.txt
4013 F: drivers/edac/
4014 F: include/linux/edac.h
4015
4016 EDAC-AMD64
4017 M: Doug Thompson <dougthompson@xmission.com>
4018 M: Borislav Petkov <bp@alien8.de>
4019 L: linux-edac@vger.kernel.org
4020 S: Maintained
4021 F: drivers/edac/amd64_edac*
4022
4023 EDAC-CALXEDA
4024 M: Doug Thompson <dougthompson@xmission.com>
4025 M: Robert Richter <rric@kernel.org>
4026 L: linux-edac@vger.kernel.org
4027 S: Maintained
4028 F: drivers/edac/highbank*
4029
4030 EDAC-CAVIUM
4031 M: Ralf Baechle <ralf@linux-mips.org>
4032 M: David Daney <david.daney@cavium.com>
4033 L: linux-edac@vger.kernel.org
4034 L: linux-mips@linux-mips.org
4035 S: Supported
4036 F: drivers/edac/octeon_edac*
4037
4038 EDAC-E752X
4039 M: Mark Gross <mark.gross@intel.com>
4040 M: Doug Thompson <dougthompson@xmission.com>
4041 L: linux-edac@vger.kernel.org
4042 S: Maintained
4043 F: drivers/edac/e752x_edac.c
4044
4045 EDAC-E7XXX
4046 M: Doug Thompson <dougthompson@xmission.com>
4047 L: linux-edac@vger.kernel.org
4048 S: Maintained
4049 F: drivers/edac/e7xxx_edac.c
4050
4051 EDAC-GHES
4052 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4053 L: linux-edac@vger.kernel.org
4054 S: Maintained
4055 F: drivers/edac/ghes_edac.c
4056
4057 EDAC-I82443BXGX
4058 M: Tim Small <tim@buttersideup.com>
4059 L: linux-edac@vger.kernel.org
4060 S: Maintained
4061 F: drivers/edac/i82443bxgx_edac.c
4062
4063 EDAC-I3000
4064 M: Jason Uhlenkott <juhlenko@akamai.com>
4065 L: linux-edac@vger.kernel.org
4066 S: Maintained
4067 F: drivers/edac/i3000_edac.c
4068
4069 EDAC-I5000
4070 M: Doug Thompson <dougthompson@xmission.com>
4071 L: linux-edac@vger.kernel.org
4072 S: Maintained
4073 F: drivers/edac/i5000_edac.c
4074
4075 EDAC-I5400
4076 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4077 L: linux-edac@vger.kernel.org
4078 S: Maintained
4079 F: drivers/edac/i5400_edac.c
4080
4081 EDAC-I7300
4082 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4083 L: linux-edac@vger.kernel.org
4084 S: Maintained
4085 F: drivers/edac/i7300_edac.c
4086
4087 EDAC-I7CORE
4088 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4089 L: linux-edac@vger.kernel.org
4090 S: Maintained
4091 F: drivers/edac/i7core_edac.c
4092
4093 EDAC-I82975X
4094 M: Ranganathan Desikan <ravi@jetztechnologies.com>
4095 M: "Arvind R." <arvino55@gmail.com>
4096 L: linux-edac@vger.kernel.org
4097 S: Maintained
4098 F: drivers/edac/i82975x_edac.c
4099
4100 EDAC-IE31200
4101 M: Jason Baron <jbaron@akamai.com>
4102 L: linux-edac@vger.kernel.org
4103 S: Maintained
4104 F: drivers/edac/ie31200_edac.c
4105
4106 EDAC-MPC85XX
4107 M: Johannes Thumshirn <morbidrsa@gmail.com>
4108 L: linux-edac@vger.kernel.org
4109 S: Maintained
4110 F: drivers/edac/mpc85xx_edac.[ch]
4111
4112 EDAC-PASEMI
4113 M: Egor Martovetsky <egor@pasemi.com>
4114 L: linux-edac@vger.kernel.org
4115 S: Maintained
4116 F: drivers/edac/pasemi_edac.c
4117
4118 EDAC-R82600
4119 M: Tim Small <tim@buttersideup.com>
4120 L: linux-edac@vger.kernel.org
4121 S: Maintained
4122 F: drivers/edac/r82600_edac.c
4123
4124 EDAC-SBRIDGE
4125 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4126 L: linux-edac@vger.kernel.org
4127 S: Maintained
4128 F: drivers/edac/sb_edac.c
4129
4130 EDAC-XGENE
4131 APPLIED MICRO (APM) X-GENE SOC EDAC
4132 M: Loc Ho <lho@apm.com>
4133 S: Supported
4134 F: drivers/edac/xgene_edac.c
4135 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4136
4137 EDIROL UA-101/UA-1000 DRIVER
4138 M: Clemens Ladisch <clemens@ladisch.de>
4139 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4140 T: git git://git.alsa-project.org/alsa-kernel.git
4141 S: Maintained
4142 F: sound/usb/misc/ua101.c
4143
4144 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4145 M: Matt Fleming <matt@codeblueprint.co.uk>
4146 L: linux-efi@vger.kernel.org
4147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4148 S: Maintained
4149 F: Documentation/efi-stub.txt
4150 F: arch/ia64/kernel/efi.c
4151 F: arch/x86/boot/compressed/eboot.[ch]
4152 F: arch/x86/include/asm/efi.h
4153 F: arch/x86/platform/efi/*
4154 F: drivers/firmware/efi/*
4155 F: include/linux/efi*.h
4156
4157 EFI VARIABLE FILESYSTEM
4158 M: Matthew Garrett <matthew.garrett@nebula.com>
4159 M: Jeremy Kerr <jk@ozlabs.org>
4160 M: Matt Fleming <matt@codeblueprint.co.uk>
4161 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4162 L: linux-efi@vger.kernel.org
4163 S: Maintained
4164 F: fs/efivarfs/
4165
4166 EFIFB FRAMEBUFFER DRIVER
4167 L: linux-fbdev@vger.kernel.org
4168 M: Peter Jones <pjones@redhat.com>
4169 S: Maintained
4170 F: drivers/video/fbdev/efifb.c
4171
4172 EFS FILESYSTEM
4173 W: http://aeschi.ch.eu.org/efs/
4174 S: Orphan
4175 F: fs/efs/
4176
4177 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4178 M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4179 M: Christoph Raisch <raisch@de.ibm.com>
4180 L: linux-rdma@vger.kernel.org
4181 S: Supported
4182 F: drivers/infiniband/hw/ehca/
4183
4184 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4185 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4186 L: netdev@vger.kernel.org
4187 S: Maintained
4188 F: drivers/net/ethernet/ibm/ehea/
4189
4190 EM28XX VIDEO4LINUX DRIVER
4191 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4192 L: linux-media@vger.kernel.org
4193 W: https://linuxtv.org
4194 T: git git://linuxtv.org/media_tree.git
4195 S: Maintained
4196 F: drivers/media/usb/em28xx/
4197
4198 EMBEDDED LINUX
4199 M: Paul Gortmaker <paul.gortmaker@windriver.com>
4200 M: Matt Mackall <mpm@selenic.com>
4201 M: David Woodhouse <dwmw2@infradead.org>
4202 L: linux-embedded@vger.kernel.org
4203 S: Maintained
4204
4205 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4206 M: James Smart <james.smart@avagotech.com>
4207 M: Dick Kennedy <dick.kennedy@avagotech.com>
4208 L: linux-scsi@vger.kernel.org
4209 W: http://www.avagotech.com
4210 S: Supported
4211 F: drivers/scsi/lpfc/
4212
4213 ENE CB710 FLASH CARD READER DRIVER
4214 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
4215 S: Maintained
4216 F: drivers/misc/cb710/
4217 F: drivers/mmc/host/cb710-mmc.*
4218 F: include/linux/cb710.h
4219
4220 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4221 M: Maxim Levitsky <maximlevitsky@gmail.com>
4222 S: Maintained
4223 F: drivers/media/rc/ene_ir.*
4224
4225 ENHANCED ERROR HANDLING (EEH)
4226 M: Gavin Shan <shangw@linux.vnet.ibm.com>
4227 L: linuxppc-dev@lists.ozlabs.org
4228 S: Supported
4229 F: Documentation/powerpc/eeh-pci-error-recovery.txt
4230 F: arch/powerpc/kernel/eeh*.c
4231
4232 EPSON S1D13XXX FRAMEBUFFER DRIVER
4233 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
4234 S: Maintained
4235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4236 F: drivers/video/fbdev/s1d13xxxfb.c
4237 F: include/video/s1d13xxxfb.h
4238
4239 ET131X NETWORK DRIVER
4240 M: Mark Einon <mark.einon@gmail.com>
4241 S: Odd Fixes
4242 F: drivers/net/ethernet/agere/
4243
4244 ETHERNET BRIDGE
4245 M: Stephen Hemminger <stephen@networkplumber.org>
4246 L: bridge@lists.linux-foundation.org
4247 L: netdev@vger.kernel.org
4248 W: http://www.linuxfoundation.org/en/Net:Bridge
4249 S: Maintained
4250 F: include/linux/netfilter_bridge/
4251 F: net/bridge/
4252
4253 ETHERNET PHY LIBRARY
4254 M: Florian Fainelli <f.fainelli@gmail.com>
4255 L: netdev@vger.kernel.org
4256 S: Maintained
4257 F: include/linux/phy.h
4258 F: include/linux/phy_fixed.h
4259 F: drivers/net/phy/
4260 F: Documentation/networking/phy.txt
4261 F: drivers/of/of_mdio.c
4262 F: drivers/of/of_net.c
4263
4264 EXT2 FILE SYSTEM
4265 M: Jan Kara <jack@suse.com>
4266 L: linux-ext4@vger.kernel.org
4267 S: Maintained
4268 F: Documentation/filesystems/ext2.txt
4269 F: fs/ext2/
4270 F: include/linux/ext2*
4271
4272 EXT4 FILE SYSTEM
4273 M: "Theodore Ts'o" <tytso@mit.edu>
4274 M: Andreas Dilger <adilger.kernel@dilger.ca>
4275 L: linux-ext4@vger.kernel.org
4276 W: http://ext4.wiki.kernel.org
4277 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
4278 S: Maintained
4279 F: Documentation/filesystems/ext4.txt
4280 F: fs/ext4/
4281
4282 Extended Verification Module (EVM)
4283 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
4284 L: linux-ima-devel@lists.sourceforge.net
4285 L: linux-security-module@vger.kernel.org
4286 S: Supported
4287 F: security/integrity/evm/
4288
4289 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4290 M: MyungJoo Ham <myungjoo.ham@samsung.com>
4291 M: Chanwoo Choi <cw00.choi@samsung.com>
4292 L: linux-kernel@vger.kernel.org
4293 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4294 S: Maintained
4295 F: drivers/extcon/
4296 F: include/linux/extcon/
4297 F: include/linux/extcon.h
4298 F: Documentation/extcon/
4299 F: Documentation/devicetree/bindings/extcon/
4300
4301 EXYNOS DP DRIVER
4302 M: Jingoo Han <jingoohan1@gmail.com>
4303 L: dri-devel@lists.freedesktop.org
4304 S: Maintained
4305 F: drivers/gpu/drm/exynos/exynos_dp*
4306
4307 EXYNOS MIPI DISPLAY DRIVERS
4308 M: Inki Dae <inki.dae@samsung.com>
4309 M: Donghwa Lee <dh09.lee@samsung.com>
4310 M: Kyungmin Park <kyungmin.park@samsung.com>
4311 L: linux-fbdev@vger.kernel.org
4312 S: Maintained
4313 F: drivers/video/fbdev/exynos/exynos_mipi*
4314 F: include/video/exynos_mipi*
4315
4316 F71805F HARDWARE MONITORING DRIVER
4317 M: Jean Delvare <jdelvare@suse.com>
4318 L: lm-sensors@lm-sensors.org
4319 S: Maintained
4320 F: Documentation/hwmon/f71805f
4321 F: drivers/hwmon/f71805f.c
4322
4323 FC0011 TUNER DRIVER
4324 M: Michael Buesch <m@bues.ch>
4325 L: linux-media@vger.kernel.org
4326 S: Maintained
4327 F: drivers/media/tuners/fc0011.h
4328 F: drivers/media/tuners/fc0011.c
4329
4330 FC2580 MEDIA DRIVER
4331 M: Antti Palosaari <crope@iki.fi>
4332 L: linux-media@vger.kernel.org
4333 W: https://linuxtv.org
4334 W: http://palosaari.fi/linux/
4335 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4336 T: git git://linuxtv.org/anttip/media_tree.git
4337 S: Maintained
4338 F: drivers/media/tuners/fc2580*
4339
4340 FANOTIFY
4341 M: Eric Paris <eparis@redhat.com>
4342 S: Maintained
4343 F: fs/notify/fanotify/
4344 F: include/linux/fanotify.h
4345 F: include/uapi/linux/fanotify.h
4346
4347 FARSYNC SYNCHRONOUS DRIVER
4348 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
4349 W: http://www.farsite.co.uk/
4350 S: Supported
4351 F: drivers/net/wan/farsync.*
4352
4353 FAULT INJECTION SUPPORT
4354 M: Akinobu Mita <akinobu.mita@gmail.com>
4355 S: Supported
4356 F: Documentation/fault-injection/
4357 F: lib/fault-inject.c
4358
4359 FBTFT Framebuffer drivers
4360 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4361 M: Noralf Trønnes <noralf@tronnes.org>
4362 S: Maintained
4363 F: drivers/staging/fbtft/
4364
4365 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4366 M: Vasu Dev <vasu.dev@intel.com>
4367 L: fcoe-devel@open-fcoe.org
4368 W: www.Open-FCoE.org
4369 S: Supported
4370 F: drivers/scsi/libfc/
4371 F: drivers/scsi/fcoe/
4372 F: include/scsi/fc/
4373 F: include/scsi/libfc.h
4374 F: include/scsi/libfcoe.h
4375 F: include/uapi/scsi/fc/
4376
4377 FILE LOCKING (flock() and fcntl()/lockf())
4378 M: Jeff Layton <jlayton@poochiereds.net>
4379 M: "J. Bruce Fields" <bfields@fieldses.org>
4380 L: linux-fsdevel@vger.kernel.org
4381 S: Maintained
4382 F: include/linux/fcntl.h
4383 F: include/linux/fs.h
4384 F: include/uapi/linux/fcntl.h
4385 F: include/uapi/linux/fs.h
4386 F: fs/fcntl.c
4387 F: fs/locks.c
4388
4389 FILESYSTEMS (VFS and infrastructure)
4390 M: Alexander Viro <viro@zeniv.linux.org.uk>
4391 L: linux-fsdevel@vger.kernel.org
4392 S: Maintained
4393 F: fs/*
4394
4395 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4396 M: Riku Voipio <riku.voipio@iki.fi>
4397 L: lm-sensors@lm-sensors.org
4398 S: Maintained
4399 F: drivers/hwmon/f75375s.c
4400 F: include/linux/f75375s.h
4401
4402 FIREWIRE AUDIO DRIVERS
4403 M: Clemens Ladisch <clemens@ladisch.de>
4404 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4405 T: git git://git.alsa-project.org/alsa-kernel.git
4406 S: Maintained
4407 F: sound/firewire/
4408
4409 FIREWIRE MEDIA DRIVERS (firedtv)
4410 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4411 L: linux-media@vger.kernel.org
4412 L: linux1394-devel@lists.sourceforge.net
4413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4414 S: Maintained
4415 F: drivers/media/firewire/
4416
4417 FIREWIRE SBP-2 TARGET
4418 M: Chris Boot <bootc@bootc.net>
4419 L: linux-scsi@vger.kernel.org
4420 L: target-devel@vger.kernel.org
4421 L: linux1394-devel@lists.sourceforge.net
4422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4423 S: Maintained
4424 F: drivers/target/sbp/
4425
4426 FIREWIRE SUBSYSTEM
4427 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
4428 L: linux1394-devel@lists.sourceforge.net
4429 W: http://ieee1394.wiki.kernel.org/
4430 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4431 S: Maintained
4432 F: drivers/firewire/
4433 F: include/linux/firewire.h
4434 F: include/uapi/linux/firewire*.h
4435 F: tools/firewire/
4436
4437 FIRMWARE LOADER (request_firmware)
4438 M: Ming Lei <ming.lei@canonical.com>
4439 L: linux-kernel@vger.kernel.org
4440 S: Maintained
4441 F: Documentation/firmware_class/
4442 F: drivers/base/firmware*.c
4443 F: include/linux/firmware.h
4444
4445 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4446 M: Joshua Morris <josh.h.morris@us.ibm.com>
4447 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4448 S: Maintained
4449 F: drivers/block/rsxx/
4450
4451 FLOPPY DRIVER
4452 M: Jiri Kosina <jikos@kernel.org>
4453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4454 S: Odd fixes
4455 F: drivers/block/floppy.c
4456
4457 FMC SUBSYSTEM
4458 M: Alessandro Rubini <rubini@gnudd.com>
4459 W: http://www.ohwr.org/projects/fmc-bus
4460 S: Supported
4461 F: drivers/fmc/
4462 F: include/linux/fmc*.h
4463 F: include/linux/ipmi-fru.h
4464 K: fmc_d.*register
4465
4466 FPGA MANAGER FRAMEWORK
4467 M: Alan Tull <atull@opensource.altera.com>
4468 R: Moritz Fischer <moritz.fischer@ettus.com>
4469 S: Maintained
4470 F: drivers/fpga/
4471 F: include/linux/fpga/fpga-mgr.h
4472 W: http://www.rocketboards.org
4473
4474 FPU EMULATOR
4475 M: Bill Metzenthen <billm@melbpc.org.au>
4476 W: http://floatingpoint.sourceforge.net/emulator/index.html
4477 S: Maintained
4478 F: arch/x86/math-emu/
4479
4480 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4481 L: netdev@vger.kernel.org
4482 S: Orphan
4483 F: drivers/net/wan/dlci.c
4484 F: drivers/net/wan/sdla.c
4485
4486 FRAMEBUFFER LAYER
4487 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4488 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
4489 L: linux-fbdev@vger.kernel.org
4490 W: http://linux-fbdev.sourceforge.net/
4491 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
4492 T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4493 S: Maintained
4494 F: Documentation/fb/
4495 F: drivers/video/
4496 F: include/video/
4497 F: include/linux/fb.h
4498 F: include/uapi/video/
4499 F: include/uapi/linux/fb.h
4500
4501 FREESCALE DIU FRAMEBUFFER DRIVER
4502 M: Timur Tabi <timur@tabi.org>
4503 L: linux-fbdev@vger.kernel.org
4504 S: Maintained
4505 F: drivers/video/fbdev/fsl-diu-fb.*
4506
4507 FREESCALE DMA DRIVER
4508 M: Li Yang <leoli@freescale.com>
4509 M: Zhang Wei <zw@zh-kernel.org>
4510 L: linuxppc-dev@lists.ozlabs.org
4511 S: Maintained
4512 F: drivers/dma/fsldma.*
4513
4514 FREESCALE I2C CPM DRIVER
4515 M: Jochen Friedrich <jochen@scram.de>
4516 L: linuxppc-dev@lists.ozlabs.org
4517 L: linux-i2c@vger.kernel.org
4518 S: Maintained
4519 F: drivers/i2c/busses/i2c-cpm.c
4520
4521 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4522 M: Sascha Hauer <kernel@pengutronix.de>
4523 L: linux-fbdev@vger.kernel.org
4524 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4525 S: Maintained
4526 F: include/linux/platform_data/video-imxfb.h
4527 F: drivers/video/fbdev/imxfb.c
4528
4529 FREESCALE QUAD SPI DRIVER
4530 M: Han Xu <han.xu@freescale.com>
4531 L: linux-mtd@lists.infradead.org
4532 S: Maintained
4533 F: drivers/mtd/spi-nor/fsl-quadspi.c
4534
4535 FREESCALE SOC FS_ENET DRIVER
4536 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
4537 M: Vitaly Bordug <vbordug@ru.mvista.com>
4538 L: linuxppc-dev@lists.ozlabs.org
4539 L: netdev@vger.kernel.org
4540 S: Maintained
4541 F: drivers/net/ethernet/freescale/fs_enet/
4542 F: include/linux/fs_enet_pd.h
4543
4544 FREESCALE QUICC ENGINE LIBRARY
4545 L: linuxppc-dev@lists.ozlabs.org
4546 S: Orphan
4547 F: drivers/soc/fsl/qe/
4548 F: include/soc/fsl/*qe*.h
4549 F: include/soc/fsl/*ucc*.h
4550
4551 FREESCALE USB PERIPHERAL DRIVERS
4552 M: Li Yang <leoli@freescale.com>
4553 L: linux-usb@vger.kernel.org
4554 L: linuxppc-dev@lists.ozlabs.org
4555 S: Maintained
4556 F: drivers/usb/gadget/udc/fsl*
4557
4558 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4559 M: Li Yang <leoli@freescale.com>
4560 L: netdev@vger.kernel.org
4561 L: linuxppc-dev@lists.ozlabs.org
4562 S: Maintained
4563 F: drivers/net/ethernet/freescale/ucc_geth*
4564
4565 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4566 M: Claudiu Manoil <claudiu.manoil@freescale.com>
4567 L: netdev@vger.kernel.org
4568 S: Maintained
4569 F: drivers/net/ethernet/freescale/gianfar*
4570 X: drivers/net/ethernet/freescale/gianfar_ptp.c
4571 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4572
4573 FREESCALE QUICC ENGINE UCC UART DRIVER
4574 M: Timur Tabi <timur@tabi.org>
4575 L: linuxppc-dev@lists.ozlabs.org
4576 S: Maintained
4577 F: drivers/tty/serial/ucc_uart.c
4578
4579 FREESCALE SOC SOUND DRIVERS
4580 M: Timur Tabi <timur@tabi.org>
4581 M: Nicolin Chen <nicoleotsuka@gmail.com>
4582 M: Xiubo Li <Xiubo.Lee@gmail.com>
4583 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4584 L: linuxppc-dev@lists.ozlabs.org
4585 S: Maintained
4586 F: sound/soc/fsl/fsl*
4587 F: sound/soc/fsl/imx*
4588 F: sound/soc/fsl/mpc8610_hpcd.c
4589
4590 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4591 M: "J. German Rivera" <German.Rivera@freescale.com>
4592 L: linux-kernel@vger.kernel.org
4593 S: Maintained
4594 F: drivers/staging/fsl-mc/
4595
4596 FREEVXFS FILESYSTEM
4597 M: Christoph Hellwig <hch@infradead.org>
4598 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
4599 S: Maintained
4600 F: fs/freevxfs/
4601
4602 FREEZER
4603 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4604 M: Pavel Machek <pavel@ucw.cz>
4605 L: linux-pm@vger.kernel.org
4606 S: Supported
4607 F: Documentation/power/freezing-of-tasks.txt
4608 F: include/linux/freezer.h
4609 F: kernel/freezer.c
4610
4611 FRONTSWAP API
4612 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4613 L: linux-kernel@vger.kernel.org
4614 S: Maintained
4615 F: mm/frontswap.c
4616 F: include/linux/frontswap.h
4617
4618 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4619 M: David Howells <dhowells@redhat.com>
4620 L: linux-cachefs@redhat.com (moderated for non-subscribers)
4621 S: Supported
4622 F: Documentation/filesystems/caching/
4623 F: fs/fscache/
4624 F: include/linux/fscache*.h
4625
4626 F2FS FILE SYSTEM
4627 M: Jaegeuk Kim <jaegeuk@kernel.org>
4628 M: Changman Lee <cm224.lee@samsung.com>
4629 R: Chao Yu <chao2.yu@samsung.com>
4630 L: linux-f2fs-devel@lists.sourceforge.net
4631 W: http://en.wikipedia.org/wiki/F2FS
4632 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4633 S: Maintained
4634 F: Documentation/filesystems/f2fs.txt
4635 F: Documentation/ABI/testing/sysfs-fs-f2fs
4636 F: fs/f2fs/
4637 F: include/linux/f2fs_fs.h
4638 F: include/trace/events/f2fs.h
4639
4640 FUJITSU FR-V (FRV) PORT
4641 S: Orphan
4642 F: arch/frv/
4643
4644 FUJITSU LAPTOP EXTRAS
4645 M: Jonathan Woithe <jwoithe@just42.net>
4646 L: platform-driver-x86@vger.kernel.org
4647 S: Maintained
4648 F: drivers/platform/x86/fujitsu-laptop.c
4649
4650 FUJITSU M-5MO LS CAMERA ISP DRIVER
4651 M: Kyungmin Park <kyungmin.park@samsung.com>
4652 M: Heungjun Kim <riverful.kim@samsung.com>
4653 L: linux-media@vger.kernel.org
4654 S: Maintained
4655 F: drivers/media/i2c/m5mols/
4656 F: include/media/i2c/m5mols.h
4657
4658 FUJITSU TABLET EXTRAS
4659 M: Robert Gerlach <khnz@gmx.de>
4660 L: platform-driver-x86@vger.kernel.org
4661 S: Maintained
4662 F: drivers/platform/x86/fujitsu-tablet.c
4663
4664 FUSE: FILESYSTEM IN USERSPACE
4665 M: Miklos Szeredi <miklos@szeredi.hu>
4666 L: fuse-devel@lists.sourceforge.net
4667 W: http://fuse.sourceforge.net/
4668 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4669 S: Maintained
4670 F: fs/fuse/
4671 F: include/uapi/linux/fuse.h
4672 F: Documentation/filesystems/fuse.txt
4673
4674 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4675 M: Rik Faith <faith@cs.unc.edu>
4676 L: linux-scsi@vger.kernel.org
4677 S: Odd Fixes (e.g., new signatures)
4678 F: drivers/scsi/fdomain.*
4679
4680 GCOV BASED KERNEL PROFILING
4681 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4682 S: Maintained
4683 F: kernel/gcov/
4684 F: Documentation/gcov.txt
4685
4686 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4687 M: Achim Leubner <achim_leubner@adaptec.com>
4688 L: linux-scsi@vger.kernel.org
4689 W: http://www.icp-vortex.com/
4690 S: Supported
4691 F: drivers/scsi/gdt*
4692
4693 GDB KERNEL DEBUGGING HELPER SCRIPTS
4694 M: Jan Kiszka <jan.kiszka@siemens.com>
4695 S: Supported
4696 F: scripts/gdb/
4697
4698 GEMTEK FM RADIO RECEIVER DRIVER
4699 M: Hans Verkuil <hverkuil@xs4all.nl>
4700 L: linux-media@vger.kernel.org
4701 T: git git://linuxtv.org/media_tree.git
4702 W: https://linuxtv.org
4703 S: Maintained
4704 F: drivers/media/radio/radio-gemtek*
4705
4706 GENERIC GPIO I2C DRIVER
4707 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
4708 S: Supported
4709 F: drivers/i2c/busses/i2c-gpio.c
4710 F: include/linux/i2c-gpio.h
4711
4712 GENERIC GPIO I2C MULTIPLEXER DRIVER
4713 M: Peter Korsgaard <peter.korsgaard@barco.com>
4714 L: linux-i2c@vger.kernel.org
4715 S: Supported
4716 F: drivers/i2c/muxes/i2c-mux-gpio.c
4717 F: include/linux/i2c-mux-gpio.h
4718 F: Documentation/i2c/muxes/i2c-mux-gpio
4719
4720 GENERIC HDLC (WAN) DRIVERS
4721 M: Krzysztof Halasa <khc@pm.waw.pl>
4722 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
4723 S: Maintained
4724 F: drivers/net/wan/c101.c
4725 F: drivers/net/wan/hd6457*
4726 F: drivers/net/wan/hdlc*
4727 F: drivers/net/wan/n2.c
4728 F: drivers/net/wan/pc300too.c
4729 F: drivers/net/wan/pci200syn.c
4730 F: drivers/net/wan/wanxl*
4731
4732 GENERIC INCLUDE/ASM HEADER FILES
4733 M: Arnd Bergmann <arnd@arndb.de>
4734 L: linux-arch@vger.kernel.org
4735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4736 S: Maintained
4737 F: include/asm-generic/
4738 F: include/uapi/asm-generic/
4739
4740 GENERIC PHY FRAMEWORK
4741 M: Kishon Vijay Abraham I <kishon@ti.com>
4742 L: linux-kernel@vger.kernel.org
4743 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4744 S: Supported
4745 F: drivers/phy/
4746 F: include/linux/phy/
4747
4748 GENERIC PM DOMAINS
4749 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4750 M: Kevin Hilman <khilman@kernel.org>
4751 M: Ulf Hansson <ulf.hansson@linaro.org>
4752 L: linux-pm@vger.kernel.org
4753 S: Supported
4754 F: drivers/base/power/domain*.c
4755 F: include/linux/pm_domain.h
4756
4757 GENERIC UIO DRIVER FOR PCI DEVICES
4758 M: "Michael S. Tsirkin" <mst@redhat.com>
4759 L: kvm@vger.kernel.org
4760 S: Supported
4761 F: drivers/uio/uio_pci_generic.c
4762
4763 GET_MAINTAINER SCRIPT
4764 M: Joe Perches <joe@perches.com>
4765 S: Maintained
4766 F: scripts/get_maintainer.pl
4767
4768 GFS2 FILE SYSTEM
4769 M: Steven Whitehouse <swhiteho@redhat.com>
4770 M: Bob Peterson <rpeterso@redhat.com>
4771 L: cluster-devel@redhat.com
4772 W: http://sources.redhat.com/cluster/
4773 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4774 S: Supported
4775 F: Documentation/filesystems/gfs2*.txt
4776 F: fs/gfs2/
4777 F: include/uapi/linux/gfs2_ondisk.h
4778
4779 GIGASET ISDN DRIVERS
4780 M: Paul Bolle <pebolle@tiscali.nl>
4781 L: gigaset307x-common@lists.sourceforge.net
4782 W: http://gigaset307x.sourceforge.net/
4783 S: Odd Fixes
4784 F: Documentation/isdn/README.gigaset
4785 F: drivers/isdn/gigaset/
4786 F: include/uapi/linux/gigaset_dev.h
4787
4788 GO7007 MPEG CODEC
4789 M: Hans Verkuil <hans.verkuil@cisco.com>
4790 L: linux-media@vger.kernel.org
4791 S: Maintained
4792 F: drivers/media/usb/go7007/
4793
4794 GOODIX TOUCHSCREEN
4795 M: Bastien Nocera <hadess@hadess.net>
4796 L: linux-input@vger.kernel.org
4797 S: Maintained
4798 F: drivers/input/touchscreen/goodix.c
4799
4800 GPIO SUBSYSTEM
4801 M: Linus Walleij <linus.walleij@linaro.org>
4802 M: Alexandre Courbot <gnurou@gmail.com>
4803 L: linux-gpio@vger.kernel.org
4804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4805 S: Maintained
4806 F: Documentation/gpio/
4807 F: drivers/gpio/
4808 F: include/linux/gpio/
4809 F: include/linux/gpio.h
4810 F: include/asm-generic/gpio.h
4811
4812 GRE DEMULTIPLEXER DRIVER
4813 M: Dmitry Kozlov <xeb@mail.ru>
4814 L: netdev@vger.kernel.org
4815 S: Maintained
4816 F: net/ipv4/gre_demux.c
4817 F: net/ipv4/gre_offload.c
4818 F: include/net/gre.h
4819
4820 GRETH 10/100/1G Ethernet MAC device driver
4821 M: Kristoffer Glembo <kristoffer@gaisler.com>
4822 L: netdev@vger.kernel.org
4823 S: Maintained
4824 F: drivers/net/ethernet/aeroflex/
4825
4826 GSPCA FINEPIX SUBDRIVER
4827 M: Frank Zago <frank@zago.net>
4828 L: linux-media@vger.kernel.org
4829 T: git git://linuxtv.org/media_tree.git
4830 S: Maintained
4831 F: drivers/media/usb/gspca/finepix.c
4832
4833 GSPCA GL860 SUBDRIVER
4834 M: Olivier Lorin <o.lorin@laposte.net>
4835 L: linux-media@vger.kernel.org
4836 T: git git://linuxtv.org/media_tree.git
4837 S: Maintained
4838 F: drivers/media/usb/gspca/gl860/
4839
4840 GSPCA M5602 SUBDRIVER
4841 M: Erik Andren <erik.andren@gmail.com>
4842 L: linux-media@vger.kernel.org
4843 T: git git://linuxtv.org/media_tree.git
4844 S: Maintained
4845 F: drivers/media/usb/gspca/m5602/
4846
4847 GSPCA PAC207 SONIXB SUBDRIVER
4848 M: Hans de Goede <hdegoede@redhat.com>
4849 L: linux-media@vger.kernel.org
4850 T: git git://linuxtv.org/media_tree.git
4851 S: Maintained
4852 F: drivers/media/usb/gspca/pac207.c
4853
4854 GSPCA SN9C20X SUBDRIVER
4855 M: Brian Johnson <brijohn@gmail.com>
4856 L: linux-media@vger.kernel.org
4857 T: git git://linuxtv.org/media_tree.git
4858 S: Maintained
4859 F: drivers/media/usb/gspca/sn9c20x.c
4860
4861 GSPCA T613 SUBDRIVER
4862 M: Leandro Costantino <lcostantino@gmail.com>
4863 L: linux-media@vger.kernel.org
4864 T: git git://linuxtv.org/media_tree.git
4865 S: Maintained
4866 F: drivers/media/usb/gspca/t613.c
4867
4868 GSPCA USB WEBCAM DRIVER
4869 M: Hans de Goede <hdegoede@redhat.com>
4870 L: linux-media@vger.kernel.org
4871 T: git git://linuxtv.org/media_tree.git
4872 S: Maintained
4873 F: drivers/media/usb/gspca/
4874
4875 GUID PARTITION TABLE (GPT)
4876 M: Davidlohr Bueso <dave@stgolabs.net>
4877 L: linux-efi@vger.kernel.org
4878 S: Maintained
4879 F: block/partitions/efi.*
4880
4881 STK1160 USB VIDEO CAPTURE DRIVER
4882 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4883 L: linux-media@vger.kernel.org
4884 T: git git://linuxtv.org/media_tree.git
4885 S: Maintained
4886 F: drivers/media/usb/stk1160/
4887
4888 H8/300 ARCHITECTURE
4889 M: Yoshinori Sato <ysato@users.sourceforge.jp>
4890 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4891 W: http://uclinux-h8.sourceforge.jp
4892 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4893 S: Maintained
4894 F: arch/h8300/
4895 F: drivers/clocksource/h8300_*.c
4896 F: drivers/clk/h8300/
4897 F: drivers/irqchip/irq-renesas-h8*.c
4898
4899 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4900 M: Frank Seidel <frank@f-seidel.de>
4901 L: platform-driver-x86@vger.kernel.org
4902 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4903 S: Maintained
4904 F: drivers/platform/x86/hdaps.c
4905
4906 HDPVR USB VIDEO ENCODER DRIVER
4907 M: Hans Verkuil <hverkuil@xs4all.nl>
4908 L: linux-media@vger.kernel.org
4909 T: git git://linuxtv.org/media_tree.git
4910 W: https://linuxtv.org
4911 S: Odd Fixes
4912 F: drivers/media/usb/hdpvr/
4913
4914 HWPOISON MEMORY FAILURE HANDLING
4915 M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4916 L: linux-mm@kvack.org
4917 S: Maintained
4918 F: mm/memory-failure.c
4919 F: mm/hwpoison-inject.c
4920
4921 HYPERVISOR VIRTUAL CONSOLE DRIVER
4922 L: linuxppc-dev@lists.ozlabs.org
4923 S: Odd Fixes
4924 F: drivers/tty/hvc/
4925
4926 HACKRF MEDIA DRIVER
4927 M: Antti Palosaari <crope@iki.fi>
4928 L: linux-media@vger.kernel.org
4929 W: https://linuxtv.org
4930 W: http://palosaari.fi/linux/
4931 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4932 T: git git://linuxtv.org/anttip/media_tree.git
4933 S: Maintained
4934 F: drivers/media/usb/hackrf/
4935
4936 HARDWARE MONITORING
4937 M: Jean Delvare <jdelvare@suse.com>
4938 M: Guenter Roeck <linux@roeck-us.net>
4939 L: lm-sensors@lm-sensors.org
4940 W: http://www.lm-sensors.org/
4941 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4943 S: Maintained
4944 F: Documentation/hwmon/
4945 F: drivers/hwmon/
4946 F: include/linux/hwmon*.h
4947
4948 HARDWARE RANDOM NUMBER GENERATOR CORE
4949 M: Matt Mackall <mpm@selenic.com>
4950 M: Herbert Xu <herbert@gondor.apana.org.au>
4951 L: linux-crypto@vger.kernel.org
4952 S: Odd fixes
4953 F: Documentation/hw_random.txt
4954 F: drivers/char/hw_random/
4955 F: include/linux/hw_random.h
4956
4957 HARDWARE SPINLOCK CORE
4958 M: Ohad Ben-Cohen <ohad@wizery.com>
4959 S: Maintained
4960 F: Documentation/hwspinlock.txt
4961 F: drivers/hwspinlock/hwspinlock_*
4962 F: include/linux/hwspinlock.h
4963
4964 HARMONY SOUND DRIVER
4965 L: linux-parisc@vger.kernel.org
4966 S: Maintained
4967 F: sound/parisc/harmony.*
4968
4969 HD29L2 MEDIA DRIVER
4970 M: Antti Palosaari <crope@iki.fi>
4971 L: linux-media@vger.kernel.org
4972 W: https://linuxtv.org
4973 W: http://palosaari.fi/linux/
4974 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4975 T: git git://linuxtv.org/anttip/media_tree.git
4976 S: Maintained
4977 F: drivers/media/dvb-frontends/hd29l2*
4978
4979 HEWLETT-PACKARD SMART2 RAID DRIVER
4980 L: iss_storagedev@hp.com
4981 S: Orphan
4982 F: Documentation/blockdev/cpqarray.txt
4983 F: drivers/block/cpqarray.*
4984
4985 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4986 M: Don Brace <don.brace@pmcs.com>
4987 L: iss_storagedev@hp.com
4988 L: storagedev@pmcs.com
4989 L: linux-scsi@vger.kernel.org
4990 S: Supported
4991 F: Documentation/scsi/hpsa.txt
4992 F: drivers/scsi/hpsa*.[ch]
4993 F: include/linux/cciss*.h
4994 F: include/uapi/linux/cciss*.h
4995
4996 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4997 M: Don Brace <don.brace@pmcs.com>
4998 L: iss_storagedev@hp.com
4999 L: storagedev@pmcs.com
5000 L: linux-scsi@vger.kernel.org
5001 S: Supported
5002 F: Documentation/blockdev/cciss.txt
5003 F: drivers/block/cciss*
5004 F: include/linux/cciss_ioctl.h
5005 F: include/uapi/linux/cciss_ioctl.h
5006
5007 HFS FILESYSTEM
5008 L: linux-fsdevel@vger.kernel.org
5009 S: Orphan
5010 F: Documentation/filesystems/hfs.txt
5011 F: fs/hfs/
5012
5013 HFSPLUS FILESYSTEM
5014 L: linux-fsdevel@vger.kernel.org
5015 S: Orphan
5016 F: Documentation/filesystems/hfsplus.txt
5017 F: fs/hfsplus/
5018
5019 HGA FRAMEBUFFER DRIVER
5020 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5021 L: linux-nvidia@lists.surfsouth.com
5022 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5023 S: Maintained
5024 F: drivers/video/fbdev/hgafb.c
5025
5026 HIBERNATION (aka Software Suspend, aka swsusp)
5027 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5028 M: Pavel Machek <pavel@ucw.cz>
5029 L: linux-pm@vger.kernel.org
5030 S: Supported
5031 F: arch/x86/power/
5032 F: drivers/base/power/
5033 F: kernel/power/
5034 F: include/linux/suspend.h
5035 F: include/linux/freezer.h
5036 F: include/linux/pm.h
5037 F: arch/*/include/asm/suspend*.h
5038
5039 HID CORE LAYER
5040 M: Jiri Kosina <jikos@kernel.org>
5041 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
5042 L: linux-input@vger.kernel.org
5043 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5044 S: Maintained
5045 F: drivers/hid/
5046 F: include/linux/hid*
5047 F: include/uapi/linux/hid*
5048
5049 HID SENSOR HUB DRIVERS
5050 M: Jiri Kosina <jikos@kernel.org>
5051 M: Jonathan Cameron <jic23@kernel.org>
5052 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5053 L: linux-input@vger.kernel.org
5054 L: linux-iio@vger.kernel.org
5055 S: Maintained
5056 F: Documentation/hid/hid-sensor*
5057 F: drivers/hid/hid-sensor-*
5058 F: drivers/iio/*/hid-*
5059 F: include/linux/hid-sensor-*
5060
5061 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5062 M: Thomas Gleixner <tglx@linutronix.de>
5063 L: linux-kernel@vger.kernel.org
5064 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5065 S: Maintained
5066 F: Documentation/timers/
5067 F: kernel/time/hrtimer.c
5068 F: kernel/time/clockevents.c
5069 F: kernel/time/tick*.*
5070 F: kernel/time/timer_*.c
5071 F: include/linux/clockchips.h
5072 F: include/linux/hrtimer.h
5073
5074 HIGH-SPEED SCC DRIVER FOR AX.25
5075 L: linux-hams@vger.kernel.org
5076 S: Orphan
5077 F: drivers/net/hamradio/dmascc.c
5078 F: drivers/net/hamradio/scc.c
5079
5080 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5081 M: HighPoint Linux Team <linux@highpoint-tech.com>
5082 W: http://www.highpoint-tech.com
5083 S: Supported
5084 F: Documentation/scsi/hptiop.txt
5085 F: drivers/scsi/hptiop.c
5086
5087 HIPPI
5088 M: Jes Sorensen <jes@trained-monkey.org>
5089 L: linux-hippi@sunsite.dk
5090 S: Maintained
5091 F: include/linux/hippidevice.h
5092 F: include/uapi/linux/if_hippi.h
5093 F: net/802/hippi.c
5094 F: drivers/net/hippi/
5095
5096 HISILICON SAS Controller
5097 M: John Garry <john.garry@huawei.com>
5098 W: http://www.hisilicon.com
5099 S: Supported
5100 F: drivers/scsi/hisi_sas/
5101 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5102
5103 HOST AP DRIVER
5104 M: Jouni Malinen <j@w1.fi>
5105 L: hostap@shmoo.com (subscribers-only)
5106 L: linux-wireless@vger.kernel.org
5107 W: http://hostap.epitest.fi/
5108 S: Maintained
5109 F: drivers/net/wireless/intersil/hostap/
5110
5111 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5112 L: platform-driver-x86@vger.kernel.org
5113 S: Orphan
5114 F: drivers/platform/x86/tc1100-wmi.c
5115
5116 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5117 M: Jaroslav Kysela <perex@perex.cz>
5118 S: Maintained
5119 F: drivers/net/ethernet/hp/hp100.*
5120
5121 HPET: High Precision Event Timers driver
5122 M: Clemens Ladisch <clemens@ladisch.de>
5123 S: Maintained
5124 F: Documentation/timers/hpet.txt
5125 F: drivers/char/hpet.c
5126 F: include/linux/hpet.h
5127 F: include/uapi/linux/hpet.h
5128
5129 HPET: x86
5130 S: Orphan
5131 F: arch/x86/kernel/hpet.c
5132 F: arch/x86/include/asm/hpet.h
5133
5134 HPFS FILESYSTEM
5135 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5136 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5137 S: Maintained
5138 F: fs/hpfs/
5139
5140 HSI SUBSYSTEM
5141 M: Sebastian Reichel <sre@kernel.org>
5142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5143 S: Maintained
5144 F: Documentation/ABI/testing/sysfs-bus-hsi
5145 F: Documentation/hsi.txt
5146 F: drivers/hsi/
5147 F: include/linux/hsi/
5148 F: include/uapi/linux/hsi/
5149
5150 HSO 3G MODEM DRIVER
5151 M: Jan Dumon <j.dumon@option.com>
5152 W: http://www.pharscape.org
5153 S: Maintained
5154 F: drivers/net/usb/hso.c
5155
5156 HSR NETWORK PROTOCOL
5157 M: Arvid Brodin <arvid.brodin@alten.se>
5158 L: netdev@vger.kernel.org
5159 S: Maintained
5160 F: net/hsr/
5161
5162 HTCPEN TOUCHSCREEN DRIVER
5163 M: Pau Oliva Fora <pof@eslack.org>
5164 L: linux-input@vger.kernel.org
5165 S: Maintained
5166 F: drivers/input/touchscreen/htcpen.c
5167
5168 HUGETLB FILESYSTEM
5169 M: Nadia Yvette Chambers <nyc@holomorphy.com>
5170 S: Maintained
5171 F: fs/hugetlbfs/
5172
5173 Hyper-V CORE AND DRIVERS
5174 M: "K. Y. Srinivasan" <kys@microsoft.com>
5175 M: Haiyang Zhang <haiyangz@microsoft.com>
5176 L: devel@linuxdriverproject.org
5177 S: Maintained
5178 F: arch/x86/include/asm/mshyperv.h
5179 F: arch/x86/include/uapi/asm/hyperv.h
5180 F: arch/x86/kernel/cpu/mshyperv.c
5181 F: drivers/hid/hid-hyperv.c
5182 F: drivers/hv/
5183 F: drivers/input/serio/hyperv-keyboard.c
5184 F: drivers/net/hyperv/
5185 F: drivers/scsi/storvsc_drv.c
5186 F: drivers/video/fbdev/hyperv_fb.c
5187 F: include/linux/hyperv.h
5188 F: tools/hv/
5189 F: Documentation/ABI/stable/sysfs-bus-vmbus
5190
5191 I2C OVER PARALLEL PORT
5192 M: Jean Delvare <jdelvare@suse.com>
5193 L: linux-i2c@vger.kernel.org
5194 S: Maintained
5195 F: Documentation/i2c/busses/i2c-parport
5196 F: Documentation/i2c/busses/i2c-parport-light
5197 F: drivers/i2c/busses/i2c-parport.c
5198 F: drivers/i2c/busses/i2c-parport-light.c
5199
5200 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5201 M: Jean Delvare <jdelvare@suse.com>
5202 L: linux-i2c@vger.kernel.org
5203 S: Maintained
5204 F: Documentation/i2c/busses/i2c-ali1535
5205 F: Documentation/i2c/busses/i2c-ali1563
5206 F: Documentation/i2c/busses/i2c-ali15x3
5207 F: Documentation/i2c/busses/i2c-amd756
5208 F: Documentation/i2c/busses/i2c-amd8111
5209 F: Documentation/i2c/busses/i2c-i801
5210 F: Documentation/i2c/busses/i2c-nforce2
5211 F: Documentation/i2c/busses/i2c-piix4
5212 F: Documentation/i2c/busses/i2c-sis5595
5213 F: Documentation/i2c/busses/i2c-sis630
5214 F: Documentation/i2c/busses/i2c-sis96x
5215 F: Documentation/i2c/busses/i2c-via
5216 F: Documentation/i2c/busses/i2c-viapro
5217 F: drivers/i2c/busses/i2c-ali1535.c
5218 F: drivers/i2c/busses/i2c-ali1563.c
5219 F: drivers/i2c/busses/i2c-ali15x3.c
5220 F: drivers/i2c/busses/i2c-amd756.c
5221 F: drivers/i2c/busses/i2c-amd756-s4882.c
5222 F: drivers/i2c/busses/i2c-amd8111.c
5223 F: drivers/i2c/busses/i2c-i801.c
5224 F: drivers/i2c/busses/i2c-isch.c
5225 F: drivers/i2c/busses/i2c-nforce2.c
5226 F: drivers/i2c/busses/i2c-nforce2-s4985.c
5227 F: drivers/i2c/busses/i2c-piix4.c
5228 F: drivers/i2c/busses/i2c-sis5595.c
5229 F: drivers/i2c/busses/i2c-sis630.c
5230 F: drivers/i2c/busses/i2c-sis96x.c
5231 F: drivers/i2c/busses/i2c-via.c
5232 F: drivers/i2c/busses/i2c-viapro.c
5233
5234 I2C/SMBUS ISMT DRIVER
5235 M: Seth Heasley <seth.heasley@intel.com>
5236 M: Neil Horman <nhorman@tuxdriver.com>
5237 L: linux-i2c@vger.kernel.org
5238 F: drivers/i2c/busses/i2c-ismt.c
5239 F: Documentation/i2c/busses/i2c-ismt
5240
5241 I2C/SMBUS STUB DRIVER
5242 M: Jean Delvare <jdelvare@suse.com>
5243 L: linux-i2c@vger.kernel.org
5244 S: Maintained
5245 F: drivers/i2c/i2c-stub.c
5246
5247 I2C SUBSYSTEM
5248 M: Wolfram Sang <wsa@the-dreams.de>
5249 L: linux-i2c@vger.kernel.org
5250 W: https://i2c.wiki.kernel.org/
5251 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
5252 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5253 S: Maintained
5254 F: Documentation/devicetree/bindings/i2c/
5255 F: Documentation/i2c/
5256 F: drivers/i2c/
5257 F: drivers/i2c/*/
5258 F: include/linux/i2c.h
5259 F: include/linux/i2c-*.h
5260 F: include/uapi/linux/i2c.h
5261 F: include/uapi/linux/i2c-*.h
5262
5263 I2C ACPI SUPPORT
5264 M: Mika Westerberg <mika.westerberg@linux.intel.com>
5265 L: linux-i2c@vger.kernel.org
5266 L: linux-acpi@vger.kernel.org
5267 S: Maintained
5268
5269 I2C-TAOS-EVM DRIVER
5270 M: Jean Delvare <jdelvare@suse.com>
5271 L: linux-i2c@vger.kernel.org
5272 S: Maintained
5273 F: Documentation/i2c/busses/i2c-taos-evm
5274 F: drivers/i2c/busses/i2c-taos-evm.c
5275
5276 I2C-TINY-USB DRIVER
5277 M: Till Harbaum <till@harbaum.org>
5278 L: linux-i2c@vger.kernel.org
5279 W: http://www.harbaum.org/till/i2c_tiny_usb
5280 S: Maintained
5281 F: drivers/i2c/busses/i2c-tiny-usb.c
5282
5283 i386 BOOT CODE
5284 M: "H. Peter Anvin" <hpa@zytor.com>
5285 S: Maintained
5286 F: arch/x86/boot/
5287
5288 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5289 M: "H. Peter Anvin" <hpa@zytor.com>
5290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5291 S: Maintained
5292
5293 IA64 (Itanium) PLATFORM
5294 M: Tony Luck <tony.luck@intel.com>
5295 M: Fenghua Yu <fenghua.yu@intel.com>
5296 L: linux-ia64@vger.kernel.org
5297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5298 S: Maintained
5299 F: arch/ia64/
5300
5301 IBM Power VMX Cryptographic instructions
5302 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5303 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5304 L: linux-crypto@vger.kernel.org
5305 S: Supported
5306 F: drivers/crypto/vmx/Makefile
5307 F: drivers/crypto/vmx/Kconfig
5308 F: drivers/crypto/vmx/vmx.c
5309 F: drivers/crypto/vmx/aes*
5310 F: drivers/crypto/vmx/ghash*
5311 F: drivers/crypto/vmx/ppc-xlate.pl
5312
5313 IBM Power in-Nest Crypto Acceleration
5314 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5315 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5316 L: linux-crypto@vger.kernel.org
5317 S: Supported
5318 F: drivers/crypto/nx/Makefile
5319 F: drivers/crypto/nx/Kconfig
5320 F: drivers/crypto/nx/nx-aes*
5321 F: drivers/crypto/nx/nx-sha*
5322 F: drivers/crypto/nx/nx.*
5323 F: drivers/crypto/nx/nx_csbcpb.h
5324 F: drivers/crypto/nx/nx_debugfs.h
5325
5326 IBM Power 842 compression accelerator
5327 M: Dan Streetman <ddstreet@ieee.org>
5328 S: Supported
5329 F: drivers/crypto/nx/Makefile
5330 F: drivers/crypto/nx/Kconfig
5331 F: drivers/crypto/nx/nx-842*
5332 F: include/linux/sw842.h
5333 F: crypto/842.c
5334 F: lib/842/
5335
5336 IBM Power Linux RAID adapter
5337 M: Brian King <brking@us.ibm.com>
5338 S: Supported
5339 F: drivers/scsi/ipr.*
5340
5341 IBM Power Virtual Ethernet Device Driver
5342 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5343 L: netdev@vger.kernel.org
5344 S: Supported
5345 F: drivers/net/ethernet/ibm/ibmveth.*
5346
5347 IBM Power SRIOV Virtual NIC Device Driver
5348 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5349 M: John Allen <jallen@linux.vnet.ibm.com>
5350 L: netdev@vger.kernel.org
5351 S: Supported
5352 F: drivers/net/ethernet/ibm/ibmvnic.*
5353
5354 IBM Power Virtual SCSI Device Drivers
5355 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5356 L: linux-scsi@vger.kernel.org
5357 S: Supported
5358 F: drivers/scsi/ibmvscsi/ibmvscsi*
5359 F: drivers/scsi/ibmvscsi/viosrp.h
5360
5361 IBM Power Virtual FC Device Drivers
5362 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5363 L: linux-scsi@vger.kernel.org
5364 S: Supported
5365 F: drivers/scsi/ibmvscsi/ibmvfc*
5366
5367 IBM ServeRAID RAID DRIVER
5368 S: Orphan
5369 F: drivers/scsi/ips.*
5370
5371 ICH LPC AND GPIO DRIVER
5372 M: Peter Tyser <ptyser@xes-inc.com>
5373 S: Maintained
5374 F: drivers/mfd/lpc_ich.c
5375 F: drivers/gpio/gpio-ich.c
5376
5377 IDE SUBSYSTEM
5378 M: "David S. Miller" <davem@davemloft.net>
5379 L: linux-ide@vger.kernel.org
5380 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
5381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5382 S: Maintained
5383 F: Documentation/ide/
5384 F: drivers/ide/
5385 F: include/linux/ide.h
5386
5387 IDEAPAD LAPTOP EXTRAS DRIVER
5388 M: Ike Panhc <ike.pan@canonical.com>
5389 L: platform-driver-x86@vger.kernel.org
5390 W: http://launchpad.net/ideapad-laptop
5391 S: Maintained
5392 F: drivers/platform/x86/ideapad-laptop.c
5393
5394 IDEAPAD LAPTOP SLIDEBAR DRIVER
5395 M: Andrey Moiseev <o2g.org.ru@gmail.com>
5396 L: linux-input@vger.kernel.org
5397 W: https://github.com/o2genum/ideapad-slidebar
5398 S: Maintained
5399 F: drivers/input/misc/ideapad_slidebar.c
5400
5401 IDE/ATAPI DRIVERS
5402 M: Borislav Petkov <bp@alien8.de>
5403 L: linux-ide@vger.kernel.org
5404 S: Maintained
5405 F: Documentation/cdrom/ide-cd
5406 F: drivers/ide/ide-cd*
5407
5408 IDLE-I7300
5409 M: Andy Henroid <andrew.d.henroid@intel.com>
5410 L: linux-pm@vger.kernel.org
5411 S: Supported
5412 F: drivers/idle/i7300_idle.c
5413
5414 IEEE 802.15.4 SUBSYSTEM
5415 M: Alexander Aring <alex.aring@gmail.com>
5416 L: linux-wpan@vger.kernel.org
5417 W: https://github.com/linux-wpan
5418 T: git git://github.com/linux-wpan/linux-wpan-next.git
5419 S: Maintained
5420 F: net/ieee802154/
5421 F: net/mac802154/
5422 F: drivers/net/ieee802154/
5423 F: include/linux/nl802154.h
5424 F: include/linux/ieee802154.h
5425 F: include/net/nl802154.h
5426 F: include/net/mac802154.h
5427 F: include/net/af_ieee802154.h
5428 F: include/net/cfg802154.h
5429 F: include/net/ieee802154_netdev.h
5430 F: Documentation/networking/ieee802154.txt
5431
5432 IGORPLUG-USB IR RECEIVER
5433 M: Sean Young <sean@mess.org>
5434 L: linux-media@vger.kernel.org
5435 S: Maintained
5436 F: drivers/media/rc/igorplugusb.c
5437
5438 IGUANAWORKS USB IR TRANSCEIVER
5439 M: Sean Young <sean@mess.org>
5440 L: linux-media@vger.kernel.org
5441 S: Maintained
5442 F: drivers/media/rc/iguanair.c
5443
5444 IIO SUBSYSTEM AND DRIVERS
5445 M: Jonathan Cameron <jic23@kernel.org>
5446 R: Hartmut Knaack <knaack.h@gmx.de>
5447 R: Lars-Peter Clausen <lars@metafoo.de>
5448 R: Peter Meerwald <pmeerw@pmeerw.net>
5449 L: linux-iio@vger.kernel.org
5450 S: Maintained
5451 F: drivers/iio/
5452 F: drivers/staging/iio/
5453 F: include/linux/iio/
5454 F: tools/iio/
5455
5456 IKANOS/ADI EAGLE ADSL USB DRIVER
5457 M: Matthieu Castet <castet.matthieu@free.fr>
5458 M: Stanislaw Gruszka <stf_xl@wp.pl>
5459 S: Maintained
5460 F: drivers/usb/atm/ueagle-atm.c
5461
5462 INA209 HARDWARE MONITOR DRIVER
5463 M: Guenter Roeck <linux@roeck-us.net>
5464 L: lm-sensors@lm-sensors.org
5465 S: Maintained
5466 F: Documentation/hwmon/ina209
5467 F: Documentation/devicetree/bindings/i2c/ina209.txt
5468 F: drivers/hwmon/ina209.c
5469
5470 INA2XX HARDWARE MONITOR DRIVER
5471 M: Guenter Roeck <linux@roeck-us.net>
5472 L: lm-sensors@lm-sensors.org
5473 S: Maintained
5474 F: Documentation/hwmon/ina2xx
5475 F: drivers/hwmon/ina2xx.c
5476 F: include/linux/platform_data/ina2xx.h
5477
5478 INDUSTRY PACK SUBSYSTEM (IPACK)
5479 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5480 M: Jens Taprogge <jens.taprogge@taprogge.org>
5481 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5482 L: industrypack-devel@lists.sourceforge.net
5483 W: http://industrypack.sourceforge.net
5484 S: Maintained
5485 F: drivers/ipack/
5486
5487 INGENIC JZ4780 DMA Driver
5488 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5489 S: Maintained
5490 F: drivers/dma/dma-jz4780.c
5491
5492 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5493 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
5494 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5495 L: linux-ima-devel@lists.sourceforge.net
5496 L: linux-ima-user@lists.sourceforge.net
5497 L: linux-security-module@vger.kernel.org
5498 S: Supported
5499 F: security/integrity/ima/
5500
5501 IMGTEC IR DECODER DRIVER
5502 M: James Hogan <james.hogan@imgtec.com>
5503 S: Maintained
5504 F: drivers/media/rc/img-ir/
5505
5506 IMS TWINTURBO FRAMEBUFFER DRIVER
5507 L: linux-fbdev@vger.kernel.org
5508 S: Orphan
5509 F: drivers/video/fbdev/imsttfb.c
5510
5511 INFINIBAND SUBSYSTEM
5512 M: Doug Ledford <dledford@redhat.com>
5513 M: Sean Hefty <sean.hefty@intel.com>
5514 M: Hal Rosenstock <hal.rosenstock@gmail.com>
5515 L: linux-rdma@vger.kernel.org
5516 W: http://www.openfabrics.org/
5517 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5519 S: Supported
5520 F: Documentation/infiniband/
5521 F: drivers/infiniband/
5522 F: drivers/staging/rdma/
5523 F: include/uapi/linux/if_infiniband.h
5524 F: include/uapi/rdma/
5525 F: include/rdma/
5526
5527 INOTIFY
5528 M: John McCutchan <john@johnmccutchan.com>
5529 M: Robert Love <rlove@rlove.org>
5530 M: Eric Paris <eparis@parisplace.org>
5531 S: Maintained
5532 F: Documentation/filesystems/inotify.txt
5533 F: fs/notify/inotify/
5534 F: include/linux/inotify.h
5535 F: include/uapi/linux/inotify.h
5536
5537 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5538 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
5539 L: linux-input@vger.kernel.org
5540 Q: http://patchwork.kernel.org/project/linux-input/list/
5541 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5542 S: Maintained
5543 F: drivers/input/
5544 F: include/linux/input.h
5545 F: include/uapi/linux/input.h
5546 F: include/linux/input/
5547
5548 INPUT MULTITOUCH (MT) PROTOCOL
5549 M: Henrik Rydberg <rydberg@bitmath.org>
5550 L: linux-input@vger.kernel.org
5551 S: Odd fixes
5552 F: Documentation/input/multi-touch-protocol.txt
5553 F: drivers/input/input-mt.c
5554 K: \b(ABS|SYN)_MT_
5555
5556 INTEL ASoC BDW/HSW DRIVERS
5557 M: Jie Yang <yang.jie@linux.intel.com>
5558 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5559 S: Supported
5560 F: sound/soc/intel/common/sst-dsp*
5561 F: sound/soc/intel/common/sst-firmware.c
5562 F: sound/soc/intel/boards/broadwell.c
5563 F: sound/soc/intel/haswell/
5564
5565 INTEL C600 SERIES SAS CONTROLLER DRIVER
5566 M: Intel SCU Linux support <intel-linux-scu@intel.com>
5567 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5568 L: linux-scsi@vger.kernel.org
5569 T: git git://git.code.sf.net/p/intel-sas/isci
5570 S: Supported
5571 F: drivers/scsi/isci/
5572
5573 INTEL HID EVENT DRIVER
5574 M: Alex Hung <alex.hung@canonical.com>
5575 L: platform-driver-x86@vger.kernel.org
5576 S: Maintained
5577 F: drivers/platform/x86/intel-hid.c
5578
5579 INTEL IDLE DRIVER
5580 M: Len Brown <lenb@kernel.org>
5581 L: linux-pm@vger.kernel.org
5582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5583 S: Supported
5584 F: drivers/idle/intel_idle.c
5585
5586 INTEL PSTATE DRIVER
5587 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5588 M: Len Brown <lenb@kernel.org>
5589 L: linux-pm@vger.kernel.org
5590 S: Supported
5591 F: drivers/cpufreq/intel_pstate.c
5592
5593 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5594 M: Maik Broemme <mbroemme@plusserver.de>
5595 L: linux-fbdev@vger.kernel.org
5596 S: Maintained
5597 F: Documentation/fb/intelfb.txt
5598 F: drivers/video/fbdev/intelfb/
5599
5600 INTEL 810/815 FRAMEBUFFER DRIVER
5601 M: Antonino Daplas <adaplas@gmail.com>
5602 L: linux-fbdev@vger.kernel.org
5603 S: Maintained
5604 F: drivers/video/fbdev/i810/
5605
5606 INTEL MENLOW THERMAL DRIVER
5607 M: Sujith Thomas <sujith.thomas@intel.com>
5608 L: platform-driver-x86@vger.kernel.org
5609 W: https://01.org/linux-acpi
5610 S: Supported
5611 F: drivers/platform/x86/intel_menlow.c
5612
5613 INTEL I/OAT DMA DRIVER
5614 M: Dave Jiang <dave.jiang@intel.com>
5615 R: Dan Williams <dan.j.williams@intel.com>
5616 L: dmaengine@vger.kernel.org
5617 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
5618 S: Supported
5619 F: drivers/dma/ioat*
5620
5621 INTEL IOMMU (VT-d)
5622 M: David Woodhouse <dwmw2@infradead.org>
5623 L: iommu@lists.linux-foundation.org
5624 T: git git://git.infradead.org/iommu-2.6.git
5625 S: Supported
5626 F: drivers/iommu/intel-iommu.c
5627 F: include/linux/intel-iommu.h
5628
5629 INTEL IOP-ADMA DMA DRIVER
5630 R: Dan Williams <dan.j.williams@intel.com>
5631 S: Odd fixes
5632 F: drivers/dma/iop-adma.c
5633
5634 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5635 M: Krzysztof Halasa <khalasa@piap.pl>
5636 S: Maintained
5637 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
5638 F: arch/arm/mach-ixp4xx/include/mach/npe.h
5639 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5640 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
5641 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
5642 F: drivers/net/wan/ixp4xx_hss.c
5643
5644 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5645 M: Deepak Saxena <dsaxena@plexity.net>
5646 S: Maintained
5647 F: drivers/char/hw_random/ixp4xx-rng.c
5648
5649 INTEL ETHERNET DRIVERS
5650 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5651 R: Jesse Brandeburg <jesse.brandeburg@intel.com>
5652 R: Shannon Nelson <shannon.nelson@intel.com>
5653 R: Carolyn Wyborny <carolyn.wyborny@intel.com>
5654 R: Don Skidmore <donald.c.skidmore@intel.com>
5655 R: Bruce Allan <bruce.w.allan@intel.com>
5656 R: John Ronciak <john.ronciak@intel.com>
5657 R: Mitch Williams <mitch.a.williams@intel.com>
5658 L: intel-wired-lan@lists.osuosl.org
5659 W: http://www.intel.com/support/feedback.htm
5660 W: http://e1000.sourceforge.net/
5661 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5662 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5663 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5664 S: Supported
5665 F: Documentation/networking/e100.txt
5666 F: Documentation/networking/e1000.txt
5667 F: Documentation/networking/e1000e.txt
5668 F: Documentation/networking/igb.txt
5669 F: Documentation/networking/igbvf.txt
5670 F: Documentation/networking/ixgb.txt
5671 F: Documentation/networking/ixgbe.txt
5672 F: Documentation/networking/ixgbevf.txt
5673 F: Documentation/networking/i40e.txt
5674 F: Documentation/networking/i40evf.txt
5675 F: drivers/net/ethernet/intel/
5676 F: drivers/net/ethernet/intel/*/
5677
5678 INTEL-MID GPIO DRIVER
5679 M: David Cohen <david.a.cohen@linux.intel.com>
5680 L: linux-gpio@vger.kernel.org
5681 S: Maintained
5682 F: drivers/gpio/gpio-intel-mid.c
5683
5684 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5685 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
5686 L: linux-wireless@vger.kernel.org
5687 S: Maintained
5688 F: Documentation/networking/README.ipw2100
5689 F: Documentation/networking/README.ipw2200
5690 F: drivers/net/wireless/intel/ipw2x00/
5691
5692 INTEL(R) TRACE HUB
5693 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
5694 S: Supported
5695 F: Documentation/trace/intel_th.txt
5696 F: drivers/hwtracing/intel_th/
5697
5698 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5699 M: Ning Sun <ning.sun@intel.com>
5700 L: tboot-devel@lists.sourceforge.net
5701 W: http://tboot.sourceforge.net
5702 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5703 S: Supported
5704 F: Documentation/intel_txt.txt
5705 F: include/linux/tboot.h
5706 F: arch/x86/kernel/tboot.c
5707
5708 INTEL WIRELESS WIMAX CONNECTION 2400
5709 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5710 M: linux-wimax@intel.com
5711 L: wimax@linuxwimax.org (subscribers-only)
5712 S: Supported
5713 W: http://linuxwimax.org
5714 F: Documentation/wimax/README.i2400m
5715 F: drivers/net/wimax/i2400m/
5716 F: include/uapi/linux/wimax/i2400m.h
5717
5718 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5719 M: Stanislaw Gruszka <sgruszka@redhat.com>
5720 L: linux-wireless@vger.kernel.org
5721 S: Supported
5722 F: drivers/net/wireless/intel/iwlegacy/
5723
5724 INTEL WIRELESS WIFI LINK (iwlwifi)
5725 M: Johannes Berg <johannes.berg@intel.com>
5726 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5727 M: Intel Linux Wireless <linuxwifi@intel.com>
5728 L: linux-wireless@vger.kernel.org
5729 W: http://intellinuxwireless.org
5730 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5731 S: Supported
5732 F: drivers/net/wireless/intel/iwlwifi/
5733
5734 INTEL MANAGEMENT ENGINE (mei)
5735 M: Tomas Winkler <tomas.winkler@intel.com>
5736 L: linux-kernel@vger.kernel.org
5737 S: Supported
5738 F: include/uapi/linux/mei.h
5739 F: include/linux/mei_cl_bus.h
5740 F: drivers/misc/mei/*
5741 F: Documentation/misc-devices/mei/*
5742
5743 INTEL MIC DRIVERS (mic)
5744 M: Sudeep Dutt <sudeep.dutt@intel.com>
5745 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
5746 S: Supported
5747 W: https://github.com/sudeepdutt/mic
5748 W: http://software.intel.com/en-us/mic-developer
5749 F: include/linux/mic_bus.h
5750 F: include/linux/scif.h
5751 F: include/uapi/linux/mic_common.h
5752 F: include/uapi/linux/mic_ioctl.h
5753 F include/uapi/linux/scif_ioctl.h
5754 F: drivers/misc/mic/
5755 F: drivers/dma/mic_x100_dma.c
5756 F: drivers/dma/mic_x100_dma.h
5757 F Documentation/mic/
5758
5759 INTEL PMC/P-Unit IPC DRIVER
5760 M: Zha Qipeng<qipeng.zha@intel.com>
5761 L: platform-driver-x86@vger.kernel.org
5762 S: Maintained
5763 F: drivers/platform/x86/intel_pmc_ipc.c
5764 F: drivers/platform/x86/intel_punit_ipc.c
5765 F: arch/x86/include/asm/intel_pmc_ipc.h
5766 F: arch/x86/include/asm/intel_punit_ipc.h
5767
5768 INTEL TELEMETRY DRIVER
5769 M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5770 L: platform-driver-x86@vger.kernel.org
5771 S: Maintained
5772 F: drivers/platform/x86/intel_telemetry_core.c
5773 F: arch/x86/include/asm/intel_telemetry.h
5774 F: drivers/platform/x86/intel_telemetry_pltdrv.c
5775 F: drivers/platform/x86/intel_telemetry_debugfs.c
5776
5777 IOC3 ETHERNET DRIVER
5778 M: Ralf Baechle <ralf@linux-mips.org>
5779 L: linux-mips@linux-mips.org
5780 S: Maintained
5781 F: drivers/net/ethernet/sgi/ioc3-eth.c
5782
5783 IOC3 SERIAL DRIVER
5784 M: Pat Gefre <pfg@sgi.com>
5785 L: linux-serial@vger.kernel.org
5786 S: Maintained
5787 F: drivers/tty/serial/ioc3_serial.c
5788
5789 IOMMU DRIVERS
5790 M: Joerg Roedel <joro@8bytes.org>
5791 L: iommu@lists.linux-foundation.org
5792 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5793 S: Maintained
5794 F: drivers/iommu/
5795
5796 IP MASQUERADING
5797 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5798 S: Maintained
5799 F: net/ipv4/netfilter/ipt_MASQUERADE.c
5800
5801 IPATH DRIVER
5802 M: Mike Marciniszyn <infinipath@intel.com>
5803 L: linux-rdma@vger.kernel.org
5804 S: Maintained
5805 F: drivers/staging/rdma/ipath/
5806
5807 IPMI SUBSYSTEM
5808 M: Corey Minyard <minyard@acm.org>
5809 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5810 W: http://openipmi.sourceforge.net/
5811 S: Supported
5812 F: Documentation/IPMI.txt
5813 F: drivers/char/ipmi/
5814 F: include/linux/ipmi*
5815 F: include/uapi/linux/ipmi*
5816
5817 QCOM AUDIO (ASoC) DRIVERS
5818 M: Patrick Lai <plai@codeaurora.org>
5819 M: Banajit Goswami <bgoswami@codeaurora.org>
5820 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5821 S: Supported
5822 F: sound/soc/qcom/
5823
5824 IPS SCSI RAID DRIVER
5825 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5826 L: linux-scsi@vger.kernel.org
5827 W: http://www.adaptec.com/
5828 S: Maintained
5829 F: drivers/scsi/ips*
5830
5831 IPVS
5832 M: Wensong Zhang <wensong@linux-vs.org>
5833 M: Simon Horman <horms@verge.net.au>
5834 M: Julian Anastasov <ja@ssi.bg>
5835 L: netdev@vger.kernel.org
5836 L: lvs-devel@vger.kernel.org
5837 S: Maintained
5838 F: Documentation/networking/ipvs-sysctl.txt
5839 F: include/net/ip_vs.h
5840 F: include/uapi/linux/ip_vs.h
5841 F: net/netfilter/ipvs/
5842
5843 IPWIRELESS DRIVER
5844 M: Jiri Kosina <jikos@kernel.org>
5845 M: David Sterba <dsterba@suse.com>
5846 S: Odd Fixes
5847 F: drivers/tty/ipwireless/
5848
5849 IPX NETWORK LAYER
5850 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5851 L: netdev@vger.kernel.org
5852 S: Maintained
5853 F: include/net/ipx.h
5854 F: include/uapi/linux/ipx.h
5855 F: net/ipx/
5856
5857 IRDA SUBSYSTEM
5858 M: Samuel Ortiz <samuel@sortiz.org>
5859 L: irda-users@lists.sourceforge.net (subscribers-only)
5860 L: netdev@vger.kernel.org
5861 W: http://irda.sourceforge.net/
5862 S: Maintained
5863 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5864 F: Documentation/networking/irda.txt
5865 F: drivers/net/irda/
5866 F: include/net/irda/
5867 F: net/irda/
5868
5869 IRQ SUBSYSTEM
5870 M: Thomas Gleixner <tglx@linutronix.de>
5871 L: linux-kernel@vger.kernel.org
5872 S: Maintained
5873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5874 F: kernel/irq/
5875
5876 IRQCHIP DRIVERS
5877 M: Thomas Gleixner <tglx@linutronix.de>
5878 M: Jason Cooper <jason@lakedaemon.net>
5879 M: Marc Zyngier <marc.zyngier@arm.com>
5880 L: linux-kernel@vger.kernel.org
5881 S: Maintained
5882 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5883 T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5884 F: Documentation/devicetree/bindings/interrupt-controller/
5885 F: drivers/irqchip/
5886
5887 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5888 M: Jiang Liu <jiang.liu@linux.intel.com>
5889 M: Marc Zyngier <marc.zyngier@arm.com>
5890 S: Maintained
5891 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5892 F: Documentation/IRQ-domain.txt
5893 F: include/linux/irqdomain.h
5894 F: kernel/irq/irqdomain.c
5895 F: kernel/irq/msi.c
5896
5897 ISAPNP
5898 M: Jaroslav Kysela <perex@perex.cz>
5899 S: Maintained
5900 F: Documentation/isapnp.txt
5901 F: drivers/pnp/isapnp/
5902 F: include/linux/isapnp.h
5903
5904 ISA RADIO MODULE
5905 M: Hans Verkuil <hverkuil@xs4all.nl>
5906 L: linux-media@vger.kernel.org
5907 T: git git://linuxtv.org/media_tree.git
5908 W: https://linuxtv.org
5909 S: Maintained
5910 F: drivers/media/radio/radio-isa*
5911
5912 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5913 M: Peter Jones <pjones@redhat.com>
5914 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
5915 S: Maintained
5916 F: drivers/firmware/iscsi_ibft*
5917
5918 ISCSI
5919 M: Mike Christie <michaelc@cs.wisc.edu>
5920 L: open-iscsi@googlegroups.com
5921 W: www.open-iscsi.org
5922 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5923 S: Maintained
5924 F: drivers/scsi/*iscsi*
5925 F: include/scsi/*iscsi*
5926
5927 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5928 M: Or Gerlitz <ogerlitz@mellanox.com>
5929 M: Sagi Grimberg <sagig@mellanox.com>
5930 M: Roi Dayan <roid@mellanox.com>
5931 L: linux-rdma@vger.kernel.org
5932 S: Supported
5933 W: http://www.openfabrics.org
5934 W: www.open-iscsi.org
5935 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5936 F: drivers/infiniband/ulp/iser/
5937
5938 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5939 M: Sagi Grimberg <sagig@mellanox.com>
5940 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5941 L: linux-rdma@vger.kernel.org
5942 L: target-devel@vger.kernel.org
5943 S: Supported
5944 W: http://www.linux-iscsi.org
5945 F: drivers/infiniband/ulp/isert
5946
5947 ISDN SUBSYSTEM
5948 M: Karsten Keil <isdn@linux-pingi.de>
5949 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
5950 L: netdev@vger.kernel.org
5951 W: http://www.isdn4linux.de
5952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5953 S: Maintained
5954 F: Documentation/isdn/
5955 F: drivers/isdn/
5956 F: include/linux/isdn.h
5957 F: include/linux/isdn/
5958 F: include/uapi/linux/isdn.h
5959 F: include/uapi/linux/isdn/
5960
5961 ISDN SUBSYSTEM (Eicon active card driver)
5962 M: Armin Schindler <mac@melware.de>
5963 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
5964 W: http://www.melware.de
5965 S: Maintained
5966 F: drivers/isdn/hardware/eicon/
5967
5968 IT87 HARDWARE MONITORING DRIVER
5969 M: Jean Delvare <jdelvare@suse.com>
5970 L: lm-sensors@lm-sensors.org
5971 S: Maintained
5972 F: Documentation/hwmon/it87
5973 F: drivers/hwmon/it87.c
5974
5975 IT913X MEDIA DRIVER
5976 M: Antti Palosaari <crope@iki.fi>
5977 L: linux-media@vger.kernel.org
5978 W: https://linuxtv.org
5979 W: http://palosaari.fi/linux/
5980 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5981 T: git git://linuxtv.org/anttip/media_tree.git
5982 S: Maintained
5983 F: drivers/media/tuners/it913x*
5984
5985 IVTV VIDEO4LINUX DRIVER
5986 M: Andy Walls <awalls@md.metrocast.net>
5987 L: ivtv-devel@ivtvdriver.org (subscribers-only)
5988 L: linux-media@vger.kernel.org
5989 T: git git://linuxtv.org/media_tree.git
5990 W: http://www.ivtvdriver.org
5991 S: Maintained
5992 F: Documentation/video4linux/*.ivtv
5993 F: drivers/media/pci/ivtv/
5994 F: include/uapi/linux/ivtv*
5995
5996 IX2505V MEDIA DRIVER
5997 M: Malcolm Priestley <tvboxspy@gmail.com>
5998 L: linux-media@vger.kernel.org
5999 W: https://linuxtv.org
6000 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6001 S: Maintained
6002 F: drivers/media/dvb-frontends/ix2505v*
6003
6004 JC42.4 TEMPERATURE SENSOR DRIVER
6005 M: Guenter Roeck <linux@roeck-us.net>
6006 L: lm-sensors@lm-sensors.org
6007 S: Maintained
6008 F: drivers/hwmon/jc42.c
6009 F: Documentation/hwmon/jc42
6010
6011 JFS FILESYSTEM
6012 M: Dave Kleikamp <shaggy@kernel.org>
6013 L: jfs-discussion@lists.sourceforge.net
6014 W: http://jfs.sourceforge.net/
6015 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6016 S: Maintained
6017 F: Documentation/filesystems/jfs.txt
6018 F: fs/jfs/
6019
6020 JME NETWORK DRIVER
6021 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
6022 L: netdev@vger.kernel.org
6023 S: Maintained
6024 F: drivers/net/ethernet/jme.*
6025
6026 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6027 M: David Woodhouse <dwmw2@infradead.org>
6028 L: linux-mtd@lists.infradead.org
6029 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
6030 S: Maintained
6031 F: fs/jffs2/
6032 F: include/uapi/linux/jffs2.h
6033
6034 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6035 M: "Theodore Ts'o" <tytso@mit.edu>
6036 M: Jan Kara <jack@suse.com>
6037 L: linux-ext4@vger.kernel.org
6038 S: Maintained
6039 F: fs/jbd2/
6040 F: include/linux/jbd2.h
6041
6042 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6043 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6044 L: linux-media@vger.kernel.org
6045 S: Maintained
6046 F: drivers/media/platform/rcar_jpu.c
6047
6048 JSM Neo PCI based serial card
6049 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6050 L: linux-serial@vger.kernel.org
6051 S: Maintained
6052 F: drivers/tty/serial/jsm/
6053
6054 K10TEMP HARDWARE MONITORING DRIVER
6055 M: Clemens Ladisch <clemens@ladisch.de>
6056 L: lm-sensors@lm-sensors.org
6057 S: Maintained
6058 F: Documentation/hwmon/k10temp
6059 F: drivers/hwmon/k10temp.c
6060
6061 K8TEMP HARDWARE MONITORING DRIVER
6062 M: Rudolf Marek <r.marek@assembler.cz>
6063 L: lm-sensors@lm-sensors.org
6064 S: Maintained
6065 F: Documentation/hwmon/k8temp
6066 F: drivers/hwmon/k8temp.c
6067
6068 KCONFIG
6069 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
6070 L: linux-kbuild@vger.kernel.org
6071 T: git git://gitorious.org/linux-kconfig/linux-kconfig
6072 S: Maintained
6073 F: Documentation/kbuild/kconfig-language.txt
6074 F: scripts/kconfig/
6075
6076 KDUMP
6077 M: Vivek Goyal <vgoyal@redhat.com>
6078 M: Haren Myneni <hbabu@us.ibm.com>
6079 L: kexec@lists.infradead.org
6080 W: http://lse.sourceforge.net/kdump/
6081 S: Maintained
6082 F: Documentation/kdump/
6083
6084 KEENE FM RADIO TRANSMITTER DRIVER
6085 M: Hans Verkuil <hverkuil@xs4all.nl>
6086 L: linux-media@vger.kernel.org
6087 T: git git://linuxtv.org/media_tree.git
6088 W: https://linuxtv.org
6089 S: Maintained
6090 F: drivers/media/radio/radio-keene*
6091
6092 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6093 M: Ian Kent <raven@themaw.net>
6094 L: autofs@vger.kernel.org
6095 S: Maintained
6096 F: fs/autofs4/
6097
6098 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6099 M: Michal Marek <mmarek@suse.com>
6100 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6102 L: linux-kbuild@vger.kernel.org
6103 S: Maintained
6104 F: Documentation/kbuild/
6105 F: Makefile
6106 F: scripts/Makefile.*
6107 F: scripts/basic/
6108 F: scripts/mk*
6109 F: scripts/package/
6110
6111 KERNEL JANITORS
6112 L: kernel-janitors@vger.kernel.org
6113 W: http://kernelnewbies.org/KernelJanitors
6114 S: Odd Fixes
6115
6116 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6117 M: "J. Bruce Fields" <bfields@fieldses.org>
6118 M: Jeff Layton <jlayton@poochiereds.net>
6119 L: linux-nfs@vger.kernel.org
6120 W: http://nfs.sourceforge.net/
6121 S: Supported
6122 F: fs/nfsd/
6123 F: include/uapi/linux/nfsd/
6124 F: fs/lockd/
6125 F: fs/nfs_common/
6126 F: net/sunrpc/
6127 F: include/linux/lockd/
6128 F: include/linux/sunrpc/
6129 F: include/uapi/linux/sunrpc/
6130
6131 KERNEL SELFTEST FRAMEWORK
6132 M: Shuah Khan <shuahkh@osg.samsung.com>
6133 L: linux-api@vger.kernel.org
6134 T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6135 S: Maintained
6136 F: tools/testing/selftests
6137
6138 KERNEL VIRTUAL MACHINE (KVM)
6139 M: Gleb Natapov <gleb@kernel.org>
6140 M: Paolo Bonzini <pbonzini@redhat.com>
6141 L: kvm@vger.kernel.org
6142 W: http://www.linux-kvm.org
6143 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6144 S: Supported
6145 F: Documentation/*/kvm*.txt
6146 F: Documentation/virtual/kvm/
6147 F: arch/*/kvm/
6148 F: arch/x86/kernel/kvm.c
6149 F: arch/x86/kernel/kvmclock.c
6150 F: arch/*/include/asm/kvm*
6151 F: include/linux/kvm*
6152 F: include/uapi/linux/kvm*
6153 F: virt/kvm/
6154
6155 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6156 M: Joerg Roedel <joro@8bytes.org>
6157 L: kvm@vger.kernel.org
6158 W: http://www.linux-kvm.org/
6159 S: Maintained
6160 F: arch/x86/include/asm/svm.h
6161 F: arch/x86/kvm/svm.c
6162
6163 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6164 M: Alexander Graf <agraf@suse.com>
6165 L: kvm-ppc@vger.kernel.org
6166 W: http://www.linux-kvm.org/
6167 T: git git://github.com/agraf/linux-2.6.git
6168 S: Supported
6169 F: arch/powerpc/include/asm/kvm*
6170 F: arch/powerpc/kvm/
6171
6172 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6173 M: Christian Borntraeger <borntraeger@de.ibm.com>
6174 M: Cornelia Huck <cornelia.huck@de.ibm.com>
6175 L: linux-s390@vger.kernel.org
6176 W: http://www.ibm.com/developerworks/linux/linux390/
6177 S: Supported
6178 F: Documentation/s390/kvm.txt
6179 F: arch/s390/include/asm/kvm*
6180 F: arch/s390/kvm/
6181
6182 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6183 M: Christoffer Dall <christoffer.dall@linaro.org>
6184 M: Marc Zyngier <marc.zyngier@arm.com>
6185 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6186 L: kvmarm@lists.cs.columbia.edu
6187 W: http://systems.cs.columbia.edu/projects/kvm-arm
6188 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6189 S: Supported
6190 F: arch/arm/include/uapi/asm/kvm*
6191 F: arch/arm/include/asm/kvm*
6192 F: arch/arm/kvm/
6193 F: virt/kvm/arm/
6194 F: include/kvm/arm_*
6195
6196 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6197 M: Christoffer Dall <christoffer.dall@linaro.org>
6198 M: Marc Zyngier <marc.zyngier@arm.com>
6199 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6200 L: kvmarm@lists.cs.columbia.edu
6201 S: Maintained
6202 F: arch/arm64/include/uapi/asm/kvm*
6203 F: arch/arm64/include/asm/kvm*
6204 F: arch/arm64/kvm/
6205
6206 KEXEC
6207 M: Eric Biederman <ebiederm@xmission.com>
6208 W: http://kernel.org/pub/linux/utils/kernel/kexec/
6209 L: kexec@lists.infradead.org
6210 S: Maintained
6211 F: include/linux/kexec.h
6212 F: include/uapi/linux/kexec.h
6213 F: kernel/kexec.c
6214
6215 KEYS/KEYRINGS:
6216 M: David Howells <dhowells@redhat.com>
6217 L: keyrings@vger.kernel.org
6218 S: Maintained
6219 F: Documentation/security/keys.txt
6220 F: include/linux/key.h
6221 F: include/linux/key-type.h
6222 F: include/keys/
6223 F: security/keys/
6224
6225 KEYS-TRUSTED
6226 M: David Safford <safford@us.ibm.com>
6227 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6228 L: linux-security-module@vger.kernel.org
6229 L: keyrings@vger.kernel.org
6230 S: Supported
6231 F: Documentation/security/keys-trusted-encrypted.txt
6232 F: include/keys/trusted-type.h
6233 F: security/keys/trusted.c
6234 F: security/keys/trusted.h
6235
6236 KEYS-ENCRYPTED
6237 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6238 M: David Safford <safford@us.ibm.com>
6239 L: linux-security-module@vger.kernel.org
6240 L: keyrings@vger.kernel.org
6241 S: Supported
6242 F: Documentation/security/keys-trusted-encrypted.txt
6243 F: include/keys/encrypted-type.h
6244 F: security/keys/encrypted-keys/
6245
6246 KGDB / KDB /debug_core
6247 M: Jason Wessel <jason.wessel@windriver.com>
6248 W: http://kgdb.wiki.kernel.org/
6249 L: kgdb-bugreport@lists.sourceforge.net
6250 S: Maintained
6251 F: Documentation/DocBook/kgdb.tmpl
6252 F: drivers/misc/kgdbts.c
6253 F: drivers/tty/serial/kgdboc.c
6254 F: include/linux/kdb.h
6255 F: include/linux/kgdb.h
6256 F: kernel/debug/
6257
6258 KMEMCHECK
6259 M: Vegard Nossum <vegardno@ifi.uio.no>
6260 M: Pekka Enberg <penberg@kernel.org>
6261 S: Maintained
6262 F: Documentation/kmemcheck.txt
6263 F: arch/x86/include/asm/kmemcheck.h
6264 F: arch/x86/mm/kmemcheck/
6265 F: include/linux/kmemcheck.h
6266 F: mm/kmemcheck.c
6267
6268 KMEMLEAK
6269 M: Catalin Marinas <catalin.marinas@arm.com>
6270 S: Maintained
6271 F: Documentation/kmemleak.txt
6272 F: include/linux/kmemleak.h
6273 F: mm/kmemleak.c
6274 F: mm/kmemleak-test.c
6275
6276 KPROBES
6277 M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6278 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6279 M: "David S. Miller" <davem@davemloft.net>
6280 M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6281 S: Maintained
6282 F: Documentation/kprobes.txt
6283 F: include/linux/kprobes.h
6284 F: kernel/kprobes.c
6285
6286 KS0108 LCD CONTROLLER DRIVER
6287 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6288 W: http://miguelojeda.es/auxdisplay.htm
6289 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6290 S: Maintained
6291 F: Documentation/auxdisplay/ks0108
6292 F: drivers/auxdisplay/ks0108.c
6293 F: include/linux/ks0108.h
6294
6295 L3MDEV
6296 M: David Ahern <dsa@cumulusnetworks.com>
6297 L: netdev@vger.kernel.org
6298 S: Maintained
6299 F: net/l3mdev
6300 F: include/net/l3mdev.h
6301
6302 LAPB module
6303 L: linux-x25@vger.kernel.org
6304 S: Orphan
6305 F: Documentation/networking/lapb-module.txt
6306 F: include/*/lapb.h
6307 F: net/lapb/
6308
6309 LASI 53c700 driver for PARISC
6310 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6311 L: linux-scsi@vger.kernel.org
6312 S: Maintained
6313 F: Documentation/scsi/53c700.txt
6314 F: drivers/scsi/53c700*
6315
6316 LED SUBSYSTEM
6317 M: Richard Purdie <rpurdie@rpsys.net>
6318 M: Jacek Anaszewski <j.anaszewski@samsung.com>
6319 L: linux-leds@vger.kernel.org
6320 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6321 S: Maintained
6322 F: drivers/leds/
6323 F: include/linux/leds.h
6324
6325 LEGACY EEPROM DRIVER
6326 M: Jean Delvare <jdelvare@suse.com>
6327 S: Maintained
6328 F: Documentation/misc-devices/eeprom
6329 F: drivers/misc/eeprom/eeprom.c
6330
6331 LEGO USB Tower driver
6332 M: Juergen Stuber <starblue@users.sourceforge.net>
6333 L: legousb-devel@lists.sourceforge.net
6334 W: http://legousb.sourceforge.net/
6335 S: Maintained
6336 F: drivers/usb/misc/legousbtower.c
6337
6338 LG2160 MEDIA DRIVER
6339 M: Michael Krufky <mkrufky@linuxtv.org>
6340 L: linux-media@vger.kernel.org
6341 W: https://linuxtv.org
6342 W: http://github.com/mkrufky
6343 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6344 T: git git://linuxtv.org/mkrufky/tuners.git
6345 S: Maintained
6346 F: drivers/media/dvb-frontends/lg2160.*
6347
6348 LGDT3305 MEDIA DRIVER
6349 M: Michael Krufky <mkrufky@linuxtv.org>
6350 L: linux-media@vger.kernel.org
6351 W: https://linuxtv.org
6352 W: http://github.com/mkrufky
6353 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6354 T: git git://linuxtv.org/mkrufky/tuners.git
6355 S: Maintained
6356 F: drivers/media/dvb-frontends/lgdt3305.*
6357
6358 LGUEST
6359 M: Rusty Russell <rusty@rustcorp.com.au>
6360 L: lguest@lists.ozlabs.org
6361 W: http://lguest.ozlabs.org/
6362 S: Odd Fixes
6363 F: arch/x86/include/asm/lguest*.h
6364 F: arch/x86/lguest/
6365 F: drivers/lguest/
6366 F: include/linux/lguest*.h
6367 F: tools/lguest/
6368
6369 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6370 M: Tejun Heo <tj@kernel.org>
6371 L: linux-ide@vger.kernel.org
6372 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6373 S: Maintained
6374 F: drivers/ata/
6375 F: include/linux/ata.h
6376 F: include/linux/libata.h
6377
6378 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6379 M: Viresh Kumar <vireshk@kernel.org>
6380 L: linux-ide@vger.kernel.org
6381 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6382 S: Maintained
6383 F: include/linux/pata_arasan_cf_data.h
6384 F: drivers/ata/pata_arasan_cf.c
6385
6386 LIBATA PATA DRIVERS
6387 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6388 M: Tejun Heo <tj@kernel.org>
6389 L: linux-ide@vger.kernel.org
6390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6391 S: Maintained
6392 F: drivers/ata/pata_*.c
6393 F: drivers/ata/ata_generic.c
6394
6395 LIBATA SATA AHCI PLATFORM devices support
6396 M: Hans de Goede <hdegoede@redhat.com>
6397 M: Tejun Heo <tj@kernel.org>
6398 L: linux-ide@vger.kernel.org
6399 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6400 S: Maintained
6401 F: drivers/ata/ahci_platform.c
6402 F: drivers/ata/libahci_platform.c
6403 F: include/linux/ahci_platform.h
6404
6405 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6406 M: Mikael Pettersson <mikpelinux@gmail.com>
6407 L: linux-ide@vger.kernel.org
6408 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6409 S: Maintained
6410 F: drivers/ata/sata_promise.*
6411
6412 LIBLOCKDEP
6413 M: Sasha Levin <sasha.levin@oracle.com>
6414 S: Maintained
6415 F: tools/lib/lockdep/
6416
6417 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6418 M: Dan Williams <dan.j.williams@intel.com>
6419 L: linux-nvdimm@lists.01.org
6420 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6421 S: Supported
6422 F: drivers/nvdimm/*
6423 F: include/linux/nd.h
6424 F: include/linux/libnvdimm.h
6425 F: include/uapi/linux/ndctl.h
6426
6427 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6428 M: Ross Zwisler <ross.zwisler@linux.intel.com>
6429 L: linux-nvdimm@lists.01.org
6430 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6431 S: Supported
6432 F: drivers/nvdimm/blk.c
6433 F: drivers/nvdimm/region_devs.c
6434 F: drivers/acpi/nfit*
6435
6436 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6437 M: Vishal Verma <vishal.l.verma@intel.com>
6438 L: linux-nvdimm@lists.01.org
6439 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6440 S: Supported
6441 F: drivers/nvdimm/btt*
6442
6443 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6444 M: Ross Zwisler <ross.zwisler@linux.intel.com>
6445 L: linux-nvdimm@lists.01.org
6446 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
6447 S: Supported
6448 F: drivers/nvdimm/pmem.c
6449 F: include/linux/pmem.h
6450 F: arch/*/include/asm/pmem.h
6451
6452 LIGHTNVM PLATFORM SUPPORT
6453 M: Matias Bjorling <mb@lightnvm.io>
6454 W: http://github/OpenChannelSSD
6455 L: linux-block@vger.kernel.org
6456 S: Maintained
6457 F: drivers/lightnvm/
6458 F: include/linux/lightnvm.h
6459 F: include/uapi/linux/lightnvm.h
6460
6461 LINUX FOR IBM pSERIES (RS/6000)
6462 M: Paul Mackerras <paulus@au.ibm.com>
6463 W: http://www.ibm.com/linux/ltc/projects/ppc
6464 S: Supported
6465 F: arch/powerpc/boot/rs6000.h
6466
6467 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6468 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6469 M: Paul Mackerras <paulus@samba.org>
6470 M: Michael Ellerman <mpe@ellerman.id.au>
6471 W: http://www.penguinppc.org/
6472 L: linuxppc-dev@lists.ozlabs.org
6473 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6474 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6475 S: Supported
6476 F: Documentation/powerpc/
6477 F: arch/powerpc/
6478
6479 LINUX FOR POWER MACINTOSH
6480 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
6481 W: http://www.penguinppc.org/
6482 L: linuxppc-dev@lists.ozlabs.org
6483 S: Maintained
6484 F: arch/powerpc/platforms/powermac/
6485 F: drivers/macintosh/
6486
6487 LINUX FOR POWERPC EMBEDDED MPC5XXX
6488 M: Anatolij Gustschin <agust@denx.de>
6489 L: linuxppc-dev@lists.ozlabs.org
6490 T: git git://git.denx.de/linux-denx-agust.git
6491 S: Maintained
6492 F: arch/powerpc/platforms/512x/
6493 F: arch/powerpc/platforms/52xx/
6494
6495 LINUX FOR POWERPC EMBEDDED PPC4XX
6496 M: Alistair Popple <alistair@popple.id.au>
6497 M: Matt Porter <mporter@kernel.crashing.org>
6498 W: http://www.penguinppc.org/
6499 L: linuxppc-dev@lists.ozlabs.org
6500 S: Maintained
6501 F: arch/powerpc/platforms/40x/
6502 F: arch/powerpc/platforms/44x/
6503
6504 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6505 L: linuxppc-dev@lists.ozlabs.org
6506 S: Orphan
6507 F: arch/powerpc/*/*virtex*
6508 F: arch/powerpc/*/*/*virtex*
6509
6510 LINUX FOR POWERPC EMBEDDED PPC8XX
6511 M: Vitaly Bordug <vitb@kernel.crashing.org>
6512 W: http://www.penguinppc.org/
6513 L: linuxppc-dev@lists.ozlabs.org
6514 S: Maintained
6515 F: arch/powerpc/platforms/8xx/
6516
6517 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6518 M: Scott Wood <oss@buserror.net>
6519 M: Kumar Gala <galak@kernel.crashing.org>
6520 W: http://www.penguinppc.org/
6521 L: linuxppc-dev@lists.ozlabs.org
6522 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6523 S: Maintained
6524 F: arch/powerpc/platforms/83xx/
6525 F: arch/powerpc/platforms/85xx/
6526
6527 LINUX FOR POWERPC PA SEMI PWRFICIENT
6528 M: Olof Johansson <olof@lixom.net>
6529 L: linuxppc-dev@lists.ozlabs.org
6530 S: Maintained
6531 F: arch/powerpc/platforms/pasemi/
6532 F: drivers/*/*pasemi*
6533 F: drivers/*/*/*pasemi*
6534
6535 LINUX SECURITY MODULE (LSM) FRAMEWORK
6536 M: Chris Wright <chrisw@sous-sol.org>
6537 L: linux-security-module@vger.kernel.org
6538 S: Supported
6539
6540 LIS3LV02D ACCELEROMETER DRIVER
6541 M: Eric Piel <eric.piel@tremplin-utc.net>
6542 S: Maintained
6543 F: Documentation/misc-devices/lis3lv02d
6544 F: drivers/misc/lis3lv02d/
6545 F: drivers/platform/x86/hp_accel.c
6546
6547 LIVE PATCHING
6548 M: Josh Poimboeuf <jpoimboe@redhat.com>
6549 M: Seth Jennings <sjenning@redhat.com>
6550 M: Jiri Kosina <jikos@kernel.org>
6551 M: Vojtech Pavlik <vojtech@suse.com>
6552 S: Maintained
6553 F: kernel/livepatch/
6554 F: include/linux/livepatch.h
6555 F: arch/x86/include/asm/livepatch.h
6556 F: arch/x86/kernel/livepatch.c
6557 F: Documentation/ABI/testing/sysfs-kernel-livepatch
6558 F: samples/livepatch/
6559 L: live-patching@vger.kernel.org
6560 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6561
6562 LLC (802.2)
6563 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6564 S: Maintained
6565 F: include/linux/llc.h
6566 F: include/uapi/linux/llc.h
6567 F: include/net/llc*
6568 F: net/llc/
6569
6570 LM73 HARDWARE MONITOR DRIVER
6571 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
6572 L: lm-sensors@lm-sensors.org
6573 S: Maintained
6574 F: drivers/hwmon/lm73.c
6575
6576 LM78 HARDWARE MONITOR DRIVER
6577 M: Jean Delvare <jdelvare@suse.com>
6578 L: lm-sensors@lm-sensors.org
6579 S: Maintained
6580 F: Documentation/hwmon/lm78
6581 F: drivers/hwmon/lm78.c
6582
6583 LM83 HARDWARE MONITOR DRIVER
6584 M: Jean Delvare <jdelvare@suse.com>
6585 L: lm-sensors@lm-sensors.org
6586 S: Maintained
6587 F: Documentation/hwmon/lm83
6588 F: drivers/hwmon/lm83.c
6589
6590 LM90 HARDWARE MONITOR DRIVER
6591 M: Jean Delvare <jdelvare@suse.com>
6592 L: lm-sensors@lm-sensors.org
6593 S: Maintained
6594 F: Documentation/hwmon/lm90
6595 F: Documentation/devicetree/bindings/hwmon/lm90.txt
6596 F: drivers/hwmon/lm90.c
6597
6598 LM95234 HARDWARE MONITOR DRIVER
6599 M: Guenter Roeck <linux@roeck-us.net>
6600 L: lm-sensors@lm-sensors.org
6601 S: Maintained
6602 F: Documentation/hwmon/lm95234
6603 F: drivers/hwmon/lm95234.c
6604
6605 LME2510 MEDIA DRIVER
6606 M: Malcolm Priestley <tvboxspy@gmail.com>
6607 L: linux-media@vger.kernel.org
6608 W: https://linuxtv.org
6609 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6610 S: Maintained
6611 F: drivers/media/usb/dvb-usb-v2/lmedm04*
6612
6613 LOCKDEP AND LOCKSTAT
6614 M: Peter Zijlstra <peterz@infradead.org>
6615 M: Ingo Molnar <mingo@redhat.com>
6616 L: linux-kernel@vger.kernel.org
6617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6618 S: Maintained
6619 F: Documentation/locking/lockdep*.txt
6620 F: Documentation/locking/lockstat.txt
6621 F: include/linux/lockdep.h
6622 F: kernel/locking/
6623
6624 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6625 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
6626 L: linux-ntfs-dev@lists.sourceforge.net
6627 W: http://www.linux-ntfs.org/content/view/19/37/
6628 S: Maintained
6629 F: Documentation/ldm.txt
6630 F: block/partitions/ldm.*
6631
6632 LogFS
6633 M: Joern Engel <joern@logfs.org>
6634 M: Prasad Joshi <prasadjoshi.linux@gmail.com>
6635 L: logfs@logfs.org
6636 W: logfs.org
6637 S: Maintained
6638 F: fs/logfs/
6639
6640 LPC32XX MACHINE SUPPORT
6641 M: Roland Stigge <stigge@antcom.de>
6642 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6643 S: Maintained
6644 F: arch/arm/mach-lpc32xx/
6645
6646 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6647 M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6648 M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6649 M: Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6650 M: Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6651 L: MPT-FusionLinux.pdl@avagotech.com
6652 L: linux-scsi@vger.kernel.org
6653 W: http://www.lsilogic.com/support
6654 S: Supported
6655 F: drivers/message/fusion/
6656 F: drivers/scsi/mpt2sas/
6657 F: drivers/scsi/mpt3sas/
6658
6659 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6660 M: Matthew Wilcox <matthew@wil.cx>
6661 L: linux-scsi@vger.kernel.org
6662 S: Maintained
6663 F: drivers/scsi/sym53c8xx_2/
6664
6665 LTC4261 HARDWARE MONITOR DRIVER
6666 M: Guenter Roeck <linux@roeck-us.net>
6667 L: lm-sensors@lm-sensors.org
6668 S: Maintained
6669 F: Documentation/hwmon/ltc4261
6670 F: drivers/hwmon/ltc4261.c
6671
6672 LTP (Linux Test Project)
6673 M: Mike Frysinger <vapier@gentoo.org>
6674 M: Cyril Hrubis <chrubis@suse.cz>
6675 M: Wanlong Gao <wanlong.gao@gmail.com>
6676 M: Jan Stancek <jstancek@redhat.com>
6677 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6678 M: Alexey Kodanev <alexey.kodanev@oracle.com>
6679 L: ltp@lists.linux.it (subscribers-only)
6680 W: http://linux-test-project.github.io/
6681 T: git git://github.com/linux-test-project/ltp.git
6682 S: Maintained
6683
6684 M32R ARCHITECTURE
6685 W: http://www.linux-m32r.org/
6686 S: Orphan
6687 F: arch/m32r/
6688
6689 M68K ARCHITECTURE
6690 M: Geert Uytterhoeven <geert@linux-m68k.org>
6691 L: linux-m68k@lists.linux-m68k.org
6692 W: http://www.linux-m68k.org/
6693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6694 S: Maintained
6695 F: arch/m68k/
6696 F: drivers/zorro/
6697
6698 M68K ON APPLE MACINTOSH
6699 M: Joshua Thompson <funaho@jurai.org>
6700 W: http://www.mac.linux-m68k.org/
6701 L: linux-m68k@lists.linux-m68k.org
6702 S: Maintained
6703 F: arch/m68k/mac/
6704
6705 M68K ON HP9000/300
6706 M: Philip Blundell <philb@gnu.org>
6707 W: http://www.tazenda.demon.co.uk/phil/linux-hp
6708 S: Maintained
6709 F: arch/m68k/hp300/
6710
6711 M88DS3103 MEDIA DRIVER
6712 M: Antti Palosaari <crope@iki.fi>
6713 L: linux-media@vger.kernel.org
6714 W: https://linuxtv.org
6715 W: http://palosaari.fi/linux/
6716 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6717 T: git git://linuxtv.org/anttip/media_tree.git
6718 S: Maintained
6719 F: drivers/media/dvb-frontends/m88ds3103*
6720
6721 M88RS2000 MEDIA DRIVER
6722 M: Malcolm Priestley <tvboxspy@gmail.com>
6723 L: linux-media@vger.kernel.org
6724 W: https://linuxtv.org
6725 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6726 S: Maintained
6727 F: drivers/media/dvb-frontends/m88rs2000*
6728
6729 MA901 MASTERKIT USB FM RADIO DRIVER
6730 M: Alexey Klimov <klimov.linux@gmail.com>
6731 L: linux-media@vger.kernel.org
6732 T: git git://linuxtv.org/media_tree.git
6733 S: Maintained
6734 F: drivers/media/radio/radio-ma901.c
6735
6736 MAC80211
6737 M: Johannes Berg <johannes@sipsolutions.net>
6738 L: linux-wireless@vger.kernel.org
6739 W: http://wireless.kernel.org/
6740 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6741 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6742 S: Maintained
6743 F: Documentation/networking/mac80211-injection.txt
6744 F: include/net/mac80211.h
6745 F: net/mac80211/
6746
6747 MACVLAN DRIVER
6748 M: Patrick McHardy <kaber@trash.net>
6749 L: netdev@vger.kernel.org
6750 S: Maintained
6751 F: drivers/net/macvlan.c
6752 F: include/linux/if_macvlan.h
6753
6754 MAILBOX API
6755 M: Jassi Brar <jassisinghbrar@gmail.com>
6756 L: linux-kernel@vger.kernel.org
6757 S: Maintained
6758 F: drivers/mailbox/
6759 F: include/linux/mailbox_client.h
6760 F: include/linux/mailbox_controller.h
6761
6762 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6763 M: Michael Kerrisk <mtk.manpages@gmail.com>
6764 W: http://www.kernel.org/doc/man-pages
6765 L: linux-man@vger.kernel.org
6766 S: Maintained
6767
6768 MARVELL ARMADA DRM SUPPORT
6769 M: Russell King <rmk+kernel@arm.linux.org.uk>
6770 S: Maintained
6771 F: drivers/gpu/drm/armada/
6772
6773 MARVELL 88E6352 DSA support
6774 M: Guenter Roeck <linux@roeck-us.net>
6775 S: Maintained
6776 F: drivers/net/dsa/mv88e6352.c
6777
6778 MARVELL CRYPTO DRIVER
6779 M: Boris Brezillon <boris.brezillon@free-electrons.com>
6780 M: Arnaud Ebalard <arno@natisbad.org>
6781 F: drivers/crypto/marvell/
6782 S: Maintained
6783 L: linux-crypto@vger.kernel.org
6784
6785 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6786 M: Mirko Lindner <mlindner@marvell.com>
6787 M: Stephen Hemminger <stephen@networkplumber.org>
6788 L: netdev@vger.kernel.org
6789 S: Maintained
6790 F: drivers/net/ethernet/marvell/sk*
6791
6792 MARVELL LIBERTAS WIRELESS DRIVER
6793 L: libertas-dev@lists.infradead.org
6794 S: Orphan
6795 F: drivers/net/wireless/marvell/libertas/
6796
6797 MARVELL MV643XX ETHERNET DRIVER
6798 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6799 L: netdev@vger.kernel.org
6800 S: Maintained
6801 F: drivers/net/ethernet/marvell/mv643xx_eth.*
6802 F: include/linux/mv643xx.h
6803
6804 MARVELL MVNETA ETHERNET DRIVER
6805 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6806 L: netdev@vger.kernel.org
6807 S: Maintained
6808 F: drivers/net/ethernet/marvell/mvneta.*
6809
6810 MARVELL MWIFIEX WIRELESS DRIVER
6811 M: Amitkumar Karwar <akarwar@marvell.com>
6812 M: Nishant Sarmukadam <nishants@marvell.com>
6813 L: linux-wireless@vger.kernel.org
6814 S: Maintained
6815 F: drivers/net/wireless/marvell/mwifiex/
6816
6817 MARVELL MWL8K WIRELESS DRIVER
6818 M: Lennert Buytenhek <buytenh@wantstofly.org>
6819 L: linux-wireless@vger.kernel.org
6820 S: Odd Fixes
6821 F: drivers/net/wireless/marvell/mwl8k.c
6822
6823 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6824 M: Nicolas Pitre <nico@fluxnic.net>
6825 S: Odd Fixes
6826 F: drivers/mmc/host/mvsdio.*
6827
6828 MATROX FRAMEBUFFER DRIVER
6829 L: linux-fbdev@vger.kernel.org
6830 S: Orphan
6831 F: drivers/video/fbdev/matrox/matroxfb_*
6832 F: include/uapi/linux/matroxfb.h
6833
6834 MAX16065 HARDWARE MONITOR DRIVER
6835 M: Guenter Roeck <linux@roeck-us.net>
6836 L: lm-sensors@lm-sensors.org
6837 S: Maintained
6838 F: Documentation/hwmon/max16065
6839 F: drivers/hwmon/max16065.c
6840
6841 MAX20751 HARDWARE MONITOR DRIVER
6842 M: Guenter Roeck <linux@roeck-us.net>
6843 L: lm-sensors@lm-sensors.org
6844 S: Maintained
6845 F: Documentation/hwmon/max20751
6846 F: drivers/hwmon/max20751.c
6847
6848 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6849 M: "Hans J. Koch" <hjk@hansjkoch.de>
6850 L: lm-sensors@lm-sensors.org
6851 S: Maintained
6852 F: Documentation/hwmon/max6650
6853 F: drivers/hwmon/max6650.c
6854
6855 MAX6697 HARDWARE MONITOR DRIVER
6856 M: Guenter Roeck <linux@roeck-us.net>
6857 L: lm-sensors@lm-sensors.org
6858 S: Maintained
6859 F: Documentation/hwmon/max6697
6860 F: Documentation/devicetree/bindings/i2c/max6697.txt
6861 F: drivers/hwmon/max6697.c
6862 F: include/linux/platform_data/max6697.h
6863
6864 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6865 M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6866 L: linux-pm@vger.kernel.org
6867 S: Supported
6868 F: drivers/power/max14577_charger.c
6869 F: drivers/power/max77693_charger.c
6870
6871 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6872 M: Javier Martinez Canillas <javier@osg.samsung.com>
6873 L: linux-kernel@vger.kernel.org
6874 S: Supported
6875 F: drivers/*/*max77802.c
6876 F: Documentation/devicetree/bindings/*/*max77802.txt
6877 F: include/dt-bindings/*/*max77802.h
6878
6879 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6880 M: Chanwoo Choi <cw00.choi@samsung.com>
6881 M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
6882 L: linux-kernel@vger.kernel.org
6883 S: Supported
6884 F: drivers/*/max14577.c
6885 F: drivers/*/max77686.c
6886 F: drivers/*/max77693.c
6887 F: drivers/extcon/extcon-max14577.c
6888 F: drivers/extcon/extcon-max77693.c
6889 F: drivers/rtc/rtc-max77686.c
6890 F: drivers/clk/clk-max77686.c
6891 F: Documentation/devicetree/bindings/mfd/max14577.txt
6892 F: Documentation/devicetree/bindings/*/max77686.txt
6893 F: Documentation/devicetree/bindings/mfd/max77693.txt
6894 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
6895 F: include/linux/mfd/max14577*.h
6896 F: include/linux/mfd/max77686*.h
6897 F: include/linux/mfd/max77693*.h
6898
6899 MAXIRADIO FM RADIO RECEIVER DRIVER
6900 M: Hans Verkuil <hverkuil@xs4all.nl>
6901 L: linux-media@vger.kernel.org
6902 T: git git://linuxtv.org/media_tree.git
6903 W: https://linuxtv.org
6904 S: Maintained
6905 F: drivers/media/radio/radio-maxiradio*
6906
6907 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6908 M: Peter Rosin <peda@axentia.se>
6909 L: linux-iio@vger.kernel.org
6910 S: Maintained
6911 F: drivers/iio/potentiometer/mcp4531.c
6912
6913 MEDIA DRIVERS FOR RENESAS - VSP1
6914 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6915 L: linux-media@vger.kernel.org
6916 L: linux-renesas-soc@vger.kernel.org
6917 T: git git://linuxtv.org/media_tree.git
6918 S: Supported
6919 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
6920 F: drivers/media/platform/vsp1/
6921
6922 MEDIA DRIVERS FOR ASCOT2E
6923 M: Sergey Kozlov <serjk@netup.ru>
6924 L: linux-media@vger.kernel.org
6925 W: https://linuxtv.org
6926 W: http://netup.tv/
6927 T: git git://linuxtv.org/media_tree.git
6928 S: Supported
6929 F: drivers/media/dvb-frontends/ascot2e*
6930
6931 MEDIA DRIVERS FOR CXD2841ER
6932 M: Sergey Kozlov <serjk@netup.ru>
6933 L: linux-media@vger.kernel.org
6934 W: https://linuxtv.org
6935 W: http://netup.tv/
6936 T: git git://linuxtv.org/media_tree.git
6937 S: Supported
6938 F: drivers/media/dvb-frontends/cxd2841er*
6939
6940 MEDIA DRIVERS FOR HORUS3A
6941 M: Sergey Kozlov <serjk@netup.ru>
6942 L: linux-media@vger.kernel.org
6943 W: https://linuxtv.org
6944 W: http://netup.tv/
6945 T: git git://linuxtv.org/media_tree.git
6946 S: Supported
6947 F: drivers/media/dvb-frontends/horus3a*
6948
6949 MEDIA DRIVERS FOR LNBH25
6950 M: Sergey Kozlov <serjk@netup.ru>
6951 L: linux-media@vger.kernel.org
6952 W: https://linuxtv.org
6953 W: http://netup.tv/
6954 T: git git://linuxtv.org/media_tree.git
6955 S: Supported
6956 F: drivers/media/dvb-frontends/lnbh25*
6957
6958 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6959 M: Sergey Kozlov <serjk@netup.ru>
6960 L: linux-media@vger.kernel.org
6961 W: https://linuxtv.org
6962 W: http://netup.tv/
6963 T: git git://linuxtv.org/media_tree.git
6964 S: Supported
6965 F: drivers/media/pci/netup_unidvb/*
6966
6967 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6968 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6969 P: LinuxTV.org Project
6970 L: linux-media@vger.kernel.org
6971 W: https://linuxtv.org
6972 Q: http://patchwork.kernel.org/project/linux-media/list/
6973 T: git git://linuxtv.org/media_tree.git
6974 S: Maintained
6975 F: Documentation/dvb/
6976 F: Documentation/video4linux/
6977 F: Documentation/DocBook/media/
6978 F: drivers/media/
6979 F: drivers/staging/media/
6980 F: include/linux/platform_data/media/
6981 F: include/media/
6982 F: include/uapi/linux/dvb/
6983 F: include/uapi/linux/videodev2.h
6984 F: include/uapi/linux/media.h
6985 F: include/uapi/linux/v4l2-*
6986 F: include/uapi/linux/meye.h
6987 F: include/uapi/linux/ivtv*
6988 F: include/uapi/linux/uvcvideo.h
6989
6990 MEDIATEK MT7601U WIRELESS LAN DRIVER
6991 M: Jakub Kicinski <kubakici@wp.pl>
6992 L: linux-wireless@vger.kernel.org
6993 S: Maintained
6994 F: drivers/net/wireless/mediatek/mt7601u/
6995
6996 MEGARAID SCSI/SAS DRIVERS
6997 M: Kashyap Desai <kashyap.desai@avagotech.com>
6998 M: Sumit Saxena <sumit.saxena@avagotech.com>
6999 M: Uday Lingala <uday.lingala@avagotech.com>
7000 L: megaraidlinux.pdl@avagotech.com
7001 L: linux-scsi@vger.kernel.org
7002 W: http://www.lsi.com
7003 S: Maintained
7004 F: Documentation/scsi/megaraid.txt
7005 F: drivers/scsi/megaraid.*
7006 F: drivers/scsi/megaraid/
7007
7008 MELLANOX ETHERNET DRIVER (mlx4_en)
7009 M: Eugenia Emantayev <eugenia@mellanox.com>
7010 L: netdev@vger.kernel.org
7011 S: Supported
7012 W: http://www.mellanox.com
7013 Q: http://patchwork.ozlabs.org/project/netdev/list/
7014 F: drivers/net/ethernet/mellanox/mlx4/en_*
7015
7016 MELLANOX ETHERNET DRIVER (mlx5e)
7017 M: Saeed Mahameed <saeedm@mellanox.com>
7018 L: netdev@vger.kernel.org
7019 S: Supported
7020 W: http://www.mellanox.com
7021 Q: http://patchwork.ozlabs.org/project/netdev/list/
7022 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
7023
7024 MELLANOX ETHERNET SWITCH DRIVERS
7025 M: Jiri Pirko <jiri@mellanox.com>
7026 M: Ido Schimmel <idosch@mellanox.com>
7027 L: netdev@vger.kernel.org
7028 S: Supported
7029 W: http://www.mellanox.com
7030 Q: http://patchwork.ozlabs.org/project/netdev/list/
7031 F: drivers/net/ethernet/mellanox/mlxsw/
7032
7033 MEMBARRIER SUPPORT
7034 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7035 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7036 L: linux-kernel@vger.kernel.org
7037 S: Supported
7038 F: kernel/membarrier.c
7039 F: include/uapi/linux/membarrier.h
7040
7041 MEMORY MANAGEMENT
7042 L: linux-mm@kvack.org
7043 W: http://www.linux-mm.org
7044 S: Maintained
7045 F: include/linux/mm.h
7046 F: include/linux/gfp.h
7047 F: include/linux/mmzone.h
7048 F: include/linux/memory_hotplug.h
7049 F: include/linux/vmalloc.h
7050 F: mm/
7051
7052 MEMORY TECHNOLOGY DEVICES (MTD)
7053 M: David Woodhouse <dwmw2@infradead.org>
7054 M: Brian Norris <computersforpeace@gmail.com>
7055 L: linux-mtd@lists.infradead.org
7056 W: http://www.linux-mtd.infradead.org/
7057 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7058 T: git git://git.infradead.org/linux-mtd.git
7059 T: git git://git.infradead.org/l2-mtd.git
7060 S: Maintained
7061 F: drivers/mtd/
7062 F: include/linux/mtd/
7063 F: include/uapi/mtd/
7064
7065 MEN A21 WATCHDOG DRIVER
7066 M: Johannes Thumshirn <morbidrsa@gmail.com>
7067 L: linux-watchdog@vger.kernel.org
7068 S: Maintained
7069 F: drivers/watchdog/mena21_wdt.c
7070
7071 MEN CHAMELEON BUS (mcb)
7072 M: Johannes Thumshirn <morbidrsa@gmail.com>
7073 S: Maintained
7074 F: drivers/mcb/
7075 F: include/linux/mcb.h
7076 F: Documentation/men-chameleon-bus.txt
7077
7078 MEN F21BMC (Board Management Controller)
7079 M: Andreas Werner <andreas.werner@men.de>
7080 S: Supported
7081 F: drivers/mfd/menf21bmc.c
7082 F: drivers/watchdog/menf21bmc_wdt.c
7083 F: drivers/leds/leds-menf21bmc.c
7084 F: drivers/hwmon/menf21bmc_hwmon.c
7085 F: Documentation/hwmon/menf21bmc
7086
7087 METAG ARCHITECTURE
7088 M: James Hogan <james.hogan@imgtec.com>
7089 L: linux-metag@vger.kernel.org
7090 S: Odd Fixes
7091 F: arch/metag/
7092 F: Documentation/metag/
7093 F: Documentation/devicetree/bindings/metag/
7094 F: Documentation/devicetree/bindings/interrupt-controller/img,*
7095 F: drivers/clocksource/metag_generic.c
7096 F: drivers/irqchip/irq-metag.c
7097 F: drivers/irqchip/irq-metag-ext.c
7098 F: drivers/tty/metag_da.c
7099
7100 MICROBLAZE ARCHITECTURE
7101 M: Michal Simek <monstr@monstr.eu>
7102 W: http://www.monstr.eu/fdt/
7103 T: git git://git.monstr.eu/linux-2.6-microblaze.git
7104 S: Supported
7105 F: arch/microblaze/
7106
7107 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7108 M: Chen Yu <yu.c.chen@intel.com>
7109 L: platform-driver-x86@vger.kernel.org
7110 S: Supported
7111 F: drivers/platform/x86/surfacepro3_button.c
7112
7113 MICROTEK X6 SCANNER
7114 M: Oliver Neukum <oliver@neukum.org>
7115 S: Maintained
7116 F: drivers/usb/image/microtek.*
7117
7118 MIPS
7119 M: Ralf Baechle <ralf@linux-mips.org>
7120 L: linux-mips@linux-mips.org
7121 W: http://www.linux-mips.org/
7122 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
7123 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
7124 S: Supported
7125 F: Documentation/mips/
7126 F: arch/mips/
7127
7128 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7129 M: Hans Verkuil <hverkuil@xs4all.nl>
7130 L: linux-media@vger.kernel.org
7131 T: git git://linuxtv.org/media_tree.git
7132 W: https://linuxtv.org
7133 S: Odd Fixes
7134 F: drivers/media/radio/radio-miropcm20*
7135
7136 Mellanox MLX5 core VPI driver
7137 M: Eli Cohen <eli@mellanox.com>
7138 L: netdev@vger.kernel.org
7139 L: linux-rdma@vger.kernel.org
7140 W: http://www.mellanox.com
7141 Q: http://patchwork.ozlabs.org/project/netdev/list/
7142 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7143 T: git git://openfabrics.org/~eli/connect-ib.git
7144 S: Supported
7145 F: drivers/net/ethernet/mellanox/mlx5/core/
7146 F: include/linux/mlx5/
7147
7148 Mellanox MLX5 IB driver
7149 M: Eli Cohen <eli@mellanox.com>
7150 L: linux-rdma@vger.kernel.org
7151 W: http://www.mellanox.com
7152 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7153 T: git git://openfabrics.org/~eli/connect-ib.git
7154 S: Supported
7155 F: include/linux/mlx5/
7156 F: drivers/infiniband/hw/mlx5/
7157
7158 MELEXIS MLX90614 DRIVER
7159 M: Crt Mori <cmo@melexis.com>
7160 L: linux-iio@vger.kernel.org
7161 W: http://www.melexis.com
7162 S: Supported
7163 F: drivers/iio/temperature/mlx90614.c
7164
7165 MN88472 MEDIA DRIVER
7166 M: Antti Palosaari <crope@iki.fi>
7167 L: linux-media@vger.kernel.org
7168 W: https://linuxtv.org
7169 W: http://palosaari.fi/linux/
7170 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7171 T: git git://linuxtv.org/anttip/media_tree.git
7172 S: Maintained
7173 F: drivers/staging/media/mn88472/
7174 F: drivers/media/dvb-frontends/mn88472.h
7175
7176 MN88473 MEDIA DRIVER
7177 M: Antti Palosaari <crope@iki.fi>
7178 L: linux-media@vger.kernel.org
7179 W: https://linuxtv.org
7180 W: http://palosaari.fi/linux/
7181 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7182 T: git git://linuxtv.org/anttip/media_tree.git
7183 S: Maintained
7184 F: drivers/staging/media/mn88473/
7185 F: drivers/media/dvb-frontends/mn88473.h
7186
7187 MODULE SUPPORT
7188 M: Rusty Russell <rusty@rustcorp.com.au>
7189 S: Maintained
7190 F: include/linux/module.h
7191 F: kernel/module.c
7192
7193 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7194 W: http://popies.net/meye/
7195 S: Orphan
7196 F: Documentation/video4linux/meye.txt
7197 F: drivers/media/pci/meye/
7198 F: include/uapi/linux/meye.h
7199
7200 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7201 M: Jiri Slaby <jirislaby@gmail.com>
7202 S: Maintained
7203 F: Documentation/serial/moxa-smartio
7204 F: drivers/tty/mxser.*
7205
7206 MR800 AVERMEDIA USB FM RADIO DRIVER
7207 M: Alexey Klimov <klimov.linux@gmail.com>
7208 L: linux-media@vger.kernel.org
7209 T: git git://linuxtv.org/media_tree.git
7210 S: Maintained
7211 F: drivers/media/radio/radio-mr800.c
7212
7213 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7214 M: Alan Ott <alan@signal11.us>
7215 L: linux-wpan@vger.kernel.org
7216 S: Maintained
7217 F: drivers/net/ieee802154/mrf24j40.c
7218 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7219
7220 MSI LAPTOP SUPPORT
7221 M: "Lee, Chun-Yi" <jlee@suse.com>
7222 L: platform-driver-x86@vger.kernel.org
7223 S: Maintained
7224 F: drivers/platform/x86/msi-laptop.c
7225
7226 MSI WMI SUPPORT
7227 L: platform-driver-x86@vger.kernel.org
7228 S: Orphan
7229 F: drivers/platform/x86/msi-wmi.c
7230
7231 MSI001 MEDIA DRIVER
7232 M: Antti Palosaari <crope@iki.fi>
7233 L: linux-media@vger.kernel.org
7234 W: https://linuxtv.org
7235 W: http://palosaari.fi/linux/
7236 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7237 T: git git://linuxtv.org/anttip/media_tree.git
7238 S: Maintained
7239 F: drivers/media/tuners/msi001*
7240
7241 MSI2500 MEDIA DRIVER
7242 M: Antti Palosaari <crope@iki.fi>
7243 L: linux-media@vger.kernel.org
7244 W: https://linuxtv.org
7245 W: http://palosaari.fi/linux/
7246 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7247 T: git git://linuxtv.org/anttip/media_tree.git
7248 S: Maintained
7249 F: drivers/media/usb/msi2500/
7250
7251 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7252 M: Robert Jarzmik <robert.jarzmik@free.fr>
7253 L: linux-mtd@lists.infradead.org
7254 S: Maintained
7255 F: drivers/mtd/devices/docg3*
7256
7257 MT9M032 APTINA SENSOR DRIVER
7258 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7259 L: linux-media@vger.kernel.org
7260 T: git git://linuxtv.org/media_tree.git
7261 S: Maintained
7262 F: drivers/media/i2c/mt9m032.c
7263 F: include/media/i2c/mt9m032.h
7264
7265 MT9P031 APTINA CAMERA SENSOR
7266 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7267 L: linux-media@vger.kernel.org
7268 T: git git://linuxtv.org/media_tree.git
7269 S: Maintained
7270 F: drivers/media/i2c/mt9p031.c
7271 F: include/media/i2c/mt9p031.h
7272
7273 MT9T001 APTINA CAMERA SENSOR
7274 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7275 L: linux-media@vger.kernel.org
7276 T: git git://linuxtv.org/media_tree.git
7277 S: Maintained
7278 F: drivers/media/i2c/mt9t001.c
7279 F: include/media/i2c/mt9t001.h
7280
7281 MT9V032 APTINA CAMERA SENSOR
7282 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7283 L: linux-media@vger.kernel.org
7284 T: git git://linuxtv.org/media_tree.git
7285 S: Maintained
7286 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7287 F: drivers/media/i2c/mt9v032.c
7288 F: include/media/i2c/mt9v032.h
7289
7290 MULTIFUNCTION DEVICES (MFD)
7291 M: Lee Jones <lee.jones@linaro.org>
7292 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7293 S: Supported
7294 F: drivers/mfd/
7295 F: include/linux/mfd/
7296
7297 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7298 M: Ulf Hansson <ulf.hansson@linaro.org>
7299 L: linux-mmc@vger.kernel.org
7300 T: git git://git.linaro.org/people/ulf.hansson/mmc.git
7301 S: Maintained
7302 F: drivers/mmc/
7303 F: include/linux/mmc/
7304 F: include/uapi/linux/mmc/
7305
7306 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7307 S: Orphan
7308 F: drivers/mmc/host/mmc_spi.c
7309 F: include/linux/spi/mmc_spi.h
7310
7311 MULTISOUND SOUND DRIVER
7312 M: Andrew Veliath <andrewtv@usa.net>
7313 S: Maintained
7314 F: Documentation/sound/oss/MultiSound
7315 F: sound/oss/msnd*
7316
7317 MULTITECH MULTIPORT CARD (ISICOM)
7318 S: Orphan
7319 F: drivers/tty/isicom.c
7320 F: include/linux/isicom.h
7321
7322 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7323 M: Felipe Balbi <balbi@ti.com>
7324 L: linux-usb@vger.kernel.org
7325 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7326 S: Maintained
7327 F: drivers/usb/musb/
7328
7329 MXL5007T MEDIA DRIVER
7330 M: Michael Krufky <mkrufky@linuxtv.org>
7331 L: linux-media@vger.kernel.org
7332 W: https://linuxtv.org
7333 W: http://github.com/mkrufky
7334 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7335 T: git git://linuxtv.org/mkrufky/tuners.git
7336 S: Maintained
7337 F: drivers/media/tuners/mxl5007t.*
7338
7339 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7340 M: Hyong-Youb Kim <hykim@myri.com>
7341 L: netdev@vger.kernel.org
7342 W: https://www.myricom.com/support/downloads/myri10ge.html
7343 S: Supported
7344 F: drivers/net/ethernet/myricom/myri10ge/
7345
7346 NATSEMI ETHERNET DRIVER (DP8381x)
7347 S: Orphan
7348 F: drivers/net/ethernet/natsemi/natsemi.c
7349
7350 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7351 M: Daniel Mack <zonque@gmail.com>
7352 S: Maintained
7353 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7354 W: http://www.native-instruments.com
7355 F: sound/usb/caiaq/
7356
7357 NCP FILESYSTEM
7358 M: Petr Vandrovec <petr@vandrovec.name>
7359 S: Odd Fixes
7360 F: fs/ncpfs/
7361
7362 NCR 5380 SCSI DRIVERS
7363 M: Finn Thain <fthain@telegraphics.com.au>
7364 M: Michael Schmitz <schmitzmic@gmail.com>
7365 L: linux-scsi@vger.kernel.org
7366 S: Maintained
7367 F: Documentation/scsi/g_NCR5380.txt
7368 F: drivers/scsi/NCR5380.*
7369 F: drivers/scsi/arm/cumana_1.c
7370 F: drivers/scsi/arm/oak.c
7371 F: drivers/scsi/atari_NCR5380.c
7372 F: drivers/scsi/atari_scsi.*
7373 F: drivers/scsi/dmx3191d.c
7374 F: drivers/scsi/dtc.*
7375 F: drivers/scsi/g_NCR5380.*
7376 F: drivers/scsi/g_NCR5380_mmio.c
7377 F: drivers/scsi/mac_scsi.*
7378 F: drivers/scsi/pas16.*
7379 F: drivers/scsi/sun3_scsi.*
7380 F: drivers/scsi/sun3_scsi_vme.c
7381 F: drivers/scsi/t128.*
7382
7383 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7384 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7385 L: linux-scsi@vger.kernel.org
7386 S: Maintained
7387 F: drivers/scsi/NCR_D700.*
7388
7389 NCT6775 HARDWARE MONITOR DRIVER
7390 M: Guenter Roeck <linux@roeck-us.net>
7391 L: lm-sensors@lm-sensors.org
7392 S: Maintained
7393 F: Documentation/hwmon/nct6775
7394 F: drivers/hwmon/nct6775.c
7395
7396 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7397 M: Faisal Latif <faisal.latif@intel.com>
7398 L: linux-rdma@vger.kernel.org
7399 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7400 S: Supported
7401 F: drivers/infiniband/hw/nes/
7402
7403 NETEM NETWORK EMULATOR
7404 M: Stephen Hemminger <stephen@networkplumber.org>
7405 L: netem@lists.linux-foundation.org
7406 S: Maintained
7407 F: net/sched/sch_netem.c
7408
7409 NETERION 10GbE DRIVERS (s2io/vxge)
7410 M: Jon Mason <jdmason@kudzu.us>
7411 L: netdev@vger.kernel.org
7412 S: Supported
7413 F: Documentation/networking/s2io.txt
7414 F: Documentation/networking/vxge.txt
7415 F: drivers/net/ethernet/neterion/
7416
7417 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7418 M: Pablo Neira Ayuso <pablo@netfilter.org>
7419 M: Patrick McHardy <kaber@trash.net>
7420 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7421 L: netfilter-devel@vger.kernel.org
7422 L: coreteam@netfilter.org
7423 W: http://www.netfilter.org/
7424 W: http://www.iptables.org/
7425 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
7426 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7427 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7428 S: Supported
7429 F: include/linux/netfilter*
7430 F: include/linux/netfilter/
7431 F: include/net/netfilter/
7432 F: include/uapi/linux/netfilter*
7433 F: include/uapi/linux/netfilter/
7434 F: net/*/netfilter.c
7435 F: net/*/netfilter/
7436 F: net/netfilter/
7437 F: net/bridge/br_netfilter*.c
7438
7439 NETLABEL
7440 M: Paul Moore <paul@paul-moore.com>
7441 W: http://netlabel.sf.net
7442 L: netdev@vger.kernel.org
7443 S: Maintained
7444 F: Documentation/netlabel/
7445 F: include/net/netlabel.h
7446 F: net/netlabel/
7447
7448 NETROM NETWORK LAYER
7449 M: Ralf Baechle <ralf@linux-mips.org>
7450 L: linux-hams@vger.kernel.org
7451 W: http://www.linux-ax25.org/
7452 S: Maintained
7453 F: include/net/netrom.h
7454 F: include/uapi/linux/netrom.h
7455 F: net/netrom/
7456
7457 NETRONOME ETHERNET DRIVERS
7458 M: Jakub Kicinski <jakub.kicinski@netronome.com>
7459 M: Rolf Neugebauer <rolf.neugebauer@netronome.com>
7460 L: oss-drivers@netronome.com
7461 S: Maintained
7462 F: drivers/net/ethernet/netronome/
7463
7464 NETWORK BLOCK DEVICE (NBD)
7465 M: Markus Pargmann <mpa@pengutronix.de>
7466 S: Maintained
7467 L: nbd-general@lists.sourceforge.net
7468 T: git git://git.pengutronix.de/git/mpa/linux-nbd.git
7469 F: Documentation/blockdev/nbd.txt
7470 F: drivers/block/nbd.c
7471 F: include/uapi/linux/nbd.h
7472
7473 NETWORK DROP MONITOR
7474 M: Neil Horman <nhorman@tuxdriver.com>
7475 L: netdev@vger.kernel.org
7476 S: Maintained
7477 W: https://fedorahosted.org/dropwatch/
7478 F: net/core/drop_monitor.c
7479
7480 NETWORKING [GENERAL]
7481 M: "David S. Miller" <davem@davemloft.net>
7482 L: netdev@vger.kernel.org
7483 W: http://www.linuxfoundation.org/en/Net
7484 Q: http://patchwork.ozlabs.org/project/netdev/list/
7485 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7486 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7487 S: Maintained
7488 F: net/
7489 F: include/net/
7490 F: include/linux/in.h
7491 F: include/linux/net.h
7492 F: include/linux/netdevice.h
7493 F: include/uapi/linux/in.h
7494 F: include/uapi/linux/net.h
7495 F: include/uapi/linux/netdevice.h
7496 F: include/uapi/linux/net_namespace.h
7497 F: tools/net/
7498 F: tools/testing/selftests/net/
7499 F: lib/random32.c
7500 F: lib/test_bpf.c
7501
7502 NETWORKING [IPv4/IPv6]
7503 M: "David S. Miller" <davem@davemloft.net>
7504 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7505 M: James Morris <jmorris@namei.org>
7506 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7507 M: Patrick McHardy <kaber@trash.net>
7508 L: netdev@vger.kernel.org
7509 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7510 S: Maintained
7511 F: net/ipv4/
7512 F: net/ipv6/
7513 F: include/net/ip*
7514 F: arch/x86/net/*
7515
7516 NETWORKING [IPSEC]
7517 M: Steffen Klassert <steffen.klassert@secunet.com>
7518 M: Herbert Xu <herbert@gondor.apana.org.au>
7519 M: "David S. Miller" <davem@davemloft.net>
7520 L: netdev@vger.kernel.org
7521 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7522 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7523 S: Maintained
7524 F: net/core/flow.c
7525 F: net/xfrm/
7526 F: net/key/
7527 F: net/ipv4/xfrm*
7528 F: net/ipv4/esp4.c
7529 F: net/ipv4/ah4.c
7530 F: net/ipv4/ipcomp.c
7531 F: net/ipv4/ip_vti.c
7532 F: net/ipv6/xfrm*
7533 F: net/ipv6/esp6.c
7534 F: net/ipv6/ah6.c
7535 F: net/ipv6/ipcomp6.c
7536 F: net/ipv6/ip6_vti.c
7537 F: include/uapi/linux/xfrm.h
7538 F: include/net/xfrm.h
7539
7540 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7541 M: Paul Moore <paul@paul-moore.com>
7542 L: netdev@vger.kernel.org
7543 S: Maintained
7544
7545 NETWORKING [WIRELESS]
7546 L: linux-wireless@vger.kernel.org
7547 Q: http://patchwork.kernel.org/project/linux-wireless/list/
7548
7549 NETWORKING DRIVERS
7550 L: netdev@vger.kernel.org
7551 W: http://www.linuxfoundation.org/en/Net
7552 Q: http://patchwork.ozlabs.org/project/netdev/list/
7553 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7554 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7555 S: Odd Fixes
7556 F: drivers/net/
7557 F: include/linux/if_*
7558 F: include/linux/netdevice.h
7559 F: include/linux/etherdevice.h
7560 F: include/linux/fcdevice.h
7561 F: include/linux/fddidevice.h
7562 F: include/linux/hippidevice.h
7563 F: include/linux/inetdevice.h
7564 F: include/uapi/linux/if_*
7565 F: include/uapi/linux/netdevice.h
7566
7567 NETWORKING DRIVERS (WIRELESS)
7568 M: Kalle Valo <kvalo@codeaurora.org>
7569 L: linux-wireless@vger.kernel.org
7570 Q: http://patchwork.kernel.org/project/linux-wireless/list/
7571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7572 S: Maintained
7573 F: drivers/net/wireless/
7574
7575 NETXEN (1/10) GbE SUPPORT
7576 M: Manish Chopra <manish.chopra@qlogic.com>
7577 M: Sony Chacko <sony.chacko@qlogic.com>
7578 M: Rajesh Borundia <rajesh.borundia@qlogic.com>
7579 L: netdev@vger.kernel.org
7580 W: http://www.qlogic.com
7581 S: Supported
7582 F: drivers/net/ethernet/qlogic/netxen/
7583
7584 NFC SUBSYSTEM
7585 M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7586 M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7587 M: Samuel Ortiz <sameo@linux.intel.com>
7588 L: linux-wireless@vger.kernel.org
7589 L: linux-nfc@lists.01.org (subscribers-only)
7590 S: Supported
7591 F: net/nfc/
7592 F: include/net/nfc/
7593 F: include/uapi/linux/nfc.h
7594 F: drivers/nfc/
7595 F: include/linux/platform_data/microread.h
7596 F: include/linux/platform_data/nfcmrvl.h
7597 F: include/linux/platform_data/nxp-nci.h
7598 F: include/linux/platform_data/pn544.h
7599 F: include/linux/platform_data/st21nfca.h
7600 F: include/linux/platform_data/st-nci.h
7601 F: Documentation/devicetree/bindings/net/nfc/
7602
7603 NFS, SUNRPC, AND LOCKD CLIENTS
7604 M: Trond Myklebust <trond.myklebust@primarydata.com>
7605 M: Anna Schumaker <anna.schumaker@netapp.com>
7606 L: linux-nfs@vger.kernel.org
7607 W: http://client.linux-nfs.org
7608 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7609 S: Maintained
7610 F: fs/lockd/
7611 F: fs/nfs/
7612 F: fs/nfs_common/
7613 F: net/sunrpc/
7614 F: include/linux/lockd/
7615 F: include/linux/nfs*
7616 F: include/linux/sunrpc/
7617 F: include/uapi/linux/nfs*
7618 F: include/uapi/linux/sunrpc/
7619
7620 NILFS2 FILESYSTEM
7621 M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7622 L: linux-nilfs@vger.kernel.org
7623 W: http://nilfs.sourceforge.net/
7624 T: git git://github.com/konis/nilfs2.git
7625 S: Supported
7626 F: Documentation/filesystems/nilfs2.txt
7627 F: fs/nilfs2/
7628 F: include/linux/nilfs2_fs.h
7629 F: include/trace/events/nilfs2.h
7630
7631 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7632 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7633 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7634 S: Maintained
7635 F: Documentation/scsi/NinjaSCSI.txt
7636 F: drivers/scsi/pcmcia/nsp_*
7637
7638 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7639 M: GOTO Masanori <gotom@debian.or.jp>
7640 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7641 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7642 S: Maintained
7643 F: Documentation/scsi/NinjaSCSI.txt
7644 F: drivers/scsi/nsp32*
7645
7646 NIOS2 ARCHITECTURE
7647 M: Ley Foon Tan <lftan@altera.com>
7648 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7650 S: Maintained
7651 F: arch/nios2/
7652
7653 NOKIA N900 POWER SUPPLY DRIVERS
7654 M: Pali RohĂ¡r <pali.rohar@gmail.com>
7655 S: Maintained
7656 F: include/linux/power/bq2415x_charger.h
7657 F: include/linux/power/bq27xxx_battery.h
7658 F: include/linux/power/isp1704_charger.h
7659 F: drivers/power/bq2415x_charger.c
7660 F: drivers/power/bq27xxx_battery.c
7661 F: drivers/power/isp1704_charger.c
7662 F: drivers/power/rx51_battery.c
7663
7664 NTB DRIVER CORE
7665 M: Jon Mason <jdmason@kudzu.us>
7666 M: Dave Jiang <dave.jiang@intel.com>
7667 M: Allen Hubbe <Allen.Hubbe@emc.com>
7668 L: linux-ntb@googlegroups.com
7669 S: Supported
7670 W: https://github.com/jonmason/ntb/wiki
7671 T: git git://github.com/jonmason/ntb.git
7672 F: drivers/ntb/
7673 F: drivers/net/ntb_netdev.c
7674 F: include/linux/ntb.h
7675 F: include/linux/ntb_transport.h
7676
7677 NTB INTEL DRIVER
7678 M: Jon Mason <jdmason@kudzu.us>
7679 M: Dave Jiang <dave.jiang@intel.com>
7680 L: linux-ntb@googlegroups.com
7681 S: Supported
7682 W: https://github.com/jonmason/ntb/wiki
7683 T: git git://github.com/jonmason/ntb.git
7684 F: drivers/ntb/hw/intel/
7685
7686 NTFS FILESYSTEM
7687 M: Anton Altaparmakov <anton@tuxera.com>
7688 L: linux-ntfs-dev@lists.sourceforge.net
7689 W: http://www.tuxera.com/
7690 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7691 S: Supported
7692 F: Documentation/filesystems/ntfs.txt
7693 F: fs/ntfs/
7694
7695 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7696 M: Antonino Daplas <adaplas@gmail.com>
7697 L: linux-fbdev@vger.kernel.org
7698 S: Maintained
7699 F: drivers/video/fbdev/riva/
7700 F: drivers/video/fbdev/nvidia/
7701
7702 NVM EXPRESS DRIVER
7703 M: Keith Busch <keith.busch@intel.com>
7704 M: Jens Axboe <axboe@fb.com>
7705 L: linux-nvme@lists.infradead.org
7706 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7707 W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7708 S: Supported
7709 F: drivers/nvme/host/
7710 F: include/linux/nvme.h
7711
7712 NVMEM FRAMEWORK
7713 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7714 M: Maxime Ripard <maxime.ripard@free-electrons.com>
7715 S: Maintained
7716 F: drivers/nvmem/
7717 F: Documentation/devicetree/bindings/nvmem/
7718 F: include/linux/nvmem-consumer.h
7719 F: include/linux/nvmem-provider.h
7720
7721 NXP-NCI NFC DRIVER
7722 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
7723 R: Charles Gorand <charles.gorand@effinnov.com>
7724 L: linux-nfc@lists.01.org (moderated for non-subscribers)
7725 S: Supported
7726 F: drivers/nfc/nxp-nci
7727
7728 NXP TDA998X DRM DRIVER
7729 M: Russell King <rmk+kernel@arm.linux.org.uk>
7730 S: Supported
7731 F: drivers/gpu/drm/i2c/tda998x_drv.c
7732 F: include/drm/i2c/tda998x.h
7733
7734 NXP TFA9879 DRIVER
7735 M: Peter Rosin <peda@axentia.se>
7736 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7737 S: Maintained
7738 F: sound/soc/codecs/tfa9879*
7739
7740 OMAP SUPPORT
7741 M: Tony Lindgren <tony@atomide.com>
7742 L: linux-omap@vger.kernel.org
7743 W: http://www.muru.com/linux/omap/
7744 W: http://linux.omap.com/
7745 Q: http://patchwork.kernel.org/project/linux-omap/list/
7746 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7747 S: Maintained
7748 F: arch/arm/*omap*/
7749 F: arch/arm/configs/omap1_defconfig
7750 F: arch/arm/configs/omap2plus_defconfig
7751 F: drivers/i2c/busses/i2c-omap.c
7752 F: drivers/irqchip/irq-omap-intc.c
7753 F: drivers/mfd/*omap*.c
7754 F: drivers/mfd/menelaus.c
7755 F: drivers/mfd/palmas.c
7756 F: drivers/mfd/tps65217.c
7757 F: drivers/mfd/tps65218.c
7758 F: drivers/mfd/tps65910.c
7759 F: drivers/mfd/twl-core.[ch]
7760 F: drivers/mfd/twl4030*.c
7761 F: drivers/mfd/twl6030*.c
7762 F: drivers/mfd/twl6040*.c
7763 F: drivers/regulator/palmas-regulator*.c
7764 F: drivers/regulator/pbias-regulator.c
7765 F: drivers/regulator/tps65217-regulator.c
7766 F: drivers/regulator/tps65218-regulator.c
7767 F: drivers/regulator/tps65910-regulator.c
7768 F: drivers/regulator/twl-regulator.c
7769 F: include/linux/i2c-omap.h
7770
7771 OMAP DEVICE TREE SUPPORT
7772 M: Benoît Cousson <bcousson@baylibre.com>
7773 M: Tony Lindgren <tony@atomide.com>
7774 L: linux-omap@vger.kernel.org
7775 L: devicetree@vger.kernel.org
7776 S: Maintained
7777 F: arch/arm/boot/dts/*omap*
7778 F: arch/arm/boot/dts/*am3*
7779 F: arch/arm/boot/dts/*am4*
7780 F: arch/arm/boot/dts/*am5*
7781 F: arch/arm/boot/dts/*dra7*
7782
7783 OMAP CLOCK FRAMEWORK SUPPORT
7784 M: Paul Walmsley <paul@pwsan.com>
7785 L: linux-omap@vger.kernel.org
7786 S: Maintained
7787 F: arch/arm/*omap*/*clock*
7788
7789 OMAP POWER MANAGEMENT SUPPORT
7790 M: Kevin Hilman <khilman@deeprootsystems.com>
7791 L: linux-omap@vger.kernel.org
7792 S: Maintained
7793 F: arch/arm/*omap*/*pm*
7794 F: drivers/cpufreq/omap-cpufreq.c
7795
7796 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7797 M: Rajendra Nayak <rnayak@ti.com>
7798 M: Paul Walmsley <paul@pwsan.com>
7799 L: linux-omap@vger.kernel.org
7800 S: Maintained
7801 F: arch/arm/mach-omap2/prm*
7802
7803 OMAP AUDIO SUPPORT
7804 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
7805 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
7806 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7807 L: linux-omap@vger.kernel.org
7808 S: Maintained
7809 F: sound/soc/omap/
7810
7811 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7812 M: Roger Quadros <rogerq@ti.com>
7813 M: Tony Lindgren <tony@atomide.com>
7814 L: linux-omap@vger.kernel.org
7815 S: Maintained
7816 F: drivers/memory/omap-gpmc.c
7817 F: arch/arm/mach-omap2/*gpmc*
7818
7819 OMAP FRAMEBUFFER SUPPORT
7820 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
7821 L: linux-fbdev@vger.kernel.org
7822 L: linux-omap@vger.kernel.org
7823 S: Maintained
7824 F: drivers/video/fbdev/omap/
7825
7826 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7827 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
7828 L: linux-omap@vger.kernel.org
7829 L: linux-fbdev@vger.kernel.org
7830 S: Maintained
7831 F: drivers/video/fbdev/omap2/
7832 F: Documentation/arm/OMAP/DSS
7833
7834 OMAP HARDWARE SPINLOCK SUPPORT
7835 M: Ohad Ben-Cohen <ohad@wizery.com>
7836 L: linux-omap@vger.kernel.org
7837 S: Maintained
7838 F: drivers/hwspinlock/omap_hwspinlock.c
7839
7840 OMAP MMC SUPPORT
7841 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
7842 L: linux-omap@vger.kernel.org
7843 S: Maintained
7844 F: drivers/mmc/host/omap.c
7845
7846 OMAP HS MMC SUPPORT
7847 L: linux-mmc@vger.kernel.org
7848 L: linux-omap@vger.kernel.org
7849 S: Orphan
7850 F: drivers/mmc/host/omap_hsmmc.c
7851
7852 OMAP RANDOM NUMBER GENERATOR SUPPORT
7853 M: Deepak Saxena <dsaxena@plexity.net>
7854 S: Maintained
7855 F: drivers/char/hw_random/omap-rng.c
7856
7857 OMAP HWMOD SUPPORT
7858 M: Benoît Cousson <bcousson@baylibre.com>
7859 M: Paul Walmsley <paul@pwsan.com>
7860 L: linux-omap@vger.kernel.org
7861 S: Maintained
7862 F: arch/arm/mach-omap2/omap_hwmod.*
7863
7864 OMAP HWMOD DATA
7865 M: Paul Walmsley <paul@pwsan.com>
7866 L: linux-omap@vger.kernel.org
7867 S: Maintained
7868 F: arch/arm/mach-omap2/omap_hwmod*data*
7869
7870 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7871 M: Benoît Cousson <bcousson@baylibre.com>
7872 L: linux-omap@vger.kernel.org
7873 S: Maintained
7874 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7875
7876 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7877 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7878 L: linux-media@vger.kernel.org
7879 S: Maintained
7880 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
7881 F: drivers/media/platform/omap3isp/
7882 F: drivers/staging/media/omap4iss/
7883
7884 OMAP USB SUPPORT
7885 M: Felipe Balbi <balbi@ti.com>
7886 L: linux-usb@vger.kernel.org
7887 L: linux-omap@vger.kernel.org
7888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7889 S: Maintained
7890 F: drivers/usb/*/*omap*
7891 F: arch/arm/*omap*/usb*
7892
7893 OMAP GPIO DRIVER
7894 M: Grygorii Strashko <grygorii.strashko@ti.com>
7895 M: Santosh Shilimkar <ssantosh@kernel.org>
7896 M: Kevin Hilman <khilman@deeprootsystems.com>
7897 L: linux-omap@vger.kernel.org
7898 S: Maintained
7899 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
7900 F: drivers/gpio/gpio-omap.c
7901
7902 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7903 M: Mark Jackson <mpfj@newflow.co.uk>
7904 L: linux-omap@vger.kernel.org
7905 S: Maintained
7906 F: arch/arm/boot/dts/am335x-nano.dts
7907
7908 OMFS FILESYSTEM
7909 M: Bob Copeland <me@bobcopeland.com>
7910 L: linux-karma-devel@lists.sourceforge.net
7911 S: Maintained
7912 F: Documentation/filesystems/omfs.txt
7913 F: fs/omfs/
7914
7915 OMNIKEY CARDMAN 4000 DRIVER
7916 M: Harald Welte <laforge@gnumonks.org>
7917 S: Maintained
7918 F: drivers/char/pcmcia/cm4000_cs.c
7919 F: include/linux/cm4000_cs.h
7920 F: include/uapi/linux/cm4000_cs.h
7921
7922 OMNIKEY CARDMAN 4040 DRIVER
7923 M: Harald Welte <laforge@gnumonks.org>
7924 S: Maintained
7925 F: drivers/char/pcmcia/cm4040_cs.*
7926
7927 OMNIVISION OV7670 SENSOR DRIVER
7928 M: Jonathan Corbet <corbet@lwn.net>
7929 L: linux-media@vger.kernel.org
7930 T: git git://linuxtv.org/media_tree.git
7931 S: Maintained
7932 F: drivers/media/i2c/ov7670.c
7933
7934 ONENAND FLASH DRIVER
7935 M: Kyungmin Park <kyungmin.park@samsung.com>
7936 L: linux-mtd@lists.infradead.org
7937 S: Maintained
7938 F: drivers/mtd/onenand/
7939 F: include/linux/mtd/onenand*.h
7940
7941 ONSTREAM SCSI TAPE DRIVER
7942 M: Willem Riede <osst@riede.org>
7943 L: osst-users@lists.sourceforge.net
7944 L: linux-scsi@vger.kernel.org
7945 S: Maintained
7946 F: Documentation/scsi/osst.txt
7947 F: drivers/scsi/osst.*
7948 F: drivers/scsi/osst_*.h
7949 F: drivers/scsi/st.h
7950
7951 OPENCORES I2C BUS DRIVER
7952 M: Peter Korsgaard <jacmet@sunsite.dk>
7953 L: linux-i2c@vger.kernel.org
7954 S: Maintained
7955 F: Documentation/i2c/busses/i2c-ocores
7956 F: drivers/i2c/busses/i2c-ocores.c
7957
7958 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7959 M: Rob Herring <robh+dt@kernel.org>
7960 M: Frank Rowand <frowand.list@gmail.com>
7961 M: Grant Likely <grant.likely@linaro.org>
7962 L: devicetree@vger.kernel.org
7963 W: http://www.devicetree.org/
7964 T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7965 S: Maintained
7966 F: drivers/of/
7967 F: include/linux/of*.h
7968 F: scripts/dtc/
7969
7970 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7971 M: Rob Herring <robh+dt@kernel.org>
7972 M: Pawel Moll <pawel.moll@arm.com>
7973 M: Mark Rutland <mark.rutland@arm.com>
7974 M: Ian Campbell <ijc+devicetree@hellion.org.uk>
7975 M: Kumar Gala <galak@codeaurora.org>
7976 L: devicetree@vger.kernel.org
7977 S: Maintained
7978 F: Documentation/devicetree/
7979 F: arch/*/boot/dts/
7980 F: include/dt-bindings/
7981
7982 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7983 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7984 L: devicetree@vger.kernel.org
7985 S: Maintained
7986 F: Documentation/devicetree/dynamic-resolution-notes.txt
7987 F: Documentation/devicetree/overlay-notes.txt
7988 F: drivers/of/overlay.c
7989 F: drivers/of/resolver.c
7990
7991 OPENRISC ARCHITECTURE
7992 M: Jonas Bonn <jonas@southpole.se>
7993 W: http://openrisc.net
7994 L: linux@lists.openrisc.net (moderated for non-subscribers)
7995 S: Maintained
7996 T: git git://openrisc.net/~jonas/linux
7997 F: arch/openrisc/
7998
7999 OPENVSWITCH
8000 M: Pravin Shelar <pshelar@nicira.com>
8001 L: netdev@vger.kernel.org
8002 L: dev@openvswitch.org
8003 W: http://openvswitch.org
8004 S: Maintained
8005 F: net/openvswitch/
8006 F: include/uapi/linux/openvswitch.h
8007
8008 OPERATING PERFORMANCE POINTS (OPP)
8009 M: Viresh Kumar <vireshk@kernel.org>
8010 M: Nishanth Menon <nm@ti.com>
8011 M: Stephen Boyd <sboyd@codeaurora.org>
8012 L: linux-pm@vger.kernel.org
8013 S: Maintained
8014 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8015 F: drivers/base/power/opp/
8016 F: include/linux/pm_opp.h
8017 F: Documentation/power/opp.txt
8018 F: Documentation/devicetree/bindings/opp/
8019
8020 OPL4 DRIVER
8021 M: Clemens Ladisch <clemens@ladisch.de>
8022 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8023 T: git git://git.alsa-project.org/alsa-kernel.git
8024 S: Maintained
8025 F: sound/drivers/opl4/
8026
8027 OPROFILE
8028 M: Robert Richter <rric@kernel.org>
8029 L: oprofile-list@lists.sf.net
8030 S: Maintained
8031 F: arch/*/include/asm/oprofile*.h
8032 F: arch/*/oprofile/
8033 F: drivers/oprofile/
8034 F: include/linux/oprofile.h
8035
8036 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8037 M: Mark Fasheh <mfasheh@suse.com>
8038 M: Joel Becker <jlbec@evilplan.org>
8039 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8040 W: http://ocfs2.wiki.kernel.org
8041 S: Supported
8042 F: Documentation/filesystems/ocfs2.txt
8043 F: Documentation/filesystems/dlmfs.txt
8044 F: fs/ocfs2/
8045
8046 ORINOCO DRIVER
8047 L: linux-wireless@vger.kernel.org
8048 W: http://wireless.kernel.org/en/users/Drivers/orinoco
8049 W: http://www.nongnu.org/orinoco/
8050 S: Orphan
8051 F: drivers/net/wireless/intersil/orinoco/
8052
8053 OSD LIBRARY and FILESYSTEM
8054 M: Boaz Harrosh <ooo@electrozaur.com>
8055 M: Benny Halevy <bhalevy@primarydata.com>
8056 L: osd-dev@open-osd.org
8057 W: http://open-osd.org
8058 T: git git://git.open-osd.org/open-osd.git
8059 S: Maintained
8060 F: drivers/scsi/osd/
8061 F: include/scsi/osd_*
8062 F: fs/exofs/
8063
8064 OVERLAY FILESYSTEM
8065 M: Miklos Szeredi <miklos@szeredi.hu>
8066 L: linux-unionfs@vger.kernel.org
8067 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8068 S: Supported
8069 F: fs/overlayfs/
8070 F: Documentation/filesystems/overlayfs.txt
8071
8072 P54 WIRELESS DRIVER
8073 M: Christian Lamparter <chunkeey@googlemail.com>
8074 L: linux-wireless@vger.kernel.org
8075 W: http://wireless.kernel.org/en/users/Drivers/p54
8076 S: Maintained
8077 F: drivers/net/wireless/intersil/p54/
8078
8079 PA SEMI ETHERNET DRIVER
8080 M: Olof Johansson <olof@lixom.net>
8081 L: netdev@vger.kernel.org
8082 S: Maintained
8083 F: drivers/net/ethernet/pasemi/*
8084
8085 PA SEMI SMBUS DRIVER
8086 M: Olof Johansson <olof@lixom.net>
8087 L: linux-i2c@vger.kernel.org
8088 S: Maintained
8089 F: drivers/i2c/busses/i2c-pasemi.c
8090
8091 PADATA PARALLEL EXECUTION MECHANISM
8092 M: Steffen Klassert <steffen.klassert@secunet.com>
8093 L: linux-crypto@vger.kernel.org
8094 S: Maintained
8095 F: kernel/padata.c
8096 F: include/linux/padata.h
8097 F: Documentation/padata.txt
8098
8099 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8100 M: Harald Welte <laforge@gnumonks.org>
8101 L: platform-driver-x86@vger.kernel.org
8102 S: Maintained
8103 F: drivers/platform/x86/panasonic-laptop.c
8104
8105 PANASONIC MN10300/AM33/AM34 PORT
8106 M: David Howells <dhowells@redhat.com>
8107 M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8108 L: linux-am33-list@redhat.com (moderated for non-subscribers)
8109 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8110 S: Maintained
8111 F: Documentation/mn10300/
8112 F: arch/mn10300/
8113
8114 PARALLEL PORT SUBSYSTEM
8115 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8116 M: Sudip Mukherjee <sudip@vectorindia.org>
8117 L: linux-parport@lists.infradead.org (subscribers-only)
8118 S: Maintained
8119 F: drivers/parport/
8120 F: include/linux/parport*.h
8121 F: drivers/char/ppdev.c
8122 F: include/uapi/linux/ppdev.h
8123 F: Documentation/parport*.txt
8124
8125 PARAVIRT_OPS INTERFACE
8126 M: Jeremy Fitzhardinge <jeremy@goop.org>
8127 M: Chris Wright <chrisw@sous-sol.org>
8128 M: Alok Kataria <akataria@vmware.com>
8129 M: Rusty Russell <rusty@rustcorp.com.au>
8130 L: virtualization@lists.linux-foundation.org
8131 S: Supported
8132 F: Documentation/virtual/paravirt_ops.txt
8133 F: arch/*/kernel/paravirt*
8134 F: arch/*/include/asm/paravirt.h
8135
8136 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8137 M: Tim Waugh <tim@cyberelk.net>
8138 L: linux-parport@lists.infradead.org (subscribers-only)
8139 S: Maintained
8140 F: Documentation/blockdev/paride.txt
8141 F: drivers/block/paride/
8142
8143 PARISC ARCHITECTURE
8144 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
8145 M: Helge Deller <deller@gmx.de>
8146 L: linux-parisc@vger.kernel.org
8147 W: http://www.parisc-linux.org/
8148 Q: http://patchwork.kernel.org/project/linux-parisc/list/
8149 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8150 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8151 S: Maintained
8152 F: arch/parisc/
8153 F: Documentation/parisc/
8154 F: drivers/parisc/
8155 F: drivers/char/agp/parisc-agp.c
8156 F: drivers/input/serio/gscps2.c
8157 F: drivers/parport/parport_gsc.*
8158 F: drivers/tty/serial/8250/8250_gsc.c
8159 F: drivers/video/fbdev/sti*
8160 F: drivers/video/console/sti*
8161 F: drivers/video/logo/logo_parisc*
8162
8163 PC87360 HARDWARE MONITORING DRIVER
8164 M: Jim Cromie <jim.cromie@gmail.com>
8165 L: lm-sensors@lm-sensors.org
8166 S: Maintained
8167 F: Documentation/hwmon/pc87360
8168 F: drivers/hwmon/pc87360.c
8169
8170 PC8736x GPIO DRIVER
8171 M: Jim Cromie <jim.cromie@gmail.com>
8172 S: Maintained
8173 F: drivers/char/pc8736x_gpio.c
8174
8175 PC87427 HARDWARE MONITORING DRIVER
8176 M: Jean Delvare <jdelvare@suse.com>
8177 L: lm-sensors@lm-sensors.org
8178 S: Maintained
8179 F: Documentation/hwmon/pc87427
8180 F: drivers/hwmon/pc87427.c
8181
8182 PCA9532 LED DRIVER
8183 M: Riku Voipio <riku.voipio@iki.fi>
8184 S: Maintained
8185 F: drivers/leds/leds-pca9532.c
8186 F: include/linux/leds-pca9532.h
8187
8188 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8189 M: Guenter Roeck <linux@roeck-us.net>
8190 L: linux-i2c@vger.kernel.org
8191 S: Maintained
8192 F: drivers/i2c/muxes/i2c-mux-pca9541.c
8193
8194 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8195 M: Khalid Aziz <khalid@gonehiking.org>
8196 S: Maintained
8197 F: drivers/firmware/pcdp.*
8198
8199 PCI ERROR RECOVERY
8200 M: Linas Vepstas <linasvepstas@gmail.com>
8201 L: linux-pci@vger.kernel.org
8202 S: Supported
8203 F: Documentation/PCI/pci-error-recovery.txt
8204
8205 PCI SUBSYSTEM
8206 M: Bjorn Helgaas <bhelgaas@google.com>
8207 L: linux-pci@vger.kernel.org
8208 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
8209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8210 S: Supported
8211 F: Documentation/PCI/
8212 F: drivers/pci/
8213 F: include/linux/pci*
8214 F: arch/x86/pci/
8215 F: arch/x86/kernel/quirks.c
8216
8217 PCI DRIVER FOR ALTERA PCIE IP
8218 M: Ley Foon Tan <lftan@altera.com>
8219 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8220 L: linux-pci@vger.kernel.org
8221 S: Supported
8222 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
8223 F: drivers/pci/host/pcie-altera.c
8224
8225 PCI DRIVER FOR ARM VERSATILE PLATFORM
8226 M: Rob Herring <robh@kernel.org>
8227 L: linux-pci@vger.kernel.org
8228 L: linux-arm-kernel@lists.infradead.org
8229 S: Maintained
8230 F: Documentation/devicetree/bindings/pci/versatile.txt
8231 F: drivers/pci/host/pci-versatile.c
8232
8233 PCI DRIVER FOR APPLIEDMICRO XGENE
8234 M: Tanmay Inamdar <tinamdar@apm.com>
8235 L: linux-pci@vger.kernel.org
8236 L: linux-arm-kernel@lists.infradead.org
8237 S: Maintained
8238 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
8239 F: drivers/pci/host/pci-xgene.c
8240
8241 PCI DRIVER FOR FREESCALE LAYERSCAPE
8242 M: Minghuan Lian <minghuan.Lian@freescale.com>
8243 M: Mingkai Hu <mingkai.hu@freescale.com>
8244 M: Roy Zang <tie-fei.zang@freescale.com>
8245 L: linuxppc-dev@lists.ozlabs.org
8246 L: linux-pci@vger.kernel.org
8247 L: linux-arm-kernel@lists.infradead.org
8248 S: Maintained
8249 F: drivers/pci/host/*layerscape*
8250
8251 PCI DRIVER FOR IMX6
8252 M: Richard Zhu <Richard.Zhu@freescale.com>
8253 M: Lucas Stach <l.stach@pengutronix.de>
8254 L: linux-pci@vger.kernel.org
8255 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8256 S: Maintained
8257 F: drivers/pci/host/*imx6*
8258
8259 PCI DRIVER FOR TI KEYSTONE
8260 M: Murali Karicheri <m-karicheri2@ti.com>
8261 L: linux-pci@vger.kernel.org
8262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8263 S: Maintained
8264 F: drivers/pci/host/*keystone*
8265
8266 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8267 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8268 M: Jason Cooper <jason@lakedaemon.net>
8269 L: linux-pci@vger.kernel.org
8270 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8271 S: Maintained
8272 F: drivers/pci/host/*mvebu*
8273
8274 PCI DRIVER FOR NVIDIA TEGRA
8275 M: Thierry Reding <thierry.reding@gmail.com>
8276 L: linux-tegra@vger.kernel.org
8277 L: linux-pci@vger.kernel.org
8278 S: Supported
8279 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8280 F: drivers/pci/host/pci-tegra.c
8281
8282 PCI DRIVER FOR TI DRA7XX
8283 M: Kishon Vijay Abraham I <kishon@ti.com>
8284 L: linux-omap@vger.kernel.org
8285 L: linux-pci@vger.kernel.org
8286 S: Supported
8287 F: Documentation/devicetree/bindings/pci/ti-pci.txt
8288 F: drivers/pci/host/pci-dra7xx.c
8289
8290 PCI DRIVER FOR RENESAS R-CAR
8291 M: Simon Horman <horms@verge.net.au>
8292 L: linux-pci@vger.kernel.org
8293 L: linux-renesas-soc@vger.kernel.org
8294 S: Maintained
8295 F: drivers/pci/host/*rcar*
8296
8297 PCI DRIVER FOR SAMSUNG EXYNOS
8298 M: Jingoo Han <jingoohan1@gmail.com>
8299 L: linux-pci@vger.kernel.org
8300 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8301 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8302 S: Maintained
8303 F: drivers/pci/host/pci-exynos.c
8304
8305 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8306 M: Jingoo Han <jingoohan1@gmail.com>
8307 M: Pratyush Anand <pratyush.anand@gmail.com>
8308 L: linux-pci@vger.kernel.org
8309 S: Maintained
8310 F: drivers/pci/host/*designware*
8311
8312 PCI DRIVER FOR GENERIC OF HOSTS
8313 M: Will Deacon <will.deacon@arm.com>
8314 L: linux-pci@vger.kernel.org
8315 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8316 S: Maintained
8317 F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
8318 F: drivers/pci/host/pci-host-generic.c
8319
8320 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8321 M: Keith Busch <keith.busch@intel.com>
8322 L: linux-pci@vger.kernel.org
8323 S: Supported
8324 F: arch/x86/pci/vmd.c
8325
8326 PCIE DRIVER FOR ST SPEAR13XX
8327 M: Pratyush Anand <pratyush.anand@gmail.com>
8328 L: linux-pci@vger.kernel.org
8329 S: Maintained
8330 F: drivers/pci/host/*spear*
8331
8332 PCI MSI DRIVER FOR ALTERA MSI IP
8333 M: Ley Foon Tan <lftan@altera.com>
8334 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
8335 L: linux-pci@vger.kernel.org
8336 S: Supported
8337 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8338 F: drivers/pci/host/pcie-altera-msi.c
8339
8340 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8341 M: Duc Dang <dhdang@apm.com>
8342 L: linux-pci@vger.kernel.org
8343 L: linux-arm-kernel@lists.infradead.org
8344 S: Maintained
8345 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8346 F: drivers/pci/host/pci-xgene-msi.c
8347
8348 PCIE DRIVER FOR HISILICON
8349 M: Zhou Wang <wangzhou1@hisilicon.com>
8350 M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
8351 L: linux-pci@vger.kernel.org
8352 S: Maintained
8353 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8354 F: drivers/pci/host/pcie-hisi.c
8355
8356 PCIE DRIVER FOR QUALCOMM MSM
8357 M: Stanimir Varbanov <svarbanov@mm-sol.com>
8358 L: linux-pci@vger.kernel.org
8359 L: linux-arm-msm@vger.kernel.org
8360 S: Maintained
8361 F: drivers/pci/host/*qcom*
8362
8363 PCMCIA SUBSYSTEM
8364 P: Linux PCMCIA Team
8365 L: linux-pcmcia@lists.infradead.org
8366 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8367 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8368 S: Maintained
8369 F: Documentation/pcmcia/
8370 F: drivers/pcmcia/
8371 F: include/pcmcia/
8372
8373 PCNET32 NETWORK DRIVER
8374 M: Don Fry <pcnet32@frontier.com>
8375 L: netdev@vger.kernel.org
8376 S: Maintained
8377 F: drivers/net/ethernet/amd/pcnet32.c
8378
8379 PCRYPT PARALLEL CRYPTO ENGINE
8380 M: Steffen Klassert <steffen.klassert@secunet.com>
8381 L: linux-crypto@vger.kernel.org
8382 S: Maintained
8383 F: crypto/pcrypt.c
8384 F: include/crypto/pcrypt.h
8385
8386 PER-CPU MEMORY ALLOCATOR
8387 M: Tejun Heo <tj@kernel.org>
8388 M: Christoph Lameter <cl@linux-foundation.org>
8389 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8390 S: Maintained
8391 F: include/linux/percpu*.h
8392 F: mm/percpu*.c
8393 F: arch/*/include/asm/percpu.h
8394
8395 PER-TASK DELAY ACCOUNTING
8396 M: Balbir Singh <bsingharora@gmail.com>
8397 S: Maintained
8398 F: include/linux/delayacct.h
8399 F: kernel/delayacct.c
8400
8401 PERFORMANCE EVENTS SUBSYSTEM
8402 M: Peter Zijlstra <peterz@infradead.org>
8403 M: Ingo Molnar <mingo@redhat.com>
8404 M: Arnaldo Carvalho de Melo <acme@kernel.org>
8405 L: linux-kernel@vger.kernel.org
8406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8407 S: Supported
8408 F: kernel/events/*
8409 F: include/linux/perf_event.h
8410 F: include/uapi/linux/perf_event.h
8411 F: arch/*/kernel/perf_event*.c
8412 F: arch/*/kernel/*/perf_event*.c
8413 F: arch/*/kernel/*/*/perf_event*.c
8414 F: arch/*/include/asm/perf_event.h
8415 F: arch/*/kernel/perf_callchain.c
8416 F: tools/perf/
8417
8418 PERSONALITY HANDLING
8419 M: Christoph Hellwig <hch@infradead.org>
8420 L: linux-abi-devel@lists.sourceforge.net
8421 S: Maintained
8422 F: include/linux/personality.h
8423 F: include/uapi/linux/personality.h
8424
8425 PHONET PROTOCOL
8426 M: Remi Denis-Courmont <courmisch@gmail.com>
8427 S: Supported
8428 F: Documentation/networking/phonet.txt
8429 F: include/linux/phonet.h
8430 F: include/net/phonet/
8431 F: include/uapi/linux/phonet.h
8432 F: net/phonet/
8433
8434 PHRAM MTD DRIVER
8435 M: Joern Engel <joern@lazybastard.org>
8436 L: linux-mtd@lists.infradead.org
8437 S: Maintained
8438 F: drivers/mtd/devices/phram.c
8439
8440 PICOLCD HID DRIVER
8441 M: Bruno Prémont <bonbons@linux-vserver.org>
8442 L: linux-input@vger.kernel.org
8443 S: Maintained
8444 F: drivers/hid/hid-picolcd*
8445
8446 PICOXCELL SUPPORT
8447 M: Jamie Iles <jamie@jamieiles.com>
8448 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8449 T: git git://github.com/jamieiles/linux-2.6-ji.git
8450 S: Supported
8451 F: arch/arm/boot/dts/picoxcell*
8452 F: arch/arm/mach-picoxcell/
8453 F: drivers/crypto/picoxcell*
8454
8455 PIN CONTROL SUBSYSTEM
8456 M: Linus Walleij <linus.walleij@linaro.org>
8457 L: linux-gpio@vger.kernel.org
8458 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8459 S: Maintained
8460 F: drivers/pinctrl/
8461 F: include/linux/pinctrl/
8462
8463 PIN CONTROLLER - ATMEL AT91
8464 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8465 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8466 S: Maintained
8467 F: drivers/pinctrl/pinctrl-at91.*
8468
8469 PIN CONTROLLER - ATMEL AT91 PIO4
8470 M: Ludovic Desroches <ludovic.desroches@atmel.com>
8471 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8472 L: linux-gpio@vger.kernel.org
8473 S: Supported
8474 F: drivers/pinctrl/pinctrl-at91-pio4.*
8475
8476 PIN CONTROLLER - INTEL
8477 M: Mika Westerberg <mika.westerberg@linux.intel.com>
8478 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
8479 S: Maintained
8480 F: drivers/pinctrl/intel/
8481
8482 PIN CONTROLLER - RENESAS
8483 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8484 M: Geert Uytterhoeven <geert+renesas@glider.be>
8485 L: linux-renesas-soc@vger.kernel.org
8486 S: Maintained
8487 F: drivers/pinctrl/sh-pfc/
8488
8489 PIN CONTROLLER - SAMSUNG
8490 M: Tomasz Figa <tomasz.figa@gmail.com>
8491 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8492 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8493 S: Maintained
8494 F: drivers/pinctrl/samsung/
8495
8496 PIN CONTROLLER - SINGLE
8497 M: Tony Lindgren <tony@atomide.com>
8498 M: Haojian Zhuang <haojian.zhuang@linaro.org>
8499 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8500 L: linux-omap@vger.kernel.org
8501 S: Maintained
8502 F: drivers/pinctrl/pinctrl-single.c
8503
8504 PIN CONTROLLER - ST SPEAR
8505 M: Viresh Kumar <vireshk@kernel.org>
8506 L: spear-devel@list.st.com
8507 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8508 W: http://www.st.com/spear
8509 S: Maintained
8510 F: drivers/pinctrl/spear/
8511
8512 PKTCDVD DRIVER
8513 M: Jiri Kosina <jikos@kernel.org>
8514 S: Maintained
8515 F: drivers/block/pktcdvd.c
8516 F: include/linux/pktcdvd.h
8517 F: include/uapi/linux/pktcdvd.h
8518
8519 PKUNITY SOC DRIVERS
8520 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8521 W: http://mprc.pku.edu.cn/~guanxuetao/linux
8522 S: Maintained
8523 T: git git://github.com/gxt/linux.git
8524 F: drivers/input/serio/i8042-unicore32io.h
8525 F: drivers/i2c/busses/i2c-puv3.c
8526 F: drivers/video/fbdev/fb-puv3.c
8527 F: drivers/rtc/rtc-puv3.c
8528
8529 PMBUS HARDWARE MONITORING DRIVERS
8530 M: Guenter Roeck <linux@roeck-us.net>
8531 L: lm-sensors@lm-sensors.org
8532 W: http://www.lm-sensors.org/
8533 W: http://www.roeck-us.net/linux/drivers/
8534 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8535 S: Maintained
8536 F: Documentation/hwmon/pmbus
8537 F: drivers/hwmon/pmbus/
8538 F: include/linux/i2c/pmbus.h
8539
8540 PMC SIERRA MaxRAID DRIVER
8541 L: linux-scsi@vger.kernel.org
8542 W: http://www.pmc-sierra.com/
8543 S: Orphan
8544 F: drivers/scsi/pmcraid.*
8545
8546 PMC SIERRA PM8001 DRIVER
8547 M: Jack Wang <jinpu.wang@profitbricks.com>
8548 M: lindar_liu@usish.com
8549 L: pmchba@pmcs.com
8550 L: linux-scsi@vger.kernel.org
8551 S: Supported
8552 F: drivers/scsi/pm8001/
8553
8554 POSIX CLOCKS and TIMERS
8555 M: Thomas Gleixner <tglx@linutronix.de>
8556 L: linux-kernel@vger.kernel.org
8557 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8558 S: Maintained
8559 F: fs/timerfd.c
8560 F: include/linux/timer*
8561 F: kernel/time/*timer*
8562
8563 POWER MANAGEMENT CORE
8564 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8565 L: linux-pm@vger.kernel.org
8566 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8567 S: Supported
8568 F: drivers/base/power/
8569 F: include/linux/pm.h
8570 F: include/linux/pm_*
8571 F: include/linux/powercap.h
8572 F: drivers/powercap/
8573
8574 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8575 M: Sebastian Reichel <sre@kernel.org>
8576 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8577 M: David Woodhouse <dwmw2@infradead.org>
8578 L: linux-pm@vger.kernel.org
8579 T: git git://git.infradead.org/battery-2.6.git
8580 S: Maintained
8581 F: include/linux/power_supply.h
8582 F: drivers/power/
8583 X: drivers/power/avs/
8584
8585 POWER STATE COORDINATION INTERFACE (PSCI)
8586 M: Mark Rutland <mark.rutland@arm.com>
8587 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8588 L: linux-arm-kernel@lists.infradead.org
8589 S: Maintained
8590 F: drivers/firmware/psci.c
8591 F: include/linux/psci.h
8592 F: include/uapi/linux/psci.h
8593
8594 PNP SUPPORT
8595 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8596 S: Maintained
8597 F: drivers/pnp/
8598
8599 PPP PROTOCOL DRIVERS AND COMPRESSORS
8600 M: Paul Mackerras <paulus@samba.org>
8601 L: linux-ppp@vger.kernel.org
8602 S: Maintained
8603 F: drivers/net/ppp/ppp_*
8604
8605 PPP OVER ATM (RFC 2364)
8606 M: Mitchell Blank Jr <mitch@sfgoth.com>
8607 S: Maintained
8608 F: net/atm/pppoatm.c
8609 F: include/uapi/linux/atmppp.h
8610
8611 PPP OVER ETHERNET
8612 M: Michal Ostrowski <mostrows@earthlink.net>
8613 S: Maintained
8614 F: drivers/net/ppp/pppoe.c
8615 F: drivers/net/ppp/pppox.c
8616
8617 PPP OVER L2TP
8618 M: James Chapman <jchapman@katalix.com>
8619 S: Maintained
8620 F: net/l2tp/l2tp_ppp.c
8621 F: include/linux/if_pppol2tp.h
8622 F: include/uapi/linux/if_pppol2tp.h
8623
8624 PPS SUPPORT
8625 M: Rodolfo Giometti <giometti@enneenne.com>
8626 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
8627 L: linuxpps@ml.enneenne.com (subscribers-only)
8628 S: Maintained
8629 F: Documentation/pps/
8630 F: drivers/pps/
8631 F: include/linux/pps*.h
8632
8633 PPTP DRIVER
8634 M: Dmitry Kozlov <xeb@mail.ru>
8635 L: netdev@vger.kernel.org
8636 S: Maintained
8637 F: drivers/net/ppp/pptp.c
8638 W: http://sourceforge.net/projects/accel-pptp
8639
8640 PREEMPTIBLE KERNEL
8641 M: Robert Love <rml@tech9.net>
8642 L: kpreempt-tech@lists.sourceforge.net
8643 W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8644 S: Supported
8645 F: Documentation/preempt-locking.txt
8646 F: include/linux/preempt.h
8647
8648 PRISM54 WIRELESS DRIVER
8649 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
8650 L: linux-wireless@vger.kernel.org
8651 W: http://wireless.kernel.org/en/users/Drivers/p54
8652 S: Obsolete
8653 F: drivers/net/wireless/intersil/prism54/
8654
8655 PS3 NETWORK SUPPORT
8656 M: Geoff Levand <geoff@infradead.org>
8657 L: netdev@vger.kernel.org
8658 L: linuxppc-dev@lists.ozlabs.org
8659 S: Maintained
8660 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
8661
8662 PS3 PLATFORM SUPPORT
8663 M: Geoff Levand <geoff@infradead.org>
8664 L: linuxppc-dev@lists.ozlabs.org
8665 S: Maintained
8666 F: arch/powerpc/boot/ps3*
8667 F: arch/powerpc/include/asm/lv1call.h
8668 F: arch/powerpc/include/asm/ps3*.h
8669 F: arch/powerpc/platforms/ps3/
8670 F: drivers/*/ps3*
8671 F: drivers/ps3/
8672 F: drivers/rtc/rtc-ps3.c
8673 F: drivers/usb/host/*ps3.c
8674 F: sound/ppc/snd_ps3*
8675
8676 PS3VRAM DRIVER
8677 M: Jim Paris <jim@jtan.com>
8678 M: Geoff Levand <geoff@infradead.org>
8679 L: linuxppc-dev@lists.ozlabs.org
8680 S: Maintained
8681 F: drivers/block/ps3vram.c
8682
8683 PSTORE FILESYSTEM
8684 M: Anton Vorontsov <anton@enomsg.org>
8685 M: Colin Cross <ccross@android.com>
8686 M: Kees Cook <keescook@chromium.org>
8687 M: Tony Luck <tony.luck@intel.com>
8688 S: Maintained
8689 T: git git://git.infradead.org/users/cbou/linux-pstore.git
8690 F: fs/pstore/
8691 F: include/linux/pstore*
8692 F: drivers/firmware/efi/efi-pstore.c
8693 F: drivers/acpi/apei/erst.c
8694
8695 PTP HARDWARE CLOCK SUPPORT
8696 M: Richard Cochran <richardcochran@gmail.com>
8697 L: netdev@vger.kernel.org
8698 S: Maintained
8699 W: http://linuxptp.sourceforge.net/
8700 F: Documentation/ABI/testing/sysfs-ptp
8701 F: Documentation/ptp/*
8702 F: drivers/net/ethernet/freescale/gianfar_ptp.c
8703 F: drivers/net/phy/dp83640*
8704 F: drivers/ptp/*
8705 F: include/linux/ptp_cl*
8706
8707 PTRACE SUPPORT
8708 M: Roland McGrath <roland@hack.frob.com>
8709 M: Oleg Nesterov <oleg@redhat.com>
8710 S: Maintained
8711 F: include/asm-generic/syscall.h
8712 F: include/linux/ptrace.h
8713 F: include/linux/regset.h
8714 F: include/linux/tracehook.h
8715 F: include/uapi/linux/ptrace.h
8716 F: kernel/ptrace.c
8717
8718 PVRUSB2 VIDEO4LINUX DRIVER
8719 M: Mike Isely <isely@pobox.com>
8720 L: pvrusb2@isely.net (subscribers-only)
8721 L: linux-media@vger.kernel.org
8722 W: http://www.isely.net/pvrusb2/
8723 T: git git://linuxtv.org/media_tree.git
8724 S: Maintained
8725 F: Documentation/video4linux/README.pvrusb2
8726 F: drivers/media/usb/pvrusb2/
8727
8728 PWC WEBCAM DRIVER
8729 M: Hans de Goede <hdegoede@redhat.com>
8730 L: linux-media@vger.kernel.org
8731 T: git git://linuxtv.org/media_tree.git
8732 S: Maintained
8733 F: drivers/media/usb/pwc/*
8734
8735 PWM FAN DRIVER
8736 M: Kamil Debski <k.debski@samsung.com>
8737 L: lm-sensors@lm-sensors.org
8738 S: Supported
8739 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8740 F: Documentation/hwmon/pwm-fan
8741 F: drivers/hwmon/pwm-fan.c
8742
8743 PWM SUBSYSTEM
8744 M: Thierry Reding <thierry.reding@gmail.com>
8745 L: linux-pwm@vger.kernel.org
8746 S: Maintained
8747 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8748 F: Documentation/pwm.txt
8749 F: Documentation/devicetree/bindings/pwm/
8750 F: include/linux/pwm.h
8751 F: drivers/pwm/
8752 F: drivers/video/backlight/pwm_bl.c
8753 F: include/linux/pwm_backlight.h
8754
8755 PXA2xx/PXA3xx SUPPORT
8756 M: Daniel Mack <daniel@zonque.org>
8757 M: Haojian Zhuang <haojian.zhuang@gmail.com>
8758 M: Robert Jarzmik <robert.jarzmik@free.fr>
8759 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8760 T: git git://github.com/hzhuang1/linux.git
8761 T: git git://github.com/rjarzmik/linux.git
8762 S: Maintained
8763 F: arch/arm/mach-pxa/
8764 F: drivers/dma/pxa*
8765 F: drivers/pcmcia/pxa2xx*
8766 F: drivers/pinctrl/pxa/
8767 F: drivers/spi/spi-pxa2xx*
8768 F: drivers/usb/gadget/udc/pxa2*
8769 F: include/sound/pxa2xx-lib.h
8770 F: sound/arm/pxa*
8771 F: sound/soc/pxa/
8772
8773 PXA GPIO DRIVER
8774 M: Robert Jarzmik <robert.jarzmik@free.fr>
8775 L: linux-gpio@vger.kernel.org
8776 S: Maintained
8777 F: drivers/gpio/gpio-pxa.c
8778
8779 PXA3xx NAND FLASH DRIVER
8780 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8781 L: linux-mtd@lists.infradead.org
8782 S: Maintained
8783 F: drivers/mtd/nand/pxa3xx_nand.c
8784
8785 MMP SUPPORT
8786 M: Eric Miao <eric.y.miao@gmail.com>
8787 M: Haojian Zhuang <haojian.zhuang@gmail.com>
8788 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8789 T: git git://github.com/hzhuang1/linux.git
8790 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
8791 S: Maintained
8792 F: arch/arm/mach-mmp/
8793
8794 PXA MMCI DRIVER
8795 S: Orphan
8796
8797 PXA RTC DRIVER
8798 M: Robert Jarzmik <robert.jarzmik@free.fr>
8799 L: rtc-linux@googlegroups.com
8800 S: Maintained
8801
8802 QAT DRIVER
8803 M: Tadeusz Struk <tadeusz.struk@intel.com>
8804 L: qat-linux@intel.com
8805 S: Supported
8806 F: drivers/crypto/qat/
8807
8808 QIB DRIVER
8809 M: Mike Marciniszyn <infinipath@intel.com>
8810 L: linux-rdma@vger.kernel.org
8811 S: Supported
8812 F: drivers/infiniband/hw/qib/
8813
8814 QLOGIC QLA1280 SCSI DRIVER
8815 M: Michael Reed <mdr@sgi.com>
8816 L: linux-scsi@vger.kernel.org
8817 S: Maintained
8818 F: drivers/scsi/qla1280.[ch]
8819
8820 QLOGIC QLA2XXX FC-SCSI DRIVER
8821 M: qla2xxx-upstream@qlogic.com
8822 L: linux-scsi@vger.kernel.org
8823 S: Supported
8824 F: Documentation/scsi/LICENSE.qla2xxx
8825 F: drivers/scsi/qla2xxx/
8826
8827 QLOGIC QLA4XXX iSCSI DRIVER
8828 M: QLogic-Storage-Upstream@qlogic.com
8829 L: linux-scsi@vger.kernel.org
8830 S: Supported
8831 F: Documentation/scsi/LICENSE.qla4xxx
8832 F: drivers/scsi/qla4xxx/
8833
8834 QLOGIC QLA3XXX NETWORK DRIVER
8835 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8836 M: Ron Mercer <ron.mercer@qlogic.com>
8837 M: linux-driver@qlogic.com
8838 L: netdev@vger.kernel.org
8839 S: Supported
8840 F: Documentation/networking/LICENSE.qla3xxx
8841 F: drivers/net/ethernet/qlogic/qla3xxx.*
8842
8843 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8844 M: Dept-GELinuxNICDev@qlogic.com
8845 L: netdev@vger.kernel.org
8846 S: Supported
8847 F: drivers/net/ethernet/qlogic/qlcnic/
8848
8849 QLOGIC QLGE 10Gb ETHERNET DRIVER
8850 M: Harish Patil <harish.patil@qlogic.com>
8851 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8852 M: Dept-GELinuxNICDev@qlogic.com
8853 M: linux-driver@qlogic.com
8854 L: netdev@vger.kernel.org
8855 S: Supported
8856 F: drivers/net/ethernet/qlogic/qlge/
8857
8858 QLOGIC QL4xxx ETHERNET DRIVER
8859 M: Yuval Mintz <Yuval.Mintz@qlogic.com>
8860 M: Ariel Elior <Ariel.Elior@qlogic.com>
8861 M: everest-linux-l2@qlogic.com
8862 L: netdev@vger.kernel.org
8863 S: Supported
8864 F: drivers/net/ethernet/qlogic/qed/
8865 F: include/linux/qed/
8866 F: drivers/net/ethernet/qlogic/qede/
8867
8868 QNX4 FILESYSTEM
8869 M: Anders Larsen <al@alarsen.net>
8870 W: http://www.alarsen.net/linux/qnx4fs/
8871 S: Maintained
8872 F: fs/qnx4/
8873 F: include/uapi/linux/qnx4_fs.h
8874 F: include/uapi/linux/qnxtypes.h
8875
8876 QT1010 MEDIA DRIVER
8877 M: Antti Palosaari <crope@iki.fi>
8878 L: linux-media@vger.kernel.org
8879 W: https://linuxtv.org
8880 W: http://palosaari.fi/linux/
8881 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8882 T: git git://linuxtv.org/anttip/media_tree.git
8883 S: Maintained
8884 F: drivers/media/tuners/qt1010*
8885
8886 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8887 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8888 L: linux-wireless@vger.kernel.org
8889 L: ath9k-devel@lists.ath9k.org
8890 W: http://wireless.kernel.org/en/users/Drivers/ath9k
8891 S: Supported
8892 F: drivers/net/wireless/ath/ath9k/
8893
8894 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8895 M: Kalle Valo <kvalo@qca.qualcomm.com>
8896 L: ath10k@lists.infradead.org
8897 W: http://wireless.kernel.org/en/users/Drivers/ath10k
8898 T: git git://github.com/kvalo/ath.git
8899 S: Supported
8900 F: drivers/net/wireless/ath/ath10k/
8901
8902 QUALCOMM HEXAGON ARCHITECTURE
8903 M: Richard Kuo <rkuo@codeaurora.org>
8904 L: linux-hexagon@vger.kernel.org
8905 S: Supported
8906 F: arch/hexagon/
8907
8908 QUALCOMM WCN36XX WIRELESS DRIVER
8909 M: Eugene Krasnikov <k.eugene.e@gmail.com>
8910 L: wcn36xx@lists.infradead.org
8911 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
8912 T: git git://github.com/KrasnikovEugene/wcn36xx.git
8913 S: Supported
8914 F: drivers/net/wireless/ath/wcn36xx/
8915
8916 RADOS BLOCK DEVICE (RBD)
8917 M: Ilya Dryomov <idryomov@gmail.com>
8918 M: Sage Weil <sage@redhat.com>
8919 M: Alex Elder <elder@kernel.org>
8920 L: ceph-devel@vger.kernel.org
8921 W: http://ceph.com/
8922 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8923 T: git git://github.com/ceph/ceph-client.git
8924 S: Supported
8925 F: Documentation/ABI/testing/sysfs-bus-rbd
8926 F: drivers/block/rbd.c
8927 F: drivers/block/rbd_types.h
8928
8929 RADEON FRAMEBUFFER DISPLAY DRIVER
8930 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
8931 L: linux-fbdev@vger.kernel.org
8932 S: Maintained
8933 F: drivers/video/fbdev/aty/radeon*
8934 F: include/uapi/linux/radeonfb.h
8935
8936 RADIOSHARK RADIO DRIVER
8937 M: Hans de Goede <hdegoede@redhat.com>
8938 L: linux-media@vger.kernel.org
8939 T: git git://linuxtv.org/media_tree.git
8940 S: Maintained
8941 F: drivers/media/radio/radio-shark.c
8942
8943 RADIOSHARK2 RADIO DRIVER
8944 M: Hans de Goede <hdegoede@redhat.com>
8945 L: linux-media@vger.kernel.org
8946 T: git git://linuxtv.org/media_tree.git
8947 S: Maintained
8948 F: drivers/media/radio/radio-shark2.c
8949 F: drivers/media/radio/radio-tea5777.c
8950
8951 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8952 M: Paul Mackerras <paulus@samba.org>
8953 L: linux-fbdev@vger.kernel.org
8954 S: Maintained
8955 F: drivers/video/fbdev/aty/aty128fb.c
8956
8957 RALINK RT2X00 WIRELESS LAN DRIVER
8958 P: rt2x00 project
8959 M: Stanislaw Gruszka <sgruszka@redhat.com>
8960 M: Helmut Schaa <helmut.schaa@googlemail.com>
8961 L: linux-wireless@vger.kernel.org
8962 S: Maintained
8963 F: drivers/net/wireless/ralink/rt2x00/
8964
8965 RAMDISK RAM BLOCK DEVICE DRIVER
8966 M: Jens Axboe <axboe@kernel.dk>
8967 S: Maintained
8968 F: Documentation/blockdev/ramdisk.txt
8969 F: drivers/block/brd.c
8970
8971 RANDOM NUMBER DRIVER
8972 M: "Theodore Ts'o" <tytso@mit.edu>
8973 S: Maintained
8974 F: drivers/char/random.c
8975
8976 RAPIDIO SUBSYSTEM
8977 M: Matt Porter <mporter@kernel.crashing.org>
8978 M: Alexandre Bounine <alexandre.bounine@idt.com>
8979 S: Maintained
8980 F: drivers/rapidio/
8981
8982 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8983 L: linux-wireless@vger.kernel.org
8984 S: Orphan
8985 F: drivers/net/wireless/ray*
8986
8987 RCUTORTURE MODULE
8988 M: Josh Triplett <josh@joshtriplett.org>
8989 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8990 L: linux-kernel@vger.kernel.org
8991 S: Supported
8992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8993 F: Documentation/RCU/torture.txt
8994 F: kernel/rcu/rcutorture.c
8995
8996 RCUTORTURE TEST FRAMEWORK
8997 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8998 M: Josh Triplett <josh@joshtriplett.org>
8999 R: Steven Rostedt <rostedt@goodmis.org>
9000 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9001 R: Lai Jiangshan <jiangshanlai@gmail.com>
9002 L: linux-kernel@vger.kernel.org
9003 S: Supported
9004 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9005 F: tools/testing/selftests/rcutorture
9006
9007 RDC R-321X SoC
9008 M: Florian Fainelli <florian@openwrt.org>
9009 S: Maintained
9010
9011 RDC R6040 FAST ETHERNET DRIVER
9012 M: Florian Fainelli <florian@openwrt.org>
9013 L: netdev@vger.kernel.org
9014 S: Maintained
9015 F: drivers/net/ethernet/rdc/r6040.c
9016
9017 RDS - RELIABLE DATAGRAM SOCKETS
9018 M: Chien Yen <chien.yen@oracle.com>
9019 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
9020 S: Supported
9021 F: net/rds/
9022
9023 READ-COPY UPDATE (RCU)
9024 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9025 M: Josh Triplett <josh@joshtriplett.org>
9026 R: Steven Rostedt <rostedt@goodmis.org>
9027 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9028 R: Lai Jiangshan <jiangshanlai@gmail.com>
9029 L: linux-kernel@vger.kernel.org
9030 W: http://www.rdrop.com/users/paulmck/RCU/
9031 S: Supported
9032 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9033 F: Documentation/RCU/
9034 X: Documentation/RCU/torture.txt
9035 F: include/linux/rcu*
9036 X: include/linux/srcu.h
9037 F: kernel/rcu/
9038 X: kernel/torture.c
9039
9040 REAL TIME CLOCK (RTC) SUBSYSTEM
9041 M: Alessandro Zummo <a.zummo@towertech.it>
9042 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
9043 L: rtc-linux@googlegroups.com
9044 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
9045 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9046 S: Maintained
9047 F: Documentation/rtc.txt
9048 F: drivers/rtc/
9049 F: include/linux/rtc.h
9050 F: include/uapi/linux/rtc.h
9051
9052 REALTEK AUDIO CODECS
9053 M: Bard Liao <bardliao@realtek.com>
9054 M: Oder Chiou <oder_chiou@realtek.com>
9055 S: Maintained
9056 F: sound/soc/codecs/rt*
9057 F: include/sound/rt*.h
9058
9059 REISERFS FILE SYSTEM
9060 L: reiserfs-devel@vger.kernel.org
9061 S: Supported
9062 F: fs/reiserfs/
9063
9064 REGISTER MAP ABSTRACTION
9065 M: Mark Brown <broonie@kernel.org>
9066 L: linux-kernel@vger.kernel.org
9067 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9068 S: Supported
9069 F: drivers/base/regmap/
9070 F: include/linux/regmap.h
9071
9072 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9073 M: Ohad Ben-Cohen <ohad@wizery.com>
9074 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9075 S: Maintained
9076 F: drivers/remoteproc/
9077 F: Documentation/remoteproc.txt
9078 F: include/linux/remoteproc.h
9079
9080 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9081 M: Ohad Ben-Cohen <ohad@wizery.com>
9082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9083 S: Maintained
9084 F: drivers/rpmsg/
9085 F: Documentation/rpmsg.txt
9086 F: include/linux/rpmsg.h
9087
9088 RENESAS ETHERNET DRIVERS
9089 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9090 L: netdev@vger.kernel.org
9091 L: linux-renesas-soc@vger.kernel.org
9092 F: drivers/net/ethernet/renesas/
9093 F: include/linux/sh_eth.h
9094
9095 RENESAS USB2 PHY DRIVER
9096 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9097 L: linux-renesas-soc@vger.kernel.org
9098 S: Maintained
9099 F: drivers/phy/phy-rcar-gen3-usb2.c
9100
9101 RESET CONTROLLER FRAMEWORK
9102 M: Philipp Zabel <p.zabel@pengutronix.de>
9103 S: Maintained
9104 F: drivers/reset/
9105 F: Documentation/devicetree/bindings/reset/
9106 F: include/dt-bindings/reset/
9107 F: include/linux/reset.h
9108 F: include/linux/reset-controller.h
9109
9110 RFKILL
9111 M: Johannes Berg <johannes@sipsolutions.net>
9112 L: linux-wireless@vger.kernel.org
9113 W: http://wireless.kernel.org/
9114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9115 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9116 S: Maintained
9117 F: Documentation/rfkill.txt
9118 F: net/rfkill/
9119
9120 RHASHTABLE
9121 M: Thomas Graf <tgraf@suug.ch>
9122 L: netdev@vger.kernel.org
9123 S: Maintained
9124 F: lib/rhashtable.c
9125 F: include/linux/rhashtable.h
9126
9127 RICOH SMARTMEDIA/XD DRIVER
9128 M: Maxim Levitsky <maximlevitsky@gmail.com>
9129 S: Maintained
9130 F: drivers/mtd/nand/r852.c
9131 F: drivers/mtd/nand/r852.h
9132
9133 RICOH R5C592 MEMORYSTICK DRIVER
9134 M: Maxim Levitsky <maximlevitsky@gmail.com>
9135 S: Maintained
9136 F: drivers/memstick/host/r592.*
9137
9138 ROCCAT DRIVERS
9139 M: Stefan Achatz <erazor_de@users.sourceforge.net>
9140 W: http://sourceforge.net/projects/roccat/
9141 S: Maintained
9142 F: drivers/hid/hid-roccat*
9143 F: include/linux/hid-roccat*
9144 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
9145
9146 ROCKER DRIVER
9147 M: Jiri Pirko <jiri@resnulli.us>
9148 M: Scott Feldman <sfeldma@gmail.com>
9149 L: netdev@vger.kernel.org
9150 S: Supported
9151 F: drivers/net/ethernet/rocker/
9152
9153 ROCKETPORT DRIVER
9154 P: Comtrol Corp.
9155 W: http://www.comtrol.com
9156 S: Maintained
9157 F: Documentation/serial/rocket.txt
9158 F: drivers/tty/rocket*
9159
9160 ROCKETPORT EXPRESS/INFINITY DRIVER
9161 M: Kevin Cernekee <cernekee@gmail.com>
9162 L: linux-serial@vger.kernel.org
9163 S: Odd Fixes
9164 F: drivers/tty/serial/rp2.*
9165
9166 ROSE NETWORK LAYER
9167 M: Ralf Baechle <ralf@linux-mips.org>
9168 L: linux-hams@vger.kernel.org
9169 W: http://www.linux-ax25.org/
9170 S: Maintained
9171 F: include/net/rose.h
9172 F: include/uapi/linux/rose.h
9173 F: net/rose/
9174
9175 RTL2830 MEDIA DRIVER
9176 M: Antti Palosaari <crope@iki.fi>
9177 L: linux-media@vger.kernel.org
9178 W: https://linuxtv.org
9179 W: http://palosaari.fi/linux/
9180 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9181 T: git git://linuxtv.org/anttip/media_tree.git
9182 S: Maintained
9183 F: drivers/media/dvb-frontends/rtl2830*
9184
9185 RTL2832 MEDIA DRIVER
9186 M: Antti Palosaari <crope@iki.fi>
9187 L: linux-media@vger.kernel.org
9188 W: https://linuxtv.org
9189 W: http://palosaari.fi/linux/
9190 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9191 T: git git://linuxtv.org/anttip/media_tree.git
9192 S: Maintained
9193 F: drivers/media/dvb-frontends/rtl2832*
9194
9195 RTL2832_SDR MEDIA DRIVER
9196 M: Antti Palosaari <crope@iki.fi>
9197 L: linux-media@vger.kernel.org
9198 W: https://linuxtv.org
9199 W: http://palosaari.fi/linux/
9200 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9201 T: git git://linuxtv.org/anttip/media_tree.git
9202 S: Maintained
9203 F: drivers/media/dvb-frontends/rtl2832_sdr*
9204
9205 RTL8180 WIRELESS DRIVER
9206 L: linux-wireless@vger.kernel.org
9207 W: http://wireless.kernel.org/
9208 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9209 S: Orphan
9210 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
9211
9212 RTL8187 WIRELESS DRIVER
9213 M: Herton Ronaldo Krzesinski <herton@canonical.com>
9214 M: Hin-Tak Leung <htl10@users.sourceforge.net>
9215 M: Larry Finger <Larry.Finger@lwfinger.net>
9216 L: linux-wireless@vger.kernel.org
9217 W: http://wireless.kernel.org/
9218 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9219 S: Maintained
9220 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
9221
9222 RTL8192CE WIRELESS DRIVER
9223 M: Larry Finger <Larry.Finger@lwfinger.net>
9224 M: Chaoming Li <chaoming_li@realsil.com.cn>
9225 L: linux-wireless@vger.kernel.org
9226 W: http://wireless.kernel.org/
9227 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9228 S: Maintained
9229 F: drivers/net/wireless/realtek/rtlwifi/
9230 F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9231
9232 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9233 M: Jes Sorensen <Jes.Sorensen@redhat.com>
9234 L: linux-wireless@vger.kernel.org
9235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9236 S: Maintained
9237 F: drivers/net/wireless/realtek/rtl8xxxu/
9238
9239 S3 SAVAGE FRAMEBUFFER DRIVER
9240 M: Antonino Daplas <adaplas@gmail.com>
9241 L: linux-fbdev@vger.kernel.org
9242 S: Maintained
9243 F: drivers/video/fbdev/savage/
9244
9245 S390
9246 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
9247 M: Heiko Carstens <heiko.carstens@de.ibm.com>
9248 L: linux-s390@vger.kernel.org
9249 W: http://www.ibm.com/developerworks/linux/linux390/
9250 S: Supported
9251 F: arch/s390/
9252 F: drivers/s390/
9253 F: Documentation/s390/
9254 F: Documentation/DocBook/s390*
9255
9256 S390 COMMON I/O LAYER
9257 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9258 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9259 L: linux-s390@vger.kernel.org
9260 W: http://www.ibm.com/developerworks/linux/linux390/
9261 S: Supported
9262 F: drivers/s390/cio/
9263
9264 S390 DASD DRIVER
9265 M: Stefan Weinhuber <wein@de.ibm.com>
9266 M: Stefan Haberland <stefan.haberland@de.ibm.com>
9267 L: linux-s390@vger.kernel.org
9268 W: http://www.ibm.com/developerworks/linux/linux390/
9269 S: Supported
9270 F: drivers/s390/block/dasd*
9271 F: block/partitions/ibm.c
9272
9273 S390 NETWORK DRIVERS
9274 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
9275 L: linux-s390@vger.kernel.org
9276 W: http://www.ibm.com/developerworks/linux/linux390/
9277 S: Supported
9278 F: drivers/s390/net/
9279
9280 S390 PCI SUBSYSTEM
9281 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
9282 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9283 L: linux-s390@vger.kernel.org
9284 W: http://www.ibm.com/developerworks/linux/linux390/
9285 S: Supported
9286 F: arch/s390/pci/
9287 F: drivers/pci/hotplug/s390_pci_hpc.c
9288
9289 S390 ZCRYPT DRIVER
9290 M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9291 L: linux-s390@vger.kernel.org
9292 W: http://www.ibm.com/developerworks/linux/linux390/
9293 S: Supported
9294 F: drivers/s390/crypto/
9295
9296 S390 ZFCP DRIVER
9297 M: Steffen Maier <maier@linux.vnet.ibm.com>
9298 L: linux-s390@vger.kernel.org
9299 W: http://www.ibm.com/developerworks/linux/linux390/
9300 S: Supported
9301 F: drivers/s390/scsi/zfcp_*
9302
9303 S390 IUCV NETWORK LAYER
9304 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
9305 L: linux-s390@vger.kernel.org
9306 W: http://www.ibm.com/developerworks/linux/linux390/
9307 S: Supported
9308 F: drivers/s390/net/*iucv*
9309 F: include/net/iucv/
9310 F: net/iucv/
9311
9312 S390 IOMMU (PCI)
9313 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
9314 L: linux-s390@vger.kernel.org
9315 W: http://www.ibm.com/developerworks/linux/linux390/
9316 S: Supported
9317 F: drivers/iommu/s390-iommu.c
9318
9319 S3C24XX SD/MMC Driver
9320 M: Ben Dooks <ben-linux@fluff.org>
9321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9322 S: Supported
9323 F: drivers/mmc/host/s3cmci.*
9324
9325 SAA6588 RDS RECEIVER DRIVER
9326 M: Hans Verkuil <hverkuil@xs4all.nl>
9327 L: linux-media@vger.kernel.org
9328 T: git git://linuxtv.org/media_tree.git
9329 W: https://linuxtv.org
9330 S: Odd Fixes
9331 F: drivers/media/i2c/saa6588*
9332
9333 SAA7134 VIDEO4LINUX DRIVER
9334 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9335 L: linux-media@vger.kernel.org
9336 W: https://linuxtv.org
9337 T: git git://linuxtv.org/media_tree.git
9338 S: Odd fixes
9339 F: Documentation/video4linux/*.saa7134
9340 F: drivers/media/pci/saa7134/
9341
9342 SAA7146 VIDEO4LINUX-2 DRIVER
9343 M: Hans Verkuil <hverkuil@xs4all.nl>
9344 L: linux-media@vger.kernel.org
9345 T: git git://linuxtv.org/media_tree.git
9346 S: Maintained
9347 F: drivers/media/common/saa7146/
9348 F: drivers/media/pci/saa7146/
9349 F: include/media/saa7146*
9350
9351 SAMSUNG LAPTOP DRIVER
9352 M: Corentin Chary <corentin.chary@gmail.com>
9353 L: platform-driver-x86@vger.kernel.org
9354 S: Maintained
9355 F: drivers/platform/x86/samsung-laptop.c
9356
9357 SAMSUNG AUDIO (ASoC) DRIVERS
9358 M: Sangbeom Kim <sbkim73@samsung.com>
9359 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9360 S: Supported
9361 F: sound/soc/samsung/
9362
9363 SAMSUNG FRAMEBUFFER DRIVER
9364 M: Jingoo Han <jingoohan1@gmail.com>
9365 L: linux-fbdev@vger.kernel.org
9366 S: Maintained
9367 F: drivers/video/fbdev/s3c-fb.c
9368
9369 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9370 M: Sangbeom Kim <sbkim73@samsung.com>
9371 M: Krzysztof Kozlowski <k.kozlowski@samsung.com>
9372 L: linux-kernel@vger.kernel.org
9373 L: linux-samsung-soc@vger.kernel.org
9374 S: Supported
9375 F: drivers/mfd/sec*.c
9376 F: drivers/regulator/s2m*.c
9377 F: drivers/regulator/s5m*.c
9378 F: drivers/clk/clk-s2mps11.c
9379 F: drivers/rtc/rtc-s5m.c
9380 F: include/linux/mfd/samsung/
9381 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9382 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9383 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9384 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9385
9386 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9387 M: Kyungmin Park <kyungmin.park@samsung.com>
9388 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9389 L: linux-media@vger.kernel.org
9390 Q: https://patchwork.linuxtv.org/project/linux-media/list/
9391 S: Supported
9392 F: drivers/media/platform/exynos4-is/
9393
9394 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9395 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9396 L: linux-media@vger.kernel.org
9397 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9398 S: Maintained
9399 F: drivers/media/platform/s3c-camif/
9400 F: include/media/drv-intf/s3c_camif.h
9401
9402 SAMSUNG S5C73M3 CAMERA DRIVER
9403 M: Kyungmin Park <kyungmin.park@samsung.com>
9404 M: Andrzej Hajda <a.hajda@samsung.com>
9405 L: linux-media@vger.kernel.org
9406 S: Supported
9407 F: drivers/media/i2c/s5c73m3/*
9408
9409 SAMSUNG S5K5BAF CAMERA DRIVER
9410 M: Kyungmin Park <kyungmin.park@samsung.com>
9411 M: Andrzej Hajda <a.hajda@samsung.com>
9412 L: linux-media@vger.kernel.org
9413 S: Supported
9414 F: drivers/media/i2c/s5k5baf.c
9415
9416 SAMSUNG S3FWRN5 NFC DRIVER
9417 M: Robert Baldyga <r.baldyga@samsung.com>
9418 L: linux-nfc@lists.01.org (moderated for non-subscribers)
9419 S: Supported
9420 F: drivers/nfc/s3fwrn5
9421
9422 SAMSUNG SOC CLOCK DRIVERS
9423 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
9424 M: Tomasz Figa <tomasz.figa@gmail.com>
9425 S: Supported
9426 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9427 F: drivers/clk/samsung/
9428
9429 SAMSUNG SXGBE DRIVERS
9430 M: Byungho An <bh74.an@samsung.com>
9431 M: Girish K S <ks.giri@samsung.com>
9432 M: Vipul Pandya <vipul.pandya@samsung.com>
9433 S: Supported
9434 L: netdev@vger.kernel.org
9435 F: drivers/net/ethernet/samsung/sxgbe/
9436
9437 SAMSUNG THERMAL DRIVER
9438 M: Lukasz Majewski <l.majewski@samsung.com>
9439 L: linux-pm@vger.kernel.org
9440 L: linux-samsung-soc@vger.kernel.org
9441 S: Supported
9442 T: https://github.com/lmajewski/linux-samsung-thermal.git
9443 F: drivers/thermal/samsung/
9444
9445 SAMSUNG USB2 PHY DRIVER
9446 M: Kamil Debski <k.debski@samsung.com>
9447 L: linux-kernel@vger.kernel.org
9448 S: Supported
9449 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
9450 F: Documentation/phy/samsung-usb2.txt
9451 F: drivers/phy/phy-exynos4210-usb2.c
9452 F: drivers/phy/phy-exynos4x12-usb2.c
9453 F: drivers/phy/phy-exynos5250-usb2.c
9454 F: drivers/phy/phy-s5pv210-usb2.c
9455 F: drivers/phy/phy-samsung-usb2.c
9456 F: drivers/phy/phy-samsung-usb2.h
9457
9458 SERIAL DRIVERS
9459 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9460 L: linux-serial@vger.kernel.org
9461 S: Maintained
9462 F: drivers/tty/serial/
9463
9464 SYNOPSYS DESIGNWARE DMAC DRIVER
9465 M: Viresh Kumar <vireshk@kernel.org>
9466 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9467 S: Maintained
9468 F: include/linux/dma/dw.h
9469 F: include/linux/platform_data/dma-dw.h
9470 F: drivers/dma/dw/
9471
9472 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9473 M: Lars Persson <lars.persson@axis.com>
9474 L: netdev@vger.kernel.org
9475 S: Supported
9476 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9477 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9478
9479 SYNOPSYS DESIGNWARE I2C DRIVER
9480 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9481 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
9482 M: Mika Westerberg <mika.westerberg@linux.intel.com>
9483 L: linux-i2c@vger.kernel.org
9484 S: Maintained
9485 F: drivers/i2c/busses/i2c-designware-*
9486 F: include/linux/platform_data/i2c-designware.h
9487
9488 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9489 M: Jaehoon Chung <jh80.chung@samsung.com>
9490 L: linux-mmc@vger.kernel.org
9491 S: Maintained
9492 F: include/linux/mmc/dw_mmc.h
9493 F: drivers/mmc/host/dw_mmc*
9494
9495 SYSTEM TRACE MODULE CLASS
9496 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
9497 S: Maintained
9498 F: Documentation/trace/stm.txt
9499 F: drivers/hwtracing/stm/
9500 F: include/linux/stm.h
9501 F: include/uapi/linux/stm.h
9502
9503 THUNDERBOLT DRIVER
9504 M: Andreas Noever <andreas.noever@gmail.com>
9505 S: Maintained
9506 F: drivers/thunderbolt/
9507
9508 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9509 M: John Stultz <john.stultz@linaro.org>
9510 M: Thomas Gleixner <tglx@linutronix.de>
9511 L: linux-kernel@vger.kernel.org
9512 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9513 S: Supported
9514 F: include/linux/clocksource.h
9515 F: include/linux/time.h
9516 F: include/linux/timex.h
9517 F: include/uapi/linux/time.h
9518 F: include/uapi/linux/timex.h
9519 F: kernel/time/clocksource.c
9520 F: kernel/time/time*.c
9521 F: kernel/time/alarmtimer.c
9522 F: kernel/time/ntp.c
9523 F: tools/testing/selftests/timers/
9524
9525 SC1200 WDT DRIVER
9526 M: Zwane Mwaikambo <zwanem@gmail.com>
9527 S: Maintained
9528 F: drivers/watchdog/sc1200wdt.c
9529
9530 SCHEDULER
9531 M: Ingo Molnar <mingo@redhat.com>
9532 M: Peter Zijlstra <peterz@infradead.org>
9533 L: linux-kernel@vger.kernel.org
9534 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9535 S: Maintained
9536 F: kernel/sched/
9537 F: include/linux/sched.h
9538 F: include/uapi/linux/sched.h
9539 F: include/linux/wait.h
9540
9541 SCORE ARCHITECTURE
9542 M: Chen Liqin <liqin.linux@gmail.com>
9543 M: Lennox Wu <lennox.wu@gmail.com>
9544 W: http://www.sunplus.com
9545 S: Supported
9546 F: arch/score/
9547
9548 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9549 M: Sudeep Holla <sudeep.holla@arm.com>
9550 L: linux-arm-kernel@lists.infradead.org
9551 S: Maintained
9552 F: Documentation/devicetree/bindings/arm/arm,scpi.txt
9553 F: drivers/clk/clk-scpi.c
9554 F: drivers/cpufreq/scpi-cpufreq.c
9555 F: drivers/firmware/arm_scpi.c
9556 F: include/linux/scpi_protocol.h
9557
9558 SCSI CDROM DRIVER
9559 M: Jens Axboe <axboe@kernel.dk>
9560 L: linux-scsi@vger.kernel.org
9561 W: http://www.kernel.dk
9562 S: Maintained
9563 F: drivers/scsi/sr*
9564
9565 SCSI RDMA PROTOCOL (SRP) INITIATOR
9566 M: Bart Van Assche <bart.vanassche@sandisk.com>
9567 L: linux-rdma@vger.kernel.org
9568 S: Supported
9569 W: http://www.openfabrics.org
9570 Q: http://patchwork.kernel.org/project/linux-rdma/list/
9571 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9572 F: drivers/infiniband/ulp/srp/
9573 F: include/scsi/srp.h
9574
9575 SCSI SG DRIVER
9576 M: Doug Gilbert <dgilbert@interlog.com>
9577 L: linux-scsi@vger.kernel.org
9578 W: http://sg.danny.cz/sg
9579 S: Maintained
9580 F: Documentation/scsi/scsi-generic.txt
9581 F: drivers/scsi/sg.c
9582 F: include/scsi/sg.h
9583
9584 SCSI SUBSYSTEM
9585 M: "James E.J. Bottomley" <JBottomley@odin.com>
9586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9587 M: "Martin K. Petersen" <martin.petersen@oracle.com>
9588 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9589 L: linux-scsi@vger.kernel.org
9590 S: Maintained
9591 F: drivers/scsi/
9592 F: include/scsi/
9593
9594 SCSI TAPE DRIVER
9595 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9596 L: linux-scsi@vger.kernel.org
9597 S: Maintained
9598 F: Documentation/scsi/st.txt
9599 F: drivers/scsi/st.*
9600 F: drivers/scsi/st_*.h
9601
9602 SCTP PROTOCOL
9603 M: Vlad Yasevich <vyasevich@gmail.com>
9604 M: Neil Horman <nhorman@tuxdriver.com>
9605 L: linux-sctp@vger.kernel.org
9606 W: http://lksctp.sourceforge.net
9607 S: Maintained
9608 F: Documentation/networking/sctp.txt
9609 F: include/linux/sctp.h
9610 F: include/uapi/linux/sctp.h
9611 F: include/net/sctp/
9612 F: net/sctp/
9613
9614 SCx200 CPU SUPPORT
9615 M: Jim Cromie <jim.cromie@gmail.com>
9616 S: Odd Fixes
9617 F: Documentation/i2c/busses/scx200_acb
9618 F: arch/x86/platform/scx200/
9619 F: drivers/watchdog/scx200_wdt.c
9620 F: drivers/i2c/busses/scx200*
9621 F: drivers/mtd/maps/scx200_docflash.c
9622 F: include/linux/scx200.h
9623
9624 SCx200 GPIO DRIVER
9625 M: Jim Cromie <jim.cromie@gmail.com>
9626 S: Maintained
9627 F: drivers/char/scx200_gpio.c
9628 F: include/linux/scx200_gpio.h
9629
9630 SCx200 HRT CLOCKSOURCE DRIVER
9631 M: Jim Cromie <jim.cromie@gmail.com>
9632 S: Maintained
9633 F: drivers/clocksource/scx200_hrt.c
9634
9635 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9636 M: Sascha Sommer <saschasommer@freenet.de>
9637 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9638 S: Maintained
9639 F: drivers/mmc/host/sdricoh_cs.c
9640
9641 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9642 L: linux-mmc@vger.kernel.org
9643 S: Orphan
9644 F: drivers/mmc/host/sdhci.*
9645 F: drivers/mmc/host/sdhci-pltfm.[ch]
9646
9647 SECURE COMPUTING
9648 M: Kees Cook <keescook@chromium.org>
9649 R: Andy Lutomirski <luto@amacapital.net>
9650 R: Will Drewry <wad@chromium.org>
9651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9652 S: Supported
9653 F: kernel/seccomp.c
9654 F: include/uapi/linux/seccomp.h
9655 F: include/linux/seccomp.h
9656 F: tools/testing/selftests/seccomp/*
9657 K: \bsecure_computing
9658 K: \bTIF_SECCOMP\b
9659
9660 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9661 M: Ben Dooks <ben-linux@fluff.org>
9662 M: Jaehoon Chung <jh80.chung@samsung.com>
9663 L: linux-mmc@vger.kernel.org
9664 S: Maintained
9665 F: drivers/mmc/host/sdhci-s3c*
9666
9667 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9668 M: Viresh Kumar <vireshk@kernel.org>
9669 L: spear-devel@list.st.com
9670 L: linux-mmc@vger.kernel.org
9671 S: Maintained
9672 F: drivers/mmc/host/sdhci-spear.c
9673
9674 SECURITY SUBSYSTEM
9675 M: James Morris <james.l.morris@oracle.com>
9676 M: "Serge E. Hallyn" <serge@hallyn.com>
9677 L: linux-security-module@vger.kernel.org (suggested Cc:)
9678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9679 W: http://kernsec.org/
9680 S: Supported
9681 F: security/
9682
9683 SECURITY CONTACT
9684 M: Security Officers <security@kernel.org>
9685 S: Supported
9686
9687 SELINUX SECURITY MODULE
9688 M: Paul Moore <paul@paul-moore.com>
9689 M: Stephen Smalley <sds@tycho.nsa.gov>
9690 M: Eric Paris <eparis@parisplace.org>
9691 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
9692 W: http://selinuxproject.org
9693 T: git git://git.infradead.org/users/pcmoore/selinux
9694 S: Supported
9695 F: include/linux/selinux*
9696 F: security/selinux/
9697 F: scripts/selinux/
9698
9699 APPARMOR SECURITY MODULE
9700 M: John Johansen <john.johansen@canonical.com>
9701 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9702 W: apparmor.wiki.kernel.org
9703 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9704 S: Supported
9705 F: security/apparmor/
9706
9707 YAMA SECURITY MODULE
9708 M: Kees Cook <keescook@chromium.org>
9709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9710 S: Supported
9711 F: security/yama/
9712
9713 SENSABLE PHANTOM
9714 M: Jiri Slaby <jirislaby@gmail.com>
9715 S: Maintained
9716 F: drivers/misc/phantom.c
9717 F: include/uapi/linux/phantom.h
9718
9719 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9720 M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9721 M: Ketan Mukadam <ketan.mukadam@avagotech.com>
9722 M: John Soni Jose <sony.john@avagotech.com>
9723 L: linux-scsi@vger.kernel.org
9724 W: http://www.avagotech.com
9725 S: Supported
9726 F: drivers/scsi/be2iscsi/
9727
9728 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9729 M: Sathya Perla <sathya.perla@avagotech.com>
9730 M: Ajit Khaparde <ajit.khaparde@avagotech.com>
9731 M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9732 M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9733 L: netdev@vger.kernel.org
9734 W: http://www.emulex.com
9735 S: Supported
9736 F: drivers/net/ethernet/emulex/benet/
9737
9738 EMULEX ONECONNECT ROCE DRIVER
9739 M: Selvin Xavier <selvin.xavier@avagotech.com>
9740 M: Devesh Sharma <devesh.sharma@avagotech.com>
9741 M: Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9742 L: linux-rdma@vger.kernel.org
9743 W: http://www.emulex.com
9744 S: Supported
9745 F: drivers/infiniband/hw/ocrdma/
9746
9747 SFC NETWORK DRIVER
9748 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9749 M: Shradha Shah <sshah@solarflare.com>
9750 L: netdev@vger.kernel.org
9751 S: Supported
9752 F: drivers/net/ethernet/sfc/
9753
9754 SGI GRU DRIVER
9755 M: Dimitri Sivanich <sivanich@sgi.com>
9756 S: Maintained
9757 F: drivers/misc/sgi-gru/
9758
9759 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9760 M: Pat Gefre <pfg@sgi.com>
9761 L: linux-ia64@vger.kernel.org
9762 S: Supported
9763 F: Documentation/ia64/serial.txt
9764 F: drivers/tty/serial/ioc?_serial.c
9765 F: include/linux/ioc?.h
9766
9767 SGI XP/XPC/XPNET DRIVER
9768 M: Cliff Whickman <cpw@sgi.com>
9769 M: Robin Holt <robinmholt@gmail.com>
9770 S: Maintained
9771 F: drivers/misc/sgi-xp/
9772
9773 SI2157 MEDIA DRIVER
9774 M: Antti Palosaari <crope@iki.fi>
9775 L: linux-media@vger.kernel.org
9776 W: https://linuxtv.org
9777 W: http://palosaari.fi/linux/
9778 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9779 T: git git://linuxtv.org/anttip/media_tree.git
9780 S: Maintained
9781 F: drivers/media/tuners/si2157*
9782
9783 SI2168 MEDIA DRIVER
9784 M: Antti Palosaari <crope@iki.fi>
9785 L: linux-media@vger.kernel.org
9786 W: https://linuxtv.org
9787 W: http://palosaari.fi/linux/
9788 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9789 T: git git://linuxtv.org/anttip/media_tree.git
9790 S: Maintained
9791 F: drivers/media/dvb-frontends/si2168*
9792
9793 SI470X FM RADIO RECEIVER I2C DRIVER
9794 M: Hans Verkuil <hverkuil@xs4all.nl>
9795 L: linux-media@vger.kernel.org
9796 T: git git://linuxtv.org/media_tree.git
9797 W: https://linuxtv.org
9798 S: Odd Fixes
9799 F: drivers/media/radio/si470x/radio-si470x-i2c.c
9800
9801 SI470X FM RADIO RECEIVER USB DRIVER
9802 M: Hans Verkuil <hverkuil@xs4all.nl>
9803 L: linux-media@vger.kernel.org
9804 T: git git://linuxtv.org/media_tree.git
9805 W: https://linuxtv.org
9806 S: Maintained
9807 F: drivers/media/radio/si470x/radio-si470x-common.c
9808 F: drivers/media/radio/si470x/radio-si470x.h
9809 F: drivers/media/radio/si470x/radio-si470x-usb.c
9810
9811 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9812 M: Eduardo Valentin <edubezval@gmail.com>
9813 L: linux-media@vger.kernel.org
9814 T: git git://linuxtv.org/media_tree.git
9815 W: https://linuxtv.org
9816 S: Odd Fixes
9817 F: drivers/media/radio/si4713/si4713.?
9818
9819 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9820 M: Eduardo Valentin <edubezval@gmail.com>
9821 L: linux-media@vger.kernel.org
9822 T: git git://linuxtv.org/media_tree.git
9823 W: https://linuxtv.org
9824 S: Odd Fixes
9825 F: drivers/media/radio/si4713/radio-platform-si4713.c
9826
9827 SI4713 FM RADIO TRANSMITTER USB DRIVER
9828 M: Hans Verkuil <hverkuil@xs4all.nl>
9829 L: linux-media@vger.kernel.org
9830 T: git git://linuxtv.org/media_tree.git
9831 W: https://linuxtv.org
9832 S: Maintained
9833 F: drivers/media/radio/si4713/radio-usb-si4713.c
9834
9835 SIANO DVB DRIVER
9836 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9837 L: linux-media@vger.kernel.org
9838 W: https://linuxtv.org
9839 T: git git://linuxtv.org/media_tree.git
9840 S: Odd fixes
9841 F: drivers/media/common/siano/
9842 F: drivers/media/usb/siano/
9843 F: drivers/media/usb/siano/
9844 F: drivers/media/mmc/siano/
9845
9846 SIMPLEFB FB DRIVER
9847 M: Hans de Goede <hdegoede@redhat.com>
9848 L: linux-fbdev@vger.kernel.org
9849 S: Maintained
9850 F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
9851 F: drivers/video/fbdev/simplefb.c
9852 F: include/linux/platform_data/simplefb.h
9853
9854 SH_VEU V4L2 MEM2MEM DRIVER
9855 L: linux-media@vger.kernel.org
9856 S: Orphan
9857 F: drivers/media/platform/sh_veu.c
9858
9859 SH_VOU V4L2 OUTPUT DRIVER
9860 L: linux-media@vger.kernel.org
9861 S: Orphan
9862 F: drivers/media/platform/sh_vou.c
9863 F: include/media/drv-intf/sh_vou.h
9864
9865 SIMPLE FIRMWARE INTERFACE (SFI)
9866 M: Len Brown <lenb@kernel.org>
9867 L: sfi-devel@simplefirmware.org
9868 W: http://simplefirmware.org/
9869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9870 S: Supported
9871 F: arch/x86/platform/sfi/
9872 F: drivers/sfi/
9873 F: include/linux/sfi*.h
9874
9875 SIMTEC EB110ATX (Chalice CATS)
9876 P: Ben Dooks
9877 P: Vincent Sanders <vince@simtec.co.uk>
9878 M: Simtec Linux Team <linux@simtec.co.uk>
9879 W: http://www.simtec.co.uk/products/EB110ATX/
9880 S: Supported
9881
9882 SIMTEC EB2410ITX (BAST)
9883 P: Ben Dooks
9884 P: Vincent Sanders <vince@simtec.co.uk>
9885 M: Simtec Linux Team <linux@simtec.co.uk>
9886 W: http://www.simtec.co.uk/products/EB2410ITX/
9887 S: Supported
9888 F: arch/arm/mach-s3c24xx/mach-bast.c
9889 F: arch/arm/mach-s3c24xx/bast-ide.c
9890 F: arch/arm/mach-s3c24xx/bast-irq.c
9891
9892 TI DAVINCI MACHINE SUPPORT
9893 M: Sekhar Nori <nsekhar@ti.com>
9894 M: Kevin Hilman <khilman@deeprootsystems.com>
9895 T: git git://gitorious.org/linux-davinci/linux-davinci.git
9896 Q: http://patchwork.kernel.org/project/linux-davinci/list/
9897 S: Supported
9898 F: arch/arm/mach-davinci/
9899 F: drivers/i2c/busses/i2c-davinci.c
9900
9901 TI DAVINCI SERIES MEDIA DRIVER
9902 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9903 L: linux-media@vger.kernel.org
9904 W: https://linuxtv.org
9905 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9906 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9907 S: Maintained
9908 F: drivers/media/platform/davinci/
9909 F: include/media/davinci/
9910
9911 TI AM437X VPFE DRIVER
9912 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9913 L: linux-media@vger.kernel.org
9914 W: https://linuxtv.org
9915 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9916 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9917 S: Maintained
9918 F: drivers/media/platform/am437x/
9919
9920 OV2659 OMNIVISION SENSOR DRIVER
9921 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9922 L: linux-media@vger.kernel.org
9923 W: https://linuxtv.org
9924 Q: http://patchwork.linuxtv.org/project/linux-media/list/
9925 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9926 S: Maintained
9927 F: drivers/media/i2c/ov2659.c
9928 F: include/media/i2c/ov2659.h
9929
9930 SILICON MOTION SM712 FRAME BUFFER DRIVER
9931 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9932 M: Teddy Wang <teddy.wang@siliconmotion.com>
9933 M: Sudip Mukherjee <sudip@vectorindia.org>
9934 L: linux-fbdev@vger.kernel.org
9935 S: Maintained
9936 F: drivers/video/fbdev/sm712*
9937 F: Documentation/fb/sm712fb.txt
9938
9939 SIS 190 ETHERNET DRIVER
9940 M: Francois Romieu <romieu@fr.zoreil.com>
9941 L: netdev@vger.kernel.org
9942 S: Maintained
9943 F: drivers/net/ethernet/sis/sis190.c
9944
9945 SIS 900/7016 FAST ETHERNET DRIVER
9946 M: Daniele Venzano <venza@brownhat.org>
9947 W: http://www.brownhat.org/sis900.html
9948 L: netdev@vger.kernel.org
9949 S: Maintained
9950 F: drivers/net/ethernet/sis/sis900.*
9951
9952 SIS FRAMEBUFFER DRIVER
9953 M: Thomas Winischhofer <thomas@winischhofer.net>
9954 W: http://www.winischhofer.net/linuxsisvga.shtml
9955 S: Maintained
9956 F: Documentation/fb/sisfb.txt
9957 F: drivers/video/fbdev/sis/
9958 F: include/video/sisfb.h
9959
9960 SIS USB2VGA DRIVER
9961 M: Thomas Winischhofer <thomas@winischhofer.net>
9962 W: http://www.winischhofer.at/linuxsisusbvga.shtml
9963 S: Maintained
9964 F: drivers/usb/misc/sisusbvga/
9965
9966 SLAB ALLOCATOR
9967 M: Christoph Lameter <cl@linux.com>
9968 M: Pekka Enberg <penberg@kernel.org>
9969 M: David Rientjes <rientjes@google.com>
9970 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
9971 M: Andrew Morton <akpm@linux-foundation.org>
9972 L: linux-mm@kvack.org
9973 S: Maintained
9974 F: include/linux/sl?b*.h
9975 F: mm/sl?b*
9976
9977 SLEEPABLE READ-COPY UPDATE (SRCU)
9978 M: Lai Jiangshan <jiangshanlai@gmail.com>
9979 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9980 M: Josh Triplett <josh@joshtriplett.org>
9981 R: Steven Rostedt <rostedt@goodmis.org>
9982 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9983 L: linux-kernel@vger.kernel.org
9984 W: http://www.rdrop.com/users/paulmck/RCU/
9985 S: Supported
9986 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9987 F: include/linux/srcu.h
9988 F: kernel/rcu/srcu.c
9989
9990 SMACK SECURITY MODULE
9991 M: Casey Schaufler <casey@schaufler-ca.com>
9992 L: linux-security-module@vger.kernel.org
9993 W: http://schaufler-ca.com
9994 T: git git://git.gitorious.org/smack-next/kernel.git
9995 S: Maintained
9996 F: Documentation/security/Smack.txt
9997 F: security/smack/
9998
9999 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10000 M: Kevin Hilman <khilman@kernel.org>
10001 M: Nishanth Menon <nm@ti.com>
10002 S: Maintained
10003 F: drivers/power/avs/
10004 F: include/linux/power/smartreflex.h
10005 L: linux-pm@vger.kernel.org
10006
10007 SMC91x ETHERNET DRIVER
10008 M: Nicolas Pitre <nico@fluxnic.net>
10009 S: Odd Fixes
10010 F: drivers/net/ethernet/smsc/smc91x.*
10011
10012 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10013 M: Sakari Ailus <sakari.ailus@iki.fi>
10014 L: linux-media@vger.kernel.org
10015 S: Maintained
10016 F: drivers/media/i2c/smiapp/
10017 F: include/media/i2c/smiapp.h
10018 F: drivers/media/i2c/smiapp-pll.c
10019 F: drivers/media/i2c/smiapp-pll.h
10020 F: include/uapi/linux/smiapp.h
10021 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10022
10023 SMM665 HARDWARE MONITOR DRIVER
10024 M: Guenter Roeck <linux@roeck-us.net>
10025 L: lm-sensors@lm-sensors.org
10026 S: Maintained
10027 F: Documentation/hwmon/smm665
10028 F: drivers/hwmon/smm665.c
10029
10030 SMSC EMC2103 HARDWARE MONITOR DRIVER
10031 M: Steve Glendinning <steve.glendinning@shawell.net>
10032 L: lm-sensors@lm-sensors.org
10033 S: Maintained
10034 F: Documentation/hwmon/emc2103
10035 F: drivers/hwmon/emc2103.c
10036
10037 SMSC SCH5627 HARDWARE MONITOR DRIVER
10038 M: Hans de Goede <hdegoede@redhat.com>
10039 L: lm-sensors@lm-sensors.org
10040 S: Supported
10041 F: Documentation/hwmon/sch5627
10042 F: drivers/hwmon/sch5627.c
10043
10044 SMSC47B397 HARDWARE MONITOR DRIVER
10045 M: Jean Delvare <jdelvare@suse.com>
10046 L: lm-sensors@lm-sensors.org
10047 S: Maintained
10048 F: Documentation/hwmon/smsc47b397
10049 F: drivers/hwmon/smsc47b397.c
10050
10051 SMSC911x ETHERNET DRIVER
10052 M: Steve Glendinning <steve.glendinning@shawell.net>
10053 L: netdev@vger.kernel.org
10054 S: Maintained
10055 F: include/linux/smsc911x.h
10056 F: drivers/net/ethernet/smsc/smsc911x.*
10057
10058 SMSC9420 PCI ETHERNET DRIVER
10059 M: Steve Glendinning <steve.glendinning@shawell.net>
10060 L: netdev@vger.kernel.org
10061 S: Maintained
10062 F: drivers/net/ethernet/smsc/smsc9420.*
10063
10064 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10065 M: Steve Glendinning <steve.glendinning@shawell.net>
10066 L: linux-fbdev@vger.kernel.org
10067 S: Maintained
10068 F: drivers/video/fbdev/smscufx.c
10069
10070 SOC-CAMERA V4L2 SUBSYSTEM
10071 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10072 L: linux-media@vger.kernel.org
10073 T: git git://linuxtv.org/media_tree.git
10074 S: Maintained
10075 F: include/media/soc*
10076 F: drivers/media/i2c/soc_camera/
10077 F: drivers/media/platform/soc_camera/
10078
10079 SOEKRIS NET48XX LED SUPPORT
10080 M: Chris Boot <bootc@bootc.net>
10081 S: Maintained
10082 F: drivers/leds/leds-net48xx.c
10083
10084 SOFTLOGIC 6x10 MPEG CODEC
10085 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10086 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10087 M: Andrey Utkin <andrey.krieger.utkin@gmail.com>
10088 M: Ismael Luceno <ismael@iodev.co.uk>
10089 L: linux-media@vger.kernel.org
10090 S: Supported
10091 F: drivers/media/pci/solo6x10/
10092
10093 SOFTWARE RAID (Multiple Disks) SUPPORT
10094 L: linux-raid@vger.kernel.org
10095 S: Supported
10096 F: drivers/md/
10097 F: include/linux/raid/
10098 F: include/uapi/linux/raid/
10099
10100 SONIC NETWORK DRIVER
10101 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10102 L: netdev@vger.kernel.org
10103 S: Maintained
10104 F: drivers/net/ethernet/natsemi/sonic.*
10105
10106 SONICS SILICON BACKPLANE DRIVER (SSB)
10107 M: Michael Buesch <m@bues.ch>
10108 L: netdev@vger.kernel.org
10109 S: Maintained
10110 F: drivers/ssb/
10111 F: include/linux/ssb/
10112
10113 SONY VAIO CONTROL DEVICE DRIVER
10114 M: Mattia Dongili <malattia@linux.it>
10115 L: platform-driver-x86@vger.kernel.org
10116 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10117 S: Maintained
10118 F: Documentation/laptops/sony-laptop.txt
10119 F: drivers/char/sonypi.c
10120 F: drivers/platform/x86/sony-laptop.c
10121 F: include/linux/sony-laptop.h
10122
10123 SONY MEMORYSTICK CARD SUPPORT
10124 M: Alex Dubov <oakad@yahoo.com>
10125 W: http://tifmxx.berlios.de/
10126 S: Maintained
10127 F: drivers/memstick/host/tifm_ms.c
10128
10129 SONY MEMORYSTICK STANDARD SUPPORT
10130 M: Maxim Levitsky <maximlevitsky@gmail.com>
10131 S: Maintained
10132 F: drivers/memstick/core/ms_block.*
10133
10134 SOUND
10135 M: Jaroslav Kysela <perex@perex.cz>
10136 M: Takashi Iwai <tiwai@suse.com>
10137 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10138 W: http://www.alsa-project.org/
10139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10140 T: git git://git.alsa-project.org/alsa-kernel.git
10141 Q: http://patchwork.kernel.org/project/alsa-devel/list/
10142 S: Maintained
10143 F: Documentation/sound/
10144 F: include/sound/
10145 F: include/uapi/sound/
10146 F: sound/
10147
10148 SOUND - COMPRESSED AUDIO
10149 M: Vinod Koul <vinod.koul@intel.com>
10150 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10151 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10152 S: Supported
10153 F: Documentation/sound/alsa/compress_offload.txt
10154 F: include/sound/compress_driver.h
10155 F: include/uapi/sound/compress_*
10156 F: sound/core/compress_offload.c
10157 F: sound/soc/soc-compress.c
10158
10159 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10160 M: Liam Girdwood <lgirdwood@gmail.com>
10161 M: Mark Brown <broonie@kernel.org>
10162 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10163 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10164 W: http://alsa-project.org/main/index.php/ASoC
10165 S: Supported
10166 F: Documentation/sound/alsa/soc/
10167 F: sound/soc/
10168 F: include/sound/soc*
10169
10170 SOUND - DMAENGINE HELPERS
10171 M: Lars-Peter Clausen <lars@metafoo.de>
10172 S: Supported
10173 F: include/sound/dmaengine_pcm.h
10174 F: sound/core/pcm_dmaengine.c
10175 F: sound/soc/soc-generic-dmaengine-pcm.c
10176
10177 SP2 MEDIA DRIVER
10178 M: Olli Salonen <olli.salonen@iki.fi>
10179 L: linux-media@vger.kernel.org
10180 W: https://linuxtv.org
10181 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10182 S: Maintained
10183 F: drivers/media/dvb-frontends/sp2*
10184
10185 SPARC + UltraSPARC (sparc/sparc64)
10186 M: "David S. Miller" <davem@davemloft.net>
10187 L: sparclinux@vger.kernel.org
10188 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
10189 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10191 S: Maintained
10192 F: arch/sparc/
10193 F: drivers/sbus/
10194
10195 SPARC SERIAL DRIVERS
10196 M: "David S. Miller" <davem@davemloft.net>
10197 L: sparclinux@vger.kernel.org
10198 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10200 S: Maintained
10201 F: include/linux/sunserialcore.h
10202 F: drivers/tty/serial/suncore.c
10203 F: drivers/tty/serial/sunhv.c
10204 F: drivers/tty/serial/sunsab.c
10205 F: drivers/tty/serial/sunsab.h
10206 F: drivers/tty/serial/sunsu.c
10207 F: drivers/tty/serial/sunzilog.c
10208 F: drivers/tty/serial/sunzilog.h
10209
10210 SPARSE CHECKER
10211 M: "Christopher Li" <sparse@chrisli.org>
10212 L: linux-sparse@vger.kernel.org
10213 W: https://sparse.wiki.kernel.org/
10214 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10215 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10216 S: Maintained
10217 F: include/linux/compiler.h
10218
10219 SPEAR PLATFORM SUPPORT
10220 M: Viresh Kumar <vireshk@kernel.org>
10221 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10222 L: spear-devel@list.st.com
10223 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10224 W: http://www.st.com/spear
10225 S: Maintained
10226 F: arch/arm/mach-spear/
10227
10228 SPEAR CLOCK FRAMEWORK SUPPORT
10229 M: Viresh Kumar <vireshk@kernel.org>
10230 L: spear-devel@list.st.com
10231 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10232 W: http://www.st.com/spear
10233 S: Maintained
10234 F: drivers/clk/spear/
10235
10236 SPI SUBSYSTEM
10237 M: Mark Brown <broonie@kernel.org>
10238 L: linux-spi@vger.kernel.org
10239 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10240 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
10241 S: Maintained
10242 F: Documentation/spi/
10243 F: drivers/spi/
10244 F: include/linux/spi/
10245 F: include/uapi/linux/spi/
10246
10247 SPIDERNET NETWORK DRIVER for CELL
10248 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10249 L: netdev@vger.kernel.org
10250 S: Supported
10251 F: Documentation/networking/spider_net.txt
10252 F: drivers/net/ethernet/toshiba/spider_net*
10253
10254 SPU FILE SYSTEM
10255 M: Jeremy Kerr <jk@ozlabs.org>
10256 L: linuxppc-dev@lists.ozlabs.org
10257 W: http://www.ibm.com/developerworks/power/cell/
10258 S: Supported
10259 F: Documentation/filesystems/spufs.txt
10260 F: arch/powerpc/platforms/cell/spufs/
10261
10262 SQUASHFS FILE SYSTEM
10263 M: Phillip Lougher <phillip@squashfs.org.uk>
10264 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
10265 W: http://squashfs.org.uk
10266 S: Maintained
10267 F: Documentation/filesystems/squashfs.txt
10268 F: fs/squashfs/
10269
10270 SRM (Alpha) environment access
10271 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
10272 S: Maintained
10273 F: arch/alpha/kernel/srm_env.c
10274
10275 STABLE BRANCH
10276 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10277 L: stable@vger.kernel.org
10278 S: Supported
10279 F: Documentation/stable_kernel_rules.txt
10280
10281 STAGING SUBSYSTEM
10282 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10284 L: devel@driverdev.osuosl.org
10285 S: Supported
10286 F: drivers/staging/
10287
10288 STAGING - COMEDI
10289 M: Ian Abbott <abbotti@mev.co.uk>
10290 M: H Hartley Sweeten <hsweeten@visionengravers.com>
10291 S: Odd Fixes
10292 F: drivers/staging/comedi/
10293
10294 STAGING - FLARION FT1000 DRIVERS
10295 M: Marek Belisko <marek.belisko@gmail.com>
10296 S: Odd Fixes
10297 F: drivers/staging/ft1000/
10298
10299 STAGING - INDUSTRIAL IO
10300 M: Jonathan Cameron <jic23@kernel.org>
10301 L: linux-iio@vger.kernel.org
10302 S: Odd Fixes
10303 F: drivers/staging/iio/
10304
10305 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10306 M: Jarod Wilson <jarod@wilsonet.com>
10307 W: http://www.lirc.org/
10308 S: Odd Fixes
10309 F: drivers/staging/media/lirc/
10310
10311 STAGING - LUSTRE PARALLEL FILESYSTEM
10312 M: Oleg Drokin <oleg.drokin@intel.com>
10313 M: Andreas Dilger <andreas.dilger@intel.com>
10314 L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
10315 W: http://wiki.lustre.org/
10316 S: Maintained
10317 F: drivers/staging/lustre
10318
10319 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10320 M: Marc Dietrich <marvin24@gmx.de>
10321 L: ac100@lists.launchpad.net (moderated for non-subscribers)
10322 L: linux-tegra@vger.kernel.org
10323 S: Maintained
10324 F: drivers/staging/nvec/
10325
10326 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10327 M: Jens Frederich <jfrederich@gmail.com>
10328 M: Daniel Drake <dsd@laptop.org>
10329 M: Jon Nettleton <jon.nettleton@gmail.com>
10330 W: http://wiki.laptop.org/go/DCON
10331 S: Maintained
10332 F: drivers/staging/olpc_dcon/
10333
10334 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10335 M: Willy Tarreau <willy@meta-x.org>
10336 S: Odd Fixes
10337 F: drivers/staging/panel/
10338
10339 STAGING - REALTEK RTL8712U DRIVERS
10340 M: Larry Finger <Larry.Finger@lwfinger.net>
10341 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10342 S: Odd Fixes
10343 F: drivers/staging/rtl8712/
10344
10345 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10346 M: Larry Finger <Larry.Finger@lwfinger.net>
10347 M: Jes Sorensen <Jes.Sorensen@redhat.com>
10348 L: linux-wireless@vger.kernel.org
10349 S: Maintained
10350 F: drivers/staging/rtl8723au/
10351
10352 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10353 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10354 M: Teddy Wang <teddy.wang@siliconmotion.com>
10355 M: Sudip Mukherjee <sudip@vectorindia.org>
10356 L: linux-fbdev@vger.kernel.org
10357 S: Maintained
10358 F: drivers/staging/sm750fb/
10359
10360 STAGING - SLICOSS
10361 M: Lior Dotan <liodot@gmail.com>
10362 M: Christopher Harrer <charrer@alacritech.com>
10363 S: Odd Fixes
10364 F: drivers/staging/slicoss/
10365
10366 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10367 M: William Hubbs <w.d.hubbs@gmail.com>
10368 M: Chris Brannon <chris@the-brannons.com>
10369 M: Kirk Reiser <kirk@reisers.ca>
10370 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
10371 L: speakup@linux-speakup.org
10372 W: http://www.linux-speakup.org/
10373 S: Odd Fixes
10374 F: drivers/staging/speakup/
10375
10376 STAGING - VIA VT665X DRIVERS
10377 M: Forest Bond <forest@alittletooquiet.net>
10378 S: Odd Fixes
10379 F: drivers/staging/vt665?/
10380
10381 STAGING - WILC1000 WIFI DRIVER
10382 M: Johnny Kim <johnny.kim@atmel.com>
10383 M: Austin Shin <austin.shin@atmel.com>
10384 M: Chris Park <chris.park@atmel.com>
10385 M: Tony Cho <tony.cho@atmel.com>
10386 M: Glen Lee <glen.lee@atmel.com>
10387 M: Leo Kim <leo.kim@atmel.com>
10388 L: linux-wireless@vger.kernel.org
10389 S: Supported
10390 F: drivers/staging/wilc1000/
10391
10392 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10393 M: Arnaud Patard <arnaud.patard@rtp-net.org>
10394 S: Odd Fixes
10395 F: drivers/staging/xgifb/
10396
10397 HFI1 DRIVER
10398 M: Mike Marciniszyn <infinipath@intel.com>
10399 L: linux-rdma@vger.kernel.org
10400 S: Supported
10401 F: drivers/staging/rdma/hfi1
10402
10403 STARFIRE/DURALAN NETWORK DRIVER
10404 M: Ion Badulescu <ionut@badula.org>
10405 S: Odd Fixes
10406 F: drivers/net/ethernet/adaptec/starfire*
10407
10408 SUN3/3X
10409 M: Sam Creasey <sammy@sammy.net>
10410 W: http://sammy.net/sun3/
10411 S: Maintained
10412 F: arch/m68k/kernel/*sun3*
10413 F: arch/m68k/sun3*/
10414 F: arch/m68k/include/asm/sun3*
10415 F: drivers/net/ethernet/i825xx/sun3*
10416
10417 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10418 M: Hans de Goede <hdegoede@redhat.com>
10419 L: linux-input@vger.kernel.org
10420 S: Maintained
10421 F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10422 F: drivers/input/keyboard/sun4i-lradc-keys.c
10423
10424 SUNDANCE NETWORK DRIVER
10425 M: Denis Kirjanov <kda@linux-powerpc.org>
10426 L: netdev@vger.kernel.org
10427 S: Maintained
10428 F: drivers/net/ethernet/dlink/sundance.c
10429
10430 SUPERH
10431 L: linux-sh@vger.kernel.org
10432 Q: http://patchwork.kernel.org/project/linux-sh/list/
10433 S: Orphan
10434 F: Documentation/sh/
10435 F: arch/sh/
10436 F: drivers/sh/
10437
10438 SUSPEND TO RAM
10439 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
10440 M: Len Brown <len.brown@intel.com>
10441 M: Pavel Machek <pavel@ucw.cz>
10442 L: linux-pm@vger.kernel.org
10443 S: Supported
10444 F: Documentation/power/
10445 F: arch/x86/kernel/acpi/
10446 F: drivers/base/power/
10447 F: kernel/power/
10448 F: include/linux/suspend.h
10449 F: include/linux/freezer.h
10450 F: include/linux/pm.h
10451
10452 SVGA HANDLING
10453 M: Martin Mares <mj@ucw.cz>
10454 L: linux-video@atrey.karlin.mff.cuni.cz
10455 S: Maintained
10456 F: Documentation/svga.txt
10457 F: arch/x86/boot/video*
10458
10459 SWIOTLB SUBSYSTEM
10460 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10461 L: linux-kernel@vger.kernel.org
10462 S: Supported
10463 F: lib/swiotlb.c
10464 F: arch/*/kernel/pci-swiotlb.c
10465 F: include/linux/swiotlb.h
10466
10467 SWITCHDEV
10468 M: Jiri Pirko <jiri@resnulli.us>
10469 L: netdev@vger.kernel.org
10470 S: Supported
10471 F: net/switchdev/
10472 F: include/net/switchdev.h
10473
10474 SYNOPSYS ARC ARCHITECTURE
10475 M: Vineet Gupta <vgupta@synopsys.com>
10476 L: linux-snps-arc@lists.infradead.org
10477 S: Supported
10478 F: arch/arc/
10479 F: Documentation/devicetree/bindings/arc/*
10480 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10481 F: drivers/tty/serial/arc_uart.c
10482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10483
10484 SYNOPSYS ARC SDP platform support
10485 M: Alexey Brodkin <abrodkin@synopsys.com>
10486 S: Supported
10487 F: arch/arc/plat-axs10x
10488 F: arch/arc/boot/dts/ax*
10489 F: Documentation/devicetree/bindings/arc/axs10*
10490
10491 SYSTEM CONFIGURATION (SYSCON)
10492 M: Lee Jones <lee.jones@linaro.org>
10493 M: Arnd Bergmann <arnd@arndb.de>
10494 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10495 S: Supported
10496 F: drivers/mfd/syscon.c
10497
10498 SYSV FILESYSTEM
10499 M: Christoph Hellwig <hch@infradead.org>
10500 S: Maintained
10501 F: Documentation/filesystems/sysv-fs.txt
10502 F: fs/sysv/
10503 F: include/linux/sysv_fs.h
10504
10505 TARGET SUBSYSTEM
10506 M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10507 L: linux-scsi@vger.kernel.org
10508 L: target-devel@vger.kernel.org
10509 W: http://www.linux-iscsi.org
10510 W: http://groups.google.com/group/linux-iscsi-target-dev
10511 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10512 S: Supported
10513 F: drivers/target/
10514 F: include/target/
10515 F: Documentation/target/
10516
10517 TASKSTATS STATISTICS INTERFACE
10518 M: Balbir Singh <bsingharora@gmail.com>
10519 S: Maintained
10520 F: Documentation/accounting/taskstats*
10521 F: include/linux/taskstats*
10522 F: kernel/taskstats.c
10523
10524 TC CLASSIFIER
10525 M: Jamal Hadi Salim <jhs@mojatatu.com>
10526 L: netdev@vger.kernel.org
10527 S: Maintained
10528 F: include/net/pkt_cls.h
10529 F: include/uapi/linux/pkt_cls.h
10530 F: net/sched/
10531
10532 TCP LOW PRIORITY MODULE
10533 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10534 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10535 W: http://tcp-lp-mod.sourceforge.net/
10536 S: Maintained
10537 F: net/ipv4/tcp_lp.c
10538
10539 TDA10071 MEDIA DRIVER
10540 M: Antti Palosaari <crope@iki.fi>
10541 L: linux-media@vger.kernel.org
10542 W: https://linuxtv.org
10543 W: http://palosaari.fi/linux/
10544 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10545 T: git git://linuxtv.org/anttip/media_tree.git
10546 S: Maintained
10547 F: drivers/media/dvb-frontends/tda10071*
10548
10549 TDA18212 MEDIA DRIVER
10550 M: Antti Palosaari <crope@iki.fi>
10551 L: linux-media@vger.kernel.org
10552 W: https://linuxtv.org
10553 W: http://palosaari.fi/linux/
10554 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10555 T: git git://linuxtv.org/anttip/media_tree.git
10556 S: Maintained
10557 F: drivers/media/tuners/tda18212*
10558
10559 TDA18218 MEDIA DRIVER
10560 M: Antti Palosaari <crope@iki.fi>
10561 L: linux-media@vger.kernel.org
10562 W: https://linuxtv.org
10563 W: http://palosaari.fi/linux/
10564 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10565 T: git git://linuxtv.org/anttip/media_tree.git
10566 S: Maintained
10567 F: drivers/media/tuners/tda18218*
10568
10569 TDA18271 MEDIA DRIVER
10570 M: Michael Krufky <mkrufky@linuxtv.org>
10571 L: linux-media@vger.kernel.org
10572 W: https://linuxtv.org
10573 W: http://github.com/mkrufky
10574 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10575 T: git git://linuxtv.org/mkrufky/tuners.git
10576 S: Maintained
10577 F: drivers/media/tuners/tda18271*
10578
10579 TDA827x MEDIA DRIVER
10580 M: Michael Krufky <mkrufky@linuxtv.org>
10581 L: linux-media@vger.kernel.org
10582 W: https://linuxtv.org
10583 W: http://github.com/mkrufky
10584 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10585 T: git git://linuxtv.org/mkrufky/tuners.git
10586 S: Maintained
10587 F: drivers/media/tuners/tda8290.*
10588
10589 TDA8290 MEDIA DRIVER
10590 M: Michael Krufky <mkrufky@linuxtv.org>
10591 L: linux-media@vger.kernel.org
10592 W: https://linuxtv.org
10593 W: http://github.com/mkrufky
10594 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10595 T: git git://linuxtv.org/mkrufky/tuners.git
10596 S: Maintained
10597 F: drivers/media/tuners/tda8290.*
10598
10599 TDA9840 MEDIA DRIVER
10600 M: Hans Verkuil <hverkuil@xs4all.nl>
10601 L: linux-media@vger.kernel.org
10602 T: git git://linuxtv.org/media_tree.git
10603 W: https://linuxtv.org
10604 S: Maintained
10605 F: drivers/media/i2c/tda9840*
10606
10607 TEA5761 TUNER DRIVER
10608 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10609 L: linux-media@vger.kernel.org
10610 W: https://linuxtv.org
10611 T: git git://linuxtv.org/media_tree.git
10612 S: Odd fixes
10613 F: drivers/media/tuners/tea5761.*
10614
10615 TEA5767 TUNER DRIVER
10616 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10617 L: linux-media@vger.kernel.org
10618 W: https://linuxtv.org
10619 T: git git://linuxtv.org/media_tree.git
10620 S: Maintained
10621 F: drivers/media/tuners/tea5767.*
10622
10623 TEA6415C MEDIA DRIVER
10624 M: Hans Verkuil <hverkuil@xs4all.nl>
10625 L: linux-media@vger.kernel.org
10626 T: git git://linuxtv.org/media_tree.git
10627 W: https://linuxtv.org
10628 S: Maintained
10629 F: drivers/media/i2c/tea6415c*
10630
10631 TEA6420 MEDIA DRIVER
10632 M: Hans Verkuil <hverkuil@xs4all.nl>
10633 L: linux-media@vger.kernel.org
10634 T: git git://linuxtv.org/media_tree.git
10635 W: https://linuxtv.org
10636 S: Maintained
10637 F: drivers/media/i2c/tea6420*
10638
10639 TEAM DRIVER
10640 M: Jiri Pirko <jiri@resnulli.us>
10641 L: netdev@vger.kernel.org
10642 S: Supported
10643 F: drivers/net/team/
10644 F: include/linux/if_team.h
10645 F: include/uapi/linux/if_team.h
10646
10647 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10648 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10649 S: Maintained
10650 F: arch/x86/platform/ts5500/
10651
10652 TECHNOTREND USB IR RECEIVER
10653 M: Sean Young <sean@mess.org>
10654 L: linux-media@vger.kernel.org
10655 S: Maintained
10656 F: drivers/media/rc/ttusbir.c
10657
10658 TEGRA ARCHITECTURE SUPPORT
10659 M: Stephen Warren <swarren@wwwdotorg.org>
10660 M: Thierry Reding <thierry.reding@gmail.com>
10661 M: Alexandre Courbot <gnurou@gmail.com>
10662 L: linux-tegra@vger.kernel.org
10663 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
10664 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10665 S: Supported
10666 N: [^a-z]tegra
10667
10668 TEGRA CLOCK DRIVER
10669 M: Peter De Schrijver <pdeschrijver@nvidia.com>
10670 M: Prashant Gaikwad <pgaikwad@nvidia.com>
10671 S: Supported
10672 F: drivers/clk/tegra/
10673
10674 TEGRA DMA DRIVER
10675 M: Laxman Dewangan <ldewangan@nvidia.com>
10676 S: Supported
10677 F: drivers/dma/tegra20-apb-dma.c
10678
10679 TEGRA I2C DRIVER
10680 M: Laxman Dewangan <ldewangan@nvidia.com>
10681 S: Supported
10682 F: drivers/i2c/busses/i2c-tegra.c
10683
10684 TEGRA IOMMU DRIVERS
10685 M: Hiroshi Doyu <hdoyu@nvidia.com>
10686 S: Supported
10687 F: drivers/iommu/tegra*
10688
10689 TEGRA KBC DRIVER
10690 M: Rakesh Iyer <riyer@nvidia.com>
10691 M: Laxman Dewangan <ldewangan@nvidia.com>
10692 S: Supported
10693 F: drivers/input/keyboard/tegra-kbc.c
10694
10695 TEGRA PWM DRIVER
10696 M: Thierry Reding <thierry.reding@gmail.com>
10697 S: Supported
10698 F: drivers/pwm/pwm-tegra.c
10699
10700 TEGRA SERIAL DRIVER
10701 M: Laxman Dewangan <ldewangan@nvidia.com>
10702 S: Supported
10703 F: drivers/tty/serial/serial-tegra.c
10704
10705 TEGRA SPI DRIVER
10706 M: Laxman Dewangan <ldewangan@nvidia.com>
10707 S: Supported
10708 F: drivers/spi/spi-tegra*
10709
10710 TEHUTI ETHERNET DRIVER
10711 M: Andy Gospodarek <andy@greyhouse.net>
10712 L: netdev@vger.kernel.org
10713 S: Supported
10714 F: drivers/net/ethernet/tehuti/*
10715
10716 Telecom Clock Driver for MCPL0010
10717 M: Mark Gross <mark.gross@intel.com>
10718 S: Supported
10719 F: drivers/char/tlclk.c
10720
10721 TENSILICA XTENSA PORT (xtensa)
10722 M: Chris Zankel <chris@zankel.net>
10723 M: Max Filippov <jcmvbkbc@gmail.com>
10724 L: linux-xtensa@linux-xtensa.org
10725 S: Maintained
10726 F: arch/xtensa/
10727 F: drivers/irqchip/irq-xtensa-*
10728
10729 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10730 M: Hans Verkuil <hverkuil@xs4all.nl>
10731 L: linux-media@vger.kernel.org
10732 T: git git://linuxtv.org/media_tree.git
10733 W: https://linuxtv.org
10734 S: Maintained
10735 F: drivers/media/radio/radio-raremono.c
10736
10737 THERMAL
10738 M: Zhang Rui <rui.zhang@intel.com>
10739 M: Eduardo Valentin <edubezval@gmail.com>
10740 L: linux-pm@vger.kernel.org
10741 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10742 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10743 Q: https://patchwork.kernel.org/project/linux-pm/list/
10744 S: Supported
10745 F: drivers/thermal/
10746 F: include/linux/thermal.h
10747 F: include/uapi/linux/thermal.h
10748 F: include/linux/cpu_cooling.h
10749 F: Documentation/devicetree/bindings/thermal/
10750
10751 THERMAL/CPU_COOLING
10752 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
10753 M: Viresh Kumar <viresh.kumar@linaro.org>
10754 M: Javi Merino <javi.merino@arm.com>
10755 L: linux-pm@vger.kernel.org
10756 S: Supported
10757 F: Documentation/thermal/cpu-cooling-api.txt
10758 F: drivers/thermal/cpu_cooling.c
10759 F: include/linux/cpu_cooling.h
10760
10761 THINGM BLINK(1) USB RGB LED DRIVER
10762 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10763 S: Maintained
10764 F: drivers/hid/hid-thingm.c
10765
10766 THINKPAD ACPI EXTRAS DRIVER
10767 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10768 L: ibm-acpi-devel@lists.sourceforge.net
10769 L: platform-driver-x86@vger.kernel.org
10770 W: http://ibm-acpi.sourceforge.net
10771 W: http://thinkwiki.org/wiki/Ibm-acpi
10772 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10773 S: Maintained
10774 F: drivers/platform/x86/thinkpad_acpi.c
10775
10776 TI BANDGAP AND THERMAL DRIVER
10777 M: Eduardo Valentin <edubezval@gmail.com>
10778 L: linux-pm@vger.kernel.org
10779 L: linux-omap@vger.kernel.org
10780 S: Maintained
10781 F: drivers/thermal/ti-soc-thermal/
10782
10783 TI CDCE706 CLOCK DRIVER
10784 M: Max Filippov <jcmvbkbc@gmail.com>
10785 S: Maintained
10786 F: drivers/clk/clk-cdce706.c
10787
10788 TI CLOCK DRIVER
10789 M: Tero Kristo <t-kristo@ti.com>
10790 L: linux-omap@vger.kernel.org
10791 S: Maintained
10792 F: drivers/clk/ti/
10793 F: include/linux/clk/ti.h
10794
10795 TI FLASH MEDIA INTERFACE DRIVER
10796 M: Alex Dubov <oakad@yahoo.com>
10797 S: Maintained
10798 F: drivers/misc/tifm*
10799 F: drivers/mmc/host/tifm_sd.c
10800 F: include/linux/tifm.h
10801
10802 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10803 M: Santosh Shilimkar <ssantosh@kernel.org>
10804 L: linux-kernel@vger.kernel.org
10805 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10806 S: Maintained
10807 F: drivers/soc/ti/*
10808 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10809
10810
10811 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10812 M: M R Swami Reddy <mr.swami.reddy@ti.com>
10813 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10814 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10815 S: Maintained
10816 F: sound/soc/codecs/lm49453*
10817 F: sound/soc/codecs/isabelle*
10818
10819 TI LP855x BACKLIGHT DRIVER
10820 M: Milo Kim <milo.kim@ti.com>
10821 S: Maintained
10822 F: Documentation/backlight/lp855x-driver.txt
10823 F: drivers/video/backlight/lp855x_bl.c
10824 F: include/linux/platform_data/lp855x.h
10825
10826 TI LP8727 CHARGER DRIVER
10827 M: Milo Kim <milo.kim@ti.com>
10828 S: Maintained
10829 F: drivers/power/lp8727_charger.c
10830 F: include/linux/platform_data/lp8727.h
10831
10832 TI LP8788 MFD DRIVER
10833 M: Milo Kim <milo.kim@ti.com>
10834 S: Maintained
10835 F: drivers/iio/adc/lp8788_adc.c
10836 F: drivers/leds/leds-lp8788.c
10837 F: drivers/mfd/lp8788*.c
10838 F: drivers/power/lp8788-charger.c
10839 F: drivers/regulator/lp8788-*.c
10840 F: include/linux/mfd/lp8788*.h
10841
10842 TI NETCP ETHERNET DRIVER
10843 M: Wingman Kwok <w-kwok2@ti.com>
10844 M: Murali Karicheri <m-karicheri2@ti.com>
10845 L: netdev@vger.kernel.org
10846 S: Maintained
10847 F: drivers/net/ethernet/ti/netcp*
10848
10849 TI TAS571X FAMILY ASoC CODEC DRIVER
10850 M: Kevin Cernekee <cernekee@chromium.org>
10851 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10852 S: Odd Fixes
10853 F: sound/soc/codecs/tas571x*
10854
10855 TI TWL4030 SERIES SOC CODEC DRIVER
10856 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
10857 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
10858 S: Maintained
10859 F: sound/soc/codecs/twl4030*
10860
10861 TI WILINK WIRELESS DRIVERS
10862 L: linux-wireless@vger.kernel.org
10863 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
10864 W: http://wireless.kernel.org/en/users/Drivers/wl1251
10865 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10866 S: Orphan
10867 F: drivers/net/wireless/ti/
10868 F: include/linux/wl12xx.h
10869
10870 TIPC NETWORK LAYER
10871 M: Jon Maloy <jon.maloy@ericsson.com>
10872 M: Ying Xue <ying.xue@windriver.com>
10873 L: netdev@vger.kernel.org (core kernel code)
10874 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10875 W: http://tipc.sourceforge.net/
10876 S: Maintained
10877 F: include/uapi/linux/tipc*.h
10878 F: net/tipc/
10879
10880 TILE ARCHITECTURE
10881 M: Chris Metcalf <cmetcalf@ezchip.com>
10882 W: http://www.ezchip.com/scm/
10883 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10884 S: Supported
10885 F: arch/tile/
10886 F: drivers/char/tile-srom.c
10887 F: drivers/edac/tile_edac.c
10888 F: drivers/net/ethernet/tile/
10889 F: drivers/rtc/rtc-tile.c
10890 F: drivers/tty/hvc/hvc_tile.c
10891 F: drivers/tty/serial/tilegx.c
10892 F: drivers/usb/host/*-tilegx.c
10893 F: include/linux/usb/tilegx.h
10894
10895 TLAN NETWORK DRIVER
10896 M: Samuel Chessman <chessman@tux.org>
10897 L: tlan-devel@lists.sourceforge.net (subscribers-only)
10898 W: http://sourceforge.net/projects/tlan/
10899 S: Maintained
10900 F: Documentation/networking/tlan.txt
10901 F: drivers/net/ethernet/ti/tlan.*
10902
10903 TOMOYO SECURITY MODULE
10904 M: Kentaro Takeda <takedakn@nttdata.co.jp>
10905 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10906 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10907 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10908 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10909 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10910 W: http://tomoyo.sourceforge.jp/
10911 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10912 S: Maintained
10913 F: security/tomoyo/
10914
10915 TOPSTAR LAPTOP EXTRAS DRIVER
10916 M: Herton Ronaldo Krzesinski <herton@canonical.com>
10917 L: platform-driver-x86@vger.kernel.org
10918 S: Maintained
10919 F: drivers/platform/x86/topstar-laptop.c
10920
10921 TOSHIBA ACPI EXTRAS DRIVER
10922 M: Azael Avalos <coproscefalo@gmail.com>
10923 L: platform-driver-x86@vger.kernel.org
10924 S: Maintained
10925 F: drivers/platform/x86/toshiba_acpi.c
10926
10927 TOSHIBA BLUETOOTH DRIVER
10928 M: Azael Avalos <coproscefalo@gmail.com>
10929 L: platform-driver-x86@vger.kernel.org
10930 S: Maintained
10931 F: drivers/platform/x86/toshiba_bluetooth.c
10932
10933 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10934 M: Azael Avalos <coproscefalo@gmail.com>
10935 L: platform-driver-x86@vger.kernel.org
10936 S: Maintained
10937 F: drivers/platform/x86/toshiba_haps.c
10938
10939 TOSHIBA WMI HOTKEYS DRIVER
10940 M: Azael Avalos <coproscefalo@gmail.com>
10941 L: platform-driver-x86@vger.kernel.org
10942 S: Maintained
10943 F: drivers/platform/x86/toshiba-wmi.c
10944
10945 TOSHIBA SMM DRIVER
10946 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
10947 W: http://www.buzzard.org.uk/toshiba/
10948 S: Maintained
10949 F: drivers/char/toshiba.c
10950 F: include/linux/toshiba.h
10951 F: include/uapi/linux/toshiba.h
10952
10953 TOSHIBA TC358743 DRIVER
10954 M: Mats Randgaard <matrandg@cisco.com>
10955 L: linux-media@vger.kernel.org
10956 S: Maintained
10957 F: drivers/media/i2c/tc358743*
10958 F: include/media/i2c/tc358743.h
10959
10960 TMIO MMC DRIVER
10961 M: Ian Molton <ian@mnementh.co.uk>
10962 L: linux-mmc@vger.kernel.org
10963 S: Maintained
10964 F: drivers/mmc/host/tmio_mmc*
10965 F: drivers/mmc/host/sh_mobile_sdhi.c
10966 F: include/linux/mmc/tmio.h
10967 F: include/linux/mmc/sh_mobile_sdhi.h
10968
10969 TMP401 HARDWARE MONITOR DRIVER
10970 M: Guenter Roeck <linux@roeck-us.net>
10971 L: lm-sensors@lm-sensors.org
10972 S: Maintained
10973 F: Documentation/hwmon/tmp401
10974 F: drivers/hwmon/tmp401.c
10975
10976 TMPFS (SHMEM FILESYSTEM)
10977 M: Hugh Dickins <hughd@google.com>
10978 L: linux-mm@kvack.org
10979 S: Maintained
10980 F: include/linux/shmem_fs.h
10981 F: mm/shmem.c
10982
10983 TM6000 VIDEO4LINUX DRIVER
10984 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10985 L: linux-media@vger.kernel.org
10986 W: https://linuxtv.org
10987 T: git git://linuxtv.org/media_tree.git
10988 S: Odd fixes
10989 F: drivers/media/usb/tm6000/
10990
10991 TW68 VIDEO4LINUX DRIVER
10992 M: Hans Verkuil <hverkuil@xs4all.nl>
10993 L: linux-media@vger.kernel.org
10994 T: git git://linuxtv.org/media_tree.git
10995 W: https://linuxtv.org
10996 S: Odd Fixes
10997 F: drivers/media/pci/tw68/
10998
10999 TPM DEVICE DRIVER
11000 M: Peter Huewe <peterhuewe@gmx.de>
11001 M: Marcel Selhorst <tpmdd@selhorst.net>
11002 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11003 R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11004 W: http://tpmdd.sourceforge.net
11005 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11006 Q: git git://github.com/PeterHuewe/linux-tpmdd.git
11007 T: https://github.com/PeterHuewe/linux-tpmdd
11008 S: Maintained
11009 F: drivers/char/tpm/
11010
11011 TPM IBM_VTPM DEVICE DRIVER
11012 M: Ashley Lai <ashleydlai@gmail.com>
11013 W: http://tpmdd.sourceforge.net
11014 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11015 S: Maintained
11016 F: drivers/char/tpm/tpm_ibmvtpm*
11017
11018 TRACING
11019 M: Steven Rostedt <rostedt@goodmis.org>
11020 M: Ingo Molnar <mingo@redhat.com>
11021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11022 S: Maintained
11023 F: Documentation/trace/ftrace.txt
11024 F: arch/*/*/*/ftrace.h
11025 F: arch/*/kernel/ftrace.c
11026 F: include/*/ftrace.h
11027 F: include/linux/trace*.h
11028 F: include/trace/
11029 F: kernel/trace/
11030 F: tools/testing/selftests/ftrace/
11031
11032 TRIVIAL PATCHES
11033 M: Jiri Kosina <trivial@kernel.org>
11034 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11035 S: Maintained
11036 K: ^Subject:.*(?i)trivial
11037
11038 TTY LAYER
11039 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11040 M: Jiri Slaby <jslaby@suse.com>
11041 S: Supported
11042 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11043 F: Documentation/serial/
11044 F: drivers/tty/
11045 F: drivers/tty/serial/serial_core.c
11046 F: include/linux/serial_core.h
11047 F: include/linux/serial.h
11048 F: include/linux/tty.h
11049 F: include/uapi/linux/serial_core.h
11050 F: include/uapi/linux/serial.h
11051 F: include/uapi/linux/tty.h
11052
11053 TUA9001 MEDIA DRIVER
11054 M: Antti Palosaari <crope@iki.fi>
11055 L: linux-media@vger.kernel.org
11056 W: https://linuxtv.org
11057 W: http://palosaari.fi/linux/
11058 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11059 T: git git://linuxtv.org/anttip/media_tree.git
11060 S: Maintained
11061 F: drivers/media/tuners/tua9001*
11062
11063 TULIP NETWORK DRIVERS
11064 L: netdev@vger.kernel.org
11065 L: linux-parisc@vger.kernel.org
11066 S: Orphan
11067 F: drivers/net/ethernet/dec/tulip/
11068
11069 TUN/TAP driver
11070 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
11071 W: http://vtun.sourceforge.net/tun
11072 S: Maintained
11073 F: Documentation/networking/tuntap.txt
11074 F: arch/um/os-Linux/drivers/
11075
11076 TURBOCHANNEL SUBSYSTEM
11077 M: "Maciej W. Rozycki" <macro@linux-mips.org>
11078 M: Ralf Baechle <ralf@linux-mips.org>
11079 L: linux-mips@linux-mips.org
11080 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
11081 S: Maintained
11082 F: drivers/tc/
11083 F: include/linux/tc.h
11084
11085 U14-34F SCSI DRIVER
11086 M: Dario Ballabio <ballabio_dario@emc.com>
11087 L: linux-scsi@vger.kernel.org
11088 S: Maintained
11089 F: drivers/scsi/u14-34f.c
11090
11091 UBI FILE SYSTEM (UBIFS)
11092 M: Artem Bityutskiy <dedekind1@gmail.com>
11093 M: Adrian Hunter <adrian.hunter@intel.com>
11094 L: linux-mtd@lists.infradead.org
11095 T: git git://git.infradead.org/ubifs-2.6.git
11096 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
11097 S: Maintained
11098 F: Documentation/filesystems/ubifs.txt
11099 F: fs/ubifs/
11100
11101 UCLINUX (M68KNOMMU AND COLDFIRE)
11102 M: Greg Ungerer <gerg@uclinux.org>
11103 W: http://www.uclinux.org/
11104 L: linux-m68k@lists.linux-m68k.org
11105 L: uclinux-dev@uclinux.org (subscribers-only)
11106 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11107 S: Maintained
11108 F: arch/m68k/coldfire/
11109 F: arch/m68k/68*/
11110 F: arch/m68k/*/*_no.*
11111 F: arch/m68k/include/asm/*_no.*
11112
11113 UDF FILESYSTEM
11114 M: Jan Kara <jack@suse.com>
11115 S: Maintained
11116 F: Documentation/filesystems/udf.txt
11117 F: fs/udf/
11118
11119 UFS FILESYSTEM
11120 M: Evgeniy Dushistov <dushistov@mail.ru>
11121 S: Maintained
11122 F: Documentation/filesystems/ufs.txt
11123 F: fs/ufs/
11124
11125 UHID USERSPACE HID IO DRIVER:
11126 M: David Herrmann <dh.herrmann@googlemail.com>
11127 L: linux-input@vger.kernel.org
11128 S: Maintained
11129 F: drivers/hid/uhid.c
11130 F: include/uapi/linux/uhid.h
11131
11132 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11133 L: linux-usb@vger.kernel.org
11134 S: Orphan
11135 F: drivers/uwb/
11136 F: include/linux/uwb.h
11137 F: include/linux/uwb/
11138
11139 UNICORE32 ARCHITECTURE:
11140 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
11141 W: http://mprc.pku.edu.cn/~guanxuetao/linux
11142 S: Maintained
11143 T: git git://github.com/gxt/linux.git
11144 F: arch/unicore32/
11145
11146 UNIFDEF
11147 M: Tony Finch <dot@dotat.at>
11148 W: http://dotat.at/prog/unifdef
11149 S: Maintained
11150 F: scripts/unifdef.c
11151
11152 UNIFORM CDROM DRIVER
11153 M: Jens Axboe <axboe@kernel.dk>
11154 W: http://www.kernel.dk
11155 S: Maintained
11156 F: Documentation/cdrom/
11157 F: drivers/cdrom/cdrom.c
11158 F: include/linux/cdrom.h
11159 F: include/uapi/linux/cdrom.h
11160
11161 UNISYS S-PAR DRIVERS
11162 M: Benjamin Romer <benjamin.romer@unisys.com>
11163 M: David Kershner <david.kershner@unisys.com>
11164 L: sparmaintainer@unisys.com (Unisys internal)
11165 S: Supported
11166 F: drivers/staging/unisys/
11167
11168 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11169 M: Vinayak Holikatti <vinholikatti@gmail.com>
11170 L: linux-scsi@vger.kernel.org
11171 S: Supported
11172 F: Documentation/scsi/ufs.txt
11173 F: drivers/scsi/ufs/
11174
11175 UNSORTED BLOCK IMAGES (UBI)
11176 M: Artem Bityutskiy <dedekind1@gmail.com>
11177 M: Richard Weinberger <richard@nod.at>
11178 W: http://www.linux-mtd.infradead.org/
11179 L: linux-mtd@lists.infradead.org
11180 T: git git://git.infradead.org/ubifs-2.6.git
11181 S: Supported
11182 F: drivers/mtd/ubi/
11183 F: include/linux/mtd/ubi.h
11184 F: include/uapi/mtd/ubi-user.h
11185
11186 USB ACM DRIVER
11187 M: Oliver Neukum <oliver@neukum.org>
11188 L: linux-usb@vger.kernel.org
11189 S: Maintained
11190 F: Documentation/usb/acm.txt
11191 F: drivers/usb/class/cdc-acm.*
11192
11193 USB AR5523 WIRELESS DRIVER
11194 M: Pontus Fuchs <pontus.fuchs@gmail.com>
11195 L: linux-wireless@vger.kernel.org
11196 S: Maintained
11197 F: drivers/net/wireless/ath/ar5523/
11198
11199 USB ATTACHED SCSI
11200 M: Hans de Goede <hdegoede@redhat.com>
11201 M: Gerd Hoffmann <kraxel@redhat.com>
11202 L: linux-usb@vger.kernel.org
11203 L: linux-scsi@vger.kernel.org
11204 S: Maintained
11205 F: drivers/usb/storage/uas.c
11206
11207 USB CDC ETHERNET DRIVER
11208 M: Oliver Neukum <oliver@neukum.org>
11209 L: linux-usb@vger.kernel.org
11210 S: Maintained
11211 F: drivers/net/usb/cdc_*.c
11212 F: include/uapi/linux/usb/cdc.h
11213
11214 USB CHAOSKEY DRIVER
11215 M: Keith Packard <keithp@keithp.com>
11216 L: linux-usb@vger.kernel.org
11217 S: Maintained
11218 F: drivers/usb/misc/chaoskey.c
11219
11220 USB CYPRESS C67X00 DRIVER
11221 M: Peter Korsgaard <jacmet@sunsite.dk>
11222 L: linux-usb@vger.kernel.org
11223 S: Maintained
11224 F: drivers/usb/c67x00/
11225
11226 USB DAVICOM DM9601 DRIVER
11227 M: Peter Korsgaard <jacmet@sunsite.dk>
11228 L: netdev@vger.kernel.org
11229 W: http://www.linux-usb.org/usbnet
11230 S: Maintained
11231 F: drivers/net/usb/dm9601.c
11232
11233 USB DIAMOND RIO500 DRIVER
11234 M: Cesar Miquel <miquel@df.uba.ar>
11235 L: rio500-users@lists.sourceforge.net
11236 W: http://rio500.sourceforge.net
11237 S: Maintained
11238 F: drivers/usb/misc/rio500*
11239
11240 USB EHCI DRIVER
11241 M: Alan Stern <stern@rowland.harvard.edu>
11242 L: linux-usb@vger.kernel.org
11243 S: Maintained
11244 F: Documentation/usb/ehci.txt
11245 F: drivers/usb/host/ehci*
11246
11247 USB GADGET/PERIPHERAL SUBSYSTEM
11248 M: Felipe Balbi <balbi@ti.com>
11249 L: linux-usb@vger.kernel.org
11250 W: http://www.linux-usb.org/gadget
11251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11252 S: Maintained
11253 F: drivers/usb/gadget/
11254 F: include/linux/usb/gadget*
11255
11256 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11257 M: Jiri Kosina <jikos@kernel.org>
11258 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
11259 L: linux-usb@vger.kernel.org
11260 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11261 S: Maintained
11262 F: Documentation/hid/hiddev.txt
11263 F: drivers/hid/usbhid/
11264
11265 USB ISP116X DRIVER
11266 M: Olav Kongas <ok@artecdesign.ee>
11267 L: linux-usb@vger.kernel.org
11268 S: Maintained
11269 F: drivers/usb/host/isp116x*
11270 F: include/linux/usb/isp116x.h
11271
11272 USB MASS STORAGE DRIVER
11273 M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11274 L: linux-usb@vger.kernel.org
11275 L: usb-storage@lists.one-eyed-alien.net
11276 S: Maintained
11277 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
11278 F: drivers/usb/storage/
11279
11280 USB MIDI DRIVER
11281 M: Clemens Ladisch <clemens@ladisch.de>
11282 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11283 T: git git://git.alsa-project.org/alsa-kernel.git
11284 S: Maintained
11285 F: sound/usb/midi.*
11286
11287 USB NETWORKING DRIVERS
11288 L: linux-usb@vger.kernel.org
11289 S: Odd Fixes
11290 F: drivers/net/usb/
11291
11292 USB OHCI DRIVER
11293 M: Alan Stern <stern@rowland.harvard.edu>
11294 L: linux-usb@vger.kernel.org
11295 S: Maintained
11296 F: Documentation/usb/ohci.txt
11297 F: drivers/usb/host/ohci*
11298
11299 USB OTG FSM (Finite State Machine)
11300 M: Peter Chen <Peter.Chen@nxp.com>
11301 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11302 L: linux-usb@vger.kernel.org
11303 S: Maintained
11304 F: drivers/usb/common/usb-otg-fsm.c
11305
11306 USB OVER IP DRIVER
11307 M: Valentina Manea <valentina.manea.m@gmail.com>
11308 M: Shuah Khan <shuah.kh@samsung.com>
11309 L: linux-usb@vger.kernel.org
11310 S: Maintained
11311 F: drivers/usb/usbip/
11312 F: tools/usb/usbip/
11313
11314 USB PEGASUS DRIVER
11315 M: Petko Manolov <petkan@nucleusys.com>
11316 L: linux-usb@vger.kernel.org
11317 L: netdev@vger.kernel.org
11318 T: git git://github.com/petkan/pegasus.git
11319 W: https://github.com/petkan/pegasus
11320 S: Maintained
11321 F: drivers/net/usb/pegasus.*
11322
11323 USB PHY LAYER
11324 M: Felipe Balbi <balbi@ti.com>
11325 L: linux-usb@vger.kernel.org
11326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11327 S: Maintained
11328 F: drivers/usb/phy/
11329
11330 USB PRINTER DRIVER (usblp)
11331 M: Pete Zaitcev <zaitcev@redhat.com>
11332 L: linux-usb@vger.kernel.org
11333 S: Supported
11334 F: drivers/usb/class/usblp.c
11335
11336 USB QMI WWAN NETWORK DRIVER
11337 M: Bjørn Mork <bjorn@mork.no>
11338 L: netdev@vger.kernel.org
11339 S: Maintained
11340 F: Documentation/ABI/testing/sysfs-class-net-qmi
11341 F: drivers/net/usb/qmi_wwan.c
11342
11343 USB RTL8150 DRIVER
11344 M: Petko Manolov <petkan@nucleusys.com>
11345 L: linux-usb@vger.kernel.org
11346 L: netdev@vger.kernel.org
11347 T: git git://github.com/petkan/rtl8150.git
11348 W: https://github.com/petkan/rtl8150
11349 S: Maintained
11350 F: drivers/net/usb/rtl8150.c
11351
11352 USB SERIAL SUBSYSTEM
11353 M: Johan Hovold <johan@kernel.org>
11354 L: linux-usb@vger.kernel.org
11355 S: Maintained
11356 F: Documentation/usb/usb-serial.txt
11357 F: drivers/usb/serial/
11358 F: include/linux/usb/serial.h
11359
11360 USB SMSC75XX ETHERNET DRIVER
11361 M: Steve Glendinning <steve.glendinning@shawell.net>
11362 L: netdev@vger.kernel.org
11363 S: Maintained
11364 F: drivers/net/usb/smsc75xx.*
11365
11366 USB SMSC95XX ETHERNET DRIVER
11367 M: Steve Glendinning <steve.glendinning@shawell.net>
11368 L: netdev@vger.kernel.org
11369 S: Maintained
11370 F: drivers/net/usb/smsc95xx.*
11371
11372 USB SUBSYSTEM
11373 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11374 L: linux-usb@vger.kernel.org
11375 W: http://www.linux-usb.org
11376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11377 S: Supported
11378 F: Documentation/usb/
11379 F: drivers/usb/
11380 F: include/linux/usb.h
11381 F: include/linux/usb/
11382
11383 USB UHCI DRIVER
11384 M: Alan Stern <stern@rowland.harvard.edu>
11385 L: linux-usb@vger.kernel.org
11386 S: Maintained
11387 F: drivers/usb/host/uhci*
11388
11389 USB "USBNET" DRIVER FRAMEWORK
11390 M: Oliver Neukum <oneukum@suse.com>
11391 L: netdev@vger.kernel.org
11392 W: http://www.linux-usb.org/usbnet
11393 S: Maintained
11394 F: drivers/net/usb/usbnet.c
11395 F: include/linux/usb/usbnet.h
11396
11397 USB VIDEO CLASS
11398 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11399 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11400 L: linux-media@vger.kernel.org
11401 T: git git://linuxtv.org/media_tree.git
11402 W: http://www.ideasonboard.org/uvc/
11403 S: Maintained
11404 F: drivers/media/usb/uvc/
11405 F: include/uapi/linux/uvcvideo.h
11406
11407 USB VISION DRIVER
11408 M: Hans Verkuil <hverkuil@xs4all.nl>
11409 L: linux-media@vger.kernel.org
11410 T: git git://linuxtv.org/media_tree.git
11411 W: https://linuxtv.org
11412 S: Odd Fixes
11413 F: drivers/media/usb/usbvision/
11414
11415 USB WEBCAM GADGET
11416 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11417 L: linux-usb@vger.kernel.org
11418 S: Maintained
11419 F: drivers/usb/gadget/function/*uvc*
11420 F: drivers/usb/gadget/legacy/webcam.c
11421
11422 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11423 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
11424 L: linux-wireless@vger.kernel.org
11425 S: Maintained
11426 F: drivers/net/wireless/rndis_wlan.c
11427
11428 USB XHCI DRIVER
11429 M: Mathias Nyman <mathias.nyman@intel.com>
11430 L: linux-usb@vger.kernel.org
11431 S: Supported
11432 F: drivers/usb/host/xhci*
11433 F: drivers/usb/host/pci-quirks*
11434
11435 USB ZD1201 DRIVER
11436 L: linux-wireless@vger.kernel.org
11437 W: http://linux-lc100020.sourceforge.net
11438 S: Orphan
11439 F: drivers/net/wireless/zydas/zd1201.*
11440
11441 USB ZR364XX DRIVER
11442 M: Antoine Jacquet <royale@zerezo.com>
11443 L: linux-usb@vger.kernel.org
11444 L: linux-media@vger.kernel.org
11445 T: git git://linuxtv.org/media_tree.git
11446 W: http://royale.zerezo.com/zr364xx/
11447 S: Maintained
11448 F: Documentation/video4linux/zr364xx.txt
11449 F: drivers/media/usb/zr364xx/
11450
11451 ULPI BUS
11452 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
11453 L: linux-usb@vger.kernel.org
11454 S: Maintained
11455 F: drivers/usb/common/ulpi.c
11456 F: include/linux/ulpi/
11457
11458 USER-MODE LINUX (UML)
11459 M: Jeff Dike <jdike@addtoit.com>
11460 M: Richard Weinberger <richard@nod.at>
11461 L: user-mode-linux-devel@lists.sourceforge.net
11462 L: user-mode-linux-user@lists.sourceforge.net
11463 W: http://user-mode-linux.sourceforge.net
11464 S: Maintained
11465 F: Documentation/virtual/uml/
11466 F: arch/um/
11467 F: arch/x86/um/
11468 F: fs/hostfs/
11469 F: fs/hppfs/
11470
11471 USERSPACE I/O (UIO)
11472 M: "Hans J. Koch" <hjk@hansjkoch.de>
11473 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11474 S: Maintained
11475 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11476 F: Documentation/DocBook/uio-howto.tmpl
11477 F: drivers/uio/
11478 F: include/linux/uio*.h
11479
11480 UTIL-LINUX PACKAGE
11481 M: Karel Zak <kzak@redhat.com>
11482 L: util-linux@vger.kernel.org
11483 W: http://en.wikipedia.org/wiki/Util-linux
11484 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11485 S: Maintained
11486
11487 UVESAFB DRIVER
11488 M: Michal Januszewski <spock@gentoo.org>
11489 L: linux-fbdev@vger.kernel.org
11490 W: http://dev.gentoo.org/~spock/projects/uvesafb/
11491 S: Maintained
11492 F: Documentation/fb/uvesafb.txt
11493 F: drivers/video/fbdev/uvesafb.*
11494
11495 VF610 NAND DRIVER
11496 M: Stefan Agner <stefan@agner.ch>
11497 L: linux-mtd@lists.infradead.org
11498 S: Supported
11499 F: drivers/mtd/nand/vf610_nfc.c
11500
11501 VFAT/FAT/MSDOS FILESYSTEM
11502 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11503 S: Maintained
11504 F: Documentation/filesystems/vfat.txt
11505 F: fs/fat/
11506
11507 VFIO DRIVER
11508 M: Alex Williamson <alex.williamson@redhat.com>
11509 L: kvm@vger.kernel.org
11510 S: Maintained
11511 F: Documentation/vfio.txt
11512 F: drivers/vfio/
11513 F: include/linux/vfio.h
11514 F: include/uapi/linux/vfio.h
11515
11516 VFIO PLATFORM DRIVER
11517 M: Baptiste Reynal <b.reynal@virtualopensystems.com>
11518 L: kvm@vger.kernel.org
11519 S: Maintained
11520 F: drivers/vfio/platform/
11521
11522 VIDEOBUF2 FRAMEWORK
11523 M: Pawel Osciak <pawel@osciak.com>
11524 M: Marek Szyprowski <m.szyprowski@samsung.com>
11525 M: Kyungmin Park <kyungmin.park@samsung.com>
11526 L: linux-media@vger.kernel.org
11527 S: Maintained
11528 F: drivers/media/v4l2-core/videobuf2-*
11529 F: include/media/videobuf2-*
11530
11531 VIRTUAL SERIO DEVICE DRIVER
11532 M: Stephen Chandler Paul <thatslyude@gmail.com>
11533 S: Maintained
11534 F: drivers/input/serio/userio.c
11535 F: include/uapi/linux/userio.h
11536
11537 VIRTIO CONSOLE DRIVER
11538 M: Amit Shah <amit.shah@redhat.com>
11539 L: virtualization@lists.linux-foundation.org
11540 S: Maintained
11541 F: drivers/char/virtio_console.c
11542 F: include/linux/virtio_console.h
11543 F: include/uapi/linux/virtio_console.h
11544
11545 VIRTIO CORE, NET AND BLOCK DRIVERS
11546 M: "Michael S. Tsirkin" <mst@redhat.com>
11547 L: virtualization@lists.linux-foundation.org
11548 S: Maintained
11549 F: drivers/virtio/
11550 F: tools/virtio/
11551 F: drivers/net/virtio_net.c
11552 F: drivers/block/virtio_blk.c
11553 F: include/linux/virtio_*.h
11554 F: include/uapi/linux/virtio_*.h
11555
11556 VIRTIO DRIVERS FOR S390
11557 M: Christian Borntraeger <borntraeger@de.ibm.com>
11558 M: Cornelia Huck <cornelia.huck@de.ibm.com>
11559 L: linux-s390@vger.kernel.org
11560 L: virtualization@lists.linux-foundation.org
11561 L: kvm@vger.kernel.org
11562 S: Supported
11563 F: drivers/s390/virtio/
11564
11565 VIRTIO GPU DRIVER
11566 M: David Airlie <airlied@linux.ie>
11567 M: Gerd Hoffmann <kraxel@redhat.com>
11568 L: dri-devel@lists.freedesktop.org
11569 L: virtualization@lists.linux-foundation.org
11570 S: Maintained
11571 F: drivers/gpu/drm/virtio/
11572 F: include/uapi/linux/virtio_gpu.h
11573
11574 VIRTIO HOST (VHOST)
11575 M: "Michael S. Tsirkin" <mst@redhat.com>
11576 L: kvm@vger.kernel.org
11577 L: virtualization@lists.linux-foundation.org
11578 L: netdev@vger.kernel.org
11579 S: Maintained
11580 F: drivers/vhost/
11581 F: include/uapi/linux/vhost.h
11582
11583 VIRTIO INPUT DRIVER
11584 M: Gerd Hoffmann <kraxel@redhat.com>
11585 S: Maintained
11586 F: drivers/virtio/virtio_input.c
11587 F: include/uapi/linux/virtio_input.h
11588
11589 VIA RHINE NETWORK DRIVER
11590 S: Orphan
11591 F: drivers/net/ethernet/via/via-rhine.c
11592
11593 VIA SD/MMC CARD CONTROLLER DRIVER
11594 M: Bruce Chang <brucechang@via.com.tw>
11595 M: Harald Welte <HaraldWelte@viatech.com>
11596 S: Maintained
11597 F: drivers/mmc/host/via-sdmmc.c
11598
11599 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11600 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11601 L: linux-fbdev@vger.kernel.org
11602 S: Maintained
11603 F: include/linux/via-core.h
11604 F: include/linux/via-gpio.h
11605 F: include/linux/via_i2c.h
11606 F: drivers/video/fbdev/via/
11607
11608 VIA VELOCITY NETWORK DRIVER
11609 M: Francois Romieu <romieu@fr.zoreil.com>
11610 L: netdev@vger.kernel.org
11611 S: Maintained
11612 F: drivers/net/ethernet/via/via-velocity.*
11613
11614 VIRT LIB
11615 M: Alex Williamson <alex.williamson@redhat.com>
11616 M: Paolo Bonzini <pbonzini@redhat.com>
11617 L: kvm@vger.kernel.org
11618 S: Supported
11619 F: virt/lib/
11620
11621 VIVID VIRTUAL VIDEO DRIVER
11622 M: Hans Verkuil <hverkuil@xs4all.nl>
11623 L: linux-media@vger.kernel.org
11624 T: git git://linuxtv.org/media_tree.git
11625 W: https://linuxtv.org
11626 S: Maintained
11627 F: drivers/media/platform/vivid/*
11628
11629 VLAN (802.1Q)
11630 M: Patrick McHardy <kaber@trash.net>
11631 L: netdev@vger.kernel.org
11632 S: Maintained
11633 F: drivers/net/macvlan.c
11634 F: include/linux/if_*vlan.h
11635 F: net/8021q/
11636
11637 VLYNQ BUS
11638 M: Florian Fainelli <florian@openwrt.org>
11639 L: openwrt-devel@lists.openwrt.org (subscribers-only)
11640 S: Maintained
11641 F: drivers/vlynq/vlynq.c
11642 F: include/linux/vlynq.h
11643
11644 VME SUBSYSTEM
11645 M: Martyn Welch <martyn@welchs.me.uk>
11646 M: Manohar Vanga <manohar.vanga@gmail.com>
11647 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11648 L: devel@driverdev.osuosl.org
11649 S: Maintained
11650 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11651 F: Documentation/vme_api.txt
11652 F: drivers/staging/vme/
11653 F: drivers/vme/
11654 F: include/linux/vme*
11655
11656 VMWARE HYPERVISOR INTERFACE
11657 M: Alok Kataria <akataria@vmware.com>
11658 L: virtualization@lists.linux-foundation.org
11659 S: Supported
11660 F: arch/x86/kernel/cpu/vmware.c
11661
11662 VMWARE BALLOON DRIVER
11663 M: Xavier Deguillard <xdeguillard@vmware.com>
11664 M: Philip Moltmann <moltmann@vmware.com>
11665 M: "VMware, Inc." <pv-drivers@vmware.com>
11666 L: linux-kernel@vger.kernel.org
11667 S: Maintained
11668 F: drivers/misc/vmw_balloon.c
11669
11670 VMWARE VMMOUSE SUBDRIVER
11671 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11672 M: "VMware, Inc." <pv-drivers@vmware.com>
11673 L: linux-input@vger.kernel.org
11674 S: Maintained
11675 F: drivers/input/mouse/vmmouse.c
11676 F: drivers/input/mouse/vmmouse.h
11677
11678 VMWARE VMXNET3 ETHERNET DRIVER
11679 M: Shrikrishna Khare <skhare@vmware.com>
11680 M: "VMware, Inc." <pv-drivers@vmware.com>
11681 L: netdev@vger.kernel.org
11682 S: Maintained
11683 F: drivers/net/vmxnet3/
11684
11685 VMware PVSCSI driver
11686 M: Arvind Kumar <arvindkumar@vmware.com>
11687 M: VMware PV-Drivers <pv-drivers@vmware.com>
11688 L: linux-scsi@vger.kernel.org
11689 S: Maintained
11690 F: drivers/scsi/vmw_pvscsi.c
11691 F: drivers/scsi/vmw_pvscsi.h
11692
11693 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11694 M: Liam Girdwood <lgirdwood@gmail.com>
11695 M: Mark Brown <broonie@kernel.org>
11696 L: linux-kernel@vger.kernel.org
11697 W: http://www.slimlogic.co.uk/?p=48
11698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11699 S: Supported
11700 F: drivers/regulator/
11701 F: include/linux/regulator/
11702
11703 VRF
11704 M: David Ahern <dsa@cumulusnetworks.com>
11705 M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
11706 L: netdev@vger.kernel.org
11707 S: Maintained
11708 F: drivers/net/vrf.c
11709 F: Documentation/networking/vrf.txt
11710
11711 VT1211 HARDWARE MONITOR DRIVER
11712 M: Juerg Haefliger <juergh@gmail.com>
11713 L: lm-sensors@lm-sensors.org
11714 S: Maintained
11715 F: Documentation/hwmon/vt1211
11716 F: drivers/hwmon/vt1211.c
11717
11718 VT8231 HARDWARE MONITOR DRIVER
11719 M: Roger Lucas <vt8231@hiddenengine.co.uk>
11720 L: lm-sensors@lm-sensors.org
11721 S: Maintained
11722 F: drivers/hwmon/vt8231.c
11723
11724 VUB300 USB to SDIO/SD/MMC bridge chip
11725 M: Tony Olech <tony.olech@elandigitalsystems.com>
11726 L: linux-mmc@vger.kernel.org
11727 L: linux-usb@vger.kernel.org
11728 S: Supported
11729 F: drivers/mmc/host/vub300.c
11730
11731 W1 DALLAS'S 1-WIRE BUS
11732 M: Evgeniy Polyakov <zbr@ioremap.net>
11733 S: Maintained
11734 F: Documentation/w1/
11735 F: drivers/w1/
11736
11737 W83791D HARDWARE MONITORING DRIVER
11738 M: Marc Hulsman <m.hulsman@tudelft.nl>
11739 L: lm-sensors@lm-sensors.org
11740 S: Maintained
11741 F: Documentation/hwmon/w83791d
11742 F: drivers/hwmon/w83791d.c
11743
11744 W83793 HARDWARE MONITORING DRIVER
11745 M: Rudolf Marek <r.marek@assembler.cz>
11746 L: lm-sensors@lm-sensors.org
11747 S: Maintained
11748 F: Documentation/hwmon/w83793
11749 F: drivers/hwmon/w83793.c
11750
11751 W83795 HARDWARE MONITORING DRIVER
11752 M: Jean Delvare <jdelvare@suse.com>
11753 L: lm-sensors@lm-sensors.org
11754 S: Maintained
11755 F: drivers/hwmon/w83795.c
11756
11757 W83L51xD SD/MMC CARD INTERFACE DRIVER
11758 M: Pierre Ossman <pierre@ossman.eu>
11759 S: Maintained
11760 F: drivers/mmc/host/wbsd.*
11761
11762 WACOM PROTOCOL 4 SERIAL TABLETS
11763 M: Julian Squires <julian@cipht.net>
11764 M: Hans de Goede <hdegoede@redhat.com>
11765 L: linux-input@vger.kernel.org
11766 S: Maintained
11767 F: drivers/input/tablet/wacom_serial4.c
11768
11769 WATCHDOG DEVICE DRIVERS
11770 M: Wim Van Sebroeck <wim@iguana.be>
11771 R: Guenter Roeck <linux@roeck-us.net>
11772 L: linux-watchdog@vger.kernel.org
11773 W: http://www.linux-watchdog.org/
11774 T: git git://www.linux-watchdog.org/linux-watchdog.git
11775 S: Maintained
11776 F: Documentation/watchdog/
11777 F: drivers/watchdog/
11778 F: include/linux/watchdog.h
11779 F: include/uapi/linux/watchdog.h
11780
11781 WD7000 SCSI DRIVER
11782 M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
11783 L: linux-scsi@vger.kernel.org
11784 S: Maintained
11785 F: drivers/scsi/wd7000.c
11786
11787 WIIMOTE HID DRIVER
11788 M: David Herrmann <dh.herrmann@googlemail.com>
11789 L: linux-input@vger.kernel.org
11790 S: Maintained
11791 F: drivers/hid/hid-wiimote*
11792
11793 WINBOND CIR DRIVER
11794 M: David Härdeman <david@hardeman.nu>
11795 S: Maintained
11796 F: drivers/media/rc/winbond-cir.c
11797
11798 WIMAX STACK
11799 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11800 M: linux-wimax@intel.com
11801 L: wimax@linuxwimax.org (subscribers-only)
11802 S: Supported
11803 W: http://linuxwimax.org
11804 F: Documentation/wimax/README.wimax
11805 F: include/linux/wimax/debug.h
11806 F: include/net/wimax.h
11807 F: include/uapi/linux/wimax.h
11808 F: net/wimax/
11809
11810 WISTRON LAPTOP BUTTON DRIVER
11811 M: Miloslav Trmac <mitr@volny.cz>
11812 S: Maintained
11813 F: drivers/input/misc/wistron_btns.c
11814
11815 WL3501 WIRELESS PCMCIA CARD DRIVER
11816 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11817 L: linux-wireless@vger.kernel.org
11818 W: http://oops.ghostprotocols.net:81/blog
11819 S: Maintained
11820 F: drivers/net/wireless/wl3501*
11821
11822 WOLFSON MICROELECTRONICS DRIVERS
11823 L: patches@opensource.wolfsonmicro.com
11824 T: git https://github.com/CirrusLogic/linux-drivers.git
11825 W: https://github.com/CirrusLogic/linux-drivers/wiki
11826 S: Supported
11827 F: Documentation/hwmon/wm83??
11828 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11829 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11830 F: Documentation/devicetree/bindings/mfd/arizona.txt
11831 F: arch/arm/mach-s3c64xx/mach-crag6410*
11832 F: drivers/clk/clk-wm83*.c
11833 F: drivers/extcon/extcon-arizona.c
11834 F: drivers/leds/leds-wm83*.c
11835 F: drivers/gpio/gpio-*wm*.c
11836 F: drivers/gpio/gpio-arizona.c
11837 F: drivers/hwmon/wm83??-hwmon.c
11838 F: drivers/input/misc/wm831x-on.c
11839 F: drivers/input/touchscreen/wm831x-ts.c
11840 F: drivers/input/touchscreen/wm97*.c
11841 F: drivers/mfd/arizona*
11842 F: drivers/mfd/wm*.c
11843 F: drivers/mfd/cs47l24*
11844 F: drivers/power/wm83*.c
11845 F: drivers/rtc/rtc-wm83*.c
11846 F: drivers/regulator/wm8*.c
11847 F: drivers/video/backlight/wm83*_bl.c
11848 F: drivers/watchdog/wm83*_wdt.c
11849 F: include/linux/mfd/arizona/
11850 F: include/linux/mfd/wm831x/
11851 F: include/linux/mfd/wm8350/
11852 F: include/linux/mfd/wm8400*
11853 F: include/linux/wm97xx.h
11854 F: include/sound/wm????.h
11855 F: sound/soc/codecs/arizona.?
11856 F: sound/soc/codecs/wm*
11857 F: sound/soc/codecs/cs47l24*
11858
11859 WORKQUEUE
11860 M: Tejun Heo <tj@kernel.org>
11861 R: Lai Jiangshan <jiangshanlai@gmail.com>
11862 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11863 S: Maintained
11864 F: include/linux/workqueue.h
11865 F: kernel/workqueue.c
11866 F: Documentation/workqueue.txt
11867
11868 X.25 NETWORK LAYER
11869 M: Andrew Hendry <andrew.hendry@gmail.com>
11870 L: linux-x25@vger.kernel.org
11871 S: Odd Fixes
11872 F: Documentation/networking/x25*
11873 F: include/net/x25*
11874 F: net/x25/
11875
11876 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11877 M: Thomas Gleixner <tglx@linutronix.de>
11878 M: Ingo Molnar <mingo@redhat.com>
11879 M: "H. Peter Anvin" <hpa@zytor.com>
11880 M: x86@kernel.org
11881 L: linux-kernel@vger.kernel.org
11882 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11883 S: Maintained
11884 F: Documentation/x86/
11885 F: arch/x86/
11886
11887 X86 PLATFORM DRIVERS
11888 M: Darren Hart <dvhart@infradead.org>
11889 L: platform-driver-x86@vger.kernel.org
11890 T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11891 S: Maintained
11892 F: drivers/platform/x86/
11893 F: drivers/platform/olpc/
11894
11895 X86 MCE INFRASTRUCTURE
11896 M: Tony Luck <tony.luck@intel.com>
11897 M: Borislav Petkov <bp@alien8.de>
11898 L: linux-edac@vger.kernel.org
11899 S: Maintained
11900 F: arch/x86/kernel/cpu/mcheck/*
11901
11902 X86 MICROCODE UPDATE SUPPORT
11903 M: Borislav Petkov <bp@alien8.de>
11904 S: Maintained
11905 F: arch/x86/kernel/cpu/microcode/*
11906
11907 X86 VDSO
11908 M: Andy Lutomirski <luto@amacapital.net>
11909 L: linux-kernel@vger.kernel.org
11910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11911 S: Maintained
11912 F: arch/x86/entry/vdso/
11913
11914 XC2028/3028 TUNER DRIVER
11915 M: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11916 L: linux-media@vger.kernel.org
11917 W: https://linuxtv.org
11918 T: git git://linuxtv.org/media_tree.git
11919 S: Maintained
11920 F: drivers/media/tuners/tuner-xc2028.*
11921
11922 XEN HYPERVISOR INTERFACE
11923 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11924 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
11925 M: David Vrabel <david.vrabel@citrix.com>
11926 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11927 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11928 S: Supported
11929 F: arch/x86/xen/
11930 F: drivers/*/xen-*front.c
11931 F: drivers/xen/
11932 F: arch/x86/include/asm/xen/
11933 F: include/xen/
11934 F: include/uapi/xen/
11935
11936 XEN HYPERVISOR ARM
11937 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11938 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11939 S: Supported
11940 F: arch/arm/xen/
11941 F: arch/arm/include/asm/xen/
11942
11943 XEN HYPERVISOR ARM64
11944 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11945 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11946 S: Supported
11947 F: arch/arm64/xen/
11948 F: arch/arm64/include/asm/xen/
11949
11950 XEN NETWORK BACKEND DRIVER
11951 M: Ian Campbell <ian.campbell@citrix.com>
11952 M: Wei Liu <wei.liu2@citrix.com>
11953 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11954 L: netdev@vger.kernel.org
11955 S: Supported
11956 F: drivers/net/xen-netback/*
11957
11958 XEN PCI SUBSYSTEM
11959 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11960 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11961 S: Supported
11962 F: arch/x86/pci/*xen*
11963 F: drivers/pci/*xen*
11964
11965 XEN BLOCK SUBSYSTEM
11966 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11967 M: Roger Pau Monné <roger.pau@citrix.com>
11968 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11969 S: Supported
11970 F: drivers/block/xen-blkback/*
11971 F: drivers/block/xen*
11972
11973 XEN PVSCSI DRIVERS
11974 M: Juergen Gross <jgross@suse.com>
11975 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11976 L: linux-scsi@vger.kernel.org
11977 S: Supported
11978 F: drivers/scsi/xen-scsifront.c
11979 F: drivers/xen/xen-scsiback.c
11980 F: include/xen/interface/io/vscsiif.h
11981
11982 XEN SWIOTLB SUBSYSTEM
11983 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11984 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
11985 S: Supported
11986 F: arch/x86/xen/*swiotlb*
11987 F: drivers/xen/*swiotlb*
11988
11989 XFS FILESYSTEM
11990 P: Silicon Graphics Inc
11991 M: Dave Chinner <david@fromorbit.com>
11992 M: xfs@oss.sgi.com
11993 L: xfs@oss.sgi.com
11994 W: http://oss.sgi.com/projects/xfs
11995 T: git git://oss.sgi.com/xfs/xfs.git
11996 S: Supported
11997 F: Documentation/filesystems/xfs.txt
11998 F: fs/xfs/
11999
12000 XILINX AXI ETHERNET DRIVER
12001 M: Anirudha Sarangi <anirudh@xilinx.com>
12002 M: John Linn <John.Linn@xilinx.com>
12003 S: Maintained
12004 F: drivers/net/ethernet/xilinx/xilinx_axienet*
12005
12006 XILINX UARTLITE SERIAL DRIVER
12007 M: Peter Korsgaard <jacmet@sunsite.dk>
12008 L: linux-serial@vger.kernel.org
12009 S: Maintained
12010 F: drivers/tty/serial/uartlite.c
12011
12012 XILINX VIDEO IP CORES
12013 M: Hyun Kwon <hyun.kwon@xilinx.com>
12014 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12015 L: linux-media@vger.kernel.org
12016 T: git git://linuxtv.org/media_tree.git
12017 S: Supported
12018 F: Documentation/devicetree/bindings/media/xilinx/
12019 F: drivers/media/platform/xilinx/
12020 F: include/uapi/linux/xilinx-v4l2-controls.h
12021
12022 XILLYBUS DRIVER
12023 M: Eli Billauer <eli.billauer@gmail.com>
12024 L: linux-kernel@vger.kernel.org
12025 S: Supported
12026 F: drivers/char/xillybus/
12027
12028 XTENSA XTFPGA PLATFORM SUPPORT
12029 M: Max Filippov <jcmvbkbc@gmail.com>
12030 L: linux-xtensa@linux-xtensa.org
12031 S: Maintained
12032 F: drivers/spi/spi-xtensa-xtfpga.c
12033 F: sound/soc/xtensa/xtfpga-i2s.c
12034
12035 YAM DRIVER FOR AX.25
12036 M: Jean-Paul Roubelat <jpr@f6fbb.org>
12037 L: linux-hams@vger.kernel.org
12038 S: Maintained
12039 F: drivers/net/hamradio/yam*
12040 F: include/linux/yam.h
12041
12042 YEALINK PHONE DRIVER
12043 M: Henk Vergonet <Henk.Vergonet@gmail.com>
12044 L: usbb2k-api-dev@nongnu.org
12045 S: Maintained
12046 F: Documentation/input/yealink.txt
12047 F: drivers/input/misc/yealink.*
12048
12049 Z8530 DRIVER FOR AX.25
12050 M: Joerg Reuter <jreuter@yaina.de>
12051 W: http://yaina.de/jreuter/
12052 W: http://www.qsl.net/dl1bke/
12053 L: linux-hams@vger.kernel.org
12054 S: Maintained
12055 F: Documentation/networking/z8530drv.txt
12056 F: drivers/net/hamradio/*scc.c
12057 F: drivers/net/hamradio/z8530.h
12058
12059 ZBUD COMPRESSED PAGE ALLOCATOR
12060 M: Seth Jennings <sjennings@variantweb.net>
12061 L: linux-mm@kvack.org
12062 S: Maintained
12063 F: mm/zbud.c
12064 F: include/linux/zbud.h
12065
12066 ZD1211RW WIRELESS DRIVER
12067 M: Daniel Drake <dsd@gentoo.org>
12068 M: Ulrich Kunitz <kune@deine-taler.de>
12069 W: http://zd1211.ath.cx/wiki/DriverRewrite
12070 L: linux-wireless@vger.kernel.org
12071 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
12072 S: Maintained
12073 F: drivers/net/wireless/zydas/zd1211rw/
12074
12075 ZPOOL COMPRESSED PAGE STORAGE API
12076 M: Dan Streetman <ddstreet@ieee.org>
12077 L: linux-mm@kvack.org
12078 S: Maintained
12079 F: mm/zpool.c
12080 F: include/linux/zpool.h
12081
12082 ZR36067 VIDEO FOR LINUX DRIVER
12083 L: mjpeg-users@lists.sourceforge.net
12084 L: linux-media@vger.kernel.org
12085 W: http://mjpeg.sourceforge.net/driver-zoran/
12086 T: hg https://linuxtv.org/hg/v4l-dvb
12087 S: Odd Fixes
12088 F: drivers/media/pci/zoran/
12089
12090 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12091 M: Minchan Kim <minchan@kernel.org>
12092 M: Nitin Gupta <ngupta@vflare.org>
12093 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12094 L: linux-kernel@vger.kernel.org
12095 S: Maintained
12096 F: drivers/block/zram/
12097 F: Documentation/blockdev/zram.txt
12098
12099 ZS DECSTATION Z85C30 SERIAL DRIVER
12100 M: "Maciej W. Rozycki" <macro@linux-mips.org>
12101 S: Maintained
12102 F: drivers/tty/serial/zs.*
12103
12104 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12105 M: Minchan Kim <minchan@kernel.org>
12106 M: Nitin Gupta <ngupta@vflare.org>
12107 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12108 L: linux-mm@kvack.org
12109 S: Maintained
12110 F: mm/zsmalloc.c
12111 F: include/linux/zsmalloc.h
12112 F: Documentation/vm/zsmalloc.txt
12113
12114 ZSWAP COMPRESSED SWAP CACHING
12115 M: Seth Jennings <sjennings@variantweb.net>
12116 L: linux-mm@kvack.org
12117 S: Maintained
12118 F: mm/zswap.c
12119
12120 THE REST
12121 M: Linus Torvalds <torvalds@linux-foundation.org>
12122 L: linux-kernel@vger.kernel.org
12123 Q: http://patchwork.kernel.org/project/LKML/list/
12124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12125 S: Buried alive in reporters
12126 F: *
12127 F: */