3 List of maintainers and how to submit kernel changes
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.
9 1. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
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.)
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.
24 4. When you are happy with a change make it generally available for
25 testing and await feedback.
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.
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trivial style violations.
38 See Documentation/process/coding-style.rst for guidance here.
40 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/process/submitting-patches.rst for details.
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.
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
53 PLEASE remember that submissions must be made under the terms
54 of the Linux Foundation certificate of contribution and should
55 include a Signed-off-by: line. The current version of this
56 "Developer's Certificate of Origin" (DCO) is listed in the file
57 Documentation/process/submitting-patches.rst.
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
63 7. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
69 Descriptions of section entries:
72 M: Mail patches to: FullName <address@domain>
73 R: Designated reviewer: FullName <address@domain>
74 These reviewers should be CCed on patches.
75 L: Mailing list that is relevant to this area
76 W: Web-page with status/info
77 B: URI for where to file bugs. A web-page with detailed bug
78 filing info, a direct bug tracker link, or a mailto: URI.
79 C: URI for chat protocol, server and channel where developers
80 usually hang out, for example irc://server/channel.
81 Q: Patchwork web based patch tracking system site
82 T: SCM tree type and location.
83 Type is one of: git, hg, quilt, stgit, topgit
84 S: Status, one of the following:
85 Supported: Someone is actually paid to look after this.
86 Maintained: Someone actually looks after it.
87 Odd Fixes: It has a maintainer but they don't have time to do
88 much other than throw the odd patch in. See below..
89 Orphan: No current maintainer [but maybe you could take the
90 role as you write your new code].
91 Obsolete: Old code. Something tagged obsolete generally means
92 it has been replaced by a better system and you
94 F: Files and directories with wildcard patterns.
95 A trailing slash includes all files and subdirectory files.
96 F: drivers/net/ all files in and below drivers/net
97 F: drivers/net/* all files in drivers/net, but not below
98 F: */net/* all files in "any top level directory"/net
99 One pattern per line. Multiple F: lines acceptable.
100 N: Files and directories with regex patterns.
101 N: [^a-z]tegra all files whose path contains the word tegra
102 One pattern per line. Multiple N: lines acceptable.
103 scripts/get_maintainer.pl has different behavior for files that
104 match F: pattern and matches of N: patterns. By default,
105 get_maintainer will not look at git log history when an F: pattern
106 match occurs. When an N: match occurs, git log history is used
107 to also notify the people that have git commit signatures.
108 X: Files and directories that are NOT maintained, same rules as F:
109 Files exclusions are tested before file matches.
110 Can be useful for excluding a specific subdirectory, for instance:
113 matches all files in and below net excluding net/ipv6/
114 K: Keyword perl extended regex pattern to match content in a
115 patch or file. For instance:
117 matches patches or files that contain "of_get_profile"
118 K: \b(printk|pr_(info|err))\b
119 matches patches or files that contain one or more of the words
120 printk, pr_info or pr_err
121 One regex pattern per line. Multiple K: lines acceptable.
123 Note: For the hard of thinking, this list is meant to remain in alphabetical
124 order. If you could add yourselves to it in alphabetical order that would be
127 Maintainers List (try to look for most precise areas first)
129 -----------------------------------
132 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
133 L: netdev@vger.kernel.org
135 F: Documentation/networking/vortex.txt
136 F: drivers/net/ethernet/3com/3c59x.c
138 3CR990 NETWORK DRIVER
139 M: David Dillow <dave@thedillows.org>
140 L: netdev@vger.kernel.org
142 F: drivers/net/ethernet/3com/typhoon*
144 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
145 M: Adam Radford <aradford@gmail.com>
146 L: linux-scsi@vger.kernel.org
147 W: http://www.lsi.com
151 53C700 AND 53C700-66 SCSI DRIVER
152 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
153 L: linux-scsi@vger.kernel.org
155 F: drivers/scsi/53c700*
157 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
158 M: Alexander Aring <alex.aring@gmail.com>
159 M: Jukka Rissanen <jukka.rissanen@linux.intel.com>
160 L: linux-bluetooth@vger.kernel.org
161 L: linux-wpan@vger.kernel.org
164 F: include/net/6lowpan.h
165 F: Documentation/networking/6lowpan.txt
167 6PACK NETWORK DRIVER FOR AX.25
168 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
169 L: linux-hams@vger.kernel.org
171 F: drivers/net/hamradio/6pack.c
173 8169 10/100/1000 GIGABIT ETHERNET DRIVER
174 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
175 L: netdev@vger.kernel.org
177 F: drivers/net/ethernet/realtek/r8169.c
179 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
180 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
181 L: linux-serial@vger.kernel.org
183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
184 F: drivers/tty/serial/8250*
185 F: include/linux/serial_8250.h
187 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
188 L: netdev@vger.kernel.org
190 F: drivers/net/ethernet/8390/
193 M: Eric Van Hensbergen <ericvh@gmail.com>
194 M: Ron Minnich <rminnich@sandia.gov>
195 M: Latchesar Ionkov <lucho@ionkov.net>
196 L: v9fs-developer@lists.sourceforge.net
197 W: http://swik.net/v9fs
198 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
201 F: Documentation/filesystems/9p.txt
205 F: include/uapi/linux/virtio_9p.h
206 F: include/trace/events/9p.h
210 M: Antti Palosaari <crope@iki.fi>
211 L: linux-media@vger.kernel.org
212 W: https://linuxtv.org
213 W: http://palosaari.fi/linux/
214 Q: http://patchwork.linuxtv.org/project/linux-media/list/
215 T: git git://linuxtv.org/anttip/media_tree.git
217 F: drivers/media/dvb-frontends/a8293*
219 AACRAID SCSI RAID DRIVER
220 M: Adaptec OEM Raid Solutions <aacraid@microsemi.com>
221 L: linux-scsi@vger.kernel.org
222 W: http://www.adaptec.com/
224 F: Documentation/scsi/aacraid.txt
225 F: drivers/scsi/aacraid/
228 L: linux-api@vger.kernel.org
229 F: include/linux/syscalls.h
232 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
233 M: Hans de Goede <hdegoede@redhat.com>
234 L: linux-hwmon@vger.kernel.org
236 F: drivers/hwmon/abituguru.c
238 ABIT UGURU 3 HARDWARE MONITOR DRIVER
239 M: Alistair John Strachan <alistair@devzero.co.uk>
240 L: linux-hwmon@vger.kernel.org
242 F: drivers/hwmon/abituguru3.c
244 ACCES 104-DIO-48E GPIO DRIVER
245 M: William Breathitt Gray <vilhelm.gray@gmail.com>
246 L: linux-gpio@vger.kernel.org
248 F: drivers/gpio/gpio-104-dio-48e.c
250 ACCES 104-IDI-48 GPIO DRIVER
251 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
252 L: linux-gpio@vger.kernel.org
254 F: drivers/gpio/gpio-104-idi-48.c
256 ACCES 104-IDIO-16 GPIO DRIVER
257 M: "William Breathitt Gray" <vilhelm.gray@gmail.com>
258 L: linux-gpio@vger.kernel.org
260 F: drivers/gpio/gpio-104-idio-16.c
262 ACCES 104-QUAD-8 IIO DRIVER
263 M: William Breathitt Gray <vilhelm.gray@gmail.com>
264 L: linux-iio@vger.kernel.org
266 F: drivers/iio/counter/104-quad-8.c
268 ACCES PCI-IDIO-16 GPIO DRIVER
269 M: William Breathitt Gray <vilhelm.gray@gmail.com>
270 L: linux-gpio@vger.kernel.org
272 F: drivers/gpio/gpio-pci-idio-16.c
275 M: Jes Sorensen <jes@trained-monkey.org>
276 L: linux-acenic@sunsite.dk
278 F: drivers/net/ethernet/alteon/acenic*
280 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
281 M: Peter Feuerer <peter@piie.net>
282 L: platform-driver-x86@vger.kernel.org
283 W: http://piie.net/?section=acerhdf
285 F: drivers/platform/x86/acerhdf.c
287 ACER WMI LAPTOP EXTRAS
288 M: "Lee, Chun-Yi" <jlee@suse.com>
289 L: platform-driver-x86@vger.kernel.org
291 F: drivers/platform/x86/acer-wmi.c
294 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
295 M: Len Brown <lenb@kernel.org>
296 L: linux-acpi@vger.kernel.org
297 W: https://01.org/linux-acpi
298 Q: https://patchwork.kernel.org/project/linux-acpi/list/
299 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
300 B: https://bugzilla.kernel.org
303 F: drivers/pnp/pnpacpi/
304 F: include/linux/acpi.h
306 F: Documentation/acpi/
307 F: Documentation/ABI/testing/sysfs-bus-acpi
308 F: Documentation/ABI/testing/configfs-acpi
309 F: drivers/pci/*acpi*
310 F: drivers/pci/*/*acpi*
311 F: drivers/pci/*/*/*acpi*
314 ACPI COMPONENT ARCHITECTURE (ACPICA)
315 M: Robert Moore <robert.moore@intel.com>
316 M: Lv Zheng <lv.zheng@intel.com>
317 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
318 L: linux-acpi@vger.kernel.org
320 W: https://acpica.org/
321 W: https://github.com/acpica/acpica/
322 Q: https://patchwork.kernel.org/project/linux-acpi/list/
323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 B: https://bugzilla.kernel.org
325 B: https://bugs.acpica.org
327 F: drivers/acpi/acpica/
332 M: Zhang Rui <rui.zhang@intel.com>
333 L: linux-acpi@vger.kernel.org
334 W: https://01.org/linux-acpi
335 B: https://bugzilla.kernel.org
337 F: drivers/acpi/fan.c
339 ACPI FOR ARM64 (ACPI/arm64)
340 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
341 M: Hanjun Guo <hanjun.guo@linaro.org>
342 M: Sudeep Holla <sudeep.holla@arm.com>
343 L: linux-acpi@vger.kernel.org
345 F: drivers/acpi/arm64
348 M: Zhang Rui <rui.zhang@intel.com>
349 L: linux-acpi@vger.kernel.org
350 W: https://01.org/linux-acpi
351 B: https://bugzilla.kernel.org
353 F: drivers/acpi/*thermal*
356 M: Zhang Rui <rui.zhang@intel.com>
357 L: linux-acpi@vger.kernel.org
358 W: https://01.org/linux-acpi
359 B: https://bugzilla.kernel.org
361 F: drivers/acpi/acpi_video.c
364 L: platform-driver-x86@vger.kernel.org
366 F: drivers/platform/x86/wmi.c
368 AD1889 ALSA SOUND DRIVER
369 M: Thibaut Varene <T-Bone@parisc-linux.org>
370 W: http://wiki.parisc-linux.org/AD1889
371 L: linux-parisc@vger.kernel.org
373 F: sound/pci/ad1889.*
375 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
376 M: Michael Hennerich <michael.hennerich@analog.com>
377 W: http://wiki.analog.com/AD5254
378 W: http://ez.analog.com/community/linux-device-drivers
380 F: drivers/misc/ad525x_dpot.c
382 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
383 M: Michael Hennerich <michael.hennerich@analog.com>
384 W: http://wiki.analog.com/AD5398
385 W: http://ez.analog.com/community/linux-device-drivers
387 F: drivers/regulator/ad5398.c
389 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
390 M: Michael Hennerich <michael.hennerich@analog.com>
391 W: http://wiki.analog.com/AD7142
392 W: http://ez.analog.com/community/linux-device-drivers
394 F: drivers/input/misc/ad714x.c
396 AD7877 TOUCHSCREEN DRIVER
397 M: Michael Hennerich <michael.hennerich@analog.com>
398 W: http://wiki.analog.com/AD7877
399 W: http://ez.analog.com/community/linux-device-drivers
401 F: drivers/input/touchscreen/ad7877.c
403 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
404 M: Michael Hennerich <michael.hennerich@analog.com>
405 W: http://wiki.analog.com/AD7879
406 W: http://ez.analog.com/community/linux-device-drivers
408 F: drivers/input/touchscreen/ad7879.c
410 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
411 M: Jiri Kosina <jikos@kernel.org>
414 ADF7242 IEEE 802.15.4 RADIO DRIVER
415 M: Michael Hennerich <michael.hennerich@analog.com>
416 W: https://wiki.analog.com/ADF7242
417 W: http://ez.analog.com/community/linux-device-drivers
418 L: linux-wpan@vger.kernel.org
420 F: drivers/net/ieee802154/adf7242.c
421 F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
423 ADM1025 HARDWARE MONITOR DRIVER
424 M: Jean Delvare <jdelvare@suse.com>
425 L: linux-hwmon@vger.kernel.org
427 F: Documentation/hwmon/adm1025
428 F: drivers/hwmon/adm1025.c
430 ADM1029 HARDWARE MONITOR DRIVER
431 M: Corentin Labbe <clabbe.montjoie@gmail.com>
432 L: linux-hwmon@vger.kernel.org
434 F: drivers/hwmon/adm1029.c
436 ADM8211 WIRELESS DRIVER
437 L: linux-wireless@vger.kernel.org
438 W: http://wireless.kernel.org/
440 F: drivers/net/wireless/admtek/adm8211.*
442 ADP1653 FLASH CONTROLLER DRIVER
443 M: Sakari Ailus <sakari.ailus@iki.fi>
444 L: linux-media@vger.kernel.org
446 F: drivers/media/i2c/adp1653.c
447 F: include/media/i2c/adp1653.h
449 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
450 M: Michael Hennerich <michael.hennerich@analog.com>
451 W: http://wiki.analog.com/ADP5520
452 W: http://ez.analog.com/community/linux-device-drivers
454 F: drivers/mfd/adp5520.c
455 F: drivers/video/backlight/adp5520_bl.c
456 F: drivers/leds/leds-adp5520.c
457 F: drivers/gpio/gpio-adp5520.c
458 F: drivers/input/keyboard/adp5520-keys.c
460 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
461 M: Michael Hennerich <michael.hennerich@analog.com>
462 W: http://wiki.analog.com/ADP5588
463 W: http://ez.analog.com/community/linux-device-drivers
465 F: drivers/input/keyboard/adp5588-keys.c
466 F: drivers/gpio/gpio-adp5588.c
468 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
469 M: Michael Hennerich <michael.hennerich@analog.com>
470 W: http://wiki.analog.com/ADP8860
471 W: http://ez.analog.com/community/linux-device-drivers
473 F: drivers/video/backlight/adp8860_bl.c
475 ADS1015 HARDWARE MONITOR DRIVER
476 M: Dirk Eibach <eibach@gdsys.de>
477 L: linux-hwmon@vger.kernel.org
479 F: Documentation/hwmon/ads1015
480 F: drivers/hwmon/ads1015.c
481 F: include/linux/platform_data/ads1015.h
484 M: Colin Leroy <colin@colino.net>
486 F: drivers/macintosh/therm_adt746x.c
488 ADT7475 HARDWARE MONITOR DRIVER
489 M: Jean Delvare <jdelvare@suse.com>
490 L: linux-hwmon@vger.kernel.org
492 F: Documentation/hwmon/adt7475
493 F: drivers/hwmon/adt7475.c
495 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
496 M: Michael Hennerich <michael.hennerich@analog.com>
497 W: http://wiki.analog.com/ADXL345
498 W: http://ez.analog.com/community/linux-device-drivers
500 F: drivers/input/misc/adxl34x.c
503 M: Matthew Wilcox <matthew@wil.cx>
504 M: Hannes Reinecke <hare@suse.com>
505 L: linux-scsi@vger.kernel.org
507 F: Documentation/scsi/advansys.txt
508 F: drivers/scsi/advansys.c
511 M: Riccardo Facchetti <fizban@tin.it>
513 F: sound/oss/aedsp16.c
516 M: Antti Palosaari <crope@iki.fi>
517 L: linux-media@vger.kernel.org
518 W: https://linuxtv.org
519 W: http://palosaari.fi/linux/
520 Q: http://patchwork.linuxtv.org/project/linux-media/list/
521 T: git git://linuxtv.org/anttip/media_tree.git
523 F: drivers/media/dvb-frontends/af9013*
526 M: Antti Palosaari <crope@iki.fi>
527 L: linux-media@vger.kernel.org
528 W: https://linuxtv.org
529 W: http://palosaari.fi/linux/
530 Q: http://patchwork.linuxtv.org/project/linux-media/list/
531 T: git git://linuxtv.org/anttip/media_tree.git
533 F: drivers/media/dvb-frontends/af9033*
536 L: linux-fsdevel@vger.kernel.org
538 F: Documentation/filesystems/affs.txt
541 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
542 M: David Howells <dhowells@redhat.com>
543 L: linux-afs@lists.infradead.org
546 F: include/net/af_rxrpc.h
547 F: net/rxrpc/af_rxrpc.c
548 W: https://www.infradead.org/~dhowells/kafs/
551 M: David Airlie <airlied@linux.ie>
552 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
555 F: include/linux/agp*
556 F: include/uapi/linux/agp*
559 M: "Juergen E. Fischer" <fischer@norbit.de>
560 L: linux-scsi@vger.kernel.org
562 F: drivers/scsi/aha152x*
563 F: drivers/scsi/pcmcia/aha152x*
565 AIC7XXX / AIC79XX SCSI DRIVER
566 M: Hannes Reinecke <hare@suse.com>
567 L: linux-scsi@vger.kernel.org
569 F: drivers/scsi/aic7xxx/
571 AIMSLAB FM RADIO RECEIVER DRIVER
572 M: Hans Verkuil <hverkuil@xs4all.nl>
573 L: linux-media@vger.kernel.org
574 T: git git://linuxtv.org/media_tree.git
575 W: https://linuxtv.org
577 F: drivers/media/radio/radio-aimslab*
580 M: Benjamin LaHaise <bcrl@kvack.org>
581 L: linux-aio@kvack.org
584 F: include/linux/*aio*.h
587 M: Antti Palosaari <crope@iki.fi>
588 L: linux-media@vger.kernel.org
589 W: https://linuxtv.org
590 W: http://palosaari.fi/linux/
591 Q: http://patchwork.linuxtv.org/project/linux-media/list/
592 T: git git://linuxtv.org/anttip/media_tree.git
594 F: drivers/media/usb/airspy/
596 ALACRITECH GIGABIT ETHERNET DRIVER
597 M: Lino Sanfilippo <LinoSanfilippo@gmx.de>
599 F: drivers/net/ethernet/alacritech/*
601 ALCATEL SPEEDTOUCH USB DRIVER
602 M: Duncan Sands <duncan.sands@free.fr>
603 L: linux-usb@vger.kernel.org
604 W: http://www.linux-usb.org/SpeedTouch/
606 F: drivers/usb/atm/speedtch.c
607 F: drivers/usb/atm/usbatm.c
609 ALCHEMY AU1XX0 MMC DRIVER
610 M: Manuel Lauss <manuel.lauss@gmail.com>
612 F: drivers/mmc/host/au1xmmc.c
615 M: Rudolf Marek <r.marek@assembler.cz>
616 L: linux-i2c@vger.kernel.org
618 F: Documentation/i2c/busses/i2c-ali1563
619 F: drivers/i2c/busses/i2c-ali1563.c
621 ALLWINNER SECURITY SYSTEM
622 M: Corentin Labbe <clabbe.montjoie@gmail.com>
623 L: linux-crypto@vger.kernel.org
625 F: drivers/crypto/sunxi-ss/
628 M: Richard Henderson <rth@twiddle.net>
629 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
630 M: Matt Turner <mattst88@gmail.com>
632 L: linux-alpha@vger.kernel.org
635 ALPS PS/2 TOUCHPAD DRIVER
636 R: Pali Rohár <pali.rohar@gmail.com>
637 F: drivers/input/mouse/alps.*
639 ALTERA MAILBOX DRIVER
640 M: Ley Foon Tan <lftan@altera.com>
641 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
643 F: drivers/mailbox/mailbox-altera.c
646 M: Tien Hock Loh <thloh@altera.com>
647 L: linux-gpio@vger.kernel.org
649 F: drivers/gpio/gpio-altera.c
651 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
652 M: Thor Thayer <thor.thayer@linux.intel.com>
654 F: drivers/gpio/gpio-altera-a10sr.c
655 F: drivers/mfd/altera-a10sr.c
656 F: drivers/reset/reset-a10sr.c
657 F: include/linux/mfd/altera-a10sr.h
658 F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h
660 ALTERA TRIPLE SPEED ETHERNET DRIVER
661 M: Vince Bridgers <vbridger@opensource.altera.com>
662 L: netdev@vger.kernel.org
663 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
665 F: drivers/net/ethernet/altera/
667 ALTERA UART/JTAG UART SERIAL DRIVERS
668 M: Tobias Klauser <tklauser@distanz.ch>
669 L: linux-serial@vger.kernel.org
670 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
672 F: drivers/tty/serial/altera_uart.c
673 F: drivers/tty/serial/altera_jtaguart.c
674 F: include/linux/altera_uart.h
675 F: include/linux/altera_jtaguart.h
677 AMAZON ETHERNET DRIVERS
678 M: Netanel Belgazal <netanel@annapurnalabs.com>
679 R: Saeed Bishara <saeed@annapurnalabs.com>
680 R: Zorik Machulsky <zorik@annapurnalabs.com>
681 L: netdev@vger.kernel.org
683 F: Documentation/networking/ena.txt
684 F: drivers/net/ethernet/amazon/
686 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
687 M: Tom Lendacky <thomas.lendacky@amd.com>
688 M: Gary Hook <gary.hook@amd.com>
689 L: linux-crypto@vger.kernel.org
691 F: drivers/crypto/ccp/
692 F: include/linux/ccp.h
694 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
695 M: Huang Rui <ray.huang@amd.com>
696 L: linux-hwmon@vger.kernel.org
698 F: Documentation/hwmon/fam15h_power
699 F: drivers/hwmon/fam15h_power.c
701 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
702 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
704 F: drivers/usb/gadget/udc/amd5536udc.*
706 AMD GEODE PROCESSOR/CHIPSET SUPPORT
707 P: Andres Salomon <dilinger@queued.net>
708 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
709 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
711 F: drivers/char/hw_random/geode-rng.c
712 F: drivers/crypto/geode*
713 F: drivers/video/fbdev/geode/
714 F: arch/x86/include/asm/geode.h
717 M: Joerg Roedel <joro@8bytes.org>
718 L: iommu@lists.linux-foundation.org
719 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
721 F: drivers/iommu/amd_iommu*.[ch]
722 F: include/linux/amd-iommu.h
725 M: Oded Gabbay <oded.gabbay@gmail.com>
726 L: dri-devel@lists.freedesktop.org
727 T: git git://people.freedesktop.org/~gabbayo/linux.git
729 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
730 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
731 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
732 F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
733 F: drivers/gpu/drm/amd/amdkfd/
734 F: drivers/gpu/drm/amd/include/cik_structs.h
735 F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h
736 F: drivers/gpu/drm/amd/include/vi_structs.h
737 F: drivers/gpu/drm/radeon/radeon_kfd.c
738 F: drivers/gpu/drm/radeon/radeon_kfd.h
739 F: include/uapi/linux/kfd_ioctl.h
741 AMD SEATTLE DEVICE TREE SUPPORT
742 M: Brijesh Singh <brijeshkumar.singh@amd.com>
743 M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
744 M: Tom Lendacky <thomas.lendacky@amd.com>
746 F: arch/arm64/boot/dts/amd/
749 M: Tom Lendacky <thomas.lendacky@amd.com>
750 L: netdev@vger.kernel.org
752 F: drivers/net/ethernet/amd/xgbe/
753 F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
755 AMS (Apple Motion Sensor) DRIVER
756 M: Michael Hanselmann <linux-kernel@hansmi.ch>
758 F: drivers/macintosh/ams/
760 ANALOG DEVICES INC AD9389B DRIVER
761 M: Hans Verkuil <hans.verkuil@cisco.com>
762 L: linux-media@vger.kernel.org
764 F: drivers/media/i2c/ad9389b*
766 ANALOG DEVICES INC ADV7180 DRIVER
767 M: Lars-Peter Clausen <lars@metafoo.de>
768 L: linux-media@vger.kernel.org
769 W: http://ez.analog.com/community/linux-device-drivers
771 F: drivers/media/i2c/adv7180.c
773 ANALOG DEVICES INC ADV7511 DRIVER
774 M: Hans Verkuil <hans.verkuil@cisco.com>
775 L: linux-media@vger.kernel.org
777 F: drivers/media/i2c/adv7511*
779 ANALOG DEVICES INC ADV7604 DRIVER
780 M: Hans Verkuil <hans.verkuil@cisco.com>
781 L: linux-media@vger.kernel.org
783 F: drivers/media/i2c/adv7604*
785 ANALOG DEVICES INC ADV7842 DRIVER
786 M: Hans Verkuil <hans.verkuil@cisco.com>
787 L: linux-media@vger.kernel.org
789 F: drivers/media/i2c/adv7842*
791 ANALOG DEVICES INC ASOC CODEC DRIVERS
792 M: Lars-Peter Clausen <lars@metafoo.de>
793 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
794 W: http://wiki.analog.com/
795 W: http://ez.analog.com/community/linux-device-drivers
797 F: sound/soc/codecs/adau*
798 F: sound/soc/codecs/adav*
799 F: sound/soc/codecs/ad1*
800 F: sound/soc/codecs/ad7*
801 F: sound/soc/codecs/ssm*
802 F: sound/soc/codecs/sigmadsp.*
804 ANALOG DEVICES INC ASOC DRIVERS
805 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
806 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
807 W: http://blackfin.uclinux.org/
809 F: sound/soc/blackfin/*
811 ANALOG DEVICES INC IIO DRIVERS
812 M: Lars-Peter Clausen <lars@metafoo.de>
813 M: Michael Hennerich <Michael.Hennerich@analog.com>
814 W: http://wiki.analog.com/
815 W: http://ez.analog.com/community/linux-device-drivers
818 F: drivers/iio/adc/ltc2497*
819 X: drivers/iio/*/adjd*
820 F: drivers/staging/iio/*/ad*
821 F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c
823 ANALOG DEVICES INC DMA DRIVERS
824 M: Lars-Peter Clausen <lars@metafoo.de>
825 W: http://ez.analog.com/community/linux-device-drivers
827 F: drivers/dma/dma-axi-dmac.c
829 ANDROID CONFIG FRAGMENTS
830 M: Rob Herring <robh@kernel.org>
832 F: kernel/configs/android*
835 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
836 M: Arve Hjønnevåg <arve@android.com>
837 M: Riley Andrews <riandrews@android.com>
838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
839 L: devel@driverdev.osuosl.org
842 F: drivers/staging/android/
845 M: Laura Abbott <labbott@redhat.com>
846 M: Sumit Semwal <sumit.semwal@linaro.org>
847 L: devel@driverdev.osuosl.org
849 F: drivers/staging/android/ion
850 F: drivers/staging/android/uapi/ion.h
851 F: drivers/staging/android/uapi/ion_test.h
853 AOA (Apple Onboard Audio) ALSA DRIVER
854 M: Johannes Berg <johannes@sipsolutions.net>
855 L: linuxppc-dev@lists.ozlabs.org
856 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
860 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
861 M: William Breathitt Gray <vilhelm.gray@gmail.com>
862 L: linux-iio@vger.kernel.org
864 F: drivers/iio/adc/stx104.c
867 M: Jiri Kosina <jikos@kernel.org>
869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
870 F: arch/x86/kernel/apm_32.c
871 F: include/linux/apm_bios.h
872 F: include/uapi/linux/apm_bios.h
873 F: drivers/char/apm-emulation.c
875 APPLE BCM5974 MULTITOUCH DRIVER
876 M: Henrik Rydberg <rydberg@bitmath.org>
877 L: linux-input@vger.kernel.org
879 F: drivers/input/mouse/bcm5974.c
882 M: Henrik Rydberg <rydberg@bitmath.org>
883 L: linux-hwmon@vger.kernel.org
885 F: drivers/hwmon/applesmc.c
887 APPLETALK NETWORK LAYER
888 L: netdev@vger.kernel.org
890 F: drivers/net/appletalk/
893 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
894 M: Duc Dang <dhdang@apm.com>
896 F: arch/arm64/boot/dts/apm/
898 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
899 M: Iyappan Subramanian <isubramanian@apm.com>
900 M: Keyur Chudgar <kchudgar@apm.com>
901 M: Quan Nguyen <qnguyen@apm.com>
903 F: drivers/net/ethernet/apm/xgene/
904 F: drivers/net/phy/mdio-xgene.c
905 F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
906 F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
908 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
909 M: Iyappan Subramanian <isubramanian@apm.com>
910 M: Keyur Chudgar <kchudgar@apm.com>
912 F: drivers/net/ethernet/apm/xgene-v2/
914 APPLIED MICRO (APM) X-GENE SOC PMU
915 M: Tai Nguyen <ttnguyen@apm.com>
917 F: drivers/perf/xgene_pmu.c
918 F: Documentation/perf/xgene-pmu.txt
919 F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
921 APTINA CAMERA SENSOR PLL
922 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
923 L: linux-media@vger.kernel.org
925 F: drivers/media/i2c/aptina-pll.*
927 ARC FRAMEBUFFER DRIVER
928 M: Jaya Kumar <jayalk@intworks.biz>
930 F: drivers/video/fbdev/arcfb.c
931 F: drivers/video/fbdev/core/fb_defio.c
934 M: Michael Grzeschik <m.grzeschik@pengutronix.de>
935 L: netdev@vger.kernel.org
937 F: drivers/net/arcnet/
938 F: include/uapi/linux/if_arcnet.h
941 M: Alexey Brodkin <abrodkin@synopsys.com>
943 F: drivers/gpu/drm/arc/
944 F: Documentation/devicetree/bindings/display/snps,arcpgu.txt
946 ARM ARCHITECTED TIMER DRIVER
947 M: Mark Rutland <mark.rutland@arm.com>
948 M: Marc Zyngier <marc.zyngier@arm.com>
949 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
951 F: arch/arm/include/asm/arch_timer.h
952 F: arch/arm64/include/asm/arch_timer.h
953 F: drivers/clocksource/arm_arch_timer.c
956 M: Liviu Dudau <liviu.dudau@arm.com>
958 F: drivers/gpu/drm/arm/hdlcd_*
959 F: Documentation/devicetree/bindings/display/arm,hdlcd.txt
961 ARM MALI-DP DRM DRIVER
962 M: Liviu Dudau <liviu.dudau@arm.com>
963 M: Brian Starkey <brian.starkey@arm.com>
964 M: Mali DP Maintainers <malidp@foss.arm.com>
966 F: drivers/gpu/drm/arm/
967 F: Documentation/devicetree/bindings/display/arm,malidp.txt
969 ARM MFM AND FLOPPY DRIVERS
970 M: Ian Molton <spyro@f2s.com>
972 F: arch/arm/lib/floppydma.S
973 F: arch/arm/include/asm/floppy.h
975 ARM PMU PROFILING AND DEBUGGING
976 M: Will Deacon <will.deacon@arm.com>
977 M: Mark Rutland <mark.rutland@arm.com>
979 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
980 F: arch/arm*/kernel/perf_*
981 F: arch/arm/oprofile/common.c
982 F: arch/arm*/kernel/hw_breakpoint.c
983 F: arch/arm*/include/asm/hw_breakpoint.h
984 F: arch/arm*/include/asm/perf_event.h
986 F: include/linux/perf/arm_pmu.h
987 F: Documentation/devicetree/bindings/arm/pmu.txt
988 F: Documentation/devicetree/bindings/perf/
991 M: Russell King <linux@armlinux.org.uk>
992 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 W: http://www.armlinux.org.uk/
995 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git
998 ARM SUB-ARCHITECTURES
999 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1005 ARM PRIMECELL AACI PL041 DRIVER
1006 M: Russell King <linux@armlinux.org.uk>
1010 ARM PRIMECELL CLCD PL110 DRIVER
1011 M: Russell King <linux@armlinux.org.uk>
1013 F: drivers/video/fbdev/amba-clcd.*
1015 ARM PRIMECELL KMI PL050 DRIVER
1016 M: Russell King <linux@armlinux.org.uk>
1018 F: drivers/input/serio/ambakmi.*
1019 F: include/linux/amba/kmi.h
1021 ARM PRIMECELL MMCI PL180/1 DRIVER
1022 M: Russell King <linux@armlinux.org.uk>
1024 F: drivers/mmc/host/mmci.*
1025 F: include/linux/amba/mmci.h
1027 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1028 M: Russell King <linux@armlinux.org.uk>
1030 F: drivers/tty/serial/amba-pl01*.c
1031 F: include/linux/amba/serial.h
1033 ARM PRIMECELL BUS SUPPORT
1034 M: Russell King <linux@armlinux.org.uk>
1037 F: include/linux/amba/bus.h
1039 ARM/ACTIONS SEMI ARCHITECTURE
1040 M: Andreas Färber <afaerber@suse.de>
1041 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044 F: arch/arm/mach-actions/
1045 F: arch/arm/boot/dts/owl-*
1046 F: arch/arm64/boot/dts/actions/
1047 F: drivers/clocksource/owl-*
1048 F: drivers/soc/actions/
1049 F: include/dt-bindings/power/owl-*
1050 F: include/linux/soc/actions/
1051 F: Documentation/devicetree/bindings/arm/actions.txt
1052 F: Documentation/devicetree/bindings/power/actions,owl-sps.txt
1053 F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1055 ARM/ADS SPHERE MACHINE SUPPORT
1056 M: Lennert Buytenhek <kernel@wantstofly.org>
1057 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 ARM/AFEB9260 MACHINE SUPPORT
1061 M: Sergey Lapin <slapin@ossfans.org>
1062 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1065 ARM/AJECO 1ARM MACHINE SUPPORT
1066 M: Lennert Buytenhek <kernel@wantstofly.org>
1067 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 ARM/Allwinner sunXi SoC support
1071 M: Maxime Ripard <maxime.ripard@free-electrons.com>
1072 M: Chen-Yu Tsai <wens@csie.org>
1073 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 F: arch/arm/mach-sunxi/
1078 F: arch/arm64/boot/dts/allwinner/
1079 F: drivers/clk/sunxi-ng/
1080 F: drivers/pinctrl/sunxi/
1081 F: drivers/soc/sunxi/
1082 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1084 ARM/Allwinner SoC Clock Support
1085 M: Emilio López <emilio@elopez.com.ar>
1087 F: drivers/clk/sunxi/
1089 ARM/Amlogic Meson SoC support
1090 M: Carlo Caione <carlo@caione.org>
1091 M: Kevin Hilman <khilman@baylibre.com>
1092 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1093 L: linux-amlogic@lists.infradead.org
1094 W: http://linux-meson.com/
1096 F: arch/arm/mach-meson/
1097 F: arch/arm/boot/dts/meson*
1098 F: arch/arm64/boot/dts/amlogic/
1099 F: drivers/pinctrl/meson/
1100 F: drivers/mmc/host/meson*
1103 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1104 M: Neil Armstrong <narmstrong@baylibre.com>
1105 M: Jerome Brunet <jbrunet@baylibre.com>
1106 L: linux-amlogic@lists.infradead.org
1108 F: drivers/clk/meson/
1109 F: include/dt-bindings/clock/meson*
1110 F: include/dt-bindings/clock/gxbb*
1111 F: Documentation/devicetree/bindings/clock/amlogic*
1113 ARM/Annapurna Labs ALPINE ARCHITECTURE
1114 M: Tsahee Zidenberg <tsahee@annapurnalabs.com>
1115 M: Antoine Tenart <antoine.tenart@free-electrons.com>
1116 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1118 F: arch/arm/mach-alpine/
1119 F: arch/arm/boot/dts/alpine*
1120 F: arch/arm64/boot/dts/al/
1121 F: drivers/*/*alpine*
1123 ARM/ARTPEC MACHINE SUPPORT
1124 M: Jesper Nilsson <jesper.nilsson@axis.com>
1125 M: Lars Persson <lars.persson@axis.com>
1126 M: Niklas Cassel <niklas.cassel@axis.com>
1128 L: linux-arm-kernel@axis.com
1129 F: arch/arm/mach-artpec
1130 F: arch/arm/boot/dts/artpec6*
1132 F: drivers/pinctrl/pinctrl-artpec*
1133 F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1135 ARM/ASPEED MACHINE SUPPORT
1136 M: Joel Stanley <joel@jms.id.au>
1138 F: arch/arm/mach-aspeed/
1139 F: arch/arm/boot/dts/aspeed-*
1140 F: drivers/*/*aspeed*
1142 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1143 M: Nicolas Ferre <nicolas.ferre@microchip.com>
1144 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
1145 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1146 W: http://www.linux4sam.org
1147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1149 F: arch/arm/mach-at91/
1150 F: include/soc/at91/
1151 F: arch/arm/boot/dts/at91*.dts
1152 F: arch/arm/boot/dts/at91*.dtsi
1153 F: arch/arm/boot/dts/sama*.dts
1154 F: arch/arm/boot/dts/sama*.dtsi
1155 F: arch/arm/include/debug/at91.S
1156 F: drivers/memory/atmel*
1158 ARM/ATMEL AT91 Clock Support
1159 M: Boris Brezillon <boris.brezillon@free-electrons.com>
1163 ARM/CALXEDA HIGHBANK ARCHITECTURE
1164 M: Rob Herring <robh@kernel.org>
1165 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 F: arch/arm/mach-highbank/
1168 F: arch/arm/boot/dts/highbank.dts
1169 F: arch/arm/boot/dts/ecx-*.dts*
1171 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1172 M: Krzysztof Halasa <khalasa@piap.pl>
1174 F: arch/arm/mach-cns3xxx/
1176 ARM/CAVIUM THUNDER NETWORK DRIVER
1177 M: Sunil Goutham <sgoutham@cavium.com>
1178 M: Robert Richter <rric@kernel.org>
1179 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 F: drivers/net/ethernet/cavium/thunder/
1183 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1184 M: Alexander Shiyan <shc_work@mail.ru>
1185 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1190 M: Hartley Sweeten <hsweeten@visionengravers.com>
1191 M: Alexander Sverdlin <alexander.sverdlin@gmail.com>
1192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194 F: arch/arm/mach-ep93xx/
1195 F: arch/arm/mach-ep93xx/include/mach/
1197 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1198 M: Lennert Buytenhek <kernel@wantstofly.org>
1199 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203 M: Russell King <linux@armlinux.org.uk>
1204 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1206 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1207 F: arch/arm/include/asm/clkdev.h
1208 F: drivers/clk/clkdev.c
1210 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1211 M: Mike Rapoport <mike@compulab.co.il>
1212 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1215 ARM/CONTEC MICRO9 MACHINE SUPPORT
1216 M: Hubert Feurstein <hubert.feurstein@contec.at>
1218 F: arch/arm/mach-ep93xx/micro9.c
1220 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1221 M: Mathieu Poirier <mathieu.poirier@linaro.org>
1222 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224 F: drivers/hwtracing/coresight/*
1225 F: Documentation/trace/coresight.txt
1226 F: Documentation/trace/coresight-cpu-debug.txt
1227 F: Documentation/devicetree/bindings/arm/coresight.txt
1228 F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1229 F: Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1230 F: tools/perf/arch/arm/util/pmu.c
1231 F: tools/perf/arch/arm/util/auxtrace.c
1232 F: tools/perf/arch/arm/util/cs-etm.c
1233 F: tools/perf/arch/arm/util/cs-etm.h
1234 F: tools/perf/util/cs-etm.h
1236 ARM/CORGI MACHINE SUPPORT
1237 M: Richard Purdie <rpurdie@rpsys.net>
1240 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1241 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1242 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1243 T: git git://github.com/ulli-kroll/linux.git
1245 F: arch/arm/mach-gemini/
1246 F: drivers/rtc/rtc-gemini.c
1248 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1249 M: Barry Song <baohua@kernel.org>
1250 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1253 F: arch/arm/boot/dts/prima2*
1254 F: arch/arm/mach-prima2/
1255 F: drivers/clk/sirf/
1256 F: drivers/clocksource/timer-prima2.c
1257 F: drivers/clocksource/timer-atlas7.c
1260 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1261 M: Baruch Siach <baruch@tkos.co.il>
1262 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1264 F: arch/arm/boot/dts/cx92755*
1267 ARM/EBSA110 MACHINE SUPPORT
1268 M: Russell King <linux@armlinux.org.uk>
1269 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 W: http://www.armlinux.org.uk/
1272 F: arch/arm/mach-ebsa110/
1273 F: drivers/net/ethernet/amd/am79c961a.*
1275 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1276 M: Uwe Kleine-König <kernel@pengutronix.de>
1277 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1282 M: Robert Jarzmik <robert.jarzmik@free.fr>
1283 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 F: arch/arm/mach-pxa/ezx.c
1287 ARM/FARADAY FA526 PORT
1288 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
1289 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 T: git git://git.berlios.de/gemini-board
1292 F: arch/arm/mm/*-fa*
1294 ARM/FOOTBRIDGE ARCHITECTURE
1295 M: Russell King <linux@armlinux.org.uk>
1296 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297 W: http://www.armlinux.org.uk/
1299 F: arch/arm/include/asm/hardware/dec21285.h
1300 F: arch/arm/mach-footbridge/
1302 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1303 M: Shawn Guo <shawnguo@kernel.org>
1304 M: Sascha Hauer <kernel@pengutronix.de>
1305 R: Fabio Estevam <fabio.estevam@nxp.com>
1306 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1309 F: arch/arm/mach-imx/
1310 F: arch/arm/mach-mxs/
1311 F: arch/arm/boot/dts/imx*
1312 F: arch/arm/configs/imx*_defconfig
1317 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1318 M: Shawn Guo <shawnguo@kernel.org>
1319 M: Sascha Hauer <kernel@pengutronix.de>
1320 R: Stefan Agner <stefan@agner.ch>
1321 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1324 F: arch/arm/mach-imx/*vf610*
1325 F: arch/arm/boot/dts/vf*
1327 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1328 M: Lennert Buytenhek <kernel@wantstofly.org>
1329 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1332 ARM/GUMSTIX MACHINE SUPPORT
1333 M: Steve Sakoman <sakoman@gmail.com>
1334 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1337 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1338 M: Philipp Zabel <philipp.zabel@gmail.com>
1339 M: Paul Parsons <lost.distance@yahoo.com>
1340 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1342 F: arch/arm/mach-pxa/hx4700.c
1343 F: arch/arm/mach-pxa/include/mach/hx4700.h
1344 F: sound/soc/pxa/hx4700.c
1346 ARM/HISILICON SOC SUPPORT
1347 M: Wei Xu <xuwei5@hisilicon.com>
1348 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 W: http://www.hisilicon.com
1351 T: git git://github.com/hisilicon/linux-hisi.git
1352 F: arch/arm/mach-hisi/
1353 F: arch/arm/boot/dts/hi3*
1354 F: arch/arm/boot/dts/hip*
1355 F: arch/arm/boot/dts/hisi*
1356 F: arch/arm64/boot/dts/hisilicon/
1358 ARM/HP JORNADA 7XX MACHINE SUPPORT
1359 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
1362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1363 F: arch/arm/mach-sa1100/jornada720.c
1364 F: arch/arm/mach-sa1100/include/mach/jornada720.h
1366 ARM/IGEP MACHINE SUPPORT
1367 M: Enric Balletbo i Serra <eballetbo@gmail.com>
1368 M: Javier Martinez Canillas <javier@dowhile0.org>
1369 L: linux-omap@vger.kernel.org
1370 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1372 F: arch/arm/boot/dts/omap3-igep*
1374 ARM/INCOME PXA270 SUPPORT
1375 M: Marek Vasut <marek.vasut@gmail.com>
1376 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1378 F: arch/arm/mach-pxa/colibri-pxa270-income.c
1380 ARM/INTEL IOP32X ARM ARCHITECTURE
1381 M: Lennert Buytenhek <kernel@wantstofly.org>
1382 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 ARM/INTEL IOP33X ARM ARCHITECTURE
1386 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1389 ARM/INTEL IOP13XX ARM ARCHITECTURE
1390 M: Lennert Buytenhek <kernel@wantstofly.org>
1391 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 ARM/INTEL IQ81342EX MACHINE SUPPORT
1395 M: Lennert Buytenhek <kernel@wantstofly.org>
1396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1399 ARM/INTEL IXDP2850 MACHINE SUPPORT
1400 M: Lennert Buytenhek <kernel@wantstofly.org>
1401 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1404 ARM/INTEL IXP4XX ARM ARCHITECTURE
1405 M: Imre Kaloz <kaloz@openwrt.org>
1406 M: Krzysztof Halasa <khalasa@piap.pl>
1407 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 F: arch/arm/mach-ixp4xx/
1411 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1412 M: Jonathan Cameron <jic23@cam.ac.uk>
1413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 F: arch/arm/mach-pxa/stargate2.c
1416 F: drivers/pcmcia/pxa2xx_stargate2.c
1418 ARM/INTEL XSC3 (MANZANO) ARM CORE
1419 M: Lennert Buytenhek <kernel@wantstofly.org>
1420 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1423 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1424 M: Lennert Buytenhek <kernel@wantstofly.org>
1425 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1429 M: Santosh Shilimkar <ssantosh@kernel.org>
1430 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 F: arch/arm/mach-keystone/
1433 F: arch/arm/boot/dts/keystone-*
1434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1436 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1437 M: Santosh Shilimkar <ssantosh@kernel.org>
1438 L: linux-kernel@vger.kernel.org
1440 F: drivers/clk/keystone/
1442 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1443 M: Santosh Shilimkar <ssantosh@kernel.org>
1444 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1445 L: linux-kernel@vger.kernel.org
1447 F: drivers/clocksource/timer-keystone.c
1449 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1450 M: Santosh Shilimkar <ssantosh@kernel.org>
1451 L: linux-kernel@vger.kernel.org
1453 F: drivers/power/reset/keystone-reset.c
1455 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1456 M: Santosh Shilimkar <ssantosh@kernel.org>
1457 L: linux-kernel@vger.kernel.org
1459 F: drivers/memory/*emif*
1461 ARM/LG1K ARCHITECTURE
1462 M: Chanho Min <chanho.min@lge.com>
1463 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1465 F: arch/arm64/boot/dts/lg/
1467 ARM/LOGICPD PXA270 MACHINE SUPPORT
1468 M: Lennert Buytenhek <kernel@wantstofly.org>
1469 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1472 ARM/LPC18XX ARCHITECTURE
1473 M: Joachim Eastwood <manabian@gmail.com>
1474 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1476 F: arch/arm/boot/dts/lpc43*
1477 F: drivers/clk/nxp/clk-lpc18xx*
1478 F: drivers/clocksource/time-lpc32xx.c
1479 F: drivers/i2c/busses/i2c-lpc2k.c
1480 F: drivers/memory/pl172.c
1481 F: drivers/mtd/spi-nor/nxp-spifi.c
1482 F: drivers/rtc/rtc-lpc24xx.c
1485 ARM/LPC32XX SOC SUPPORT
1486 M: Vladimir Zapolskiy <vz@mleia.com>
1487 M: Sylvain Lemieux <slemieux.tyco@gmail.com>
1488 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1489 T: git git://github.com/vzapolskiy/linux-lpc32xx.git
1491 F: arch/arm/boot/dts/lpc32*
1492 F: arch/arm/mach-lpc32xx/
1493 F: drivers/i2c/busses/i2c-pnx.c
1494 F: drivers/net/ethernet/nxp/lpc_eth.c
1495 F: drivers/usb/host/ohci-nxp.c
1496 F: drivers/watchdog/pnx4008_wdt.c
1499 ARM/MAGICIAN MACHINE SUPPORT
1500 M: Philipp Zabel <philipp.zabel@gmail.com>
1503 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1504 M: Jason Cooper <jason@lakedaemon.net>
1505 M: Andrew Lunn <andrew@lunn.ch>
1506 M: Gregory Clement <gregory.clement@free-electrons.com>
1507 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1508 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 F: arch/arm/boot/dts/armada*
1511 F: arch/arm/boot/dts/kirkwood*
1512 F: arch/arm/configs/mvebu_*_defconfig
1513 F: arch/arm/mach-mvebu/
1514 F: arch/arm64/boot/dts/marvell/armada*
1515 F: drivers/cpufreq/mvebu-cpufreq.c
1516 F: drivers/irqchip/irq-armada-370-xp.c
1517 F: drivers/irqchip/irq-mvebu-*
1518 F: drivers/pinctrl/mvebu/
1519 F: drivers/rtc/rtc-armada38x.c
1521 ARM/Marvell Berlin SoC support
1522 M: Jisheng Zhang <jszhang@marvell.com>
1523 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1524 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1526 F: arch/arm/mach-berlin/
1527 F: arch/arm/boot/dts/berlin*
1528 F: arch/arm64/boot/dts/marvell/berlin*
1531 ARM/Marvell Dove/MV78xx0/Orion SOC support
1532 M: Jason Cooper <jason@lakedaemon.net>
1533 M: Andrew Lunn <andrew@lunn.ch>
1534 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1535 M: Gregory Clement <gregory.clement@free-electrons.com>
1536 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1538 F: Documentation/devicetree/bindings/soc/dove/
1539 F: arch/arm/mach-dove/
1540 F: arch/arm/mach-mv78xx0/
1541 F: arch/arm/mach-orion5x/
1542 F: arch/arm/plat-orion/
1543 F: arch/arm/boot/dts/dove*
1544 F: arch/arm/boot/dts/orion5x*
1547 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1548 M: Alexander Clouter <alex@digriz.org.uk>
1549 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1550 W: http://www.digriz.org.uk/ts78xx/kernel
1552 F: arch/arm/mach-orion5x/ts78xx-*
1554 ARM/OXNAS platform support
1555 M: Neil Armstrong <narmstrong@baylibre.com>
1556 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1557 L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers)
1559 F: arch/arm/mach-oxnas/
1560 F: arch/arm/boot/dts/ox8*.dtsi
1561 F: arch/arm/boot/dts/wd-mbwe.dts
1562 F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1565 ARM/Mediatek RTC DRIVER
1566 M: Eddie Huang <eddie.huang@mediatek.com>
1567 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1570 F: drivers/rtc/rtc-mt6397.c
1572 ARM/Mediatek SoC support
1573 M: Matthias Brugger <matthias.bgg@gmail.com>
1574 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1575 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1577 F: arch/arm/boot/dts/mt6*
1578 F: arch/arm/boot/dts/mt7*
1579 F: arch/arm/boot/dts/mt8*
1580 F: arch/arm/mach-mediatek/
1581 F: arch/arm64/boot/dts/mediatek/
1585 ARM/Mediatek USB3 PHY DRIVER
1586 M: Chunfeng Yun <chunfeng.yun@mediatek.com>
1587 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 L: linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1590 F: drivers/phy/phy-mt65xx-usb3.c
1592 ARM/MICREL KS8695 ARCHITECTURE
1593 M: Greg Ungerer <gerg@uclinux.org>
1594 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 F: arch/arm/mach-ks8695/
1598 ARM/MIOA701 MACHINE SUPPORT
1599 M: Robert Jarzmik <robert.jarzmik@free.fr>
1600 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 F: arch/arm/mach-pxa/mioa701.c
1604 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1605 M: Michael Petchkovsky <mkpetch@internode.on.net>
1608 ARM/NOMADIK ARCHITECTURE
1609 M: Alessandro Rubini <rubini@unipv.it>
1610 M: Linus Walleij <linus.walleij@linaro.org>
1611 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 F: arch/arm/mach-nomadik/
1614 F: drivers/pinctrl/nomadik/
1615 F: drivers/i2c/busses/i2c-nomadik.c
1616 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1618 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1619 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1620 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1621 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1624 ARM/TOSA MACHINE SUPPORT
1625 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1626 M: Dirk Opfer <dirk@opfer-online.de>
1629 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1630 M: Marek Vasut <marek.vasut@gmail.com>
1631 L: linux-arm-kernel@lists.infradead.org
1632 W: http://hackndev.com
1634 F: arch/arm/mach-pxa/include/mach/palmtx.h
1635 F: arch/arm/mach-pxa/palmtx.c
1636 F: arch/arm/mach-pxa/include/mach/palmt5.h
1637 F: arch/arm/mach-pxa/palmt5.c
1638 F: arch/arm/mach-pxa/include/mach/palmld.h
1639 F: arch/arm/mach-pxa/palmld.c
1640 F: arch/arm/mach-pxa/include/mach/palmte2.h
1641 F: arch/arm/mach-pxa/palmte2.c
1642 F: arch/arm/mach-pxa/include/mach/palmtc.h
1643 F: arch/arm/mach-pxa/palmtc.c
1645 ARM/PALM TREO SUPPORT
1646 M: Tomas Cech <sleep_walker@suse.com>
1647 L: linux-arm-kernel@lists.infradead.org
1648 W: http://hackndev.com
1650 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1651 F: arch/arm/mach-pxa/palmtreo.c
1654 M: Sergey Lapin <slapin@ossfans.org>
1655 L: linux-arm-kernel@lists.infradead.org
1656 W: http://hackndev.com
1658 F: arch/arm/mach-pxa/include/mach/palmz72.h
1659 F: arch/arm/mach-pxa/palmz72.c
1662 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1663 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1666 ARM/PT DIGITAL BOARD PORT
1667 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1668 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 W: http://www.armlinux.org.uk/
1672 ARM/QUALCOMM SUPPORT
1673 M: Andy Gross <andy.gross@linaro.org>
1674 M: David Brown <david.brown@linaro.org>
1675 L: linux-arm-msm@vger.kernel.org
1676 L: linux-soc@vger.kernel.org
1678 F: Documentation/devicetree/bindings/soc/qcom/
1679 F: arch/arm/boot/dts/qcom-*.dts
1680 F: arch/arm/boot/dts/qcom-*.dtsi
1681 F: arch/arm/mach-qcom/
1682 F: arch/arm64/boot/dts/qcom/*
1683 F: drivers/i2c/busses/i2c-qup.c
1684 F: drivers/clk/qcom/
1685 F: drivers/dma/qcom/
1686 F: drivers/soc/qcom/
1687 F: drivers/spi/spi-qup.c
1688 F: drivers/tty/serial/msm_serial.h
1689 F: drivers/tty/serial/msm_serial.c
1690 F: drivers/*/pm8???-*
1691 F: drivers/mfd/ssbi.c
1692 F: drivers/firmware/qcom_scm.c
1693 T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1695 ARM/RADISYS ENP2611 MACHINE SUPPORT
1696 M: Lennert Buytenhek <kernel@wantstofly.org>
1697 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1700 ARM/REALTEK ARCHITECTURE
1701 M: Andreas Färber <afaerber@suse.de>
1702 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 F: arch/arm64/boot/dts/realtek/
1705 F: Documentation/devicetree/bindings/arm/realtek.txt
1707 ARM/RENESAS ARM64 ARCHITECTURE
1708 M: Simon Horman <horms@verge.net.au>
1709 M: Magnus Damm <magnus.damm@gmail.com>
1710 L: linux-renesas-soc@vger.kernel.org
1711 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1712 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1714 F: arch/arm64/boot/dts/renesas/
1715 F: drivers/soc/renesas/
1716 F: include/linux/soc/renesas/
1718 ARM/RISCPC ARCHITECTURE
1719 M: Russell King <linux@armlinux.org.uk>
1720 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 W: http://www.armlinux.org.uk/
1723 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1724 F: arch/arm/include/asm/hardware/ioc.h
1725 F: arch/arm/include/asm/hardware/iomd.h
1726 F: arch/arm/include/asm/hardware/memc.h
1727 F: arch/arm/mach-rpc/
1728 F: drivers/net/ethernet/8390/etherh.c
1729 F: drivers/net/ethernet/i825xx/ether1*
1730 F: drivers/net/ethernet/seeq/ether3*
1731 F: drivers/scsi/arm/
1733 ARM/Rockchip SoC support
1734 M: Heiko Stuebner <heiko@sntech.de>
1735 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 L: linux-rockchip@lists.infradead.org
1737 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1739 F: arch/arm/boot/dts/rk3*
1740 F: arch/arm/boot/dts/rv1108*
1741 F: arch/arm/mach-rockchip/
1742 F: drivers/clk/rockchip/
1743 F: drivers/i2c/busses/i2c-rk3x.c
1744 F: drivers/*/*rockchip*
1745 F: drivers/*/*/*rockchip*
1746 F: sound/soc/rockchip/
1749 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1750 M: Kukjin Kim <kgene@kernel.org>
1751 M: Krzysztof Kozlowski <krzk@kernel.org>
1752 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1754 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
1756 F: arch/arm/boot/dts/s3c*
1757 F: arch/arm/boot/dts/s5p*
1758 F: arch/arm/boot/dts/samsung*
1759 F: arch/arm/boot/dts/exynos*
1760 F: arch/arm64/boot/dts/exynos/
1761 F: arch/arm/plat-samsung/
1762 F: arch/arm/mach-s3c24*/
1763 F: arch/arm/mach-s3c64xx/
1764 F: arch/arm/mach-s5p*/
1765 F: arch/arm/mach-exynos*/
1766 F: drivers/*/*s3c24*
1767 F: drivers/*/*/*s3c24*
1768 F: drivers/*/*s3c64xx*
1769 F: drivers/*/*s5pv210*
1770 F: drivers/memory/samsung/*
1771 F: drivers/soc/samsung/*
1772 F: Documentation/arm/Samsung/
1773 F: Documentation/devicetree/bindings/arm/samsung/
1774 F: Documentation/devicetree/bindings/sram/samsung-sram.txt
1775 F: Documentation/devicetree/bindings/power/pd-samsung.txt
1778 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1779 M: Kyungmin Park <kyungmin.park@samsung.com>
1780 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 F: arch/arm/mach-s5pv210/
1784 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1785 M: Kyungmin Park <kyungmin.park@samsung.com>
1786 M: Kamil Debski <kamil@wypas.org>
1787 M: Andrzej Hajda <a.hajda@samsung.com>
1788 L: linux-arm-kernel@lists.infradead.org
1789 L: linux-media@vger.kernel.org
1791 F: drivers/media/platform/s5p-g2d/
1793 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1794 M: Kyungmin Park <kyungmin.park@samsung.com>
1795 M: Kamil Debski <kamil@wypas.org>
1796 M: Jeongtae Park <jtp.park@samsung.com>
1797 M: Andrzej Hajda <a.hajda@samsung.com>
1798 L: linux-arm-kernel@lists.infradead.org
1799 L: linux-media@vger.kernel.org
1801 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1802 F: drivers/media/platform/s5p-mfc/
1804 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1805 M: Marek Szyprowski <m.szyprowski@samsung.com>
1806 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1807 L: linux-media@vger.kernel.org
1809 F: drivers/media/platform/s5p-cec/
1810 F: Documentation/devicetree/bindings/media/s5p-cec.txt
1812 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1813 M: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1814 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
1815 L: linux-arm-kernel@lists.infradead.org
1816 L: linux-media@vger.kernel.org
1818 F: drivers/media/platform/s5p-jpeg/
1820 ARM/SHMOBILE ARM ARCHITECTURE
1821 M: Simon Horman <horms@verge.net.au>
1822 M: Magnus Damm <magnus.damm@gmail.com>
1823 L: linux-renesas-soc@vger.kernel.org
1824 Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/
1825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1827 F: arch/arm/boot/dts/emev2*
1828 F: arch/arm/boot/dts/r7s*
1829 F: arch/arm/boot/dts/r8a*
1830 F: arch/arm/boot/dts/sh*
1831 F: arch/arm/configs/shmobile_defconfig
1832 F: arch/arm/include/debug/renesas-scif.S
1833 F: arch/arm/mach-shmobile/
1834 F: drivers/soc/renesas/
1835 F: include/linux/soc/renesas/
1837 ARM/SOCFPGA ARCHITECTURE
1838 M: Dinh Nguyen <dinguyen@kernel.org>
1840 F: arch/arm/mach-socfpga/
1841 F: arch/arm/boot/dts/socfpga*
1842 F: arch/arm/configs/socfpga_defconfig
1843 F: arch/arm64/boot/dts/altera/
1844 W: http://www.rocketboards.org
1845 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1847 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1848 M: Dinh Nguyen <dinguyen@kernel.org>
1850 F: drivers/clk/socfpga/
1852 ARM/SOCFPGA EDAC SUPPORT
1853 M: Thor Thayer <thor.thayer@linux.intel.com>
1855 F: drivers/edac/altera_edac.
1857 ARM/STI ARCHITECTURE
1858 M: Patrice Chotard <patrice.chotard@st.com>
1859 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 W: http://www.stlinux.com
1862 F: arch/arm/mach-sti/
1863 F: arch/arm/boot/dts/sti*
1864 F: drivers/char/hw_random/st-rng.c
1865 F: drivers/clocksource/arm_global_timer.c
1866 F: drivers/clocksource/clksrc_st_lpc.c
1867 F: drivers/cpufreq/sti-cpufreq.c
1868 F: drivers/dma/st_fdma*
1869 F: drivers/i2c/busses/i2c-st.c
1870 F: drivers/media/rc/st_rc.c
1871 F: drivers/media/platform/sti/c8sectpfe/
1872 F: drivers/mmc/host/sdhci-st.c
1873 F: drivers/phy/st/phy-miphy28lp.c
1874 F: drivers/phy/st/phy-stih407-usb.c
1875 F: drivers/pinctrl/pinctrl-st.c
1876 F: drivers/remoteproc/st_remoteproc.c
1877 F: drivers/remoteproc/st_slim_rproc.c
1878 F: drivers/reset/sti/
1879 F: drivers/rtc/rtc-st-lpc.c
1880 F: drivers/tty/serial/st-asc.c
1881 F: drivers/usb/dwc3/dwc3-st.c
1882 F: drivers/usb/host/ehci-st.c
1883 F: drivers/usb/host/ohci-st.c
1884 F: drivers/watchdog/st_lpc_wdt.c
1885 F: drivers/ata/ahci_st.c
1886 F: include/linux/remoteproc/st_slim_rproc.h
1888 ARM/STM32 ARCHITECTURE
1889 M: Maxime Coquelin <mcoquelin.stm32@gmail.com>
1890 M: Alexandre Torgue <alexandre.torgue@st.com>
1891 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1893 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1895 F: drivers/clocksource/armv7m_systick.c
1897 ARM/TANGO ARCHITECTURE
1898 M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1899 L: linux-arm-kernel@lists.infradead.org
1903 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1904 M: Lennert Buytenhek <kernel@wantstofly.org>
1905 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1908 ARM/TETON BGA MACHINE SUPPORT
1909 M: "Mark F. Brown" <mark.brown314@gmail.com>
1910 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 ARM/THECUS N2100 MACHINE SUPPORT
1914 M: Lennert Buytenhek <kernel@wantstofly.org>
1915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1919 M: Wan ZongShun <mcuos.com@gmail.com>
1920 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 W: http://www.mcuos.com
1923 F: arch/arm/mach-w90x900/
1924 F: drivers/input/keyboard/w90p910_keypad.c
1925 F: drivers/input/touchscreen/w90p910_ts.c
1926 F: drivers/watchdog/nuc900_wdt.c
1927 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1928 F: drivers/mtd/nand/nuc900_nand.c
1929 F: drivers/rtc/rtc-nuc900.c
1930 F: drivers/spi/spi-nuc900.c
1931 F: drivers/usb/host/ehci-w90x900.c
1932 F: drivers/video/fbdev/nuc900fb.c
1934 ARM/U300 MACHINE SUPPORT
1935 M: Linus Walleij <linus.walleij@linaro.org>
1936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 F: arch/arm/mach-u300/
1939 F: drivers/clocksource/timer-u300.c
1940 F: drivers/i2c/busses/i2c-stu300.c
1941 F: drivers/rtc/rtc-coh901331.c
1942 F: drivers/watchdog/coh901327_wdt.c
1943 F: drivers/dma/coh901318*
1944 F: drivers/mfd/ab3100*
1945 F: drivers/rtc/rtc-ab3100.c
1946 F: drivers/rtc/rtc-coh901331.c
1947 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1949 ARM/UNIPHIER ARCHITECTURE
1950 M: Masahiro Yamada <yamada.masahiro@socionext.com>
1951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1954 F: arch/arm/boot/dts/uniphier*
1955 F: arch/arm/include/asm/hardware/cache-uniphier.h
1956 F: arch/arm/mach-uniphier/
1957 F: arch/arm/mm/cache-uniphier.c
1958 F: arch/arm64/boot/dts/socionext/
1959 F: drivers/bus/uniphier-system-bus.c
1960 F: drivers/clk/uniphier/
1961 F: drivers/i2c/busses/i2c-uniphier*
1962 F: drivers/pinctrl/uniphier/
1963 F: drivers/reset/reset-uniphier.c
1964 F: drivers/tty/serial/8250/8250_uniphier.c
1967 ARM/Ux500 ARM ARCHITECTURE
1968 M: Linus Walleij <linus.walleij@linaro.org>
1969 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 F: arch/arm/mach-ux500/
1972 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1973 F: drivers/dma/ste_dma40*
1974 F: drivers/hwspinlock/u8500_hsem.c
1975 F: drivers/mfd/abx500*
1976 F: drivers/mfd/ab8500*
1977 F: drivers/mfd/dbx500*
1978 F: drivers/mfd/db8500*
1979 F: drivers/pinctrl/nomadik/pinctrl-ab*
1980 F: drivers/pinctrl/nomadik/pinctrl-nomadik*
1981 F: drivers/rtc/rtc-ab8500.c
1982 F: drivers/rtc/rtc-pl031.c
1983 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1985 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1986 M: Ulf Hansson <ulf.hansson@linaro.org>
1987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 T: git git://git.linaro.org/people/ulfh/clk.git
1990 F: drivers/clk/ux500/
1992 ARM/VERSATILE EXPRESS PLATFORM
1993 M: Liviu Dudau <liviu.dudau@arm.com>
1994 M: Sudeep Holla <sudeep.holla@arm.com>
1995 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1996 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1998 F: arch/arm/boot/dts/vexpress*
1999 F: arch/arm64/boot/dts/arm/
2000 F: arch/arm/mach-vexpress/
2003 F: drivers/clk/versatile/clk-vexpress-osc.c
2004 F: drivers/clocksource/versatile.c
2008 M: Russell King <linux@armlinux.org.uk>
2009 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2010 W: http://www.armlinux.org.uk/
2014 ARM/VOIPAC PXA270 SUPPORT
2015 M: Marek Vasut <marek.vasut@gmail.com>
2016 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 F: arch/arm/mach-pxa/vpac270.c
2019 F: arch/arm/mach-pxa/include/mach/vpac270.h
2021 ARM/VT8500 ARM ARCHITECTURE
2022 M: Tony Prisk <linux@prisktech.co.nz>
2023 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 F: arch/arm/mach-vt8500/
2026 F: drivers/clocksource/vt8500_timer.c
2027 F: drivers/i2c/busses/i2c-wmt.c
2028 F: drivers/mmc/host/wmt-sdmmc.c
2029 F: drivers/pwm/pwm-vt8500.c
2030 F: drivers/rtc/rtc-vt8500.c
2031 F: drivers/tty/serial/vt8500_serial.c
2032 F: drivers/usb/host/ehci-platform.c
2033 F: drivers/usb/host/uhci-platform.c
2034 F: drivers/video/fbdev/vt8500lcdfb.*
2035 F: drivers/video/fbdev/wm8505fb*
2036 F: drivers/video/fbdev/wmt_ge_rops.*
2038 ARM/ZIPIT Z2 SUPPORT
2039 M: Marek Vasut <marek.vasut@gmail.com>
2040 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 F: arch/arm/mach-pxa/z2.c
2043 F: arch/arm/mach-pxa/include/mach/z2.h
2045 ARM/ZTE ARCHITECTURE
2046 M: Jun Nie <jun.nie@linaro.org>
2047 M: Baoyou Xie <baoyou.xie@linaro.org>
2048 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2050 F: arch/arm/mach-zx/
2052 F: drivers/reset/reset-zx2967.c
2054 F: Documentation/devicetree/bindings/arm/zte.txt
2055 F: Documentation/devicetree/bindings/clock/zx296702-clk.txt
2056 F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2057 F: Documentation/devicetree/bindings/soc/zte/
2058 F: include/dt-bindings/soc/zx*.h
2060 ARM/ZYNQ ARCHITECTURE
2061 M: Michal Simek <michal.simek@xilinx.com>
2062 R: Sören Brinkmann <soren.brinkmann@xilinx.com>
2063 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 W: http://wiki.xilinx.com
2065 T: git https://github.com/Xilinx/linux-xlnx.git
2067 F: arch/arm/mach-zynq/
2068 F: drivers/cpuidle/cpuidle-zynq.c
2069 F: drivers/block/xsysace.c
2072 F: drivers/clocksource/cadence_ttc_timer.c
2073 F: drivers/i2c/busses/i2c-cadence.c
2074 F: drivers/mmc/host/sdhci-of-arasan.c
2075 F: drivers/edac/synopsys_edac.c
2078 M: Will Deacon <will.deacon@arm.com>
2079 R: Robin Murphy <robin.murphy@arm.com>
2080 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2082 F: drivers/iommu/arm-smmu.c
2083 F: drivers/iommu/arm-smmu-v3.c
2084 F: drivers/iommu/io-pgtable-arm.c
2085 F: drivers/iommu/io-pgtable-arm-v7s.c
2087 ARM64 PORT (AARCH64 ARCHITECTURE)
2088 M: Catalin Marinas <catalin.marinas@arm.com>
2089 M: Will Deacon <will.deacon@arm.com>
2090 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2094 F: Documentation/arm64/
2096 AS3645A LED FLASH CONTROLLER DRIVER
2097 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2098 L: linux-media@vger.kernel.org
2099 T: git git://linuxtv.org/media_tree.git
2101 F: drivers/media/i2c/as3645a.c
2102 F: include/media/i2c/as3645a.h
2104 ASAHI KASEI AK8974 DRIVER
2105 M: Linus Walleij <linus.walleij@linaro.org>
2106 L: linux-iio@vger.kernel.org
2107 W: http://www.akm.com/
2109 F: drivers/iio/magnetometer/ak8974.c
2111 ASC7621 HARDWARE MONITOR DRIVER
2112 M: George Joseph <george.joseph@fairview5.com>
2113 L: linux-hwmon@vger.kernel.org
2115 F: Documentation/hwmon/asc7621
2116 F: drivers/hwmon/asc7621.c
2118 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2119 M: Corentin Chary <corentin.chary@gmail.com>
2120 L: acpi4asus-user@lists.sourceforge.net
2121 L: platform-driver-x86@vger.kernel.org
2122 W: http://acpi4asus.sf.net
2124 F: drivers/platform/x86/asus*.c
2125 F: drivers/platform/x86/eeepc*.c
2127 ASUS WIRELESS RADIO CONTROL DRIVER
2128 M: João Paulo Rechi Vita <jprvita@gmail.com>
2129 L: platform-driver-x86@vger.kernel.org
2131 F: drivers/platform/x86/asus-wireless.c
2134 M: David Howells <dhowells@redhat.com>
2135 L: keyrings@vger.kernel.org
2137 F: Documentation/crypto/asymmetric-keys.txt
2138 F: include/linux/verification.h
2139 F: include/crypto/public_key.h
2140 F: include/crypto/pkcs7.h
2141 F: crypto/asymmetric_keys/
2143 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2144 R: Dan Williams <dan.j.williams@intel.com>
2145 W: http://sourceforge.net/projects/xscaleiop
2147 F: Documentation/crypto/async-tx-api.txt
2150 F: include/linux/dmaengine.h
2151 F: include/linux/async_tx.h
2154 M: Wolfram Sang <wsa@the-dreams.de>
2155 L: linux-i2c@vger.kernel.org
2157 F: drivers/misc/eeprom/at24.c
2158 F: include/linux/platform_data/at24.h
2160 ATA OVER ETHERNET (AOE) DRIVER
2161 M: "Ed L. Cashin" <ed.cashin@acm.org>
2162 W: http://www.openaoe.org/
2164 F: Documentation/aoe/
2165 F: drivers/block/aoe/
2167 ATHEROS 71XX/9XXX GPIO DRIVER
2168 M: Alban Bedel <albeu@free.fr>
2169 W: https://github.com/AlbanBedel/linux
2170 T: git git://github.com/AlbanBedel/linux
2172 F: drivers/gpio/gpio-ath79.c
2173 F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2175 ATHEROS ATH GENERIC UTILITIES
2176 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2177 L: linux-wireless@vger.kernel.org
2179 F: drivers/net/wireless/ath/*
2181 ATHEROS ATH5K WIRELESS DRIVER
2182 M: Jiri Slaby <jirislaby@gmail.com>
2183 M: Nick Kossifidis <mickflemm@gmail.com>
2184 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2185 L: linux-wireless@vger.kernel.org
2186 W: http://wireless.kernel.org/en/users/Drivers/ath5k
2188 F: drivers/net/wireless/ath/ath5k/
2190 ATHEROS ATH6KL WIRELESS DRIVER
2191 M: Kalle Valo <kvalo@qca.qualcomm.com>
2192 L: linux-wireless@vger.kernel.org
2193 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
2194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2196 F: drivers/net/wireless/ath/ath6kl/
2198 WILOCITY WIL6210 WIRELESS DRIVER
2199 M: Maya Erez <qca_merez@qca.qualcomm.com>
2200 L: linux-wireless@vger.kernel.org
2201 L: wil6210@qca.qualcomm.com
2203 W: http://wireless.kernel.org/en/users/Drivers/wil6210
2204 F: drivers/net/wireless/ath/wil6210/
2205 F: include/uapi/linux/wil6210_uapi.h
2207 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2208 M: Christian Lamparter <chunkeey@googlemail.com>
2209 L: linux-wireless@vger.kernel.org
2210 W: http://wireless.kernel.org/en/users/Drivers/carl9170
2212 F: drivers/net/wireless/ath/carl9170/
2214 ATK0110 HWMON DRIVER
2215 M: Luca Tettamanti <kronos.it@gmail.com>
2216 L: linux-hwmon@vger.kernel.org
2218 F: drivers/hwmon/asus_atk0110.c
2221 M: Ville Syrjala <syrjala@sci.fi>
2223 F: drivers/input/misc/ati_remote2.c
2225 ATLX ETHERNET DRIVERS
2226 M: Jay Cliburn <jcliburn@gmail.com>
2227 M: Chris Snook <chris.snook@gmail.com>
2228 L: netdev@vger.kernel.org
2229 W: http://sourceforge.net/projects/atl1
2230 W: http://atl1.sourceforge.net
2232 F: drivers/net/ethernet/atheros/
2235 M: Chas Williams <3chas3@gmail.com>
2236 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2237 L: netdev@vger.kernel.org
2238 W: http://linux-atm.sourceforge.net
2241 F: include/linux/atm*
2242 F: include/uapi/linux/atm*
2244 ATMEL AT91 / AT32 MCI DRIVER
2245 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2247 F: drivers/mmc/host/atmel-mci.c
2249 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2250 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2252 F: drivers/power/reset/at91-sama5d2_shdwc.c
2254 ATMEL SAMA5D2 ADC DRIVER
2255 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2256 L: linux-iio@vger.kernel.org
2258 F: drivers/iio/adc/at91-sama5d2_adc.c
2260 ATMEL Audio ALSA driver
2261 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2262 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2267 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2268 L: linux-arm-kernel@lists.infradead.org
2269 L: dmaengine@vger.kernel.org
2271 F: drivers/dma/at_xdmac.c
2274 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2275 L: linux-i2c@vger.kernel.org
2277 F: drivers/i2c/busses/i2c-at91.c
2280 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2281 L: linux-media@vger.kernel.org
2283 F: drivers/media/platform/atmel/atmel-isi.c
2284 F: include/media/atmel-isi.h
2287 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2288 L: linux-fbdev@vger.kernel.org
2290 F: drivers/video/fbdev/atmel_lcdfb.c
2291 F: include/video/atmel_lcdc.h
2293 ATMEL MACB ETHERNET DRIVER
2294 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2296 F: drivers/net/ethernet/cadence/
2299 M: Wenyou Yang <wenyou.yang@atmel.com>
2300 M: Josh Wu <rainyfeeling@outlook.com>
2301 L: linux-mtd@lists.infradead.org
2303 F: drivers/mtd/nand/atmel/*
2306 M: Ludovic Desroches <ludovic.desroches@microchip.com>
2307 L: linux-mmc@vger.kernel.org
2309 F: drivers/mmc/host/sdhci-of-at91.c
2312 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2314 F: drivers/spi/spi-atmel.*
2317 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2318 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 F: drivers/misc/atmel-ssc.c
2321 F: include/linux/atmel-ssc.h
2323 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2324 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2325 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 F: drivers/misc/atmel_tclib.c
2328 F: drivers/clocksource/tcb_clksrc.c
2330 ATMEL USBA UDC DRIVER
2331 M: Nicolas Ferre <nicolas.ferre@microchip.com>
2332 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2334 F: drivers/usb/gadget/udc/atmel_usba_udc.*
2336 ATMEL WIRELESS DRIVER
2337 M: Simon Kelley <simon@thekelleys.org.uk>
2338 L: linux-wireless@vger.kernel.org
2339 W: http://www.thekelleys.org.uk/atmel
2340 W: http://atmelwlandriver.sourceforge.net/
2342 F: drivers/net/wireless/atmel/atmel*
2344 ATMEL MAXTOUCH DRIVER
2345 M: Nick Dyer <nick@shmanahar.org>
2346 T: git git://github.com/ndyer/linux.git
2348 F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2349 F: drivers/input/touchscreen/atmel_mxt_ts.c
2350 F: include/linux/platform_data/atmel_mxt_ts.h
2352 ATOMIC INFRASTRUCTURE
2353 M: Will Deacon <will.deacon@arm.com>
2354 M: Peter Zijlstra <peterz@infradead.org>
2355 R: Boqun Feng <boqun.feng@gmail.com>
2356 L: linux-kernel@vger.kernel.org
2358 F: arch/*/include/asm/atomic*.h
2359 F: include/*/atomic*.h
2361 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2362 M: Bradley Grove <linuxdrivers@attotech.com>
2363 L: linux-scsi@vger.kernel.org
2364 W: http://www.attotech.com
2366 F: drivers/scsi/esas2r
2368 ATUSB IEEE 802.15.4 RADIO DRIVER
2369 M: Stefan Schmidt <stefan@osg.samsung.com>
2370 L: linux-wpan@vger.kernel.org
2372 F: drivers/net/ieee802154/atusb.c
2373 F: drivers/net/ieee802154/atusb.h
2374 F: drivers/net/ieee802154/at86rf230.h
2377 M: Paul Moore <paul@paul-moore.com>
2378 M: Eric Paris <eparis@redhat.com>
2379 L: linux-audit@redhat.com (moderated for non-subscribers)
2380 W: http://people.redhat.com/sgrubb/audit/
2381 T: git git://git.infradead.org/users/pcmoore/audit
2383 F: include/linux/audit.h
2384 F: include/uapi/linux/audit.h
2387 AUXILIARY DISPLAY DRIVERS
2388 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2389 W: http://miguelojeda.es/auxdisplay.htm
2390 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2392 F: drivers/auxdisplay/
2393 F: include/linux/cfag12864b.h
2396 M: Ralf Baechle <ralf@linux-mips.org>
2397 L: linux-hams@vger.kernel.org
2398 W: http://www.linux-ax25.org/
2400 F: include/uapi/linux/ax25.h
2401 F: include/net/ax25.h
2404 AXENTIA ASOC DRIVERS
2405 M: Peter Rosin <peda@axentia.se>
2406 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2408 F: Documentation/devicetree/bindings/sound/axentia,*
2409 F: sound/soc/atmel/tse850-pcm5142.c
2412 M: Peter Rosin <peda@axentia.se>
2413 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 F: Documentation/devicetree/bindings/arm/axentia.txt
2416 F: arch/arm/boot/dts/at91-linea.dtsi
2417 F: arch/arm/boot/dts/at91-tse850-3.dts
2420 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2421 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2422 L: linux-media@vger.kernel.org
2423 W: https://linuxtv.org
2424 T: git git://linuxtv.org/media_tree.git
2426 F: drivers/media/usb/dvb-usb-v2/az6007.c
2428 AZTECH FM RADIO RECEIVER DRIVER
2429 M: Hans Verkuil <hverkuil@xs4all.nl>
2430 L: linux-media@vger.kernel.org
2431 T: git git://linuxtv.org/media_tree.git
2432 W: https://linuxtv.org
2434 F: drivers/media/radio/radio-aztech*
2437 L: linux-wireless@vger.kernel.org
2438 L: b43-dev@lists.infradead.org
2439 W: http://wireless.kernel.org/en/users/Drivers/b43
2441 F: drivers/net/wireless/broadcom/b43/
2443 B43LEGACY WIRELESS DRIVER
2444 M: Larry Finger <Larry.Finger@lwfinger.net>
2445 L: linux-wireless@vger.kernel.org
2446 L: b43-dev@lists.infradead.org
2447 W: http://wireless.kernel.org/en/users/Drivers/b43
2449 F: drivers/net/wireless/broadcom/b43legacy/
2451 BACKLIGHT CLASS/SUBSYSTEM
2452 M: Lee Jones <lee.jones@linaro.org>
2453 M: Daniel Thompson <daniel.thompson@linaro.org>
2454 M: Jingoo Han <jingoohan1@gmail.com>
2455 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2457 F: drivers/video/backlight/
2458 F: include/linux/backlight.h
2459 F: include/linux/pwm_backlight.h
2460 F: Documentation/devicetree/bindings/leds/backlight
2463 M: Marek Lindner <mareklindner@neomailbox.ch>
2464 M: Simon Wunderlich <sw@simonwunderlich.de>
2465 M: Antonio Quartulli <a@unstable.cc>
2466 L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2467 W: https://www.open-mesh.org/
2468 Q: https://patchwork.open-mesh.org/project/batman/list/
2470 F: Documentation/ABI/testing/sysfs-class-net-batman-adv
2471 F: Documentation/ABI/testing/sysfs-class-net-mesh
2472 F: Documentation/networking/batman-adv.txt
2473 F: include/uapi/linux/batman_adv.h
2476 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2477 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
2478 L: linux-hams@vger.kernel.org
2479 W: http://www.baycom.org/~tom/ham/ham.html
2481 F: drivers/net/hamradio/baycom*
2483 BCACHE (BLOCK LAYER CACHE)
2484 M: Kent Overstreet <kent.overstreet@gmail.com>
2485 L: linux-bcache@vger.kernel.org
2486 W: http://bcache.evilpiepirate.org
2488 F: drivers/md/bcache/
2490 BDISP ST MEDIA DRIVER
2491 M: Fabien Dessenne <fabien.dessenne@st.com>
2492 L: linux-media@vger.kernel.org
2493 T: git git://linuxtv.org/media_tree.git
2494 W: https://linuxtv.org
2496 F: drivers/media/platform/sti/bdisp
2498 DELTA ST MEDIA DRIVER
2499 M: Hugues Fruchet <hugues.fruchet@st.com>
2500 L: linux-media@vger.kernel.org
2501 T: git git://linuxtv.org/media_tree.git
2502 W: https://linuxtv.org
2504 F: drivers/media/platform/sti/delta
2507 M: Luis de Bethencourt <luisbg@osg.samsung.com>
2508 M: Salah Triki <salah.triki@gmail.com>
2510 T: git git://github.com/luisbg/linux-befs.git
2511 F: Documentation/filesystems/befs.txt
2514 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2515 M: Dariusz Marcinkiewicz <reksio@newterm.pl>
2516 L: netdev@vger.kernel.org
2518 F: drivers/net/ethernet/ec_bhf.c
2521 M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
2523 F: Documentation/filesystems/bfs.txt
2525 F: include/uapi/linux/bfs_fs.h
2527 BLACKFIN ARCHITECTURE
2528 M: Steven Miao <realmz6@gmail.com>
2529 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2530 T: git git://git.code.sf.net/p/adi-linux/code
2531 W: http://blackfin.uclinux.org
2535 BLACKFIN EMAC DRIVER
2536 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2537 W: http://blackfin.uclinux.org
2539 F: drivers/net/ethernet/adi/
2542 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2543 W: http://blackfin.uclinux.org
2545 F: drivers/rtc/rtc-bfin.c
2548 M: Sonic Zhang <sonic.zhang@analog.com>
2549 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2550 W: http://blackfin.uclinux.org
2552 F: drivers/mmc/host/bfin_sdh.c
2554 BLACKFIN SERIAL DRIVER
2555 M: Sonic Zhang <sonic.zhang@analog.com>
2556 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2557 W: http://blackfin.uclinux.org
2559 F: drivers/tty/serial/bfin_uart.c
2561 BLACKFIN WATCHDOG DRIVER
2562 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2563 W: http://blackfin.uclinux.org
2565 F: drivers/watchdog/bfin_wdt.c
2567 BLACKFIN I2C TWI DRIVER
2568 M: Sonic Zhang <sonic.zhang@analog.com>
2569 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2570 W: http://blackfin.uclinux.org/
2572 F: drivers/i2c/busses/i2c-bfin-twi.c
2574 BLACKFIN MEDIA DRIVER
2575 M: Scott Jiang <scott.jiang.linux@gmail.com>
2576 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2577 W: http://blackfin.uclinux.org/
2579 F: drivers/media/platform/blackfin/
2580 F: drivers/media/i2c/adv7183*
2581 F: drivers/media/i2c/vs6624*
2583 BLINKM RGB LED DRIVER
2584 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
2586 F: drivers/leds/leds-blinkm.c
2589 M: Jens Axboe <axboe@kernel.dk>
2590 L: linux-block@vger.kernel.org
2591 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2594 F: kernel/trace/blktrace.c
2598 M: Paolo Valente <paolo.valente@linaro.org>
2599 M: Jens Axboe <axboe@kernel.dk>
2600 L: linux-block@vger.kernel.org
2603 F: Documentation/block/bfq-iosched.txt
2606 M: Joern Engel <joern@lazybastard.org>
2607 L: linux-mtd@lists.infradead.org
2609 F: drivers/mtd/devices/block2mtd.c
2612 M: Marcel Holtmann <marcel@holtmann.org>
2613 M: Gustavo Padovan <gustavo@padovan.org>
2614 M: Johan Hedberg <johan.hedberg@gmail.com>
2615 L: linux-bluetooth@vger.kernel.org
2616 W: http://www.bluez.org/
2617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2620 F: drivers/bluetooth/
2623 M: Marcel Holtmann <marcel@holtmann.org>
2624 M: Gustavo Padovan <gustavo@padovan.org>
2625 M: Johan Hedberg <johan.hedberg@gmail.com>
2626 L: linux-bluetooth@vger.kernel.org
2627 W: http://www.bluez.org/
2628 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2632 F: include/net/bluetooth/
2635 M: Christoph Hellwig <hch@lst.de>
2636 M: Marek Szyprowski <m.szyprowski@samsung.com>
2637 R: Robin Murphy <robin.murphy@arm.com>
2638 L: linux-kernel@vger.kernel.org
2639 T: git git://git.infradead.org/users/hch/dma-mapping.git
2640 W: http://git.infradead.org/users/hch/dma-mapping.git
2645 F: drivers/base/dma-mapping.c
2646 F: drivers/base/dma-coherent.c
2647 F: include/linux/dma-mapping.h
2650 M: Jay Vosburgh <j.vosburgh@gmail.com>
2651 M: Veaceslav Falico <vfalico@gmail.com>
2652 M: Andy Gospodarek <andy@greyhouse.net>
2653 L: netdev@vger.kernel.org
2654 W: http://sourceforge.net/projects/bonding/
2656 F: drivers/net/bonding/
2657 F: include/uapi/linux/if_bonding.h
2659 BPF (Safe dynamic programs and tools)
2660 M: Alexei Starovoitov <ast@kernel.org>
2661 M: Daniel Borkmann <daniel@iogearbox.net>
2662 L: netdev@vger.kernel.org
2663 L: linux-kernel@vger.kernel.org
2665 F: arch/x86/net/bpf_jit*
2666 F: Documentation/networking/filter.txt
2667 F: include/linux/bpf*
2668 F: include/linux/filter.h
2669 F: include/uapi/linux/bpf*
2670 F: include/uapi/linux/filter.h
2672 F: kernel/trace/bpf_trace.c
2675 F: net/core/filter.c
2676 F: net/sched/act_bpf.c
2677 F: net/sched/cls_bpf.c
2680 F: tools/testing/selftests/bpf/
2682 BROADCOM B44 10/100 ETHERNET DRIVER
2683 M: Michael Chan <michael.chan@broadcom.com>
2684 L: netdev@vger.kernel.org
2686 F: drivers/net/ethernet/broadcom/b44.*
2688 BROADCOM B53 ETHERNET SWITCH DRIVER
2689 M: Florian Fainelli <f.fainelli@gmail.com>
2690 L: netdev@vger.kernel.org
2691 L: openwrt-devel@lists.openwrt.org (subscribers-only)
2693 F: drivers/net/dsa/b53/*
2694 F: include/linux/platform_data/b53.h
2696 BROADCOM GENET ETHERNET DRIVER
2697 M: Florian Fainelli <f.fainelli@gmail.com>
2698 L: netdev@vger.kernel.org
2700 F: drivers/net/ethernet/broadcom/genet/
2702 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2703 M: Rasesh Mody <rasesh.mody@cavium.com>
2704 M: Harish Patil <harish.patil@cavium.com>
2705 M: Dept-GELinuxNICDev@cavium.com
2706 L: netdev@vger.kernel.org
2708 F: drivers/net/ethernet/broadcom/bnx2.*
2709 F: drivers/net/ethernet/broadcom/bnx2_*
2711 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2712 M: Yuval Mintz <Yuval.Mintz@cavium.com>
2713 M: Ariel Elior <ariel.elior@cavium.com>
2714 M: everest-linux-l2@cavium.com
2715 L: netdev@vger.kernel.org
2717 F: drivers/net/ethernet/broadcom/bnx2x/
2719 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2720 M: Michael Chan <michael.chan@broadcom.com>
2721 L: netdev@vger.kernel.org
2723 F: drivers/net/ethernet/broadcom/bnxt/
2725 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2726 M: Florian Fainelli <f.fainelli@gmail.com>
2727 M: Ray Jui <rjui@broadcom.com>
2728 M: Scott Branden <sbranden@broadcom.com>
2729 M: bcm-kernel-feedback-list@broadcom.com
2730 T: git git://github.com/broadcom/mach-bcm
2736 F: arch/arm/mach-bcm/
2738 BROADCOM BCM2835 ARM ARCHITECTURE
2739 M: Eric Anholt <eric@anholt.net>
2740 M: Stefan Wahren <stefan.wahren@i2se.com>
2741 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 T: git git://github.com/anholt/linux
2746 F: drivers/staging/vc04_services
2748 BROADCOM BCM47XX MIPS ARCHITECTURE
2749 M: Hauke Mehrtens <hauke@hauke-m.de>
2750 M: Rafał Miłecki <zajec5@gmail.com>
2751 L: linux-mips@linux-mips.org
2753 F: Documentation/devicetree/bindings/mips/brcm/
2754 F: arch/mips/bcm47xx/*
2755 F: arch/mips/include/asm/mach-bcm47xx/*
2757 BROADCOM BCM5301X ARM ARCHITECTURE
2758 M: Hauke Mehrtens <hauke@hauke-m.de>
2759 M: Rafał Miłecki <zajec5@gmail.com>
2760 M: Jon Mason <jonmason@broadcom.com>
2761 M: bcm-kernel-feedback-list@broadcom.com
2762 L: linux-arm-kernel@lists.infradead.org
2764 F: arch/arm/mach-bcm/bcm_5301x.c
2765 F: arch/arm/boot/dts/bcm5301x*.dtsi
2766 F: arch/arm/boot/dts/bcm470*
2767 F: arch/arm/boot/dts/bcm953012*
2769 BROADCOM BCM53573 ARM ARCHITECTURE
2770 M: Rafał Miłecki <rafal@milecki.pl>
2771 L: linux-arm-kernel@lists.infradead.org
2773 F: arch/arm/boot/dts/bcm53573*
2774 F: arch/arm/boot/dts/bcm47189*
2776 BROADCOM BCM63XX ARM ARCHITECTURE
2777 M: Florian Fainelli <f.fainelli@gmail.com>
2778 M: bcm-kernel-feedback-list@broadcom.com
2779 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 T: git git://github.com/broadcom/stblinux.git
2784 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2785 M: Kevin Cernekee <cernekee@gmail.com>
2786 L: linux-usb@vger.kernel.org
2788 F: drivers/usb/gadget/udc/bcm63xx_udc.*
2790 BROADCOM BCM7XXX ARM ARCHITECTURE
2791 M: Brian Norris <computersforpeace@gmail.com>
2792 M: Gregory Fong <gregory.0xf0@gmail.com>
2793 M: Florian Fainelli <f.fainelli@gmail.com>
2794 M: bcm-kernel-feedback-list@broadcom.com
2795 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2796 T: git git://github.com/broadcom/stblinux.git
2798 F: arch/arm/mach-bcm/*brcmstb*
2799 F: arch/arm/boot/dts/bcm7*.dts*
2800 F: drivers/bus/brcmstb_gisb.c
2803 BROADCOM BMIPS MIPS ARCHITECTURE
2804 M: Kevin Cernekee <cernekee@gmail.com>
2805 M: Florian Fainelli <f.fainelli@gmail.com>
2806 L: linux-mips@linux-mips.org
2807 T: git git://github.com/broadcom/stblinux.git
2809 F: arch/mips/bmips/*
2810 F: arch/mips/include/asm/mach-bmips/*
2811 F: arch/mips/kernel/*bmips*
2812 F: arch/mips/boot/dts/brcm/bcm*.dts*
2813 F: drivers/irqchip/irq-bcm63*
2814 F: drivers/irqchip/irq-bcm7*
2815 F: drivers/irqchip/irq-brcmstb*
2816 F: include/linux/bcm963xx_nvram.h
2817 F: include/linux/bcm963xx_tag.h
2819 BROADCOM BMIPS CPUFREQ DRIVER
2820 M: Markus Mayer <mmayer@broadcom.com>
2821 M: bcm-kernel-feedback-list@broadcom.com
2822 L: linux-pm@vger.kernel.org
2824 F: drivers/cpufreq/bmips-cpufreq.c
2826 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2827 M: Siva Reddy Kallam <siva.kallam@broadcom.com>
2828 M: Prashant Sreedharan <prashant@broadcom.com>
2829 M: Michael Chan <mchan@broadcom.com>
2830 L: netdev@vger.kernel.org
2832 F: drivers/net/ethernet/broadcom/tg3.*
2834 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2835 M: Arend van Spriel <arend.vanspriel@broadcom.com>
2836 M: Franky Lin <franky.lin@broadcom.com>
2837 M: Hante Meuleman <hante.meuleman@broadcom.com>
2838 M: Chi-Hsien Lin <chi-hsien.lin@cypress.com>
2839 M: Wright Feng <wright.feng@cypress.com>
2840 L: linux-wireless@vger.kernel.org
2841 L: brcm80211-dev-list.pdl@broadcom.com
2842 L: brcm80211-dev-list@cypress.com
2844 F: drivers/net/wireless/broadcom/brcm80211/
2846 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2847 M: QLogic-Storage-Upstream@qlogic.com
2848 L: linux-scsi@vger.kernel.org
2850 F: drivers/scsi/bnx2fc/
2852 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2853 M: QLogic-Storage-Upstream@qlogic.com
2854 L: linux-scsi@vger.kernel.org
2856 F: drivers/scsi/bnx2i/
2858 BROADCOM IPROC ARM ARCHITECTURE
2859 M: Ray Jui <rjui@broadcom.com>
2860 M: Scott Branden <sbranden@broadcom.com>
2861 M: Jon Mason <jonmason@broadcom.com>
2862 M: bcm-kernel-feedback-list@broadcom.com
2863 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2864 T: git git://github.com/broadcom/cygnus-linux.git
2879 F: arch/arm64/boot/dts/broadcom/ns2*
2880 F: drivers/clk/bcm/clk-ns*
2881 F: drivers/pinctrl/bcm/pinctrl-ns*
2883 BROADCOM BRCMSTB GPIO DRIVER
2884 M: Gregory Fong <gregory.0xf0@gmail.com>
2885 L: bcm-kernel-feedback-list@broadcom.com
2887 F: drivers/gpio/gpio-brcmstb.c
2888 F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2890 BROADCOM KONA GPIO DRIVER
2891 M: Ray Jui <rjui@broadcom.com>
2892 L: bcm-kernel-feedback-list@broadcom.com
2894 F: drivers/gpio/gpio-bcm-kona.c
2895 F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2897 BROADCOM NVRAM DRIVER
2898 M: Rafał Miłecki <zajec5@gmail.com>
2899 L: linux-mips@linux-mips.org
2901 F: drivers/firmware/broadcom/*
2903 BROADCOM STB NAND FLASH DRIVER
2904 M: Brian Norris <computersforpeace@gmail.com>
2905 M: Kamal Dasu <kdasu.kdev@gmail.com>
2906 L: linux-mtd@lists.infradead.org
2907 L: bcm-kernel-feedback-list@broadcom.com
2909 F: drivers/mtd/nand/brcmnand/
2911 BROADCOM STB AVS CPUFREQ DRIVER
2912 M: Markus Mayer <mmayer@broadcom.com>
2913 M: bcm-kernel-feedback-list@broadcom.com
2914 L: linux-pm@vger.kernel.org
2916 F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2917 F: drivers/cpufreq/brcmstb*
2919 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2920 M: Rafał Miłecki <zajec5@gmail.com>
2921 L: linux-wireless@vger.kernel.org
2924 F: include/linux/bcma/
2926 BROADCOM SYSTEMPORT ETHERNET DRIVER
2927 M: Florian Fainelli <f.fainelli@gmail.com>
2928 L: netdev@vger.kernel.org
2930 F: drivers/net/ethernet/broadcom/bcmsysport.*
2932 BROADCOM NETXTREME-E ROCE DRIVER
2933 M: Selvin Xavier <selvin.xavier@broadcom.com>
2934 M: Devesh Sharma <devesh.sharma@broadcom.com>
2935 M: Somnath Kotur <somnath.kotur@broadcom.com>
2936 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
2937 L: linux-rdma@vger.kernel.org
2938 W: http://www.broadcom.com
2940 F: drivers/infiniband/hw/bnxt_re/
2941 F: include/uapi/rdma/bnxt_re-abi.h
2943 BROCADE BFA FC SCSI DRIVER
2944 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2945 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2946 L: linux-scsi@vger.kernel.org
2948 F: drivers/scsi/bfa/
2950 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2951 M: Rasesh Mody <rasesh.mody@cavium.com>
2952 M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com>
2953 M: Dept-GELinuxNICDev@cavium.com
2954 L: netdev@vger.kernel.org
2956 F: drivers/net/ethernet/brocade/bna/
2958 BSG (block layer generic sg v4 driver)
2959 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2960 L: linux-scsi@vger.kernel.org
2963 F: include/linux/bsg.h
2964 F: include/uapi/linux/bsg.h
2967 M: Clemens Ladisch <clemens@ladisch.de>
2968 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2969 T: git git://git.alsa-project.org/alsa-kernel.git
2971 F: Documentation/sound/alsa/Bt87x.txt
2972 F: sound/pci/bt87x.c
2975 M: Michael Buesch <m@bues.ch>
2976 W: http://bu3sch.de/btgpio.php
2978 F: drivers/gpio/gpio-bt8xx.c
2981 M: Chris Mason <clm@fb.com>
2982 M: Josef Bacik <jbacik@fb.com>
2983 M: David Sterba <dsterba@suse.com>
2984 L: linux-btrfs@vger.kernel.org
2985 W: http://btrfs.wiki.kernel.org/
2986 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
2987 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2989 F: Documentation/filesystems/btrfs.txt
2991 F: include/linux/btrfs*
2992 F: include/uapi/linux/btrfs*
2994 BTTV VIDEO4LINUX DRIVER
2995 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2996 M: Mauro Carvalho Chehab <mchehab@kernel.org>
2997 L: linux-media@vger.kernel.org
2998 W: https://linuxtv.org
2999 T: git git://linuxtv.org/media_tree.git
3001 F: Documentation/media/v4l-drivers/bttv*
3002 F: drivers/media/pci/bt8xx/bttv*
3004 BUSLOGIC SCSI DRIVER
3005 M: Khalid Aziz <khalid@gonehiking.org>
3006 L: linux-scsi@vger.kernel.org
3008 F: drivers/scsi/BusLogic.*
3009 F: drivers/scsi/FlashPoint.*
3011 C-MEDIA CMI8788 DRIVER
3012 M: Clemens Ladisch <clemens@ladisch.de>
3013 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3014 T: git git://git.alsa-project.org/alsa-kernel.git
3016 F: sound/pci/oxygen/
3019 M: Mark Salter <msalter@redhat.com>
3020 M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com>
3021 L: linux-c6x-dev@linux-c6x.org
3022 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
3026 CA8210 IEEE-802.15.4 RADIO DRIVER
3027 M: Harry Morris <h.morris@cascoda.com>
3028 M: linuxdev@cascoda.com
3029 L: linux-wpan@vger.kernel.org
3030 W: https://github.com/Cascoda/ca8210-linux.git
3032 F: drivers/net/ieee802154/ca8210.c
3033 F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
3035 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
3036 M: David Howells <dhowells@redhat.com>
3037 L: linux-cachefs@redhat.com (moderated for non-subscribers)
3039 F: Documentation/filesystems/caching/cachefiles.txt
3042 CADET FM/AM RADIO RECEIVER DRIVER
3043 M: Hans Verkuil <hverkuil@xs4all.nl>
3044 L: linux-media@vger.kernel.org
3045 T: git git://linuxtv.org/media_tree.git
3046 W: https://linuxtv.org
3048 F: drivers/media/radio/radio-cadet*
3050 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
3051 M: Jonathan Corbet <corbet@lwn.net>
3052 L: linux-media@vger.kernel.org
3053 T: git git://linuxtv.org/media_tree.git
3055 F: Documentation/media/v4l-drivers/cafe_ccic*
3056 F: drivers/media/platform/marvell-ccic/
3059 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
3060 L: netdev@vger.kernel.org
3062 F: Documentation/networking/caif/
3063 F: drivers/net/caif/
3064 F: include/uapi/linux/caif/
3065 F: include/net/caif/
3068 CALGARY x86-64 IOMMU
3069 M: Muli Ben-Yehuda <mulix@mulix.org>
3070 M: Jon Mason <jdmason@kudzu.us>
3071 L: iommu@lists.linux-foundation.org
3073 F: arch/x86/kernel/pci-calgary_64.c
3074 F: arch/x86/kernel/tce_64.c
3075 F: arch/x86/include/asm/calgary.h
3076 F: arch/x86/include/asm/tce.h
3079 M: Oliver Hartkopp <socketcan@hartkopp.net>
3080 M: Marc Kleine-Budde <mkl@pengutronix.de>
3081 L: linux-can@vger.kernel.org
3082 W: https://github.com/linux-can
3083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3084 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3086 F: Documentation/networking/can.txt
3088 F: include/linux/can/core.h
3089 F: include/uapi/linux/can.h
3090 F: include/uapi/linux/can/bcm.h
3091 F: include/uapi/linux/can/raw.h
3092 F: include/uapi/linux/can/gw.h
3095 M: Wolfgang Grandegger <wg@grandegger.com>
3096 M: Marc Kleine-Budde <mkl@pengutronix.de>
3097 L: linux-can@vger.kernel.org
3098 W: https://github.com/linux-can
3099 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3100 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3102 F: Documentation/devicetree/bindings/net/can/
3104 F: include/linux/can/dev.h
3105 F: include/linux/can/platform/
3106 F: include/uapi/linux/can/error.h
3107 F: include/uapi/linux/can/netlink.h
3110 M: Serge Hallyn <serge@hallyn.com>
3111 L: linux-security-module@vger.kernel.org
3113 F: include/linux/capability.h
3114 F: include/uapi/linux/capability.h
3115 F: security/commoncap.c
3116 F: kernel/capability.c
3118 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3119 M: Kevin Tsai <ktsai@capellamicro.com>
3121 F: drivers/iio/light/cm*
3123 CAVIUM THUNDERX2 ARM64 SOC
3124 M: Jayachandran C <jnair@caviumnetworks.com>
3125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3127 F: arch/arm64/boot/dts/cavium/thunder2-99xx*
3128 F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3131 M: Jan Glauber <jglauber@cavium.com>
3132 M: David Daney <david.daney@cavium.com>
3133 W: http://www.cavium.com
3135 F: drivers/i2c/busses/i2c-octeon*
3136 F: drivers/i2c/busses/i2c-thunderx*
3139 M: Jan Glauber <jglauber@cavium.com>
3140 M: David Daney <david.daney@cavium.com>
3141 M: Steven J. Hill <Steven.Hill@cavium.com>
3142 W: http://www.cavium.com
3144 F: drivers/mmc/host/cavium*
3146 CAVIUM LIQUIDIO NETWORK DRIVER
3147 M: Derek Chickles <derek.chickles@caviumnetworks.com>
3148 M: Satanand Burla <satananda.burla@caviumnetworks.com>
3149 M: Felix Manlunas <felix.manlunas@caviumnetworks.com>
3150 M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
3151 L: netdev@vger.kernel.org
3152 W: http://www.cavium.com
3154 F: drivers/net/ethernet/cavium/liquidio/
3156 CAVIUM OCTEON-TX CRYPTO DRIVER
3157 M: George Cherian <george.cherian@cavium.com>
3158 L: linux-crypto@vger.kernel.org
3159 W: http://www.cavium.com
3161 F: drivers/crypto/cavium/cpt/
3163 CC2520 IEEE-802.15.4 RADIO DRIVER
3164 M: Varka Bhadram <varkabhadram@gmail.com>
3165 L: linux-wpan@vger.kernel.org
3167 F: drivers/net/ieee802154/cc2520.c
3168 F: include/linux/spi/cc2520.h
3169 F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3171 CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER
3172 M: Gilad Ben-Yossef <gilad@benyossef.com>
3173 L: linux-crypto@vger.kernel.org
3174 L: driverdev-devel@linuxdriverproject.org
3176 F: drivers/staging/ccree/
3177 W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
3180 M: Hans Verkuil <hans.verkuil@cisco.com>
3181 L: linux-media@vger.kernel.org
3182 T: git git://linuxtv.org/media_tree.git
3183 W: http://linuxtv.org
3185 F: Documentation/media/kapi/cec-core.rst
3186 F: Documentation/media/uapi/cec
3187 F: drivers/media/cec/
3188 F: drivers/media/rc/keymaps/rc-cec.c
3189 F: include/media/cec.h
3190 F: include/media/cec-notifier.h
3191 F: include/uapi/linux/cec.h
3192 F: include/uapi/linux/cec-funcs.h
3193 F: Documentation/devicetree/bindings/media/cec.txt
3195 CELL BROADBAND ENGINE ARCHITECTURE
3196 M: Arnd Bergmann <arnd@arndb.de>
3197 L: linuxppc-dev@lists.ozlabs.org
3198 W: http://www.ibm.com/developerworks/power/cell/
3200 F: arch/powerpc/include/asm/cell*.h
3201 F: arch/powerpc/include/asm/spu*.h
3202 F: arch/powerpc/include/uapi/asm/spu*.h
3203 F: arch/powerpc/oprofile/*cell*
3204 F: arch/powerpc/platforms/cell/
3206 CEPH COMMON CODE (LIBCEPH)
3207 M: Ilya Dryomov <idryomov@gmail.com>
3208 M: "Yan, Zheng" <zyan@redhat.com>
3209 M: Sage Weil <sage@redhat.com>
3210 L: ceph-devel@vger.kernel.org
3212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3213 T: git git://github.com/ceph/ceph-client.git
3216 F: include/linux/ceph/
3217 F: include/linux/crush/
3219 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3220 M: "Yan, Zheng" <zyan@redhat.com>
3221 M: Sage Weil <sage@redhat.com>
3222 M: Ilya Dryomov <idryomov@gmail.com>
3223 L: ceph-devel@vger.kernel.org
3225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3226 T: git git://github.com/ceph/ceph-client.git
3228 F: Documentation/filesystems/ceph.txt
3231 CERTIFICATE HANDLING:
3232 M: David Howells <dhowells@redhat.com>
3233 M: David Woodhouse <dwmw2@infradead.org>
3234 L: keyrings@vger.kernel.org
3236 F: Documentation/module-signing.txt
3238 F: scripts/sign-file.c
3239 F: scripts/extract-cert.c
3241 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3242 L: linux-usb@vger.kernel.org
3244 F: Documentation/usb/WUSB-Design-overview.txt
3245 F: Documentation/usb/wusb-cbaf
3246 F: drivers/usb/host/hwa-hc.c
3247 F: drivers/usb/host/whci/
3248 F: drivers/usb/wusbcore/
3249 F: include/linux/usb/wusb*
3251 HT16K33 LED CONTROLLER DRIVER
3252 M: Robin van der Gracht <robin@protonic.nl>
3254 F: drivers/auxdisplay/ht16k33.c
3255 F: Documentation/devicetree/bindings/display/ht16k33.txt
3257 CFAG12864B LCD DRIVER
3258 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3259 W: http://miguelojeda.es/auxdisplay.htm
3260 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3262 F: drivers/auxdisplay/cfag12864b.c
3263 F: include/linux/cfag12864b.h
3265 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3266 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
3267 W: http://miguelojeda.es/auxdisplay.htm
3268 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3270 F: drivers/auxdisplay/cfag12864bfb.c
3271 F: include/linux/cfag12864b.h
3273 CFG80211 and NL80211
3274 M: Johannes Berg <johannes@sipsolutions.net>
3275 L: linux-wireless@vger.kernel.org
3276 W: http://wireless.kernel.org/
3277 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3280 F: include/uapi/linux/nl80211.h
3281 F: include/net/cfg80211.h
3283 X: net/wireless/wext*
3285 CHAR and MISC DRIVERS
3286 M: Arnd Bergmann <arnd@arndb.de>
3287 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3292 F: include/linux/miscdevice.h
3295 M: Andy Whitcroft <apw@canonical.com>
3296 M: Joe Perches <joe@perches.com>
3298 F: scripts/checkpatch.pl
3300 CHINESE DOCUMENTATION
3301 M: Harry Wei <harryxiyou@gmail.com>
3302 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3303 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
3305 F: Documentation/translations/zh_CN/
3307 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3308 M: Peter Chen <Peter.Chen@nxp.com>
3309 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3310 L: linux-usb@vger.kernel.org
3312 F: drivers/usb/chipidea/
3314 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3315 M: Hans de Goede <hdegoede@redhat.com>
3316 L: linux-input@vger.kernel.org
3318 F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3319 F: drivers/input/touchscreen/chipone_icn8318.c
3321 CHROME HARDWARE PLATFORM SUPPORT
3322 M: Olof Johansson <olof@lixom.net>
3324 T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3325 F: drivers/platform/chrome/
3327 CISCO VIC ETHERNET NIC DRIVER
3328 M: Christian Benvenuti <benve@cisco.com>
3329 M: Govindarajulu Varadarajan <_govind@gmx.com>
3330 M: Neel Patel <neepatel@cisco.com>
3332 F: drivers/net/ethernet/cisco/enic/
3334 CISCO VIC LOW LATENCY NIC DRIVER
3335 M: Christian Benvenuti <benve@cisco.com>
3336 M: Dave Goodell <dgoodell@cisco.com>
3338 F: drivers/infiniband/hw/usnic/
3340 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3341 M: Hartley Sweeten <hsweeten@visionengravers.com>
3342 L: netdev@vger.kernel.org
3344 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
3346 CIRRUS LOGIC AUDIO CODEC DRIVERS
3347 M: Brian Austin <brian.austin@cirrus.com>
3348 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
3349 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3351 F: sound/soc/codecs/cs*
3354 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3355 L: linux-kernel@vger.kernel.org
3358 F: include/linux/cleancache.h
3361 M: Russell King <linux@armlinux.org.uk>
3362 L: linux-clk@vger.kernel.org
3364 F: include/linux/clk.h
3366 CLOCKSOURCE, CLOCKEVENT DRIVERS
3367 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3368 M: Thomas Gleixner <tglx@linutronix.de>
3369 L: linux-kernel@vger.kernel.org
3370 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3372 F: drivers/clocksource
3374 CISCO FCOE HBA DRIVER
3375 M: Satish Kharat <satishkh@cisco.com>
3376 M: Sesidhar Baddela <sebaddel@cisco.com>
3377 M: Karan Tilak Kumar <kartilak@cisco.com>
3378 L: linux-scsi@vger.kernel.org
3380 F: drivers/scsi/fnic/
3382 CISCO SCSI HBA DRIVER
3383 M: Karan Tilak Kumar <kartilak@cisco.com>
3384 M: Sesidhar Baddela <sebaddel@cisco.com>
3385 L: linux-scsi@vger.kernel.org
3387 F: drivers/scsi/snic/
3390 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3391 M: Daniel Oliveira Nascimento <don@syst.com.br>
3392 L: platform-driver-x86@vger.kernel.org
3394 F: drivers/platform/x86/classmate-laptop.c
3397 M: Hans Verkuil <hans.verkuil@cisco.com>
3398 L: linux-media@vger.kernel.org
3399 T: git git://linuxtv.org/media_tree.git
3400 W: https://linuxtv.org
3402 F: drivers/media/pci/cobalt/
3404 COCCINELLE/Semantic Patches (SmPL)
3405 M: Julia Lawall <Julia.Lawall@lip6.fr>
3406 M: Gilles Muller <Gilles.Muller@lip6.fr>
3407 M: Nicolas Palix <nicolas.palix@imag.fr>
3408 M: Michal Marek <mmarek@suse.com>
3409 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
3410 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3411 W: http://coccinelle.lip6.fr/
3413 F: Documentation/dev-tools/coccinelle.rst
3414 F: scripts/coccinelle/
3415 F: scripts/coccicheck
3418 M: Jan Harkes <jaharkes@cs.cmu.edu>
3420 L: codalist@coda.cs.cmu.edu
3421 W: http://www.coda.cs.cmu.edu/
3423 F: Documentation/filesystems/coda.txt
3425 F: include/linux/coda*.h
3426 F: include/uapi/linux/coda*.h
3428 CODA V4L2 MEM2MEM DRIVER
3429 M: Philipp Zabel <p.zabel@pengutronix.de>
3430 L: linux-media@vger.kernel.org
3432 F: Documentation/devicetree/bindings/media/coda.txt
3433 F: drivers/media/platform/coda/
3435 COMMON CLK FRAMEWORK
3436 M: Michael Turquette <mturquette@baylibre.com>
3437 M: Stephen Boyd <sboyd@codeaurora.org>
3438 L: linux-clk@vger.kernel.org
3439 Q: http://patchwork.kernel.org/project/linux-clk/list/
3440 T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3442 F: Documentation/devicetree/bindings/clock/
3444 X: drivers/clk/clkdev.c
3445 F: include/linux/clk-pr*
3446 F: include/linux/clk/
3448 COMMON INTERNET FILE SYSTEM (CIFS)
3449 M: Steve French <sfrench@samba.org>
3450 L: linux-cifs@vger.kernel.org
3451 L: samba-technical@lists.samba.org (moderated for non-subscribers)
3452 W: http://linux-cifs.samba.org/
3453 T: git git://git.samba.org/sfrench/cifs-2.6.git
3455 F: Documentation/filesystems/cifs/
3458 COMPACTPCI HOTPLUG CORE
3459 M: Scott Murray <scott@spiteful.org>
3460 L: linux-pci@vger.kernel.org
3462 F: drivers/pci/hotplug/cpci_hotplug*
3464 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3465 M: Scott Murray <scott@spiteful.org>
3466 L: linux-pci@vger.kernel.org
3468 F: drivers/pci/hotplug/cpcihp_zt5550.*
3470 COMPACTPCI HOTPLUG GENERIC DRIVER
3471 M: Scott Murray <scott@spiteful.org>
3472 L: linux-pci@vger.kernel.org
3474 F: drivers/pci/hotplug/cpcihp_generic.c
3476 COMPAL LAPTOP SUPPORT
3477 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3478 L: platform-driver-x86@vger.kernel.org
3480 F: drivers/platform/x86/compal-laptop.c
3482 CONEXANT ACCESSRUNNER USB DRIVER
3483 L: accessrunner-general@lists.sourceforge.net
3484 W: http://accessrunner.sourceforge.net/
3486 F: drivers/usb/atm/cxacru.c
3489 M: Joel Becker <jlbec@evilplan.org>
3490 M: Christoph Hellwig <hch@lst.de>
3491 T: git git://git.infradead.org/users/hch/configfs.git
3494 F: include/linux/configfs.h
3497 M: Evgeniy Polyakov <zbr@ioremap.net>
3498 L: netdev@vger.kernel.org
3500 F: drivers/connector/
3502 CONTROL GROUP (CGROUP)
3503 M: Tejun Heo <tj@kernel.org>
3504 M: Li Zefan <lizefan@huawei.com>
3505 M: Johannes Weiner <hannes@cmpxchg.org>
3506 L: cgroups@vger.kernel.org
3507 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3509 F: Documentation/cgroup*
3510 F: include/linux/cgroup*
3513 CONTROL GROUP - CPUSET
3514 M: Li Zefan <lizefan@huawei.com>
3515 L: cgroups@vger.kernel.org
3516 W: http://www.bullopensource.org/cpuset/
3517 W: http://oss.sgi.com/projects/cpusets/
3518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3520 F: Documentation/cgroup-v1/cpusets.txt
3521 F: include/linux/cpuset.h
3524 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3525 M: Johannes Weiner <hannes@cmpxchg.org>
3526 M: Michal Hocko <mhocko@kernel.org>
3527 M: Vladimir Davydov <vdavydov.dev@gmail.com>
3528 L: cgroups@vger.kernel.org
3529 L: linux-mm@kvack.org
3534 CORETEMP HARDWARE MONITORING DRIVER
3535 M: Fenghua Yu <fenghua.yu@intel.com>
3536 L: linux-hwmon@vger.kernel.org
3538 F: Documentation/hwmon/coretemp
3539 F: drivers/hwmon/coretemp.c
3541 COSA/SRP SYNC SERIAL DRIVER
3542 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3543 W: http://www.fi.muni.cz/~kas/cosa/
3545 F: drivers/net/wan/cosa*
3547 CPMAC ETHERNET DRIVER
3548 M: Florian Fainelli <f.fainelli@gmail.com>
3549 L: netdev@vger.kernel.org
3551 F: drivers/net/ethernet/ti/cpmac.c
3553 CPU FREQUENCY DRIVERS
3554 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3555 M: Viresh Kumar <viresh.kumar@linaro.org>
3556 L: linux-pm@vger.kernel.org
3558 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3559 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3560 B: https://bugzilla.kernel.org
3561 F: Documentation/cpu-freq/
3562 F: Documentation/devicetree/bindings/cpufreq/
3564 F: include/linux/cpufreq.h
3565 F: tools/testing/selftests/cpufreq/
3567 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3568 M: Viresh Kumar <viresh.kumar@linaro.org>
3569 M: Sudeep Holla <sudeep.holla@arm.com>
3570 L: linux-pm@vger.kernel.org
3571 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3573 F: drivers/cpufreq/arm_big_little.h
3574 F: drivers/cpufreq/arm_big_little.c
3575 F: drivers/cpufreq/arm_big_little_dt.c
3577 CPUIDLE DRIVER - ARM BIG LITTLE
3578 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3579 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3580 L: linux-pm@vger.kernel.org
3581 L: linux-arm-kernel@lists.infradead.org
3582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3584 F: drivers/cpuidle/cpuidle-big_little.c
3586 CPUIDLE DRIVER - ARM EXYNOS
3587 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3588 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3589 M: Kukjin Kim <kgene@kernel.org>
3590 L: linux-pm@vger.kernel.org
3591 L: linux-samsung-soc@vger.kernel.org
3593 F: drivers/cpuidle/cpuidle-exynos.c
3594 F: arch/arm/mach-exynos/pm.c
3597 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3598 M: Daniel Lezcano <daniel.lezcano@linaro.org>
3599 L: linux-pm@vger.kernel.org
3601 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3602 B: https://bugzilla.kernel.org
3603 F: drivers/cpuidle/*
3604 F: include/linux/cpuidle.h
3607 M: "H. Peter Anvin" <hpa@zytor.com>
3609 F: arch/x86/kernel/cpuid.c
3610 F: arch/x86/kernel/msr.c
3612 CPU POWER MONITORING SUBSYSTEM
3613 M: Thomas Renninger <trenn@suse.com>
3614 L: linux-pm@vger.kernel.org
3616 F: tools/power/cpupower/
3619 W: http://sourceforge.net/projects/cramfs/
3620 S: Orphan / Obsolete
3621 F: Documentation/filesystems/cramfs.txt
3625 M: Mikael Starvik <starvik@axis.com>
3626 M: Jesper Nilsson <jesper.nilsson@axis.com>
3627 L: linux-cris-kernel@axis.com
3628 W: http://developer.axis.com
3629 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3632 F: drivers/tty/serial/crisv10.*
3635 M: Herbert Xu <herbert@gondor.apana.org.au>
3636 M: "David S. Miller" <davem@davemloft.net>
3637 L: linux-crypto@vger.kernel.org
3638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3641 F: Documentation/crypto/
3642 F: Documentation/devicetree/bindings/crypto/
3647 F: include/linux/crypto*
3649 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3650 M: Neil Horman <nhorman@tuxdriver.com>
3651 L: linux-crypto@vger.kernel.org
3653 F: crypto/ansi_cprng.c
3657 M: Hans Verkuil <hverkuil@xs4all.nl>
3658 L: linux-media@vger.kernel.org
3659 T: git git://linuxtv.org/media_tree.git
3660 W: http://linuxtv.org
3662 F: drivers/media/i2c/cs3308.c
3663 F: drivers/media/i2c/cs3308.h
3665 CS5535 Audio ALSA driver
3666 M: Jaya Kumar <jayakumar.alsa@gmail.com>
3668 F: sound/pci/cs5535audio/
3671 M: Solomon Peachy <pizza@shaftnet.org>
3673 F: drivers/net/wireless/st/cw1200/
3675 CX18 VIDEO4LINUX DRIVER
3676 M: Andy Walls <awalls@md.metrocast.net>
3677 L: ivtv-devel@ivtvdriver.org (subscribers-only)
3678 L: linux-media@vger.kernel.org
3679 T: git git://linuxtv.org/media_tree.git
3680 W: https://linuxtv.org
3681 W: http://www.ivtvdriver.org/index.php/Cx18
3683 F: Documentation/media/v4l-drivers/cx18*
3684 F: drivers/media/pci/cx18/
3685 F: include/uapi/linux/ivtv*
3687 CX2341X MPEG ENCODER HELPER MODULE
3688 M: Hans Verkuil <hverkuil@xs4all.nl>
3689 L: linux-media@vger.kernel.org
3690 T: git git://linuxtv.org/media_tree.git
3691 W: https://linuxtv.org
3693 F: drivers/media/common/cx2341x*
3694 F: include/media/cx2341x*
3696 CX24120 MEDIA DRIVER
3697 M: Jemma Denson <jdenson@gmail.com>
3698 M: Patrick Boettcher <patrick.boettcher@posteo.de>
3699 L: linux-media@vger.kernel.org
3700 W: https://linuxtv.org
3701 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3703 F: drivers/media/dvb-frontends/cx24120*
3705 CX88 VIDEO4LINUX DRIVER
3706 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
3707 M: Mauro Carvalho Chehab <mchehab@kernel.org>
3708 L: linux-media@vger.kernel.org
3709 W: https://linuxtv.org
3710 T: git git://linuxtv.org/media_tree.git
3712 F: Documentation/media/v4l-drivers/cx88*
3713 F: drivers/media/pci/cx88/
3715 CXD2820R MEDIA DRIVER
3716 M: Antti Palosaari <crope@iki.fi>
3717 L: linux-media@vger.kernel.org
3718 W: https://linuxtv.org
3719 W: http://palosaari.fi/linux/
3720 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3721 T: git git://linuxtv.org/anttip/media_tree.git
3723 F: drivers/media/dvb-frontends/cxd2820r*
3725 CXGB3 ETHERNET DRIVER (CXGB3)
3726 M: Santosh Raspatur <santosh@chelsio.com>
3727 L: netdev@vger.kernel.org
3728 W: http://www.chelsio.com
3730 F: drivers/net/ethernet/chelsio/cxgb3/
3732 CXGB3 ISCSI DRIVER (CXGB3I)
3733 M: Karen Xie <kxie@chelsio.com>
3734 L: linux-scsi@vger.kernel.org
3735 W: http://www.chelsio.com
3737 F: drivers/scsi/cxgbi/cxgb3i
3739 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3740 M: Steve Wise <swise@chelsio.com>
3741 L: linux-rdma@vger.kernel.org
3742 W: http://www.openfabrics.org
3744 F: drivers/infiniband/hw/cxgb3/
3745 F: include/uapi/rdma/cxgb3-abi.h
3747 CXGB4 ETHERNET DRIVER (CXGB4)
3748 M: Ganesh Goudar <ganeshgr@chelsio.com>
3749 L: netdev@vger.kernel.org
3750 W: http://www.chelsio.com
3752 F: drivers/net/ethernet/chelsio/cxgb4/
3754 CXGB4 ISCSI DRIVER (CXGB4I)
3755 M: Karen Xie <kxie@chelsio.com>
3756 L: linux-scsi@vger.kernel.org
3757 W: http://www.chelsio.com
3759 F: drivers/scsi/cxgbi/cxgb4i
3761 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3762 M: Steve Wise <swise@chelsio.com>
3763 L: linux-rdma@vger.kernel.org
3764 W: http://www.openfabrics.org
3766 F: drivers/infiniband/hw/cxgb4/
3767 F: include/uapi/rdma/cxgb4-abi.h
3769 CXGB4 CRYPTO DRIVER (chcr)
3770 M: Harsh Jain <harsh@chelsio.com>
3771 L: linux-crypto@vger.kernel.org
3772 W: http://www.chelsio.com
3774 F: drivers/crypto/chelsio
3776 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3777 M: Casey Leedom <leedom@chelsio.com>
3778 L: netdev@vger.kernel.org
3779 W: http://www.chelsio.com
3781 F: drivers/net/ethernet/chelsio/cxgb4vf/
3783 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3784 M: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
3785 M: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
3786 L: linuxppc-dev@lists.ozlabs.org
3788 F: arch/powerpc/platforms/powernv/pci-cxl.c
3789 F: drivers/misc/cxl/
3790 F: include/misc/cxl*
3791 F: include/uapi/misc/cxl.h
3792 F: Documentation/powerpc/cxl.txt
3793 F: Documentation/ABI/testing/sysfs-class-cxl
3795 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3796 M: Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3797 M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3798 M: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3799 L: linux-scsi@vger.kernel.org
3801 F: drivers/scsi/cxlflash/
3802 F: include/uapi/scsi/cxlflash_ioctls.h
3803 F: Documentation/powerpc/cxlflash.txt
3805 STMMAC ETHERNET DRIVER
3806 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
3807 M: Alexandre Torgue <alexandre.torgue@st.com>
3808 L: netdev@vger.kernel.org
3809 W: http://www.stlinux.com
3811 F: drivers/net/ethernet/stmicro/stmmac/
3814 M: Russell King <linux@armlinux.org.uk>
3815 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3816 W: http://www.armlinux.org.uk/
3818 F: drivers/video/fbdev/cyber2000fb.*
3820 CYCLADES ASYNC MUX DRIVER
3821 W: http://www.cyclades.com/
3823 F: drivers/tty/cyclades.c
3824 F: include/linux/cyclades.h
3825 F: include/uapi/linux/cyclades.h
3827 CYCLADES PC300 DRIVER
3828 W: http://www.cyclades.com/
3830 F: drivers/net/wan/pc300*
3832 CYPRESS_FIRMWARE MEDIA DRIVER
3833 M: Antti Palosaari <crope@iki.fi>
3834 L: linux-media@vger.kernel.org
3835 W: https://linuxtv.org
3836 W: http://palosaari.fi/linux/
3837 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3838 T: git git://linuxtv.org/anttip/media_tree.git
3840 F: drivers/media/common/cypress_firmware*
3842 CYTTSP TOUCHSCREEN DRIVER
3843 M: Ferruh Yigit <fery@cypress.com>
3844 L: linux-input@vger.kernel.org
3846 F: drivers/input/touchscreen/cyttsp*
3847 F: include/linux/input/cyttsp.h
3849 D-LINK DIR-685 TOUCHKEYS DRIVER
3850 M: Linus Walleij <linus.walleij@linaro.org>
3851 L: linux-input@vger.kernel.org
3853 F: drivers/input/dlink-dir685-touchkeys.c
3855 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3856 M: Joshua Kinard <kumba@gentoo.org>
3858 F: drivers/rtc/rtc-ds1685.c
3859 F: include/linux/rtc/ds1685.h
3861 DAMA SLAVE for AX.25
3862 M: Joerg Reuter <jreuter@yaina.de>
3863 W: http://yaina.de/jreuter/
3864 W: http://www.qsl.net/dl1bke/
3865 L: linux-hams@vger.kernel.org
3867 F: net/ax25/af_ax25.c
3868 F: net/ax25/ax25_dev.c
3869 F: net/ax25/ax25_ds_*
3870 F: net/ax25/ax25_in.c
3871 F: net/ax25/ax25_out.c
3872 F: net/ax25/ax25_timer.c
3873 F: net/ax25/sysctl_net_ax25.c
3875 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3876 L: netdev@vger.kernel.org
3878 F: Documentation/networking/dmfe.txt
3879 F: drivers/net/ethernet/dec/tulip/dmfe.c
3881 DC390/AM53C974 SCSI driver
3882 M: Hannes Reinecke <hare@suse.com>
3883 L: linux-scsi@vger.kernel.org
3885 F: drivers/scsi/am53c974.c
3888 M: Oliver Neukum <oliver@neukum.org>
3889 M: Ali Akcaagac <aliakc@web.de>
3890 M: Jamie Lenehan <lenehan@twibble.org>
3891 L: dc395x@twibble.org
3892 W: http://twibble.org/dist/dc395x/
3893 W: http://lists.twibble.org/mailman/listinfo/dc395x/
3895 F: Documentation/scsi/dc395x.txt
3896 F: drivers/scsi/dc395x.*
3899 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
3900 L: dccp@vger.kernel.org
3901 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3903 F: include/linux/dccp.h
3904 F: include/uapi/linux/dccp.h
3905 F: include/linux/tfrc.h
3908 DECnet NETWORK LAYER
3909 W: http://linux-decnet.sourceforge.net
3910 L: linux-decnet-user@lists.sourceforge.net
3912 F: Documentation/networking/decnet.txt
3915 DECSTATION PLATFORM SUPPORT
3916 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3917 L: linux-mips@linux-mips.org
3918 W: http://www.linux-mips.org/wiki/DECstation
3921 F: arch/mips/include/asm/dec/
3922 F: arch/mips/include/asm/mach-dec/
3924 DEFXX FDDI NETWORK DRIVER
3925 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3927 F: drivers/net/fddi/defxx.*
3930 M: Matthew Garrett <mjg59@srcf.ucam.org>
3931 M: Pali Rohár <pali.rohar@gmail.com>
3932 L: platform-driver-x86@vger.kernel.org
3934 F: drivers/platform/x86/dell-laptop.c
3936 DELL LAPTOP RBTN DRIVER
3937 M: Pali Rohár <pali.rohar@gmail.com>
3939 F: drivers/platform/x86/dell-rbtn.*
3941 DELL LAPTOP FREEFALL DRIVER
3942 M: Pali Rohár <pali.rohar@gmail.com>
3944 F: drivers/platform/x86/dell-smo8800.c
3946 DELL LAPTOP SMM DRIVER
3947 M: Pali Rohár <pali.rohar@gmail.com>
3949 F: drivers/hwmon/dell-smm-hwmon.c
3950 F: include/uapi/linux/i8k.h
3952 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3953 M: Doug Warzecha <Douglas_Warzecha@dell.com>
3955 F: Documentation/dcdbas.txt
3956 F: drivers/firmware/dcdbas.*
3958 DELL WMI EXTRAS DRIVER
3959 M: Matthew Garrett <mjg59@srcf.ucam.org>
3960 M: Pali Rohár <pali.rohar@gmail.com>
3962 F: drivers/platform/x86/dell-wmi.c
3964 DESIGNWARE USB2 DRD IP DRIVER
3965 M: John Youn <johnyoun@synopsys.com>
3966 L: linux-usb@vger.kernel.org
3967 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3969 F: drivers/usb/dwc2/
3971 DESIGNWARE USB3 DRD IP DRIVER
3972 M: Felipe Balbi <balbi@kernel.org>
3973 L: linux-usb@vger.kernel.org
3974 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3976 F: drivers/usb/dwc3/
3978 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
3979 M: Andreas Klinger <ak@it-klinger.de>
3980 L: linux-iio@vger.kernel.org
3982 F: drivers/iio/proximity/srf*.c
3984 DEVICE COREDUMP (DEV_COREDUMP)
3985 M: Johannes Berg <johannes@sipsolutions.net>
3986 L: linux-kernel@vger.kernel.org
3988 F: drivers/base/devcoredump.c
3989 F: include/linux/devcoredump.h
3991 DEVICE FREQUENCY (DEVFREQ)
3992 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3993 M: Kyungmin Park <kyungmin.park@samsung.com>
3994 R: Chanwoo Choi <cw00.choi@samsung.com>
3995 L: linux-pm@vger.kernel.org
3996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3999 F: include/linux/devfreq.h
4000 F: Documentation/devicetree/bindings/devfreq/
4002 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
4003 M: Chanwoo Choi <cw00.choi@samsung.com>
4004 L: linux-pm@vger.kernel.org
4005 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4007 F: drivers/devfreq/event/
4008 F: drivers/devfreq/devfreq-event.c
4009 F: include/linux/devfreq-event.h
4010 F: Documentation/devicetree/bindings/devfreq/event/
4012 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4013 M: Chanwoo Choi <cw00.choi@samsung.com>
4014 L: linux-pm@vger.kernel.org
4015 L: linux-samsung-soc@vger.kernel.org
4016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
4018 F: drivers/devfreq/exynos-bus.c
4019 F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4021 DEVICE NUMBER REGISTRY
4022 M: Torben Mathiasen <device@lanana.org>
4023 W: http://lanana.org/docs/device-list/index.html
4027 M: Alasdair Kergon <agk@redhat.com>
4028 M: Mike Snitzer <snitzer@redhat.com>
4029 M: dm-devel@redhat.com
4030 L: dm-devel@redhat.com
4031 W: http://sources.redhat.com/dm
4032 Q: http://patchwork.kernel.org/project/dm-devel/list/
4033 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
4034 T: quilt http://people.redhat.com/agk/patches/linux/editing/
4036 F: Documentation/device-mapper/
4038 F: drivers/md/persistent-data/
4039 F: include/linux/device-mapper.h
4040 F: include/linux/dm-*.h
4041 F: include/uapi/linux/dm-*.h
4044 M: Jiri Pirko <jiri@mellanox.com>
4045 L: netdev@vger.kernel.org
4047 F: net/core/devlink.c
4048 F: include/net/devlink.h
4049 F: include/uapi/linux/devlink.h
4051 DIALOG SEMICONDUCTOR DRIVERS
4052 M: Support Opensource <support.opensource@diasemi.com>
4053 W: http://www.dialog-semiconductor.com/products
4055 F: Documentation/hwmon/da90??
4056 F: Documentation/devicetree/bindings/mfd/da90*.txt
4057 F: Documentation/devicetree/bindings/input/da90??-onkey.txt
4058 F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt
4059 F: Documentation/devicetree/bindings/regulator/da92*.txt
4060 F: Documentation/devicetree/bindings/watchdog/da92??-wdt.txt
4061 F: Documentation/devicetree/bindings/sound/da[79]*.txt
4062 F: drivers/gpio/gpio-da90??.c
4063 F: drivers/hwmon/da90??-hwmon.c
4064 F: drivers/iio/adc/da91??-*.c
4065 F: drivers/input/misc/da90??_onkey.c
4066 F: drivers/input/touchscreen/da9052_tsi.c
4067 F: drivers/leds/leds-da90??.c
4068 F: drivers/mfd/da903x.c
4069 F: drivers/mfd/da90??-*.c
4070 F: drivers/mfd/da91??-*.c
4071 F: drivers/power/supply/da9052-battery.c
4072 F: drivers/power/supply/da91??-*.c
4073 F: drivers/regulator/da903x.c
4074 F: drivers/regulator/da9???-regulator.[ch]
4075 F: drivers/thermal/da90??-thermal.c
4076 F: drivers/rtc/rtc-da90??.c
4077 F: drivers/video/backlight/da90??_bl.c
4078 F: drivers/watchdog/da90??_wdt.c
4079 F: include/linux/mfd/da903x.h
4080 F: include/linux/mfd/da9052/
4081 F: include/linux/mfd/da9055/
4082 F: include/linux/mfd/da9062/
4083 F: include/linux/mfd/da9063/
4084 F: include/linux/mfd/da9150/
4085 F: include/linux/regulator/da9211.h
4086 F: include/sound/da[79]*.h
4087 F: sound/soc/codecs/da[79]*.[ch]
4089 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
4090 M: William Breathitt Gray <vilhelm.gray@gmail.com>
4091 L: linux-gpio@vger.kernel.org
4093 F: drivers/gpio/gpio-gpio-mm.c
4095 DIGI NEO AND CLASSIC PCI PRODUCTS
4096 M: Lidza Louina <lidza.louina@gmail.com>
4097 M: Mark Hounschell <markh@compro.net>
4098 L: driverdev-devel@linuxdriverproject.org
4100 F: drivers/staging/dgnc/
4102 DIOLAN U2C-12 I2C DRIVER
4103 M: Guenter Roeck <linux@roeck-us.net>
4104 L: linux-i2c@vger.kernel.org
4106 F: drivers/i2c/busses/i2c-diolan-u2c.c
4109 M: Matthew Wilcox <mawilcox@microsoft.com>
4110 M: Ross Zwisler <ross.zwisler@linux.intel.com>
4111 L: linux-fsdevel@vger.kernel.org
4114 F: include/linux/dax.h
4115 F: include/trace/events/fs_dax.h
4117 DIRECTORY NOTIFICATION (DNOTIFY)
4118 M: Eric Paris <eparis@parisplace.org>
4120 F: Documentation/filesystems/dnotify.txt
4121 F: fs/notify/dnotify/
4122 F: include/linux/dnotify.h
4124 DISK GEOMETRY AND PARTITION HANDLING
4125 M: Andries Brouwer <aeb@cwi.nl>
4126 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4127 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4128 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4132 M: Jan Kara <jack@suse.com>
4134 F: Documentation/filesystems/quota.txt
4136 F: include/linux/quota*.h
4137 F: include/uapi/linux/quota*.h
4139 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4140 M: Bernie Thompson <bernie@plugable.com>
4141 L: linux-fbdev@vger.kernel.org
4143 W: http://plugable.com/category/projects/udlfb/
4144 F: drivers/video/fbdev/udlfb.c
4145 F: include/video/udlfb.h
4146 F: Documentation/fb/udlfb.txt
4148 DISTRIBUTED LOCK MANAGER (DLM)
4149 M: Christine Caulfield <ccaulfie@redhat.com>
4150 M: David Teigland <teigland@redhat.com>
4151 L: cluster-devel@redhat.com
4152 W: http://sources.redhat.com/cluster/
4153 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4157 DMA BUFFER SHARING FRAMEWORK
4158 M: Sumit Semwal <sumit.semwal@linaro.org>
4160 L: linux-media@vger.kernel.org
4161 L: dri-devel@lists.freedesktop.org
4162 L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
4164 F: include/linux/dma-buf*
4165 F: include/linux/reservation.h
4166 F: include/linux/*fence.h
4167 F: Documentation/driver-api/dma-buf.rst
4168 T: git git://anongit.freedesktop.org/drm/drm-misc
4171 M: Sumit Semwal <sumit.semwal@linaro.org>
4172 R: Gustavo Padovan <gustavo@padovan.org>
4174 L: linux-media@vger.kernel.org
4175 L: dri-devel@lists.freedesktop.org
4176 F: drivers/dma-buf/sync_*
4177 F: drivers/dma-buf/dma-fence*
4178 F: drivers/dma-buf/sw_sync.c
4179 F: include/linux/sync_file.h
4180 F: include/uapi/linux/sync_file.h
4181 F: Documentation/sync_file.txt
4182 T: git git://anongit.freedesktop.org/drm/drm-misc
4184 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4185 M: Vinod Koul <vinod.koul@intel.com>
4186 L: dmaengine@vger.kernel.org
4187 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4190 F: include/linux/dmaengine.h
4191 F: Documentation/devicetree/bindings/dma/
4192 F: Documentation/dmaengine/
4193 T: git git://git.infradead.org/users/vkoul/slave-dma.git
4195 DME1737 HARDWARE MONITOR DRIVER
4196 M: Juerg Haefliger <juergh@gmail.com>
4197 L: linux-hwmon@vger.kernel.org
4199 F: Documentation/hwmon/dme1737
4200 F: drivers/hwmon/dme1737.c
4203 M: Jean Delvare <jdelvare@suse.com>
4205 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4206 F: Documentation/ABI/testing/sysfs-firmware-dmi-tables
4207 F: drivers/firmware/dmi-id.c
4208 F: drivers/firmware/dmi_scan.c
4209 F: include/linux/dmi.h
4212 M: Jonathan Corbet <corbet@lwn.net>
4213 L: linux-doc@vger.kernel.org
4216 F: scripts/kernel-doc
4217 X: Documentation/ABI/
4218 X: Documentation/devicetree/
4219 X: Documentation/acpi
4220 X: Documentation/power
4221 X: Documentation/spi
4222 X: Documentation/media
4223 T: git git://git.lwn.net/linux.git docs-next
4226 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
4227 L: blinux-list@redhat.com
4229 F: drivers/char/dtlk.c
4230 F: include/linux/dtlk.h
4232 DPAA2 DATAPATH I/O (DPIO) DRIVER
4233 M: Roy Pledge <Roy.Pledge@nxp.com>
4234 L: linux-kernel@vger.kernel.org
4236 F: drivers/staging/fsl-mc/bus/dpio
4238 DPAA2 ETHERNET DRIVER
4239 M: Ioana Radulescu <ruxandra.radulescu@nxp.com>
4240 L: linux-kernel@vger.kernel.org
4242 F: drivers/staging/fsl-dpaa2/ethernet
4244 DPT_I2O SCSI RAID DRIVER
4245 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4246 L: linux-scsi@vger.kernel.org
4247 W: http://www.adaptec.com/
4249 F: drivers/scsi/dpt*
4250 F: drivers/scsi/dpt/
4253 M: Philipp Reisner <philipp.reisner@linbit.com>
4254 M: Lars Ellenberg <lars.ellenberg@linbit.com>
4255 L: drbd-dev@lists.linbit.com
4256 W: http://www.drbd.org
4257 T: git git://git.linbit.com/linux-drbd.git
4258 T: git git://git.linbit.com/drbd-8.4.git
4260 F: drivers/block/drbd/
4262 F: Documentation/blockdev/drbd/
4264 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4265 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4268 F: Documentation/kobject.txt
4272 F: include/linux/debugfs.h
4273 F: include/linux/kobj*
4277 M: David Airlie <airlied@linux.ie>
4278 L: dri-devel@lists.freedesktop.org
4279 T: git git://people.freedesktop.org/~airlied/linux
4280 B: https://bugs.freedesktop.org/
4281 C: irc://chat.freenode.net/dri-devel
4285 F: Documentation/devicetree/bindings/display/
4286 F: Documentation/devicetree/bindings/gpu/
4287 F: Documentation/devicetree/bindings/video/
4288 F: Documentation/gpu/
4290 F: include/uapi/drm/
4291 F: include/linux/vga*
4293 DRM DRIVERS AND MISC GPU PATCHES
4294 M: Daniel Vetter <daniel.vetter@intel.com>
4295 M: Jani Nikula <jani.nikula@linux.intel.com>
4296 M: Sean Paul <seanpaul@chromium.org>
4297 W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4299 T: git git://anongit.freedesktop.org/drm/drm-misc
4300 F: Documentation/gpu/
4302 F: drivers/gpu/drm/*
4304 F: include/uapi/drm/drm*
4305 F: include/linux/vga*
4307 DRM DRIVER FOR ARM PL111 CLCD
4308 M: Eric Anholt <eric@anholt.net>
4309 T: git git://anongit.freedesktop.org/drm/drm-misc
4311 F: drivers/gpu/drm/pl111/
4313 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4314 M: Dave Airlie <airlied@redhat.com>
4316 F: drivers/gpu/drm/ast/
4318 DRM DRIVERS FOR BRIDGE CHIPS
4319 M: Archit Taneja <architt@codeaurora.org>
4320 M: Andrzej Hajda <a.hajda@samsung.com>
4321 R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
4323 T: git git://anongit.freedesktop.org/drm/drm-misc
4324 F: drivers/gpu/drm/bridge/
4326 DRM DRIVER FOR BOCHS VIRTUAL GPU
4327 M: Gerd Hoffmann <kraxel@redhat.com>
4328 L: virtualization@lists.linux-foundation.org
4329 T: git git://anongit.freedesktop.org/drm/drm-misc
4331 F: drivers/gpu/drm/bochs/
4333 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4334 M: Dave Airlie <airlied@redhat.com>
4335 M: Gerd Hoffmann <kraxel@redhat.com>
4336 L: virtualization@lists.linux-foundation.org
4337 T: git git://anongit.freedesktop.org/drm/drm-misc
4339 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4340 F: drivers/gpu/drm/cirrus/
4342 RADEON and AMDGPU DRM DRIVERS
4343 M: Alex Deucher <alexander.deucher@amd.com>
4344 M: Christian König <christian.koenig@amd.com>
4345 L: amd-gfx@lists.freedesktop.org
4346 T: git git://people.freedesktop.org/~agd5f/linux
4348 F: drivers/gpu/drm/radeon/
4349 F: include/uapi/drm/radeon_drm.h
4350 F: drivers/gpu/drm/amd/
4351 F: include/uapi/drm/amdgpu_drm.h
4354 M: Thierry Reding <thierry.reding@gmail.com>
4355 L: dri-devel@lists.freedesktop.org
4356 T: git git://anongit.freedesktop.org/tegra/linux.git
4358 F: drivers/gpu/drm/drm_panel.c
4359 F: drivers/gpu/drm/panel/
4360 F: include/drm/drm_panel.h
4361 F: Documentation/devicetree/bindings/display/panel/
4363 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4364 M: Daniel Vetter <daniel.vetter@intel.com>
4365 M: Jani Nikula <jani.nikula@linux.intel.com>
4366 L: intel-gfx@lists.freedesktop.org
4367 W: https://01.org/linuxgraphics/
4368 B: https://01.org/linuxgraphics/documentation/how-report-bugs
4369 C: irc://chat.freenode.net/intel-gfx
4370 Q: http://patchwork.freedesktop.org/project/intel-gfx/
4371 T: git git://anongit.freedesktop.org/drm-intel
4373 F: drivers/gpu/drm/i915/
4374 F: include/drm/i915*
4375 F: include/uapi/drm/i915_drm.h
4376 F: Documentation/gpu/i915.rst
4378 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
4379 M: Zhenyu Wang <zhenyuw@linux.intel.com>
4380 M: Zhi Wang <zhi.a.wang@intel.com>
4381 L: intel-gvt-dev@lists.freedesktop.org
4382 L: intel-gfx@lists.freedesktop.org
4383 W: https://01.org/igvt-g
4384 T: git https://github.com/01org/gvt-linux.git
4386 F: drivers/gpu/drm/i915/gvt/
4388 DRM DRIVERS FOR ATMEL HLCDC
4389 M: Boris Brezillon <boris.brezillon@free-electrons.com>
4390 L: dri-devel@lists.freedesktop.org
4392 F: drivers/gpu/drm/atmel-hlcdc/
4393 F: Documentation/devicetree/bindings/drm/atmel/
4394 T: git git://anongit.freedesktop.org/drm/drm-misc
4396 DRM DRIVERS FOR ALLWINNER A10
4397 M: Maxime Ripard <maxime.ripard@free-electrons.com>
4398 L: dri-devel@lists.freedesktop.org
4400 F: drivers/gpu/drm/sun4i/
4401 F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4402 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4404 DRM DRIVERS FOR AMLOGIC SOCS
4405 M: Neil Armstrong <narmstrong@baylibre.com>
4406 L: dri-devel@lists.freedesktop.org
4407 L: linux-amlogic@lists.infradead.org
4408 W: http://linux-meson.com/
4410 F: drivers/gpu/drm/meson/
4411 F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4412 F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4413 F: Documentation/gpu/meson.rst
4414 T: git git://anongit.freedesktop.org/drm/drm-misc
4416 DRM DRIVERS FOR EXYNOS
4417 M: Inki Dae <inki.dae@samsung.com>
4418 M: Joonyoung Shim <jy0922.shim@samsung.com>
4419 M: Seung-Woo Kim <sw0312.kim@samsung.com>
4420 M: Kyungmin Park <kyungmin.park@samsung.com>
4421 L: dri-devel@lists.freedesktop.org
4422 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4424 F: drivers/gpu/drm/exynos/
4425 F: include/uapi/drm/exynos_drm.h
4426 F: Documentation/devicetree/bindings/display/exynos/
4428 DRM DRIVERS FOR FREESCALE DCU
4429 M: Stefan Agner <stefan@agner.ch>
4430 M: Alison Wang <alison.wang@freescale.com>
4431 L: dri-devel@lists.freedesktop.org
4433 F: drivers/gpu/drm/fsl-dcu/
4434 F: Documentation/devicetree/bindings/display/fsl,dcu.txt
4435 F: Documentation/devicetree/bindings/display/fsl,tcon.txt
4436 F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4438 DRM DRIVERS FOR FREESCALE IMX
4439 M: Philipp Zabel <p.zabel@pengutronix.de>
4440 L: dri-devel@lists.freedesktop.org
4442 F: drivers/gpu/drm/imx/
4443 F: drivers/gpu/ipu-v3/
4444 F: Documentation/devicetree/bindings/display/imx/
4446 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4447 M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4448 L: dri-devel@lists.freedesktop.org
4449 T: git git://github.com/patjak/drm-gma500
4451 F: drivers/gpu/drm/gma500/
4453 DRM DRIVERS FOR HISILICON
4454 M: Xinliang Liu <z.liuxinliang@hisilicon.com>
4455 M: Rongrong Zou <zourongrong@gmail.com>
4456 R: Xinwei Kong <kong.kongxinwei@hisilicon.com>
4457 R: Chen Feng <puck.chen@hisilicon.com>
4458 L: dri-devel@lists.freedesktop.org
4459 T: git git://github.com/xin3liang/linux.git
4461 F: drivers/gpu/drm/hisilicon/
4462 F: Documentation/devicetree/bindings/display/hisilicon/
4464 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4465 S: Orphan / Obsolete
4466 F: drivers/gpu/drm/i810/
4467 F: include/uapi/drm/i810_drm.h
4469 DRM DRIVERS FOR MEDIATEK
4470 M: CK Hu <ck.hu@mediatek.com>
4471 M: Philipp Zabel <p.zabel@pengutronix.de>
4472 L: dri-devel@lists.freedesktop.org
4474 F: drivers/gpu/drm/mediatek/
4475 F: Documentation/devicetree/bindings/display/mediatek/
4477 DRM DRIVER FOR MI0283QT
4478 M: Noralf Trønnes <noralf@tronnes.org>
4480 F: drivers/gpu/drm/tinydrm/mi0283qt.c
4481 F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4483 DRM DRIVER FOR MSM ADRENO GPU
4484 M: Rob Clark <robdclark@gmail.com>
4485 L: linux-arm-msm@vger.kernel.org
4486 L: dri-devel@lists.freedesktop.org
4487 L: freedreno@lists.freedesktop.org
4488 T: git git://people.freedesktop.org/~robclark/linux
4490 F: drivers/gpu/drm/msm/
4491 F: include/uapi/drm/msm_drm.h
4492 F: Documentation/devicetree/bindings/display/msm/
4494 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4495 M: Ben Skeggs <bskeggs@redhat.com>
4496 L: dri-devel@lists.freedesktop.org
4497 L: nouveau@lists.freedesktop.org
4498 T: git git://github.com/skeggsb/linux
4500 F: drivers/gpu/drm/nouveau/
4501 F: include/uapi/drm/nouveau_drm.h
4503 DRM DRIVERS FOR NVIDIA TEGRA
4504 M: Thierry Reding <thierry.reding@gmail.com>
4505 L: dri-devel@lists.freedesktop.org
4506 L: linux-tegra@vger.kernel.org
4507 T: git git://anongit.freedesktop.org/tegra/linux.git
4509 F: drivers/gpu/drm/tegra/
4510 F: drivers/gpu/host1x/
4511 F: include/linux/host1x.h
4512 F: include/uapi/drm/tegra_drm.h
4513 F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4515 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4516 S: Orphan / Obsolete
4517 F: drivers/gpu/drm/mga/
4518 F: include/uapi/drm/mga_drm.h
4520 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4521 M: Dave Airlie <airlied@redhat.com>
4523 F: drivers/gpu/drm/mgag200/
4525 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4526 S: Orphan / Obsolete
4527 F: drivers/gpu/drm/r128/
4528 F: include/uapi/drm/r128_drm.h
4530 DRM DRIVERS FOR RENESAS
4531 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4532 L: dri-devel@lists.freedesktop.org
4533 L: linux-renesas-soc@vger.kernel.org
4534 T: git git://linuxtv.org/pinchartl/fbdev
4536 F: drivers/gpu/drm/rcar-du/
4537 F: drivers/gpu/drm/shmobile/
4538 F: include/linux/platform_data/shmob_drm.h
4539 F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4540 F: Documentation/devicetree/bindings/display/renesas,du.txt
4542 DRM DRIVER FOR QXL VIRTUAL GPU
4543 M: Dave Airlie <airlied@redhat.com>
4544 M: Gerd Hoffmann <kraxel@redhat.com>
4545 L: virtualization@lists.linux-foundation.org
4546 T: git git://anongit.freedesktop.org/drm/drm-misc
4548 F: drivers/gpu/drm/qxl/
4549 F: include/uapi/drm/qxl_drm.h
4551 DRM DRIVERS FOR ROCKCHIP
4552 M: Mark Yao <mark.yao@rock-chips.com>
4553 L: dri-devel@lists.freedesktop.org
4555 F: drivers/gpu/drm/rockchip/
4556 F: Documentation/devicetree/bindings/display/rockchip/
4557 T: git git://anongit.freedesktop.org/drm/drm-misc
4559 DRM DRIVER FOR SAVAGE VIDEO CARDS
4560 S: Orphan / Obsolete
4561 F: drivers/gpu/drm/savage/
4562 F: include/uapi/drm/savage_drm.h
4564 DRM DRIVER FOR SIS VIDEO CARDS
4565 S: Orphan / Obsolete
4566 F: drivers/gpu/drm/sis/
4567 F: include/uapi/drm/sis_drm.h
4570 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4571 M: Vincent Abriou <vincent.abriou@st.com>
4572 L: dri-devel@lists.freedesktop.org
4573 T: git git://anongit.freedesktop.org/drm/drm-misc
4575 F: drivers/gpu/drm/sti
4576 F: Documentation/devicetree/bindings/display/st,stih4xx.txt
4579 M: Yannick Fertre <yannick.fertre@st.com>
4580 M: Philippe Cornu <philippe.cornu@st.com>
4581 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
4582 M: Vincent Abriou <vincent.abriou@st.com>
4583 L: dri-devel@lists.freedesktop.org
4584 T: git git://anongit.freedesktop.org/drm/drm-misc
4586 F: drivers/gpu/drm/stm
4587 F: Documentation/devicetree/bindings/display/st,stm32-ltdc.txt
4589 DRM DRIVER FOR TDFX VIDEO CARDS
4590 S: Orphan / Obsolete
4591 F: drivers/gpu/drm/tdfx/
4593 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4594 M: Dave Airlie <airlied@redhat.com>
4596 F: drivers/gpu/drm/udl/
4598 DRM DRIVERS FOR VIVANTE GPU IP
4599 M: Lucas Stach <l.stach@pengutronix.de>
4600 R: Russell King <linux+etnaviv@armlinux.org.uk>
4601 R: Christian Gmeiner <christian.gmeiner@gmail.com>
4602 L: etnaviv@lists.freedesktop.org
4603 L: dri-devel@lists.freedesktop.org
4605 F: drivers/gpu/drm/etnaviv/
4606 F: include/uapi/drm/etnaviv_drm.h
4607 F: Documentation/devicetree/bindings/display/etnaviv/
4609 DRM DRIVER FOR VMWARE VIRTUAL GPU
4610 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4611 M: Sinclair Yeh <syeh@vmware.com>
4612 M: Thomas Hellstrom <thellstrom@vmware.com>
4613 L: dri-devel@lists.freedesktop.org
4614 T: git git://people.freedesktop.org/~syeh/repos_linux
4615 T: git git://people.freedesktop.org/~thomash/linux
4617 F: drivers/gpu/drm/vmwgfx/
4618 F: include/uapi/drm/vmwgfx_drm.h
4621 M: Eric Anholt <eric@anholt.net>
4622 T: git git://github.com/anholt/linux
4624 F: drivers/gpu/drm/vc4/
4625 F: include/uapi/drm/vc4_drm.h
4626 F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4627 T: git git://anongit.freedesktop.org/drm/drm-misc
4629 DRM DRIVERS FOR TI OMAP
4630 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
4631 L: dri-devel@lists.freedesktop.org
4633 F: drivers/gpu/drm/omapdrm/
4634 F: Documentation/devicetree/bindings/display/ti/
4636 DRM DRIVERS FOR TI LCDC
4637 M: Jyri Sarha <jsarha@ti.com>
4638 R: Tomi Valkeinen <tomi.valkeinen@ti.com>
4639 L: dri-devel@lists.freedesktop.org
4641 F: drivers/gpu/drm/tilcdc/
4642 F: Documentation/devicetree/bindings/display/tilcdc/
4644 DRM DRIVERS FOR ZTE ZX
4645 M: Shawn Guo <shawnguo@kernel.org>
4646 L: dri-devel@lists.freedesktop.org
4648 F: drivers/gpu/drm/zte/
4649 F: Documentation/devicetree/bindings/display/zte,vou.txt
4650 T: git git://anongit.freedesktop.org/drm/drm-misc
4652 DSBR100 USB FM RADIO DRIVER
4653 M: Alexey Klimov <klimov.linux@gmail.com>
4654 L: linux-media@vger.kernel.org
4655 T: git git://linuxtv.org/media_tree.git
4657 F: drivers/media/radio/dsbr100.c
4660 M: Francois Romieu <romieu@fr.zoreil.com>
4661 L: netdev@vger.kernel.org
4663 F: drivers/net/wan/dscc4.c
4666 M: Hans Verkuil <hverkuil@xs4all.nl>
4667 L: linux-media@vger.kernel.org
4668 T: git git://linuxtv.org/media_tree.git
4669 W: https://linuxtv.org
4671 F: drivers/media/pci/dt3155/
4673 DVB_USB_AF9015 MEDIA DRIVER
4674 M: Antti Palosaari <crope@iki.fi>
4675 L: linux-media@vger.kernel.org
4676 W: https://linuxtv.org
4677 W: http://palosaari.fi/linux/
4678 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4679 T: git git://linuxtv.org/anttip/media_tree.git
4681 F: drivers/media/usb/dvb-usb-v2/af9015*
4683 DVB_USB_AF9035 MEDIA DRIVER
4684 M: Antti Palosaari <crope@iki.fi>
4685 L: linux-media@vger.kernel.org
4686 W: https://linuxtv.org
4687 W: http://palosaari.fi/linux/
4688 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4689 T: git git://linuxtv.org/anttip/media_tree.git
4691 F: drivers/media/usb/dvb-usb-v2/af9035*
4693 DVB_USB_ANYSEE MEDIA DRIVER
4694 M: Antti Palosaari <crope@iki.fi>
4695 L: linux-media@vger.kernel.org
4696 W: https://linuxtv.org
4697 W: http://palosaari.fi/linux/
4698 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4699 T: git git://linuxtv.org/anttip/media_tree.git
4701 F: drivers/media/usb/dvb-usb-v2/anysee*
4703 DVB_USB_AU6610 MEDIA DRIVER
4704 M: Antti Palosaari <crope@iki.fi>
4705 L: linux-media@vger.kernel.org
4706 W: https://linuxtv.org
4707 W: http://palosaari.fi/linux/
4708 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4709 T: git git://linuxtv.org/anttip/media_tree.git
4711 F: drivers/media/usb/dvb-usb-v2/au6610*
4713 DVB_USB_CE6230 MEDIA DRIVER
4714 M: Antti Palosaari <crope@iki.fi>
4715 L: linux-media@vger.kernel.org
4716 W: https://linuxtv.org
4717 W: http://palosaari.fi/linux/
4718 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4719 T: git git://linuxtv.org/anttip/media_tree.git
4721 F: drivers/media/usb/dvb-usb-v2/ce6230*
4723 DVB_USB_CXUSB MEDIA DRIVER
4724 M: Michael Krufky <mkrufky@linuxtv.org>
4725 L: linux-media@vger.kernel.org
4726 W: https://linuxtv.org
4727 W: http://github.com/mkrufky
4728 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4729 T: git git://linuxtv.org/media_tree.git
4731 F: drivers/media/usb/dvb-usb/cxusb*
4733 DVB_USB_EC168 MEDIA DRIVER
4734 M: Antti Palosaari <crope@iki.fi>
4735 L: linux-media@vger.kernel.org
4736 W: https://linuxtv.org
4737 W: http://palosaari.fi/linux/
4738 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4739 T: git git://linuxtv.org/anttip/media_tree.git
4741 F: drivers/media/usb/dvb-usb-v2/ec168*
4743 DVB_USB_GL861 MEDIA DRIVER
4744 M: Antti Palosaari <crope@iki.fi>
4745 L: linux-media@vger.kernel.org
4746 W: https://linuxtv.org
4747 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4748 T: git git://linuxtv.org/anttip/media_tree.git
4750 F: drivers/media/usb/dvb-usb-v2/gl861*
4752 DVB_USB_MXL111SF MEDIA DRIVER
4753 M: Michael Krufky <mkrufky@linuxtv.org>
4754 L: linux-media@vger.kernel.org
4755 W: https://linuxtv.org
4756 W: http://github.com/mkrufky
4757 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4758 T: git git://linuxtv.org/mkrufky/mxl111sf.git
4760 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
4762 DVB_USB_RTL28XXU MEDIA DRIVER
4763 M: Antti Palosaari <crope@iki.fi>
4764 L: linux-media@vger.kernel.org
4765 W: https://linuxtv.org
4766 W: http://palosaari.fi/linux/
4767 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4768 T: git git://linuxtv.org/anttip/media_tree.git
4770 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
4772 DVB_USB_V2 MEDIA DRIVER
4773 M: Antti Palosaari <crope@iki.fi>
4774 L: linux-media@vger.kernel.org
4775 W: https://linuxtv.org
4776 W: http://palosaari.fi/linux/
4777 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4778 T: git git://linuxtv.org/anttip/media_tree.git
4780 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
4781 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
4783 DONGWOON DW9714 LENS VOICE COIL DRIVER
4784 M: Sakari Ailus <sakari.ailus@linux.intel.com>
4785 L: linux-media@vger.kernel.org
4786 T: git git://linuxtv.org/media_tree.git
4788 F: drivers/media/i2c/dw9714.c
4791 M: Jason Baron <jbaron@akamai.com>
4793 F: lib/dynamic_debug.c
4794 F: include/linux/dynamic_debug.h
4796 DZ DECSTATION DZ11 SERIAL DRIVER
4797 M: "Maciej W. Rozycki" <macro@linux-mips.org>
4799 F: drivers/tty/serial/dz.*
4801 E3X0 POWER BUTTON DRIVER
4802 M: Moritz Fischer <moritz.fischer@ettus.com>
4803 L: usrp-users@lists.ettus.com
4804 W: http://www.ettus.com
4806 F: drivers/input/misc/e3x0-button.c
4807 F: Documentation/devicetree/bindings/input/e3x0-button.txt
4810 M: Antti Palosaari <crope@iki.fi>
4811 L: linux-media@vger.kernel.org
4812 W: https://linuxtv.org
4813 W: http://palosaari.fi/linux/
4814 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4815 T: git git://linuxtv.org/anttip/media_tree.git
4817 F: drivers/media/tuners/e4000*
4819 EATA ISA/EISA/PCI SCSI DRIVER
4820 M: Dario Ballabio <ballabio_dario@emc.com>
4821 L: linux-scsi@vger.kernel.org
4823 F: drivers/scsi/eata.c
4826 M: Antti Palosaari <crope@iki.fi>
4827 L: linux-media@vger.kernel.org
4828 W: https://linuxtv.org
4829 W: http://palosaari.fi/linux/
4830 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4831 T: git git://linuxtv.org/anttip/media_tree.git
4833 F: drivers/media/dvb-frontends/ec100*
4836 M: Tyler Hicks <tyhicks@canonical.com>
4837 L: ecryptfs@vger.kernel.org
4838 W: http://ecryptfs.org
4839 W: https://launchpad.net/ecryptfs
4840 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4842 F: Documentation/filesystems/ecryptfs.txt
4846 M: Borislav Petkov <bp@alien8.de>
4847 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4848 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4849 L: linux-edac@vger.kernel.org
4850 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4851 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4853 F: Documentation/admin-guide/ras.rst
4854 F: Documentation/driver-api/edac.rst
4856 F: include/linux/edac.h
4859 M: Borislav Petkov <bp@alien8.de>
4860 L: linux-edac@vger.kernel.org
4862 F: drivers/edac/amd64_edac*
4865 M: Robert Richter <rric@kernel.org>
4866 L: linux-edac@vger.kernel.org
4868 F: drivers/edac/highbank*
4871 M: Ralf Baechle <ralf@linux-mips.org>
4872 M: David Daney <david.daney@cavium.com>
4873 L: linux-edac@vger.kernel.org
4874 L: linux-mips@linux-mips.org
4876 F: drivers/edac/octeon_edac*
4877 F: drivers/edac/thunderx_edac*
4880 M: Mark Gross <mark.gross@intel.com>
4881 L: linux-edac@vger.kernel.org
4883 F: drivers/edac/e752x_edac.c
4886 L: linux-edac@vger.kernel.org
4888 F: drivers/edac/e7xxx_edac.c
4891 M: York Sun <york.sun@nxp.com>
4892 L: linux-edac@vger.kernel.org
4894 F: drivers/edac/fsl_ddr_edac.*
4897 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4898 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4899 L: linux-edac@vger.kernel.org
4901 F: drivers/edac/ghes_edac.c
4904 M: Tim Small <tim@buttersideup.com>
4905 L: linux-edac@vger.kernel.org
4907 F: drivers/edac/i82443bxgx_edac.c
4910 L: linux-edac@vger.kernel.org
4912 F: drivers/edac/i3000_edac.c
4915 L: linux-edac@vger.kernel.org
4917 F: drivers/edac/i5000_edac.c
4920 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4921 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4922 L: linux-edac@vger.kernel.org
4924 F: drivers/edac/i5400_edac.c
4927 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4928 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4929 L: linux-edac@vger.kernel.org
4931 F: drivers/edac/i7300_edac.c
4934 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4935 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4936 L: linux-edac@vger.kernel.org
4938 F: drivers/edac/i7core_edac.c
4941 M: Ranganathan Desikan <ravi@jetztechnologies.com>
4942 M: "Arvind R." <arvino55@gmail.com>
4943 L: linux-edac@vger.kernel.org
4945 F: drivers/edac/i82975x_edac.c
4948 M: Jason Baron <jbaron@akamai.com>
4949 L: linux-edac@vger.kernel.org
4951 F: drivers/edac/ie31200_edac.c
4954 M: Johannes Thumshirn <morbidrsa@gmail.com>
4955 L: linux-edac@vger.kernel.org
4957 F: drivers/edac/mpc85xx_edac.[ch]
4960 M: Tony Luck <tony.luck@intel.com>
4961 L: linux-edac@vger.kernel.org
4963 F: drivers/edac/pnd2_edac.[ch]
4966 M: Egor Martovetsky <egor@pasemi.com>
4967 L: linux-edac@vger.kernel.org
4969 F: drivers/edac/pasemi_edac.c
4972 M: Tim Small <tim@buttersideup.com>
4973 L: linux-edac@vger.kernel.org
4975 F: drivers/edac/r82600_edac.c
4978 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
4979 M: Mauro Carvalho Chehab <mchehab@kernel.org>
4980 L: linux-edac@vger.kernel.org
4982 F: drivers/edac/sb_edac.c
4985 M: Tony Luck <tony.luck@intel.com>
4986 L: linux-edac@vger.kernel.org
4988 F: drivers/edac/skx_edac.c
4991 APPLIED MICRO (APM) X-GENE SOC EDAC
4992 M: Loc Ho <lho@apm.com>
4994 F: drivers/edac/xgene_edac.c
4995 F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4997 EDIROL UA-101/UA-1000 DRIVER
4998 M: Clemens Ladisch <clemens@ladisch.de>
4999 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5000 T: git git://git.alsa-project.org/alsa-kernel.git
5002 F: sound/usb/misc/ua101.c
5004 EXTENSIBLE FIRMWARE INTERFACE (EFI)
5005 M: Matt Fleming <matt@codeblueprint.co.uk>
5006 M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
5007 L: linux-efi@vger.kernel.org
5008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
5010 F: Documentation/efi-stub.txt
5011 F: arch/*/kernel/efi.c
5012 F: arch/x86/boot/compressed/eboot.[ch]
5013 F: arch/*/include/asm/efi.h
5014 F: arch/x86/platform/efi/
5015 F: drivers/firmware/efi/
5016 F: include/linux/efi*.h
5017 F: arch/arm/boot/compressed/efi-header.S
5018 F: arch/arm64/kernel/efi-entry.S
5020 EFI VARIABLE FILESYSTEM
5021 M: Matthew Garrett <matthew.garrett@nebula.com>
5022 M: Jeremy Kerr <jk@ozlabs.org>
5023 M: Matt Fleming <matt@codeblueprint.co.uk>
5024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
5025 L: linux-efi@vger.kernel.org
5029 EFIFB FRAMEBUFFER DRIVER
5030 L: linux-fbdev@vger.kernel.org
5031 M: Peter Jones <pjones@redhat.com>
5033 F: drivers/video/fbdev/efifb.c
5036 L: linux-efi@vger.kernel.org
5037 M: Ivan Hu <ivan.hu@canonical.com>
5038 M: Matt Fleming <matt@codeblueprint.co.uk>
5040 F: drivers/firmware/efi/test/
5043 W: http://aeschi.ch.eu.org/efs/
5047 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
5048 M: Douglas Miller <dougmill@linux.vnet.ibm.com>
5049 L: netdev@vger.kernel.org
5051 F: drivers/net/ethernet/ibm/ehea/
5053 EM28XX VIDEO4LINUX DRIVER
5054 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
5055 M: Mauro Carvalho Chehab <mchehab@kernel.org>
5056 L: linux-media@vger.kernel.org
5057 W: https://linuxtv.org
5058 T: git git://linuxtv.org/media_tree.git
5060 F: drivers/media/usb/em28xx/
5061 F: Documentation/media/v4l-drivers/em28xx*
5064 M: Paul Gortmaker <paul.gortmaker@windriver.com>
5065 M: Matt Mackall <mpm@selenic.com>
5066 M: David Woodhouse <dwmw2@infradead.org>
5067 L: linux-embedded@vger.kernel.org
5070 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
5071 M: James Smart <james.smart@broadcom.com>
5072 M: Dick Kennedy <dick.kennedy@broadcom.com>
5073 L: linux-scsi@vger.kernel.org
5074 W: http://www.broadcom.com
5076 F: drivers/scsi/lpfc/
5078 ENE CB710 FLASH CARD READER DRIVER
5079 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
5081 F: drivers/misc/cb710/
5082 F: drivers/mmc/host/cb710-mmc.*
5083 F: include/linux/cb710.h
5085 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
5086 M: Maxim Levitsky <maximlevitsky@gmail.com>
5088 F: drivers/media/rc/ene_ir.*
5090 EPSON S1D13XXX FRAMEBUFFER DRIVER
5091 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
5093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
5094 F: drivers/video/fbdev/s1d13xxxfb.c
5095 F: include/video/s1d13xxxfb.h
5097 ERRSEQ ERROR TRACKING INFRASTRUCTURE
5098 M: Jeff Layton <jlayton@poochiereds.net>
5101 F: include/linux/errseq.h
5103 ET131X NETWORK DRIVER
5104 M: Mark Einon <mark.einon@gmail.com>
5106 F: drivers/net/ethernet/agere/
5109 M: Stephen Hemminger <stephen@networkplumber.org>
5110 L: bridge@lists.linux-foundation.org (moderated for non-subscribers)
5111 L: netdev@vger.kernel.org
5112 W: http://www.linuxfoundation.org/en/Net:Bridge
5114 F: include/linux/netfilter_bridge/
5117 ETHERNET PHY LIBRARY
5118 M: Andrew Lunn <andrew@lunn.ch>
5119 M: Florian Fainelli <f.fainelli@gmail.com>
5120 L: netdev@vger.kernel.org
5122 F: include/linux/phy.h
5123 F: include/linux/phy_fixed.h
5125 F: Documentation/networking/phy.txt
5126 F: drivers/of/of_mdio.c
5127 F: drivers/of/of_net.c
5130 M: Jan Kara <jack@suse.com>
5131 L: linux-ext4@vger.kernel.org
5133 F: Documentation/filesystems/ext2.txt
5135 F: include/linux/ext2*
5138 M: "Theodore Ts'o" <tytso@mit.edu>
5139 M: Andreas Dilger <adilger.kernel@dilger.ca>
5140 L: linux-ext4@vger.kernel.org
5141 W: http://ext4.wiki.kernel.org
5142 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
5143 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5145 F: Documentation/filesystems/ext4.txt
5148 Extended Verification Module (EVM)
5149 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
5150 L: linux-ima-devel@lists.sourceforge.net
5151 L: linux-security-module@vger.kernel.org
5153 F: security/integrity/evm/
5155 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5156 M: MyungJoo Ham <myungjoo.ham@samsung.com>
5157 M: Chanwoo Choi <cw00.choi@samsung.com>
5158 L: linux-kernel@vger.kernel.org
5159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5162 F: include/linux/extcon/
5163 F: include/linux/extcon.h
5164 F: Documentation/extcon/
5165 F: Documentation/devicetree/bindings/extcon/
5168 M: Jingoo Han <jingoohan1@gmail.com>
5169 L: dri-devel@lists.freedesktop.org
5171 F: drivers/gpu/drm/exynos/exynos_dp*
5173 EXYNOS SYSMMU (IOMMU) driver
5174 M: Marek Szyprowski <m.szyprowski@samsung.com>
5175 L: iommu@lists.linux-foundation.org
5177 F: drivers/iommu/exynos-iommu.c
5179 EZchip NPS platform support
5180 M: Noam Camus <noamc@ezchip.com>
5182 F: arch/arc/plat-eznps
5183 F: arch/arc/boot/dts/eznps.dts
5185 F71805F HARDWARE MONITORING DRIVER
5186 M: Jean Delvare <jdelvare@suse.com>
5187 L: linux-hwmon@vger.kernel.org
5189 F: Documentation/hwmon/f71805f
5190 F: drivers/hwmon/f71805f.c
5193 M: Michael Buesch <m@bues.ch>
5194 L: linux-media@vger.kernel.org
5196 F: drivers/media/tuners/fc0011.h
5197 F: drivers/media/tuners/fc0011.c
5200 M: Antti Palosaari <crope@iki.fi>
5201 L: linux-media@vger.kernel.org
5202 W: https://linuxtv.org
5203 W: http://palosaari.fi/linux/
5204 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5205 T: git git://linuxtv.org/anttip/media_tree.git
5207 F: drivers/media/tuners/fc2580*
5210 M: Eric Paris <eparis@redhat.com>
5212 F: fs/notify/fanotify/
5213 F: include/linux/fanotify.h
5214 F: include/uapi/linux/fanotify.h
5216 FARSYNC SYNCHRONOUS DRIVER
5217 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
5218 W: http://www.farsite.co.uk/
5220 F: drivers/net/wan/farsync.*
5222 FAULT INJECTION SUPPORT
5223 M: Akinobu Mita <akinobu.mita@gmail.com>
5225 F: Documentation/fault-injection/
5226 F: lib/fault-inject.c
5228 FBTFT Framebuffer drivers
5229 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5231 F: drivers/staging/fbtft/
5233 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5234 M: Johannes Thumshirn <jth@kernel.org>
5235 L: fcoe-devel@open-fcoe.org
5236 W: www.Open-FCoE.org
5238 F: drivers/scsi/libfc/
5239 F: drivers/scsi/fcoe/
5241 F: include/scsi/libfc.h
5242 F: include/scsi/libfcoe.h
5243 F: include/uapi/scsi/fc/
5245 FILE LOCKING (flock() and fcntl()/lockf())
5246 M: Jeff Layton <jlayton@poochiereds.net>
5247 M: "J. Bruce Fields" <bfields@fieldses.org>
5248 L: linux-fsdevel@vger.kernel.org
5250 F: include/linux/fcntl.h
5251 F: include/linux/fs.h
5252 F: include/uapi/linux/fcntl.h
5253 F: include/uapi/linux/fs.h
5257 FILESYSTEMS (VFS and infrastructure)
5258 M: Alexander Viro <viro@zeniv.linux.org.uk>
5259 L: linux-fsdevel@vger.kernel.org
5263 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5264 M: Riku Voipio <riku.voipio@iki.fi>
5265 L: linux-hwmon@vger.kernel.org
5267 F: drivers/hwmon/f75375s.c
5268 F: include/linux/f75375s.h
5270 FIREWIRE AUDIO DRIVERS
5271 M: Clemens Ladisch <clemens@ladisch.de>
5272 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5273 T: git git://git.alsa-project.org/alsa-kernel.git
5277 FIREWIRE MEDIA DRIVERS (firedtv)
5278 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5279 L: linux-media@vger.kernel.org
5280 L: linux1394-devel@lists.sourceforge.net
5281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5283 F: drivers/media/firewire/
5285 FIREWIRE SBP-2 TARGET
5286 M: Chris Boot <bootc@bootc.net>
5287 L: linux-scsi@vger.kernel.org
5288 L: target-devel@vger.kernel.org
5289 L: linux1394-devel@lists.sourceforge.net
5290 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5292 F: drivers/target/sbp/
5295 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
5296 L: linux1394-devel@lists.sourceforge.net
5297 W: http://ieee1394.wiki.kernel.org/
5298 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5300 F: drivers/firewire/
5301 F: include/linux/firewire.h
5302 F: include/uapi/linux/firewire*.h
5305 FIRMWARE LOADER (request_firmware)
5306 M: Luis R. Rodriguez <mcgrof@kernel.org>
5307 L: linux-kernel@vger.kernel.org
5309 F: Documentation/firmware_class/
5310 F: drivers/base/firmware*.c
5311 F: include/linux/firmware.h
5313 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5314 M: Joshua Morris <josh.h.morris@us.ibm.com>
5315 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
5317 F: drivers/block/rsxx/
5320 M: Jiri Kosina <jikos@kernel.org>
5321 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5323 F: drivers/block/floppy.c
5326 M: Alessandro Rubini <rubini@gnudd.com>
5327 W: http://www.ohwr.org/projects/fmc-bus
5330 F: include/linux/fmc*.h
5331 F: include/linux/ipmi-fru.h
5334 FPGA MANAGER FRAMEWORK
5335 M: Alan Tull <atull@kernel.org>
5336 R: Moritz Fischer <moritz.fischer@ettus.com>
5337 L: linux-fpga@vger.kernel.org
5339 T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5340 F: Documentation/fpga/
5341 F: Documentation/devicetree/bindings/fpga/
5343 F: include/linux/fpga/
5344 W: http://www.rocketboards.org
5347 M: Bill Metzenthen <billm@melbpc.org.au>
5348 W: http://floatingpoint.sourceforge.net/emulator/index.html
5350 F: arch/x86/math-emu/
5352 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5353 L: netdev@vger.kernel.org
5355 F: drivers/net/wan/dlci.c
5356 F: drivers/net/wan/sdla.c
5359 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5360 L: linux-fbdev@vger.kernel.org
5361 T: git git://github.com/bzolnier/linux.git
5362 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
5364 F: Documentation/fb/
5367 F: include/linux/fb.h
5368 F: include/uapi/video/
5369 F: include/uapi/linux/fb.h
5371 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5372 M: Horia Geantă <horia.geanta@nxp.com>
5373 M: Dan Douglass <dan.douglass@nxp.com>
5374 L: linux-crypto@vger.kernel.org
5376 F: drivers/crypto/caam/
5377 F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5379 FREESCALE DIU FRAMEBUFFER DRIVER
5380 M: Timur Tabi <timur@tabi.org>
5381 L: linux-fbdev@vger.kernel.org
5383 F: drivers/video/fbdev/fsl-diu-fb.*
5385 FREESCALE DMA DRIVER
5386 M: Li Yang <leoyang.li@nxp.com>
5387 M: Zhang Wei <zw@zh-kernel.org>
5388 L: linuxppc-dev@lists.ozlabs.org
5390 F: drivers/dma/fsldma.*
5392 FREESCALE GPMI NAND DRIVER
5393 M: Han Xu <han.xu@nxp.com>
5394 L: linux-mtd@lists.infradead.org
5396 F: drivers/mtd/nand/gpmi-nand/*
5398 FREESCALE I2C CPM DRIVER
5399 M: Jochen Friedrich <jochen@scram.de>
5400 L: linuxppc-dev@lists.ozlabs.org
5401 L: linux-i2c@vger.kernel.org
5403 F: drivers/i2c/busses/i2c-cpm.c
5405 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5406 M: Sascha Hauer <kernel@pengutronix.de>
5407 L: linux-fbdev@vger.kernel.org
5408 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5410 F: include/linux/platform_data/video-imxfb.h
5411 F: drivers/video/fbdev/imxfb.c
5413 FREESCALE QUAD SPI DRIVER
5414 M: Han Xu <han.xu@nxp.com>
5415 L: linux-mtd@lists.infradead.org
5417 F: drivers/mtd/spi-nor/fsl-quadspi.c
5419 FREESCALE SOC FS_ENET DRIVER
5420 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
5421 M: Vitaly Bordug <vbordug@ru.mvista.com>
5422 L: linuxppc-dev@lists.ozlabs.org
5423 L: netdev@vger.kernel.org
5425 F: drivers/net/ethernet/freescale/fs_enet/
5426 F: include/linux/fs_enet_pd.h
5428 FREESCALE IMX / MXC FEC DRIVER
5429 M: Fugang Duan <fugang.duan@nxp.com>
5430 L: netdev@vger.kernel.org
5432 F: drivers/net/ethernet/freescale/fec_main.c
5433 F: drivers/net/ethernet/freescale/fec_ptp.c
5434 F: drivers/net/ethernet/freescale/fec.h
5435 F: Documentation/devicetree/bindings/net/fsl-fec.txt
5437 FREESCALE QORIQ DPAA FMAN DRIVER
5438 M: Madalin Bucur <madalin.bucur@nxp.com>
5439 L: netdev@vger.kernel.org
5441 F: drivers/net/ethernet/freescale/fman
5442 F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5444 FREESCALE QORIQ DPAA ETHERNET DRIVER
5445 M: Madalin Bucur <madalin.bucur@nxp.com>
5446 L: netdev@vger.kernel.org
5448 F: drivers/net/ethernet/freescale/dpaa
5450 FREESCALE SOC DRIVERS
5451 M: Li Yang <leoyang.li@nxp.com>
5452 L: linuxppc-dev@lists.ozlabs.org
5453 L: linux-arm-kernel@lists.infradead.org
5455 F: Documentation/devicetree/bindings/soc/fsl/
5457 F: include/linux/fsl/
5459 FREESCALE QUICC ENGINE LIBRARY
5460 M: Qiang Zhao <qiang.zhao@nxp.com>
5461 L: linuxppc-dev@lists.ozlabs.org
5463 F: drivers/soc/fsl/qe/
5464 F: include/soc/fsl/*qe*.h
5465 F: include/soc/fsl/*ucc*.h
5467 FREESCALE USB PERIPHERAL DRIVERS
5468 M: Li Yang <leoyang.li@nxp.com>
5469 L: linux-usb@vger.kernel.org
5470 L: linuxppc-dev@lists.ozlabs.org
5472 F: drivers/usb/gadget/udc/fsl*
5474 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5475 M: Li Yang <leoyang.li@nxp.com>
5476 L: netdev@vger.kernel.org
5477 L: linuxppc-dev@lists.ozlabs.org
5479 F: drivers/net/ethernet/freescale/ucc_geth*
5481 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5482 M: Claudiu Manoil <claudiu.manoil@freescale.com>
5483 L: netdev@vger.kernel.org
5485 F: drivers/net/ethernet/freescale/gianfar*
5486 X: drivers/net/ethernet/freescale/gianfar_ptp.c
5487 F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5489 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5490 M: Zhao Qiang <qiang.zhao@nxp.com>
5491 L: netdev@vger.kernel.org
5492 L: linuxppc-dev@lists.ozlabs.org
5494 F: drivers/net/wan/fsl_ucc_hdlc*
5496 FREESCALE QUICC ENGINE UCC UART DRIVER
5497 M: Timur Tabi <timur@tabi.org>
5498 L: linuxppc-dev@lists.ozlabs.org
5500 F: drivers/tty/serial/ucc_uart.c
5502 FREESCALE SOC SOUND DRIVERS
5503 M: Timur Tabi <timur@tabi.org>
5504 M: Nicolin Chen <nicoleotsuka@gmail.com>
5505 M: Xiubo Li <Xiubo.Lee@gmail.com>
5506 R: Fabio Estevam <fabio.estevam@nxp.com>
5507 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5508 L: linuxppc-dev@lists.ozlabs.org
5510 F: sound/soc/fsl/fsl*
5511 F: sound/soc/fsl/imx*
5512 F: sound/soc/fsl/mpc8610_hpcd.c
5515 M: Christoph Hellwig <hch@infradead.org>
5516 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
5521 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5522 M: Pavel Machek <pavel@ucw.cz>
5523 L: linux-pm@vger.kernel.org
5525 F: Documentation/power/freezing-of-tasks.txt
5526 F: include/linux/freezer.h
5530 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5531 L: linux-kernel@vger.kernel.org
5534 F: include/linux/frontswap.h
5536 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5537 M: David Howells <dhowells@redhat.com>
5538 L: linux-cachefs@redhat.com (moderated for non-subscribers)
5540 F: Documentation/filesystems/caching/
5542 F: include/linux/fscache*.h
5544 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5545 M: Theodore Y. Ts'o <tytso@mit.edu>
5546 M: Jaegeuk Kim <jaegeuk@kernel.org>
5547 L: linux-fscrypt@vger.kernel.org
5548 Q: https://patchwork.kernel.org/project/linux-fscrypt/list/
5549 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5552 F: include/linux/fscrypt*.h
5555 M: Jaegeuk Kim <jaegeuk@kernel.org>
5556 M: Chao Yu <yuchao0@huawei.com>
5557 L: linux-f2fs-devel@lists.sourceforge.net
5558 W: https://f2fs.wiki.kernel.org/
5559 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5561 F: Documentation/filesystems/f2fs.txt
5562 F: Documentation/ABI/testing/sysfs-fs-f2fs
5564 F: include/linux/f2fs_fs.h
5565 F: include/trace/events/f2fs.h
5567 FUJITSU FR-V (FRV) PORT
5571 FUJITSU LAPTOP EXTRAS
5572 M: Jonathan Woithe <jwoithe@just42.net>
5573 L: platform-driver-x86@vger.kernel.org
5575 F: drivers/platform/x86/fujitsu-laptop.c
5577 FUJITSU M-5MO LS CAMERA ISP DRIVER
5578 M: Kyungmin Park <kyungmin.park@samsung.com>
5579 M: Heungjun Kim <riverful.kim@samsung.com>
5580 L: linux-media@vger.kernel.org
5582 F: drivers/media/i2c/m5mols/
5583 F: include/media/i2c/m5mols.h
5585 FUJITSU TABLET EXTRAS
5586 M: Robert Gerlach <khnz@gmx.de>
5587 L: platform-driver-x86@vger.kernel.org
5589 F: drivers/platform/x86/fujitsu-tablet.c
5591 FUSE: FILESYSTEM IN USERSPACE
5592 M: Miklos Szeredi <miklos@szeredi.hu>
5593 L: linux-fsdevel@vger.kernel.org
5594 W: http://fuse.sourceforge.net/
5595 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5598 F: include/uapi/linux/fuse.h
5599 F: Documentation/filesystems/fuse.txt
5602 M: Thomas Gleixner <tglx@linutronix.de>
5603 M: Ingo Molnar <mingo@redhat.com>
5604 R: Peter Zijlstra <peterz@infradead.org>
5605 R: Darren Hart <dvhart@infradead.org>
5606 L: linux-kernel@vger.kernel.org
5607 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5610 F: kernel/futex_compat.c
5611 F: include/asm-generic/futex.h
5612 F: include/linux/futex.h
5613 F: include/uapi/linux/futex.h
5614 F: tools/testing/selftests/futex/
5615 F: tools/perf/bench/futex*
5616 F: Documentation/*futex*
5618 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5619 M: Rik Faith <faith@cs.unc.edu>
5620 L: linux-scsi@vger.kernel.org
5621 S: Odd Fixes (e.g., new signatures)
5622 F: drivers/scsi/fdomain.*
5625 M: Kees Cook <keescook@chromium.org>
5626 R: Emese Revfy <re.emese@gmail.com>
5627 L: kernel-hardening@lists.openwall.com
5629 F: scripts/gcc-plugins/
5630 F: scripts/gcc-plugin.sh
5631 F: scripts/Makefile.gcc-plugins
5632 F: Documentation/gcc-plugins.txt
5634 GCOV BASED KERNEL PROFILING
5635 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5638 F: Documentation/dev-tools/gcov.rst
5640 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5641 M: Achim Leubner <achim_leubner@adaptec.com>
5642 L: linux-scsi@vger.kernel.org
5643 W: http://www.icp-vortex.com/
5645 F: drivers/scsi/gdt*
5647 GDB KERNEL DEBUGGING HELPER SCRIPTS
5648 M: Jan Kiszka <jan.kiszka@siemens.com>
5649 M: Kieran Bingham <kieran@bingham.xyz>
5653 GEMTEK FM RADIO RECEIVER DRIVER
5654 M: Hans Verkuil <hverkuil@xs4all.nl>
5655 L: linux-media@vger.kernel.org
5656 T: git git://linuxtv.org/media_tree.git
5657 W: https://linuxtv.org
5659 F: drivers/media/radio/radio-gemtek*
5661 GENERIC GPIO I2C DRIVER
5662 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
5664 F: drivers/i2c/busses/i2c-gpio.c
5665 F: include/linux/i2c-gpio.h
5667 GENERIC GPIO I2C MULTIPLEXER DRIVER
5668 M: Peter Korsgaard <peter.korsgaard@barco.com>
5669 L: linux-i2c@vger.kernel.org
5671 F: drivers/i2c/muxes/i2c-mux-gpio.c
5672 F: include/linux/i2c-mux-gpio.h
5673 F: Documentation/i2c/muxes/i2c-mux-gpio
5675 GENERIC HDLC (WAN) DRIVERS
5676 M: Krzysztof Halasa <khc@pm.waw.pl>
5677 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
5679 F: drivers/net/wan/c101.c
5680 F: drivers/net/wan/hd6457*
5681 F: drivers/net/wan/hdlc*
5682 F: drivers/net/wan/n2.c
5683 F: drivers/net/wan/pc300too.c
5684 F: drivers/net/wan/pci200syn.c
5685 F: drivers/net/wan/wanxl*
5687 GENERIC INCLUDE/ASM HEADER FILES
5688 M: Arnd Bergmann <arnd@arndb.de>
5689 L: linux-arch@vger.kernel.org
5690 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5692 F: include/asm-generic/
5693 F: include/uapi/asm-generic/
5695 GENERIC PHY FRAMEWORK
5696 M: Kishon Vijay Abraham I <kishon@ti.com>
5697 L: linux-kernel@vger.kernel.org
5698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5701 F: include/linux/phy/
5704 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
5705 M: Kevin Hilman <khilman@kernel.org>
5706 M: Ulf Hansson <ulf.hansson@linaro.org>
5707 L: linux-pm@vger.kernel.org
5709 F: drivers/base/power/domain*.c
5710 F: include/linux/pm_domain.h
5711 F: Documentation/devicetree/bindings/power/power_domain.txt
5713 GENERIC UIO DRIVER FOR PCI DEVICES
5714 M: "Michael S. Tsirkin" <mst@redhat.com>
5715 L: kvm@vger.kernel.org
5717 F: drivers/uio/uio_pci_generic.c
5719 GET_MAINTAINER SCRIPT
5720 M: Joe Perches <joe@perches.com>
5722 F: scripts/get_maintainer.pl
5724 GENWQE (IBM Generic Workqueue Card)
5725 M: Frank Haverkamp <haver@linux.vnet.ibm.com>
5726 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
5728 F: drivers/misc/genwqe/
5731 M: Steven Whitehouse <swhiteho@redhat.com>
5732 M: Bob Peterson <rpeterso@redhat.com>
5733 L: cluster-devel@redhat.com
5734 W: http://sources.redhat.com/cluster/
5735 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5737 F: Documentation/filesystems/gfs2*.txt
5739 F: include/uapi/linux/gfs2_ondisk.h
5741 GIGASET ISDN DRIVERS
5742 M: Paul Bolle <pebolle@tiscali.nl>
5743 L: gigaset307x-common@lists.sourceforge.net
5744 W: http://gigaset307x.sourceforge.net/
5746 F: Documentation/isdn/README.gigaset
5747 F: drivers/isdn/gigaset/
5748 F: include/uapi/linux/gigaset_dev.h
5751 M: Hans Verkuil <hans.verkuil@cisco.com>
5752 L: linux-media@vger.kernel.org
5754 F: drivers/media/usb/go7007/
5757 M: Bastien Nocera <hadess@hadess.net>
5758 L: linux-input@vger.kernel.org
5760 F: drivers/input/touchscreen/goodix.c
5763 M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
5764 L: linux-gpio@vger.kernel.org
5766 F: drivers/gpio/gpio-mockup.c
5767 F: tools/testing/selftests/gpio/
5770 M: Linus Walleij <linus.walleij@linaro.org>
5771 L: linux-gpio@vger.kernel.org
5772 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5774 F: Documentation/devicetree/bindings/gpio/
5775 F: Documentation/gpio/
5776 F: Documentation/ABI/testing/gpio-cdev
5777 F: Documentation/ABI/obsolete/sysfs-gpio
5779 F: include/linux/gpio/
5780 F: include/linux/gpio.h
5781 F: include/asm-generic/gpio.h
5782 F: include/uapi/linux/gpio.h
5786 M: Mika Westerberg <mika.westerberg@linux.intel.com>
5787 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5788 L: linux-gpio@vger.kernel.org
5789 L: linux-acpi@vger.kernel.org
5791 F: Documentation/acpi/gpio-properties.txt
5792 F: drivers/gpio/gpiolib-acpi.c
5794 GRE DEMULTIPLEXER DRIVER
5795 M: Dmitry Kozlov <xeb@mail.ru>
5796 L: netdev@vger.kernel.org
5798 F: net/ipv4/gre_demux.c
5799 F: net/ipv4/gre_offload.c
5800 F: include/net/gre.h
5802 GRETH 10/100/1G Ethernet MAC device driver
5803 M: Andreas Larsson <andreas@gaisler.com>
5804 L: netdev@vger.kernel.org
5806 F: drivers/net/ethernet/aeroflex/
5809 M: Johan Hovold <johan@kernel.org>
5810 M: Alex Elder <elder@kernel.org>
5811 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5813 F: drivers/staging/greybus/
5814 L: greybus-dev@lists.linaro.org (moderated for non-subscribers)
5816 GREYBUS AUDIO PROTOCOLS DRIVERS
5817 M: Vaibhav Agarwal <vaibhav.sr@gmail.com>
5818 M: Mark Greer <mgreer@animalcreek.com>
5820 F: drivers/staging/greybus/audio_apbridgea.c
5821 F: drivers/staging/greybus/audio_apbridgea.h
5822 F: drivers/staging/greybus/audio_codec.c
5823 F: drivers/staging/greybus/audio_codec.h
5824 F: drivers/staging/greybus/audio_gb.c
5825 F: drivers/staging/greybus/audio_manager.c
5826 F: drivers/staging/greybus/audio_manager.h
5827 F: drivers/staging/greybus/audio_manager_module.c
5828 F: drivers/staging/greybus/audio_manager_private.h
5829 F: drivers/staging/greybus/audio_manager_sysfs.c
5830 F: drivers/staging/greybus/audio_module.c
5831 F: drivers/staging/greybus/audio_topology.c
5833 GREYBUS PROTOCOLS DRIVERS
5834 M: Rui Miguel Silva <rmfrfs@gmail.com>
5836 F: drivers/staging/greybus/sdio.c
5837 F: drivers/staging/greybus/light.c
5838 F: drivers/staging/greybus/gpio.c
5839 F: drivers/staging/greybus/power_supply.c
5840 F: drivers/staging/greybus/spi.c
5841 F: drivers/staging/greybus/spilib.c
5843 GREYBUS PROTOCOLS DRIVERS
5844 M: Bryan O'Donoghue <pure.logic@nexus-software.ie>
5846 F: drivers/staging/greybus/loopback.c
5847 F: drivers/staging/greybus/timesync.c
5848 F: drivers/staging/greybus/timesync_platform.c
5850 GREYBUS PROTOCOLS DRIVERS
5851 M: Viresh Kumar <vireshk@kernel.org>
5853 F: drivers/staging/greybus/authentication.c
5854 F: drivers/staging/greybus/bootrom.c
5855 F: drivers/staging/greybus/firmware.h
5856 F: drivers/staging/greybus/fw-core.c
5857 F: drivers/staging/greybus/fw-download.c
5858 F: drivers/staging/greybus/fw-managament.c
5859 F: drivers/staging/greybus/greybus_authentication.h
5860 F: drivers/staging/greybus/greybus_firmware.h
5861 F: drivers/staging/greybus/hid.c
5862 F: drivers/staging/greybus/i2c.c
5863 F: drivers/staging/greybus/spi.c
5864 F: drivers/staging/greybus/spilib.c
5865 F: drivers/staging/greybus/spilib.h
5867 GREYBUS PROTOCOLS DRIVERS
5868 M: David Lin <dtwlin@gmail.com>
5870 F: drivers/staging/greybus/uart.c
5871 F: drivers/staging/greybus/log.c
5873 GREYBUS PLATFORM DRIVERS
5874 M: Vaibhav Hiremath <hvaibhav.linux@gmail.com>
5876 F: drivers/staging/greybus/arche-platform.c
5877 F: drivers/staging/greybus/arche-apb-ctrl.c
5878 F: drivers/staging/greybus/arche_platform.h
5880 GS1662 VIDEO SERIALIZER
5881 M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
5882 L: linux-media@vger.kernel.org
5883 T: git git://linuxtv.org/media_tree.git
5885 F: drivers/media/spi/gs1662.c
5887 GSPCA FINEPIX SUBDRIVER
5888 M: Frank Zago <frank@zago.net>
5889 L: linux-media@vger.kernel.org
5890 T: git git://linuxtv.org/media_tree.git
5892 F: drivers/media/usb/gspca/finepix.c
5894 GSPCA GL860 SUBDRIVER
5895 M: Olivier Lorin <o.lorin@laposte.net>
5896 L: linux-media@vger.kernel.org
5897 T: git git://linuxtv.org/media_tree.git
5899 F: drivers/media/usb/gspca/gl860/
5901 GSPCA M5602 SUBDRIVER
5902 M: Erik Andren <erik.andren@gmail.com>
5903 L: linux-media@vger.kernel.org
5904 T: git git://linuxtv.org/media_tree.git
5906 F: drivers/media/usb/gspca/m5602/
5908 GSPCA PAC207 SONIXB SUBDRIVER
5909 M: Hans Verkuil <hverkuil@xs4all.nl>
5910 L: linux-media@vger.kernel.org
5911 T: git git://linuxtv.org/media_tree.git
5913 F: drivers/media/usb/gspca/pac207.c
5915 GSPCA SN9C20X SUBDRIVER
5916 M: Brian Johnson <brijohn@gmail.com>
5917 L: linux-media@vger.kernel.org
5918 T: git git://linuxtv.org/media_tree.git
5920 F: drivers/media/usb/gspca/sn9c20x.c
5922 GSPCA T613 SUBDRIVER
5923 M: Leandro Costantino <lcostantino@gmail.com>
5924 L: linux-media@vger.kernel.org
5925 T: git git://linuxtv.org/media_tree.git
5927 F: drivers/media/usb/gspca/t613.c
5929 GSPCA USB WEBCAM DRIVER
5930 M: Hans Verkuil <hverkuil@xs4all.nl>
5931 L: linux-media@vger.kernel.org
5932 T: git git://linuxtv.org/media_tree.git
5934 F: drivers/media/usb/gspca/
5936 GTP (GPRS Tunneling Protocol)
5937 M: Pablo Neira Ayuso <pablo@netfilter.org>
5938 M: Harald Welte <laforge@gnumonks.org>
5939 L: osmocom-net-gprs@lists.osmocom.org
5940 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
5942 F: drivers/net/gtp.c
5944 GUID PARTITION TABLE (GPT)
5945 M: Davidlohr Bueso <dave@stgolabs.net>
5946 L: linux-efi@vger.kernel.org
5948 F: block/partitions/efi.*
5950 STK1160 USB VIDEO CAPTURE DRIVER
5951 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5952 L: linux-media@vger.kernel.org
5953 T: git git://linuxtv.org/media_tree.git
5955 F: drivers/media/usb/stk1160/
5958 M: Yoshinori Sato <ysato@users.sourceforge.jp>
5959 L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5960 W: http://uclinux-h8.sourceforge.jp
5961 T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5964 F: drivers/clocksource/h8300_*.c
5965 F: drivers/clk/h8300/
5966 F: drivers/irqchip/irq-renesas-h8*.c
5968 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5969 M: Frank Seidel <frank@f-seidel.de>
5970 L: platform-driver-x86@vger.kernel.org
5971 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5973 F: drivers/platform/x86/hdaps.c
5975 HDPVR USB VIDEO ENCODER DRIVER
5976 M: Hans Verkuil <hverkuil@xs4all.nl>
5977 L: linux-media@vger.kernel.org
5978 T: git git://linuxtv.org/media_tree.git
5979 W: https://linuxtv.org
5981 F: drivers/media/usb/hdpvr/
5983 HWPOISON MEMORY FAILURE HANDLING
5984 M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5985 L: linux-mm@kvack.org
5987 F: mm/memory-failure.c
5988 F: mm/hwpoison-inject.c
5990 HYPERVISOR VIRTUAL CONSOLE DRIVER
5991 L: linuxppc-dev@lists.ozlabs.org
5996 M: Antti Palosaari <crope@iki.fi>
5997 L: linux-media@vger.kernel.org
5998 W: https://linuxtv.org
5999 W: http://palosaari.fi/linux/
6000 Q: http://patchwork.linuxtv.org/project/linux-media/list/
6001 T: git git://linuxtv.org/anttip/media_tree.git
6003 F: drivers/media/usb/hackrf/
6006 M: Jean Delvare <jdelvare@suse.com>
6007 M: Guenter Roeck <linux@roeck-us.net>
6008 L: linux-hwmon@vger.kernel.org
6009 W: http://hwmon.wiki.kernel.org/
6010 T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
6011 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6013 F: Documentation/hwmon/
6015 F: include/linux/hwmon*.h
6017 HARDWARE RANDOM NUMBER GENERATOR CORE
6018 M: Matt Mackall <mpm@selenic.com>
6019 M: Herbert Xu <herbert@gondor.apana.org.au>
6020 L: linux-crypto@vger.kernel.org
6022 F: Documentation/devicetree/bindings/rng/
6023 F: Documentation/hw_random.txt
6024 F: drivers/char/hw_random/
6025 F: include/linux/hw_random.h
6027 HARDWARE SPINLOCK CORE
6028 M: Ohad Ben-Cohen <ohad@wizery.com>
6029 M: Bjorn Andersson <bjorn.andersson@linaro.org>
6030 L: linux-remoteproc@vger.kernel.org
6032 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
6033 F: Documentation/devicetree/bindings/hwlock/
6034 F: Documentation/hwspinlock.txt
6035 F: drivers/hwspinlock/
6036 F: include/linux/hwspinlock.h
6038 HARMONY SOUND DRIVER
6039 L: linux-parisc@vger.kernel.org
6041 F: sound/parisc/harmony.*
6043 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
6044 M: Jimmy Vance <jimmy.vance@hpe.com>
6046 F: Documentation/watchdog/hpwdt.txt
6047 F: drivers/watchdog/hpwdt.c
6049 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
6050 M: Don Brace <don.brace@microsemi.com>
6051 L: esc.storagedev@microsemi.com
6052 L: linux-scsi@vger.kernel.org
6054 F: Documentation/scsi/hpsa.txt
6055 F: drivers/scsi/hpsa*.[ch]
6056 F: include/linux/cciss*.h
6057 F: include/uapi/linux/cciss*.h
6059 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
6060 M: Don Brace <don.brace@microsemi.com>
6061 L: esc.storagedev@microsemi.com
6062 L: linux-scsi@vger.kernel.org
6064 F: Documentation/blockdev/cciss.txt
6065 F: drivers/block/cciss*
6066 F: include/linux/cciss_ioctl.h
6067 F: include/uapi/linux/cciss_ioctl.h
6070 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6071 M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
6072 L: linux-rdma@vger.kernel.org
6074 F: drivers/infiniband/ulp/opa_vnic
6077 M: Mike Marciniszyn <mike.marciniszyn@intel.com>
6078 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
6079 L: linux-rdma@vger.kernel.org
6081 F: drivers/infiniband/hw/hfi1
6084 L: linux-fsdevel@vger.kernel.org
6086 F: Documentation/filesystems/hfs.txt
6090 L: linux-fsdevel@vger.kernel.org
6092 F: Documentation/filesystems/hfsplus.txt
6095 HGA FRAMEBUFFER DRIVER
6096 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
6097 L: linux-nvidia@lists.surfsouth.com
6098 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
6100 F: drivers/video/fbdev/hgafb.c
6102 HIBERNATION (aka Software Suspend, aka swsusp)
6103 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
6104 M: Pavel Machek <pavel@ucw.cz>
6105 L: linux-pm@vger.kernel.org
6106 B: https://bugzilla.kernel.org
6109 F: drivers/base/power/
6111 F: include/linux/suspend.h
6112 F: include/linux/freezer.h
6113 F: include/linux/pm.h
6114 F: arch/*/include/asm/suspend*.h
6117 M: Jiri Kosina <jikos@kernel.org>
6118 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
6119 L: linux-input@vger.kernel.org
6120 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
6123 F: include/linux/hid*
6124 F: include/uapi/linux/hid*
6126 HID SENSOR HUB DRIVERS
6127 M: Jiri Kosina <jikos@kernel.org>
6128 M: Jonathan Cameron <jic23@kernel.org>
6129 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6130 L: linux-input@vger.kernel.org
6131 L: linux-iio@vger.kernel.org
6133 F: Documentation/hid/hid-sensor*
6134 F: drivers/hid/hid-sensor-*
6135 F: drivers/iio/*/hid-*
6136 F: include/linux/hid-sensor-*
6138 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
6139 M: Thomas Gleixner <tglx@linutronix.de>
6140 L: linux-kernel@vger.kernel.org
6141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6143 F: Documentation/timers/
6144 F: kernel/time/hrtimer.c
6145 F: kernel/time/clockevents.c
6146 F: kernel/time/timer_*.c
6147 F: include/linux/clockchips.h
6148 F: include/linux/hrtimer.h
6150 HIGH-SPEED SCC DRIVER FOR AX.25
6151 L: linux-hams@vger.kernel.org
6153 F: drivers/net/hamradio/dmascc.c
6154 F: drivers/net/hamradio/scc.c
6156 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6157 M: HighPoint Linux Team <linux@highpoint-tech.com>
6158 W: http://www.highpoint-tech.com
6160 F: Documentation/scsi/hptiop.txt
6161 F: drivers/scsi/hptiop.c
6164 M: Jes Sorensen <jes@trained-monkey.org>
6165 L: linux-hippi@sunsite.dk
6167 F: include/linux/hippidevice.h
6168 F: include/uapi/linux/if_hippi.h
6170 F: drivers/net/hippi/
6172 HISILICON NETWORK SUBSYSTEM DRIVER
6173 M: Yisen Zhuang <yisen.zhuang@huawei.com>
6174 M: Salil Mehta <salil.mehta@huawei.com>
6175 L: netdev@vger.kernel.org
6176 W: http://www.hisilicon.com
6178 F: drivers/net/ethernet/hisilicon/
6179 F: Documentation/devicetree/bindings/net/hisilicon*.txt
6181 HISILICON ROCE DRIVER
6182 M: Lijun Ou <oulijun@huawei.com>
6183 M: Wei Hu(Xavier) <xavier.huwei@huawei.com>
6184 L: linux-rdma@vger.kernel.org
6186 F: drivers/infiniband/hw/hns/
6187 F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6189 HISILICON SAS Controller
6190 M: John Garry <john.garry@huawei.com>
6191 W: http://www.hisilicon.com
6193 F: drivers/scsi/hisi_sas/
6194 F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6197 M: Jouni Malinen <j@w1.fi>
6198 L: linux-wireless@vger.kernel.org
6199 W: http://w1.fi/hostap-driver.html
6201 F: drivers/net/wireless/intersil/hostap/
6203 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6204 L: platform-driver-x86@vger.kernel.org
6206 F: drivers/platform/x86/tc1100-wmi.c
6208 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6209 M: Jaroslav Kysela <perex@perex.cz>
6211 F: drivers/net/ethernet/hp/hp100.*
6213 HPET: High Precision Event Timers driver
6214 M: Clemens Ladisch <clemens@ladisch.de>
6216 F: Documentation/timers/hpet.txt
6217 F: drivers/char/hpet.c
6218 F: include/linux/hpet.h
6219 F: include/uapi/linux/hpet.h
6223 F: arch/x86/kernel/hpet.c
6224 F: arch/x86/include/asm/hpet.h
6227 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
6228 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6233 M: Sebastian Reichel <sre@kernel.org>
6234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6236 F: Documentation/ABI/testing/sysfs-bus-hsi
6237 F: Documentation/driver-api/hsi.rst
6239 F: include/linux/hsi/
6240 F: include/uapi/linux/hsi/
6243 L: linux-usb@vger.kernel.org
6245 F: drivers/net/usb/hso.c
6247 HSR NETWORK PROTOCOL
6248 M: Arvid Brodin <arvid.brodin@alten.se>
6249 L: netdev@vger.kernel.org
6253 HTCPEN TOUCHSCREEN DRIVER
6254 M: Pau Oliva Fora <pof@eslack.org>
6255 L: linux-input@vger.kernel.org
6257 F: drivers/input/touchscreen/htcpen.c
6260 M: Nadia Yvette Chambers <nyc@holomorphy.com>
6265 M: Jean-Christophe Trotin <jean-christophe.trotin@st.com>
6266 L: linux-media@vger.kernel.org
6267 T: git git://linuxtv.org/media_tree.git
6268 W: https://linuxtv.org
6270 F: drivers/media/platform/sti/hva
6272 Hyper-V CORE AND DRIVERS
6273 M: "K. Y. Srinivasan" <kys@microsoft.com>
6274 M: Haiyang Zhang <haiyangz@microsoft.com>
6275 M: Stephen Hemminger <sthemmin@microsoft.com>
6276 L: devel@linuxdriverproject.org
6278 F: arch/x86/include/asm/mshyperv.h
6279 F: arch/x86/include/uapi/asm/hyperv.h
6280 F: arch/x86/kernel/cpu/mshyperv.c
6282 F: drivers/hid/hid-hyperv.c
6284 F: drivers/input/serio/hyperv-keyboard.c
6285 F: drivers/pci/host/pci-hyperv.c
6286 F: drivers/net/hyperv/
6287 F: drivers/scsi/storvsc_drv.c
6288 F: drivers/uio/uio_hv_generic.c
6289 F: drivers/video/fbdev/hyperv_fb.c
6290 F: include/linux/hyperv.h
6292 F: Documentation/ABI/stable/sysfs-bus-vmbus
6295 M: Peter Rosin <peda@axentia.se>
6296 L: linux-i2c@vger.kernel.org
6298 F: Documentation/i2c/i2c-topology
6299 F: Documentation/i2c/muxes/
6300 F: Documentation/devicetree/bindings/i2c/i2c-mux*
6301 F: Documentation/devicetree/bindings/i2c/i2c-arb*
6302 F: Documentation/devicetree/bindings/i2c/i2c-gate*
6303 F: drivers/i2c/i2c-mux.c
6304 F: drivers/i2c/muxes/
6305 F: include/linux/i2c-mux.h
6307 I2C OVER PARALLEL PORT
6308 M: Jean Delvare <jdelvare@suse.com>
6309 L: linux-i2c@vger.kernel.org
6311 F: Documentation/i2c/busses/i2c-parport
6312 F: Documentation/i2c/busses/i2c-parport-light
6313 F: drivers/i2c/busses/i2c-parport.c
6314 F: drivers/i2c/busses/i2c-parport-light.c
6316 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6317 M: Jean Delvare <jdelvare@suse.com>
6318 L: linux-i2c@vger.kernel.org
6320 F: Documentation/i2c/busses/i2c-ali1535
6321 F: Documentation/i2c/busses/i2c-ali1563
6322 F: Documentation/i2c/busses/i2c-ali15x3
6323 F: Documentation/i2c/busses/i2c-amd756
6324 F: Documentation/i2c/busses/i2c-amd8111
6325 F: Documentation/i2c/busses/i2c-i801
6326 F: Documentation/i2c/busses/i2c-nforce2
6327 F: Documentation/i2c/busses/i2c-piix4
6328 F: Documentation/i2c/busses/i2c-sis5595
6329 F: Documentation/i2c/busses/i2c-sis630
6330 F: Documentation/i2c/busses/i2c-sis96x
6331 F: Documentation/i2c/busses/i2c-via
6332 F: Documentation/i2c/busses/i2c-viapro
6333 F: drivers/i2c/busses/i2c-ali1535.c
6334 F: drivers/i2c/busses/i2c-ali1563.c
6335 F: drivers/i2c/busses/i2c-ali15x3.c
6336 F: drivers/i2c/busses/i2c-amd756.c
6337 F: drivers/i2c/busses/i2c-amd756-s4882.c
6338 F: drivers/i2c/busses/i2c-amd8111.c
6339 F: drivers/i2c/busses/i2c-i801.c
6340 F: drivers/i2c/busses/i2c-isch.c
6341 F: drivers/i2c/busses/i2c-nforce2.c
6342 F: drivers/i2c/busses/i2c-nforce2-s4985.c
6343 F: drivers/i2c/busses/i2c-piix4.c
6344 F: drivers/i2c/busses/i2c-sis5595.c
6345 F: drivers/i2c/busses/i2c-sis630.c
6346 F: drivers/i2c/busses/i2c-sis96x.c
6347 F: drivers/i2c/busses/i2c-via.c
6348 F: drivers/i2c/busses/i2c-viapro.c
6350 I2C/SMBUS ISMT DRIVER
6351 M: Seth Heasley <seth.heasley@intel.com>
6352 M: Neil Horman <nhorman@tuxdriver.com>
6353 L: linux-i2c@vger.kernel.org
6354 F: drivers/i2c/busses/i2c-ismt.c
6355 F: Documentation/i2c/busses/i2c-ismt
6357 I2C/SMBUS STUB DRIVER
6358 M: Jean Delvare <jdelvare@suse.com>
6359 L: linux-i2c@vger.kernel.org
6361 F: drivers/i2c/i2c-stub.c
6364 M: Wolfram Sang <wsa@the-dreams.de>
6365 L: linux-i2c@vger.kernel.org
6366 W: https://i2c.wiki.kernel.org/
6367 Q: https://patchwork.ozlabs.org/project/linux-i2c/list/
6368 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6370 F: Documentation/devicetree/bindings/i2c/
6371 F: Documentation/i2c/
6374 F: include/linux/i2c.h
6375 F: include/linux/i2c-*.h
6376 F: include/uapi/linux/i2c.h
6377 F: include/uapi/linux/i2c-*.h
6380 M: Mika Westerberg <mika.westerberg@linux.intel.com>
6381 L: linux-i2c@vger.kernel.org
6382 L: linux-acpi@vger.kernel.org
6386 M: Jean Delvare <jdelvare@suse.com>
6387 L: linux-i2c@vger.kernel.org
6389 F: Documentation/i2c/busses/i2c-taos-evm
6390 F: drivers/i2c/busses/i2c-taos-evm.c
6393 M: Till Harbaum <till@harbaum.org>
6394 L: linux-i2c@vger.kernel.org
6395 W: http://www.harbaum.org/till/i2c_tiny_usb
6397 F: drivers/i2c/busses/i2c-tiny-usb.c
6400 M: "H. Peter Anvin" <hpa@zytor.com>
6404 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6405 M: "H. Peter Anvin" <hpa@zytor.com>
6406 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6409 IA64 (Itanium) PLATFORM
6410 M: Tony Luck <tony.luck@intel.com>
6411 M: Fenghua Yu <fenghua.yu@intel.com>
6412 L: linux-ia64@vger.kernel.org
6413 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6417 IBM Power VMX Cryptographic instructions
6418 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6419 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6420 L: linux-crypto@vger.kernel.org
6422 F: drivers/crypto/vmx/Makefile
6423 F: drivers/crypto/vmx/Kconfig
6424 F: drivers/crypto/vmx/vmx.c
6425 F: drivers/crypto/vmx/aes*
6426 F: drivers/crypto/vmx/ghash*
6427 F: drivers/crypto/vmx/ppc-xlate.pl
6429 IBM Power in-Nest Crypto Acceleration
6430 M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
6431 M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
6432 L: linux-crypto@vger.kernel.org
6434 F: drivers/crypto/nx/Makefile
6435 F: drivers/crypto/nx/Kconfig
6436 F: drivers/crypto/nx/nx-aes*
6437 F: drivers/crypto/nx/nx-sha*
6438 F: drivers/crypto/nx/nx.*
6439 F: drivers/crypto/nx/nx_csbcpb.h
6440 F: drivers/crypto/nx/nx_debugfs.h
6442 IBM Power 842 compression accelerator
6443 M: Haren Myneni <haren@us.ibm.com>
6445 F: drivers/crypto/nx/Makefile
6446 F: drivers/crypto/nx/Kconfig
6447 F: drivers/crypto/nx/nx-842*
6448 F: include/linux/sw842.h
6452 IBM Power Linux RAID adapter
6453 M: Brian King <brking@us.ibm.com>
6455 F: drivers/scsi/ipr.*
6457 IBM Power Virtual Ethernet Device Driver
6458 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6459 L: netdev@vger.kernel.org
6461 F: drivers/net/ethernet/ibm/ibmveth.*
6463 IBM Power SRIOV Virtual NIC Device Driver
6464 M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
6465 M: John Allen <jallen@linux.vnet.ibm.com>
6466 L: netdev@vger.kernel.org
6468 F: drivers/net/ethernet/ibm/ibmvnic.*
6470 IBM Power Virtual SCSI Device Drivers
6471 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6472 L: linux-scsi@vger.kernel.org
6474 F: drivers/scsi/ibmvscsi/ibmvscsi*
6475 F: include/scsi/viosrp.h
6477 IBM Power Virtual SCSI Device Target Driver
6478 M: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
6479 M: Michael Cyr <mikecyr@linux.vnet.ibm.com>
6480 L: linux-scsi@vger.kernel.org
6481 L: target-devel@vger.kernel.org
6483 F: drivers/scsi/ibmvscsi_tgt/
6485 IBM Power Virtual FC Device Drivers
6486 M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
6487 L: linux-scsi@vger.kernel.org
6489 F: drivers/scsi/ibmvscsi/ibmvfc*
6491 IBM ServeRAID RAID DRIVER
6493 F: drivers/scsi/ips.*
6495 ICH LPC AND GPIO DRIVER
6496 M: Peter Tyser <ptyser@xes-inc.com>
6498 F: drivers/mfd/lpc_ich.c
6499 F: drivers/gpio/gpio-ich.c
6501 IDT VersaClock 5 CLOCK DRIVER
6502 M: Marek Vasut <marek.vasut@gmail.com>
6504 F: drivers/clk/clk-versaclock5.c
6507 M: "David S. Miller" <davem@davemloft.net>
6508 L: linux-ide@vger.kernel.org
6509 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
6510 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6512 F: Documentation/ide/
6514 F: include/linux/ide.h
6516 IDEAPAD LAPTOP EXTRAS DRIVER
6517 M: Ike Panhc <ike.pan@canonical.com>
6518 L: platform-driver-x86@vger.kernel.org
6519 W: http://launchpad.net/ideapad-laptop
6521 F: drivers/platform/x86/ideapad-laptop.c
6523 IDEAPAD LAPTOP SLIDEBAR DRIVER
6524 M: Andrey Moiseev <o2g.org.ru@gmail.com>
6525 L: linux-input@vger.kernel.org
6526 W: https://github.com/o2genum/ideapad-slidebar
6528 F: drivers/input/misc/ideapad_slidebar.c
6531 M: Borislav Petkov <bp@alien8.de>
6532 L: linux-ide@vger.kernel.org
6534 F: Documentation/cdrom/ide-cd
6535 F: drivers/ide/ide-cd*
6537 IEEE 802.15.4 SUBSYSTEM
6538 M: Alexander Aring <alex.aring@gmail.com>
6539 M: Stefan Schmidt <stefan@osg.samsung.com>
6540 L: linux-wpan@vger.kernel.org
6541 W: http://wpan.cakelab.org/
6542 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6543 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6547 F: drivers/net/ieee802154/
6548 F: include/linux/nl802154.h
6549 F: include/linux/ieee802154.h
6550 F: include/net/nl802154.h
6551 F: include/net/mac802154.h
6552 F: include/net/af_ieee802154.h
6553 F: include/net/cfg802154.h
6554 F: include/net/ieee802154_netdev.h
6555 F: Documentation/networking/ieee802154.txt
6558 M: Yotam Gigi <yotamg@mellanox.com>
6559 M: Jamal Hadi Salim <jhs@mojatatu.com>
6561 F: include/net/ife.h
6562 F: include/uapi/linux/ife.h
6564 IGORPLUG-USB IR RECEIVER
6565 M: Sean Young <sean@mess.org>
6566 L: linux-media@vger.kernel.org
6568 F: drivers/media/rc/igorplugusb.c
6570 IGUANAWORKS USB IR TRANSCEIVER
6571 M: Sean Young <sean@mess.org>
6572 L: linux-media@vger.kernel.org
6574 F: drivers/media/rc/iguanair.c
6576 IIO DIGITAL POTENTIOMETER DAC
6577 M: Peter Rosin <peda@axentia.se>
6578 L: linux-iio@vger.kernel.org
6580 F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6581 F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6582 F: drivers/iio/dac/dpot-dac.c
6584 IIO ENVELOPE DETECTOR
6585 M: Peter Rosin <peda@axentia.se>
6586 L: linux-iio@vger.kernel.org
6588 F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6589 F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6590 F: drivers/iio/adc/envelope-detector.c
6593 M: Peter Rosin <peda@axentia.se>
6594 L: linux-iio@vger.kernel.org
6596 F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt
6597 F: drivers/iio/multiplexer/iio-mux.c
6599 IIO SUBSYSTEM AND DRIVERS
6600 M: Jonathan Cameron <jic23@kernel.org>
6601 R: Hartmut Knaack <knaack.h@gmx.de>
6602 R: Lars-Peter Clausen <lars@metafoo.de>
6603 R: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
6604 L: linux-iio@vger.kernel.org
6605 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6607 F: Documentation/devicetree/bindings/iio/
6609 F: drivers/staging/iio/
6610 F: include/linux/iio/
6613 IKANOS/ADI EAGLE ADSL USB DRIVER
6614 M: Matthieu Castet <castet.matthieu@free.fr>
6615 M: Stanislaw Gruszka <stf_xl@wp.pl>
6617 F: drivers/usb/atm/ueagle-atm.c
6619 IMGTEC ASCII LCD DRIVER
6620 M: Paul Burton <paul.burton@imgtec.com>
6622 F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6623 F: drivers/auxdisplay/img-ascii-lcd.c
6625 INA209 HARDWARE MONITOR DRIVER
6626 M: Guenter Roeck <linux@roeck-us.net>
6627 L: linux-hwmon@vger.kernel.org
6629 F: Documentation/hwmon/ina209
6630 F: Documentation/devicetree/bindings/i2c/ina209.txt
6631 F: drivers/hwmon/ina209.c
6633 INA2XX HARDWARE MONITOR DRIVER
6634 M: Guenter Roeck <linux@roeck-us.net>
6635 L: linux-hwmon@vger.kernel.org
6637 F: Documentation/hwmon/ina2xx
6638 F: drivers/hwmon/ina2xx.c
6639 F: include/linux/platform_data/ina2xx.h
6641 INDUSTRY PACK SUBSYSTEM (IPACK)
6642 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
6643 M: Jens Taprogge <jens.taprogge@taprogge.org>
6644 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6645 L: industrypack-devel@lists.sourceforge.net
6646 W: http://industrypack.sourceforge.net
6650 INGENIC JZ4780 DMA Driver
6651 M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6653 F: drivers/dma/dma-jz4780.c
6655 INGENIC JZ4780 NAND DRIVER
6656 M: Harvey Hunt <harveyhuntnexus@gmail.com>
6657 L: linux-mtd@lists.infradead.org
6659 F: drivers/mtd/nand/jz4780_*
6661 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6662 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
6663 M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6664 L: linux-ima-devel@lists.sourceforge.net
6665 L: linux-ima-user@lists.sourceforge.net
6666 L: linux-security-module@vger.kernel.org
6667 T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6669 F: security/integrity/ima/
6671 IMGTEC IR DECODER DRIVER
6672 M: James Hogan <james.hogan@imgtec.com>
6674 F: drivers/media/rc/img-ir/
6676 IMS TWINTURBO FRAMEBUFFER DRIVER
6677 L: linux-fbdev@vger.kernel.org
6679 F: drivers/video/fbdev/imsttfb.c
6681 INFINIBAND SUBSYSTEM
6682 M: Doug Ledford <dledford@redhat.com>
6683 M: Sean Hefty <sean.hefty@intel.com>
6684 M: Hal Rosenstock <hal.rosenstock@gmail.com>
6685 L: linux-rdma@vger.kernel.org
6686 W: http://www.openfabrics.org/
6687 Q: http://patchwork.kernel.org/project/linux-rdma/list/
6688 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6690 F: Documentation/devicetree/bindings/infiniband/
6691 F: Documentation/infiniband/
6692 F: drivers/infiniband/
6693 F: include/uapi/linux/if_infiniband.h
6694 F: include/uapi/rdma/
6698 M: John McCutchan <john@johnmccutchan.com>
6699 M: Robert Love <rlove@rlove.org>
6700 M: Eric Paris <eparis@parisplace.org>
6702 F: Documentation/filesystems/inotify.txt
6703 F: fs/notify/inotify/
6704 F: include/linux/inotify.h
6705 F: include/uapi/linux/inotify.h
6707 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6708 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
6709 L: linux-input@vger.kernel.org
6710 Q: http://patchwork.kernel.org/project/linux-input/list/
6711 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6714 F: include/linux/input.h
6715 F: include/uapi/linux/input.h
6716 F: include/uapi/linux/input-event-codes.h
6717 F: include/linux/input/
6718 F: Documentation/devicetree/bindings/input/
6719 F: Documentation/input/
6721 INPUT MULTITOUCH (MT) PROTOCOL
6722 M: Henrik Rydberg <rydberg@bitmath.org>
6723 L: linux-input@vger.kernel.org
6725 F: Documentation/input/multi-touch-protocol.rst
6726 F: drivers/input/input-mt.c
6729 INSIDE SECURE CRYPTO DRIVER
6730 M: Antoine Tenart <antoine.tenart@free-electrons.com>
6731 F: drivers/crypto/inside-secure/
6733 L: linux-crypto@vger.kernel.org
6735 INTEL ASoC BDW/HSW DRIVERS
6736 M: Jie Yang <yang.jie@linux.intel.com>
6737 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6739 F: sound/soc/intel/common/sst-dsp*
6740 F: sound/soc/intel/common/sst-firmware.c
6741 F: sound/soc/intel/boards/broadwell.c
6742 F: sound/soc/intel/haswell/
6744 INTEL C600 SERIES SAS CONTROLLER DRIVER
6745 M: Intel SCU Linux support <intel-linux-scu@intel.com>
6746 M: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6747 L: linux-scsi@vger.kernel.org
6748 T: git git://git.code.sf.net/p/intel-sas/isci
6750 F: drivers/scsi/isci/
6752 INTEL HID EVENT DRIVER
6753 M: Alex Hung <alex.hung@canonical.com>
6754 L: platform-driver-x86@vger.kernel.org
6756 F: drivers/platform/x86/intel-hid.c
6758 INTEL VIRTUAL BUTTON DRIVER
6759 M: AceLan Kao <acelan.kao@canonical.com>
6760 L: platform-driver-x86@vger.kernel.org
6762 F: drivers/platform/x86/intel-vbtn.c
6765 M: Jacob Pan <jacob.jun.pan@linux.intel.com>
6766 M: Len Brown <lenb@kernel.org>
6767 L: linux-pm@vger.kernel.org
6768 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6769 B: https://bugzilla.kernel.org
6771 F: drivers/idle/intel_idle.c
6773 INTEL INTEGRATED SENSOR HUB DRIVER
6774 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6775 M: Jiri Kosina <jikos@kernel.org>
6776 L: linux-input@vger.kernel.org
6778 F: drivers/hid/intel-ish-hid/
6781 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6782 M: Len Brown <lenb@kernel.org>
6783 L: linux-pm@vger.kernel.org
6785 F: drivers/cpufreq/intel_pstate.c
6787 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6788 M: Maik Broemme <mbroemme@libmpq.org>
6789 L: linux-fbdev@vger.kernel.org
6791 F: Documentation/fb/intelfb.txt
6792 F: drivers/video/fbdev/intelfb/
6794 INTEL 810/815 FRAMEBUFFER DRIVER
6795 M: Antonino Daplas <adaplas@gmail.com>
6796 L: linux-fbdev@vger.kernel.org
6798 F: drivers/video/fbdev/i810/
6800 INTEL MENLOW THERMAL DRIVER
6801 M: Sujith Thomas <sujith.thomas@intel.com>
6802 L: platform-driver-x86@vger.kernel.org
6803 W: https://01.org/linux-acpi
6805 F: drivers/platform/x86/intel_menlow.c
6807 INTEL I/OAT DMA DRIVER
6808 M: Dave Jiang <dave.jiang@intel.com>
6809 R: Dan Williams <dan.j.williams@intel.com>
6810 L: dmaengine@vger.kernel.org
6811 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
6813 F: drivers/dma/ioat*
6816 M: David Woodhouse <dwmw2@infradead.org>
6817 L: iommu@lists.linux-foundation.org
6818 T: git git://git.infradead.org/iommu-2.6.git
6820 F: drivers/iommu/intel-iommu.c
6821 F: include/linux/intel-iommu.h
6823 INTEL IOP-ADMA DMA DRIVER
6824 R: Dan Williams <dan.j.williams@intel.com>
6826 F: drivers/dma/iop-adma.c
6828 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6829 M: Krzysztof Halasa <khalasa@piap.pl>
6831 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
6832 F: arch/arm/mach-ixp4xx/include/mach/npe.h
6833 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6834 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
6835 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
6836 F: drivers/net/wan/ixp4xx_hss.c
6838 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6839 M: Deepak Saxena <dsaxena@plexity.net>
6841 F: drivers/char/hw_random/ixp4xx-rng.c
6843 INTEL ETHERNET DRIVERS
6844 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6845 L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6846 W: http://www.intel.com/support/feedback.htm
6847 W: http://e1000.sourceforge.net/
6848 Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6849 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6850 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6852 F: Documentation/networking/e100.txt
6853 F: Documentation/networking/e1000.txt
6854 F: Documentation/networking/e1000e.txt
6855 F: Documentation/networking/igb.txt
6856 F: Documentation/networking/igbvf.txt
6857 F: Documentation/networking/ixgb.txt
6858 F: Documentation/networking/ixgbe.txt
6859 F: Documentation/networking/ixgbevf.txt
6860 F: Documentation/networking/i40e.txt
6861 F: Documentation/networking/i40evf.txt
6862 F: drivers/net/ethernet/intel/
6863 F: drivers/net/ethernet/intel/*/
6864 F: include/linux/avf/virtchnl.h
6866 INTEL RDMA RNIC DRIVER
6867 M: Faisal Latif <faisal.latif@intel.com>
6868 M: Shiraz Saleem <shiraz.saleem@intel.com>
6869 L: linux-rdma@vger.kernel.org
6871 F: drivers/infiniband/hw/i40iw/
6873 INTEL MERRIFIELD GPIO DRIVER
6874 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6875 L: linux-gpio@vger.kernel.org
6877 F: drivers/gpio/gpio-merrifield.c
6879 INTEL-MID GPIO DRIVER
6880 M: David Cohen <david.a.cohen@linux.intel.com>
6881 L: linux-gpio@vger.kernel.org
6883 F: drivers/gpio/gpio-intel-mid.c
6885 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6886 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
6887 L: linux-wireless@vger.kernel.org
6889 F: Documentation/networking/README.ipw2100
6890 F: Documentation/networking/README.ipw2200
6891 F: drivers/net/wireless/intel/ipw2x00/
6894 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
6896 F: Documentation/trace/intel_th.txt
6897 F: drivers/hwtracing/intel_th/
6899 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6900 M: Ning Sun <ning.sun@intel.com>
6901 L: tboot-devel@lists.sourceforge.net
6902 W: http://tboot.sourceforge.net
6903 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6905 F: Documentation/intel_txt.txt
6906 F: include/linux/tboot.h
6907 F: arch/x86/kernel/tboot.c
6909 INTEL WIRELESS WIMAX CONNECTION 2400
6910 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6911 M: linux-wimax@intel.com
6912 L: wimax@linuxwimax.org (subscribers-only)
6914 W: http://linuxwimax.org
6915 F: Documentation/wimax/README.i2400m
6916 F: drivers/net/wimax/i2400m/
6917 F: include/uapi/linux/wimax/i2400m.h
6919 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6920 M: Stanislaw Gruszka <sgruszka@redhat.com>
6921 L: linux-wireless@vger.kernel.org
6923 F: drivers/net/wireless/intel/iwlegacy/
6925 INTEL WIRELESS WIFI LINK (iwlwifi)
6926 M: Johannes Berg <johannes.berg@intel.com>
6927 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6928 M: Luca Coelho <luciano.coelho@intel.com>
6929 M: Intel Linux Wireless <linuxwifi@intel.com>
6930 L: linux-wireless@vger.kernel.org
6931 W: http://intellinuxwireless.org
6932 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6934 F: drivers/net/wireless/intel/iwlwifi/
6936 INTEL MANAGEMENT ENGINE (mei)
6937 M: Tomas Winkler <tomas.winkler@intel.com>
6938 L: linux-kernel@vger.kernel.org
6940 F: include/uapi/linux/mei.h
6941 F: include/linux/mei_cl_bus.h
6942 F: drivers/misc/mei/*
6943 F: drivers/watchdog/mei_wdt.c
6944 F: Documentation/misc-devices/mei/*
6947 INTEL MIC DRIVERS (mic)
6948 M: Sudeep Dutt <sudeep.dutt@intel.com>
6949 M: Ashutosh Dixit <ashutosh.dixit@intel.com>
6951 W: https://github.com/sudeepdutt/mic
6952 W: http://software.intel.com/en-us/mic-developer
6953 F: include/linux/mic_bus.h
6954 F: include/linux/scif.h
6955 F: include/uapi/linux/mic_common.h
6956 F: include/uapi/linux/mic_ioctl.h
6957 F: include/uapi/linux/scif_ioctl.h
6958 F: drivers/misc/mic/
6959 F: drivers/dma/mic_x100_dma.c
6960 F: drivers/dma/mic_x100_dma.h
6961 F: Documentation/mic/
6963 INTEL PMC/P-Unit IPC DRIVER
6964 M: Zha Qipeng<qipeng.zha@intel.com>
6965 L: platform-driver-x86@vger.kernel.org
6967 F: drivers/platform/x86/intel_pmc_ipc.c
6968 F: drivers/platform/x86/intel_punit_ipc.c
6969 F: arch/x86/include/asm/intel_pmc_ipc.h
6970 F: arch/x86/include/asm/intel_punit_ipc.h
6972 INTEL TELEMETRY DRIVER
6973 M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6974 L: platform-driver-x86@vger.kernel.org
6976 F: arch/x86/include/asm/intel_telemetry.h
6977 F: drivers/platform/x86/intel_telemetry*
6979 INTEL PMC CORE DRIVER
6980 M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6981 M: Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6982 L: platform-driver-x86@vger.kernel.org
6984 F: arch/x86/include/asm/pmc_core.h
6985 F: drivers/platform/x86/intel_pmc_core*
6987 INVENSENSE MPU-3050 GYROSCOPE DRIVER
6988 M: Linus Walleij <linus.walleij@linaro.org>
6989 L: linux-iio@vger.kernel.org
6991 F: drivers/iio/gyro/mpu3050*
6992 F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
6994 IOC3 ETHERNET DRIVER
6995 M: Ralf Baechle <ralf@linux-mips.org>
6996 L: linux-mips@linux-mips.org
6998 F: drivers/net/ethernet/sgi/ioc3-eth.c
7001 M: Pat Gefre <pfg@sgi.com>
7002 L: linux-serial@vger.kernel.org
7004 F: drivers/tty/serial/ioc3_serial.c
7007 M: Joerg Roedel <joro@8bytes.org>
7008 L: iommu@lists.linux-foundation.org
7009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
7011 F: Documentation/devicetree/bindings/iommu/
7013 F: include/linux/iommu.h
7014 F: include/linux/iova.h
7017 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
7019 F: net/ipv4/netfilter/ipt_MASQUERADE.c
7022 M: Corey Minyard <minyard@acm.org>
7023 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
7024 W: http://openipmi.sourceforge.net/
7026 F: Documentation/IPMI.txt
7027 F: drivers/char/ipmi/
7028 F: include/linux/ipmi*
7029 F: include/uapi/linux/ipmi*
7031 QCOM AUDIO (ASoC) DRIVERS
7032 M: Patrick Lai <plai@codeaurora.org>
7033 M: Banajit Goswami <bgoswami@codeaurora.org>
7034 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7038 IPS SCSI RAID DRIVER
7039 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
7040 L: linux-scsi@vger.kernel.org
7041 W: http://www.adaptec.com/
7043 F: drivers/scsi/ips*
7046 M: Wensong Zhang <wensong@linux-vs.org>
7047 M: Simon Horman <horms@verge.net.au>
7048 M: Julian Anastasov <ja@ssi.bg>
7049 L: netdev@vger.kernel.org
7050 L: lvs-devel@vger.kernel.org
7052 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
7053 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
7054 F: Documentation/networking/ipvs-sysctl.txt
7055 F: include/net/ip_vs.h
7056 F: include/uapi/linux/ip_vs.h
7057 F: net/netfilter/ipvs/
7060 M: Jiri Kosina <jikos@kernel.org>
7061 M: David Sterba <dsterba@suse.com>
7063 F: drivers/tty/ipwireless/
7066 L: netdev@vger.kernel.org
7068 F: include/net/ipx.h
7069 F: include/uapi/linux/ipx.h
7073 M: Samuel Ortiz <samuel@sortiz.org>
7074 L: irda-users@lists.sourceforge.net (subscribers-only)
7075 L: netdev@vger.kernel.org
7076 W: http://irda.sourceforge.net/
7078 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
7079 F: Documentation/networking/irda.txt
7080 F: drivers/net/irda/
7081 F: include/net/irda/
7085 M: Thomas Gleixner <tglx@linutronix.de>
7086 L: linux-kernel@vger.kernel.org
7088 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7092 M: Thomas Gleixner <tglx@linutronix.de>
7093 M: Jason Cooper <jason@lakedaemon.net>
7094 M: Marc Zyngier <marc.zyngier@arm.com>
7095 L: linux-kernel@vger.kernel.org
7097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7098 T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
7099 F: Documentation/devicetree/bindings/interrupt-controller/
7102 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
7103 M: Marc Zyngier <marc.zyngier@arm.com>
7105 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
7106 F: Documentation/IRQ-domain.txt
7107 F: include/linux/irqdomain.h
7108 F: kernel/irq/irqdomain.c
7112 M: William Breathitt Gray <vilhelm.gray@gmail.com>
7114 F: Documentation/isa.txt
7115 F: drivers/base/isa.c
7116 F: include/linux/isa.h
7119 M: Jaroslav Kysela <perex@perex.cz>
7121 F: Documentation/isapnp.txt
7122 F: drivers/pnp/isapnp/
7123 F: include/linux/isapnp.h
7126 M: Hans Verkuil <hverkuil@xs4all.nl>
7127 L: linux-media@vger.kernel.org
7128 T: git git://linuxtv.org/media_tree.git
7129 W: https://linuxtv.org
7131 F: drivers/media/radio/radio-isa*
7133 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
7134 M: Peter Jones <pjones@redhat.com>
7135 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
7137 F: drivers/firmware/iscsi_ibft*
7140 M: Lee Duncan <lduncan@suse.com>
7141 M: Chris Leech <cleech@redhat.com>
7142 L: open-iscsi@googlegroups.com
7143 W: www.open-iscsi.com
7145 F: drivers/scsi/*iscsi*
7146 F: include/scsi/*iscsi*
7148 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7149 M: Or Gerlitz <ogerlitz@mellanox.com>
7150 M: Sagi Grimberg <sagi@grimberg.me>
7151 M: Roi Dayan <roid@mellanox.com>
7152 L: linux-rdma@vger.kernel.org
7154 W: http://www.openfabrics.org
7155 W: www.open-iscsi.org
7156 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7157 F: drivers/infiniband/ulp/iser/
7159 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7160 M: Sagi Grimberg <sagi@grimberg.me>
7161 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7162 L: linux-rdma@vger.kernel.org
7163 L: target-devel@vger.kernel.org
7165 W: http://www.linux-iscsi.org
7166 F: drivers/infiniband/ulp/isert
7169 M: Karsten Keil <isdn@linux-pingi.de>
7170 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7171 L: netdev@vger.kernel.org
7172 W: http://www.isdn4linux.de
7173 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7175 F: Documentation/isdn/
7177 F: include/linux/isdn.h
7178 F: include/linux/isdn/
7179 F: include/uapi/linux/isdn.h
7180 F: include/uapi/linux/isdn/
7182 ISDN SUBSYSTEM (Eicon active card driver)
7183 M: Armin Schindler <mac@melware.de>
7184 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
7185 W: http://www.melware.de
7187 F: drivers/isdn/hardware/eicon/
7189 IT87 HARDWARE MONITORING DRIVER
7190 M: Jean Delvare <jdelvare@suse.com>
7191 L: linux-hwmon@vger.kernel.org
7193 F: Documentation/hwmon/it87
7194 F: drivers/hwmon/it87.c
7197 M: Antti Palosaari <crope@iki.fi>
7198 L: linux-media@vger.kernel.org
7199 W: https://linuxtv.org
7200 W: http://palosaari.fi/linux/
7201 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7202 T: git git://linuxtv.org/anttip/media_tree.git
7204 F: drivers/media/tuners/it913x*
7206 IVTV VIDEO4LINUX DRIVER
7207 M: Andy Walls <awalls@md.metrocast.net>
7208 L: ivtv-devel@ivtvdriver.org (subscribers-only)
7209 L: linux-media@vger.kernel.org
7210 T: git git://linuxtv.org/media_tree.git
7211 W: http://www.ivtvdriver.org
7213 F: Documentation/media/v4l-drivers/ivtv*
7214 F: drivers/media/pci/ivtv/
7215 F: include/uapi/linux/ivtv*
7217 IX2505V MEDIA DRIVER
7218 M: Malcolm Priestley <tvboxspy@gmail.com>
7219 L: linux-media@vger.kernel.org
7220 W: https://linuxtv.org
7221 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7223 F: drivers/media/dvb-frontends/ix2505v*
7225 JC42.4 TEMPERATURE SENSOR DRIVER
7226 M: Guenter Roeck <linux@roeck-us.net>
7227 L: linux-hwmon@vger.kernel.org
7229 F: drivers/hwmon/jc42.c
7230 F: Documentation/hwmon/jc42
7233 M: Dave Kleikamp <shaggy@kernel.org>
7234 L: jfs-discussion@lists.sourceforge.net
7235 W: http://jfs.sourceforge.net/
7236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7238 F: Documentation/filesystems/jfs.txt
7242 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
7243 L: netdev@vger.kernel.org
7245 F: drivers/net/ethernet/jme.*
7247 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7248 M: David Woodhouse <dwmw2@infradead.org>
7249 L: linux-mtd@lists.infradead.org
7250 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
7253 F: include/uapi/linux/jffs2.h
7255 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7256 M: "Theodore Ts'o" <tytso@mit.edu>
7257 M: Jan Kara <jack@suse.com>
7258 L: linux-ext4@vger.kernel.org
7261 F: include/linux/jbd2.h
7263 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7264 M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
7265 L: linux-media@vger.kernel.org
7267 F: drivers/media/platform/rcar_jpu.c
7269 JSM Neo PCI based serial card
7270 M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
7271 L: linux-serial@vger.kernel.org
7273 F: drivers/tty/serial/jsm/
7275 K10TEMP HARDWARE MONITORING DRIVER
7276 M: Clemens Ladisch <clemens@ladisch.de>
7277 L: linux-hwmon@vger.kernel.org
7279 F: Documentation/hwmon/k10temp
7280 F: drivers/hwmon/k10temp.c
7282 K8TEMP HARDWARE MONITORING DRIVER
7283 M: Rudolf Marek <r.marek@assembler.cz>
7284 L: linux-hwmon@vger.kernel.org
7286 F: Documentation/hwmon/k8temp
7287 F: drivers/hwmon/k8temp.c
7290 M: Andrey Ryabinin <aryabinin@virtuozzo.com>
7291 R: Alexander Potapenko <glider@google.com>
7292 R: Dmitry Vyukov <dvyukov@google.com>
7293 L: kasan-dev@googlegroups.com
7295 F: arch/*/include/asm/kasan.h
7296 F: arch/*/mm/kasan_init*
7297 F: Documentation/dev-tools/kasan.rst
7298 F: include/linux/kasan*.h
7301 F: scripts/Makefile.kasan
7304 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
7305 L: linux-kbuild@vger.kernel.org
7306 T: git git://gitorious.org/linux-kconfig/linux-kconfig
7308 F: Documentation/kbuild/kconfig-language.txt
7312 M: Dave Young <dyoung@redhat.com>
7313 M: Baoquan He <bhe@redhat.com>
7314 R: Vivek Goyal <vgoyal@redhat.com>
7315 L: kexec@lists.infradead.org
7316 W: http://lse.sourceforge.net/kdump/
7318 F: Documentation/kdump/
7320 KEENE FM RADIO TRANSMITTER DRIVER
7321 M: Hans Verkuil <hverkuil@xs4all.nl>
7322 L: linux-media@vger.kernel.org
7323 T: git git://linuxtv.org/media_tree.git
7324 W: https://linuxtv.org
7326 F: drivers/media/radio/radio-keene*
7328 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7329 M: Ian Kent <raven@themaw.net>
7330 L: autofs@vger.kernel.org
7334 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7335 M: Masahiro Yamada <yamada.masahiro@socionext.com>
7336 M: Michal Marek <mmarek@suse.com>
7337 T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7338 L: linux-kbuild@vger.kernel.org
7340 F: Documentation/kbuild/
7342 F: scripts/Makefile.*
7348 L: kernel-janitors@vger.kernel.org
7349 W: http://kernelnewbies.org/KernelJanitors
7352 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7353 M: "J. Bruce Fields" <bfields@fieldses.org>
7354 M: Jeff Layton <jlayton@poochiereds.net>
7355 L: linux-nfs@vger.kernel.org
7356 W: http://nfs.sourceforge.net/
7357 T: git git://linux-nfs.org/~bfields/linux.git
7360 F: include/uapi/linux/nfsd/
7364 F: include/linux/lockd/
7365 F: include/linux/sunrpc/
7366 F: include/uapi/linux/sunrpc/
7368 KERNEL SELFTEST FRAMEWORK
7369 M: Shuah Khan <shuahkh@osg.samsung.com>
7370 M: Shuah Khan <shuah@kernel.org>
7371 L: linux-kselftest@vger.kernel.org
7372 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
7374 F: tools/testing/selftests/
7375 F: Documentation/dev-tools/kselftest*
7377 KERNEL VIRTUAL MACHINE (KVM)
7378 M: Paolo Bonzini <pbonzini@redhat.com>
7379 M: Radim Krčmář <rkrcmar@redhat.com>
7380 L: kvm@vger.kernel.org
7381 W: http://www.linux-kvm.org
7382 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7384 F: Documentation/*/kvm*.txt
7385 F: Documentation/virtual/kvm/
7387 F: arch/x86/kernel/kvm.c
7388 F: arch/x86/kernel/kvmclock.c
7389 F: arch/*/include/asm/kvm*
7390 F: include/linux/kvm*
7391 F: include/uapi/linux/kvm*
7395 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
7396 M: Joerg Roedel <joro@8bytes.org>
7397 L: kvm@vger.kernel.org
7398 W: http://www.linux-kvm.org/
7400 F: arch/x86/include/asm/svm.h
7401 F: arch/x86/kvm/svm.c
7403 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
7404 M: Alexander Graf <agraf@suse.com>
7405 L: kvm-ppc@vger.kernel.org
7406 W: http://www.linux-kvm.org/
7407 T: git git://github.com/agraf/linux-2.6.git
7409 F: arch/powerpc/include/asm/kvm*
7410 F: arch/powerpc/kvm/
7412 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7413 M: Christian Borntraeger <borntraeger@de.ibm.com>
7414 M: Cornelia Huck <cohuck@redhat.com>
7415 L: linux-s390@vger.kernel.org
7416 W: http://www.ibm.com/developerworks/linux/linux390/
7417 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7419 F: Documentation/s390/kvm.txt
7420 F: arch/s390/include/asm/kvm*
7422 F: arch/s390/mm/gmap.c
7424 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
7425 M: Christoffer Dall <christoffer.dall@linaro.org>
7426 M: Marc Zyngier <marc.zyngier@arm.com>
7427 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7428 L: kvmarm@lists.cs.columbia.edu
7429 W: http://systems.cs.columbia.edu/projects/kvm-arm
7430 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7432 F: arch/arm/include/uapi/asm/kvm*
7433 F: arch/arm/include/asm/kvm*
7436 F: include/kvm/arm_*
7438 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7439 M: Christoffer Dall <christoffer.dall@linaro.org>
7440 M: Marc Zyngier <marc.zyngier@arm.com>
7441 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7442 L: kvmarm@lists.cs.columbia.edu
7444 F: arch/arm64/include/uapi/asm/kvm*
7445 F: arch/arm64/include/asm/kvm*
7448 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7449 M: James Hogan <james.hogan@imgtec.com>
7450 L: linux-mips@linux-mips.org
7452 F: arch/mips/include/uapi/asm/kvm*
7453 F: arch/mips/include/asm/kvm*
7457 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7458 M: Tejun Heo <tj@kernel.org>
7459 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7461 F: include/linux/kernfs.h
7465 M: Eric Biederman <ebiederm@xmission.com>
7466 W: http://kernel.org/pub/linux/utils/kernel/kexec/
7467 L: kexec@lists.infradead.org
7469 F: include/linux/kexec.h
7470 F: include/uapi/linux/kexec.h
7474 M: David Howells <dhowells@redhat.com>
7475 L: keyrings@vger.kernel.org
7477 F: Documentation/security/keys/core.rst
7478 F: include/linux/key.h
7479 F: include/linux/key-type.h
7480 F: include/linux/keyctl.h
7481 F: include/uapi/linux/keyctl.h
7486 M: David Safford <safford@us.ibm.com>
7487 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7488 L: linux-security-module@vger.kernel.org
7489 L: keyrings@vger.kernel.org
7491 F: Documentation/security/keys/trusted-encrypted.rst
7492 F: include/keys/trusted-type.h
7493 F: security/keys/trusted.c
7494 F: security/keys/trusted.h
7497 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
7498 M: David Safford <safford@us.ibm.com>
7499 L: linux-security-module@vger.kernel.org
7500 L: keyrings@vger.kernel.org
7502 F: Documentation/security/keys/trusted-encrypted.rst
7503 F: include/keys/encrypted-type.h
7504 F: security/keys/encrypted-keys/
7506 KGDB / KDB /debug_core
7507 M: Jason Wessel <jason.wessel@windriver.com>
7508 W: http://kgdb.wiki.kernel.org/
7509 L: kgdb-bugreport@lists.sourceforge.net
7510 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7512 F: Documentation/dev-tools/kgdb.rst
7513 F: drivers/misc/kgdbts.c
7514 F: drivers/tty/serial/kgdboc.c
7515 F: include/linux/kdb.h
7516 F: include/linux/kgdb.h
7520 M: Vegard Nossum <vegardno@ifi.uio.no>
7521 M: Pekka Enberg <penberg@kernel.org>
7523 F: Documentation/dev-tools/kmemcheck.rst
7524 F: arch/x86/include/asm/kmemcheck.h
7525 F: arch/x86/mm/kmemcheck/
7526 F: include/linux/kmemcheck.h
7530 M: Catalin Marinas <catalin.marinas@arm.com>
7532 F: Documentation/dev-tools/kmemleak.rst
7533 F: include/linux/kmemleak.h
7535 F: mm/kmemleak-test.c
7538 M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
7539 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
7540 M: "David S. Miller" <davem@davemloft.net>
7541 M: Masami Hiramatsu <mhiramat@kernel.org>
7543 F: Documentation/kprobes.txt
7544 F: include/linux/kprobes.h
7545 F: include/asm-generic/kprobes.h
7548 KS0108 LCD CONTROLLER DRIVER
7549 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
7550 W: http://miguelojeda.es/auxdisplay.htm
7551 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7553 F: Documentation/auxdisplay/ks0108
7554 F: drivers/auxdisplay/ks0108.c
7555 F: include/linux/ks0108.h
7558 M: David Ahern <dsa@cumulusnetworks.com>
7559 L: netdev@vger.kernel.org
7562 F: include/net/l3mdev.h
7564 LANTIQ MIPS ARCHITECTURE
7565 M: John Crispin <john@phrozen.org>
7566 L: linux-mips@linux-mips.org
7571 L: linux-x25@vger.kernel.org
7573 F: Documentation/networking/lapb-module.txt
7577 LASI 53c700 driver for PARISC
7578 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7579 L: linux-scsi@vger.kernel.org
7581 F: Documentation/scsi/53c700.txt
7582 F: drivers/scsi/53c700*
7585 M: Richard Purdie <rpurdie@rpsys.net>
7586 M: Jacek Anaszewski <jacek.anaszewski@gmail.com>
7587 M: Pavel Machek <pavel@ucw.cz>
7588 L: linux-leds@vger.kernel.org
7589 T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7591 F: Documentation/devicetree/bindings/leds/
7593 F: include/linux/leds.h
7595 LEGACY EEPROM DRIVER
7596 M: Jean Delvare <jdelvare@suse.com>
7598 F: Documentation/misc-devices/eeprom
7599 F: drivers/misc/eeprom/eeprom.c
7601 LEGO USB Tower driver
7602 M: Juergen Stuber <starblue@users.sourceforge.net>
7603 L: legousb-devel@lists.sourceforge.net
7604 W: http://legousb.sourceforge.net/
7606 F: drivers/usb/misc/legousbtower.c
7609 M: Michael Krufky <mkrufky@linuxtv.org>
7610 L: linux-media@vger.kernel.org
7611 W: https://linuxtv.org
7612 W: http://github.com/mkrufky
7613 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7614 T: git git://linuxtv.org/mkrufky/tuners.git
7616 F: drivers/media/dvb-frontends/lg2160.*
7618 LGDT3305 MEDIA DRIVER
7619 M: Michael Krufky <mkrufky@linuxtv.org>
7620 L: linux-media@vger.kernel.org
7621 W: https://linuxtv.org
7622 W: http://github.com/mkrufky
7623 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7624 T: git git://linuxtv.org/mkrufky/tuners.git
7626 F: drivers/media/dvb-frontends/lgdt3305.*
7629 M: Rusty Russell <rusty@rustcorp.com.au>
7630 L: lguest@lists.ozlabs.org
7631 W: http://lguest.ozlabs.org/
7633 F: arch/x86/include/asm/lguest*.h
7636 F: include/linux/lguest*.h
7639 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7640 M: Tejun Heo <tj@kernel.org>
7641 L: linux-ide@vger.kernel.org
7642 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7645 F: include/linux/ata.h
7646 F: include/linux/libata.h
7647 F: Documentation/devicetree/bindings/ata/
7649 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7650 M: Viresh Kumar <vireshk@kernel.org>
7651 L: linux-ide@vger.kernel.org
7652 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7654 F: include/linux/pata_arasan_cf_data.h
7655 F: drivers/ata/pata_arasan_cf.c
7658 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7659 M: Tejun Heo <tj@kernel.org>
7660 L: linux-ide@vger.kernel.org
7661 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7663 F: drivers/ata/pata_*.c
7664 F: drivers/ata/ata_generic.c
7666 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
7667 M: Linus Walleij <linus.walleij@linaro.org>
7668 L: linux-ide@vger.kernel.org
7669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7671 F: drivers/ata/pata_ftide010.c
7672 F: drivers/ata/sata_gemini.c
7673 F: drivers/ata/sata_gemini.h
7675 LIBATA SATA AHCI PLATFORM devices support
7676 M: Hans de Goede <hdegoede@redhat.com>
7677 M: Tejun Heo <tj@kernel.org>
7678 L: linux-ide@vger.kernel.org
7679 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7681 F: drivers/ata/ahci_platform.c
7682 F: drivers/ata/libahci_platform.c
7683 F: include/linux/ahci_platform.h
7685 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7686 M: Mikael Pettersson <mikpelinux@gmail.com>
7687 L: linux-ide@vger.kernel.org
7688 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7690 F: drivers/ata/sata_promise.*
7693 M: Sasha Levin <alexander.levin@verizon.com>
7695 F: tools/lib/lockdep/
7697 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7698 M: Dan Williams <dan.j.williams@intel.com>
7699 L: linux-nvdimm@lists.01.org
7700 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7704 F: include/linux/nd.h
7705 F: include/linux/libnvdimm.h
7706 F: include/uapi/linux/ndctl.h
7708 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7709 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7710 L: linux-nvdimm@lists.01.org
7711 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7713 F: drivers/nvdimm/blk.c
7714 F: drivers/nvdimm/region_devs.c
7715 F: drivers/acpi/nfit*
7717 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7718 M: Vishal Verma <vishal.l.verma@intel.com>
7719 L: linux-nvdimm@lists.01.org
7720 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7722 F: drivers/nvdimm/btt*
7724 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7725 M: Ross Zwisler <ross.zwisler@linux.intel.com>
7726 L: linux-nvdimm@lists.01.org
7727 Q: https://patchwork.kernel.org/project/linux-nvdimm/list/
7729 F: drivers/nvdimm/pmem*
7731 LIGHTNVM PLATFORM SUPPORT
7732 M: Matias Bjorling <mb@lightnvm.io>
7733 W: http://github/OpenChannelSSD
7734 L: linux-block@vger.kernel.org
7736 F: drivers/lightnvm/
7737 F: include/linux/lightnvm.h
7738 F: include/uapi/linux/lightnvm.h
7740 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7741 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7742 M: Paul Mackerras <paulus@samba.org>
7743 M: Michael Ellerman <mpe@ellerman.id.au>
7744 W: https://github.com/linuxppc/linux/wiki
7745 L: linuxppc-dev@lists.ozlabs.org
7746 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7747 T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7749 F: Documentation/ABI/stable/sysfs-firmware-opal-*
7750 F: Documentation/devicetree/bindings/powerpc/
7751 F: Documentation/devicetree/bindings/rtc/rtc-opal.txt
7752 F: Documentation/devicetree/bindings/i2c/i2c-opal.txt
7753 F: Documentation/powerpc/
7755 F: drivers/char/tpm/tpm_ibmvtpm*
7756 F: drivers/crypto/nx/
7757 F: drivers/crypto/vmx/
7758 F: drivers/i2c/busses/i2c-opal.c
7759 F: drivers/net/ethernet/ibm/ibmveth.*
7760 F: drivers/net/ethernet/ibm/ibmvnic.*
7761 F: drivers/pci/hotplug/pnv_php.c
7762 F: drivers/pci/hotplug/rpa*
7763 F: drivers/rtc/rtc-opal.c
7764 F: drivers/scsi/ibmvscsi/
7765 F: drivers/tty/hvc/hvc_opal.c
7766 F: tools/testing/selftests/powerpc
7773 LINUX FOR POWER MACINTOSH
7774 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7775 W: http://www.penguinppc.org/
7776 L: linuxppc-dev@lists.ozlabs.org
7778 F: arch/powerpc/platforms/powermac/
7779 F: drivers/macintosh/
7781 LINUX FOR POWERPC EMBEDDED MPC5XXX
7782 M: Anatolij Gustschin <agust@denx.de>
7783 L: linuxppc-dev@lists.ozlabs.org
7784 T: git git://git.denx.de/linux-denx-agust.git
7786 F: arch/powerpc/platforms/512x/
7787 F: arch/powerpc/platforms/52xx/
7789 LINUX FOR POWERPC EMBEDDED PPC4XX
7790 M: Alistair Popple <alistair@popple.id.au>
7791 M: Matt Porter <mporter@kernel.crashing.org>
7792 W: http://www.penguinppc.org/
7793 L: linuxppc-dev@lists.ozlabs.org
7795 F: arch/powerpc/platforms/40x/
7796 F: arch/powerpc/platforms/44x/
7798 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7799 L: linuxppc-dev@lists.ozlabs.org
7801 F: arch/powerpc/*/*virtex*
7802 F: arch/powerpc/*/*/*virtex*
7804 LINUX FOR POWERPC EMBEDDED PPC8XX
7805 M: Vitaly Bordug <vitb@kernel.crashing.org>
7806 W: http://www.penguinppc.org/
7807 L: linuxppc-dev@lists.ozlabs.org
7809 F: arch/powerpc/platforms/8xx/
7811 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7812 M: Scott Wood <oss@buserror.net>
7813 M: Kumar Gala <galak@kernel.crashing.org>
7814 W: http://www.penguinppc.org/
7815 L: linuxppc-dev@lists.ozlabs.org
7816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7818 F: arch/powerpc/platforms/83xx/
7819 F: arch/powerpc/platforms/85xx/
7820 F: Documentation/devicetree/bindings/powerpc/fsl/
7822 LINUX FOR POWERPC PA SEMI PWRFICIENT
7823 L: linuxppc-dev@lists.ozlabs.org
7825 F: arch/powerpc/platforms/pasemi/
7826 F: drivers/*/*pasemi*
7827 F: drivers/*/*/*pasemi*
7829 LINUX SECURITY MODULE (LSM) FRAMEWORK
7830 M: Chris Wright <chrisw@sous-sol.org>
7831 L: linux-security-module@vger.kernel.org
7834 LIS3LV02D ACCELEROMETER DRIVER
7835 M: Eric Piel <eric.piel@tremplin-utc.net>
7837 F: Documentation/misc-devices/lis3lv02d
7838 F: drivers/misc/lis3lv02d/
7839 F: drivers/platform/x86/hp_accel.c
7842 M: Josh Poimboeuf <jpoimboe@redhat.com>
7843 M: Jessica Yu <jeyu@kernel.org>
7844 M: Jiri Kosina <jikos@kernel.org>
7845 M: Miroslav Benes <mbenes@suse.cz>
7846 R: Petr Mladek <pmladek@suse.com>
7848 F: kernel/livepatch/
7849 F: include/linux/livepatch.h
7850 F: arch/x86/include/asm/livepatch.h
7851 F: arch/x86/kernel/livepatch.c
7852 F: Documentation/livepatch/
7853 F: Documentation/ABI/testing/sysfs-kernel-livepatch
7854 F: samples/livepatch/
7855 L: live-patching@vger.kernel.org
7856 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7858 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7859 M: Kees Cook <keescook@chromium.org>
7861 F: drivers/misc/lkdtm*
7864 L: netdev@vger.kernel.org
7866 F: include/linux/llc.h
7867 F: include/uapi/linux/llc.h
7871 LM73 HARDWARE MONITOR DRIVER
7872 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
7873 L: linux-hwmon@vger.kernel.org
7875 F: drivers/hwmon/lm73.c
7877 LM78 HARDWARE MONITOR DRIVER
7878 M: Jean Delvare <jdelvare@suse.com>
7879 L: linux-hwmon@vger.kernel.org
7881 F: Documentation/hwmon/lm78
7882 F: drivers/hwmon/lm78.c
7884 LM83 HARDWARE MONITOR DRIVER
7885 M: Jean Delvare <jdelvare@suse.com>
7886 L: linux-hwmon@vger.kernel.org
7888 F: Documentation/hwmon/lm83
7889 F: drivers/hwmon/lm83.c
7891 LM90 HARDWARE MONITOR DRIVER
7892 M: Jean Delvare <jdelvare@suse.com>
7893 L: linux-hwmon@vger.kernel.org
7895 F: Documentation/hwmon/lm90
7896 F: Documentation/devicetree/bindings/hwmon/lm90.txt
7897 F: drivers/hwmon/lm90.c
7898 F: include/dt-bindings/thermal/lm90.h
7900 LM95234 HARDWARE MONITOR DRIVER
7901 M: Guenter Roeck <linux@roeck-us.net>
7902 L: linux-hwmon@vger.kernel.org
7904 F: Documentation/hwmon/lm95234
7905 F: drivers/hwmon/lm95234.c
7907 LME2510 MEDIA DRIVER
7908 M: Malcolm Priestley <tvboxspy@gmail.com>
7909 L: linux-media@vger.kernel.org
7910 W: https://linuxtv.org
7911 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7913 F: drivers/media/usb/dvb-usb-v2/lmedm04*
7916 M: Peter Zijlstra <peterz@infradead.org>
7917 M: Ingo Molnar <mingo@redhat.com>
7918 L: linux-kernel@vger.kernel.org
7919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7921 F: Documentation/locking/
7922 F: include/linux/lockdep.h
7923 F: include/linux/spinlock*.h
7924 F: arch/*/include/asm/spinlock*.h
7925 F: include/linux/rwlock*.h
7926 F: include/linux/mutex*.h
7927 F: arch/*/include/asm/mutex*.h
7928 F: include/linux/rwsem*.h
7929 F: arch/*/include/asm/rwsem.h
7930 F: include/linux/seqlock.h
7931 F: lib/locking*.[ch]
7934 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7935 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
7936 L: linux-ntfs-dev@lists.sourceforge.net
7937 W: http://www.linux-ntfs.org/content/view/19/37/
7939 F: Documentation/ldm.txt
7940 F: block/partitions/ldm.*
7942 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7943 M: Sathya Prakash <sathya.prakash@broadcom.com>
7944 M: Chaitra P B <chaitra.basappa@broadcom.com>
7945 M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7946 L: MPT-FusionLinux.pdl@broadcom.com
7947 L: linux-scsi@vger.kernel.org
7948 W: http://www.avagotech.com/support/
7950 F: drivers/message/fusion/
7951 F: drivers/scsi/mpt2sas/
7952 F: drivers/scsi/mpt3sas/
7954 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7955 M: Matthew Wilcox <matthew@wil.cx>
7956 L: linux-scsi@vger.kernel.org
7958 F: drivers/scsi/sym53c8xx_2/
7960 LTC4261 HARDWARE MONITOR DRIVER
7961 M: Guenter Roeck <linux@roeck-us.net>
7962 L: linux-hwmon@vger.kernel.org
7964 F: Documentation/hwmon/ltc4261
7965 F: drivers/hwmon/ltc4261.c
7967 LTC4306 I2C MULTIPLEXER DRIVER
7968 M: Michael Hennerich <michael.hennerich@analog.com>
7969 W: http://ez.analog.com/community/linux-device-drivers
7970 L: linux-i2c@vger.kernel.org
7972 F: drivers/i2c/muxes/i2c-mux-ltc4306.c
7973 F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
7975 LTP (Linux Test Project)
7976 M: Mike Frysinger <vapier@gentoo.org>
7977 M: Cyril Hrubis <chrubis@suse.cz>
7978 M: Wanlong Gao <wanlong.gao@gmail.com>
7979 M: Jan Stancek <jstancek@redhat.com>
7980 M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7981 M: Alexey Kodanev <alexey.kodanev@oracle.com>
7982 L: ltp@lists.linux.it (subscribers-only)
7983 W: http://linux-test-project.github.io/
7984 T: git git://github.com/linux-test-project/ltp.git
7988 W: http://www.linux-m32r.org/
7993 M: Geert Uytterhoeven <geert@linux-m68k.org>
7994 L: linux-m68k@lists.linux-m68k.org
7995 W: http://www.linux-m68k.org/
7996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
8001 M68K ON APPLE MACINTOSH
8002 M: Joshua Thompson <funaho@jurai.org>
8003 W: http://www.mac.linux-m68k.org/
8004 L: linux-m68k@lists.linux-m68k.org
8009 M: Philip Blundell <philb@gnu.org>
8010 W: http://www.tazenda.demon.co.uk/phil/linux-hp
8014 M88DS3103 MEDIA DRIVER
8015 M: Antti Palosaari <crope@iki.fi>
8016 L: linux-media@vger.kernel.org
8017 W: https://linuxtv.org
8018 W: http://palosaari.fi/linux/
8019 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8020 T: git git://linuxtv.org/anttip/media_tree.git
8022 F: drivers/media/dvb-frontends/m88ds3103*
8024 M88RS2000 MEDIA DRIVER
8025 M: Malcolm Priestley <tvboxspy@gmail.com>
8026 L: linux-media@vger.kernel.org
8027 W: https://linuxtv.org
8028 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8030 F: drivers/media/dvb-frontends/m88rs2000*
8032 MA901 MASTERKIT USB FM RADIO DRIVER
8033 M: Alexey Klimov <klimov.linux@gmail.com>
8034 L: linux-media@vger.kernel.org
8035 T: git git://linuxtv.org/media_tree.git
8037 F: drivers/media/radio/radio-ma901.c
8040 M: Johannes Berg <johannes@sipsolutions.net>
8041 L: linux-wireless@vger.kernel.org
8042 W: http://wireless.kernel.org/
8043 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
8044 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
8046 F: Documentation/networking/mac80211-injection.txt
8047 F: include/net/mac80211.h
8049 F: drivers/net/wireless/mac80211_hwsim.[ch]
8052 M: Jassi Brar <jassisinghbrar@gmail.com>
8053 L: linux-kernel@vger.kernel.org
8056 F: include/linux/mailbox_client.h
8057 F: include/linux/mailbox_controller.h
8059 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
8060 M: Michael Kerrisk <mtk.manpages@gmail.com>
8061 W: http://www.kernel.org/doc/man-pages
8062 L: linux-man@vger.kernel.org
8065 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
8066 M: Rahul Bedarkar <rahulbedarkar89@gmail.com>
8067 L: linux-mips@linux-mips.org
8069 F: arch/mips/boot/dts/img/pistachio_marduk.dts
8071 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
8072 M: Andrew Lunn <andrew@lunn.ch>
8073 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8074 L: netdev@vger.kernel.org
8076 F: drivers/net/dsa/mv88e6xxx/
8077 F: Documentation/devicetree/bindings/net/dsa/marvell.txt
8079 MARVELL ARMADA DRM SUPPORT
8080 M: Russell King <linux@armlinux.org.uk>
8082 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
8083 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
8084 F: drivers/gpu/drm/armada/
8085 F: include/uapi/drm/armada_drm.h
8086 F: Documentation/devicetree/bindings/display/armada/
8088 MARVELL CRYPTO DRIVER
8089 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8090 M: Arnaud Ebalard <arno@natisbad.org>
8091 F: drivers/crypto/marvell/
8093 L: linux-crypto@vger.kernel.org
8095 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
8096 M: Mirko Lindner <mlindner@marvell.com>
8097 M: Stephen Hemminger <stephen@networkplumber.org>
8098 L: netdev@vger.kernel.org
8100 F: drivers/net/ethernet/marvell/sk*
8102 MARVELL LIBERTAS WIRELESS DRIVER
8103 L: libertas-dev@lists.infradead.org
8105 F: drivers/net/wireless/marvell/libertas/
8107 MARVELL MV643XX ETHERNET DRIVER
8108 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8109 L: netdev@vger.kernel.org
8111 F: drivers/net/ethernet/marvell/mv643xx_eth.*
8112 F: include/linux/mv643xx.h
8114 MARVELL MV88X3310 PHY DRIVER
8115 M: Russell King <rmk@armlinux.org.uk>
8116 L: netdev@vger.kernel.org
8118 F: drivers/net/phy/marvell10g.c
8120 MARVELL MVNETA ETHERNET DRIVER
8121 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8122 L: netdev@vger.kernel.org
8124 F: drivers/net/ethernet/marvell/mvneta.*
8126 MARVELL MWIFIEX WIRELESS DRIVER
8127 M: Amitkumar Karwar <amitkarwar@gmail.com>
8128 M: Nishant Sarmukadam <nishants@marvell.com>
8129 M: Ganapathi Bhat <gbhat@marvell.com>
8130 M: Xinming Hu <huxm@marvell.com>
8131 L: linux-wireless@vger.kernel.org
8133 F: drivers/net/wireless/marvell/mwifiex/
8135 MARVELL MWL8K WIRELESS DRIVER
8136 M: Lennert Buytenhek <buytenh@wantstofly.org>
8137 L: linux-wireless@vger.kernel.org
8139 F: drivers/net/wireless/marvell/mwl8k.c
8141 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
8142 M: Nicolas Pitre <nico@fluxnic.net>
8144 F: drivers/mmc/host/mvsdio.*
8146 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
8147 M: Hu Ziji <huziji@marvell.com>
8148 L: linux-mmc@vger.kernel.org
8150 F: drivers/mmc/host/sdhci-xenon*
8151 F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
8153 MATROX FRAMEBUFFER DRIVER
8154 L: linux-fbdev@vger.kernel.org
8156 F: drivers/video/fbdev/matrox/matroxfb_*
8157 F: include/uapi/linux/matroxfb.h
8159 MAX16065 HARDWARE MONITOR DRIVER
8160 M: Guenter Roeck <linux@roeck-us.net>
8161 L: linux-hwmon@vger.kernel.org
8163 F: Documentation/hwmon/max16065
8164 F: drivers/hwmon/max16065.c
8166 MAX20751 HARDWARE MONITOR DRIVER
8167 M: Guenter Roeck <linux@roeck-us.net>
8168 L: linux-hwmon@vger.kernel.org
8170 F: Documentation/hwmon/max20751
8171 F: drivers/hwmon/max20751.c
8173 MAX2175 SDR TUNER DRIVER
8174 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8175 L: linux-media@vger.kernel.org
8176 T: git git://linuxtv.org/media_tree.git
8178 F: Documentation/devicetree/bindings/media/i2c/max2175.txt
8179 F: Documentation/media/v4l-drivers/max2175.rst
8180 F: drivers/media/i2c/max2175*
8181 F: include/uapi/linux/max2175.h
8183 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8184 L: linux-hwmon@vger.kernel.org
8186 F: Documentation/hwmon/max6650
8187 F: drivers/hwmon/max6650.c
8189 MAX6697 HARDWARE MONITOR DRIVER
8190 M: Guenter Roeck <linux@roeck-us.net>
8191 L: linux-hwmon@vger.kernel.org
8193 F: Documentation/hwmon/max6697
8194 F: Documentation/devicetree/bindings/i2c/max6697.txt
8195 F: drivers/hwmon/max6697.c
8196 F: include/linux/platform_data/max6697.h
8198 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8199 M: Peter Rosin <peda@axentia.se>
8200 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8202 F: Documentation/devicetree/bindings/sound/max9860.txt
8203 F: sound/soc/codecs/max9860.*
8205 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8206 M: Krzysztof Kozlowski <krzk@kernel.org>
8207 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8208 L: linux-pm@vger.kernel.org
8210 F: drivers/power/supply/max14577_charger.c
8211 F: drivers/power/supply/max77693_charger.c
8213 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
8214 M: Javier Martinez Canillas <javier@dowhile0.org>
8215 L: linux-kernel@vger.kernel.org
8217 F: drivers/regulator/max77802-regulator.c
8218 F: Documentation/devicetree/bindings/*/*max77802.txt
8219 F: include/dt-bindings/*/*max77802.h
8221 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8222 M: Chanwoo Choi <cw00.choi@samsung.com>
8223 M: Krzysztof Kozlowski <krzk@kernel.org>
8224 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
8225 L: linux-kernel@vger.kernel.org
8227 F: drivers/*/max14577*.c
8228 F: drivers/*/max77686*.c
8229 F: drivers/*/max77693*.c
8230 F: drivers/extcon/extcon-max14577.c
8231 F: drivers/extcon/extcon-max77693.c
8232 F: drivers/rtc/rtc-max77686.c
8233 F: drivers/clk/clk-max77686.c
8234 F: Documentation/devicetree/bindings/mfd/max14577.txt
8235 F: Documentation/devicetree/bindings/*/max77686.txt
8236 F: Documentation/devicetree/bindings/mfd/max77693.txt
8237 F: Documentation/devicetree/bindings/clock/maxim,max77686.txt
8238 F: include/linux/mfd/max14577*.h
8239 F: include/linux/mfd/max77686*.h
8240 F: include/linux/mfd/max77693*.h
8242 MAXIRADIO FM RADIO RECEIVER DRIVER
8243 M: Hans Verkuil <hverkuil@xs4all.nl>
8244 L: linux-media@vger.kernel.org
8245 T: git git://linuxtv.org/media_tree.git
8246 W: https://linuxtv.org
8248 F: drivers/media/radio/radio-maxiradio*
8250 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8251 M: Peter Rosin <peda@axentia.se>
8252 L: linux-iio@vger.kernel.org
8254 F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8255 F: drivers/iio/potentiometer/mcp4531.c
8257 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8258 M: William Breathitt Gray <vilhelm.gray@gmail.com>
8259 L: linux-iio@vger.kernel.org
8261 F: drivers/iio/dac/cio-dac.c
8263 MEDIA DRIVERS FOR RENESAS - DRIF
8264 M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com>
8265 L: linux-media@vger.kernel.org
8266 L: linux-renesas-soc@vger.kernel.org
8267 T: git git://linuxtv.org/media_tree.git
8269 F: Documentation/devicetree/bindings/media/renesas,drif.txt
8270 F: drivers/media/platform/rcar_drif.c
8272 MEDIA DRIVERS FOR FREESCALE IMX
8273 M: Steve Longerbeam <slongerbeam@gmail.com>
8274 M: Philipp Zabel <p.zabel@pengutronix.de>
8275 L: linux-media@vger.kernel.org
8276 T: git git://linuxtv.org/media_tree.git
8278 F: Documentation/devicetree/bindings/media/imx.txt
8279 F: Documentation/media/v4l-drivers/imx.rst
8280 F: drivers/staging/media/imx/
8281 F: include/linux/imx-media.h
8282 F: include/media/imx.h
8284 MEDIA DRIVERS FOR RENESAS - FCP
8285 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8286 L: linux-media@vger.kernel.org
8287 L: linux-renesas-soc@vger.kernel.org
8288 T: git git://linuxtv.org/media_tree.git
8290 F: Documentation/devicetree/bindings/media/renesas,fcp.txt
8291 F: drivers/media/platform/rcar-fcp.c
8292 F: include/media/rcar-fcp.h
8294 MEDIA DRIVERS FOR RENESAS - FDP1
8295 M: Kieran Bingham <kieran@bingham.xyz>
8296 L: linux-media@vger.kernel.org
8297 L: linux-renesas-soc@vger.kernel.org
8298 T: git git://linuxtv.org/media_tree.git
8300 F: Documentation/devicetree/bindings/media/renesas,fdp1.txt
8301 F: drivers/media/platform/rcar_fdp1.c
8303 MEDIA DRIVERS FOR RENESAS - VIN
8304 M: Niklas Söderlund <niklas.soderlund@ragnatech.se>
8305 L: linux-media@vger.kernel.org
8306 L: linux-renesas-soc@vger.kernel.org
8307 T: git git://linuxtv.org/media_tree.git
8309 F: Documentation/devicetree/bindings/media/rcar_vin.txt
8310 F: drivers/media/platform/rcar-vin/
8312 MEDIA DRIVERS FOR RENESAS - VSP1
8313 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8314 L: linux-media@vger.kernel.org
8315 L: linux-renesas-soc@vger.kernel.org
8316 T: git git://linuxtv.org/media_tree.git
8318 F: Documentation/devicetree/bindings/media/renesas,vsp1.txt
8319 F: drivers/media/platform/vsp1/
8321 MEDIA DRIVERS FOR HELENE
8322 M: Abylay Ospan <aospan@netup.ru>
8323 L: linux-media@vger.kernel.org
8324 W: https://linuxtv.org
8326 T: git git://linuxtv.org/media_tree.git
8328 F: drivers/media/dvb-frontends/helene*
8330 MEDIA DRIVERS FOR ASCOT2E
8331 M: Sergey Kozlov <serjk@netup.ru>
8332 M: Abylay Ospan <aospan@netup.ru>
8333 L: linux-media@vger.kernel.org
8334 W: https://linuxtv.org
8336 T: git git://linuxtv.org/media_tree.git
8338 F: drivers/media/dvb-frontends/ascot2e*
8340 MEDIA DRIVERS FOR CXD2841ER
8341 M: Sergey Kozlov <serjk@netup.ru>
8342 M: Abylay Ospan <aospan@netup.ru>
8343 L: linux-media@vger.kernel.org
8344 W: https://linuxtv.org
8346 T: git git://linuxtv.org/media_tree.git
8348 F: drivers/media/dvb-frontends/cxd2841er*
8350 MEDIA DRIVERS FOR HORUS3A
8351 M: Sergey Kozlov <serjk@netup.ru>
8352 M: Abylay Ospan <aospan@netup.ru>
8353 L: linux-media@vger.kernel.org
8354 W: https://linuxtv.org
8356 T: git git://linuxtv.org/media_tree.git
8358 F: drivers/media/dvb-frontends/horus3a*
8360 MEDIA DRIVERS FOR LNBH25
8361 M: Sergey Kozlov <serjk@netup.ru>
8362 M: Abylay Ospan <aospan@netup.ru>
8363 L: linux-media@vger.kernel.org
8364 W: https://linuxtv.org
8366 T: git git://linuxtv.org/media_tree.git
8368 F: drivers/media/dvb-frontends/lnbh25*
8370 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8371 M: Sergey Kozlov <serjk@netup.ru>
8372 M: Abylay Ospan <aospan@netup.ru>
8373 L: linux-media@vger.kernel.org
8374 W: https://linuxtv.org
8376 T: git git://linuxtv.org/media_tree.git
8378 F: drivers/media/pci/netup_unidvb/*
8380 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8381 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
8382 M: Mauro Carvalho Chehab <mchehab@kernel.org>
8383 P: LinuxTV.org Project
8384 L: linux-media@vger.kernel.org
8385 W: https://linuxtv.org
8386 Q: http://patchwork.kernel.org/project/linux-media/list/
8387 T: git git://linuxtv.org/media_tree.git
8389 F: Documentation/devicetree/bindings/media/
8390 F: Documentation/media/
8392 F: drivers/staging/media/
8393 F: include/linux/platform_data/media/
8395 F: include/uapi/linux/dvb/
8396 F: include/uapi/linux/videodev2.h
8397 F: include/uapi/linux/media.h
8398 F: include/uapi/linux/v4l2-*
8399 F: include/uapi/linux/meye.h
8400 F: include/uapi/linux/ivtv*
8401 F: include/uapi/linux/uvcvideo.h
8403 MEDIATEK ETHERNET DRIVER
8404 M: Felix Fietkau <nbd@openwrt.org>
8405 M: John Crispin <blogic@openwrt.org>
8406 L: netdev@vger.kernel.org
8408 F: drivers/net/ethernet/mediatek/
8410 MEDIATEK JPEG DRIVER
8411 M: Rick Chang <rick.chang@mediatek.com>
8412 M: Bin Liu <bin.liu@mediatek.com>
8414 F: drivers/media/platform/mtk-jpeg/
8415 F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8417 MEDIATEK MEDIA DRIVER
8418 M: Tiffany Lin <tiffany.lin@mediatek.com>
8419 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8421 F: drivers/media/platform/mtk-vcodec/
8422 F: drivers/media/platform/mtk-vpu/
8423 F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8424 F: Documentation/devicetree/bindings/media/mediatek-vpu.txt
8427 M: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
8428 M: Houlong Wei <houlong.wei@mediatek.com>
8429 M: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
8431 F: drivers/media/platform/mtk-mdp/
8432 F: drivers/media/platform/mtk-vpu/
8433 F: Documentation/devicetree/bindings/media/mediatek-mdp.txt
8435 MEDIATEK MT7601U WIRELESS LAN DRIVER
8436 M: Jakub Kicinski <kubakici@wp.pl>
8437 L: linux-wireless@vger.kernel.org
8439 F: drivers/net/wireless/mediatek/mt7601u/
8441 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
8442 M: Sean Wang <sean.wang@mediatek.com>
8444 F: drivers/char/hw_random/mtk-rng.c
8446 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8447 M: Peter Senna Tschudin <peter.senna@collabora.com>
8448 M: Martin Donnelly <martin.donnelly@ge.com>
8449 M: Martyn Welch <martyn.welch@collabora.co.uk>
8451 F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8452 F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8454 MEGARAID SCSI/SAS DRIVERS
8455 M: Kashyap Desai <kashyap.desai@broadcom.com>
8456 M: Sumit Saxena <sumit.saxena@broadcom.com>
8457 M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
8458 L: megaraidlinux.pdl@broadcom.com
8459 L: linux-scsi@vger.kernel.org
8460 W: http://www.avagotech.com/support/
8462 F: Documentation/scsi/megaraid.txt
8463 F: drivers/scsi/megaraid.*
8464 F: drivers/scsi/megaraid/
8466 MELFAS MIP4 TOUCHSCREEN DRIVER
8467 M: Sangwon Jee <jeesw@melfas.com>
8468 W: http://www.melfas.com
8470 F: drivers/input/touchscreen/melfas_mip4.c
8471 F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8473 MELLANOX ETHERNET DRIVER (mlx4_en)
8474 M: Tariq Toukan <tariqt@mellanox.com>
8475 L: netdev@vger.kernel.org
8477 W: http://www.mellanox.com
8478 Q: http://patchwork.ozlabs.org/project/netdev/list/
8479 F: drivers/net/ethernet/mellanox/mlx4/en_*
8481 MELLANOX ETHERNET DRIVER (mlx5e)
8482 M: Saeed Mahameed <saeedm@mellanox.com>
8483 L: netdev@vger.kernel.org
8485 W: http://www.mellanox.com
8486 Q: http://patchwork.ozlabs.org/project/netdev/list/
8487 F: drivers/net/ethernet/mellanox/mlx5/core/en_*
8489 MELLANOX ETHERNET INNOVA DRIVER
8490 M: Ilan Tayari <ilant@mellanox.com>
8491 R: Boris Pismenny <borisp@mellanox.com>
8492 L: netdev@vger.kernel.org
8494 W: http://www.mellanox.com
8495 Q: http://patchwork.ozlabs.org/project/netdev/list/
8496 F: drivers/net/ethernet/mellanox/mlx5/core/fpga/*
8497 F: include/linux/mlx5/mlx5_ifc_fpga.h
8499 MELLANOX ETHERNET INNOVA IPSEC DRIVER
8500 M: Ilan Tayari <ilant@mellanox.com>
8501 R: Boris Pismenny <borisp@mellanox.com>
8502 L: netdev@vger.kernel.org
8504 W: http://www.mellanox.com
8505 Q: http://patchwork.ozlabs.org/project/netdev/list/
8506 F: drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/*
8507 F: drivers/net/ethernet/mellanox/mlx5/core/ipsec*
8509 MELLANOX ETHERNET SWITCH DRIVERS
8510 M: Jiri Pirko <jiri@mellanox.com>
8511 M: Ido Schimmel <idosch@mellanox.com>
8512 L: netdev@vger.kernel.org
8514 W: http://www.mellanox.com
8515 Q: http://patchwork.ozlabs.org/project/netdev/list/
8516 F: drivers/net/ethernet/mellanox/mlxsw/
8518 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
8519 M: Yotam Gigi <yotamg@mellanox.com>
8520 L: netdev@vger.kernel.org
8522 W: http://www.mellanox.com
8523 Q: http://patchwork.ozlabs.org/project/netdev/list/
8524 F: drivers/net/ethernet/mellanox/mlxfw/
8526 MELLANOX MLXCPLD I2C AND MUX DRIVER
8527 M: Vadim Pasternak <vadimp@mellanox.com>
8528 M: Michael Shych <michaelsh@mellanox.com>
8529 L: linux-i2c@vger.kernel.org
8531 F: drivers/i2c/busses/i2c-mlxcpld.c
8532 F: drivers/i2c/muxes/i2c-mux-mlxcpld.c
8533 F: Documentation/i2c/busses/i2c-mlxcpld
8535 MELLANOX MLXCPLD LED DRIVER
8536 M: Vadim Pasternak <vadimp@mellanox.com>
8537 L: linux-leds@vger.kernel.org
8539 F: drivers/leds/leds-mlxcpld.c
8540 F: Documentation/leds/leds-mlxcpld.txt
8542 MELLANOX PLATFORM DRIVER
8543 M: Vadim Pasternak <vadimp@mellanox.com>
8544 L: platform-driver-x86@vger.kernel.org
8546 F: drivers/platform/x86/mlx-platform.c
8548 MELLANOX MLX CPLD HOTPLUG DRIVER
8549 M: Vadim Pasternak <vadimp@mellanox.com>
8550 L: platform-driver-x86@vger.kernel.org
8552 F: drivers/platform/x86/mlxcpld-hotplug.c
8553 F: include/linux/platform_data/mlxcpld-hotplug.h
8555 SOFT-ROCE DRIVER (rxe)
8556 M: Moni Shoua <monis@mellanox.com>
8557 L: linux-rdma@vger.kernel.org
8559 W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
8560 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8561 F: drivers/infiniband/sw/rxe/
8562 F: include/uapi/rdma/rdma_user_rxe.h
8565 M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8566 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8567 L: linux-kernel@vger.kernel.org
8569 F: kernel/membarrier.c
8570 F: include/uapi/linux/membarrier.h
8573 L: linux-mm@kvack.org
8574 W: http://www.linux-mm.org
8576 F: include/linux/mm.h
8577 F: include/linux/gfp.h
8578 F: include/linux/mmzone.h
8579 F: include/linux/memory_hotplug.h
8580 F: include/linux/vmalloc.h
8583 MEMORY TECHNOLOGY DEVICES (MTD)
8584 M: David Woodhouse <dwmw2@infradead.org>
8585 M: Brian Norris <computersforpeace@gmail.com>
8586 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8587 M: Marek Vasut <marek.vasut@gmail.com>
8588 M: Richard Weinberger <richard@nod.at>
8589 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
8590 L: linux-mtd@lists.infradead.org
8591 W: http://www.linux-mtd.infradead.org/
8592 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8593 T: git git://git.infradead.org/linux-mtd.git master
8594 T: git git://git.infradead.org/l2-mtd.git master
8596 F: Documentation/devicetree/bindings/mtd/
8598 F: include/linux/mtd/
8599 F: include/uapi/mtd/
8601 MEN A21 WATCHDOG DRIVER
8602 M: Johannes Thumshirn <morbidrsa@gmail.com>
8603 L: linux-watchdog@vger.kernel.org
8605 F: drivers/watchdog/mena21_wdt.c
8607 MEN CHAMELEON BUS (mcb)
8608 M: Johannes Thumshirn <morbidrsa@gmail.com>
8611 F: include/linux/mcb.h
8612 F: Documentation/men-chameleon-bus.txt
8614 MEN F21BMC (Board Management Controller)
8615 M: Andreas Werner <andreas.werner@men.de>
8617 F: drivers/mfd/menf21bmc.c
8618 F: drivers/watchdog/menf21bmc_wdt.c
8619 F: drivers/leds/leds-menf21bmc.c
8620 F: drivers/hwmon/menf21bmc_hwmon.c
8621 F: Documentation/hwmon/menf21bmc
8624 M: James Hogan <james.hogan@imgtec.com>
8625 L: linux-metag@vger.kernel.org
8626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8629 F: Documentation/metag/
8630 F: Documentation/devicetree/bindings/metag/
8631 F: Documentation/devicetree/bindings/interrupt-controller/img,*
8632 F: drivers/clocksource/metag_generic.c
8633 F: drivers/irqchip/irq-metag.c
8634 F: drivers/irqchip/irq-metag-ext.c
8635 F: drivers/tty/metag_da.c
8637 MICROBLAZE ARCHITECTURE
8638 M: Michal Simek <monstr@monstr.eu>
8639 W: http://www.monstr.eu/fdt/
8640 T: git git://git.monstr.eu/linux-2.6-microblaze.git
8644 MICROCHIP / ATMEL AT91 SERIAL DRIVER
8645 M: Richard Genoud <richard.genoud@gmail.com>
8647 F: drivers/tty/serial/atmel_serial.c
8648 F: drivers/tty/serial/atmel_serial.h
8650 MICROCHIP / ATMEL DMA DRIVER
8651 M: Ludovic Desroches <ludovic.desroches@microchip.com>
8652 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8653 L: dmaengine@vger.kernel.org
8655 F: drivers/dma/at_hdmac.c
8656 F: drivers/dma/at_hdmac_regs.h
8657 F: include/linux/platform_data/dma-atmel.h
8659 MICROCHIP / ATMEL ISC DRIVER
8660 M: Songjun Wu <songjun.wu@microchip.com>
8661 L: linux-media@vger.kernel.org
8663 F: drivers/media/platform/atmel/atmel-isc.c
8664 F: drivers/media/platform/atmel/atmel-isc-regs.h
8665 F: devicetree/bindings/media/atmel-isc.txt
8667 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
8668 M: Woojung Huh <Woojung.Huh@microchip.com>
8669 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
8670 L: netdev@vger.kernel.org
8672 F: net/dsa/tag_ksz.c
8673 F: drivers/net/dsa/microchip/*
8674 F: include/linux/platform_data/microchip-ksz.h
8675 F: Documentation/devicetree/bindings/net/dsa/ksz.txt
8677 MICROCHIP USB251XB DRIVER
8678 M: Richard Leitner <richard.leitner@skidata.com>
8679 L: linux-usb@vger.kernel.org
8681 F: drivers/usb/misc/usb251xb.c
8682 F: Documentation/devicetree/bindings/usb/usb251xb.txt
8684 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8685 M: Chen Yu <yu.c.chen@intel.com>
8686 L: platform-driver-x86@vger.kernel.org
8688 F: drivers/platform/x86/surfacepro3_button.c
8691 M: Oliver Neukum <oliver@neukum.org>
8693 F: drivers/usb/image/microtek.*
8696 M: Ralf Baechle <ralf@linux-mips.org>
8697 L: linux-mips@linux-mips.org
8698 W: http://www.linux-mips.org/
8699 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
8700 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
8702 F: Documentation/devicetree/bindings/mips/
8703 F: Documentation/mips/
8706 MIPS/LOONGSON1 ARCHITECTURE
8707 M: Keguang Zhang <keguang.zhang@gmail.com>
8708 L: linux-mips@linux-mips.org
8710 F: arch/mips/loongson32/
8711 F: arch/mips/include/asm/mach-loongson32/
8712 F: drivers/*/*loongson1*
8713 F: drivers/*/*/*loongson1*
8715 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8716 M: Hans Verkuil <hverkuil@xs4all.nl>
8717 L: linux-media@vger.kernel.org
8718 T: git git://linuxtv.org/media_tree.git
8719 W: https://linuxtv.org
8721 F: drivers/media/radio/radio-miropcm20*
8723 MELLANOX MLX4 core VPI driver
8724 M: Tariq Toukan <tariqt@mellanox.com>
8725 L: netdev@vger.kernel.org
8726 L: linux-rdma@vger.kernel.org
8727 W: http://www.mellanox.com
8728 Q: http://patchwork.ozlabs.org/project/netdev/list/
8730 F: drivers/net/ethernet/mellanox/mlx4/
8731 F: include/linux/mlx4/
8733 MELLANOX MLX4 IB driver
8734 M: Yishai Hadas <yishaih@mellanox.com>
8735 L: linux-rdma@vger.kernel.org
8736 W: http://www.mellanox.com
8737 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8739 F: drivers/infiniband/hw/mlx4/
8740 F: include/linux/mlx4/
8741 F: include/uapi/rdma/mlx4-abi.h
8743 MELLANOX MLX5 core VPI driver
8744 M: Saeed Mahameed <saeedm@mellanox.com>
8745 M: Matan Barak <matanb@mellanox.com>
8746 M: Leon Romanovsky <leonro@mellanox.com>
8747 L: netdev@vger.kernel.org
8748 L: linux-rdma@vger.kernel.org
8749 W: http://www.mellanox.com
8750 Q: http://patchwork.ozlabs.org/project/netdev/list/
8752 F: drivers/net/ethernet/mellanox/mlx5/core/
8753 F: include/linux/mlx5/
8755 MELLANOX MLX5 IB driver
8756 M: Matan Barak <matanb@mellanox.com>
8757 M: Leon Romanovsky <leonro@mellanox.com>
8758 L: linux-rdma@vger.kernel.org
8759 W: http://www.mellanox.com
8760 Q: http://patchwork.kernel.org/project/linux-rdma/list/
8762 F: drivers/infiniband/hw/mlx5/
8763 F: include/linux/mlx5/
8764 F: include/uapi/rdma/mlx5-abi.h
8766 MELEXIS MLX90614 DRIVER
8767 M: Crt Mori <cmo@melexis.com>
8768 L: linux-iio@vger.kernel.org
8769 W: http://www.melexis.com
8771 F: drivers/iio/temperature/mlx90614.c
8773 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8774 M: Don Brace <don.brace@microsemi.com>
8775 L: esc.storagedev@microsemi.com
8776 L: linux-scsi@vger.kernel.org
8778 F: drivers/scsi/smartpqi/smartpqi*.[ch]
8779 F: drivers/scsi/smartpqi/Kconfig
8780 F: drivers/scsi/smartpqi/Makefile
8781 F: include/linux/cciss*.h
8782 F: include/uapi/linux/cciss*.h
8783 F: Documentation/scsi/smartpqi.txt
8785 MN88472 MEDIA DRIVER
8786 M: Antti Palosaari <crope@iki.fi>
8787 L: linux-media@vger.kernel.org
8788 W: https://linuxtv.org
8789 W: http://palosaari.fi/linux/
8790 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8792 F: drivers/media/dvb-frontends/mn88472*
8794 MN88473 MEDIA DRIVER
8795 M: Antti Palosaari <crope@iki.fi>
8796 L: linux-media@vger.kernel.org
8797 W: https://linuxtv.org
8798 W: http://palosaari.fi/linux/
8799 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8801 F: drivers/media/dvb-frontends/mn88473*
8804 M: Jessica Yu <jeyu@kernel.org>
8805 M: Rusty Russell <rusty@rustcorp.com.au>
8806 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
8808 F: include/linux/module.h
8811 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
8812 W: http://popies.net/meye/
8814 F: Documentation/media/v4l-drivers/meye*
8815 F: drivers/media/pci/meye/
8816 F: include/uapi/linux/meye.h
8818 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
8819 M: Jiri Slaby <jirislaby@gmail.com>
8821 F: Documentation/serial/moxa-smartio
8822 F: drivers/tty/mxser.*
8824 MR800 AVERMEDIA USB FM RADIO DRIVER
8825 M: Alexey Klimov <klimov.linux@gmail.com>
8826 L: linux-media@vger.kernel.org
8827 T: git git://linuxtv.org/media_tree.git
8829 F: drivers/media/radio/radio-mr800.c
8831 MRF24J40 IEEE 802.15.4 RADIO DRIVER
8832 M: Alan Ott <alan@signal11.us>
8833 L: linux-wpan@vger.kernel.org
8835 F: drivers/net/ieee802154/mrf24j40.c
8836 F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
8839 M: "Lee, Chun-Yi" <jlee@suse.com>
8840 L: platform-driver-x86@vger.kernel.org
8842 F: drivers/platform/x86/msi-laptop.c
8845 L: platform-driver-x86@vger.kernel.org
8847 F: drivers/platform/x86/msi-wmi.c
8850 M: Antti Palosaari <crope@iki.fi>
8851 L: linux-media@vger.kernel.org
8852 W: https://linuxtv.org
8853 W: http://palosaari.fi/linux/
8854 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8855 T: git git://linuxtv.org/anttip/media_tree.git
8857 F: drivers/media/tuners/msi001*
8859 MSI2500 MEDIA DRIVER
8860 M: Antti Palosaari <crope@iki.fi>
8861 L: linux-media@vger.kernel.org
8862 W: https://linuxtv.org
8863 W: http://palosaari.fi/linux/
8864 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8865 T: git git://linuxtv.org/anttip/media_tree.git
8867 F: drivers/media/usb/msi2500/
8869 MSYSTEMS DISKONCHIP G3 MTD DRIVER
8870 M: Robert Jarzmik <robert.jarzmik@free.fr>
8871 L: linux-mtd@lists.infradead.org
8873 F: drivers/mtd/devices/docg3*
8875 MT9M032 APTINA SENSOR DRIVER
8876 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8877 L: linux-media@vger.kernel.org
8878 T: git git://linuxtv.org/media_tree.git
8880 F: drivers/media/i2c/mt9m032.c
8881 F: include/media/i2c/mt9m032.h
8883 MT9P031 APTINA CAMERA SENSOR
8884 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8885 L: linux-media@vger.kernel.org
8886 T: git git://linuxtv.org/media_tree.git
8888 F: drivers/media/i2c/mt9p031.c
8889 F: include/media/i2c/mt9p031.h
8891 MT9T001 APTINA CAMERA SENSOR
8892 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8893 L: linux-media@vger.kernel.org
8894 T: git git://linuxtv.org/media_tree.git
8896 F: drivers/media/i2c/mt9t001.c
8897 F: include/media/i2c/mt9t001.h
8899 MT9V032 APTINA CAMERA SENSOR
8900 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8901 L: linux-media@vger.kernel.org
8902 T: git git://linuxtv.org/media_tree.git
8904 F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt
8905 F: drivers/media/i2c/mt9v032.c
8906 F: include/media/i2c/mt9v032.h
8908 MULTIFUNCTION DEVICES (MFD)
8909 M: Lee Jones <lee.jones@linaro.org>
8910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
8912 F: Documentation/devicetree/bindings/mfd/
8914 F: include/linux/mfd/
8915 F: include/dt-bindings/mfd/
8917 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8918 M: Ulf Hansson <ulf.hansson@linaro.org>
8919 L: linux-mmc@vger.kernel.org
8920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
8922 F: Documentation/devicetree/bindings/mmc/
8924 F: include/linux/mmc/
8925 F: include/uapi/linux/mmc/
8927 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8929 F: drivers/mmc/host/mmc_spi.c
8930 F: include/linux/spi/mmc_spi.h
8932 MULTIPLEXER SUBSYSTEM
8933 M: Peter Rosin <peda@axentia.se>
8935 F: Documentation/ABI/testing/mux/sysfs-class-mux*
8936 F: Documentation/devicetree/bindings/mux/
8937 F: include/linux/dt-bindings/mux/
8938 F: include/linux/mux/
8941 MULTISOUND SOUND DRIVER
8942 M: Andrew Veliath <andrewtv@usa.net>
8944 F: Documentation/sound/oss/MultiSound
8947 MULTITECH MULTIPORT CARD (ISICOM)
8949 F: drivers/tty/isicom.c
8950 F: include/linux/isicom.h
8952 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8953 M: Bin Liu <b-liu@ti.com>
8954 L: linux-usb@vger.kernel.org
8955 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8957 F: drivers/usb/musb/
8959 MXL5007T MEDIA DRIVER
8960 M: Michael Krufky <mkrufky@linuxtv.org>
8961 L: linux-media@vger.kernel.org
8962 W: https://linuxtv.org
8963 W: http://github.com/mkrufky
8964 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8965 T: git git://linuxtv.org/mkrufky/tuners.git
8967 F: drivers/media/tuners/mxl5007t.*
8970 M: Marek Vasut <marex@denx.de>
8972 F: drivers/gpu/drm/mxsfb/
8973 F: Documentation/devicetree/bindings/display/mxsfb-drm.txt
8975 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8976 M: Hyong-Youb Kim <hykim@myri.com>
8977 L: netdev@vger.kernel.org
8978 W: https://www.myricom.com/support/downloads/myri10ge.html
8980 F: drivers/net/ethernet/myricom/myri10ge/
8982 NAND FLASH SUBSYSTEM
8983 M: Boris Brezillon <boris.brezillon@free-electrons.com>
8984 R: Richard Weinberger <richard@nod.at>
8985 L: linux-mtd@lists.infradead.org
8986 W: http://www.linux-mtd.infradead.org/
8987 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
8988 T: git git://git.infradead.org/linux-mtd.git nand/fixes
8989 T: git git://git.infradead.org/l2-mtd.git nand/next
8991 F: drivers/mtd/nand/
8992 F: include/linux/mtd/nand*.h
8994 NATSEMI ETHERNET DRIVER (DP8381x)
8996 F: drivers/net/ethernet/natsemi/natsemi.c
8998 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8999 M: Daniel Mack <zonque@gmail.com>
9001 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9002 W: http://www.native-instruments.com
9006 M: Petr Vandrovec <petr@vandrovec.name>
9010 NCR 5380 SCSI DRIVERS
9011 M: Finn Thain <fthain@telegraphics.com.au>
9012 M: Michael Schmitz <schmitzmic@gmail.com>
9013 L: linux-scsi@vger.kernel.org
9015 F: Documentation/scsi/g_NCR5380.txt
9016 F: drivers/scsi/NCR5380.*
9017 F: drivers/scsi/arm/cumana_1.c
9018 F: drivers/scsi/arm/oak.c
9019 F: drivers/scsi/atari_scsi.*
9020 F: drivers/scsi/dmx3191d.c
9021 F: drivers/scsi/g_NCR5380.*
9022 F: drivers/scsi/mac_scsi.*
9023 F: drivers/scsi/sun3_scsi.*
9024 F: drivers/scsi/sun3_scsi_vme.c
9026 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
9027 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
9028 L: linux-scsi@vger.kernel.org
9030 F: drivers/scsi/NCR_D700.*
9032 NCT6775 HARDWARE MONITOR DRIVER
9033 M: Guenter Roeck <linux@roeck-us.net>
9034 L: linux-hwmon@vger.kernel.org
9036 F: Documentation/hwmon/nct6775
9037 F: drivers/hwmon/nct6775.c
9039 NETEFFECT IWARP RNIC DRIVER (IW_NES)
9040 M: Faisal Latif <faisal.latif@intel.com>
9041 L: linux-rdma@vger.kernel.org
9042 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
9044 F: drivers/infiniband/hw/nes/
9045 F: include/uapi/rdma/nes-abi.h
9047 NETEM NETWORK EMULATOR
9048 M: Stephen Hemminger <stephen@networkplumber.org>
9049 L: netem@lists.linux-foundation.org (moderated for non-subscribers)
9051 F: net/sched/sch_netem.c
9053 NETERION 10GbE DRIVERS (s2io/vxge)
9054 M: Jon Mason <jdmason@kudzu.us>
9055 L: netdev@vger.kernel.org
9057 F: Documentation/networking/s2io.txt
9058 F: Documentation/networking/vxge.txt
9059 F: drivers/net/ethernet/neterion/
9062 M: Pablo Neira Ayuso <pablo@netfilter.org>
9063 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
9064 M: Florian Westphal <fw@strlen.de>
9065 L: netfilter-devel@vger.kernel.org
9066 L: coreteam@netfilter.org
9067 W: http://www.netfilter.org/
9068 W: http://www.iptables.org/
9069 W: http://www.nftables.org/
9070 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
9071 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
9072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
9074 F: include/linux/netfilter*
9075 F: include/linux/netfilter/
9076 F: include/net/netfilter/
9077 F: include/uapi/linux/netfilter*
9078 F: include/uapi/linux/netfilter/
9079 F: net/*/netfilter.c
9082 F: net/bridge/br_netfilter*.c
9085 M: Paul Moore <paul@paul-moore.com>
9086 W: http://netlabel.sf.net
9087 L: netdev@vger.kernel.org
9089 F: Documentation/netlabel/
9090 F: include/net/netlabel.h
9093 NETROM NETWORK LAYER
9094 M: Ralf Baechle <ralf@linux-mips.org>
9095 L: linux-hams@vger.kernel.org
9096 W: http://www.linux-ax25.org/
9098 F: include/net/netrom.h
9099 F: include/uapi/linux/netrom.h
9102 NETRONOME ETHERNET DRIVERS
9103 M: Jakub Kicinski <jakub.kicinski@netronome.com>
9104 L: oss-drivers@netronome.com
9106 F: drivers/net/ethernet/netronome/
9108 NETWORK BLOCK DEVICE (NBD)
9109 M: Josef Bacik <jbacik@fb.com>
9111 L: linux-block@vger.kernel.org
9112 L: nbd-general@lists.sourceforge.net
9113 F: Documentation/blockdev/nbd.txt
9114 F: drivers/block/nbd.c
9115 F: include/uapi/linux/nbd.h
9117 NETWORK DROP MONITOR
9118 M: Neil Horman <nhorman@tuxdriver.com>
9119 L: netdev@vger.kernel.org
9121 W: https://fedorahosted.org/dropwatch/
9122 F: net/core/drop_monitor.c
9125 M: Andrew Lunn <andrew@lunn.ch>
9126 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
9127 M: Florian Fainelli <f.fainelli@gmail.com>
9130 F: include/net/dsa.h
9133 NETWORKING [GENERAL]
9134 M: "David S. Miller" <davem@davemloft.net>
9135 L: netdev@vger.kernel.org
9136 W: http://www.linuxfoundation.org/en/Net
9137 Q: http://patchwork.ozlabs.org/project/netdev/list/
9138 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9139 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9140 B: mailto:netdev@vger.kernel.org
9144 F: include/linux/in.h
9145 F: include/linux/net.h
9146 F: include/linux/netdevice.h
9147 F: include/uapi/linux/in.h
9148 F: include/uapi/linux/net.h
9149 F: include/uapi/linux/netdevice.h
9150 F: include/uapi/linux/net_namespace.h
9152 F: tools/testing/selftests/net/
9155 NETWORKING [IPv4/IPv6]
9156 M: "David S. Miller" <davem@davemloft.net>
9157 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9158 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
9159 L: netdev@vger.kernel.org
9160 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9168 M: Ilya Lesokhin <ilyal@mellanox.com>
9169 M: Aviad Yehezkel <aviadye@mellanox.com>
9170 M: Dave Watson <davejwatson@fb.com>
9171 L: netdev@vger.kernel.org
9174 F: include/uapi/linux/tls.h
9175 F: include/net/tls.h
9178 M: Steffen Klassert <steffen.klassert@secunet.com>
9179 M: Herbert Xu <herbert@gondor.apana.org.au>
9180 M: "David S. Miller" <davem@davemloft.net>
9181 L: netdev@vger.kernel.org
9182 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
9183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
9191 F: net/ipv4/ipcomp.c
9192 F: net/ipv4/ip_vti.c
9196 F: net/ipv6/ipcomp6.c
9197 F: net/ipv6/ip6_vti.c
9198 F: include/uapi/linux/xfrm.h
9199 F: include/net/xfrm.h
9201 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
9202 M: Paul Moore <paul@paul-moore.com>
9203 L: netdev@vger.kernel.org
9206 NETWORKING [WIRELESS]
9207 L: linux-wireless@vger.kernel.org
9208 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9211 L: netdev@vger.kernel.org
9212 W: http://www.linuxfoundation.org/en/Net
9213 Q: http://patchwork.ozlabs.org/project/netdev/list/
9214 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
9215 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
9217 F: Documentation/devicetree/bindings/net/
9219 F: include/linux/if_*
9220 F: include/linux/netdevice.h
9221 F: include/linux/etherdevice.h
9222 F: include/linux/fcdevice.h
9223 F: include/linux/fddidevice.h
9224 F: include/linux/hippidevice.h
9225 F: include/linux/inetdevice.h
9226 F: include/uapi/linux/if_*
9227 F: include/uapi/linux/netdevice.h
9229 NETWORKING DRIVERS (WIRELESS)
9230 M: Kalle Valo <kvalo@codeaurora.org>
9231 L: linux-wireless@vger.kernel.org
9232 Q: http://patchwork.kernel.org/project/linux-wireless/list/
9233 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
9234 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
9236 F: Documentation/devicetree/bindings/net/wireless/
9237 F: drivers/net/wireless/
9239 NETXEN (1/10) GbE SUPPORT
9240 M: Manish Chopra <manish.chopra@cavium.com>
9241 M: Rahul Verma <rahul.verma@cavium.com>
9242 M: Dept-GELinuxNICDev@cavium.com
9243 L: netdev@vger.kernel.org
9245 F: drivers/net/ethernet/qlogic/netxen/
9248 M: Samuel Ortiz <sameo@linux.intel.com>
9249 L: linux-wireless@vger.kernel.org
9250 L: linux-nfc@lists.01.org (subscribers-only)
9254 F: include/uapi/linux/nfc.h
9256 F: include/linux/platform_data/nfcmrvl.h
9257 F: include/linux/platform_data/nxp-nci.h
9258 F: Documentation/devicetree/bindings/net/nfc/
9260 NFS, SUNRPC, AND LOCKD CLIENTS
9261 M: Trond Myklebust <trond.myklebust@primarydata.com>
9262 M: Anna Schumaker <anna.schumaker@netapp.com>
9263 L: linux-nfs@vger.kernel.org
9264 W: http://client.linux-nfs.org
9265 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9271 F: include/linux/lockd/
9272 F: include/linux/nfs*
9273 F: include/linux/sunrpc/
9274 F: include/uapi/linux/nfs*
9275 F: include/uapi/linux/sunrpc/
9278 M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
9279 L: linux-nilfs@vger.kernel.org
9280 W: http://nilfs.sourceforge.net/
9281 W: http://nilfs.osdn.jp/
9282 T: git git://github.com/konis/nilfs2.git
9284 F: Documentation/filesystems/nilfs2.txt
9286 F: include/trace/events/nilfs2.h
9287 F: include/uapi/linux/nilfs2_api.h
9288 F: include/uapi/linux/nilfs2_ondisk.h
9290 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9291 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9292 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9294 F: Documentation/scsi/NinjaSCSI.txt
9295 F: drivers/scsi/pcmcia/nsp_*
9297 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9298 M: GOTO Masanori <gotom@debian.or.jp>
9299 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
9300 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9302 F: Documentation/scsi/NinjaSCSI.txt
9303 F: drivers/scsi/nsp32*
9306 M: Ley Foon Tan <lftan@altera.com>
9307 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
9308 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9312 NOHZ, DYNTICKS SUPPORT
9313 M: Frederic Weisbecker <fweisbec@gmail.com>
9314 M: Thomas Gleixner <tglx@linutronix.de>
9315 M: Ingo Molnar <mingo@kernel.org>
9316 L: linux-kernel@vger.kernel.org
9317 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
9319 F: kernel/time/tick*.*
9320 F: include/linux/tick.h
9321 F: include/linux/sched/nohz.h
9323 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9324 M: Pavel Machek <pavel@ucw.cz>
9325 M: Sakari Ailus <sakari.ailus@iki.fi>
9326 L: linux-media@vger.kernel.org
9328 F: drivers/media/i2c/et8ek8
9329 F: drivers/media/i2c/ad5820.c
9331 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9332 M: Pavel Machek <pavel@ucw.cz>
9333 M: Sakari Ailus <sakari.ailus@iki.fi>
9334 L: linux-media@vger.kernel.org
9336 F: drivers/media/i2c/et8ek8
9337 F: drivers/media/i2c/ad5820.c
9339 NOKIA N900 POWER SUPPLY DRIVERS
9340 R: Pali Rohár <pali.rohar@gmail.com>
9341 F: include/linux/power/bq2415x_charger.h
9342 F: include/linux/power/bq27xxx_battery.h
9343 F: include/linux/power/isp1704_charger.h
9344 F: drivers/power/supply/bq2415x_charger.c
9345 F: drivers/power/supply/bq27xxx_battery.c
9346 F: drivers/power/supply/bq27xxx_battery_i2c.c
9347 F: drivers/power/supply/isp1704_charger.c
9348 F: drivers/power/supply/rx51_battery.c
9351 M: Jon Mason <jdmason@kudzu.us>
9352 M: Dave Jiang <dave.jiang@intel.com>
9353 M: Allen Hubbe <Allen.Hubbe@emc.com>
9354 L: linux-ntb@googlegroups.com
9356 W: https://github.com/jonmason/ntb/wiki
9357 T: git git://github.com/jonmason/ntb.git
9359 F: drivers/net/ntb_netdev.c
9360 F: include/linux/ntb.h
9361 F: include/linux/ntb_transport.h
9362 F: tools/testing/selftests/ntb/
9365 M: Jon Mason <jdmason@kudzu.us>
9366 M: Dave Jiang <dave.jiang@intel.com>
9367 L: linux-ntb@googlegroups.com
9369 W: https://github.com/jonmason/ntb/wiki
9370 T: git git://github.com/jonmason/ntb.git
9371 F: drivers/ntb/hw/intel/
9374 M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
9375 L: linux-ntb@googlegroups.com
9377 F: drivers/ntb/hw/amd/
9380 M: Anton Altaparmakov <anton@tuxera.com>
9381 L: linux-ntfs-dev@lists.sourceforge.net
9382 W: http://www.tuxera.com/
9383 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9385 F: Documentation/filesystems/ntfs.txt
9388 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9389 M: Antonino Daplas <adaplas@gmail.com>
9390 L: linux-fbdev@vger.kernel.org
9392 F: drivers/video/fbdev/riva/
9393 F: drivers/video/fbdev/nvidia/
9396 M: Keith Busch <keith.busch@intel.com>
9397 M: Jens Axboe <axboe@fb.com>
9398 M: Christoph Hellwig <hch@lst.de>
9399 M: Sagi Grimberg <sagi@grimberg.me>
9400 L: linux-nvme@lists.infradead.org
9401 T: git://git.infradead.org/nvme.git
9402 W: http://git.infradead.org/nvme.git
9404 F: drivers/nvme/host/
9405 F: include/linux/nvme.h
9406 F: include/uapi/linux/nvme_ioctl.h
9408 NVM EXPRESS TARGET DRIVER
9409 M: Christoph Hellwig <hch@lst.de>
9410 M: Sagi Grimberg <sagi@grimberg.me>
9411 L: linux-nvme@lists.infradead.org
9412 T: git://git.infradead.org/nvme.git
9413 W: http://git.infradead.org/nvme.git
9415 F: drivers/nvme/target/
9417 NVM EXPRESS FC TRANSPORT DRIVERS
9418 M: James Smart <james.smart@broadcom.com>
9419 L: linux-nvme@lists.infradead.org
9421 F: include/linux/nvme-fc.h
9422 F: include/linux/nvme-fc-driver.h
9423 F: drivers/nvme/host/fc.c
9424 F: drivers/nvme/target/fc.c
9425 F: drivers/nvme/target/fcloop.c
9428 M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
9431 F: Documentation/devicetree/bindings/nvmem/
9432 F: include/linux/nvmem-consumer.h
9433 F: include/linux/nvmem-provider.h
9436 M: Clément Perrochaud <clement.perrochaud@effinnov.com>
9437 R: Charles Gorand <charles.gorand@effinnov.com>
9438 L: linux-nfc@lists.01.org (moderated for non-subscribers)
9440 F: drivers/nfc/nxp-nci
9442 NXP TDA998X DRM DRIVER
9443 M: Russell King <linux@armlinux.org.uk>
9445 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9446 T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9447 F: drivers/gpu/drm/i2c/tda998x_drv.c
9448 F: include/drm/i2c/tda998x.h
9451 M: Peter Rosin <peda@axentia.se>
9452 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9454 F: sound/soc/codecs/tfa9879*
9457 M: Josh Poimboeuf <jpoimboe@redhat.com>
9462 M: Aaro Koskinen <aaro.koskinen@iki.fi>
9463 M: Tony Lindgren <tony@atomide.com>
9464 L: linux-omap@vger.kernel.org
9465 Q: http://patchwork.kernel.org/project/linux-omap/list/
9466 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9468 F: arch/arm/mach-omap1/
9469 F: arch/arm/plat-omap/
9470 F: arch/arm/configs/omap1_defconfig
9471 F: drivers/i2c/busses/i2c-omap.c
9472 F: include/linux/i2c-omap.h
9475 M: Tony Lindgren <tony@atomide.com>
9476 L: linux-omap@vger.kernel.org
9477 W: http://www.muru.com/linux/omap/
9478 W: http://linux.omap.com/
9479 Q: http://patchwork.kernel.org/project/linux-omap/list/
9480 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9482 F: arch/arm/mach-omap2/
9483 F: arch/arm/plat-omap/
9484 F: arch/arm/configs/omap2plus_defconfig
9485 F: drivers/i2c/busses/i2c-omap.c
9486 F: drivers/irqchip/irq-omap-intc.c
9487 F: drivers/mfd/*omap*.c
9488 F: drivers/mfd/menelaus.c
9489 F: drivers/mfd/palmas.c
9490 F: drivers/mfd/tps65217.c
9491 F: drivers/mfd/tps65218.c
9492 F: drivers/mfd/tps65910.c
9493 F: drivers/mfd/twl-core.[ch]
9494 F: drivers/mfd/twl4030*.c
9495 F: drivers/mfd/twl6030*.c
9496 F: drivers/mfd/twl6040*.c
9497 F: drivers/regulator/palmas-regulator*.c
9498 F: drivers/regulator/pbias-regulator.c
9499 F: drivers/regulator/tps65217-regulator.c
9500 F: drivers/regulator/tps65218-regulator.c
9501 F: drivers/regulator/tps65910-regulator.c
9502 F: drivers/regulator/twl-regulator.c
9503 F: drivers/regulator/twl6030-regulator.c
9504 F: include/linux/i2c-omap.h
9506 OMAP DEVICE TREE SUPPORT
9507 M: Benoît Cousson <bcousson@baylibre.com>
9508 M: Tony Lindgren <tony@atomide.com>
9509 L: linux-omap@vger.kernel.org
9510 L: devicetree@vger.kernel.org
9512 F: arch/arm/boot/dts/*omap*
9513 F: arch/arm/boot/dts/*am3*
9514 F: arch/arm/boot/dts/*am4*
9515 F: arch/arm/boot/dts/*am5*
9516 F: arch/arm/boot/dts/*dra7*
9518 OMAP CLOCK FRAMEWORK SUPPORT
9519 M: Paul Walmsley <paul@pwsan.com>
9520 L: linux-omap@vger.kernel.org
9522 F: arch/arm/*omap*/*clock*
9524 OMAP POWER MANAGEMENT SUPPORT
9525 M: Kevin Hilman <khilman@kernel.org>
9526 L: linux-omap@vger.kernel.org
9528 F: arch/arm/*omap*/*pm*
9529 F: drivers/cpufreq/omap-cpufreq.c
9531 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9532 M: Rajendra Nayak <rnayak@codeaurora.org>
9533 M: Paul Walmsley <paul@pwsan.com>
9534 L: linux-omap@vger.kernel.org
9536 F: arch/arm/mach-omap2/prm*
9539 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
9540 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
9541 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9542 L: linux-omap@vger.kernel.org
9546 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9547 M: Roger Quadros <rogerq@ti.com>
9548 M: Tony Lindgren <tony@atomide.com>
9549 L: linux-omap@vger.kernel.org
9551 F: drivers/memory/omap-gpmc.c
9552 F: arch/arm/mach-omap2/*gpmc*
9554 OMAP FRAMEBUFFER SUPPORT
9555 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9556 L: linux-fbdev@vger.kernel.org
9557 L: linux-omap@vger.kernel.org
9559 F: drivers/video/fbdev/omap/
9561 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9562 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
9563 L: linux-omap@vger.kernel.org
9564 L: linux-fbdev@vger.kernel.org
9566 F: drivers/video/fbdev/omap2/
9567 F: Documentation/arm/OMAP/DSS
9569 OMAP HARDWARE SPINLOCK SUPPORT
9570 M: Ohad Ben-Cohen <ohad@wizery.com>
9571 L: linux-omap@vger.kernel.org
9573 F: drivers/hwspinlock/omap_hwspinlock.c
9576 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
9577 L: linux-omap@vger.kernel.org
9579 F: drivers/mmc/host/omap.c
9582 L: linux-mmc@vger.kernel.org
9583 L: linux-omap@vger.kernel.org
9585 F: drivers/mmc/host/omap_hsmmc.c
9587 OMAP RANDOM NUMBER GENERATOR SUPPORT
9588 M: Deepak Saxena <dsaxena@plexity.net>
9590 F: drivers/char/hw_random/omap-rng.c
9593 M: Benoît Cousson <bcousson@baylibre.com>
9594 M: Paul Walmsley <paul@pwsan.com>
9595 L: linux-omap@vger.kernel.org
9597 F: arch/arm/mach-omap2/omap_hwmod.*
9600 M: Paul Walmsley <paul@pwsan.com>
9601 L: linux-omap@vger.kernel.org
9603 F: arch/arm/mach-omap2/omap_hwmod*data*
9605 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9606 M: Benoît Cousson <bcousson@baylibre.com>
9607 L: linux-omap@vger.kernel.org
9609 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9611 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9612 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9613 L: linux-media@vger.kernel.org
9615 F: Documentation/devicetree/bindings/media/ti,omap3isp.txt
9616 F: drivers/media/platform/omap3isp/
9617 F: drivers/staging/media/omap4iss/
9620 L: linux-usb@vger.kernel.org
9621 L: linux-omap@vger.kernel.org
9623 F: drivers/usb/*/*omap*
9624 F: arch/arm/*omap*/usb*
9627 M: Grygorii Strashko <grygorii.strashko@ti.com>
9628 M: Santosh Shilimkar <ssantosh@kernel.org>
9629 M: Kevin Hilman <khilman@kernel.org>
9630 L: linux-omap@vger.kernel.org
9632 F: Documentation/devicetree/bindings/gpio/gpio-omap.txt
9633 F: drivers/gpio/gpio-omap.c
9635 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9636 M: Mark Jackson <mpfj@newflow.co.uk>
9637 L: linux-omap@vger.kernel.org
9639 F: arch/arm/boot/dts/am335x-nano.dts
9642 M: Bob Copeland <me@bobcopeland.com>
9643 L: linux-karma-devel@lists.sourceforge.net
9645 F: Documentation/filesystems/omfs.txt
9648 OMNIKEY CARDMAN 4000 DRIVER
9649 M: Harald Welte <laforge@gnumonks.org>
9651 F: drivers/char/pcmcia/cm4000_cs.c
9652 F: include/linux/cm4000_cs.h
9653 F: include/uapi/linux/cm4000_cs.h
9655 OMNIKEY CARDMAN 4040 DRIVER
9656 M: Harald Welte <laforge@gnumonks.org>
9658 F: drivers/char/pcmcia/cm4040_cs.*
9660 OMNIVISION OV5640 SENSOR DRIVER
9661 M: Steve Longerbeam <slongerbeam@gmail.com>
9662 L: linux-media@vger.kernel.org
9663 T: git git://linuxtv.org/media_tree.git
9665 F: drivers/media/i2c/ov5640.c
9667 OMNIVISION OV5647 SENSOR DRIVER
9668 M: Ramiro Oliveira <roliveir@synopsys.com>
9669 L: linux-media@vger.kernel.org
9670 T: git git://linuxtv.org/media_tree.git
9672 F: drivers/media/i2c/ov5647.c
9674 OMNIVISION OV7670 SENSOR DRIVER
9675 M: Jonathan Corbet <corbet@lwn.net>
9676 L: linux-media@vger.kernel.org
9677 T: git git://linuxtv.org/media_tree.git
9679 F: drivers/media/i2c/ov7670.c
9680 F: Documentation/devicetree/bindings/media/i2c/ov7670.txt
9682 OMNIVISION OV13858 SENSOR DRIVER
9683 M: Sakari Ailus <sakari.ailus@linux.intel.com>
9684 L: linux-media@vger.kernel.org
9685 T: git git://linuxtv.org/media_tree.git
9687 F: drivers/media/i2c/ov13858.c
9689 ONENAND FLASH DRIVER
9690 M: Kyungmin Park <kyungmin.park@samsung.com>
9691 L: linux-mtd@lists.infradead.org
9693 F: drivers/mtd/onenand/
9694 F: include/linux/mtd/onenand*.h
9696 ONSTREAM SCSI TAPE DRIVER
9697 M: Willem Riede <osst@riede.org>
9698 L: osst-users@lists.sourceforge.net
9699 L: linux-scsi@vger.kernel.org
9701 F: Documentation/scsi/osst.txt
9702 F: drivers/scsi/osst.*
9703 F: drivers/scsi/osst_*.h
9704 F: drivers/scsi/st.h
9706 OPENCORES I2C BUS DRIVER
9707 M: Peter Korsgaard <jacmet@sunsite.dk>
9708 L: linux-i2c@vger.kernel.org
9710 F: Documentation/i2c/busses/i2c-ocores
9711 F: drivers/i2c/busses/i2c-ocores.c
9713 OPEN FIRMWARE AND FLATTENED DEVICE TREE
9714 M: Rob Herring <robh+dt@kernel.org>
9715 M: Frank Rowand <frowand.list@gmail.com>
9716 L: devicetree@vger.kernel.org
9717 W: http://www.devicetree.org/
9718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9721 F: include/linux/of*.h
9723 F: Documentation/ABI/testing/sysfs-firmware-ofw
9725 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
9726 M: Rob Herring <robh+dt@kernel.org>
9727 M: Mark Rutland <mark.rutland@arm.com>
9728 L: devicetree@vger.kernel.org
9729 T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9730 Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/
9732 F: Documentation/devicetree/
9734 F: include/dt-bindings/
9736 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
9737 M: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
9738 L: devicetree@vger.kernel.org
9740 F: Documentation/devicetree/dynamic-resolution-notes.txt
9741 F: Documentation/devicetree/overlay-notes.txt
9742 F: drivers/of/overlay.c
9743 F: drivers/of/resolver.c
9745 OPENRISC ARCHITECTURE
9746 M: Jonas Bonn <jonas@southpole.se>
9747 M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
9748 M: Stafford Horne <shorne@gmail.com>
9749 T: git git://github.com/openrisc/linux.git
9750 L: openrisc@lists.librecores.org
9751 W: http://openrisc.io
9756 M: Pravin Shelar <pshelar@nicira.com>
9757 L: netdev@vger.kernel.org
9758 L: dev@openvswitch.org
9759 W: http://openvswitch.org
9762 F: include/uapi/linux/openvswitch.h
9764 OPERATING PERFORMANCE POINTS (OPP)
9765 M: Viresh Kumar <vireshk@kernel.org>
9766 M: Nishanth Menon <nm@ti.com>
9767 M: Stephen Boyd <sboyd@codeaurora.org>
9768 L: linux-pm@vger.kernel.org
9770 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
9771 F: drivers/base/power/opp/
9772 F: include/linux/pm_opp.h
9773 F: Documentation/power/opp.txt
9774 F: Documentation/devicetree/bindings/opp/
9777 M: Clemens Ladisch <clemens@ladisch.de>
9778 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9779 T: git git://git.alsa-project.org/alsa-kernel.git
9781 F: sound/drivers/opl4/
9784 M: Robert Richter <rric@kernel.org>
9785 L: oprofile-list@lists.sf.net
9787 F: arch/*/include/asm/oprofile*.h
9789 F: drivers/oprofile/
9790 F: include/linux/oprofile.h
9793 M: Jens Wiklander <jens.wiklander@linaro.org>
9795 F: drivers/tee/optee/
9797 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
9798 M: Mark Fasheh <mfasheh@versity.com>
9799 M: Joel Becker <jlbec@evilplan.org>
9800 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
9801 W: http://ocfs2.wiki.kernel.org
9803 F: Documentation/filesystems/ocfs2.txt
9804 F: Documentation/filesystems/dlmfs.txt
9808 L: linux-wireless@vger.kernel.org
9809 W: http://wireless.kernel.org/en/users/Drivers/orinoco
9810 W: http://www.nongnu.org/orinoco/
9812 F: drivers/net/wireless/intersil/orinoco/
9814 OSD LIBRARY and FILESYSTEM
9815 M: Boaz Harrosh <ooo@electrozaur.com>
9817 F: drivers/scsi/osd/
9818 F: include/scsi/osd_*
9822 M: Miklos Szeredi <miklos@szeredi.hu>
9823 L: linux-unionfs@vger.kernel.org
9824 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
9827 F: Documentation/filesystems/overlayfs.txt
9830 M: Mike Marshall <hubcap@omnibond.com>
9831 L: pvfs2-developers@beowulf-underground.org (subscribers-only)
9832 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
9835 F: Documentation/filesystems/orangefs.txt
9838 M: Christian Lamparter <chunkeey@googlemail.com>
9839 L: linux-wireless@vger.kernel.org
9840 W: http://wireless.kernel.org/en/users/Drivers/p54
9842 F: drivers/net/wireless/intersil/p54/
9844 PA SEMI ETHERNET DRIVER
9845 L: netdev@vger.kernel.org
9847 F: drivers/net/ethernet/pasemi/*
9849 PA SEMI SMBUS DRIVER
9850 L: linux-i2c@vger.kernel.org
9852 F: drivers/i2c/busses/i2c-pasemi.c
9854 PADATA PARALLEL EXECUTION MECHANISM
9855 M: Steffen Klassert <steffen.klassert@secunet.com>
9856 L: linux-crypto@vger.kernel.org
9859 F: include/linux/padata.h
9860 F: Documentation/padata.txt
9862 PANASONIC LAPTOP ACPI EXTRAS DRIVER
9863 M: Harald Welte <laforge@gnumonks.org>
9864 L: platform-driver-x86@vger.kernel.org
9866 F: drivers/platform/x86/panasonic-laptop.c
9868 PANASONIC MN10300/AM33/AM34 PORT
9869 M: David Howells <dhowells@redhat.com>
9870 L: linux-am33-list@redhat.com (moderated for non-subscribers)
9871 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
9873 F: Documentation/mn10300/
9876 PARALLEL LCD/KEYPAD PANEL DRIVER
9877 M: Willy Tarreau <willy@haproxy.com>
9878 M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
9880 F: Documentation/misc-devices/lcd-panel-cgram.txt
9881 F: drivers/misc/panel.c
9883 PARALLEL PORT SUBSYSTEM
9884 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9885 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
9886 L: linux-parport@lists.infradead.org (subscribers-only)
9889 F: include/linux/parport*.h
9890 F: drivers/char/ppdev.c
9891 F: include/uapi/linux/ppdev.h
9892 F: Documentation/parport*.txt
9894 PARAVIRT_OPS INTERFACE
9895 M: Jeremy Fitzhardinge <jeremy@goop.org>
9896 M: Chris Wright <chrisw@sous-sol.org>
9897 M: Alok Kataria <akataria@vmware.com>
9898 M: Rusty Russell <rusty@rustcorp.com.au>
9899 L: virtualization@lists.linux-foundation.org
9901 F: Documentation/virtual/paravirt_ops.txt
9902 F: arch/*/kernel/paravirt*
9903 F: arch/*/include/asm/paravirt.h
9904 F: include/linux/hypervisor.h
9906 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
9907 M: Tim Waugh <tim@cyberelk.net>
9908 L: linux-parport@lists.infradead.org (subscribers-only)
9910 F: Documentation/blockdev/paride.txt
9911 F: drivers/block/paride/
9914 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
9915 M: Helge Deller <deller@gmx.de>
9916 L: linux-parisc@vger.kernel.org
9917 W: http://www.parisc-linux.org/
9918 Q: http://patchwork.kernel.org/project/linux-parisc/list/
9919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
9920 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
9923 F: Documentation/parisc/
9925 F: drivers/char/agp/parisc-agp.c
9926 F: drivers/input/serio/gscps2.c
9927 F: drivers/parport/parport_gsc.*
9928 F: drivers/tty/serial/8250/8250_gsc.c
9929 F: drivers/video/fbdev/sti*
9930 F: drivers/video/console/sti*
9931 F: drivers/video/logo/logo_parisc*
9934 M: Jiri Pirko <jiri@mellanox.com>
9935 L: netdev@vger.kernel.org
9938 F: lib/test_parman.c
9939 F: include/linux/parman.h
9941 PC87360 HARDWARE MONITORING DRIVER
9942 M: Jim Cromie <jim.cromie@gmail.com>
9943 L: linux-hwmon@vger.kernel.org
9945 F: Documentation/hwmon/pc87360
9946 F: drivers/hwmon/pc87360.c
9949 M: Jim Cromie <jim.cromie@gmail.com>
9951 F: drivers/char/pc8736x_gpio.c
9953 PC87427 HARDWARE MONITORING DRIVER
9954 M: Jean Delvare <jdelvare@suse.com>
9955 L: linux-hwmon@vger.kernel.org
9957 F: Documentation/hwmon/pc87427
9958 F: drivers/hwmon/pc87427.c
9961 M: Riku Voipio <riku.voipio@iki.fi>
9963 F: drivers/leds/leds-pca9532.c
9964 F: include/linux/leds-pca9532.h
9966 PCA9541 I2C BUS MASTER SELECTOR DRIVER
9967 M: Guenter Roeck <linux@roeck-us.net>
9968 L: linux-i2c@vger.kernel.org
9970 F: drivers/i2c/muxes/i2c-mux-pca9541.c
9972 PCDP - PRIMARY CONSOLE AND DEBUG PORT
9973 M: Khalid Aziz <khalid@gonehiking.org>
9975 F: drivers/firmware/pcdp.*
9978 M: Linas Vepstas <linasvepstas@gmail.com>
9979 L: linux-pci@vger.kernel.org
9981 F: Documentation/PCI/pci-error-recovery.txt
9983 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
9984 M: Russell Currey <ruscur@russell.cc>
9985 L: linuxppc-dev@lists.ozlabs.org
9987 F: Documentation/powerpc/eeh-pci-error-recovery.txt
9988 F: arch/powerpc/kernel/eeh*.c
9989 F: arch/powerpc/platforms/*/eeh*.c
9990 F: arch/powerpc/include/*/eeh*.h
9993 M: Bjorn Helgaas <bhelgaas@google.com>
9994 L: linux-pci@vger.kernel.org
9995 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
9996 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
9998 F: Documentation/devicetree/bindings/pci/
9999 F: Documentation/PCI/
10001 F: include/linux/pci*
10003 F: arch/x86/kernel/quirks.c
10005 PCI ENDPOINT SUBSYSTEM
10006 M: Kishon Vijay Abraham I <kishon@ti.com>
10007 L: linux-pci@vger.kernel.org
10008 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
10010 F: drivers/pci/endpoint/
10011 F: drivers/misc/pci_endpoint_test.c
10014 PCI DRIVER FOR ALTERA PCIE IP
10015 M: Ley Foon Tan <lftan@altera.com>
10016 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10017 L: linux-pci@vger.kernel.org
10019 F: Documentation/devicetree/bindings/pci/altera-pcie.txt
10020 F: drivers/pci/host/pcie-altera.c
10022 PCI DRIVER FOR ARM VERSATILE PLATFORM
10023 M: Rob Herring <robh@kernel.org>
10024 L: linux-pci@vger.kernel.org
10025 L: linux-arm-kernel@lists.infradead.org
10027 F: Documentation/devicetree/bindings/pci/versatile.txt
10028 F: drivers/pci/host/pci-versatile.c
10030 PCI DRIVER FOR ARMADA 8K
10031 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10032 L: linux-pci@vger.kernel.org
10033 L: linux-arm-kernel@lists.infradead.org
10035 F: Documentation/devicetree/bindings/pci/pci-armada8k.txt
10036 F: drivers/pci/dwc/pcie-armada8k.c
10038 PCI DRIVER FOR APPLIEDMICRO XGENE
10039 M: Tanmay Inamdar <tinamdar@apm.com>
10040 L: linux-pci@vger.kernel.org
10041 L: linux-arm-kernel@lists.infradead.org
10043 F: Documentation/devicetree/bindings/pci/xgene-pci.txt
10044 F: drivers/pci/host/pci-xgene.c
10046 PCI DRIVER FOR FREESCALE LAYERSCAPE
10047 M: Minghuan Lian <minghuan.Lian@freescale.com>
10048 M: Mingkai Hu <mingkai.hu@freescale.com>
10049 M: Roy Zang <tie-fei.zang@freescale.com>
10050 L: linuxppc-dev@lists.ozlabs.org
10051 L: linux-pci@vger.kernel.org
10052 L: linux-arm-kernel@lists.infradead.org
10054 F: drivers/pci/dwc/*layerscape*
10056 PCI DRIVER FOR IMX6
10057 M: Richard Zhu <hongxing.zhu@nxp.com>
10058 M: Lucas Stach <l.stach@pengutronix.de>
10059 L: linux-pci@vger.kernel.org
10060 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10062 F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
10063 F: drivers/pci/dwc/*imx6*
10065 PCI DRIVER FOR TI KEYSTONE
10066 M: Murali Karicheri <m-karicheri2@ti.com>
10067 L: linux-pci@vger.kernel.org
10068 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10070 F: drivers/pci/dwc/*keystone*
10072 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
10073 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10074 M: Jason Cooper <jason@lakedaemon.net>
10075 L: linux-pci@vger.kernel.org
10076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10078 F: drivers/pci/host/*mvebu*
10080 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
10081 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10082 L: linux-pci@vger.kernel.org
10083 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10085 F: Documentation/devicetree/bindings/pci/aardvark-pci.txt
10086 F: drivers/pci/host/pci-aardvark.c
10088 PCI DRIVER FOR MICROSEMI SWITCHTEC
10089 M: Kurt Schwemmer <kurt.schwemmer@microsemi.com>
10090 M: Stephen Bates <stephen.bates@microsemi.com>
10091 M: Logan Gunthorpe <logang@deltatee.com>
10092 L: linux-pci@vger.kernel.org
10094 F: Documentation/switchtec.txt
10095 F: Documentation/ABI/testing/sysfs-class-switchtec
10096 F: drivers/pci/switch/switchtec*
10097 F: include/uapi/linux/switchtec_ioctl.h
10099 PCI DRIVER FOR NVIDIA TEGRA
10100 M: Thierry Reding <thierry.reding@gmail.com>
10101 L: linux-tegra@vger.kernel.org
10102 L: linux-pci@vger.kernel.org
10104 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
10105 F: drivers/pci/host/pci-tegra.c
10107 PCI DRIVER FOR TI DRA7XX
10108 M: Kishon Vijay Abraham I <kishon@ti.com>
10109 L: linux-omap@vger.kernel.org
10110 L: linux-pci@vger.kernel.org
10112 F: Documentation/devicetree/bindings/pci/ti-pci.txt
10113 F: drivers/pci/dwc/pci-dra7xx.c
10115 PCI DRIVER FOR RENESAS R-CAR
10116 M: Simon Horman <horms@verge.net.au>
10117 L: linux-pci@vger.kernel.org
10118 L: linux-renesas-soc@vger.kernel.org
10120 F: drivers/pci/host/*rcar*
10122 PCI DRIVER FOR SAMSUNG EXYNOS
10123 M: Jingoo Han <jingoohan1@gmail.com>
10124 L: linux-pci@vger.kernel.org
10125 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10126 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10128 F: drivers/pci/dwc/pci-exynos.c
10130 PCI DRIVER FOR SYNOPSIS DESIGNWARE
10131 M: Jingoo Han <jingoohan1@gmail.com>
10132 M: Joao Pinto <Joao.Pinto@synopsys.com>
10133 L: linux-pci@vger.kernel.org
10135 F: Documentation/devicetree/bindings/pci/designware-pcie.txt
10136 F: drivers/pci/dwc/*designware*
10138 PCI DRIVER FOR GENERIC OF HOSTS
10139 M: Will Deacon <will.deacon@arm.com>
10140 L: linux-pci@vger.kernel.org
10141 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10143 F: Documentation/devicetree/bindings/pci/host-generic-pci.txt
10144 F: drivers/pci/host/pci-host-common.c
10145 F: drivers/pci/host/pci-host-generic.c
10147 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
10148 M: Keith Busch <keith.busch@intel.com>
10149 L: linux-pci@vger.kernel.org
10151 F: drivers/pci/host/vmd.c
10153 PCIE DRIVER FOR ST SPEAR13XX
10154 M: Pratyush Anand <pratyush.anand@gmail.com>
10155 L: linux-pci@vger.kernel.org
10157 F: drivers/pci/dwc/*spear*
10159 PCI MSI DRIVER FOR ALTERA MSI IP
10160 M: Ley Foon Tan <lftan@altera.com>
10161 L: rfi@lists.rocketboards.org (moderated for non-subscribers)
10162 L: linux-pci@vger.kernel.org
10164 F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
10165 F: drivers/pci/host/pcie-altera-msi.c
10167 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
10168 M: Duc Dang <dhdang@apm.com>
10169 L: linux-pci@vger.kernel.org
10170 L: linux-arm-kernel@lists.infradead.org
10172 F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
10173 F: drivers/pci/host/pci-xgene-msi.c
10175 PCIE DRIVER FOR AXIS ARTPEC
10176 M: Niklas Cassel <niklas.cassel@axis.com>
10177 M: Jesper Nilsson <jesper.nilsson@axis.com>
10178 L: linux-arm-kernel@axis.com
10179 L: linux-pci@vger.kernel.org
10181 F: Documentation/devicetree/bindings/pci/axis,artpec*
10182 F: drivers/pci/dwc/*artpec*
10184 PCIE DRIVER FOR HISILICON
10185 M: Zhou Wang <wangzhou1@hisilicon.com>
10186 M: Gabriele Paoloni <gabriele.paoloni@huawei.com>
10187 L: linux-pci@vger.kernel.org
10189 F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
10190 F: drivers/pci/dwc/pcie-hisi.c
10192 PCIE DRIVER FOR HISILICON KIRIN
10193 M: Xiaowei Song <songxiaowei@hisilicon.com>
10194 M: Binghui Wang <wangbinghui@hisilicon.com>
10195 L: linux-pci@vger.kernel.org
10197 F: Documentation/devicetree/bindings/pci/pcie-kirin.txt
10198 F: drivers/pci/dwc/pcie-kirin.c
10200 PCIE DRIVER FOR ROCKCHIP
10201 M: Shawn Lin <shawn.lin@rock-chips.com>
10202 L: linux-pci@vger.kernel.org
10203 L: linux-rockchip@lists.infradead.org
10205 F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt
10206 F: drivers/pci/host/pcie-rockchip.c
10208 PCIE DRIVER FOR QUALCOMM MSM
10209 M: Stanimir Varbanov <svarbanov@mm-sol.com>
10210 L: linux-pci@vger.kernel.org
10211 L: linux-arm-msm@vger.kernel.org
10213 F: drivers/pci/dwc/*qcom*
10215 PCIE DRIVER FOR CAVIUM THUNDERX
10216 M: David Daney <david.daney@cavium.com>
10217 L: linux-pci@vger.kernel.org
10218 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10220 F: Documentation/devicetree/bindings/pci/pci-thunder-*
10221 F: drivers/pci/host/pci-thunder-*
10223 PCIE DRIVER FOR MEDIATEK
10224 M: Ryder Lee <ryder.lee@mediatek.com>
10225 L: linux-pci@vger.kernel.org
10226 L: linux-mediatek@lists.infradead.org
10228 F: Documentation/devicetree/bindings/pci/mediatek*
10229 F: drivers/pci/host/*mediatek*
10232 P: Linux PCMCIA Team
10233 L: linux-pcmcia@lists.infradead.org
10234 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
10235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
10237 F: Documentation/pcmcia/
10242 PCNET32 NETWORK DRIVER
10243 M: Don Fry <pcnet32@frontier.com>
10244 L: netdev@vger.kernel.org
10246 F: drivers/net/ethernet/amd/pcnet32.c
10248 PCRYPT PARALLEL CRYPTO ENGINE
10249 M: Steffen Klassert <steffen.klassert@secunet.com>
10250 L: linux-crypto@vger.kernel.org
10253 F: include/crypto/pcrypt.h
10255 PER-CPU MEMORY ALLOCATOR
10256 M: Tejun Heo <tj@kernel.org>
10257 M: Christoph Lameter <cl@linux.com>
10258 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
10260 F: include/linux/percpu*.h
10262 F: arch/*/include/asm/percpu.h
10264 PER-TASK DELAY ACCOUNTING
10265 M: Balbir Singh <bsingharora@gmail.com>
10267 F: include/linux/delayacct.h
10268 F: kernel/delayacct.c
10270 PERFORMANCE EVENTS SUBSYSTEM
10271 M: Peter Zijlstra <peterz@infradead.org>
10272 M: Ingo Molnar <mingo@redhat.com>
10273 M: Arnaldo Carvalho de Melo <acme@kernel.org>
10274 R: Alexander Shishkin <alexander.shishkin@linux.intel.com>
10275 L: linux-kernel@vger.kernel.org
10276 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
10279 F: include/linux/perf_event.h
10280 F: include/uapi/linux/perf_event.h
10281 F: arch/*/kernel/perf_event*.c
10282 F: arch/*/kernel/*/perf_event*.c
10283 F: arch/*/kernel/*/*/perf_event*.c
10284 F: arch/*/include/asm/perf_event.h
10285 F: arch/*/kernel/perf_callchain.c
10289 PERSONALITY HANDLING
10290 M: Christoph Hellwig <hch@infradead.org>
10291 L: linux-abi-devel@lists.sourceforge.net
10293 F: include/linux/personality.h
10294 F: include/uapi/linux/personality.h
10297 M: Remi Denis-Courmont <courmisch@gmail.com>
10299 F: Documentation/networking/phonet.txt
10300 F: include/linux/phonet.h
10301 F: include/net/phonet/
10302 F: include/uapi/linux/phonet.h
10306 M: Joern Engel <joern@lazybastard.org>
10307 L: linux-mtd@lists.infradead.org
10309 F: drivers/mtd/devices/phram.c
10312 M: Bruno Prémont <bonbons@linux-vserver.org>
10313 L: linux-input@vger.kernel.org
10315 F: drivers/hid/hid-picolcd*
10318 M: Jamie Iles <jamie@jamieiles.com>
10319 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10320 T: git git://github.com/jamieiles/linux-2.6-ji.git
10322 F: arch/arm/boot/dts/picoxcell*
10323 F: arch/arm/mach-picoxcell/
10324 F: drivers/crypto/picoxcell*
10326 PIN CONTROL SUBSYSTEM
10327 M: Linus Walleij <linus.walleij@linaro.org>
10328 L: linux-gpio@vger.kernel.org
10329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10331 F: Documentation/devicetree/bindings/pinctrl/
10332 F: Documentation/pinctrl.txt
10333 F: drivers/pinctrl/
10334 F: include/linux/pinctrl/
10336 PIN CONTROLLER - ATMEL AT91
10337 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
10338 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10340 F: drivers/pinctrl/pinctrl-at91.*
10342 PIN CONTROLLER - ATMEL AT91 PIO4
10343 M: Ludovic Desroches <ludovic.desroches@microchip.com>
10344 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10345 L: linux-gpio@vger.kernel.org
10347 F: drivers/pinctrl/pinctrl-at91-pio4.*
10349 PIN CONTROLLER - INTEL
10350 M: Mika Westerberg <mika.westerberg@linux.intel.com>
10351 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
10353 F: drivers/pinctrl/intel/
10355 PIN CONTROLLER - QUALCOMM
10356 M: Bjorn Andersson <bjorn.andersson@linaro.org>
10358 L: linux-arm-msm@vger.kernel.org
10359 F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt
10360 F: drivers/pinctrl/qcom/
10362 PIN CONTROLLER - RENESAS
10363 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10364 M: Geert Uytterhoeven <geert+renesas@glider.be>
10365 L: linux-renesas-soc@vger.kernel.org
10367 F: drivers/pinctrl/sh-pfc/
10369 PIN CONTROLLER - SAMSUNG
10370 M: Tomasz Figa <tomasz.figa@gmail.com>
10371 M: Krzysztof Kozlowski <krzk@kernel.org>
10372 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
10373 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10374 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10375 Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/
10376 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10378 F: drivers/pinctrl/samsung/
10379 F: include/dt-bindings/pinctrl/samsung.h
10380 F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10382 PIN CONTROLLER - SINGLE
10383 M: Tony Lindgren <tony@atomide.com>
10384 M: Haojian Zhuang <haojian.zhuang@linaro.org>
10385 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10386 L: linux-omap@vger.kernel.org
10388 F: drivers/pinctrl/pinctrl-single.c
10390 PIN CONTROLLER - ST SPEAR
10391 M: Viresh Kumar <vireshk@kernel.org>
10392 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10393 W: http://www.st.com/spear
10395 F: drivers/pinctrl/spear/
10397 PISTACHIO SOC SUPPORT
10398 M: James Hartley <james.hartley@imgtec.com>
10399 M: Ionela Voinescu <ionela.voinescu@imgtec.com>
10400 L: linux-mips@linux-mips.org
10402 F: arch/mips/pistachio/
10403 F: arch/mips/include/asm/mach-pistachio/
10404 F: arch/mips/boot/dts/img/pistachio*
10405 F: arch/mips/configs/pistachio*_defconfig
10409 M: linux-block@vger.kernel.org
10410 F: drivers/block/pktcdvd.c
10411 F: include/linux/pktcdvd.h
10412 F: include/uapi/linux/pktcdvd.h
10414 PKUNITY SOC DRIVERS
10415 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
10416 W: http://mprc.pku.edu.cn/~guanxuetao/linux
10418 T: git git://github.com/gxt/linux.git
10419 F: drivers/input/serio/i8042-unicore32io.h
10420 F: drivers/i2c/busses/i2c-puv3.c
10421 F: drivers/video/fbdev/fb-puv3.c
10422 F: drivers/rtc/rtc-puv3.c
10424 PMBUS HARDWARE MONITORING DRIVERS
10425 M: Guenter Roeck <linux@roeck-us.net>
10426 L: linux-hwmon@vger.kernel.org
10427 W: http://hwmon.wiki.kernel.org/
10428 W: http://www.roeck-us.net/linux/drivers/
10429 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10431 F: Documentation/hwmon/pmbus
10432 F: drivers/hwmon/pmbus/
10433 F: include/linux/pmbus.h
10435 PMC SIERRA MaxRAID DRIVER
10436 L: linux-scsi@vger.kernel.org
10437 W: http://www.pmc-sierra.com/
10439 F: drivers/scsi/pmcraid.*
10441 PMC SIERRA PM8001 DRIVER
10442 M: Jack Wang <jinpu.wang@profitbricks.com>
10443 M: lindar_liu@usish.com
10444 L: linux-scsi@vger.kernel.org
10446 F: drivers/scsi/pm8001/
10448 POSIX CLOCKS and TIMERS
10449 M: Thomas Gleixner <tglx@linutronix.de>
10450 L: linux-kernel@vger.kernel.org
10451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10454 F: include/linux/timer*
10455 F: kernel/time/*timer*
10457 POWER MANAGEMENT CORE
10458 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
10459 L: linux-pm@vger.kernel.org
10460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10461 B: https://bugzilla.kernel.org
10463 F: drivers/base/power/
10464 F: include/linux/pm.h
10465 F: include/linux/pm_*
10466 F: include/linux/powercap.h
10467 F: drivers/powercap/
10469 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10470 M: Sebastian Reichel <sre@kernel.org>
10471 L: linux-pm@vger.kernel.org
10472 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10474 F: Documentation/devicetree/bindings/power/supply/
10475 F: include/linux/power_supply.h
10476 F: drivers/power/supply/
10478 POWER STATE COORDINATION INTERFACE (PSCI)
10479 M: Mark Rutland <mark.rutland@arm.com>
10480 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
10481 L: linux-arm-kernel@lists.infradead.org
10483 F: drivers/firmware/psci*.c
10484 F: include/linux/psci.h
10485 F: include/uapi/linux/psci.h
10487 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10488 M: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
10489 L: linuxppc-dev@lists.ozlabs.org
10491 F: drivers/char/powernv-op-panel.c
10494 M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
10498 PPP PROTOCOL DRIVERS AND COMPRESSORS
10499 M: Paul Mackerras <paulus@samba.org>
10500 L: linux-ppp@vger.kernel.org
10502 F: drivers/net/ppp/ppp_*
10504 PPP OVER ATM (RFC 2364)
10505 M: Mitchell Blank Jr <mitch@sfgoth.com>
10507 F: net/atm/pppoatm.c
10508 F: include/uapi/linux/atmppp.h
10511 M: Michal Ostrowski <mostrows@earthlink.net>
10513 F: drivers/net/ppp/pppoe.c
10514 F: drivers/net/ppp/pppox.c
10517 M: James Chapman <jchapman@katalix.com>
10519 F: net/l2tp/l2tp_ppp.c
10520 F: include/linux/if_pppol2tp.h
10521 F: include/uapi/linux/if_pppol2tp.h
10524 M: Rodolfo Giometti <giometti@enneenne.com>
10525 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
10526 L: linuxpps@ml.enneenne.com (subscribers-only)
10528 F: Documentation/pps/
10530 F: include/linux/pps*.h
10533 M: Dmitry Kozlov <xeb@mail.ru>
10534 L: netdev@vger.kernel.org
10536 F: drivers/net/ppp/pptp.c
10537 W: http://sourceforge.net/projects/accel-pptp
10540 M: Robert Love <rml@tech9.net>
10541 L: kpreempt-tech@lists.sourceforge.net
10542 W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10544 F: Documentation/preempt-locking.txt
10545 F: include/linux/preempt.h
10548 M: Petr Mladek <pmladek@suse.com>
10549 M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
10550 R: Steven Rostedt <rostedt@goodmis.org>
10553 F: include/linux/printk.h
10555 PRISM54 WIRELESS DRIVER
10556 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
10557 L: linux-wireless@vger.kernel.org
10558 W: http://wireless.kernel.org/en/users/Drivers/p54
10560 F: drivers/net/wireless/intersil/prism54/
10562 PS3 NETWORK SUPPORT
10563 M: Geoff Levand <geoff@infradead.org>
10564 L: netdev@vger.kernel.org
10565 L: linuxppc-dev@lists.ozlabs.org
10567 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
10569 PS3 PLATFORM SUPPORT
10570 M: Geoff Levand <geoff@infradead.org>
10571 L: linuxppc-dev@lists.ozlabs.org
10573 F: arch/powerpc/boot/ps3*
10574 F: arch/powerpc/include/asm/lv1call.h
10575 F: arch/powerpc/include/asm/ps3*.h
10576 F: arch/powerpc/platforms/ps3/
10579 F: drivers/rtc/rtc-ps3.c
10580 F: drivers/usb/host/*ps3.c
10581 F: sound/ppc/snd_ps3*
10584 M: Jim Paris <jim@jtan.com>
10585 M: Geoff Levand <geoff@infradead.org>
10586 L: linuxppc-dev@lists.ozlabs.org
10588 F: drivers/block/ps3vram.c
10590 PSAMPLE PACKET SAMPLING SUPPORT:
10591 M: Yotam Gigi <yotamg@mellanox.com>
10594 F: include/net/psample.h
10595 F: include/uapi/linux/psample.h
10598 M: Kees Cook <keescook@chromium.org>
10599 M: Anton Vorontsov <anton@enomsg.org>
10600 M: Colin Cross <ccross@android.com>
10601 M: Tony Luck <tony.luck@intel.com>
10603 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10605 F: include/linux/pstore*
10606 F: drivers/firmware/efi/efi-pstore.c
10607 F: drivers/acpi/apei/erst.c
10608 F: Documentation/admin-guide/ramoops.rst
10609 F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10610 K: \b(pstore|ramoops)
10612 PTP HARDWARE CLOCK SUPPORT
10613 M: Richard Cochran <richardcochran@gmail.com>
10614 L: netdev@vger.kernel.org
10616 W: http://linuxptp.sourceforge.net/
10617 F: Documentation/ABI/testing/sysfs-ptp
10618 F: Documentation/ptp/*
10619 F: drivers/net/ethernet/freescale/gianfar_ptp.c
10620 F: drivers/net/phy/dp83640*
10622 F: include/linux/ptp_cl*
10625 M: Roland McGrath <roland@hack.frob.com>
10626 M: Oleg Nesterov <oleg@redhat.com>
10628 F: include/asm-generic/syscall.h
10629 F: include/linux/ptrace.h
10630 F: include/linux/regset.h
10631 F: include/linux/tracehook.h
10632 F: include/uapi/linux/ptrace.h
10636 M: Hans Verkuil <hverkuil@xs4all.nl>
10637 L: linux-media@vger.kernel.org
10638 T: git git://linuxtv.org/media_tree.git
10640 F: drivers/media/usb/pulse8-cec/*
10642 PVRUSB2 VIDEO4LINUX DRIVER
10643 M: Mike Isely <isely@pobox.com>
10644 L: pvrusb2@isely.net (subscribers-only)
10645 L: linux-media@vger.kernel.org
10646 W: http://www.isely.net/pvrusb2/
10647 T: git git://linuxtv.org/media_tree.git
10649 F: Documentation/media/v4l-drivers/pvrusb2*
10650 F: drivers/media/usb/pvrusb2/
10653 M: Hans Verkuil <hverkuil@xs4all.nl>
10654 L: linux-media@vger.kernel.org
10655 T: git git://linuxtv.org/media_tree.git
10657 F: drivers/media/usb/pwc/*
10660 M: Kamil Debski <kamil@wypas.org>
10661 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10662 L: linux-hwmon@vger.kernel.org
10664 F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt
10665 F: Documentation/hwmon/pwm-fan
10666 F: drivers/hwmon/pwm-fan.c
10669 M: Thierry Reding <thierry.reding@gmail.com>
10670 L: linux-pwm@vger.kernel.org
10672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
10673 F: Documentation/pwm.txt
10674 F: Documentation/devicetree/bindings/pwm/
10675 F: include/linux/pwm.h
10677 F: drivers/video/backlight/pwm_bl.c
10678 F: include/linux/pwm_backlight.h
10679 F: drivers/gpio/gpio-mvebu.c
10680 F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
10682 PXA2xx/PXA3xx SUPPORT
10683 M: Daniel Mack <daniel@zonque.org>
10684 M: Haojian Zhuang <haojian.zhuang@gmail.com>
10685 M: Robert Jarzmik <robert.jarzmik@free.fr>
10686 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10687 T: git git://github.com/hzhuang1/linux.git
10688 T: git git://github.com/rjarzmik/linux.git
10690 F: arch/arm/boot/dts/pxa*
10691 F: arch/arm/mach-pxa/
10692 F: drivers/dma/pxa*
10693 F: drivers/pcmcia/pxa2xx*
10694 F: drivers/pinctrl/pxa/
10695 F: drivers/spi/spi-pxa2xx*
10696 F: drivers/usb/gadget/udc/pxa2*
10697 F: include/sound/pxa2xx-lib.h
10702 M: Robert Jarzmik <robert.jarzmik@free.fr>
10703 L: linux-gpio@vger.kernel.org
10705 F: drivers/gpio/gpio-pxa.c
10707 PXA3xx NAND FLASH DRIVER
10708 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
10709 L: linux-mtd@lists.infradead.org
10711 F: drivers/mtd/nand/pxa3xx_nand.c
10714 M: Eric Miao <eric.y.miao@gmail.com>
10715 M: Haojian Zhuang <haojian.zhuang@gmail.com>
10716 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10717 T: git git://github.com/hzhuang1/linux.git
10718 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
10720 F: arch/arm/boot/dts/mmp*
10721 F: arch/arm/mach-mmp/
10727 M: Robert Jarzmik <robert.jarzmik@free.fr>
10728 L: linux-rtc@vger.kernel.org
10732 M: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
10733 M: Salvatore Benedetto <salvatore.benedetto@intel.com>
10734 L: qat-linux@intel.com
10736 F: drivers/crypto/qat/
10739 M: Mike Marciniszyn <infinipath@intel.com>
10740 L: linux-rdma@vger.kernel.org
10742 F: drivers/infiniband/hw/qib/
10744 QLOGIC QLA1280 SCSI DRIVER
10745 M: Michael Reed <mdr@sgi.com>
10746 L: linux-scsi@vger.kernel.org
10748 F: drivers/scsi/qla1280.[ch]
10750 QLOGIC QLA2XXX FC-SCSI DRIVER
10751 M: qla2xxx-upstream@qlogic.com
10752 L: linux-scsi@vger.kernel.org
10754 F: Documentation/scsi/LICENSE.qla2xxx
10755 F: drivers/scsi/qla2xxx/
10757 QLOGIC QLA4XXX iSCSI DRIVER
10758 M: QLogic-Storage-Upstream@qlogic.com
10759 L: linux-scsi@vger.kernel.org
10761 F: Documentation/scsi/LICENSE.qla4xxx
10762 F: drivers/scsi/qla4xxx/
10764 QLOGIC QLA3XXX NETWORK DRIVER
10765 M: Dept-GELinuxNICDev@cavium.com
10766 L: netdev@vger.kernel.org
10768 F: Documentation/networking/LICENSE.qla3xxx
10769 F: drivers/net/ethernet/qlogic/qla3xxx.*
10771 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
10772 M: Harish Patil <harish.patil@cavium.com>
10773 M: Manish Chopra <manish.chopra@cavium.com>
10774 M: Dept-GELinuxNICDev@cavium.com
10775 L: netdev@vger.kernel.org
10777 F: drivers/net/ethernet/qlogic/qlcnic/
10779 QLOGIC QLGE 10Gb ETHERNET DRIVER
10780 M: Harish Patil <harish.patil@cavium.com>
10781 M: Manish Chopra <manish.chopra@cavium.com>
10782 M: Dept-GELinuxNICDev@cavium.com
10783 L: netdev@vger.kernel.org
10785 F: drivers/net/ethernet/qlogic/qlge/
10787 QLOGIC QL4xxx ETHERNET DRIVER
10788 M: Yuval Mintz <Yuval.Mintz@cavium.com>
10789 M: Ariel Elior <Ariel.Elior@cavium.com>
10790 M: everest-linux-l2@cavium.com
10791 L: netdev@vger.kernel.org
10793 F: drivers/net/ethernet/qlogic/qed/
10794 F: include/linux/qed/
10795 F: drivers/net/ethernet/qlogic/qede/
10797 QLOGIC QL41xxx ISCSI DRIVER
10798 M: QLogic-Storage-Upstream@cavium.com
10799 L: linux-scsi@vger.kernel.org
10801 F: drivers/scsi/qedi/
10803 QLOGIC QL41xxx FCOE DRIVER
10804 M: QLogic-Storage-Upstream@cavium.com
10805 L: linux-scsi@vger.kernel.org
10807 F: drivers/scsi/qedf/
10810 M: Anders Larsen <al@alarsen.net>
10811 W: http://www.alarsen.net/linux/qnx4fs/
10814 F: include/uapi/linux/qnx4_fs.h
10815 F: include/uapi/linux/qnxtypes.h
10817 QORIQ DPAA2 FSL-MC BUS DRIVER
10818 M: Stuart Yoder <stuyoder@gmail.com>
10819 M: Laurentiu Tudor <laurentiu.tudor@nxp.com>
10820 L: linux-kernel@vger.kernel.org
10822 F: drivers/staging/fsl-mc/
10823 F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
10825 QT1010 MEDIA DRIVER
10826 M: Antti Palosaari <crope@iki.fi>
10827 L: linux-media@vger.kernel.org
10828 W: https://linuxtv.org
10829 W: http://palosaari.fi/linux/
10830 Q: http://patchwork.linuxtv.org/project/linux-media/list/
10831 T: git git://linuxtv.org/anttip/media_tree.git
10833 F: drivers/media/tuners/qt1010*
10835 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
10836 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
10837 L: linux-wireless@vger.kernel.org
10838 W: http://wireless.kernel.org/en/users/Drivers/ath9k
10840 F: drivers/net/wireless/ath/ath9k/
10842 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
10843 M: Kalle Valo <kvalo@qca.qualcomm.com>
10844 L: ath10k@lists.infradead.org
10845 W: http://wireless.kernel.org/en/users/Drivers/ath10k
10846 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
10848 F: drivers/net/wireless/ath/ath10k/
10850 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
10851 M: Timur Tabi <timur@codeaurora.org>
10852 L: netdev@vger.kernel.org
10854 F: drivers/net/ethernet/qualcomm/emac/
10856 QUALCOMM HEXAGON ARCHITECTURE
10857 M: Richard Kuo <rkuo@codeaurora.org>
10858 L: linux-hexagon@vger.kernel.org
10859 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
10863 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
10864 M: Stanimir Varbanov <stanimir.varbanov@linaro.org>
10865 L: linux-media@vger.kernel.org
10866 L: linux-arm-msm@vger.kernel.org
10867 T: git git://linuxtv.org/media_tree.git
10869 F: drivers/media/platform/qcom/venus/
10871 QUALCOMM WCN36XX WIRELESS DRIVER
10872 M: Eugene Krasnikov <k.eugene.e@gmail.com>
10873 L: wcn36xx@lists.infradead.org
10874 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
10875 T: git git://github.com/KrasnikovEugene/wcn36xx.git
10877 F: drivers/net/wireless/ath/wcn36xx/
10879 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
10880 M: Gabriel Somlo <somlo@cmu.edu>
10881 M: "Michael S. Tsirkin" <mst@redhat.com>
10882 L: qemu-devel@nongnu.org
10884 F: drivers/firmware/qemu_fw_cfg.c
10886 QUANTENNA QTNFMAC WIRELESS DRIVER
10887 M: Igor Mitsyanko <imitsyanko@quantenna.com>
10888 M: Avinash Patil <avinashp@quantenna.com>
10889 M: Sergey Matyukevich <smatyukevich@quantenna.com>
10890 L: linux-wireless@vger.kernel.org
10892 F: drivers/net/wireless/quantenna
10894 RADOS BLOCK DEVICE (RBD)
10895 M: Ilya Dryomov <idryomov@gmail.com>
10896 M: Sage Weil <sage@redhat.com>
10897 M: Alex Elder <elder@kernel.org>
10898 L: ceph-devel@vger.kernel.org
10899 W: http://ceph.com/
10900 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
10901 T: git git://github.com/ceph/ceph-client.git
10903 F: Documentation/ABI/testing/sysfs-bus-rbd
10904 F: drivers/block/rbd.c
10905 F: drivers/block/rbd_types.h
10907 RADEON FRAMEBUFFER DISPLAY DRIVER
10908 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
10909 L: linux-fbdev@vger.kernel.org
10911 F: drivers/video/fbdev/aty/radeon*
10912 F: include/uapi/linux/radeonfb.h
10914 RADIOSHARK RADIO DRIVER
10915 M: Hans Verkuil <hverkuil@xs4all.nl>
10916 L: linux-media@vger.kernel.org
10917 T: git git://linuxtv.org/media_tree.git
10919 F: drivers/media/radio/radio-shark.c
10921 RADIOSHARK2 RADIO DRIVER
10922 M: Hans Verkuil <hverkuil@xs4all.nl>
10923 L: linux-media@vger.kernel.org
10924 T: git git://linuxtv.org/media_tree.git
10926 F: drivers/media/radio/radio-shark2.c
10927 F: drivers/media/radio/radio-tea5777.c
10929 RAGE128 FRAMEBUFFER DISPLAY DRIVER
10930 M: Paul Mackerras <paulus@samba.org>
10931 L: linux-fbdev@vger.kernel.org
10933 F: drivers/video/fbdev/aty/aty128fb.c
10935 RAINSHADOW-CEC DRIVER
10936 M: Hans Verkuil <hverkuil@xs4all.nl>
10937 L: linux-media@vger.kernel.org
10938 T: git git://linuxtv.org/media_tree.git
10940 F: drivers/media/usb/rainshadow-cec/*
10942 RALINK MIPS ARCHITECTURE
10943 M: John Crispin <john@phrozen.org>
10944 L: linux-mips@linux-mips.org
10946 F: arch/mips/ralink
10948 RALINK RT2X00 WIRELESS LAN DRIVER
10950 M: Stanislaw Gruszka <sgruszka@redhat.com>
10951 M: Helmut Schaa <helmut.schaa@googlemail.com>
10952 L: linux-wireless@vger.kernel.org
10954 F: drivers/net/wireless/ralink/rt2x00/
10956 RAMDISK RAM BLOCK DEVICE DRIVER
10957 M: Jens Axboe <axboe@kernel.dk>
10959 F: Documentation/blockdev/ramdisk.txt
10960 F: drivers/block/brd.c
10962 RANDOM NUMBER DRIVER
10963 M: "Theodore Ts'o" <tytso@mit.edu>
10965 F: drivers/char/random.c
10968 M: Matt Porter <mporter@kernel.crashing.org>
10969 M: Alexandre Bounine <alexandre.bounine@idt.com>
10971 F: drivers/rapidio/
10973 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
10974 L: linux-wireless@vger.kernel.org
10976 F: drivers/net/wireless/ray*
10979 M: Josh Triplett <josh@joshtriplett.org>
10980 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10981 L: linux-kernel@vger.kernel.org
10983 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10984 F: Documentation/RCU/torture.txt
10985 F: kernel/rcu/rcutorture.c
10987 RCUTORTURE TEST FRAMEWORK
10988 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10989 M: Josh Triplett <josh@joshtriplett.org>
10990 R: Steven Rostedt <rostedt@goodmis.org>
10991 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10992 R: Lai Jiangshan <jiangshanlai@gmail.com>
10993 L: linux-kernel@vger.kernel.org
10995 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10996 F: tools/testing/selftests/rcutorture
10999 M: Florian Fainelli <florian@openwrt.org>
11002 RDC R6040 FAST ETHERNET DRIVER
11003 M: Florian Fainelli <f.fainelli@gmail.com>
11004 L: netdev@vger.kernel.org
11006 F: drivers/net/ethernet/rdc/r6040.c
11008 RDS - RELIABLE DATAGRAM SOCKETS
11009 M: Santosh Shilimkar <santosh.shilimkar@oracle.com>
11010 L: netdev@vger.kernel.org
11011 L: linux-rdma@vger.kernel.org
11012 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
11013 W: https://oss.oracle.com/projects/rds/
11016 F: Documentation/networking/rds.txt
11018 RDMAVT - RDMA verbs software
11019 M: Dennis Dalessandro <dennis.dalessandro@intel.com>
11020 L: linux-rdma@vger.kernel.org
11022 F: drivers/infiniband/sw/rdmavt
11024 RDT - RESOURCE ALLOCATION
11025 M: Fenghua Yu <fenghua.yu@intel.com>
11026 L: linux-kernel@vger.kernel.org
11028 F: arch/x86/kernel/cpu/intel_rdt*
11029 F: arch/x86/include/asm/intel_rdt*
11030 F: Documentation/x86/intel_rdt*
11032 READ-COPY UPDATE (RCU)
11033 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
11034 M: Josh Triplett <josh@joshtriplett.org>
11035 R: Steven Rostedt <rostedt@goodmis.org>
11036 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11037 R: Lai Jiangshan <jiangshanlai@gmail.com>
11038 L: linux-kernel@vger.kernel.org
11039 W: http://www.rdrop.com/users/paulmck/RCU/
11041 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11042 F: Documentation/RCU/
11043 X: Documentation/RCU/torture.txt
11044 F: include/linux/rcu*
11045 X: include/linux/srcu.h
11047 X: kernel/torture.c
11049 REAL TIME CLOCK (RTC) SUBSYSTEM
11050 M: Alessandro Zummo <a.zummo@towertech.it>
11051 M: Alexandre Belloni <alexandre.belloni@free-electrons.com>
11052 L: linux-rtc@vger.kernel.org
11053 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
11054 T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
11056 F: Documentation/devicetree/bindings/rtc/
11057 F: Documentation/rtc.txt
11059 F: include/linux/rtc.h
11060 F: include/uapi/linux/rtc.h
11061 F: include/linux/rtc/
11062 F: include/linux/platform_data/rtc-*
11063 F: tools/testing/selftests/timers/rtctest.c
11065 REALTEK AUDIO CODECS
11066 M: Bard Liao <bardliao@realtek.com>
11067 M: Oder Chiou <oder_chiou@realtek.com>
11069 F: sound/soc/codecs/rt*
11070 F: include/sound/rt*.h
11072 REISERFS FILE SYSTEM
11073 L: reiserfs-devel@vger.kernel.org
11077 REGISTER MAP ABSTRACTION
11078 M: Mark Brown <broonie@kernel.org>
11079 L: linux-kernel@vger.kernel.org
11080 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
11082 F: Documentation/devicetree/bindings/regmap/
11083 F: drivers/base/regmap/
11084 F: include/linux/regmap.h
11086 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
11087 M: Ohad Ben-Cohen <ohad@wizery.com>
11088 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11089 L: linux-remoteproc@vger.kernel.org
11090 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
11092 F: Documentation/devicetree/bindings/remoteproc/
11093 F: Documentation/remoteproc.txt
11094 F: drivers/remoteproc/
11095 F: include/linux/remoteproc.h
11097 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
11098 M: Ohad Ben-Cohen <ohad@wizery.com>
11099 M: Bjorn Andersson <bjorn.andersson@linaro.org>
11100 L: linux-remoteproc@vger.kernel.org
11101 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
11104 F: Documentation/rpmsg.txt
11105 F: include/linux/rpmsg.h
11106 F: include/linux/rpmsg/
11108 RENESAS CLOCK DRIVERS
11109 M: Geert Uytterhoeven <geert+renesas@glider.be>
11110 L: linux-renesas-soc@vger.kernel.org
11112 F: drivers/clk/renesas/
11114 RENESAS ETHERNET DRIVERS
11115 R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
11116 L: netdev@vger.kernel.org
11117 L: linux-renesas-soc@vger.kernel.org
11118 F: drivers/net/ethernet/renesas/
11119 F: include/linux/sh_eth.h
11121 RENESAS R-CAR GYROADC DRIVER
11122 M: Marek Vasut <marek.vasut@gmail.com>
11123 L: linux-iio@vger.kernel.org
11125 F: drivers/iio/adc/rcar_gyro_adc.c
11127 RENESAS USB PHY DRIVER
11128 M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
11129 L: linux-renesas-soc@vger.kernel.org
11131 F: drivers/phy/renesas/phy-rcar-gen3-usb*.c
11133 RESET CONTROLLER FRAMEWORK
11134 M: Philipp Zabel <p.zabel@pengutronix.de>
11135 T: git git://git.pengutronix.de/git/pza/linux
11138 F: Documentation/devicetree/bindings/reset/
11139 F: include/dt-bindings/reset/
11140 F: include/linux/reset.h
11141 F: include/linux/reset-controller.h
11144 M: Johannes Berg <johannes@sipsolutions.net>
11145 L: linux-wireless@vger.kernel.org
11146 W: http://wireless.kernel.org/
11147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11148 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11150 F: Documentation/rfkill.txt
11154 M: Thomas Graf <tgraf@suug.ch>
11155 M: Herbert Xu <herbert@gondor.apana.org.au>
11156 L: netdev@vger.kernel.org
11158 F: lib/rhashtable.c
11159 F: include/linux/rhashtable.h
11161 RICOH SMARTMEDIA/XD DRIVER
11162 M: Maxim Levitsky <maximlevitsky@gmail.com>
11164 F: drivers/mtd/nand/r852.c
11165 F: drivers/mtd/nand/r852.h
11167 RICOH R5C592 MEMORYSTICK DRIVER
11168 M: Maxim Levitsky <maximlevitsky@gmail.com>
11170 F: drivers/memstick/host/r592.*
11173 M: Stefan Achatz <erazor_de@users.sourceforge.net>
11174 W: http://sourceforge.net/projects/roccat/
11176 F: drivers/hid/hid-roccat*
11177 F: include/linux/hid-roccat*
11178 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
11181 M: Jiri Pirko <jiri@resnulli.us>
11182 L: netdev@vger.kernel.org
11184 F: drivers/net/ethernet/rocker/
11188 W: http://www.comtrol.com
11190 F: Documentation/serial/rocket.txt
11191 F: drivers/tty/rocket*
11193 ROCKETPORT EXPRESS/INFINITY DRIVER
11194 M: Kevin Cernekee <cernekee@gmail.com>
11195 L: linux-serial@vger.kernel.org
11197 F: drivers/tty/serial/rp2.*
11200 M: Ralf Baechle <ralf@linux-mips.org>
11201 L: linux-hams@vger.kernel.org
11202 W: http://www.linux-ax25.org/
11204 F: include/net/rose.h
11205 F: include/uapi/linux/rose.h
11208 RTL2830 MEDIA DRIVER
11209 M: Antti Palosaari <crope@iki.fi>
11210 L: linux-media@vger.kernel.org
11211 W: https://linuxtv.org
11212 W: http://palosaari.fi/linux/
11213 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11214 T: git git://linuxtv.org/anttip/media_tree.git
11216 F: drivers/media/dvb-frontends/rtl2830*
11218 RTL2832 MEDIA DRIVER
11219 M: Antti Palosaari <crope@iki.fi>
11220 L: linux-media@vger.kernel.org
11221 W: https://linuxtv.org
11222 W: http://palosaari.fi/linux/
11223 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11224 T: git git://linuxtv.org/anttip/media_tree.git
11226 F: drivers/media/dvb-frontends/rtl2832*
11228 RTL2832_SDR MEDIA DRIVER
11229 M: Antti Palosaari <crope@iki.fi>
11230 L: linux-media@vger.kernel.org
11231 W: https://linuxtv.org
11232 W: http://palosaari.fi/linux/
11233 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11234 T: git git://linuxtv.org/anttip/media_tree.git
11236 F: drivers/media/dvb-frontends/rtl2832_sdr*
11238 RTL8180 WIRELESS DRIVER
11239 L: linux-wireless@vger.kernel.org
11240 W: http://wireless.kernel.org/
11241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11243 F: drivers/net/wireless/realtek/rtl818x/rtl8180/
11245 RTL8187 WIRELESS DRIVER
11246 M: Herton Ronaldo Krzesinski <herton@canonical.com>
11247 M: Hin-Tak Leung <htl10@users.sourceforge.net>
11248 M: Larry Finger <Larry.Finger@lwfinger.net>
11249 L: linux-wireless@vger.kernel.org
11250 W: http://wireless.kernel.org/
11251 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11253 F: drivers/net/wireless/realtek/rtl818x/rtl8187/
11255 RTL8192CE WIRELESS DRIVER
11256 M: Larry Finger <Larry.Finger@lwfinger.net>
11257 M: Chaoming Li <chaoming_li@realsil.com.cn>
11258 L: linux-wireless@vger.kernel.org
11259 W: http://wireless.kernel.org/
11260 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
11262 F: drivers/net/wireless/realtek/rtlwifi/
11263 F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
11265 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
11266 M: Jes Sorensen <Jes.Sorensen@gmail.com>
11267 L: linux-wireless@vger.kernel.org
11268 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
11270 F: drivers/net/wireless/realtek/rtl8xxxu/
11272 S3 SAVAGE FRAMEBUFFER DRIVER
11273 M: Antonino Daplas <adaplas@gmail.com>
11274 L: linux-fbdev@vger.kernel.org
11276 F: drivers/video/fbdev/savage/
11279 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
11280 M: Heiko Carstens <heiko.carstens@de.ibm.com>
11281 L: linux-s390@vger.kernel.org
11282 W: http://www.ibm.com/developerworks/linux/linux390/
11283 T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
11287 F: Documentation/s390/
11288 F: Documentation/driver-api/s390-drivers.rst
11290 S390 COMMON I/O LAYER
11291 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11292 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
11293 L: linux-s390@vger.kernel.org
11294 W: http://www.ibm.com/developerworks/linux/linux390/
11296 F: drivers/s390/cio/
11299 M: Stefan Haberland <sth@linux.vnet.ibm.com>
11300 M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com>
11301 L: linux-s390@vger.kernel.org
11302 W: http://www.ibm.com/developerworks/linux/linux390/
11304 F: drivers/s390/block/dasd*
11305 F: block/partitions/ibm.c
11307 S390 NETWORK DRIVERS
11308 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11309 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11310 L: linux-s390@vger.kernel.org
11311 W: http://www.ibm.com/developerworks/linux/linux390/
11313 F: drivers/s390/net/
11316 M: Sebastian Ott <sebott@linux.vnet.ibm.com>
11317 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11318 L: linux-s390@vger.kernel.org
11319 W: http://www.ibm.com/developerworks/linux/linux390/
11322 F: drivers/pci/hotplug/s390_pci_hpc.c
11325 M: Harald Freudenberger <freude@de.ibm.com>
11326 L: linux-s390@vger.kernel.org
11327 W: http://www.ibm.com/developerworks/linux/linux390/
11329 F: drivers/s390/crypto/
11332 M: Steffen Maier <maier@linux.vnet.ibm.com>
11333 L: linux-s390@vger.kernel.org
11334 W: http://www.ibm.com/developerworks/linux/linux390/
11336 F: drivers/s390/scsi/zfcp_*
11338 S390 IUCV NETWORK LAYER
11339 M: Julian Wiedmann <jwi@linux.vnet.ibm.com>
11340 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11341 L: linux-s390@vger.kernel.org
11342 W: http://www.ibm.com/developerworks/linux/linux390/
11344 F: drivers/s390/net/*iucv*
11345 F: include/net/iucv/
11349 M: Gerald Schaefer <gerald.schaefer@de.ibm.com>
11350 L: linux-s390@vger.kernel.org
11351 W: http://www.ibm.com/developerworks/linux/linux390/
11353 F: drivers/iommu/s390-iommu.c
11355 S390 VFIO-CCW DRIVER
11356 M: Cornelia Huck <cohuck@redhat.com>
11357 M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
11358 L: linux-s390@vger.kernel.org
11359 L: kvm@vger.kernel.org
11361 F: drivers/s390/cio/vfio_ccw*
11362 F: Documentation/s390/vfio-ccw.txt
11363 F: include/uapi/linux/vfio_ccw.h
11365 S3C24XX SD/MMC Driver
11366 M: Ben Dooks <ben-linux@fluff.org>
11367 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11369 F: drivers/mmc/host/s3cmci.*
11371 SAA6588 RDS RECEIVER DRIVER
11372 M: Hans Verkuil <hverkuil@xs4all.nl>
11373 L: linux-media@vger.kernel.org
11374 T: git git://linuxtv.org/media_tree.git
11375 W: https://linuxtv.org
11377 F: drivers/media/i2c/saa6588*
11379 SAA7134 VIDEO4LINUX DRIVER
11380 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
11381 M: Mauro Carvalho Chehab <mchehab@kernel.org>
11382 L: linux-media@vger.kernel.org
11383 W: https://linuxtv.org
11384 T: git git://linuxtv.org/media_tree.git
11386 F: Documentation/media/v4l-drivers/saa7134*
11387 F: drivers/media/pci/saa7134/
11389 SAA7146 VIDEO4LINUX-2 DRIVER
11390 M: Hans Verkuil <hverkuil@xs4all.nl>
11391 L: linux-media@vger.kernel.org
11392 T: git git://linuxtv.org/media_tree.git
11394 F: drivers/media/common/saa7146/
11395 F: drivers/media/pci/saa7146/
11396 F: include/media/saa7146*
11398 SAMSUNG LAPTOP DRIVER
11399 M: Corentin Chary <corentin.chary@gmail.com>
11400 L: platform-driver-x86@vger.kernel.org
11402 F: drivers/platform/x86/samsung-laptop.c
11404 SAMSUNG AUDIO (ASoC) DRIVERS
11405 M: Krzysztof Kozlowski <krzk@kernel.org>
11406 M: Sangbeom Kim <sbkim73@samsung.com>
11407 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11408 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
11410 F: sound/soc/samsung/
11412 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11413 M: Krzysztof Kozlowski <krzk@kernel.org>
11414 L: linux-crypto@vger.kernel.org
11415 L: linux-samsung-soc@vger.kernel.org
11417 F: drivers/crypto/exynos-rng.c
11418 F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt
11420 SAMSUNG FRAMEBUFFER DRIVER
11421 M: Jingoo Han <jingoohan1@gmail.com>
11422 L: linux-fbdev@vger.kernel.org
11424 F: drivers/video/fbdev/s3c-fb.c
11426 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11427 M: Sangbeom Kim <sbkim73@samsung.com>
11428 M: Krzysztof Kozlowski <krzk@kernel.org>
11429 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11430 L: linux-kernel@vger.kernel.org
11431 L: linux-samsung-soc@vger.kernel.org
11433 F: drivers/mfd/sec*.c
11434 F: drivers/regulator/s2m*.c
11435 F: drivers/regulator/s5m*.c
11436 F: drivers/clk/clk-s2mps11.c
11437 F: drivers/rtc/rtc-s5m.c
11438 F: include/linux/mfd/samsung/
11439 F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11440 F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11441 F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11442 F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11444 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11445 M: Krzysztof Kozlowski <krzk@kernel.org>
11446 M: Vladimir Zapolskiy <vz@mleia.com>
11447 L: linux-crypto@vger.kernel.org
11448 L: linux-samsung-soc@vger.kernel.org
11450 F: drivers/crypto/s5p-sss.c
11452 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11453 M: Kyungmin Park <kyungmin.park@samsung.com>
11454 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11455 L: linux-media@vger.kernel.org
11456 Q: https://patchwork.linuxtv.org/project/linux-media/list/
11458 F: drivers/media/platform/exynos4-is/
11460 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11461 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
11462 L: linux-media@vger.kernel.org
11463 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11465 F: drivers/media/platform/s3c-camif/
11466 F: include/media/drv-intf/s3c_camif.h
11468 SAMSUNG S5C73M3 CAMERA DRIVER
11469 M: Kyungmin Park <kyungmin.park@samsung.com>
11470 M: Andrzej Hajda <a.hajda@samsung.com>
11471 L: linux-media@vger.kernel.org
11473 F: drivers/media/i2c/s5c73m3/*
11475 SAMSUNG S5K5BAF CAMERA DRIVER
11476 M: Kyungmin Park <kyungmin.park@samsung.com>
11477 M: Andrzej Hajda <a.hajda@samsung.com>
11478 L: linux-media@vger.kernel.org
11480 F: drivers/media/i2c/s5k5baf.c
11482 SAMSUNG S3FWRN5 NFC DRIVER
11483 M: Robert Baldyga <r.baldyga@samsung.com>
11484 M: Krzysztof Opasiak <k.opasiak@samsung.com>
11485 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11487 F: drivers/nfc/s3fwrn5
11489 SAMSUNG SOC CLOCK DRIVERS
11490 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11491 M: Tomasz Figa <tomasz.figa@gmail.com>
11492 M: Chanwoo Choi <cw00.choi@samsung.com>
11494 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11495 F: drivers/clk/samsung/
11496 F: include/dt-bindings/clock/exynos*.h
11497 F: Documentation/devicetree/bindings/clock/exynos*.txt
11499 SAMSUNG SPI DRIVERS
11500 M: Kukjin Kim <kgene@kernel.org>
11501 M: Krzysztof Kozlowski <krzk@kernel.org>
11502 M: Andi Shyti <andi.shyti@samsung.com>
11503 L: linux-spi@vger.kernel.org
11504 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
11506 F: Documentation/devicetree/bindings/spi/spi-samsung.txt
11507 F: drivers/spi/spi-s3c*
11508 F: include/linux/platform_data/spi-s3c64xx.h
11510 SAMSUNG SXGBE DRIVERS
11511 M: Byungho An <bh74.an@samsung.com>
11512 M: Girish K S <ks.giri@samsung.com>
11513 M: Vipul Pandya <vipul.pandya@samsung.com>
11515 L: netdev@vger.kernel.org
11516 F: drivers/net/ethernet/samsung/sxgbe/
11518 SAMSUNG THERMAL DRIVER
11519 M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11520 L: linux-pm@vger.kernel.org
11521 L: linux-samsung-soc@vger.kernel.org
11523 T: git https://github.com/lmajewski/linux-samsung-thermal.git
11524 F: drivers/thermal/samsung/
11526 SAMSUNG USB2 PHY DRIVER
11527 M: Kamil Debski <kamil@wypas.org>
11528 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
11529 L: linux-kernel@vger.kernel.org
11531 F: Documentation/devicetree/bindings/phy/samsung-phy.txt
11532 F: Documentation/phy/samsung-usb2.txt
11533 F: drivers/phy/samsung/phy-exynos4210-usb2.c
11534 F: drivers/phy/samsung/phy-exynos4x12-usb2.c
11535 F: drivers/phy/samsung/phy-exynos5250-usb2.c
11536 F: drivers/phy/samsung/phy-s5pv210-usb2.c
11537 F: drivers/phy/samsung/phy-samsung-usb2.c
11538 F: drivers/phy/samsung/phy-samsung-usb2.h
11541 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11542 L: linux-serial@vger.kernel.org
11544 F: Documentation/devicetree/bindings/serial/
11545 F: drivers/tty/serial/
11548 M: Rob Herring <robh@kernel.org>
11549 L: linux-serial@vger.kernel.org
11551 F: Documentation/devicetree/bindings/serial/slave-device.txt
11552 F: drivers/tty/serdev/
11553 F: include/linux/serdev.h
11556 M: Sean Young <sean@mess.org>
11557 L: linux-media@vger.kernel.org
11559 F: drivers/media/rc/serial_ir.c
11562 M: Benjamin Gaignard <benjamin.gaignard@linaro.org>
11564 F: drivers/staging/media/st-cec/
11565 F: Documentation/devicetree/bindings/media/stih-cec.txt
11567 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
11568 M: Ursula Braun <ubraun@linux.vnet.ibm.com>
11569 L: linux-s390@vger.kernel.org
11570 W: http://www.ibm.com/developerworks/linux/linux390/
11574 SYNOPSYS DESIGNWARE DMAC DRIVER
11575 M: Viresh Kumar <vireshk@kernel.org>
11576 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11578 F: include/linux/dma/dw.h
11579 F: include/linux/platform_data/dma-dw.h
11582 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
11583 M: Jie Deng <jiedeng@synopsys.com>
11584 L: netdev@vger.kernel.org
11586 F: drivers/net/ethernet/synopsys/
11588 SYNOPSYS DESIGNWARE I2C DRIVER
11589 M: Jarkko Nikula <jarkko.nikula@linux.intel.com>
11590 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
11591 R: Mika Westerberg <mika.westerberg@linux.intel.com>
11592 L: linux-i2c@vger.kernel.org
11594 F: drivers/i2c/busses/i2c-designware-*
11595 F: include/linux/platform_data/i2c-designware.h
11597 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
11598 M: Jaehoon Chung <jh80.chung@samsung.com>
11599 L: linux-mmc@vger.kernel.org
11601 F: drivers/mmc/host/dw_mmc*
11603 SYSTEM TRACE MODULE CLASS
11604 M: Alexander Shishkin <alexander.shishkin@linux.intel.com>
11606 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
11607 F: Documentation/trace/stm.txt
11608 F: drivers/hwtracing/stm/
11609 F: include/linux/stm.h
11610 F: include/uapi/linux/stm.h
11613 M: Jens Wiklander <jens.wiklander@linaro.org>
11615 F: include/linux/tee_drv.h
11616 F: include/uapi/linux/tee.h
11618 F: Documentation/tee.txt
11621 M: Andreas Noever <andreas.noever@gmail.com>
11622 M: Michael Jamet <michael.jamet@intel.com>
11623 M: Mika Westerberg <mika.westerberg@linux.intel.com>
11624 M: Yehezkel Bernat <yehezkel.bernat@intel.com>
11626 F: drivers/thunderbolt/
11628 TI BQ27XXX POWER SUPPLY DRIVER
11629 R: Andrew F. Davis <afd@ti.com>
11630 F: include/linux/power/bq27xxx_battery.h
11631 F: drivers/power/supply/bq27xxx_battery.c
11632 F: drivers/power/supply/bq27xxx_battery_i2c.c
11634 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
11635 M: John Stultz <john.stultz@linaro.org>
11636 M: Thomas Gleixner <tglx@linutronix.de>
11637 R: Stephen Boyd <sboyd@codeaurora.org>
11638 L: linux-kernel@vger.kernel.org
11639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11641 F: include/linux/clocksource.h
11642 F: include/linux/time.h
11643 F: include/linux/timex.h
11644 F: include/uapi/linux/time.h
11645 F: include/uapi/linux/timex.h
11646 F: kernel/time/clocksource.c
11647 F: kernel/time/time*.c
11648 F: kernel/time/alarmtimer.c
11649 F: kernel/time/ntp.c
11650 F: tools/testing/selftests/timers/
11652 TI TRF7970A NFC DRIVER
11653 M: Mark Greer <mgreer@animalcreek.com>
11654 L: linux-wireless@vger.kernel.org
11655 L: linux-nfc@lists.01.org (moderated for non-subscribers)
11657 F: drivers/nfc/trf7970a.c
11658 F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt
11661 M: Zwane Mwaikambo <zwanem@gmail.com>
11663 F: drivers/watchdog/sc1200wdt.c
11666 M: Ingo Molnar <mingo@redhat.com>
11667 M: Peter Zijlstra <peterz@infradead.org>
11668 L: linux-kernel@vger.kernel.org
11669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11672 F: include/linux/sched.h
11673 F: include/uapi/linux/sched.h
11674 F: include/linux/wait.h
11677 M: Chen Liqin <liqin.linux@gmail.com>
11678 M: Lennox Wu <lennox.wu@gmail.com>
11679 W: http://www.sunplus.com
11683 SCR24X CHIP CARD INTERFACE DRIVER
11684 M: Lubomir Rintel <lkundrak@v3.sk>
11686 F: drivers/char/pcmcia/scr24x_cs.c
11688 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
11689 M: Sudeep Holla <sudeep.holla@arm.com>
11690 L: linux-arm-kernel@lists.infradead.org
11692 F: Documentation/devicetree/bindings/arm/arm,scpi.txt
11693 F: drivers/clk/clk-scpi.c
11694 F: drivers/cpufreq/scpi-cpufreq.c
11695 F: drivers/firmware/arm_scpi.c
11696 F: include/linux/scpi_protocol.h
11699 M: Jens Axboe <axboe@kernel.dk>
11700 L: linux-scsi@vger.kernel.org
11701 W: http://www.kernel.dk
11703 F: drivers/scsi/sr*
11705 SCSI RDMA PROTOCOL (SRP) INITIATOR
11706 M: Bart Van Assche <bart.vanassche@sandisk.com>
11707 L: linux-rdma@vger.kernel.org
11709 W: http://www.openfabrics.org
11710 Q: http://patchwork.kernel.org/project/linux-rdma/list/
11711 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11712 F: drivers/infiniband/ulp/srp/
11713 F: include/scsi/srp.h
11716 M: Doug Gilbert <dgilbert@interlog.com>
11717 L: linux-scsi@vger.kernel.org
11718 W: http://sg.danny.cz/sg
11720 F: Documentation/scsi/scsi-generic.txt
11721 F: drivers/scsi/sg.c
11722 F: include/scsi/sg.h
11725 M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
11726 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11727 M: "Martin K. Petersen" <martin.petersen@oracle.com>
11728 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11729 L: linux-scsi@vger.kernel.org
11731 F: Documentation/devicetree/bindings/scsi/
11736 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
11737 L: linux-scsi@vger.kernel.org
11739 F: Documentation/scsi/st.txt
11740 F: drivers/scsi/st.*
11741 F: drivers/scsi/st_*.h
11744 M: Vlad Yasevich <vyasevich@gmail.com>
11745 M: Neil Horman <nhorman@tuxdriver.com>
11746 L: linux-sctp@vger.kernel.org
11747 W: http://lksctp.sourceforge.net
11749 F: Documentation/networking/sctp.txt
11750 F: include/linux/sctp.h
11751 F: include/uapi/linux/sctp.h
11752 F: include/net/sctp/
11756 M: Jim Cromie <jim.cromie@gmail.com>
11758 F: Documentation/i2c/busses/scx200_acb
11759 F: arch/x86/platform/scx200/
11760 F: drivers/watchdog/scx200_wdt.c
11761 F: drivers/i2c/busses/scx200*
11762 F: drivers/mtd/maps/scx200_docflash.c
11763 F: include/linux/scx200.h
11766 M: Jim Cromie <jim.cromie@gmail.com>
11768 F: drivers/char/scx200_gpio.c
11769 F: include/linux/scx200_gpio.h
11771 SCx200 HRT CLOCKSOURCE DRIVER
11772 M: Jim Cromie <jim.cromie@gmail.com>
11774 F: drivers/clocksource/scx200_hrt.c
11776 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
11777 M: Sascha Sommer <saschasommer@freenet.de>
11778 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
11780 F: drivers/mmc/host/sdricoh_cs.c
11782 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
11783 M: Adrian Hunter <adrian.hunter@intel.com>
11784 L: linux-mmc@vger.kernel.org
11785 T: git git://git.infradead.org/users/ahunter/linux-sdhci.git
11787 F: drivers/mmc/host/sdhci*
11788 F: include/linux/mmc/sdhci*
11791 M: Kees Cook <keescook@chromium.org>
11792 R: Andy Lutomirski <luto@amacapital.net>
11793 R: Will Drewry <wad@chromium.org>
11794 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
11796 F: kernel/seccomp.c
11797 F: include/uapi/linux/seccomp.h
11798 F: include/linux/seccomp.h
11799 F: tools/testing/selftests/seccomp/*
11800 F: tools/testing/selftests/kselftest_harness.h
11801 F: Documentation/userspace-api/seccomp_filter.rst
11802 K: \bsecure_computing
11805 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
11806 M: Al Cooper <alcooperx@gmail.com>
11807 L: linux-mmc@vger.kernel.org
11808 L: bcm-kernel-feedback-list@broadcom.com
11810 F: drivers/mmc/host/sdhci-brcmstb*
11812 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
11813 M: Ben Dooks <ben-linux@fluff.org>
11814 M: Jaehoon Chung <jh80.chung@samsung.com>
11815 L: linux-mmc@vger.kernel.org
11817 F: drivers/mmc/host/sdhci-s3c*
11819 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
11820 M: Viresh Kumar <vireshk@kernel.org>
11821 L: linux-mmc@vger.kernel.org
11823 F: drivers/mmc/host/sdhci-spear.c
11825 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
11826 M: Scott Bauer <scott.bauer@intel.com>
11827 M: Jonathan Derrick <jonathan.derrick@intel.com>
11828 M: Rafael Antognolli <rafael.antognolli@intel.com>
11829 L: linux-block@vger.kernel.org
11832 F: block/opal_proto.h
11833 F: include/linux/sed*
11834 F: include/uapi/linux/sed*
11837 M: James Morris <james.l.morris@oracle.com>
11838 M: "Serge E. Hallyn" <serge@hallyn.com>
11839 L: linux-security-module@vger.kernel.org (suggested Cc:)
11840 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
11841 W: http://kernsec.org/
11846 M: Security Officers <security@kernel.org>
11849 SELINUX SECURITY MODULE
11850 M: Paul Moore <paul@paul-moore.com>
11851 M: Stephen Smalley <sds@tycho.nsa.gov>
11852 M: Eric Paris <eparis@parisplace.org>
11853 L: selinux@tycho.nsa.gov (moderated for non-subscribers)
11854 W: http://selinuxproject.org
11855 T: git git://git.infradead.org/users/pcmoore/selinux
11857 F: include/linux/selinux*
11858 F: security/selinux/
11859 F: scripts/selinux/
11860 F: Documentation/admin-guide/LSM/SELinux.rst
11862 APPARMOR SECURITY MODULE
11863 M: John Johansen <john.johansen@canonical.com>
11864 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
11865 W: apparmor.wiki.kernel.org
11866 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
11868 F: security/apparmor/
11869 F: Documentation/admin-guide/LSM/apparmor.rst
11871 LOADPIN SECURITY MODULE
11872 M: Kees Cook <keescook@chromium.org>
11873 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11875 F: security/loadpin/
11876 F: Documentation/admin-guide/LSM/LoadPin.rst
11878 YAMA SECURITY MODULE
11879 M: Kees Cook <keescook@chromium.org>
11880 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
11883 F: Documentation/admin-guide/LSM/Yama.rst
11886 M: Jiri Slaby <jirislaby@gmail.com>
11888 F: drivers/misc/phantom.c
11889 F: include/uapi/linux/phantom.h
11891 Emulex 10Gbps iSCSI - OneConnect DRIVER
11892 M: Subbu Seetharaman <subbu.seetharaman@broadcom.com>
11893 M: Ketan Mukadam <ketan.mukadam@broadcom.com>
11894 M: Jitendra Bhivare <jitendra.bhivare@broadcom.com>
11895 L: linux-scsi@vger.kernel.org
11896 W: http://www.broadcom.com
11898 F: drivers/scsi/be2iscsi/
11900 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
11901 M: Sathya Perla <sathya.perla@broadcom.com>
11902 M: Ajit Khaparde <ajit.khaparde@broadcom.com>
11903 M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
11904 M: Somnath Kotur <somnath.kotur@broadcom.com>
11905 L: netdev@vger.kernel.org
11906 W: http://www.emulex.com
11908 F: drivers/net/ethernet/emulex/benet/
11910 EMULEX ONECONNECT ROCE DRIVER
11911 M: Selvin Xavier <selvin.xavier@broadcom.com>
11912 M: Devesh Sharma <devesh.sharma@broadcom.com>
11913 L: linux-rdma@vger.kernel.org
11914 W: http://www.broadcom.com
11916 F: drivers/infiniband/hw/ocrdma/
11917 F: include/uapi/rdma/ocrdma-abi.h
11920 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
11921 M: Edward Cree <ecree@solarflare.com>
11922 M: Bert Kenward <bkenward@solarflare.com>
11923 L: netdev@vger.kernel.org
11925 F: drivers/net/ethernet/sfc/
11928 M: Dimitri Sivanich <sivanich@sgi.com>
11930 F: drivers/misc/sgi-gru/
11932 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
11933 M: Pat Gefre <pfg@sgi.com>
11934 L: linux-ia64@vger.kernel.org
11936 F: Documentation/ia64/serial.txt
11937 F: drivers/tty/serial/ioc?_serial.c
11938 F: include/linux/ioc?.h
11940 SGI XP/XPC/XPNET DRIVER
11941 M: Cliff Whickman <cpw@sgi.com>
11942 M: Robin Holt <robinmholt@gmail.com>
11944 F: drivers/misc/sgi-xp/
11946 SI2157 MEDIA DRIVER
11947 M: Antti Palosaari <crope@iki.fi>
11948 L: linux-media@vger.kernel.org
11949 W: https://linuxtv.org
11950 W: http://palosaari.fi/linux/
11951 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11952 T: git git://linuxtv.org/anttip/media_tree.git
11954 F: drivers/media/tuners/si2157*
11956 SI2168 MEDIA DRIVER
11957 M: Antti Palosaari <crope@iki.fi>
11958 L: linux-media@vger.kernel.org
11959 W: https://linuxtv.org
11960 W: http://palosaari.fi/linux/
11961 Q: http://patchwork.linuxtv.org/project/linux-media/list/
11962 T: git git://linuxtv.org/anttip/media_tree.git
11964 F: drivers/media/dvb-frontends/si2168*
11966 SI470X FM RADIO RECEIVER I2C DRIVER
11967 M: Hans Verkuil <hverkuil@xs4all.nl>
11968 L: linux-media@vger.kernel.org
11969 T: git git://linuxtv.org/media_tree.git
11970 W: https://linuxtv.org
11972 F: drivers/media/radio/si470x/radio-si470x-i2c.c
11974 SI470X FM RADIO RECEIVER USB DRIVER
11975 M: Hans Verkuil <hverkuil@xs4all.nl>
11976 L: linux-media@vger.kernel.org
11977 T: git git://linuxtv.org/media_tree.git
11978 W: https://linuxtv.org
11980 F: drivers/media/radio/si470x/radio-si470x-common.c
11981 F: drivers/media/radio/si470x/radio-si470x.h
11982 F: drivers/media/radio/si470x/radio-si470x-usb.c
11984 SI4713 FM RADIO TRANSMITTER I2C DRIVER
11985 M: Eduardo Valentin <edubezval@gmail.com>
11986 L: linux-media@vger.kernel.org
11987 T: git git://linuxtv.org/media_tree.git
11988 W: https://linuxtv.org
11990 F: drivers/media/radio/si4713/si4713.?
11992 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
11993 M: Eduardo Valentin <edubezval@gmail.com>
11994 L: linux-media@vger.kernel.org
11995 T: git git://linuxtv.org/media_tree.git
11996 W: https://linuxtv.org
11998 F: drivers/media/radio/si4713/radio-platform-si4713.c
12000 SI4713 FM RADIO TRANSMITTER USB DRIVER
12001 M: Hans Verkuil <hverkuil@xs4all.nl>
12002 L: linux-media@vger.kernel.org
12003 T: git git://linuxtv.org/media_tree.git
12004 W: https://linuxtv.org
12006 F: drivers/media/radio/si4713/radio-usb-si4713.c
12009 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12010 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12011 L: linux-media@vger.kernel.org
12012 W: https://linuxtv.org
12013 T: git git://linuxtv.org/media_tree.git
12015 F: drivers/media/common/siano/
12016 F: drivers/media/usb/siano/
12017 F: drivers/media/usb/siano/
12018 F: drivers/media/mmc/siano/
12020 SILEAD TOUCHSCREEN DRIVER
12021 M: Hans de Goede <hdegoede@redhat.com>
12022 L: linux-input@vger.kernel.org
12023 L: platform-driver-x86@vger.kernel.org
12025 F: drivers/input/touchscreen/silead.c
12026 F: drivers/platform/x86/silead_dmi.c
12029 M: Hans de Goede <hdegoede@redhat.com>
12030 L: linux-fbdev@vger.kernel.org
12032 F: Documentation/devicetree/bindings/display/simple-framebuffer.txt
12033 F: drivers/video/fbdev/simplefb.c
12034 F: include/linux/platform_data/simplefb.h
12036 SH_VEU V4L2 MEM2MEM DRIVER
12037 L: linux-media@vger.kernel.org
12039 F: drivers/media/platform/sh_veu.c
12041 SH_VOU V4L2 OUTPUT DRIVER
12042 L: linux-media@vger.kernel.org
12044 F: drivers/media/platform/sh_vou.c
12045 F: include/media/drv-intf/sh_vou.h
12047 SIMPLE FIRMWARE INTERFACE (SFI)
12048 M: Len Brown <lenb@kernel.org>
12049 L: sfi-devel@simplefirmware.org
12050 W: http://simplefirmware.org/
12051 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
12053 F: arch/x86/platform/sfi/
12055 F: include/linux/sfi*.h
12057 SIMTEC EB110ATX (Chalice CATS)
12059 P: Vincent Sanders <vince@simtec.co.uk>
12060 M: Simtec Linux Team <linux@simtec.co.uk>
12061 W: http://www.simtec.co.uk/products/EB110ATX/
12064 SIMTEC EB2410ITX (BAST)
12066 P: Vincent Sanders <vince@simtec.co.uk>
12067 M: Simtec Linux Team <linux@simtec.co.uk>
12068 W: http://www.simtec.co.uk/products/EB2410ITX/
12070 F: arch/arm/mach-s3c24xx/mach-bast.c
12071 F: arch/arm/mach-s3c24xx/bast-ide.c
12072 F: arch/arm/mach-s3c24xx/bast-irq.c
12074 SIPHASH PRF ROUTINES
12075 M: Jason A. Donenfeld <Jason@zx2c4.com>
12078 F: lib/test_siphash.c
12079 F: include/linux/siphash.h
12081 TI DAVINCI MACHINE SUPPORT
12082 M: Sekhar Nori <nsekhar@ti.com>
12083 M: Kevin Hilman <khilman@kernel.org>
12084 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12085 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
12087 F: arch/arm/mach-davinci/
12088 F: drivers/i2c/busses/i2c-davinci.c
12089 F: arch/arm/boot/dts/da850*
12091 TI DAVINCI SERIES MEDIA DRIVER
12092 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12093 L: linux-media@vger.kernel.org
12094 W: https://linuxtv.org
12095 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12096 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12098 F: drivers/media/platform/davinci/
12099 F: include/media/davinci/
12101 TI DAVINCI SERIES GPIO DRIVER
12102 M: Keerthy <j-keerthy@ti.com>
12103 L: linux-gpio@vger.kernel.org
12105 F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt
12106 F: drivers/gpio/gpio-davinci.c
12108 TI AM437X VPFE DRIVER
12109 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12110 L: linux-media@vger.kernel.org
12111 W: https://linuxtv.org
12112 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12113 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12115 F: drivers/media/platform/am437x/
12117 OV2659 OMNIVISION SENSOR DRIVER
12118 M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
12119 L: linux-media@vger.kernel.org
12120 W: https://linuxtv.org
12121 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12122 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
12124 F: drivers/media/i2c/ov2659.c
12125 F: include/media/i2c/ov2659.h
12127 SILICON MOTION SM712 FRAME BUFFER DRIVER
12128 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12129 M: Teddy Wang <teddy.wang@siliconmotion.com>
12130 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12131 L: linux-fbdev@vger.kernel.org
12133 F: drivers/video/fbdev/sm712*
12134 F: Documentation/fb/sm712fb.txt
12136 SIS 190 ETHERNET DRIVER
12137 M: Francois Romieu <romieu@fr.zoreil.com>
12138 L: netdev@vger.kernel.org
12140 F: drivers/net/ethernet/sis/sis190.c
12142 SIS 900/7016 FAST ETHERNET DRIVER
12143 M: Daniele Venzano <venza@brownhat.org>
12144 W: http://www.brownhat.org/sis900.html
12145 L: netdev@vger.kernel.org
12147 F: drivers/net/ethernet/sis/sis900.*
12149 SIS FRAMEBUFFER DRIVER
12150 M: Thomas Winischhofer <thomas@winischhofer.net>
12151 W: http://www.winischhofer.net/linuxsisvga.shtml
12153 F: Documentation/fb/sisfb.txt
12154 F: drivers/video/fbdev/sis/
12155 F: include/video/sisfb.h
12158 M: Thomas Winischhofer <thomas@winischhofer.net>
12159 W: http://www.winischhofer.at/linuxsisusbvga.shtml
12161 F: drivers/usb/misc/sisusbvga/
12164 M: Christoph Lameter <cl@linux.com>
12165 M: Pekka Enberg <penberg@kernel.org>
12166 M: David Rientjes <rientjes@google.com>
12167 M: Joonsoo Kim <iamjoonsoo.kim@lge.com>
12168 M: Andrew Morton <akpm@linux-foundation.org>
12169 L: linux-mm@kvack.org
12171 F: include/linux/sl?b*.h
12174 SLEEPABLE READ-COPY UPDATE (SRCU)
12175 M: Lai Jiangshan <jiangshanlai@gmail.com>
12176 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
12177 M: Josh Triplett <josh@joshtriplett.org>
12178 R: Steven Rostedt <rostedt@goodmis.org>
12179 R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12180 L: linux-kernel@vger.kernel.org
12181 W: http://www.rdrop.com/users/paulmck/RCU/
12183 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
12184 F: include/linux/srcu.h
12185 F: kernel/rcu/srcu.c
12187 SMACK SECURITY MODULE
12188 M: Casey Schaufler <casey@schaufler-ca.com>
12189 L: linux-security-module@vger.kernel.org
12190 W: http://schaufler-ca.com
12191 T: git git://github.com/cschaufler/smack-next
12193 F: Documentation/admin-guide/LSM/Smack.rst
12196 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
12197 M: Kevin Hilman <khilman@kernel.org>
12198 M: Nishanth Menon <nm@ti.com>
12200 F: drivers/power/avs/
12201 F: include/linux/power/smartreflex.h
12202 L: linux-pm@vger.kernel.org
12204 SMC91x ETHERNET DRIVER
12205 M: Nicolas Pitre <nico@fluxnic.net>
12207 F: drivers/net/ethernet/smsc/smc91x.*
12209 SMIA AND SMIA++ IMAGE SENSOR DRIVER
12210 M: Sakari Ailus <sakari.ailus@iki.fi>
12211 L: linux-media@vger.kernel.org
12213 F: drivers/media/i2c/smiapp/
12214 F: include/media/i2c/smiapp.h
12215 F: drivers/media/i2c/smiapp-pll.c
12216 F: drivers/media/i2c/smiapp-pll.h
12217 F: include/uapi/linux/smiapp.h
12218 F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
12220 SMM665 HARDWARE MONITOR DRIVER
12221 M: Guenter Roeck <linux@roeck-us.net>
12222 L: linux-hwmon@vger.kernel.org
12224 F: Documentation/hwmon/smm665
12225 F: drivers/hwmon/smm665.c
12227 SMSC EMC2103 HARDWARE MONITOR DRIVER
12228 M: Steve Glendinning <steve.glendinning@shawell.net>
12229 L: linux-hwmon@vger.kernel.org
12231 F: Documentation/hwmon/emc2103
12232 F: drivers/hwmon/emc2103.c
12234 SMSC SCH5627 HARDWARE MONITOR DRIVER
12235 M: Hans de Goede <hdegoede@redhat.com>
12236 L: linux-hwmon@vger.kernel.org
12238 F: Documentation/hwmon/sch5627
12239 F: drivers/hwmon/sch5627.c
12241 SMSC47B397 HARDWARE MONITOR DRIVER
12242 M: Jean Delvare <jdelvare@suse.com>
12243 L: linux-hwmon@vger.kernel.org
12245 F: Documentation/hwmon/smsc47b397
12246 F: drivers/hwmon/smsc47b397.c
12248 SMSC911x ETHERNET DRIVER
12249 M: Steve Glendinning <steve.glendinning@shawell.net>
12250 L: netdev@vger.kernel.org
12252 F: include/linux/smsc911x.h
12253 F: drivers/net/ethernet/smsc/smsc911x.*
12255 SMSC9420 PCI ETHERNET DRIVER
12256 M: Steve Glendinning <steve.glendinning@shawell.net>
12257 L: netdev@vger.kernel.org
12259 F: drivers/net/ethernet/smsc/smsc9420.*
12261 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
12262 M: Steve Glendinning <steve.glendinning@shawell.net>
12263 L: linux-fbdev@vger.kernel.org
12265 F: drivers/video/fbdev/smscufx.c
12267 SOC-CAMERA V4L2 SUBSYSTEM
12268 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
12269 L: linux-media@vger.kernel.org
12270 T: git git://linuxtv.org/media_tree.git
12272 F: include/media/soc*
12273 F: drivers/media/i2c/soc_camera/
12274 F: drivers/media/platform/soc_camera/
12276 SOEKRIS NET48XX LED SUPPORT
12277 M: Chris Boot <bootc@bootc.net>
12279 F: drivers/leds/leds-net48xx.c
12281 SOFTLOGIC 6x10 MPEG CODEC
12282 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
12283 M: Anton Sviridenko <anton@corp.bluecherry.net>
12284 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
12285 M: Andrey Utkin <andrey_utkin@fastmail.com>
12286 M: Ismael Luceno <ismael@iodev.co.uk>
12287 L: linux-media@vger.kernel.org
12289 F: drivers/media/pci/solo6x10/
12291 SOFTWARE RAID (Multiple Disks) SUPPORT
12292 M: Shaohua Li <shli@kernel.org>
12293 L: linux-raid@vger.kernel.org
12294 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
12297 F: include/linux/raid/
12298 F: include/uapi/linux/raid/
12300 SONIC NETWORK DRIVER
12301 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12302 L: netdev@vger.kernel.org
12304 F: drivers/net/ethernet/natsemi/sonic.*
12306 SONICS SILICON BACKPLANE DRIVER (SSB)
12307 M: Michael Buesch <m@bues.ch>
12308 L: linux-wireless@vger.kernel.org
12311 F: include/linux/ssb/
12313 SONY VAIO CONTROL DEVICE DRIVER
12314 M: Mattia Dongili <malattia@linux.it>
12315 L: platform-driver-x86@vger.kernel.org
12316 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
12318 F: Documentation/laptops/sony-laptop.txt
12319 F: drivers/char/sonypi.c
12320 F: drivers/platform/x86/sony-laptop.c
12321 F: include/linux/sony-laptop.h
12323 SONY MEMORYSTICK CARD SUPPORT
12324 M: Alex Dubov <oakad@yahoo.com>
12325 W: http://tifmxx.berlios.de/
12327 F: drivers/memstick/host/tifm_ms.c
12329 SONY MEMORYSTICK STANDARD SUPPORT
12330 M: Maxim Levitsky <maximlevitsky@gmail.com>
12332 F: drivers/memstick/core/ms_block.*
12335 M: Jaroslav Kysela <perex@perex.cz>
12336 M: Takashi Iwai <tiwai@suse.com>
12337 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12338 W: http://www.alsa-project.org/
12339 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12340 T: git git://git.alsa-project.org/alsa-kernel.git
12341 Q: http://patchwork.kernel.org/project/alsa-devel/list/
12343 F: Documentation/sound/
12345 F: include/uapi/sound/
12348 SOUND - COMPRESSED AUDIO
12349 M: Vinod Koul <vinod.koul@intel.com>
12350 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
12353 F: Documentation/sound/alsa/compress_offload.txt
12354 F: include/sound/compress_driver.h
12355 F: include/uapi/sound/compress_*
12356 F: sound/core/compress_offload.c
12357 F: sound/soc/soc-compress.c
12359 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
12360 M: Liam Girdwood <lgirdwood@gmail.com>
12361 M: Mark Brown <broonie@kernel.org>
12362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
12363 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
12364 W: http://alsa-project.org/main/index.php/ASoC
12366 F: Documentation/devicetree/bindings/sound/
12367 F: Documentation/sound/alsa/soc/
12369 F: include/sound/soc*
12371 SOUND - DMAENGINE HELPERS
12372 M: Lars-Peter Clausen <lars@metafoo.de>
12374 F: include/sound/dmaengine_pcm.h
12375 F: sound/core/pcm_dmaengine.c
12376 F: sound/soc/soc-generic-dmaengine-pcm.c
12379 M: Olli Salonen <olli.salonen@iki.fi>
12380 L: linux-media@vger.kernel.org
12381 W: https://linuxtv.org
12382 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12384 F: drivers/media/dvb-frontends/sp2*
12386 SPARC + UltraSPARC (sparc/sparc64)
12387 M: "David S. Miller" <davem@davemloft.net>
12388 L: sparclinux@vger.kernel.org
12389 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
12390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12391 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12396 SPARC SERIAL DRIVERS
12397 M: "David S. Miller" <davem@davemloft.net>
12398 L: sparclinux@vger.kernel.org
12399 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12400 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12402 F: include/linux/sunserialcore.h
12403 F: drivers/tty/serial/suncore.c
12404 F: drivers/tty/serial/sunhv.c
12405 F: drivers/tty/serial/sunsab.c
12406 F: drivers/tty/serial/sunsab.h
12407 F: drivers/tty/serial/sunsu.c
12408 F: drivers/tty/serial/sunzilog.c
12409 F: drivers/tty/serial/sunzilog.h
12412 M: "Christopher Li" <sparse@chrisli.org>
12413 L: linux-sparse@vger.kernel.org
12414 W: https://sparse.wiki.kernel.org/
12415 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12416 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12418 F: include/linux/compiler.h
12420 SPEAR PLATFORM SUPPORT
12421 M: Viresh Kumar <vireshk@kernel.org>
12422 M: Shiraz Hashim <shiraz.linux.kernel@gmail.com>
12423 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12424 W: http://www.st.com/spear
12426 F: arch/arm/boot/dts/spear*
12427 F: arch/arm/mach-spear/
12429 SPEAR CLOCK FRAMEWORK SUPPORT
12430 M: Viresh Kumar <vireshk@kernel.org>
12431 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12432 W: http://www.st.com/spear
12434 F: drivers/clk/spear/
12437 M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
12438 M: Marek Vasut <marek.vasut@gmail.com>
12439 L: linux-mtd@lists.infradead.org
12440 W: http://www.linux-mtd.infradead.org/
12441 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
12442 T: git git://github.com/spi-nor/linux.git
12444 F: drivers/mtd/spi-nor/
12445 F: include/linux/mtd/spi-nor.h
12448 M: Mark Brown <broonie@kernel.org>
12449 L: linux-spi@vger.kernel.org
12450 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12451 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
12453 F: Documentation/devicetree/bindings/spi/
12454 F: Documentation/spi/
12456 F: include/linux/spi/
12457 F: include/uapi/linux/spi/
12460 SPIDERNET NETWORK DRIVER for CELL
12461 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
12462 L: netdev@vger.kernel.org
12464 F: Documentation/networking/spider_net.txt
12465 F: drivers/net/ethernet/toshiba/spider_net*
12468 M: Jeremy Kerr <jk@ozlabs.org>
12469 L: linuxppc-dev@lists.ozlabs.org
12470 W: http://www.ibm.com/developerworks/power/cell/
12472 F: Documentation/filesystems/spufs.txt
12473 F: arch/powerpc/platforms/cell/spufs/
12475 SQUASHFS FILE SYSTEM
12476 M: Phillip Lougher <phillip@squashfs.org.uk>
12477 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
12478 W: http://squashfs.org.uk
12479 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12481 F: Documentation/filesystems/squashfs.txt
12484 SRM (Alpha) environment access
12485 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
12487 F: arch/alpha/kernel/srm_env.c
12490 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12491 L: stable@vger.kernel.org
12493 F: Documentation/process/stable-kernel-rules.rst
12496 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12497 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12498 L: devel@driverdev.osuosl.org
12500 F: drivers/staging/
12503 M: Ian Abbott <abbotti@mev.co.uk>
12504 M: H Hartley Sweeten <hsweeten@visionengravers.com>
12506 F: drivers/staging/comedi/
12508 STAGING - FLARION FT1000 DRIVERS
12509 M: Marek Belisko <marek.belisko@gmail.com>
12511 F: drivers/staging/ft1000/
12513 STAGING - INDUSTRIAL IO
12514 M: Jonathan Cameron <jic23@kernel.org>
12515 L: linux-iio@vger.kernel.org
12517 F: Documentation/devicetree/bindings/staging/iio/
12518 F: drivers/staging/iio/
12520 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12521 M: Jarod Wilson <jarod@wilsonet.com>
12522 W: http://www.lirc.org/
12524 F: drivers/staging/media/lirc/
12526 STAGING - LUSTRE PARALLEL FILESYSTEM
12527 M: Oleg Drokin <oleg.drokin@intel.com>
12528 M: Andreas Dilger <andreas.dilger@intel.com>
12529 M: James Simmons <jsimmons@infradead.org>
12530 L: lustre-devel@lists.lustre.org (moderated for non-subscribers)
12531 W: http://wiki.lustre.org/
12533 F: drivers/staging/lustre
12535 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12536 M: Marc Dietrich <marvin24@gmx.de>
12537 L: ac100@lists.launchpad.net (moderated for non-subscribers)
12538 L: linux-tegra@vger.kernel.org
12540 F: drivers/staging/nvec/
12542 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12543 M: Jens Frederich <jfrederich@gmail.com>
12544 M: Daniel Drake <dsd@laptop.org>
12545 M: Jon Nettleton <jon.nettleton@gmail.com>
12546 W: http://wiki.laptop.org/go/DCON
12548 F: drivers/staging/olpc_dcon/
12550 STAGING - REALTEK RTL8712U DRIVERS
12551 M: Larry Finger <Larry.Finger@lwfinger.net>
12552 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
12554 F: drivers/staging/rtl8712/
12556 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12557 M: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
12558 M: Teddy Wang <teddy.wang@siliconmotion.com>
12559 M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
12560 L: linux-fbdev@vger.kernel.org
12562 F: drivers/staging/sm750fb/
12564 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12565 M: William Hubbs <w.d.hubbs@gmail.com>
12566 M: Chris Brannon <chris@the-brannons.com>
12567 M: Kirk Reiser <kirk@reisers.ca>
12568 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
12569 L: speakup@linux-speakup.org
12570 W: http://www.linux-speakup.org/
12572 F: drivers/staging/speakup/
12574 STAGING - VIA VT665X DRIVERS
12575 M: Forest Bond <forest@alittletooquiet.net>
12577 F: drivers/staging/vt665?/
12579 STAGING - WILC1000 WIFI DRIVER
12580 M: Aditya Shankar <aditya.shankar@microchip.com>
12581 M: Ganesh Krishna <ganesh.krishna@microchip.com>
12582 L: linux-wireless@vger.kernel.org
12584 F: drivers/staging/wilc1000/
12586 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12587 M: Arnaud Patard <arnaud.patard@rtp-net.org>
12589 F: drivers/staging/xgifb/
12591 STARFIRE/DURALAN NETWORK DRIVER
12592 M: Ion Badulescu <ionut@badula.org>
12594 F: drivers/net/ethernet/adaptec/starfire*
12597 M: Sam Creasey <sammy@sammy.net>
12598 W: http://sammy.net/sun3/
12600 F: arch/m68k/kernel/*sun3*
12601 F: arch/m68k/sun3*/
12602 F: arch/m68k/include/asm/sun3*
12603 F: drivers/net/ethernet/i825xx/sun3*
12605 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12606 M: Hans de Goede <hdegoede@redhat.com>
12607 L: linux-input@vger.kernel.org
12609 F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12610 F: drivers/input/keyboard/sun4i-lradc-keys.c
12612 SUNDANCE NETWORK DRIVER
12613 M: Denis Kirjanov <kda@linux-powerpc.org>
12614 L: netdev@vger.kernel.org
12616 F: drivers/net/ethernet/dlink/sundance.c
12619 M: Yoshinori Sato <ysato@users.sourceforge.jp>
12620 M: Rich Felker <dalias@libc.org>
12621 L: linux-sh@vger.kernel.org
12622 Q: http://patchwork.kernel.org/project/linux-sh/list/
12624 F: Documentation/sh/
12629 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
12630 M: Len Brown <len.brown@intel.com>
12631 M: Pavel Machek <pavel@ucw.cz>
12632 L: linux-pm@vger.kernel.org
12633 B: https://bugzilla.kernel.org
12635 F: Documentation/power/
12636 F: arch/x86/kernel/acpi/
12637 F: drivers/base/power/
12639 F: include/linux/suspend.h
12640 F: include/linux/freezer.h
12641 F: include/linux/pm.h
12644 M: Martin Mares <mj@ucw.cz>
12645 L: linux-video@atrey.karlin.mff.cuni.cz
12647 F: Documentation/svga.txt
12648 F: arch/x86/boot/video*
12651 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12652 L: linux-kernel@vger.kernel.org
12653 T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12656 F: arch/*/kernel/pci-swiotlb.c
12657 F: include/linux/swiotlb.h
12660 M: Jiri Pirko <jiri@resnulli.us>
12661 M: Ivan Vecera <ivecera@redhat.com>
12662 L: netdev@vger.kernel.org
12665 F: include/net/switchdev.h
12667 SYNOPSYS ARC ARCHITECTURE
12668 M: Vineet Gupta <vgupta@synopsys.com>
12669 L: linux-snps-arc@lists.infradead.org
12672 F: Documentation/devicetree/bindings/arc/*
12673 F: Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12674 F: drivers/clocksource/arc_timer.c
12675 F: drivers/tty/serial/arc_uart.c
12676 T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12678 SYNOPSYS ARC SDP platform support
12679 M: Alexey Brodkin <abrodkin@synopsys.com>
12681 F: arch/arc/plat-axs10x
12682 F: arch/arc/boot/dts/ax*
12683 F: Documentation/devicetree/bindings/arc/axs10*
12685 SYSTEM CONFIGURATION (SYSCON)
12686 M: Lee Jones <lee.jones@linaro.org>
12687 M: Arnd Bergmann <arnd@arndb.de>
12688 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12690 F: drivers/mfd/syscon.c
12692 SYSTEM RESET/SHUTDOWN DRIVERS
12693 M: Sebastian Reichel <sre@kernel.org>
12694 L: linux-pm@vger.kernel.org
12695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12697 F: Documentation/devicetree/bindings/power/reset/
12698 F: drivers/power/reset/
12701 M: Christoph Hellwig <hch@infradead.org>
12703 F: Documentation/filesystems/sysv-fs.txt
12705 F: include/linux/sysv_fs.h
12708 M: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
12709 L: linux-scsi@vger.kernel.org
12710 L: target-devel@vger.kernel.org
12711 W: http://www.linux-iscsi.org
12712 W: http://groups.google.com/group/linux-iscsi-target-dev
12713 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
12717 F: Documentation/target/
12719 TASKSTATS STATISTICS INTERFACE
12720 M: Balbir Singh <bsingharora@gmail.com>
12722 F: Documentation/accounting/taskstats*
12723 F: include/linux/taskstats*
12724 F: kernel/taskstats.c
12727 M: Jamal Hadi Salim <jhs@mojatatu.com>
12728 M: Cong Wang <xiyou.wangcong@gmail.com>
12729 M: Jiri Pirko <jiri@resnulli.us>
12730 L: netdev@vger.kernel.org
12732 F: include/net/pkt_cls.h
12733 F: include/net/pkt_sched.h
12734 F: include/net/tc_act/
12735 F: include/uapi/linux/pkt_cls.h
12736 F: include/uapi/linux/pkt_sched.h
12737 F: include/uapi/linux/tc_act/
12738 F: include/uapi/linux/tc_ematch/
12741 TCP LOW PRIORITY MODULE
12742 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
12743 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
12744 W: http://tcp-lp-mod.sourceforge.net/
12746 F: net/ipv4/tcp_lp.c
12748 TDA10071 MEDIA DRIVER
12749 M: Antti Palosaari <crope@iki.fi>
12750 L: linux-media@vger.kernel.org
12751 W: https://linuxtv.org
12752 W: http://palosaari.fi/linux/
12753 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12754 T: git git://linuxtv.org/anttip/media_tree.git
12756 F: drivers/media/dvb-frontends/tda10071*
12758 TDA18212 MEDIA DRIVER
12759 M: Antti Palosaari <crope@iki.fi>
12760 L: linux-media@vger.kernel.org
12761 W: https://linuxtv.org
12762 W: http://palosaari.fi/linux/
12763 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12764 T: git git://linuxtv.org/anttip/media_tree.git
12766 F: drivers/media/tuners/tda18212*
12768 TDA18218 MEDIA DRIVER
12769 M: Antti Palosaari <crope@iki.fi>
12770 L: linux-media@vger.kernel.org
12771 W: https://linuxtv.org
12772 W: http://palosaari.fi/linux/
12773 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12774 T: git git://linuxtv.org/anttip/media_tree.git
12776 F: drivers/media/tuners/tda18218*
12778 TDA18271 MEDIA DRIVER
12779 M: Michael Krufky <mkrufky@linuxtv.org>
12780 L: linux-media@vger.kernel.org
12781 W: https://linuxtv.org
12782 W: http://github.com/mkrufky
12783 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12784 T: git git://linuxtv.org/mkrufky/tuners.git
12786 F: drivers/media/tuners/tda18271*
12788 TDA827x MEDIA DRIVER
12789 M: Michael Krufky <mkrufky@linuxtv.org>
12790 L: linux-media@vger.kernel.org
12791 W: https://linuxtv.org
12792 W: http://github.com/mkrufky
12793 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12794 T: git git://linuxtv.org/mkrufky/tuners.git
12796 F: drivers/media/tuners/tda8290.*
12798 TDA8290 MEDIA DRIVER
12799 M: Michael Krufky <mkrufky@linuxtv.org>
12800 L: linux-media@vger.kernel.org
12801 W: https://linuxtv.org
12802 W: http://github.com/mkrufky
12803 Q: http://patchwork.linuxtv.org/project/linux-media/list/
12804 T: git git://linuxtv.org/mkrufky/tuners.git
12806 F: drivers/media/tuners/tda8290.*
12808 TDA9840 MEDIA DRIVER
12809 M: Hans Verkuil <hverkuil@xs4all.nl>
12810 L: linux-media@vger.kernel.org
12811 T: git git://linuxtv.org/media_tree.git
12812 W: https://linuxtv.org
12814 F: drivers/media/i2c/tda9840*
12816 TEA5761 TUNER DRIVER
12817 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12818 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12819 L: linux-media@vger.kernel.org
12820 W: https://linuxtv.org
12821 T: git git://linuxtv.org/media_tree.git
12823 F: drivers/media/tuners/tea5761.*
12825 TEA5767 TUNER DRIVER
12826 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
12827 M: Mauro Carvalho Chehab <mchehab@kernel.org>
12828 L: linux-media@vger.kernel.org
12829 W: https://linuxtv.org
12830 T: git git://linuxtv.org/media_tree.git
12832 F: drivers/media/tuners/tea5767.*
12834 TEA6415C MEDIA DRIVER
12835 M: Hans Verkuil <hverkuil@xs4all.nl>
12836 L: linux-media@vger.kernel.org
12837 T: git git://linuxtv.org/media_tree.git
12838 W: https://linuxtv.org
12840 F: drivers/media/i2c/tea6415c*
12842 TEA6420 MEDIA DRIVER
12843 M: Hans Verkuil <hverkuil@xs4all.nl>
12844 L: linux-media@vger.kernel.org
12845 T: git git://linuxtv.org/media_tree.git
12846 W: https://linuxtv.org
12848 F: drivers/media/i2c/tea6420*
12851 M: Jiri Pirko <jiri@resnulli.us>
12852 L: netdev@vger.kernel.org
12854 F: drivers/net/team/
12855 F: include/linux/if_team.h
12856 F: include/uapi/linux/if_team.h
12858 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
12859 M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
12861 F: arch/x86/platform/ts5500/
12863 TECHNOTREND USB IR RECEIVER
12864 M: Sean Young <sean@mess.org>
12865 L: linux-media@vger.kernel.org
12867 F: drivers/media/rc/ttusbir.c
12869 TEGRA ARCHITECTURE SUPPORT
12870 M: Thierry Reding <thierry.reding@gmail.com>
12871 M: Jonathan Hunter <jonathanh@nvidia.com>
12872 L: linux-tegra@vger.kernel.org
12873 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
12874 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
12879 M: Peter De Schrijver <pdeschrijver@nvidia.com>
12880 M: Prashant Gaikwad <pgaikwad@nvidia.com>
12882 F: drivers/clk/tegra/
12885 M: Laxman Dewangan <ldewangan@nvidia.com>
12886 M: Jon Hunter <jonathanh@nvidia.com>
12888 F: drivers/dma/tegra*
12891 M: Laxman Dewangan <ldewangan@nvidia.com>
12893 F: drivers/i2c/busses/i2c-tegra.c
12895 TEGRA IOMMU DRIVERS
12896 M: Hiroshi Doyu <hdoyu@nvidia.com>
12898 F: drivers/iommu/tegra*
12901 M: Rakesh Iyer <riyer@nvidia.com>
12902 M: Laxman Dewangan <ldewangan@nvidia.com>
12904 F: drivers/input/keyboard/tegra-kbc.c
12907 M: Thierry Reding <thierry.reding@gmail.com>
12909 F: drivers/pwm/pwm-tegra.c
12911 TEGRA SERIAL DRIVER
12912 M: Laxman Dewangan <ldewangan@nvidia.com>
12914 F: drivers/tty/serial/serial-tegra.c
12917 M: Laxman Dewangan <ldewangan@nvidia.com>
12919 F: drivers/spi/spi-tegra*
12921 TEHUTI ETHERNET DRIVER
12922 M: Andy Gospodarek <andy@greyhouse.net>
12923 L: netdev@vger.kernel.org
12925 F: drivers/net/ethernet/tehuti/*
12927 Telecom Clock Driver for MCPL0010
12928 M: Mark Gross <mark.gross@intel.com>
12930 F: drivers/char/tlclk.c
12932 TENSILICA XTENSA PORT (xtensa)
12933 M: Chris Zankel <chris@zankel.net>
12934 M: Max Filippov <jcmvbkbc@gmail.com>
12935 L: linux-xtensa@linux-xtensa.org
12936 T: git git://github.com/czankel/xtensa-linux.git
12939 F: drivers/irqchip/irq-xtensa-*
12941 Texas Instruments' System Control Interface (TISCI) Protocol Driver
12942 M: Nishanth Menon <nm@ti.com>
12943 M: Tero Kristo <t-kristo@ti.com>
12944 M: Santosh Shilimkar <ssantosh@kernel.org>
12945 L: linux-arm-kernel@lists.infradead.org
12947 F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
12948 F: drivers/firmware/ti_sci*
12949 F: include/linux/soc/ti/ti_sci_protocol.h
12950 F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt
12951 F: include/dt-bindings/genpd/k2g.h
12952 F: drivers/soc/ti/ti_sci_pm_domains.c
12953 F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt
12954 F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt
12955 F: drivers/clk/keystone/sci-clk.c
12956 F: drivers/reset/reset-ti-sci.c
12958 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
12959 M: Hans Verkuil <hverkuil@xs4all.nl>
12960 L: linux-media@vger.kernel.org
12961 T: git git://linuxtv.org/media_tree.git
12962 W: https://linuxtv.org
12964 F: drivers/media/radio/radio-raremono.c
12967 M: Zhang Rui <rui.zhang@intel.com>
12968 M: Eduardo Valentin <edubezval@gmail.com>
12969 L: linux-pm@vger.kernel.org
12970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
12971 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
12972 Q: https://patchwork.kernel.org/project/linux-pm/list/
12974 F: drivers/thermal/
12975 F: include/linux/thermal.h
12976 F: include/uapi/linux/thermal.h
12977 F: include/linux/cpu_cooling.h
12978 F: Documentation/devicetree/bindings/thermal/
12980 THERMAL/CPU_COOLING
12981 M: Amit Daniel Kachhap <amit.kachhap@gmail.com>
12982 M: Viresh Kumar <viresh.kumar@linaro.org>
12983 M: Javi Merino <javi.merino@kernel.org>
12984 L: linux-pm@vger.kernel.org
12986 F: Documentation/thermal/cpu-cooling-api.txt
12987 F: drivers/thermal/cpu_cooling.c
12988 F: include/linux/cpu_cooling.h
12990 THINKPAD ACPI EXTRAS DRIVER
12991 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
12992 L: ibm-acpi-devel@lists.sourceforge.net
12993 L: platform-driver-x86@vger.kernel.org
12994 W: http://ibm-acpi.sourceforge.net
12995 W: http://thinkwiki.org/wiki/Ibm-acpi
12996 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
12998 F: drivers/platform/x86/thinkpad_acpi.c
13000 TI BANDGAP AND THERMAL DRIVER
13001 M: Eduardo Valentin <edubezval@gmail.com>
13002 M: Keerthy <j-keerthy@ti.com>
13003 L: linux-pm@vger.kernel.org
13004 L: linux-omap@vger.kernel.org
13006 F: drivers/thermal/ti-soc-thermal/
13009 M: Benoit Parrot <bparrot@ti.com>
13010 L: linux-media@vger.kernel.org
13011 W: http://linuxtv.org/
13012 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13014 F: drivers/media/platform/ti-vpe/
13016 TI CDCE706 CLOCK DRIVER
13017 M: Max Filippov <jcmvbkbc@gmail.com>
13019 F: drivers/clk/clk-cdce706.c
13022 M: Tero Kristo <t-kristo@ti.com>
13023 L: linux-omap@vger.kernel.org
13026 F: include/linux/clk/ti.h
13028 TI ETHERNET SWITCH DRIVER (CPSW)
13029 R: Grygorii Strashko <grygorii.strashko@ti.com>
13030 L: linux-omap@vger.kernel.org
13031 L: netdev@vger.kernel.org
13033 F: drivers/net/ethernet/ti/cpsw*
13034 F: drivers/net/ethernet/ti/davinci*
13036 TI FLASH MEDIA INTERFACE DRIVER
13037 M: Alex Dubov <oakad@yahoo.com>
13039 F: drivers/misc/tifm*
13040 F: drivers/mmc/host/tifm_sd.c
13041 F: include/linux/tifm.h
13043 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
13044 M: Santosh Shilimkar <ssantosh@kernel.org>
13045 L: linux-kernel@vger.kernel.org
13046 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13048 F: drivers/soc/ti/*
13049 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
13052 TI LM49xxx FAMILY ASoC CODEC DRIVERS
13053 M: M R Swami Reddy <mr.swami.reddy@ti.com>
13054 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
13055 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13057 F: sound/soc/codecs/lm49453*
13058 F: sound/soc/codecs/isabelle*
13060 TI LP855x BACKLIGHT DRIVER
13061 M: Milo Kim <milo.kim@ti.com>
13063 F: Documentation/backlight/lp855x-driver.txt
13064 F: drivers/video/backlight/lp855x_bl.c
13065 F: include/linux/platform_data/lp855x.h
13067 TI LP8727 CHARGER DRIVER
13068 M: Milo Kim <milo.kim@ti.com>
13070 F: drivers/power/supply/lp8727_charger.c
13071 F: include/linux/platform_data/lp8727.h
13073 TI LP8788 MFD DRIVER
13074 M: Milo Kim <milo.kim@ti.com>
13076 F: drivers/iio/adc/lp8788_adc.c
13077 F: drivers/leds/leds-lp8788.c
13078 F: drivers/mfd/lp8788*.c
13079 F: drivers/power/supply/lp8788-charger.c
13080 F: drivers/regulator/lp8788-*.c
13081 F: include/linux/mfd/lp8788*.h
13083 TI NETCP ETHERNET DRIVER
13084 M: Wingman Kwok <w-kwok2@ti.com>
13085 M: Murali Karicheri <m-karicheri2@ti.com>
13086 L: netdev@vger.kernel.org
13088 F: drivers/net/ethernet/ti/netcp*
13090 TI TAS571X FAMILY ASoC CODEC DRIVER
13091 M: Kevin Cernekee <cernekee@chromium.org>
13092 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13094 F: sound/soc/codecs/tas571x*
13096 TI TWL4030 SERIES SOC CODEC DRIVER
13097 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
13098 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13100 F: sound/soc/codecs/twl4030*
13102 TI WILINK WIRELESS DRIVERS
13103 L: linux-wireless@vger.kernel.org
13104 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
13105 W: http://wireless.kernel.org/en/users/Drivers/wl1251
13106 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
13108 F: drivers/net/wireless/ti/
13109 F: include/linux/wl12xx.h
13112 M: Jon Maloy <jon.maloy@ericsson.com>
13113 M: Ying Xue <ying.xue@windriver.com>
13114 L: netdev@vger.kernel.org (core kernel code)
13115 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
13116 W: http://tipc.sourceforge.net/
13118 F: include/uapi/linux/tipc*.h
13122 M: Chris Metcalf <cmetcalf@mellanox.com>
13123 W: http://www.mellanox.com/repository/solutions/tile-scm/
13124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
13127 F: drivers/char/tile-srom.c
13128 F: drivers/edac/tile_edac.c
13129 F: drivers/net/ethernet/tile/
13130 F: drivers/rtc/rtc-tile.c
13131 F: drivers/tty/hvc/hvc_tile.c
13132 F: drivers/tty/serial/tilegx.c
13133 F: drivers/usb/host/*-tilegx.c
13134 F: include/linux/usb/tilegx.h
13136 TLAN NETWORK DRIVER
13137 M: Samuel Chessman <chessman@tux.org>
13138 L: tlan-devel@lists.sourceforge.net (subscribers-only)
13139 W: http://sourceforge.net/projects/tlan/
13141 F: Documentation/networking/tlan.txt
13142 F: drivers/net/ethernet/ti/tlan.*
13144 TOMOYO SECURITY MODULE
13145 M: Kentaro Takeda <takedakn@nttdata.co.jp>
13146 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
13147 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
13148 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
13149 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
13150 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
13151 W: http://tomoyo.sourceforge.jp/
13152 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
13154 F: security/tomoyo/
13156 TOPSTAR LAPTOP EXTRAS DRIVER
13157 M: Herton Ronaldo Krzesinski <herton@canonical.com>
13158 L: platform-driver-x86@vger.kernel.org
13160 F: drivers/platform/x86/topstar-laptop.c
13162 TOSHIBA ACPI EXTRAS DRIVER
13163 M: Azael Avalos <coproscefalo@gmail.com>
13164 L: platform-driver-x86@vger.kernel.org
13166 F: drivers/platform/x86/toshiba_acpi.c
13168 TOSHIBA BLUETOOTH DRIVER
13169 M: Azael Avalos <coproscefalo@gmail.com>
13170 L: platform-driver-x86@vger.kernel.org
13172 F: drivers/platform/x86/toshiba_bluetooth.c
13174 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
13175 M: Azael Avalos <coproscefalo@gmail.com>
13176 L: platform-driver-x86@vger.kernel.org
13178 F: drivers/platform/x86/toshiba_haps.c
13180 TOSHIBA WMI HOTKEYS DRIVER
13181 M: Azael Avalos <coproscefalo@gmail.com>
13182 L: platform-driver-x86@vger.kernel.org
13184 F: drivers/platform/x86/toshiba-wmi.c
13187 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
13188 W: http://www.buzzard.org.uk/toshiba/
13190 F: drivers/char/toshiba.c
13191 F: include/linux/toshiba.h
13192 F: include/uapi/linux/toshiba.h
13194 TOSHIBA TC358743 DRIVER
13195 M: Mats Randgaard <matrandg@cisco.com>
13196 L: linux-media@vger.kernel.org
13198 F: drivers/media/i2c/tc358743*
13199 F: include/media/i2c/tc358743.h
13201 TMIO/SDHI MMC DRIVER
13202 M: Wolfram Sang <wsa+renesas@sang-engineering.com>
13203 L: linux-mmc@vger.kernel.org
13205 F: drivers/mmc/host/tmio_mmc*
13206 F: drivers/mmc/host/renesas_sdhi*
13207 F: include/linux/mfd/tmio.h
13209 TMP401 HARDWARE MONITOR DRIVER
13210 M: Guenter Roeck <linux@roeck-us.net>
13211 L: linux-hwmon@vger.kernel.org
13213 F: Documentation/hwmon/tmp401
13214 F: drivers/hwmon/tmp401.c
13216 TMPFS (SHMEM FILESYSTEM)
13217 M: Hugh Dickins <hughd@google.com>
13218 L: linux-mm@kvack.org
13220 F: include/linux/shmem_fs.h
13223 TM6000 VIDEO4LINUX DRIVER
13224 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
13225 M: Mauro Carvalho Chehab <mchehab@kernel.org>
13226 L: linux-media@vger.kernel.org
13227 W: https://linuxtv.org
13228 T: git git://linuxtv.org/media_tree.git
13230 F: drivers/media/usb/tm6000/
13231 F: Documentation/media/v4l-drivers/tm6000*
13233 TW5864 VIDEO4LINUX DRIVER
13234 M: Bluecherry Maintainers <maintainers@bluecherrydvr.com>
13235 M: Anton Sviridenko <anton@corp.bluecherry.net>
13236 M: Andrey Utkin <andrey.utkin@corp.bluecherry.net>
13237 M: Andrey Utkin <andrey_utkin@fastmail.com>
13238 L: linux-media@vger.kernel.org
13240 F: drivers/media/pci/tw5864/
13242 TW68 VIDEO4LINUX DRIVER
13243 M: Hans Verkuil <hverkuil@xs4all.nl>
13244 L: linux-media@vger.kernel.org
13245 T: git git://linuxtv.org/media_tree.git
13246 W: https://linuxtv.org
13248 F: drivers/media/pci/tw68/
13250 TW686X VIDEO4LINUX DRIVER
13251 M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
13252 L: linux-media@vger.kernel.org
13253 T: git git://linuxtv.org/media_tree.git
13254 W: http://linuxtv.org
13256 F: drivers/media/pci/tw686x/
13259 M: Peter Huewe <peterhuewe@gmx.de>
13260 M: Marcel Selhorst <tpmdd@selhorst.net>
13261 M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
13262 R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13263 W: http://tpmdd.sourceforge.net
13264 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13265 Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
13266 T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
13268 F: drivers/char/tpm/
13270 TPM IBM_VTPM DEVICE DRIVER
13271 M: Ashley Lai <ashleydlai@gmail.com>
13272 W: http://tpmdd.sourceforge.net
13273 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13275 F: drivers/char/tpm/tpm_ibmvtpm*
13278 M: Steven Rostedt <rostedt@goodmis.org>
13279 M: Ingo Molnar <mingo@redhat.com>
13280 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
13282 F: Documentation/trace/ftrace.txt
13283 F: arch/*/*/*/ftrace.h
13284 F: arch/*/kernel/ftrace.c
13285 F: include/*/ftrace.h
13286 F: include/linux/trace*.h
13289 F: tools/testing/selftests/ftrace/
13291 TRACING MMIO ACCESSES (MMIOTRACE)
13292 M: Steven Rostedt <rostedt@goodmis.org>
13293 M: Ingo Molnar <mingo@kernel.org>
13294 R: Karol Herbst <karolherbst@gmail.com>
13295 R: Pekka Paalanen <ppaalanen@gmail.com>
13297 L: linux-kernel@vger.kernel.org
13298 L: nouveau@lists.freedesktop.org
13299 F: kernel/trace/trace_mmiotrace.c
13300 F: include/linux/mmiotrace.h
13301 F: arch/x86/mm/kmmio.c
13302 F: arch/x86/mm/mmio-mod.c
13303 F: arch/x86/mm/testmmiotrace.c
13306 M: Jiri Kosina <trivial@kernel.org>
13307 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
13309 K: ^Subject:.*(?i)trivial
13312 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13313 M: Jiri Slaby <jslaby@suse.com>
13315 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
13316 F: Documentation/serial/
13318 F: drivers/tty/serial/serial_core.c
13319 F: include/linux/serial_core.h
13320 F: include/linux/serial.h
13321 F: include/linux/tty.h
13322 F: include/uapi/linux/serial_core.h
13323 F: include/uapi/linux/serial.h
13324 F: include/uapi/linux/tty.h
13326 TUA9001 MEDIA DRIVER
13327 M: Antti Palosaari <crope@iki.fi>
13328 L: linux-media@vger.kernel.org
13329 W: https://linuxtv.org
13330 W: http://palosaari.fi/linux/
13331 Q: http://patchwork.linuxtv.org/project/linux-media/list/
13332 T: git git://linuxtv.org/anttip/media_tree.git
13334 F: drivers/media/tuners/tua9001*
13336 TULIP NETWORK DRIVERS
13337 L: netdev@vger.kernel.org
13338 L: linux-parisc@vger.kernel.org
13340 F: drivers/net/ethernet/dec/tulip/
13343 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
13344 W: http://vtun.sourceforge.net/tun
13346 F: Documentation/networking/tuntap.txt
13347 F: arch/um/os-Linux/drivers/
13349 TURBOCHANNEL SUBSYSTEM
13350 M: "Maciej W. Rozycki" <macro@linux-mips.org>
13351 M: Ralf Baechle <ralf@linux-mips.org>
13352 L: linux-mips@linux-mips.org
13353 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
13356 F: include/linux/tc.h
13358 UBI FILE SYSTEM (UBIFS)
13359 M: Richard Weinberger <richard@nod.at>
13360 M: Artem Bityutskiy <dedekind1@gmail.com>
13361 M: Adrian Hunter <adrian.hunter@intel.com>
13362 L: linux-mtd@lists.infradead.org
13363 T: git git://git.infradead.org/ubifs-2.6.git
13364 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
13366 F: Documentation/filesystems/ubifs.txt
13369 UCLINUX (M68KNOMMU AND COLDFIRE)
13370 M: Greg Ungerer <gerg@linux-m68k.org>
13371 W: http://www.linux-m68k.org/
13372 W: http://www.uclinux.org/
13373 L: linux-m68k@lists.linux-m68k.org
13374 L: uclinux-dev@uclinux.org (subscribers-only)
13375 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
13377 F: arch/m68k/coldfire/
13379 F: arch/m68k/*/*_no.*
13380 F: arch/m68k/include/asm/*_no.*
13383 M: Jan Kara <jack@suse.com>
13385 F: Documentation/filesystems/udf.txt
13389 M: Bastien Nocera <hadess@hadess.net>
13390 L: linux-input@vger.kernel.org
13392 F: drivers/hid/hid-udraw.c
13395 M: Evgeniy Dushistov <dushistov@mail.ru>
13397 F: Documentation/filesystems/ufs.txt
13400 UHID USERSPACE HID IO DRIVER:
13401 M: David Herrmann <dh.herrmann@googlemail.com>
13402 L: linux-input@vger.kernel.org
13404 F: drivers/hid/uhid.c
13405 F: include/uapi/linux/uhid.h
13407 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13408 L: linux-usb@vger.kernel.org
13411 F: include/linux/uwb.h
13412 F: include/linux/uwb/
13414 UNICORE32 ARCHITECTURE:
13415 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
13416 W: http://mprc.pku.edu.cn/~guanxuetao/linux
13418 T: git git://github.com/gxt/linux.git
13422 M: Tony Finch <dot@dotat.at>
13423 W: http://dotat.at/prog/unifdef
13425 F: scripts/unifdef.c
13427 UNIFORM CDROM DRIVER
13428 M: Jens Axboe <axboe@kernel.dk>
13429 W: http://www.kernel.dk
13431 F: Documentation/cdrom/
13432 F: drivers/cdrom/cdrom.c
13433 F: include/linux/cdrom.h
13434 F: include/uapi/linux/cdrom.h
13436 UNISYS S-PAR DRIVERS
13437 M: David Kershner <david.kershner@unisys.com>
13438 L: sparmaintainer@unisys.com (Unisys internal)
13440 F: drivers/staging/unisys/
13442 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13443 M: Vinayak Holikatti <vinholikatti@gmail.com>
13444 L: linux-scsi@vger.kernel.org
13446 F: Documentation/scsi/ufs.txt
13447 F: drivers/scsi/ufs/
13449 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13450 M: Manjunath M Bettegowda <manjumb@synopsys.com>
13451 M: Prabu Thangamuthu <prabut@synopsys.com>
13452 L: linux-scsi@vger.kernel.org
13454 F: drivers/scsi/ufs/*dwc*
13456 UNSORTED BLOCK IMAGES (UBI)
13457 M: Artem Bityutskiy <dedekind1@gmail.com>
13458 M: Richard Weinberger <richard@nod.at>
13459 W: http://www.linux-mtd.infradead.org/
13460 L: linux-mtd@lists.infradead.org
13461 T: git git://git.infradead.org/ubifs-2.6.git
13463 F: drivers/mtd/ubi/
13464 F: include/linux/mtd/ubi.h
13465 F: include/uapi/mtd/ubi-user.h
13468 M: Oliver Neukum <oneukum@suse.com>
13469 L: linux-usb@vger.kernel.org
13471 F: Documentation/usb/acm.txt
13472 F: drivers/usb/class/cdc-acm.*
13474 USB AR5523 WIRELESS DRIVER
13475 M: Pontus Fuchs <pontus.fuchs@gmail.com>
13476 L: linux-wireless@vger.kernel.org
13478 F: drivers/net/wireless/ath/ar5523/
13481 M: Oliver Neukum <oneukum@suse.com>
13482 L: linux-usb@vger.kernel.org
13483 L: linux-scsi@vger.kernel.org
13485 F: drivers/usb/storage/uas.c
13487 USB CDC ETHERNET DRIVER
13488 M: Oliver Neukum <oliver@neukum.org>
13489 L: linux-usb@vger.kernel.org
13491 F: drivers/net/usb/cdc_*.c
13492 F: include/uapi/linux/usb/cdc.h
13494 USB CHAOSKEY DRIVER
13495 M: Keith Packard <keithp@keithp.com>
13496 L: linux-usb@vger.kernel.org
13498 F: drivers/usb/misc/chaoskey.c
13500 USB CYPRESS C67X00 DRIVER
13501 M: Peter Korsgaard <jacmet@sunsite.dk>
13502 L: linux-usb@vger.kernel.org
13504 F: drivers/usb/c67x00/
13506 USB DAVICOM DM9601 DRIVER
13507 M: Peter Korsgaard <jacmet@sunsite.dk>
13508 L: netdev@vger.kernel.org
13509 W: http://www.linux-usb.org/usbnet
13511 F: drivers/net/usb/dm9601.c
13513 USB DIAMOND RIO500 DRIVER
13514 M: Cesar Miquel <miquel@df.uba.ar>
13515 L: rio500-users@lists.sourceforge.net
13516 W: http://rio500.sourceforge.net
13518 F: drivers/usb/misc/rio500*
13521 M: Alan Stern <stern@rowland.harvard.edu>
13522 L: linux-usb@vger.kernel.org
13524 F: Documentation/usb/ehci.txt
13525 F: drivers/usb/host/ehci*
13527 USB GADGET/PERIPHERAL SUBSYSTEM
13528 M: Felipe Balbi <balbi@kernel.org>
13529 L: linux-usb@vger.kernel.org
13530 W: http://www.linux-usb.org/gadget
13531 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13533 F: drivers/usb/gadget/
13534 F: include/linux/usb/gadget*
13536 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13537 M: Jiri Kosina <jikos@kernel.org>
13538 R: Benjamin Tissoires <benjamin.tissoires@redhat.com>
13539 L: linux-usb@vger.kernel.org
13540 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13542 F: Documentation/hid/hiddev.txt
13543 F: drivers/hid/usbhid/
13546 M: Olav Kongas <ok@artecdesign.ee>
13547 L: linux-usb@vger.kernel.org
13549 F: drivers/usb/host/isp116x*
13550 F: include/linux/usb/isp116x.h
13552 USB LAN78XX ETHERNET DRIVER
13553 M: Woojung Huh <woojung.huh@microchip.com>
13554 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13555 L: netdev@vger.kernel.org
13557 F: drivers/net/usb/lan78xx.*
13559 USB MASS STORAGE DRIVER
13560 M: Alan Stern <stern@rowland.harvard.edu>
13561 L: linux-usb@vger.kernel.org
13562 L: usb-storage@lists.one-eyed-alien.net
13564 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
13565 F: drivers/usb/storage/
13568 M: Clemens Ladisch <clemens@ladisch.de>
13569 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
13570 T: git git://git.alsa-project.org/alsa-kernel.git
13572 F: sound/usb/midi.*
13574 USB NETWORKING DRIVERS
13575 L: linux-usb@vger.kernel.org
13577 F: drivers/net/usb/
13580 M: Alan Stern <stern@rowland.harvard.edu>
13581 L: linux-usb@vger.kernel.org
13583 F: Documentation/usb/ohci.txt
13584 F: drivers/usb/host/ohci*
13586 USB OTG FSM (Finite State Machine)
13587 M: Peter Chen <Peter.Chen@nxp.com>
13588 T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
13589 L: linux-usb@vger.kernel.org
13591 F: drivers/usb/common/usb-otg-fsm.c
13594 M: Valentina Manea <valentina.manea.m@gmail.com>
13595 M: Shuah Khan <shuahkh@osg.samsung.com>
13596 M: Shuah Khan <shuah@kernel.org>
13597 L: linux-usb@vger.kernel.org
13599 F: Documentation/usb/usbip_protocol.txt
13600 F: drivers/usb/usbip/
13601 F: tools/usb/usbip/
13604 M: Petko Manolov <petkan@nucleusys.com>
13605 L: linux-usb@vger.kernel.org
13606 L: netdev@vger.kernel.org
13607 T: git git://github.com/petkan/pegasus.git
13608 W: https://github.com/petkan/pegasus
13610 F: drivers/net/usb/pegasus.*
13613 M: Felipe Balbi <balbi@kernel.org>
13614 L: linux-usb@vger.kernel.org
13615 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13617 F: drivers/usb/phy/
13619 USB PRINTER DRIVER (usblp)
13620 M: Pete Zaitcev <zaitcev@redhat.com>
13621 L: linux-usb@vger.kernel.org
13623 F: drivers/usb/class/usblp.c
13625 USB QMI WWAN NETWORK DRIVER
13626 M: Bjørn Mork <bjorn@mork.no>
13627 L: netdev@vger.kernel.org
13629 F: Documentation/ABI/testing/sysfs-class-net-qmi
13630 F: drivers/net/usb/qmi_wwan.c
13633 M: Petko Manolov <petkan@nucleusys.com>
13634 L: linux-usb@vger.kernel.org
13635 L: netdev@vger.kernel.org
13636 T: git git://github.com/petkan/rtl8150.git
13637 W: https://github.com/petkan/rtl8150
13639 F: drivers/net/usb/rtl8150.c
13641 USB SERIAL SUBSYSTEM
13642 M: Johan Hovold <johan@kernel.org>
13643 L: linux-usb@vger.kernel.org
13644 T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
13646 F: Documentation/usb/usb-serial.txt
13647 F: drivers/usb/serial/
13648 F: include/linux/usb/serial.h
13650 USB SMSC75XX ETHERNET DRIVER
13651 M: Steve Glendinning <steve.glendinning@shawell.net>
13652 L: netdev@vger.kernel.org
13654 F: drivers/net/usb/smsc75xx.*
13656 USB SMSC95XX ETHERNET DRIVER
13657 M: Steve Glendinning <steve.glendinning@shawell.net>
13658 M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13659 L: netdev@vger.kernel.org
13661 F: drivers/net/usb/smsc95xx.*
13664 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13665 L: linux-usb@vger.kernel.org
13666 W: http://www.linux-usb.org
13667 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
13669 F: Documentation/devicetree/bindings/usb/
13670 F: Documentation/usb/
13672 F: include/linux/usb.h
13673 F: include/linux/usb/
13675 USB TYPEC SUBSYSTEM
13676 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13677 L: linux-usb@vger.kernel.org
13679 F: Documentation/ABI/testing/sysfs-class-typec
13680 F: Documentation/usb/typec.rst
13681 F: drivers/usb/typec/
13682 F: include/linux/usb/typec.h
13685 M: Alan Stern <stern@rowland.harvard.edu>
13686 L: linux-usb@vger.kernel.org
13688 F: drivers/usb/host/uhci*
13690 USB "USBNET" DRIVER FRAMEWORK
13691 M: Oliver Neukum <oneukum@suse.com>
13692 L: netdev@vger.kernel.org
13693 W: http://www.linux-usb.org/usbnet
13695 F: drivers/net/usb/usbnet.c
13696 F: include/linux/usb/usbnet.h
13699 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13700 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
13701 L: linux-media@vger.kernel.org
13702 T: git git://linuxtv.org/media_tree.git
13703 W: http://www.ideasonboard.org/uvc/
13705 F: drivers/media/usb/uvc/
13706 F: include/uapi/linux/uvcvideo.h
13709 M: Hans Verkuil <hverkuil@xs4all.nl>
13710 L: linux-media@vger.kernel.org
13711 T: git git://linuxtv.org/media_tree.git
13712 W: https://linuxtv.org
13714 F: drivers/media/usb/usbvision/
13717 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13718 L: linux-usb@vger.kernel.org
13720 F: drivers/usb/gadget/function/*uvc*
13721 F: drivers/usb/gadget/legacy/webcam.c
13723 USB WIRELESS RNDIS DRIVER (rndis_wlan)
13724 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
13725 L: linux-wireless@vger.kernel.org
13727 F: drivers/net/wireless/rndis_wlan.c
13730 M: Mathias Nyman <mathias.nyman@intel.com>
13731 L: linux-usb@vger.kernel.org
13733 F: drivers/usb/host/xhci*
13734 F: drivers/usb/host/pci-quirks*
13737 L: linux-wireless@vger.kernel.org
13738 W: http://linux-lc100020.sourceforge.net
13740 F: drivers/net/wireless/zydas/zd1201.*
13743 M: Antoine Jacquet <royale@zerezo.com>
13744 L: linux-usb@vger.kernel.org
13745 L: linux-media@vger.kernel.org
13746 T: git git://linuxtv.org/media_tree.git
13747 W: http://royale.zerezo.com/zr364xx/
13749 F: Documentation/media/v4l-drivers/zr364xx*
13750 F: drivers/media/usb/zr364xx/
13753 M: Heikki Krogerus <heikki.krogerus@linux.intel.com>
13754 L: linux-usb@vger.kernel.org
13756 F: drivers/usb/common/ulpi.c
13757 F: include/linux/ulpi/
13759 USER-MODE LINUX (UML)
13760 M: Jeff Dike <jdike@addtoit.com>
13761 M: Richard Weinberger <richard@nod.at>
13762 L: user-mode-linux-devel@lists.sourceforge.net
13763 L: user-mode-linux-user@lists.sourceforge.net
13764 W: http://user-mode-linux.sourceforge.net
13765 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
13767 F: Documentation/virtual/uml/
13773 USERSPACE I/O (UIO)
13774 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
13777 F: Documentation/driver-api/uio-howto.rst
13779 F: include/linux/uio*.h
13782 M: Karel Zak <kzak@redhat.com>
13783 L: util-linux@vger.kernel.org
13784 W: http://en.wikipedia.org/wiki/Util-linux
13785 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
13789 M: Christoph Hellwig <hch@lst.de>
13790 R: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
13791 L: linux-kernel@vger.kernel.org
13792 T: git git://git.infradead.org/users/hch/uuid.git
13795 F: include/linux/uuid.h
13796 F: include/uapi/linux/uuid.h
13800 M: Michal Januszewski <spock@gentoo.org>
13801 L: linux-fbdev@vger.kernel.org
13802 W: http://dev.gentoo.org/~spock/projects/uvesafb/
13804 F: Documentation/fb/uvesafb.txt
13805 F: drivers/video/fbdev/uvesafb.*
13808 M: Stefan Agner <stefan@agner.ch>
13809 L: linux-mtd@lists.infradead.org
13811 F: drivers/mtd/nand/vf610_nfc.c
13813 VFAT/FAT/MSDOS FILESYSTEM
13814 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
13816 F: Documentation/filesystems/vfat.txt
13820 M: Alex Williamson <alex.williamson@redhat.com>
13821 L: kvm@vger.kernel.org
13822 T: git git://github.com/awilliam/linux-vfio.git
13824 F: Documentation/vfio.txt
13826 F: include/linux/vfio.h
13827 F: include/uapi/linux/vfio.h
13829 VFIO MEDIATED DEVICE DRIVERS
13830 M: Kirti Wankhede <kwankhede@nvidia.com>
13831 L: kvm@vger.kernel.org
13833 F: Documentation/vfio-mediated-device.txt
13834 F: drivers/vfio/mdev/
13835 F: include/linux/mdev.h
13836 F: samples/vfio-mdev/
13838 VFIO PLATFORM DRIVER
13839 M: Baptiste Reynal <b.reynal@virtualopensystems.com>
13840 L: kvm@vger.kernel.org
13842 F: drivers/vfio/platform/
13845 R: Lukas Wunner <lukas@wunner.de>
13847 F: Documentation/gpu/vga-switcheroo.rst
13848 F: drivers/gpu/vga/vga_switcheroo.c
13849 F: include/linux/vga_switcheroo.h
13850 T: git git://anongit.freedesktop.org/drm/drm-misc
13852 VIDEOBUF2 FRAMEWORK
13853 M: Pawel Osciak <pawel@osciak.com>
13854 M: Marek Szyprowski <m.szyprowski@samsung.com>
13855 M: Kyungmin Park <kyungmin.park@samsung.com>
13856 L: linux-media@vger.kernel.org
13858 F: drivers/media/v4l2-core/videobuf2-*
13859 F: include/media/videobuf2-*
13861 VIDEO MULTIPLEXER DRIVER
13862 M: Philipp Zabel <p.zabel@pengutronix.de>
13863 L: linux-media@vger.kernel.org
13865 F: drivers/media/platform/video-mux.c
13867 VIRTIO AND VHOST VSOCK DRIVER
13868 M: Stefan Hajnoczi <stefanha@redhat.com>
13869 L: kvm@vger.kernel.org
13870 L: virtualization@lists.linux-foundation.org
13871 L: netdev@vger.kernel.org
13873 F: include/linux/virtio_vsock.h
13874 F: include/uapi/linux/virtio_vsock.h
13875 F: include/uapi/linux/vsockmon.h
13876 F: net/vmw_vsock/af_vsock_tap.c
13877 F: net/vmw_vsock/virtio_transport_common.c
13878 F: net/vmw_vsock/virtio_transport.c
13879 F: drivers/net/vsockmon.c
13880 F: drivers/vhost/vsock.c
13881 F: drivers/vhost/vsock.h
13883 VIRTUAL SERIO DEVICE DRIVER
13884 M: Stephen Chandler Paul <thatslyude@gmail.com>
13886 F: drivers/input/serio/userio.c
13887 F: include/uapi/linux/userio.h
13889 VIRTIO CONSOLE DRIVER
13890 M: Amit Shah <amit@kernel.org>
13891 L: virtualization@lists.linux-foundation.org
13893 F: drivers/char/virtio_console.c
13894 F: include/linux/virtio_console.h
13895 F: include/uapi/linux/virtio_console.h
13897 VIRTIO CORE, NET AND BLOCK DRIVERS
13898 M: "Michael S. Tsirkin" <mst@redhat.com>
13899 M: Jason Wang <jasowang@redhat.com>
13900 L: virtualization@lists.linux-foundation.org
13902 F: Documentation/devicetree/bindings/virtio/
13905 F: drivers/net/virtio_net.c
13906 F: drivers/block/virtio_blk.c
13907 F: include/linux/virtio*.h
13908 F: include/uapi/linux/virtio_*.h
13909 F: drivers/crypto/virtio/
13911 VIRTIO DRIVERS FOR S390
13912 M: Cornelia Huck <cohuck@redhat.com>
13913 M: Halil Pasic <pasic@linux.vnet.ibm.com>
13914 L: linux-s390@vger.kernel.org
13915 L: virtualization@lists.linux-foundation.org
13916 L: kvm@vger.kernel.org
13918 F: drivers/s390/virtio/
13921 M: David Airlie <airlied@linux.ie>
13922 M: Gerd Hoffmann <kraxel@redhat.com>
13923 L: dri-devel@lists.freedesktop.org
13924 L: virtualization@lists.linux-foundation.org
13925 T: git git://anongit.freedesktop.org/drm/drm-misc
13927 F: drivers/gpu/drm/virtio/
13928 F: include/uapi/linux/virtio_gpu.h
13930 VIRTIO HOST (VHOST)
13931 M: "Michael S. Tsirkin" <mst@redhat.com>
13932 M: Jason Wang <jasowang@redhat.com>
13933 L: kvm@vger.kernel.org
13934 L: virtualization@lists.linux-foundation.org
13935 L: netdev@vger.kernel.org
13936 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
13939 F: include/uapi/linux/vhost.h
13941 VIRTIO INPUT DRIVER
13942 M: Gerd Hoffmann <kraxel@redhat.com>
13944 F: drivers/virtio/virtio_input.c
13945 F: include/uapi/linux/virtio_input.h
13947 VIRTIO CRYPTO DRIVER
13948 M: Gonglei <arei.gonglei@huawei.com>
13949 L: virtualization@lists.linux-foundation.org
13950 L: linux-crypto@vger.kernel.org
13952 F: drivers/crypto/virtio/
13953 F: include/uapi/linux/virtio_crypto.h
13955 VIA RHINE NETWORK DRIVER
13957 F: drivers/net/ethernet/via/via-rhine.c
13959 VIA SD/MMC CARD CONTROLLER DRIVER
13960 M: Bruce Chang <brucechang@via.com.tw>
13961 M: Harald Welte <HaraldWelte@viatech.com>
13963 F: drivers/mmc/host/via-sdmmc.c
13965 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
13966 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
13967 L: linux-fbdev@vger.kernel.org
13969 F: include/linux/via-core.h
13970 F: include/linux/via-gpio.h
13971 F: include/linux/via_i2c.h
13972 F: drivers/video/fbdev/via/
13974 VIA VELOCITY NETWORK DRIVER
13975 M: Francois Romieu <romieu@fr.zoreil.com>
13976 L: netdev@vger.kernel.org
13978 F: drivers/net/ethernet/via/via-velocity.*
13981 M: Alex Williamson <alex.williamson@redhat.com>
13982 M: Paolo Bonzini <pbonzini@redhat.com>
13983 L: kvm@vger.kernel.org
13987 VIVID VIRTUAL VIDEO DRIVER
13988 M: Hans Verkuil <hverkuil@xs4all.nl>
13989 L: linux-media@vger.kernel.org
13990 T: git git://linuxtv.org/media_tree.git
13991 W: https://linuxtv.org
13993 F: drivers/media/platform/vivid/*
13995 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
13996 M: Helen Koike <helen.koike@collabora.com>
13997 L: linux-media@vger.kernel.org
13998 T: git git://linuxtv.org/media_tree.git
13999 W: https://linuxtv.org
14001 F: drivers/media/platform/vimc/*
14004 M: Florian Fainelli <f.fainelli@gmail.com>
14005 L: openwrt-devel@lists.openwrt.org (subscribers-only)
14007 F: drivers/vlynq/vlynq.c
14008 F: include/linux/vlynq.h
14011 M: Martyn Welch <martyn@welchs.me.uk>
14012 M: Manohar Vanga <manohar.vanga@gmail.com>
14013 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14014 L: devel@driverdev.osuosl.org
14016 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
14017 F: Documentation/driver-api/vme.rst
14018 F: drivers/staging/vme/
14020 F: include/linux/vme*
14022 VMWARE HYPERVISOR INTERFACE
14023 M: Alok Kataria <akataria@vmware.com>
14024 L: virtualization@lists.linux-foundation.org
14026 F: arch/x86/kernel/cpu/vmware.c
14028 VMWARE BALLOON DRIVER
14029 M: Xavier Deguillard <xdeguillard@vmware.com>
14030 M: Philip Moltmann <moltmann@vmware.com>
14031 M: "VMware, Inc." <pv-drivers@vmware.com>
14032 L: linux-kernel@vger.kernel.org
14034 F: drivers/misc/vmw_balloon.c
14036 VMWARE VMMOUSE SUBDRIVER
14037 M: "VMware Graphics" <linux-graphics-maintainer@vmware.com>
14038 M: "VMware, Inc." <pv-drivers@vmware.com>
14039 L: linux-input@vger.kernel.org
14041 F: drivers/input/mouse/vmmouse.c
14042 F: drivers/input/mouse/vmmouse.h
14044 VMWARE VMXNET3 ETHERNET DRIVER
14045 M: Shrikrishna Khare <skhare@vmware.com>
14046 M: "VMware, Inc." <pv-drivers@vmware.com>
14047 L: netdev@vger.kernel.org
14049 F: drivers/net/vmxnet3/
14051 VMware PVSCSI driver
14052 M: Jim Gill <jgill@vmware.com>
14053 M: VMware PV-Drivers <pv-drivers@vmware.com>
14054 L: linux-scsi@vger.kernel.org
14056 F: drivers/scsi/vmw_pvscsi.c
14057 F: drivers/scsi/vmw_pvscsi.h
14059 VMWARE PVRDMA DRIVER
14060 M: Adit Ranadive <aditr@vmware.com>
14061 M: VMware PV-Drivers <pv-drivers@vmware.com>
14062 L: linux-rdma@vger.kernel.org
14064 F: drivers/infiniband/hw/vmw_pvrdma/
14066 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
14067 M: Liam Girdwood <lgirdwood@gmail.com>
14068 M: Mark Brown <broonie@kernel.org>
14069 L: linux-kernel@vger.kernel.org
14070 W: http://www.slimlogic.co.uk/?p=48
14071 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
14073 F: Documentation/devicetree/bindings/regulator/
14074 F: drivers/regulator/
14075 F: include/dt-bindings/regulator/
14076 F: include/linux/regulator/
14079 M: David Ahern <dsa@cumulusnetworks.com>
14080 M: Shrijeet Mukherjee <shm@cumulusnetworks.com>
14081 L: netdev@vger.kernel.org
14083 F: drivers/net/vrf.c
14084 F: Documentation/networking/vrf.txt
14086 VT1211 HARDWARE MONITOR DRIVER
14087 M: Juerg Haefliger <juergh@gmail.com>
14088 L: linux-hwmon@vger.kernel.org
14090 F: Documentation/hwmon/vt1211
14091 F: drivers/hwmon/vt1211.c
14093 VT8231 HARDWARE MONITOR DRIVER
14094 M: Roger Lucas <vt8231@hiddenengine.co.uk>
14095 L: linux-hwmon@vger.kernel.org
14097 F: drivers/hwmon/vt8231.c
14099 VUB300 USB to SDIO/SD/MMC bridge chip
14100 M: Tony Olech <tony.olech@elandigitalsystems.com>
14101 L: linux-mmc@vger.kernel.org
14102 L: linux-usb@vger.kernel.org
14104 F: drivers/mmc/host/vub300.c
14106 W1 DALLAS'S 1-WIRE BUS
14107 M: Evgeniy Polyakov <zbr@ioremap.net>
14109 F: Documentation/w1/
14111 F: include/linux/w1.h
14113 W83791D HARDWARE MONITORING DRIVER
14114 M: Marc Hulsman <m.hulsman@tudelft.nl>
14115 L: linux-hwmon@vger.kernel.org
14117 F: Documentation/hwmon/w83791d
14118 F: drivers/hwmon/w83791d.c
14120 W83793 HARDWARE MONITORING DRIVER
14121 M: Rudolf Marek <r.marek@assembler.cz>
14122 L: linux-hwmon@vger.kernel.org
14124 F: Documentation/hwmon/w83793
14125 F: drivers/hwmon/w83793.c
14127 W83795 HARDWARE MONITORING DRIVER
14128 M: Jean Delvare <jdelvare@suse.com>
14129 L: linux-hwmon@vger.kernel.org
14131 F: drivers/hwmon/w83795.c
14133 W83L51xD SD/MMC CARD INTERFACE DRIVER
14134 M: Pierre Ossman <pierre@ossman.eu>
14136 F: drivers/mmc/host/wbsd.*
14138 WACOM PROTOCOL 4 SERIAL TABLETS
14139 M: Julian Squires <julian@cipht.net>
14140 M: Hans de Goede <hdegoede@redhat.com>
14141 L: linux-input@vger.kernel.org
14143 F: drivers/input/tablet/wacom_serial4.c
14145 WATCHDOG DEVICE DRIVERS
14146 M: Wim Van Sebroeck <wim@iguana.be>
14147 R: Guenter Roeck <linux@roeck-us.net>
14148 L: linux-watchdog@vger.kernel.org
14149 W: http://www.linux-watchdog.org/
14150 T: git git://www.linux-watchdog.org/linux-watchdog.git
14152 F: Documentation/devicetree/bindings/watchdog/
14153 F: Documentation/watchdog/
14154 F: drivers/watchdog/
14155 F: include/linux/watchdog.h
14156 F: include/uapi/linux/watchdog.h
14159 M: David Herrmann <dh.herrmann@googlemail.com>
14160 L: linux-input@vger.kernel.org
14162 F: drivers/hid/hid-wiimote*
14165 M: David Härdeman <david@hardeman.nu>
14167 F: drivers/media/rc/winbond-cir.c
14169 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
14170 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14171 L: linux-watchdog@vger.kernel.org
14173 F: drivers/watchdog/ebc-c384_wdt.c
14175 WINSYSTEMS WS16C48 GPIO DRIVER
14176 M: William Breathitt Gray <vilhelm.gray@gmail.com>
14177 L: linux-gpio@vger.kernel.org
14179 F: drivers/gpio/gpio-ws16c48.c
14182 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
14183 M: linux-wimax@intel.com
14184 L: wimax@linuxwimax.org (subscribers-only)
14186 W: http://linuxwimax.org
14187 F: Documentation/wimax/README.wimax
14188 F: include/linux/wimax/debug.h
14189 F: include/net/wimax.h
14190 F: include/uapi/linux/wimax.h
14193 WISTRON LAPTOP BUTTON DRIVER
14194 M: Miloslav Trmac <mitr@volny.cz>
14196 F: drivers/input/misc/wistron_btns.c
14198 WL3501 WIRELESS PCMCIA CARD DRIVER
14199 L: linux-wireless@vger.kernel.org
14201 F: drivers/net/wireless/wl3501*
14203 WOLFSON MICROELECTRONICS DRIVERS
14204 L: patches@opensource.cirrus.com
14205 T: git https://github.com/CirrusLogic/linux-drivers.git
14206 W: https://github.com/CirrusLogic/linux-drivers/wiki
14208 F: Documentation/hwmon/wm83??
14209 F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt
14210 F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt
14211 F: Documentation/devicetree/bindings/mfd/arizona.txt
14212 F: Documentation/devicetree/bindings/mfd/wm831x.txt
14213 F: arch/arm/mach-s3c64xx/mach-crag6410*
14214 F: drivers/clk/clk-wm83*.c
14215 F: drivers/extcon/extcon-arizona.c
14216 F: drivers/leds/leds-wm83*.c
14217 F: drivers/gpio/gpio-*wm*.c
14218 F: drivers/gpio/gpio-arizona.c
14219 F: drivers/hwmon/wm83??-hwmon.c
14220 F: drivers/input/misc/wm831x-on.c
14221 F: drivers/input/touchscreen/wm831x-ts.c
14222 F: drivers/input/touchscreen/wm97*.c
14223 F: drivers/mfd/arizona*
14224 F: drivers/mfd/wm*.c
14225 F: drivers/mfd/cs47l24*
14226 F: drivers/power/supply/wm83*.c
14227 F: drivers/rtc/rtc-wm83*.c
14228 F: drivers/regulator/wm8*.c
14229 F: drivers/regulator/arizona*
14230 F: drivers/video/backlight/wm83*_bl.c
14231 F: drivers/watchdog/wm83*_wdt.c
14232 F: include/linux/mfd/arizona/
14233 F: include/linux/mfd/wm831x/
14234 F: include/linux/mfd/wm8350/
14235 F: include/linux/mfd/wm8400*
14236 F: include/linux/regulator/arizona*
14237 F: include/linux/wm97xx.h
14238 F: include/sound/wm????.h
14239 F: sound/soc/codecs/arizona.?
14240 F: sound/soc/codecs/wm*
14241 F: sound/soc/codecs/cs47l24*
14244 M: Tejun Heo <tj@kernel.org>
14245 R: Lai Jiangshan <jiangshanlai@gmail.com>
14246 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
14248 F: include/linux/workqueue.h
14249 F: kernel/workqueue.c
14250 F: Documentation/core-api/workqueue.rst
14252 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
14253 M: Chen-Yu Tsai <wens@csie.org>
14254 L: linux-kernel@vger.kernel.org
14259 M: Andrew Hendry <andrew.hendry@gmail.com>
14260 L: linux-x25@vger.kernel.org
14262 F: Documentation/networking/x25*
14263 F: include/net/x25*
14266 X86 ARCHITECTURE (32-BIT AND 64-BIT)
14267 M: Thomas Gleixner <tglx@linutronix.de>
14268 M: Ingo Molnar <mingo@redhat.com>
14269 M: "H. Peter Anvin" <hpa@zytor.com>
14271 L: linux-kernel@vger.kernel.org
14272 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14274 F: Documentation/x86/
14277 X86 PLATFORM DRIVERS
14278 M: Darren Hart <dvhart@infradead.org>
14279 M: Andy Shevchenko <andy@infradead.org>
14280 L: platform-driver-x86@vger.kernel.org
14281 T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
14283 F: drivers/platform/x86/
14284 F: drivers/platform/olpc/
14286 X86 MCE INFRASTRUCTURE
14287 M: Tony Luck <tony.luck@intel.com>
14288 M: Borislav Petkov <bp@alien8.de>
14289 L: linux-edac@vger.kernel.org
14291 F: arch/x86/kernel/cpu/mcheck/*
14293 X86 MICROCODE UPDATE SUPPORT
14294 M: Borislav Petkov <bp@alien8.de>
14296 F: arch/x86/kernel/cpu/microcode/*
14299 M: Andy Lutomirski <luto@amacapital.net>
14300 L: linux-kernel@vger.kernel.org
14301 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
14303 F: arch/x86/entry/vdso/
14305 XC2028/3028 TUNER DRIVER
14306 M: Mauro Carvalho Chehab <mchehab@s-opensource.com>
14307 M: Mauro Carvalho Chehab <mchehab@kernel.org>
14308 L: linux-media@vger.kernel.org
14309 W: https://linuxtv.org
14310 T: git git://linuxtv.org/media_tree.git
14312 F: drivers/media/tuners/tuner-xc2028.*
14314 XEN HYPERVISOR INTERFACE
14315 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
14316 M: Juergen Gross <jgross@suse.com>
14317 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14318 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
14321 F: drivers/*/xen-*front.c
14323 F: arch/x86/include/asm/xen/
14325 F: include/uapi/xen/
14326 F: Documentation/ABI/stable/sysfs-hypervisor-xen
14327 F: Documentation/ABI/testing/sysfs-hypervisor-xen
14330 M: Stefano Stabellini <sstabellini@kernel.org>
14331 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14334 F: arch/arm/include/asm/xen/
14336 XEN HYPERVISOR ARM64
14337 M: Stefano Stabellini <sstabellini@kernel.org>
14338 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14341 F: arch/arm64/include/asm/xen/
14343 XEN NETWORK BACKEND DRIVER
14344 M: Wei Liu <wei.liu2@citrix.com>
14345 M: Paul Durrant <paul.durrant@citrix.com>
14346 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14347 L: netdev@vger.kernel.org
14349 F: drivers/net/xen-netback/*
14352 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14353 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14355 F: arch/x86/pci/*xen*
14356 F: drivers/pci/*xen*
14358 XEN BLOCK SUBSYSTEM
14359 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14360 M: Roger Pau Monné <roger.pau@citrix.com>
14361 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14363 F: drivers/block/xen-blkback/*
14364 F: drivers/block/xen*
14367 M: Juergen Gross <jgross@suse.com>
14368 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14369 L: linux-scsi@vger.kernel.org
14371 F: drivers/scsi/xen-scsifront.c
14372 F: drivers/xen/xen-scsiback.c
14373 F: include/xen/interface/io/vscsiif.h
14375 XEN SWIOTLB SUBSYSTEM
14376 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
14377 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
14379 F: arch/x86/xen/*swiotlb*
14380 F: drivers/xen/*swiotlb*
14383 M: Darrick J. Wong <darrick.wong@oracle.com>
14384 M: linux-xfs@vger.kernel.org
14385 L: linux-xfs@vger.kernel.org
14387 T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
14389 F: Documentation/filesystems/xfs.txt
14392 XILINX AXI ETHERNET DRIVER
14393 M: Anirudha Sarangi <anirudh@xilinx.com>
14394 M: John Linn <John.Linn@xilinx.com>
14396 F: drivers/net/ethernet/xilinx/xilinx_axienet*
14398 XILINX UARTLITE SERIAL DRIVER
14399 M: Peter Korsgaard <jacmet@sunsite.dk>
14400 L: linux-serial@vger.kernel.org
14402 F: drivers/tty/serial/uartlite.c
14404 XILINX VIDEO IP CORES
14405 M: Hyun Kwon <hyun.kwon@xilinx.com>
14406 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14407 L: linux-media@vger.kernel.org
14408 T: git git://linuxtv.org/media_tree.git
14410 F: Documentation/devicetree/bindings/media/xilinx/
14411 F: drivers/media/platform/xilinx/
14412 F: include/uapi/linux/xilinx-v4l2-controls.h
14415 M: Eli Billauer <eli.billauer@gmail.com>
14416 L: linux-kernel@vger.kernel.org
14418 F: drivers/char/xillybus/
14420 XRA1403 GPIO EXPANDER
14421 M: Nandor Han <nandor.han@ge.com>
14422 M: Semi Malinen <semi.malinen@ge.com>
14423 L: linux-gpio@vger.kernel.org
14425 F: drivers/gpio/gpio-xra1403.c
14426 F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
14428 XTENSA XTFPGA PLATFORM SUPPORT
14429 M: Max Filippov <jcmvbkbc@gmail.com>
14430 L: linux-xtensa@linux-xtensa.org
14432 F: drivers/spi/spi-xtensa-xtfpga.c
14433 F: sound/soc/xtensa/xtfpga-i2s.c
14435 YAM DRIVER FOR AX.25
14436 M: Jean-Paul Roubelat <jpr@f6fbb.org>
14437 L: linux-hams@vger.kernel.org
14439 F: drivers/net/hamradio/yam*
14440 F: include/linux/yam.h
14442 YEALINK PHONE DRIVER
14443 M: Henk Vergonet <Henk.Vergonet@gmail.com>
14444 L: usbb2k-api-dev@nongnu.org
14446 F: Documentation/input/yealink.rst
14447 F: drivers/input/misc/yealink.*
14449 Z8530 DRIVER FOR AX.25
14450 M: Joerg Reuter <jreuter@yaina.de>
14451 W: http://yaina.de/jreuter/
14452 W: http://www.qsl.net/dl1bke/
14453 L: linux-hams@vger.kernel.org
14455 F: Documentation/networking/z8530drv.txt
14456 F: drivers/net/hamradio/*scc.c
14457 F: drivers/net/hamradio/z8530.h
14459 ZBUD COMPRESSED PAGE ALLOCATOR
14460 M: Seth Jennings <sjenning@redhat.com>
14461 M: Dan Streetman <ddstreet@ieee.org>
14462 L: linux-mm@kvack.org
14465 F: include/linux/zbud.h
14467 ZD1211RW WIRELESS DRIVER
14468 M: Daniel Drake <dsd@gentoo.org>
14469 M: Ulrich Kunitz <kune@deine-taler.de>
14470 W: http://zd1211.ath.cx/wiki/DriverRewrite
14471 L: linux-wireless@vger.kernel.org
14472 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
14474 F: drivers/net/wireless/zydas/zd1211rw/
14476 ZD1301_DEMOD MEDIA DRIVER
14477 M: Antti Palosaari <crope@iki.fi>
14478 L: linux-media@vger.kernel.org
14479 W: https://linuxtv.org/
14480 W: http://palosaari.fi/linux/
14481 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14483 F: drivers/media/dvb-frontends/zd1301_demod*
14485 ZD1301 MEDIA DRIVER
14486 M: Antti Palosaari <crope@iki.fi>
14487 L: linux-media@vger.kernel.org
14488 W: https://linuxtv.org/
14489 W: http://palosaari.fi/linux/
14490 Q: https://patchwork.linuxtv.org/project/linux-media/list/
14492 F: drivers/media/usb/dvb-usb-v2/zd1301*
14494 ZPOOL COMPRESSED PAGE STORAGE API
14495 M: Dan Streetman <ddstreet@ieee.org>
14496 L: linux-mm@kvack.org
14499 F: include/linux/zpool.h
14501 ZR36067 VIDEO FOR LINUX DRIVER
14502 L: mjpeg-users@lists.sourceforge.net
14503 L: linux-media@vger.kernel.org
14504 W: http://mjpeg.sourceforge.net/driver-zoran/
14505 T: hg https://linuxtv.org/hg/v4l-dvb
14507 F: drivers/media/pci/zoran/
14509 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14510 M: Minchan Kim <minchan@kernel.org>
14511 M: Nitin Gupta <ngupta@vflare.org>
14512 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14513 L: linux-kernel@vger.kernel.org
14515 F: drivers/block/zram/
14516 F: Documentation/blockdev/zram.txt
14518 ZS DECSTATION Z85C30 SERIAL DRIVER
14519 M: "Maciej W. Rozycki" <macro@linux-mips.org>
14521 F: drivers/tty/serial/zs.*
14523 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14524 M: Minchan Kim <minchan@kernel.org>
14525 M: Nitin Gupta <ngupta@vflare.org>
14526 R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
14527 L: linux-mm@kvack.org
14530 F: include/linux/zsmalloc.h
14531 F: Documentation/vm/zsmalloc.txt
14533 ZSWAP COMPRESSED SWAP CACHING
14534 M: Seth Jennings <sjenning@redhat.com>
14535 M: Dan Streetman <ddstreet@ieee.org>
14536 L: linux-mm@kvack.org
14541 M: Linus Torvalds <torvalds@linux-foundation.org>
14542 L: linux-kernel@vger.kernel.org
14543 Q: http://patchwork.kernel.org/project/LKML/list/
14544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14545 S: Buried alive in reporters